diff --git a/mediapipe/model_maker/python/vision/object_detector/object_detector.py b/mediapipe/model_maker/python/vision/object_detector/object_detector.py index 1282e1a1..d208a9b2 100644 --- a/mediapipe/model_maker/python/vision/object_detector/object_detector.py +++ b/mediapipe/model_maker/python/vision/object_detector/object_detector.py @@ -328,7 +328,7 @@ class ObjectDetector(classifier.Classifier): converter.target_spec.supported_ops = (tf.lite.OpsSet.TFLITE_BUILTINS,) tflite_model = converter.convert() - writer = object_detector_writer.MetadataWriter.create( + writer = object_detector_writer.MetadataWriter.create_for_models_with_nms( tflite_model, self._model_spec.mean_rgb, self._model_spec.stddev_rgb, diff --git a/mediapipe/tasks/metadata/BUILD b/mediapipe/tasks/metadata/BUILD index de635068..38960c8d 100644 --- a/mediapipe/tasks/metadata/BUILD +++ b/mediapipe/tasks/metadata/BUILD @@ -36,3 +36,13 @@ flatbuffer_py_library( name = "image_segmenter_metadata_schema_py", srcs = ["image_segmenter_metadata_schema.fbs"], ) + +flatbuffer_cc_library( + name = "object_detector_metadata_schema_cc", + srcs = ["object_detector_metadata_schema.fbs"], +) + +flatbuffer_py_library( + name = "object_detector_metadata_schema_py", + srcs = ["object_detector_metadata_schema.fbs"], +) diff --git a/mediapipe/tasks/metadata/object_detector_metadata_schema.fbs b/mediapipe/tasks/metadata/object_detector_metadata_schema.fbs new file mode 100644 index 00000000..30e0f912 --- /dev/null +++ b/mediapipe/tasks/metadata/object_detector_metadata_schema.fbs @@ -0,0 +1,98 @@ +// Copyright 2023 The MediaPipe Authors. All Rights Reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +namespace mediapipe.tasks; + +// ObjectDetectorOptions.min_parser_version indicates the minimum necessary +// object detector metadata parser version to fully understand all fields in a +// given metadata flatbuffer. This min_parser_version is specific for the +// object detector metadata defined in this schema file. +// +// New fields and types will have associated comments with the schema version +// for which they were added. +// +// Schema Semantic version: 1.0.0 + +// This indicates the flatbuffer compatibility. The number will bump up when a +// break change is applied to the schema, such as removing fields or adding new +// fields to the middle of a table. +file_identifier "V001"; + + +// History: +// 1.0.0 - Initial version. + +// A fixed size anchor. +table FixedAnchor { + x_center: float; + y_center: float; + width: float; + height: float; +} + +// The schema for a list of anchors with fixed size. +table FixedAnchorsSchema { + anchors: [FixedAnchor]; +} + +// The ssd anchors options used in the object detector. +table SsdAnchorsOptions { + fixed_anchors_schema: FixedAnchorsSchema; +} + +// The options for decoding the raw model output tensors. The options are mostly +// used in TensorsToDetectionsCalculatorOptions. +table TensorsDecodingOptions { + // The number of output classes predicted by the detection model. + num_classes: int; + // The number of output boxes predicted by the detection model. + num_boxes: int; + // The number of output values per boxes predicted by the detection + // model. The values contain bounding boxes, keypoints, etc. + num_coords: int; + // The offset of keypoint coordinates in the location tensor. + keypoint_coord_offset: int; + // The number of predicted keypoints. + num_keypoints: int; + // The dimension of each keypoint, e.g. number of values predicted for each + // keypoint. + num_values_per_keypoint: int; + // Parameters for decoding SSD detection model. + x_scale: float; + y_scale: float; + w_scale: float; + h_scale: float; + // Whether to apply exponential on box size. + apply_exponential_on_box_size: bool; + // Whether to apply sigmod function on the score. + sigmoid_score: bool; +} + +table ObjectDetectorOptions { + // TODO: automatically populate min parser string. + // The minimum necessary object detector metadata parser version to fully + // understand all fields in a given metadata flatbuffer. This field is + // automatically populated by the MetadataPopulator when the metadata is + // populated into a TFLite model. This min_parser_version is specific for the + // object detector metadata defined in this schema file. + min_parser_version:string; + + // The options of ssd anchors configs used by the detection model. + ssd_anchors_options:SsdAnchorsOptions; + + // The tensors decoding options to convert raw tensors to detection results. + tensors_decoding_options:TensorsDecodingOptions; +} + +root_type ObjectDetectorOptions; diff --git a/mediapipe/tasks/python/metadata/metadata_writers/BUILD b/mediapipe/tasks/python/metadata/metadata_writers/BUILD index 1f126c30..f7db1668 100644 --- a/mediapipe/tasks/python/metadata/metadata_writers/BUILD +++ b/mediapipe/tasks/python/metadata/metadata_writers/BUILD @@ -67,7 +67,15 @@ py_library( py_library( name = "object_detector", srcs = ["object_detector.py"], - deps = [":metadata_writer"], + data = ["//mediapipe/tasks/metadata:object_detector_metadata_schema.fbs"], + deps = [ + ":metadata_info", + ":metadata_writer", + "//mediapipe/tasks/metadata:metadata_schema_py", + "//mediapipe/tasks/metadata:object_detector_metadata_schema_py", + "//mediapipe/tasks/python/metadata", + "@flatbuffers//:runtime_py", + ], ) py_library( diff --git a/mediapipe/tasks/python/metadata/metadata_writers/metadata_info.py b/mediapipe/tasks/python/metadata/metadata_writers/metadata_info.py index 3b47e9b3..01d725f1 100644 --- a/mediapipe/tasks/python/metadata/metadata_writers/metadata_info.py +++ b/mediapipe/tasks/python/metadata/metadata_writers/metadata_info.py @@ -17,6 +17,7 @@ import abc import collections import csv +import enum import os from typing import List, Optional, Type, Union @@ -1004,6 +1005,84 @@ class DetectionOutputTensorsMd: return self._output_mds +class RawDetectionOutputTensorsOrder(enum.Enum): + """Output tensors order for detection models without postprocessing. + + Because it is not able to determined the order of output tensors for models + without postprocessing, it is needed to specify the output tensors order for + metadata writer. + """ + + UNSPECIFIED = 0 + # The first tensor is score, and the second tensor is location. + SCORE_LOCATION = 1 + # The first tensor is location, and the second tensor is score. + LOCATION_SCORE = 2 + + +class RawDetectionOutputTensorsMd: + """A container for the output tensor metadata of detection models without postprocessing.""" + + _LOCATION_NAME = "location" + _LOCATION_DESCRIPTION = "The locations of the detected boxes." + _SCORE_NAME = "score" + _SCORE_DESCRIPTION = "The scores of the detected boxes." + _CONTENT_VALUE_DIM = 2 + + def __init__( + self, + model_buffer: bytearray, + label_files: Optional[List[LabelFileMd]] = None, + output_tensors_order: RawDetectionOutputTensorsOrder = RawDetectionOutputTensorsOrder.UNSPECIFIED, + ) -> None: + """Initializes the instance of DetectionOutputTensorsMd. + + Args: + model_buffer: A valid flatbuffer loaded from the TFLite model file. + label_files: information of the label files [1] in the classification + tensor. + output_tensors_order: the order of the output tensors. + [1]: + https://github.com/google/mediapipe/blob/f8af41b1eb49ff4bdad756ff19d1d36f486be614/mediapipe/tasks/metadata/metadata_schema.fbs#L9 + """ + # Get the output tensor indices and names from the tflite model. + tensor_indices_and_names = list( + zip( + writer_utils.get_output_tensor_indices(model_buffer), + writer_utils.get_output_tensor_names(model_buffer), + ) + ) + location_md = LocationTensorMd( + name=self._LOCATION_NAME, + description=self._LOCATION_DESCRIPTION, + ) + score_md = ClassificationTensorMd( + name=self._SCORE_NAME, + description=self._SCORE_DESCRIPTION, + label_files=label_files, + ) + + if output_tensors_order == RawDetectionOutputTensorsOrder.SCORE_LOCATION: + self._output_mds = [score_md, location_md] + elif output_tensors_order == RawDetectionOutputTensorsOrder.LOCATION_SCORE: + self._output_mds = [location_md, score_md] + else: + raise ValueError( + f"Unsupported OutputTensorsOrder value: {output_tensors_order}" + ) + + if len(self._output_mds) != len(tensor_indices_and_names): + raise ValueError( + "The size of TFLite output should be " + str(len(self._output_mds)) + ) + for i, output_md in enumerate(self._output_mds): + output_md.tensor_name = tensor_indices_and_names[i][1] + + @property + def output_mds(self) -> List[TensorMd]: + return self._output_mds + + class TensorGroupMd: """A container for a group of tensor metadata information.""" diff --git a/mediapipe/tasks/python/metadata/metadata_writers/metadata_writer.py b/mediapipe/tasks/python/metadata/metadata_writers/metadata_writer.py index 302b717a..659a89b8 100644 --- a/mediapipe/tasks/python/metadata/metadata_writers/metadata_writer.py +++ b/mediapipe/tasks/python/metadata/metadata_writers/metadata_writer.py @@ -632,7 +632,7 @@ class MetadataWriter(object): score_calibration: Optional[ScoreCalibration] = None, group_name: str = _DETECTION_GROUP_NAME, ) -> 'MetadataWriter': - """Adds a detection head metadata for detection output tensor. + """Adds a detection head metadata for detection output tensor of models with postprocessing. Args: labels: an instance of Labels helper class. @@ -661,6 +661,33 @@ class MetadataWriter(object): self._output_group_mds.append(group_md) return self + def add_raw_detection_output( + self, + labels: Optional[Labels] = None, + output_tensors_order: metadata_info.RawDetectionOutputTensorsOrder = metadata_info.RawDetectionOutputTensorsOrder.UNSPECIFIED, + ) -> 'MetadataWriter': + """Adds a detection head metadata for detection output tensor of models without postprocessing. + + Args: + labels: an instance of Labels helper class. + output_tensors_order: the order of the output tensors. For models of + out-of-graph non-maximum-suppression only. + + Returns: + The current Writer instance to allow chained operation. + """ + label_files = self._create_label_file_md(labels) + detection_output_mds = metadata_info.RawDetectionOutputTensorsMd( + self._model_buffer, + label_files=label_files, + output_tensors_order=output_tensors_order, + ).output_mds + self._output_mds.extend(detection_output_mds) + # Outputs are location, score. + if len(detection_output_mds) != 2: + raise ValueError('The size of detections output should be 2.') + return self + def add_segmentation_output( self, labels: Optional[Labels] = None, diff --git a/mediapipe/tasks/python/metadata/metadata_writers/object_detector.py b/mediapipe/tasks/python/metadata/metadata_writers/object_detector.py index f070534c..9944ecfb 100644 --- a/mediapipe/tasks/python/metadata/metadata_writers/object_detector.py +++ b/mediapipe/tasks/python/metadata/metadata_writers/object_detector.py @@ -14,8 +14,14 @@ # ============================================================================== """Writes metadata and label file to the Object Detector models.""" +import dataclasses from typing import List, Optional +import flatbuffers +from mediapipe.tasks.metadata import metadata_schema_py_generated as _metadata_fb +from mediapipe.tasks.metadata import object_detector_metadata_schema_py_generated as _detector_metadata_fb +from mediapipe.tasks.python.metadata import metadata +from mediapipe.tasks.python.metadata.metadata_writers import metadata_info from mediapipe.tasks.python.metadata.metadata_writers import metadata_writer _MODEL_NAME = "ObjectDetector" @@ -25,12 +31,187 @@ _MODEL_DESCRIPTION = ( "stream." ) +# Metadata Schema file for object detector. +_FLATC_METADATA_SCHEMA_FILE = metadata.get_path_to_datafile( + "../../../metadata/object_detector_metadata_schema.fbs", +) + +# Metadata name in custom metadata field. The metadata name is used to get +# object detector metadata from SubGraphMetadata.custom_metadata and shouldn't +# be changed. +_METADATA_NAME = "DETECTOR_METADATA" + + +@dataclasses.dataclass +class FixedAnchor: + """A fixed size anchor.""" + + x_center: float + y_center: float + width: Optional[float] + height: Optional[float] + + +@dataclasses.dataclass +class FixedAnchorsSchema: + """The schema for a list of anchors with fixed size.""" + + anchors: List[FixedAnchor] + + +@dataclasses.dataclass +class SsdAnchorsOptions: + """The ssd anchors options used in object detector model.""" + + fixed_anchors_schema: Optional[FixedAnchorsSchema] + + +@dataclasses.dataclass +class TensorsDecodingOptions: + """The decoding options to convert model output tensors to detections.""" + + # The number of output classes predicted by the detection model. + num_classes: int + # The number of output boxes predicted by the detection model. + num_boxes: int + # The number of output values per boxes predicted by the detection + # model. The values contain bounding boxes, keypoints, etc. + num_coords: int + # The offset of keypoint coordinates in the location tensor. + keypoint_coord_offset: int + # The number of predicted keypoints. + num_keypoints: int + # The dimension of each keypoint, e.g. number of values predicted for each + # keypoint. + num_values_per_keypoint: int + # Parameters for decoding SSD detection model. + x_scale: float + y_scale: float + w_scale: float + h_scale: float + # Whether to apply exponential on box size. + apply_exponential_on_box_size: bool + # Whether to apply sigmod function on the score. + sigmoid_score: bool + + +# Create an individual method for getting the metadata json file, so that it can +# be used as a standalone util. +def convert_to_json(metadata_buffer: bytearray) -> str: + """Converts the metadata into a json string. + + Args: + metadata_buffer: valid metadata buffer in bytes. + + Returns: + Metadata in JSON format. + + Raises: + ValueError: error occurred when parsing the metadata schema file. + """ + return metadata.convert_to_json( + metadata_buffer, + custom_metadata_schema={_METADATA_NAME: _FLATC_METADATA_SCHEMA_FILE}, + ) + + +class ObjectDetectorOptionsMd(metadata_info.CustomMetadataMd): + """Object detector options metadata.""" + + _METADATA_FILE_IDENTIFIER = b"V001" + + def __init__( + self, + ssd_anchors_options: SsdAnchorsOptions, + tensors_decoding_options: TensorsDecodingOptions, + ) -> None: + """Creates an ObjectDetectorOptionsMd object. + + Args: + ssd_anchors_options: the ssd anchors options associated to the object + detector model. + tensors_decoding_options: the tensors decoding options used to decode the + object detector model output. + """ + if ssd_anchors_options.fixed_anchors_schema is None: + raise ValueError( + "Currently only support FixedAnchorsSchema, which cannot be found" + " in ssd_anchors_options." + ) + self.ssd_anchors_options = ssd_anchors_options + self.tensors_decoding_options = tensors_decoding_options + super().__init__(name=_METADATA_NAME) + + def create_metadata(self) -> _metadata_fb.CustomMetadataT: + """Creates the image segmenter options metadata. + + Returns: + A Flatbuffers Python object of the custom metadata including object + detector options metadata. + """ + detector_options = _detector_metadata_fb.ObjectDetectorOptionsT() + + # Set ssd_anchors_options. + ssd_anchors_options = _detector_metadata_fb.SsdAnchorsOptionsT() + fixed_anchors_schema = _detector_metadata_fb.FixedAnchorsSchemaT() + fixed_anchors_schema.anchors = [] + for anchor in self.ssd_anchors_options.fixed_anchors_schema.anchors: + anchor_t = _detector_metadata_fb.FixedAnchorT() + anchor_t.xCenter = anchor.x_center + anchor_t.yCenter = anchor.y_center + anchor_t.width = anchor.width + anchor_t.height = anchor.height + fixed_anchors_schema.anchors.append(anchor_t) + ssd_anchors_options.fixedAnchorsSchema = fixed_anchors_schema + detector_options.ssdAnchorsOptions = ssd_anchors_options + + # Set tensors_decoding_options. + tensors_decoding_options = _detector_metadata_fb.TensorsDecodingOptionsT() + tensors_decoding_options.numClasses = ( + self.tensors_decoding_options.num_classes + ) + tensors_decoding_options.numBoxes = self.tensors_decoding_options.num_boxes + tensors_decoding_options.numCoords = ( + self.tensors_decoding_options.num_coords + ) + tensors_decoding_options.keypointCoordOffset = ( + self.tensors_decoding_options.keypoint_coord_offset + ) + tensors_decoding_options.numKeypoints = ( + self.tensors_decoding_options.num_keypoints + ) + tensors_decoding_options.numValuesPerKeypoint = ( + self.tensors_decoding_options.num_values_per_keypoint + ) + tensors_decoding_options.xScale = self.tensors_decoding_options.x_scale + tensors_decoding_options.yScale = self.tensors_decoding_options.y_scale + tensors_decoding_options.wScale = self.tensors_decoding_options.w_scale + tensors_decoding_options.hScale = self.tensors_decoding_options.h_scale + tensors_decoding_options.applyExponentialOnBoxSize = ( + self.tensors_decoding_options.apply_exponential_on_box_size + ) + tensors_decoding_options.sigmoidScore = ( + self.tensors_decoding_options.sigmoid_score + ) + detector_options.tensorsDecodingOptions = tensors_decoding_options + + # Get the object detector options flatbuffer. + b = flatbuffers.Builder(0) + b.Finish(detector_options.Pack(b), self._METADATA_FILE_IDENTIFIER) + detector_options_buf = b.Output() + + # Add the object detector options flatbuffer in custom metadata. + custom_metadata = _metadata_fb.CustomMetadataT() + custom_metadata.name = self.name + custom_metadata.data = detector_options_buf + return custom_metadata + class MetadataWriter(metadata_writer.MetadataWriterBase): """MetadataWriter to write the metadata into the object detector.""" @classmethod - def create( + def create_for_models_with_nms( cls, model_buffer: bytearray, input_norm_mean: List[float], @@ -38,7 +219,9 @@ class MetadataWriter(metadata_writer.MetadataWriterBase): labels: metadata_writer.Labels, score_calibration: Optional[metadata_writer.ScoreCalibration] = None, ) -> "MetadataWriter": - """Creates MetadataWriter to write the metadata for image classifier. + """Creates MetadataWriter to write the metadata for object detector with postprocessing in the model. + + This method create a metadata writer for the models with postprocessing [1]. The parameters required in this method are mandatory when using MediaPipe Tasks. @@ -54,18 +237,20 @@ class MetadataWriter(metadata_writer.MetadataWriterBase): Args: model_buffer: A valid flatbuffer loaded from the TFLite model file. input_norm_mean: the mean value used in the input tensor normalization - [1]. - input_norm_std: the std value used in the input tensor normalizarion [1]. + [2]. + input_norm_std: the std value used in the input tensor normalizarion [2]. labels: an instance of Labels helper class used in the output - classification tensor [2]. - score_calibration: A container of the score calibration operation [3] in + classification tensor [3]. + score_calibration: A container of the score calibration operation [4] in the classification tensor. Optional if the model does not use score calibration. [1]: - https://github.com/google/mediapipe/blob/f8af41b1eb49ff4bdad756ff19d1d36f486be614/mediapipe/tasks/metadata/metadata_schema.fbs#L389 + https://github.com/tensorflow/tensorflow/blob/master/tensorflow/lite/kernels/detection_postprocess.cc [2]: - https://github.com/google/mediapipe/blob/f8af41b1eb49ff4bdad756ff19d1d36f486be614/mediapipe/tasks/metadata/metadata_schema.fbs#L99 + https://github.com/google/mediapipe/blob/f8af41b1eb49ff4bdad756ff19d1d36f486be614/mediapipe/tasks/metadata/metadata_schema.fbs#L389 [3]: + https://github.com/google/mediapipe/blob/f8af41b1eb49ff4bdad756ff19d1d36f486be614/mediapipe/tasks/metadata/metadata_schema.fbs#L99 + [4]: https://github.com/google/mediapipe/blob/f8af41b1eb49ff4bdad756ff19d1d36f486be614/mediapipe/tasks/metadata/metadata_schema.fbs#L456 Returns: @@ -76,3 +261,70 @@ class MetadataWriter(metadata_writer.MetadataWriterBase): writer.add_image_input(input_norm_mean, input_norm_std) writer.add_detection_output(labels, score_calibration) return cls(writer) + + @classmethod + def create_for_models_without_nms( + cls, + model_buffer: bytearray, + input_norm_mean: List[float], + input_norm_std: List[float], + labels: metadata_writer.Labels, + ssd_anchors_options: SsdAnchorsOptions, + tensors_decoding_options: TensorsDecodingOptions, + output_tensors_order: metadata_info.RawDetectionOutputTensorsOrder = metadata_info.RawDetectionOutputTensorsOrder.UNSPECIFIED, + ) -> "MetadataWriter": + """Creates MetadataWriter to write the metadata for object detector without postprocessing in the model. + + This method create a metadata writer for the models without postprocessing + [1]. + + The parameters required in this method are mandatory when using MediaPipe + Tasks. + + Example usage: + metadata_writer = object_detector.Metadatawriter.create(model_buffer, ...) + tflite_content, json_content = metadata_writer.populate() + + When calling `populate` function in this class, it returns TfLite content + and JSON content. Note that only the output TFLite is used for deployment. + The output JSON content is used to interpret the metadata content. + + Args: + model_buffer: A valid flatbuffer loaded from the TFLite model file. + input_norm_mean: the mean value used in the input tensor normalization + [2]. + input_norm_std: the std value used in the input tensor normalizarion [2]. + labels: an instance of Labels helper class used in the output + classification tensor [3]. + ssd_anchors_options: the ssd anchors options associated to the object + detector model. + tensors_decoding_options: the tensors decoding options used to decode the + object detector model output. + output_tensors_order: the order of the output tensors. + [1]: + https://github.com/tensorflow/tensorflow/blob/master/tensorflow/lite/kernels/detection_postprocess.cc + [2]: + https://github.com/google/mediapipe/blob/f8af41b1eb49ff4bdad756ff19d1d36f486be614/mediapipe/tasks/metadata/metadata_schema.fbs#L389 + [3]: + https://github.com/google/mediapipe/blob/f8af41b1eb49ff4bdad756ff19d1d36f486be614/mediapipe/tasks/metadata/metadata_schema.fbs#L99 + + Returns: + A MetadataWriter object. + """ + writer = metadata_writer.MetadataWriter(model_buffer) + writer.add_general_info(_MODEL_NAME, _MODEL_DESCRIPTION) + writer.add_image_input(input_norm_mean, input_norm_std) + writer.add_raw_detection_output( + labels, output_tensors_order=output_tensors_order + ) + option_md = ObjectDetectorOptionsMd( + ssd_anchors_options, tensors_decoding_options + ) + writer.add_custom_metadata(option_md) + return cls(writer) + + def populate(self) -> "tuple[bytearray, str]": + model_buf, _ = super().populate() + metadata_buf = metadata.get_metadata_buffer(model_buf) + json_content = convert_to_json(metadata_buf) + return model_buf, json_content diff --git a/mediapipe/tasks/python/test/metadata/metadata_writers/BUILD b/mediapipe/tasks/python/test/metadata/metadata_writers/BUILD index 976ddc9d..66ddf54b 100644 --- a/mediapipe/tasks/python/test/metadata/metadata_writers/BUILD +++ b/mediapipe/tasks/python/test/metadata/metadata_writers/BUILD @@ -86,6 +86,7 @@ py_test( deps = [ "//mediapipe/tasks/metadata:metadata_schema_py", "//mediapipe/tasks/python/metadata", + "//mediapipe/tasks/python/metadata/metadata_writers:metadata_info", "//mediapipe/tasks/python/metadata/metadata_writers:metadata_writer", "//mediapipe/tasks/python/metadata/metadata_writers:object_detector", "//mediapipe/tasks/python/test:test_utils", diff --git a/mediapipe/tasks/python/test/metadata/metadata_writers/object_detector_test.py b/mediapipe/tasks/python/test/metadata/metadata_writers/object_detector_test.py index 89e2d67d..b0e5d4c9 100644 --- a/mediapipe/tasks/python/test/metadata/metadata_writers/object_detector_test.py +++ b/mediapipe/tasks/python/test/metadata/metadata_writers/object_detector_test.py @@ -14,6 +14,7 @@ # ============================================================================== """Tests for metadata_writer.object_detector.""" +import csv import os from absl.testing import absltest @@ -21,6 +22,7 @@ from absl.testing import parameterized from mediapipe.tasks.metadata import metadata_schema_py_generated as metadata_fb from mediapipe.tasks.python.metadata import metadata +from mediapipe.tasks.python.metadata.metadata_writers import metadata_info from mediapipe.tasks.python.metadata.metadata_writers import metadata_writer from mediapipe.tasks.python.metadata.metadata_writers import object_detector from mediapipe.tasks.python.test import test_utils @@ -48,6 +50,39 @@ _JSON_FOR_SCORE_CALIBRATION = test_utils.get_test_data_path( os.path.join(_TEST_DATA_DIR, "coco_ssd_mobilenet_v1_score_calibration.json") ) +_EFFICIENTDET_LITE0_ANCHORS_FILE = test_utils.get_test_data_path( + os.path.join(_TEST_DATA_DIR, "efficientdet_lite0_fp16_no_nms_anchors.csv") +) + + +def read_ssd_anchors_from_csv(file_path): + with open(file_path, "r") as anchors_file: + csv_reader = csv.reader(anchors_file, delimiter=",") + parameters = [] + for row in csv_reader: + if not row: + parameters.append(None) + continue + if len(row) != 4: + raise ValueError( + "Expected empty lines or 4 parameters per line in " + f"anchors file, but got {len(row)}." + ) + parameters.append(row) + anchors = [] + for parameter in parameters: + anchors.append( + object_detector.FixedAnchor( + x_center=float(parameter[1]), + y_center=float(parameter[0]), + width=float(parameter[3]), + height=float(parameter[2]), + ) + ) + return object_detector.SsdAnchorsOptions( + fixed_anchors_schema=object_detector.FixedAnchorsSchema(anchors) + ) + class MetadataWriterTest(parameterized.TestCase, absltest.TestCase): @@ -61,37 +96,41 @@ class MetadataWriterTest(parameterized.TestCase, absltest.TestCase): ) with open(model_path, "rb") as f: model_buffer = f.read() - writer = object_detector.MetadataWriter.create( - model_buffer, - [_NORM_MEAN], - [_NORM_STD], - labels=metadata_writer.Labels().add_from_file(_LABEL_FILE), + writer = ( + object_detector.MetadataWriter.create_for_models_with_nms( + model_buffer, + [_NORM_MEAN], + [_NORM_STD], + labels=metadata_writer.Labels().add_from_file(_LABEL_FILE), + ) ) _, metadata_json = writer.populate() expected_json_path = test_utils.get_test_data_path( os.path.join(_TEST_DATA_DIR, model_name + ".json") ) with open(expected_json_path, "r") as f: - expected_json = f.read() + expected_json = f.read().strip() self.assertEqual(metadata_json, expected_json) def test_create_with_score_calibration_should_succeed(self): with open(_MODEL_COCO, "rb") as f: model_buffer = f.read() - writer = object_detector.MetadataWriter.create( - model_buffer, - [_NORM_MEAN], - [_NORM_STD], - labels=metadata_writer.Labels().add_from_file(_LABEL_FILE), - score_calibration=metadata_writer.ScoreCalibration.create_from_file( - metadata_fb.ScoreTransformationType.INVERSE_LOGISTIC, - _SCORE_CALIBRATION_FILE, - _SCORE_CALIBRATION_DEFAULT_SCORE, - ), + writer = ( + object_detector.MetadataWriter.create_for_models_with_nms( + model_buffer, + [_NORM_MEAN], + [_NORM_STD], + labels=metadata_writer.Labels().add_from_file(_LABEL_FILE), + score_calibration=metadata_writer.ScoreCalibration.create_from_file( + metadata_fb.ScoreTransformationType.INVERSE_LOGISTIC, + _SCORE_CALIBRATION_FILE, + _SCORE_CALIBRATION_DEFAULT_SCORE, + ), + ) ) tflite_content, metadata_json = writer.populate() with open(_JSON_FOR_SCORE_CALIBRATION, "r") as f: - expected_json = f.read() + expected_json = f.read().strip() self.assertEqual(metadata_json, expected_json) displayer = metadata.MetadataDisplayer.with_model_buffer(tflite_content) diff --git a/mediapipe/tasks/testdata/metadata/BUILD b/mediapipe/tasks/testdata/metadata/BUILD index e335831a..710e9d8c 100644 --- a/mediapipe/tasks/testdata/metadata/BUILD +++ b/mediapipe/tasks/testdata/metadata/BUILD @@ -32,7 +32,7 @@ mediapipe_files(srcs = [ "deeplabv3_with_activation.json", "deeplabv3_without_labels.json", "deeplabv3_without_metadata.tflite", - "efficientdet_lite0_v1.json", + "efficientdet_lite0_fp16_no_nms.tflite", "efficientdet_lite0_v1.tflite", "labelmap.txt", "mobile_ica_8bit-with-custom-metadata.tflite", @@ -64,6 +64,8 @@ exports_files([ "classification_tensor_float_meta.json", "classification_tensor_uint8_meta.json", "classification_tensor_unsupported_meta.json", + "efficientdet_lite0_fp16_no_nms_anchors.csv", + "efficientdet_lite0_fp16_no_nms.json", "feature_tensor_meta.json", "image_tensor_meta.json", "input_image_tensor_float_meta.json", @@ -94,6 +96,7 @@ filegroup( "bert_text_classifier_no_metadata.tflite", "coco_ssd_mobilenet_v1_1.0_quant_2018_06_29_no_metadata.tflite", "deeplabv3_without_metadata.tflite", + "efficientdet_lite0_fp16_no_nms.tflite", "efficientdet_lite0_v1.tflite", "mobile_ica_8bit-with-custom-metadata.tflite", "mobile_ica_8bit-with-large-min-parser-version.tflite", @@ -126,6 +129,7 @@ filegroup( "deeplabv3.json", "deeplabv3_with_activation.json", "deeplabv3_without_labels.json", + "efficientdet_lite0_fp16_no_nms_anchors.csv", "efficientdet_lite0_v1.json", "external_file", "feature_tensor_meta.json", diff --git a/mediapipe/tasks/testdata/metadata/coco_ssd_mobilenet_v1_score_calibration.json b/mediapipe/tasks/testdata/metadata/coco_ssd_mobilenet_v1_score_calibration.json index e24aa2e6..8459fdf1 100644 --- a/mediapipe/tasks/testdata/metadata/coco_ssd_mobilenet_v1_score_calibration.json +++ b/mediapipe/tasks/testdata/metadata/coco_ssd_mobilenet_v1_score_calibration.json @@ -56,23 +56,20 @@ "max": 2 } }, - "stats": { - } + "stats": {} }, { "name": "category", "description": "The categories of the detected boxes.", "content": { "content_properties_type": "FeatureProperties", - "content_properties": { - }, + "content_properties": {}, "range": { "min": 2, "max": 2 } }, - "stats": { - }, + "stats": {}, "associated_files": [ { "name": "labels.txt", @@ -86,8 +83,7 @@ "description": "The scores of the detected boxes.", "content": { "content_properties_type": "FeatureProperties", - "content_properties": { - }, + "content_properties": {}, "range": { "min": 2, "max": 2 @@ -102,8 +98,7 @@ } } ], - "stats": { - }, + "stats": {}, "associated_files": [ { "name": "score_calibration.txt", @@ -117,11 +112,9 @@ "description": "The number of the detected boxes.", "content": { "content_properties_type": "FeatureProperties", - "content_properties": { - } + "content_properties": {} }, - "stats": { - } + "stats": {} } ], "output_tensor_groups": [ diff --git a/mediapipe/tasks/testdata/metadata/efficientdet_lite0_fp16_no_nms_anchors.csv b/mediapipe/tasks/testdata/metadata/efficientdet_lite0_fp16_no_nms_anchors.csv new file mode 100644 index 00000000..e8abc1f3 --- /dev/null +++ b/mediapipe/tasks/testdata/metadata/efficientdet_lite0_fp16_no_nms_anchors.csv @@ -0,0 +1,19206 @@ +0.0125,0.0125,0.075,0.075 +0.012499999,0.012499997,0.05303301,0.10606602 +0.012499997,0.012499999,0.10606602,0.05303301 +0.012499999,0.012499999,0.09449408,0.09449408 +0.012499999,0.012500001,0.0668174,0.1336348 +0.012500001,0.012499999,0.1336348,0.0668174 +0.012500001,0.012500001,0.11905508,0.11905508 +0.012500002,0.012499999,0.084184654,0.1683693 +0.012499999,0.012500002,0.1683693,0.084184654 +0.0125,0.0375,0.075,0.075 +0.012499999,0.037499998,0.05303301,0.10606601 +0.012499997,0.0375,0.10606602,0.05303301 +0.012499999,0.0375,0.09449408,0.094494075 +0.012499999,0.0375,0.0668174,0.1336348 +0.012500001,0.0375,0.1336348,0.0668174 +0.012500001,0.0375,0.11905508,0.11905508 +0.012500002,0.0375,0.084184654,0.16836931 +0.012499999,0.0375,0.1683693,0.08418466 +0.0125,0.0625,0.075,0.075 +0.012499999,0.0625,0.05303301,0.10606602 +0.012499997,0.0625,0.10606602,0.05303301 +0.012499999,0.0625,0.09449408,0.094494075 +0.012499999,0.0625,0.0668174,0.1336348 +0.012500001,0.0625,0.1336348,0.0668174 +0.012500001,0.0625,0.11905508,0.11905508 +0.012500002,0.0625,0.084184654,0.16836932 +0.012499999,0.0625,0.1683693,0.08418465 +0.0125,0.0875,0.075,0.075 +0.012499999,0.08749999,0.05303301,0.10606601 +0.012499997,0.087500006,0.10606602,0.053033013 +0.012499999,0.087500006,0.09449408,0.09449408 +0.012499999,0.087500006,0.0668174,0.1336348 +0.012500001,0.0875,0.1336348,0.0668174 +0.012500001,0.0875,0.11905508,0.11905508 +0.012500002,0.0875,0.084184654,0.16836931 +0.012499999,0.087500006,0.1683693,0.084184654 +0.0125,0.112500004,0.075,0.075 +0.012499999,0.1125,0.05303301,0.10606601 +0.012499997,0.112500004,0.10606602,0.05303301 +0.012499999,0.1125,0.09449408,0.094494075 +0.012499999,0.1125,0.0668174,0.1336348 +0.012500001,0.1125,0.1336348,0.0668174 +0.012500001,0.1125,0.11905508,0.119055085 +0.012500002,0.112500004,0.084184654,0.16836931 +0.012499999,0.1125,0.1683693,0.08418465 +0.0125,0.1375,0.075,0.074999996 +0.012499999,0.1375,0.05303301,0.10606602 +0.012499997,0.1375,0.10606602,0.053033024 +0.012499999,0.1375,0.09449408,0.09449408 +0.012499999,0.1375,0.0668174,0.1336348 +0.012500001,0.1375,0.1336348,0.0668174 +0.012500001,0.13749999,0.11905508,0.11905508 +0.012500002,0.1375,0.084184654,0.1683693 +0.012499999,0.1375,0.1683693,0.084184654 +0.0125,0.1625,0.075,0.075 +0.012499999,0.16250001,0.05303301,0.106066026 +0.012499997,0.1625,0.10606602,0.05303301 +0.012499999,0.1625,0.09449408,0.094494075 +0.012499999,0.1625,0.0668174,0.1336348 +0.012500001,0.1625,0.1336348,0.0668174 +0.012500001,0.1625,0.11905508,0.11905508 +0.012500002,0.1625,0.084184654,0.1683693 +0.012499999,0.1625,0.1683693,0.08418464 +0.0125,0.1875,0.075,0.07499999 +0.012499999,0.1875,0.05303301,0.10606603 +0.012499997,0.1875,0.10606602,0.053033024 +0.012499999,0.1875,0.09449408,0.09449406 +0.012499999,0.1875,0.0668174,0.1336348 +0.012500001,0.1875,0.1336348,0.06681742 +0.012500001,0.1875,0.11905508,0.11905509 +0.012500002,0.1875,0.084184654,0.16836931 +0.012499999,0.1875,0.1683693,0.08418465 +0.0125,0.2125,0.075,0.075 +0.012499999,0.2125,0.05303301,0.10606603 +0.012499997,0.2125,0.10606602,0.05303301 +0.012499999,0.21249999,0.09449408,0.094494075 +0.012499999,0.2125,0.0668174,0.1336348 +0.012500001,0.2125,0.1336348,0.0668174 +0.012500001,0.2125,0.11905508,0.11905509 +0.012500002,0.2125,0.084184654,0.16836931 +0.012499999,0.2125,0.1683693,0.08418465 +0.0125,0.23750001,0.075,0.075 +0.012499999,0.2375,0.05303301,0.10606602 +0.012499997,0.2375,0.10606602,0.053033024 +0.012499999,0.2375,0.09449408,0.094494075 +0.012499999,0.23750001,0.0668174,0.13363482 +0.012500001,0.2375,0.1336348,0.06681743 +0.012500001,0.2375,0.11905508,0.11905506 +0.012500002,0.2375,0.084184654,0.16836932 +0.012499999,0.23750001,0.1683693,0.08418466 +0.0125,0.2625,0.075,0.07500002 +0.012499999,0.2625,0.05303301,0.10606603 +0.012499997,0.2625,0.10606602,0.053033024 +0.012499999,0.2625,0.09449408,0.094494075 +0.012499999,0.2625,0.0668174,0.13363479 +0.012500001,0.2625,0.1336348,0.06681743 +0.012500001,0.2625,0.11905508,0.11905508 +0.012500002,0.2625,0.084184654,0.1683693 +0.012499999,0.2625,0.1683693,0.08418463 +0.0125,0.2875,0.075,0.07499999 +0.012499999,0.2875,0.05303301,0.10606603 +0.012499997,0.28750002,0.10606602,0.053033024 +0.012499999,0.2875,0.09449408,0.094494045 +0.012499999,0.2875,0.0668174,0.1336348 +0.012500001,0.28750002,0.1336348,0.06681743 +0.012500001,0.2875,0.11905508,0.11905508 +0.012500002,0.2875,0.084184654,0.1683693 +0.012499999,0.2875,0.1683693,0.08418465 +0.0125,0.3125,0.075,0.07499999 +0.012499999,0.3125,0.05303301,0.10606605 +0.012499997,0.3125,0.10606602,0.053032994 +0.012499999,0.3125,0.09449408,0.094494045 +0.012499999,0.3125,0.0668174,0.1336348 +0.012500001,0.3125,0.1336348,0.0668174 +0.012500001,0.3125,0.11905508,0.11905509 +0.012500002,0.3125,0.084184654,0.1683693 +0.012499999,0.3125,0.1683693,0.08418465 +0.0125,0.3375,0.075,0.07499999 +0.012499999,0.3375,0.05303301,0.10606605 +0.012499997,0.33749998,0.10606602,0.053033024 +0.012499999,0.3375,0.09449408,0.094494045 +0.012499999,0.33750004,0.0668174,0.13363484 +0.012500001,0.33749998,0.1336348,0.06681743 +0.012500001,0.3375,0.11905508,0.11905509 +0.012500002,0.3375,0.084184654,0.1683693 +0.012499999,0.3375,0.1683693,0.08418465 +0.0125,0.3625,0.075,0.07500002 +0.012499999,0.3625,0.05303301,0.10606602 +0.012499997,0.3625,0.10606602,0.053033024 +0.012499999,0.3625,0.09449408,0.094494075 +0.012499999,0.3625,0.0668174,0.1336348 +0.012500001,0.3625,0.1336348,0.06681743 +0.012500001,0.3625,0.11905508,0.11905506 +0.012500002,0.3625,0.084184654,0.1683693 +0.012499999,0.3625,0.1683693,0.08418465 +0.0125,0.3875,0.075,0.07500002 +0.012499999,0.3875,0.05303301,0.10606602 +0.012499997,0.3875,0.10606602,0.053032994 +0.012499999,0.3875,0.09449408,0.094494075 +0.012499999,0.3875,0.0668174,0.13363484 +0.012500001,0.3875,0.1336348,0.0668174 +0.012500001,0.3875,0.11905508,0.11905506 +0.012500002,0.3875,0.084184654,0.1683693 +0.012499999,0.3875,0.1683693,0.08418465 +0.0125,0.4125,0.075,0.07499999 +0.012499999,0.4125,0.05303301,0.10606605 +0.012499997,0.4125,0.10606602,0.053032994 +0.012499999,0.4125,0.09449408,0.094494045 +0.012499999,0.41250002,0.0668174,0.13363484 +0.012500001,0.4125,0.1336348,0.0668174 +0.012500001,0.4125,0.11905508,0.11905509 +0.012500002,0.4125,0.084184654,0.1683693 +0.012499999,0.4125,0.1683693,0.08418465 +0.0125,0.4375,0.075,0.07499999 +0.012499999,0.4375,0.05303301,0.10606605 +0.012499997,0.4375,0.10606602,0.053032994 +0.012499999,0.4375,0.09449408,0.094494045 +0.012499999,0.4375,0.0668174,0.1336348 +0.012500001,0.4375,0.1336348,0.0668174 +0.012500001,0.4375,0.11905508,0.11905509 +0.012500002,0.4375,0.084184654,0.1683693 +0.012499999,0.4375,0.1683693,0.08418465 +0.0125,0.4625,0.075,0.07499999 +0.012499999,0.4625,0.05303301,0.10606605 +0.012499997,0.46249998,0.10606602,0.053032964 +0.012499999,0.4625,0.09449408,0.094494045 +0.012499999,0.46250004,0.0668174,0.13363484 +0.012500001,0.46249998,0.1336348,0.06681737 +0.012500001,0.4625,0.11905508,0.11905509 +0.012500002,0.46249998,0.084184654,0.16836926 +0.012499999,0.46249998,0.1683693,0.08418462 +0.0125,0.48749998,0.075,0.07499999 +0.012499999,0.4875,0.05303301,0.10606602 +0.012499997,0.4875,0.10606602,0.053032994 +0.012499999,0.48749998,0.09449408,0.094494045 +0.012499999,0.4875,0.0668174,0.13363484 +0.012500001,0.4875,0.1336348,0.0668174 +0.012500001,0.4875,0.11905508,0.11905506 +0.012500002,0.4875,0.084184654,0.1683693 +0.012499999,0.4875,0.1683693,0.08418465 +0.0125,0.5125,0.075,0.07500002 +0.012499999,0.51250005,0.05303301,0.10606605 +0.012499997,0.5125,0.10606602,0.053032964 +0.012499999,0.5125,0.09449408,0.094494075 +0.012499999,0.51250005,0.0668174,0.13363487 +0.012500001,0.5125,0.1336348,0.06681737 +0.012500001,0.51250005,0.11905508,0.11905509 +0.012500002,0.5125,0.084184654,0.1683693 +0.012499999,0.5125,0.1683693,0.08418465 +0.0125,0.5375,0.075,0.07499999 +0.012499999,0.5375,0.05303301,0.10606605 +0.012499997,0.5375,0.10606602,0.053032935 +0.012499999,0.5375,0.09449408,0.094494045 +0.012499999,0.5375,0.0668174,0.13363487 +0.012500001,0.5375,0.1336348,0.06681734 +0.012500001,0.5375,0.11905508,0.11905509 +0.012500002,0.5375,0.084184654,0.16836932 +0.012499999,0.5375,0.1683693,0.08418468 +0.0125,0.5625,0.075,0.07500005 +0.012499999,0.5625,0.05303301,0.10606599 +0.012499997,0.5625,0.10606602,0.053032994 +0.012499999,0.5625,0.09449408,0.094494104 +0.012499999,0.5625,0.0668174,0.13363484 +0.012500001,0.5625,0.1336348,0.0668174 +0.012500001,0.5625,0.11905508,0.11905503 +0.012500002,0.5625,0.084184654,0.1683693 +0.012499999,0.5625,0.1683693,0.08418465 +0.0125,0.5875,0.075,0.07499999 +0.012499999,0.5875,0.05303301,0.10606605 +0.012499997,0.5875,0.10606602,0.053032935 +0.012499999,0.5875,0.09449408,0.094494045 +0.012499999,0.5875,0.0668174,0.13363487 +0.012500001,0.5875,0.1336348,0.06681734 +0.012500001,0.5875,0.11905508,0.11905509 +0.012500002,0.5875,0.084184654,0.1683693 +0.012499999,0.5875,0.1683693,0.08418465 +0.0125,0.61249995,0.075,0.07499999 +0.012499999,0.61249995,0.05303301,0.10606605 +0.012499997,0.6125,0.10606602,0.053032994 +0.012499999,0.61249995,0.09449408,0.094494045 +0.012499999,0.61249995,0.0668174,0.13363487 +0.012500001,0.6125,0.1336348,0.0668174 +0.012500001,0.61249995,0.11905508,0.11905509 +0.012500002,0.6125,0.084184654,0.1683693 +0.012499999,0.6125,0.1683693,0.08418465 +0.0125,0.63750005,0.075,0.07499999 +0.012499999,0.63750005,0.05303301,0.10606605 +0.012499997,0.6375,0.10606602,0.053032994 +0.012499999,0.63750005,0.09449408,0.094494045 +0.012499999,0.63750005,0.0668174,0.13363487 +0.012500001,0.6375,0.1336348,0.0668174 +0.012500001,0.63750005,0.11905508,0.11905509 +0.012500002,0.6375,0.084184654,0.1683693 +0.012499999,0.6375,0.1683693,0.08418465 +0.0125,0.6625,0.075,0.07499999 +0.012499999,0.6625,0.05303301,0.10606605 +0.012499997,0.6625,0.10606602,0.053032935 +0.012499999,0.6625,0.09449408,0.094494045 +0.012499999,0.6625,0.0668174,0.13363487 +0.012500001,0.6625,0.1336348,0.06681734 +0.012500001,0.6625,0.11905508,0.11905509 +0.012500002,0.6625,0.084184654,0.1683693 +0.012499999,0.6625,0.1683693,0.08418465 +0.0125,0.6875,0.075,0.07500005 +0.012499999,0.6875,0.05303301,0.10606599 +0.012499997,0.6875,0.10606602,0.053032994 +0.012499999,0.6875,0.09449408,0.094494104 +0.012499999,0.6875,0.0668174,0.1336348 +0.012500001,0.6875,0.1336348,0.0668174 +0.012500001,0.6875,0.11905508,0.11905503 +0.012500002,0.6875,0.084184654,0.1683693 +0.012499999,0.6875,0.1683693,0.08418465 +0.0125,0.7125,0.075,0.07499999 +0.012499999,0.7125,0.05303301,0.10606605 +0.012499997,0.7125,0.10606602,0.053032935 +0.012499999,0.7125,0.09449408,0.094494045 +0.012499999,0.7125,0.0668174,0.13363487 +0.012500001,0.7125,0.1336348,0.06681734 +0.012500001,0.7125,0.11905508,0.11905509 +0.012500002,0.7125,0.084184654,0.1683693 +0.012499999,0.7125,0.1683693,0.08418465 +0.0125,0.73749995,0.075,0.07499999 +0.012499999,0.73749995,0.05303301,0.10606605 +0.012499997,0.7375,0.10606602,0.053032994 +0.012499999,0.73749995,0.09449408,0.094494045 +0.012499999,0.73749995,0.0668174,0.1336348 +0.012500001,0.7375,0.1336348,0.0668174 +0.012500001,0.73749995,0.11905508,0.11905509 +0.012500002,0.7375,0.084184654,0.1683693 +0.012499999,0.7375,0.1683693,0.08418465 +0.0125,0.76250005,0.075,0.07499999 +0.012499999,0.7625,0.05303301,0.10606599 +0.012499997,0.7625,0.10606602,0.053032994 +0.012499999,0.76250005,0.09449408,0.094494045 +0.012499999,0.7625,0.0668174,0.1336348 +0.012500001,0.7625,0.1336348,0.0668174 +0.012500001,0.7625,0.11905508,0.11905503 +0.012500002,0.7625,0.084184654,0.1683693 +0.012499999,0.7625,0.1683693,0.08418465 +0.0125,0.7875,0.075,0.07499999 +0.012499999,0.78749996,0.05303301,0.10606599 +0.012499997,0.7875,0.10606602,0.053032994 +0.012499999,0.7875,0.09449408,0.094494045 +0.012499999,0.78749996,0.0668174,0.1336348 +0.012500001,0.7875,0.1336348,0.0668174 +0.012500001,0.78749996,0.11905508,0.11905503 +0.012500002,0.7875,0.084184654,0.1683693 +0.012499999,0.7875,0.1683693,0.08418465 +0.0125,0.8125,0.075,0.07500005 +0.012499999,0.8125,0.05303301,0.10606599 +0.012499997,0.8125,0.10606602,0.053033054 +0.012499999,0.8125,0.09449408,0.094494104 +0.012499999,0.8125,0.0668174,0.1336348 +0.012500001,0.8125,0.1336348,0.06681746 +0.012500001,0.8125,0.11905508,0.11905503 +0.012500002,0.8125,0.084184654,0.1683693 +0.012499999,0.8125,0.1683693,0.08418465 +0.0125,0.8375,0.075,0.07499999 +0.012499999,0.8375,0.05303301,0.10606599 +0.012499997,0.8375,0.10606602,0.053033054 +0.012499999,0.8375,0.09449408,0.094494045 +0.012499999,0.8375,0.0668174,0.1336348 +0.012500001,0.8375,0.1336348,0.06681746 +0.012500001,0.8375,0.11905508,0.11905503 +0.012500002,0.8375,0.084184654,0.1683693 +0.012499999,0.8375,0.1683693,0.08418465 +0.0125,0.86249995,0.075,0.07499999 +0.012499999,0.86249995,0.05303301,0.10606593 +0.012499997,0.86249995,0.10606602,0.053033054 +0.012499999,0.86249995,0.09449408,0.094494045 +0.012499999,0.86249995,0.0668174,0.1336348 +0.012500001,0.86249995,0.1336348,0.06681746 +0.012500001,0.86249995,0.11905508,0.11905497 +0.012500002,0.8625,0.084184654,0.1683693 +0.012499999,0.8625,0.1683693,0.08418465 +0.0125,0.88750005,0.075,0.07499999 +0.012499999,0.88750005,0.05303301,0.10606593 +0.012499997,0.88750005,0.10606602,0.053033054 +0.012499999,0.88750005,0.09449408,0.094494045 +0.012499999,0.88750005,0.0668174,0.13363475 +0.012500001,0.88750005,0.1336348,0.06681746 +0.012500001,0.88750005,0.11905508,0.11905497 +0.012500002,0.8875,0.084184654,0.1683693 +0.012499999,0.8875,0.1683693,0.08418465 +0.0125,0.9125,0.075,0.07499999 +0.012499999,0.9125,0.05303301,0.10606593 +0.012499997,0.9125,0.10606602,0.053033054 +0.012499999,0.9125,0.09449408,0.094494045 +0.012499999,0.9125,0.0668174,0.13363475 +0.012500001,0.9125,0.1336348,0.06681746 +0.012500001,0.9125,0.11905508,0.11905497 +0.012500002,0.9125,0.084184654,0.1683693 +0.012499999,0.9125,0.1683693,0.08418465 +0.0125,0.9375,0.075,0.07500005 +0.012499999,0.9375,0.05303301,0.10606599 +0.012499997,0.9375,0.10606602,0.053033113 +0.012499999,0.9375,0.09449408,0.094494104 +0.012499999,0.9375,0.0668174,0.1336348 +0.012500001,0.9375,0.1336348,0.06681752 +0.012500001,0.9375,0.11905508,0.11905503 +0.012500002,0.9375,0.084184654,0.1683693 +0.012499999,0.9375,0.1683693,0.08418465 +0.0125,0.9625,0.075,0.07499999 +0.012499999,0.9625,0.05303301,0.10606593 +0.012499997,0.9625,0.10606602,0.053033054 +0.012499999,0.9625,0.09449408,0.094494045 +0.012499999,0.9625,0.0668174,0.13363475 +0.012500001,0.9625,0.1336348,0.06681746 +0.012500001,0.9625,0.11905508,0.11905497 +0.012500002,0.9625,0.084184654,0.1683693 +0.012499999,0.9625,0.1683693,0.08418465 +0.0125,0.98749995,0.075,0.07499999 +0.012499999,0.98749995,0.05303301,0.10606593 +0.012499997,0.98749995,0.10606602,0.053033054 +0.012499999,0.98749995,0.09449408,0.094494045 +0.012499999,0.98749995,0.0668174,0.13363475 +0.012500001,0.98749995,0.1336348,0.06681746 +0.012500001,0.98749995,0.11905508,0.11905497 +0.012500002,0.98749995,0.084184654,0.16836923 +0.012499999,0.98749995,0.1683693,0.08418459 +0.0375,0.0125,0.075,0.075 +0.0375,0.012499997,0.05303301,0.10606602 +0.037499998,0.012499999,0.10606601,0.05303301 +0.0375,0.012499999,0.094494075,0.09449408 +0.0375,0.012500001,0.0668174,0.1336348 +0.0375,0.012499999,0.1336348,0.0668174 +0.0375,0.012500001,0.11905508,0.11905508 +0.0375,0.012499999,0.08418466,0.1683693 +0.0375,0.012500002,0.16836931,0.084184654 +0.0375,0.0375,0.075,0.075 +0.0375,0.037499998,0.05303301,0.10606601 +0.037499998,0.0375,0.10606601,0.05303301 +0.0375,0.0375,0.094494075,0.094494075 +0.0375,0.0375,0.0668174,0.1336348 +0.0375,0.0375,0.1336348,0.0668174 +0.0375,0.0375,0.11905508,0.11905508 +0.0375,0.0375,0.08418466,0.16836931 +0.0375,0.0375,0.16836931,0.08418466 +0.0375,0.0625,0.075,0.075 +0.0375,0.0625,0.05303301,0.10606602 +0.037499998,0.0625,0.10606601,0.05303301 +0.0375,0.0625,0.094494075,0.094494075 +0.0375,0.0625,0.0668174,0.1336348 +0.0375,0.0625,0.1336348,0.0668174 +0.0375,0.0625,0.11905508,0.11905508 +0.0375,0.0625,0.08418466,0.16836932 +0.0375,0.0625,0.16836931,0.08418465 +0.0375,0.0875,0.075,0.075 +0.0375,0.08749999,0.05303301,0.10606601 +0.037499998,0.087500006,0.10606601,0.053033013 +0.0375,0.087500006,0.094494075,0.09449408 +0.0375,0.087500006,0.0668174,0.1336348 +0.0375,0.0875,0.1336348,0.0668174 +0.0375,0.0875,0.11905508,0.11905508 +0.0375,0.0875,0.08418466,0.16836931 +0.0375,0.087500006,0.16836931,0.084184654 +0.0375,0.112500004,0.075,0.075 +0.0375,0.1125,0.05303301,0.10606601 +0.037499998,0.112500004,0.10606601,0.05303301 +0.0375,0.1125,0.094494075,0.094494075 +0.0375,0.1125,0.0668174,0.1336348 +0.0375,0.1125,0.1336348,0.0668174 +0.0375,0.1125,0.11905508,0.119055085 +0.0375,0.112500004,0.08418466,0.16836931 +0.0375,0.1125,0.16836931,0.08418465 +0.0375,0.1375,0.075,0.074999996 +0.0375,0.1375,0.05303301,0.10606602 +0.037499998,0.1375,0.10606601,0.053033024 +0.0375,0.1375,0.094494075,0.09449408 +0.0375,0.1375,0.0668174,0.1336348 +0.0375,0.1375,0.1336348,0.0668174 +0.0375,0.13749999,0.11905508,0.11905508 +0.0375,0.1375,0.08418466,0.1683693 +0.0375,0.1375,0.16836931,0.084184654 +0.0375,0.1625,0.075,0.075 +0.0375,0.16250001,0.05303301,0.106066026 +0.037499998,0.1625,0.10606601,0.05303301 +0.0375,0.1625,0.094494075,0.094494075 +0.0375,0.1625,0.0668174,0.1336348 +0.0375,0.1625,0.1336348,0.0668174 +0.0375,0.1625,0.11905508,0.11905508 +0.0375,0.1625,0.08418466,0.1683693 +0.0375,0.1625,0.16836931,0.08418464 +0.0375,0.1875,0.075,0.07499999 +0.0375,0.1875,0.05303301,0.10606603 +0.037499998,0.1875,0.10606601,0.053033024 +0.0375,0.1875,0.094494075,0.09449406 +0.0375,0.1875,0.0668174,0.1336348 +0.0375,0.1875,0.1336348,0.06681742 +0.0375,0.1875,0.11905508,0.11905509 +0.0375,0.1875,0.08418466,0.16836931 +0.0375,0.1875,0.16836931,0.08418465 +0.0375,0.2125,0.075,0.075 +0.0375,0.2125,0.05303301,0.10606603 +0.037499998,0.2125,0.10606601,0.05303301 +0.0375,0.21249999,0.094494075,0.094494075 +0.0375,0.2125,0.0668174,0.1336348 +0.0375,0.2125,0.1336348,0.0668174 +0.0375,0.2125,0.11905508,0.11905509 +0.0375,0.2125,0.08418466,0.16836931 +0.0375,0.2125,0.16836931,0.08418465 +0.0375,0.23750001,0.075,0.075 +0.0375,0.2375,0.05303301,0.10606602 +0.037499998,0.2375,0.10606601,0.053033024 +0.0375,0.2375,0.094494075,0.094494075 +0.0375,0.23750001,0.0668174,0.13363482 +0.0375,0.2375,0.1336348,0.06681743 +0.0375,0.2375,0.11905508,0.11905506 +0.0375,0.2375,0.08418466,0.16836932 +0.0375,0.23750001,0.16836931,0.08418466 +0.0375,0.2625,0.075,0.07500002 +0.0375,0.2625,0.05303301,0.10606603 +0.037499998,0.2625,0.10606601,0.053033024 +0.0375,0.2625,0.094494075,0.094494075 +0.0375,0.2625,0.0668174,0.13363479 +0.0375,0.2625,0.1336348,0.06681743 +0.0375,0.2625,0.11905508,0.11905508 +0.0375,0.2625,0.08418466,0.1683693 +0.0375,0.2625,0.16836931,0.08418463 +0.0375,0.2875,0.075,0.07499999 +0.0375,0.2875,0.05303301,0.10606603 +0.037499998,0.28750002,0.10606601,0.053033024 +0.0375,0.2875,0.094494075,0.094494045 +0.0375,0.2875,0.0668174,0.1336348 +0.0375,0.28750002,0.1336348,0.06681743 +0.0375,0.2875,0.11905508,0.11905508 +0.0375,0.2875,0.08418466,0.1683693 +0.0375,0.2875,0.16836931,0.08418465 +0.0375,0.3125,0.075,0.07499999 +0.0375,0.3125,0.05303301,0.10606605 +0.037499998,0.3125,0.10606601,0.053032994 +0.0375,0.3125,0.094494075,0.094494045 +0.0375,0.3125,0.0668174,0.1336348 +0.0375,0.3125,0.1336348,0.0668174 +0.0375,0.3125,0.11905508,0.11905509 +0.0375,0.3125,0.08418466,0.1683693 +0.0375,0.3125,0.16836931,0.08418465 +0.0375,0.3375,0.075,0.07499999 +0.0375,0.3375,0.05303301,0.10606605 +0.037499998,0.33749998,0.10606601,0.053033024 +0.0375,0.3375,0.094494075,0.094494045 +0.0375,0.33750004,0.0668174,0.13363484 +0.0375,0.33749998,0.1336348,0.06681743 +0.0375,0.3375,0.11905508,0.11905509 +0.0375,0.3375,0.08418466,0.1683693 +0.0375,0.3375,0.16836931,0.08418465 +0.0375,0.3625,0.075,0.07500002 +0.0375,0.3625,0.05303301,0.10606602 +0.037499998,0.3625,0.10606601,0.053033024 +0.0375,0.3625,0.094494075,0.094494075 +0.0375,0.3625,0.0668174,0.1336348 +0.0375,0.3625,0.1336348,0.06681743 +0.0375,0.3625,0.11905508,0.11905506 +0.0375,0.3625,0.08418466,0.1683693 +0.0375,0.3625,0.16836931,0.08418465 +0.0375,0.3875,0.075,0.07500002 +0.0375,0.3875,0.05303301,0.10606602 +0.037499998,0.3875,0.10606601,0.053032994 +0.0375,0.3875,0.094494075,0.094494075 +0.0375,0.3875,0.0668174,0.13363484 +0.0375,0.3875,0.1336348,0.0668174 +0.0375,0.3875,0.11905508,0.11905506 +0.0375,0.3875,0.08418466,0.1683693 +0.0375,0.3875,0.16836931,0.08418465 +0.0375,0.4125,0.075,0.07499999 +0.0375,0.4125,0.05303301,0.10606605 +0.037499998,0.4125,0.10606601,0.053032994 +0.0375,0.4125,0.094494075,0.094494045 +0.0375,0.41250002,0.0668174,0.13363484 +0.0375,0.4125,0.1336348,0.0668174 +0.0375,0.4125,0.11905508,0.11905509 +0.0375,0.4125,0.08418466,0.1683693 +0.0375,0.4125,0.16836931,0.08418465 +0.0375,0.4375,0.075,0.07499999 +0.0375,0.4375,0.05303301,0.10606605 +0.037499998,0.4375,0.10606601,0.053032994 +0.0375,0.4375,0.094494075,0.094494045 +0.0375,0.4375,0.0668174,0.1336348 +0.0375,0.4375,0.1336348,0.0668174 +0.0375,0.4375,0.11905508,0.11905509 +0.0375,0.4375,0.08418466,0.1683693 +0.0375,0.4375,0.16836931,0.08418465 +0.0375,0.4625,0.075,0.07499999 +0.0375,0.4625,0.05303301,0.10606605 +0.037499998,0.46249998,0.10606601,0.053032964 +0.0375,0.4625,0.094494075,0.094494045 +0.0375,0.46250004,0.0668174,0.13363484 +0.0375,0.46249998,0.1336348,0.06681737 +0.0375,0.4625,0.11905508,0.11905509 +0.0375,0.46249998,0.08418466,0.16836926 +0.0375,0.46249998,0.16836931,0.08418462 +0.0375,0.48749998,0.075,0.07499999 +0.0375,0.4875,0.05303301,0.10606602 +0.037499998,0.4875,0.10606601,0.053032994 +0.0375,0.48749998,0.094494075,0.094494045 +0.0375,0.4875,0.0668174,0.13363484 +0.0375,0.4875,0.1336348,0.0668174 +0.0375,0.4875,0.11905508,0.11905506 +0.0375,0.4875,0.08418466,0.1683693 +0.0375,0.4875,0.16836931,0.08418465 +0.0375,0.5125,0.075,0.07500002 +0.0375,0.51250005,0.05303301,0.10606605 +0.037499998,0.5125,0.10606601,0.053032964 +0.0375,0.5125,0.094494075,0.094494075 +0.0375,0.51250005,0.0668174,0.13363487 +0.0375,0.5125,0.1336348,0.06681737 +0.0375,0.51250005,0.11905508,0.11905509 +0.0375,0.5125,0.08418466,0.1683693 +0.0375,0.5125,0.16836931,0.08418465 +0.0375,0.5375,0.075,0.07499999 +0.0375,0.5375,0.05303301,0.10606605 +0.037499998,0.5375,0.10606601,0.053032935 +0.0375,0.5375,0.094494075,0.094494045 +0.0375,0.5375,0.0668174,0.13363487 +0.0375,0.5375,0.1336348,0.06681734 +0.0375,0.5375,0.11905508,0.11905509 +0.0375,0.5375,0.08418466,0.16836932 +0.0375,0.5375,0.16836931,0.08418468 +0.0375,0.5625,0.075,0.07500005 +0.0375,0.5625,0.05303301,0.10606599 +0.037499998,0.5625,0.10606601,0.053032994 +0.0375,0.5625,0.094494075,0.094494104 +0.0375,0.5625,0.0668174,0.13363484 +0.0375,0.5625,0.1336348,0.0668174 +0.0375,0.5625,0.11905508,0.11905503 +0.0375,0.5625,0.08418466,0.1683693 +0.0375,0.5625,0.16836931,0.08418465 +0.0375,0.5875,0.075,0.07499999 +0.0375,0.5875,0.05303301,0.10606605 +0.037499998,0.5875,0.10606601,0.053032935 +0.0375,0.5875,0.094494075,0.094494045 +0.0375,0.5875,0.0668174,0.13363487 +0.0375,0.5875,0.1336348,0.06681734 +0.0375,0.5875,0.11905508,0.11905509 +0.0375,0.5875,0.08418466,0.1683693 +0.0375,0.5875,0.16836931,0.08418465 +0.0375,0.61249995,0.075,0.07499999 +0.0375,0.61249995,0.05303301,0.10606605 +0.037499998,0.6125,0.10606601,0.053032994 +0.0375,0.61249995,0.094494075,0.094494045 +0.0375,0.61249995,0.0668174,0.13363487 +0.0375,0.6125,0.1336348,0.0668174 +0.0375,0.61249995,0.11905508,0.11905509 +0.0375,0.6125,0.08418466,0.1683693 +0.0375,0.6125,0.16836931,0.08418465 +0.0375,0.63750005,0.075,0.07499999 +0.0375,0.63750005,0.05303301,0.10606605 +0.037499998,0.6375,0.10606601,0.053032994 +0.0375,0.63750005,0.094494075,0.094494045 +0.0375,0.63750005,0.0668174,0.13363487 +0.0375,0.6375,0.1336348,0.0668174 +0.0375,0.63750005,0.11905508,0.11905509 +0.0375,0.6375,0.08418466,0.1683693 +0.0375,0.6375,0.16836931,0.08418465 +0.0375,0.6625,0.075,0.07499999 +0.0375,0.6625,0.05303301,0.10606605 +0.037499998,0.6625,0.10606601,0.053032935 +0.0375,0.6625,0.094494075,0.094494045 +0.0375,0.6625,0.0668174,0.13363487 +0.0375,0.6625,0.1336348,0.06681734 +0.0375,0.6625,0.11905508,0.11905509 +0.0375,0.6625,0.08418466,0.1683693 +0.0375,0.6625,0.16836931,0.08418465 +0.0375,0.6875,0.075,0.07500005 +0.0375,0.6875,0.05303301,0.10606599 +0.037499998,0.6875,0.10606601,0.053032994 +0.0375,0.6875,0.094494075,0.094494104 +0.0375,0.6875,0.0668174,0.1336348 +0.0375,0.6875,0.1336348,0.0668174 +0.0375,0.6875,0.11905508,0.11905503 +0.0375,0.6875,0.08418466,0.1683693 +0.0375,0.6875,0.16836931,0.08418465 +0.0375,0.7125,0.075,0.07499999 +0.0375,0.7125,0.05303301,0.10606605 +0.037499998,0.7125,0.10606601,0.053032935 +0.0375,0.7125,0.094494075,0.094494045 +0.0375,0.7125,0.0668174,0.13363487 +0.0375,0.7125,0.1336348,0.06681734 +0.0375,0.7125,0.11905508,0.11905509 +0.0375,0.7125,0.08418466,0.1683693 +0.0375,0.7125,0.16836931,0.08418465 +0.0375,0.73749995,0.075,0.07499999 +0.0375,0.73749995,0.05303301,0.10606605 +0.037499998,0.7375,0.10606601,0.053032994 +0.0375,0.73749995,0.094494075,0.094494045 +0.0375,0.73749995,0.0668174,0.1336348 +0.0375,0.7375,0.1336348,0.0668174 +0.0375,0.73749995,0.11905508,0.11905509 +0.0375,0.7375,0.08418466,0.1683693 +0.0375,0.7375,0.16836931,0.08418465 +0.0375,0.76250005,0.075,0.07499999 +0.0375,0.7625,0.05303301,0.10606599 +0.037499998,0.7625,0.10606601,0.053032994 +0.0375,0.76250005,0.094494075,0.094494045 +0.0375,0.7625,0.0668174,0.1336348 +0.0375,0.7625,0.1336348,0.0668174 +0.0375,0.7625,0.11905508,0.11905503 +0.0375,0.7625,0.08418466,0.1683693 +0.0375,0.7625,0.16836931,0.08418465 +0.0375,0.7875,0.075,0.07499999 +0.0375,0.78749996,0.05303301,0.10606599 +0.037499998,0.7875,0.10606601,0.053032994 +0.0375,0.7875,0.094494075,0.094494045 +0.0375,0.78749996,0.0668174,0.1336348 +0.0375,0.7875,0.1336348,0.0668174 +0.0375,0.78749996,0.11905508,0.11905503 +0.0375,0.7875,0.08418466,0.1683693 +0.0375,0.7875,0.16836931,0.08418465 +0.0375,0.8125,0.075,0.07500005 +0.0375,0.8125,0.05303301,0.10606599 +0.037499998,0.8125,0.10606601,0.053033054 +0.0375,0.8125,0.094494075,0.094494104 +0.0375,0.8125,0.0668174,0.1336348 +0.0375,0.8125,0.1336348,0.06681746 +0.0375,0.8125,0.11905508,0.11905503 +0.0375,0.8125,0.08418466,0.1683693 +0.0375,0.8125,0.16836931,0.08418465 +0.0375,0.8375,0.075,0.07499999 +0.0375,0.8375,0.05303301,0.10606599 +0.037499998,0.8375,0.10606601,0.053033054 +0.0375,0.8375,0.094494075,0.094494045 +0.0375,0.8375,0.0668174,0.1336348 +0.0375,0.8375,0.1336348,0.06681746 +0.0375,0.8375,0.11905508,0.11905503 +0.0375,0.8375,0.08418466,0.1683693 +0.0375,0.8375,0.16836931,0.08418465 +0.0375,0.86249995,0.075,0.07499999 +0.0375,0.86249995,0.05303301,0.10606593 +0.037499998,0.86249995,0.10606601,0.053033054 +0.0375,0.86249995,0.094494075,0.094494045 +0.0375,0.86249995,0.0668174,0.1336348 +0.0375,0.86249995,0.1336348,0.06681746 +0.0375,0.86249995,0.11905508,0.11905497 +0.0375,0.8625,0.08418466,0.1683693 +0.0375,0.8625,0.16836931,0.08418465 +0.0375,0.88750005,0.075,0.07499999 +0.0375,0.88750005,0.05303301,0.10606593 +0.037499998,0.88750005,0.10606601,0.053033054 +0.0375,0.88750005,0.094494075,0.094494045 +0.0375,0.88750005,0.0668174,0.13363475 +0.0375,0.88750005,0.1336348,0.06681746 +0.0375,0.88750005,0.11905508,0.11905497 +0.0375,0.8875,0.08418466,0.1683693 +0.0375,0.8875,0.16836931,0.08418465 +0.0375,0.9125,0.075,0.07499999 +0.0375,0.9125,0.05303301,0.10606593 +0.037499998,0.9125,0.10606601,0.053033054 +0.0375,0.9125,0.094494075,0.094494045 +0.0375,0.9125,0.0668174,0.13363475 +0.0375,0.9125,0.1336348,0.06681746 +0.0375,0.9125,0.11905508,0.11905497 +0.0375,0.9125,0.08418466,0.1683693 +0.0375,0.9125,0.16836931,0.08418465 +0.0375,0.9375,0.075,0.07500005 +0.0375,0.9375,0.05303301,0.10606599 +0.037499998,0.9375,0.10606601,0.053033113 +0.0375,0.9375,0.094494075,0.094494104 +0.0375,0.9375,0.0668174,0.1336348 +0.0375,0.9375,0.1336348,0.06681752 +0.0375,0.9375,0.11905508,0.11905503 +0.0375,0.9375,0.08418466,0.1683693 +0.0375,0.9375,0.16836931,0.08418465 +0.0375,0.9625,0.075,0.07499999 +0.0375,0.9625,0.05303301,0.10606593 +0.037499998,0.9625,0.10606601,0.053033054 +0.0375,0.9625,0.094494075,0.094494045 +0.0375,0.9625,0.0668174,0.13363475 +0.0375,0.9625,0.1336348,0.06681746 +0.0375,0.9625,0.11905508,0.11905497 +0.0375,0.9625,0.08418466,0.1683693 +0.0375,0.9625,0.16836931,0.08418465 +0.0375,0.98749995,0.075,0.07499999 +0.0375,0.98749995,0.05303301,0.10606593 +0.037499998,0.98749995,0.10606601,0.053033054 +0.0375,0.98749995,0.094494075,0.094494045 +0.0375,0.98749995,0.0668174,0.13363475 +0.0375,0.98749995,0.1336348,0.06681746 +0.0375,0.98749995,0.11905508,0.11905497 +0.0375,0.98749995,0.08418466,0.16836923 +0.0375,0.98749995,0.16836931,0.08418459 +0.0625,0.0125,0.075,0.075 +0.0625,0.012499997,0.05303301,0.10606602 +0.0625,0.012499999,0.10606602,0.05303301 +0.0625,0.012499999,0.094494075,0.09449408 +0.0625,0.012500001,0.0668174,0.1336348 +0.0625,0.012499999,0.1336348,0.0668174 +0.0625,0.012500001,0.11905508,0.11905508 +0.0625,0.012499999,0.08418465,0.1683693 +0.0625,0.012500002,0.16836932,0.084184654 +0.0625,0.0375,0.075,0.075 +0.0625,0.037499998,0.05303301,0.10606601 +0.0625,0.0375,0.10606602,0.05303301 +0.0625,0.0375,0.094494075,0.094494075 +0.0625,0.0375,0.0668174,0.1336348 +0.0625,0.0375,0.1336348,0.0668174 +0.0625,0.0375,0.11905508,0.11905508 +0.0625,0.0375,0.08418465,0.16836931 +0.0625,0.0375,0.16836932,0.08418466 +0.0625,0.0625,0.075,0.075 +0.0625,0.0625,0.05303301,0.10606602 +0.0625,0.0625,0.10606602,0.05303301 +0.0625,0.0625,0.094494075,0.094494075 +0.0625,0.0625,0.0668174,0.1336348 +0.0625,0.0625,0.1336348,0.0668174 +0.0625,0.0625,0.11905508,0.11905508 +0.0625,0.0625,0.08418465,0.16836932 +0.0625,0.0625,0.16836932,0.08418465 +0.0625,0.0875,0.075,0.075 +0.0625,0.08749999,0.05303301,0.10606601 +0.0625,0.087500006,0.10606602,0.053033013 +0.0625,0.087500006,0.094494075,0.09449408 +0.0625,0.087500006,0.0668174,0.1336348 +0.0625,0.0875,0.1336348,0.0668174 +0.0625,0.0875,0.11905508,0.11905508 +0.0625,0.0875,0.08418465,0.16836931 +0.0625,0.087500006,0.16836932,0.084184654 +0.0625,0.112500004,0.075,0.075 +0.0625,0.1125,0.05303301,0.10606601 +0.0625,0.112500004,0.10606602,0.05303301 +0.0625,0.1125,0.094494075,0.094494075 +0.0625,0.1125,0.0668174,0.1336348 +0.0625,0.1125,0.1336348,0.0668174 +0.0625,0.1125,0.11905508,0.119055085 +0.0625,0.112500004,0.08418465,0.16836931 +0.0625,0.1125,0.16836932,0.08418465 +0.0625,0.1375,0.075,0.074999996 +0.0625,0.1375,0.05303301,0.10606602 +0.0625,0.1375,0.10606602,0.053033024 +0.0625,0.1375,0.094494075,0.09449408 +0.0625,0.1375,0.0668174,0.1336348 +0.0625,0.1375,0.1336348,0.0668174 +0.0625,0.13749999,0.11905508,0.11905508 +0.0625,0.1375,0.08418465,0.1683693 +0.0625,0.1375,0.16836932,0.084184654 +0.0625,0.1625,0.075,0.075 +0.0625,0.16250001,0.05303301,0.106066026 +0.0625,0.1625,0.10606602,0.05303301 +0.0625,0.1625,0.094494075,0.094494075 +0.0625,0.1625,0.0668174,0.1336348 +0.0625,0.1625,0.1336348,0.0668174 +0.0625,0.1625,0.11905508,0.11905508 +0.0625,0.1625,0.08418465,0.1683693 +0.0625,0.1625,0.16836932,0.08418464 +0.0625,0.1875,0.075,0.07499999 +0.0625,0.1875,0.05303301,0.10606603 +0.0625,0.1875,0.10606602,0.053033024 +0.0625,0.1875,0.094494075,0.09449406 +0.0625,0.1875,0.0668174,0.1336348 +0.0625,0.1875,0.1336348,0.06681742 +0.0625,0.1875,0.11905508,0.11905509 +0.0625,0.1875,0.08418465,0.16836931 +0.0625,0.1875,0.16836932,0.08418465 +0.0625,0.2125,0.075,0.075 +0.0625,0.2125,0.05303301,0.10606603 +0.0625,0.2125,0.10606602,0.05303301 +0.0625,0.21249999,0.094494075,0.094494075 +0.0625,0.2125,0.0668174,0.1336348 +0.0625,0.2125,0.1336348,0.0668174 +0.0625,0.2125,0.11905508,0.11905509 +0.0625,0.2125,0.08418465,0.16836931 +0.0625,0.2125,0.16836932,0.08418465 +0.0625,0.23750001,0.075,0.075 +0.0625,0.2375,0.05303301,0.10606602 +0.0625,0.2375,0.10606602,0.053033024 +0.0625,0.2375,0.094494075,0.094494075 +0.0625,0.23750001,0.0668174,0.13363482 +0.0625,0.2375,0.1336348,0.06681743 +0.0625,0.2375,0.11905508,0.11905506 +0.0625,0.2375,0.08418465,0.16836932 +0.0625,0.23750001,0.16836932,0.08418466 +0.0625,0.2625,0.075,0.07500002 +0.0625,0.2625,0.05303301,0.10606603 +0.0625,0.2625,0.10606602,0.053033024 +0.0625,0.2625,0.094494075,0.094494075 +0.0625,0.2625,0.0668174,0.13363479 +0.0625,0.2625,0.1336348,0.06681743 +0.0625,0.2625,0.11905508,0.11905508 +0.0625,0.2625,0.08418465,0.1683693 +0.0625,0.2625,0.16836932,0.08418463 +0.0625,0.2875,0.075,0.07499999 +0.0625,0.2875,0.05303301,0.10606603 +0.0625,0.28750002,0.10606602,0.053033024 +0.0625,0.2875,0.094494075,0.094494045 +0.0625,0.2875,0.0668174,0.1336348 +0.0625,0.28750002,0.1336348,0.06681743 +0.0625,0.2875,0.11905508,0.11905508 +0.0625,0.2875,0.08418465,0.1683693 +0.0625,0.2875,0.16836932,0.08418465 +0.0625,0.3125,0.075,0.07499999 +0.0625,0.3125,0.05303301,0.10606605 +0.0625,0.3125,0.10606602,0.053032994 +0.0625,0.3125,0.094494075,0.094494045 +0.0625,0.3125,0.0668174,0.1336348 +0.0625,0.3125,0.1336348,0.0668174 +0.0625,0.3125,0.11905508,0.11905509 +0.0625,0.3125,0.08418465,0.1683693 +0.0625,0.3125,0.16836932,0.08418465 +0.0625,0.3375,0.075,0.07499999 +0.0625,0.3375,0.05303301,0.10606605 +0.0625,0.33749998,0.10606602,0.053033024 +0.0625,0.3375,0.094494075,0.094494045 +0.0625,0.33750004,0.0668174,0.13363484 +0.0625,0.33749998,0.1336348,0.06681743 +0.0625,0.3375,0.11905508,0.11905509 +0.0625,0.3375,0.08418465,0.1683693 +0.0625,0.3375,0.16836932,0.08418465 +0.0625,0.3625,0.075,0.07500002 +0.0625,0.3625,0.05303301,0.10606602 +0.0625,0.3625,0.10606602,0.053033024 +0.0625,0.3625,0.094494075,0.094494075 +0.0625,0.3625,0.0668174,0.1336348 +0.0625,0.3625,0.1336348,0.06681743 +0.0625,0.3625,0.11905508,0.11905506 +0.0625,0.3625,0.08418465,0.1683693 +0.0625,0.3625,0.16836932,0.08418465 +0.0625,0.3875,0.075,0.07500002 +0.0625,0.3875,0.05303301,0.10606602 +0.0625,0.3875,0.10606602,0.053032994 +0.0625,0.3875,0.094494075,0.094494075 +0.0625,0.3875,0.0668174,0.13363484 +0.0625,0.3875,0.1336348,0.0668174 +0.0625,0.3875,0.11905508,0.11905506 +0.0625,0.3875,0.08418465,0.1683693 +0.0625,0.3875,0.16836932,0.08418465 +0.0625,0.4125,0.075,0.07499999 +0.0625,0.4125,0.05303301,0.10606605 +0.0625,0.4125,0.10606602,0.053032994 +0.0625,0.4125,0.094494075,0.094494045 +0.0625,0.41250002,0.0668174,0.13363484 +0.0625,0.4125,0.1336348,0.0668174 +0.0625,0.4125,0.11905508,0.11905509 +0.0625,0.4125,0.08418465,0.1683693 +0.0625,0.4125,0.16836932,0.08418465 +0.0625,0.4375,0.075,0.07499999 +0.0625,0.4375,0.05303301,0.10606605 +0.0625,0.4375,0.10606602,0.053032994 +0.0625,0.4375,0.094494075,0.094494045 +0.0625,0.4375,0.0668174,0.1336348 +0.0625,0.4375,0.1336348,0.0668174 +0.0625,0.4375,0.11905508,0.11905509 +0.0625,0.4375,0.08418465,0.1683693 +0.0625,0.4375,0.16836932,0.08418465 +0.0625,0.4625,0.075,0.07499999 +0.0625,0.4625,0.05303301,0.10606605 +0.0625,0.46249998,0.10606602,0.053032964 +0.0625,0.4625,0.094494075,0.094494045 +0.0625,0.46250004,0.0668174,0.13363484 +0.0625,0.46249998,0.1336348,0.06681737 +0.0625,0.4625,0.11905508,0.11905509 +0.0625,0.46249998,0.08418465,0.16836926 +0.0625,0.46249998,0.16836932,0.08418462 +0.0625,0.48749998,0.075,0.07499999 +0.0625,0.4875,0.05303301,0.10606602 +0.0625,0.4875,0.10606602,0.053032994 +0.0625,0.48749998,0.094494075,0.094494045 +0.0625,0.4875,0.0668174,0.13363484 +0.0625,0.4875,0.1336348,0.0668174 +0.0625,0.4875,0.11905508,0.11905506 +0.0625,0.4875,0.08418465,0.1683693 +0.0625,0.4875,0.16836932,0.08418465 +0.0625,0.5125,0.075,0.07500002 +0.0625,0.51250005,0.05303301,0.10606605 +0.0625,0.5125,0.10606602,0.053032964 +0.0625,0.5125,0.094494075,0.094494075 +0.0625,0.51250005,0.0668174,0.13363487 +0.0625,0.5125,0.1336348,0.06681737 +0.0625,0.51250005,0.11905508,0.11905509 +0.0625,0.5125,0.08418465,0.1683693 +0.0625,0.5125,0.16836932,0.08418465 +0.0625,0.5375,0.075,0.07499999 +0.0625,0.5375,0.05303301,0.10606605 +0.0625,0.5375,0.10606602,0.053032935 +0.0625,0.5375,0.094494075,0.094494045 +0.0625,0.5375,0.0668174,0.13363487 +0.0625,0.5375,0.1336348,0.06681734 +0.0625,0.5375,0.11905508,0.11905509 +0.0625,0.5375,0.08418465,0.16836932 +0.0625,0.5375,0.16836932,0.08418468 +0.0625,0.5625,0.075,0.07500005 +0.0625,0.5625,0.05303301,0.10606599 +0.0625,0.5625,0.10606602,0.053032994 +0.0625,0.5625,0.094494075,0.094494104 +0.0625,0.5625,0.0668174,0.13363484 +0.0625,0.5625,0.1336348,0.0668174 +0.0625,0.5625,0.11905508,0.11905503 +0.0625,0.5625,0.08418465,0.1683693 +0.0625,0.5625,0.16836932,0.08418465 +0.0625,0.5875,0.075,0.07499999 +0.0625,0.5875,0.05303301,0.10606605 +0.0625,0.5875,0.10606602,0.053032935 +0.0625,0.5875,0.094494075,0.094494045 +0.0625,0.5875,0.0668174,0.13363487 +0.0625,0.5875,0.1336348,0.06681734 +0.0625,0.5875,0.11905508,0.11905509 +0.0625,0.5875,0.08418465,0.1683693 +0.0625,0.5875,0.16836932,0.08418465 +0.0625,0.61249995,0.075,0.07499999 +0.0625,0.61249995,0.05303301,0.10606605 +0.0625,0.6125,0.10606602,0.053032994 +0.0625,0.61249995,0.094494075,0.094494045 +0.0625,0.61249995,0.0668174,0.13363487 +0.0625,0.6125,0.1336348,0.0668174 +0.0625,0.61249995,0.11905508,0.11905509 +0.0625,0.6125,0.08418465,0.1683693 +0.0625,0.6125,0.16836932,0.08418465 +0.0625,0.63750005,0.075,0.07499999 +0.0625,0.63750005,0.05303301,0.10606605 +0.0625,0.6375,0.10606602,0.053032994 +0.0625,0.63750005,0.094494075,0.094494045 +0.0625,0.63750005,0.0668174,0.13363487 +0.0625,0.6375,0.1336348,0.0668174 +0.0625,0.63750005,0.11905508,0.11905509 +0.0625,0.6375,0.08418465,0.1683693 +0.0625,0.6375,0.16836932,0.08418465 +0.0625,0.6625,0.075,0.07499999 +0.0625,0.6625,0.05303301,0.10606605 +0.0625,0.6625,0.10606602,0.053032935 +0.0625,0.6625,0.094494075,0.094494045 +0.0625,0.6625,0.0668174,0.13363487 +0.0625,0.6625,0.1336348,0.06681734 +0.0625,0.6625,0.11905508,0.11905509 +0.0625,0.6625,0.08418465,0.1683693 +0.0625,0.6625,0.16836932,0.08418465 +0.0625,0.6875,0.075,0.07500005 +0.0625,0.6875,0.05303301,0.10606599 +0.0625,0.6875,0.10606602,0.053032994 +0.0625,0.6875,0.094494075,0.094494104 +0.0625,0.6875,0.0668174,0.1336348 +0.0625,0.6875,0.1336348,0.0668174 +0.0625,0.6875,0.11905508,0.11905503 +0.0625,0.6875,0.08418465,0.1683693 +0.0625,0.6875,0.16836932,0.08418465 +0.0625,0.7125,0.075,0.07499999 +0.0625,0.7125,0.05303301,0.10606605 +0.0625,0.7125,0.10606602,0.053032935 +0.0625,0.7125,0.094494075,0.094494045 +0.0625,0.7125,0.0668174,0.13363487 +0.0625,0.7125,0.1336348,0.06681734 +0.0625,0.7125,0.11905508,0.11905509 +0.0625,0.7125,0.08418465,0.1683693 +0.0625,0.7125,0.16836932,0.08418465 +0.0625,0.73749995,0.075,0.07499999 +0.0625,0.73749995,0.05303301,0.10606605 +0.0625,0.7375,0.10606602,0.053032994 +0.0625,0.73749995,0.094494075,0.094494045 +0.0625,0.73749995,0.0668174,0.1336348 +0.0625,0.7375,0.1336348,0.0668174 +0.0625,0.73749995,0.11905508,0.11905509 +0.0625,0.7375,0.08418465,0.1683693 +0.0625,0.7375,0.16836932,0.08418465 +0.0625,0.76250005,0.075,0.07499999 +0.0625,0.7625,0.05303301,0.10606599 +0.0625,0.7625,0.10606602,0.053032994 +0.0625,0.76250005,0.094494075,0.094494045 +0.0625,0.7625,0.0668174,0.1336348 +0.0625,0.7625,0.1336348,0.0668174 +0.0625,0.7625,0.11905508,0.11905503 +0.0625,0.7625,0.08418465,0.1683693 +0.0625,0.7625,0.16836932,0.08418465 +0.0625,0.7875,0.075,0.07499999 +0.0625,0.78749996,0.05303301,0.10606599 +0.0625,0.7875,0.10606602,0.053032994 +0.0625,0.7875,0.094494075,0.094494045 +0.0625,0.78749996,0.0668174,0.1336348 +0.0625,0.7875,0.1336348,0.0668174 +0.0625,0.78749996,0.11905508,0.11905503 +0.0625,0.7875,0.08418465,0.1683693 +0.0625,0.7875,0.16836932,0.08418465 +0.0625,0.8125,0.075,0.07500005 +0.0625,0.8125,0.05303301,0.10606599 +0.0625,0.8125,0.10606602,0.053033054 +0.0625,0.8125,0.094494075,0.094494104 +0.0625,0.8125,0.0668174,0.1336348 +0.0625,0.8125,0.1336348,0.06681746 +0.0625,0.8125,0.11905508,0.11905503 +0.0625,0.8125,0.08418465,0.1683693 +0.0625,0.8125,0.16836932,0.08418465 +0.0625,0.8375,0.075,0.07499999 +0.0625,0.8375,0.05303301,0.10606599 +0.0625,0.8375,0.10606602,0.053033054 +0.0625,0.8375,0.094494075,0.094494045 +0.0625,0.8375,0.0668174,0.1336348 +0.0625,0.8375,0.1336348,0.06681746 +0.0625,0.8375,0.11905508,0.11905503 +0.0625,0.8375,0.08418465,0.1683693 +0.0625,0.8375,0.16836932,0.08418465 +0.0625,0.86249995,0.075,0.07499999 +0.0625,0.86249995,0.05303301,0.10606593 +0.0625,0.86249995,0.10606602,0.053033054 +0.0625,0.86249995,0.094494075,0.094494045 +0.0625,0.86249995,0.0668174,0.1336348 +0.0625,0.86249995,0.1336348,0.06681746 +0.0625,0.86249995,0.11905508,0.11905497 +0.0625,0.8625,0.08418465,0.1683693 +0.0625,0.8625,0.16836932,0.08418465 +0.0625,0.88750005,0.075,0.07499999 +0.0625,0.88750005,0.05303301,0.10606593 +0.0625,0.88750005,0.10606602,0.053033054 +0.0625,0.88750005,0.094494075,0.094494045 +0.0625,0.88750005,0.0668174,0.13363475 +0.0625,0.88750005,0.1336348,0.06681746 +0.0625,0.88750005,0.11905508,0.11905497 +0.0625,0.8875,0.08418465,0.1683693 +0.0625,0.8875,0.16836932,0.08418465 +0.0625,0.9125,0.075,0.07499999 +0.0625,0.9125,0.05303301,0.10606593 +0.0625,0.9125,0.10606602,0.053033054 +0.0625,0.9125,0.094494075,0.094494045 +0.0625,0.9125,0.0668174,0.13363475 +0.0625,0.9125,0.1336348,0.06681746 +0.0625,0.9125,0.11905508,0.11905497 +0.0625,0.9125,0.08418465,0.1683693 +0.0625,0.9125,0.16836932,0.08418465 +0.0625,0.9375,0.075,0.07500005 +0.0625,0.9375,0.05303301,0.10606599 +0.0625,0.9375,0.10606602,0.053033113 +0.0625,0.9375,0.094494075,0.094494104 +0.0625,0.9375,0.0668174,0.1336348 +0.0625,0.9375,0.1336348,0.06681752 +0.0625,0.9375,0.11905508,0.11905503 +0.0625,0.9375,0.08418465,0.1683693 +0.0625,0.9375,0.16836932,0.08418465 +0.0625,0.9625,0.075,0.07499999 +0.0625,0.9625,0.05303301,0.10606593 +0.0625,0.9625,0.10606602,0.053033054 +0.0625,0.9625,0.094494075,0.094494045 +0.0625,0.9625,0.0668174,0.13363475 +0.0625,0.9625,0.1336348,0.06681746 +0.0625,0.9625,0.11905508,0.11905497 +0.0625,0.9625,0.08418465,0.1683693 +0.0625,0.9625,0.16836932,0.08418465 +0.0625,0.98749995,0.075,0.07499999 +0.0625,0.98749995,0.05303301,0.10606593 +0.0625,0.98749995,0.10606602,0.053033054 +0.0625,0.98749995,0.094494075,0.094494045 +0.0625,0.98749995,0.0668174,0.13363475 +0.0625,0.98749995,0.1336348,0.06681746 +0.0625,0.98749995,0.11905508,0.11905497 +0.0625,0.98749995,0.08418465,0.16836923 +0.0625,0.98749995,0.16836932,0.08418459 +0.0875,0.0125,0.075,0.075 +0.087500006,0.012499997,0.053033013,0.10606602 +0.08749999,0.012499999,0.10606601,0.05303301 +0.087500006,0.012499999,0.09449408,0.09449408 +0.0875,0.012500001,0.0668174,0.1336348 +0.087500006,0.012499999,0.1336348,0.0668174 +0.0875,0.012500001,0.11905508,0.11905508 +0.087500006,0.012499999,0.084184654,0.1683693 +0.0875,0.012500002,0.16836931,0.084184654 +0.0875,0.0375,0.075,0.075 +0.087500006,0.037499998,0.053033013,0.10606601 +0.08749999,0.0375,0.10606601,0.05303301 +0.087500006,0.0375,0.09449408,0.094494075 +0.0875,0.0375,0.0668174,0.1336348 +0.087500006,0.0375,0.1336348,0.0668174 +0.0875,0.0375,0.11905508,0.11905508 +0.087500006,0.0375,0.084184654,0.16836931 +0.0875,0.0375,0.16836931,0.08418466 +0.0875,0.0625,0.075,0.075 +0.087500006,0.0625,0.053033013,0.10606602 +0.08749999,0.0625,0.10606601,0.05303301 +0.087500006,0.0625,0.09449408,0.094494075 +0.0875,0.0625,0.0668174,0.1336348 +0.087500006,0.0625,0.1336348,0.0668174 +0.0875,0.0625,0.11905508,0.11905508 +0.087500006,0.0625,0.084184654,0.16836932 +0.0875,0.0625,0.16836931,0.08418465 +0.0875,0.0875,0.075,0.075 +0.087500006,0.08749999,0.053033013,0.10606601 +0.08749999,0.087500006,0.10606601,0.053033013 +0.087500006,0.087500006,0.09449408,0.09449408 +0.0875,0.087500006,0.0668174,0.1336348 +0.087500006,0.0875,0.1336348,0.0668174 +0.0875,0.0875,0.11905508,0.11905508 +0.087500006,0.0875,0.084184654,0.16836931 +0.0875,0.087500006,0.16836931,0.084184654 +0.0875,0.112500004,0.075,0.075 +0.087500006,0.1125,0.053033013,0.10606601 +0.08749999,0.112500004,0.10606601,0.05303301 +0.087500006,0.1125,0.09449408,0.094494075 +0.0875,0.1125,0.0668174,0.1336348 +0.087500006,0.1125,0.1336348,0.0668174 +0.0875,0.1125,0.11905508,0.119055085 +0.087500006,0.112500004,0.084184654,0.16836931 +0.0875,0.1125,0.16836931,0.08418465 +0.0875,0.1375,0.075,0.074999996 +0.087500006,0.1375,0.053033013,0.10606602 +0.08749999,0.1375,0.10606601,0.053033024 +0.087500006,0.1375,0.09449408,0.09449408 +0.0875,0.1375,0.0668174,0.1336348 +0.087500006,0.1375,0.1336348,0.0668174 +0.0875,0.13749999,0.11905508,0.11905508 +0.087500006,0.1375,0.084184654,0.1683693 +0.0875,0.1375,0.16836931,0.084184654 +0.0875,0.1625,0.075,0.075 +0.087500006,0.16250001,0.053033013,0.106066026 +0.08749999,0.1625,0.10606601,0.05303301 +0.087500006,0.1625,0.09449408,0.094494075 +0.0875,0.1625,0.0668174,0.1336348 +0.087500006,0.1625,0.1336348,0.0668174 +0.0875,0.1625,0.11905508,0.11905508 +0.087500006,0.1625,0.084184654,0.1683693 +0.0875,0.1625,0.16836931,0.08418464 +0.0875,0.1875,0.075,0.07499999 +0.087500006,0.1875,0.053033013,0.10606603 +0.08749999,0.1875,0.10606601,0.053033024 +0.087500006,0.1875,0.09449408,0.09449406 +0.0875,0.1875,0.0668174,0.1336348 +0.087500006,0.1875,0.1336348,0.06681742 +0.0875,0.1875,0.11905508,0.11905509 +0.087500006,0.1875,0.084184654,0.16836931 +0.0875,0.1875,0.16836931,0.08418465 +0.0875,0.2125,0.075,0.075 +0.087500006,0.2125,0.053033013,0.10606603 +0.08749999,0.2125,0.10606601,0.05303301 +0.087500006,0.21249999,0.09449408,0.094494075 +0.0875,0.2125,0.0668174,0.1336348 +0.087500006,0.2125,0.1336348,0.0668174 +0.0875,0.2125,0.11905508,0.11905509 +0.087500006,0.2125,0.084184654,0.16836931 +0.0875,0.2125,0.16836931,0.08418465 +0.0875,0.23750001,0.075,0.075 +0.087500006,0.2375,0.053033013,0.10606602 +0.08749999,0.2375,0.10606601,0.053033024 +0.087500006,0.2375,0.09449408,0.094494075 +0.0875,0.23750001,0.0668174,0.13363482 +0.087500006,0.2375,0.1336348,0.06681743 +0.0875,0.2375,0.11905508,0.11905506 +0.087500006,0.2375,0.084184654,0.16836932 +0.0875,0.23750001,0.16836931,0.08418466 +0.0875,0.2625,0.075,0.07500002 +0.087500006,0.2625,0.053033013,0.10606603 +0.08749999,0.2625,0.10606601,0.053033024 +0.087500006,0.2625,0.09449408,0.094494075 +0.0875,0.2625,0.0668174,0.13363479 +0.087500006,0.2625,0.1336348,0.06681743 +0.0875,0.2625,0.11905508,0.11905508 +0.087500006,0.2625,0.084184654,0.1683693 +0.0875,0.2625,0.16836931,0.08418463 +0.0875,0.2875,0.075,0.07499999 +0.087500006,0.2875,0.053033013,0.10606603 +0.08749999,0.28750002,0.10606601,0.053033024 +0.087500006,0.2875,0.09449408,0.094494045 +0.0875,0.2875,0.0668174,0.1336348 +0.087500006,0.28750002,0.1336348,0.06681743 +0.0875,0.2875,0.11905508,0.11905508 +0.087500006,0.2875,0.084184654,0.1683693 +0.0875,0.2875,0.16836931,0.08418465 +0.0875,0.3125,0.075,0.07499999 +0.087500006,0.3125,0.053033013,0.10606605 +0.08749999,0.3125,0.10606601,0.053032994 +0.087500006,0.3125,0.09449408,0.094494045 +0.0875,0.3125,0.0668174,0.1336348 +0.087500006,0.3125,0.1336348,0.0668174 +0.0875,0.3125,0.11905508,0.11905509 +0.087500006,0.3125,0.084184654,0.1683693 +0.0875,0.3125,0.16836931,0.08418465 +0.0875,0.3375,0.075,0.07499999 +0.087500006,0.3375,0.053033013,0.10606605 +0.08749999,0.33749998,0.10606601,0.053033024 +0.087500006,0.3375,0.09449408,0.094494045 +0.0875,0.33750004,0.0668174,0.13363484 +0.087500006,0.33749998,0.1336348,0.06681743 +0.0875,0.3375,0.11905508,0.11905509 +0.087500006,0.3375,0.084184654,0.1683693 +0.0875,0.3375,0.16836931,0.08418465 +0.0875,0.3625,0.075,0.07500002 +0.087500006,0.3625,0.053033013,0.10606602 +0.08749999,0.3625,0.10606601,0.053033024 +0.087500006,0.3625,0.09449408,0.094494075 +0.0875,0.3625,0.0668174,0.1336348 +0.087500006,0.3625,0.1336348,0.06681743 +0.0875,0.3625,0.11905508,0.11905506 +0.087500006,0.3625,0.084184654,0.1683693 +0.0875,0.3625,0.16836931,0.08418465 +0.0875,0.3875,0.075,0.07500002 +0.087500006,0.3875,0.053033013,0.10606602 +0.08749999,0.3875,0.10606601,0.053032994 +0.087500006,0.3875,0.09449408,0.094494075 +0.0875,0.3875,0.0668174,0.13363484 +0.087500006,0.3875,0.1336348,0.0668174 +0.0875,0.3875,0.11905508,0.11905506 +0.087500006,0.3875,0.084184654,0.1683693 +0.0875,0.3875,0.16836931,0.08418465 +0.0875,0.4125,0.075,0.07499999 +0.087500006,0.4125,0.053033013,0.10606605 +0.08749999,0.4125,0.10606601,0.053032994 +0.087500006,0.4125,0.09449408,0.094494045 +0.0875,0.41250002,0.0668174,0.13363484 +0.087500006,0.4125,0.1336348,0.0668174 +0.0875,0.4125,0.11905508,0.11905509 +0.087500006,0.4125,0.084184654,0.1683693 +0.0875,0.4125,0.16836931,0.08418465 +0.0875,0.4375,0.075,0.07499999 +0.087500006,0.4375,0.053033013,0.10606605 +0.08749999,0.4375,0.10606601,0.053032994 +0.087500006,0.4375,0.09449408,0.094494045 +0.0875,0.4375,0.0668174,0.1336348 +0.087500006,0.4375,0.1336348,0.0668174 +0.0875,0.4375,0.11905508,0.11905509 +0.087500006,0.4375,0.084184654,0.1683693 +0.0875,0.4375,0.16836931,0.08418465 +0.0875,0.4625,0.075,0.07499999 +0.087500006,0.4625,0.053033013,0.10606605 +0.08749999,0.46249998,0.10606601,0.053032964 +0.087500006,0.4625,0.09449408,0.094494045 +0.0875,0.46250004,0.0668174,0.13363484 +0.087500006,0.46249998,0.1336348,0.06681737 +0.0875,0.4625,0.11905508,0.11905509 +0.087500006,0.46249998,0.084184654,0.16836926 +0.0875,0.46249998,0.16836931,0.08418462 +0.0875,0.48749998,0.075,0.07499999 +0.087500006,0.4875,0.053033013,0.10606602 +0.08749999,0.4875,0.10606601,0.053032994 +0.087500006,0.48749998,0.09449408,0.094494045 +0.0875,0.4875,0.0668174,0.13363484 +0.087500006,0.4875,0.1336348,0.0668174 +0.0875,0.4875,0.11905508,0.11905506 +0.087500006,0.4875,0.084184654,0.1683693 +0.0875,0.4875,0.16836931,0.08418465 +0.0875,0.5125,0.075,0.07500002 +0.087500006,0.51250005,0.053033013,0.10606605 +0.08749999,0.5125,0.10606601,0.053032964 +0.087500006,0.5125,0.09449408,0.094494075 +0.0875,0.51250005,0.0668174,0.13363487 +0.087500006,0.5125,0.1336348,0.06681737 +0.0875,0.51250005,0.11905508,0.11905509 +0.087500006,0.5125,0.084184654,0.1683693 +0.0875,0.5125,0.16836931,0.08418465 +0.0875,0.5375,0.075,0.07499999 +0.087500006,0.5375,0.053033013,0.10606605 +0.08749999,0.5375,0.10606601,0.053032935 +0.087500006,0.5375,0.09449408,0.094494045 +0.0875,0.5375,0.0668174,0.13363487 +0.087500006,0.5375,0.1336348,0.06681734 +0.0875,0.5375,0.11905508,0.11905509 +0.087500006,0.5375,0.084184654,0.16836932 +0.0875,0.5375,0.16836931,0.08418468 +0.0875,0.5625,0.075,0.07500005 +0.087500006,0.5625,0.053033013,0.10606599 +0.08749999,0.5625,0.10606601,0.053032994 +0.087500006,0.5625,0.09449408,0.094494104 +0.0875,0.5625,0.0668174,0.13363484 +0.087500006,0.5625,0.1336348,0.0668174 +0.0875,0.5625,0.11905508,0.11905503 +0.087500006,0.5625,0.084184654,0.1683693 +0.0875,0.5625,0.16836931,0.08418465 +0.0875,0.5875,0.075,0.07499999 +0.087500006,0.5875,0.053033013,0.10606605 +0.08749999,0.5875,0.10606601,0.053032935 +0.087500006,0.5875,0.09449408,0.094494045 +0.0875,0.5875,0.0668174,0.13363487 +0.087500006,0.5875,0.1336348,0.06681734 +0.0875,0.5875,0.11905508,0.11905509 +0.087500006,0.5875,0.084184654,0.1683693 +0.0875,0.5875,0.16836931,0.08418465 +0.0875,0.61249995,0.075,0.07499999 +0.087500006,0.61249995,0.053033013,0.10606605 +0.08749999,0.6125,0.10606601,0.053032994 +0.087500006,0.61249995,0.09449408,0.094494045 +0.0875,0.61249995,0.0668174,0.13363487 +0.087500006,0.6125,0.1336348,0.0668174 +0.0875,0.61249995,0.11905508,0.11905509 +0.087500006,0.6125,0.084184654,0.1683693 +0.0875,0.6125,0.16836931,0.08418465 +0.0875,0.63750005,0.075,0.07499999 +0.087500006,0.63750005,0.053033013,0.10606605 +0.08749999,0.6375,0.10606601,0.053032994 +0.087500006,0.63750005,0.09449408,0.094494045 +0.0875,0.63750005,0.0668174,0.13363487 +0.087500006,0.6375,0.1336348,0.0668174 +0.0875,0.63750005,0.11905508,0.11905509 +0.087500006,0.6375,0.084184654,0.1683693 +0.0875,0.6375,0.16836931,0.08418465 +0.0875,0.6625,0.075,0.07499999 +0.087500006,0.6625,0.053033013,0.10606605 +0.08749999,0.6625,0.10606601,0.053032935 +0.087500006,0.6625,0.09449408,0.094494045 +0.0875,0.6625,0.0668174,0.13363487 +0.087500006,0.6625,0.1336348,0.06681734 +0.0875,0.6625,0.11905508,0.11905509 +0.087500006,0.6625,0.084184654,0.1683693 +0.0875,0.6625,0.16836931,0.08418465 +0.0875,0.6875,0.075,0.07500005 +0.087500006,0.6875,0.053033013,0.10606599 +0.08749999,0.6875,0.10606601,0.053032994 +0.087500006,0.6875,0.09449408,0.094494104 +0.0875,0.6875,0.0668174,0.1336348 +0.087500006,0.6875,0.1336348,0.0668174 +0.0875,0.6875,0.11905508,0.11905503 +0.087500006,0.6875,0.084184654,0.1683693 +0.0875,0.6875,0.16836931,0.08418465 +0.0875,0.7125,0.075,0.07499999 +0.087500006,0.7125,0.053033013,0.10606605 +0.08749999,0.7125,0.10606601,0.053032935 +0.087500006,0.7125,0.09449408,0.094494045 +0.0875,0.7125,0.0668174,0.13363487 +0.087500006,0.7125,0.1336348,0.06681734 +0.0875,0.7125,0.11905508,0.11905509 +0.087500006,0.7125,0.084184654,0.1683693 +0.0875,0.7125,0.16836931,0.08418465 +0.0875,0.73749995,0.075,0.07499999 +0.087500006,0.73749995,0.053033013,0.10606605 +0.08749999,0.7375,0.10606601,0.053032994 +0.087500006,0.73749995,0.09449408,0.094494045 +0.0875,0.73749995,0.0668174,0.1336348 +0.087500006,0.7375,0.1336348,0.0668174 +0.0875,0.73749995,0.11905508,0.11905509 +0.087500006,0.7375,0.084184654,0.1683693 +0.0875,0.7375,0.16836931,0.08418465 +0.0875,0.76250005,0.075,0.07499999 +0.087500006,0.7625,0.053033013,0.10606599 +0.08749999,0.7625,0.10606601,0.053032994 +0.087500006,0.76250005,0.09449408,0.094494045 +0.0875,0.7625,0.0668174,0.1336348 +0.087500006,0.7625,0.1336348,0.0668174 +0.0875,0.7625,0.11905508,0.11905503 +0.087500006,0.7625,0.084184654,0.1683693 +0.0875,0.7625,0.16836931,0.08418465 +0.0875,0.7875,0.075,0.07499999 +0.087500006,0.78749996,0.053033013,0.10606599 +0.08749999,0.7875,0.10606601,0.053032994 +0.087500006,0.7875,0.09449408,0.094494045 +0.0875,0.78749996,0.0668174,0.1336348 +0.087500006,0.7875,0.1336348,0.0668174 +0.0875,0.78749996,0.11905508,0.11905503 +0.087500006,0.7875,0.084184654,0.1683693 +0.0875,0.7875,0.16836931,0.08418465 +0.0875,0.8125,0.075,0.07500005 +0.087500006,0.8125,0.053033013,0.10606599 +0.08749999,0.8125,0.10606601,0.053033054 +0.087500006,0.8125,0.09449408,0.094494104 +0.0875,0.8125,0.0668174,0.1336348 +0.087500006,0.8125,0.1336348,0.06681746 +0.0875,0.8125,0.11905508,0.11905503 +0.087500006,0.8125,0.084184654,0.1683693 +0.0875,0.8125,0.16836931,0.08418465 +0.0875,0.8375,0.075,0.07499999 +0.087500006,0.8375,0.053033013,0.10606599 +0.08749999,0.8375,0.10606601,0.053033054 +0.087500006,0.8375,0.09449408,0.094494045 +0.0875,0.8375,0.0668174,0.1336348 +0.087500006,0.8375,0.1336348,0.06681746 +0.0875,0.8375,0.11905508,0.11905503 +0.087500006,0.8375,0.084184654,0.1683693 +0.0875,0.8375,0.16836931,0.08418465 +0.0875,0.86249995,0.075,0.07499999 +0.087500006,0.86249995,0.053033013,0.10606593 +0.08749999,0.86249995,0.10606601,0.053033054 +0.087500006,0.86249995,0.09449408,0.094494045 +0.0875,0.86249995,0.0668174,0.1336348 +0.087500006,0.86249995,0.1336348,0.06681746 +0.0875,0.86249995,0.11905508,0.11905497 +0.087500006,0.8625,0.084184654,0.1683693 +0.0875,0.8625,0.16836931,0.08418465 +0.0875,0.88750005,0.075,0.07499999 +0.087500006,0.88750005,0.053033013,0.10606593 +0.08749999,0.88750005,0.10606601,0.053033054 +0.087500006,0.88750005,0.09449408,0.094494045 +0.0875,0.88750005,0.0668174,0.13363475 +0.087500006,0.88750005,0.1336348,0.06681746 +0.0875,0.88750005,0.11905508,0.11905497 +0.087500006,0.8875,0.084184654,0.1683693 +0.0875,0.8875,0.16836931,0.08418465 +0.0875,0.9125,0.075,0.07499999 +0.087500006,0.9125,0.053033013,0.10606593 +0.08749999,0.9125,0.10606601,0.053033054 +0.087500006,0.9125,0.09449408,0.094494045 +0.0875,0.9125,0.0668174,0.13363475 +0.087500006,0.9125,0.1336348,0.06681746 +0.0875,0.9125,0.11905508,0.11905497 +0.087500006,0.9125,0.084184654,0.1683693 +0.0875,0.9125,0.16836931,0.08418465 +0.0875,0.9375,0.075,0.07500005 +0.087500006,0.9375,0.053033013,0.10606599 +0.08749999,0.9375,0.10606601,0.053033113 +0.087500006,0.9375,0.09449408,0.094494104 +0.0875,0.9375,0.0668174,0.1336348 +0.087500006,0.9375,0.1336348,0.06681752 +0.0875,0.9375,0.11905508,0.11905503 +0.087500006,0.9375,0.084184654,0.1683693 +0.0875,0.9375,0.16836931,0.08418465 +0.0875,0.9625,0.075,0.07499999 +0.087500006,0.9625,0.053033013,0.10606593 +0.08749999,0.9625,0.10606601,0.053033054 +0.087500006,0.9625,0.09449408,0.094494045 +0.0875,0.9625,0.0668174,0.13363475 +0.087500006,0.9625,0.1336348,0.06681746 +0.0875,0.9625,0.11905508,0.11905497 +0.087500006,0.9625,0.084184654,0.1683693 +0.0875,0.9625,0.16836931,0.08418465 +0.0875,0.98749995,0.075,0.07499999 +0.087500006,0.98749995,0.053033013,0.10606593 +0.08749999,0.98749995,0.10606601,0.053033054 +0.087500006,0.98749995,0.09449408,0.094494045 +0.0875,0.98749995,0.0668174,0.13363475 +0.087500006,0.98749995,0.1336348,0.06681746 +0.0875,0.98749995,0.11905508,0.11905497 +0.087500006,0.98749995,0.084184654,0.16836923 +0.0875,0.98749995,0.16836931,0.08418459 +0.112500004,0.0125,0.075,0.075 +0.112500004,0.012499997,0.05303301,0.10606602 +0.1125,0.012499999,0.10606601,0.05303301 +0.1125,0.012499999,0.094494075,0.09449408 +0.1125,0.012500001,0.0668174,0.1336348 +0.1125,0.012499999,0.1336348,0.0668174 +0.1125,0.012500001,0.119055085,0.11905508 +0.1125,0.012499999,0.08418465,0.1683693 +0.112500004,0.012500002,0.16836931,0.084184654 +0.112500004,0.0375,0.075,0.075 +0.112500004,0.037499998,0.05303301,0.10606601 +0.1125,0.0375,0.10606601,0.05303301 +0.1125,0.0375,0.094494075,0.094494075 +0.1125,0.0375,0.0668174,0.1336348 +0.1125,0.0375,0.1336348,0.0668174 +0.1125,0.0375,0.119055085,0.11905508 +0.1125,0.0375,0.08418465,0.16836931 +0.112500004,0.0375,0.16836931,0.08418466 +0.112500004,0.0625,0.075,0.075 +0.112500004,0.0625,0.05303301,0.10606602 +0.1125,0.0625,0.10606601,0.05303301 +0.1125,0.0625,0.094494075,0.094494075 +0.1125,0.0625,0.0668174,0.1336348 +0.1125,0.0625,0.1336348,0.0668174 +0.1125,0.0625,0.119055085,0.11905508 +0.1125,0.0625,0.08418465,0.16836932 +0.112500004,0.0625,0.16836931,0.08418465 +0.112500004,0.0875,0.075,0.075 +0.112500004,0.08749999,0.05303301,0.10606601 +0.1125,0.087500006,0.10606601,0.053033013 +0.1125,0.087500006,0.094494075,0.09449408 +0.1125,0.087500006,0.0668174,0.1336348 +0.1125,0.0875,0.1336348,0.0668174 +0.1125,0.0875,0.119055085,0.11905508 +0.1125,0.0875,0.08418465,0.16836931 +0.112500004,0.087500006,0.16836931,0.084184654 +0.112500004,0.112500004,0.075,0.075 +0.112500004,0.1125,0.05303301,0.10606601 +0.1125,0.112500004,0.10606601,0.05303301 +0.1125,0.1125,0.094494075,0.094494075 +0.1125,0.1125,0.0668174,0.1336348 +0.1125,0.1125,0.1336348,0.0668174 +0.1125,0.1125,0.119055085,0.119055085 +0.1125,0.112500004,0.08418465,0.16836931 +0.112500004,0.1125,0.16836931,0.08418465 +0.112500004,0.1375,0.075,0.074999996 +0.112500004,0.1375,0.05303301,0.10606602 +0.1125,0.1375,0.10606601,0.053033024 +0.1125,0.1375,0.094494075,0.09449408 +0.1125,0.1375,0.0668174,0.1336348 +0.1125,0.1375,0.1336348,0.0668174 +0.1125,0.13749999,0.119055085,0.11905508 +0.1125,0.1375,0.08418465,0.1683693 +0.112500004,0.1375,0.16836931,0.084184654 +0.112500004,0.1625,0.075,0.075 +0.112500004,0.16250001,0.05303301,0.106066026 +0.1125,0.1625,0.10606601,0.05303301 +0.1125,0.1625,0.094494075,0.094494075 +0.1125,0.1625,0.0668174,0.1336348 +0.1125,0.1625,0.1336348,0.0668174 +0.1125,0.1625,0.119055085,0.11905508 +0.1125,0.1625,0.08418465,0.1683693 +0.112500004,0.1625,0.16836931,0.08418464 +0.112500004,0.1875,0.075,0.07499999 +0.112500004,0.1875,0.05303301,0.10606603 +0.1125,0.1875,0.10606601,0.053033024 +0.1125,0.1875,0.094494075,0.09449406 +0.1125,0.1875,0.0668174,0.1336348 +0.1125,0.1875,0.1336348,0.06681742 +0.1125,0.1875,0.119055085,0.11905509 +0.1125,0.1875,0.08418465,0.16836931 +0.112500004,0.1875,0.16836931,0.08418465 +0.112500004,0.2125,0.075,0.075 +0.112500004,0.2125,0.05303301,0.10606603 +0.1125,0.2125,0.10606601,0.05303301 +0.1125,0.21249999,0.094494075,0.094494075 +0.1125,0.2125,0.0668174,0.1336348 +0.1125,0.2125,0.1336348,0.0668174 +0.1125,0.2125,0.119055085,0.11905509 +0.1125,0.2125,0.08418465,0.16836931 +0.112500004,0.2125,0.16836931,0.08418465 +0.112500004,0.23750001,0.075,0.075 +0.112500004,0.2375,0.05303301,0.10606602 +0.1125,0.2375,0.10606601,0.053033024 +0.1125,0.2375,0.094494075,0.094494075 +0.1125,0.23750001,0.0668174,0.13363482 +0.1125,0.2375,0.1336348,0.06681743 +0.1125,0.2375,0.119055085,0.11905506 +0.1125,0.2375,0.08418465,0.16836932 +0.112500004,0.23750001,0.16836931,0.08418466 +0.112500004,0.2625,0.075,0.07500002 +0.112500004,0.2625,0.05303301,0.10606603 +0.1125,0.2625,0.10606601,0.053033024 +0.1125,0.2625,0.094494075,0.094494075 +0.1125,0.2625,0.0668174,0.13363479 +0.1125,0.2625,0.1336348,0.06681743 +0.1125,0.2625,0.119055085,0.11905508 +0.1125,0.2625,0.08418465,0.1683693 +0.112500004,0.2625,0.16836931,0.08418463 +0.112500004,0.2875,0.075,0.07499999 +0.112500004,0.2875,0.05303301,0.10606603 +0.1125,0.28750002,0.10606601,0.053033024 +0.1125,0.2875,0.094494075,0.094494045 +0.1125,0.2875,0.0668174,0.1336348 +0.1125,0.28750002,0.1336348,0.06681743 +0.1125,0.2875,0.119055085,0.11905508 +0.1125,0.2875,0.08418465,0.1683693 +0.112500004,0.2875,0.16836931,0.08418465 +0.112500004,0.3125,0.075,0.07499999 +0.112500004,0.3125,0.05303301,0.10606605 +0.1125,0.3125,0.10606601,0.053032994 +0.1125,0.3125,0.094494075,0.094494045 +0.1125,0.3125,0.0668174,0.1336348 +0.1125,0.3125,0.1336348,0.0668174 +0.1125,0.3125,0.119055085,0.11905509 +0.1125,0.3125,0.08418465,0.1683693 +0.112500004,0.3125,0.16836931,0.08418465 +0.112500004,0.3375,0.075,0.07499999 +0.112500004,0.3375,0.05303301,0.10606605 +0.1125,0.33749998,0.10606601,0.053033024 +0.1125,0.3375,0.094494075,0.094494045 +0.1125,0.33750004,0.0668174,0.13363484 +0.1125,0.33749998,0.1336348,0.06681743 +0.1125,0.3375,0.119055085,0.11905509 +0.1125,0.3375,0.08418465,0.1683693 +0.112500004,0.3375,0.16836931,0.08418465 +0.112500004,0.3625,0.075,0.07500002 +0.112500004,0.3625,0.05303301,0.10606602 +0.1125,0.3625,0.10606601,0.053033024 +0.1125,0.3625,0.094494075,0.094494075 +0.1125,0.3625,0.0668174,0.1336348 +0.1125,0.3625,0.1336348,0.06681743 +0.1125,0.3625,0.119055085,0.11905506 +0.1125,0.3625,0.08418465,0.1683693 +0.112500004,0.3625,0.16836931,0.08418465 +0.112500004,0.3875,0.075,0.07500002 +0.112500004,0.3875,0.05303301,0.10606602 +0.1125,0.3875,0.10606601,0.053032994 +0.1125,0.3875,0.094494075,0.094494075 +0.1125,0.3875,0.0668174,0.13363484 +0.1125,0.3875,0.1336348,0.0668174 +0.1125,0.3875,0.119055085,0.11905506 +0.1125,0.3875,0.08418465,0.1683693 +0.112500004,0.3875,0.16836931,0.08418465 +0.112500004,0.4125,0.075,0.07499999 +0.112500004,0.4125,0.05303301,0.10606605 +0.1125,0.4125,0.10606601,0.053032994 +0.1125,0.4125,0.094494075,0.094494045 +0.1125,0.41250002,0.0668174,0.13363484 +0.1125,0.4125,0.1336348,0.0668174 +0.1125,0.4125,0.119055085,0.11905509 +0.1125,0.4125,0.08418465,0.1683693 +0.112500004,0.4125,0.16836931,0.08418465 +0.112500004,0.4375,0.075,0.07499999 +0.112500004,0.4375,0.05303301,0.10606605 +0.1125,0.4375,0.10606601,0.053032994 +0.1125,0.4375,0.094494075,0.094494045 +0.1125,0.4375,0.0668174,0.1336348 +0.1125,0.4375,0.1336348,0.0668174 +0.1125,0.4375,0.119055085,0.11905509 +0.1125,0.4375,0.08418465,0.1683693 +0.112500004,0.4375,0.16836931,0.08418465 +0.112500004,0.4625,0.075,0.07499999 +0.112500004,0.4625,0.05303301,0.10606605 +0.1125,0.46249998,0.10606601,0.053032964 +0.1125,0.4625,0.094494075,0.094494045 +0.1125,0.46250004,0.0668174,0.13363484 +0.1125,0.46249998,0.1336348,0.06681737 +0.1125,0.4625,0.119055085,0.11905509 +0.1125,0.46249998,0.08418465,0.16836926 +0.112500004,0.46249998,0.16836931,0.08418462 +0.112500004,0.48749998,0.075,0.07499999 +0.112500004,0.4875,0.05303301,0.10606602 +0.1125,0.4875,0.10606601,0.053032994 +0.1125,0.48749998,0.094494075,0.094494045 +0.1125,0.4875,0.0668174,0.13363484 +0.1125,0.4875,0.1336348,0.0668174 +0.1125,0.4875,0.119055085,0.11905506 +0.1125,0.4875,0.08418465,0.1683693 +0.112500004,0.4875,0.16836931,0.08418465 +0.112500004,0.5125,0.075,0.07500002 +0.112500004,0.51250005,0.05303301,0.10606605 +0.1125,0.5125,0.10606601,0.053032964 +0.1125,0.5125,0.094494075,0.094494075 +0.1125,0.51250005,0.0668174,0.13363487 +0.1125,0.5125,0.1336348,0.06681737 +0.1125,0.51250005,0.119055085,0.11905509 +0.1125,0.5125,0.08418465,0.1683693 +0.112500004,0.5125,0.16836931,0.08418465 +0.112500004,0.5375,0.075,0.07499999 +0.112500004,0.5375,0.05303301,0.10606605 +0.1125,0.5375,0.10606601,0.053032935 +0.1125,0.5375,0.094494075,0.094494045 +0.1125,0.5375,0.0668174,0.13363487 +0.1125,0.5375,0.1336348,0.06681734 +0.1125,0.5375,0.119055085,0.11905509 +0.1125,0.5375,0.08418465,0.16836932 +0.112500004,0.5375,0.16836931,0.08418468 +0.112500004,0.5625,0.075,0.07500005 +0.112500004,0.5625,0.05303301,0.10606599 +0.1125,0.5625,0.10606601,0.053032994 +0.1125,0.5625,0.094494075,0.094494104 +0.1125,0.5625,0.0668174,0.13363484 +0.1125,0.5625,0.1336348,0.0668174 +0.1125,0.5625,0.119055085,0.11905503 +0.1125,0.5625,0.08418465,0.1683693 +0.112500004,0.5625,0.16836931,0.08418465 +0.112500004,0.5875,0.075,0.07499999 +0.112500004,0.5875,0.05303301,0.10606605 +0.1125,0.5875,0.10606601,0.053032935 +0.1125,0.5875,0.094494075,0.094494045 +0.1125,0.5875,0.0668174,0.13363487 +0.1125,0.5875,0.1336348,0.06681734 +0.1125,0.5875,0.119055085,0.11905509 +0.1125,0.5875,0.08418465,0.1683693 +0.112500004,0.5875,0.16836931,0.08418465 +0.112500004,0.61249995,0.075,0.07499999 +0.112500004,0.61249995,0.05303301,0.10606605 +0.1125,0.6125,0.10606601,0.053032994 +0.1125,0.61249995,0.094494075,0.094494045 +0.1125,0.61249995,0.0668174,0.13363487 +0.1125,0.6125,0.1336348,0.0668174 +0.1125,0.61249995,0.119055085,0.11905509 +0.1125,0.6125,0.08418465,0.1683693 +0.112500004,0.6125,0.16836931,0.08418465 +0.112500004,0.63750005,0.075,0.07499999 +0.112500004,0.63750005,0.05303301,0.10606605 +0.1125,0.6375,0.10606601,0.053032994 +0.1125,0.63750005,0.094494075,0.094494045 +0.1125,0.63750005,0.0668174,0.13363487 +0.1125,0.6375,0.1336348,0.0668174 +0.1125,0.63750005,0.119055085,0.11905509 +0.1125,0.6375,0.08418465,0.1683693 +0.112500004,0.6375,0.16836931,0.08418465 +0.112500004,0.6625,0.075,0.07499999 +0.112500004,0.6625,0.05303301,0.10606605 +0.1125,0.6625,0.10606601,0.053032935 +0.1125,0.6625,0.094494075,0.094494045 +0.1125,0.6625,0.0668174,0.13363487 +0.1125,0.6625,0.1336348,0.06681734 +0.1125,0.6625,0.119055085,0.11905509 +0.1125,0.6625,0.08418465,0.1683693 +0.112500004,0.6625,0.16836931,0.08418465 +0.112500004,0.6875,0.075,0.07500005 +0.112500004,0.6875,0.05303301,0.10606599 +0.1125,0.6875,0.10606601,0.053032994 +0.1125,0.6875,0.094494075,0.094494104 +0.1125,0.6875,0.0668174,0.1336348 +0.1125,0.6875,0.1336348,0.0668174 +0.1125,0.6875,0.119055085,0.11905503 +0.1125,0.6875,0.08418465,0.1683693 +0.112500004,0.6875,0.16836931,0.08418465 +0.112500004,0.7125,0.075,0.07499999 +0.112500004,0.7125,0.05303301,0.10606605 +0.1125,0.7125,0.10606601,0.053032935 +0.1125,0.7125,0.094494075,0.094494045 +0.1125,0.7125,0.0668174,0.13363487 +0.1125,0.7125,0.1336348,0.06681734 +0.1125,0.7125,0.119055085,0.11905509 +0.1125,0.7125,0.08418465,0.1683693 +0.112500004,0.7125,0.16836931,0.08418465 +0.112500004,0.73749995,0.075,0.07499999 +0.112500004,0.73749995,0.05303301,0.10606605 +0.1125,0.7375,0.10606601,0.053032994 +0.1125,0.73749995,0.094494075,0.094494045 +0.1125,0.73749995,0.0668174,0.1336348 +0.1125,0.7375,0.1336348,0.0668174 +0.1125,0.73749995,0.119055085,0.11905509 +0.1125,0.7375,0.08418465,0.1683693 +0.112500004,0.7375,0.16836931,0.08418465 +0.112500004,0.76250005,0.075,0.07499999 +0.112500004,0.7625,0.05303301,0.10606599 +0.1125,0.7625,0.10606601,0.053032994 +0.1125,0.76250005,0.094494075,0.094494045 +0.1125,0.7625,0.0668174,0.1336348 +0.1125,0.7625,0.1336348,0.0668174 +0.1125,0.7625,0.119055085,0.11905503 +0.1125,0.7625,0.08418465,0.1683693 +0.112500004,0.7625,0.16836931,0.08418465 +0.112500004,0.7875,0.075,0.07499999 +0.112500004,0.78749996,0.05303301,0.10606599 +0.1125,0.7875,0.10606601,0.053032994 +0.1125,0.7875,0.094494075,0.094494045 +0.1125,0.78749996,0.0668174,0.1336348 +0.1125,0.7875,0.1336348,0.0668174 +0.1125,0.78749996,0.119055085,0.11905503 +0.1125,0.7875,0.08418465,0.1683693 +0.112500004,0.7875,0.16836931,0.08418465 +0.112500004,0.8125,0.075,0.07500005 +0.112500004,0.8125,0.05303301,0.10606599 +0.1125,0.8125,0.10606601,0.053033054 +0.1125,0.8125,0.094494075,0.094494104 +0.1125,0.8125,0.0668174,0.1336348 +0.1125,0.8125,0.1336348,0.06681746 +0.1125,0.8125,0.119055085,0.11905503 +0.1125,0.8125,0.08418465,0.1683693 +0.112500004,0.8125,0.16836931,0.08418465 +0.112500004,0.8375,0.075,0.07499999 +0.112500004,0.8375,0.05303301,0.10606599 +0.1125,0.8375,0.10606601,0.053033054 +0.1125,0.8375,0.094494075,0.094494045 +0.1125,0.8375,0.0668174,0.1336348 +0.1125,0.8375,0.1336348,0.06681746 +0.1125,0.8375,0.119055085,0.11905503 +0.1125,0.8375,0.08418465,0.1683693 +0.112500004,0.8375,0.16836931,0.08418465 +0.112500004,0.86249995,0.075,0.07499999 +0.112500004,0.86249995,0.05303301,0.10606593 +0.1125,0.86249995,0.10606601,0.053033054 +0.1125,0.86249995,0.094494075,0.094494045 +0.1125,0.86249995,0.0668174,0.1336348 +0.1125,0.86249995,0.1336348,0.06681746 +0.1125,0.86249995,0.119055085,0.11905497 +0.1125,0.8625,0.08418465,0.1683693 +0.112500004,0.8625,0.16836931,0.08418465 +0.112500004,0.88750005,0.075,0.07499999 +0.112500004,0.88750005,0.05303301,0.10606593 +0.1125,0.88750005,0.10606601,0.053033054 +0.1125,0.88750005,0.094494075,0.094494045 +0.1125,0.88750005,0.0668174,0.13363475 +0.1125,0.88750005,0.1336348,0.06681746 +0.1125,0.88750005,0.119055085,0.11905497 +0.1125,0.8875,0.08418465,0.1683693 +0.112500004,0.8875,0.16836931,0.08418465 +0.112500004,0.9125,0.075,0.07499999 +0.112500004,0.9125,0.05303301,0.10606593 +0.1125,0.9125,0.10606601,0.053033054 +0.1125,0.9125,0.094494075,0.094494045 +0.1125,0.9125,0.0668174,0.13363475 +0.1125,0.9125,0.1336348,0.06681746 +0.1125,0.9125,0.119055085,0.11905497 +0.1125,0.9125,0.08418465,0.1683693 +0.112500004,0.9125,0.16836931,0.08418465 +0.112500004,0.9375,0.075,0.07500005 +0.112500004,0.9375,0.05303301,0.10606599 +0.1125,0.9375,0.10606601,0.053033113 +0.1125,0.9375,0.094494075,0.094494104 +0.1125,0.9375,0.0668174,0.1336348 +0.1125,0.9375,0.1336348,0.06681752 +0.1125,0.9375,0.119055085,0.11905503 +0.1125,0.9375,0.08418465,0.1683693 +0.112500004,0.9375,0.16836931,0.08418465 +0.112500004,0.9625,0.075,0.07499999 +0.112500004,0.9625,0.05303301,0.10606593 +0.1125,0.9625,0.10606601,0.053033054 +0.1125,0.9625,0.094494075,0.094494045 +0.1125,0.9625,0.0668174,0.13363475 +0.1125,0.9625,0.1336348,0.06681746 +0.1125,0.9625,0.119055085,0.11905497 +0.1125,0.9625,0.08418465,0.1683693 +0.112500004,0.9625,0.16836931,0.08418465 +0.112500004,0.98749995,0.075,0.07499999 +0.112500004,0.98749995,0.05303301,0.10606593 +0.1125,0.98749995,0.10606601,0.053033054 +0.1125,0.98749995,0.094494075,0.094494045 +0.1125,0.98749995,0.0668174,0.13363475 +0.1125,0.98749995,0.1336348,0.06681746 +0.1125,0.98749995,0.119055085,0.11905497 +0.1125,0.98749995,0.08418465,0.16836923 +0.112500004,0.98749995,0.16836931,0.08418459 +0.1375,0.0125,0.074999996,0.075 +0.1375,0.012499997,0.053033024,0.10606602 +0.1375,0.012499999,0.10606602,0.05303301 +0.1375,0.012499999,0.09449408,0.09449408 +0.1375,0.012500001,0.0668174,0.1336348 +0.1375,0.012499999,0.1336348,0.0668174 +0.13749999,0.012500001,0.11905508,0.11905508 +0.1375,0.012499999,0.084184654,0.1683693 +0.1375,0.012500002,0.1683693,0.084184654 +0.1375,0.0375,0.074999996,0.075 +0.1375,0.037499998,0.053033024,0.10606601 +0.1375,0.0375,0.10606602,0.05303301 +0.1375,0.0375,0.09449408,0.094494075 +0.1375,0.0375,0.0668174,0.1336348 +0.1375,0.0375,0.1336348,0.0668174 +0.13749999,0.0375,0.11905508,0.11905508 +0.1375,0.0375,0.084184654,0.16836931 +0.1375,0.0375,0.1683693,0.08418466 +0.1375,0.0625,0.074999996,0.075 +0.1375,0.0625,0.053033024,0.10606602 +0.1375,0.0625,0.10606602,0.05303301 +0.1375,0.0625,0.09449408,0.094494075 +0.1375,0.0625,0.0668174,0.1336348 +0.1375,0.0625,0.1336348,0.0668174 +0.13749999,0.0625,0.11905508,0.11905508 +0.1375,0.0625,0.084184654,0.16836932 +0.1375,0.0625,0.1683693,0.08418465 +0.1375,0.0875,0.074999996,0.075 +0.1375,0.08749999,0.053033024,0.10606601 +0.1375,0.087500006,0.10606602,0.053033013 +0.1375,0.087500006,0.09449408,0.09449408 +0.1375,0.087500006,0.0668174,0.1336348 +0.1375,0.0875,0.1336348,0.0668174 +0.13749999,0.0875,0.11905508,0.11905508 +0.1375,0.0875,0.084184654,0.16836931 +0.1375,0.087500006,0.1683693,0.084184654 +0.1375,0.112500004,0.074999996,0.075 +0.1375,0.1125,0.053033024,0.10606601 +0.1375,0.112500004,0.10606602,0.05303301 +0.1375,0.1125,0.09449408,0.094494075 +0.1375,0.1125,0.0668174,0.1336348 +0.1375,0.1125,0.1336348,0.0668174 +0.13749999,0.1125,0.11905508,0.119055085 +0.1375,0.112500004,0.084184654,0.16836931 +0.1375,0.1125,0.1683693,0.08418465 +0.1375,0.1375,0.074999996,0.074999996 +0.1375,0.1375,0.053033024,0.10606602 +0.1375,0.1375,0.10606602,0.053033024 +0.1375,0.1375,0.09449408,0.09449408 +0.1375,0.1375,0.0668174,0.1336348 +0.1375,0.1375,0.1336348,0.0668174 +0.13749999,0.13749999,0.11905508,0.11905508 +0.1375,0.1375,0.084184654,0.1683693 +0.1375,0.1375,0.1683693,0.084184654 +0.1375,0.1625,0.074999996,0.075 +0.1375,0.16250001,0.053033024,0.106066026 +0.1375,0.1625,0.10606602,0.05303301 +0.1375,0.1625,0.09449408,0.094494075 +0.1375,0.1625,0.0668174,0.1336348 +0.1375,0.1625,0.1336348,0.0668174 +0.13749999,0.1625,0.11905508,0.11905508 +0.1375,0.1625,0.084184654,0.1683693 +0.1375,0.1625,0.1683693,0.08418464 +0.1375,0.1875,0.074999996,0.07499999 +0.1375,0.1875,0.053033024,0.10606603 +0.1375,0.1875,0.10606602,0.053033024 +0.1375,0.1875,0.09449408,0.09449406 +0.1375,0.1875,0.0668174,0.1336348 +0.1375,0.1875,0.1336348,0.06681742 +0.13749999,0.1875,0.11905508,0.11905509 +0.1375,0.1875,0.084184654,0.16836931 +0.1375,0.1875,0.1683693,0.08418465 +0.1375,0.2125,0.074999996,0.075 +0.1375,0.2125,0.053033024,0.10606603 +0.1375,0.2125,0.10606602,0.05303301 +0.1375,0.21249999,0.09449408,0.094494075 +0.1375,0.2125,0.0668174,0.1336348 +0.1375,0.2125,0.1336348,0.0668174 +0.13749999,0.2125,0.11905508,0.11905509 +0.1375,0.2125,0.084184654,0.16836931 +0.1375,0.2125,0.1683693,0.08418465 +0.1375,0.23750001,0.074999996,0.075 +0.1375,0.2375,0.053033024,0.10606602 +0.1375,0.2375,0.10606602,0.053033024 +0.1375,0.2375,0.09449408,0.094494075 +0.1375,0.23750001,0.0668174,0.13363482 +0.1375,0.2375,0.1336348,0.06681743 +0.13749999,0.2375,0.11905508,0.11905506 +0.1375,0.2375,0.084184654,0.16836932 +0.1375,0.23750001,0.1683693,0.08418466 +0.1375,0.2625,0.074999996,0.07500002 +0.1375,0.2625,0.053033024,0.10606603 +0.1375,0.2625,0.10606602,0.053033024 +0.1375,0.2625,0.09449408,0.094494075 +0.1375,0.2625,0.0668174,0.13363479 +0.1375,0.2625,0.1336348,0.06681743 +0.13749999,0.2625,0.11905508,0.11905508 +0.1375,0.2625,0.084184654,0.1683693 +0.1375,0.2625,0.1683693,0.08418463 +0.1375,0.2875,0.074999996,0.07499999 +0.1375,0.2875,0.053033024,0.10606603 +0.1375,0.28750002,0.10606602,0.053033024 +0.1375,0.2875,0.09449408,0.094494045 +0.1375,0.2875,0.0668174,0.1336348 +0.1375,0.28750002,0.1336348,0.06681743 +0.13749999,0.2875,0.11905508,0.11905508 +0.1375,0.2875,0.084184654,0.1683693 +0.1375,0.2875,0.1683693,0.08418465 +0.1375,0.3125,0.074999996,0.07499999 +0.1375,0.3125,0.053033024,0.10606605 +0.1375,0.3125,0.10606602,0.053032994 +0.1375,0.3125,0.09449408,0.094494045 +0.1375,0.3125,0.0668174,0.1336348 +0.1375,0.3125,0.1336348,0.0668174 +0.13749999,0.3125,0.11905508,0.11905509 +0.1375,0.3125,0.084184654,0.1683693 +0.1375,0.3125,0.1683693,0.08418465 +0.1375,0.3375,0.074999996,0.07499999 +0.1375,0.3375,0.053033024,0.10606605 +0.1375,0.33749998,0.10606602,0.053033024 +0.1375,0.3375,0.09449408,0.094494045 +0.1375,0.33750004,0.0668174,0.13363484 +0.1375,0.33749998,0.1336348,0.06681743 +0.13749999,0.3375,0.11905508,0.11905509 +0.1375,0.3375,0.084184654,0.1683693 +0.1375,0.3375,0.1683693,0.08418465 +0.1375,0.3625,0.074999996,0.07500002 +0.1375,0.3625,0.053033024,0.10606602 +0.1375,0.3625,0.10606602,0.053033024 +0.1375,0.3625,0.09449408,0.094494075 +0.1375,0.3625,0.0668174,0.1336348 +0.1375,0.3625,0.1336348,0.06681743 +0.13749999,0.3625,0.11905508,0.11905506 +0.1375,0.3625,0.084184654,0.1683693 +0.1375,0.3625,0.1683693,0.08418465 +0.1375,0.3875,0.074999996,0.07500002 +0.1375,0.3875,0.053033024,0.10606602 +0.1375,0.3875,0.10606602,0.053032994 +0.1375,0.3875,0.09449408,0.094494075 +0.1375,0.3875,0.0668174,0.13363484 +0.1375,0.3875,0.1336348,0.0668174 +0.13749999,0.3875,0.11905508,0.11905506 +0.1375,0.3875,0.084184654,0.1683693 +0.1375,0.3875,0.1683693,0.08418465 +0.1375,0.4125,0.074999996,0.07499999 +0.1375,0.4125,0.053033024,0.10606605 +0.1375,0.4125,0.10606602,0.053032994 +0.1375,0.4125,0.09449408,0.094494045 +0.1375,0.41250002,0.0668174,0.13363484 +0.1375,0.4125,0.1336348,0.0668174 +0.13749999,0.4125,0.11905508,0.11905509 +0.1375,0.4125,0.084184654,0.1683693 +0.1375,0.4125,0.1683693,0.08418465 +0.1375,0.4375,0.074999996,0.07499999 +0.1375,0.4375,0.053033024,0.10606605 +0.1375,0.4375,0.10606602,0.053032994 +0.1375,0.4375,0.09449408,0.094494045 +0.1375,0.4375,0.0668174,0.1336348 +0.1375,0.4375,0.1336348,0.0668174 +0.13749999,0.4375,0.11905508,0.11905509 +0.1375,0.4375,0.084184654,0.1683693 +0.1375,0.4375,0.1683693,0.08418465 +0.1375,0.4625,0.074999996,0.07499999 +0.1375,0.4625,0.053033024,0.10606605 +0.1375,0.46249998,0.10606602,0.053032964 +0.1375,0.4625,0.09449408,0.094494045 +0.1375,0.46250004,0.0668174,0.13363484 +0.1375,0.46249998,0.1336348,0.06681737 +0.13749999,0.4625,0.11905508,0.11905509 +0.1375,0.46249998,0.084184654,0.16836926 +0.1375,0.46249998,0.1683693,0.08418462 +0.1375,0.48749998,0.074999996,0.07499999 +0.1375,0.4875,0.053033024,0.10606602 +0.1375,0.4875,0.10606602,0.053032994 +0.1375,0.48749998,0.09449408,0.094494045 +0.1375,0.4875,0.0668174,0.13363484 +0.1375,0.4875,0.1336348,0.0668174 +0.13749999,0.4875,0.11905508,0.11905506 +0.1375,0.4875,0.084184654,0.1683693 +0.1375,0.4875,0.1683693,0.08418465 +0.1375,0.5125,0.074999996,0.07500002 +0.1375,0.51250005,0.053033024,0.10606605 +0.1375,0.5125,0.10606602,0.053032964 +0.1375,0.5125,0.09449408,0.094494075 +0.1375,0.51250005,0.0668174,0.13363487 +0.1375,0.5125,0.1336348,0.06681737 +0.13749999,0.51250005,0.11905508,0.11905509 +0.1375,0.5125,0.084184654,0.1683693 +0.1375,0.5125,0.1683693,0.08418465 +0.1375,0.5375,0.074999996,0.07499999 +0.1375,0.5375,0.053033024,0.10606605 +0.1375,0.5375,0.10606602,0.053032935 +0.1375,0.5375,0.09449408,0.094494045 +0.1375,0.5375,0.0668174,0.13363487 +0.1375,0.5375,0.1336348,0.06681734 +0.13749999,0.5375,0.11905508,0.11905509 +0.1375,0.5375,0.084184654,0.16836932 +0.1375,0.5375,0.1683693,0.08418468 +0.1375,0.5625,0.074999996,0.07500005 +0.1375,0.5625,0.053033024,0.10606599 +0.1375,0.5625,0.10606602,0.053032994 +0.1375,0.5625,0.09449408,0.094494104 +0.1375,0.5625,0.0668174,0.13363484 +0.1375,0.5625,0.1336348,0.0668174 +0.13749999,0.5625,0.11905508,0.11905503 +0.1375,0.5625,0.084184654,0.1683693 +0.1375,0.5625,0.1683693,0.08418465 +0.1375,0.5875,0.074999996,0.07499999 +0.1375,0.5875,0.053033024,0.10606605 +0.1375,0.5875,0.10606602,0.053032935 +0.1375,0.5875,0.09449408,0.094494045 +0.1375,0.5875,0.0668174,0.13363487 +0.1375,0.5875,0.1336348,0.06681734 +0.13749999,0.5875,0.11905508,0.11905509 +0.1375,0.5875,0.084184654,0.1683693 +0.1375,0.5875,0.1683693,0.08418465 +0.1375,0.61249995,0.074999996,0.07499999 +0.1375,0.61249995,0.053033024,0.10606605 +0.1375,0.6125,0.10606602,0.053032994 +0.1375,0.61249995,0.09449408,0.094494045 +0.1375,0.61249995,0.0668174,0.13363487 +0.1375,0.6125,0.1336348,0.0668174 +0.13749999,0.61249995,0.11905508,0.11905509 +0.1375,0.6125,0.084184654,0.1683693 +0.1375,0.6125,0.1683693,0.08418465 +0.1375,0.63750005,0.074999996,0.07499999 +0.1375,0.63750005,0.053033024,0.10606605 +0.1375,0.6375,0.10606602,0.053032994 +0.1375,0.63750005,0.09449408,0.094494045 +0.1375,0.63750005,0.0668174,0.13363487 +0.1375,0.6375,0.1336348,0.0668174 +0.13749999,0.63750005,0.11905508,0.11905509 +0.1375,0.6375,0.084184654,0.1683693 +0.1375,0.6375,0.1683693,0.08418465 +0.1375,0.6625,0.074999996,0.07499999 +0.1375,0.6625,0.053033024,0.10606605 +0.1375,0.6625,0.10606602,0.053032935 +0.1375,0.6625,0.09449408,0.094494045 +0.1375,0.6625,0.0668174,0.13363487 +0.1375,0.6625,0.1336348,0.06681734 +0.13749999,0.6625,0.11905508,0.11905509 +0.1375,0.6625,0.084184654,0.1683693 +0.1375,0.6625,0.1683693,0.08418465 +0.1375,0.6875,0.074999996,0.07500005 +0.1375,0.6875,0.053033024,0.10606599 +0.1375,0.6875,0.10606602,0.053032994 +0.1375,0.6875,0.09449408,0.094494104 +0.1375,0.6875,0.0668174,0.1336348 +0.1375,0.6875,0.1336348,0.0668174 +0.13749999,0.6875,0.11905508,0.11905503 +0.1375,0.6875,0.084184654,0.1683693 +0.1375,0.6875,0.1683693,0.08418465 +0.1375,0.7125,0.074999996,0.07499999 +0.1375,0.7125,0.053033024,0.10606605 +0.1375,0.7125,0.10606602,0.053032935 +0.1375,0.7125,0.09449408,0.094494045 +0.1375,0.7125,0.0668174,0.13363487 +0.1375,0.7125,0.1336348,0.06681734 +0.13749999,0.7125,0.11905508,0.11905509 +0.1375,0.7125,0.084184654,0.1683693 +0.1375,0.7125,0.1683693,0.08418465 +0.1375,0.73749995,0.074999996,0.07499999 +0.1375,0.73749995,0.053033024,0.10606605 +0.1375,0.7375,0.10606602,0.053032994 +0.1375,0.73749995,0.09449408,0.094494045 +0.1375,0.73749995,0.0668174,0.1336348 +0.1375,0.7375,0.1336348,0.0668174 +0.13749999,0.73749995,0.11905508,0.11905509 +0.1375,0.7375,0.084184654,0.1683693 +0.1375,0.7375,0.1683693,0.08418465 +0.1375,0.76250005,0.074999996,0.07499999 +0.1375,0.7625,0.053033024,0.10606599 +0.1375,0.7625,0.10606602,0.053032994 +0.1375,0.76250005,0.09449408,0.094494045 +0.1375,0.7625,0.0668174,0.1336348 +0.1375,0.7625,0.1336348,0.0668174 +0.13749999,0.7625,0.11905508,0.11905503 +0.1375,0.7625,0.084184654,0.1683693 +0.1375,0.7625,0.1683693,0.08418465 +0.1375,0.7875,0.074999996,0.07499999 +0.1375,0.78749996,0.053033024,0.10606599 +0.1375,0.7875,0.10606602,0.053032994 +0.1375,0.7875,0.09449408,0.094494045 +0.1375,0.78749996,0.0668174,0.1336348 +0.1375,0.7875,0.1336348,0.0668174 +0.13749999,0.78749996,0.11905508,0.11905503 +0.1375,0.7875,0.084184654,0.1683693 +0.1375,0.7875,0.1683693,0.08418465 +0.1375,0.8125,0.074999996,0.07500005 +0.1375,0.8125,0.053033024,0.10606599 +0.1375,0.8125,0.10606602,0.053033054 +0.1375,0.8125,0.09449408,0.094494104 +0.1375,0.8125,0.0668174,0.1336348 +0.1375,0.8125,0.1336348,0.06681746 +0.13749999,0.8125,0.11905508,0.11905503 +0.1375,0.8125,0.084184654,0.1683693 +0.1375,0.8125,0.1683693,0.08418465 +0.1375,0.8375,0.074999996,0.07499999 +0.1375,0.8375,0.053033024,0.10606599 +0.1375,0.8375,0.10606602,0.053033054 +0.1375,0.8375,0.09449408,0.094494045 +0.1375,0.8375,0.0668174,0.1336348 +0.1375,0.8375,0.1336348,0.06681746 +0.13749999,0.8375,0.11905508,0.11905503 +0.1375,0.8375,0.084184654,0.1683693 +0.1375,0.8375,0.1683693,0.08418465 +0.1375,0.86249995,0.074999996,0.07499999 +0.1375,0.86249995,0.053033024,0.10606593 +0.1375,0.86249995,0.10606602,0.053033054 +0.1375,0.86249995,0.09449408,0.094494045 +0.1375,0.86249995,0.0668174,0.1336348 +0.1375,0.86249995,0.1336348,0.06681746 +0.13749999,0.86249995,0.11905508,0.11905497 +0.1375,0.8625,0.084184654,0.1683693 +0.1375,0.8625,0.1683693,0.08418465 +0.1375,0.88750005,0.074999996,0.07499999 +0.1375,0.88750005,0.053033024,0.10606593 +0.1375,0.88750005,0.10606602,0.053033054 +0.1375,0.88750005,0.09449408,0.094494045 +0.1375,0.88750005,0.0668174,0.13363475 +0.1375,0.88750005,0.1336348,0.06681746 +0.13749999,0.88750005,0.11905508,0.11905497 +0.1375,0.8875,0.084184654,0.1683693 +0.1375,0.8875,0.1683693,0.08418465 +0.1375,0.9125,0.074999996,0.07499999 +0.1375,0.9125,0.053033024,0.10606593 +0.1375,0.9125,0.10606602,0.053033054 +0.1375,0.9125,0.09449408,0.094494045 +0.1375,0.9125,0.0668174,0.13363475 +0.1375,0.9125,0.1336348,0.06681746 +0.13749999,0.9125,0.11905508,0.11905497 +0.1375,0.9125,0.084184654,0.1683693 +0.1375,0.9125,0.1683693,0.08418465 +0.1375,0.9375,0.074999996,0.07500005 +0.1375,0.9375,0.053033024,0.10606599 +0.1375,0.9375,0.10606602,0.053033113 +0.1375,0.9375,0.09449408,0.094494104 +0.1375,0.9375,0.0668174,0.1336348 +0.1375,0.9375,0.1336348,0.06681752 +0.13749999,0.9375,0.11905508,0.11905503 +0.1375,0.9375,0.084184654,0.1683693 +0.1375,0.9375,0.1683693,0.08418465 +0.1375,0.9625,0.074999996,0.07499999 +0.1375,0.9625,0.053033024,0.10606593 +0.1375,0.9625,0.10606602,0.053033054 +0.1375,0.9625,0.09449408,0.094494045 +0.1375,0.9625,0.0668174,0.13363475 +0.1375,0.9625,0.1336348,0.06681746 +0.13749999,0.9625,0.11905508,0.11905497 +0.1375,0.9625,0.084184654,0.1683693 +0.1375,0.9625,0.1683693,0.08418465 +0.1375,0.98749995,0.074999996,0.07499999 +0.1375,0.98749995,0.053033024,0.10606593 +0.1375,0.98749995,0.10606602,0.053033054 +0.1375,0.98749995,0.09449408,0.094494045 +0.1375,0.98749995,0.0668174,0.13363475 +0.1375,0.98749995,0.1336348,0.06681746 +0.13749999,0.98749995,0.11905508,0.11905497 +0.1375,0.98749995,0.084184654,0.16836923 +0.1375,0.98749995,0.1683693,0.08418459 +0.1625,0.0125,0.075,0.075 +0.1625,0.012499997,0.05303301,0.10606602 +0.16250001,0.012499999,0.106066026,0.05303301 +0.1625,0.012499999,0.094494075,0.09449408 +0.1625,0.012500001,0.0668174,0.1336348 +0.1625,0.012499999,0.1336348,0.0668174 +0.1625,0.012500001,0.11905508,0.11905508 +0.1625,0.012499999,0.08418464,0.1683693 +0.1625,0.012500002,0.1683693,0.084184654 +0.1625,0.0375,0.075,0.075 +0.1625,0.037499998,0.05303301,0.10606601 +0.16250001,0.0375,0.106066026,0.05303301 +0.1625,0.0375,0.094494075,0.094494075 +0.1625,0.0375,0.0668174,0.1336348 +0.1625,0.0375,0.1336348,0.0668174 +0.1625,0.0375,0.11905508,0.11905508 +0.1625,0.0375,0.08418464,0.16836931 +0.1625,0.0375,0.1683693,0.08418466 +0.1625,0.0625,0.075,0.075 +0.1625,0.0625,0.05303301,0.10606602 +0.16250001,0.0625,0.106066026,0.05303301 +0.1625,0.0625,0.094494075,0.094494075 +0.1625,0.0625,0.0668174,0.1336348 +0.1625,0.0625,0.1336348,0.0668174 +0.1625,0.0625,0.11905508,0.11905508 +0.1625,0.0625,0.08418464,0.16836932 +0.1625,0.0625,0.1683693,0.08418465 +0.1625,0.0875,0.075,0.075 +0.1625,0.08749999,0.05303301,0.10606601 +0.16250001,0.087500006,0.106066026,0.053033013 +0.1625,0.087500006,0.094494075,0.09449408 +0.1625,0.087500006,0.0668174,0.1336348 +0.1625,0.0875,0.1336348,0.0668174 +0.1625,0.0875,0.11905508,0.11905508 +0.1625,0.0875,0.08418464,0.16836931 +0.1625,0.087500006,0.1683693,0.084184654 +0.1625,0.112500004,0.075,0.075 +0.1625,0.1125,0.05303301,0.10606601 +0.16250001,0.112500004,0.106066026,0.05303301 +0.1625,0.1125,0.094494075,0.094494075 +0.1625,0.1125,0.0668174,0.1336348 +0.1625,0.1125,0.1336348,0.0668174 +0.1625,0.1125,0.11905508,0.119055085 +0.1625,0.112500004,0.08418464,0.16836931 +0.1625,0.1125,0.1683693,0.08418465 +0.1625,0.1375,0.075,0.074999996 +0.1625,0.1375,0.05303301,0.10606602 +0.16250001,0.1375,0.106066026,0.053033024 +0.1625,0.1375,0.094494075,0.09449408 +0.1625,0.1375,0.0668174,0.1336348 +0.1625,0.1375,0.1336348,0.0668174 +0.1625,0.13749999,0.11905508,0.11905508 +0.1625,0.1375,0.08418464,0.1683693 +0.1625,0.1375,0.1683693,0.084184654 +0.1625,0.1625,0.075,0.075 +0.1625,0.16250001,0.05303301,0.106066026 +0.16250001,0.1625,0.106066026,0.05303301 +0.1625,0.1625,0.094494075,0.094494075 +0.1625,0.1625,0.0668174,0.1336348 +0.1625,0.1625,0.1336348,0.0668174 +0.1625,0.1625,0.11905508,0.11905508 +0.1625,0.1625,0.08418464,0.1683693 +0.1625,0.1625,0.1683693,0.08418464 +0.1625,0.1875,0.075,0.07499999 +0.1625,0.1875,0.05303301,0.10606603 +0.16250001,0.1875,0.106066026,0.053033024 +0.1625,0.1875,0.094494075,0.09449406 +0.1625,0.1875,0.0668174,0.1336348 +0.1625,0.1875,0.1336348,0.06681742 +0.1625,0.1875,0.11905508,0.11905509 +0.1625,0.1875,0.08418464,0.16836931 +0.1625,0.1875,0.1683693,0.08418465 +0.1625,0.2125,0.075,0.075 +0.1625,0.2125,0.05303301,0.10606603 +0.16250001,0.2125,0.106066026,0.05303301 +0.1625,0.21249999,0.094494075,0.094494075 +0.1625,0.2125,0.0668174,0.1336348 +0.1625,0.2125,0.1336348,0.0668174 +0.1625,0.2125,0.11905508,0.11905509 +0.1625,0.2125,0.08418464,0.16836931 +0.1625,0.2125,0.1683693,0.08418465 +0.1625,0.23750001,0.075,0.075 +0.1625,0.2375,0.05303301,0.10606602 +0.16250001,0.2375,0.106066026,0.053033024 +0.1625,0.2375,0.094494075,0.094494075 +0.1625,0.23750001,0.0668174,0.13363482 +0.1625,0.2375,0.1336348,0.06681743 +0.1625,0.2375,0.11905508,0.11905506 +0.1625,0.2375,0.08418464,0.16836932 +0.1625,0.23750001,0.1683693,0.08418466 +0.1625,0.2625,0.075,0.07500002 +0.1625,0.2625,0.05303301,0.10606603 +0.16250001,0.2625,0.106066026,0.053033024 +0.1625,0.2625,0.094494075,0.094494075 +0.1625,0.2625,0.0668174,0.13363479 +0.1625,0.2625,0.1336348,0.06681743 +0.1625,0.2625,0.11905508,0.11905508 +0.1625,0.2625,0.08418464,0.1683693 +0.1625,0.2625,0.1683693,0.08418463 +0.1625,0.2875,0.075,0.07499999 +0.1625,0.2875,0.05303301,0.10606603 +0.16250001,0.28750002,0.106066026,0.053033024 +0.1625,0.2875,0.094494075,0.094494045 +0.1625,0.2875,0.0668174,0.1336348 +0.1625,0.28750002,0.1336348,0.06681743 +0.1625,0.2875,0.11905508,0.11905508 +0.1625,0.2875,0.08418464,0.1683693 +0.1625,0.2875,0.1683693,0.08418465 +0.1625,0.3125,0.075,0.07499999 +0.1625,0.3125,0.05303301,0.10606605 +0.16250001,0.3125,0.106066026,0.053032994 +0.1625,0.3125,0.094494075,0.094494045 +0.1625,0.3125,0.0668174,0.1336348 +0.1625,0.3125,0.1336348,0.0668174 +0.1625,0.3125,0.11905508,0.11905509 +0.1625,0.3125,0.08418464,0.1683693 +0.1625,0.3125,0.1683693,0.08418465 +0.1625,0.3375,0.075,0.07499999 +0.1625,0.3375,0.05303301,0.10606605 +0.16250001,0.33749998,0.106066026,0.053033024 +0.1625,0.3375,0.094494075,0.094494045 +0.1625,0.33750004,0.0668174,0.13363484 +0.1625,0.33749998,0.1336348,0.06681743 +0.1625,0.3375,0.11905508,0.11905509 +0.1625,0.3375,0.08418464,0.1683693 +0.1625,0.3375,0.1683693,0.08418465 +0.1625,0.3625,0.075,0.07500002 +0.1625,0.3625,0.05303301,0.10606602 +0.16250001,0.3625,0.106066026,0.053033024 +0.1625,0.3625,0.094494075,0.094494075 +0.1625,0.3625,0.0668174,0.1336348 +0.1625,0.3625,0.1336348,0.06681743 +0.1625,0.3625,0.11905508,0.11905506 +0.1625,0.3625,0.08418464,0.1683693 +0.1625,0.3625,0.1683693,0.08418465 +0.1625,0.3875,0.075,0.07500002 +0.1625,0.3875,0.05303301,0.10606602 +0.16250001,0.3875,0.106066026,0.053032994 +0.1625,0.3875,0.094494075,0.094494075 +0.1625,0.3875,0.0668174,0.13363484 +0.1625,0.3875,0.1336348,0.0668174 +0.1625,0.3875,0.11905508,0.11905506 +0.1625,0.3875,0.08418464,0.1683693 +0.1625,0.3875,0.1683693,0.08418465 +0.1625,0.4125,0.075,0.07499999 +0.1625,0.4125,0.05303301,0.10606605 +0.16250001,0.4125,0.106066026,0.053032994 +0.1625,0.4125,0.094494075,0.094494045 +0.1625,0.41250002,0.0668174,0.13363484 +0.1625,0.4125,0.1336348,0.0668174 +0.1625,0.4125,0.11905508,0.11905509 +0.1625,0.4125,0.08418464,0.1683693 +0.1625,0.4125,0.1683693,0.08418465 +0.1625,0.4375,0.075,0.07499999 +0.1625,0.4375,0.05303301,0.10606605 +0.16250001,0.4375,0.106066026,0.053032994 +0.1625,0.4375,0.094494075,0.094494045 +0.1625,0.4375,0.0668174,0.1336348 +0.1625,0.4375,0.1336348,0.0668174 +0.1625,0.4375,0.11905508,0.11905509 +0.1625,0.4375,0.08418464,0.1683693 +0.1625,0.4375,0.1683693,0.08418465 +0.1625,0.4625,0.075,0.07499999 +0.1625,0.4625,0.05303301,0.10606605 +0.16250001,0.46249998,0.106066026,0.053032964 +0.1625,0.4625,0.094494075,0.094494045 +0.1625,0.46250004,0.0668174,0.13363484 +0.1625,0.46249998,0.1336348,0.06681737 +0.1625,0.4625,0.11905508,0.11905509 +0.1625,0.46249998,0.08418464,0.16836926 +0.1625,0.46249998,0.1683693,0.08418462 +0.1625,0.48749998,0.075,0.07499999 +0.1625,0.4875,0.05303301,0.10606602 +0.16250001,0.4875,0.106066026,0.053032994 +0.1625,0.48749998,0.094494075,0.094494045 +0.1625,0.4875,0.0668174,0.13363484 +0.1625,0.4875,0.1336348,0.0668174 +0.1625,0.4875,0.11905508,0.11905506 +0.1625,0.4875,0.08418464,0.1683693 +0.1625,0.4875,0.1683693,0.08418465 +0.1625,0.5125,0.075,0.07500002 +0.1625,0.51250005,0.05303301,0.10606605 +0.16250001,0.5125,0.106066026,0.053032964 +0.1625,0.5125,0.094494075,0.094494075 +0.1625,0.51250005,0.0668174,0.13363487 +0.1625,0.5125,0.1336348,0.06681737 +0.1625,0.51250005,0.11905508,0.11905509 +0.1625,0.5125,0.08418464,0.1683693 +0.1625,0.5125,0.1683693,0.08418465 +0.1625,0.5375,0.075,0.07499999 +0.1625,0.5375,0.05303301,0.10606605 +0.16250001,0.5375,0.106066026,0.053032935 +0.1625,0.5375,0.094494075,0.094494045 +0.1625,0.5375,0.0668174,0.13363487 +0.1625,0.5375,0.1336348,0.06681734 +0.1625,0.5375,0.11905508,0.11905509 +0.1625,0.5375,0.08418464,0.16836932 +0.1625,0.5375,0.1683693,0.08418468 +0.1625,0.5625,0.075,0.07500005 +0.1625,0.5625,0.05303301,0.10606599 +0.16250001,0.5625,0.106066026,0.053032994 +0.1625,0.5625,0.094494075,0.094494104 +0.1625,0.5625,0.0668174,0.13363484 +0.1625,0.5625,0.1336348,0.0668174 +0.1625,0.5625,0.11905508,0.11905503 +0.1625,0.5625,0.08418464,0.1683693 +0.1625,0.5625,0.1683693,0.08418465 +0.1625,0.5875,0.075,0.07499999 +0.1625,0.5875,0.05303301,0.10606605 +0.16250001,0.5875,0.106066026,0.053032935 +0.1625,0.5875,0.094494075,0.094494045 +0.1625,0.5875,0.0668174,0.13363487 +0.1625,0.5875,0.1336348,0.06681734 +0.1625,0.5875,0.11905508,0.11905509 +0.1625,0.5875,0.08418464,0.1683693 +0.1625,0.5875,0.1683693,0.08418465 +0.1625,0.61249995,0.075,0.07499999 +0.1625,0.61249995,0.05303301,0.10606605 +0.16250001,0.6125,0.106066026,0.053032994 +0.1625,0.61249995,0.094494075,0.094494045 +0.1625,0.61249995,0.0668174,0.13363487 +0.1625,0.6125,0.1336348,0.0668174 +0.1625,0.61249995,0.11905508,0.11905509 +0.1625,0.6125,0.08418464,0.1683693 +0.1625,0.6125,0.1683693,0.08418465 +0.1625,0.63750005,0.075,0.07499999 +0.1625,0.63750005,0.05303301,0.10606605 +0.16250001,0.6375,0.106066026,0.053032994 +0.1625,0.63750005,0.094494075,0.094494045 +0.1625,0.63750005,0.0668174,0.13363487 +0.1625,0.6375,0.1336348,0.0668174 +0.1625,0.63750005,0.11905508,0.11905509 +0.1625,0.6375,0.08418464,0.1683693 +0.1625,0.6375,0.1683693,0.08418465 +0.1625,0.6625,0.075,0.07499999 +0.1625,0.6625,0.05303301,0.10606605 +0.16250001,0.6625,0.106066026,0.053032935 +0.1625,0.6625,0.094494075,0.094494045 +0.1625,0.6625,0.0668174,0.13363487 +0.1625,0.6625,0.1336348,0.06681734 +0.1625,0.6625,0.11905508,0.11905509 +0.1625,0.6625,0.08418464,0.1683693 +0.1625,0.6625,0.1683693,0.08418465 +0.1625,0.6875,0.075,0.07500005 +0.1625,0.6875,0.05303301,0.10606599 +0.16250001,0.6875,0.106066026,0.053032994 +0.1625,0.6875,0.094494075,0.094494104 +0.1625,0.6875,0.0668174,0.1336348 +0.1625,0.6875,0.1336348,0.0668174 +0.1625,0.6875,0.11905508,0.11905503 +0.1625,0.6875,0.08418464,0.1683693 +0.1625,0.6875,0.1683693,0.08418465 +0.1625,0.7125,0.075,0.07499999 +0.1625,0.7125,0.05303301,0.10606605 +0.16250001,0.7125,0.106066026,0.053032935 +0.1625,0.7125,0.094494075,0.094494045 +0.1625,0.7125,0.0668174,0.13363487 +0.1625,0.7125,0.1336348,0.06681734 +0.1625,0.7125,0.11905508,0.11905509 +0.1625,0.7125,0.08418464,0.1683693 +0.1625,0.7125,0.1683693,0.08418465 +0.1625,0.73749995,0.075,0.07499999 +0.1625,0.73749995,0.05303301,0.10606605 +0.16250001,0.7375,0.106066026,0.053032994 +0.1625,0.73749995,0.094494075,0.094494045 +0.1625,0.73749995,0.0668174,0.1336348 +0.1625,0.7375,0.1336348,0.0668174 +0.1625,0.73749995,0.11905508,0.11905509 +0.1625,0.7375,0.08418464,0.1683693 +0.1625,0.7375,0.1683693,0.08418465 +0.1625,0.76250005,0.075,0.07499999 +0.1625,0.7625,0.05303301,0.10606599 +0.16250001,0.7625,0.106066026,0.053032994 +0.1625,0.76250005,0.094494075,0.094494045 +0.1625,0.7625,0.0668174,0.1336348 +0.1625,0.7625,0.1336348,0.0668174 +0.1625,0.7625,0.11905508,0.11905503 +0.1625,0.7625,0.08418464,0.1683693 +0.1625,0.7625,0.1683693,0.08418465 +0.1625,0.7875,0.075,0.07499999 +0.1625,0.78749996,0.05303301,0.10606599 +0.16250001,0.7875,0.106066026,0.053032994 +0.1625,0.7875,0.094494075,0.094494045 +0.1625,0.78749996,0.0668174,0.1336348 +0.1625,0.7875,0.1336348,0.0668174 +0.1625,0.78749996,0.11905508,0.11905503 +0.1625,0.7875,0.08418464,0.1683693 +0.1625,0.7875,0.1683693,0.08418465 +0.1625,0.8125,0.075,0.07500005 +0.1625,0.8125,0.05303301,0.10606599 +0.16250001,0.8125,0.106066026,0.053033054 +0.1625,0.8125,0.094494075,0.094494104 +0.1625,0.8125,0.0668174,0.1336348 +0.1625,0.8125,0.1336348,0.06681746 +0.1625,0.8125,0.11905508,0.11905503 +0.1625,0.8125,0.08418464,0.1683693 +0.1625,0.8125,0.1683693,0.08418465 +0.1625,0.8375,0.075,0.07499999 +0.1625,0.8375,0.05303301,0.10606599 +0.16250001,0.8375,0.106066026,0.053033054 +0.1625,0.8375,0.094494075,0.094494045 +0.1625,0.8375,0.0668174,0.1336348 +0.1625,0.8375,0.1336348,0.06681746 +0.1625,0.8375,0.11905508,0.11905503 +0.1625,0.8375,0.08418464,0.1683693 +0.1625,0.8375,0.1683693,0.08418465 +0.1625,0.86249995,0.075,0.07499999 +0.1625,0.86249995,0.05303301,0.10606593 +0.16250001,0.86249995,0.106066026,0.053033054 +0.1625,0.86249995,0.094494075,0.094494045 +0.1625,0.86249995,0.0668174,0.1336348 +0.1625,0.86249995,0.1336348,0.06681746 +0.1625,0.86249995,0.11905508,0.11905497 +0.1625,0.8625,0.08418464,0.1683693 +0.1625,0.8625,0.1683693,0.08418465 +0.1625,0.88750005,0.075,0.07499999 +0.1625,0.88750005,0.05303301,0.10606593 +0.16250001,0.88750005,0.106066026,0.053033054 +0.1625,0.88750005,0.094494075,0.094494045 +0.1625,0.88750005,0.0668174,0.13363475 +0.1625,0.88750005,0.1336348,0.06681746 +0.1625,0.88750005,0.11905508,0.11905497 +0.1625,0.8875,0.08418464,0.1683693 +0.1625,0.8875,0.1683693,0.08418465 +0.1625,0.9125,0.075,0.07499999 +0.1625,0.9125,0.05303301,0.10606593 +0.16250001,0.9125,0.106066026,0.053033054 +0.1625,0.9125,0.094494075,0.094494045 +0.1625,0.9125,0.0668174,0.13363475 +0.1625,0.9125,0.1336348,0.06681746 +0.1625,0.9125,0.11905508,0.11905497 +0.1625,0.9125,0.08418464,0.1683693 +0.1625,0.9125,0.1683693,0.08418465 +0.1625,0.9375,0.075,0.07500005 +0.1625,0.9375,0.05303301,0.10606599 +0.16250001,0.9375,0.106066026,0.053033113 +0.1625,0.9375,0.094494075,0.094494104 +0.1625,0.9375,0.0668174,0.1336348 +0.1625,0.9375,0.1336348,0.06681752 +0.1625,0.9375,0.11905508,0.11905503 +0.1625,0.9375,0.08418464,0.1683693 +0.1625,0.9375,0.1683693,0.08418465 +0.1625,0.9625,0.075,0.07499999 +0.1625,0.9625,0.05303301,0.10606593 +0.16250001,0.9625,0.106066026,0.053033054 +0.1625,0.9625,0.094494075,0.094494045 +0.1625,0.9625,0.0668174,0.13363475 +0.1625,0.9625,0.1336348,0.06681746 +0.1625,0.9625,0.11905508,0.11905497 +0.1625,0.9625,0.08418464,0.1683693 +0.1625,0.9625,0.1683693,0.08418465 +0.1625,0.98749995,0.075,0.07499999 +0.1625,0.98749995,0.05303301,0.10606593 +0.16250001,0.98749995,0.106066026,0.053033054 +0.1625,0.98749995,0.094494075,0.094494045 +0.1625,0.98749995,0.0668174,0.13363475 +0.1625,0.98749995,0.1336348,0.06681746 +0.1625,0.98749995,0.11905508,0.11905497 +0.1625,0.98749995,0.08418464,0.16836923 +0.1625,0.98749995,0.1683693,0.08418459 +0.1875,0.0125,0.07499999,0.075 +0.1875,0.012499997,0.053033024,0.10606602 +0.1875,0.012499999,0.10606603,0.05303301 +0.1875,0.012499999,0.09449406,0.09449408 +0.1875,0.012500001,0.06681742,0.1336348 +0.1875,0.012499999,0.1336348,0.0668174 +0.1875,0.012500001,0.11905509,0.11905508 +0.1875,0.012499999,0.08418465,0.1683693 +0.1875,0.012500002,0.16836931,0.084184654 +0.1875,0.0375,0.07499999,0.075 +0.1875,0.037499998,0.053033024,0.10606601 +0.1875,0.0375,0.10606603,0.05303301 +0.1875,0.0375,0.09449406,0.094494075 +0.1875,0.0375,0.06681742,0.1336348 +0.1875,0.0375,0.1336348,0.0668174 +0.1875,0.0375,0.11905509,0.11905508 +0.1875,0.0375,0.08418465,0.16836931 +0.1875,0.0375,0.16836931,0.08418466 +0.1875,0.0625,0.07499999,0.075 +0.1875,0.0625,0.053033024,0.10606602 +0.1875,0.0625,0.10606603,0.05303301 +0.1875,0.0625,0.09449406,0.094494075 +0.1875,0.0625,0.06681742,0.1336348 +0.1875,0.0625,0.1336348,0.0668174 +0.1875,0.0625,0.11905509,0.11905508 +0.1875,0.0625,0.08418465,0.16836932 +0.1875,0.0625,0.16836931,0.08418465 +0.1875,0.0875,0.07499999,0.075 +0.1875,0.08749999,0.053033024,0.10606601 +0.1875,0.087500006,0.10606603,0.053033013 +0.1875,0.087500006,0.09449406,0.09449408 +0.1875,0.087500006,0.06681742,0.1336348 +0.1875,0.0875,0.1336348,0.0668174 +0.1875,0.0875,0.11905509,0.11905508 +0.1875,0.0875,0.08418465,0.16836931 +0.1875,0.087500006,0.16836931,0.084184654 +0.1875,0.112500004,0.07499999,0.075 +0.1875,0.1125,0.053033024,0.10606601 +0.1875,0.112500004,0.10606603,0.05303301 +0.1875,0.1125,0.09449406,0.094494075 +0.1875,0.1125,0.06681742,0.1336348 +0.1875,0.1125,0.1336348,0.0668174 +0.1875,0.1125,0.11905509,0.119055085 +0.1875,0.112500004,0.08418465,0.16836931 +0.1875,0.1125,0.16836931,0.08418465 +0.1875,0.1375,0.07499999,0.074999996 +0.1875,0.1375,0.053033024,0.10606602 +0.1875,0.1375,0.10606603,0.053033024 +0.1875,0.1375,0.09449406,0.09449408 +0.1875,0.1375,0.06681742,0.1336348 +0.1875,0.1375,0.1336348,0.0668174 +0.1875,0.13749999,0.11905509,0.11905508 +0.1875,0.1375,0.08418465,0.1683693 +0.1875,0.1375,0.16836931,0.084184654 +0.1875,0.1625,0.07499999,0.075 +0.1875,0.16250001,0.053033024,0.106066026 +0.1875,0.1625,0.10606603,0.05303301 +0.1875,0.1625,0.09449406,0.094494075 +0.1875,0.1625,0.06681742,0.1336348 +0.1875,0.1625,0.1336348,0.0668174 +0.1875,0.1625,0.11905509,0.11905508 +0.1875,0.1625,0.08418465,0.1683693 +0.1875,0.1625,0.16836931,0.08418464 +0.1875,0.1875,0.07499999,0.07499999 +0.1875,0.1875,0.053033024,0.10606603 +0.1875,0.1875,0.10606603,0.053033024 +0.1875,0.1875,0.09449406,0.09449406 +0.1875,0.1875,0.06681742,0.1336348 +0.1875,0.1875,0.1336348,0.06681742 +0.1875,0.1875,0.11905509,0.11905509 +0.1875,0.1875,0.08418465,0.16836931 +0.1875,0.1875,0.16836931,0.08418465 +0.1875,0.2125,0.07499999,0.075 +0.1875,0.2125,0.053033024,0.10606603 +0.1875,0.2125,0.10606603,0.05303301 +0.1875,0.21249999,0.09449406,0.094494075 +0.1875,0.2125,0.06681742,0.1336348 +0.1875,0.2125,0.1336348,0.0668174 +0.1875,0.2125,0.11905509,0.11905509 +0.1875,0.2125,0.08418465,0.16836931 +0.1875,0.2125,0.16836931,0.08418465 +0.1875,0.23750001,0.07499999,0.075 +0.1875,0.2375,0.053033024,0.10606602 +0.1875,0.2375,0.10606603,0.053033024 +0.1875,0.2375,0.09449406,0.094494075 +0.1875,0.23750001,0.06681742,0.13363482 +0.1875,0.2375,0.1336348,0.06681743 +0.1875,0.2375,0.11905509,0.11905506 +0.1875,0.2375,0.08418465,0.16836932 +0.1875,0.23750001,0.16836931,0.08418466 +0.1875,0.2625,0.07499999,0.07500002 +0.1875,0.2625,0.053033024,0.10606603 +0.1875,0.2625,0.10606603,0.053033024 +0.1875,0.2625,0.09449406,0.094494075 +0.1875,0.2625,0.06681742,0.13363479 +0.1875,0.2625,0.1336348,0.06681743 +0.1875,0.2625,0.11905509,0.11905508 +0.1875,0.2625,0.08418465,0.1683693 +0.1875,0.2625,0.16836931,0.08418463 +0.1875,0.2875,0.07499999,0.07499999 +0.1875,0.2875,0.053033024,0.10606603 +0.1875,0.28750002,0.10606603,0.053033024 +0.1875,0.2875,0.09449406,0.094494045 +0.1875,0.2875,0.06681742,0.1336348 +0.1875,0.28750002,0.1336348,0.06681743 +0.1875,0.2875,0.11905509,0.11905508 +0.1875,0.2875,0.08418465,0.1683693 +0.1875,0.2875,0.16836931,0.08418465 +0.1875,0.3125,0.07499999,0.07499999 +0.1875,0.3125,0.053033024,0.10606605 +0.1875,0.3125,0.10606603,0.053032994 +0.1875,0.3125,0.09449406,0.094494045 +0.1875,0.3125,0.06681742,0.1336348 +0.1875,0.3125,0.1336348,0.0668174 +0.1875,0.3125,0.11905509,0.11905509 +0.1875,0.3125,0.08418465,0.1683693 +0.1875,0.3125,0.16836931,0.08418465 +0.1875,0.3375,0.07499999,0.07499999 +0.1875,0.3375,0.053033024,0.10606605 +0.1875,0.33749998,0.10606603,0.053033024 +0.1875,0.3375,0.09449406,0.094494045 +0.1875,0.33750004,0.06681742,0.13363484 +0.1875,0.33749998,0.1336348,0.06681743 +0.1875,0.3375,0.11905509,0.11905509 +0.1875,0.3375,0.08418465,0.1683693 +0.1875,0.3375,0.16836931,0.08418465 +0.1875,0.3625,0.07499999,0.07500002 +0.1875,0.3625,0.053033024,0.10606602 +0.1875,0.3625,0.10606603,0.053033024 +0.1875,0.3625,0.09449406,0.094494075 +0.1875,0.3625,0.06681742,0.1336348 +0.1875,0.3625,0.1336348,0.06681743 +0.1875,0.3625,0.11905509,0.11905506 +0.1875,0.3625,0.08418465,0.1683693 +0.1875,0.3625,0.16836931,0.08418465 +0.1875,0.3875,0.07499999,0.07500002 +0.1875,0.3875,0.053033024,0.10606602 +0.1875,0.3875,0.10606603,0.053032994 +0.1875,0.3875,0.09449406,0.094494075 +0.1875,0.3875,0.06681742,0.13363484 +0.1875,0.3875,0.1336348,0.0668174 +0.1875,0.3875,0.11905509,0.11905506 +0.1875,0.3875,0.08418465,0.1683693 +0.1875,0.3875,0.16836931,0.08418465 +0.1875,0.4125,0.07499999,0.07499999 +0.1875,0.4125,0.053033024,0.10606605 +0.1875,0.4125,0.10606603,0.053032994 +0.1875,0.4125,0.09449406,0.094494045 +0.1875,0.41250002,0.06681742,0.13363484 +0.1875,0.4125,0.1336348,0.0668174 +0.1875,0.4125,0.11905509,0.11905509 +0.1875,0.4125,0.08418465,0.1683693 +0.1875,0.4125,0.16836931,0.08418465 +0.1875,0.4375,0.07499999,0.07499999 +0.1875,0.4375,0.053033024,0.10606605 +0.1875,0.4375,0.10606603,0.053032994 +0.1875,0.4375,0.09449406,0.094494045 +0.1875,0.4375,0.06681742,0.1336348 +0.1875,0.4375,0.1336348,0.0668174 +0.1875,0.4375,0.11905509,0.11905509 +0.1875,0.4375,0.08418465,0.1683693 +0.1875,0.4375,0.16836931,0.08418465 +0.1875,0.4625,0.07499999,0.07499999 +0.1875,0.4625,0.053033024,0.10606605 +0.1875,0.46249998,0.10606603,0.053032964 +0.1875,0.4625,0.09449406,0.094494045 +0.1875,0.46250004,0.06681742,0.13363484 +0.1875,0.46249998,0.1336348,0.06681737 +0.1875,0.4625,0.11905509,0.11905509 +0.1875,0.46249998,0.08418465,0.16836926 +0.1875,0.46249998,0.16836931,0.08418462 +0.1875,0.48749998,0.07499999,0.07499999 +0.1875,0.4875,0.053033024,0.10606602 +0.1875,0.4875,0.10606603,0.053032994 +0.1875,0.48749998,0.09449406,0.094494045 +0.1875,0.4875,0.06681742,0.13363484 +0.1875,0.4875,0.1336348,0.0668174 +0.1875,0.4875,0.11905509,0.11905506 +0.1875,0.4875,0.08418465,0.1683693 +0.1875,0.4875,0.16836931,0.08418465 +0.1875,0.5125,0.07499999,0.07500002 +0.1875,0.51250005,0.053033024,0.10606605 +0.1875,0.5125,0.10606603,0.053032964 +0.1875,0.5125,0.09449406,0.094494075 +0.1875,0.51250005,0.06681742,0.13363487 +0.1875,0.5125,0.1336348,0.06681737 +0.1875,0.51250005,0.11905509,0.11905509 +0.1875,0.5125,0.08418465,0.1683693 +0.1875,0.5125,0.16836931,0.08418465 +0.1875,0.5375,0.07499999,0.07499999 +0.1875,0.5375,0.053033024,0.10606605 +0.1875,0.5375,0.10606603,0.053032935 +0.1875,0.5375,0.09449406,0.094494045 +0.1875,0.5375,0.06681742,0.13363487 +0.1875,0.5375,0.1336348,0.06681734 +0.1875,0.5375,0.11905509,0.11905509 +0.1875,0.5375,0.08418465,0.16836932 +0.1875,0.5375,0.16836931,0.08418468 +0.1875,0.5625,0.07499999,0.07500005 +0.1875,0.5625,0.053033024,0.10606599 +0.1875,0.5625,0.10606603,0.053032994 +0.1875,0.5625,0.09449406,0.094494104 +0.1875,0.5625,0.06681742,0.13363484 +0.1875,0.5625,0.1336348,0.0668174 +0.1875,0.5625,0.11905509,0.11905503 +0.1875,0.5625,0.08418465,0.1683693 +0.1875,0.5625,0.16836931,0.08418465 +0.1875,0.5875,0.07499999,0.07499999 +0.1875,0.5875,0.053033024,0.10606605 +0.1875,0.5875,0.10606603,0.053032935 +0.1875,0.5875,0.09449406,0.094494045 +0.1875,0.5875,0.06681742,0.13363487 +0.1875,0.5875,0.1336348,0.06681734 +0.1875,0.5875,0.11905509,0.11905509 +0.1875,0.5875,0.08418465,0.1683693 +0.1875,0.5875,0.16836931,0.08418465 +0.1875,0.61249995,0.07499999,0.07499999 +0.1875,0.61249995,0.053033024,0.10606605 +0.1875,0.6125,0.10606603,0.053032994 +0.1875,0.61249995,0.09449406,0.094494045 +0.1875,0.61249995,0.06681742,0.13363487 +0.1875,0.6125,0.1336348,0.0668174 +0.1875,0.61249995,0.11905509,0.11905509 +0.1875,0.6125,0.08418465,0.1683693 +0.1875,0.6125,0.16836931,0.08418465 +0.1875,0.63750005,0.07499999,0.07499999 +0.1875,0.63750005,0.053033024,0.10606605 +0.1875,0.6375,0.10606603,0.053032994 +0.1875,0.63750005,0.09449406,0.094494045 +0.1875,0.63750005,0.06681742,0.13363487 +0.1875,0.6375,0.1336348,0.0668174 +0.1875,0.63750005,0.11905509,0.11905509 +0.1875,0.6375,0.08418465,0.1683693 +0.1875,0.6375,0.16836931,0.08418465 +0.1875,0.6625,0.07499999,0.07499999 +0.1875,0.6625,0.053033024,0.10606605 +0.1875,0.6625,0.10606603,0.053032935 +0.1875,0.6625,0.09449406,0.094494045 +0.1875,0.6625,0.06681742,0.13363487 +0.1875,0.6625,0.1336348,0.06681734 +0.1875,0.6625,0.11905509,0.11905509 +0.1875,0.6625,0.08418465,0.1683693 +0.1875,0.6625,0.16836931,0.08418465 +0.1875,0.6875,0.07499999,0.07500005 +0.1875,0.6875,0.053033024,0.10606599 +0.1875,0.6875,0.10606603,0.053032994 +0.1875,0.6875,0.09449406,0.094494104 +0.1875,0.6875,0.06681742,0.1336348 +0.1875,0.6875,0.1336348,0.0668174 +0.1875,0.6875,0.11905509,0.11905503 +0.1875,0.6875,0.08418465,0.1683693 +0.1875,0.6875,0.16836931,0.08418465 +0.1875,0.7125,0.07499999,0.07499999 +0.1875,0.7125,0.053033024,0.10606605 +0.1875,0.7125,0.10606603,0.053032935 +0.1875,0.7125,0.09449406,0.094494045 +0.1875,0.7125,0.06681742,0.13363487 +0.1875,0.7125,0.1336348,0.06681734 +0.1875,0.7125,0.11905509,0.11905509 +0.1875,0.7125,0.08418465,0.1683693 +0.1875,0.7125,0.16836931,0.08418465 +0.1875,0.73749995,0.07499999,0.07499999 +0.1875,0.73749995,0.053033024,0.10606605 +0.1875,0.7375,0.10606603,0.053032994 +0.1875,0.73749995,0.09449406,0.094494045 +0.1875,0.73749995,0.06681742,0.1336348 +0.1875,0.7375,0.1336348,0.0668174 +0.1875,0.73749995,0.11905509,0.11905509 +0.1875,0.7375,0.08418465,0.1683693 +0.1875,0.7375,0.16836931,0.08418465 +0.1875,0.76250005,0.07499999,0.07499999 +0.1875,0.7625,0.053033024,0.10606599 +0.1875,0.7625,0.10606603,0.053032994 +0.1875,0.76250005,0.09449406,0.094494045 +0.1875,0.7625,0.06681742,0.1336348 +0.1875,0.7625,0.1336348,0.0668174 +0.1875,0.7625,0.11905509,0.11905503 +0.1875,0.7625,0.08418465,0.1683693 +0.1875,0.7625,0.16836931,0.08418465 +0.1875,0.7875,0.07499999,0.07499999 +0.1875,0.78749996,0.053033024,0.10606599 +0.1875,0.7875,0.10606603,0.053032994 +0.1875,0.7875,0.09449406,0.094494045 +0.1875,0.78749996,0.06681742,0.1336348 +0.1875,0.7875,0.1336348,0.0668174 +0.1875,0.78749996,0.11905509,0.11905503 +0.1875,0.7875,0.08418465,0.1683693 +0.1875,0.7875,0.16836931,0.08418465 +0.1875,0.8125,0.07499999,0.07500005 +0.1875,0.8125,0.053033024,0.10606599 +0.1875,0.8125,0.10606603,0.053033054 +0.1875,0.8125,0.09449406,0.094494104 +0.1875,0.8125,0.06681742,0.1336348 +0.1875,0.8125,0.1336348,0.06681746 +0.1875,0.8125,0.11905509,0.11905503 +0.1875,0.8125,0.08418465,0.1683693 +0.1875,0.8125,0.16836931,0.08418465 +0.1875,0.8375,0.07499999,0.07499999 +0.1875,0.8375,0.053033024,0.10606599 +0.1875,0.8375,0.10606603,0.053033054 +0.1875,0.8375,0.09449406,0.094494045 +0.1875,0.8375,0.06681742,0.1336348 +0.1875,0.8375,0.1336348,0.06681746 +0.1875,0.8375,0.11905509,0.11905503 +0.1875,0.8375,0.08418465,0.1683693 +0.1875,0.8375,0.16836931,0.08418465 +0.1875,0.86249995,0.07499999,0.07499999 +0.1875,0.86249995,0.053033024,0.10606593 +0.1875,0.86249995,0.10606603,0.053033054 +0.1875,0.86249995,0.09449406,0.094494045 +0.1875,0.86249995,0.06681742,0.1336348 +0.1875,0.86249995,0.1336348,0.06681746 +0.1875,0.86249995,0.11905509,0.11905497 +0.1875,0.8625,0.08418465,0.1683693 +0.1875,0.8625,0.16836931,0.08418465 +0.1875,0.88750005,0.07499999,0.07499999 +0.1875,0.88750005,0.053033024,0.10606593 +0.1875,0.88750005,0.10606603,0.053033054 +0.1875,0.88750005,0.09449406,0.094494045 +0.1875,0.88750005,0.06681742,0.13363475 +0.1875,0.88750005,0.1336348,0.06681746 +0.1875,0.88750005,0.11905509,0.11905497 +0.1875,0.8875,0.08418465,0.1683693 +0.1875,0.8875,0.16836931,0.08418465 +0.1875,0.9125,0.07499999,0.07499999 +0.1875,0.9125,0.053033024,0.10606593 +0.1875,0.9125,0.10606603,0.053033054 +0.1875,0.9125,0.09449406,0.094494045 +0.1875,0.9125,0.06681742,0.13363475 +0.1875,0.9125,0.1336348,0.06681746 +0.1875,0.9125,0.11905509,0.11905497 +0.1875,0.9125,0.08418465,0.1683693 +0.1875,0.9125,0.16836931,0.08418465 +0.1875,0.9375,0.07499999,0.07500005 +0.1875,0.9375,0.053033024,0.10606599 +0.1875,0.9375,0.10606603,0.053033113 +0.1875,0.9375,0.09449406,0.094494104 +0.1875,0.9375,0.06681742,0.1336348 +0.1875,0.9375,0.1336348,0.06681752 +0.1875,0.9375,0.11905509,0.11905503 +0.1875,0.9375,0.08418465,0.1683693 +0.1875,0.9375,0.16836931,0.08418465 +0.1875,0.9625,0.07499999,0.07499999 +0.1875,0.9625,0.053033024,0.10606593 +0.1875,0.9625,0.10606603,0.053033054 +0.1875,0.9625,0.09449406,0.094494045 +0.1875,0.9625,0.06681742,0.13363475 +0.1875,0.9625,0.1336348,0.06681746 +0.1875,0.9625,0.11905509,0.11905497 +0.1875,0.9625,0.08418465,0.1683693 +0.1875,0.9625,0.16836931,0.08418465 +0.1875,0.98749995,0.07499999,0.07499999 +0.1875,0.98749995,0.053033024,0.10606593 +0.1875,0.98749995,0.10606603,0.053033054 +0.1875,0.98749995,0.09449406,0.094494045 +0.1875,0.98749995,0.06681742,0.13363475 +0.1875,0.98749995,0.1336348,0.06681746 +0.1875,0.98749995,0.11905509,0.11905497 +0.1875,0.98749995,0.08418465,0.16836923 +0.1875,0.98749995,0.16836931,0.08418459 +0.2125,0.0125,0.075,0.075 +0.2125,0.012499997,0.05303301,0.10606602 +0.2125,0.012499999,0.10606603,0.05303301 +0.21249999,0.012499999,0.094494075,0.09449408 +0.2125,0.012500001,0.0668174,0.1336348 +0.2125,0.012499999,0.1336348,0.0668174 +0.2125,0.012500001,0.11905509,0.11905508 +0.2125,0.012499999,0.08418465,0.1683693 +0.2125,0.012500002,0.16836931,0.084184654 +0.2125,0.0375,0.075,0.075 +0.2125,0.037499998,0.05303301,0.10606601 +0.2125,0.0375,0.10606603,0.05303301 +0.21249999,0.0375,0.094494075,0.094494075 +0.2125,0.0375,0.0668174,0.1336348 +0.2125,0.0375,0.1336348,0.0668174 +0.2125,0.0375,0.11905509,0.11905508 +0.2125,0.0375,0.08418465,0.16836931 +0.2125,0.0375,0.16836931,0.08418466 +0.2125,0.0625,0.075,0.075 +0.2125,0.0625,0.05303301,0.10606602 +0.2125,0.0625,0.10606603,0.05303301 +0.21249999,0.0625,0.094494075,0.094494075 +0.2125,0.0625,0.0668174,0.1336348 +0.2125,0.0625,0.1336348,0.0668174 +0.2125,0.0625,0.11905509,0.11905508 +0.2125,0.0625,0.08418465,0.16836932 +0.2125,0.0625,0.16836931,0.08418465 +0.2125,0.0875,0.075,0.075 +0.2125,0.08749999,0.05303301,0.10606601 +0.2125,0.087500006,0.10606603,0.053033013 +0.21249999,0.087500006,0.094494075,0.09449408 +0.2125,0.087500006,0.0668174,0.1336348 +0.2125,0.0875,0.1336348,0.0668174 +0.2125,0.0875,0.11905509,0.11905508 +0.2125,0.0875,0.08418465,0.16836931 +0.2125,0.087500006,0.16836931,0.084184654 +0.2125,0.112500004,0.075,0.075 +0.2125,0.1125,0.05303301,0.10606601 +0.2125,0.112500004,0.10606603,0.05303301 +0.21249999,0.1125,0.094494075,0.094494075 +0.2125,0.1125,0.0668174,0.1336348 +0.2125,0.1125,0.1336348,0.0668174 +0.2125,0.1125,0.11905509,0.119055085 +0.2125,0.112500004,0.08418465,0.16836931 +0.2125,0.1125,0.16836931,0.08418465 +0.2125,0.1375,0.075,0.074999996 +0.2125,0.1375,0.05303301,0.10606602 +0.2125,0.1375,0.10606603,0.053033024 +0.21249999,0.1375,0.094494075,0.09449408 +0.2125,0.1375,0.0668174,0.1336348 +0.2125,0.1375,0.1336348,0.0668174 +0.2125,0.13749999,0.11905509,0.11905508 +0.2125,0.1375,0.08418465,0.1683693 +0.2125,0.1375,0.16836931,0.084184654 +0.2125,0.1625,0.075,0.075 +0.2125,0.16250001,0.05303301,0.106066026 +0.2125,0.1625,0.10606603,0.05303301 +0.21249999,0.1625,0.094494075,0.094494075 +0.2125,0.1625,0.0668174,0.1336348 +0.2125,0.1625,0.1336348,0.0668174 +0.2125,0.1625,0.11905509,0.11905508 +0.2125,0.1625,0.08418465,0.1683693 +0.2125,0.1625,0.16836931,0.08418464 +0.2125,0.1875,0.075,0.07499999 +0.2125,0.1875,0.05303301,0.10606603 +0.2125,0.1875,0.10606603,0.053033024 +0.21249999,0.1875,0.094494075,0.09449406 +0.2125,0.1875,0.0668174,0.1336348 +0.2125,0.1875,0.1336348,0.06681742 +0.2125,0.1875,0.11905509,0.11905509 +0.2125,0.1875,0.08418465,0.16836931 +0.2125,0.1875,0.16836931,0.08418465 +0.2125,0.2125,0.075,0.075 +0.2125,0.2125,0.05303301,0.10606603 +0.2125,0.2125,0.10606603,0.05303301 +0.21249999,0.21249999,0.094494075,0.094494075 +0.2125,0.2125,0.0668174,0.1336348 +0.2125,0.2125,0.1336348,0.0668174 +0.2125,0.2125,0.11905509,0.11905509 +0.2125,0.2125,0.08418465,0.16836931 +0.2125,0.2125,0.16836931,0.08418465 +0.2125,0.23750001,0.075,0.075 +0.2125,0.2375,0.05303301,0.10606602 +0.2125,0.2375,0.10606603,0.053033024 +0.21249999,0.2375,0.094494075,0.094494075 +0.2125,0.23750001,0.0668174,0.13363482 +0.2125,0.2375,0.1336348,0.06681743 +0.2125,0.2375,0.11905509,0.11905506 +0.2125,0.2375,0.08418465,0.16836932 +0.2125,0.23750001,0.16836931,0.08418466 +0.2125,0.2625,0.075,0.07500002 +0.2125,0.2625,0.05303301,0.10606603 +0.2125,0.2625,0.10606603,0.053033024 +0.21249999,0.2625,0.094494075,0.094494075 +0.2125,0.2625,0.0668174,0.13363479 +0.2125,0.2625,0.1336348,0.06681743 +0.2125,0.2625,0.11905509,0.11905508 +0.2125,0.2625,0.08418465,0.1683693 +0.2125,0.2625,0.16836931,0.08418463 +0.2125,0.2875,0.075,0.07499999 +0.2125,0.2875,0.05303301,0.10606603 +0.2125,0.28750002,0.10606603,0.053033024 +0.21249999,0.2875,0.094494075,0.094494045 +0.2125,0.2875,0.0668174,0.1336348 +0.2125,0.28750002,0.1336348,0.06681743 +0.2125,0.2875,0.11905509,0.11905508 +0.2125,0.2875,0.08418465,0.1683693 +0.2125,0.2875,0.16836931,0.08418465 +0.2125,0.3125,0.075,0.07499999 +0.2125,0.3125,0.05303301,0.10606605 +0.2125,0.3125,0.10606603,0.053032994 +0.21249999,0.3125,0.094494075,0.094494045 +0.2125,0.3125,0.0668174,0.1336348 +0.2125,0.3125,0.1336348,0.0668174 +0.2125,0.3125,0.11905509,0.11905509 +0.2125,0.3125,0.08418465,0.1683693 +0.2125,0.3125,0.16836931,0.08418465 +0.2125,0.3375,0.075,0.07499999 +0.2125,0.3375,0.05303301,0.10606605 +0.2125,0.33749998,0.10606603,0.053033024 +0.21249999,0.3375,0.094494075,0.094494045 +0.2125,0.33750004,0.0668174,0.13363484 +0.2125,0.33749998,0.1336348,0.06681743 +0.2125,0.3375,0.11905509,0.11905509 +0.2125,0.3375,0.08418465,0.1683693 +0.2125,0.3375,0.16836931,0.08418465 +0.2125,0.3625,0.075,0.07500002 +0.2125,0.3625,0.05303301,0.10606602 +0.2125,0.3625,0.10606603,0.053033024 +0.21249999,0.3625,0.094494075,0.094494075 +0.2125,0.3625,0.0668174,0.1336348 +0.2125,0.3625,0.1336348,0.06681743 +0.2125,0.3625,0.11905509,0.11905506 +0.2125,0.3625,0.08418465,0.1683693 +0.2125,0.3625,0.16836931,0.08418465 +0.2125,0.3875,0.075,0.07500002 +0.2125,0.3875,0.05303301,0.10606602 +0.2125,0.3875,0.10606603,0.053032994 +0.21249999,0.3875,0.094494075,0.094494075 +0.2125,0.3875,0.0668174,0.13363484 +0.2125,0.3875,0.1336348,0.0668174 +0.2125,0.3875,0.11905509,0.11905506 +0.2125,0.3875,0.08418465,0.1683693 +0.2125,0.3875,0.16836931,0.08418465 +0.2125,0.4125,0.075,0.07499999 +0.2125,0.4125,0.05303301,0.10606605 +0.2125,0.4125,0.10606603,0.053032994 +0.21249999,0.4125,0.094494075,0.094494045 +0.2125,0.41250002,0.0668174,0.13363484 +0.2125,0.4125,0.1336348,0.0668174 +0.2125,0.4125,0.11905509,0.11905509 +0.2125,0.4125,0.08418465,0.1683693 +0.2125,0.4125,0.16836931,0.08418465 +0.2125,0.4375,0.075,0.07499999 +0.2125,0.4375,0.05303301,0.10606605 +0.2125,0.4375,0.10606603,0.053032994 +0.21249999,0.4375,0.094494075,0.094494045 +0.2125,0.4375,0.0668174,0.1336348 +0.2125,0.4375,0.1336348,0.0668174 +0.2125,0.4375,0.11905509,0.11905509 +0.2125,0.4375,0.08418465,0.1683693 +0.2125,0.4375,0.16836931,0.08418465 +0.2125,0.4625,0.075,0.07499999 +0.2125,0.4625,0.05303301,0.10606605 +0.2125,0.46249998,0.10606603,0.053032964 +0.21249999,0.4625,0.094494075,0.094494045 +0.2125,0.46250004,0.0668174,0.13363484 +0.2125,0.46249998,0.1336348,0.06681737 +0.2125,0.4625,0.11905509,0.11905509 +0.2125,0.46249998,0.08418465,0.16836926 +0.2125,0.46249998,0.16836931,0.08418462 +0.2125,0.48749998,0.075,0.07499999 +0.2125,0.4875,0.05303301,0.10606602 +0.2125,0.4875,0.10606603,0.053032994 +0.21249999,0.48749998,0.094494075,0.094494045 +0.2125,0.4875,0.0668174,0.13363484 +0.2125,0.4875,0.1336348,0.0668174 +0.2125,0.4875,0.11905509,0.11905506 +0.2125,0.4875,0.08418465,0.1683693 +0.2125,0.4875,0.16836931,0.08418465 +0.2125,0.5125,0.075,0.07500002 +0.2125,0.51250005,0.05303301,0.10606605 +0.2125,0.5125,0.10606603,0.053032964 +0.21249999,0.5125,0.094494075,0.094494075 +0.2125,0.51250005,0.0668174,0.13363487 +0.2125,0.5125,0.1336348,0.06681737 +0.2125,0.51250005,0.11905509,0.11905509 +0.2125,0.5125,0.08418465,0.1683693 +0.2125,0.5125,0.16836931,0.08418465 +0.2125,0.5375,0.075,0.07499999 +0.2125,0.5375,0.05303301,0.10606605 +0.2125,0.5375,0.10606603,0.053032935 +0.21249999,0.5375,0.094494075,0.094494045 +0.2125,0.5375,0.0668174,0.13363487 +0.2125,0.5375,0.1336348,0.06681734 +0.2125,0.5375,0.11905509,0.11905509 +0.2125,0.5375,0.08418465,0.16836932 +0.2125,0.5375,0.16836931,0.08418468 +0.2125,0.5625,0.075,0.07500005 +0.2125,0.5625,0.05303301,0.10606599 +0.2125,0.5625,0.10606603,0.053032994 +0.21249999,0.5625,0.094494075,0.094494104 +0.2125,0.5625,0.0668174,0.13363484 +0.2125,0.5625,0.1336348,0.0668174 +0.2125,0.5625,0.11905509,0.11905503 +0.2125,0.5625,0.08418465,0.1683693 +0.2125,0.5625,0.16836931,0.08418465 +0.2125,0.5875,0.075,0.07499999 +0.2125,0.5875,0.05303301,0.10606605 +0.2125,0.5875,0.10606603,0.053032935 +0.21249999,0.5875,0.094494075,0.094494045 +0.2125,0.5875,0.0668174,0.13363487 +0.2125,0.5875,0.1336348,0.06681734 +0.2125,0.5875,0.11905509,0.11905509 +0.2125,0.5875,0.08418465,0.1683693 +0.2125,0.5875,0.16836931,0.08418465 +0.2125,0.61249995,0.075,0.07499999 +0.2125,0.61249995,0.05303301,0.10606605 +0.2125,0.6125,0.10606603,0.053032994 +0.21249999,0.61249995,0.094494075,0.094494045 +0.2125,0.61249995,0.0668174,0.13363487 +0.2125,0.6125,0.1336348,0.0668174 +0.2125,0.61249995,0.11905509,0.11905509 +0.2125,0.6125,0.08418465,0.1683693 +0.2125,0.6125,0.16836931,0.08418465 +0.2125,0.63750005,0.075,0.07499999 +0.2125,0.63750005,0.05303301,0.10606605 +0.2125,0.6375,0.10606603,0.053032994 +0.21249999,0.63750005,0.094494075,0.094494045 +0.2125,0.63750005,0.0668174,0.13363487 +0.2125,0.6375,0.1336348,0.0668174 +0.2125,0.63750005,0.11905509,0.11905509 +0.2125,0.6375,0.08418465,0.1683693 +0.2125,0.6375,0.16836931,0.08418465 +0.2125,0.6625,0.075,0.07499999 +0.2125,0.6625,0.05303301,0.10606605 +0.2125,0.6625,0.10606603,0.053032935 +0.21249999,0.6625,0.094494075,0.094494045 +0.2125,0.6625,0.0668174,0.13363487 +0.2125,0.6625,0.1336348,0.06681734 +0.2125,0.6625,0.11905509,0.11905509 +0.2125,0.6625,0.08418465,0.1683693 +0.2125,0.6625,0.16836931,0.08418465 +0.2125,0.6875,0.075,0.07500005 +0.2125,0.6875,0.05303301,0.10606599 +0.2125,0.6875,0.10606603,0.053032994 +0.21249999,0.6875,0.094494075,0.094494104 +0.2125,0.6875,0.0668174,0.1336348 +0.2125,0.6875,0.1336348,0.0668174 +0.2125,0.6875,0.11905509,0.11905503 +0.2125,0.6875,0.08418465,0.1683693 +0.2125,0.6875,0.16836931,0.08418465 +0.2125,0.7125,0.075,0.07499999 +0.2125,0.7125,0.05303301,0.10606605 +0.2125,0.7125,0.10606603,0.053032935 +0.21249999,0.7125,0.094494075,0.094494045 +0.2125,0.7125,0.0668174,0.13363487 +0.2125,0.7125,0.1336348,0.06681734 +0.2125,0.7125,0.11905509,0.11905509 +0.2125,0.7125,0.08418465,0.1683693 +0.2125,0.7125,0.16836931,0.08418465 +0.2125,0.73749995,0.075,0.07499999 +0.2125,0.73749995,0.05303301,0.10606605 +0.2125,0.7375,0.10606603,0.053032994 +0.21249999,0.73749995,0.094494075,0.094494045 +0.2125,0.73749995,0.0668174,0.1336348 +0.2125,0.7375,0.1336348,0.0668174 +0.2125,0.73749995,0.11905509,0.11905509 +0.2125,0.7375,0.08418465,0.1683693 +0.2125,0.7375,0.16836931,0.08418465 +0.2125,0.76250005,0.075,0.07499999 +0.2125,0.7625,0.05303301,0.10606599 +0.2125,0.7625,0.10606603,0.053032994 +0.21249999,0.76250005,0.094494075,0.094494045 +0.2125,0.7625,0.0668174,0.1336348 +0.2125,0.7625,0.1336348,0.0668174 +0.2125,0.7625,0.11905509,0.11905503 +0.2125,0.7625,0.08418465,0.1683693 +0.2125,0.7625,0.16836931,0.08418465 +0.2125,0.7875,0.075,0.07499999 +0.2125,0.78749996,0.05303301,0.10606599 +0.2125,0.7875,0.10606603,0.053032994 +0.21249999,0.7875,0.094494075,0.094494045 +0.2125,0.78749996,0.0668174,0.1336348 +0.2125,0.7875,0.1336348,0.0668174 +0.2125,0.78749996,0.11905509,0.11905503 +0.2125,0.7875,0.08418465,0.1683693 +0.2125,0.7875,0.16836931,0.08418465 +0.2125,0.8125,0.075,0.07500005 +0.2125,0.8125,0.05303301,0.10606599 +0.2125,0.8125,0.10606603,0.053033054 +0.21249999,0.8125,0.094494075,0.094494104 +0.2125,0.8125,0.0668174,0.1336348 +0.2125,0.8125,0.1336348,0.06681746 +0.2125,0.8125,0.11905509,0.11905503 +0.2125,0.8125,0.08418465,0.1683693 +0.2125,0.8125,0.16836931,0.08418465 +0.2125,0.8375,0.075,0.07499999 +0.2125,0.8375,0.05303301,0.10606599 +0.2125,0.8375,0.10606603,0.053033054 +0.21249999,0.8375,0.094494075,0.094494045 +0.2125,0.8375,0.0668174,0.1336348 +0.2125,0.8375,0.1336348,0.06681746 +0.2125,0.8375,0.11905509,0.11905503 +0.2125,0.8375,0.08418465,0.1683693 +0.2125,0.8375,0.16836931,0.08418465 +0.2125,0.86249995,0.075,0.07499999 +0.2125,0.86249995,0.05303301,0.10606593 +0.2125,0.86249995,0.10606603,0.053033054 +0.21249999,0.86249995,0.094494075,0.094494045 +0.2125,0.86249995,0.0668174,0.1336348 +0.2125,0.86249995,0.1336348,0.06681746 +0.2125,0.86249995,0.11905509,0.11905497 +0.2125,0.8625,0.08418465,0.1683693 +0.2125,0.8625,0.16836931,0.08418465 +0.2125,0.88750005,0.075,0.07499999 +0.2125,0.88750005,0.05303301,0.10606593 +0.2125,0.88750005,0.10606603,0.053033054 +0.21249999,0.88750005,0.094494075,0.094494045 +0.2125,0.88750005,0.0668174,0.13363475 +0.2125,0.88750005,0.1336348,0.06681746 +0.2125,0.88750005,0.11905509,0.11905497 +0.2125,0.8875,0.08418465,0.1683693 +0.2125,0.8875,0.16836931,0.08418465 +0.2125,0.9125,0.075,0.07499999 +0.2125,0.9125,0.05303301,0.10606593 +0.2125,0.9125,0.10606603,0.053033054 +0.21249999,0.9125,0.094494075,0.094494045 +0.2125,0.9125,0.0668174,0.13363475 +0.2125,0.9125,0.1336348,0.06681746 +0.2125,0.9125,0.11905509,0.11905497 +0.2125,0.9125,0.08418465,0.1683693 +0.2125,0.9125,0.16836931,0.08418465 +0.2125,0.9375,0.075,0.07500005 +0.2125,0.9375,0.05303301,0.10606599 +0.2125,0.9375,0.10606603,0.053033113 +0.21249999,0.9375,0.094494075,0.094494104 +0.2125,0.9375,0.0668174,0.1336348 +0.2125,0.9375,0.1336348,0.06681752 +0.2125,0.9375,0.11905509,0.11905503 +0.2125,0.9375,0.08418465,0.1683693 +0.2125,0.9375,0.16836931,0.08418465 +0.2125,0.9625,0.075,0.07499999 +0.2125,0.9625,0.05303301,0.10606593 +0.2125,0.9625,0.10606603,0.053033054 +0.21249999,0.9625,0.094494075,0.094494045 +0.2125,0.9625,0.0668174,0.13363475 +0.2125,0.9625,0.1336348,0.06681746 +0.2125,0.9625,0.11905509,0.11905497 +0.2125,0.9625,0.08418465,0.1683693 +0.2125,0.9625,0.16836931,0.08418465 +0.2125,0.98749995,0.075,0.07499999 +0.2125,0.98749995,0.05303301,0.10606593 +0.2125,0.98749995,0.10606603,0.053033054 +0.21249999,0.98749995,0.094494075,0.094494045 +0.2125,0.98749995,0.0668174,0.13363475 +0.2125,0.98749995,0.1336348,0.06681746 +0.2125,0.98749995,0.11905509,0.11905497 +0.2125,0.98749995,0.08418465,0.16836923 +0.2125,0.98749995,0.16836931,0.08418459 +0.23750001,0.0125,0.075,0.075 +0.2375,0.012499997,0.053033024,0.10606602 +0.2375,0.012499999,0.10606602,0.05303301 +0.2375,0.012499999,0.094494075,0.09449408 +0.2375,0.012500001,0.06681743,0.1336348 +0.23750001,0.012499999,0.13363482,0.0668174 +0.2375,0.012500001,0.11905506,0.11905508 +0.23750001,0.012499999,0.08418466,0.1683693 +0.2375,0.012500002,0.16836932,0.084184654 +0.23750001,0.0375,0.075,0.075 +0.2375,0.037499998,0.053033024,0.10606601 +0.2375,0.0375,0.10606602,0.05303301 +0.2375,0.0375,0.094494075,0.094494075 +0.2375,0.0375,0.06681743,0.1336348 +0.23750001,0.0375,0.13363482,0.0668174 +0.2375,0.0375,0.11905506,0.11905508 +0.23750001,0.0375,0.08418466,0.16836931 +0.2375,0.0375,0.16836932,0.08418466 +0.23750001,0.0625,0.075,0.075 +0.2375,0.0625,0.053033024,0.10606602 +0.2375,0.0625,0.10606602,0.05303301 +0.2375,0.0625,0.094494075,0.094494075 +0.2375,0.0625,0.06681743,0.1336348 +0.23750001,0.0625,0.13363482,0.0668174 +0.2375,0.0625,0.11905506,0.11905508 +0.23750001,0.0625,0.08418466,0.16836932 +0.2375,0.0625,0.16836932,0.08418465 +0.23750001,0.0875,0.075,0.075 +0.2375,0.08749999,0.053033024,0.10606601 +0.2375,0.087500006,0.10606602,0.053033013 +0.2375,0.087500006,0.094494075,0.09449408 +0.2375,0.087500006,0.06681743,0.1336348 +0.23750001,0.0875,0.13363482,0.0668174 +0.2375,0.0875,0.11905506,0.11905508 +0.23750001,0.0875,0.08418466,0.16836931 +0.2375,0.087500006,0.16836932,0.084184654 +0.23750001,0.112500004,0.075,0.075 +0.2375,0.1125,0.053033024,0.10606601 +0.2375,0.112500004,0.10606602,0.05303301 +0.2375,0.1125,0.094494075,0.094494075 +0.2375,0.1125,0.06681743,0.1336348 +0.23750001,0.1125,0.13363482,0.0668174 +0.2375,0.1125,0.11905506,0.119055085 +0.23750001,0.112500004,0.08418466,0.16836931 +0.2375,0.1125,0.16836932,0.08418465 +0.23750001,0.1375,0.075,0.074999996 +0.2375,0.1375,0.053033024,0.10606602 +0.2375,0.1375,0.10606602,0.053033024 +0.2375,0.1375,0.094494075,0.09449408 +0.2375,0.1375,0.06681743,0.1336348 +0.23750001,0.1375,0.13363482,0.0668174 +0.2375,0.13749999,0.11905506,0.11905508 +0.23750001,0.1375,0.08418466,0.1683693 +0.2375,0.1375,0.16836932,0.084184654 +0.23750001,0.1625,0.075,0.075 +0.2375,0.16250001,0.053033024,0.106066026 +0.2375,0.1625,0.10606602,0.05303301 +0.2375,0.1625,0.094494075,0.094494075 +0.2375,0.1625,0.06681743,0.1336348 +0.23750001,0.1625,0.13363482,0.0668174 +0.2375,0.1625,0.11905506,0.11905508 +0.23750001,0.1625,0.08418466,0.1683693 +0.2375,0.1625,0.16836932,0.08418464 +0.23750001,0.1875,0.075,0.07499999 +0.2375,0.1875,0.053033024,0.10606603 +0.2375,0.1875,0.10606602,0.053033024 +0.2375,0.1875,0.094494075,0.09449406 +0.2375,0.1875,0.06681743,0.1336348 +0.23750001,0.1875,0.13363482,0.06681742 +0.2375,0.1875,0.11905506,0.11905509 +0.23750001,0.1875,0.08418466,0.16836931 +0.2375,0.1875,0.16836932,0.08418465 +0.23750001,0.2125,0.075,0.075 +0.2375,0.2125,0.053033024,0.10606603 +0.2375,0.2125,0.10606602,0.05303301 +0.2375,0.21249999,0.094494075,0.094494075 +0.2375,0.2125,0.06681743,0.1336348 +0.23750001,0.2125,0.13363482,0.0668174 +0.2375,0.2125,0.11905506,0.11905509 +0.23750001,0.2125,0.08418466,0.16836931 +0.2375,0.2125,0.16836932,0.08418465 +0.23750001,0.23750001,0.075,0.075 +0.2375,0.2375,0.053033024,0.10606602 +0.2375,0.2375,0.10606602,0.053033024 +0.2375,0.2375,0.094494075,0.094494075 +0.2375,0.23750001,0.06681743,0.13363482 +0.23750001,0.2375,0.13363482,0.06681743 +0.2375,0.2375,0.11905506,0.11905506 +0.23750001,0.2375,0.08418466,0.16836932 +0.2375,0.23750001,0.16836932,0.08418466 +0.23750001,0.2625,0.075,0.07500002 +0.2375,0.2625,0.053033024,0.10606603 +0.2375,0.2625,0.10606602,0.053033024 +0.2375,0.2625,0.094494075,0.094494075 +0.2375,0.2625,0.06681743,0.13363479 +0.23750001,0.2625,0.13363482,0.06681743 +0.2375,0.2625,0.11905506,0.11905508 +0.23750001,0.2625,0.08418466,0.1683693 +0.2375,0.2625,0.16836932,0.08418463 +0.23750001,0.2875,0.075,0.07499999 +0.2375,0.2875,0.053033024,0.10606603 +0.2375,0.28750002,0.10606602,0.053033024 +0.2375,0.2875,0.094494075,0.094494045 +0.2375,0.2875,0.06681743,0.1336348 +0.23750001,0.28750002,0.13363482,0.06681743 +0.2375,0.2875,0.11905506,0.11905508 +0.23750001,0.2875,0.08418466,0.1683693 +0.2375,0.2875,0.16836932,0.08418465 +0.23750001,0.3125,0.075,0.07499999 +0.2375,0.3125,0.053033024,0.10606605 +0.2375,0.3125,0.10606602,0.053032994 +0.2375,0.3125,0.094494075,0.094494045 +0.2375,0.3125,0.06681743,0.1336348 +0.23750001,0.3125,0.13363482,0.0668174 +0.2375,0.3125,0.11905506,0.11905509 +0.23750001,0.3125,0.08418466,0.1683693 +0.2375,0.3125,0.16836932,0.08418465 +0.23750001,0.3375,0.075,0.07499999 +0.2375,0.3375,0.053033024,0.10606605 +0.2375,0.33749998,0.10606602,0.053033024 +0.2375,0.3375,0.094494075,0.094494045 +0.2375,0.33750004,0.06681743,0.13363484 +0.23750001,0.33749998,0.13363482,0.06681743 +0.2375,0.3375,0.11905506,0.11905509 +0.23750001,0.3375,0.08418466,0.1683693 +0.2375,0.3375,0.16836932,0.08418465 +0.23750001,0.3625,0.075,0.07500002 +0.2375,0.3625,0.053033024,0.10606602 +0.2375,0.3625,0.10606602,0.053033024 +0.2375,0.3625,0.094494075,0.094494075 +0.2375,0.3625,0.06681743,0.1336348 +0.23750001,0.3625,0.13363482,0.06681743 +0.2375,0.3625,0.11905506,0.11905506 +0.23750001,0.3625,0.08418466,0.1683693 +0.2375,0.3625,0.16836932,0.08418465 +0.23750001,0.3875,0.075,0.07500002 +0.2375,0.3875,0.053033024,0.10606602 +0.2375,0.3875,0.10606602,0.053032994 +0.2375,0.3875,0.094494075,0.094494075 +0.2375,0.3875,0.06681743,0.13363484 +0.23750001,0.3875,0.13363482,0.0668174 +0.2375,0.3875,0.11905506,0.11905506 +0.23750001,0.3875,0.08418466,0.1683693 +0.2375,0.3875,0.16836932,0.08418465 +0.23750001,0.4125,0.075,0.07499999 +0.2375,0.4125,0.053033024,0.10606605 +0.2375,0.4125,0.10606602,0.053032994 +0.2375,0.4125,0.094494075,0.094494045 +0.2375,0.41250002,0.06681743,0.13363484 +0.23750001,0.4125,0.13363482,0.0668174 +0.2375,0.4125,0.11905506,0.11905509 +0.23750001,0.4125,0.08418466,0.1683693 +0.2375,0.4125,0.16836932,0.08418465 +0.23750001,0.4375,0.075,0.07499999 +0.2375,0.4375,0.053033024,0.10606605 +0.2375,0.4375,0.10606602,0.053032994 +0.2375,0.4375,0.094494075,0.094494045 +0.2375,0.4375,0.06681743,0.1336348 +0.23750001,0.4375,0.13363482,0.0668174 +0.2375,0.4375,0.11905506,0.11905509 +0.23750001,0.4375,0.08418466,0.1683693 +0.2375,0.4375,0.16836932,0.08418465 +0.23750001,0.4625,0.075,0.07499999 +0.2375,0.4625,0.053033024,0.10606605 +0.2375,0.46249998,0.10606602,0.053032964 +0.2375,0.4625,0.094494075,0.094494045 +0.2375,0.46250004,0.06681743,0.13363484 +0.23750001,0.46249998,0.13363482,0.06681737 +0.2375,0.4625,0.11905506,0.11905509 +0.23750001,0.46249998,0.08418466,0.16836926 +0.2375,0.46249998,0.16836932,0.08418462 +0.23750001,0.48749998,0.075,0.07499999 +0.2375,0.4875,0.053033024,0.10606602 +0.2375,0.4875,0.10606602,0.053032994 +0.2375,0.48749998,0.094494075,0.094494045 +0.2375,0.4875,0.06681743,0.13363484 +0.23750001,0.4875,0.13363482,0.0668174 +0.2375,0.4875,0.11905506,0.11905506 +0.23750001,0.4875,0.08418466,0.1683693 +0.2375,0.4875,0.16836932,0.08418465 +0.23750001,0.5125,0.075,0.07500002 +0.2375,0.51250005,0.053033024,0.10606605 +0.2375,0.5125,0.10606602,0.053032964 +0.2375,0.5125,0.094494075,0.094494075 +0.2375,0.51250005,0.06681743,0.13363487 +0.23750001,0.5125,0.13363482,0.06681737 +0.2375,0.51250005,0.11905506,0.11905509 +0.23750001,0.5125,0.08418466,0.1683693 +0.2375,0.5125,0.16836932,0.08418465 +0.23750001,0.5375,0.075,0.07499999 +0.2375,0.5375,0.053033024,0.10606605 +0.2375,0.5375,0.10606602,0.053032935 +0.2375,0.5375,0.094494075,0.094494045 +0.2375,0.5375,0.06681743,0.13363487 +0.23750001,0.5375,0.13363482,0.06681734 +0.2375,0.5375,0.11905506,0.11905509 +0.23750001,0.5375,0.08418466,0.16836932 +0.2375,0.5375,0.16836932,0.08418468 +0.23750001,0.5625,0.075,0.07500005 +0.2375,0.5625,0.053033024,0.10606599 +0.2375,0.5625,0.10606602,0.053032994 +0.2375,0.5625,0.094494075,0.094494104 +0.2375,0.5625,0.06681743,0.13363484 +0.23750001,0.5625,0.13363482,0.0668174 +0.2375,0.5625,0.11905506,0.11905503 +0.23750001,0.5625,0.08418466,0.1683693 +0.2375,0.5625,0.16836932,0.08418465 +0.23750001,0.5875,0.075,0.07499999 +0.2375,0.5875,0.053033024,0.10606605 +0.2375,0.5875,0.10606602,0.053032935 +0.2375,0.5875,0.094494075,0.094494045 +0.2375,0.5875,0.06681743,0.13363487 +0.23750001,0.5875,0.13363482,0.06681734 +0.2375,0.5875,0.11905506,0.11905509 +0.23750001,0.5875,0.08418466,0.1683693 +0.2375,0.5875,0.16836932,0.08418465 +0.23750001,0.61249995,0.075,0.07499999 +0.2375,0.61249995,0.053033024,0.10606605 +0.2375,0.6125,0.10606602,0.053032994 +0.2375,0.61249995,0.094494075,0.094494045 +0.2375,0.61249995,0.06681743,0.13363487 +0.23750001,0.6125,0.13363482,0.0668174 +0.2375,0.61249995,0.11905506,0.11905509 +0.23750001,0.6125,0.08418466,0.1683693 +0.2375,0.6125,0.16836932,0.08418465 +0.23750001,0.63750005,0.075,0.07499999 +0.2375,0.63750005,0.053033024,0.10606605 +0.2375,0.6375,0.10606602,0.053032994 +0.2375,0.63750005,0.094494075,0.094494045 +0.2375,0.63750005,0.06681743,0.13363487 +0.23750001,0.6375,0.13363482,0.0668174 +0.2375,0.63750005,0.11905506,0.11905509 +0.23750001,0.6375,0.08418466,0.1683693 +0.2375,0.6375,0.16836932,0.08418465 +0.23750001,0.6625,0.075,0.07499999 +0.2375,0.6625,0.053033024,0.10606605 +0.2375,0.6625,0.10606602,0.053032935 +0.2375,0.6625,0.094494075,0.094494045 +0.2375,0.6625,0.06681743,0.13363487 +0.23750001,0.6625,0.13363482,0.06681734 +0.2375,0.6625,0.11905506,0.11905509 +0.23750001,0.6625,0.08418466,0.1683693 +0.2375,0.6625,0.16836932,0.08418465 +0.23750001,0.6875,0.075,0.07500005 +0.2375,0.6875,0.053033024,0.10606599 +0.2375,0.6875,0.10606602,0.053032994 +0.2375,0.6875,0.094494075,0.094494104 +0.2375,0.6875,0.06681743,0.1336348 +0.23750001,0.6875,0.13363482,0.0668174 +0.2375,0.6875,0.11905506,0.11905503 +0.23750001,0.6875,0.08418466,0.1683693 +0.2375,0.6875,0.16836932,0.08418465 +0.23750001,0.7125,0.075,0.07499999 +0.2375,0.7125,0.053033024,0.10606605 +0.2375,0.7125,0.10606602,0.053032935 +0.2375,0.7125,0.094494075,0.094494045 +0.2375,0.7125,0.06681743,0.13363487 +0.23750001,0.7125,0.13363482,0.06681734 +0.2375,0.7125,0.11905506,0.11905509 +0.23750001,0.7125,0.08418466,0.1683693 +0.2375,0.7125,0.16836932,0.08418465 +0.23750001,0.73749995,0.075,0.07499999 +0.2375,0.73749995,0.053033024,0.10606605 +0.2375,0.7375,0.10606602,0.053032994 +0.2375,0.73749995,0.094494075,0.094494045 +0.2375,0.73749995,0.06681743,0.1336348 +0.23750001,0.7375,0.13363482,0.0668174 +0.2375,0.73749995,0.11905506,0.11905509 +0.23750001,0.7375,0.08418466,0.1683693 +0.2375,0.7375,0.16836932,0.08418465 +0.23750001,0.76250005,0.075,0.07499999 +0.2375,0.7625,0.053033024,0.10606599 +0.2375,0.7625,0.10606602,0.053032994 +0.2375,0.76250005,0.094494075,0.094494045 +0.2375,0.7625,0.06681743,0.1336348 +0.23750001,0.7625,0.13363482,0.0668174 +0.2375,0.7625,0.11905506,0.11905503 +0.23750001,0.7625,0.08418466,0.1683693 +0.2375,0.7625,0.16836932,0.08418465 +0.23750001,0.7875,0.075,0.07499999 +0.2375,0.78749996,0.053033024,0.10606599 +0.2375,0.7875,0.10606602,0.053032994 +0.2375,0.7875,0.094494075,0.094494045 +0.2375,0.78749996,0.06681743,0.1336348 +0.23750001,0.7875,0.13363482,0.0668174 +0.2375,0.78749996,0.11905506,0.11905503 +0.23750001,0.7875,0.08418466,0.1683693 +0.2375,0.7875,0.16836932,0.08418465 +0.23750001,0.8125,0.075,0.07500005 +0.2375,0.8125,0.053033024,0.10606599 +0.2375,0.8125,0.10606602,0.053033054 +0.2375,0.8125,0.094494075,0.094494104 +0.2375,0.8125,0.06681743,0.1336348 +0.23750001,0.8125,0.13363482,0.06681746 +0.2375,0.8125,0.11905506,0.11905503 +0.23750001,0.8125,0.08418466,0.1683693 +0.2375,0.8125,0.16836932,0.08418465 +0.23750001,0.8375,0.075,0.07499999 +0.2375,0.8375,0.053033024,0.10606599 +0.2375,0.8375,0.10606602,0.053033054 +0.2375,0.8375,0.094494075,0.094494045 +0.2375,0.8375,0.06681743,0.1336348 +0.23750001,0.8375,0.13363482,0.06681746 +0.2375,0.8375,0.11905506,0.11905503 +0.23750001,0.8375,0.08418466,0.1683693 +0.2375,0.8375,0.16836932,0.08418465 +0.23750001,0.86249995,0.075,0.07499999 +0.2375,0.86249995,0.053033024,0.10606593 +0.2375,0.86249995,0.10606602,0.053033054 +0.2375,0.86249995,0.094494075,0.094494045 +0.2375,0.86249995,0.06681743,0.1336348 +0.23750001,0.86249995,0.13363482,0.06681746 +0.2375,0.86249995,0.11905506,0.11905497 +0.23750001,0.8625,0.08418466,0.1683693 +0.2375,0.8625,0.16836932,0.08418465 +0.23750001,0.88750005,0.075,0.07499999 +0.2375,0.88750005,0.053033024,0.10606593 +0.2375,0.88750005,0.10606602,0.053033054 +0.2375,0.88750005,0.094494075,0.094494045 +0.2375,0.88750005,0.06681743,0.13363475 +0.23750001,0.88750005,0.13363482,0.06681746 +0.2375,0.88750005,0.11905506,0.11905497 +0.23750001,0.8875,0.08418466,0.1683693 +0.2375,0.8875,0.16836932,0.08418465 +0.23750001,0.9125,0.075,0.07499999 +0.2375,0.9125,0.053033024,0.10606593 +0.2375,0.9125,0.10606602,0.053033054 +0.2375,0.9125,0.094494075,0.094494045 +0.2375,0.9125,0.06681743,0.13363475 +0.23750001,0.9125,0.13363482,0.06681746 +0.2375,0.9125,0.11905506,0.11905497 +0.23750001,0.9125,0.08418466,0.1683693 +0.2375,0.9125,0.16836932,0.08418465 +0.23750001,0.9375,0.075,0.07500005 +0.2375,0.9375,0.053033024,0.10606599 +0.2375,0.9375,0.10606602,0.053033113 +0.2375,0.9375,0.094494075,0.094494104 +0.2375,0.9375,0.06681743,0.1336348 +0.23750001,0.9375,0.13363482,0.06681752 +0.2375,0.9375,0.11905506,0.11905503 +0.23750001,0.9375,0.08418466,0.1683693 +0.2375,0.9375,0.16836932,0.08418465 +0.23750001,0.9625,0.075,0.07499999 +0.2375,0.9625,0.053033024,0.10606593 +0.2375,0.9625,0.10606602,0.053033054 +0.2375,0.9625,0.094494075,0.094494045 +0.2375,0.9625,0.06681743,0.13363475 +0.23750001,0.9625,0.13363482,0.06681746 +0.2375,0.9625,0.11905506,0.11905497 +0.23750001,0.9625,0.08418466,0.1683693 +0.2375,0.9625,0.16836932,0.08418465 +0.23750001,0.98749995,0.075,0.07499999 +0.2375,0.98749995,0.053033024,0.10606593 +0.2375,0.98749995,0.10606602,0.053033054 +0.2375,0.98749995,0.094494075,0.094494045 +0.2375,0.98749995,0.06681743,0.13363475 +0.23750001,0.98749995,0.13363482,0.06681746 +0.2375,0.98749995,0.11905506,0.11905497 +0.23750001,0.98749995,0.08418466,0.16836923 +0.2375,0.98749995,0.16836932,0.08418459 +0.2625,0.0125,0.07500002,0.075 +0.2625,0.012499997,0.053033024,0.10606602 +0.2625,0.012499999,0.10606603,0.05303301 +0.2625,0.012499999,0.094494075,0.09449408 +0.2625,0.012500001,0.06681743,0.1336348 +0.2625,0.012499999,0.13363479,0.0668174 +0.2625,0.012500001,0.11905508,0.11905508 +0.2625,0.012499999,0.08418463,0.1683693 +0.2625,0.012500002,0.1683693,0.084184654 +0.2625,0.0375,0.07500002,0.075 +0.2625,0.037499998,0.053033024,0.10606601 +0.2625,0.0375,0.10606603,0.05303301 +0.2625,0.0375,0.094494075,0.094494075 +0.2625,0.0375,0.06681743,0.1336348 +0.2625,0.0375,0.13363479,0.0668174 +0.2625,0.0375,0.11905508,0.11905508 +0.2625,0.0375,0.08418463,0.16836931 +0.2625,0.0375,0.1683693,0.08418466 +0.2625,0.0625,0.07500002,0.075 +0.2625,0.0625,0.053033024,0.10606602 +0.2625,0.0625,0.10606603,0.05303301 +0.2625,0.0625,0.094494075,0.094494075 +0.2625,0.0625,0.06681743,0.1336348 +0.2625,0.0625,0.13363479,0.0668174 +0.2625,0.0625,0.11905508,0.11905508 +0.2625,0.0625,0.08418463,0.16836932 +0.2625,0.0625,0.1683693,0.08418465 +0.2625,0.0875,0.07500002,0.075 +0.2625,0.08749999,0.053033024,0.10606601 +0.2625,0.087500006,0.10606603,0.053033013 +0.2625,0.087500006,0.094494075,0.09449408 +0.2625,0.087500006,0.06681743,0.1336348 +0.2625,0.0875,0.13363479,0.0668174 +0.2625,0.0875,0.11905508,0.11905508 +0.2625,0.0875,0.08418463,0.16836931 +0.2625,0.087500006,0.1683693,0.084184654 +0.2625,0.112500004,0.07500002,0.075 +0.2625,0.1125,0.053033024,0.10606601 +0.2625,0.112500004,0.10606603,0.05303301 +0.2625,0.1125,0.094494075,0.094494075 +0.2625,0.1125,0.06681743,0.1336348 +0.2625,0.1125,0.13363479,0.0668174 +0.2625,0.1125,0.11905508,0.119055085 +0.2625,0.112500004,0.08418463,0.16836931 +0.2625,0.1125,0.1683693,0.08418465 +0.2625,0.1375,0.07500002,0.074999996 +0.2625,0.1375,0.053033024,0.10606602 +0.2625,0.1375,0.10606603,0.053033024 +0.2625,0.1375,0.094494075,0.09449408 +0.2625,0.1375,0.06681743,0.1336348 +0.2625,0.1375,0.13363479,0.0668174 +0.2625,0.13749999,0.11905508,0.11905508 +0.2625,0.1375,0.08418463,0.1683693 +0.2625,0.1375,0.1683693,0.084184654 +0.2625,0.1625,0.07500002,0.075 +0.2625,0.16250001,0.053033024,0.106066026 +0.2625,0.1625,0.10606603,0.05303301 +0.2625,0.1625,0.094494075,0.094494075 +0.2625,0.1625,0.06681743,0.1336348 +0.2625,0.1625,0.13363479,0.0668174 +0.2625,0.1625,0.11905508,0.11905508 +0.2625,0.1625,0.08418463,0.1683693 +0.2625,0.1625,0.1683693,0.08418464 +0.2625,0.1875,0.07500002,0.07499999 +0.2625,0.1875,0.053033024,0.10606603 +0.2625,0.1875,0.10606603,0.053033024 +0.2625,0.1875,0.094494075,0.09449406 +0.2625,0.1875,0.06681743,0.1336348 +0.2625,0.1875,0.13363479,0.06681742 +0.2625,0.1875,0.11905508,0.11905509 +0.2625,0.1875,0.08418463,0.16836931 +0.2625,0.1875,0.1683693,0.08418465 +0.2625,0.2125,0.07500002,0.075 +0.2625,0.2125,0.053033024,0.10606603 +0.2625,0.2125,0.10606603,0.05303301 +0.2625,0.21249999,0.094494075,0.094494075 +0.2625,0.2125,0.06681743,0.1336348 +0.2625,0.2125,0.13363479,0.0668174 +0.2625,0.2125,0.11905508,0.11905509 +0.2625,0.2125,0.08418463,0.16836931 +0.2625,0.2125,0.1683693,0.08418465 +0.2625,0.23750001,0.07500002,0.075 +0.2625,0.2375,0.053033024,0.10606602 +0.2625,0.2375,0.10606603,0.053033024 +0.2625,0.2375,0.094494075,0.094494075 +0.2625,0.23750001,0.06681743,0.13363482 +0.2625,0.2375,0.13363479,0.06681743 +0.2625,0.2375,0.11905508,0.11905506 +0.2625,0.2375,0.08418463,0.16836932 +0.2625,0.23750001,0.1683693,0.08418466 +0.2625,0.2625,0.07500002,0.07500002 +0.2625,0.2625,0.053033024,0.10606603 +0.2625,0.2625,0.10606603,0.053033024 +0.2625,0.2625,0.094494075,0.094494075 +0.2625,0.2625,0.06681743,0.13363479 +0.2625,0.2625,0.13363479,0.06681743 +0.2625,0.2625,0.11905508,0.11905508 +0.2625,0.2625,0.08418463,0.1683693 +0.2625,0.2625,0.1683693,0.08418463 +0.2625,0.2875,0.07500002,0.07499999 +0.2625,0.2875,0.053033024,0.10606603 +0.2625,0.28750002,0.10606603,0.053033024 +0.2625,0.2875,0.094494075,0.094494045 +0.2625,0.2875,0.06681743,0.1336348 +0.2625,0.28750002,0.13363479,0.06681743 +0.2625,0.2875,0.11905508,0.11905508 +0.2625,0.2875,0.08418463,0.1683693 +0.2625,0.2875,0.1683693,0.08418465 +0.2625,0.3125,0.07500002,0.07499999 +0.2625,0.3125,0.053033024,0.10606605 +0.2625,0.3125,0.10606603,0.053032994 +0.2625,0.3125,0.094494075,0.094494045 +0.2625,0.3125,0.06681743,0.1336348 +0.2625,0.3125,0.13363479,0.0668174 +0.2625,0.3125,0.11905508,0.11905509 +0.2625,0.3125,0.08418463,0.1683693 +0.2625,0.3125,0.1683693,0.08418465 +0.2625,0.3375,0.07500002,0.07499999 +0.2625,0.3375,0.053033024,0.10606605 +0.2625,0.33749998,0.10606603,0.053033024 +0.2625,0.3375,0.094494075,0.094494045 +0.2625,0.33750004,0.06681743,0.13363484 +0.2625,0.33749998,0.13363479,0.06681743 +0.2625,0.3375,0.11905508,0.11905509 +0.2625,0.3375,0.08418463,0.1683693 +0.2625,0.3375,0.1683693,0.08418465 +0.2625,0.3625,0.07500002,0.07500002 +0.2625,0.3625,0.053033024,0.10606602 +0.2625,0.3625,0.10606603,0.053033024 +0.2625,0.3625,0.094494075,0.094494075 +0.2625,0.3625,0.06681743,0.1336348 +0.2625,0.3625,0.13363479,0.06681743 +0.2625,0.3625,0.11905508,0.11905506 +0.2625,0.3625,0.08418463,0.1683693 +0.2625,0.3625,0.1683693,0.08418465 +0.2625,0.3875,0.07500002,0.07500002 +0.2625,0.3875,0.053033024,0.10606602 +0.2625,0.3875,0.10606603,0.053032994 +0.2625,0.3875,0.094494075,0.094494075 +0.2625,0.3875,0.06681743,0.13363484 +0.2625,0.3875,0.13363479,0.0668174 +0.2625,0.3875,0.11905508,0.11905506 +0.2625,0.3875,0.08418463,0.1683693 +0.2625,0.3875,0.1683693,0.08418465 +0.2625,0.4125,0.07500002,0.07499999 +0.2625,0.4125,0.053033024,0.10606605 +0.2625,0.4125,0.10606603,0.053032994 +0.2625,0.4125,0.094494075,0.094494045 +0.2625,0.41250002,0.06681743,0.13363484 +0.2625,0.4125,0.13363479,0.0668174 +0.2625,0.4125,0.11905508,0.11905509 +0.2625,0.4125,0.08418463,0.1683693 +0.2625,0.4125,0.1683693,0.08418465 +0.2625,0.4375,0.07500002,0.07499999 +0.2625,0.4375,0.053033024,0.10606605 +0.2625,0.4375,0.10606603,0.053032994 +0.2625,0.4375,0.094494075,0.094494045 +0.2625,0.4375,0.06681743,0.1336348 +0.2625,0.4375,0.13363479,0.0668174 +0.2625,0.4375,0.11905508,0.11905509 +0.2625,0.4375,0.08418463,0.1683693 +0.2625,0.4375,0.1683693,0.08418465 +0.2625,0.4625,0.07500002,0.07499999 +0.2625,0.4625,0.053033024,0.10606605 +0.2625,0.46249998,0.10606603,0.053032964 +0.2625,0.4625,0.094494075,0.094494045 +0.2625,0.46250004,0.06681743,0.13363484 +0.2625,0.46249998,0.13363479,0.06681737 +0.2625,0.4625,0.11905508,0.11905509 +0.2625,0.46249998,0.08418463,0.16836926 +0.2625,0.46249998,0.1683693,0.08418462 +0.2625,0.48749998,0.07500002,0.07499999 +0.2625,0.4875,0.053033024,0.10606602 +0.2625,0.4875,0.10606603,0.053032994 +0.2625,0.48749998,0.094494075,0.094494045 +0.2625,0.4875,0.06681743,0.13363484 +0.2625,0.4875,0.13363479,0.0668174 +0.2625,0.4875,0.11905508,0.11905506 +0.2625,0.4875,0.08418463,0.1683693 +0.2625,0.4875,0.1683693,0.08418465 +0.2625,0.5125,0.07500002,0.07500002 +0.2625,0.51250005,0.053033024,0.10606605 +0.2625,0.5125,0.10606603,0.053032964 +0.2625,0.5125,0.094494075,0.094494075 +0.2625,0.51250005,0.06681743,0.13363487 +0.2625,0.5125,0.13363479,0.06681737 +0.2625,0.51250005,0.11905508,0.11905509 +0.2625,0.5125,0.08418463,0.1683693 +0.2625,0.5125,0.1683693,0.08418465 +0.2625,0.5375,0.07500002,0.07499999 +0.2625,0.5375,0.053033024,0.10606605 +0.2625,0.5375,0.10606603,0.053032935 +0.2625,0.5375,0.094494075,0.094494045 +0.2625,0.5375,0.06681743,0.13363487 +0.2625,0.5375,0.13363479,0.06681734 +0.2625,0.5375,0.11905508,0.11905509 +0.2625,0.5375,0.08418463,0.16836932 +0.2625,0.5375,0.1683693,0.08418468 +0.2625,0.5625,0.07500002,0.07500005 +0.2625,0.5625,0.053033024,0.10606599 +0.2625,0.5625,0.10606603,0.053032994 +0.2625,0.5625,0.094494075,0.094494104 +0.2625,0.5625,0.06681743,0.13363484 +0.2625,0.5625,0.13363479,0.0668174 +0.2625,0.5625,0.11905508,0.11905503 +0.2625,0.5625,0.08418463,0.1683693 +0.2625,0.5625,0.1683693,0.08418465 +0.2625,0.5875,0.07500002,0.07499999 +0.2625,0.5875,0.053033024,0.10606605 +0.2625,0.5875,0.10606603,0.053032935 +0.2625,0.5875,0.094494075,0.094494045 +0.2625,0.5875,0.06681743,0.13363487 +0.2625,0.5875,0.13363479,0.06681734 +0.2625,0.5875,0.11905508,0.11905509 +0.2625,0.5875,0.08418463,0.1683693 +0.2625,0.5875,0.1683693,0.08418465 +0.2625,0.61249995,0.07500002,0.07499999 +0.2625,0.61249995,0.053033024,0.10606605 +0.2625,0.6125,0.10606603,0.053032994 +0.2625,0.61249995,0.094494075,0.094494045 +0.2625,0.61249995,0.06681743,0.13363487 +0.2625,0.6125,0.13363479,0.0668174 +0.2625,0.61249995,0.11905508,0.11905509 +0.2625,0.6125,0.08418463,0.1683693 +0.2625,0.6125,0.1683693,0.08418465 +0.2625,0.63750005,0.07500002,0.07499999 +0.2625,0.63750005,0.053033024,0.10606605 +0.2625,0.6375,0.10606603,0.053032994 +0.2625,0.63750005,0.094494075,0.094494045 +0.2625,0.63750005,0.06681743,0.13363487 +0.2625,0.6375,0.13363479,0.0668174 +0.2625,0.63750005,0.11905508,0.11905509 +0.2625,0.6375,0.08418463,0.1683693 +0.2625,0.6375,0.1683693,0.08418465 +0.2625,0.6625,0.07500002,0.07499999 +0.2625,0.6625,0.053033024,0.10606605 +0.2625,0.6625,0.10606603,0.053032935 +0.2625,0.6625,0.094494075,0.094494045 +0.2625,0.6625,0.06681743,0.13363487 +0.2625,0.6625,0.13363479,0.06681734 +0.2625,0.6625,0.11905508,0.11905509 +0.2625,0.6625,0.08418463,0.1683693 +0.2625,0.6625,0.1683693,0.08418465 +0.2625,0.6875,0.07500002,0.07500005 +0.2625,0.6875,0.053033024,0.10606599 +0.2625,0.6875,0.10606603,0.053032994 +0.2625,0.6875,0.094494075,0.094494104 +0.2625,0.6875,0.06681743,0.1336348 +0.2625,0.6875,0.13363479,0.0668174 +0.2625,0.6875,0.11905508,0.11905503 +0.2625,0.6875,0.08418463,0.1683693 +0.2625,0.6875,0.1683693,0.08418465 +0.2625,0.7125,0.07500002,0.07499999 +0.2625,0.7125,0.053033024,0.10606605 +0.2625,0.7125,0.10606603,0.053032935 +0.2625,0.7125,0.094494075,0.094494045 +0.2625,0.7125,0.06681743,0.13363487 +0.2625,0.7125,0.13363479,0.06681734 +0.2625,0.7125,0.11905508,0.11905509 +0.2625,0.7125,0.08418463,0.1683693 +0.2625,0.7125,0.1683693,0.08418465 +0.2625,0.73749995,0.07500002,0.07499999 +0.2625,0.73749995,0.053033024,0.10606605 +0.2625,0.7375,0.10606603,0.053032994 +0.2625,0.73749995,0.094494075,0.094494045 +0.2625,0.73749995,0.06681743,0.1336348 +0.2625,0.7375,0.13363479,0.0668174 +0.2625,0.73749995,0.11905508,0.11905509 +0.2625,0.7375,0.08418463,0.1683693 +0.2625,0.7375,0.1683693,0.08418465 +0.2625,0.76250005,0.07500002,0.07499999 +0.2625,0.7625,0.053033024,0.10606599 +0.2625,0.7625,0.10606603,0.053032994 +0.2625,0.76250005,0.094494075,0.094494045 +0.2625,0.7625,0.06681743,0.1336348 +0.2625,0.7625,0.13363479,0.0668174 +0.2625,0.7625,0.11905508,0.11905503 +0.2625,0.7625,0.08418463,0.1683693 +0.2625,0.7625,0.1683693,0.08418465 +0.2625,0.7875,0.07500002,0.07499999 +0.2625,0.78749996,0.053033024,0.10606599 +0.2625,0.7875,0.10606603,0.053032994 +0.2625,0.7875,0.094494075,0.094494045 +0.2625,0.78749996,0.06681743,0.1336348 +0.2625,0.7875,0.13363479,0.0668174 +0.2625,0.78749996,0.11905508,0.11905503 +0.2625,0.7875,0.08418463,0.1683693 +0.2625,0.7875,0.1683693,0.08418465 +0.2625,0.8125,0.07500002,0.07500005 +0.2625,0.8125,0.053033024,0.10606599 +0.2625,0.8125,0.10606603,0.053033054 +0.2625,0.8125,0.094494075,0.094494104 +0.2625,0.8125,0.06681743,0.1336348 +0.2625,0.8125,0.13363479,0.06681746 +0.2625,0.8125,0.11905508,0.11905503 +0.2625,0.8125,0.08418463,0.1683693 +0.2625,0.8125,0.1683693,0.08418465 +0.2625,0.8375,0.07500002,0.07499999 +0.2625,0.8375,0.053033024,0.10606599 +0.2625,0.8375,0.10606603,0.053033054 +0.2625,0.8375,0.094494075,0.094494045 +0.2625,0.8375,0.06681743,0.1336348 +0.2625,0.8375,0.13363479,0.06681746 +0.2625,0.8375,0.11905508,0.11905503 +0.2625,0.8375,0.08418463,0.1683693 +0.2625,0.8375,0.1683693,0.08418465 +0.2625,0.86249995,0.07500002,0.07499999 +0.2625,0.86249995,0.053033024,0.10606593 +0.2625,0.86249995,0.10606603,0.053033054 +0.2625,0.86249995,0.094494075,0.094494045 +0.2625,0.86249995,0.06681743,0.1336348 +0.2625,0.86249995,0.13363479,0.06681746 +0.2625,0.86249995,0.11905508,0.11905497 +0.2625,0.8625,0.08418463,0.1683693 +0.2625,0.8625,0.1683693,0.08418465 +0.2625,0.88750005,0.07500002,0.07499999 +0.2625,0.88750005,0.053033024,0.10606593 +0.2625,0.88750005,0.10606603,0.053033054 +0.2625,0.88750005,0.094494075,0.094494045 +0.2625,0.88750005,0.06681743,0.13363475 +0.2625,0.88750005,0.13363479,0.06681746 +0.2625,0.88750005,0.11905508,0.11905497 +0.2625,0.8875,0.08418463,0.1683693 +0.2625,0.8875,0.1683693,0.08418465 +0.2625,0.9125,0.07500002,0.07499999 +0.2625,0.9125,0.053033024,0.10606593 +0.2625,0.9125,0.10606603,0.053033054 +0.2625,0.9125,0.094494075,0.094494045 +0.2625,0.9125,0.06681743,0.13363475 +0.2625,0.9125,0.13363479,0.06681746 +0.2625,0.9125,0.11905508,0.11905497 +0.2625,0.9125,0.08418463,0.1683693 +0.2625,0.9125,0.1683693,0.08418465 +0.2625,0.9375,0.07500002,0.07500005 +0.2625,0.9375,0.053033024,0.10606599 +0.2625,0.9375,0.10606603,0.053033113 +0.2625,0.9375,0.094494075,0.094494104 +0.2625,0.9375,0.06681743,0.1336348 +0.2625,0.9375,0.13363479,0.06681752 +0.2625,0.9375,0.11905508,0.11905503 +0.2625,0.9375,0.08418463,0.1683693 +0.2625,0.9375,0.1683693,0.08418465 +0.2625,0.9625,0.07500002,0.07499999 +0.2625,0.9625,0.053033024,0.10606593 +0.2625,0.9625,0.10606603,0.053033054 +0.2625,0.9625,0.094494075,0.094494045 +0.2625,0.9625,0.06681743,0.13363475 +0.2625,0.9625,0.13363479,0.06681746 +0.2625,0.9625,0.11905508,0.11905497 +0.2625,0.9625,0.08418463,0.1683693 +0.2625,0.9625,0.1683693,0.08418465 +0.2625,0.98749995,0.07500002,0.07499999 +0.2625,0.98749995,0.053033024,0.10606593 +0.2625,0.98749995,0.10606603,0.053033054 +0.2625,0.98749995,0.094494075,0.094494045 +0.2625,0.98749995,0.06681743,0.13363475 +0.2625,0.98749995,0.13363479,0.06681746 +0.2625,0.98749995,0.11905508,0.11905497 +0.2625,0.98749995,0.08418463,0.16836923 +0.2625,0.98749995,0.1683693,0.08418459 +0.2875,0.0125,0.07499999,0.075 +0.28750002,0.012499997,0.053033024,0.10606602 +0.2875,0.012499999,0.10606603,0.05303301 +0.2875,0.012499999,0.094494045,0.09449408 +0.28750002,0.012500001,0.06681743,0.1336348 +0.2875,0.012499999,0.1336348,0.0668174 +0.2875,0.012500001,0.11905508,0.11905508 +0.2875,0.012499999,0.08418465,0.1683693 +0.2875,0.012500002,0.1683693,0.084184654 +0.2875,0.0375,0.07499999,0.075 +0.28750002,0.037499998,0.053033024,0.10606601 +0.2875,0.0375,0.10606603,0.05303301 +0.2875,0.0375,0.094494045,0.094494075 +0.28750002,0.0375,0.06681743,0.1336348 +0.2875,0.0375,0.1336348,0.0668174 +0.2875,0.0375,0.11905508,0.11905508 +0.2875,0.0375,0.08418465,0.16836931 +0.2875,0.0375,0.1683693,0.08418466 +0.2875,0.0625,0.07499999,0.075 +0.28750002,0.0625,0.053033024,0.10606602 +0.2875,0.0625,0.10606603,0.05303301 +0.2875,0.0625,0.094494045,0.094494075 +0.28750002,0.0625,0.06681743,0.1336348 +0.2875,0.0625,0.1336348,0.0668174 +0.2875,0.0625,0.11905508,0.11905508 +0.2875,0.0625,0.08418465,0.16836932 +0.2875,0.0625,0.1683693,0.08418465 +0.2875,0.0875,0.07499999,0.075 +0.28750002,0.08749999,0.053033024,0.10606601 +0.2875,0.087500006,0.10606603,0.053033013 +0.2875,0.087500006,0.094494045,0.09449408 +0.28750002,0.087500006,0.06681743,0.1336348 +0.2875,0.0875,0.1336348,0.0668174 +0.2875,0.0875,0.11905508,0.11905508 +0.2875,0.0875,0.08418465,0.16836931 +0.2875,0.087500006,0.1683693,0.084184654 +0.2875,0.112500004,0.07499999,0.075 +0.28750002,0.1125,0.053033024,0.10606601 +0.2875,0.112500004,0.10606603,0.05303301 +0.2875,0.1125,0.094494045,0.094494075 +0.28750002,0.1125,0.06681743,0.1336348 +0.2875,0.1125,0.1336348,0.0668174 +0.2875,0.1125,0.11905508,0.119055085 +0.2875,0.112500004,0.08418465,0.16836931 +0.2875,0.1125,0.1683693,0.08418465 +0.2875,0.1375,0.07499999,0.074999996 +0.28750002,0.1375,0.053033024,0.10606602 +0.2875,0.1375,0.10606603,0.053033024 +0.2875,0.1375,0.094494045,0.09449408 +0.28750002,0.1375,0.06681743,0.1336348 +0.2875,0.1375,0.1336348,0.0668174 +0.2875,0.13749999,0.11905508,0.11905508 +0.2875,0.1375,0.08418465,0.1683693 +0.2875,0.1375,0.1683693,0.084184654 +0.2875,0.1625,0.07499999,0.075 +0.28750002,0.16250001,0.053033024,0.106066026 +0.2875,0.1625,0.10606603,0.05303301 +0.2875,0.1625,0.094494045,0.094494075 +0.28750002,0.1625,0.06681743,0.1336348 +0.2875,0.1625,0.1336348,0.0668174 +0.2875,0.1625,0.11905508,0.11905508 +0.2875,0.1625,0.08418465,0.1683693 +0.2875,0.1625,0.1683693,0.08418464 +0.2875,0.1875,0.07499999,0.07499999 +0.28750002,0.1875,0.053033024,0.10606603 +0.2875,0.1875,0.10606603,0.053033024 +0.2875,0.1875,0.094494045,0.09449406 +0.28750002,0.1875,0.06681743,0.1336348 +0.2875,0.1875,0.1336348,0.06681742 +0.2875,0.1875,0.11905508,0.11905509 +0.2875,0.1875,0.08418465,0.16836931 +0.2875,0.1875,0.1683693,0.08418465 +0.2875,0.2125,0.07499999,0.075 +0.28750002,0.2125,0.053033024,0.10606603 +0.2875,0.2125,0.10606603,0.05303301 +0.2875,0.21249999,0.094494045,0.094494075 +0.28750002,0.2125,0.06681743,0.1336348 +0.2875,0.2125,0.1336348,0.0668174 +0.2875,0.2125,0.11905508,0.11905509 +0.2875,0.2125,0.08418465,0.16836931 +0.2875,0.2125,0.1683693,0.08418465 +0.2875,0.23750001,0.07499999,0.075 +0.28750002,0.2375,0.053033024,0.10606602 +0.2875,0.2375,0.10606603,0.053033024 +0.2875,0.2375,0.094494045,0.094494075 +0.28750002,0.23750001,0.06681743,0.13363482 +0.2875,0.2375,0.1336348,0.06681743 +0.2875,0.2375,0.11905508,0.11905506 +0.2875,0.2375,0.08418465,0.16836932 +0.2875,0.23750001,0.1683693,0.08418466 +0.2875,0.2625,0.07499999,0.07500002 +0.28750002,0.2625,0.053033024,0.10606603 +0.2875,0.2625,0.10606603,0.053033024 +0.2875,0.2625,0.094494045,0.094494075 +0.28750002,0.2625,0.06681743,0.13363479 +0.2875,0.2625,0.1336348,0.06681743 +0.2875,0.2625,0.11905508,0.11905508 +0.2875,0.2625,0.08418465,0.1683693 +0.2875,0.2625,0.1683693,0.08418463 +0.2875,0.2875,0.07499999,0.07499999 +0.28750002,0.2875,0.053033024,0.10606603 +0.2875,0.28750002,0.10606603,0.053033024 +0.2875,0.2875,0.094494045,0.094494045 +0.28750002,0.2875,0.06681743,0.1336348 +0.2875,0.28750002,0.1336348,0.06681743 +0.2875,0.2875,0.11905508,0.11905508 +0.2875,0.2875,0.08418465,0.1683693 +0.2875,0.2875,0.1683693,0.08418465 +0.2875,0.3125,0.07499999,0.07499999 +0.28750002,0.3125,0.053033024,0.10606605 +0.2875,0.3125,0.10606603,0.053032994 +0.2875,0.3125,0.094494045,0.094494045 +0.28750002,0.3125,0.06681743,0.1336348 +0.2875,0.3125,0.1336348,0.0668174 +0.2875,0.3125,0.11905508,0.11905509 +0.2875,0.3125,0.08418465,0.1683693 +0.2875,0.3125,0.1683693,0.08418465 +0.2875,0.3375,0.07499999,0.07499999 +0.28750002,0.3375,0.053033024,0.10606605 +0.2875,0.33749998,0.10606603,0.053033024 +0.2875,0.3375,0.094494045,0.094494045 +0.28750002,0.33750004,0.06681743,0.13363484 +0.2875,0.33749998,0.1336348,0.06681743 +0.2875,0.3375,0.11905508,0.11905509 +0.2875,0.3375,0.08418465,0.1683693 +0.2875,0.3375,0.1683693,0.08418465 +0.2875,0.3625,0.07499999,0.07500002 +0.28750002,0.3625,0.053033024,0.10606602 +0.2875,0.3625,0.10606603,0.053033024 +0.2875,0.3625,0.094494045,0.094494075 +0.28750002,0.3625,0.06681743,0.1336348 +0.2875,0.3625,0.1336348,0.06681743 +0.2875,0.3625,0.11905508,0.11905506 +0.2875,0.3625,0.08418465,0.1683693 +0.2875,0.3625,0.1683693,0.08418465 +0.2875,0.3875,0.07499999,0.07500002 +0.28750002,0.3875,0.053033024,0.10606602 +0.2875,0.3875,0.10606603,0.053032994 +0.2875,0.3875,0.094494045,0.094494075 +0.28750002,0.3875,0.06681743,0.13363484 +0.2875,0.3875,0.1336348,0.0668174 +0.2875,0.3875,0.11905508,0.11905506 +0.2875,0.3875,0.08418465,0.1683693 +0.2875,0.3875,0.1683693,0.08418465 +0.2875,0.4125,0.07499999,0.07499999 +0.28750002,0.4125,0.053033024,0.10606605 +0.2875,0.4125,0.10606603,0.053032994 +0.2875,0.4125,0.094494045,0.094494045 +0.28750002,0.41250002,0.06681743,0.13363484 +0.2875,0.4125,0.1336348,0.0668174 +0.2875,0.4125,0.11905508,0.11905509 +0.2875,0.4125,0.08418465,0.1683693 +0.2875,0.4125,0.1683693,0.08418465 +0.2875,0.4375,0.07499999,0.07499999 +0.28750002,0.4375,0.053033024,0.10606605 +0.2875,0.4375,0.10606603,0.053032994 +0.2875,0.4375,0.094494045,0.094494045 +0.28750002,0.4375,0.06681743,0.1336348 +0.2875,0.4375,0.1336348,0.0668174 +0.2875,0.4375,0.11905508,0.11905509 +0.2875,0.4375,0.08418465,0.1683693 +0.2875,0.4375,0.1683693,0.08418465 +0.2875,0.4625,0.07499999,0.07499999 +0.28750002,0.4625,0.053033024,0.10606605 +0.2875,0.46249998,0.10606603,0.053032964 +0.2875,0.4625,0.094494045,0.094494045 +0.28750002,0.46250004,0.06681743,0.13363484 +0.2875,0.46249998,0.1336348,0.06681737 +0.2875,0.4625,0.11905508,0.11905509 +0.2875,0.46249998,0.08418465,0.16836926 +0.2875,0.46249998,0.1683693,0.08418462 +0.2875,0.48749998,0.07499999,0.07499999 +0.28750002,0.4875,0.053033024,0.10606602 +0.2875,0.4875,0.10606603,0.053032994 +0.2875,0.48749998,0.094494045,0.094494045 +0.28750002,0.4875,0.06681743,0.13363484 +0.2875,0.4875,0.1336348,0.0668174 +0.2875,0.4875,0.11905508,0.11905506 +0.2875,0.4875,0.08418465,0.1683693 +0.2875,0.4875,0.1683693,0.08418465 +0.2875,0.5125,0.07499999,0.07500002 +0.28750002,0.51250005,0.053033024,0.10606605 +0.2875,0.5125,0.10606603,0.053032964 +0.2875,0.5125,0.094494045,0.094494075 +0.28750002,0.51250005,0.06681743,0.13363487 +0.2875,0.5125,0.1336348,0.06681737 +0.2875,0.51250005,0.11905508,0.11905509 +0.2875,0.5125,0.08418465,0.1683693 +0.2875,0.5125,0.1683693,0.08418465 +0.2875,0.5375,0.07499999,0.07499999 +0.28750002,0.5375,0.053033024,0.10606605 +0.2875,0.5375,0.10606603,0.053032935 +0.2875,0.5375,0.094494045,0.094494045 +0.28750002,0.5375,0.06681743,0.13363487 +0.2875,0.5375,0.1336348,0.06681734 +0.2875,0.5375,0.11905508,0.11905509 +0.2875,0.5375,0.08418465,0.16836932 +0.2875,0.5375,0.1683693,0.08418468 +0.2875,0.5625,0.07499999,0.07500005 +0.28750002,0.5625,0.053033024,0.10606599 +0.2875,0.5625,0.10606603,0.053032994 +0.2875,0.5625,0.094494045,0.094494104 +0.28750002,0.5625,0.06681743,0.13363484 +0.2875,0.5625,0.1336348,0.0668174 +0.2875,0.5625,0.11905508,0.11905503 +0.2875,0.5625,0.08418465,0.1683693 +0.2875,0.5625,0.1683693,0.08418465 +0.2875,0.5875,0.07499999,0.07499999 +0.28750002,0.5875,0.053033024,0.10606605 +0.2875,0.5875,0.10606603,0.053032935 +0.2875,0.5875,0.094494045,0.094494045 +0.28750002,0.5875,0.06681743,0.13363487 +0.2875,0.5875,0.1336348,0.06681734 +0.2875,0.5875,0.11905508,0.11905509 +0.2875,0.5875,0.08418465,0.1683693 +0.2875,0.5875,0.1683693,0.08418465 +0.2875,0.61249995,0.07499999,0.07499999 +0.28750002,0.61249995,0.053033024,0.10606605 +0.2875,0.6125,0.10606603,0.053032994 +0.2875,0.61249995,0.094494045,0.094494045 +0.28750002,0.61249995,0.06681743,0.13363487 +0.2875,0.6125,0.1336348,0.0668174 +0.2875,0.61249995,0.11905508,0.11905509 +0.2875,0.6125,0.08418465,0.1683693 +0.2875,0.6125,0.1683693,0.08418465 +0.2875,0.63750005,0.07499999,0.07499999 +0.28750002,0.63750005,0.053033024,0.10606605 +0.2875,0.6375,0.10606603,0.053032994 +0.2875,0.63750005,0.094494045,0.094494045 +0.28750002,0.63750005,0.06681743,0.13363487 +0.2875,0.6375,0.1336348,0.0668174 +0.2875,0.63750005,0.11905508,0.11905509 +0.2875,0.6375,0.08418465,0.1683693 +0.2875,0.6375,0.1683693,0.08418465 +0.2875,0.6625,0.07499999,0.07499999 +0.28750002,0.6625,0.053033024,0.10606605 +0.2875,0.6625,0.10606603,0.053032935 +0.2875,0.6625,0.094494045,0.094494045 +0.28750002,0.6625,0.06681743,0.13363487 +0.2875,0.6625,0.1336348,0.06681734 +0.2875,0.6625,0.11905508,0.11905509 +0.2875,0.6625,0.08418465,0.1683693 +0.2875,0.6625,0.1683693,0.08418465 +0.2875,0.6875,0.07499999,0.07500005 +0.28750002,0.6875,0.053033024,0.10606599 +0.2875,0.6875,0.10606603,0.053032994 +0.2875,0.6875,0.094494045,0.094494104 +0.28750002,0.6875,0.06681743,0.1336348 +0.2875,0.6875,0.1336348,0.0668174 +0.2875,0.6875,0.11905508,0.11905503 +0.2875,0.6875,0.08418465,0.1683693 +0.2875,0.6875,0.1683693,0.08418465 +0.2875,0.7125,0.07499999,0.07499999 +0.28750002,0.7125,0.053033024,0.10606605 +0.2875,0.7125,0.10606603,0.053032935 +0.2875,0.7125,0.094494045,0.094494045 +0.28750002,0.7125,0.06681743,0.13363487 +0.2875,0.7125,0.1336348,0.06681734 +0.2875,0.7125,0.11905508,0.11905509 +0.2875,0.7125,0.08418465,0.1683693 +0.2875,0.7125,0.1683693,0.08418465 +0.2875,0.73749995,0.07499999,0.07499999 +0.28750002,0.73749995,0.053033024,0.10606605 +0.2875,0.7375,0.10606603,0.053032994 +0.2875,0.73749995,0.094494045,0.094494045 +0.28750002,0.73749995,0.06681743,0.1336348 +0.2875,0.7375,0.1336348,0.0668174 +0.2875,0.73749995,0.11905508,0.11905509 +0.2875,0.7375,0.08418465,0.1683693 +0.2875,0.7375,0.1683693,0.08418465 +0.2875,0.76250005,0.07499999,0.07499999 +0.28750002,0.7625,0.053033024,0.10606599 +0.2875,0.7625,0.10606603,0.053032994 +0.2875,0.76250005,0.094494045,0.094494045 +0.28750002,0.7625,0.06681743,0.1336348 +0.2875,0.7625,0.1336348,0.0668174 +0.2875,0.7625,0.11905508,0.11905503 +0.2875,0.7625,0.08418465,0.1683693 +0.2875,0.7625,0.1683693,0.08418465 +0.2875,0.7875,0.07499999,0.07499999 +0.28750002,0.78749996,0.053033024,0.10606599 +0.2875,0.7875,0.10606603,0.053032994 +0.2875,0.7875,0.094494045,0.094494045 +0.28750002,0.78749996,0.06681743,0.1336348 +0.2875,0.7875,0.1336348,0.0668174 +0.2875,0.78749996,0.11905508,0.11905503 +0.2875,0.7875,0.08418465,0.1683693 +0.2875,0.7875,0.1683693,0.08418465 +0.2875,0.8125,0.07499999,0.07500005 +0.28750002,0.8125,0.053033024,0.10606599 +0.2875,0.8125,0.10606603,0.053033054 +0.2875,0.8125,0.094494045,0.094494104 +0.28750002,0.8125,0.06681743,0.1336348 +0.2875,0.8125,0.1336348,0.06681746 +0.2875,0.8125,0.11905508,0.11905503 +0.2875,0.8125,0.08418465,0.1683693 +0.2875,0.8125,0.1683693,0.08418465 +0.2875,0.8375,0.07499999,0.07499999 +0.28750002,0.8375,0.053033024,0.10606599 +0.2875,0.8375,0.10606603,0.053033054 +0.2875,0.8375,0.094494045,0.094494045 +0.28750002,0.8375,0.06681743,0.1336348 +0.2875,0.8375,0.1336348,0.06681746 +0.2875,0.8375,0.11905508,0.11905503 +0.2875,0.8375,0.08418465,0.1683693 +0.2875,0.8375,0.1683693,0.08418465 +0.2875,0.86249995,0.07499999,0.07499999 +0.28750002,0.86249995,0.053033024,0.10606593 +0.2875,0.86249995,0.10606603,0.053033054 +0.2875,0.86249995,0.094494045,0.094494045 +0.28750002,0.86249995,0.06681743,0.1336348 +0.2875,0.86249995,0.1336348,0.06681746 +0.2875,0.86249995,0.11905508,0.11905497 +0.2875,0.8625,0.08418465,0.1683693 +0.2875,0.8625,0.1683693,0.08418465 +0.2875,0.88750005,0.07499999,0.07499999 +0.28750002,0.88750005,0.053033024,0.10606593 +0.2875,0.88750005,0.10606603,0.053033054 +0.2875,0.88750005,0.094494045,0.094494045 +0.28750002,0.88750005,0.06681743,0.13363475 +0.2875,0.88750005,0.1336348,0.06681746 +0.2875,0.88750005,0.11905508,0.11905497 +0.2875,0.8875,0.08418465,0.1683693 +0.2875,0.8875,0.1683693,0.08418465 +0.2875,0.9125,0.07499999,0.07499999 +0.28750002,0.9125,0.053033024,0.10606593 +0.2875,0.9125,0.10606603,0.053033054 +0.2875,0.9125,0.094494045,0.094494045 +0.28750002,0.9125,0.06681743,0.13363475 +0.2875,0.9125,0.1336348,0.06681746 +0.2875,0.9125,0.11905508,0.11905497 +0.2875,0.9125,0.08418465,0.1683693 +0.2875,0.9125,0.1683693,0.08418465 +0.2875,0.9375,0.07499999,0.07500005 +0.28750002,0.9375,0.053033024,0.10606599 +0.2875,0.9375,0.10606603,0.053033113 +0.2875,0.9375,0.094494045,0.094494104 +0.28750002,0.9375,0.06681743,0.1336348 +0.2875,0.9375,0.1336348,0.06681752 +0.2875,0.9375,0.11905508,0.11905503 +0.2875,0.9375,0.08418465,0.1683693 +0.2875,0.9375,0.1683693,0.08418465 +0.2875,0.9625,0.07499999,0.07499999 +0.28750002,0.9625,0.053033024,0.10606593 +0.2875,0.9625,0.10606603,0.053033054 +0.2875,0.9625,0.094494045,0.094494045 +0.28750002,0.9625,0.06681743,0.13363475 +0.2875,0.9625,0.1336348,0.06681746 +0.2875,0.9625,0.11905508,0.11905497 +0.2875,0.9625,0.08418465,0.1683693 +0.2875,0.9625,0.1683693,0.08418465 +0.2875,0.98749995,0.07499999,0.07499999 +0.28750002,0.98749995,0.053033024,0.10606593 +0.2875,0.98749995,0.10606603,0.053033054 +0.2875,0.98749995,0.094494045,0.094494045 +0.28750002,0.98749995,0.06681743,0.13363475 +0.2875,0.98749995,0.1336348,0.06681746 +0.2875,0.98749995,0.11905508,0.11905497 +0.2875,0.98749995,0.08418465,0.16836923 +0.2875,0.98749995,0.1683693,0.08418459 +0.3125,0.0125,0.07499999,0.075 +0.3125,0.012499997,0.053032994,0.10606602 +0.3125,0.012499999,0.10606605,0.05303301 +0.3125,0.012499999,0.094494045,0.09449408 +0.3125,0.012500001,0.0668174,0.1336348 +0.3125,0.012499999,0.1336348,0.0668174 +0.3125,0.012500001,0.11905509,0.11905508 +0.3125,0.012499999,0.08418465,0.1683693 +0.3125,0.012500002,0.1683693,0.084184654 +0.3125,0.0375,0.07499999,0.075 +0.3125,0.037499998,0.053032994,0.10606601 +0.3125,0.0375,0.10606605,0.05303301 +0.3125,0.0375,0.094494045,0.094494075 +0.3125,0.0375,0.0668174,0.1336348 +0.3125,0.0375,0.1336348,0.0668174 +0.3125,0.0375,0.11905509,0.11905508 +0.3125,0.0375,0.08418465,0.16836931 +0.3125,0.0375,0.1683693,0.08418466 +0.3125,0.0625,0.07499999,0.075 +0.3125,0.0625,0.053032994,0.10606602 +0.3125,0.0625,0.10606605,0.05303301 +0.3125,0.0625,0.094494045,0.094494075 +0.3125,0.0625,0.0668174,0.1336348 +0.3125,0.0625,0.1336348,0.0668174 +0.3125,0.0625,0.11905509,0.11905508 +0.3125,0.0625,0.08418465,0.16836932 +0.3125,0.0625,0.1683693,0.08418465 +0.3125,0.0875,0.07499999,0.075 +0.3125,0.08749999,0.053032994,0.10606601 +0.3125,0.087500006,0.10606605,0.053033013 +0.3125,0.087500006,0.094494045,0.09449408 +0.3125,0.087500006,0.0668174,0.1336348 +0.3125,0.0875,0.1336348,0.0668174 +0.3125,0.0875,0.11905509,0.11905508 +0.3125,0.0875,0.08418465,0.16836931 +0.3125,0.087500006,0.1683693,0.084184654 +0.3125,0.112500004,0.07499999,0.075 +0.3125,0.1125,0.053032994,0.10606601 +0.3125,0.112500004,0.10606605,0.05303301 +0.3125,0.1125,0.094494045,0.094494075 +0.3125,0.1125,0.0668174,0.1336348 +0.3125,0.1125,0.1336348,0.0668174 +0.3125,0.1125,0.11905509,0.119055085 +0.3125,0.112500004,0.08418465,0.16836931 +0.3125,0.1125,0.1683693,0.08418465 +0.3125,0.1375,0.07499999,0.074999996 +0.3125,0.1375,0.053032994,0.10606602 +0.3125,0.1375,0.10606605,0.053033024 +0.3125,0.1375,0.094494045,0.09449408 +0.3125,0.1375,0.0668174,0.1336348 +0.3125,0.1375,0.1336348,0.0668174 +0.3125,0.13749999,0.11905509,0.11905508 +0.3125,0.1375,0.08418465,0.1683693 +0.3125,0.1375,0.1683693,0.084184654 +0.3125,0.1625,0.07499999,0.075 +0.3125,0.16250001,0.053032994,0.106066026 +0.3125,0.1625,0.10606605,0.05303301 +0.3125,0.1625,0.094494045,0.094494075 +0.3125,0.1625,0.0668174,0.1336348 +0.3125,0.1625,0.1336348,0.0668174 +0.3125,0.1625,0.11905509,0.11905508 +0.3125,0.1625,0.08418465,0.1683693 +0.3125,0.1625,0.1683693,0.08418464 +0.3125,0.1875,0.07499999,0.07499999 +0.3125,0.1875,0.053032994,0.10606603 +0.3125,0.1875,0.10606605,0.053033024 +0.3125,0.1875,0.094494045,0.09449406 +0.3125,0.1875,0.0668174,0.1336348 +0.3125,0.1875,0.1336348,0.06681742 +0.3125,0.1875,0.11905509,0.11905509 +0.3125,0.1875,0.08418465,0.16836931 +0.3125,0.1875,0.1683693,0.08418465 +0.3125,0.2125,0.07499999,0.075 +0.3125,0.2125,0.053032994,0.10606603 +0.3125,0.2125,0.10606605,0.05303301 +0.3125,0.21249999,0.094494045,0.094494075 +0.3125,0.2125,0.0668174,0.1336348 +0.3125,0.2125,0.1336348,0.0668174 +0.3125,0.2125,0.11905509,0.11905509 +0.3125,0.2125,0.08418465,0.16836931 +0.3125,0.2125,0.1683693,0.08418465 +0.3125,0.23750001,0.07499999,0.075 +0.3125,0.2375,0.053032994,0.10606602 +0.3125,0.2375,0.10606605,0.053033024 +0.3125,0.2375,0.094494045,0.094494075 +0.3125,0.23750001,0.0668174,0.13363482 +0.3125,0.2375,0.1336348,0.06681743 +0.3125,0.2375,0.11905509,0.11905506 +0.3125,0.2375,0.08418465,0.16836932 +0.3125,0.23750001,0.1683693,0.08418466 +0.3125,0.2625,0.07499999,0.07500002 +0.3125,0.2625,0.053032994,0.10606603 +0.3125,0.2625,0.10606605,0.053033024 +0.3125,0.2625,0.094494045,0.094494075 +0.3125,0.2625,0.0668174,0.13363479 +0.3125,0.2625,0.1336348,0.06681743 +0.3125,0.2625,0.11905509,0.11905508 +0.3125,0.2625,0.08418465,0.1683693 +0.3125,0.2625,0.1683693,0.08418463 +0.3125,0.2875,0.07499999,0.07499999 +0.3125,0.2875,0.053032994,0.10606603 +0.3125,0.28750002,0.10606605,0.053033024 +0.3125,0.2875,0.094494045,0.094494045 +0.3125,0.2875,0.0668174,0.1336348 +0.3125,0.28750002,0.1336348,0.06681743 +0.3125,0.2875,0.11905509,0.11905508 +0.3125,0.2875,0.08418465,0.1683693 +0.3125,0.2875,0.1683693,0.08418465 +0.3125,0.3125,0.07499999,0.07499999 +0.3125,0.3125,0.053032994,0.10606605 +0.3125,0.3125,0.10606605,0.053032994 +0.3125,0.3125,0.094494045,0.094494045 +0.3125,0.3125,0.0668174,0.1336348 +0.3125,0.3125,0.1336348,0.0668174 +0.3125,0.3125,0.11905509,0.11905509 +0.3125,0.3125,0.08418465,0.1683693 +0.3125,0.3125,0.1683693,0.08418465 +0.3125,0.3375,0.07499999,0.07499999 +0.3125,0.3375,0.053032994,0.10606605 +0.3125,0.33749998,0.10606605,0.053033024 +0.3125,0.3375,0.094494045,0.094494045 +0.3125,0.33750004,0.0668174,0.13363484 +0.3125,0.33749998,0.1336348,0.06681743 +0.3125,0.3375,0.11905509,0.11905509 +0.3125,0.3375,0.08418465,0.1683693 +0.3125,0.3375,0.1683693,0.08418465 +0.3125,0.3625,0.07499999,0.07500002 +0.3125,0.3625,0.053032994,0.10606602 +0.3125,0.3625,0.10606605,0.053033024 +0.3125,0.3625,0.094494045,0.094494075 +0.3125,0.3625,0.0668174,0.1336348 +0.3125,0.3625,0.1336348,0.06681743 +0.3125,0.3625,0.11905509,0.11905506 +0.3125,0.3625,0.08418465,0.1683693 +0.3125,0.3625,0.1683693,0.08418465 +0.3125,0.3875,0.07499999,0.07500002 +0.3125,0.3875,0.053032994,0.10606602 +0.3125,0.3875,0.10606605,0.053032994 +0.3125,0.3875,0.094494045,0.094494075 +0.3125,0.3875,0.0668174,0.13363484 +0.3125,0.3875,0.1336348,0.0668174 +0.3125,0.3875,0.11905509,0.11905506 +0.3125,0.3875,0.08418465,0.1683693 +0.3125,0.3875,0.1683693,0.08418465 +0.3125,0.4125,0.07499999,0.07499999 +0.3125,0.4125,0.053032994,0.10606605 +0.3125,0.4125,0.10606605,0.053032994 +0.3125,0.4125,0.094494045,0.094494045 +0.3125,0.41250002,0.0668174,0.13363484 +0.3125,0.4125,0.1336348,0.0668174 +0.3125,0.4125,0.11905509,0.11905509 +0.3125,0.4125,0.08418465,0.1683693 +0.3125,0.4125,0.1683693,0.08418465 +0.3125,0.4375,0.07499999,0.07499999 +0.3125,0.4375,0.053032994,0.10606605 +0.3125,0.4375,0.10606605,0.053032994 +0.3125,0.4375,0.094494045,0.094494045 +0.3125,0.4375,0.0668174,0.1336348 +0.3125,0.4375,0.1336348,0.0668174 +0.3125,0.4375,0.11905509,0.11905509 +0.3125,0.4375,0.08418465,0.1683693 +0.3125,0.4375,0.1683693,0.08418465 +0.3125,0.4625,0.07499999,0.07499999 +0.3125,0.4625,0.053032994,0.10606605 +0.3125,0.46249998,0.10606605,0.053032964 +0.3125,0.4625,0.094494045,0.094494045 +0.3125,0.46250004,0.0668174,0.13363484 +0.3125,0.46249998,0.1336348,0.06681737 +0.3125,0.4625,0.11905509,0.11905509 +0.3125,0.46249998,0.08418465,0.16836926 +0.3125,0.46249998,0.1683693,0.08418462 +0.3125,0.48749998,0.07499999,0.07499999 +0.3125,0.4875,0.053032994,0.10606602 +0.3125,0.4875,0.10606605,0.053032994 +0.3125,0.48749998,0.094494045,0.094494045 +0.3125,0.4875,0.0668174,0.13363484 +0.3125,0.4875,0.1336348,0.0668174 +0.3125,0.4875,0.11905509,0.11905506 +0.3125,0.4875,0.08418465,0.1683693 +0.3125,0.4875,0.1683693,0.08418465 +0.3125,0.5125,0.07499999,0.07500002 +0.3125,0.51250005,0.053032994,0.10606605 +0.3125,0.5125,0.10606605,0.053032964 +0.3125,0.5125,0.094494045,0.094494075 +0.3125,0.51250005,0.0668174,0.13363487 +0.3125,0.5125,0.1336348,0.06681737 +0.3125,0.51250005,0.11905509,0.11905509 +0.3125,0.5125,0.08418465,0.1683693 +0.3125,0.5125,0.1683693,0.08418465 +0.3125,0.5375,0.07499999,0.07499999 +0.3125,0.5375,0.053032994,0.10606605 +0.3125,0.5375,0.10606605,0.053032935 +0.3125,0.5375,0.094494045,0.094494045 +0.3125,0.5375,0.0668174,0.13363487 +0.3125,0.5375,0.1336348,0.06681734 +0.3125,0.5375,0.11905509,0.11905509 +0.3125,0.5375,0.08418465,0.16836932 +0.3125,0.5375,0.1683693,0.08418468 +0.3125,0.5625,0.07499999,0.07500005 +0.3125,0.5625,0.053032994,0.10606599 +0.3125,0.5625,0.10606605,0.053032994 +0.3125,0.5625,0.094494045,0.094494104 +0.3125,0.5625,0.0668174,0.13363484 +0.3125,0.5625,0.1336348,0.0668174 +0.3125,0.5625,0.11905509,0.11905503 +0.3125,0.5625,0.08418465,0.1683693 +0.3125,0.5625,0.1683693,0.08418465 +0.3125,0.5875,0.07499999,0.07499999 +0.3125,0.5875,0.053032994,0.10606605 +0.3125,0.5875,0.10606605,0.053032935 +0.3125,0.5875,0.094494045,0.094494045 +0.3125,0.5875,0.0668174,0.13363487 +0.3125,0.5875,0.1336348,0.06681734 +0.3125,0.5875,0.11905509,0.11905509 +0.3125,0.5875,0.08418465,0.1683693 +0.3125,0.5875,0.1683693,0.08418465 +0.3125,0.61249995,0.07499999,0.07499999 +0.3125,0.61249995,0.053032994,0.10606605 +0.3125,0.6125,0.10606605,0.053032994 +0.3125,0.61249995,0.094494045,0.094494045 +0.3125,0.61249995,0.0668174,0.13363487 +0.3125,0.6125,0.1336348,0.0668174 +0.3125,0.61249995,0.11905509,0.11905509 +0.3125,0.6125,0.08418465,0.1683693 +0.3125,0.6125,0.1683693,0.08418465 +0.3125,0.63750005,0.07499999,0.07499999 +0.3125,0.63750005,0.053032994,0.10606605 +0.3125,0.6375,0.10606605,0.053032994 +0.3125,0.63750005,0.094494045,0.094494045 +0.3125,0.63750005,0.0668174,0.13363487 +0.3125,0.6375,0.1336348,0.0668174 +0.3125,0.63750005,0.11905509,0.11905509 +0.3125,0.6375,0.08418465,0.1683693 +0.3125,0.6375,0.1683693,0.08418465 +0.3125,0.6625,0.07499999,0.07499999 +0.3125,0.6625,0.053032994,0.10606605 +0.3125,0.6625,0.10606605,0.053032935 +0.3125,0.6625,0.094494045,0.094494045 +0.3125,0.6625,0.0668174,0.13363487 +0.3125,0.6625,0.1336348,0.06681734 +0.3125,0.6625,0.11905509,0.11905509 +0.3125,0.6625,0.08418465,0.1683693 +0.3125,0.6625,0.1683693,0.08418465 +0.3125,0.6875,0.07499999,0.07500005 +0.3125,0.6875,0.053032994,0.10606599 +0.3125,0.6875,0.10606605,0.053032994 +0.3125,0.6875,0.094494045,0.094494104 +0.3125,0.6875,0.0668174,0.1336348 +0.3125,0.6875,0.1336348,0.0668174 +0.3125,0.6875,0.11905509,0.11905503 +0.3125,0.6875,0.08418465,0.1683693 +0.3125,0.6875,0.1683693,0.08418465 +0.3125,0.7125,0.07499999,0.07499999 +0.3125,0.7125,0.053032994,0.10606605 +0.3125,0.7125,0.10606605,0.053032935 +0.3125,0.7125,0.094494045,0.094494045 +0.3125,0.7125,0.0668174,0.13363487 +0.3125,0.7125,0.1336348,0.06681734 +0.3125,0.7125,0.11905509,0.11905509 +0.3125,0.7125,0.08418465,0.1683693 +0.3125,0.7125,0.1683693,0.08418465 +0.3125,0.73749995,0.07499999,0.07499999 +0.3125,0.73749995,0.053032994,0.10606605 +0.3125,0.7375,0.10606605,0.053032994 +0.3125,0.73749995,0.094494045,0.094494045 +0.3125,0.73749995,0.0668174,0.1336348 +0.3125,0.7375,0.1336348,0.0668174 +0.3125,0.73749995,0.11905509,0.11905509 +0.3125,0.7375,0.08418465,0.1683693 +0.3125,0.7375,0.1683693,0.08418465 +0.3125,0.76250005,0.07499999,0.07499999 +0.3125,0.7625,0.053032994,0.10606599 +0.3125,0.7625,0.10606605,0.053032994 +0.3125,0.76250005,0.094494045,0.094494045 +0.3125,0.7625,0.0668174,0.1336348 +0.3125,0.7625,0.1336348,0.0668174 +0.3125,0.7625,0.11905509,0.11905503 +0.3125,0.7625,0.08418465,0.1683693 +0.3125,0.7625,0.1683693,0.08418465 +0.3125,0.7875,0.07499999,0.07499999 +0.3125,0.78749996,0.053032994,0.10606599 +0.3125,0.7875,0.10606605,0.053032994 +0.3125,0.7875,0.094494045,0.094494045 +0.3125,0.78749996,0.0668174,0.1336348 +0.3125,0.7875,0.1336348,0.0668174 +0.3125,0.78749996,0.11905509,0.11905503 +0.3125,0.7875,0.08418465,0.1683693 +0.3125,0.7875,0.1683693,0.08418465 +0.3125,0.8125,0.07499999,0.07500005 +0.3125,0.8125,0.053032994,0.10606599 +0.3125,0.8125,0.10606605,0.053033054 +0.3125,0.8125,0.094494045,0.094494104 +0.3125,0.8125,0.0668174,0.1336348 +0.3125,0.8125,0.1336348,0.06681746 +0.3125,0.8125,0.11905509,0.11905503 +0.3125,0.8125,0.08418465,0.1683693 +0.3125,0.8125,0.1683693,0.08418465 +0.3125,0.8375,0.07499999,0.07499999 +0.3125,0.8375,0.053032994,0.10606599 +0.3125,0.8375,0.10606605,0.053033054 +0.3125,0.8375,0.094494045,0.094494045 +0.3125,0.8375,0.0668174,0.1336348 +0.3125,0.8375,0.1336348,0.06681746 +0.3125,0.8375,0.11905509,0.11905503 +0.3125,0.8375,0.08418465,0.1683693 +0.3125,0.8375,0.1683693,0.08418465 +0.3125,0.86249995,0.07499999,0.07499999 +0.3125,0.86249995,0.053032994,0.10606593 +0.3125,0.86249995,0.10606605,0.053033054 +0.3125,0.86249995,0.094494045,0.094494045 +0.3125,0.86249995,0.0668174,0.1336348 +0.3125,0.86249995,0.1336348,0.06681746 +0.3125,0.86249995,0.11905509,0.11905497 +0.3125,0.8625,0.08418465,0.1683693 +0.3125,0.8625,0.1683693,0.08418465 +0.3125,0.88750005,0.07499999,0.07499999 +0.3125,0.88750005,0.053032994,0.10606593 +0.3125,0.88750005,0.10606605,0.053033054 +0.3125,0.88750005,0.094494045,0.094494045 +0.3125,0.88750005,0.0668174,0.13363475 +0.3125,0.88750005,0.1336348,0.06681746 +0.3125,0.88750005,0.11905509,0.11905497 +0.3125,0.8875,0.08418465,0.1683693 +0.3125,0.8875,0.1683693,0.08418465 +0.3125,0.9125,0.07499999,0.07499999 +0.3125,0.9125,0.053032994,0.10606593 +0.3125,0.9125,0.10606605,0.053033054 +0.3125,0.9125,0.094494045,0.094494045 +0.3125,0.9125,0.0668174,0.13363475 +0.3125,0.9125,0.1336348,0.06681746 +0.3125,0.9125,0.11905509,0.11905497 +0.3125,0.9125,0.08418465,0.1683693 +0.3125,0.9125,0.1683693,0.08418465 +0.3125,0.9375,0.07499999,0.07500005 +0.3125,0.9375,0.053032994,0.10606599 +0.3125,0.9375,0.10606605,0.053033113 +0.3125,0.9375,0.094494045,0.094494104 +0.3125,0.9375,0.0668174,0.1336348 +0.3125,0.9375,0.1336348,0.06681752 +0.3125,0.9375,0.11905509,0.11905503 +0.3125,0.9375,0.08418465,0.1683693 +0.3125,0.9375,0.1683693,0.08418465 +0.3125,0.9625,0.07499999,0.07499999 +0.3125,0.9625,0.053032994,0.10606593 +0.3125,0.9625,0.10606605,0.053033054 +0.3125,0.9625,0.094494045,0.094494045 +0.3125,0.9625,0.0668174,0.13363475 +0.3125,0.9625,0.1336348,0.06681746 +0.3125,0.9625,0.11905509,0.11905497 +0.3125,0.9625,0.08418465,0.1683693 +0.3125,0.9625,0.1683693,0.08418465 +0.3125,0.98749995,0.07499999,0.07499999 +0.3125,0.98749995,0.053032994,0.10606593 +0.3125,0.98749995,0.10606605,0.053033054 +0.3125,0.98749995,0.094494045,0.094494045 +0.3125,0.98749995,0.0668174,0.13363475 +0.3125,0.98749995,0.1336348,0.06681746 +0.3125,0.98749995,0.11905509,0.11905497 +0.3125,0.98749995,0.08418465,0.16836923 +0.3125,0.98749995,0.1683693,0.08418459 +0.3375,0.0125,0.07499999,0.075 +0.33749998,0.012499997,0.053033024,0.10606602 +0.3375,0.012499999,0.10606605,0.05303301 +0.3375,0.012499999,0.094494045,0.09449408 +0.33749998,0.012500001,0.06681743,0.1336348 +0.33750004,0.012499999,0.13363484,0.0668174 +0.3375,0.012500001,0.11905509,0.11905508 +0.3375,0.012499999,0.08418465,0.1683693 +0.3375,0.012500002,0.1683693,0.084184654 +0.3375,0.0375,0.07499999,0.075 +0.33749998,0.037499998,0.053033024,0.10606601 +0.3375,0.0375,0.10606605,0.05303301 +0.3375,0.0375,0.094494045,0.094494075 +0.33749998,0.0375,0.06681743,0.1336348 +0.33750004,0.0375,0.13363484,0.0668174 +0.3375,0.0375,0.11905509,0.11905508 +0.3375,0.0375,0.08418465,0.16836931 +0.3375,0.0375,0.1683693,0.08418466 +0.3375,0.0625,0.07499999,0.075 +0.33749998,0.0625,0.053033024,0.10606602 +0.3375,0.0625,0.10606605,0.05303301 +0.3375,0.0625,0.094494045,0.094494075 +0.33749998,0.0625,0.06681743,0.1336348 +0.33750004,0.0625,0.13363484,0.0668174 +0.3375,0.0625,0.11905509,0.11905508 +0.3375,0.0625,0.08418465,0.16836932 +0.3375,0.0625,0.1683693,0.08418465 +0.3375,0.0875,0.07499999,0.075 +0.33749998,0.08749999,0.053033024,0.10606601 +0.3375,0.087500006,0.10606605,0.053033013 +0.3375,0.087500006,0.094494045,0.09449408 +0.33749998,0.087500006,0.06681743,0.1336348 +0.33750004,0.0875,0.13363484,0.0668174 +0.3375,0.0875,0.11905509,0.11905508 +0.3375,0.0875,0.08418465,0.16836931 +0.3375,0.087500006,0.1683693,0.084184654 +0.3375,0.112500004,0.07499999,0.075 +0.33749998,0.1125,0.053033024,0.10606601 +0.3375,0.112500004,0.10606605,0.05303301 +0.3375,0.1125,0.094494045,0.094494075 +0.33749998,0.1125,0.06681743,0.1336348 +0.33750004,0.1125,0.13363484,0.0668174 +0.3375,0.1125,0.11905509,0.119055085 +0.3375,0.112500004,0.08418465,0.16836931 +0.3375,0.1125,0.1683693,0.08418465 +0.3375,0.1375,0.07499999,0.074999996 +0.33749998,0.1375,0.053033024,0.10606602 +0.3375,0.1375,0.10606605,0.053033024 +0.3375,0.1375,0.094494045,0.09449408 +0.33749998,0.1375,0.06681743,0.1336348 +0.33750004,0.1375,0.13363484,0.0668174 +0.3375,0.13749999,0.11905509,0.11905508 +0.3375,0.1375,0.08418465,0.1683693 +0.3375,0.1375,0.1683693,0.084184654 +0.3375,0.1625,0.07499999,0.075 +0.33749998,0.16250001,0.053033024,0.106066026 +0.3375,0.1625,0.10606605,0.05303301 +0.3375,0.1625,0.094494045,0.094494075 +0.33749998,0.1625,0.06681743,0.1336348 +0.33750004,0.1625,0.13363484,0.0668174 +0.3375,0.1625,0.11905509,0.11905508 +0.3375,0.1625,0.08418465,0.1683693 +0.3375,0.1625,0.1683693,0.08418464 +0.3375,0.1875,0.07499999,0.07499999 +0.33749998,0.1875,0.053033024,0.10606603 +0.3375,0.1875,0.10606605,0.053033024 +0.3375,0.1875,0.094494045,0.09449406 +0.33749998,0.1875,0.06681743,0.1336348 +0.33750004,0.1875,0.13363484,0.06681742 +0.3375,0.1875,0.11905509,0.11905509 +0.3375,0.1875,0.08418465,0.16836931 +0.3375,0.1875,0.1683693,0.08418465 +0.3375,0.2125,0.07499999,0.075 +0.33749998,0.2125,0.053033024,0.10606603 +0.3375,0.2125,0.10606605,0.05303301 +0.3375,0.21249999,0.094494045,0.094494075 +0.33749998,0.2125,0.06681743,0.1336348 +0.33750004,0.2125,0.13363484,0.0668174 +0.3375,0.2125,0.11905509,0.11905509 +0.3375,0.2125,0.08418465,0.16836931 +0.3375,0.2125,0.1683693,0.08418465 +0.3375,0.23750001,0.07499999,0.075 +0.33749998,0.2375,0.053033024,0.10606602 +0.3375,0.2375,0.10606605,0.053033024 +0.3375,0.2375,0.094494045,0.094494075 +0.33749998,0.23750001,0.06681743,0.13363482 +0.33750004,0.2375,0.13363484,0.06681743 +0.3375,0.2375,0.11905509,0.11905506 +0.3375,0.2375,0.08418465,0.16836932 +0.3375,0.23750001,0.1683693,0.08418466 +0.3375,0.2625,0.07499999,0.07500002 +0.33749998,0.2625,0.053033024,0.10606603 +0.3375,0.2625,0.10606605,0.053033024 +0.3375,0.2625,0.094494045,0.094494075 +0.33749998,0.2625,0.06681743,0.13363479 +0.33750004,0.2625,0.13363484,0.06681743 +0.3375,0.2625,0.11905509,0.11905508 +0.3375,0.2625,0.08418465,0.1683693 +0.3375,0.2625,0.1683693,0.08418463 +0.3375,0.2875,0.07499999,0.07499999 +0.33749998,0.2875,0.053033024,0.10606603 +0.3375,0.28750002,0.10606605,0.053033024 +0.3375,0.2875,0.094494045,0.094494045 +0.33749998,0.2875,0.06681743,0.1336348 +0.33750004,0.28750002,0.13363484,0.06681743 +0.3375,0.2875,0.11905509,0.11905508 +0.3375,0.2875,0.08418465,0.1683693 +0.3375,0.2875,0.1683693,0.08418465 +0.3375,0.3125,0.07499999,0.07499999 +0.33749998,0.3125,0.053033024,0.10606605 +0.3375,0.3125,0.10606605,0.053032994 +0.3375,0.3125,0.094494045,0.094494045 +0.33749998,0.3125,0.06681743,0.1336348 +0.33750004,0.3125,0.13363484,0.0668174 +0.3375,0.3125,0.11905509,0.11905509 +0.3375,0.3125,0.08418465,0.1683693 +0.3375,0.3125,0.1683693,0.08418465 +0.3375,0.3375,0.07499999,0.07499999 +0.33749998,0.3375,0.053033024,0.10606605 +0.3375,0.33749998,0.10606605,0.053033024 +0.3375,0.3375,0.094494045,0.094494045 +0.33749998,0.33750004,0.06681743,0.13363484 +0.33750004,0.33749998,0.13363484,0.06681743 +0.3375,0.3375,0.11905509,0.11905509 +0.3375,0.3375,0.08418465,0.1683693 +0.3375,0.3375,0.1683693,0.08418465 +0.3375,0.3625,0.07499999,0.07500002 +0.33749998,0.3625,0.053033024,0.10606602 +0.3375,0.3625,0.10606605,0.053033024 +0.3375,0.3625,0.094494045,0.094494075 +0.33749998,0.3625,0.06681743,0.1336348 +0.33750004,0.3625,0.13363484,0.06681743 +0.3375,0.3625,0.11905509,0.11905506 +0.3375,0.3625,0.08418465,0.1683693 +0.3375,0.3625,0.1683693,0.08418465 +0.3375,0.3875,0.07499999,0.07500002 +0.33749998,0.3875,0.053033024,0.10606602 +0.3375,0.3875,0.10606605,0.053032994 +0.3375,0.3875,0.094494045,0.094494075 +0.33749998,0.3875,0.06681743,0.13363484 +0.33750004,0.3875,0.13363484,0.0668174 +0.3375,0.3875,0.11905509,0.11905506 +0.3375,0.3875,0.08418465,0.1683693 +0.3375,0.3875,0.1683693,0.08418465 +0.3375,0.4125,0.07499999,0.07499999 +0.33749998,0.4125,0.053033024,0.10606605 +0.3375,0.4125,0.10606605,0.053032994 +0.3375,0.4125,0.094494045,0.094494045 +0.33749998,0.41250002,0.06681743,0.13363484 +0.33750004,0.4125,0.13363484,0.0668174 +0.3375,0.4125,0.11905509,0.11905509 +0.3375,0.4125,0.08418465,0.1683693 +0.3375,0.4125,0.1683693,0.08418465 +0.3375,0.4375,0.07499999,0.07499999 +0.33749998,0.4375,0.053033024,0.10606605 +0.3375,0.4375,0.10606605,0.053032994 +0.3375,0.4375,0.094494045,0.094494045 +0.33749998,0.4375,0.06681743,0.1336348 +0.33750004,0.4375,0.13363484,0.0668174 +0.3375,0.4375,0.11905509,0.11905509 +0.3375,0.4375,0.08418465,0.1683693 +0.3375,0.4375,0.1683693,0.08418465 +0.3375,0.4625,0.07499999,0.07499999 +0.33749998,0.4625,0.053033024,0.10606605 +0.3375,0.46249998,0.10606605,0.053032964 +0.3375,0.4625,0.094494045,0.094494045 +0.33749998,0.46250004,0.06681743,0.13363484 +0.33750004,0.46249998,0.13363484,0.06681737 +0.3375,0.4625,0.11905509,0.11905509 +0.3375,0.46249998,0.08418465,0.16836926 +0.3375,0.46249998,0.1683693,0.08418462 +0.3375,0.48749998,0.07499999,0.07499999 +0.33749998,0.4875,0.053033024,0.10606602 +0.3375,0.4875,0.10606605,0.053032994 +0.3375,0.48749998,0.094494045,0.094494045 +0.33749998,0.4875,0.06681743,0.13363484 +0.33750004,0.4875,0.13363484,0.0668174 +0.3375,0.4875,0.11905509,0.11905506 +0.3375,0.4875,0.08418465,0.1683693 +0.3375,0.4875,0.1683693,0.08418465 +0.3375,0.5125,0.07499999,0.07500002 +0.33749998,0.51250005,0.053033024,0.10606605 +0.3375,0.5125,0.10606605,0.053032964 +0.3375,0.5125,0.094494045,0.094494075 +0.33749998,0.51250005,0.06681743,0.13363487 +0.33750004,0.5125,0.13363484,0.06681737 +0.3375,0.51250005,0.11905509,0.11905509 +0.3375,0.5125,0.08418465,0.1683693 +0.3375,0.5125,0.1683693,0.08418465 +0.3375,0.5375,0.07499999,0.07499999 +0.33749998,0.5375,0.053033024,0.10606605 +0.3375,0.5375,0.10606605,0.053032935 +0.3375,0.5375,0.094494045,0.094494045 +0.33749998,0.5375,0.06681743,0.13363487 +0.33750004,0.5375,0.13363484,0.06681734 +0.3375,0.5375,0.11905509,0.11905509 +0.3375,0.5375,0.08418465,0.16836932 +0.3375,0.5375,0.1683693,0.08418468 +0.3375,0.5625,0.07499999,0.07500005 +0.33749998,0.5625,0.053033024,0.10606599 +0.3375,0.5625,0.10606605,0.053032994 +0.3375,0.5625,0.094494045,0.094494104 +0.33749998,0.5625,0.06681743,0.13363484 +0.33750004,0.5625,0.13363484,0.0668174 +0.3375,0.5625,0.11905509,0.11905503 +0.3375,0.5625,0.08418465,0.1683693 +0.3375,0.5625,0.1683693,0.08418465 +0.3375,0.5875,0.07499999,0.07499999 +0.33749998,0.5875,0.053033024,0.10606605 +0.3375,0.5875,0.10606605,0.053032935 +0.3375,0.5875,0.094494045,0.094494045 +0.33749998,0.5875,0.06681743,0.13363487 +0.33750004,0.5875,0.13363484,0.06681734 +0.3375,0.5875,0.11905509,0.11905509 +0.3375,0.5875,0.08418465,0.1683693 +0.3375,0.5875,0.1683693,0.08418465 +0.3375,0.61249995,0.07499999,0.07499999 +0.33749998,0.61249995,0.053033024,0.10606605 +0.3375,0.6125,0.10606605,0.053032994 +0.3375,0.61249995,0.094494045,0.094494045 +0.33749998,0.61249995,0.06681743,0.13363487 +0.33750004,0.6125,0.13363484,0.0668174 +0.3375,0.61249995,0.11905509,0.11905509 +0.3375,0.6125,0.08418465,0.1683693 +0.3375,0.6125,0.1683693,0.08418465 +0.3375,0.63750005,0.07499999,0.07499999 +0.33749998,0.63750005,0.053033024,0.10606605 +0.3375,0.6375,0.10606605,0.053032994 +0.3375,0.63750005,0.094494045,0.094494045 +0.33749998,0.63750005,0.06681743,0.13363487 +0.33750004,0.6375,0.13363484,0.0668174 +0.3375,0.63750005,0.11905509,0.11905509 +0.3375,0.6375,0.08418465,0.1683693 +0.3375,0.6375,0.1683693,0.08418465 +0.3375,0.6625,0.07499999,0.07499999 +0.33749998,0.6625,0.053033024,0.10606605 +0.3375,0.6625,0.10606605,0.053032935 +0.3375,0.6625,0.094494045,0.094494045 +0.33749998,0.6625,0.06681743,0.13363487 +0.33750004,0.6625,0.13363484,0.06681734 +0.3375,0.6625,0.11905509,0.11905509 +0.3375,0.6625,0.08418465,0.1683693 +0.3375,0.6625,0.1683693,0.08418465 +0.3375,0.6875,0.07499999,0.07500005 +0.33749998,0.6875,0.053033024,0.10606599 +0.3375,0.6875,0.10606605,0.053032994 +0.3375,0.6875,0.094494045,0.094494104 +0.33749998,0.6875,0.06681743,0.1336348 +0.33750004,0.6875,0.13363484,0.0668174 +0.3375,0.6875,0.11905509,0.11905503 +0.3375,0.6875,0.08418465,0.1683693 +0.3375,0.6875,0.1683693,0.08418465 +0.3375,0.7125,0.07499999,0.07499999 +0.33749998,0.7125,0.053033024,0.10606605 +0.3375,0.7125,0.10606605,0.053032935 +0.3375,0.7125,0.094494045,0.094494045 +0.33749998,0.7125,0.06681743,0.13363487 +0.33750004,0.7125,0.13363484,0.06681734 +0.3375,0.7125,0.11905509,0.11905509 +0.3375,0.7125,0.08418465,0.1683693 +0.3375,0.7125,0.1683693,0.08418465 +0.3375,0.73749995,0.07499999,0.07499999 +0.33749998,0.73749995,0.053033024,0.10606605 +0.3375,0.7375,0.10606605,0.053032994 +0.3375,0.73749995,0.094494045,0.094494045 +0.33749998,0.73749995,0.06681743,0.1336348 +0.33750004,0.7375,0.13363484,0.0668174 +0.3375,0.73749995,0.11905509,0.11905509 +0.3375,0.7375,0.08418465,0.1683693 +0.3375,0.7375,0.1683693,0.08418465 +0.3375,0.76250005,0.07499999,0.07499999 +0.33749998,0.7625,0.053033024,0.10606599 +0.3375,0.7625,0.10606605,0.053032994 +0.3375,0.76250005,0.094494045,0.094494045 +0.33749998,0.7625,0.06681743,0.1336348 +0.33750004,0.7625,0.13363484,0.0668174 +0.3375,0.7625,0.11905509,0.11905503 +0.3375,0.7625,0.08418465,0.1683693 +0.3375,0.7625,0.1683693,0.08418465 +0.3375,0.7875,0.07499999,0.07499999 +0.33749998,0.78749996,0.053033024,0.10606599 +0.3375,0.7875,0.10606605,0.053032994 +0.3375,0.7875,0.094494045,0.094494045 +0.33749998,0.78749996,0.06681743,0.1336348 +0.33750004,0.7875,0.13363484,0.0668174 +0.3375,0.78749996,0.11905509,0.11905503 +0.3375,0.7875,0.08418465,0.1683693 +0.3375,0.7875,0.1683693,0.08418465 +0.3375,0.8125,0.07499999,0.07500005 +0.33749998,0.8125,0.053033024,0.10606599 +0.3375,0.8125,0.10606605,0.053033054 +0.3375,0.8125,0.094494045,0.094494104 +0.33749998,0.8125,0.06681743,0.1336348 +0.33750004,0.8125,0.13363484,0.06681746 +0.3375,0.8125,0.11905509,0.11905503 +0.3375,0.8125,0.08418465,0.1683693 +0.3375,0.8125,0.1683693,0.08418465 +0.3375,0.8375,0.07499999,0.07499999 +0.33749998,0.8375,0.053033024,0.10606599 +0.3375,0.8375,0.10606605,0.053033054 +0.3375,0.8375,0.094494045,0.094494045 +0.33749998,0.8375,0.06681743,0.1336348 +0.33750004,0.8375,0.13363484,0.06681746 +0.3375,0.8375,0.11905509,0.11905503 +0.3375,0.8375,0.08418465,0.1683693 +0.3375,0.8375,0.1683693,0.08418465 +0.3375,0.86249995,0.07499999,0.07499999 +0.33749998,0.86249995,0.053033024,0.10606593 +0.3375,0.86249995,0.10606605,0.053033054 +0.3375,0.86249995,0.094494045,0.094494045 +0.33749998,0.86249995,0.06681743,0.1336348 +0.33750004,0.86249995,0.13363484,0.06681746 +0.3375,0.86249995,0.11905509,0.11905497 +0.3375,0.8625,0.08418465,0.1683693 +0.3375,0.8625,0.1683693,0.08418465 +0.3375,0.88750005,0.07499999,0.07499999 +0.33749998,0.88750005,0.053033024,0.10606593 +0.3375,0.88750005,0.10606605,0.053033054 +0.3375,0.88750005,0.094494045,0.094494045 +0.33749998,0.88750005,0.06681743,0.13363475 +0.33750004,0.88750005,0.13363484,0.06681746 +0.3375,0.88750005,0.11905509,0.11905497 +0.3375,0.8875,0.08418465,0.1683693 +0.3375,0.8875,0.1683693,0.08418465 +0.3375,0.9125,0.07499999,0.07499999 +0.33749998,0.9125,0.053033024,0.10606593 +0.3375,0.9125,0.10606605,0.053033054 +0.3375,0.9125,0.094494045,0.094494045 +0.33749998,0.9125,0.06681743,0.13363475 +0.33750004,0.9125,0.13363484,0.06681746 +0.3375,0.9125,0.11905509,0.11905497 +0.3375,0.9125,0.08418465,0.1683693 +0.3375,0.9125,0.1683693,0.08418465 +0.3375,0.9375,0.07499999,0.07500005 +0.33749998,0.9375,0.053033024,0.10606599 +0.3375,0.9375,0.10606605,0.053033113 +0.3375,0.9375,0.094494045,0.094494104 +0.33749998,0.9375,0.06681743,0.1336348 +0.33750004,0.9375,0.13363484,0.06681752 +0.3375,0.9375,0.11905509,0.11905503 +0.3375,0.9375,0.08418465,0.1683693 +0.3375,0.9375,0.1683693,0.08418465 +0.3375,0.9625,0.07499999,0.07499999 +0.33749998,0.9625,0.053033024,0.10606593 +0.3375,0.9625,0.10606605,0.053033054 +0.3375,0.9625,0.094494045,0.094494045 +0.33749998,0.9625,0.06681743,0.13363475 +0.33750004,0.9625,0.13363484,0.06681746 +0.3375,0.9625,0.11905509,0.11905497 +0.3375,0.9625,0.08418465,0.1683693 +0.3375,0.9625,0.1683693,0.08418465 +0.3375,0.98749995,0.07499999,0.07499999 +0.33749998,0.98749995,0.053033024,0.10606593 +0.3375,0.98749995,0.10606605,0.053033054 +0.3375,0.98749995,0.094494045,0.094494045 +0.33749998,0.98749995,0.06681743,0.13363475 +0.33750004,0.98749995,0.13363484,0.06681746 +0.3375,0.98749995,0.11905509,0.11905497 +0.3375,0.98749995,0.08418465,0.16836923 +0.3375,0.98749995,0.1683693,0.08418459 +0.3625,0.0125,0.07500002,0.075 +0.3625,0.012499997,0.053033024,0.10606602 +0.3625,0.012499999,0.10606602,0.05303301 +0.3625,0.012499999,0.094494075,0.09449408 +0.3625,0.012500001,0.06681743,0.1336348 +0.3625,0.012499999,0.1336348,0.0668174 +0.3625,0.012500001,0.11905506,0.11905508 +0.3625,0.012499999,0.08418465,0.1683693 +0.3625,0.012500002,0.1683693,0.084184654 +0.3625,0.0375,0.07500002,0.075 +0.3625,0.037499998,0.053033024,0.10606601 +0.3625,0.0375,0.10606602,0.05303301 +0.3625,0.0375,0.094494075,0.094494075 +0.3625,0.0375,0.06681743,0.1336348 +0.3625,0.0375,0.1336348,0.0668174 +0.3625,0.0375,0.11905506,0.11905508 +0.3625,0.0375,0.08418465,0.16836931 +0.3625,0.0375,0.1683693,0.08418466 +0.3625,0.0625,0.07500002,0.075 +0.3625,0.0625,0.053033024,0.10606602 +0.3625,0.0625,0.10606602,0.05303301 +0.3625,0.0625,0.094494075,0.094494075 +0.3625,0.0625,0.06681743,0.1336348 +0.3625,0.0625,0.1336348,0.0668174 +0.3625,0.0625,0.11905506,0.11905508 +0.3625,0.0625,0.08418465,0.16836932 +0.3625,0.0625,0.1683693,0.08418465 +0.3625,0.0875,0.07500002,0.075 +0.3625,0.08749999,0.053033024,0.10606601 +0.3625,0.087500006,0.10606602,0.053033013 +0.3625,0.087500006,0.094494075,0.09449408 +0.3625,0.087500006,0.06681743,0.1336348 +0.3625,0.0875,0.1336348,0.0668174 +0.3625,0.0875,0.11905506,0.11905508 +0.3625,0.0875,0.08418465,0.16836931 +0.3625,0.087500006,0.1683693,0.084184654 +0.3625,0.112500004,0.07500002,0.075 +0.3625,0.1125,0.053033024,0.10606601 +0.3625,0.112500004,0.10606602,0.05303301 +0.3625,0.1125,0.094494075,0.094494075 +0.3625,0.1125,0.06681743,0.1336348 +0.3625,0.1125,0.1336348,0.0668174 +0.3625,0.1125,0.11905506,0.119055085 +0.3625,0.112500004,0.08418465,0.16836931 +0.3625,0.1125,0.1683693,0.08418465 +0.3625,0.1375,0.07500002,0.074999996 +0.3625,0.1375,0.053033024,0.10606602 +0.3625,0.1375,0.10606602,0.053033024 +0.3625,0.1375,0.094494075,0.09449408 +0.3625,0.1375,0.06681743,0.1336348 +0.3625,0.1375,0.1336348,0.0668174 +0.3625,0.13749999,0.11905506,0.11905508 +0.3625,0.1375,0.08418465,0.1683693 +0.3625,0.1375,0.1683693,0.084184654 +0.3625,0.1625,0.07500002,0.075 +0.3625,0.16250001,0.053033024,0.106066026 +0.3625,0.1625,0.10606602,0.05303301 +0.3625,0.1625,0.094494075,0.094494075 +0.3625,0.1625,0.06681743,0.1336348 +0.3625,0.1625,0.1336348,0.0668174 +0.3625,0.1625,0.11905506,0.11905508 +0.3625,0.1625,0.08418465,0.1683693 +0.3625,0.1625,0.1683693,0.08418464 +0.3625,0.1875,0.07500002,0.07499999 +0.3625,0.1875,0.053033024,0.10606603 +0.3625,0.1875,0.10606602,0.053033024 +0.3625,0.1875,0.094494075,0.09449406 +0.3625,0.1875,0.06681743,0.1336348 +0.3625,0.1875,0.1336348,0.06681742 +0.3625,0.1875,0.11905506,0.11905509 +0.3625,0.1875,0.08418465,0.16836931 +0.3625,0.1875,0.1683693,0.08418465 +0.3625,0.2125,0.07500002,0.075 +0.3625,0.2125,0.053033024,0.10606603 +0.3625,0.2125,0.10606602,0.05303301 +0.3625,0.21249999,0.094494075,0.094494075 +0.3625,0.2125,0.06681743,0.1336348 +0.3625,0.2125,0.1336348,0.0668174 +0.3625,0.2125,0.11905506,0.11905509 +0.3625,0.2125,0.08418465,0.16836931 +0.3625,0.2125,0.1683693,0.08418465 +0.3625,0.23750001,0.07500002,0.075 +0.3625,0.2375,0.053033024,0.10606602 +0.3625,0.2375,0.10606602,0.053033024 +0.3625,0.2375,0.094494075,0.094494075 +0.3625,0.23750001,0.06681743,0.13363482 +0.3625,0.2375,0.1336348,0.06681743 +0.3625,0.2375,0.11905506,0.11905506 +0.3625,0.2375,0.08418465,0.16836932 +0.3625,0.23750001,0.1683693,0.08418466 +0.3625,0.2625,0.07500002,0.07500002 +0.3625,0.2625,0.053033024,0.10606603 +0.3625,0.2625,0.10606602,0.053033024 +0.3625,0.2625,0.094494075,0.094494075 +0.3625,0.2625,0.06681743,0.13363479 +0.3625,0.2625,0.1336348,0.06681743 +0.3625,0.2625,0.11905506,0.11905508 +0.3625,0.2625,0.08418465,0.1683693 +0.3625,0.2625,0.1683693,0.08418463 +0.3625,0.2875,0.07500002,0.07499999 +0.3625,0.2875,0.053033024,0.10606603 +0.3625,0.28750002,0.10606602,0.053033024 +0.3625,0.2875,0.094494075,0.094494045 +0.3625,0.2875,0.06681743,0.1336348 +0.3625,0.28750002,0.1336348,0.06681743 +0.3625,0.2875,0.11905506,0.11905508 +0.3625,0.2875,0.08418465,0.1683693 +0.3625,0.2875,0.1683693,0.08418465 +0.3625,0.3125,0.07500002,0.07499999 +0.3625,0.3125,0.053033024,0.10606605 +0.3625,0.3125,0.10606602,0.053032994 +0.3625,0.3125,0.094494075,0.094494045 +0.3625,0.3125,0.06681743,0.1336348 +0.3625,0.3125,0.1336348,0.0668174 +0.3625,0.3125,0.11905506,0.11905509 +0.3625,0.3125,0.08418465,0.1683693 +0.3625,0.3125,0.1683693,0.08418465 +0.3625,0.3375,0.07500002,0.07499999 +0.3625,0.3375,0.053033024,0.10606605 +0.3625,0.33749998,0.10606602,0.053033024 +0.3625,0.3375,0.094494075,0.094494045 +0.3625,0.33750004,0.06681743,0.13363484 +0.3625,0.33749998,0.1336348,0.06681743 +0.3625,0.3375,0.11905506,0.11905509 +0.3625,0.3375,0.08418465,0.1683693 +0.3625,0.3375,0.1683693,0.08418465 +0.3625,0.3625,0.07500002,0.07500002 +0.3625,0.3625,0.053033024,0.10606602 +0.3625,0.3625,0.10606602,0.053033024 +0.3625,0.3625,0.094494075,0.094494075 +0.3625,0.3625,0.06681743,0.1336348 +0.3625,0.3625,0.1336348,0.06681743 +0.3625,0.3625,0.11905506,0.11905506 +0.3625,0.3625,0.08418465,0.1683693 +0.3625,0.3625,0.1683693,0.08418465 +0.3625,0.3875,0.07500002,0.07500002 +0.3625,0.3875,0.053033024,0.10606602 +0.3625,0.3875,0.10606602,0.053032994 +0.3625,0.3875,0.094494075,0.094494075 +0.3625,0.3875,0.06681743,0.13363484 +0.3625,0.3875,0.1336348,0.0668174 +0.3625,0.3875,0.11905506,0.11905506 +0.3625,0.3875,0.08418465,0.1683693 +0.3625,0.3875,0.1683693,0.08418465 +0.3625,0.4125,0.07500002,0.07499999 +0.3625,0.4125,0.053033024,0.10606605 +0.3625,0.4125,0.10606602,0.053032994 +0.3625,0.4125,0.094494075,0.094494045 +0.3625,0.41250002,0.06681743,0.13363484 +0.3625,0.4125,0.1336348,0.0668174 +0.3625,0.4125,0.11905506,0.11905509 +0.3625,0.4125,0.08418465,0.1683693 +0.3625,0.4125,0.1683693,0.08418465 +0.3625,0.4375,0.07500002,0.07499999 +0.3625,0.4375,0.053033024,0.10606605 +0.3625,0.4375,0.10606602,0.053032994 +0.3625,0.4375,0.094494075,0.094494045 +0.3625,0.4375,0.06681743,0.1336348 +0.3625,0.4375,0.1336348,0.0668174 +0.3625,0.4375,0.11905506,0.11905509 +0.3625,0.4375,0.08418465,0.1683693 +0.3625,0.4375,0.1683693,0.08418465 +0.3625,0.4625,0.07500002,0.07499999 +0.3625,0.4625,0.053033024,0.10606605 +0.3625,0.46249998,0.10606602,0.053032964 +0.3625,0.4625,0.094494075,0.094494045 +0.3625,0.46250004,0.06681743,0.13363484 +0.3625,0.46249998,0.1336348,0.06681737 +0.3625,0.4625,0.11905506,0.11905509 +0.3625,0.46249998,0.08418465,0.16836926 +0.3625,0.46249998,0.1683693,0.08418462 +0.3625,0.48749998,0.07500002,0.07499999 +0.3625,0.4875,0.053033024,0.10606602 +0.3625,0.4875,0.10606602,0.053032994 +0.3625,0.48749998,0.094494075,0.094494045 +0.3625,0.4875,0.06681743,0.13363484 +0.3625,0.4875,0.1336348,0.0668174 +0.3625,0.4875,0.11905506,0.11905506 +0.3625,0.4875,0.08418465,0.1683693 +0.3625,0.4875,0.1683693,0.08418465 +0.3625,0.5125,0.07500002,0.07500002 +0.3625,0.51250005,0.053033024,0.10606605 +0.3625,0.5125,0.10606602,0.053032964 +0.3625,0.5125,0.094494075,0.094494075 +0.3625,0.51250005,0.06681743,0.13363487 +0.3625,0.5125,0.1336348,0.06681737 +0.3625,0.51250005,0.11905506,0.11905509 +0.3625,0.5125,0.08418465,0.1683693 +0.3625,0.5125,0.1683693,0.08418465 +0.3625,0.5375,0.07500002,0.07499999 +0.3625,0.5375,0.053033024,0.10606605 +0.3625,0.5375,0.10606602,0.053032935 +0.3625,0.5375,0.094494075,0.094494045 +0.3625,0.5375,0.06681743,0.13363487 +0.3625,0.5375,0.1336348,0.06681734 +0.3625,0.5375,0.11905506,0.11905509 +0.3625,0.5375,0.08418465,0.16836932 +0.3625,0.5375,0.1683693,0.08418468 +0.3625,0.5625,0.07500002,0.07500005 +0.3625,0.5625,0.053033024,0.10606599 +0.3625,0.5625,0.10606602,0.053032994 +0.3625,0.5625,0.094494075,0.094494104 +0.3625,0.5625,0.06681743,0.13363484 +0.3625,0.5625,0.1336348,0.0668174 +0.3625,0.5625,0.11905506,0.11905503 +0.3625,0.5625,0.08418465,0.1683693 +0.3625,0.5625,0.1683693,0.08418465 +0.3625,0.5875,0.07500002,0.07499999 +0.3625,0.5875,0.053033024,0.10606605 +0.3625,0.5875,0.10606602,0.053032935 +0.3625,0.5875,0.094494075,0.094494045 +0.3625,0.5875,0.06681743,0.13363487 +0.3625,0.5875,0.1336348,0.06681734 +0.3625,0.5875,0.11905506,0.11905509 +0.3625,0.5875,0.08418465,0.1683693 +0.3625,0.5875,0.1683693,0.08418465 +0.3625,0.61249995,0.07500002,0.07499999 +0.3625,0.61249995,0.053033024,0.10606605 +0.3625,0.6125,0.10606602,0.053032994 +0.3625,0.61249995,0.094494075,0.094494045 +0.3625,0.61249995,0.06681743,0.13363487 +0.3625,0.6125,0.1336348,0.0668174 +0.3625,0.61249995,0.11905506,0.11905509 +0.3625,0.6125,0.08418465,0.1683693 +0.3625,0.6125,0.1683693,0.08418465 +0.3625,0.63750005,0.07500002,0.07499999 +0.3625,0.63750005,0.053033024,0.10606605 +0.3625,0.6375,0.10606602,0.053032994 +0.3625,0.63750005,0.094494075,0.094494045 +0.3625,0.63750005,0.06681743,0.13363487 +0.3625,0.6375,0.1336348,0.0668174 +0.3625,0.63750005,0.11905506,0.11905509 +0.3625,0.6375,0.08418465,0.1683693 +0.3625,0.6375,0.1683693,0.08418465 +0.3625,0.6625,0.07500002,0.07499999 +0.3625,0.6625,0.053033024,0.10606605 +0.3625,0.6625,0.10606602,0.053032935 +0.3625,0.6625,0.094494075,0.094494045 +0.3625,0.6625,0.06681743,0.13363487 +0.3625,0.6625,0.1336348,0.06681734 +0.3625,0.6625,0.11905506,0.11905509 +0.3625,0.6625,0.08418465,0.1683693 +0.3625,0.6625,0.1683693,0.08418465 +0.3625,0.6875,0.07500002,0.07500005 +0.3625,0.6875,0.053033024,0.10606599 +0.3625,0.6875,0.10606602,0.053032994 +0.3625,0.6875,0.094494075,0.094494104 +0.3625,0.6875,0.06681743,0.1336348 +0.3625,0.6875,0.1336348,0.0668174 +0.3625,0.6875,0.11905506,0.11905503 +0.3625,0.6875,0.08418465,0.1683693 +0.3625,0.6875,0.1683693,0.08418465 +0.3625,0.7125,0.07500002,0.07499999 +0.3625,0.7125,0.053033024,0.10606605 +0.3625,0.7125,0.10606602,0.053032935 +0.3625,0.7125,0.094494075,0.094494045 +0.3625,0.7125,0.06681743,0.13363487 +0.3625,0.7125,0.1336348,0.06681734 +0.3625,0.7125,0.11905506,0.11905509 +0.3625,0.7125,0.08418465,0.1683693 +0.3625,0.7125,0.1683693,0.08418465 +0.3625,0.73749995,0.07500002,0.07499999 +0.3625,0.73749995,0.053033024,0.10606605 +0.3625,0.7375,0.10606602,0.053032994 +0.3625,0.73749995,0.094494075,0.094494045 +0.3625,0.73749995,0.06681743,0.1336348 +0.3625,0.7375,0.1336348,0.0668174 +0.3625,0.73749995,0.11905506,0.11905509 +0.3625,0.7375,0.08418465,0.1683693 +0.3625,0.7375,0.1683693,0.08418465 +0.3625,0.76250005,0.07500002,0.07499999 +0.3625,0.7625,0.053033024,0.10606599 +0.3625,0.7625,0.10606602,0.053032994 +0.3625,0.76250005,0.094494075,0.094494045 +0.3625,0.7625,0.06681743,0.1336348 +0.3625,0.7625,0.1336348,0.0668174 +0.3625,0.7625,0.11905506,0.11905503 +0.3625,0.7625,0.08418465,0.1683693 +0.3625,0.7625,0.1683693,0.08418465 +0.3625,0.7875,0.07500002,0.07499999 +0.3625,0.78749996,0.053033024,0.10606599 +0.3625,0.7875,0.10606602,0.053032994 +0.3625,0.7875,0.094494075,0.094494045 +0.3625,0.78749996,0.06681743,0.1336348 +0.3625,0.7875,0.1336348,0.0668174 +0.3625,0.78749996,0.11905506,0.11905503 +0.3625,0.7875,0.08418465,0.1683693 +0.3625,0.7875,0.1683693,0.08418465 +0.3625,0.8125,0.07500002,0.07500005 +0.3625,0.8125,0.053033024,0.10606599 +0.3625,0.8125,0.10606602,0.053033054 +0.3625,0.8125,0.094494075,0.094494104 +0.3625,0.8125,0.06681743,0.1336348 +0.3625,0.8125,0.1336348,0.06681746 +0.3625,0.8125,0.11905506,0.11905503 +0.3625,0.8125,0.08418465,0.1683693 +0.3625,0.8125,0.1683693,0.08418465 +0.3625,0.8375,0.07500002,0.07499999 +0.3625,0.8375,0.053033024,0.10606599 +0.3625,0.8375,0.10606602,0.053033054 +0.3625,0.8375,0.094494075,0.094494045 +0.3625,0.8375,0.06681743,0.1336348 +0.3625,0.8375,0.1336348,0.06681746 +0.3625,0.8375,0.11905506,0.11905503 +0.3625,0.8375,0.08418465,0.1683693 +0.3625,0.8375,0.1683693,0.08418465 +0.3625,0.86249995,0.07500002,0.07499999 +0.3625,0.86249995,0.053033024,0.10606593 +0.3625,0.86249995,0.10606602,0.053033054 +0.3625,0.86249995,0.094494075,0.094494045 +0.3625,0.86249995,0.06681743,0.1336348 +0.3625,0.86249995,0.1336348,0.06681746 +0.3625,0.86249995,0.11905506,0.11905497 +0.3625,0.8625,0.08418465,0.1683693 +0.3625,0.8625,0.1683693,0.08418465 +0.3625,0.88750005,0.07500002,0.07499999 +0.3625,0.88750005,0.053033024,0.10606593 +0.3625,0.88750005,0.10606602,0.053033054 +0.3625,0.88750005,0.094494075,0.094494045 +0.3625,0.88750005,0.06681743,0.13363475 +0.3625,0.88750005,0.1336348,0.06681746 +0.3625,0.88750005,0.11905506,0.11905497 +0.3625,0.8875,0.08418465,0.1683693 +0.3625,0.8875,0.1683693,0.08418465 +0.3625,0.9125,0.07500002,0.07499999 +0.3625,0.9125,0.053033024,0.10606593 +0.3625,0.9125,0.10606602,0.053033054 +0.3625,0.9125,0.094494075,0.094494045 +0.3625,0.9125,0.06681743,0.13363475 +0.3625,0.9125,0.1336348,0.06681746 +0.3625,0.9125,0.11905506,0.11905497 +0.3625,0.9125,0.08418465,0.1683693 +0.3625,0.9125,0.1683693,0.08418465 +0.3625,0.9375,0.07500002,0.07500005 +0.3625,0.9375,0.053033024,0.10606599 +0.3625,0.9375,0.10606602,0.053033113 +0.3625,0.9375,0.094494075,0.094494104 +0.3625,0.9375,0.06681743,0.1336348 +0.3625,0.9375,0.1336348,0.06681752 +0.3625,0.9375,0.11905506,0.11905503 +0.3625,0.9375,0.08418465,0.1683693 +0.3625,0.9375,0.1683693,0.08418465 +0.3625,0.9625,0.07500002,0.07499999 +0.3625,0.9625,0.053033024,0.10606593 +0.3625,0.9625,0.10606602,0.053033054 +0.3625,0.9625,0.094494075,0.094494045 +0.3625,0.9625,0.06681743,0.13363475 +0.3625,0.9625,0.1336348,0.06681746 +0.3625,0.9625,0.11905506,0.11905497 +0.3625,0.9625,0.08418465,0.1683693 +0.3625,0.9625,0.1683693,0.08418465 +0.3625,0.98749995,0.07500002,0.07499999 +0.3625,0.98749995,0.053033024,0.10606593 +0.3625,0.98749995,0.10606602,0.053033054 +0.3625,0.98749995,0.094494075,0.094494045 +0.3625,0.98749995,0.06681743,0.13363475 +0.3625,0.98749995,0.1336348,0.06681746 +0.3625,0.98749995,0.11905506,0.11905497 +0.3625,0.98749995,0.08418465,0.16836923 +0.3625,0.98749995,0.1683693,0.08418459 +0.3875,0.0125,0.07500002,0.075 +0.3875,0.012499997,0.053032994,0.10606602 +0.3875,0.012499999,0.10606602,0.05303301 +0.3875,0.012499999,0.094494075,0.09449408 +0.3875,0.012500001,0.0668174,0.1336348 +0.3875,0.012499999,0.13363484,0.0668174 +0.3875,0.012500001,0.11905506,0.11905508 +0.3875,0.012499999,0.08418465,0.1683693 +0.3875,0.012500002,0.1683693,0.084184654 +0.3875,0.0375,0.07500002,0.075 +0.3875,0.037499998,0.053032994,0.10606601 +0.3875,0.0375,0.10606602,0.05303301 +0.3875,0.0375,0.094494075,0.094494075 +0.3875,0.0375,0.0668174,0.1336348 +0.3875,0.0375,0.13363484,0.0668174 +0.3875,0.0375,0.11905506,0.11905508 +0.3875,0.0375,0.08418465,0.16836931 +0.3875,0.0375,0.1683693,0.08418466 +0.3875,0.0625,0.07500002,0.075 +0.3875,0.0625,0.053032994,0.10606602 +0.3875,0.0625,0.10606602,0.05303301 +0.3875,0.0625,0.094494075,0.094494075 +0.3875,0.0625,0.0668174,0.1336348 +0.3875,0.0625,0.13363484,0.0668174 +0.3875,0.0625,0.11905506,0.11905508 +0.3875,0.0625,0.08418465,0.16836932 +0.3875,0.0625,0.1683693,0.08418465 +0.3875,0.0875,0.07500002,0.075 +0.3875,0.08749999,0.053032994,0.10606601 +0.3875,0.087500006,0.10606602,0.053033013 +0.3875,0.087500006,0.094494075,0.09449408 +0.3875,0.087500006,0.0668174,0.1336348 +0.3875,0.0875,0.13363484,0.0668174 +0.3875,0.0875,0.11905506,0.11905508 +0.3875,0.0875,0.08418465,0.16836931 +0.3875,0.087500006,0.1683693,0.084184654 +0.3875,0.112500004,0.07500002,0.075 +0.3875,0.1125,0.053032994,0.10606601 +0.3875,0.112500004,0.10606602,0.05303301 +0.3875,0.1125,0.094494075,0.094494075 +0.3875,0.1125,0.0668174,0.1336348 +0.3875,0.1125,0.13363484,0.0668174 +0.3875,0.1125,0.11905506,0.119055085 +0.3875,0.112500004,0.08418465,0.16836931 +0.3875,0.1125,0.1683693,0.08418465 +0.3875,0.1375,0.07500002,0.074999996 +0.3875,0.1375,0.053032994,0.10606602 +0.3875,0.1375,0.10606602,0.053033024 +0.3875,0.1375,0.094494075,0.09449408 +0.3875,0.1375,0.0668174,0.1336348 +0.3875,0.1375,0.13363484,0.0668174 +0.3875,0.13749999,0.11905506,0.11905508 +0.3875,0.1375,0.08418465,0.1683693 +0.3875,0.1375,0.1683693,0.084184654 +0.3875,0.1625,0.07500002,0.075 +0.3875,0.16250001,0.053032994,0.106066026 +0.3875,0.1625,0.10606602,0.05303301 +0.3875,0.1625,0.094494075,0.094494075 +0.3875,0.1625,0.0668174,0.1336348 +0.3875,0.1625,0.13363484,0.0668174 +0.3875,0.1625,0.11905506,0.11905508 +0.3875,0.1625,0.08418465,0.1683693 +0.3875,0.1625,0.1683693,0.08418464 +0.3875,0.1875,0.07500002,0.07499999 +0.3875,0.1875,0.053032994,0.10606603 +0.3875,0.1875,0.10606602,0.053033024 +0.3875,0.1875,0.094494075,0.09449406 +0.3875,0.1875,0.0668174,0.1336348 +0.3875,0.1875,0.13363484,0.06681742 +0.3875,0.1875,0.11905506,0.11905509 +0.3875,0.1875,0.08418465,0.16836931 +0.3875,0.1875,0.1683693,0.08418465 +0.3875,0.2125,0.07500002,0.075 +0.3875,0.2125,0.053032994,0.10606603 +0.3875,0.2125,0.10606602,0.05303301 +0.3875,0.21249999,0.094494075,0.094494075 +0.3875,0.2125,0.0668174,0.1336348 +0.3875,0.2125,0.13363484,0.0668174 +0.3875,0.2125,0.11905506,0.11905509 +0.3875,0.2125,0.08418465,0.16836931 +0.3875,0.2125,0.1683693,0.08418465 +0.3875,0.23750001,0.07500002,0.075 +0.3875,0.2375,0.053032994,0.10606602 +0.3875,0.2375,0.10606602,0.053033024 +0.3875,0.2375,0.094494075,0.094494075 +0.3875,0.23750001,0.0668174,0.13363482 +0.3875,0.2375,0.13363484,0.06681743 +0.3875,0.2375,0.11905506,0.11905506 +0.3875,0.2375,0.08418465,0.16836932 +0.3875,0.23750001,0.1683693,0.08418466 +0.3875,0.2625,0.07500002,0.07500002 +0.3875,0.2625,0.053032994,0.10606603 +0.3875,0.2625,0.10606602,0.053033024 +0.3875,0.2625,0.094494075,0.094494075 +0.3875,0.2625,0.0668174,0.13363479 +0.3875,0.2625,0.13363484,0.06681743 +0.3875,0.2625,0.11905506,0.11905508 +0.3875,0.2625,0.08418465,0.1683693 +0.3875,0.2625,0.1683693,0.08418463 +0.3875,0.2875,0.07500002,0.07499999 +0.3875,0.2875,0.053032994,0.10606603 +0.3875,0.28750002,0.10606602,0.053033024 +0.3875,0.2875,0.094494075,0.094494045 +0.3875,0.2875,0.0668174,0.1336348 +0.3875,0.28750002,0.13363484,0.06681743 +0.3875,0.2875,0.11905506,0.11905508 +0.3875,0.2875,0.08418465,0.1683693 +0.3875,0.2875,0.1683693,0.08418465 +0.3875,0.3125,0.07500002,0.07499999 +0.3875,0.3125,0.053032994,0.10606605 +0.3875,0.3125,0.10606602,0.053032994 +0.3875,0.3125,0.094494075,0.094494045 +0.3875,0.3125,0.0668174,0.1336348 +0.3875,0.3125,0.13363484,0.0668174 +0.3875,0.3125,0.11905506,0.11905509 +0.3875,0.3125,0.08418465,0.1683693 +0.3875,0.3125,0.1683693,0.08418465 +0.3875,0.3375,0.07500002,0.07499999 +0.3875,0.3375,0.053032994,0.10606605 +0.3875,0.33749998,0.10606602,0.053033024 +0.3875,0.3375,0.094494075,0.094494045 +0.3875,0.33750004,0.0668174,0.13363484 +0.3875,0.33749998,0.13363484,0.06681743 +0.3875,0.3375,0.11905506,0.11905509 +0.3875,0.3375,0.08418465,0.1683693 +0.3875,0.3375,0.1683693,0.08418465 +0.3875,0.3625,0.07500002,0.07500002 +0.3875,0.3625,0.053032994,0.10606602 +0.3875,0.3625,0.10606602,0.053033024 +0.3875,0.3625,0.094494075,0.094494075 +0.3875,0.3625,0.0668174,0.1336348 +0.3875,0.3625,0.13363484,0.06681743 +0.3875,0.3625,0.11905506,0.11905506 +0.3875,0.3625,0.08418465,0.1683693 +0.3875,0.3625,0.1683693,0.08418465 +0.3875,0.3875,0.07500002,0.07500002 +0.3875,0.3875,0.053032994,0.10606602 +0.3875,0.3875,0.10606602,0.053032994 +0.3875,0.3875,0.094494075,0.094494075 +0.3875,0.3875,0.0668174,0.13363484 +0.3875,0.3875,0.13363484,0.0668174 +0.3875,0.3875,0.11905506,0.11905506 +0.3875,0.3875,0.08418465,0.1683693 +0.3875,0.3875,0.1683693,0.08418465 +0.3875,0.4125,0.07500002,0.07499999 +0.3875,0.4125,0.053032994,0.10606605 +0.3875,0.4125,0.10606602,0.053032994 +0.3875,0.4125,0.094494075,0.094494045 +0.3875,0.41250002,0.0668174,0.13363484 +0.3875,0.4125,0.13363484,0.0668174 +0.3875,0.4125,0.11905506,0.11905509 +0.3875,0.4125,0.08418465,0.1683693 +0.3875,0.4125,0.1683693,0.08418465 +0.3875,0.4375,0.07500002,0.07499999 +0.3875,0.4375,0.053032994,0.10606605 +0.3875,0.4375,0.10606602,0.053032994 +0.3875,0.4375,0.094494075,0.094494045 +0.3875,0.4375,0.0668174,0.1336348 +0.3875,0.4375,0.13363484,0.0668174 +0.3875,0.4375,0.11905506,0.11905509 +0.3875,0.4375,0.08418465,0.1683693 +0.3875,0.4375,0.1683693,0.08418465 +0.3875,0.4625,0.07500002,0.07499999 +0.3875,0.4625,0.053032994,0.10606605 +0.3875,0.46249998,0.10606602,0.053032964 +0.3875,0.4625,0.094494075,0.094494045 +0.3875,0.46250004,0.0668174,0.13363484 +0.3875,0.46249998,0.13363484,0.06681737 +0.3875,0.4625,0.11905506,0.11905509 +0.3875,0.46249998,0.08418465,0.16836926 +0.3875,0.46249998,0.1683693,0.08418462 +0.3875,0.48749998,0.07500002,0.07499999 +0.3875,0.4875,0.053032994,0.10606602 +0.3875,0.4875,0.10606602,0.053032994 +0.3875,0.48749998,0.094494075,0.094494045 +0.3875,0.4875,0.0668174,0.13363484 +0.3875,0.4875,0.13363484,0.0668174 +0.3875,0.4875,0.11905506,0.11905506 +0.3875,0.4875,0.08418465,0.1683693 +0.3875,0.4875,0.1683693,0.08418465 +0.3875,0.5125,0.07500002,0.07500002 +0.3875,0.51250005,0.053032994,0.10606605 +0.3875,0.5125,0.10606602,0.053032964 +0.3875,0.5125,0.094494075,0.094494075 +0.3875,0.51250005,0.0668174,0.13363487 +0.3875,0.5125,0.13363484,0.06681737 +0.3875,0.51250005,0.11905506,0.11905509 +0.3875,0.5125,0.08418465,0.1683693 +0.3875,0.5125,0.1683693,0.08418465 +0.3875,0.5375,0.07500002,0.07499999 +0.3875,0.5375,0.053032994,0.10606605 +0.3875,0.5375,0.10606602,0.053032935 +0.3875,0.5375,0.094494075,0.094494045 +0.3875,0.5375,0.0668174,0.13363487 +0.3875,0.5375,0.13363484,0.06681734 +0.3875,0.5375,0.11905506,0.11905509 +0.3875,0.5375,0.08418465,0.16836932 +0.3875,0.5375,0.1683693,0.08418468 +0.3875,0.5625,0.07500002,0.07500005 +0.3875,0.5625,0.053032994,0.10606599 +0.3875,0.5625,0.10606602,0.053032994 +0.3875,0.5625,0.094494075,0.094494104 +0.3875,0.5625,0.0668174,0.13363484 +0.3875,0.5625,0.13363484,0.0668174 +0.3875,0.5625,0.11905506,0.11905503 +0.3875,0.5625,0.08418465,0.1683693 +0.3875,0.5625,0.1683693,0.08418465 +0.3875,0.5875,0.07500002,0.07499999 +0.3875,0.5875,0.053032994,0.10606605 +0.3875,0.5875,0.10606602,0.053032935 +0.3875,0.5875,0.094494075,0.094494045 +0.3875,0.5875,0.0668174,0.13363487 +0.3875,0.5875,0.13363484,0.06681734 +0.3875,0.5875,0.11905506,0.11905509 +0.3875,0.5875,0.08418465,0.1683693 +0.3875,0.5875,0.1683693,0.08418465 +0.3875,0.61249995,0.07500002,0.07499999 +0.3875,0.61249995,0.053032994,0.10606605 +0.3875,0.6125,0.10606602,0.053032994 +0.3875,0.61249995,0.094494075,0.094494045 +0.3875,0.61249995,0.0668174,0.13363487 +0.3875,0.6125,0.13363484,0.0668174 +0.3875,0.61249995,0.11905506,0.11905509 +0.3875,0.6125,0.08418465,0.1683693 +0.3875,0.6125,0.1683693,0.08418465 +0.3875,0.63750005,0.07500002,0.07499999 +0.3875,0.63750005,0.053032994,0.10606605 +0.3875,0.6375,0.10606602,0.053032994 +0.3875,0.63750005,0.094494075,0.094494045 +0.3875,0.63750005,0.0668174,0.13363487 +0.3875,0.6375,0.13363484,0.0668174 +0.3875,0.63750005,0.11905506,0.11905509 +0.3875,0.6375,0.08418465,0.1683693 +0.3875,0.6375,0.1683693,0.08418465 +0.3875,0.6625,0.07500002,0.07499999 +0.3875,0.6625,0.053032994,0.10606605 +0.3875,0.6625,0.10606602,0.053032935 +0.3875,0.6625,0.094494075,0.094494045 +0.3875,0.6625,0.0668174,0.13363487 +0.3875,0.6625,0.13363484,0.06681734 +0.3875,0.6625,0.11905506,0.11905509 +0.3875,0.6625,0.08418465,0.1683693 +0.3875,0.6625,0.1683693,0.08418465 +0.3875,0.6875,0.07500002,0.07500005 +0.3875,0.6875,0.053032994,0.10606599 +0.3875,0.6875,0.10606602,0.053032994 +0.3875,0.6875,0.094494075,0.094494104 +0.3875,0.6875,0.0668174,0.1336348 +0.3875,0.6875,0.13363484,0.0668174 +0.3875,0.6875,0.11905506,0.11905503 +0.3875,0.6875,0.08418465,0.1683693 +0.3875,0.6875,0.1683693,0.08418465 +0.3875,0.7125,0.07500002,0.07499999 +0.3875,0.7125,0.053032994,0.10606605 +0.3875,0.7125,0.10606602,0.053032935 +0.3875,0.7125,0.094494075,0.094494045 +0.3875,0.7125,0.0668174,0.13363487 +0.3875,0.7125,0.13363484,0.06681734 +0.3875,0.7125,0.11905506,0.11905509 +0.3875,0.7125,0.08418465,0.1683693 +0.3875,0.7125,0.1683693,0.08418465 +0.3875,0.73749995,0.07500002,0.07499999 +0.3875,0.73749995,0.053032994,0.10606605 +0.3875,0.7375,0.10606602,0.053032994 +0.3875,0.73749995,0.094494075,0.094494045 +0.3875,0.73749995,0.0668174,0.1336348 +0.3875,0.7375,0.13363484,0.0668174 +0.3875,0.73749995,0.11905506,0.11905509 +0.3875,0.7375,0.08418465,0.1683693 +0.3875,0.7375,0.1683693,0.08418465 +0.3875,0.76250005,0.07500002,0.07499999 +0.3875,0.7625,0.053032994,0.10606599 +0.3875,0.7625,0.10606602,0.053032994 +0.3875,0.76250005,0.094494075,0.094494045 +0.3875,0.7625,0.0668174,0.1336348 +0.3875,0.7625,0.13363484,0.0668174 +0.3875,0.7625,0.11905506,0.11905503 +0.3875,0.7625,0.08418465,0.1683693 +0.3875,0.7625,0.1683693,0.08418465 +0.3875,0.7875,0.07500002,0.07499999 +0.3875,0.78749996,0.053032994,0.10606599 +0.3875,0.7875,0.10606602,0.053032994 +0.3875,0.7875,0.094494075,0.094494045 +0.3875,0.78749996,0.0668174,0.1336348 +0.3875,0.7875,0.13363484,0.0668174 +0.3875,0.78749996,0.11905506,0.11905503 +0.3875,0.7875,0.08418465,0.1683693 +0.3875,0.7875,0.1683693,0.08418465 +0.3875,0.8125,0.07500002,0.07500005 +0.3875,0.8125,0.053032994,0.10606599 +0.3875,0.8125,0.10606602,0.053033054 +0.3875,0.8125,0.094494075,0.094494104 +0.3875,0.8125,0.0668174,0.1336348 +0.3875,0.8125,0.13363484,0.06681746 +0.3875,0.8125,0.11905506,0.11905503 +0.3875,0.8125,0.08418465,0.1683693 +0.3875,0.8125,0.1683693,0.08418465 +0.3875,0.8375,0.07500002,0.07499999 +0.3875,0.8375,0.053032994,0.10606599 +0.3875,0.8375,0.10606602,0.053033054 +0.3875,0.8375,0.094494075,0.094494045 +0.3875,0.8375,0.0668174,0.1336348 +0.3875,0.8375,0.13363484,0.06681746 +0.3875,0.8375,0.11905506,0.11905503 +0.3875,0.8375,0.08418465,0.1683693 +0.3875,0.8375,0.1683693,0.08418465 +0.3875,0.86249995,0.07500002,0.07499999 +0.3875,0.86249995,0.053032994,0.10606593 +0.3875,0.86249995,0.10606602,0.053033054 +0.3875,0.86249995,0.094494075,0.094494045 +0.3875,0.86249995,0.0668174,0.1336348 +0.3875,0.86249995,0.13363484,0.06681746 +0.3875,0.86249995,0.11905506,0.11905497 +0.3875,0.8625,0.08418465,0.1683693 +0.3875,0.8625,0.1683693,0.08418465 +0.3875,0.88750005,0.07500002,0.07499999 +0.3875,0.88750005,0.053032994,0.10606593 +0.3875,0.88750005,0.10606602,0.053033054 +0.3875,0.88750005,0.094494075,0.094494045 +0.3875,0.88750005,0.0668174,0.13363475 +0.3875,0.88750005,0.13363484,0.06681746 +0.3875,0.88750005,0.11905506,0.11905497 +0.3875,0.8875,0.08418465,0.1683693 +0.3875,0.8875,0.1683693,0.08418465 +0.3875,0.9125,0.07500002,0.07499999 +0.3875,0.9125,0.053032994,0.10606593 +0.3875,0.9125,0.10606602,0.053033054 +0.3875,0.9125,0.094494075,0.094494045 +0.3875,0.9125,0.0668174,0.13363475 +0.3875,0.9125,0.13363484,0.06681746 +0.3875,0.9125,0.11905506,0.11905497 +0.3875,0.9125,0.08418465,0.1683693 +0.3875,0.9125,0.1683693,0.08418465 +0.3875,0.9375,0.07500002,0.07500005 +0.3875,0.9375,0.053032994,0.10606599 +0.3875,0.9375,0.10606602,0.053033113 +0.3875,0.9375,0.094494075,0.094494104 +0.3875,0.9375,0.0668174,0.1336348 +0.3875,0.9375,0.13363484,0.06681752 +0.3875,0.9375,0.11905506,0.11905503 +0.3875,0.9375,0.08418465,0.1683693 +0.3875,0.9375,0.1683693,0.08418465 +0.3875,0.9625,0.07500002,0.07499999 +0.3875,0.9625,0.053032994,0.10606593 +0.3875,0.9625,0.10606602,0.053033054 +0.3875,0.9625,0.094494075,0.094494045 +0.3875,0.9625,0.0668174,0.13363475 +0.3875,0.9625,0.13363484,0.06681746 +0.3875,0.9625,0.11905506,0.11905497 +0.3875,0.9625,0.08418465,0.1683693 +0.3875,0.9625,0.1683693,0.08418465 +0.3875,0.98749995,0.07500002,0.07499999 +0.3875,0.98749995,0.053032994,0.10606593 +0.3875,0.98749995,0.10606602,0.053033054 +0.3875,0.98749995,0.094494075,0.094494045 +0.3875,0.98749995,0.0668174,0.13363475 +0.3875,0.98749995,0.13363484,0.06681746 +0.3875,0.98749995,0.11905506,0.11905497 +0.3875,0.98749995,0.08418465,0.16836923 +0.3875,0.98749995,0.1683693,0.08418459 +0.4125,0.0125,0.07499999,0.075 +0.4125,0.012499997,0.053032994,0.10606602 +0.4125,0.012499999,0.10606605,0.05303301 +0.4125,0.012499999,0.094494045,0.09449408 +0.4125,0.012500001,0.0668174,0.1336348 +0.41250002,0.012499999,0.13363484,0.0668174 +0.4125,0.012500001,0.11905509,0.11905508 +0.4125,0.012499999,0.08418465,0.1683693 +0.4125,0.012500002,0.1683693,0.084184654 +0.4125,0.0375,0.07499999,0.075 +0.4125,0.037499998,0.053032994,0.10606601 +0.4125,0.0375,0.10606605,0.05303301 +0.4125,0.0375,0.094494045,0.094494075 +0.4125,0.0375,0.0668174,0.1336348 +0.41250002,0.0375,0.13363484,0.0668174 +0.4125,0.0375,0.11905509,0.11905508 +0.4125,0.0375,0.08418465,0.16836931 +0.4125,0.0375,0.1683693,0.08418466 +0.4125,0.0625,0.07499999,0.075 +0.4125,0.0625,0.053032994,0.10606602 +0.4125,0.0625,0.10606605,0.05303301 +0.4125,0.0625,0.094494045,0.094494075 +0.4125,0.0625,0.0668174,0.1336348 +0.41250002,0.0625,0.13363484,0.0668174 +0.4125,0.0625,0.11905509,0.11905508 +0.4125,0.0625,0.08418465,0.16836932 +0.4125,0.0625,0.1683693,0.08418465 +0.4125,0.0875,0.07499999,0.075 +0.4125,0.08749999,0.053032994,0.10606601 +0.4125,0.087500006,0.10606605,0.053033013 +0.4125,0.087500006,0.094494045,0.09449408 +0.4125,0.087500006,0.0668174,0.1336348 +0.41250002,0.0875,0.13363484,0.0668174 +0.4125,0.0875,0.11905509,0.11905508 +0.4125,0.0875,0.08418465,0.16836931 +0.4125,0.087500006,0.1683693,0.084184654 +0.4125,0.112500004,0.07499999,0.075 +0.4125,0.1125,0.053032994,0.10606601 +0.4125,0.112500004,0.10606605,0.05303301 +0.4125,0.1125,0.094494045,0.094494075 +0.4125,0.1125,0.0668174,0.1336348 +0.41250002,0.1125,0.13363484,0.0668174 +0.4125,0.1125,0.11905509,0.119055085 +0.4125,0.112500004,0.08418465,0.16836931 +0.4125,0.1125,0.1683693,0.08418465 +0.4125,0.1375,0.07499999,0.074999996 +0.4125,0.1375,0.053032994,0.10606602 +0.4125,0.1375,0.10606605,0.053033024 +0.4125,0.1375,0.094494045,0.09449408 +0.4125,0.1375,0.0668174,0.1336348 +0.41250002,0.1375,0.13363484,0.0668174 +0.4125,0.13749999,0.11905509,0.11905508 +0.4125,0.1375,0.08418465,0.1683693 +0.4125,0.1375,0.1683693,0.084184654 +0.4125,0.1625,0.07499999,0.075 +0.4125,0.16250001,0.053032994,0.106066026 +0.4125,0.1625,0.10606605,0.05303301 +0.4125,0.1625,0.094494045,0.094494075 +0.4125,0.1625,0.0668174,0.1336348 +0.41250002,0.1625,0.13363484,0.0668174 +0.4125,0.1625,0.11905509,0.11905508 +0.4125,0.1625,0.08418465,0.1683693 +0.4125,0.1625,0.1683693,0.08418464 +0.4125,0.1875,0.07499999,0.07499999 +0.4125,0.1875,0.053032994,0.10606603 +0.4125,0.1875,0.10606605,0.053033024 +0.4125,0.1875,0.094494045,0.09449406 +0.4125,0.1875,0.0668174,0.1336348 +0.41250002,0.1875,0.13363484,0.06681742 +0.4125,0.1875,0.11905509,0.11905509 +0.4125,0.1875,0.08418465,0.16836931 +0.4125,0.1875,0.1683693,0.08418465 +0.4125,0.2125,0.07499999,0.075 +0.4125,0.2125,0.053032994,0.10606603 +0.4125,0.2125,0.10606605,0.05303301 +0.4125,0.21249999,0.094494045,0.094494075 +0.4125,0.2125,0.0668174,0.1336348 +0.41250002,0.2125,0.13363484,0.0668174 +0.4125,0.2125,0.11905509,0.11905509 +0.4125,0.2125,0.08418465,0.16836931 +0.4125,0.2125,0.1683693,0.08418465 +0.4125,0.23750001,0.07499999,0.075 +0.4125,0.2375,0.053032994,0.10606602 +0.4125,0.2375,0.10606605,0.053033024 +0.4125,0.2375,0.094494045,0.094494075 +0.4125,0.23750001,0.0668174,0.13363482 +0.41250002,0.2375,0.13363484,0.06681743 +0.4125,0.2375,0.11905509,0.11905506 +0.4125,0.2375,0.08418465,0.16836932 +0.4125,0.23750001,0.1683693,0.08418466 +0.4125,0.2625,0.07499999,0.07500002 +0.4125,0.2625,0.053032994,0.10606603 +0.4125,0.2625,0.10606605,0.053033024 +0.4125,0.2625,0.094494045,0.094494075 +0.4125,0.2625,0.0668174,0.13363479 +0.41250002,0.2625,0.13363484,0.06681743 +0.4125,0.2625,0.11905509,0.11905508 +0.4125,0.2625,0.08418465,0.1683693 +0.4125,0.2625,0.1683693,0.08418463 +0.4125,0.2875,0.07499999,0.07499999 +0.4125,0.2875,0.053032994,0.10606603 +0.4125,0.28750002,0.10606605,0.053033024 +0.4125,0.2875,0.094494045,0.094494045 +0.4125,0.2875,0.0668174,0.1336348 +0.41250002,0.28750002,0.13363484,0.06681743 +0.4125,0.2875,0.11905509,0.11905508 +0.4125,0.2875,0.08418465,0.1683693 +0.4125,0.2875,0.1683693,0.08418465 +0.4125,0.3125,0.07499999,0.07499999 +0.4125,0.3125,0.053032994,0.10606605 +0.4125,0.3125,0.10606605,0.053032994 +0.4125,0.3125,0.094494045,0.094494045 +0.4125,0.3125,0.0668174,0.1336348 +0.41250002,0.3125,0.13363484,0.0668174 +0.4125,0.3125,0.11905509,0.11905509 +0.4125,0.3125,0.08418465,0.1683693 +0.4125,0.3125,0.1683693,0.08418465 +0.4125,0.3375,0.07499999,0.07499999 +0.4125,0.3375,0.053032994,0.10606605 +0.4125,0.33749998,0.10606605,0.053033024 +0.4125,0.3375,0.094494045,0.094494045 +0.4125,0.33750004,0.0668174,0.13363484 +0.41250002,0.33749998,0.13363484,0.06681743 +0.4125,0.3375,0.11905509,0.11905509 +0.4125,0.3375,0.08418465,0.1683693 +0.4125,0.3375,0.1683693,0.08418465 +0.4125,0.3625,0.07499999,0.07500002 +0.4125,0.3625,0.053032994,0.10606602 +0.4125,0.3625,0.10606605,0.053033024 +0.4125,0.3625,0.094494045,0.094494075 +0.4125,0.3625,0.0668174,0.1336348 +0.41250002,0.3625,0.13363484,0.06681743 +0.4125,0.3625,0.11905509,0.11905506 +0.4125,0.3625,0.08418465,0.1683693 +0.4125,0.3625,0.1683693,0.08418465 +0.4125,0.3875,0.07499999,0.07500002 +0.4125,0.3875,0.053032994,0.10606602 +0.4125,0.3875,0.10606605,0.053032994 +0.4125,0.3875,0.094494045,0.094494075 +0.4125,0.3875,0.0668174,0.13363484 +0.41250002,0.3875,0.13363484,0.0668174 +0.4125,0.3875,0.11905509,0.11905506 +0.4125,0.3875,0.08418465,0.1683693 +0.4125,0.3875,0.1683693,0.08418465 +0.4125,0.4125,0.07499999,0.07499999 +0.4125,0.4125,0.053032994,0.10606605 +0.4125,0.4125,0.10606605,0.053032994 +0.4125,0.4125,0.094494045,0.094494045 +0.4125,0.41250002,0.0668174,0.13363484 +0.41250002,0.4125,0.13363484,0.0668174 +0.4125,0.4125,0.11905509,0.11905509 +0.4125,0.4125,0.08418465,0.1683693 +0.4125,0.4125,0.1683693,0.08418465 +0.4125,0.4375,0.07499999,0.07499999 +0.4125,0.4375,0.053032994,0.10606605 +0.4125,0.4375,0.10606605,0.053032994 +0.4125,0.4375,0.094494045,0.094494045 +0.4125,0.4375,0.0668174,0.1336348 +0.41250002,0.4375,0.13363484,0.0668174 +0.4125,0.4375,0.11905509,0.11905509 +0.4125,0.4375,0.08418465,0.1683693 +0.4125,0.4375,0.1683693,0.08418465 +0.4125,0.4625,0.07499999,0.07499999 +0.4125,0.4625,0.053032994,0.10606605 +0.4125,0.46249998,0.10606605,0.053032964 +0.4125,0.4625,0.094494045,0.094494045 +0.4125,0.46250004,0.0668174,0.13363484 +0.41250002,0.46249998,0.13363484,0.06681737 +0.4125,0.4625,0.11905509,0.11905509 +0.4125,0.46249998,0.08418465,0.16836926 +0.4125,0.46249998,0.1683693,0.08418462 +0.4125,0.48749998,0.07499999,0.07499999 +0.4125,0.4875,0.053032994,0.10606602 +0.4125,0.4875,0.10606605,0.053032994 +0.4125,0.48749998,0.094494045,0.094494045 +0.4125,0.4875,0.0668174,0.13363484 +0.41250002,0.4875,0.13363484,0.0668174 +0.4125,0.4875,0.11905509,0.11905506 +0.4125,0.4875,0.08418465,0.1683693 +0.4125,0.4875,0.1683693,0.08418465 +0.4125,0.5125,0.07499999,0.07500002 +0.4125,0.51250005,0.053032994,0.10606605 +0.4125,0.5125,0.10606605,0.053032964 +0.4125,0.5125,0.094494045,0.094494075 +0.4125,0.51250005,0.0668174,0.13363487 +0.41250002,0.5125,0.13363484,0.06681737 +0.4125,0.51250005,0.11905509,0.11905509 +0.4125,0.5125,0.08418465,0.1683693 +0.4125,0.5125,0.1683693,0.08418465 +0.4125,0.5375,0.07499999,0.07499999 +0.4125,0.5375,0.053032994,0.10606605 +0.4125,0.5375,0.10606605,0.053032935 +0.4125,0.5375,0.094494045,0.094494045 +0.4125,0.5375,0.0668174,0.13363487 +0.41250002,0.5375,0.13363484,0.06681734 +0.4125,0.5375,0.11905509,0.11905509 +0.4125,0.5375,0.08418465,0.16836932 +0.4125,0.5375,0.1683693,0.08418468 +0.4125,0.5625,0.07499999,0.07500005 +0.4125,0.5625,0.053032994,0.10606599 +0.4125,0.5625,0.10606605,0.053032994 +0.4125,0.5625,0.094494045,0.094494104 +0.4125,0.5625,0.0668174,0.13363484 +0.41250002,0.5625,0.13363484,0.0668174 +0.4125,0.5625,0.11905509,0.11905503 +0.4125,0.5625,0.08418465,0.1683693 +0.4125,0.5625,0.1683693,0.08418465 +0.4125,0.5875,0.07499999,0.07499999 +0.4125,0.5875,0.053032994,0.10606605 +0.4125,0.5875,0.10606605,0.053032935 +0.4125,0.5875,0.094494045,0.094494045 +0.4125,0.5875,0.0668174,0.13363487 +0.41250002,0.5875,0.13363484,0.06681734 +0.4125,0.5875,0.11905509,0.11905509 +0.4125,0.5875,0.08418465,0.1683693 +0.4125,0.5875,0.1683693,0.08418465 +0.4125,0.61249995,0.07499999,0.07499999 +0.4125,0.61249995,0.053032994,0.10606605 +0.4125,0.6125,0.10606605,0.053032994 +0.4125,0.61249995,0.094494045,0.094494045 +0.4125,0.61249995,0.0668174,0.13363487 +0.41250002,0.6125,0.13363484,0.0668174 +0.4125,0.61249995,0.11905509,0.11905509 +0.4125,0.6125,0.08418465,0.1683693 +0.4125,0.6125,0.1683693,0.08418465 +0.4125,0.63750005,0.07499999,0.07499999 +0.4125,0.63750005,0.053032994,0.10606605 +0.4125,0.6375,0.10606605,0.053032994 +0.4125,0.63750005,0.094494045,0.094494045 +0.4125,0.63750005,0.0668174,0.13363487 +0.41250002,0.6375,0.13363484,0.0668174 +0.4125,0.63750005,0.11905509,0.11905509 +0.4125,0.6375,0.08418465,0.1683693 +0.4125,0.6375,0.1683693,0.08418465 +0.4125,0.6625,0.07499999,0.07499999 +0.4125,0.6625,0.053032994,0.10606605 +0.4125,0.6625,0.10606605,0.053032935 +0.4125,0.6625,0.094494045,0.094494045 +0.4125,0.6625,0.0668174,0.13363487 +0.41250002,0.6625,0.13363484,0.06681734 +0.4125,0.6625,0.11905509,0.11905509 +0.4125,0.6625,0.08418465,0.1683693 +0.4125,0.6625,0.1683693,0.08418465 +0.4125,0.6875,0.07499999,0.07500005 +0.4125,0.6875,0.053032994,0.10606599 +0.4125,0.6875,0.10606605,0.053032994 +0.4125,0.6875,0.094494045,0.094494104 +0.4125,0.6875,0.0668174,0.1336348 +0.41250002,0.6875,0.13363484,0.0668174 +0.4125,0.6875,0.11905509,0.11905503 +0.4125,0.6875,0.08418465,0.1683693 +0.4125,0.6875,0.1683693,0.08418465 +0.4125,0.7125,0.07499999,0.07499999 +0.4125,0.7125,0.053032994,0.10606605 +0.4125,0.7125,0.10606605,0.053032935 +0.4125,0.7125,0.094494045,0.094494045 +0.4125,0.7125,0.0668174,0.13363487 +0.41250002,0.7125,0.13363484,0.06681734 +0.4125,0.7125,0.11905509,0.11905509 +0.4125,0.7125,0.08418465,0.1683693 +0.4125,0.7125,0.1683693,0.08418465 +0.4125,0.73749995,0.07499999,0.07499999 +0.4125,0.73749995,0.053032994,0.10606605 +0.4125,0.7375,0.10606605,0.053032994 +0.4125,0.73749995,0.094494045,0.094494045 +0.4125,0.73749995,0.0668174,0.1336348 +0.41250002,0.7375,0.13363484,0.0668174 +0.4125,0.73749995,0.11905509,0.11905509 +0.4125,0.7375,0.08418465,0.1683693 +0.4125,0.7375,0.1683693,0.08418465 +0.4125,0.76250005,0.07499999,0.07499999 +0.4125,0.7625,0.053032994,0.10606599 +0.4125,0.7625,0.10606605,0.053032994 +0.4125,0.76250005,0.094494045,0.094494045 +0.4125,0.7625,0.0668174,0.1336348 +0.41250002,0.7625,0.13363484,0.0668174 +0.4125,0.7625,0.11905509,0.11905503 +0.4125,0.7625,0.08418465,0.1683693 +0.4125,0.7625,0.1683693,0.08418465 +0.4125,0.7875,0.07499999,0.07499999 +0.4125,0.78749996,0.053032994,0.10606599 +0.4125,0.7875,0.10606605,0.053032994 +0.4125,0.7875,0.094494045,0.094494045 +0.4125,0.78749996,0.0668174,0.1336348 +0.41250002,0.7875,0.13363484,0.0668174 +0.4125,0.78749996,0.11905509,0.11905503 +0.4125,0.7875,0.08418465,0.1683693 +0.4125,0.7875,0.1683693,0.08418465 +0.4125,0.8125,0.07499999,0.07500005 +0.4125,0.8125,0.053032994,0.10606599 +0.4125,0.8125,0.10606605,0.053033054 +0.4125,0.8125,0.094494045,0.094494104 +0.4125,0.8125,0.0668174,0.1336348 +0.41250002,0.8125,0.13363484,0.06681746 +0.4125,0.8125,0.11905509,0.11905503 +0.4125,0.8125,0.08418465,0.1683693 +0.4125,0.8125,0.1683693,0.08418465 +0.4125,0.8375,0.07499999,0.07499999 +0.4125,0.8375,0.053032994,0.10606599 +0.4125,0.8375,0.10606605,0.053033054 +0.4125,0.8375,0.094494045,0.094494045 +0.4125,0.8375,0.0668174,0.1336348 +0.41250002,0.8375,0.13363484,0.06681746 +0.4125,0.8375,0.11905509,0.11905503 +0.4125,0.8375,0.08418465,0.1683693 +0.4125,0.8375,0.1683693,0.08418465 +0.4125,0.86249995,0.07499999,0.07499999 +0.4125,0.86249995,0.053032994,0.10606593 +0.4125,0.86249995,0.10606605,0.053033054 +0.4125,0.86249995,0.094494045,0.094494045 +0.4125,0.86249995,0.0668174,0.1336348 +0.41250002,0.86249995,0.13363484,0.06681746 +0.4125,0.86249995,0.11905509,0.11905497 +0.4125,0.8625,0.08418465,0.1683693 +0.4125,0.8625,0.1683693,0.08418465 +0.4125,0.88750005,0.07499999,0.07499999 +0.4125,0.88750005,0.053032994,0.10606593 +0.4125,0.88750005,0.10606605,0.053033054 +0.4125,0.88750005,0.094494045,0.094494045 +0.4125,0.88750005,0.0668174,0.13363475 +0.41250002,0.88750005,0.13363484,0.06681746 +0.4125,0.88750005,0.11905509,0.11905497 +0.4125,0.8875,0.08418465,0.1683693 +0.4125,0.8875,0.1683693,0.08418465 +0.4125,0.9125,0.07499999,0.07499999 +0.4125,0.9125,0.053032994,0.10606593 +0.4125,0.9125,0.10606605,0.053033054 +0.4125,0.9125,0.094494045,0.094494045 +0.4125,0.9125,0.0668174,0.13363475 +0.41250002,0.9125,0.13363484,0.06681746 +0.4125,0.9125,0.11905509,0.11905497 +0.4125,0.9125,0.08418465,0.1683693 +0.4125,0.9125,0.1683693,0.08418465 +0.4125,0.9375,0.07499999,0.07500005 +0.4125,0.9375,0.053032994,0.10606599 +0.4125,0.9375,0.10606605,0.053033113 +0.4125,0.9375,0.094494045,0.094494104 +0.4125,0.9375,0.0668174,0.1336348 +0.41250002,0.9375,0.13363484,0.06681752 +0.4125,0.9375,0.11905509,0.11905503 +0.4125,0.9375,0.08418465,0.1683693 +0.4125,0.9375,0.1683693,0.08418465 +0.4125,0.9625,0.07499999,0.07499999 +0.4125,0.9625,0.053032994,0.10606593 +0.4125,0.9625,0.10606605,0.053033054 +0.4125,0.9625,0.094494045,0.094494045 +0.4125,0.9625,0.0668174,0.13363475 +0.41250002,0.9625,0.13363484,0.06681746 +0.4125,0.9625,0.11905509,0.11905497 +0.4125,0.9625,0.08418465,0.1683693 +0.4125,0.9625,0.1683693,0.08418465 +0.4125,0.98749995,0.07499999,0.07499999 +0.4125,0.98749995,0.053032994,0.10606593 +0.4125,0.98749995,0.10606605,0.053033054 +0.4125,0.98749995,0.094494045,0.094494045 +0.4125,0.98749995,0.0668174,0.13363475 +0.41250002,0.98749995,0.13363484,0.06681746 +0.4125,0.98749995,0.11905509,0.11905497 +0.4125,0.98749995,0.08418465,0.16836923 +0.4125,0.98749995,0.1683693,0.08418459 +0.4375,0.0125,0.07499999,0.075 +0.4375,0.012499997,0.053032994,0.10606602 +0.4375,0.012499999,0.10606605,0.05303301 +0.4375,0.012499999,0.094494045,0.09449408 +0.4375,0.012500001,0.0668174,0.1336348 +0.4375,0.012499999,0.1336348,0.0668174 +0.4375,0.012500001,0.11905509,0.11905508 +0.4375,0.012499999,0.08418465,0.1683693 +0.4375,0.012500002,0.1683693,0.084184654 +0.4375,0.0375,0.07499999,0.075 +0.4375,0.037499998,0.053032994,0.10606601 +0.4375,0.0375,0.10606605,0.05303301 +0.4375,0.0375,0.094494045,0.094494075 +0.4375,0.0375,0.0668174,0.1336348 +0.4375,0.0375,0.1336348,0.0668174 +0.4375,0.0375,0.11905509,0.11905508 +0.4375,0.0375,0.08418465,0.16836931 +0.4375,0.0375,0.1683693,0.08418466 +0.4375,0.0625,0.07499999,0.075 +0.4375,0.0625,0.053032994,0.10606602 +0.4375,0.0625,0.10606605,0.05303301 +0.4375,0.0625,0.094494045,0.094494075 +0.4375,0.0625,0.0668174,0.1336348 +0.4375,0.0625,0.1336348,0.0668174 +0.4375,0.0625,0.11905509,0.11905508 +0.4375,0.0625,0.08418465,0.16836932 +0.4375,0.0625,0.1683693,0.08418465 +0.4375,0.0875,0.07499999,0.075 +0.4375,0.08749999,0.053032994,0.10606601 +0.4375,0.087500006,0.10606605,0.053033013 +0.4375,0.087500006,0.094494045,0.09449408 +0.4375,0.087500006,0.0668174,0.1336348 +0.4375,0.0875,0.1336348,0.0668174 +0.4375,0.0875,0.11905509,0.11905508 +0.4375,0.0875,0.08418465,0.16836931 +0.4375,0.087500006,0.1683693,0.084184654 +0.4375,0.112500004,0.07499999,0.075 +0.4375,0.1125,0.053032994,0.10606601 +0.4375,0.112500004,0.10606605,0.05303301 +0.4375,0.1125,0.094494045,0.094494075 +0.4375,0.1125,0.0668174,0.1336348 +0.4375,0.1125,0.1336348,0.0668174 +0.4375,0.1125,0.11905509,0.119055085 +0.4375,0.112500004,0.08418465,0.16836931 +0.4375,0.1125,0.1683693,0.08418465 +0.4375,0.1375,0.07499999,0.074999996 +0.4375,0.1375,0.053032994,0.10606602 +0.4375,0.1375,0.10606605,0.053033024 +0.4375,0.1375,0.094494045,0.09449408 +0.4375,0.1375,0.0668174,0.1336348 +0.4375,0.1375,0.1336348,0.0668174 +0.4375,0.13749999,0.11905509,0.11905508 +0.4375,0.1375,0.08418465,0.1683693 +0.4375,0.1375,0.1683693,0.084184654 +0.4375,0.1625,0.07499999,0.075 +0.4375,0.16250001,0.053032994,0.106066026 +0.4375,0.1625,0.10606605,0.05303301 +0.4375,0.1625,0.094494045,0.094494075 +0.4375,0.1625,0.0668174,0.1336348 +0.4375,0.1625,0.1336348,0.0668174 +0.4375,0.1625,0.11905509,0.11905508 +0.4375,0.1625,0.08418465,0.1683693 +0.4375,0.1625,0.1683693,0.08418464 +0.4375,0.1875,0.07499999,0.07499999 +0.4375,0.1875,0.053032994,0.10606603 +0.4375,0.1875,0.10606605,0.053033024 +0.4375,0.1875,0.094494045,0.09449406 +0.4375,0.1875,0.0668174,0.1336348 +0.4375,0.1875,0.1336348,0.06681742 +0.4375,0.1875,0.11905509,0.11905509 +0.4375,0.1875,0.08418465,0.16836931 +0.4375,0.1875,0.1683693,0.08418465 +0.4375,0.2125,0.07499999,0.075 +0.4375,0.2125,0.053032994,0.10606603 +0.4375,0.2125,0.10606605,0.05303301 +0.4375,0.21249999,0.094494045,0.094494075 +0.4375,0.2125,0.0668174,0.1336348 +0.4375,0.2125,0.1336348,0.0668174 +0.4375,0.2125,0.11905509,0.11905509 +0.4375,0.2125,0.08418465,0.16836931 +0.4375,0.2125,0.1683693,0.08418465 +0.4375,0.23750001,0.07499999,0.075 +0.4375,0.2375,0.053032994,0.10606602 +0.4375,0.2375,0.10606605,0.053033024 +0.4375,0.2375,0.094494045,0.094494075 +0.4375,0.23750001,0.0668174,0.13363482 +0.4375,0.2375,0.1336348,0.06681743 +0.4375,0.2375,0.11905509,0.11905506 +0.4375,0.2375,0.08418465,0.16836932 +0.4375,0.23750001,0.1683693,0.08418466 +0.4375,0.2625,0.07499999,0.07500002 +0.4375,0.2625,0.053032994,0.10606603 +0.4375,0.2625,0.10606605,0.053033024 +0.4375,0.2625,0.094494045,0.094494075 +0.4375,0.2625,0.0668174,0.13363479 +0.4375,0.2625,0.1336348,0.06681743 +0.4375,0.2625,0.11905509,0.11905508 +0.4375,0.2625,0.08418465,0.1683693 +0.4375,0.2625,0.1683693,0.08418463 +0.4375,0.2875,0.07499999,0.07499999 +0.4375,0.2875,0.053032994,0.10606603 +0.4375,0.28750002,0.10606605,0.053033024 +0.4375,0.2875,0.094494045,0.094494045 +0.4375,0.2875,0.0668174,0.1336348 +0.4375,0.28750002,0.1336348,0.06681743 +0.4375,0.2875,0.11905509,0.11905508 +0.4375,0.2875,0.08418465,0.1683693 +0.4375,0.2875,0.1683693,0.08418465 +0.4375,0.3125,0.07499999,0.07499999 +0.4375,0.3125,0.053032994,0.10606605 +0.4375,0.3125,0.10606605,0.053032994 +0.4375,0.3125,0.094494045,0.094494045 +0.4375,0.3125,0.0668174,0.1336348 +0.4375,0.3125,0.1336348,0.0668174 +0.4375,0.3125,0.11905509,0.11905509 +0.4375,0.3125,0.08418465,0.1683693 +0.4375,0.3125,0.1683693,0.08418465 +0.4375,0.3375,0.07499999,0.07499999 +0.4375,0.3375,0.053032994,0.10606605 +0.4375,0.33749998,0.10606605,0.053033024 +0.4375,0.3375,0.094494045,0.094494045 +0.4375,0.33750004,0.0668174,0.13363484 +0.4375,0.33749998,0.1336348,0.06681743 +0.4375,0.3375,0.11905509,0.11905509 +0.4375,0.3375,0.08418465,0.1683693 +0.4375,0.3375,0.1683693,0.08418465 +0.4375,0.3625,0.07499999,0.07500002 +0.4375,0.3625,0.053032994,0.10606602 +0.4375,0.3625,0.10606605,0.053033024 +0.4375,0.3625,0.094494045,0.094494075 +0.4375,0.3625,0.0668174,0.1336348 +0.4375,0.3625,0.1336348,0.06681743 +0.4375,0.3625,0.11905509,0.11905506 +0.4375,0.3625,0.08418465,0.1683693 +0.4375,0.3625,0.1683693,0.08418465 +0.4375,0.3875,0.07499999,0.07500002 +0.4375,0.3875,0.053032994,0.10606602 +0.4375,0.3875,0.10606605,0.053032994 +0.4375,0.3875,0.094494045,0.094494075 +0.4375,0.3875,0.0668174,0.13363484 +0.4375,0.3875,0.1336348,0.0668174 +0.4375,0.3875,0.11905509,0.11905506 +0.4375,0.3875,0.08418465,0.1683693 +0.4375,0.3875,0.1683693,0.08418465 +0.4375,0.4125,0.07499999,0.07499999 +0.4375,0.4125,0.053032994,0.10606605 +0.4375,0.4125,0.10606605,0.053032994 +0.4375,0.4125,0.094494045,0.094494045 +0.4375,0.41250002,0.0668174,0.13363484 +0.4375,0.4125,0.1336348,0.0668174 +0.4375,0.4125,0.11905509,0.11905509 +0.4375,0.4125,0.08418465,0.1683693 +0.4375,0.4125,0.1683693,0.08418465 +0.4375,0.4375,0.07499999,0.07499999 +0.4375,0.4375,0.053032994,0.10606605 +0.4375,0.4375,0.10606605,0.053032994 +0.4375,0.4375,0.094494045,0.094494045 +0.4375,0.4375,0.0668174,0.1336348 +0.4375,0.4375,0.1336348,0.0668174 +0.4375,0.4375,0.11905509,0.11905509 +0.4375,0.4375,0.08418465,0.1683693 +0.4375,0.4375,0.1683693,0.08418465 +0.4375,0.4625,0.07499999,0.07499999 +0.4375,0.4625,0.053032994,0.10606605 +0.4375,0.46249998,0.10606605,0.053032964 +0.4375,0.4625,0.094494045,0.094494045 +0.4375,0.46250004,0.0668174,0.13363484 +0.4375,0.46249998,0.1336348,0.06681737 +0.4375,0.4625,0.11905509,0.11905509 +0.4375,0.46249998,0.08418465,0.16836926 +0.4375,0.46249998,0.1683693,0.08418462 +0.4375,0.48749998,0.07499999,0.07499999 +0.4375,0.4875,0.053032994,0.10606602 +0.4375,0.4875,0.10606605,0.053032994 +0.4375,0.48749998,0.094494045,0.094494045 +0.4375,0.4875,0.0668174,0.13363484 +0.4375,0.4875,0.1336348,0.0668174 +0.4375,0.4875,0.11905509,0.11905506 +0.4375,0.4875,0.08418465,0.1683693 +0.4375,0.4875,0.1683693,0.08418465 +0.4375,0.5125,0.07499999,0.07500002 +0.4375,0.51250005,0.053032994,0.10606605 +0.4375,0.5125,0.10606605,0.053032964 +0.4375,0.5125,0.094494045,0.094494075 +0.4375,0.51250005,0.0668174,0.13363487 +0.4375,0.5125,0.1336348,0.06681737 +0.4375,0.51250005,0.11905509,0.11905509 +0.4375,0.5125,0.08418465,0.1683693 +0.4375,0.5125,0.1683693,0.08418465 +0.4375,0.5375,0.07499999,0.07499999 +0.4375,0.5375,0.053032994,0.10606605 +0.4375,0.5375,0.10606605,0.053032935 +0.4375,0.5375,0.094494045,0.094494045 +0.4375,0.5375,0.0668174,0.13363487 +0.4375,0.5375,0.1336348,0.06681734 +0.4375,0.5375,0.11905509,0.11905509 +0.4375,0.5375,0.08418465,0.16836932 +0.4375,0.5375,0.1683693,0.08418468 +0.4375,0.5625,0.07499999,0.07500005 +0.4375,0.5625,0.053032994,0.10606599 +0.4375,0.5625,0.10606605,0.053032994 +0.4375,0.5625,0.094494045,0.094494104 +0.4375,0.5625,0.0668174,0.13363484 +0.4375,0.5625,0.1336348,0.0668174 +0.4375,0.5625,0.11905509,0.11905503 +0.4375,0.5625,0.08418465,0.1683693 +0.4375,0.5625,0.1683693,0.08418465 +0.4375,0.5875,0.07499999,0.07499999 +0.4375,0.5875,0.053032994,0.10606605 +0.4375,0.5875,0.10606605,0.053032935 +0.4375,0.5875,0.094494045,0.094494045 +0.4375,0.5875,0.0668174,0.13363487 +0.4375,0.5875,0.1336348,0.06681734 +0.4375,0.5875,0.11905509,0.11905509 +0.4375,0.5875,0.08418465,0.1683693 +0.4375,0.5875,0.1683693,0.08418465 +0.4375,0.61249995,0.07499999,0.07499999 +0.4375,0.61249995,0.053032994,0.10606605 +0.4375,0.6125,0.10606605,0.053032994 +0.4375,0.61249995,0.094494045,0.094494045 +0.4375,0.61249995,0.0668174,0.13363487 +0.4375,0.6125,0.1336348,0.0668174 +0.4375,0.61249995,0.11905509,0.11905509 +0.4375,0.6125,0.08418465,0.1683693 +0.4375,0.6125,0.1683693,0.08418465 +0.4375,0.63750005,0.07499999,0.07499999 +0.4375,0.63750005,0.053032994,0.10606605 +0.4375,0.6375,0.10606605,0.053032994 +0.4375,0.63750005,0.094494045,0.094494045 +0.4375,0.63750005,0.0668174,0.13363487 +0.4375,0.6375,0.1336348,0.0668174 +0.4375,0.63750005,0.11905509,0.11905509 +0.4375,0.6375,0.08418465,0.1683693 +0.4375,0.6375,0.1683693,0.08418465 +0.4375,0.6625,0.07499999,0.07499999 +0.4375,0.6625,0.053032994,0.10606605 +0.4375,0.6625,0.10606605,0.053032935 +0.4375,0.6625,0.094494045,0.094494045 +0.4375,0.6625,0.0668174,0.13363487 +0.4375,0.6625,0.1336348,0.06681734 +0.4375,0.6625,0.11905509,0.11905509 +0.4375,0.6625,0.08418465,0.1683693 +0.4375,0.6625,0.1683693,0.08418465 +0.4375,0.6875,0.07499999,0.07500005 +0.4375,0.6875,0.053032994,0.10606599 +0.4375,0.6875,0.10606605,0.053032994 +0.4375,0.6875,0.094494045,0.094494104 +0.4375,0.6875,0.0668174,0.1336348 +0.4375,0.6875,0.1336348,0.0668174 +0.4375,0.6875,0.11905509,0.11905503 +0.4375,0.6875,0.08418465,0.1683693 +0.4375,0.6875,0.1683693,0.08418465 +0.4375,0.7125,0.07499999,0.07499999 +0.4375,0.7125,0.053032994,0.10606605 +0.4375,0.7125,0.10606605,0.053032935 +0.4375,0.7125,0.094494045,0.094494045 +0.4375,0.7125,0.0668174,0.13363487 +0.4375,0.7125,0.1336348,0.06681734 +0.4375,0.7125,0.11905509,0.11905509 +0.4375,0.7125,0.08418465,0.1683693 +0.4375,0.7125,0.1683693,0.08418465 +0.4375,0.73749995,0.07499999,0.07499999 +0.4375,0.73749995,0.053032994,0.10606605 +0.4375,0.7375,0.10606605,0.053032994 +0.4375,0.73749995,0.094494045,0.094494045 +0.4375,0.73749995,0.0668174,0.1336348 +0.4375,0.7375,0.1336348,0.0668174 +0.4375,0.73749995,0.11905509,0.11905509 +0.4375,0.7375,0.08418465,0.1683693 +0.4375,0.7375,0.1683693,0.08418465 +0.4375,0.76250005,0.07499999,0.07499999 +0.4375,0.7625,0.053032994,0.10606599 +0.4375,0.7625,0.10606605,0.053032994 +0.4375,0.76250005,0.094494045,0.094494045 +0.4375,0.7625,0.0668174,0.1336348 +0.4375,0.7625,0.1336348,0.0668174 +0.4375,0.7625,0.11905509,0.11905503 +0.4375,0.7625,0.08418465,0.1683693 +0.4375,0.7625,0.1683693,0.08418465 +0.4375,0.7875,0.07499999,0.07499999 +0.4375,0.78749996,0.053032994,0.10606599 +0.4375,0.7875,0.10606605,0.053032994 +0.4375,0.7875,0.094494045,0.094494045 +0.4375,0.78749996,0.0668174,0.1336348 +0.4375,0.7875,0.1336348,0.0668174 +0.4375,0.78749996,0.11905509,0.11905503 +0.4375,0.7875,0.08418465,0.1683693 +0.4375,0.7875,0.1683693,0.08418465 +0.4375,0.8125,0.07499999,0.07500005 +0.4375,0.8125,0.053032994,0.10606599 +0.4375,0.8125,0.10606605,0.053033054 +0.4375,0.8125,0.094494045,0.094494104 +0.4375,0.8125,0.0668174,0.1336348 +0.4375,0.8125,0.1336348,0.06681746 +0.4375,0.8125,0.11905509,0.11905503 +0.4375,0.8125,0.08418465,0.1683693 +0.4375,0.8125,0.1683693,0.08418465 +0.4375,0.8375,0.07499999,0.07499999 +0.4375,0.8375,0.053032994,0.10606599 +0.4375,0.8375,0.10606605,0.053033054 +0.4375,0.8375,0.094494045,0.094494045 +0.4375,0.8375,0.0668174,0.1336348 +0.4375,0.8375,0.1336348,0.06681746 +0.4375,0.8375,0.11905509,0.11905503 +0.4375,0.8375,0.08418465,0.1683693 +0.4375,0.8375,0.1683693,0.08418465 +0.4375,0.86249995,0.07499999,0.07499999 +0.4375,0.86249995,0.053032994,0.10606593 +0.4375,0.86249995,0.10606605,0.053033054 +0.4375,0.86249995,0.094494045,0.094494045 +0.4375,0.86249995,0.0668174,0.1336348 +0.4375,0.86249995,0.1336348,0.06681746 +0.4375,0.86249995,0.11905509,0.11905497 +0.4375,0.8625,0.08418465,0.1683693 +0.4375,0.8625,0.1683693,0.08418465 +0.4375,0.88750005,0.07499999,0.07499999 +0.4375,0.88750005,0.053032994,0.10606593 +0.4375,0.88750005,0.10606605,0.053033054 +0.4375,0.88750005,0.094494045,0.094494045 +0.4375,0.88750005,0.0668174,0.13363475 +0.4375,0.88750005,0.1336348,0.06681746 +0.4375,0.88750005,0.11905509,0.11905497 +0.4375,0.8875,0.08418465,0.1683693 +0.4375,0.8875,0.1683693,0.08418465 +0.4375,0.9125,0.07499999,0.07499999 +0.4375,0.9125,0.053032994,0.10606593 +0.4375,0.9125,0.10606605,0.053033054 +0.4375,0.9125,0.094494045,0.094494045 +0.4375,0.9125,0.0668174,0.13363475 +0.4375,0.9125,0.1336348,0.06681746 +0.4375,0.9125,0.11905509,0.11905497 +0.4375,0.9125,0.08418465,0.1683693 +0.4375,0.9125,0.1683693,0.08418465 +0.4375,0.9375,0.07499999,0.07500005 +0.4375,0.9375,0.053032994,0.10606599 +0.4375,0.9375,0.10606605,0.053033113 +0.4375,0.9375,0.094494045,0.094494104 +0.4375,0.9375,0.0668174,0.1336348 +0.4375,0.9375,0.1336348,0.06681752 +0.4375,0.9375,0.11905509,0.11905503 +0.4375,0.9375,0.08418465,0.1683693 +0.4375,0.9375,0.1683693,0.08418465 +0.4375,0.9625,0.07499999,0.07499999 +0.4375,0.9625,0.053032994,0.10606593 +0.4375,0.9625,0.10606605,0.053033054 +0.4375,0.9625,0.094494045,0.094494045 +0.4375,0.9625,0.0668174,0.13363475 +0.4375,0.9625,0.1336348,0.06681746 +0.4375,0.9625,0.11905509,0.11905497 +0.4375,0.9625,0.08418465,0.1683693 +0.4375,0.9625,0.1683693,0.08418465 +0.4375,0.98749995,0.07499999,0.07499999 +0.4375,0.98749995,0.053032994,0.10606593 +0.4375,0.98749995,0.10606605,0.053033054 +0.4375,0.98749995,0.094494045,0.094494045 +0.4375,0.98749995,0.0668174,0.13363475 +0.4375,0.98749995,0.1336348,0.06681746 +0.4375,0.98749995,0.11905509,0.11905497 +0.4375,0.98749995,0.08418465,0.16836923 +0.4375,0.98749995,0.1683693,0.08418459 +0.4625,0.0125,0.07499999,0.075 +0.46249998,0.012499997,0.053032964,0.10606602 +0.4625,0.012499999,0.10606605,0.05303301 +0.4625,0.012499999,0.094494045,0.09449408 +0.46249998,0.012500001,0.06681737,0.1336348 +0.46250004,0.012499999,0.13363484,0.0668174 +0.4625,0.012500001,0.11905509,0.11905508 +0.46249998,0.012499999,0.08418462,0.1683693 +0.46249998,0.012500002,0.16836926,0.084184654 +0.4625,0.0375,0.07499999,0.075 +0.46249998,0.037499998,0.053032964,0.10606601 +0.4625,0.0375,0.10606605,0.05303301 +0.4625,0.0375,0.094494045,0.094494075 +0.46249998,0.0375,0.06681737,0.1336348 +0.46250004,0.0375,0.13363484,0.0668174 +0.4625,0.0375,0.11905509,0.11905508 +0.46249998,0.0375,0.08418462,0.16836931 +0.46249998,0.0375,0.16836926,0.08418466 +0.4625,0.0625,0.07499999,0.075 +0.46249998,0.0625,0.053032964,0.10606602 +0.4625,0.0625,0.10606605,0.05303301 +0.4625,0.0625,0.094494045,0.094494075 +0.46249998,0.0625,0.06681737,0.1336348 +0.46250004,0.0625,0.13363484,0.0668174 +0.4625,0.0625,0.11905509,0.11905508 +0.46249998,0.0625,0.08418462,0.16836932 +0.46249998,0.0625,0.16836926,0.08418465 +0.4625,0.0875,0.07499999,0.075 +0.46249998,0.08749999,0.053032964,0.10606601 +0.4625,0.087500006,0.10606605,0.053033013 +0.4625,0.087500006,0.094494045,0.09449408 +0.46249998,0.087500006,0.06681737,0.1336348 +0.46250004,0.0875,0.13363484,0.0668174 +0.4625,0.0875,0.11905509,0.11905508 +0.46249998,0.0875,0.08418462,0.16836931 +0.46249998,0.087500006,0.16836926,0.084184654 +0.4625,0.112500004,0.07499999,0.075 +0.46249998,0.1125,0.053032964,0.10606601 +0.4625,0.112500004,0.10606605,0.05303301 +0.4625,0.1125,0.094494045,0.094494075 +0.46249998,0.1125,0.06681737,0.1336348 +0.46250004,0.1125,0.13363484,0.0668174 +0.4625,0.1125,0.11905509,0.119055085 +0.46249998,0.112500004,0.08418462,0.16836931 +0.46249998,0.1125,0.16836926,0.08418465 +0.4625,0.1375,0.07499999,0.074999996 +0.46249998,0.1375,0.053032964,0.10606602 +0.4625,0.1375,0.10606605,0.053033024 +0.4625,0.1375,0.094494045,0.09449408 +0.46249998,0.1375,0.06681737,0.1336348 +0.46250004,0.1375,0.13363484,0.0668174 +0.4625,0.13749999,0.11905509,0.11905508 +0.46249998,0.1375,0.08418462,0.1683693 +0.46249998,0.1375,0.16836926,0.084184654 +0.4625,0.1625,0.07499999,0.075 +0.46249998,0.16250001,0.053032964,0.106066026 +0.4625,0.1625,0.10606605,0.05303301 +0.4625,0.1625,0.094494045,0.094494075 +0.46249998,0.1625,0.06681737,0.1336348 +0.46250004,0.1625,0.13363484,0.0668174 +0.4625,0.1625,0.11905509,0.11905508 +0.46249998,0.1625,0.08418462,0.1683693 +0.46249998,0.1625,0.16836926,0.08418464 +0.4625,0.1875,0.07499999,0.07499999 +0.46249998,0.1875,0.053032964,0.10606603 +0.4625,0.1875,0.10606605,0.053033024 +0.4625,0.1875,0.094494045,0.09449406 +0.46249998,0.1875,0.06681737,0.1336348 +0.46250004,0.1875,0.13363484,0.06681742 +0.4625,0.1875,0.11905509,0.11905509 +0.46249998,0.1875,0.08418462,0.16836931 +0.46249998,0.1875,0.16836926,0.08418465 +0.4625,0.2125,0.07499999,0.075 +0.46249998,0.2125,0.053032964,0.10606603 +0.4625,0.2125,0.10606605,0.05303301 +0.4625,0.21249999,0.094494045,0.094494075 +0.46249998,0.2125,0.06681737,0.1336348 +0.46250004,0.2125,0.13363484,0.0668174 +0.4625,0.2125,0.11905509,0.11905509 +0.46249998,0.2125,0.08418462,0.16836931 +0.46249998,0.2125,0.16836926,0.08418465 +0.4625,0.23750001,0.07499999,0.075 +0.46249998,0.2375,0.053032964,0.10606602 +0.4625,0.2375,0.10606605,0.053033024 +0.4625,0.2375,0.094494045,0.094494075 +0.46249998,0.23750001,0.06681737,0.13363482 +0.46250004,0.2375,0.13363484,0.06681743 +0.4625,0.2375,0.11905509,0.11905506 +0.46249998,0.2375,0.08418462,0.16836932 +0.46249998,0.23750001,0.16836926,0.08418466 +0.4625,0.2625,0.07499999,0.07500002 +0.46249998,0.2625,0.053032964,0.10606603 +0.4625,0.2625,0.10606605,0.053033024 +0.4625,0.2625,0.094494045,0.094494075 +0.46249998,0.2625,0.06681737,0.13363479 +0.46250004,0.2625,0.13363484,0.06681743 +0.4625,0.2625,0.11905509,0.11905508 +0.46249998,0.2625,0.08418462,0.1683693 +0.46249998,0.2625,0.16836926,0.08418463 +0.4625,0.2875,0.07499999,0.07499999 +0.46249998,0.2875,0.053032964,0.10606603 +0.4625,0.28750002,0.10606605,0.053033024 +0.4625,0.2875,0.094494045,0.094494045 +0.46249998,0.2875,0.06681737,0.1336348 +0.46250004,0.28750002,0.13363484,0.06681743 +0.4625,0.2875,0.11905509,0.11905508 +0.46249998,0.2875,0.08418462,0.1683693 +0.46249998,0.2875,0.16836926,0.08418465 +0.4625,0.3125,0.07499999,0.07499999 +0.46249998,0.3125,0.053032964,0.10606605 +0.4625,0.3125,0.10606605,0.053032994 +0.4625,0.3125,0.094494045,0.094494045 +0.46249998,0.3125,0.06681737,0.1336348 +0.46250004,0.3125,0.13363484,0.0668174 +0.4625,0.3125,0.11905509,0.11905509 +0.46249998,0.3125,0.08418462,0.1683693 +0.46249998,0.3125,0.16836926,0.08418465 +0.4625,0.3375,0.07499999,0.07499999 +0.46249998,0.3375,0.053032964,0.10606605 +0.4625,0.33749998,0.10606605,0.053033024 +0.4625,0.3375,0.094494045,0.094494045 +0.46249998,0.33750004,0.06681737,0.13363484 +0.46250004,0.33749998,0.13363484,0.06681743 +0.4625,0.3375,0.11905509,0.11905509 +0.46249998,0.3375,0.08418462,0.1683693 +0.46249998,0.3375,0.16836926,0.08418465 +0.4625,0.3625,0.07499999,0.07500002 +0.46249998,0.3625,0.053032964,0.10606602 +0.4625,0.3625,0.10606605,0.053033024 +0.4625,0.3625,0.094494045,0.094494075 +0.46249998,0.3625,0.06681737,0.1336348 +0.46250004,0.3625,0.13363484,0.06681743 +0.4625,0.3625,0.11905509,0.11905506 +0.46249998,0.3625,0.08418462,0.1683693 +0.46249998,0.3625,0.16836926,0.08418465 +0.4625,0.3875,0.07499999,0.07500002 +0.46249998,0.3875,0.053032964,0.10606602 +0.4625,0.3875,0.10606605,0.053032994 +0.4625,0.3875,0.094494045,0.094494075 +0.46249998,0.3875,0.06681737,0.13363484 +0.46250004,0.3875,0.13363484,0.0668174 +0.4625,0.3875,0.11905509,0.11905506 +0.46249998,0.3875,0.08418462,0.1683693 +0.46249998,0.3875,0.16836926,0.08418465 +0.4625,0.4125,0.07499999,0.07499999 +0.46249998,0.4125,0.053032964,0.10606605 +0.4625,0.4125,0.10606605,0.053032994 +0.4625,0.4125,0.094494045,0.094494045 +0.46249998,0.41250002,0.06681737,0.13363484 +0.46250004,0.4125,0.13363484,0.0668174 +0.4625,0.4125,0.11905509,0.11905509 +0.46249998,0.4125,0.08418462,0.1683693 +0.46249998,0.4125,0.16836926,0.08418465 +0.4625,0.4375,0.07499999,0.07499999 +0.46249998,0.4375,0.053032964,0.10606605 +0.4625,0.4375,0.10606605,0.053032994 +0.4625,0.4375,0.094494045,0.094494045 +0.46249998,0.4375,0.06681737,0.1336348 +0.46250004,0.4375,0.13363484,0.0668174 +0.4625,0.4375,0.11905509,0.11905509 +0.46249998,0.4375,0.08418462,0.1683693 +0.46249998,0.4375,0.16836926,0.08418465 +0.4625,0.4625,0.07499999,0.07499999 +0.46249998,0.4625,0.053032964,0.10606605 +0.4625,0.46249998,0.10606605,0.053032964 +0.4625,0.4625,0.094494045,0.094494045 +0.46249998,0.46250004,0.06681737,0.13363484 +0.46250004,0.46249998,0.13363484,0.06681737 +0.4625,0.4625,0.11905509,0.11905509 +0.46249998,0.46249998,0.08418462,0.16836926 +0.46249998,0.46249998,0.16836926,0.08418462 +0.4625,0.48749998,0.07499999,0.07499999 +0.46249998,0.4875,0.053032964,0.10606602 +0.4625,0.4875,0.10606605,0.053032994 +0.4625,0.48749998,0.094494045,0.094494045 +0.46249998,0.4875,0.06681737,0.13363484 +0.46250004,0.4875,0.13363484,0.0668174 +0.4625,0.4875,0.11905509,0.11905506 +0.46249998,0.4875,0.08418462,0.1683693 +0.46249998,0.4875,0.16836926,0.08418465 +0.4625,0.5125,0.07499999,0.07500002 +0.46249998,0.51250005,0.053032964,0.10606605 +0.4625,0.5125,0.10606605,0.053032964 +0.4625,0.5125,0.094494045,0.094494075 +0.46249998,0.51250005,0.06681737,0.13363487 +0.46250004,0.5125,0.13363484,0.06681737 +0.4625,0.51250005,0.11905509,0.11905509 +0.46249998,0.5125,0.08418462,0.1683693 +0.46249998,0.5125,0.16836926,0.08418465 +0.4625,0.5375,0.07499999,0.07499999 +0.46249998,0.5375,0.053032964,0.10606605 +0.4625,0.5375,0.10606605,0.053032935 +0.4625,0.5375,0.094494045,0.094494045 +0.46249998,0.5375,0.06681737,0.13363487 +0.46250004,0.5375,0.13363484,0.06681734 +0.4625,0.5375,0.11905509,0.11905509 +0.46249998,0.5375,0.08418462,0.16836932 +0.46249998,0.5375,0.16836926,0.08418468 +0.4625,0.5625,0.07499999,0.07500005 +0.46249998,0.5625,0.053032964,0.10606599 +0.4625,0.5625,0.10606605,0.053032994 +0.4625,0.5625,0.094494045,0.094494104 +0.46249998,0.5625,0.06681737,0.13363484 +0.46250004,0.5625,0.13363484,0.0668174 +0.4625,0.5625,0.11905509,0.11905503 +0.46249998,0.5625,0.08418462,0.1683693 +0.46249998,0.5625,0.16836926,0.08418465 +0.4625,0.5875,0.07499999,0.07499999 +0.46249998,0.5875,0.053032964,0.10606605 +0.4625,0.5875,0.10606605,0.053032935 +0.4625,0.5875,0.094494045,0.094494045 +0.46249998,0.5875,0.06681737,0.13363487 +0.46250004,0.5875,0.13363484,0.06681734 +0.4625,0.5875,0.11905509,0.11905509 +0.46249998,0.5875,0.08418462,0.1683693 +0.46249998,0.5875,0.16836926,0.08418465 +0.4625,0.61249995,0.07499999,0.07499999 +0.46249998,0.61249995,0.053032964,0.10606605 +0.4625,0.6125,0.10606605,0.053032994 +0.4625,0.61249995,0.094494045,0.094494045 +0.46249998,0.61249995,0.06681737,0.13363487 +0.46250004,0.6125,0.13363484,0.0668174 +0.4625,0.61249995,0.11905509,0.11905509 +0.46249998,0.6125,0.08418462,0.1683693 +0.46249998,0.6125,0.16836926,0.08418465 +0.4625,0.63750005,0.07499999,0.07499999 +0.46249998,0.63750005,0.053032964,0.10606605 +0.4625,0.6375,0.10606605,0.053032994 +0.4625,0.63750005,0.094494045,0.094494045 +0.46249998,0.63750005,0.06681737,0.13363487 +0.46250004,0.6375,0.13363484,0.0668174 +0.4625,0.63750005,0.11905509,0.11905509 +0.46249998,0.6375,0.08418462,0.1683693 +0.46249998,0.6375,0.16836926,0.08418465 +0.4625,0.6625,0.07499999,0.07499999 +0.46249998,0.6625,0.053032964,0.10606605 +0.4625,0.6625,0.10606605,0.053032935 +0.4625,0.6625,0.094494045,0.094494045 +0.46249998,0.6625,0.06681737,0.13363487 +0.46250004,0.6625,0.13363484,0.06681734 +0.4625,0.6625,0.11905509,0.11905509 +0.46249998,0.6625,0.08418462,0.1683693 +0.46249998,0.6625,0.16836926,0.08418465 +0.4625,0.6875,0.07499999,0.07500005 +0.46249998,0.6875,0.053032964,0.10606599 +0.4625,0.6875,0.10606605,0.053032994 +0.4625,0.6875,0.094494045,0.094494104 +0.46249998,0.6875,0.06681737,0.1336348 +0.46250004,0.6875,0.13363484,0.0668174 +0.4625,0.6875,0.11905509,0.11905503 +0.46249998,0.6875,0.08418462,0.1683693 +0.46249998,0.6875,0.16836926,0.08418465 +0.4625,0.7125,0.07499999,0.07499999 +0.46249998,0.7125,0.053032964,0.10606605 +0.4625,0.7125,0.10606605,0.053032935 +0.4625,0.7125,0.094494045,0.094494045 +0.46249998,0.7125,0.06681737,0.13363487 +0.46250004,0.7125,0.13363484,0.06681734 +0.4625,0.7125,0.11905509,0.11905509 +0.46249998,0.7125,0.08418462,0.1683693 +0.46249998,0.7125,0.16836926,0.08418465 +0.4625,0.73749995,0.07499999,0.07499999 +0.46249998,0.73749995,0.053032964,0.10606605 +0.4625,0.7375,0.10606605,0.053032994 +0.4625,0.73749995,0.094494045,0.094494045 +0.46249998,0.73749995,0.06681737,0.1336348 +0.46250004,0.7375,0.13363484,0.0668174 +0.4625,0.73749995,0.11905509,0.11905509 +0.46249998,0.7375,0.08418462,0.1683693 +0.46249998,0.7375,0.16836926,0.08418465 +0.4625,0.76250005,0.07499999,0.07499999 +0.46249998,0.7625,0.053032964,0.10606599 +0.4625,0.7625,0.10606605,0.053032994 +0.4625,0.76250005,0.094494045,0.094494045 +0.46249998,0.7625,0.06681737,0.1336348 +0.46250004,0.7625,0.13363484,0.0668174 +0.4625,0.7625,0.11905509,0.11905503 +0.46249998,0.7625,0.08418462,0.1683693 +0.46249998,0.7625,0.16836926,0.08418465 +0.4625,0.7875,0.07499999,0.07499999 +0.46249998,0.78749996,0.053032964,0.10606599 +0.4625,0.7875,0.10606605,0.053032994 +0.4625,0.7875,0.094494045,0.094494045 +0.46249998,0.78749996,0.06681737,0.1336348 +0.46250004,0.7875,0.13363484,0.0668174 +0.4625,0.78749996,0.11905509,0.11905503 +0.46249998,0.7875,0.08418462,0.1683693 +0.46249998,0.7875,0.16836926,0.08418465 +0.4625,0.8125,0.07499999,0.07500005 +0.46249998,0.8125,0.053032964,0.10606599 +0.4625,0.8125,0.10606605,0.053033054 +0.4625,0.8125,0.094494045,0.094494104 +0.46249998,0.8125,0.06681737,0.1336348 +0.46250004,0.8125,0.13363484,0.06681746 +0.4625,0.8125,0.11905509,0.11905503 +0.46249998,0.8125,0.08418462,0.1683693 +0.46249998,0.8125,0.16836926,0.08418465 +0.4625,0.8375,0.07499999,0.07499999 +0.46249998,0.8375,0.053032964,0.10606599 +0.4625,0.8375,0.10606605,0.053033054 +0.4625,0.8375,0.094494045,0.094494045 +0.46249998,0.8375,0.06681737,0.1336348 +0.46250004,0.8375,0.13363484,0.06681746 +0.4625,0.8375,0.11905509,0.11905503 +0.46249998,0.8375,0.08418462,0.1683693 +0.46249998,0.8375,0.16836926,0.08418465 +0.4625,0.86249995,0.07499999,0.07499999 +0.46249998,0.86249995,0.053032964,0.10606593 +0.4625,0.86249995,0.10606605,0.053033054 +0.4625,0.86249995,0.094494045,0.094494045 +0.46249998,0.86249995,0.06681737,0.1336348 +0.46250004,0.86249995,0.13363484,0.06681746 +0.4625,0.86249995,0.11905509,0.11905497 +0.46249998,0.8625,0.08418462,0.1683693 +0.46249998,0.8625,0.16836926,0.08418465 +0.4625,0.88750005,0.07499999,0.07499999 +0.46249998,0.88750005,0.053032964,0.10606593 +0.4625,0.88750005,0.10606605,0.053033054 +0.4625,0.88750005,0.094494045,0.094494045 +0.46249998,0.88750005,0.06681737,0.13363475 +0.46250004,0.88750005,0.13363484,0.06681746 +0.4625,0.88750005,0.11905509,0.11905497 +0.46249998,0.8875,0.08418462,0.1683693 +0.46249998,0.8875,0.16836926,0.08418465 +0.4625,0.9125,0.07499999,0.07499999 +0.46249998,0.9125,0.053032964,0.10606593 +0.4625,0.9125,0.10606605,0.053033054 +0.4625,0.9125,0.094494045,0.094494045 +0.46249998,0.9125,0.06681737,0.13363475 +0.46250004,0.9125,0.13363484,0.06681746 +0.4625,0.9125,0.11905509,0.11905497 +0.46249998,0.9125,0.08418462,0.1683693 +0.46249998,0.9125,0.16836926,0.08418465 +0.4625,0.9375,0.07499999,0.07500005 +0.46249998,0.9375,0.053032964,0.10606599 +0.4625,0.9375,0.10606605,0.053033113 +0.4625,0.9375,0.094494045,0.094494104 +0.46249998,0.9375,0.06681737,0.1336348 +0.46250004,0.9375,0.13363484,0.06681752 +0.4625,0.9375,0.11905509,0.11905503 +0.46249998,0.9375,0.08418462,0.1683693 +0.46249998,0.9375,0.16836926,0.08418465 +0.4625,0.9625,0.07499999,0.07499999 +0.46249998,0.9625,0.053032964,0.10606593 +0.4625,0.9625,0.10606605,0.053033054 +0.4625,0.9625,0.094494045,0.094494045 +0.46249998,0.9625,0.06681737,0.13363475 +0.46250004,0.9625,0.13363484,0.06681746 +0.4625,0.9625,0.11905509,0.11905497 +0.46249998,0.9625,0.08418462,0.1683693 +0.46249998,0.9625,0.16836926,0.08418465 +0.4625,0.98749995,0.07499999,0.07499999 +0.46249998,0.98749995,0.053032964,0.10606593 +0.4625,0.98749995,0.10606605,0.053033054 +0.4625,0.98749995,0.094494045,0.094494045 +0.46249998,0.98749995,0.06681737,0.13363475 +0.46250004,0.98749995,0.13363484,0.06681746 +0.4625,0.98749995,0.11905509,0.11905497 +0.46249998,0.98749995,0.08418462,0.16836923 +0.46249998,0.98749995,0.16836926,0.08418459 +0.48749998,0.0125,0.07499999,0.075 +0.4875,0.012499997,0.053032994,0.10606602 +0.4875,0.012499999,0.10606602,0.05303301 +0.48749998,0.012499999,0.094494045,0.09449408 +0.4875,0.012500001,0.0668174,0.1336348 +0.4875,0.012499999,0.13363484,0.0668174 +0.4875,0.012500001,0.11905506,0.11905508 +0.4875,0.012499999,0.08418465,0.1683693 +0.4875,0.012500002,0.1683693,0.084184654 +0.48749998,0.0375,0.07499999,0.075 +0.4875,0.037499998,0.053032994,0.10606601 +0.4875,0.0375,0.10606602,0.05303301 +0.48749998,0.0375,0.094494045,0.094494075 +0.4875,0.0375,0.0668174,0.1336348 +0.4875,0.0375,0.13363484,0.0668174 +0.4875,0.0375,0.11905506,0.11905508 +0.4875,0.0375,0.08418465,0.16836931 +0.4875,0.0375,0.1683693,0.08418466 +0.48749998,0.0625,0.07499999,0.075 +0.4875,0.0625,0.053032994,0.10606602 +0.4875,0.0625,0.10606602,0.05303301 +0.48749998,0.0625,0.094494045,0.094494075 +0.4875,0.0625,0.0668174,0.1336348 +0.4875,0.0625,0.13363484,0.0668174 +0.4875,0.0625,0.11905506,0.11905508 +0.4875,0.0625,0.08418465,0.16836932 +0.4875,0.0625,0.1683693,0.08418465 +0.48749998,0.0875,0.07499999,0.075 +0.4875,0.08749999,0.053032994,0.10606601 +0.4875,0.087500006,0.10606602,0.053033013 +0.48749998,0.087500006,0.094494045,0.09449408 +0.4875,0.087500006,0.0668174,0.1336348 +0.4875,0.0875,0.13363484,0.0668174 +0.4875,0.0875,0.11905506,0.11905508 +0.4875,0.0875,0.08418465,0.16836931 +0.4875,0.087500006,0.1683693,0.084184654 +0.48749998,0.112500004,0.07499999,0.075 +0.4875,0.1125,0.053032994,0.10606601 +0.4875,0.112500004,0.10606602,0.05303301 +0.48749998,0.1125,0.094494045,0.094494075 +0.4875,0.1125,0.0668174,0.1336348 +0.4875,0.1125,0.13363484,0.0668174 +0.4875,0.1125,0.11905506,0.119055085 +0.4875,0.112500004,0.08418465,0.16836931 +0.4875,0.1125,0.1683693,0.08418465 +0.48749998,0.1375,0.07499999,0.074999996 +0.4875,0.1375,0.053032994,0.10606602 +0.4875,0.1375,0.10606602,0.053033024 +0.48749998,0.1375,0.094494045,0.09449408 +0.4875,0.1375,0.0668174,0.1336348 +0.4875,0.1375,0.13363484,0.0668174 +0.4875,0.13749999,0.11905506,0.11905508 +0.4875,0.1375,0.08418465,0.1683693 +0.4875,0.1375,0.1683693,0.084184654 +0.48749998,0.1625,0.07499999,0.075 +0.4875,0.16250001,0.053032994,0.106066026 +0.4875,0.1625,0.10606602,0.05303301 +0.48749998,0.1625,0.094494045,0.094494075 +0.4875,0.1625,0.0668174,0.1336348 +0.4875,0.1625,0.13363484,0.0668174 +0.4875,0.1625,0.11905506,0.11905508 +0.4875,0.1625,0.08418465,0.1683693 +0.4875,0.1625,0.1683693,0.08418464 +0.48749998,0.1875,0.07499999,0.07499999 +0.4875,0.1875,0.053032994,0.10606603 +0.4875,0.1875,0.10606602,0.053033024 +0.48749998,0.1875,0.094494045,0.09449406 +0.4875,0.1875,0.0668174,0.1336348 +0.4875,0.1875,0.13363484,0.06681742 +0.4875,0.1875,0.11905506,0.11905509 +0.4875,0.1875,0.08418465,0.16836931 +0.4875,0.1875,0.1683693,0.08418465 +0.48749998,0.2125,0.07499999,0.075 +0.4875,0.2125,0.053032994,0.10606603 +0.4875,0.2125,0.10606602,0.05303301 +0.48749998,0.21249999,0.094494045,0.094494075 +0.4875,0.2125,0.0668174,0.1336348 +0.4875,0.2125,0.13363484,0.0668174 +0.4875,0.2125,0.11905506,0.11905509 +0.4875,0.2125,0.08418465,0.16836931 +0.4875,0.2125,0.1683693,0.08418465 +0.48749998,0.23750001,0.07499999,0.075 +0.4875,0.2375,0.053032994,0.10606602 +0.4875,0.2375,0.10606602,0.053033024 +0.48749998,0.2375,0.094494045,0.094494075 +0.4875,0.23750001,0.0668174,0.13363482 +0.4875,0.2375,0.13363484,0.06681743 +0.4875,0.2375,0.11905506,0.11905506 +0.4875,0.2375,0.08418465,0.16836932 +0.4875,0.23750001,0.1683693,0.08418466 +0.48749998,0.2625,0.07499999,0.07500002 +0.4875,0.2625,0.053032994,0.10606603 +0.4875,0.2625,0.10606602,0.053033024 +0.48749998,0.2625,0.094494045,0.094494075 +0.4875,0.2625,0.0668174,0.13363479 +0.4875,0.2625,0.13363484,0.06681743 +0.4875,0.2625,0.11905506,0.11905508 +0.4875,0.2625,0.08418465,0.1683693 +0.4875,0.2625,0.1683693,0.08418463 +0.48749998,0.2875,0.07499999,0.07499999 +0.4875,0.2875,0.053032994,0.10606603 +0.4875,0.28750002,0.10606602,0.053033024 +0.48749998,0.2875,0.094494045,0.094494045 +0.4875,0.2875,0.0668174,0.1336348 +0.4875,0.28750002,0.13363484,0.06681743 +0.4875,0.2875,0.11905506,0.11905508 +0.4875,0.2875,0.08418465,0.1683693 +0.4875,0.2875,0.1683693,0.08418465 +0.48749998,0.3125,0.07499999,0.07499999 +0.4875,0.3125,0.053032994,0.10606605 +0.4875,0.3125,0.10606602,0.053032994 +0.48749998,0.3125,0.094494045,0.094494045 +0.4875,0.3125,0.0668174,0.1336348 +0.4875,0.3125,0.13363484,0.0668174 +0.4875,0.3125,0.11905506,0.11905509 +0.4875,0.3125,0.08418465,0.1683693 +0.4875,0.3125,0.1683693,0.08418465 +0.48749998,0.3375,0.07499999,0.07499999 +0.4875,0.3375,0.053032994,0.10606605 +0.4875,0.33749998,0.10606602,0.053033024 +0.48749998,0.3375,0.094494045,0.094494045 +0.4875,0.33750004,0.0668174,0.13363484 +0.4875,0.33749998,0.13363484,0.06681743 +0.4875,0.3375,0.11905506,0.11905509 +0.4875,0.3375,0.08418465,0.1683693 +0.4875,0.3375,0.1683693,0.08418465 +0.48749998,0.3625,0.07499999,0.07500002 +0.4875,0.3625,0.053032994,0.10606602 +0.4875,0.3625,0.10606602,0.053033024 +0.48749998,0.3625,0.094494045,0.094494075 +0.4875,0.3625,0.0668174,0.1336348 +0.4875,0.3625,0.13363484,0.06681743 +0.4875,0.3625,0.11905506,0.11905506 +0.4875,0.3625,0.08418465,0.1683693 +0.4875,0.3625,0.1683693,0.08418465 +0.48749998,0.3875,0.07499999,0.07500002 +0.4875,0.3875,0.053032994,0.10606602 +0.4875,0.3875,0.10606602,0.053032994 +0.48749998,0.3875,0.094494045,0.094494075 +0.4875,0.3875,0.0668174,0.13363484 +0.4875,0.3875,0.13363484,0.0668174 +0.4875,0.3875,0.11905506,0.11905506 +0.4875,0.3875,0.08418465,0.1683693 +0.4875,0.3875,0.1683693,0.08418465 +0.48749998,0.4125,0.07499999,0.07499999 +0.4875,0.4125,0.053032994,0.10606605 +0.4875,0.4125,0.10606602,0.053032994 +0.48749998,0.4125,0.094494045,0.094494045 +0.4875,0.41250002,0.0668174,0.13363484 +0.4875,0.4125,0.13363484,0.0668174 +0.4875,0.4125,0.11905506,0.11905509 +0.4875,0.4125,0.08418465,0.1683693 +0.4875,0.4125,0.1683693,0.08418465 +0.48749998,0.4375,0.07499999,0.07499999 +0.4875,0.4375,0.053032994,0.10606605 +0.4875,0.4375,0.10606602,0.053032994 +0.48749998,0.4375,0.094494045,0.094494045 +0.4875,0.4375,0.0668174,0.1336348 +0.4875,0.4375,0.13363484,0.0668174 +0.4875,0.4375,0.11905506,0.11905509 +0.4875,0.4375,0.08418465,0.1683693 +0.4875,0.4375,0.1683693,0.08418465 +0.48749998,0.4625,0.07499999,0.07499999 +0.4875,0.4625,0.053032994,0.10606605 +0.4875,0.46249998,0.10606602,0.053032964 +0.48749998,0.4625,0.094494045,0.094494045 +0.4875,0.46250004,0.0668174,0.13363484 +0.4875,0.46249998,0.13363484,0.06681737 +0.4875,0.4625,0.11905506,0.11905509 +0.4875,0.46249998,0.08418465,0.16836926 +0.4875,0.46249998,0.1683693,0.08418462 +0.48749998,0.48749998,0.07499999,0.07499999 +0.4875,0.4875,0.053032994,0.10606602 +0.4875,0.4875,0.10606602,0.053032994 +0.48749998,0.48749998,0.094494045,0.094494045 +0.4875,0.4875,0.0668174,0.13363484 +0.4875,0.4875,0.13363484,0.0668174 +0.4875,0.4875,0.11905506,0.11905506 +0.4875,0.4875,0.08418465,0.1683693 +0.4875,0.4875,0.1683693,0.08418465 +0.48749998,0.5125,0.07499999,0.07500002 +0.4875,0.51250005,0.053032994,0.10606605 +0.4875,0.5125,0.10606602,0.053032964 +0.48749998,0.5125,0.094494045,0.094494075 +0.4875,0.51250005,0.0668174,0.13363487 +0.4875,0.5125,0.13363484,0.06681737 +0.4875,0.51250005,0.11905506,0.11905509 +0.4875,0.5125,0.08418465,0.1683693 +0.4875,0.5125,0.1683693,0.08418465 +0.48749998,0.5375,0.07499999,0.07499999 +0.4875,0.5375,0.053032994,0.10606605 +0.4875,0.5375,0.10606602,0.053032935 +0.48749998,0.5375,0.094494045,0.094494045 +0.4875,0.5375,0.0668174,0.13363487 +0.4875,0.5375,0.13363484,0.06681734 +0.4875,0.5375,0.11905506,0.11905509 +0.4875,0.5375,0.08418465,0.16836932 +0.4875,0.5375,0.1683693,0.08418468 +0.48749998,0.5625,0.07499999,0.07500005 +0.4875,0.5625,0.053032994,0.10606599 +0.4875,0.5625,0.10606602,0.053032994 +0.48749998,0.5625,0.094494045,0.094494104 +0.4875,0.5625,0.0668174,0.13363484 +0.4875,0.5625,0.13363484,0.0668174 +0.4875,0.5625,0.11905506,0.11905503 +0.4875,0.5625,0.08418465,0.1683693 +0.4875,0.5625,0.1683693,0.08418465 +0.48749998,0.5875,0.07499999,0.07499999 +0.4875,0.5875,0.053032994,0.10606605 +0.4875,0.5875,0.10606602,0.053032935 +0.48749998,0.5875,0.094494045,0.094494045 +0.4875,0.5875,0.0668174,0.13363487 +0.4875,0.5875,0.13363484,0.06681734 +0.4875,0.5875,0.11905506,0.11905509 +0.4875,0.5875,0.08418465,0.1683693 +0.4875,0.5875,0.1683693,0.08418465 +0.48749998,0.61249995,0.07499999,0.07499999 +0.4875,0.61249995,0.053032994,0.10606605 +0.4875,0.6125,0.10606602,0.053032994 +0.48749998,0.61249995,0.094494045,0.094494045 +0.4875,0.61249995,0.0668174,0.13363487 +0.4875,0.6125,0.13363484,0.0668174 +0.4875,0.61249995,0.11905506,0.11905509 +0.4875,0.6125,0.08418465,0.1683693 +0.4875,0.6125,0.1683693,0.08418465 +0.48749998,0.63750005,0.07499999,0.07499999 +0.4875,0.63750005,0.053032994,0.10606605 +0.4875,0.6375,0.10606602,0.053032994 +0.48749998,0.63750005,0.094494045,0.094494045 +0.4875,0.63750005,0.0668174,0.13363487 +0.4875,0.6375,0.13363484,0.0668174 +0.4875,0.63750005,0.11905506,0.11905509 +0.4875,0.6375,0.08418465,0.1683693 +0.4875,0.6375,0.1683693,0.08418465 +0.48749998,0.6625,0.07499999,0.07499999 +0.4875,0.6625,0.053032994,0.10606605 +0.4875,0.6625,0.10606602,0.053032935 +0.48749998,0.6625,0.094494045,0.094494045 +0.4875,0.6625,0.0668174,0.13363487 +0.4875,0.6625,0.13363484,0.06681734 +0.4875,0.6625,0.11905506,0.11905509 +0.4875,0.6625,0.08418465,0.1683693 +0.4875,0.6625,0.1683693,0.08418465 +0.48749998,0.6875,0.07499999,0.07500005 +0.4875,0.6875,0.053032994,0.10606599 +0.4875,0.6875,0.10606602,0.053032994 +0.48749998,0.6875,0.094494045,0.094494104 +0.4875,0.6875,0.0668174,0.1336348 +0.4875,0.6875,0.13363484,0.0668174 +0.4875,0.6875,0.11905506,0.11905503 +0.4875,0.6875,0.08418465,0.1683693 +0.4875,0.6875,0.1683693,0.08418465 +0.48749998,0.7125,0.07499999,0.07499999 +0.4875,0.7125,0.053032994,0.10606605 +0.4875,0.7125,0.10606602,0.053032935 +0.48749998,0.7125,0.094494045,0.094494045 +0.4875,0.7125,0.0668174,0.13363487 +0.4875,0.7125,0.13363484,0.06681734 +0.4875,0.7125,0.11905506,0.11905509 +0.4875,0.7125,0.08418465,0.1683693 +0.4875,0.7125,0.1683693,0.08418465 +0.48749998,0.73749995,0.07499999,0.07499999 +0.4875,0.73749995,0.053032994,0.10606605 +0.4875,0.7375,0.10606602,0.053032994 +0.48749998,0.73749995,0.094494045,0.094494045 +0.4875,0.73749995,0.0668174,0.1336348 +0.4875,0.7375,0.13363484,0.0668174 +0.4875,0.73749995,0.11905506,0.11905509 +0.4875,0.7375,0.08418465,0.1683693 +0.4875,0.7375,0.1683693,0.08418465 +0.48749998,0.76250005,0.07499999,0.07499999 +0.4875,0.7625,0.053032994,0.10606599 +0.4875,0.7625,0.10606602,0.053032994 +0.48749998,0.76250005,0.094494045,0.094494045 +0.4875,0.7625,0.0668174,0.1336348 +0.4875,0.7625,0.13363484,0.0668174 +0.4875,0.7625,0.11905506,0.11905503 +0.4875,0.7625,0.08418465,0.1683693 +0.4875,0.7625,0.1683693,0.08418465 +0.48749998,0.7875,0.07499999,0.07499999 +0.4875,0.78749996,0.053032994,0.10606599 +0.4875,0.7875,0.10606602,0.053032994 +0.48749998,0.7875,0.094494045,0.094494045 +0.4875,0.78749996,0.0668174,0.1336348 +0.4875,0.7875,0.13363484,0.0668174 +0.4875,0.78749996,0.11905506,0.11905503 +0.4875,0.7875,0.08418465,0.1683693 +0.4875,0.7875,0.1683693,0.08418465 +0.48749998,0.8125,0.07499999,0.07500005 +0.4875,0.8125,0.053032994,0.10606599 +0.4875,0.8125,0.10606602,0.053033054 +0.48749998,0.8125,0.094494045,0.094494104 +0.4875,0.8125,0.0668174,0.1336348 +0.4875,0.8125,0.13363484,0.06681746 +0.4875,0.8125,0.11905506,0.11905503 +0.4875,0.8125,0.08418465,0.1683693 +0.4875,0.8125,0.1683693,0.08418465 +0.48749998,0.8375,0.07499999,0.07499999 +0.4875,0.8375,0.053032994,0.10606599 +0.4875,0.8375,0.10606602,0.053033054 +0.48749998,0.8375,0.094494045,0.094494045 +0.4875,0.8375,0.0668174,0.1336348 +0.4875,0.8375,0.13363484,0.06681746 +0.4875,0.8375,0.11905506,0.11905503 +0.4875,0.8375,0.08418465,0.1683693 +0.4875,0.8375,0.1683693,0.08418465 +0.48749998,0.86249995,0.07499999,0.07499999 +0.4875,0.86249995,0.053032994,0.10606593 +0.4875,0.86249995,0.10606602,0.053033054 +0.48749998,0.86249995,0.094494045,0.094494045 +0.4875,0.86249995,0.0668174,0.1336348 +0.4875,0.86249995,0.13363484,0.06681746 +0.4875,0.86249995,0.11905506,0.11905497 +0.4875,0.8625,0.08418465,0.1683693 +0.4875,0.8625,0.1683693,0.08418465 +0.48749998,0.88750005,0.07499999,0.07499999 +0.4875,0.88750005,0.053032994,0.10606593 +0.4875,0.88750005,0.10606602,0.053033054 +0.48749998,0.88750005,0.094494045,0.094494045 +0.4875,0.88750005,0.0668174,0.13363475 +0.4875,0.88750005,0.13363484,0.06681746 +0.4875,0.88750005,0.11905506,0.11905497 +0.4875,0.8875,0.08418465,0.1683693 +0.4875,0.8875,0.1683693,0.08418465 +0.48749998,0.9125,0.07499999,0.07499999 +0.4875,0.9125,0.053032994,0.10606593 +0.4875,0.9125,0.10606602,0.053033054 +0.48749998,0.9125,0.094494045,0.094494045 +0.4875,0.9125,0.0668174,0.13363475 +0.4875,0.9125,0.13363484,0.06681746 +0.4875,0.9125,0.11905506,0.11905497 +0.4875,0.9125,0.08418465,0.1683693 +0.4875,0.9125,0.1683693,0.08418465 +0.48749998,0.9375,0.07499999,0.07500005 +0.4875,0.9375,0.053032994,0.10606599 +0.4875,0.9375,0.10606602,0.053033113 +0.48749998,0.9375,0.094494045,0.094494104 +0.4875,0.9375,0.0668174,0.1336348 +0.4875,0.9375,0.13363484,0.06681752 +0.4875,0.9375,0.11905506,0.11905503 +0.4875,0.9375,0.08418465,0.1683693 +0.4875,0.9375,0.1683693,0.08418465 +0.48749998,0.9625,0.07499999,0.07499999 +0.4875,0.9625,0.053032994,0.10606593 +0.4875,0.9625,0.10606602,0.053033054 +0.48749998,0.9625,0.094494045,0.094494045 +0.4875,0.9625,0.0668174,0.13363475 +0.4875,0.9625,0.13363484,0.06681746 +0.4875,0.9625,0.11905506,0.11905497 +0.4875,0.9625,0.08418465,0.1683693 +0.4875,0.9625,0.1683693,0.08418465 +0.48749998,0.98749995,0.07499999,0.07499999 +0.4875,0.98749995,0.053032994,0.10606593 +0.4875,0.98749995,0.10606602,0.053033054 +0.48749998,0.98749995,0.094494045,0.094494045 +0.4875,0.98749995,0.0668174,0.13363475 +0.4875,0.98749995,0.13363484,0.06681746 +0.4875,0.98749995,0.11905506,0.11905497 +0.4875,0.98749995,0.08418465,0.16836923 +0.4875,0.98749995,0.1683693,0.08418459 +0.5125,0.0125,0.07500002,0.075 +0.5125,0.012499997,0.053032964,0.10606602 +0.51250005,0.012499999,0.10606605,0.05303301 +0.5125,0.012499999,0.094494075,0.09449408 +0.5125,0.012500001,0.06681737,0.1336348 +0.51250005,0.012499999,0.13363487,0.0668174 +0.51250005,0.012500001,0.11905509,0.11905508 +0.5125,0.012499999,0.08418465,0.1683693 +0.5125,0.012500002,0.1683693,0.084184654 +0.5125,0.0375,0.07500002,0.075 +0.5125,0.037499998,0.053032964,0.10606601 +0.51250005,0.0375,0.10606605,0.05303301 +0.5125,0.0375,0.094494075,0.094494075 +0.5125,0.0375,0.06681737,0.1336348 +0.51250005,0.0375,0.13363487,0.0668174 +0.51250005,0.0375,0.11905509,0.11905508 +0.5125,0.0375,0.08418465,0.16836931 +0.5125,0.0375,0.1683693,0.08418466 +0.5125,0.0625,0.07500002,0.075 +0.5125,0.0625,0.053032964,0.10606602 +0.51250005,0.0625,0.10606605,0.05303301 +0.5125,0.0625,0.094494075,0.094494075 +0.5125,0.0625,0.06681737,0.1336348 +0.51250005,0.0625,0.13363487,0.0668174 +0.51250005,0.0625,0.11905509,0.11905508 +0.5125,0.0625,0.08418465,0.16836932 +0.5125,0.0625,0.1683693,0.08418465 +0.5125,0.0875,0.07500002,0.075 +0.5125,0.08749999,0.053032964,0.10606601 +0.51250005,0.087500006,0.10606605,0.053033013 +0.5125,0.087500006,0.094494075,0.09449408 +0.5125,0.087500006,0.06681737,0.1336348 +0.51250005,0.0875,0.13363487,0.0668174 +0.51250005,0.0875,0.11905509,0.11905508 +0.5125,0.0875,0.08418465,0.16836931 +0.5125,0.087500006,0.1683693,0.084184654 +0.5125,0.112500004,0.07500002,0.075 +0.5125,0.1125,0.053032964,0.10606601 +0.51250005,0.112500004,0.10606605,0.05303301 +0.5125,0.1125,0.094494075,0.094494075 +0.5125,0.1125,0.06681737,0.1336348 +0.51250005,0.1125,0.13363487,0.0668174 +0.51250005,0.1125,0.11905509,0.119055085 +0.5125,0.112500004,0.08418465,0.16836931 +0.5125,0.1125,0.1683693,0.08418465 +0.5125,0.1375,0.07500002,0.074999996 +0.5125,0.1375,0.053032964,0.10606602 +0.51250005,0.1375,0.10606605,0.053033024 +0.5125,0.1375,0.094494075,0.09449408 +0.5125,0.1375,0.06681737,0.1336348 +0.51250005,0.1375,0.13363487,0.0668174 +0.51250005,0.13749999,0.11905509,0.11905508 +0.5125,0.1375,0.08418465,0.1683693 +0.5125,0.1375,0.1683693,0.084184654 +0.5125,0.1625,0.07500002,0.075 +0.5125,0.16250001,0.053032964,0.106066026 +0.51250005,0.1625,0.10606605,0.05303301 +0.5125,0.1625,0.094494075,0.094494075 +0.5125,0.1625,0.06681737,0.1336348 +0.51250005,0.1625,0.13363487,0.0668174 +0.51250005,0.1625,0.11905509,0.11905508 +0.5125,0.1625,0.08418465,0.1683693 +0.5125,0.1625,0.1683693,0.08418464 +0.5125,0.1875,0.07500002,0.07499999 +0.5125,0.1875,0.053032964,0.10606603 +0.51250005,0.1875,0.10606605,0.053033024 +0.5125,0.1875,0.094494075,0.09449406 +0.5125,0.1875,0.06681737,0.1336348 +0.51250005,0.1875,0.13363487,0.06681742 +0.51250005,0.1875,0.11905509,0.11905509 +0.5125,0.1875,0.08418465,0.16836931 +0.5125,0.1875,0.1683693,0.08418465 +0.5125,0.2125,0.07500002,0.075 +0.5125,0.2125,0.053032964,0.10606603 +0.51250005,0.2125,0.10606605,0.05303301 +0.5125,0.21249999,0.094494075,0.094494075 +0.5125,0.2125,0.06681737,0.1336348 +0.51250005,0.2125,0.13363487,0.0668174 +0.51250005,0.2125,0.11905509,0.11905509 +0.5125,0.2125,0.08418465,0.16836931 +0.5125,0.2125,0.1683693,0.08418465 +0.5125,0.23750001,0.07500002,0.075 +0.5125,0.2375,0.053032964,0.10606602 +0.51250005,0.2375,0.10606605,0.053033024 +0.5125,0.2375,0.094494075,0.094494075 +0.5125,0.23750001,0.06681737,0.13363482 +0.51250005,0.2375,0.13363487,0.06681743 +0.51250005,0.2375,0.11905509,0.11905506 +0.5125,0.2375,0.08418465,0.16836932 +0.5125,0.23750001,0.1683693,0.08418466 +0.5125,0.2625,0.07500002,0.07500002 +0.5125,0.2625,0.053032964,0.10606603 +0.51250005,0.2625,0.10606605,0.053033024 +0.5125,0.2625,0.094494075,0.094494075 +0.5125,0.2625,0.06681737,0.13363479 +0.51250005,0.2625,0.13363487,0.06681743 +0.51250005,0.2625,0.11905509,0.11905508 +0.5125,0.2625,0.08418465,0.1683693 +0.5125,0.2625,0.1683693,0.08418463 +0.5125,0.2875,0.07500002,0.07499999 +0.5125,0.2875,0.053032964,0.10606603 +0.51250005,0.28750002,0.10606605,0.053033024 +0.5125,0.2875,0.094494075,0.094494045 +0.5125,0.2875,0.06681737,0.1336348 +0.51250005,0.28750002,0.13363487,0.06681743 +0.51250005,0.2875,0.11905509,0.11905508 +0.5125,0.2875,0.08418465,0.1683693 +0.5125,0.2875,0.1683693,0.08418465 +0.5125,0.3125,0.07500002,0.07499999 +0.5125,0.3125,0.053032964,0.10606605 +0.51250005,0.3125,0.10606605,0.053032994 +0.5125,0.3125,0.094494075,0.094494045 +0.5125,0.3125,0.06681737,0.1336348 +0.51250005,0.3125,0.13363487,0.0668174 +0.51250005,0.3125,0.11905509,0.11905509 +0.5125,0.3125,0.08418465,0.1683693 +0.5125,0.3125,0.1683693,0.08418465 +0.5125,0.3375,0.07500002,0.07499999 +0.5125,0.3375,0.053032964,0.10606605 +0.51250005,0.33749998,0.10606605,0.053033024 +0.5125,0.3375,0.094494075,0.094494045 +0.5125,0.33750004,0.06681737,0.13363484 +0.51250005,0.33749998,0.13363487,0.06681743 +0.51250005,0.3375,0.11905509,0.11905509 +0.5125,0.3375,0.08418465,0.1683693 +0.5125,0.3375,0.1683693,0.08418465 +0.5125,0.3625,0.07500002,0.07500002 +0.5125,0.3625,0.053032964,0.10606602 +0.51250005,0.3625,0.10606605,0.053033024 +0.5125,0.3625,0.094494075,0.094494075 +0.5125,0.3625,0.06681737,0.1336348 +0.51250005,0.3625,0.13363487,0.06681743 +0.51250005,0.3625,0.11905509,0.11905506 +0.5125,0.3625,0.08418465,0.1683693 +0.5125,0.3625,0.1683693,0.08418465 +0.5125,0.3875,0.07500002,0.07500002 +0.5125,0.3875,0.053032964,0.10606602 +0.51250005,0.3875,0.10606605,0.053032994 +0.5125,0.3875,0.094494075,0.094494075 +0.5125,0.3875,0.06681737,0.13363484 +0.51250005,0.3875,0.13363487,0.0668174 +0.51250005,0.3875,0.11905509,0.11905506 +0.5125,0.3875,0.08418465,0.1683693 +0.5125,0.3875,0.1683693,0.08418465 +0.5125,0.4125,0.07500002,0.07499999 +0.5125,0.4125,0.053032964,0.10606605 +0.51250005,0.4125,0.10606605,0.053032994 +0.5125,0.4125,0.094494075,0.094494045 +0.5125,0.41250002,0.06681737,0.13363484 +0.51250005,0.4125,0.13363487,0.0668174 +0.51250005,0.4125,0.11905509,0.11905509 +0.5125,0.4125,0.08418465,0.1683693 +0.5125,0.4125,0.1683693,0.08418465 +0.5125,0.4375,0.07500002,0.07499999 +0.5125,0.4375,0.053032964,0.10606605 +0.51250005,0.4375,0.10606605,0.053032994 +0.5125,0.4375,0.094494075,0.094494045 +0.5125,0.4375,0.06681737,0.1336348 +0.51250005,0.4375,0.13363487,0.0668174 +0.51250005,0.4375,0.11905509,0.11905509 +0.5125,0.4375,0.08418465,0.1683693 +0.5125,0.4375,0.1683693,0.08418465 +0.5125,0.4625,0.07500002,0.07499999 +0.5125,0.4625,0.053032964,0.10606605 +0.51250005,0.46249998,0.10606605,0.053032964 +0.5125,0.4625,0.094494075,0.094494045 +0.5125,0.46250004,0.06681737,0.13363484 +0.51250005,0.46249998,0.13363487,0.06681737 +0.51250005,0.4625,0.11905509,0.11905509 +0.5125,0.46249998,0.08418465,0.16836926 +0.5125,0.46249998,0.1683693,0.08418462 +0.5125,0.48749998,0.07500002,0.07499999 +0.5125,0.4875,0.053032964,0.10606602 +0.51250005,0.4875,0.10606605,0.053032994 +0.5125,0.48749998,0.094494075,0.094494045 +0.5125,0.4875,0.06681737,0.13363484 +0.51250005,0.4875,0.13363487,0.0668174 +0.51250005,0.4875,0.11905509,0.11905506 +0.5125,0.4875,0.08418465,0.1683693 +0.5125,0.4875,0.1683693,0.08418465 +0.5125,0.5125,0.07500002,0.07500002 +0.5125,0.51250005,0.053032964,0.10606605 +0.51250005,0.5125,0.10606605,0.053032964 +0.5125,0.5125,0.094494075,0.094494075 +0.5125,0.51250005,0.06681737,0.13363487 +0.51250005,0.5125,0.13363487,0.06681737 +0.51250005,0.51250005,0.11905509,0.11905509 +0.5125,0.5125,0.08418465,0.1683693 +0.5125,0.5125,0.1683693,0.08418465 +0.5125,0.5375,0.07500002,0.07499999 +0.5125,0.5375,0.053032964,0.10606605 +0.51250005,0.5375,0.10606605,0.053032935 +0.5125,0.5375,0.094494075,0.094494045 +0.5125,0.5375,0.06681737,0.13363487 +0.51250005,0.5375,0.13363487,0.06681734 +0.51250005,0.5375,0.11905509,0.11905509 +0.5125,0.5375,0.08418465,0.16836932 +0.5125,0.5375,0.1683693,0.08418468 +0.5125,0.5625,0.07500002,0.07500005 +0.5125,0.5625,0.053032964,0.10606599 +0.51250005,0.5625,0.10606605,0.053032994 +0.5125,0.5625,0.094494075,0.094494104 +0.5125,0.5625,0.06681737,0.13363484 +0.51250005,0.5625,0.13363487,0.0668174 +0.51250005,0.5625,0.11905509,0.11905503 +0.5125,0.5625,0.08418465,0.1683693 +0.5125,0.5625,0.1683693,0.08418465 +0.5125,0.5875,0.07500002,0.07499999 +0.5125,0.5875,0.053032964,0.10606605 +0.51250005,0.5875,0.10606605,0.053032935 +0.5125,0.5875,0.094494075,0.094494045 +0.5125,0.5875,0.06681737,0.13363487 +0.51250005,0.5875,0.13363487,0.06681734 +0.51250005,0.5875,0.11905509,0.11905509 +0.5125,0.5875,0.08418465,0.1683693 +0.5125,0.5875,0.1683693,0.08418465 +0.5125,0.61249995,0.07500002,0.07499999 +0.5125,0.61249995,0.053032964,0.10606605 +0.51250005,0.6125,0.10606605,0.053032994 +0.5125,0.61249995,0.094494075,0.094494045 +0.5125,0.61249995,0.06681737,0.13363487 +0.51250005,0.6125,0.13363487,0.0668174 +0.51250005,0.61249995,0.11905509,0.11905509 +0.5125,0.6125,0.08418465,0.1683693 +0.5125,0.6125,0.1683693,0.08418465 +0.5125,0.63750005,0.07500002,0.07499999 +0.5125,0.63750005,0.053032964,0.10606605 +0.51250005,0.6375,0.10606605,0.053032994 +0.5125,0.63750005,0.094494075,0.094494045 +0.5125,0.63750005,0.06681737,0.13363487 +0.51250005,0.6375,0.13363487,0.0668174 +0.51250005,0.63750005,0.11905509,0.11905509 +0.5125,0.6375,0.08418465,0.1683693 +0.5125,0.6375,0.1683693,0.08418465 +0.5125,0.6625,0.07500002,0.07499999 +0.5125,0.6625,0.053032964,0.10606605 +0.51250005,0.6625,0.10606605,0.053032935 +0.5125,0.6625,0.094494075,0.094494045 +0.5125,0.6625,0.06681737,0.13363487 +0.51250005,0.6625,0.13363487,0.06681734 +0.51250005,0.6625,0.11905509,0.11905509 +0.5125,0.6625,0.08418465,0.1683693 +0.5125,0.6625,0.1683693,0.08418465 +0.5125,0.6875,0.07500002,0.07500005 +0.5125,0.6875,0.053032964,0.10606599 +0.51250005,0.6875,0.10606605,0.053032994 +0.5125,0.6875,0.094494075,0.094494104 +0.5125,0.6875,0.06681737,0.1336348 +0.51250005,0.6875,0.13363487,0.0668174 +0.51250005,0.6875,0.11905509,0.11905503 +0.5125,0.6875,0.08418465,0.1683693 +0.5125,0.6875,0.1683693,0.08418465 +0.5125,0.7125,0.07500002,0.07499999 +0.5125,0.7125,0.053032964,0.10606605 +0.51250005,0.7125,0.10606605,0.053032935 +0.5125,0.7125,0.094494075,0.094494045 +0.5125,0.7125,0.06681737,0.13363487 +0.51250005,0.7125,0.13363487,0.06681734 +0.51250005,0.7125,0.11905509,0.11905509 +0.5125,0.7125,0.08418465,0.1683693 +0.5125,0.7125,0.1683693,0.08418465 +0.5125,0.73749995,0.07500002,0.07499999 +0.5125,0.73749995,0.053032964,0.10606605 +0.51250005,0.7375,0.10606605,0.053032994 +0.5125,0.73749995,0.094494075,0.094494045 +0.5125,0.73749995,0.06681737,0.1336348 +0.51250005,0.7375,0.13363487,0.0668174 +0.51250005,0.73749995,0.11905509,0.11905509 +0.5125,0.7375,0.08418465,0.1683693 +0.5125,0.7375,0.1683693,0.08418465 +0.5125,0.76250005,0.07500002,0.07499999 +0.5125,0.7625,0.053032964,0.10606599 +0.51250005,0.7625,0.10606605,0.053032994 +0.5125,0.76250005,0.094494075,0.094494045 +0.5125,0.7625,0.06681737,0.1336348 +0.51250005,0.7625,0.13363487,0.0668174 +0.51250005,0.7625,0.11905509,0.11905503 +0.5125,0.7625,0.08418465,0.1683693 +0.5125,0.7625,0.1683693,0.08418465 +0.5125,0.7875,0.07500002,0.07499999 +0.5125,0.78749996,0.053032964,0.10606599 +0.51250005,0.7875,0.10606605,0.053032994 +0.5125,0.7875,0.094494075,0.094494045 +0.5125,0.78749996,0.06681737,0.1336348 +0.51250005,0.7875,0.13363487,0.0668174 +0.51250005,0.78749996,0.11905509,0.11905503 +0.5125,0.7875,0.08418465,0.1683693 +0.5125,0.7875,0.1683693,0.08418465 +0.5125,0.8125,0.07500002,0.07500005 +0.5125,0.8125,0.053032964,0.10606599 +0.51250005,0.8125,0.10606605,0.053033054 +0.5125,0.8125,0.094494075,0.094494104 +0.5125,0.8125,0.06681737,0.1336348 +0.51250005,0.8125,0.13363487,0.06681746 +0.51250005,0.8125,0.11905509,0.11905503 +0.5125,0.8125,0.08418465,0.1683693 +0.5125,0.8125,0.1683693,0.08418465 +0.5125,0.8375,0.07500002,0.07499999 +0.5125,0.8375,0.053032964,0.10606599 +0.51250005,0.8375,0.10606605,0.053033054 +0.5125,0.8375,0.094494075,0.094494045 +0.5125,0.8375,0.06681737,0.1336348 +0.51250005,0.8375,0.13363487,0.06681746 +0.51250005,0.8375,0.11905509,0.11905503 +0.5125,0.8375,0.08418465,0.1683693 +0.5125,0.8375,0.1683693,0.08418465 +0.5125,0.86249995,0.07500002,0.07499999 +0.5125,0.86249995,0.053032964,0.10606593 +0.51250005,0.86249995,0.10606605,0.053033054 +0.5125,0.86249995,0.094494075,0.094494045 +0.5125,0.86249995,0.06681737,0.1336348 +0.51250005,0.86249995,0.13363487,0.06681746 +0.51250005,0.86249995,0.11905509,0.11905497 +0.5125,0.8625,0.08418465,0.1683693 +0.5125,0.8625,0.1683693,0.08418465 +0.5125,0.88750005,0.07500002,0.07499999 +0.5125,0.88750005,0.053032964,0.10606593 +0.51250005,0.88750005,0.10606605,0.053033054 +0.5125,0.88750005,0.094494075,0.094494045 +0.5125,0.88750005,0.06681737,0.13363475 +0.51250005,0.88750005,0.13363487,0.06681746 +0.51250005,0.88750005,0.11905509,0.11905497 +0.5125,0.8875,0.08418465,0.1683693 +0.5125,0.8875,0.1683693,0.08418465 +0.5125,0.9125,0.07500002,0.07499999 +0.5125,0.9125,0.053032964,0.10606593 +0.51250005,0.9125,0.10606605,0.053033054 +0.5125,0.9125,0.094494075,0.094494045 +0.5125,0.9125,0.06681737,0.13363475 +0.51250005,0.9125,0.13363487,0.06681746 +0.51250005,0.9125,0.11905509,0.11905497 +0.5125,0.9125,0.08418465,0.1683693 +0.5125,0.9125,0.1683693,0.08418465 +0.5125,0.9375,0.07500002,0.07500005 +0.5125,0.9375,0.053032964,0.10606599 +0.51250005,0.9375,0.10606605,0.053033113 +0.5125,0.9375,0.094494075,0.094494104 +0.5125,0.9375,0.06681737,0.1336348 +0.51250005,0.9375,0.13363487,0.06681752 +0.51250005,0.9375,0.11905509,0.11905503 +0.5125,0.9375,0.08418465,0.1683693 +0.5125,0.9375,0.1683693,0.08418465 +0.5125,0.9625,0.07500002,0.07499999 +0.5125,0.9625,0.053032964,0.10606593 +0.51250005,0.9625,0.10606605,0.053033054 +0.5125,0.9625,0.094494075,0.094494045 +0.5125,0.9625,0.06681737,0.13363475 +0.51250005,0.9625,0.13363487,0.06681746 +0.51250005,0.9625,0.11905509,0.11905497 +0.5125,0.9625,0.08418465,0.1683693 +0.5125,0.9625,0.1683693,0.08418465 +0.5125,0.98749995,0.07500002,0.07499999 +0.5125,0.98749995,0.053032964,0.10606593 +0.51250005,0.98749995,0.10606605,0.053033054 +0.5125,0.98749995,0.094494075,0.094494045 +0.5125,0.98749995,0.06681737,0.13363475 +0.51250005,0.98749995,0.13363487,0.06681746 +0.51250005,0.98749995,0.11905509,0.11905497 +0.5125,0.98749995,0.08418465,0.16836923 +0.5125,0.98749995,0.1683693,0.08418459 +0.5375,0.0125,0.07499999,0.075 +0.5375,0.012499997,0.053032935,0.10606602 +0.5375,0.012499999,0.10606605,0.05303301 +0.5375,0.012499999,0.094494045,0.09449408 +0.5375,0.012500001,0.06681734,0.1336348 +0.5375,0.012499999,0.13363487,0.0668174 +0.5375,0.012500001,0.11905509,0.11905508 +0.5375,0.012499999,0.08418468,0.1683693 +0.5375,0.012500002,0.16836932,0.084184654 +0.5375,0.0375,0.07499999,0.075 +0.5375,0.037499998,0.053032935,0.10606601 +0.5375,0.0375,0.10606605,0.05303301 +0.5375,0.0375,0.094494045,0.094494075 +0.5375,0.0375,0.06681734,0.1336348 +0.5375,0.0375,0.13363487,0.0668174 +0.5375,0.0375,0.11905509,0.11905508 +0.5375,0.0375,0.08418468,0.16836931 +0.5375,0.0375,0.16836932,0.08418466 +0.5375,0.0625,0.07499999,0.075 +0.5375,0.0625,0.053032935,0.10606602 +0.5375,0.0625,0.10606605,0.05303301 +0.5375,0.0625,0.094494045,0.094494075 +0.5375,0.0625,0.06681734,0.1336348 +0.5375,0.0625,0.13363487,0.0668174 +0.5375,0.0625,0.11905509,0.11905508 +0.5375,0.0625,0.08418468,0.16836932 +0.5375,0.0625,0.16836932,0.08418465 +0.5375,0.0875,0.07499999,0.075 +0.5375,0.08749999,0.053032935,0.10606601 +0.5375,0.087500006,0.10606605,0.053033013 +0.5375,0.087500006,0.094494045,0.09449408 +0.5375,0.087500006,0.06681734,0.1336348 +0.5375,0.0875,0.13363487,0.0668174 +0.5375,0.0875,0.11905509,0.11905508 +0.5375,0.0875,0.08418468,0.16836931 +0.5375,0.087500006,0.16836932,0.084184654 +0.5375,0.112500004,0.07499999,0.075 +0.5375,0.1125,0.053032935,0.10606601 +0.5375,0.112500004,0.10606605,0.05303301 +0.5375,0.1125,0.094494045,0.094494075 +0.5375,0.1125,0.06681734,0.1336348 +0.5375,0.1125,0.13363487,0.0668174 +0.5375,0.1125,0.11905509,0.119055085 +0.5375,0.112500004,0.08418468,0.16836931 +0.5375,0.1125,0.16836932,0.08418465 +0.5375,0.1375,0.07499999,0.074999996 +0.5375,0.1375,0.053032935,0.10606602 +0.5375,0.1375,0.10606605,0.053033024 +0.5375,0.1375,0.094494045,0.09449408 +0.5375,0.1375,0.06681734,0.1336348 +0.5375,0.1375,0.13363487,0.0668174 +0.5375,0.13749999,0.11905509,0.11905508 +0.5375,0.1375,0.08418468,0.1683693 +0.5375,0.1375,0.16836932,0.084184654 +0.5375,0.1625,0.07499999,0.075 +0.5375,0.16250001,0.053032935,0.106066026 +0.5375,0.1625,0.10606605,0.05303301 +0.5375,0.1625,0.094494045,0.094494075 +0.5375,0.1625,0.06681734,0.1336348 +0.5375,0.1625,0.13363487,0.0668174 +0.5375,0.1625,0.11905509,0.11905508 +0.5375,0.1625,0.08418468,0.1683693 +0.5375,0.1625,0.16836932,0.08418464 +0.5375,0.1875,0.07499999,0.07499999 +0.5375,0.1875,0.053032935,0.10606603 +0.5375,0.1875,0.10606605,0.053033024 +0.5375,0.1875,0.094494045,0.09449406 +0.5375,0.1875,0.06681734,0.1336348 +0.5375,0.1875,0.13363487,0.06681742 +0.5375,0.1875,0.11905509,0.11905509 +0.5375,0.1875,0.08418468,0.16836931 +0.5375,0.1875,0.16836932,0.08418465 +0.5375,0.2125,0.07499999,0.075 +0.5375,0.2125,0.053032935,0.10606603 +0.5375,0.2125,0.10606605,0.05303301 +0.5375,0.21249999,0.094494045,0.094494075 +0.5375,0.2125,0.06681734,0.1336348 +0.5375,0.2125,0.13363487,0.0668174 +0.5375,0.2125,0.11905509,0.11905509 +0.5375,0.2125,0.08418468,0.16836931 +0.5375,0.2125,0.16836932,0.08418465 +0.5375,0.23750001,0.07499999,0.075 +0.5375,0.2375,0.053032935,0.10606602 +0.5375,0.2375,0.10606605,0.053033024 +0.5375,0.2375,0.094494045,0.094494075 +0.5375,0.23750001,0.06681734,0.13363482 +0.5375,0.2375,0.13363487,0.06681743 +0.5375,0.2375,0.11905509,0.11905506 +0.5375,0.2375,0.08418468,0.16836932 +0.5375,0.23750001,0.16836932,0.08418466 +0.5375,0.2625,0.07499999,0.07500002 +0.5375,0.2625,0.053032935,0.10606603 +0.5375,0.2625,0.10606605,0.053033024 +0.5375,0.2625,0.094494045,0.094494075 +0.5375,0.2625,0.06681734,0.13363479 +0.5375,0.2625,0.13363487,0.06681743 +0.5375,0.2625,0.11905509,0.11905508 +0.5375,0.2625,0.08418468,0.1683693 +0.5375,0.2625,0.16836932,0.08418463 +0.5375,0.2875,0.07499999,0.07499999 +0.5375,0.2875,0.053032935,0.10606603 +0.5375,0.28750002,0.10606605,0.053033024 +0.5375,0.2875,0.094494045,0.094494045 +0.5375,0.2875,0.06681734,0.1336348 +0.5375,0.28750002,0.13363487,0.06681743 +0.5375,0.2875,0.11905509,0.11905508 +0.5375,0.2875,0.08418468,0.1683693 +0.5375,0.2875,0.16836932,0.08418465 +0.5375,0.3125,0.07499999,0.07499999 +0.5375,0.3125,0.053032935,0.10606605 +0.5375,0.3125,0.10606605,0.053032994 +0.5375,0.3125,0.094494045,0.094494045 +0.5375,0.3125,0.06681734,0.1336348 +0.5375,0.3125,0.13363487,0.0668174 +0.5375,0.3125,0.11905509,0.11905509 +0.5375,0.3125,0.08418468,0.1683693 +0.5375,0.3125,0.16836932,0.08418465 +0.5375,0.3375,0.07499999,0.07499999 +0.5375,0.3375,0.053032935,0.10606605 +0.5375,0.33749998,0.10606605,0.053033024 +0.5375,0.3375,0.094494045,0.094494045 +0.5375,0.33750004,0.06681734,0.13363484 +0.5375,0.33749998,0.13363487,0.06681743 +0.5375,0.3375,0.11905509,0.11905509 +0.5375,0.3375,0.08418468,0.1683693 +0.5375,0.3375,0.16836932,0.08418465 +0.5375,0.3625,0.07499999,0.07500002 +0.5375,0.3625,0.053032935,0.10606602 +0.5375,0.3625,0.10606605,0.053033024 +0.5375,0.3625,0.094494045,0.094494075 +0.5375,0.3625,0.06681734,0.1336348 +0.5375,0.3625,0.13363487,0.06681743 +0.5375,0.3625,0.11905509,0.11905506 +0.5375,0.3625,0.08418468,0.1683693 +0.5375,0.3625,0.16836932,0.08418465 +0.5375,0.3875,0.07499999,0.07500002 +0.5375,0.3875,0.053032935,0.10606602 +0.5375,0.3875,0.10606605,0.053032994 +0.5375,0.3875,0.094494045,0.094494075 +0.5375,0.3875,0.06681734,0.13363484 +0.5375,0.3875,0.13363487,0.0668174 +0.5375,0.3875,0.11905509,0.11905506 +0.5375,0.3875,0.08418468,0.1683693 +0.5375,0.3875,0.16836932,0.08418465 +0.5375,0.4125,0.07499999,0.07499999 +0.5375,0.4125,0.053032935,0.10606605 +0.5375,0.4125,0.10606605,0.053032994 +0.5375,0.4125,0.094494045,0.094494045 +0.5375,0.41250002,0.06681734,0.13363484 +0.5375,0.4125,0.13363487,0.0668174 +0.5375,0.4125,0.11905509,0.11905509 +0.5375,0.4125,0.08418468,0.1683693 +0.5375,0.4125,0.16836932,0.08418465 +0.5375,0.4375,0.07499999,0.07499999 +0.5375,0.4375,0.053032935,0.10606605 +0.5375,0.4375,0.10606605,0.053032994 +0.5375,0.4375,0.094494045,0.094494045 +0.5375,0.4375,0.06681734,0.1336348 +0.5375,0.4375,0.13363487,0.0668174 +0.5375,0.4375,0.11905509,0.11905509 +0.5375,0.4375,0.08418468,0.1683693 +0.5375,0.4375,0.16836932,0.08418465 +0.5375,0.4625,0.07499999,0.07499999 +0.5375,0.4625,0.053032935,0.10606605 +0.5375,0.46249998,0.10606605,0.053032964 +0.5375,0.4625,0.094494045,0.094494045 +0.5375,0.46250004,0.06681734,0.13363484 +0.5375,0.46249998,0.13363487,0.06681737 +0.5375,0.4625,0.11905509,0.11905509 +0.5375,0.46249998,0.08418468,0.16836926 +0.5375,0.46249998,0.16836932,0.08418462 +0.5375,0.48749998,0.07499999,0.07499999 +0.5375,0.4875,0.053032935,0.10606602 +0.5375,0.4875,0.10606605,0.053032994 +0.5375,0.48749998,0.094494045,0.094494045 +0.5375,0.4875,0.06681734,0.13363484 +0.5375,0.4875,0.13363487,0.0668174 +0.5375,0.4875,0.11905509,0.11905506 +0.5375,0.4875,0.08418468,0.1683693 +0.5375,0.4875,0.16836932,0.08418465 +0.5375,0.5125,0.07499999,0.07500002 +0.5375,0.51250005,0.053032935,0.10606605 +0.5375,0.5125,0.10606605,0.053032964 +0.5375,0.5125,0.094494045,0.094494075 +0.5375,0.51250005,0.06681734,0.13363487 +0.5375,0.5125,0.13363487,0.06681737 +0.5375,0.51250005,0.11905509,0.11905509 +0.5375,0.5125,0.08418468,0.1683693 +0.5375,0.5125,0.16836932,0.08418465 +0.5375,0.5375,0.07499999,0.07499999 +0.5375,0.5375,0.053032935,0.10606605 +0.5375,0.5375,0.10606605,0.053032935 +0.5375,0.5375,0.094494045,0.094494045 +0.5375,0.5375,0.06681734,0.13363487 +0.5375,0.5375,0.13363487,0.06681734 +0.5375,0.5375,0.11905509,0.11905509 +0.5375,0.5375,0.08418468,0.16836932 +0.5375,0.5375,0.16836932,0.08418468 +0.5375,0.5625,0.07499999,0.07500005 +0.5375,0.5625,0.053032935,0.10606599 +0.5375,0.5625,0.10606605,0.053032994 +0.5375,0.5625,0.094494045,0.094494104 +0.5375,0.5625,0.06681734,0.13363484 +0.5375,0.5625,0.13363487,0.0668174 +0.5375,0.5625,0.11905509,0.11905503 +0.5375,0.5625,0.08418468,0.1683693 +0.5375,0.5625,0.16836932,0.08418465 +0.5375,0.5875,0.07499999,0.07499999 +0.5375,0.5875,0.053032935,0.10606605 +0.5375,0.5875,0.10606605,0.053032935 +0.5375,0.5875,0.094494045,0.094494045 +0.5375,0.5875,0.06681734,0.13363487 +0.5375,0.5875,0.13363487,0.06681734 +0.5375,0.5875,0.11905509,0.11905509 +0.5375,0.5875,0.08418468,0.1683693 +0.5375,0.5875,0.16836932,0.08418465 +0.5375,0.61249995,0.07499999,0.07499999 +0.5375,0.61249995,0.053032935,0.10606605 +0.5375,0.6125,0.10606605,0.053032994 +0.5375,0.61249995,0.094494045,0.094494045 +0.5375,0.61249995,0.06681734,0.13363487 +0.5375,0.6125,0.13363487,0.0668174 +0.5375,0.61249995,0.11905509,0.11905509 +0.5375,0.6125,0.08418468,0.1683693 +0.5375,0.6125,0.16836932,0.08418465 +0.5375,0.63750005,0.07499999,0.07499999 +0.5375,0.63750005,0.053032935,0.10606605 +0.5375,0.6375,0.10606605,0.053032994 +0.5375,0.63750005,0.094494045,0.094494045 +0.5375,0.63750005,0.06681734,0.13363487 +0.5375,0.6375,0.13363487,0.0668174 +0.5375,0.63750005,0.11905509,0.11905509 +0.5375,0.6375,0.08418468,0.1683693 +0.5375,0.6375,0.16836932,0.08418465 +0.5375,0.6625,0.07499999,0.07499999 +0.5375,0.6625,0.053032935,0.10606605 +0.5375,0.6625,0.10606605,0.053032935 +0.5375,0.6625,0.094494045,0.094494045 +0.5375,0.6625,0.06681734,0.13363487 +0.5375,0.6625,0.13363487,0.06681734 +0.5375,0.6625,0.11905509,0.11905509 +0.5375,0.6625,0.08418468,0.1683693 +0.5375,0.6625,0.16836932,0.08418465 +0.5375,0.6875,0.07499999,0.07500005 +0.5375,0.6875,0.053032935,0.10606599 +0.5375,0.6875,0.10606605,0.053032994 +0.5375,0.6875,0.094494045,0.094494104 +0.5375,0.6875,0.06681734,0.1336348 +0.5375,0.6875,0.13363487,0.0668174 +0.5375,0.6875,0.11905509,0.11905503 +0.5375,0.6875,0.08418468,0.1683693 +0.5375,0.6875,0.16836932,0.08418465 +0.5375,0.7125,0.07499999,0.07499999 +0.5375,0.7125,0.053032935,0.10606605 +0.5375,0.7125,0.10606605,0.053032935 +0.5375,0.7125,0.094494045,0.094494045 +0.5375,0.7125,0.06681734,0.13363487 +0.5375,0.7125,0.13363487,0.06681734 +0.5375,0.7125,0.11905509,0.11905509 +0.5375,0.7125,0.08418468,0.1683693 +0.5375,0.7125,0.16836932,0.08418465 +0.5375,0.73749995,0.07499999,0.07499999 +0.5375,0.73749995,0.053032935,0.10606605 +0.5375,0.7375,0.10606605,0.053032994 +0.5375,0.73749995,0.094494045,0.094494045 +0.5375,0.73749995,0.06681734,0.1336348 +0.5375,0.7375,0.13363487,0.0668174 +0.5375,0.73749995,0.11905509,0.11905509 +0.5375,0.7375,0.08418468,0.1683693 +0.5375,0.7375,0.16836932,0.08418465 +0.5375,0.76250005,0.07499999,0.07499999 +0.5375,0.7625,0.053032935,0.10606599 +0.5375,0.7625,0.10606605,0.053032994 +0.5375,0.76250005,0.094494045,0.094494045 +0.5375,0.7625,0.06681734,0.1336348 +0.5375,0.7625,0.13363487,0.0668174 +0.5375,0.7625,0.11905509,0.11905503 +0.5375,0.7625,0.08418468,0.1683693 +0.5375,0.7625,0.16836932,0.08418465 +0.5375,0.7875,0.07499999,0.07499999 +0.5375,0.78749996,0.053032935,0.10606599 +0.5375,0.7875,0.10606605,0.053032994 +0.5375,0.7875,0.094494045,0.094494045 +0.5375,0.78749996,0.06681734,0.1336348 +0.5375,0.7875,0.13363487,0.0668174 +0.5375,0.78749996,0.11905509,0.11905503 +0.5375,0.7875,0.08418468,0.1683693 +0.5375,0.7875,0.16836932,0.08418465 +0.5375,0.8125,0.07499999,0.07500005 +0.5375,0.8125,0.053032935,0.10606599 +0.5375,0.8125,0.10606605,0.053033054 +0.5375,0.8125,0.094494045,0.094494104 +0.5375,0.8125,0.06681734,0.1336348 +0.5375,0.8125,0.13363487,0.06681746 +0.5375,0.8125,0.11905509,0.11905503 +0.5375,0.8125,0.08418468,0.1683693 +0.5375,0.8125,0.16836932,0.08418465 +0.5375,0.8375,0.07499999,0.07499999 +0.5375,0.8375,0.053032935,0.10606599 +0.5375,0.8375,0.10606605,0.053033054 +0.5375,0.8375,0.094494045,0.094494045 +0.5375,0.8375,0.06681734,0.1336348 +0.5375,0.8375,0.13363487,0.06681746 +0.5375,0.8375,0.11905509,0.11905503 +0.5375,0.8375,0.08418468,0.1683693 +0.5375,0.8375,0.16836932,0.08418465 +0.5375,0.86249995,0.07499999,0.07499999 +0.5375,0.86249995,0.053032935,0.10606593 +0.5375,0.86249995,0.10606605,0.053033054 +0.5375,0.86249995,0.094494045,0.094494045 +0.5375,0.86249995,0.06681734,0.1336348 +0.5375,0.86249995,0.13363487,0.06681746 +0.5375,0.86249995,0.11905509,0.11905497 +0.5375,0.8625,0.08418468,0.1683693 +0.5375,0.8625,0.16836932,0.08418465 +0.5375,0.88750005,0.07499999,0.07499999 +0.5375,0.88750005,0.053032935,0.10606593 +0.5375,0.88750005,0.10606605,0.053033054 +0.5375,0.88750005,0.094494045,0.094494045 +0.5375,0.88750005,0.06681734,0.13363475 +0.5375,0.88750005,0.13363487,0.06681746 +0.5375,0.88750005,0.11905509,0.11905497 +0.5375,0.8875,0.08418468,0.1683693 +0.5375,0.8875,0.16836932,0.08418465 +0.5375,0.9125,0.07499999,0.07499999 +0.5375,0.9125,0.053032935,0.10606593 +0.5375,0.9125,0.10606605,0.053033054 +0.5375,0.9125,0.094494045,0.094494045 +0.5375,0.9125,0.06681734,0.13363475 +0.5375,0.9125,0.13363487,0.06681746 +0.5375,0.9125,0.11905509,0.11905497 +0.5375,0.9125,0.08418468,0.1683693 +0.5375,0.9125,0.16836932,0.08418465 +0.5375,0.9375,0.07499999,0.07500005 +0.5375,0.9375,0.053032935,0.10606599 +0.5375,0.9375,0.10606605,0.053033113 +0.5375,0.9375,0.094494045,0.094494104 +0.5375,0.9375,0.06681734,0.1336348 +0.5375,0.9375,0.13363487,0.06681752 +0.5375,0.9375,0.11905509,0.11905503 +0.5375,0.9375,0.08418468,0.1683693 +0.5375,0.9375,0.16836932,0.08418465 +0.5375,0.9625,0.07499999,0.07499999 +0.5375,0.9625,0.053032935,0.10606593 +0.5375,0.9625,0.10606605,0.053033054 +0.5375,0.9625,0.094494045,0.094494045 +0.5375,0.9625,0.06681734,0.13363475 +0.5375,0.9625,0.13363487,0.06681746 +0.5375,0.9625,0.11905509,0.11905497 +0.5375,0.9625,0.08418468,0.1683693 +0.5375,0.9625,0.16836932,0.08418465 +0.5375,0.98749995,0.07499999,0.07499999 +0.5375,0.98749995,0.053032935,0.10606593 +0.5375,0.98749995,0.10606605,0.053033054 +0.5375,0.98749995,0.094494045,0.094494045 +0.5375,0.98749995,0.06681734,0.13363475 +0.5375,0.98749995,0.13363487,0.06681746 +0.5375,0.98749995,0.11905509,0.11905497 +0.5375,0.98749995,0.08418468,0.16836923 +0.5375,0.98749995,0.16836932,0.08418459 +0.5625,0.0125,0.07500005,0.075 +0.5625,0.012499997,0.053032994,0.10606602 +0.5625,0.012499999,0.10606599,0.05303301 +0.5625,0.012499999,0.094494104,0.09449408 +0.5625,0.012500001,0.0668174,0.1336348 +0.5625,0.012499999,0.13363484,0.0668174 +0.5625,0.012500001,0.11905503,0.11905508 +0.5625,0.012499999,0.08418465,0.1683693 +0.5625,0.012500002,0.1683693,0.084184654 +0.5625,0.0375,0.07500005,0.075 +0.5625,0.037499998,0.053032994,0.10606601 +0.5625,0.0375,0.10606599,0.05303301 +0.5625,0.0375,0.094494104,0.094494075 +0.5625,0.0375,0.0668174,0.1336348 +0.5625,0.0375,0.13363484,0.0668174 +0.5625,0.0375,0.11905503,0.11905508 +0.5625,0.0375,0.08418465,0.16836931 +0.5625,0.0375,0.1683693,0.08418466 +0.5625,0.0625,0.07500005,0.075 +0.5625,0.0625,0.053032994,0.10606602 +0.5625,0.0625,0.10606599,0.05303301 +0.5625,0.0625,0.094494104,0.094494075 +0.5625,0.0625,0.0668174,0.1336348 +0.5625,0.0625,0.13363484,0.0668174 +0.5625,0.0625,0.11905503,0.11905508 +0.5625,0.0625,0.08418465,0.16836932 +0.5625,0.0625,0.1683693,0.08418465 +0.5625,0.0875,0.07500005,0.075 +0.5625,0.08749999,0.053032994,0.10606601 +0.5625,0.087500006,0.10606599,0.053033013 +0.5625,0.087500006,0.094494104,0.09449408 +0.5625,0.087500006,0.0668174,0.1336348 +0.5625,0.0875,0.13363484,0.0668174 +0.5625,0.0875,0.11905503,0.11905508 +0.5625,0.0875,0.08418465,0.16836931 +0.5625,0.087500006,0.1683693,0.084184654 +0.5625,0.112500004,0.07500005,0.075 +0.5625,0.1125,0.053032994,0.10606601 +0.5625,0.112500004,0.10606599,0.05303301 +0.5625,0.1125,0.094494104,0.094494075 +0.5625,0.1125,0.0668174,0.1336348 +0.5625,0.1125,0.13363484,0.0668174 +0.5625,0.1125,0.11905503,0.119055085 +0.5625,0.112500004,0.08418465,0.16836931 +0.5625,0.1125,0.1683693,0.08418465 +0.5625,0.1375,0.07500005,0.074999996 +0.5625,0.1375,0.053032994,0.10606602 +0.5625,0.1375,0.10606599,0.053033024 +0.5625,0.1375,0.094494104,0.09449408 +0.5625,0.1375,0.0668174,0.1336348 +0.5625,0.1375,0.13363484,0.0668174 +0.5625,0.13749999,0.11905503,0.11905508 +0.5625,0.1375,0.08418465,0.1683693 +0.5625,0.1375,0.1683693,0.084184654 +0.5625,0.1625,0.07500005,0.075 +0.5625,0.16250001,0.053032994,0.106066026 +0.5625,0.1625,0.10606599,0.05303301 +0.5625,0.1625,0.094494104,0.094494075 +0.5625,0.1625,0.0668174,0.1336348 +0.5625,0.1625,0.13363484,0.0668174 +0.5625,0.1625,0.11905503,0.11905508 +0.5625,0.1625,0.08418465,0.1683693 +0.5625,0.1625,0.1683693,0.08418464 +0.5625,0.1875,0.07500005,0.07499999 +0.5625,0.1875,0.053032994,0.10606603 +0.5625,0.1875,0.10606599,0.053033024 +0.5625,0.1875,0.094494104,0.09449406 +0.5625,0.1875,0.0668174,0.1336348 +0.5625,0.1875,0.13363484,0.06681742 +0.5625,0.1875,0.11905503,0.11905509 +0.5625,0.1875,0.08418465,0.16836931 +0.5625,0.1875,0.1683693,0.08418465 +0.5625,0.2125,0.07500005,0.075 +0.5625,0.2125,0.053032994,0.10606603 +0.5625,0.2125,0.10606599,0.05303301 +0.5625,0.21249999,0.094494104,0.094494075 +0.5625,0.2125,0.0668174,0.1336348 +0.5625,0.2125,0.13363484,0.0668174 +0.5625,0.2125,0.11905503,0.11905509 +0.5625,0.2125,0.08418465,0.16836931 +0.5625,0.2125,0.1683693,0.08418465 +0.5625,0.23750001,0.07500005,0.075 +0.5625,0.2375,0.053032994,0.10606602 +0.5625,0.2375,0.10606599,0.053033024 +0.5625,0.2375,0.094494104,0.094494075 +0.5625,0.23750001,0.0668174,0.13363482 +0.5625,0.2375,0.13363484,0.06681743 +0.5625,0.2375,0.11905503,0.11905506 +0.5625,0.2375,0.08418465,0.16836932 +0.5625,0.23750001,0.1683693,0.08418466 +0.5625,0.2625,0.07500005,0.07500002 +0.5625,0.2625,0.053032994,0.10606603 +0.5625,0.2625,0.10606599,0.053033024 +0.5625,0.2625,0.094494104,0.094494075 +0.5625,0.2625,0.0668174,0.13363479 +0.5625,0.2625,0.13363484,0.06681743 +0.5625,0.2625,0.11905503,0.11905508 +0.5625,0.2625,0.08418465,0.1683693 +0.5625,0.2625,0.1683693,0.08418463 +0.5625,0.2875,0.07500005,0.07499999 +0.5625,0.2875,0.053032994,0.10606603 +0.5625,0.28750002,0.10606599,0.053033024 +0.5625,0.2875,0.094494104,0.094494045 +0.5625,0.2875,0.0668174,0.1336348 +0.5625,0.28750002,0.13363484,0.06681743 +0.5625,0.2875,0.11905503,0.11905508 +0.5625,0.2875,0.08418465,0.1683693 +0.5625,0.2875,0.1683693,0.08418465 +0.5625,0.3125,0.07500005,0.07499999 +0.5625,0.3125,0.053032994,0.10606605 +0.5625,0.3125,0.10606599,0.053032994 +0.5625,0.3125,0.094494104,0.094494045 +0.5625,0.3125,0.0668174,0.1336348 +0.5625,0.3125,0.13363484,0.0668174 +0.5625,0.3125,0.11905503,0.11905509 +0.5625,0.3125,0.08418465,0.1683693 +0.5625,0.3125,0.1683693,0.08418465 +0.5625,0.3375,0.07500005,0.07499999 +0.5625,0.3375,0.053032994,0.10606605 +0.5625,0.33749998,0.10606599,0.053033024 +0.5625,0.3375,0.094494104,0.094494045 +0.5625,0.33750004,0.0668174,0.13363484 +0.5625,0.33749998,0.13363484,0.06681743 +0.5625,0.3375,0.11905503,0.11905509 +0.5625,0.3375,0.08418465,0.1683693 +0.5625,0.3375,0.1683693,0.08418465 +0.5625,0.3625,0.07500005,0.07500002 +0.5625,0.3625,0.053032994,0.10606602 +0.5625,0.3625,0.10606599,0.053033024 +0.5625,0.3625,0.094494104,0.094494075 +0.5625,0.3625,0.0668174,0.1336348 +0.5625,0.3625,0.13363484,0.06681743 +0.5625,0.3625,0.11905503,0.11905506 +0.5625,0.3625,0.08418465,0.1683693 +0.5625,0.3625,0.1683693,0.08418465 +0.5625,0.3875,0.07500005,0.07500002 +0.5625,0.3875,0.053032994,0.10606602 +0.5625,0.3875,0.10606599,0.053032994 +0.5625,0.3875,0.094494104,0.094494075 +0.5625,0.3875,0.0668174,0.13363484 +0.5625,0.3875,0.13363484,0.0668174 +0.5625,0.3875,0.11905503,0.11905506 +0.5625,0.3875,0.08418465,0.1683693 +0.5625,0.3875,0.1683693,0.08418465 +0.5625,0.4125,0.07500005,0.07499999 +0.5625,0.4125,0.053032994,0.10606605 +0.5625,0.4125,0.10606599,0.053032994 +0.5625,0.4125,0.094494104,0.094494045 +0.5625,0.41250002,0.0668174,0.13363484 +0.5625,0.4125,0.13363484,0.0668174 +0.5625,0.4125,0.11905503,0.11905509 +0.5625,0.4125,0.08418465,0.1683693 +0.5625,0.4125,0.1683693,0.08418465 +0.5625,0.4375,0.07500005,0.07499999 +0.5625,0.4375,0.053032994,0.10606605 +0.5625,0.4375,0.10606599,0.053032994 +0.5625,0.4375,0.094494104,0.094494045 +0.5625,0.4375,0.0668174,0.1336348 +0.5625,0.4375,0.13363484,0.0668174 +0.5625,0.4375,0.11905503,0.11905509 +0.5625,0.4375,0.08418465,0.1683693 +0.5625,0.4375,0.1683693,0.08418465 +0.5625,0.4625,0.07500005,0.07499999 +0.5625,0.4625,0.053032994,0.10606605 +0.5625,0.46249998,0.10606599,0.053032964 +0.5625,0.4625,0.094494104,0.094494045 +0.5625,0.46250004,0.0668174,0.13363484 +0.5625,0.46249998,0.13363484,0.06681737 +0.5625,0.4625,0.11905503,0.11905509 +0.5625,0.46249998,0.08418465,0.16836926 +0.5625,0.46249998,0.1683693,0.08418462 +0.5625,0.48749998,0.07500005,0.07499999 +0.5625,0.4875,0.053032994,0.10606602 +0.5625,0.4875,0.10606599,0.053032994 +0.5625,0.48749998,0.094494104,0.094494045 +0.5625,0.4875,0.0668174,0.13363484 +0.5625,0.4875,0.13363484,0.0668174 +0.5625,0.4875,0.11905503,0.11905506 +0.5625,0.4875,0.08418465,0.1683693 +0.5625,0.4875,0.1683693,0.08418465 +0.5625,0.5125,0.07500005,0.07500002 +0.5625,0.51250005,0.053032994,0.10606605 +0.5625,0.5125,0.10606599,0.053032964 +0.5625,0.5125,0.094494104,0.094494075 +0.5625,0.51250005,0.0668174,0.13363487 +0.5625,0.5125,0.13363484,0.06681737 +0.5625,0.51250005,0.11905503,0.11905509 +0.5625,0.5125,0.08418465,0.1683693 +0.5625,0.5125,0.1683693,0.08418465 +0.5625,0.5375,0.07500005,0.07499999 +0.5625,0.5375,0.053032994,0.10606605 +0.5625,0.5375,0.10606599,0.053032935 +0.5625,0.5375,0.094494104,0.094494045 +0.5625,0.5375,0.0668174,0.13363487 +0.5625,0.5375,0.13363484,0.06681734 +0.5625,0.5375,0.11905503,0.11905509 +0.5625,0.5375,0.08418465,0.16836932 +0.5625,0.5375,0.1683693,0.08418468 +0.5625,0.5625,0.07500005,0.07500005 +0.5625,0.5625,0.053032994,0.10606599 +0.5625,0.5625,0.10606599,0.053032994 +0.5625,0.5625,0.094494104,0.094494104 +0.5625,0.5625,0.0668174,0.13363484 +0.5625,0.5625,0.13363484,0.0668174 +0.5625,0.5625,0.11905503,0.11905503 +0.5625,0.5625,0.08418465,0.1683693 +0.5625,0.5625,0.1683693,0.08418465 +0.5625,0.5875,0.07500005,0.07499999 +0.5625,0.5875,0.053032994,0.10606605 +0.5625,0.5875,0.10606599,0.053032935 +0.5625,0.5875,0.094494104,0.094494045 +0.5625,0.5875,0.0668174,0.13363487 +0.5625,0.5875,0.13363484,0.06681734 +0.5625,0.5875,0.11905503,0.11905509 +0.5625,0.5875,0.08418465,0.1683693 +0.5625,0.5875,0.1683693,0.08418465 +0.5625,0.61249995,0.07500005,0.07499999 +0.5625,0.61249995,0.053032994,0.10606605 +0.5625,0.6125,0.10606599,0.053032994 +0.5625,0.61249995,0.094494104,0.094494045 +0.5625,0.61249995,0.0668174,0.13363487 +0.5625,0.6125,0.13363484,0.0668174 +0.5625,0.61249995,0.11905503,0.11905509 +0.5625,0.6125,0.08418465,0.1683693 +0.5625,0.6125,0.1683693,0.08418465 +0.5625,0.63750005,0.07500005,0.07499999 +0.5625,0.63750005,0.053032994,0.10606605 +0.5625,0.6375,0.10606599,0.053032994 +0.5625,0.63750005,0.094494104,0.094494045 +0.5625,0.63750005,0.0668174,0.13363487 +0.5625,0.6375,0.13363484,0.0668174 +0.5625,0.63750005,0.11905503,0.11905509 +0.5625,0.6375,0.08418465,0.1683693 +0.5625,0.6375,0.1683693,0.08418465 +0.5625,0.6625,0.07500005,0.07499999 +0.5625,0.6625,0.053032994,0.10606605 +0.5625,0.6625,0.10606599,0.053032935 +0.5625,0.6625,0.094494104,0.094494045 +0.5625,0.6625,0.0668174,0.13363487 +0.5625,0.6625,0.13363484,0.06681734 +0.5625,0.6625,0.11905503,0.11905509 +0.5625,0.6625,0.08418465,0.1683693 +0.5625,0.6625,0.1683693,0.08418465 +0.5625,0.6875,0.07500005,0.07500005 +0.5625,0.6875,0.053032994,0.10606599 +0.5625,0.6875,0.10606599,0.053032994 +0.5625,0.6875,0.094494104,0.094494104 +0.5625,0.6875,0.0668174,0.1336348 +0.5625,0.6875,0.13363484,0.0668174 +0.5625,0.6875,0.11905503,0.11905503 +0.5625,0.6875,0.08418465,0.1683693 +0.5625,0.6875,0.1683693,0.08418465 +0.5625,0.7125,0.07500005,0.07499999 +0.5625,0.7125,0.053032994,0.10606605 +0.5625,0.7125,0.10606599,0.053032935 +0.5625,0.7125,0.094494104,0.094494045 +0.5625,0.7125,0.0668174,0.13363487 +0.5625,0.7125,0.13363484,0.06681734 +0.5625,0.7125,0.11905503,0.11905509 +0.5625,0.7125,0.08418465,0.1683693 +0.5625,0.7125,0.1683693,0.08418465 +0.5625,0.73749995,0.07500005,0.07499999 +0.5625,0.73749995,0.053032994,0.10606605 +0.5625,0.7375,0.10606599,0.053032994 +0.5625,0.73749995,0.094494104,0.094494045 +0.5625,0.73749995,0.0668174,0.1336348 +0.5625,0.7375,0.13363484,0.0668174 +0.5625,0.73749995,0.11905503,0.11905509 +0.5625,0.7375,0.08418465,0.1683693 +0.5625,0.7375,0.1683693,0.08418465 +0.5625,0.76250005,0.07500005,0.07499999 +0.5625,0.7625,0.053032994,0.10606599 +0.5625,0.7625,0.10606599,0.053032994 +0.5625,0.76250005,0.094494104,0.094494045 +0.5625,0.7625,0.0668174,0.1336348 +0.5625,0.7625,0.13363484,0.0668174 +0.5625,0.7625,0.11905503,0.11905503 +0.5625,0.7625,0.08418465,0.1683693 +0.5625,0.7625,0.1683693,0.08418465 +0.5625,0.7875,0.07500005,0.07499999 +0.5625,0.78749996,0.053032994,0.10606599 +0.5625,0.7875,0.10606599,0.053032994 +0.5625,0.7875,0.094494104,0.094494045 +0.5625,0.78749996,0.0668174,0.1336348 +0.5625,0.7875,0.13363484,0.0668174 +0.5625,0.78749996,0.11905503,0.11905503 +0.5625,0.7875,0.08418465,0.1683693 +0.5625,0.7875,0.1683693,0.08418465 +0.5625,0.8125,0.07500005,0.07500005 +0.5625,0.8125,0.053032994,0.10606599 +0.5625,0.8125,0.10606599,0.053033054 +0.5625,0.8125,0.094494104,0.094494104 +0.5625,0.8125,0.0668174,0.1336348 +0.5625,0.8125,0.13363484,0.06681746 +0.5625,0.8125,0.11905503,0.11905503 +0.5625,0.8125,0.08418465,0.1683693 +0.5625,0.8125,0.1683693,0.08418465 +0.5625,0.8375,0.07500005,0.07499999 +0.5625,0.8375,0.053032994,0.10606599 +0.5625,0.8375,0.10606599,0.053033054 +0.5625,0.8375,0.094494104,0.094494045 +0.5625,0.8375,0.0668174,0.1336348 +0.5625,0.8375,0.13363484,0.06681746 +0.5625,0.8375,0.11905503,0.11905503 +0.5625,0.8375,0.08418465,0.1683693 +0.5625,0.8375,0.1683693,0.08418465 +0.5625,0.86249995,0.07500005,0.07499999 +0.5625,0.86249995,0.053032994,0.10606593 +0.5625,0.86249995,0.10606599,0.053033054 +0.5625,0.86249995,0.094494104,0.094494045 +0.5625,0.86249995,0.0668174,0.1336348 +0.5625,0.86249995,0.13363484,0.06681746 +0.5625,0.86249995,0.11905503,0.11905497 +0.5625,0.8625,0.08418465,0.1683693 +0.5625,0.8625,0.1683693,0.08418465 +0.5625,0.88750005,0.07500005,0.07499999 +0.5625,0.88750005,0.053032994,0.10606593 +0.5625,0.88750005,0.10606599,0.053033054 +0.5625,0.88750005,0.094494104,0.094494045 +0.5625,0.88750005,0.0668174,0.13363475 +0.5625,0.88750005,0.13363484,0.06681746 +0.5625,0.88750005,0.11905503,0.11905497 +0.5625,0.8875,0.08418465,0.1683693 +0.5625,0.8875,0.1683693,0.08418465 +0.5625,0.9125,0.07500005,0.07499999 +0.5625,0.9125,0.053032994,0.10606593 +0.5625,0.9125,0.10606599,0.053033054 +0.5625,0.9125,0.094494104,0.094494045 +0.5625,0.9125,0.0668174,0.13363475 +0.5625,0.9125,0.13363484,0.06681746 +0.5625,0.9125,0.11905503,0.11905497 +0.5625,0.9125,0.08418465,0.1683693 +0.5625,0.9125,0.1683693,0.08418465 +0.5625,0.9375,0.07500005,0.07500005 +0.5625,0.9375,0.053032994,0.10606599 +0.5625,0.9375,0.10606599,0.053033113 +0.5625,0.9375,0.094494104,0.094494104 +0.5625,0.9375,0.0668174,0.1336348 +0.5625,0.9375,0.13363484,0.06681752 +0.5625,0.9375,0.11905503,0.11905503 +0.5625,0.9375,0.08418465,0.1683693 +0.5625,0.9375,0.1683693,0.08418465 +0.5625,0.9625,0.07500005,0.07499999 +0.5625,0.9625,0.053032994,0.10606593 +0.5625,0.9625,0.10606599,0.053033054 +0.5625,0.9625,0.094494104,0.094494045 +0.5625,0.9625,0.0668174,0.13363475 +0.5625,0.9625,0.13363484,0.06681746 +0.5625,0.9625,0.11905503,0.11905497 +0.5625,0.9625,0.08418465,0.1683693 +0.5625,0.9625,0.1683693,0.08418465 +0.5625,0.98749995,0.07500005,0.07499999 +0.5625,0.98749995,0.053032994,0.10606593 +0.5625,0.98749995,0.10606599,0.053033054 +0.5625,0.98749995,0.094494104,0.094494045 +0.5625,0.98749995,0.0668174,0.13363475 +0.5625,0.98749995,0.13363484,0.06681746 +0.5625,0.98749995,0.11905503,0.11905497 +0.5625,0.98749995,0.08418465,0.16836923 +0.5625,0.98749995,0.1683693,0.08418459 +0.5875,0.0125,0.07499999,0.075 +0.5875,0.012499997,0.053032935,0.10606602 +0.5875,0.012499999,0.10606605,0.05303301 +0.5875,0.012499999,0.094494045,0.09449408 +0.5875,0.012500001,0.06681734,0.1336348 +0.5875,0.012499999,0.13363487,0.0668174 +0.5875,0.012500001,0.11905509,0.11905508 +0.5875,0.012499999,0.08418465,0.1683693 +0.5875,0.012500002,0.1683693,0.084184654 +0.5875,0.0375,0.07499999,0.075 +0.5875,0.037499998,0.053032935,0.10606601 +0.5875,0.0375,0.10606605,0.05303301 +0.5875,0.0375,0.094494045,0.094494075 +0.5875,0.0375,0.06681734,0.1336348 +0.5875,0.0375,0.13363487,0.0668174 +0.5875,0.0375,0.11905509,0.11905508 +0.5875,0.0375,0.08418465,0.16836931 +0.5875,0.0375,0.1683693,0.08418466 +0.5875,0.0625,0.07499999,0.075 +0.5875,0.0625,0.053032935,0.10606602 +0.5875,0.0625,0.10606605,0.05303301 +0.5875,0.0625,0.094494045,0.094494075 +0.5875,0.0625,0.06681734,0.1336348 +0.5875,0.0625,0.13363487,0.0668174 +0.5875,0.0625,0.11905509,0.11905508 +0.5875,0.0625,0.08418465,0.16836932 +0.5875,0.0625,0.1683693,0.08418465 +0.5875,0.0875,0.07499999,0.075 +0.5875,0.08749999,0.053032935,0.10606601 +0.5875,0.087500006,0.10606605,0.053033013 +0.5875,0.087500006,0.094494045,0.09449408 +0.5875,0.087500006,0.06681734,0.1336348 +0.5875,0.0875,0.13363487,0.0668174 +0.5875,0.0875,0.11905509,0.11905508 +0.5875,0.0875,0.08418465,0.16836931 +0.5875,0.087500006,0.1683693,0.084184654 +0.5875,0.112500004,0.07499999,0.075 +0.5875,0.1125,0.053032935,0.10606601 +0.5875,0.112500004,0.10606605,0.05303301 +0.5875,0.1125,0.094494045,0.094494075 +0.5875,0.1125,0.06681734,0.1336348 +0.5875,0.1125,0.13363487,0.0668174 +0.5875,0.1125,0.11905509,0.119055085 +0.5875,0.112500004,0.08418465,0.16836931 +0.5875,0.1125,0.1683693,0.08418465 +0.5875,0.1375,0.07499999,0.074999996 +0.5875,0.1375,0.053032935,0.10606602 +0.5875,0.1375,0.10606605,0.053033024 +0.5875,0.1375,0.094494045,0.09449408 +0.5875,0.1375,0.06681734,0.1336348 +0.5875,0.1375,0.13363487,0.0668174 +0.5875,0.13749999,0.11905509,0.11905508 +0.5875,0.1375,0.08418465,0.1683693 +0.5875,0.1375,0.1683693,0.084184654 +0.5875,0.1625,0.07499999,0.075 +0.5875,0.16250001,0.053032935,0.106066026 +0.5875,0.1625,0.10606605,0.05303301 +0.5875,0.1625,0.094494045,0.094494075 +0.5875,0.1625,0.06681734,0.1336348 +0.5875,0.1625,0.13363487,0.0668174 +0.5875,0.1625,0.11905509,0.11905508 +0.5875,0.1625,0.08418465,0.1683693 +0.5875,0.1625,0.1683693,0.08418464 +0.5875,0.1875,0.07499999,0.07499999 +0.5875,0.1875,0.053032935,0.10606603 +0.5875,0.1875,0.10606605,0.053033024 +0.5875,0.1875,0.094494045,0.09449406 +0.5875,0.1875,0.06681734,0.1336348 +0.5875,0.1875,0.13363487,0.06681742 +0.5875,0.1875,0.11905509,0.11905509 +0.5875,0.1875,0.08418465,0.16836931 +0.5875,0.1875,0.1683693,0.08418465 +0.5875,0.2125,0.07499999,0.075 +0.5875,0.2125,0.053032935,0.10606603 +0.5875,0.2125,0.10606605,0.05303301 +0.5875,0.21249999,0.094494045,0.094494075 +0.5875,0.2125,0.06681734,0.1336348 +0.5875,0.2125,0.13363487,0.0668174 +0.5875,0.2125,0.11905509,0.11905509 +0.5875,0.2125,0.08418465,0.16836931 +0.5875,0.2125,0.1683693,0.08418465 +0.5875,0.23750001,0.07499999,0.075 +0.5875,0.2375,0.053032935,0.10606602 +0.5875,0.2375,0.10606605,0.053033024 +0.5875,0.2375,0.094494045,0.094494075 +0.5875,0.23750001,0.06681734,0.13363482 +0.5875,0.2375,0.13363487,0.06681743 +0.5875,0.2375,0.11905509,0.11905506 +0.5875,0.2375,0.08418465,0.16836932 +0.5875,0.23750001,0.1683693,0.08418466 +0.5875,0.2625,0.07499999,0.07500002 +0.5875,0.2625,0.053032935,0.10606603 +0.5875,0.2625,0.10606605,0.053033024 +0.5875,0.2625,0.094494045,0.094494075 +0.5875,0.2625,0.06681734,0.13363479 +0.5875,0.2625,0.13363487,0.06681743 +0.5875,0.2625,0.11905509,0.11905508 +0.5875,0.2625,0.08418465,0.1683693 +0.5875,0.2625,0.1683693,0.08418463 +0.5875,0.2875,0.07499999,0.07499999 +0.5875,0.2875,0.053032935,0.10606603 +0.5875,0.28750002,0.10606605,0.053033024 +0.5875,0.2875,0.094494045,0.094494045 +0.5875,0.2875,0.06681734,0.1336348 +0.5875,0.28750002,0.13363487,0.06681743 +0.5875,0.2875,0.11905509,0.11905508 +0.5875,0.2875,0.08418465,0.1683693 +0.5875,0.2875,0.1683693,0.08418465 +0.5875,0.3125,0.07499999,0.07499999 +0.5875,0.3125,0.053032935,0.10606605 +0.5875,0.3125,0.10606605,0.053032994 +0.5875,0.3125,0.094494045,0.094494045 +0.5875,0.3125,0.06681734,0.1336348 +0.5875,0.3125,0.13363487,0.0668174 +0.5875,0.3125,0.11905509,0.11905509 +0.5875,0.3125,0.08418465,0.1683693 +0.5875,0.3125,0.1683693,0.08418465 +0.5875,0.3375,0.07499999,0.07499999 +0.5875,0.3375,0.053032935,0.10606605 +0.5875,0.33749998,0.10606605,0.053033024 +0.5875,0.3375,0.094494045,0.094494045 +0.5875,0.33750004,0.06681734,0.13363484 +0.5875,0.33749998,0.13363487,0.06681743 +0.5875,0.3375,0.11905509,0.11905509 +0.5875,0.3375,0.08418465,0.1683693 +0.5875,0.3375,0.1683693,0.08418465 +0.5875,0.3625,0.07499999,0.07500002 +0.5875,0.3625,0.053032935,0.10606602 +0.5875,0.3625,0.10606605,0.053033024 +0.5875,0.3625,0.094494045,0.094494075 +0.5875,0.3625,0.06681734,0.1336348 +0.5875,0.3625,0.13363487,0.06681743 +0.5875,0.3625,0.11905509,0.11905506 +0.5875,0.3625,0.08418465,0.1683693 +0.5875,0.3625,0.1683693,0.08418465 +0.5875,0.3875,0.07499999,0.07500002 +0.5875,0.3875,0.053032935,0.10606602 +0.5875,0.3875,0.10606605,0.053032994 +0.5875,0.3875,0.094494045,0.094494075 +0.5875,0.3875,0.06681734,0.13363484 +0.5875,0.3875,0.13363487,0.0668174 +0.5875,0.3875,0.11905509,0.11905506 +0.5875,0.3875,0.08418465,0.1683693 +0.5875,0.3875,0.1683693,0.08418465 +0.5875,0.4125,0.07499999,0.07499999 +0.5875,0.4125,0.053032935,0.10606605 +0.5875,0.4125,0.10606605,0.053032994 +0.5875,0.4125,0.094494045,0.094494045 +0.5875,0.41250002,0.06681734,0.13363484 +0.5875,0.4125,0.13363487,0.0668174 +0.5875,0.4125,0.11905509,0.11905509 +0.5875,0.4125,0.08418465,0.1683693 +0.5875,0.4125,0.1683693,0.08418465 +0.5875,0.4375,0.07499999,0.07499999 +0.5875,0.4375,0.053032935,0.10606605 +0.5875,0.4375,0.10606605,0.053032994 +0.5875,0.4375,0.094494045,0.094494045 +0.5875,0.4375,0.06681734,0.1336348 +0.5875,0.4375,0.13363487,0.0668174 +0.5875,0.4375,0.11905509,0.11905509 +0.5875,0.4375,0.08418465,0.1683693 +0.5875,0.4375,0.1683693,0.08418465 +0.5875,0.4625,0.07499999,0.07499999 +0.5875,0.4625,0.053032935,0.10606605 +0.5875,0.46249998,0.10606605,0.053032964 +0.5875,0.4625,0.094494045,0.094494045 +0.5875,0.46250004,0.06681734,0.13363484 +0.5875,0.46249998,0.13363487,0.06681737 +0.5875,0.4625,0.11905509,0.11905509 +0.5875,0.46249998,0.08418465,0.16836926 +0.5875,0.46249998,0.1683693,0.08418462 +0.5875,0.48749998,0.07499999,0.07499999 +0.5875,0.4875,0.053032935,0.10606602 +0.5875,0.4875,0.10606605,0.053032994 +0.5875,0.48749998,0.094494045,0.094494045 +0.5875,0.4875,0.06681734,0.13363484 +0.5875,0.4875,0.13363487,0.0668174 +0.5875,0.4875,0.11905509,0.11905506 +0.5875,0.4875,0.08418465,0.1683693 +0.5875,0.4875,0.1683693,0.08418465 +0.5875,0.5125,0.07499999,0.07500002 +0.5875,0.51250005,0.053032935,0.10606605 +0.5875,0.5125,0.10606605,0.053032964 +0.5875,0.5125,0.094494045,0.094494075 +0.5875,0.51250005,0.06681734,0.13363487 +0.5875,0.5125,0.13363487,0.06681737 +0.5875,0.51250005,0.11905509,0.11905509 +0.5875,0.5125,0.08418465,0.1683693 +0.5875,0.5125,0.1683693,0.08418465 +0.5875,0.5375,0.07499999,0.07499999 +0.5875,0.5375,0.053032935,0.10606605 +0.5875,0.5375,0.10606605,0.053032935 +0.5875,0.5375,0.094494045,0.094494045 +0.5875,0.5375,0.06681734,0.13363487 +0.5875,0.5375,0.13363487,0.06681734 +0.5875,0.5375,0.11905509,0.11905509 +0.5875,0.5375,0.08418465,0.16836932 +0.5875,0.5375,0.1683693,0.08418468 +0.5875,0.5625,0.07499999,0.07500005 +0.5875,0.5625,0.053032935,0.10606599 +0.5875,0.5625,0.10606605,0.053032994 +0.5875,0.5625,0.094494045,0.094494104 +0.5875,0.5625,0.06681734,0.13363484 +0.5875,0.5625,0.13363487,0.0668174 +0.5875,0.5625,0.11905509,0.11905503 +0.5875,0.5625,0.08418465,0.1683693 +0.5875,0.5625,0.1683693,0.08418465 +0.5875,0.5875,0.07499999,0.07499999 +0.5875,0.5875,0.053032935,0.10606605 +0.5875,0.5875,0.10606605,0.053032935 +0.5875,0.5875,0.094494045,0.094494045 +0.5875,0.5875,0.06681734,0.13363487 +0.5875,0.5875,0.13363487,0.06681734 +0.5875,0.5875,0.11905509,0.11905509 +0.5875,0.5875,0.08418465,0.1683693 +0.5875,0.5875,0.1683693,0.08418465 +0.5875,0.61249995,0.07499999,0.07499999 +0.5875,0.61249995,0.053032935,0.10606605 +0.5875,0.6125,0.10606605,0.053032994 +0.5875,0.61249995,0.094494045,0.094494045 +0.5875,0.61249995,0.06681734,0.13363487 +0.5875,0.6125,0.13363487,0.0668174 +0.5875,0.61249995,0.11905509,0.11905509 +0.5875,0.6125,0.08418465,0.1683693 +0.5875,0.6125,0.1683693,0.08418465 +0.5875,0.63750005,0.07499999,0.07499999 +0.5875,0.63750005,0.053032935,0.10606605 +0.5875,0.6375,0.10606605,0.053032994 +0.5875,0.63750005,0.094494045,0.094494045 +0.5875,0.63750005,0.06681734,0.13363487 +0.5875,0.6375,0.13363487,0.0668174 +0.5875,0.63750005,0.11905509,0.11905509 +0.5875,0.6375,0.08418465,0.1683693 +0.5875,0.6375,0.1683693,0.08418465 +0.5875,0.6625,0.07499999,0.07499999 +0.5875,0.6625,0.053032935,0.10606605 +0.5875,0.6625,0.10606605,0.053032935 +0.5875,0.6625,0.094494045,0.094494045 +0.5875,0.6625,0.06681734,0.13363487 +0.5875,0.6625,0.13363487,0.06681734 +0.5875,0.6625,0.11905509,0.11905509 +0.5875,0.6625,0.08418465,0.1683693 +0.5875,0.6625,0.1683693,0.08418465 +0.5875,0.6875,0.07499999,0.07500005 +0.5875,0.6875,0.053032935,0.10606599 +0.5875,0.6875,0.10606605,0.053032994 +0.5875,0.6875,0.094494045,0.094494104 +0.5875,0.6875,0.06681734,0.1336348 +0.5875,0.6875,0.13363487,0.0668174 +0.5875,0.6875,0.11905509,0.11905503 +0.5875,0.6875,0.08418465,0.1683693 +0.5875,0.6875,0.1683693,0.08418465 +0.5875,0.7125,0.07499999,0.07499999 +0.5875,0.7125,0.053032935,0.10606605 +0.5875,0.7125,0.10606605,0.053032935 +0.5875,0.7125,0.094494045,0.094494045 +0.5875,0.7125,0.06681734,0.13363487 +0.5875,0.7125,0.13363487,0.06681734 +0.5875,0.7125,0.11905509,0.11905509 +0.5875,0.7125,0.08418465,0.1683693 +0.5875,0.7125,0.1683693,0.08418465 +0.5875,0.73749995,0.07499999,0.07499999 +0.5875,0.73749995,0.053032935,0.10606605 +0.5875,0.7375,0.10606605,0.053032994 +0.5875,0.73749995,0.094494045,0.094494045 +0.5875,0.73749995,0.06681734,0.1336348 +0.5875,0.7375,0.13363487,0.0668174 +0.5875,0.73749995,0.11905509,0.11905509 +0.5875,0.7375,0.08418465,0.1683693 +0.5875,0.7375,0.1683693,0.08418465 +0.5875,0.76250005,0.07499999,0.07499999 +0.5875,0.7625,0.053032935,0.10606599 +0.5875,0.7625,0.10606605,0.053032994 +0.5875,0.76250005,0.094494045,0.094494045 +0.5875,0.7625,0.06681734,0.1336348 +0.5875,0.7625,0.13363487,0.0668174 +0.5875,0.7625,0.11905509,0.11905503 +0.5875,0.7625,0.08418465,0.1683693 +0.5875,0.7625,0.1683693,0.08418465 +0.5875,0.7875,0.07499999,0.07499999 +0.5875,0.78749996,0.053032935,0.10606599 +0.5875,0.7875,0.10606605,0.053032994 +0.5875,0.7875,0.094494045,0.094494045 +0.5875,0.78749996,0.06681734,0.1336348 +0.5875,0.7875,0.13363487,0.0668174 +0.5875,0.78749996,0.11905509,0.11905503 +0.5875,0.7875,0.08418465,0.1683693 +0.5875,0.7875,0.1683693,0.08418465 +0.5875,0.8125,0.07499999,0.07500005 +0.5875,0.8125,0.053032935,0.10606599 +0.5875,0.8125,0.10606605,0.053033054 +0.5875,0.8125,0.094494045,0.094494104 +0.5875,0.8125,0.06681734,0.1336348 +0.5875,0.8125,0.13363487,0.06681746 +0.5875,0.8125,0.11905509,0.11905503 +0.5875,0.8125,0.08418465,0.1683693 +0.5875,0.8125,0.1683693,0.08418465 +0.5875,0.8375,0.07499999,0.07499999 +0.5875,0.8375,0.053032935,0.10606599 +0.5875,0.8375,0.10606605,0.053033054 +0.5875,0.8375,0.094494045,0.094494045 +0.5875,0.8375,0.06681734,0.1336348 +0.5875,0.8375,0.13363487,0.06681746 +0.5875,0.8375,0.11905509,0.11905503 +0.5875,0.8375,0.08418465,0.1683693 +0.5875,0.8375,0.1683693,0.08418465 +0.5875,0.86249995,0.07499999,0.07499999 +0.5875,0.86249995,0.053032935,0.10606593 +0.5875,0.86249995,0.10606605,0.053033054 +0.5875,0.86249995,0.094494045,0.094494045 +0.5875,0.86249995,0.06681734,0.1336348 +0.5875,0.86249995,0.13363487,0.06681746 +0.5875,0.86249995,0.11905509,0.11905497 +0.5875,0.8625,0.08418465,0.1683693 +0.5875,0.8625,0.1683693,0.08418465 +0.5875,0.88750005,0.07499999,0.07499999 +0.5875,0.88750005,0.053032935,0.10606593 +0.5875,0.88750005,0.10606605,0.053033054 +0.5875,0.88750005,0.094494045,0.094494045 +0.5875,0.88750005,0.06681734,0.13363475 +0.5875,0.88750005,0.13363487,0.06681746 +0.5875,0.88750005,0.11905509,0.11905497 +0.5875,0.8875,0.08418465,0.1683693 +0.5875,0.8875,0.1683693,0.08418465 +0.5875,0.9125,0.07499999,0.07499999 +0.5875,0.9125,0.053032935,0.10606593 +0.5875,0.9125,0.10606605,0.053033054 +0.5875,0.9125,0.094494045,0.094494045 +0.5875,0.9125,0.06681734,0.13363475 +0.5875,0.9125,0.13363487,0.06681746 +0.5875,0.9125,0.11905509,0.11905497 +0.5875,0.9125,0.08418465,0.1683693 +0.5875,0.9125,0.1683693,0.08418465 +0.5875,0.9375,0.07499999,0.07500005 +0.5875,0.9375,0.053032935,0.10606599 +0.5875,0.9375,0.10606605,0.053033113 +0.5875,0.9375,0.094494045,0.094494104 +0.5875,0.9375,0.06681734,0.1336348 +0.5875,0.9375,0.13363487,0.06681752 +0.5875,0.9375,0.11905509,0.11905503 +0.5875,0.9375,0.08418465,0.1683693 +0.5875,0.9375,0.1683693,0.08418465 +0.5875,0.9625,0.07499999,0.07499999 +0.5875,0.9625,0.053032935,0.10606593 +0.5875,0.9625,0.10606605,0.053033054 +0.5875,0.9625,0.094494045,0.094494045 +0.5875,0.9625,0.06681734,0.13363475 +0.5875,0.9625,0.13363487,0.06681746 +0.5875,0.9625,0.11905509,0.11905497 +0.5875,0.9625,0.08418465,0.1683693 +0.5875,0.9625,0.1683693,0.08418465 +0.5875,0.98749995,0.07499999,0.07499999 +0.5875,0.98749995,0.053032935,0.10606593 +0.5875,0.98749995,0.10606605,0.053033054 +0.5875,0.98749995,0.094494045,0.094494045 +0.5875,0.98749995,0.06681734,0.13363475 +0.5875,0.98749995,0.13363487,0.06681746 +0.5875,0.98749995,0.11905509,0.11905497 +0.5875,0.98749995,0.08418465,0.16836923 +0.5875,0.98749995,0.1683693,0.08418459 +0.61249995,0.0125,0.07499999,0.075 +0.6125,0.012499997,0.053032994,0.10606602 +0.61249995,0.012499999,0.10606605,0.05303301 +0.61249995,0.012499999,0.094494045,0.09449408 +0.6125,0.012500001,0.0668174,0.1336348 +0.61249995,0.012499999,0.13363487,0.0668174 +0.61249995,0.012500001,0.11905509,0.11905508 +0.6125,0.012499999,0.08418465,0.1683693 +0.6125,0.012500002,0.1683693,0.084184654 +0.61249995,0.0375,0.07499999,0.075 +0.6125,0.037499998,0.053032994,0.10606601 +0.61249995,0.0375,0.10606605,0.05303301 +0.61249995,0.0375,0.094494045,0.094494075 +0.6125,0.0375,0.0668174,0.1336348 +0.61249995,0.0375,0.13363487,0.0668174 +0.61249995,0.0375,0.11905509,0.11905508 +0.6125,0.0375,0.08418465,0.16836931 +0.6125,0.0375,0.1683693,0.08418466 +0.61249995,0.0625,0.07499999,0.075 +0.6125,0.0625,0.053032994,0.10606602 +0.61249995,0.0625,0.10606605,0.05303301 +0.61249995,0.0625,0.094494045,0.094494075 +0.6125,0.0625,0.0668174,0.1336348 +0.61249995,0.0625,0.13363487,0.0668174 +0.61249995,0.0625,0.11905509,0.11905508 +0.6125,0.0625,0.08418465,0.16836932 +0.6125,0.0625,0.1683693,0.08418465 +0.61249995,0.0875,0.07499999,0.075 +0.6125,0.08749999,0.053032994,0.10606601 +0.61249995,0.087500006,0.10606605,0.053033013 +0.61249995,0.087500006,0.094494045,0.09449408 +0.6125,0.087500006,0.0668174,0.1336348 +0.61249995,0.0875,0.13363487,0.0668174 +0.61249995,0.0875,0.11905509,0.11905508 +0.6125,0.0875,0.08418465,0.16836931 +0.6125,0.087500006,0.1683693,0.084184654 +0.61249995,0.112500004,0.07499999,0.075 +0.6125,0.1125,0.053032994,0.10606601 +0.61249995,0.112500004,0.10606605,0.05303301 +0.61249995,0.1125,0.094494045,0.094494075 +0.6125,0.1125,0.0668174,0.1336348 +0.61249995,0.1125,0.13363487,0.0668174 +0.61249995,0.1125,0.11905509,0.119055085 +0.6125,0.112500004,0.08418465,0.16836931 +0.6125,0.1125,0.1683693,0.08418465 +0.61249995,0.1375,0.07499999,0.074999996 +0.6125,0.1375,0.053032994,0.10606602 +0.61249995,0.1375,0.10606605,0.053033024 +0.61249995,0.1375,0.094494045,0.09449408 +0.6125,0.1375,0.0668174,0.1336348 +0.61249995,0.1375,0.13363487,0.0668174 +0.61249995,0.13749999,0.11905509,0.11905508 +0.6125,0.1375,0.08418465,0.1683693 +0.6125,0.1375,0.1683693,0.084184654 +0.61249995,0.1625,0.07499999,0.075 +0.6125,0.16250001,0.053032994,0.106066026 +0.61249995,0.1625,0.10606605,0.05303301 +0.61249995,0.1625,0.094494045,0.094494075 +0.6125,0.1625,0.0668174,0.1336348 +0.61249995,0.1625,0.13363487,0.0668174 +0.61249995,0.1625,0.11905509,0.11905508 +0.6125,0.1625,0.08418465,0.1683693 +0.6125,0.1625,0.1683693,0.08418464 +0.61249995,0.1875,0.07499999,0.07499999 +0.6125,0.1875,0.053032994,0.10606603 +0.61249995,0.1875,0.10606605,0.053033024 +0.61249995,0.1875,0.094494045,0.09449406 +0.6125,0.1875,0.0668174,0.1336348 +0.61249995,0.1875,0.13363487,0.06681742 +0.61249995,0.1875,0.11905509,0.11905509 +0.6125,0.1875,0.08418465,0.16836931 +0.6125,0.1875,0.1683693,0.08418465 +0.61249995,0.2125,0.07499999,0.075 +0.6125,0.2125,0.053032994,0.10606603 +0.61249995,0.2125,0.10606605,0.05303301 +0.61249995,0.21249999,0.094494045,0.094494075 +0.6125,0.2125,0.0668174,0.1336348 +0.61249995,0.2125,0.13363487,0.0668174 +0.61249995,0.2125,0.11905509,0.11905509 +0.6125,0.2125,0.08418465,0.16836931 +0.6125,0.2125,0.1683693,0.08418465 +0.61249995,0.23750001,0.07499999,0.075 +0.6125,0.2375,0.053032994,0.10606602 +0.61249995,0.2375,0.10606605,0.053033024 +0.61249995,0.2375,0.094494045,0.094494075 +0.6125,0.23750001,0.0668174,0.13363482 +0.61249995,0.2375,0.13363487,0.06681743 +0.61249995,0.2375,0.11905509,0.11905506 +0.6125,0.2375,0.08418465,0.16836932 +0.6125,0.23750001,0.1683693,0.08418466 +0.61249995,0.2625,0.07499999,0.07500002 +0.6125,0.2625,0.053032994,0.10606603 +0.61249995,0.2625,0.10606605,0.053033024 +0.61249995,0.2625,0.094494045,0.094494075 +0.6125,0.2625,0.0668174,0.13363479 +0.61249995,0.2625,0.13363487,0.06681743 +0.61249995,0.2625,0.11905509,0.11905508 +0.6125,0.2625,0.08418465,0.1683693 +0.6125,0.2625,0.1683693,0.08418463 +0.61249995,0.2875,0.07499999,0.07499999 +0.6125,0.2875,0.053032994,0.10606603 +0.61249995,0.28750002,0.10606605,0.053033024 +0.61249995,0.2875,0.094494045,0.094494045 +0.6125,0.2875,0.0668174,0.1336348 +0.61249995,0.28750002,0.13363487,0.06681743 +0.61249995,0.2875,0.11905509,0.11905508 +0.6125,0.2875,0.08418465,0.1683693 +0.6125,0.2875,0.1683693,0.08418465 +0.61249995,0.3125,0.07499999,0.07499999 +0.6125,0.3125,0.053032994,0.10606605 +0.61249995,0.3125,0.10606605,0.053032994 +0.61249995,0.3125,0.094494045,0.094494045 +0.6125,0.3125,0.0668174,0.1336348 +0.61249995,0.3125,0.13363487,0.0668174 +0.61249995,0.3125,0.11905509,0.11905509 +0.6125,0.3125,0.08418465,0.1683693 +0.6125,0.3125,0.1683693,0.08418465 +0.61249995,0.3375,0.07499999,0.07499999 +0.6125,0.3375,0.053032994,0.10606605 +0.61249995,0.33749998,0.10606605,0.053033024 +0.61249995,0.3375,0.094494045,0.094494045 +0.6125,0.33750004,0.0668174,0.13363484 +0.61249995,0.33749998,0.13363487,0.06681743 +0.61249995,0.3375,0.11905509,0.11905509 +0.6125,0.3375,0.08418465,0.1683693 +0.6125,0.3375,0.1683693,0.08418465 +0.61249995,0.3625,0.07499999,0.07500002 +0.6125,0.3625,0.053032994,0.10606602 +0.61249995,0.3625,0.10606605,0.053033024 +0.61249995,0.3625,0.094494045,0.094494075 +0.6125,0.3625,0.0668174,0.1336348 +0.61249995,0.3625,0.13363487,0.06681743 +0.61249995,0.3625,0.11905509,0.11905506 +0.6125,0.3625,0.08418465,0.1683693 +0.6125,0.3625,0.1683693,0.08418465 +0.61249995,0.3875,0.07499999,0.07500002 +0.6125,0.3875,0.053032994,0.10606602 +0.61249995,0.3875,0.10606605,0.053032994 +0.61249995,0.3875,0.094494045,0.094494075 +0.6125,0.3875,0.0668174,0.13363484 +0.61249995,0.3875,0.13363487,0.0668174 +0.61249995,0.3875,0.11905509,0.11905506 +0.6125,0.3875,0.08418465,0.1683693 +0.6125,0.3875,0.1683693,0.08418465 +0.61249995,0.4125,0.07499999,0.07499999 +0.6125,0.4125,0.053032994,0.10606605 +0.61249995,0.4125,0.10606605,0.053032994 +0.61249995,0.4125,0.094494045,0.094494045 +0.6125,0.41250002,0.0668174,0.13363484 +0.61249995,0.4125,0.13363487,0.0668174 +0.61249995,0.4125,0.11905509,0.11905509 +0.6125,0.4125,0.08418465,0.1683693 +0.6125,0.4125,0.1683693,0.08418465 +0.61249995,0.4375,0.07499999,0.07499999 +0.6125,0.4375,0.053032994,0.10606605 +0.61249995,0.4375,0.10606605,0.053032994 +0.61249995,0.4375,0.094494045,0.094494045 +0.6125,0.4375,0.0668174,0.1336348 +0.61249995,0.4375,0.13363487,0.0668174 +0.61249995,0.4375,0.11905509,0.11905509 +0.6125,0.4375,0.08418465,0.1683693 +0.6125,0.4375,0.1683693,0.08418465 +0.61249995,0.4625,0.07499999,0.07499999 +0.6125,0.4625,0.053032994,0.10606605 +0.61249995,0.46249998,0.10606605,0.053032964 +0.61249995,0.4625,0.094494045,0.094494045 +0.6125,0.46250004,0.0668174,0.13363484 +0.61249995,0.46249998,0.13363487,0.06681737 +0.61249995,0.4625,0.11905509,0.11905509 +0.6125,0.46249998,0.08418465,0.16836926 +0.6125,0.46249998,0.1683693,0.08418462 +0.61249995,0.48749998,0.07499999,0.07499999 +0.6125,0.4875,0.053032994,0.10606602 +0.61249995,0.4875,0.10606605,0.053032994 +0.61249995,0.48749998,0.094494045,0.094494045 +0.6125,0.4875,0.0668174,0.13363484 +0.61249995,0.4875,0.13363487,0.0668174 +0.61249995,0.4875,0.11905509,0.11905506 +0.6125,0.4875,0.08418465,0.1683693 +0.6125,0.4875,0.1683693,0.08418465 +0.61249995,0.5125,0.07499999,0.07500002 +0.6125,0.51250005,0.053032994,0.10606605 +0.61249995,0.5125,0.10606605,0.053032964 +0.61249995,0.5125,0.094494045,0.094494075 +0.6125,0.51250005,0.0668174,0.13363487 +0.61249995,0.5125,0.13363487,0.06681737 +0.61249995,0.51250005,0.11905509,0.11905509 +0.6125,0.5125,0.08418465,0.1683693 +0.6125,0.5125,0.1683693,0.08418465 +0.61249995,0.5375,0.07499999,0.07499999 +0.6125,0.5375,0.053032994,0.10606605 +0.61249995,0.5375,0.10606605,0.053032935 +0.61249995,0.5375,0.094494045,0.094494045 +0.6125,0.5375,0.0668174,0.13363487 +0.61249995,0.5375,0.13363487,0.06681734 +0.61249995,0.5375,0.11905509,0.11905509 +0.6125,0.5375,0.08418465,0.16836932 +0.6125,0.5375,0.1683693,0.08418468 +0.61249995,0.5625,0.07499999,0.07500005 +0.6125,0.5625,0.053032994,0.10606599 +0.61249995,0.5625,0.10606605,0.053032994 +0.61249995,0.5625,0.094494045,0.094494104 +0.6125,0.5625,0.0668174,0.13363484 +0.61249995,0.5625,0.13363487,0.0668174 +0.61249995,0.5625,0.11905509,0.11905503 +0.6125,0.5625,0.08418465,0.1683693 +0.6125,0.5625,0.1683693,0.08418465 +0.61249995,0.5875,0.07499999,0.07499999 +0.6125,0.5875,0.053032994,0.10606605 +0.61249995,0.5875,0.10606605,0.053032935 +0.61249995,0.5875,0.094494045,0.094494045 +0.6125,0.5875,0.0668174,0.13363487 +0.61249995,0.5875,0.13363487,0.06681734 +0.61249995,0.5875,0.11905509,0.11905509 +0.6125,0.5875,0.08418465,0.1683693 +0.6125,0.5875,0.1683693,0.08418465 +0.61249995,0.61249995,0.07499999,0.07499999 +0.6125,0.61249995,0.053032994,0.10606605 +0.61249995,0.6125,0.10606605,0.053032994 +0.61249995,0.61249995,0.094494045,0.094494045 +0.6125,0.61249995,0.0668174,0.13363487 +0.61249995,0.6125,0.13363487,0.0668174 +0.61249995,0.61249995,0.11905509,0.11905509 +0.6125,0.6125,0.08418465,0.1683693 +0.6125,0.6125,0.1683693,0.08418465 +0.61249995,0.63750005,0.07499999,0.07499999 +0.6125,0.63750005,0.053032994,0.10606605 +0.61249995,0.6375,0.10606605,0.053032994 +0.61249995,0.63750005,0.094494045,0.094494045 +0.6125,0.63750005,0.0668174,0.13363487 +0.61249995,0.6375,0.13363487,0.0668174 +0.61249995,0.63750005,0.11905509,0.11905509 +0.6125,0.6375,0.08418465,0.1683693 +0.6125,0.6375,0.1683693,0.08418465 +0.61249995,0.6625,0.07499999,0.07499999 +0.6125,0.6625,0.053032994,0.10606605 +0.61249995,0.6625,0.10606605,0.053032935 +0.61249995,0.6625,0.094494045,0.094494045 +0.6125,0.6625,0.0668174,0.13363487 +0.61249995,0.6625,0.13363487,0.06681734 +0.61249995,0.6625,0.11905509,0.11905509 +0.6125,0.6625,0.08418465,0.1683693 +0.6125,0.6625,0.1683693,0.08418465 +0.61249995,0.6875,0.07499999,0.07500005 +0.6125,0.6875,0.053032994,0.10606599 +0.61249995,0.6875,0.10606605,0.053032994 +0.61249995,0.6875,0.094494045,0.094494104 +0.6125,0.6875,0.0668174,0.1336348 +0.61249995,0.6875,0.13363487,0.0668174 +0.61249995,0.6875,0.11905509,0.11905503 +0.6125,0.6875,0.08418465,0.1683693 +0.6125,0.6875,0.1683693,0.08418465 +0.61249995,0.7125,0.07499999,0.07499999 +0.6125,0.7125,0.053032994,0.10606605 +0.61249995,0.7125,0.10606605,0.053032935 +0.61249995,0.7125,0.094494045,0.094494045 +0.6125,0.7125,0.0668174,0.13363487 +0.61249995,0.7125,0.13363487,0.06681734 +0.61249995,0.7125,0.11905509,0.11905509 +0.6125,0.7125,0.08418465,0.1683693 +0.6125,0.7125,0.1683693,0.08418465 +0.61249995,0.73749995,0.07499999,0.07499999 +0.6125,0.73749995,0.053032994,0.10606605 +0.61249995,0.7375,0.10606605,0.053032994 +0.61249995,0.73749995,0.094494045,0.094494045 +0.6125,0.73749995,0.0668174,0.1336348 +0.61249995,0.7375,0.13363487,0.0668174 +0.61249995,0.73749995,0.11905509,0.11905509 +0.6125,0.7375,0.08418465,0.1683693 +0.6125,0.7375,0.1683693,0.08418465 +0.61249995,0.76250005,0.07499999,0.07499999 +0.6125,0.7625,0.053032994,0.10606599 +0.61249995,0.7625,0.10606605,0.053032994 +0.61249995,0.76250005,0.094494045,0.094494045 +0.6125,0.7625,0.0668174,0.1336348 +0.61249995,0.7625,0.13363487,0.0668174 +0.61249995,0.7625,0.11905509,0.11905503 +0.6125,0.7625,0.08418465,0.1683693 +0.6125,0.7625,0.1683693,0.08418465 +0.61249995,0.7875,0.07499999,0.07499999 +0.6125,0.78749996,0.053032994,0.10606599 +0.61249995,0.7875,0.10606605,0.053032994 +0.61249995,0.7875,0.094494045,0.094494045 +0.6125,0.78749996,0.0668174,0.1336348 +0.61249995,0.7875,0.13363487,0.0668174 +0.61249995,0.78749996,0.11905509,0.11905503 +0.6125,0.7875,0.08418465,0.1683693 +0.6125,0.7875,0.1683693,0.08418465 +0.61249995,0.8125,0.07499999,0.07500005 +0.6125,0.8125,0.053032994,0.10606599 +0.61249995,0.8125,0.10606605,0.053033054 +0.61249995,0.8125,0.094494045,0.094494104 +0.6125,0.8125,0.0668174,0.1336348 +0.61249995,0.8125,0.13363487,0.06681746 +0.61249995,0.8125,0.11905509,0.11905503 +0.6125,0.8125,0.08418465,0.1683693 +0.6125,0.8125,0.1683693,0.08418465 +0.61249995,0.8375,0.07499999,0.07499999 +0.6125,0.8375,0.053032994,0.10606599 +0.61249995,0.8375,0.10606605,0.053033054 +0.61249995,0.8375,0.094494045,0.094494045 +0.6125,0.8375,0.0668174,0.1336348 +0.61249995,0.8375,0.13363487,0.06681746 +0.61249995,0.8375,0.11905509,0.11905503 +0.6125,0.8375,0.08418465,0.1683693 +0.6125,0.8375,0.1683693,0.08418465 +0.61249995,0.86249995,0.07499999,0.07499999 +0.6125,0.86249995,0.053032994,0.10606593 +0.61249995,0.86249995,0.10606605,0.053033054 +0.61249995,0.86249995,0.094494045,0.094494045 +0.6125,0.86249995,0.0668174,0.1336348 +0.61249995,0.86249995,0.13363487,0.06681746 +0.61249995,0.86249995,0.11905509,0.11905497 +0.6125,0.8625,0.08418465,0.1683693 +0.6125,0.8625,0.1683693,0.08418465 +0.61249995,0.88750005,0.07499999,0.07499999 +0.6125,0.88750005,0.053032994,0.10606593 +0.61249995,0.88750005,0.10606605,0.053033054 +0.61249995,0.88750005,0.094494045,0.094494045 +0.6125,0.88750005,0.0668174,0.13363475 +0.61249995,0.88750005,0.13363487,0.06681746 +0.61249995,0.88750005,0.11905509,0.11905497 +0.6125,0.8875,0.08418465,0.1683693 +0.6125,0.8875,0.1683693,0.08418465 +0.61249995,0.9125,0.07499999,0.07499999 +0.6125,0.9125,0.053032994,0.10606593 +0.61249995,0.9125,0.10606605,0.053033054 +0.61249995,0.9125,0.094494045,0.094494045 +0.6125,0.9125,0.0668174,0.13363475 +0.61249995,0.9125,0.13363487,0.06681746 +0.61249995,0.9125,0.11905509,0.11905497 +0.6125,0.9125,0.08418465,0.1683693 +0.6125,0.9125,0.1683693,0.08418465 +0.61249995,0.9375,0.07499999,0.07500005 +0.6125,0.9375,0.053032994,0.10606599 +0.61249995,0.9375,0.10606605,0.053033113 +0.61249995,0.9375,0.094494045,0.094494104 +0.6125,0.9375,0.0668174,0.1336348 +0.61249995,0.9375,0.13363487,0.06681752 +0.61249995,0.9375,0.11905509,0.11905503 +0.6125,0.9375,0.08418465,0.1683693 +0.6125,0.9375,0.1683693,0.08418465 +0.61249995,0.9625,0.07499999,0.07499999 +0.6125,0.9625,0.053032994,0.10606593 +0.61249995,0.9625,0.10606605,0.053033054 +0.61249995,0.9625,0.094494045,0.094494045 +0.6125,0.9625,0.0668174,0.13363475 +0.61249995,0.9625,0.13363487,0.06681746 +0.61249995,0.9625,0.11905509,0.11905497 +0.6125,0.9625,0.08418465,0.1683693 +0.6125,0.9625,0.1683693,0.08418465 +0.61249995,0.98749995,0.07499999,0.07499999 +0.6125,0.98749995,0.053032994,0.10606593 +0.61249995,0.98749995,0.10606605,0.053033054 +0.61249995,0.98749995,0.094494045,0.094494045 +0.6125,0.98749995,0.0668174,0.13363475 +0.61249995,0.98749995,0.13363487,0.06681746 +0.61249995,0.98749995,0.11905509,0.11905497 +0.6125,0.98749995,0.08418465,0.16836923 +0.6125,0.98749995,0.1683693,0.08418459 +0.63750005,0.0125,0.07499999,0.075 +0.6375,0.012499997,0.053032994,0.10606602 +0.63750005,0.012499999,0.10606605,0.05303301 +0.63750005,0.012499999,0.094494045,0.09449408 +0.6375,0.012500001,0.0668174,0.1336348 +0.63750005,0.012499999,0.13363487,0.0668174 +0.63750005,0.012500001,0.11905509,0.11905508 +0.6375,0.012499999,0.08418465,0.1683693 +0.6375,0.012500002,0.1683693,0.084184654 +0.63750005,0.0375,0.07499999,0.075 +0.6375,0.037499998,0.053032994,0.10606601 +0.63750005,0.0375,0.10606605,0.05303301 +0.63750005,0.0375,0.094494045,0.094494075 +0.6375,0.0375,0.0668174,0.1336348 +0.63750005,0.0375,0.13363487,0.0668174 +0.63750005,0.0375,0.11905509,0.11905508 +0.6375,0.0375,0.08418465,0.16836931 +0.6375,0.0375,0.1683693,0.08418466 +0.63750005,0.0625,0.07499999,0.075 +0.6375,0.0625,0.053032994,0.10606602 +0.63750005,0.0625,0.10606605,0.05303301 +0.63750005,0.0625,0.094494045,0.094494075 +0.6375,0.0625,0.0668174,0.1336348 +0.63750005,0.0625,0.13363487,0.0668174 +0.63750005,0.0625,0.11905509,0.11905508 +0.6375,0.0625,0.08418465,0.16836932 +0.6375,0.0625,0.1683693,0.08418465 +0.63750005,0.0875,0.07499999,0.075 +0.6375,0.08749999,0.053032994,0.10606601 +0.63750005,0.087500006,0.10606605,0.053033013 +0.63750005,0.087500006,0.094494045,0.09449408 +0.6375,0.087500006,0.0668174,0.1336348 +0.63750005,0.0875,0.13363487,0.0668174 +0.63750005,0.0875,0.11905509,0.11905508 +0.6375,0.0875,0.08418465,0.16836931 +0.6375,0.087500006,0.1683693,0.084184654 +0.63750005,0.112500004,0.07499999,0.075 +0.6375,0.1125,0.053032994,0.10606601 +0.63750005,0.112500004,0.10606605,0.05303301 +0.63750005,0.1125,0.094494045,0.094494075 +0.6375,0.1125,0.0668174,0.1336348 +0.63750005,0.1125,0.13363487,0.0668174 +0.63750005,0.1125,0.11905509,0.119055085 +0.6375,0.112500004,0.08418465,0.16836931 +0.6375,0.1125,0.1683693,0.08418465 +0.63750005,0.1375,0.07499999,0.074999996 +0.6375,0.1375,0.053032994,0.10606602 +0.63750005,0.1375,0.10606605,0.053033024 +0.63750005,0.1375,0.094494045,0.09449408 +0.6375,0.1375,0.0668174,0.1336348 +0.63750005,0.1375,0.13363487,0.0668174 +0.63750005,0.13749999,0.11905509,0.11905508 +0.6375,0.1375,0.08418465,0.1683693 +0.6375,0.1375,0.1683693,0.084184654 +0.63750005,0.1625,0.07499999,0.075 +0.6375,0.16250001,0.053032994,0.106066026 +0.63750005,0.1625,0.10606605,0.05303301 +0.63750005,0.1625,0.094494045,0.094494075 +0.6375,0.1625,0.0668174,0.1336348 +0.63750005,0.1625,0.13363487,0.0668174 +0.63750005,0.1625,0.11905509,0.11905508 +0.6375,0.1625,0.08418465,0.1683693 +0.6375,0.1625,0.1683693,0.08418464 +0.63750005,0.1875,0.07499999,0.07499999 +0.6375,0.1875,0.053032994,0.10606603 +0.63750005,0.1875,0.10606605,0.053033024 +0.63750005,0.1875,0.094494045,0.09449406 +0.6375,0.1875,0.0668174,0.1336348 +0.63750005,0.1875,0.13363487,0.06681742 +0.63750005,0.1875,0.11905509,0.11905509 +0.6375,0.1875,0.08418465,0.16836931 +0.6375,0.1875,0.1683693,0.08418465 +0.63750005,0.2125,0.07499999,0.075 +0.6375,0.2125,0.053032994,0.10606603 +0.63750005,0.2125,0.10606605,0.05303301 +0.63750005,0.21249999,0.094494045,0.094494075 +0.6375,0.2125,0.0668174,0.1336348 +0.63750005,0.2125,0.13363487,0.0668174 +0.63750005,0.2125,0.11905509,0.11905509 +0.6375,0.2125,0.08418465,0.16836931 +0.6375,0.2125,0.1683693,0.08418465 +0.63750005,0.23750001,0.07499999,0.075 +0.6375,0.2375,0.053032994,0.10606602 +0.63750005,0.2375,0.10606605,0.053033024 +0.63750005,0.2375,0.094494045,0.094494075 +0.6375,0.23750001,0.0668174,0.13363482 +0.63750005,0.2375,0.13363487,0.06681743 +0.63750005,0.2375,0.11905509,0.11905506 +0.6375,0.2375,0.08418465,0.16836932 +0.6375,0.23750001,0.1683693,0.08418466 +0.63750005,0.2625,0.07499999,0.07500002 +0.6375,0.2625,0.053032994,0.10606603 +0.63750005,0.2625,0.10606605,0.053033024 +0.63750005,0.2625,0.094494045,0.094494075 +0.6375,0.2625,0.0668174,0.13363479 +0.63750005,0.2625,0.13363487,0.06681743 +0.63750005,0.2625,0.11905509,0.11905508 +0.6375,0.2625,0.08418465,0.1683693 +0.6375,0.2625,0.1683693,0.08418463 +0.63750005,0.2875,0.07499999,0.07499999 +0.6375,0.2875,0.053032994,0.10606603 +0.63750005,0.28750002,0.10606605,0.053033024 +0.63750005,0.2875,0.094494045,0.094494045 +0.6375,0.2875,0.0668174,0.1336348 +0.63750005,0.28750002,0.13363487,0.06681743 +0.63750005,0.2875,0.11905509,0.11905508 +0.6375,0.2875,0.08418465,0.1683693 +0.6375,0.2875,0.1683693,0.08418465 +0.63750005,0.3125,0.07499999,0.07499999 +0.6375,0.3125,0.053032994,0.10606605 +0.63750005,0.3125,0.10606605,0.053032994 +0.63750005,0.3125,0.094494045,0.094494045 +0.6375,0.3125,0.0668174,0.1336348 +0.63750005,0.3125,0.13363487,0.0668174 +0.63750005,0.3125,0.11905509,0.11905509 +0.6375,0.3125,0.08418465,0.1683693 +0.6375,0.3125,0.1683693,0.08418465 +0.63750005,0.3375,0.07499999,0.07499999 +0.6375,0.3375,0.053032994,0.10606605 +0.63750005,0.33749998,0.10606605,0.053033024 +0.63750005,0.3375,0.094494045,0.094494045 +0.6375,0.33750004,0.0668174,0.13363484 +0.63750005,0.33749998,0.13363487,0.06681743 +0.63750005,0.3375,0.11905509,0.11905509 +0.6375,0.3375,0.08418465,0.1683693 +0.6375,0.3375,0.1683693,0.08418465 +0.63750005,0.3625,0.07499999,0.07500002 +0.6375,0.3625,0.053032994,0.10606602 +0.63750005,0.3625,0.10606605,0.053033024 +0.63750005,0.3625,0.094494045,0.094494075 +0.6375,0.3625,0.0668174,0.1336348 +0.63750005,0.3625,0.13363487,0.06681743 +0.63750005,0.3625,0.11905509,0.11905506 +0.6375,0.3625,0.08418465,0.1683693 +0.6375,0.3625,0.1683693,0.08418465 +0.63750005,0.3875,0.07499999,0.07500002 +0.6375,0.3875,0.053032994,0.10606602 +0.63750005,0.3875,0.10606605,0.053032994 +0.63750005,0.3875,0.094494045,0.094494075 +0.6375,0.3875,0.0668174,0.13363484 +0.63750005,0.3875,0.13363487,0.0668174 +0.63750005,0.3875,0.11905509,0.11905506 +0.6375,0.3875,0.08418465,0.1683693 +0.6375,0.3875,0.1683693,0.08418465 +0.63750005,0.4125,0.07499999,0.07499999 +0.6375,0.4125,0.053032994,0.10606605 +0.63750005,0.4125,0.10606605,0.053032994 +0.63750005,0.4125,0.094494045,0.094494045 +0.6375,0.41250002,0.0668174,0.13363484 +0.63750005,0.4125,0.13363487,0.0668174 +0.63750005,0.4125,0.11905509,0.11905509 +0.6375,0.4125,0.08418465,0.1683693 +0.6375,0.4125,0.1683693,0.08418465 +0.63750005,0.4375,0.07499999,0.07499999 +0.6375,0.4375,0.053032994,0.10606605 +0.63750005,0.4375,0.10606605,0.053032994 +0.63750005,0.4375,0.094494045,0.094494045 +0.6375,0.4375,0.0668174,0.1336348 +0.63750005,0.4375,0.13363487,0.0668174 +0.63750005,0.4375,0.11905509,0.11905509 +0.6375,0.4375,0.08418465,0.1683693 +0.6375,0.4375,0.1683693,0.08418465 +0.63750005,0.4625,0.07499999,0.07499999 +0.6375,0.4625,0.053032994,0.10606605 +0.63750005,0.46249998,0.10606605,0.053032964 +0.63750005,0.4625,0.094494045,0.094494045 +0.6375,0.46250004,0.0668174,0.13363484 +0.63750005,0.46249998,0.13363487,0.06681737 +0.63750005,0.4625,0.11905509,0.11905509 +0.6375,0.46249998,0.08418465,0.16836926 +0.6375,0.46249998,0.1683693,0.08418462 +0.63750005,0.48749998,0.07499999,0.07499999 +0.6375,0.4875,0.053032994,0.10606602 +0.63750005,0.4875,0.10606605,0.053032994 +0.63750005,0.48749998,0.094494045,0.094494045 +0.6375,0.4875,0.0668174,0.13363484 +0.63750005,0.4875,0.13363487,0.0668174 +0.63750005,0.4875,0.11905509,0.11905506 +0.6375,0.4875,0.08418465,0.1683693 +0.6375,0.4875,0.1683693,0.08418465 +0.63750005,0.5125,0.07499999,0.07500002 +0.6375,0.51250005,0.053032994,0.10606605 +0.63750005,0.5125,0.10606605,0.053032964 +0.63750005,0.5125,0.094494045,0.094494075 +0.6375,0.51250005,0.0668174,0.13363487 +0.63750005,0.5125,0.13363487,0.06681737 +0.63750005,0.51250005,0.11905509,0.11905509 +0.6375,0.5125,0.08418465,0.1683693 +0.6375,0.5125,0.1683693,0.08418465 +0.63750005,0.5375,0.07499999,0.07499999 +0.6375,0.5375,0.053032994,0.10606605 +0.63750005,0.5375,0.10606605,0.053032935 +0.63750005,0.5375,0.094494045,0.094494045 +0.6375,0.5375,0.0668174,0.13363487 +0.63750005,0.5375,0.13363487,0.06681734 +0.63750005,0.5375,0.11905509,0.11905509 +0.6375,0.5375,0.08418465,0.16836932 +0.6375,0.5375,0.1683693,0.08418468 +0.63750005,0.5625,0.07499999,0.07500005 +0.6375,0.5625,0.053032994,0.10606599 +0.63750005,0.5625,0.10606605,0.053032994 +0.63750005,0.5625,0.094494045,0.094494104 +0.6375,0.5625,0.0668174,0.13363484 +0.63750005,0.5625,0.13363487,0.0668174 +0.63750005,0.5625,0.11905509,0.11905503 +0.6375,0.5625,0.08418465,0.1683693 +0.6375,0.5625,0.1683693,0.08418465 +0.63750005,0.5875,0.07499999,0.07499999 +0.6375,0.5875,0.053032994,0.10606605 +0.63750005,0.5875,0.10606605,0.053032935 +0.63750005,0.5875,0.094494045,0.094494045 +0.6375,0.5875,0.0668174,0.13363487 +0.63750005,0.5875,0.13363487,0.06681734 +0.63750005,0.5875,0.11905509,0.11905509 +0.6375,0.5875,0.08418465,0.1683693 +0.6375,0.5875,0.1683693,0.08418465 +0.63750005,0.61249995,0.07499999,0.07499999 +0.6375,0.61249995,0.053032994,0.10606605 +0.63750005,0.6125,0.10606605,0.053032994 +0.63750005,0.61249995,0.094494045,0.094494045 +0.6375,0.61249995,0.0668174,0.13363487 +0.63750005,0.6125,0.13363487,0.0668174 +0.63750005,0.61249995,0.11905509,0.11905509 +0.6375,0.6125,0.08418465,0.1683693 +0.6375,0.6125,0.1683693,0.08418465 +0.63750005,0.63750005,0.07499999,0.07499999 +0.6375,0.63750005,0.053032994,0.10606605 +0.63750005,0.6375,0.10606605,0.053032994 +0.63750005,0.63750005,0.094494045,0.094494045 +0.6375,0.63750005,0.0668174,0.13363487 +0.63750005,0.6375,0.13363487,0.0668174 +0.63750005,0.63750005,0.11905509,0.11905509 +0.6375,0.6375,0.08418465,0.1683693 +0.6375,0.6375,0.1683693,0.08418465 +0.63750005,0.6625,0.07499999,0.07499999 +0.6375,0.6625,0.053032994,0.10606605 +0.63750005,0.6625,0.10606605,0.053032935 +0.63750005,0.6625,0.094494045,0.094494045 +0.6375,0.6625,0.0668174,0.13363487 +0.63750005,0.6625,0.13363487,0.06681734 +0.63750005,0.6625,0.11905509,0.11905509 +0.6375,0.6625,0.08418465,0.1683693 +0.6375,0.6625,0.1683693,0.08418465 +0.63750005,0.6875,0.07499999,0.07500005 +0.6375,0.6875,0.053032994,0.10606599 +0.63750005,0.6875,0.10606605,0.053032994 +0.63750005,0.6875,0.094494045,0.094494104 +0.6375,0.6875,0.0668174,0.1336348 +0.63750005,0.6875,0.13363487,0.0668174 +0.63750005,0.6875,0.11905509,0.11905503 +0.6375,0.6875,0.08418465,0.1683693 +0.6375,0.6875,0.1683693,0.08418465 +0.63750005,0.7125,0.07499999,0.07499999 +0.6375,0.7125,0.053032994,0.10606605 +0.63750005,0.7125,0.10606605,0.053032935 +0.63750005,0.7125,0.094494045,0.094494045 +0.6375,0.7125,0.0668174,0.13363487 +0.63750005,0.7125,0.13363487,0.06681734 +0.63750005,0.7125,0.11905509,0.11905509 +0.6375,0.7125,0.08418465,0.1683693 +0.6375,0.7125,0.1683693,0.08418465 +0.63750005,0.73749995,0.07499999,0.07499999 +0.6375,0.73749995,0.053032994,0.10606605 +0.63750005,0.7375,0.10606605,0.053032994 +0.63750005,0.73749995,0.094494045,0.094494045 +0.6375,0.73749995,0.0668174,0.1336348 +0.63750005,0.7375,0.13363487,0.0668174 +0.63750005,0.73749995,0.11905509,0.11905509 +0.6375,0.7375,0.08418465,0.1683693 +0.6375,0.7375,0.1683693,0.08418465 +0.63750005,0.76250005,0.07499999,0.07499999 +0.6375,0.7625,0.053032994,0.10606599 +0.63750005,0.7625,0.10606605,0.053032994 +0.63750005,0.76250005,0.094494045,0.094494045 +0.6375,0.7625,0.0668174,0.1336348 +0.63750005,0.7625,0.13363487,0.0668174 +0.63750005,0.7625,0.11905509,0.11905503 +0.6375,0.7625,0.08418465,0.1683693 +0.6375,0.7625,0.1683693,0.08418465 +0.63750005,0.7875,0.07499999,0.07499999 +0.6375,0.78749996,0.053032994,0.10606599 +0.63750005,0.7875,0.10606605,0.053032994 +0.63750005,0.7875,0.094494045,0.094494045 +0.6375,0.78749996,0.0668174,0.1336348 +0.63750005,0.7875,0.13363487,0.0668174 +0.63750005,0.78749996,0.11905509,0.11905503 +0.6375,0.7875,0.08418465,0.1683693 +0.6375,0.7875,0.1683693,0.08418465 +0.63750005,0.8125,0.07499999,0.07500005 +0.6375,0.8125,0.053032994,0.10606599 +0.63750005,0.8125,0.10606605,0.053033054 +0.63750005,0.8125,0.094494045,0.094494104 +0.6375,0.8125,0.0668174,0.1336348 +0.63750005,0.8125,0.13363487,0.06681746 +0.63750005,0.8125,0.11905509,0.11905503 +0.6375,0.8125,0.08418465,0.1683693 +0.6375,0.8125,0.1683693,0.08418465 +0.63750005,0.8375,0.07499999,0.07499999 +0.6375,0.8375,0.053032994,0.10606599 +0.63750005,0.8375,0.10606605,0.053033054 +0.63750005,0.8375,0.094494045,0.094494045 +0.6375,0.8375,0.0668174,0.1336348 +0.63750005,0.8375,0.13363487,0.06681746 +0.63750005,0.8375,0.11905509,0.11905503 +0.6375,0.8375,0.08418465,0.1683693 +0.6375,0.8375,0.1683693,0.08418465 +0.63750005,0.86249995,0.07499999,0.07499999 +0.6375,0.86249995,0.053032994,0.10606593 +0.63750005,0.86249995,0.10606605,0.053033054 +0.63750005,0.86249995,0.094494045,0.094494045 +0.6375,0.86249995,0.0668174,0.1336348 +0.63750005,0.86249995,0.13363487,0.06681746 +0.63750005,0.86249995,0.11905509,0.11905497 +0.6375,0.8625,0.08418465,0.1683693 +0.6375,0.8625,0.1683693,0.08418465 +0.63750005,0.88750005,0.07499999,0.07499999 +0.6375,0.88750005,0.053032994,0.10606593 +0.63750005,0.88750005,0.10606605,0.053033054 +0.63750005,0.88750005,0.094494045,0.094494045 +0.6375,0.88750005,0.0668174,0.13363475 +0.63750005,0.88750005,0.13363487,0.06681746 +0.63750005,0.88750005,0.11905509,0.11905497 +0.6375,0.8875,0.08418465,0.1683693 +0.6375,0.8875,0.1683693,0.08418465 +0.63750005,0.9125,0.07499999,0.07499999 +0.6375,0.9125,0.053032994,0.10606593 +0.63750005,0.9125,0.10606605,0.053033054 +0.63750005,0.9125,0.094494045,0.094494045 +0.6375,0.9125,0.0668174,0.13363475 +0.63750005,0.9125,0.13363487,0.06681746 +0.63750005,0.9125,0.11905509,0.11905497 +0.6375,0.9125,0.08418465,0.1683693 +0.6375,0.9125,0.1683693,0.08418465 +0.63750005,0.9375,0.07499999,0.07500005 +0.6375,0.9375,0.053032994,0.10606599 +0.63750005,0.9375,0.10606605,0.053033113 +0.63750005,0.9375,0.094494045,0.094494104 +0.6375,0.9375,0.0668174,0.1336348 +0.63750005,0.9375,0.13363487,0.06681752 +0.63750005,0.9375,0.11905509,0.11905503 +0.6375,0.9375,0.08418465,0.1683693 +0.6375,0.9375,0.1683693,0.08418465 +0.63750005,0.9625,0.07499999,0.07499999 +0.6375,0.9625,0.053032994,0.10606593 +0.63750005,0.9625,0.10606605,0.053033054 +0.63750005,0.9625,0.094494045,0.094494045 +0.6375,0.9625,0.0668174,0.13363475 +0.63750005,0.9625,0.13363487,0.06681746 +0.63750005,0.9625,0.11905509,0.11905497 +0.6375,0.9625,0.08418465,0.1683693 +0.6375,0.9625,0.1683693,0.08418465 +0.63750005,0.98749995,0.07499999,0.07499999 +0.6375,0.98749995,0.053032994,0.10606593 +0.63750005,0.98749995,0.10606605,0.053033054 +0.63750005,0.98749995,0.094494045,0.094494045 +0.6375,0.98749995,0.0668174,0.13363475 +0.63750005,0.98749995,0.13363487,0.06681746 +0.63750005,0.98749995,0.11905509,0.11905497 +0.6375,0.98749995,0.08418465,0.16836923 +0.6375,0.98749995,0.1683693,0.08418459 +0.6625,0.0125,0.07499999,0.075 +0.6625,0.012499997,0.053032935,0.10606602 +0.6625,0.012499999,0.10606605,0.05303301 +0.6625,0.012499999,0.094494045,0.09449408 +0.6625,0.012500001,0.06681734,0.1336348 +0.6625,0.012499999,0.13363487,0.0668174 +0.6625,0.012500001,0.11905509,0.11905508 +0.6625,0.012499999,0.08418465,0.1683693 +0.6625,0.012500002,0.1683693,0.084184654 +0.6625,0.0375,0.07499999,0.075 +0.6625,0.037499998,0.053032935,0.10606601 +0.6625,0.0375,0.10606605,0.05303301 +0.6625,0.0375,0.094494045,0.094494075 +0.6625,0.0375,0.06681734,0.1336348 +0.6625,0.0375,0.13363487,0.0668174 +0.6625,0.0375,0.11905509,0.11905508 +0.6625,0.0375,0.08418465,0.16836931 +0.6625,0.0375,0.1683693,0.08418466 +0.6625,0.0625,0.07499999,0.075 +0.6625,0.0625,0.053032935,0.10606602 +0.6625,0.0625,0.10606605,0.05303301 +0.6625,0.0625,0.094494045,0.094494075 +0.6625,0.0625,0.06681734,0.1336348 +0.6625,0.0625,0.13363487,0.0668174 +0.6625,0.0625,0.11905509,0.11905508 +0.6625,0.0625,0.08418465,0.16836932 +0.6625,0.0625,0.1683693,0.08418465 +0.6625,0.0875,0.07499999,0.075 +0.6625,0.08749999,0.053032935,0.10606601 +0.6625,0.087500006,0.10606605,0.053033013 +0.6625,0.087500006,0.094494045,0.09449408 +0.6625,0.087500006,0.06681734,0.1336348 +0.6625,0.0875,0.13363487,0.0668174 +0.6625,0.0875,0.11905509,0.11905508 +0.6625,0.0875,0.08418465,0.16836931 +0.6625,0.087500006,0.1683693,0.084184654 +0.6625,0.112500004,0.07499999,0.075 +0.6625,0.1125,0.053032935,0.10606601 +0.6625,0.112500004,0.10606605,0.05303301 +0.6625,0.1125,0.094494045,0.094494075 +0.6625,0.1125,0.06681734,0.1336348 +0.6625,0.1125,0.13363487,0.0668174 +0.6625,0.1125,0.11905509,0.119055085 +0.6625,0.112500004,0.08418465,0.16836931 +0.6625,0.1125,0.1683693,0.08418465 +0.6625,0.1375,0.07499999,0.074999996 +0.6625,0.1375,0.053032935,0.10606602 +0.6625,0.1375,0.10606605,0.053033024 +0.6625,0.1375,0.094494045,0.09449408 +0.6625,0.1375,0.06681734,0.1336348 +0.6625,0.1375,0.13363487,0.0668174 +0.6625,0.13749999,0.11905509,0.11905508 +0.6625,0.1375,0.08418465,0.1683693 +0.6625,0.1375,0.1683693,0.084184654 +0.6625,0.1625,0.07499999,0.075 +0.6625,0.16250001,0.053032935,0.106066026 +0.6625,0.1625,0.10606605,0.05303301 +0.6625,0.1625,0.094494045,0.094494075 +0.6625,0.1625,0.06681734,0.1336348 +0.6625,0.1625,0.13363487,0.0668174 +0.6625,0.1625,0.11905509,0.11905508 +0.6625,0.1625,0.08418465,0.1683693 +0.6625,0.1625,0.1683693,0.08418464 +0.6625,0.1875,0.07499999,0.07499999 +0.6625,0.1875,0.053032935,0.10606603 +0.6625,0.1875,0.10606605,0.053033024 +0.6625,0.1875,0.094494045,0.09449406 +0.6625,0.1875,0.06681734,0.1336348 +0.6625,0.1875,0.13363487,0.06681742 +0.6625,0.1875,0.11905509,0.11905509 +0.6625,0.1875,0.08418465,0.16836931 +0.6625,0.1875,0.1683693,0.08418465 +0.6625,0.2125,0.07499999,0.075 +0.6625,0.2125,0.053032935,0.10606603 +0.6625,0.2125,0.10606605,0.05303301 +0.6625,0.21249999,0.094494045,0.094494075 +0.6625,0.2125,0.06681734,0.1336348 +0.6625,0.2125,0.13363487,0.0668174 +0.6625,0.2125,0.11905509,0.11905509 +0.6625,0.2125,0.08418465,0.16836931 +0.6625,0.2125,0.1683693,0.08418465 +0.6625,0.23750001,0.07499999,0.075 +0.6625,0.2375,0.053032935,0.10606602 +0.6625,0.2375,0.10606605,0.053033024 +0.6625,0.2375,0.094494045,0.094494075 +0.6625,0.23750001,0.06681734,0.13363482 +0.6625,0.2375,0.13363487,0.06681743 +0.6625,0.2375,0.11905509,0.11905506 +0.6625,0.2375,0.08418465,0.16836932 +0.6625,0.23750001,0.1683693,0.08418466 +0.6625,0.2625,0.07499999,0.07500002 +0.6625,0.2625,0.053032935,0.10606603 +0.6625,0.2625,0.10606605,0.053033024 +0.6625,0.2625,0.094494045,0.094494075 +0.6625,0.2625,0.06681734,0.13363479 +0.6625,0.2625,0.13363487,0.06681743 +0.6625,0.2625,0.11905509,0.11905508 +0.6625,0.2625,0.08418465,0.1683693 +0.6625,0.2625,0.1683693,0.08418463 +0.6625,0.2875,0.07499999,0.07499999 +0.6625,0.2875,0.053032935,0.10606603 +0.6625,0.28750002,0.10606605,0.053033024 +0.6625,0.2875,0.094494045,0.094494045 +0.6625,0.2875,0.06681734,0.1336348 +0.6625,0.28750002,0.13363487,0.06681743 +0.6625,0.2875,0.11905509,0.11905508 +0.6625,0.2875,0.08418465,0.1683693 +0.6625,0.2875,0.1683693,0.08418465 +0.6625,0.3125,0.07499999,0.07499999 +0.6625,0.3125,0.053032935,0.10606605 +0.6625,0.3125,0.10606605,0.053032994 +0.6625,0.3125,0.094494045,0.094494045 +0.6625,0.3125,0.06681734,0.1336348 +0.6625,0.3125,0.13363487,0.0668174 +0.6625,0.3125,0.11905509,0.11905509 +0.6625,0.3125,0.08418465,0.1683693 +0.6625,0.3125,0.1683693,0.08418465 +0.6625,0.3375,0.07499999,0.07499999 +0.6625,0.3375,0.053032935,0.10606605 +0.6625,0.33749998,0.10606605,0.053033024 +0.6625,0.3375,0.094494045,0.094494045 +0.6625,0.33750004,0.06681734,0.13363484 +0.6625,0.33749998,0.13363487,0.06681743 +0.6625,0.3375,0.11905509,0.11905509 +0.6625,0.3375,0.08418465,0.1683693 +0.6625,0.3375,0.1683693,0.08418465 +0.6625,0.3625,0.07499999,0.07500002 +0.6625,0.3625,0.053032935,0.10606602 +0.6625,0.3625,0.10606605,0.053033024 +0.6625,0.3625,0.094494045,0.094494075 +0.6625,0.3625,0.06681734,0.1336348 +0.6625,0.3625,0.13363487,0.06681743 +0.6625,0.3625,0.11905509,0.11905506 +0.6625,0.3625,0.08418465,0.1683693 +0.6625,0.3625,0.1683693,0.08418465 +0.6625,0.3875,0.07499999,0.07500002 +0.6625,0.3875,0.053032935,0.10606602 +0.6625,0.3875,0.10606605,0.053032994 +0.6625,0.3875,0.094494045,0.094494075 +0.6625,0.3875,0.06681734,0.13363484 +0.6625,0.3875,0.13363487,0.0668174 +0.6625,0.3875,0.11905509,0.11905506 +0.6625,0.3875,0.08418465,0.1683693 +0.6625,0.3875,0.1683693,0.08418465 +0.6625,0.4125,0.07499999,0.07499999 +0.6625,0.4125,0.053032935,0.10606605 +0.6625,0.4125,0.10606605,0.053032994 +0.6625,0.4125,0.094494045,0.094494045 +0.6625,0.41250002,0.06681734,0.13363484 +0.6625,0.4125,0.13363487,0.0668174 +0.6625,0.4125,0.11905509,0.11905509 +0.6625,0.4125,0.08418465,0.1683693 +0.6625,0.4125,0.1683693,0.08418465 +0.6625,0.4375,0.07499999,0.07499999 +0.6625,0.4375,0.053032935,0.10606605 +0.6625,0.4375,0.10606605,0.053032994 +0.6625,0.4375,0.094494045,0.094494045 +0.6625,0.4375,0.06681734,0.1336348 +0.6625,0.4375,0.13363487,0.0668174 +0.6625,0.4375,0.11905509,0.11905509 +0.6625,0.4375,0.08418465,0.1683693 +0.6625,0.4375,0.1683693,0.08418465 +0.6625,0.4625,0.07499999,0.07499999 +0.6625,0.4625,0.053032935,0.10606605 +0.6625,0.46249998,0.10606605,0.053032964 +0.6625,0.4625,0.094494045,0.094494045 +0.6625,0.46250004,0.06681734,0.13363484 +0.6625,0.46249998,0.13363487,0.06681737 +0.6625,0.4625,0.11905509,0.11905509 +0.6625,0.46249998,0.08418465,0.16836926 +0.6625,0.46249998,0.1683693,0.08418462 +0.6625,0.48749998,0.07499999,0.07499999 +0.6625,0.4875,0.053032935,0.10606602 +0.6625,0.4875,0.10606605,0.053032994 +0.6625,0.48749998,0.094494045,0.094494045 +0.6625,0.4875,0.06681734,0.13363484 +0.6625,0.4875,0.13363487,0.0668174 +0.6625,0.4875,0.11905509,0.11905506 +0.6625,0.4875,0.08418465,0.1683693 +0.6625,0.4875,0.1683693,0.08418465 +0.6625,0.5125,0.07499999,0.07500002 +0.6625,0.51250005,0.053032935,0.10606605 +0.6625,0.5125,0.10606605,0.053032964 +0.6625,0.5125,0.094494045,0.094494075 +0.6625,0.51250005,0.06681734,0.13363487 +0.6625,0.5125,0.13363487,0.06681737 +0.6625,0.51250005,0.11905509,0.11905509 +0.6625,0.5125,0.08418465,0.1683693 +0.6625,0.5125,0.1683693,0.08418465 +0.6625,0.5375,0.07499999,0.07499999 +0.6625,0.5375,0.053032935,0.10606605 +0.6625,0.5375,0.10606605,0.053032935 +0.6625,0.5375,0.094494045,0.094494045 +0.6625,0.5375,0.06681734,0.13363487 +0.6625,0.5375,0.13363487,0.06681734 +0.6625,0.5375,0.11905509,0.11905509 +0.6625,0.5375,0.08418465,0.16836932 +0.6625,0.5375,0.1683693,0.08418468 +0.6625,0.5625,0.07499999,0.07500005 +0.6625,0.5625,0.053032935,0.10606599 +0.6625,0.5625,0.10606605,0.053032994 +0.6625,0.5625,0.094494045,0.094494104 +0.6625,0.5625,0.06681734,0.13363484 +0.6625,0.5625,0.13363487,0.0668174 +0.6625,0.5625,0.11905509,0.11905503 +0.6625,0.5625,0.08418465,0.1683693 +0.6625,0.5625,0.1683693,0.08418465 +0.6625,0.5875,0.07499999,0.07499999 +0.6625,0.5875,0.053032935,0.10606605 +0.6625,0.5875,0.10606605,0.053032935 +0.6625,0.5875,0.094494045,0.094494045 +0.6625,0.5875,0.06681734,0.13363487 +0.6625,0.5875,0.13363487,0.06681734 +0.6625,0.5875,0.11905509,0.11905509 +0.6625,0.5875,0.08418465,0.1683693 +0.6625,0.5875,0.1683693,0.08418465 +0.6625,0.61249995,0.07499999,0.07499999 +0.6625,0.61249995,0.053032935,0.10606605 +0.6625,0.6125,0.10606605,0.053032994 +0.6625,0.61249995,0.094494045,0.094494045 +0.6625,0.61249995,0.06681734,0.13363487 +0.6625,0.6125,0.13363487,0.0668174 +0.6625,0.61249995,0.11905509,0.11905509 +0.6625,0.6125,0.08418465,0.1683693 +0.6625,0.6125,0.1683693,0.08418465 +0.6625,0.63750005,0.07499999,0.07499999 +0.6625,0.63750005,0.053032935,0.10606605 +0.6625,0.6375,0.10606605,0.053032994 +0.6625,0.63750005,0.094494045,0.094494045 +0.6625,0.63750005,0.06681734,0.13363487 +0.6625,0.6375,0.13363487,0.0668174 +0.6625,0.63750005,0.11905509,0.11905509 +0.6625,0.6375,0.08418465,0.1683693 +0.6625,0.6375,0.1683693,0.08418465 +0.6625,0.6625,0.07499999,0.07499999 +0.6625,0.6625,0.053032935,0.10606605 +0.6625,0.6625,0.10606605,0.053032935 +0.6625,0.6625,0.094494045,0.094494045 +0.6625,0.6625,0.06681734,0.13363487 +0.6625,0.6625,0.13363487,0.06681734 +0.6625,0.6625,0.11905509,0.11905509 +0.6625,0.6625,0.08418465,0.1683693 +0.6625,0.6625,0.1683693,0.08418465 +0.6625,0.6875,0.07499999,0.07500005 +0.6625,0.6875,0.053032935,0.10606599 +0.6625,0.6875,0.10606605,0.053032994 +0.6625,0.6875,0.094494045,0.094494104 +0.6625,0.6875,0.06681734,0.1336348 +0.6625,0.6875,0.13363487,0.0668174 +0.6625,0.6875,0.11905509,0.11905503 +0.6625,0.6875,0.08418465,0.1683693 +0.6625,0.6875,0.1683693,0.08418465 +0.6625,0.7125,0.07499999,0.07499999 +0.6625,0.7125,0.053032935,0.10606605 +0.6625,0.7125,0.10606605,0.053032935 +0.6625,0.7125,0.094494045,0.094494045 +0.6625,0.7125,0.06681734,0.13363487 +0.6625,0.7125,0.13363487,0.06681734 +0.6625,0.7125,0.11905509,0.11905509 +0.6625,0.7125,0.08418465,0.1683693 +0.6625,0.7125,0.1683693,0.08418465 +0.6625,0.73749995,0.07499999,0.07499999 +0.6625,0.73749995,0.053032935,0.10606605 +0.6625,0.7375,0.10606605,0.053032994 +0.6625,0.73749995,0.094494045,0.094494045 +0.6625,0.73749995,0.06681734,0.1336348 +0.6625,0.7375,0.13363487,0.0668174 +0.6625,0.73749995,0.11905509,0.11905509 +0.6625,0.7375,0.08418465,0.1683693 +0.6625,0.7375,0.1683693,0.08418465 +0.6625,0.76250005,0.07499999,0.07499999 +0.6625,0.7625,0.053032935,0.10606599 +0.6625,0.7625,0.10606605,0.053032994 +0.6625,0.76250005,0.094494045,0.094494045 +0.6625,0.7625,0.06681734,0.1336348 +0.6625,0.7625,0.13363487,0.0668174 +0.6625,0.7625,0.11905509,0.11905503 +0.6625,0.7625,0.08418465,0.1683693 +0.6625,0.7625,0.1683693,0.08418465 +0.6625,0.7875,0.07499999,0.07499999 +0.6625,0.78749996,0.053032935,0.10606599 +0.6625,0.7875,0.10606605,0.053032994 +0.6625,0.7875,0.094494045,0.094494045 +0.6625,0.78749996,0.06681734,0.1336348 +0.6625,0.7875,0.13363487,0.0668174 +0.6625,0.78749996,0.11905509,0.11905503 +0.6625,0.7875,0.08418465,0.1683693 +0.6625,0.7875,0.1683693,0.08418465 +0.6625,0.8125,0.07499999,0.07500005 +0.6625,0.8125,0.053032935,0.10606599 +0.6625,0.8125,0.10606605,0.053033054 +0.6625,0.8125,0.094494045,0.094494104 +0.6625,0.8125,0.06681734,0.1336348 +0.6625,0.8125,0.13363487,0.06681746 +0.6625,0.8125,0.11905509,0.11905503 +0.6625,0.8125,0.08418465,0.1683693 +0.6625,0.8125,0.1683693,0.08418465 +0.6625,0.8375,0.07499999,0.07499999 +0.6625,0.8375,0.053032935,0.10606599 +0.6625,0.8375,0.10606605,0.053033054 +0.6625,0.8375,0.094494045,0.094494045 +0.6625,0.8375,0.06681734,0.1336348 +0.6625,0.8375,0.13363487,0.06681746 +0.6625,0.8375,0.11905509,0.11905503 +0.6625,0.8375,0.08418465,0.1683693 +0.6625,0.8375,0.1683693,0.08418465 +0.6625,0.86249995,0.07499999,0.07499999 +0.6625,0.86249995,0.053032935,0.10606593 +0.6625,0.86249995,0.10606605,0.053033054 +0.6625,0.86249995,0.094494045,0.094494045 +0.6625,0.86249995,0.06681734,0.1336348 +0.6625,0.86249995,0.13363487,0.06681746 +0.6625,0.86249995,0.11905509,0.11905497 +0.6625,0.8625,0.08418465,0.1683693 +0.6625,0.8625,0.1683693,0.08418465 +0.6625,0.88750005,0.07499999,0.07499999 +0.6625,0.88750005,0.053032935,0.10606593 +0.6625,0.88750005,0.10606605,0.053033054 +0.6625,0.88750005,0.094494045,0.094494045 +0.6625,0.88750005,0.06681734,0.13363475 +0.6625,0.88750005,0.13363487,0.06681746 +0.6625,0.88750005,0.11905509,0.11905497 +0.6625,0.8875,0.08418465,0.1683693 +0.6625,0.8875,0.1683693,0.08418465 +0.6625,0.9125,0.07499999,0.07499999 +0.6625,0.9125,0.053032935,0.10606593 +0.6625,0.9125,0.10606605,0.053033054 +0.6625,0.9125,0.094494045,0.094494045 +0.6625,0.9125,0.06681734,0.13363475 +0.6625,0.9125,0.13363487,0.06681746 +0.6625,0.9125,0.11905509,0.11905497 +0.6625,0.9125,0.08418465,0.1683693 +0.6625,0.9125,0.1683693,0.08418465 +0.6625,0.9375,0.07499999,0.07500005 +0.6625,0.9375,0.053032935,0.10606599 +0.6625,0.9375,0.10606605,0.053033113 +0.6625,0.9375,0.094494045,0.094494104 +0.6625,0.9375,0.06681734,0.1336348 +0.6625,0.9375,0.13363487,0.06681752 +0.6625,0.9375,0.11905509,0.11905503 +0.6625,0.9375,0.08418465,0.1683693 +0.6625,0.9375,0.1683693,0.08418465 +0.6625,0.9625,0.07499999,0.07499999 +0.6625,0.9625,0.053032935,0.10606593 +0.6625,0.9625,0.10606605,0.053033054 +0.6625,0.9625,0.094494045,0.094494045 +0.6625,0.9625,0.06681734,0.13363475 +0.6625,0.9625,0.13363487,0.06681746 +0.6625,0.9625,0.11905509,0.11905497 +0.6625,0.9625,0.08418465,0.1683693 +0.6625,0.9625,0.1683693,0.08418465 +0.6625,0.98749995,0.07499999,0.07499999 +0.6625,0.98749995,0.053032935,0.10606593 +0.6625,0.98749995,0.10606605,0.053033054 +0.6625,0.98749995,0.094494045,0.094494045 +0.6625,0.98749995,0.06681734,0.13363475 +0.6625,0.98749995,0.13363487,0.06681746 +0.6625,0.98749995,0.11905509,0.11905497 +0.6625,0.98749995,0.08418465,0.16836923 +0.6625,0.98749995,0.1683693,0.08418459 +0.6875,0.0125,0.07500005,0.075 +0.6875,0.012499997,0.053032994,0.10606602 +0.6875,0.012499999,0.10606599,0.05303301 +0.6875,0.012499999,0.094494104,0.09449408 +0.6875,0.012500001,0.0668174,0.1336348 +0.6875,0.012499999,0.1336348,0.0668174 +0.6875,0.012500001,0.11905503,0.11905508 +0.6875,0.012499999,0.08418465,0.1683693 +0.6875,0.012500002,0.1683693,0.084184654 +0.6875,0.0375,0.07500005,0.075 +0.6875,0.037499998,0.053032994,0.10606601 +0.6875,0.0375,0.10606599,0.05303301 +0.6875,0.0375,0.094494104,0.094494075 +0.6875,0.0375,0.0668174,0.1336348 +0.6875,0.0375,0.1336348,0.0668174 +0.6875,0.0375,0.11905503,0.11905508 +0.6875,0.0375,0.08418465,0.16836931 +0.6875,0.0375,0.1683693,0.08418466 +0.6875,0.0625,0.07500005,0.075 +0.6875,0.0625,0.053032994,0.10606602 +0.6875,0.0625,0.10606599,0.05303301 +0.6875,0.0625,0.094494104,0.094494075 +0.6875,0.0625,0.0668174,0.1336348 +0.6875,0.0625,0.1336348,0.0668174 +0.6875,0.0625,0.11905503,0.11905508 +0.6875,0.0625,0.08418465,0.16836932 +0.6875,0.0625,0.1683693,0.08418465 +0.6875,0.0875,0.07500005,0.075 +0.6875,0.08749999,0.053032994,0.10606601 +0.6875,0.087500006,0.10606599,0.053033013 +0.6875,0.087500006,0.094494104,0.09449408 +0.6875,0.087500006,0.0668174,0.1336348 +0.6875,0.0875,0.1336348,0.0668174 +0.6875,0.0875,0.11905503,0.11905508 +0.6875,0.0875,0.08418465,0.16836931 +0.6875,0.087500006,0.1683693,0.084184654 +0.6875,0.112500004,0.07500005,0.075 +0.6875,0.1125,0.053032994,0.10606601 +0.6875,0.112500004,0.10606599,0.05303301 +0.6875,0.1125,0.094494104,0.094494075 +0.6875,0.1125,0.0668174,0.1336348 +0.6875,0.1125,0.1336348,0.0668174 +0.6875,0.1125,0.11905503,0.119055085 +0.6875,0.112500004,0.08418465,0.16836931 +0.6875,0.1125,0.1683693,0.08418465 +0.6875,0.1375,0.07500005,0.074999996 +0.6875,0.1375,0.053032994,0.10606602 +0.6875,0.1375,0.10606599,0.053033024 +0.6875,0.1375,0.094494104,0.09449408 +0.6875,0.1375,0.0668174,0.1336348 +0.6875,0.1375,0.1336348,0.0668174 +0.6875,0.13749999,0.11905503,0.11905508 +0.6875,0.1375,0.08418465,0.1683693 +0.6875,0.1375,0.1683693,0.084184654 +0.6875,0.1625,0.07500005,0.075 +0.6875,0.16250001,0.053032994,0.106066026 +0.6875,0.1625,0.10606599,0.05303301 +0.6875,0.1625,0.094494104,0.094494075 +0.6875,0.1625,0.0668174,0.1336348 +0.6875,0.1625,0.1336348,0.0668174 +0.6875,0.1625,0.11905503,0.11905508 +0.6875,0.1625,0.08418465,0.1683693 +0.6875,0.1625,0.1683693,0.08418464 +0.6875,0.1875,0.07500005,0.07499999 +0.6875,0.1875,0.053032994,0.10606603 +0.6875,0.1875,0.10606599,0.053033024 +0.6875,0.1875,0.094494104,0.09449406 +0.6875,0.1875,0.0668174,0.1336348 +0.6875,0.1875,0.1336348,0.06681742 +0.6875,0.1875,0.11905503,0.11905509 +0.6875,0.1875,0.08418465,0.16836931 +0.6875,0.1875,0.1683693,0.08418465 +0.6875,0.2125,0.07500005,0.075 +0.6875,0.2125,0.053032994,0.10606603 +0.6875,0.2125,0.10606599,0.05303301 +0.6875,0.21249999,0.094494104,0.094494075 +0.6875,0.2125,0.0668174,0.1336348 +0.6875,0.2125,0.1336348,0.0668174 +0.6875,0.2125,0.11905503,0.11905509 +0.6875,0.2125,0.08418465,0.16836931 +0.6875,0.2125,0.1683693,0.08418465 +0.6875,0.23750001,0.07500005,0.075 +0.6875,0.2375,0.053032994,0.10606602 +0.6875,0.2375,0.10606599,0.053033024 +0.6875,0.2375,0.094494104,0.094494075 +0.6875,0.23750001,0.0668174,0.13363482 +0.6875,0.2375,0.1336348,0.06681743 +0.6875,0.2375,0.11905503,0.11905506 +0.6875,0.2375,0.08418465,0.16836932 +0.6875,0.23750001,0.1683693,0.08418466 +0.6875,0.2625,0.07500005,0.07500002 +0.6875,0.2625,0.053032994,0.10606603 +0.6875,0.2625,0.10606599,0.053033024 +0.6875,0.2625,0.094494104,0.094494075 +0.6875,0.2625,0.0668174,0.13363479 +0.6875,0.2625,0.1336348,0.06681743 +0.6875,0.2625,0.11905503,0.11905508 +0.6875,0.2625,0.08418465,0.1683693 +0.6875,0.2625,0.1683693,0.08418463 +0.6875,0.2875,0.07500005,0.07499999 +0.6875,0.2875,0.053032994,0.10606603 +0.6875,0.28750002,0.10606599,0.053033024 +0.6875,0.2875,0.094494104,0.094494045 +0.6875,0.2875,0.0668174,0.1336348 +0.6875,0.28750002,0.1336348,0.06681743 +0.6875,0.2875,0.11905503,0.11905508 +0.6875,0.2875,0.08418465,0.1683693 +0.6875,0.2875,0.1683693,0.08418465 +0.6875,0.3125,0.07500005,0.07499999 +0.6875,0.3125,0.053032994,0.10606605 +0.6875,0.3125,0.10606599,0.053032994 +0.6875,0.3125,0.094494104,0.094494045 +0.6875,0.3125,0.0668174,0.1336348 +0.6875,0.3125,0.1336348,0.0668174 +0.6875,0.3125,0.11905503,0.11905509 +0.6875,0.3125,0.08418465,0.1683693 +0.6875,0.3125,0.1683693,0.08418465 +0.6875,0.3375,0.07500005,0.07499999 +0.6875,0.3375,0.053032994,0.10606605 +0.6875,0.33749998,0.10606599,0.053033024 +0.6875,0.3375,0.094494104,0.094494045 +0.6875,0.33750004,0.0668174,0.13363484 +0.6875,0.33749998,0.1336348,0.06681743 +0.6875,0.3375,0.11905503,0.11905509 +0.6875,0.3375,0.08418465,0.1683693 +0.6875,0.3375,0.1683693,0.08418465 +0.6875,0.3625,0.07500005,0.07500002 +0.6875,0.3625,0.053032994,0.10606602 +0.6875,0.3625,0.10606599,0.053033024 +0.6875,0.3625,0.094494104,0.094494075 +0.6875,0.3625,0.0668174,0.1336348 +0.6875,0.3625,0.1336348,0.06681743 +0.6875,0.3625,0.11905503,0.11905506 +0.6875,0.3625,0.08418465,0.1683693 +0.6875,0.3625,0.1683693,0.08418465 +0.6875,0.3875,0.07500005,0.07500002 +0.6875,0.3875,0.053032994,0.10606602 +0.6875,0.3875,0.10606599,0.053032994 +0.6875,0.3875,0.094494104,0.094494075 +0.6875,0.3875,0.0668174,0.13363484 +0.6875,0.3875,0.1336348,0.0668174 +0.6875,0.3875,0.11905503,0.11905506 +0.6875,0.3875,0.08418465,0.1683693 +0.6875,0.3875,0.1683693,0.08418465 +0.6875,0.4125,0.07500005,0.07499999 +0.6875,0.4125,0.053032994,0.10606605 +0.6875,0.4125,0.10606599,0.053032994 +0.6875,0.4125,0.094494104,0.094494045 +0.6875,0.41250002,0.0668174,0.13363484 +0.6875,0.4125,0.1336348,0.0668174 +0.6875,0.4125,0.11905503,0.11905509 +0.6875,0.4125,0.08418465,0.1683693 +0.6875,0.4125,0.1683693,0.08418465 +0.6875,0.4375,0.07500005,0.07499999 +0.6875,0.4375,0.053032994,0.10606605 +0.6875,0.4375,0.10606599,0.053032994 +0.6875,0.4375,0.094494104,0.094494045 +0.6875,0.4375,0.0668174,0.1336348 +0.6875,0.4375,0.1336348,0.0668174 +0.6875,0.4375,0.11905503,0.11905509 +0.6875,0.4375,0.08418465,0.1683693 +0.6875,0.4375,0.1683693,0.08418465 +0.6875,0.4625,0.07500005,0.07499999 +0.6875,0.4625,0.053032994,0.10606605 +0.6875,0.46249998,0.10606599,0.053032964 +0.6875,0.4625,0.094494104,0.094494045 +0.6875,0.46250004,0.0668174,0.13363484 +0.6875,0.46249998,0.1336348,0.06681737 +0.6875,0.4625,0.11905503,0.11905509 +0.6875,0.46249998,0.08418465,0.16836926 +0.6875,0.46249998,0.1683693,0.08418462 +0.6875,0.48749998,0.07500005,0.07499999 +0.6875,0.4875,0.053032994,0.10606602 +0.6875,0.4875,0.10606599,0.053032994 +0.6875,0.48749998,0.094494104,0.094494045 +0.6875,0.4875,0.0668174,0.13363484 +0.6875,0.4875,0.1336348,0.0668174 +0.6875,0.4875,0.11905503,0.11905506 +0.6875,0.4875,0.08418465,0.1683693 +0.6875,0.4875,0.1683693,0.08418465 +0.6875,0.5125,0.07500005,0.07500002 +0.6875,0.51250005,0.053032994,0.10606605 +0.6875,0.5125,0.10606599,0.053032964 +0.6875,0.5125,0.094494104,0.094494075 +0.6875,0.51250005,0.0668174,0.13363487 +0.6875,0.5125,0.1336348,0.06681737 +0.6875,0.51250005,0.11905503,0.11905509 +0.6875,0.5125,0.08418465,0.1683693 +0.6875,0.5125,0.1683693,0.08418465 +0.6875,0.5375,0.07500005,0.07499999 +0.6875,0.5375,0.053032994,0.10606605 +0.6875,0.5375,0.10606599,0.053032935 +0.6875,0.5375,0.094494104,0.094494045 +0.6875,0.5375,0.0668174,0.13363487 +0.6875,0.5375,0.1336348,0.06681734 +0.6875,0.5375,0.11905503,0.11905509 +0.6875,0.5375,0.08418465,0.16836932 +0.6875,0.5375,0.1683693,0.08418468 +0.6875,0.5625,0.07500005,0.07500005 +0.6875,0.5625,0.053032994,0.10606599 +0.6875,0.5625,0.10606599,0.053032994 +0.6875,0.5625,0.094494104,0.094494104 +0.6875,0.5625,0.0668174,0.13363484 +0.6875,0.5625,0.1336348,0.0668174 +0.6875,0.5625,0.11905503,0.11905503 +0.6875,0.5625,0.08418465,0.1683693 +0.6875,0.5625,0.1683693,0.08418465 +0.6875,0.5875,0.07500005,0.07499999 +0.6875,0.5875,0.053032994,0.10606605 +0.6875,0.5875,0.10606599,0.053032935 +0.6875,0.5875,0.094494104,0.094494045 +0.6875,0.5875,0.0668174,0.13363487 +0.6875,0.5875,0.1336348,0.06681734 +0.6875,0.5875,0.11905503,0.11905509 +0.6875,0.5875,0.08418465,0.1683693 +0.6875,0.5875,0.1683693,0.08418465 +0.6875,0.61249995,0.07500005,0.07499999 +0.6875,0.61249995,0.053032994,0.10606605 +0.6875,0.6125,0.10606599,0.053032994 +0.6875,0.61249995,0.094494104,0.094494045 +0.6875,0.61249995,0.0668174,0.13363487 +0.6875,0.6125,0.1336348,0.0668174 +0.6875,0.61249995,0.11905503,0.11905509 +0.6875,0.6125,0.08418465,0.1683693 +0.6875,0.6125,0.1683693,0.08418465 +0.6875,0.63750005,0.07500005,0.07499999 +0.6875,0.63750005,0.053032994,0.10606605 +0.6875,0.6375,0.10606599,0.053032994 +0.6875,0.63750005,0.094494104,0.094494045 +0.6875,0.63750005,0.0668174,0.13363487 +0.6875,0.6375,0.1336348,0.0668174 +0.6875,0.63750005,0.11905503,0.11905509 +0.6875,0.6375,0.08418465,0.1683693 +0.6875,0.6375,0.1683693,0.08418465 +0.6875,0.6625,0.07500005,0.07499999 +0.6875,0.6625,0.053032994,0.10606605 +0.6875,0.6625,0.10606599,0.053032935 +0.6875,0.6625,0.094494104,0.094494045 +0.6875,0.6625,0.0668174,0.13363487 +0.6875,0.6625,0.1336348,0.06681734 +0.6875,0.6625,0.11905503,0.11905509 +0.6875,0.6625,0.08418465,0.1683693 +0.6875,0.6625,0.1683693,0.08418465 +0.6875,0.6875,0.07500005,0.07500005 +0.6875,0.6875,0.053032994,0.10606599 +0.6875,0.6875,0.10606599,0.053032994 +0.6875,0.6875,0.094494104,0.094494104 +0.6875,0.6875,0.0668174,0.1336348 +0.6875,0.6875,0.1336348,0.0668174 +0.6875,0.6875,0.11905503,0.11905503 +0.6875,0.6875,0.08418465,0.1683693 +0.6875,0.6875,0.1683693,0.08418465 +0.6875,0.7125,0.07500005,0.07499999 +0.6875,0.7125,0.053032994,0.10606605 +0.6875,0.7125,0.10606599,0.053032935 +0.6875,0.7125,0.094494104,0.094494045 +0.6875,0.7125,0.0668174,0.13363487 +0.6875,0.7125,0.1336348,0.06681734 +0.6875,0.7125,0.11905503,0.11905509 +0.6875,0.7125,0.08418465,0.1683693 +0.6875,0.7125,0.1683693,0.08418465 +0.6875,0.73749995,0.07500005,0.07499999 +0.6875,0.73749995,0.053032994,0.10606605 +0.6875,0.7375,0.10606599,0.053032994 +0.6875,0.73749995,0.094494104,0.094494045 +0.6875,0.73749995,0.0668174,0.1336348 +0.6875,0.7375,0.1336348,0.0668174 +0.6875,0.73749995,0.11905503,0.11905509 +0.6875,0.7375,0.08418465,0.1683693 +0.6875,0.7375,0.1683693,0.08418465 +0.6875,0.76250005,0.07500005,0.07499999 +0.6875,0.7625,0.053032994,0.10606599 +0.6875,0.7625,0.10606599,0.053032994 +0.6875,0.76250005,0.094494104,0.094494045 +0.6875,0.7625,0.0668174,0.1336348 +0.6875,0.7625,0.1336348,0.0668174 +0.6875,0.7625,0.11905503,0.11905503 +0.6875,0.7625,0.08418465,0.1683693 +0.6875,0.7625,0.1683693,0.08418465 +0.6875,0.7875,0.07500005,0.07499999 +0.6875,0.78749996,0.053032994,0.10606599 +0.6875,0.7875,0.10606599,0.053032994 +0.6875,0.7875,0.094494104,0.094494045 +0.6875,0.78749996,0.0668174,0.1336348 +0.6875,0.7875,0.1336348,0.0668174 +0.6875,0.78749996,0.11905503,0.11905503 +0.6875,0.7875,0.08418465,0.1683693 +0.6875,0.7875,0.1683693,0.08418465 +0.6875,0.8125,0.07500005,0.07500005 +0.6875,0.8125,0.053032994,0.10606599 +0.6875,0.8125,0.10606599,0.053033054 +0.6875,0.8125,0.094494104,0.094494104 +0.6875,0.8125,0.0668174,0.1336348 +0.6875,0.8125,0.1336348,0.06681746 +0.6875,0.8125,0.11905503,0.11905503 +0.6875,0.8125,0.08418465,0.1683693 +0.6875,0.8125,0.1683693,0.08418465 +0.6875,0.8375,0.07500005,0.07499999 +0.6875,0.8375,0.053032994,0.10606599 +0.6875,0.8375,0.10606599,0.053033054 +0.6875,0.8375,0.094494104,0.094494045 +0.6875,0.8375,0.0668174,0.1336348 +0.6875,0.8375,0.1336348,0.06681746 +0.6875,0.8375,0.11905503,0.11905503 +0.6875,0.8375,0.08418465,0.1683693 +0.6875,0.8375,0.1683693,0.08418465 +0.6875,0.86249995,0.07500005,0.07499999 +0.6875,0.86249995,0.053032994,0.10606593 +0.6875,0.86249995,0.10606599,0.053033054 +0.6875,0.86249995,0.094494104,0.094494045 +0.6875,0.86249995,0.0668174,0.1336348 +0.6875,0.86249995,0.1336348,0.06681746 +0.6875,0.86249995,0.11905503,0.11905497 +0.6875,0.8625,0.08418465,0.1683693 +0.6875,0.8625,0.1683693,0.08418465 +0.6875,0.88750005,0.07500005,0.07499999 +0.6875,0.88750005,0.053032994,0.10606593 +0.6875,0.88750005,0.10606599,0.053033054 +0.6875,0.88750005,0.094494104,0.094494045 +0.6875,0.88750005,0.0668174,0.13363475 +0.6875,0.88750005,0.1336348,0.06681746 +0.6875,0.88750005,0.11905503,0.11905497 +0.6875,0.8875,0.08418465,0.1683693 +0.6875,0.8875,0.1683693,0.08418465 +0.6875,0.9125,0.07500005,0.07499999 +0.6875,0.9125,0.053032994,0.10606593 +0.6875,0.9125,0.10606599,0.053033054 +0.6875,0.9125,0.094494104,0.094494045 +0.6875,0.9125,0.0668174,0.13363475 +0.6875,0.9125,0.1336348,0.06681746 +0.6875,0.9125,0.11905503,0.11905497 +0.6875,0.9125,0.08418465,0.1683693 +0.6875,0.9125,0.1683693,0.08418465 +0.6875,0.9375,0.07500005,0.07500005 +0.6875,0.9375,0.053032994,0.10606599 +0.6875,0.9375,0.10606599,0.053033113 +0.6875,0.9375,0.094494104,0.094494104 +0.6875,0.9375,0.0668174,0.1336348 +0.6875,0.9375,0.1336348,0.06681752 +0.6875,0.9375,0.11905503,0.11905503 +0.6875,0.9375,0.08418465,0.1683693 +0.6875,0.9375,0.1683693,0.08418465 +0.6875,0.9625,0.07500005,0.07499999 +0.6875,0.9625,0.053032994,0.10606593 +0.6875,0.9625,0.10606599,0.053033054 +0.6875,0.9625,0.094494104,0.094494045 +0.6875,0.9625,0.0668174,0.13363475 +0.6875,0.9625,0.1336348,0.06681746 +0.6875,0.9625,0.11905503,0.11905497 +0.6875,0.9625,0.08418465,0.1683693 +0.6875,0.9625,0.1683693,0.08418465 +0.6875,0.98749995,0.07500005,0.07499999 +0.6875,0.98749995,0.053032994,0.10606593 +0.6875,0.98749995,0.10606599,0.053033054 +0.6875,0.98749995,0.094494104,0.094494045 +0.6875,0.98749995,0.0668174,0.13363475 +0.6875,0.98749995,0.1336348,0.06681746 +0.6875,0.98749995,0.11905503,0.11905497 +0.6875,0.98749995,0.08418465,0.16836923 +0.6875,0.98749995,0.1683693,0.08418459 +0.7125,0.0125,0.07499999,0.075 +0.7125,0.012499997,0.053032935,0.10606602 +0.7125,0.012499999,0.10606605,0.05303301 +0.7125,0.012499999,0.094494045,0.09449408 +0.7125,0.012500001,0.06681734,0.1336348 +0.7125,0.012499999,0.13363487,0.0668174 +0.7125,0.012500001,0.11905509,0.11905508 +0.7125,0.012499999,0.08418465,0.1683693 +0.7125,0.012500002,0.1683693,0.084184654 +0.7125,0.0375,0.07499999,0.075 +0.7125,0.037499998,0.053032935,0.10606601 +0.7125,0.0375,0.10606605,0.05303301 +0.7125,0.0375,0.094494045,0.094494075 +0.7125,0.0375,0.06681734,0.1336348 +0.7125,0.0375,0.13363487,0.0668174 +0.7125,0.0375,0.11905509,0.11905508 +0.7125,0.0375,0.08418465,0.16836931 +0.7125,0.0375,0.1683693,0.08418466 +0.7125,0.0625,0.07499999,0.075 +0.7125,0.0625,0.053032935,0.10606602 +0.7125,0.0625,0.10606605,0.05303301 +0.7125,0.0625,0.094494045,0.094494075 +0.7125,0.0625,0.06681734,0.1336348 +0.7125,0.0625,0.13363487,0.0668174 +0.7125,0.0625,0.11905509,0.11905508 +0.7125,0.0625,0.08418465,0.16836932 +0.7125,0.0625,0.1683693,0.08418465 +0.7125,0.0875,0.07499999,0.075 +0.7125,0.08749999,0.053032935,0.10606601 +0.7125,0.087500006,0.10606605,0.053033013 +0.7125,0.087500006,0.094494045,0.09449408 +0.7125,0.087500006,0.06681734,0.1336348 +0.7125,0.0875,0.13363487,0.0668174 +0.7125,0.0875,0.11905509,0.11905508 +0.7125,0.0875,0.08418465,0.16836931 +0.7125,0.087500006,0.1683693,0.084184654 +0.7125,0.112500004,0.07499999,0.075 +0.7125,0.1125,0.053032935,0.10606601 +0.7125,0.112500004,0.10606605,0.05303301 +0.7125,0.1125,0.094494045,0.094494075 +0.7125,0.1125,0.06681734,0.1336348 +0.7125,0.1125,0.13363487,0.0668174 +0.7125,0.1125,0.11905509,0.119055085 +0.7125,0.112500004,0.08418465,0.16836931 +0.7125,0.1125,0.1683693,0.08418465 +0.7125,0.1375,0.07499999,0.074999996 +0.7125,0.1375,0.053032935,0.10606602 +0.7125,0.1375,0.10606605,0.053033024 +0.7125,0.1375,0.094494045,0.09449408 +0.7125,0.1375,0.06681734,0.1336348 +0.7125,0.1375,0.13363487,0.0668174 +0.7125,0.13749999,0.11905509,0.11905508 +0.7125,0.1375,0.08418465,0.1683693 +0.7125,0.1375,0.1683693,0.084184654 +0.7125,0.1625,0.07499999,0.075 +0.7125,0.16250001,0.053032935,0.106066026 +0.7125,0.1625,0.10606605,0.05303301 +0.7125,0.1625,0.094494045,0.094494075 +0.7125,0.1625,0.06681734,0.1336348 +0.7125,0.1625,0.13363487,0.0668174 +0.7125,0.1625,0.11905509,0.11905508 +0.7125,0.1625,0.08418465,0.1683693 +0.7125,0.1625,0.1683693,0.08418464 +0.7125,0.1875,0.07499999,0.07499999 +0.7125,0.1875,0.053032935,0.10606603 +0.7125,0.1875,0.10606605,0.053033024 +0.7125,0.1875,0.094494045,0.09449406 +0.7125,0.1875,0.06681734,0.1336348 +0.7125,0.1875,0.13363487,0.06681742 +0.7125,0.1875,0.11905509,0.11905509 +0.7125,0.1875,0.08418465,0.16836931 +0.7125,0.1875,0.1683693,0.08418465 +0.7125,0.2125,0.07499999,0.075 +0.7125,0.2125,0.053032935,0.10606603 +0.7125,0.2125,0.10606605,0.05303301 +0.7125,0.21249999,0.094494045,0.094494075 +0.7125,0.2125,0.06681734,0.1336348 +0.7125,0.2125,0.13363487,0.0668174 +0.7125,0.2125,0.11905509,0.11905509 +0.7125,0.2125,0.08418465,0.16836931 +0.7125,0.2125,0.1683693,0.08418465 +0.7125,0.23750001,0.07499999,0.075 +0.7125,0.2375,0.053032935,0.10606602 +0.7125,0.2375,0.10606605,0.053033024 +0.7125,0.2375,0.094494045,0.094494075 +0.7125,0.23750001,0.06681734,0.13363482 +0.7125,0.2375,0.13363487,0.06681743 +0.7125,0.2375,0.11905509,0.11905506 +0.7125,0.2375,0.08418465,0.16836932 +0.7125,0.23750001,0.1683693,0.08418466 +0.7125,0.2625,0.07499999,0.07500002 +0.7125,0.2625,0.053032935,0.10606603 +0.7125,0.2625,0.10606605,0.053033024 +0.7125,0.2625,0.094494045,0.094494075 +0.7125,0.2625,0.06681734,0.13363479 +0.7125,0.2625,0.13363487,0.06681743 +0.7125,0.2625,0.11905509,0.11905508 +0.7125,0.2625,0.08418465,0.1683693 +0.7125,0.2625,0.1683693,0.08418463 +0.7125,0.2875,0.07499999,0.07499999 +0.7125,0.2875,0.053032935,0.10606603 +0.7125,0.28750002,0.10606605,0.053033024 +0.7125,0.2875,0.094494045,0.094494045 +0.7125,0.2875,0.06681734,0.1336348 +0.7125,0.28750002,0.13363487,0.06681743 +0.7125,0.2875,0.11905509,0.11905508 +0.7125,0.2875,0.08418465,0.1683693 +0.7125,0.2875,0.1683693,0.08418465 +0.7125,0.3125,0.07499999,0.07499999 +0.7125,0.3125,0.053032935,0.10606605 +0.7125,0.3125,0.10606605,0.053032994 +0.7125,0.3125,0.094494045,0.094494045 +0.7125,0.3125,0.06681734,0.1336348 +0.7125,0.3125,0.13363487,0.0668174 +0.7125,0.3125,0.11905509,0.11905509 +0.7125,0.3125,0.08418465,0.1683693 +0.7125,0.3125,0.1683693,0.08418465 +0.7125,0.3375,0.07499999,0.07499999 +0.7125,0.3375,0.053032935,0.10606605 +0.7125,0.33749998,0.10606605,0.053033024 +0.7125,0.3375,0.094494045,0.094494045 +0.7125,0.33750004,0.06681734,0.13363484 +0.7125,0.33749998,0.13363487,0.06681743 +0.7125,0.3375,0.11905509,0.11905509 +0.7125,0.3375,0.08418465,0.1683693 +0.7125,0.3375,0.1683693,0.08418465 +0.7125,0.3625,0.07499999,0.07500002 +0.7125,0.3625,0.053032935,0.10606602 +0.7125,0.3625,0.10606605,0.053033024 +0.7125,0.3625,0.094494045,0.094494075 +0.7125,0.3625,0.06681734,0.1336348 +0.7125,0.3625,0.13363487,0.06681743 +0.7125,0.3625,0.11905509,0.11905506 +0.7125,0.3625,0.08418465,0.1683693 +0.7125,0.3625,0.1683693,0.08418465 +0.7125,0.3875,0.07499999,0.07500002 +0.7125,0.3875,0.053032935,0.10606602 +0.7125,0.3875,0.10606605,0.053032994 +0.7125,0.3875,0.094494045,0.094494075 +0.7125,0.3875,0.06681734,0.13363484 +0.7125,0.3875,0.13363487,0.0668174 +0.7125,0.3875,0.11905509,0.11905506 +0.7125,0.3875,0.08418465,0.1683693 +0.7125,0.3875,0.1683693,0.08418465 +0.7125,0.4125,0.07499999,0.07499999 +0.7125,0.4125,0.053032935,0.10606605 +0.7125,0.4125,0.10606605,0.053032994 +0.7125,0.4125,0.094494045,0.094494045 +0.7125,0.41250002,0.06681734,0.13363484 +0.7125,0.4125,0.13363487,0.0668174 +0.7125,0.4125,0.11905509,0.11905509 +0.7125,0.4125,0.08418465,0.1683693 +0.7125,0.4125,0.1683693,0.08418465 +0.7125,0.4375,0.07499999,0.07499999 +0.7125,0.4375,0.053032935,0.10606605 +0.7125,0.4375,0.10606605,0.053032994 +0.7125,0.4375,0.094494045,0.094494045 +0.7125,0.4375,0.06681734,0.1336348 +0.7125,0.4375,0.13363487,0.0668174 +0.7125,0.4375,0.11905509,0.11905509 +0.7125,0.4375,0.08418465,0.1683693 +0.7125,0.4375,0.1683693,0.08418465 +0.7125,0.4625,0.07499999,0.07499999 +0.7125,0.4625,0.053032935,0.10606605 +0.7125,0.46249998,0.10606605,0.053032964 +0.7125,0.4625,0.094494045,0.094494045 +0.7125,0.46250004,0.06681734,0.13363484 +0.7125,0.46249998,0.13363487,0.06681737 +0.7125,0.4625,0.11905509,0.11905509 +0.7125,0.46249998,0.08418465,0.16836926 +0.7125,0.46249998,0.1683693,0.08418462 +0.7125,0.48749998,0.07499999,0.07499999 +0.7125,0.4875,0.053032935,0.10606602 +0.7125,0.4875,0.10606605,0.053032994 +0.7125,0.48749998,0.094494045,0.094494045 +0.7125,0.4875,0.06681734,0.13363484 +0.7125,0.4875,0.13363487,0.0668174 +0.7125,0.4875,0.11905509,0.11905506 +0.7125,0.4875,0.08418465,0.1683693 +0.7125,0.4875,0.1683693,0.08418465 +0.7125,0.5125,0.07499999,0.07500002 +0.7125,0.51250005,0.053032935,0.10606605 +0.7125,0.5125,0.10606605,0.053032964 +0.7125,0.5125,0.094494045,0.094494075 +0.7125,0.51250005,0.06681734,0.13363487 +0.7125,0.5125,0.13363487,0.06681737 +0.7125,0.51250005,0.11905509,0.11905509 +0.7125,0.5125,0.08418465,0.1683693 +0.7125,0.5125,0.1683693,0.08418465 +0.7125,0.5375,0.07499999,0.07499999 +0.7125,0.5375,0.053032935,0.10606605 +0.7125,0.5375,0.10606605,0.053032935 +0.7125,0.5375,0.094494045,0.094494045 +0.7125,0.5375,0.06681734,0.13363487 +0.7125,0.5375,0.13363487,0.06681734 +0.7125,0.5375,0.11905509,0.11905509 +0.7125,0.5375,0.08418465,0.16836932 +0.7125,0.5375,0.1683693,0.08418468 +0.7125,0.5625,0.07499999,0.07500005 +0.7125,0.5625,0.053032935,0.10606599 +0.7125,0.5625,0.10606605,0.053032994 +0.7125,0.5625,0.094494045,0.094494104 +0.7125,0.5625,0.06681734,0.13363484 +0.7125,0.5625,0.13363487,0.0668174 +0.7125,0.5625,0.11905509,0.11905503 +0.7125,0.5625,0.08418465,0.1683693 +0.7125,0.5625,0.1683693,0.08418465 +0.7125,0.5875,0.07499999,0.07499999 +0.7125,0.5875,0.053032935,0.10606605 +0.7125,0.5875,0.10606605,0.053032935 +0.7125,0.5875,0.094494045,0.094494045 +0.7125,0.5875,0.06681734,0.13363487 +0.7125,0.5875,0.13363487,0.06681734 +0.7125,0.5875,0.11905509,0.11905509 +0.7125,0.5875,0.08418465,0.1683693 +0.7125,0.5875,0.1683693,0.08418465 +0.7125,0.61249995,0.07499999,0.07499999 +0.7125,0.61249995,0.053032935,0.10606605 +0.7125,0.6125,0.10606605,0.053032994 +0.7125,0.61249995,0.094494045,0.094494045 +0.7125,0.61249995,0.06681734,0.13363487 +0.7125,0.6125,0.13363487,0.0668174 +0.7125,0.61249995,0.11905509,0.11905509 +0.7125,0.6125,0.08418465,0.1683693 +0.7125,0.6125,0.1683693,0.08418465 +0.7125,0.63750005,0.07499999,0.07499999 +0.7125,0.63750005,0.053032935,0.10606605 +0.7125,0.6375,0.10606605,0.053032994 +0.7125,0.63750005,0.094494045,0.094494045 +0.7125,0.63750005,0.06681734,0.13363487 +0.7125,0.6375,0.13363487,0.0668174 +0.7125,0.63750005,0.11905509,0.11905509 +0.7125,0.6375,0.08418465,0.1683693 +0.7125,0.6375,0.1683693,0.08418465 +0.7125,0.6625,0.07499999,0.07499999 +0.7125,0.6625,0.053032935,0.10606605 +0.7125,0.6625,0.10606605,0.053032935 +0.7125,0.6625,0.094494045,0.094494045 +0.7125,0.6625,0.06681734,0.13363487 +0.7125,0.6625,0.13363487,0.06681734 +0.7125,0.6625,0.11905509,0.11905509 +0.7125,0.6625,0.08418465,0.1683693 +0.7125,0.6625,0.1683693,0.08418465 +0.7125,0.6875,0.07499999,0.07500005 +0.7125,0.6875,0.053032935,0.10606599 +0.7125,0.6875,0.10606605,0.053032994 +0.7125,0.6875,0.094494045,0.094494104 +0.7125,0.6875,0.06681734,0.1336348 +0.7125,0.6875,0.13363487,0.0668174 +0.7125,0.6875,0.11905509,0.11905503 +0.7125,0.6875,0.08418465,0.1683693 +0.7125,0.6875,0.1683693,0.08418465 +0.7125,0.7125,0.07499999,0.07499999 +0.7125,0.7125,0.053032935,0.10606605 +0.7125,0.7125,0.10606605,0.053032935 +0.7125,0.7125,0.094494045,0.094494045 +0.7125,0.7125,0.06681734,0.13363487 +0.7125,0.7125,0.13363487,0.06681734 +0.7125,0.7125,0.11905509,0.11905509 +0.7125,0.7125,0.08418465,0.1683693 +0.7125,0.7125,0.1683693,0.08418465 +0.7125,0.73749995,0.07499999,0.07499999 +0.7125,0.73749995,0.053032935,0.10606605 +0.7125,0.7375,0.10606605,0.053032994 +0.7125,0.73749995,0.094494045,0.094494045 +0.7125,0.73749995,0.06681734,0.1336348 +0.7125,0.7375,0.13363487,0.0668174 +0.7125,0.73749995,0.11905509,0.11905509 +0.7125,0.7375,0.08418465,0.1683693 +0.7125,0.7375,0.1683693,0.08418465 +0.7125,0.76250005,0.07499999,0.07499999 +0.7125,0.7625,0.053032935,0.10606599 +0.7125,0.7625,0.10606605,0.053032994 +0.7125,0.76250005,0.094494045,0.094494045 +0.7125,0.7625,0.06681734,0.1336348 +0.7125,0.7625,0.13363487,0.0668174 +0.7125,0.7625,0.11905509,0.11905503 +0.7125,0.7625,0.08418465,0.1683693 +0.7125,0.7625,0.1683693,0.08418465 +0.7125,0.7875,0.07499999,0.07499999 +0.7125,0.78749996,0.053032935,0.10606599 +0.7125,0.7875,0.10606605,0.053032994 +0.7125,0.7875,0.094494045,0.094494045 +0.7125,0.78749996,0.06681734,0.1336348 +0.7125,0.7875,0.13363487,0.0668174 +0.7125,0.78749996,0.11905509,0.11905503 +0.7125,0.7875,0.08418465,0.1683693 +0.7125,0.7875,0.1683693,0.08418465 +0.7125,0.8125,0.07499999,0.07500005 +0.7125,0.8125,0.053032935,0.10606599 +0.7125,0.8125,0.10606605,0.053033054 +0.7125,0.8125,0.094494045,0.094494104 +0.7125,0.8125,0.06681734,0.1336348 +0.7125,0.8125,0.13363487,0.06681746 +0.7125,0.8125,0.11905509,0.11905503 +0.7125,0.8125,0.08418465,0.1683693 +0.7125,0.8125,0.1683693,0.08418465 +0.7125,0.8375,0.07499999,0.07499999 +0.7125,0.8375,0.053032935,0.10606599 +0.7125,0.8375,0.10606605,0.053033054 +0.7125,0.8375,0.094494045,0.094494045 +0.7125,0.8375,0.06681734,0.1336348 +0.7125,0.8375,0.13363487,0.06681746 +0.7125,0.8375,0.11905509,0.11905503 +0.7125,0.8375,0.08418465,0.1683693 +0.7125,0.8375,0.1683693,0.08418465 +0.7125,0.86249995,0.07499999,0.07499999 +0.7125,0.86249995,0.053032935,0.10606593 +0.7125,0.86249995,0.10606605,0.053033054 +0.7125,0.86249995,0.094494045,0.094494045 +0.7125,0.86249995,0.06681734,0.1336348 +0.7125,0.86249995,0.13363487,0.06681746 +0.7125,0.86249995,0.11905509,0.11905497 +0.7125,0.8625,0.08418465,0.1683693 +0.7125,0.8625,0.1683693,0.08418465 +0.7125,0.88750005,0.07499999,0.07499999 +0.7125,0.88750005,0.053032935,0.10606593 +0.7125,0.88750005,0.10606605,0.053033054 +0.7125,0.88750005,0.094494045,0.094494045 +0.7125,0.88750005,0.06681734,0.13363475 +0.7125,0.88750005,0.13363487,0.06681746 +0.7125,0.88750005,0.11905509,0.11905497 +0.7125,0.8875,0.08418465,0.1683693 +0.7125,0.8875,0.1683693,0.08418465 +0.7125,0.9125,0.07499999,0.07499999 +0.7125,0.9125,0.053032935,0.10606593 +0.7125,0.9125,0.10606605,0.053033054 +0.7125,0.9125,0.094494045,0.094494045 +0.7125,0.9125,0.06681734,0.13363475 +0.7125,0.9125,0.13363487,0.06681746 +0.7125,0.9125,0.11905509,0.11905497 +0.7125,0.9125,0.08418465,0.1683693 +0.7125,0.9125,0.1683693,0.08418465 +0.7125,0.9375,0.07499999,0.07500005 +0.7125,0.9375,0.053032935,0.10606599 +0.7125,0.9375,0.10606605,0.053033113 +0.7125,0.9375,0.094494045,0.094494104 +0.7125,0.9375,0.06681734,0.1336348 +0.7125,0.9375,0.13363487,0.06681752 +0.7125,0.9375,0.11905509,0.11905503 +0.7125,0.9375,0.08418465,0.1683693 +0.7125,0.9375,0.1683693,0.08418465 +0.7125,0.9625,0.07499999,0.07499999 +0.7125,0.9625,0.053032935,0.10606593 +0.7125,0.9625,0.10606605,0.053033054 +0.7125,0.9625,0.094494045,0.094494045 +0.7125,0.9625,0.06681734,0.13363475 +0.7125,0.9625,0.13363487,0.06681746 +0.7125,0.9625,0.11905509,0.11905497 +0.7125,0.9625,0.08418465,0.1683693 +0.7125,0.9625,0.1683693,0.08418465 +0.7125,0.98749995,0.07499999,0.07499999 +0.7125,0.98749995,0.053032935,0.10606593 +0.7125,0.98749995,0.10606605,0.053033054 +0.7125,0.98749995,0.094494045,0.094494045 +0.7125,0.98749995,0.06681734,0.13363475 +0.7125,0.98749995,0.13363487,0.06681746 +0.7125,0.98749995,0.11905509,0.11905497 +0.7125,0.98749995,0.08418465,0.16836923 +0.7125,0.98749995,0.1683693,0.08418459 +0.73749995,0.0125,0.07499999,0.075 +0.7375,0.012499997,0.053032994,0.10606602 +0.73749995,0.012499999,0.10606605,0.05303301 +0.73749995,0.012499999,0.094494045,0.09449408 +0.7375,0.012500001,0.0668174,0.1336348 +0.73749995,0.012499999,0.1336348,0.0668174 +0.73749995,0.012500001,0.11905509,0.11905508 +0.7375,0.012499999,0.08418465,0.1683693 +0.7375,0.012500002,0.1683693,0.084184654 +0.73749995,0.0375,0.07499999,0.075 +0.7375,0.037499998,0.053032994,0.10606601 +0.73749995,0.0375,0.10606605,0.05303301 +0.73749995,0.0375,0.094494045,0.094494075 +0.7375,0.0375,0.0668174,0.1336348 +0.73749995,0.0375,0.1336348,0.0668174 +0.73749995,0.0375,0.11905509,0.11905508 +0.7375,0.0375,0.08418465,0.16836931 +0.7375,0.0375,0.1683693,0.08418466 +0.73749995,0.0625,0.07499999,0.075 +0.7375,0.0625,0.053032994,0.10606602 +0.73749995,0.0625,0.10606605,0.05303301 +0.73749995,0.0625,0.094494045,0.094494075 +0.7375,0.0625,0.0668174,0.1336348 +0.73749995,0.0625,0.1336348,0.0668174 +0.73749995,0.0625,0.11905509,0.11905508 +0.7375,0.0625,0.08418465,0.16836932 +0.7375,0.0625,0.1683693,0.08418465 +0.73749995,0.0875,0.07499999,0.075 +0.7375,0.08749999,0.053032994,0.10606601 +0.73749995,0.087500006,0.10606605,0.053033013 +0.73749995,0.087500006,0.094494045,0.09449408 +0.7375,0.087500006,0.0668174,0.1336348 +0.73749995,0.0875,0.1336348,0.0668174 +0.73749995,0.0875,0.11905509,0.11905508 +0.7375,0.0875,0.08418465,0.16836931 +0.7375,0.087500006,0.1683693,0.084184654 +0.73749995,0.112500004,0.07499999,0.075 +0.7375,0.1125,0.053032994,0.10606601 +0.73749995,0.112500004,0.10606605,0.05303301 +0.73749995,0.1125,0.094494045,0.094494075 +0.7375,0.1125,0.0668174,0.1336348 +0.73749995,0.1125,0.1336348,0.0668174 +0.73749995,0.1125,0.11905509,0.119055085 +0.7375,0.112500004,0.08418465,0.16836931 +0.7375,0.1125,0.1683693,0.08418465 +0.73749995,0.1375,0.07499999,0.074999996 +0.7375,0.1375,0.053032994,0.10606602 +0.73749995,0.1375,0.10606605,0.053033024 +0.73749995,0.1375,0.094494045,0.09449408 +0.7375,0.1375,0.0668174,0.1336348 +0.73749995,0.1375,0.1336348,0.0668174 +0.73749995,0.13749999,0.11905509,0.11905508 +0.7375,0.1375,0.08418465,0.1683693 +0.7375,0.1375,0.1683693,0.084184654 +0.73749995,0.1625,0.07499999,0.075 +0.7375,0.16250001,0.053032994,0.106066026 +0.73749995,0.1625,0.10606605,0.05303301 +0.73749995,0.1625,0.094494045,0.094494075 +0.7375,0.1625,0.0668174,0.1336348 +0.73749995,0.1625,0.1336348,0.0668174 +0.73749995,0.1625,0.11905509,0.11905508 +0.7375,0.1625,0.08418465,0.1683693 +0.7375,0.1625,0.1683693,0.08418464 +0.73749995,0.1875,0.07499999,0.07499999 +0.7375,0.1875,0.053032994,0.10606603 +0.73749995,0.1875,0.10606605,0.053033024 +0.73749995,0.1875,0.094494045,0.09449406 +0.7375,0.1875,0.0668174,0.1336348 +0.73749995,0.1875,0.1336348,0.06681742 +0.73749995,0.1875,0.11905509,0.11905509 +0.7375,0.1875,0.08418465,0.16836931 +0.7375,0.1875,0.1683693,0.08418465 +0.73749995,0.2125,0.07499999,0.075 +0.7375,0.2125,0.053032994,0.10606603 +0.73749995,0.2125,0.10606605,0.05303301 +0.73749995,0.21249999,0.094494045,0.094494075 +0.7375,0.2125,0.0668174,0.1336348 +0.73749995,0.2125,0.1336348,0.0668174 +0.73749995,0.2125,0.11905509,0.11905509 +0.7375,0.2125,0.08418465,0.16836931 +0.7375,0.2125,0.1683693,0.08418465 +0.73749995,0.23750001,0.07499999,0.075 +0.7375,0.2375,0.053032994,0.10606602 +0.73749995,0.2375,0.10606605,0.053033024 +0.73749995,0.2375,0.094494045,0.094494075 +0.7375,0.23750001,0.0668174,0.13363482 +0.73749995,0.2375,0.1336348,0.06681743 +0.73749995,0.2375,0.11905509,0.11905506 +0.7375,0.2375,0.08418465,0.16836932 +0.7375,0.23750001,0.1683693,0.08418466 +0.73749995,0.2625,0.07499999,0.07500002 +0.7375,0.2625,0.053032994,0.10606603 +0.73749995,0.2625,0.10606605,0.053033024 +0.73749995,0.2625,0.094494045,0.094494075 +0.7375,0.2625,0.0668174,0.13363479 +0.73749995,0.2625,0.1336348,0.06681743 +0.73749995,0.2625,0.11905509,0.11905508 +0.7375,0.2625,0.08418465,0.1683693 +0.7375,0.2625,0.1683693,0.08418463 +0.73749995,0.2875,0.07499999,0.07499999 +0.7375,0.2875,0.053032994,0.10606603 +0.73749995,0.28750002,0.10606605,0.053033024 +0.73749995,0.2875,0.094494045,0.094494045 +0.7375,0.2875,0.0668174,0.1336348 +0.73749995,0.28750002,0.1336348,0.06681743 +0.73749995,0.2875,0.11905509,0.11905508 +0.7375,0.2875,0.08418465,0.1683693 +0.7375,0.2875,0.1683693,0.08418465 +0.73749995,0.3125,0.07499999,0.07499999 +0.7375,0.3125,0.053032994,0.10606605 +0.73749995,0.3125,0.10606605,0.053032994 +0.73749995,0.3125,0.094494045,0.094494045 +0.7375,0.3125,0.0668174,0.1336348 +0.73749995,0.3125,0.1336348,0.0668174 +0.73749995,0.3125,0.11905509,0.11905509 +0.7375,0.3125,0.08418465,0.1683693 +0.7375,0.3125,0.1683693,0.08418465 +0.73749995,0.3375,0.07499999,0.07499999 +0.7375,0.3375,0.053032994,0.10606605 +0.73749995,0.33749998,0.10606605,0.053033024 +0.73749995,0.3375,0.094494045,0.094494045 +0.7375,0.33750004,0.0668174,0.13363484 +0.73749995,0.33749998,0.1336348,0.06681743 +0.73749995,0.3375,0.11905509,0.11905509 +0.7375,0.3375,0.08418465,0.1683693 +0.7375,0.3375,0.1683693,0.08418465 +0.73749995,0.3625,0.07499999,0.07500002 +0.7375,0.3625,0.053032994,0.10606602 +0.73749995,0.3625,0.10606605,0.053033024 +0.73749995,0.3625,0.094494045,0.094494075 +0.7375,0.3625,0.0668174,0.1336348 +0.73749995,0.3625,0.1336348,0.06681743 +0.73749995,0.3625,0.11905509,0.11905506 +0.7375,0.3625,0.08418465,0.1683693 +0.7375,0.3625,0.1683693,0.08418465 +0.73749995,0.3875,0.07499999,0.07500002 +0.7375,0.3875,0.053032994,0.10606602 +0.73749995,0.3875,0.10606605,0.053032994 +0.73749995,0.3875,0.094494045,0.094494075 +0.7375,0.3875,0.0668174,0.13363484 +0.73749995,0.3875,0.1336348,0.0668174 +0.73749995,0.3875,0.11905509,0.11905506 +0.7375,0.3875,0.08418465,0.1683693 +0.7375,0.3875,0.1683693,0.08418465 +0.73749995,0.4125,0.07499999,0.07499999 +0.7375,0.4125,0.053032994,0.10606605 +0.73749995,0.4125,0.10606605,0.053032994 +0.73749995,0.4125,0.094494045,0.094494045 +0.7375,0.41250002,0.0668174,0.13363484 +0.73749995,0.4125,0.1336348,0.0668174 +0.73749995,0.4125,0.11905509,0.11905509 +0.7375,0.4125,0.08418465,0.1683693 +0.7375,0.4125,0.1683693,0.08418465 +0.73749995,0.4375,0.07499999,0.07499999 +0.7375,0.4375,0.053032994,0.10606605 +0.73749995,0.4375,0.10606605,0.053032994 +0.73749995,0.4375,0.094494045,0.094494045 +0.7375,0.4375,0.0668174,0.1336348 +0.73749995,0.4375,0.1336348,0.0668174 +0.73749995,0.4375,0.11905509,0.11905509 +0.7375,0.4375,0.08418465,0.1683693 +0.7375,0.4375,0.1683693,0.08418465 +0.73749995,0.4625,0.07499999,0.07499999 +0.7375,0.4625,0.053032994,0.10606605 +0.73749995,0.46249998,0.10606605,0.053032964 +0.73749995,0.4625,0.094494045,0.094494045 +0.7375,0.46250004,0.0668174,0.13363484 +0.73749995,0.46249998,0.1336348,0.06681737 +0.73749995,0.4625,0.11905509,0.11905509 +0.7375,0.46249998,0.08418465,0.16836926 +0.7375,0.46249998,0.1683693,0.08418462 +0.73749995,0.48749998,0.07499999,0.07499999 +0.7375,0.4875,0.053032994,0.10606602 +0.73749995,0.4875,0.10606605,0.053032994 +0.73749995,0.48749998,0.094494045,0.094494045 +0.7375,0.4875,0.0668174,0.13363484 +0.73749995,0.4875,0.1336348,0.0668174 +0.73749995,0.4875,0.11905509,0.11905506 +0.7375,0.4875,0.08418465,0.1683693 +0.7375,0.4875,0.1683693,0.08418465 +0.73749995,0.5125,0.07499999,0.07500002 +0.7375,0.51250005,0.053032994,0.10606605 +0.73749995,0.5125,0.10606605,0.053032964 +0.73749995,0.5125,0.094494045,0.094494075 +0.7375,0.51250005,0.0668174,0.13363487 +0.73749995,0.5125,0.1336348,0.06681737 +0.73749995,0.51250005,0.11905509,0.11905509 +0.7375,0.5125,0.08418465,0.1683693 +0.7375,0.5125,0.1683693,0.08418465 +0.73749995,0.5375,0.07499999,0.07499999 +0.7375,0.5375,0.053032994,0.10606605 +0.73749995,0.5375,0.10606605,0.053032935 +0.73749995,0.5375,0.094494045,0.094494045 +0.7375,0.5375,0.0668174,0.13363487 +0.73749995,0.5375,0.1336348,0.06681734 +0.73749995,0.5375,0.11905509,0.11905509 +0.7375,0.5375,0.08418465,0.16836932 +0.7375,0.5375,0.1683693,0.08418468 +0.73749995,0.5625,0.07499999,0.07500005 +0.7375,0.5625,0.053032994,0.10606599 +0.73749995,0.5625,0.10606605,0.053032994 +0.73749995,0.5625,0.094494045,0.094494104 +0.7375,0.5625,0.0668174,0.13363484 +0.73749995,0.5625,0.1336348,0.0668174 +0.73749995,0.5625,0.11905509,0.11905503 +0.7375,0.5625,0.08418465,0.1683693 +0.7375,0.5625,0.1683693,0.08418465 +0.73749995,0.5875,0.07499999,0.07499999 +0.7375,0.5875,0.053032994,0.10606605 +0.73749995,0.5875,0.10606605,0.053032935 +0.73749995,0.5875,0.094494045,0.094494045 +0.7375,0.5875,0.0668174,0.13363487 +0.73749995,0.5875,0.1336348,0.06681734 +0.73749995,0.5875,0.11905509,0.11905509 +0.7375,0.5875,0.08418465,0.1683693 +0.7375,0.5875,0.1683693,0.08418465 +0.73749995,0.61249995,0.07499999,0.07499999 +0.7375,0.61249995,0.053032994,0.10606605 +0.73749995,0.6125,0.10606605,0.053032994 +0.73749995,0.61249995,0.094494045,0.094494045 +0.7375,0.61249995,0.0668174,0.13363487 +0.73749995,0.6125,0.1336348,0.0668174 +0.73749995,0.61249995,0.11905509,0.11905509 +0.7375,0.6125,0.08418465,0.1683693 +0.7375,0.6125,0.1683693,0.08418465 +0.73749995,0.63750005,0.07499999,0.07499999 +0.7375,0.63750005,0.053032994,0.10606605 +0.73749995,0.6375,0.10606605,0.053032994 +0.73749995,0.63750005,0.094494045,0.094494045 +0.7375,0.63750005,0.0668174,0.13363487 +0.73749995,0.6375,0.1336348,0.0668174 +0.73749995,0.63750005,0.11905509,0.11905509 +0.7375,0.6375,0.08418465,0.1683693 +0.7375,0.6375,0.1683693,0.08418465 +0.73749995,0.6625,0.07499999,0.07499999 +0.7375,0.6625,0.053032994,0.10606605 +0.73749995,0.6625,0.10606605,0.053032935 +0.73749995,0.6625,0.094494045,0.094494045 +0.7375,0.6625,0.0668174,0.13363487 +0.73749995,0.6625,0.1336348,0.06681734 +0.73749995,0.6625,0.11905509,0.11905509 +0.7375,0.6625,0.08418465,0.1683693 +0.7375,0.6625,0.1683693,0.08418465 +0.73749995,0.6875,0.07499999,0.07500005 +0.7375,0.6875,0.053032994,0.10606599 +0.73749995,0.6875,0.10606605,0.053032994 +0.73749995,0.6875,0.094494045,0.094494104 +0.7375,0.6875,0.0668174,0.1336348 +0.73749995,0.6875,0.1336348,0.0668174 +0.73749995,0.6875,0.11905509,0.11905503 +0.7375,0.6875,0.08418465,0.1683693 +0.7375,0.6875,0.1683693,0.08418465 +0.73749995,0.7125,0.07499999,0.07499999 +0.7375,0.7125,0.053032994,0.10606605 +0.73749995,0.7125,0.10606605,0.053032935 +0.73749995,0.7125,0.094494045,0.094494045 +0.7375,0.7125,0.0668174,0.13363487 +0.73749995,0.7125,0.1336348,0.06681734 +0.73749995,0.7125,0.11905509,0.11905509 +0.7375,0.7125,0.08418465,0.1683693 +0.7375,0.7125,0.1683693,0.08418465 +0.73749995,0.73749995,0.07499999,0.07499999 +0.7375,0.73749995,0.053032994,0.10606605 +0.73749995,0.7375,0.10606605,0.053032994 +0.73749995,0.73749995,0.094494045,0.094494045 +0.7375,0.73749995,0.0668174,0.1336348 +0.73749995,0.7375,0.1336348,0.0668174 +0.73749995,0.73749995,0.11905509,0.11905509 +0.7375,0.7375,0.08418465,0.1683693 +0.7375,0.7375,0.1683693,0.08418465 +0.73749995,0.76250005,0.07499999,0.07499999 +0.7375,0.7625,0.053032994,0.10606599 +0.73749995,0.7625,0.10606605,0.053032994 +0.73749995,0.76250005,0.094494045,0.094494045 +0.7375,0.7625,0.0668174,0.1336348 +0.73749995,0.7625,0.1336348,0.0668174 +0.73749995,0.7625,0.11905509,0.11905503 +0.7375,0.7625,0.08418465,0.1683693 +0.7375,0.7625,0.1683693,0.08418465 +0.73749995,0.7875,0.07499999,0.07499999 +0.7375,0.78749996,0.053032994,0.10606599 +0.73749995,0.7875,0.10606605,0.053032994 +0.73749995,0.7875,0.094494045,0.094494045 +0.7375,0.78749996,0.0668174,0.1336348 +0.73749995,0.7875,0.1336348,0.0668174 +0.73749995,0.78749996,0.11905509,0.11905503 +0.7375,0.7875,0.08418465,0.1683693 +0.7375,0.7875,0.1683693,0.08418465 +0.73749995,0.8125,0.07499999,0.07500005 +0.7375,0.8125,0.053032994,0.10606599 +0.73749995,0.8125,0.10606605,0.053033054 +0.73749995,0.8125,0.094494045,0.094494104 +0.7375,0.8125,0.0668174,0.1336348 +0.73749995,0.8125,0.1336348,0.06681746 +0.73749995,0.8125,0.11905509,0.11905503 +0.7375,0.8125,0.08418465,0.1683693 +0.7375,0.8125,0.1683693,0.08418465 +0.73749995,0.8375,0.07499999,0.07499999 +0.7375,0.8375,0.053032994,0.10606599 +0.73749995,0.8375,0.10606605,0.053033054 +0.73749995,0.8375,0.094494045,0.094494045 +0.7375,0.8375,0.0668174,0.1336348 +0.73749995,0.8375,0.1336348,0.06681746 +0.73749995,0.8375,0.11905509,0.11905503 +0.7375,0.8375,0.08418465,0.1683693 +0.7375,0.8375,0.1683693,0.08418465 +0.73749995,0.86249995,0.07499999,0.07499999 +0.7375,0.86249995,0.053032994,0.10606593 +0.73749995,0.86249995,0.10606605,0.053033054 +0.73749995,0.86249995,0.094494045,0.094494045 +0.7375,0.86249995,0.0668174,0.1336348 +0.73749995,0.86249995,0.1336348,0.06681746 +0.73749995,0.86249995,0.11905509,0.11905497 +0.7375,0.8625,0.08418465,0.1683693 +0.7375,0.8625,0.1683693,0.08418465 +0.73749995,0.88750005,0.07499999,0.07499999 +0.7375,0.88750005,0.053032994,0.10606593 +0.73749995,0.88750005,0.10606605,0.053033054 +0.73749995,0.88750005,0.094494045,0.094494045 +0.7375,0.88750005,0.0668174,0.13363475 +0.73749995,0.88750005,0.1336348,0.06681746 +0.73749995,0.88750005,0.11905509,0.11905497 +0.7375,0.8875,0.08418465,0.1683693 +0.7375,0.8875,0.1683693,0.08418465 +0.73749995,0.9125,0.07499999,0.07499999 +0.7375,0.9125,0.053032994,0.10606593 +0.73749995,0.9125,0.10606605,0.053033054 +0.73749995,0.9125,0.094494045,0.094494045 +0.7375,0.9125,0.0668174,0.13363475 +0.73749995,0.9125,0.1336348,0.06681746 +0.73749995,0.9125,0.11905509,0.11905497 +0.7375,0.9125,0.08418465,0.1683693 +0.7375,0.9125,0.1683693,0.08418465 +0.73749995,0.9375,0.07499999,0.07500005 +0.7375,0.9375,0.053032994,0.10606599 +0.73749995,0.9375,0.10606605,0.053033113 +0.73749995,0.9375,0.094494045,0.094494104 +0.7375,0.9375,0.0668174,0.1336348 +0.73749995,0.9375,0.1336348,0.06681752 +0.73749995,0.9375,0.11905509,0.11905503 +0.7375,0.9375,0.08418465,0.1683693 +0.7375,0.9375,0.1683693,0.08418465 +0.73749995,0.9625,0.07499999,0.07499999 +0.7375,0.9625,0.053032994,0.10606593 +0.73749995,0.9625,0.10606605,0.053033054 +0.73749995,0.9625,0.094494045,0.094494045 +0.7375,0.9625,0.0668174,0.13363475 +0.73749995,0.9625,0.1336348,0.06681746 +0.73749995,0.9625,0.11905509,0.11905497 +0.7375,0.9625,0.08418465,0.1683693 +0.7375,0.9625,0.1683693,0.08418465 +0.73749995,0.98749995,0.07499999,0.07499999 +0.7375,0.98749995,0.053032994,0.10606593 +0.73749995,0.98749995,0.10606605,0.053033054 +0.73749995,0.98749995,0.094494045,0.094494045 +0.7375,0.98749995,0.0668174,0.13363475 +0.73749995,0.98749995,0.1336348,0.06681746 +0.73749995,0.98749995,0.11905509,0.11905497 +0.7375,0.98749995,0.08418465,0.16836923 +0.7375,0.98749995,0.1683693,0.08418459 +0.76250005,0.0125,0.07499999,0.075 +0.7625,0.012499997,0.053032994,0.10606602 +0.7625,0.012499999,0.10606599,0.05303301 +0.76250005,0.012499999,0.094494045,0.09449408 +0.7625,0.012500001,0.0668174,0.1336348 +0.7625,0.012499999,0.1336348,0.0668174 +0.7625,0.012500001,0.11905503,0.11905508 +0.7625,0.012499999,0.08418465,0.1683693 +0.7625,0.012500002,0.1683693,0.084184654 +0.76250005,0.0375,0.07499999,0.075 +0.7625,0.037499998,0.053032994,0.10606601 +0.7625,0.0375,0.10606599,0.05303301 +0.76250005,0.0375,0.094494045,0.094494075 +0.7625,0.0375,0.0668174,0.1336348 +0.7625,0.0375,0.1336348,0.0668174 +0.7625,0.0375,0.11905503,0.11905508 +0.7625,0.0375,0.08418465,0.16836931 +0.7625,0.0375,0.1683693,0.08418466 +0.76250005,0.0625,0.07499999,0.075 +0.7625,0.0625,0.053032994,0.10606602 +0.7625,0.0625,0.10606599,0.05303301 +0.76250005,0.0625,0.094494045,0.094494075 +0.7625,0.0625,0.0668174,0.1336348 +0.7625,0.0625,0.1336348,0.0668174 +0.7625,0.0625,0.11905503,0.11905508 +0.7625,0.0625,0.08418465,0.16836932 +0.7625,0.0625,0.1683693,0.08418465 +0.76250005,0.0875,0.07499999,0.075 +0.7625,0.08749999,0.053032994,0.10606601 +0.7625,0.087500006,0.10606599,0.053033013 +0.76250005,0.087500006,0.094494045,0.09449408 +0.7625,0.087500006,0.0668174,0.1336348 +0.7625,0.0875,0.1336348,0.0668174 +0.7625,0.0875,0.11905503,0.11905508 +0.7625,0.0875,0.08418465,0.16836931 +0.7625,0.087500006,0.1683693,0.084184654 +0.76250005,0.112500004,0.07499999,0.075 +0.7625,0.1125,0.053032994,0.10606601 +0.7625,0.112500004,0.10606599,0.05303301 +0.76250005,0.1125,0.094494045,0.094494075 +0.7625,0.1125,0.0668174,0.1336348 +0.7625,0.1125,0.1336348,0.0668174 +0.7625,0.1125,0.11905503,0.119055085 +0.7625,0.112500004,0.08418465,0.16836931 +0.7625,0.1125,0.1683693,0.08418465 +0.76250005,0.1375,0.07499999,0.074999996 +0.7625,0.1375,0.053032994,0.10606602 +0.7625,0.1375,0.10606599,0.053033024 +0.76250005,0.1375,0.094494045,0.09449408 +0.7625,0.1375,0.0668174,0.1336348 +0.7625,0.1375,0.1336348,0.0668174 +0.7625,0.13749999,0.11905503,0.11905508 +0.7625,0.1375,0.08418465,0.1683693 +0.7625,0.1375,0.1683693,0.084184654 +0.76250005,0.1625,0.07499999,0.075 +0.7625,0.16250001,0.053032994,0.106066026 +0.7625,0.1625,0.10606599,0.05303301 +0.76250005,0.1625,0.094494045,0.094494075 +0.7625,0.1625,0.0668174,0.1336348 +0.7625,0.1625,0.1336348,0.0668174 +0.7625,0.1625,0.11905503,0.11905508 +0.7625,0.1625,0.08418465,0.1683693 +0.7625,0.1625,0.1683693,0.08418464 +0.76250005,0.1875,0.07499999,0.07499999 +0.7625,0.1875,0.053032994,0.10606603 +0.7625,0.1875,0.10606599,0.053033024 +0.76250005,0.1875,0.094494045,0.09449406 +0.7625,0.1875,0.0668174,0.1336348 +0.7625,0.1875,0.1336348,0.06681742 +0.7625,0.1875,0.11905503,0.11905509 +0.7625,0.1875,0.08418465,0.16836931 +0.7625,0.1875,0.1683693,0.08418465 +0.76250005,0.2125,0.07499999,0.075 +0.7625,0.2125,0.053032994,0.10606603 +0.7625,0.2125,0.10606599,0.05303301 +0.76250005,0.21249999,0.094494045,0.094494075 +0.7625,0.2125,0.0668174,0.1336348 +0.7625,0.2125,0.1336348,0.0668174 +0.7625,0.2125,0.11905503,0.11905509 +0.7625,0.2125,0.08418465,0.16836931 +0.7625,0.2125,0.1683693,0.08418465 +0.76250005,0.23750001,0.07499999,0.075 +0.7625,0.2375,0.053032994,0.10606602 +0.7625,0.2375,0.10606599,0.053033024 +0.76250005,0.2375,0.094494045,0.094494075 +0.7625,0.23750001,0.0668174,0.13363482 +0.7625,0.2375,0.1336348,0.06681743 +0.7625,0.2375,0.11905503,0.11905506 +0.7625,0.2375,0.08418465,0.16836932 +0.7625,0.23750001,0.1683693,0.08418466 +0.76250005,0.2625,0.07499999,0.07500002 +0.7625,0.2625,0.053032994,0.10606603 +0.7625,0.2625,0.10606599,0.053033024 +0.76250005,0.2625,0.094494045,0.094494075 +0.7625,0.2625,0.0668174,0.13363479 +0.7625,0.2625,0.1336348,0.06681743 +0.7625,0.2625,0.11905503,0.11905508 +0.7625,0.2625,0.08418465,0.1683693 +0.7625,0.2625,0.1683693,0.08418463 +0.76250005,0.2875,0.07499999,0.07499999 +0.7625,0.2875,0.053032994,0.10606603 +0.7625,0.28750002,0.10606599,0.053033024 +0.76250005,0.2875,0.094494045,0.094494045 +0.7625,0.2875,0.0668174,0.1336348 +0.7625,0.28750002,0.1336348,0.06681743 +0.7625,0.2875,0.11905503,0.11905508 +0.7625,0.2875,0.08418465,0.1683693 +0.7625,0.2875,0.1683693,0.08418465 +0.76250005,0.3125,0.07499999,0.07499999 +0.7625,0.3125,0.053032994,0.10606605 +0.7625,0.3125,0.10606599,0.053032994 +0.76250005,0.3125,0.094494045,0.094494045 +0.7625,0.3125,0.0668174,0.1336348 +0.7625,0.3125,0.1336348,0.0668174 +0.7625,0.3125,0.11905503,0.11905509 +0.7625,0.3125,0.08418465,0.1683693 +0.7625,0.3125,0.1683693,0.08418465 +0.76250005,0.3375,0.07499999,0.07499999 +0.7625,0.3375,0.053032994,0.10606605 +0.7625,0.33749998,0.10606599,0.053033024 +0.76250005,0.3375,0.094494045,0.094494045 +0.7625,0.33750004,0.0668174,0.13363484 +0.7625,0.33749998,0.1336348,0.06681743 +0.7625,0.3375,0.11905503,0.11905509 +0.7625,0.3375,0.08418465,0.1683693 +0.7625,0.3375,0.1683693,0.08418465 +0.76250005,0.3625,0.07499999,0.07500002 +0.7625,0.3625,0.053032994,0.10606602 +0.7625,0.3625,0.10606599,0.053033024 +0.76250005,0.3625,0.094494045,0.094494075 +0.7625,0.3625,0.0668174,0.1336348 +0.7625,0.3625,0.1336348,0.06681743 +0.7625,0.3625,0.11905503,0.11905506 +0.7625,0.3625,0.08418465,0.1683693 +0.7625,0.3625,0.1683693,0.08418465 +0.76250005,0.3875,0.07499999,0.07500002 +0.7625,0.3875,0.053032994,0.10606602 +0.7625,0.3875,0.10606599,0.053032994 +0.76250005,0.3875,0.094494045,0.094494075 +0.7625,0.3875,0.0668174,0.13363484 +0.7625,0.3875,0.1336348,0.0668174 +0.7625,0.3875,0.11905503,0.11905506 +0.7625,0.3875,0.08418465,0.1683693 +0.7625,0.3875,0.1683693,0.08418465 +0.76250005,0.4125,0.07499999,0.07499999 +0.7625,0.4125,0.053032994,0.10606605 +0.7625,0.4125,0.10606599,0.053032994 +0.76250005,0.4125,0.094494045,0.094494045 +0.7625,0.41250002,0.0668174,0.13363484 +0.7625,0.4125,0.1336348,0.0668174 +0.7625,0.4125,0.11905503,0.11905509 +0.7625,0.4125,0.08418465,0.1683693 +0.7625,0.4125,0.1683693,0.08418465 +0.76250005,0.4375,0.07499999,0.07499999 +0.7625,0.4375,0.053032994,0.10606605 +0.7625,0.4375,0.10606599,0.053032994 +0.76250005,0.4375,0.094494045,0.094494045 +0.7625,0.4375,0.0668174,0.1336348 +0.7625,0.4375,0.1336348,0.0668174 +0.7625,0.4375,0.11905503,0.11905509 +0.7625,0.4375,0.08418465,0.1683693 +0.7625,0.4375,0.1683693,0.08418465 +0.76250005,0.4625,0.07499999,0.07499999 +0.7625,0.4625,0.053032994,0.10606605 +0.7625,0.46249998,0.10606599,0.053032964 +0.76250005,0.4625,0.094494045,0.094494045 +0.7625,0.46250004,0.0668174,0.13363484 +0.7625,0.46249998,0.1336348,0.06681737 +0.7625,0.4625,0.11905503,0.11905509 +0.7625,0.46249998,0.08418465,0.16836926 +0.7625,0.46249998,0.1683693,0.08418462 +0.76250005,0.48749998,0.07499999,0.07499999 +0.7625,0.4875,0.053032994,0.10606602 +0.7625,0.4875,0.10606599,0.053032994 +0.76250005,0.48749998,0.094494045,0.094494045 +0.7625,0.4875,0.0668174,0.13363484 +0.7625,0.4875,0.1336348,0.0668174 +0.7625,0.4875,0.11905503,0.11905506 +0.7625,0.4875,0.08418465,0.1683693 +0.7625,0.4875,0.1683693,0.08418465 +0.76250005,0.5125,0.07499999,0.07500002 +0.7625,0.51250005,0.053032994,0.10606605 +0.7625,0.5125,0.10606599,0.053032964 +0.76250005,0.5125,0.094494045,0.094494075 +0.7625,0.51250005,0.0668174,0.13363487 +0.7625,0.5125,0.1336348,0.06681737 +0.7625,0.51250005,0.11905503,0.11905509 +0.7625,0.5125,0.08418465,0.1683693 +0.7625,0.5125,0.1683693,0.08418465 +0.76250005,0.5375,0.07499999,0.07499999 +0.7625,0.5375,0.053032994,0.10606605 +0.7625,0.5375,0.10606599,0.053032935 +0.76250005,0.5375,0.094494045,0.094494045 +0.7625,0.5375,0.0668174,0.13363487 +0.7625,0.5375,0.1336348,0.06681734 +0.7625,0.5375,0.11905503,0.11905509 +0.7625,0.5375,0.08418465,0.16836932 +0.7625,0.5375,0.1683693,0.08418468 +0.76250005,0.5625,0.07499999,0.07500005 +0.7625,0.5625,0.053032994,0.10606599 +0.7625,0.5625,0.10606599,0.053032994 +0.76250005,0.5625,0.094494045,0.094494104 +0.7625,0.5625,0.0668174,0.13363484 +0.7625,0.5625,0.1336348,0.0668174 +0.7625,0.5625,0.11905503,0.11905503 +0.7625,0.5625,0.08418465,0.1683693 +0.7625,0.5625,0.1683693,0.08418465 +0.76250005,0.5875,0.07499999,0.07499999 +0.7625,0.5875,0.053032994,0.10606605 +0.7625,0.5875,0.10606599,0.053032935 +0.76250005,0.5875,0.094494045,0.094494045 +0.7625,0.5875,0.0668174,0.13363487 +0.7625,0.5875,0.1336348,0.06681734 +0.7625,0.5875,0.11905503,0.11905509 +0.7625,0.5875,0.08418465,0.1683693 +0.7625,0.5875,0.1683693,0.08418465 +0.76250005,0.61249995,0.07499999,0.07499999 +0.7625,0.61249995,0.053032994,0.10606605 +0.7625,0.6125,0.10606599,0.053032994 +0.76250005,0.61249995,0.094494045,0.094494045 +0.7625,0.61249995,0.0668174,0.13363487 +0.7625,0.6125,0.1336348,0.0668174 +0.7625,0.61249995,0.11905503,0.11905509 +0.7625,0.6125,0.08418465,0.1683693 +0.7625,0.6125,0.1683693,0.08418465 +0.76250005,0.63750005,0.07499999,0.07499999 +0.7625,0.63750005,0.053032994,0.10606605 +0.7625,0.6375,0.10606599,0.053032994 +0.76250005,0.63750005,0.094494045,0.094494045 +0.7625,0.63750005,0.0668174,0.13363487 +0.7625,0.6375,0.1336348,0.0668174 +0.7625,0.63750005,0.11905503,0.11905509 +0.7625,0.6375,0.08418465,0.1683693 +0.7625,0.6375,0.1683693,0.08418465 +0.76250005,0.6625,0.07499999,0.07499999 +0.7625,0.6625,0.053032994,0.10606605 +0.7625,0.6625,0.10606599,0.053032935 +0.76250005,0.6625,0.094494045,0.094494045 +0.7625,0.6625,0.0668174,0.13363487 +0.7625,0.6625,0.1336348,0.06681734 +0.7625,0.6625,0.11905503,0.11905509 +0.7625,0.6625,0.08418465,0.1683693 +0.7625,0.6625,0.1683693,0.08418465 +0.76250005,0.6875,0.07499999,0.07500005 +0.7625,0.6875,0.053032994,0.10606599 +0.7625,0.6875,0.10606599,0.053032994 +0.76250005,0.6875,0.094494045,0.094494104 +0.7625,0.6875,0.0668174,0.1336348 +0.7625,0.6875,0.1336348,0.0668174 +0.7625,0.6875,0.11905503,0.11905503 +0.7625,0.6875,0.08418465,0.1683693 +0.7625,0.6875,0.1683693,0.08418465 +0.76250005,0.7125,0.07499999,0.07499999 +0.7625,0.7125,0.053032994,0.10606605 +0.7625,0.7125,0.10606599,0.053032935 +0.76250005,0.7125,0.094494045,0.094494045 +0.7625,0.7125,0.0668174,0.13363487 +0.7625,0.7125,0.1336348,0.06681734 +0.7625,0.7125,0.11905503,0.11905509 +0.7625,0.7125,0.08418465,0.1683693 +0.7625,0.7125,0.1683693,0.08418465 +0.76250005,0.73749995,0.07499999,0.07499999 +0.7625,0.73749995,0.053032994,0.10606605 +0.7625,0.7375,0.10606599,0.053032994 +0.76250005,0.73749995,0.094494045,0.094494045 +0.7625,0.73749995,0.0668174,0.1336348 +0.7625,0.7375,0.1336348,0.0668174 +0.7625,0.73749995,0.11905503,0.11905509 +0.7625,0.7375,0.08418465,0.1683693 +0.7625,0.7375,0.1683693,0.08418465 +0.76250005,0.76250005,0.07499999,0.07499999 +0.7625,0.7625,0.053032994,0.10606599 +0.7625,0.7625,0.10606599,0.053032994 +0.76250005,0.76250005,0.094494045,0.094494045 +0.7625,0.7625,0.0668174,0.1336348 +0.7625,0.7625,0.1336348,0.0668174 +0.7625,0.7625,0.11905503,0.11905503 +0.7625,0.7625,0.08418465,0.1683693 +0.7625,0.7625,0.1683693,0.08418465 +0.76250005,0.7875,0.07499999,0.07499999 +0.7625,0.78749996,0.053032994,0.10606599 +0.7625,0.7875,0.10606599,0.053032994 +0.76250005,0.7875,0.094494045,0.094494045 +0.7625,0.78749996,0.0668174,0.1336348 +0.7625,0.7875,0.1336348,0.0668174 +0.7625,0.78749996,0.11905503,0.11905503 +0.7625,0.7875,0.08418465,0.1683693 +0.7625,0.7875,0.1683693,0.08418465 +0.76250005,0.8125,0.07499999,0.07500005 +0.7625,0.8125,0.053032994,0.10606599 +0.7625,0.8125,0.10606599,0.053033054 +0.76250005,0.8125,0.094494045,0.094494104 +0.7625,0.8125,0.0668174,0.1336348 +0.7625,0.8125,0.1336348,0.06681746 +0.7625,0.8125,0.11905503,0.11905503 +0.7625,0.8125,0.08418465,0.1683693 +0.7625,0.8125,0.1683693,0.08418465 +0.76250005,0.8375,0.07499999,0.07499999 +0.7625,0.8375,0.053032994,0.10606599 +0.7625,0.8375,0.10606599,0.053033054 +0.76250005,0.8375,0.094494045,0.094494045 +0.7625,0.8375,0.0668174,0.1336348 +0.7625,0.8375,0.1336348,0.06681746 +0.7625,0.8375,0.11905503,0.11905503 +0.7625,0.8375,0.08418465,0.1683693 +0.7625,0.8375,0.1683693,0.08418465 +0.76250005,0.86249995,0.07499999,0.07499999 +0.7625,0.86249995,0.053032994,0.10606593 +0.7625,0.86249995,0.10606599,0.053033054 +0.76250005,0.86249995,0.094494045,0.094494045 +0.7625,0.86249995,0.0668174,0.1336348 +0.7625,0.86249995,0.1336348,0.06681746 +0.7625,0.86249995,0.11905503,0.11905497 +0.7625,0.8625,0.08418465,0.1683693 +0.7625,0.8625,0.1683693,0.08418465 +0.76250005,0.88750005,0.07499999,0.07499999 +0.7625,0.88750005,0.053032994,0.10606593 +0.7625,0.88750005,0.10606599,0.053033054 +0.76250005,0.88750005,0.094494045,0.094494045 +0.7625,0.88750005,0.0668174,0.13363475 +0.7625,0.88750005,0.1336348,0.06681746 +0.7625,0.88750005,0.11905503,0.11905497 +0.7625,0.8875,0.08418465,0.1683693 +0.7625,0.8875,0.1683693,0.08418465 +0.76250005,0.9125,0.07499999,0.07499999 +0.7625,0.9125,0.053032994,0.10606593 +0.7625,0.9125,0.10606599,0.053033054 +0.76250005,0.9125,0.094494045,0.094494045 +0.7625,0.9125,0.0668174,0.13363475 +0.7625,0.9125,0.1336348,0.06681746 +0.7625,0.9125,0.11905503,0.11905497 +0.7625,0.9125,0.08418465,0.1683693 +0.7625,0.9125,0.1683693,0.08418465 +0.76250005,0.9375,0.07499999,0.07500005 +0.7625,0.9375,0.053032994,0.10606599 +0.7625,0.9375,0.10606599,0.053033113 +0.76250005,0.9375,0.094494045,0.094494104 +0.7625,0.9375,0.0668174,0.1336348 +0.7625,0.9375,0.1336348,0.06681752 +0.7625,0.9375,0.11905503,0.11905503 +0.7625,0.9375,0.08418465,0.1683693 +0.7625,0.9375,0.1683693,0.08418465 +0.76250005,0.9625,0.07499999,0.07499999 +0.7625,0.9625,0.053032994,0.10606593 +0.7625,0.9625,0.10606599,0.053033054 +0.76250005,0.9625,0.094494045,0.094494045 +0.7625,0.9625,0.0668174,0.13363475 +0.7625,0.9625,0.1336348,0.06681746 +0.7625,0.9625,0.11905503,0.11905497 +0.7625,0.9625,0.08418465,0.1683693 +0.7625,0.9625,0.1683693,0.08418465 +0.76250005,0.98749995,0.07499999,0.07499999 +0.7625,0.98749995,0.053032994,0.10606593 +0.7625,0.98749995,0.10606599,0.053033054 +0.76250005,0.98749995,0.094494045,0.094494045 +0.7625,0.98749995,0.0668174,0.13363475 +0.7625,0.98749995,0.1336348,0.06681746 +0.7625,0.98749995,0.11905503,0.11905497 +0.7625,0.98749995,0.08418465,0.16836923 +0.7625,0.98749995,0.1683693,0.08418459 +0.7875,0.0125,0.07499999,0.075 +0.7875,0.012499997,0.053032994,0.10606602 +0.78749996,0.012499999,0.10606599,0.05303301 +0.7875,0.012499999,0.094494045,0.09449408 +0.7875,0.012500001,0.0668174,0.1336348 +0.78749996,0.012499999,0.1336348,0.0668174 +0.78749996,0.012500001,0.11905503,0.11905508 +0.7875,0.012499999,0.08418465,0.1683693 +0.7875,0.012500002,0.1683693,0.084184654 +0.7875,0.0375,0.07499999,0.075 +0.7875,0.037499998,0.053032994,0.10606601 +0.78749996,0.0375,0.10606599,0.05303301 +0.7875,0.0375,0.094494045,0.094494075 +0.7875,0.0375,0.0668174,0.1336348 +0.78749996,0.0375,0.1336348,0.0668174 +0.78749996,0.0375,0.11905503,0.11905508 +0.7875,0.0375,0.08418465,0.16836931 +0.7875,0.0375,0.1683693,0.08418466 +0.7875,0.0625,0.07499999,0.075 +0.7875,0.0625,0.053032994,0.10606602 +0.78749996,0.0625,0.10606599,0.05303301 +0.7875,0.0625,0.094494045,0.094494075 +0.7875,0.0625,0.0668174,0.1336348 +0.78749996,0.0625,0.1336348,0.0668174 +0.78749996,0.0625,0.11905503,0.11905508 +0.7875,0.0625,0.08418465,0.16836932 +0.7875,0.0625,0.1683693,0.08418465 +0.7875,0.0875,0.07499999,0.075 +0.7875,0.08749999,0.053032994,0.10606601 +0.78749996,0.087500006,0.10606599,0.053033013 +0.7875,0.087500006,0.094494045,0.09449408 +0.7875,0.087500006,0.0668174,0.1336348 +0.78749996,0.0875,0.1336348,0.0668174 +0.78749996,0.0875,0.11905503,0.11905508 +0.7875,0.0875,0.08418465,0.16836931 +0.7875,0.087500006,0.1683693,0.084184654 +0.7875,0.112500004,0.07499999,0.075 +0.7875,0.1125,0.053032994,0.10606601 +0.78749996,0.112500004,0.10606599,0.05303301 +0.7875,0.1125,0.094494045,0.094494075 +0.7875,0.1125,0.0668174,0.1336348 +0.78749996,0.1125,0.1336348,0.0668174 +0.78749996,0.1125,0.11905503,0.119055085 +0.7875,0.112500004,0.08418465,0.16836931 +0.7875,0.1125,0.1683693,0.08418465 +0.7875,0.1375,0.07499999,0.074999996 +0.7875,0.1375,0.053032994,0.10606602 +0.78749996,0.1375,0.10606599,0.053033024 +0.7875,0.1375,0.094494045,0.09449408 +0.7875,0.1375,0.0668174,0.1336348 +0.78749996,0.1375,0.1336348,0.0668174 +0.78749996,0.13749999,0.11905503,0.11905508 +0.7875,0.1375,0.08418465,0.1683693 +0.7875,0.1375,0.1683693,0.084184654 +0.7875,0.1625,0.07499999,0.075 +0.7875,0.16250001,0.053032994,0.106066026 +0.78749996,0.1625,0.10606599,0.05303301 +0.7875,0.1625,0.094494045,0.094494075 +0.7875,0.1625,0.0668174,0.1336348 +0.78749996,0.1625,0.1336348,0.0668174 +0.78749996,0.1625,0.11905503,0.11905508 +0.7875,0.1625,0.08418465,0.1683693 +0.7875,0.1625,0.1683693,0.08418464 +0.7875,0.1875,0.07499999,0.07499999 +0.7875,0.1875,0.053032994,0.10606603 +0.78749996,0.1875,0.10606599,0.053033024 +0.7875,0.1875,0.094494045,0.09449406 +0.7875,0.1875,0.0668174,0.1336348 +0.78749996,0.1875,0.1336348,0.06681742 +0.78749996,0.1875,0.11905503,0.11905509 +0.7875,0.1875,0.08418465,0.16836931 +0.7875,0.1875,0.1683693,0.08418465 +0.7875,0.2125,0.07499999,0.075 +0.7875,0.2125,0.053032994,0.10606603 +0.78749996,0.2125,0.10606599,0.05303301 +0.7875,0.21249999,0.094494045,0.094494075 +0.7875,0.2125,0.0668174,0.1336348 +0.78749996,0.2125,0.1336348,0.0668174 +0.78749996,0.2125,0.11905503,0.11905509 +0.7875,0.2125,0.08418465,0.16836931 +0.7875,0.2125,0.1683693,0.08418465 +0.7875,0.23750001,0.07499999,0.075 +0.7875,0.2375,0.053032994,0.10606602 +0.78749996,0.2375,0.10606599,0.053033024 +0.7875,0.2375,0.094494045,0.094494075 +0.7875,0.23750001,0.0668174,0.13363482 +0.78749996,0.2375,0.1336348,0.06681743 +0.78749996,0.2375,0.11905503,0.11905506 +0.7875,0.2375,0.08418465,0.16836932 +0.7875,0.23750001,0.1683693,0.08418466 +0.7875,0.2625,0.07499999,0.07500002 +0.7875,0.2625,0.053032994,0.10606603 +0.78749996,0.2625,0.10606599,0.053033024 +0.7875,0.2625,0.094494045,0.094494075 +0.7875,0.2625,0.0668174,0.13363479 +0.78749996,0.2625,0.1336348,0.06681743 +0.78749996,0.2625,0.11905503,0.11905508 +0.7875,0.2625,0.08418465,0.1683693 +0.7875,0.2625,0.1683693,0.08418463 +0.7875,0.2875,0.07499999,0.07499999 +0.7875,0.2875,0.053032994,0.10606603 +0.78749996,0.28750002,0.10606599,0.053033024 +0.7875,0.2875,0.094494045,0.094494045 +0.7875,0.2875,0.0668174,0.1336348 +0.78749996,0.28750002,0.1336348,0.06681743 +0.78749996,0.2875,0.11905503,0.11905508 +0.7875,0.2875,0.08418465,0.1683693 +0.7875,0.2875,0.1683693,0.08418465 +0.7875,0.3125,0.07499999,0.07499999 +0.7875,0.3125,0.053032994,0.10606605 +0.78749996,0.3125,0.10606599,0.053032994 +0.7875,0.3125,0.094494045,0.094494045 +0.7875,0.3125,0.0668174,0.1336348 +0.78749996,0.3125,0.1336348,0.0668174 +0.78749996,0.3125,0.11905503,0.11905509 +0.7875,0.3125,0.08418465,0.1683693 +0.7875,0.3125,0.1683693,0.08418465 +0.7875,0.3375,0.07499999,0.07499999 +0.7875,0.3375,0.053032994,0.10606605 +0.78749996,0.33749998,0.10606599,0.053033024 +0.7875,0.3375,0.094494045,0.094494045 +0.7875,0.33750004,0.0668174,0.13363484 +0.78749996,0.33749998,0.1336348,0.06681743 +0.78749996,0.3375,0.11905503,0.11905509 +0.7875,0.3375,0.08418465,0.1683693 +0.7875,0.3375,0.1683693,0.08418465 +0.7875,0.3625,0.07499999,0.07500002 +0.7875,0.3625,0.053032994,0.10606602 +0.78749996,0.3625,0.10606599,0.053033024 +0.7875,0.3625,0.094494045,0.094494075 +0.7875,0.3625,0.0668174,0.1336348 +0.78749996,0.3625,0.1336348,0.06681743 +0.78749996,0.3625,0.11905503,0.11905506 +0.7875,0.3625,0.08418465,0.1683693 +0.7875,0.3625,0.1683693,0.08418465 +0.7875,0.3875,0.07499999,0.07500002 +0.7875,0.3875,0.053032994,0.10606602 +0.78749996,0.3875,0.10606599,0.053032994 +0.7875,0.3875,0.094494045,0.094494075 +0.7875,0.3875,0.0668174,0.13363484 +0.78749996,0.3875,0.1336348,0.0668174 +0.78749996,0.3875,0.11905503,0.11905506 +0.7875,0.3875,0.08418465,0.1683693 +0.7875,0.3875,0.1683693,0.08418465 +0.7875,0.4125,0.07499999,0.07499999 +0.7875,0.4125,0.053032994,0.10606605 +0.78749996,0.4125,0.10606599,0.053032994 +0.7875,0.4125,0.094494045,0.094494045 +0.7875,0.41250002,0.0668174,0.13363484 +0.78749996,0.4125,0.1336348,0.0668174 +0.78749996,0.4125,0.11905503,0.11905509 +0.7875,0.4125,0.08418465,0.1683693 +0.7875,0.4125,0.1683693,0.08418465 +0.7875,0.4375,0.07499999,0.07499999 +0.7875,0.4375,0.053032994,0.10606605 +0.78749996,0.4375,0.10606599,0.053032994 +0.7875,0.4375,0.094494045,0.094494045 +0.7875,0.4375,0.0668174,0.1336348 +0.78749996,0.4375,0.1336348,0.0668174 +0.78749996,0.4375,0.11905503,0.11905509 +0.7875,0.4375,0.08418465,0.1683693 +0.7875,0.4375,0.1683693,0.08418465 +0.7875,0.4625,0.07499999,0.07499999 +0.7875,0.4625,0.053032994,0.10606605 +0.78749996,0.46249998,0.10606599,0.053032964 +0.7875,0.4625,0.094494045,0.094494045 +0.7875,0.46250004,0.0668174,0.13363484 +0.78749996,0.46249998,0.1336348,0.06681737 +0.78749996,0.4625,0.11905503,0.11905509 +0.7875,0.46249998,0.08418465,0.16836926 +0.7875,0.46249998,0.1683693,0.08418462 +0.7875,0.48749998,0.07499999,0.07499999 +0.7875,0.4875,0.053032994,0.10606602 +0.78749996,0.4875,0.10606599,0.053032994 +0.7875,0.48749998,0.094494045,0.094494045 +0.7875,0.4875,0.0668174,0.13363484 +0.78749996,0.4875,0.1336348,0.0668174 +0.78749996,0.4875,0.11905503,0.11905506 +0.7875,0.4875,0.08418465,0.1683693 +0.7875,0.4875,0.1683693,0.08418465 +0.7875,0.5125,0.07499999,0.07500002 +0.7875,0.51250005,0.053032994,0.10606605 +0.78749996,0.5125,0.10606599,0.053032964 +0.7875,0.5125,0.094494045,0.094494075 +0.7875,0.51250005,0.0668174,0.13363487 +0.78749996,0.5125,0.1336348,0.06681737 +0.78749996,0.51250005,0.11905503,0.11905509 +0.7875,0.5125,0.08418465,0.1683693 +0.7875,0.5125,0.1683693,0.08418465 +0.7875,0.5375,0.07499999,0.07499999 +0.7875,0.5375,0.053032994,0.10606605 +0.78749996,0.5375,0.10606599,0.053032935 +0.7875,0.5375,0.094494045,0.094494045 +0.7875,0.5375,0.0668174,0.13363487 +0.78749996,0.5375,0.1336348,0.06681734 +0.78749996,0.5375,0.11905503,0.11905509 +0.7875,0.5375,0.08418465,0.16836932 +0.7875,0.5375,0.1683693,0.08418468 +0.7875,0.5625,0.07499999,0.07500005 +0.7875,0.5625,0.053032994,0.10606599 +0.78749996,0.5625,0.10606599,0.053032994 +0.7875,0.5625,0.094494045,0.094494104 +0.7875,0.5625,0.0668174,0.13363484 +0.78749996,0.5625,0.1336348,0.0668174 +0.78749996,0.5625,0.11905503,0.11905503 +0.7875,0.5625,0.08418465,0.1683693 +0.7875,0.5625,0.1683693,0.08418465 +0.7875,0.5875,0.07499999,0.07499999 +0.7875,0.5875,0.053032994,0.10606605 +0.78749996,0.5875,0.10606599,0.053032935 +0.7875,0.5875,0.094494045,0.094494045 +0.7875,0.5875,0.0668174,0.13363487 +0.78749996,0.5875,0.1336348,0.06681734 +0.78749996,0.5875,0.11905503,0.11905509 +0.7875,0.5875,0.08418465,0.1683693 +0.7875,0.5875,0.1683693,0.08418465 +0.7875,0.61249995,0.07499999,0.07499999 +0.7875,0.61249995,0.053032994,0.10606605 +0.78749996,0.6125,0.10606599,0.053032994 +0.7875,0.61249995,0.094494045,0.094494045 +0.7875,0.61249995,0.0668174,0.13363487 +0.78749996,0.6125,0.1336348,0.0668174 +0.78749996,0.61249995,0.11905503,0.11905509 +0.7875,0.6125,0.08418465,0.1683693 +0.7875,0.6125,0.1683693,0.08418465 +0.7875,0.63750005,0.07499999,0.07499999 +0.7875,0.63750005,0.053032994,0.10606605 +0.78749996,0.6375,0.10606599,0.053032994 +0.7875,0.63750005,0.094494045,0.094494045 +0.7875,0.63750005,0.0668174,0.13363487 +0.78749996,0.6375,0.1336348,0.0668174 +0.78749996,0.63750005,0.11905503,0.11905509 +0.7875,0.6375,0.08418465,0.1683693 +0.7875,0.6375,0.1683693,0.08418465 +0.7875,0.6625,0.07499999,0.07499999 +0.7875,0.6625,0.053032994,0.10606605 +0.78749996,0.6625,0.10606599,0.053032935 +0.7875,0.6625,0.094494045,0.094494045 +0.7875,0.6625,0.0668174,0.13363487 +0.78749996,0.6625,0.1336348,0.06681734 +0.78749996,0.6625,0.11905503,0.11905509 +0.7875,0.6625,0.08418465,0.1683693 +0.7875,0.6625,0.1683693,0.08418465 +0.7875,0.6875,0.07499999,0.07500005 +0.7875,0.6875,0.053032994,0.10606599 +0.78749996,0.6875,0.10606599,0.053032994 +0.7875,0.6875,0.094494045,0.094494104 +0.7875,0.6875,0.0668174,0.1336348 +0.78749996,0.6875,0.1336348,0.0668174 +0.78749996,0.6875,0.11905503,0.11905503 +0.7875,0.6875,0.08418465,0.1683693 +0.7875,0.6875,0.1683693,0.08418465 +0.7875,0.7125,0.07499999,0.07499999 +0.7875,0.7125,0.053032994,0.10606605 +0.78749996,0.7125,0.10606599,0.053032935 +0.7875,0.7125,0.094494045,0.094494045 +0.7875,0.7125,0.0668174,0.13363487 +0.78749996,0.7125,0.1336348,0.06681734 +0.78749996,0.7125,0.11905503,0.11905509 +0.7875,0.7125,0.08418465,0.1683693 +0.7875,0.7125,0.1683693,0.08418465 +0.7875,0.73749995,0.07499999,0.07499999 +0.7875,0.73749995,0.053032994,0.10606605 +0.78749996,0.7375,0.10606599,0.053032994 +0.7875,0.73749995,0.094494045,0.094494045 +0.7875,0.73749995,0.0668174,0.1336348 +0.78749996,0.7375,0.1336348,0.0668174 +0.78749996,0.73749995,0.11905503,0.11905509 +0.7875,0.7375,0.08418465,0.1683693 +0.7875,0.7375,0.1683693,0.08418465 +0.7875,0.76250005,0.07499999,0.07499999 +0.7875,0.7625,0.053032994,0.10606599 +0.78749996,0.7625,0.10606599,0.053032994 +0.7875,0.76250005,0.094494045,0.094494045 +0.7875,0.7625,0.0668174,0.1336348 +0.78749996,0.7625,0.1336348,0.0668174 +0.78749996,0.7625,0.11905503,0.11905503 +0.7875,0.7625,0.08418465,0.1683693 +0.7875,0.7625,0.1683693,0.08418465 +0.7875,0.7875,0.07499999,0.07499999 +0.7875,0.78749996,0.053032994,0.10606599 +0.78749996,0.7875,0.10606599,0.053032994 +0.7875,0.7875,0.094494045,0.094494045 +0.7875,0.78749996,0.0668174,0.1336348 +0.78749996,0.7875,0.1336348,0.0668174 +0.78749996,0.78749996,0.11905503,0.11905503 +0.7875,0.7875,0.08418465,0.1683693 +0.7875,0.7875,0.1683693,0.08418465 +0.7875,0.8125,0.07499999,0.07500005 +0.7875,0.8125,0.053032994,0.10606599 +0.78749996,0.8125,0.10606599,0.053033054 +0.7875,0.8125,0.094494045,0.094494104 +0.7875,0.8125,0.0668174,0.1336348 +0.78749996,0.8125,0.1336348,0.06681746 +0.78749996,0.8125,0.11905503,0.11905503 +0.7875,0.8125,0.08418465,0.1683693 +0.7875,0.8125,0.1683693,0.08418465 +0.7875,0.8375,0.07499999,0.07499999 +0.7875,0.8375,0.053032994,0.10606599 +0.78749996,0.8375,0.10606599,0.053033054 +0.7875,0.8375,0.094494045,0.094494045 +0.7875,0.8375,0.0668174,0.1336348 +0.78749996,0.8375,0.1336348,0.06681746 +0.78749996,0.8375,0.11905503,0.11905503 +0.7875,0.8375,0.08418465,0.1683693 +0.7875,0.8375,0.1683693,0.08418465 +0.7875,0.86249995,0.07499999,0.07499999 +0.7875,0.86249995,0.053032994,0.10606593 +0.78749996,0.86249995,0.10606599,0.053033054 +0.7875,0.86249995,0.094494045,0.094494045 +0.7875,0.86249995,0.0668174,0.1336348 +0.78749996,0.86249995,0.1336348,0.06681746 +0.78749996,0.86249995,0.11905503,0.11905497 +0.7875,0.8625,0.08418465,0.1683693 +0.7875,0.8625,0.1683693,0.08418465 +0.7875,0.88750005,0.07499999,0.07499999 +0.7875,0.88750005,0.053032994,0.10606593 +0.78749996,0.88750005,0.10606599,0.053033054 +0.7875,0.88750005,0.094494045,0.094494045 +0.7875,0.88750005,0.0668174,0.13363475 +0.78749996,0.88750005,0.1336348,0.06681746 +0.78749996,0.88750005,0.11905503,0.11905497 +0.7875,0.8875,0.08418465,0.1683693 +0.7875,0.8875,0.1683693,0.08418465 +0.7875,0.9125,0.07499999,0.07499999 +0.7875,0.9125,0.053032994,0.10606593 +0.78749996,0.9125,0.10606599,0.053033054 +0.7875,0.9125,0.094494045,0.094494045 +0.7875,0.9125,0.0668174,0.13363475 +0.78749996,0.9125,0.1336348,0.06681746 +0.78749996,0.9125,0.11905503,0.11905497 +0.7875,0.9125,0.08418465,0.1683693 +0.7875,0.9125,0.1683693,0.08418465 +0.7875,0.9375,0.07499999,0.07500005 +0.7875,0.9375,0.053032994,0.10606599 +0.78749996,0.9375,0.10606599,0.053033113 +0.7875,0.9375,0.094494045,0.094494104 +0.7875,0.9375,0.0668174,0.1336348 +0.78749996,0.9375,0.1336348,0.06681752 +0.78749996,0.9375,0.11905503,0.11905503 +0.7875,0.9375,0.08418465,0.1683693 +0.7875,0.9375,0.1683693,0.08418465 +0.7875,0.9625,0.07499999,0.07499999 +0.7875,0.9625,0.053032994,0.10606593 +0.78749996,0.9625,0.10606599,0.053033054 +0.7875,0.9625,0.094494045,0.094494045 +0.7875,0.9625,0.0668174,0.13363475 +0.78749996,0.9625,0.1336348,0.06681746 +0.78749996,0.9625,0.11905503,0.11905497 +0.7875,0.9625,0.08418465,0.1683693 +0.7875,0.9625,0.1683693,0.08418465 +0.7875,0.98749995,0.07499999,0.07499999 +0.7875,0.98749995,0.053032994,0.10606593 +0.78749996,0.98749995,0.10606599,0.053033054 +0.7875,0.98749995,0.094494045,0.094494045 +0.7875,0.98749995,0.0668174,0.13363475 +0.78749996,0.98749995,0.1336348,0.06681746 +0.78749996,0.98749995,0.11905503,0.11905497 +0.7875,0.98749995,0.08418465,0.16836923 +0.7875,0.98749995,0.1683693,0.08418459 +0.8125,0.0125,0.07500005,0.075 +0.8125,0.012499997,0.053033054,0.10606602 +0.8125,0.012499999,0.10606599,0.05303301 +0.8125,0.012499999,0.094494104,0.09449408 +0.8125,0.012500001,0.06681746,0.1336348 +0.8125,0.012499999,0.1336348,0.0668174 +0.8125,0.012500001,0.11905503,0.11905508 +0.8125,0.012499999,0.08418465,0.1683693 +0.8125,0.012500002,0.1683693,0.084184654 +0.8125,0.0375,0.07500005,0.075 +0.8125,0.037499998,0.053033054,0.10606601 +0.8125,0.0375,0.10606599,0.05303301 +0.8125,0.0375,0.094494104,0.094494075 +0.8125,0.0375,0.06681746,0.1336348 +0.8125,0.0375,0.1336348,0.0668174 +0.8125,0.0375,0.11905503,0.11905508 +0.8125,0.0375,0.08418465,0.16836931 +0.8125,0.0375,0.1683693,0.08418466 +0.8125,0.0625,0.07500005,0.075 +0.8125,0.0625,0.053033054,0.10606602 +0.8125,0.0625,0.10606599,0.05303301 +0.8125,0.0625,0.094494104,0.094494075 +0.8125,0.0625,0.06681746,0.1336348 +0.8125,0.0625,0.1336348,0.0668174 +0.8125,0.0625,0.11905503,0.11905508 +0.8125,0.0625,0.08418465,0.16836932 +0.8125,0.0625,0.1683693,0.08418465 +0.8125,0.0875,0.07500005,0.075 +0.8125,0.08749999,0.053033054,0.10606601 +0.8125,0.087500006,0.10606599,0.053033013 +0.8125,0.087500006,0.094494104,0.09449408 +0.8125,0.087500006,0.06681746,0.1336348 +0.8125,0.0875,0.1336348,0.0668174 +0.8125,0.0875,0.11905503,0.11905508 +0.8125,0.0875,0.08418465,0.16836931 +0.8125,0.087500006,0.1683693,0.084184654 +0.8125,0.112500004,0.07500005,0.075 +0.8125,0.1125,0.053033054,0.10606601 +0.8125,0.112500004,0.10606599,0.05303301 +0.8125,0.1125,0.094494104,0.094494075 +0.8125,0.1125,0.06681746,0.1336348 +0.8125,0.1125,0.1336348,0.0668174 +0.8125,0.1125,0.11905503,0.119055085 +0.8125,0.112500004,0.08418465,0.16836931 +0.8125,0.1125,0.1683693,0.08418465 +0.8125,0.1375,0.07500005,0.074999996 +0.8125,0.1375,0.053033054,0.10606602 +0.8125,0.1375,0.10606599,0.053033024 +0.8125,0.1375,0.094494104,0.09449408 +0.8125,0.1375,0.06681746,0.1336348 +0.8125,0.1375,0.1336348,0.0668174 +0.8125,0.13749999,0.11905503,0.11905508 +0.8125,0.1375,0.08418465,0.1683693 +0.8125,0.1375,0.1683693,0.084184654 +0.8125,0.1625,0.07500005,0.075 +0.8125,0.16250001,0.053033054,0.106066026 +0.8125,0.1625,0.10606599,0.05303301 +0.8125,0.1625,0.094494104,0.094494075 +0.8125,0.1625,0.06681746,0.1336348 +0.8125,0.1625,0.1336348,0.0668174 +0.8125,0.1625,0.11905503,0.11905508 +0.8125,0.1625,0.08418465,0.1683693 +0.8125,0.1625,0.1683693,0.08418464 +0.8125,0.1875,0.07500005,0.07499999 +0.8125,0.1875,0.053033054,0.10606603 +0.8125,0.1875,0.10606599,0.053033024 +0.8125,0.1875,0.094494104,0.09449406 +0.8125,0.1875,0.06681746,0.1336348 +0.8125,0.1875,0.1336348,0.06681742 +0.8125,0.1875,0.11905503,0.11905509 +0.8125,0.1875,0.08418465,0.16836931 +0.8125,0.1875,0.1683693,0.08418465 +0.8125,0.2125,0.07500005,0.075 +0.8125,0.2125,0.053033054,0.10606603 +0.8125,0.2125,0.10606599,0.05303301 +0.8125,0.21249999,0.094494104,0.094494075 +0.8125,0.2125,0.06681746,0.1336348 +0.8125,0.2125,0.1336348,0.0668174 +0.8125,0.2125,0.11905503,0.11905509 +0.8125,0.2125,0.08418465,0.16836931 +0.8125,0.2125,0.1683693,0.08418465 +0.8125,0.23750001,0.07500005,0.075 +0.8125,0.2375,0.053033054,0.10606602 +0.8125,0.2375,0.10606599,0.053033024 +0.8125,0.2375,0.094494104,0.094494075 +0.8125,0.23750001,0.06681746,0.13363482 +0.8125,0.2375,0.1336348,0.06681743 +0.8125,0.2375,0.11905503,0.11905506 +0.8125,0.2375,0.08418465,0.16836932 +0.8125,0.23750001,0.1683693,0.08418466 +0.8125,0.2625,0.07500005,0.07500002 +0.8125,0.2625,0.053033054,0.10606603 +0.8125,0.2625,0.10606599,0.053033024 +0.8125,0.2625,0.094494104,0.094494075 +0.8125,0.2625,0.06681746,0.13363479 +0.8125,0.2625,0.1336348,0.06681743 +0.8125,0.2625,0.11905503,0.11905508 +0.8125,0.2625,0.08418465,0.1683693 +0.8125,0.2625,0.1683693,0.08418463 +0.8125,0.2875,0.07500005,0.07499999 +0.8125,0.2875,0.053033054,0.10606603 +0.8125,0.28750002,0.10606599,0.053033024 +0.8125,0.2875,0.094494104,0.094494045 +0.8125,0.2875,0.06681746,0.1336348 +0.8125,0.28750002,0.1336348,0.06681743 +0.8125,0.2875,0.11905503,0.11905508 +0.8125,0.2875,0.08418465,0.1683693 +0.8125,0.2875,0.1683693,0.08418465 +0.8125,0.3125,0.07500005,0.07499999 +0.8125,0.3125,0.053033054,0.10606605 +0.8125,0.3125,0.10606599,0.053032994 +0.8125,0.3125,0.094494104,0.094494045 +0.8125,0.3125,0.06681746,0.1336348 +0.8125,0.3125,0.1336348,0.0668174 +0.8125,0.3125,0.11905503,0.11905509 +0.8125,0.3125,0.08418465,0.1683693 +0.8125,0.3125,0.1683693,0.08418465 +0.8125,0.3375,0.07500005,0.07499999 +0.8125,0.3375,0.053033054,0.10606605 +0.8125,0.33749998,0.10606599,0.053033024 +0.8125,0.3375,0.094494104,0.094494045 +0.8125,0.33750004,0.06681746,0.13363484 +0.8125,0.33749998,0.1336348,0.06681743 +0.8125,0.3375,0.11905503,0.11905509 +0.8125,0.3375,0.08418465,0.1683693 +0.8125,0.3375,0.1683693,0.08418465 +0.8125,0.3625,0.07500005,0.07500002 +0.8125,0.3625,0.053033054,0.10606602 +0.8125,0.3625,0.10606599,0.053033024 +0.8125,0.3625,0.094494104,0.094494075 +0.8125,0.3625,0.06681746,0.1336348 +0.8125,0.3625,0.1336348,0.06681743 +0.8125,0.3625,0.11905503,0.11905506 +0.8125,0.3625,0.08418465,0.1683693 +0.8125,0.3625,0.1683693,0.08418465 +0.8125,0.3875,0.07500005,0.07500002 +0.8125,0.3875,0.053033054,0.10606602 +0.8125,0.3875,0.10606599,0.053032994 +0.8125,0.3875,0.094494104,0.094494075 +0.8125,0.3875,0.06681746,0.13363484 +0.8125,0.3875,0.1336348,0.0668174 +0.8125,0.3875,0.11905503,0.11905506 +0.8125,0.3875,0.08418465,0.1683693 +0.8125,0.3875,0.1683693,0.08418465 +0.8125,0.4125,0.07500005,0.07499999 +0.8125,0.4125,0.053033054,0.10606605 +0.8125,0.4125,0.10606599,0.053032994 +0.8125,0.4125,0.094494104,0.094494045 +0.8125,0.41250002,0.06681746,0.13363484 +0.8125,0.4125,0.1336348,0.0668174 +0.8125,0.4125,0.11905503,0.11905509 +0.8125,0.4125,0.08418465,0.1683693 +0.8125,0.4125,0.1683693,0.08418465 +0.8125,0.4375,0.07500005,0.07499999 +0.8125,0.4375,0.053033054,0.10606605 +0.8125,0.4375,0.10606599,0.053032994 +0.8125,0.4375,0.094494104,0.094494045 +0.8125,0.4375,0.06681746,0.1336348 +0.8125,0.4375,0.1336348,0.0668174 +0.8125,0.4375,0.11905503,0.11905509 +0.8125,0.4375,0.08418465,0.1683693 +0.8125,0.4375,0.1683693,0.08418465 +0.8125,0.4625,0.07500005,0.07499999 +0.8125,0.4625,0.053033054,0.10606605 +0.8125,0.46249998,0.10606599,0.053032964 +0.8125,0.4625,0.094494104,0.094494045 +0.8125,0.46250004,0.06681746,0.13363484 +0.8125,0.46249998,0.1336348,0.06681737 +0.8125,0.4625,0.11905503,0.11905509 +0.8125,0.46249998,0.08418465,0.16836926 +0.8125,0.46249998,0.1683693,0.08418462 +0.8125,0.48749998,0.07500005,0.07499999 +0.8125,0.4875,0.053033054,0.10606602 +0.8125,0.4875,0.10606599,0.053032994 +0.8125,0.48749998,0.094494104,0.094494045 +0.8125,0.4875,0.06681746,0.13363484 +0.8125,0.4875,0.1336348,0.0668174 +0.8125,0.4875,0.11905503,0.11905506 +0.8125,0.4875,0.08418465,0.1683693 +0.8125,0.4875,0.1683693,0.08418465 +0.8125,0.5125,0.07500005,0.07500002 +0.8125,0.51250005,0.053033054,0.10606605 +0.8125,0.5125,0.10606599,0.053032964 +0.8125,0.5125,0.094494104,0.094494075 +0.8125,0.51250005,0.06681746,0.13363487 +0.8125,0.5125,0.1336348,0.06681737 +0.8125,0.51250005,0.11905503,0.11905509 +0.8125,0.5125,0.08418465,0.1683693 +0.8125,0.5125,0.1683693,0.08418465 +0.8125,0.5375,0.07500005,0.07499999 +0.8125,0.5375,0.053033054,0.10606605 +0.8125,0.5375,0.10606599,0.053032935 +0.8125,0.5375,0.094494104,0.094494045 +0.8125,0.5375,0.06681746,0.13363487 +0.8125,0.5375,0.1336348,0.06681734 +0.8125,0.5375,0.11905503,0.11905509 +0.8125,0.5375,0.08418465,0.16836932 +0.8125,0.5375,0.1683693,0.08418468 +0.8125,0.5625,0.07500005,0.07500005 +0.8125,0.5625,0.053033054,0.10606599 +0.8125,0.5625,0.10606599,0.053032994 +0.8125,0.5625,0.094494104,0.094494104 +0.8125,0.5625,0.06681746,0.13363484 +0.8125,0.5625,0.1336348,0.0668174 +0.8125,0.5625,0.11905503,0.11905503 +0.8125,0.5625,0.08418465,0.1683693 +0.8125,0.5625,0.1683693,0.08418465 +0.8125,0.5875,0.07500005,0.07499999 +0.8125,0.5875,0.053033054,0.10606605 +0.8125,0.5875,0.10606599,0.053032935 +0.8125,0.5875,0.094494104,0.094494045 +0.8125,0.5875,0.06681746,0.13363487 +0.8125,0.5875,0.1336348,0.06681734 +0.8125,0.5875,0.11905503,0.11905509 +0.8125,0.5875,0.08418465,0.1683693 +0.8125,0.5875,0.1683693,0.08418465 +0.8125,0.61249995,0.07500005,0.07499999 +0.8125,0.61249995,0.053033054,0.10606605 +0.8125,0.6125,0.10606599,0.053032994 +0.8125,0.61249995,0.094494104,0.094494045 +0.8125,0.61249995,0.06681746,0.13363487 +0.8125,0.6125,0.1336348,0.0668174 +0.8125,0.61249995,0.11905503,0.11905509 +0.8125,0.6125,0.08418465,0.1683693 +0.8125,0.6125,0.1683693,0.08418465 +0.8125,0.63750005,0.07500005,0.07499999 +0.8125,0.63750005,0.053033054,0.10606605 +0.8125,0.6375,0.10606599,0.053032994 +0.8125,0.63750005,0.094494104,0.094494045 +0.8125,0.63750005,0.06681746,0.13363487 +0.8125,0.6375,0.1336348,0.0668174 +0.8125,0.63750005,0.11905503,0.11905509 +0.8125,0.6375,0.08418465,0.1683693 +0.8125,0.6375,0.1683693,0.08418465 +0.8125,0.6625,0.07500005,0.07499999 +0.8125,0.6625,0.053033054,0.10606605 +0.8125,0.6625,0.10606599,0.053032935 +0.8125,0.6625,0.094494104,0.094494045 +0.8125,0.6625,0.06681746,0.13363487 +0.8125,0.6625,0.1336348,0.06681734 +0.8125,0.6625,0.11905503,0.11905509 +0.8125,0.6625,0.08418465,0.1683693 +0.8125,0.6625,0.1683693,0.08418465 +0.8125,0.6875,0.07500005,0.07500005 +0.8125,0.6875,0.053033054,0.10606599 +0.8125,0.6875,0.10606599,0.053032994 +0.8125,0.6875,0.094494104,0.094494104 +0.8125,0.6875,0.06681746,0.1336348 +0.8125,0.6875,0.1336348,0.0668174 +0.8125,0.6875,0.11905503,0.11905503 +0.8125,0.6875,0.08418465,0.1683693 +0.8125,0.6875,0.1683693,0.08418465 +0.8125,0.7125,0.07500005,0.07499999 +0.8125,0.7125,0.053033054,0.10606605 +0.8125,0.7125,0.10606599,0.053032935 +0.8125,0.7125,0.094494104,0.094494045 +0.8125,0.7125,0.06681746,0.13363487 +0.8125,0.7125,0.1336348,0.06681734 +0.8125,0.7125,0.11905503,0.11905509 +0.8125,0.7125,0.08418465,0.1683693 +0.8125,0.7125,0.1683693,0.08418465 +0.8125,0.73749995,0.07500005,0.07499999 +0.8125,0.73749995,0.053033054,0.10606605 +0.8125,0.7375,0.10606599,0.053032994 +0.8125,0.73749995,0.094494104,0.094494045 +0.8125,0.73749995,0.06681746,0.1336348 +0.8125,0.7375,0.1336348,0.0668174 +0.8125,0.73749995,0.11905503,0.11905509 +0.8125,0.7375,0.08418465,0.1683693 +0.8125,0.7375,0.1683693,0.08418465 +0.8125,0.76250005,0.07500005,0.07499999 +0.8125,0.7625,0.053033054,0.10606599 +0.8125,0.7625,0.10606599,0.053032994 +0.8125,0.76250005,0.094494104,0.094494045 +0.8125,0.7625,0.06681746,0.1336348 +0.8125,0.7625,0.1336348,0.0668174 +0.8125,0.7625,0.11905503,0.11905503 +0.8125,0.7625,0.08418465,0.1683693 +0.8125,0.7625,0.1683693,0.08418465 +0.8125,0.7875,0.07500005,0.07499999 +0.8125,0.78749996,0.053033054,0.10606599 +0.8125,0.7875,0.10606599,0.053032994 +0.8125,0.7875,0.094494104,0.094494045 +0.8125,0.78749996,0.06681746,0.1336348 +0.8125,0.7875,0.1336348,0.0668174 +0.8125,0.78749996,0.11905503,0.11905503 +0.8125,0.7875,0.08418465,0.1683693 +0.8125,0.7875,0.1683693,0.08418465 +0.8125,0.8125,0.07500005,0.07500005 +0.8125,0.8125,0.053033054,0.10606599 +0.8125,0.8125,0.10606599,0.053033054 +0.8125,0.8125,0.094494104,0.094494104 +0.8125,0.8125,0.06681746,0.1336348 +0.8125,0.8125,0.1336348,0.06681746 +0.8125,0.8125,0.11905503,0.11905503 +0.8125,0.8125,0.08418465,0.1683693 +0.8125,0.8125,0.1683693,0.08418465 +0.8125,0.8375,0.07500005,0.07499999 +0.8125,0.8375,0.053033054,0.10606599 +0.8125,0.8375,0.10606599,0.053033054 +0.8125,0.8375,0.094494104,0.094494045 +0.8125,0.8375,0.06681746,0.1336348 +0.8125,0.8375,0.1336348,0.06681746 +0.8125,0.8375,0.11905503,0.11905503 +0.8125,0.8375,0.08418465,0.1683693 +0.8125,0.8375,0.1683693,0.08418465 +0.8125,0.86249995,0.07500005,0.07499999 +0.8125,0.86249995,0.053033054,0.10606593 +0.8125,0.86249995,0.10606599,0.053033054 +0.8125,0.86249995,0.094494104,0.094494045 +0.8125,0.86249995,0.06681746,0.1336348 +0.8125,0.86249995,0.1336348,0.06681746 +0.8125,0.86249995,0.11905503,0.11905497 +0.8125,0.8625,0.08418465,0.1683693 +0.8125,0.8625,0.1683693,0.08418465 +0.8125,0.88750005,0.07500005,0.07499999 +0.8125,0.88750005,0.053033054,0.10606593 +0.8125,0.88750005,0.10606599,0.053033054 +0.8125,0.88750005,0.094494104,0.094494045 +0.8125,0.88750005,0.06681746,0.13363475 +0.8125,0.88750005,0.1336348,0.06681746 +0.8125,0.88750005,0.11905503,0.11905497 +0.8125,0.8875,0.08418465,0.1683693 +0.8125,0.8875,0.1683693,0.08418465 +0.8125,0.9125,0.07500005,0.07499999 +0.8125,0.9125,0.053033054,0.10606593 +0.8125,0.9125,0.10606599,0.053033054 +0.8125,0.9125,0.094494104,0.094494045 +0.8125,0.9125,0.06681746,0.13363475 +0.8125,0.9125,0.1336348,0.06681746 +0.8125,0.9125,0.11905503,0.11905497 +0.8125,0.9125,0.08418465,0.1683693 +0.8125,0.9125,0.1683693,0.08418465 +0.8125,0.9375,0.07500005,0.07500005 +0.8125,0.9375,0.053033054,0.10606599 +0.8125,0.9375,0.10606599,0.053033113 +0.8125,0.9375,0.094494104,0.094494104 +0.8125,0.9375,0.06681746,0.1336348 +0.8125,0.9375,0.1336348,0.06681752 +0.8125,0.9375,0.11905503,0.11905503 +0.8125,0.9375,0.08418465,0.1683693 +0.8125,0.9375,0.1683693,0.08418465 +0.8125,0.9625,0.07500005,0.07499999 +0.8125,0.9625,0.053033054,0.10606593 +0.8125,0.9625,0.10606599,0.053033054 +0.8125,0.9625,0.094494104,0.094494045 +0.8125,0.9625,0.06681746,0.13363475 +0.8125,0.9625,0.1336348,0.06681746 +0.8125,0.9625,0.11905503,0.11905497 +0.8125,0.9625,0.08418465,0.1683693 +0.8125,0.9625,0.1683693,0.08418465 +0.8125,0.98749995,0.07500005,0.07499999 +0.8125,0.98749995,0.053033054,0.10606593 +0.8125,0.98749995,0.10606599,0.053033054 +0.8125,0.98749995,0.094494104,0.094494045 +0.8125,0.98749995,0.06681746,0.13363475 +0.8125,0.98749995,0.1336348,0.06681746 +0.8125,0.98749995,0.11905503,0.11905497 +0.8125,0.98749995,0.08418465,0.16836923 +0.8125,0.98749995,0.1683693,0.08418459 +0.8375,0.0125,0.07499999,0.075 +0.8375,0.012499997,0.053033054,0.10606602 +0.8375,0.012499999,0.10606599,0.05303301 +0.8375,0.012499999,0.094494045,0.09449408 +0.8375,0.012500001,0.06681746,0.1336348 +0.8375,0.012499999,0.1336348,0.0668174 +0.8375,0.012500001,0.11905503,0.11905508 +0.8375,0.012499999,0.08418465,0.1683693 +0.8375,0.012500002,0.1683693,0.084184654 +0.8375,0.0375,0.07499999,0.075 +0.8375,0.037499998,0.053033054,0.10606601 +0.8375,0.0375,0.10606599,0.05303301 +0.8375,0.0375,0.094494045,0.094494075 +0.8375,0.0375,0.06681746,0.1336348 +0.8375,0.0375,0.1336348,0.0668174 +0.8375,0.0375,0.11905503,0.11905508 +0.8375,0.0375,0.08418465,0.16836931 +0.8375,0.0375,0.1683693,0.08418466 +0.8375,0.0625,0.07499999,0.075 +0.8375,0.0625,0.053033054,0.10606602 +0.8375,0.0625,0.10606599,0.05303301 +0.8375,0.0625,0.094494045,0.094494075 +0.8375,0.0625,0.06681746,0.1336348 +0.8375,0.0625,0.1336348,0.0668174 +0.8375,0.0625,0.11905503,0.11905508 +0.8375,0.0625,0.08418465,0.16836932 +0.8375,0.0625,0.1683693,0.08418465 +0.8375,0.0875,0.07499999,0.075 +0.8375,0.08749999,0.053033054,0.10606601 +0.8375,0.087500006,0.10606599,0.053033013 +0.8375,0.087500006,0.094494045,0.09449408 +0.8375,0.087500006,0.06681746,0.1336348 +0.8375,0.0875,0.1336348,0.0668174 +0.8375,0.0875,0.11905503,0.11905508 +0.8375,0.0875,0.08418465,0.16836931 +0.8375,0.087500006,0.1683693,0.084184654 +0.8375,0.112500004,0.07499999,0.075 +0.8375,0.1125,0.053033054,0.10606601 +0.8375,0.112500004,0.10606599,0.05303301 +0.8375,0.1125,0.094494045,0.094494075 +0.8375,0.1125,0.06681746,0.1336348 +0.8375,0.1125,0.1336348,0.0668174 +0.8375,0.1125,0.11905503,0.119055085 +0.8375,0.112500004,0.08418465,0.16836931 +0.8375,0.1125,0.1683693,0.08418465 +0.8375,0.1375,0.07499999,0.074999996 +0.8375,0.1375,0.053033054,0.10606602 +0.8375,0.1375,0.10606599,0.053033024 +0.8375,0.1375,0.094494045,0.09449408 +0.8375,0.1375,0.06681746,0.1336348 +0.8375,0.1375,0.1336348,0.0668174 +0.8375,0.13749999,0.11905503,0.11905508 +0.8375,0.1375,0.08418465,0.1683693 +0.8375,0.1375,0.1683693,0.084184654 +0.8375,0.1625,0.07499999,0.075 +0.8375,0.16250001,0.053033054,0.106066026 +0.8375,0.1625,0.10606599,0.05303301 +0.8375,0.1625,0.094494045,0.094494075 +0.8375,0.1625,0.06681746,0.1336348 +0.8375,0.1625,0.1336348,0.0668174 +0.8375,0.1625,0.11905503,0.11905508 +0.8375,0.1625,0.08418465,0.1683693 +0.8375,0.1625,0.1683693,0.08418464 +0.8375,0.1875,0.07499999,0.07499999 +0.8375,0.1875,0.053033054,0.10606603 +0.8375,0.1875,0.10606599,0.053033024 +0.8375,0.1875,0.094494045,0.09449406 +0.8375,0.1875,0.06681746,0.1336348 +0.8375,0.1875,0.1336348,0.06681742 +0.8375,0.1875,0.11905503,0.11905509 +0.8375,0.1875,0.08418465,0.16836931 +0.8375,0.1875,0.1683693,0.08418465 +0.8375,0.2125,0.07499999,0.075 +0.8375,0.2125,0.053033054,0.10606603 +0.8375,0.2125,0.10606599,0.05303301 +0.8375,0.21249999,0.094494045,0.094494075 +0.8375,0.2125,0.06681746,0.1336348 +0.8375,0.2125,0.1336348,0.0668174 +0.8375,0.2125,0.11905503,0.11905509 +0.8375,0.2125,0.08418465,0.16836931 +0.8375,0.2125,0.1683693,0.08418465 +0.8375,0.23750001,0.07499999,0.075 +0.8375,0.2375,0.053033054,0.10606602 +0.8375,0.2375,0.10606599,0.053033024 +0.8375,0.2375,0.094494045,0.094494075 +0.8375,0.23750001,0.06681746,0.13363482 +0.8375,0.2375,0.1336348,0.06681743 +0.8375,0.2375,0.11905503,0.11905506 +0.8375,0.2375,0.08418465,0.16836932 +0.8375,0.23750001,0.1683693,0.08418466 +0.8375,0.2625,0.07499999,0.07500002 +0.8375,0.2625,0.053033054,0.10606603 +0.8375,0.2625,0.10606599,0.053033024 +0.8375,0.2625,0.094494045,0.094494075 +0.8375,0.2625,0.06681746,0.13363479 +0.8375,0.2625,0.1336348,0.06681743 +0.8375,0.2625,0.11905503,0.11905508 +0.8375,0.2625,0.08418465,0.1683693 +0.8375,0.2625,0.1683693,0.08418463 +0.8375,0.2875,0.07499999,0.07499999 +0.8375,0.2875,0.053033054,0.10606603 +0.8375,0.28750002,0.10606599,0.053033024 +0.8375,0.2875,0.094494045,0.094494045 +0.8375,0.2875,0.06681746,0.1336348 +0.8375,0.28750002,0.1336348,0.06681743 +0.8375,0.2875,0.11905503,0.11905508 +0.8375,0.2875,0.08418465,0.1683693 +0.8375,0.2875,0.1683693,0.08418465 +0.8375,0.3125,0.07499999,0.07499999 +0.8375,0.3125,0.053033054,0.10606605 +0.8375,0.3125,0.10606599,0.053032994 +0.8375,0.3125,0.094494045,0.094494045 +0.8375,0.3125,0.06681746,0.1336348 +0.8375,0.3125,0.1336348,0.0668174 +0.8375,0.3125,0.11905503,0.11905509 +0.8375,0.3125,0.08418465,0.1683693 +0.8375,0.3125,0.1683693,0.08418465 +0.8375,0.3375,0.07499999,0.07499999 +0.8375,0.3375,0.053033054,0.10606605 +0.8375,0.33749998,0.10606599,0.053033024 +0.8375,0.3375,0.094494045,0.094494045 +0.8375,0.33750004,0.06681746,0.13363484 +0.8375,0.33749998,0.1336348,0.06681743 +0.8375,0.3375,0.11905503,0.11905509 +0.8375,0.3375,0.08418465,0.1683693 +0.8375,0.3375,0.1683693,0.08418465 +0.8375,0.3625,0.07499999,0.07500002 +0.8375,0.3625,0.053033054,0.10606602 +0.8375,0.3625,0.10606599,0.053033024 +0.8375,0.3625,0.094494045,0.094494075 +0.8375,0.3625,0.06681746,0.1336348 +0.8375,0.3625,0.1336348,0.06681743 +0.8375,0.3625,0.11905503,0.11905506 +0.8375,0.3625,0.08418465,0.1683693 +0.8375,0.3625,0.1683693,0.08418465 +0.8375,0.3875,0.07499999,0.07500002 +0.8375,0.3875,0.053033054,0.10606602 +0.8375,0.3875,0.10606599,0.053032994 +0.8375,0.3875,0.094494045,0.094494075 +0.8375,0.3875,0.06681746,0.13363484 +0.8375,0.3875,0.1336348,0.0668174 +0.8375,0.3875,0.11905503,0.11905506 +0.8375,0.3875,0.08418465,0.1683693 +0.8375,0.3875,0.1683693,0.08418465 +0.8375,0.4125,0.07499999,0.07499999 +0.8375,0.4125,0.053033054,0.10606605 +0.8375,0.4125,0.10606599,0.053032994 +0.8375,0.4125,0.094494045,0.094494045 +0.8375,0.41250002,0.06681746,0.13363484 +0.8375,0.4125,0.1336348,0.0668174 +0.8375,0.4125,0.11905503,0.11905509 +0.8375,0.4125,0.08418465,0.1683693 +0.8375,0.4125,0.1683693,0.08418465 +0.8375,0.4375,0.07499999,0.07499999 +0.8375,0.4375,0.053033054,0.10606605 +0.8375,0.4375,0.10606599,0.053032994 +0.8375,0.4375,0.094494045,0.094494045 +0.8375,0.4375,0.06681746,0.1336348 +0.8375,0.4375,0.1336348,0.0668174 +0.8375,0.4375,0.11905503,0.11905509 +0.8375,0.4375,0.08418465,0.1683693 +0.8375,0.4375,0.1683693,0.08418465 +0.8375,0.4625,0.07499999,0.07499999 +0.8375,0.4625,0.053033054,0.10606605 +0.8375,0.46249998,0.10606599,0.053032964 +0.8375,0.4625,0.094494045,0.094494045 +0.8375,0.46250004,0.06681746,0.13363484 +0.8375,0.46249998,0.1336348,0.06681737 +0.8375,0.4625,0.11905503,0.11905509 +0.8375,0.46249998,0.08418465,0.16836926 +0.8375,0.46249998,0.1683693,0.08418462 +0.8375,0.48749998,0.07499999,0.07499999 +0.8375,0.4875,0.053033054,0.10606602 +0.8375,0.4875,0.10606599,0.053032994 +0.8375,0.48749998,0.094494045,0.094494045 +0.8375,0.4875,0.06681746,0.13363484 +0.8375,0.4875,0.1336348,0.0668174 +0.8375,0.4875,0.11905503,0.11905506 +0.8375,0.4875,0.08418465,0.1683693 +0.8375,0.4875,0.1683693,0.08418465 +0.8375,0.5125,0.07499999,0.07500002 +0.8375,0.51250005,0.053033054,0.10606605 +0.8375,0.5125,0.10606599,0.053032964 +0.8375,0.5125,0.094494045,0.094494075 +0.8375,0.51250005,0.06681746,0.13363487 +0.8375,0.5125,0.1336348,0.06681737 +0.8375,0.51250005,0.11905503,0.11905509 +0.8375,0.5125,0.08418465,0.1683693 +0.8375,0.5125,0.1683693,0.08418465 +0.8375,0.5375,0.07499999,0.07499999 +0.8375,0.5375,0.053033054,0.10606605 +0.8375,0.5375,0.10606599,0.053032935 +0.8375,0.5375,0.094494045,0.094494045 +0.8375,0.5375,0.06681746,0.13363487 +0.8375,0.5375,0.1336348,0.06681734 +0.8375,0.5375,0.11905503,0.11905509 +0.8375,0.5375,0.08418465,0.16836932 +0.8375,0.5375,0.1683693,0.08418468 +0.8375,0.5625,0.07499999,0.07500005 +0.8375,0.5625,0.053033054,0.10606599 +0.8375,0.5625,0.10606599,0.053032994 +0.8375,0.5625,0.094494045,0.094494104 +0.8375,0.5625,0.06681746,0.13363484 +0.8375,0.5625,0.1336348,0.0668174 +0.8375,0.5625,0.11905503,0.11905503 +0.8375,0.5625,0.08418465,0.1683693 +0.8375,0.5625,0.1683693,0.08418465 +0.8375,0.5875,0.07499999,0.07499999 +0.8375,0.5875,0.053033054,0.10606605 +0.8375,0.5875,0.10606599,0.053032935 +0.8375,0.5875,0.094494045,0.094494045 +0.8375,0.5875,0.06681746,0.13363487 +0.8375,0.5875,0.1336348,0.06681734 +0.8375,0.5875,0.11905503,0.11905509 +0.8375,0.5875,0.08418465,0.1683693 +0.8375,0.5875,0.1683693,0.08418465 +0.8375,0.61249995,0.07499999,0.07499999 +0.8375,0.61249995,0.053033054,0.10606605 +0.8375,0.6125,0.10606599,0.053032994 +0.8375,0.61249995,0.094494045,0.094494045 +0.8375,0.61249995,0.06681746,0.13363487 +0.8375,0.6125,0.1336348,0.0668174 +0.8375,0.61249995,0.11905503,0.11905509 +0.8375,0.6125,0.08418465,0.1683693 +0.8375,0.6125,0.1683693,0.08418465 +0.8375,0.63750005,0.07499999,0.07499999 +0.8375,0.63750005,0.053033054,0.10606605 +0.8375,0.6375,0.10606599,0.053032994 +0.8375,0.63750005,0.094494045,0.094494045 +0.8375,0.63750005,0.06681746,0.13363487 +0.8375,0.6375,0.1336348,0.0668174 +0.8375,0.63750005,0.11905503,0.11905509 +0.8375,0.6375,0.08418465,0.1683693 +0.8375,0.6375,0.1683693,0.08418465 +0.8375,0.6625,0.07499999,0.07499999 +0.8375,0.6625,0.053033054,0.10606605 +0.8375,0.6625,0.10606599,0.053032935 +0.8375,0.6625,0.094494045,0.094494045 +0.8375,0.6625,0.06681746,0.13363487 +0.8375,0.6625,0.1336348,0.06681734 +0.8375,0.6625,0.11905503,0.11905509 +0.8375,0.6625,0.08418465,0.1683693 +0.8375,0.6625,0.1683693,0.08418465 +0.8375,0.6875,0.07499999,0.07500005 +0.8375,0.6875,0.053033054,0.10606599 +0.8375,0.6875,0.10606599,0.053032994 +0.8375,0.6875,0.094494045,0.094494104 +0.8375,0.6875,0.06681746,0.1336348 +0.8375,0.6875,0.1336348,0.0668174 +0.8375,0.6875,0.11905503,0.11905503 +0.8375,0.6875,0.08418465,0.1683693 +0.8375,0.6875,0.1683693,0.08418465 +0.8375,0.7125,0.07499999,0.07499999 +0.8375,0.7125,0.053033054,0.10606605 +0.8375,0.7125,0.10606599,0.053032935 +0.8375,0.7125,0.094494045,0.094494045 +0.8375,0.7125,0.06681746,0.13363487 +0.8375,0.7125,0.1336348,0.06681734 +0.8375,0.7125,0.11905503,0.11905509 +0.8375,0.7125,0.08418465,0.1683693 +0.8375,0.7125,0.1683693,0.08418465 +0.8375,0.73749995,0.07499999,0.07499999 +0.8375,0.73749995,0.053033054,0.10606605 +0.8375,0.7375,0.10606599,0.053032994 +0.8375,0.73749995,0.094494045,0.094494045 +0.8375,0.73749995,0.06681746,0.1336348 +0.8375,0.7375,0.1336348,0.0668174 +0.8375,0.73749995,0.11905503,0.11905509 +0.8375,0.7375,0.08418465,0.1683693 +0.8375,0.7375,0.1683693,0.08418465 +0.8375,0.76250005,0.07499999,0.07499999 +0.8375,0.7625,0.053033054,0.10606599 +0.8375,0.7625,0.10606599,0.053032994 +0.8375,0.76250005,0.094494045,0.094494045 +0.8375,0.7625,0.06681746,0.1336348 +0.8375,0.7625,0.1336348,0.0668174 +0.8375,0.7625,0.11905503,0.11905503 +0.8375,0.7625,0.08418465,0.1683693 +0.8375,0.7625,0.1683693,0.08418465 +0.8375,0.7875,0.07499999,0.07499999 +0.8375,0.78749996,0.053033054,0.10606599 +0.8375,0.7875,0.10606599,0.053032994 +0.8375,0.7875,0.094494045,0.094494045 +0.8375,0.78749996,0.06681746,0.1336348 +0.8375,0.7875,0.1336348,0.0668174 +0.8375,0.78749996,0.11905503,0.11905503 +0.8375,0.7875,0.08418465,0.1683693 +0.8375,0.7875,0.1683693,0.08418465 +0.8375,0.8125,0.07499999,0.07500005 +0.8375,0.8125,0.053033054,0.10606599 +0.8375,0.8125,0.10606599,0.053033054 +0.8375,0.8125,0.094494045,0.094494104 +0.8375,0.8125,0.06681746,0.1336348 +0.8375,0.8125,0.1336348,0.06681746 +0.8375,0.8125,0.11905503,0.11905503 +0.8375,0.8125,0.08418465,0.1683693 +0.8375,0.8125,0.1683693,0.08418465 +0.8375,0.8375,0.07499999,0.07499999 +0.8375,0.8375,0.053033054,0.10606599 +0.8375,0.8375,0.10606599,0.053033054 +0.8375,0.8375,0.094494045,0.094494045 +0.8375,0.8375,0.06681746,0.1336348 +0.8375,0.8375,0.1336348,0.06681746 +0.8375,0.8375,0.11905503,0.11905503 +0.8375,0.8375,0.08418465,0.1683693 +0.8375,0.8375,0.1683693,0.08418465 +0.8375,0.86249995,0.07499999,0.07499999 +0.8375,0.86249995,0.053033054,0.10606593 +0.8375,0.86249995,0.10606599,0.053033054 +0.8375,0.86249995,0.094494045,0.094494045 +0.8375,0.86249995,0.06681746,0.1336348 +0.8375,0.86249995,0.1336348,0.06681746 +0.8375,0.86249995,0.11905503,0.11905497 +0.8375,0.8625,0.08418465,0.1683693 +0.8375,0.8625,0.1683693,0.08418465 +0.8375,0.88750005,0.07499999,0.07499999 +0.8375,0.88750005,0.053033054,0.10606593 +0.8375,0.88750005,0.10606599,0.053033054 +0.8375,0.88750005,0.094494045,0.094494045 +0.8375,0.88750005,0.06681746,0.13363475 +0.8375,0.88750005,0.1336348,0.06681746 +0.8375,0.88750005,0.11905503,0.11905497 +0.8375,0.8875,0.08418465,0.1683693 +0.8375,0.8875,0.1683693,0.08418465 +0.8375,0.9125,0.07499999,0.07499999 +0.8375,0.9125,0.053033054,0.10606593 +0.8375,0.9125,0.10606599,0.053033054 +0.8375,0.9125,0.094494045,0.094494045 +0.8375,0.9125,0.06681746,0.13363475 +0.8375,0.9125,0.1336348,0.06681746 +0.8375,0.9125,0.11905503,0.11905497 +0.8375,0.9125,0.08418465,0.1683693 +0.8375,0.9125,0.1683693,0.08418465 +0.8375,0.9375,0.07499999,0.07500005 +0.8375,0.9375,0.053033054,0.10606599 +0.8375,0.9375,0.10606599,0.053033113 +0.8375,0.9375,0.094494045,0.094494104 +0.8375,0.9375,0.06681746,0.1336348 +0.8375,0.9375,0.1336348,0.06681752 +0.8375,0.9375,0.11905503,0.11905503 +0.8375,0.9375,0.08418465,0.1683693 +0.8375,0.9375,0.1683693,0.08418465 +0.8375,0.9625,0.07499999,0.07499999 +0.8375,0.9625,0.053033054,0.10606593 +0.8375,0.9625,0.10606599,0.053033054 +0.8375,0.9625,0.094494045,0.094494045 +0.8375,0.9625,0.06681746,0.13363475 +0.8375,0.9625,0.1336348,0.06681746 +0.8375,0.9625,0.11905503,0.11905497 +0.8375,0.9625,0.08418465,0.1683693 +0.8375,0.9625,0.1683693,0.08418465 +0.8375,0.98749995,0.07499999,0.07499999 +0.8375,0.98749995,0.053033054,0.10606593 +0.8375,0.98749995,0.10606599,0.053033054 +0.8375,0.98749995,0.094494045,0.094494045 +0.8375,0.98749995,0.06681746,0.13363475 +0.8375,0.98749995,0.1336348,0.06681746 +0.8375,0.98749995,0.11905503,0.11905497 +0.8375,0.98749995,0.08418465,0.16836923 +0.8375,0.98749995,0.1683693,0.08418459 +0.86249995,0.0125,0.07499999,0.075 +0.86249995,0.012499997,0.053033054,0.10606602 +0.86249995,0.012499999,0.10606593,0.05303301 +0.86249995,0.012499999,0.094494045,0.09449408 +0.86249995,0.012500001,0.06681746,0.1336348 +0.86249995,0.012499999,0.1336348,0.0668174 +0.86249995,0.012500001,0.11905497,0.11905508 +0.8625,0.012499999,0.08418465,0.1683693 +0.8625,0.012500002,0.1683693,0.084184654 +0.86249995,0.0375,0.07499999,0.075 +0.86249995,0.037499998,0.053033054,0.10606601 +0.86249995,0.0375,0.10606593,0.05303301 +0.86249995,0.0375,0.094494045,0.094494075 +0.86249995,0.0375,0.06681746,0.1336348 +0.86249995,0.0375,0.1336348,0.0668174 +0.86249995,0.0375,0.11905497,0.11905508 +0.8625,0.0375,0.08418465,0.16836931 +0.8625,0.0375,0.1683693,0.08418466 +0.86249995,0.0625,0.07499999,0.075 +0.86249995,0.0625,0.053033054,0.10606602 +0.86249995,0.0625,0.10606593,0.05303301 +0.86249995,0.0625,0.094494045,0.094494075 +0.86249995,0.0625,0.06681746,0.1336348 +0.86249995,0.0625,0.1336348,0.0668174 +0.86249995,0.0625,0.11905497,0.11905508 +0.8625,0.0625,0.08418465,0.16836932 +0.8625,0.0625,0.1683693,0.08418465 +0.86249995,0.0875,0.07499999,0.075 +0.86249995,0.08749999,0.053033054,0.10606601 +0.86249995,0.087500006,0.10606593,0.053033013 +0.86249995,0.087500006,0.094494045,0.09449408 +0.86249995,0.087500006,0.06681746,0.1336348 +0.86249995,0.0875,0.1336348,0.0668174 +0.86249995,0.0875,0.11905497,0.11905508 +0.8625,0.0875,0.08418465,0.16836931 +0.8625,0.087500006,0.1683693,0.084184654 +0.86249995,0.112500004,0.07499999,0.075 +0.86249995,0.1125,0.053033054,0.10606601 +0.86249995,0.112500004,0.10606593,0.05303301 +0.86249995,0.1125,0.094494045,0.094494075 +0.86249995,0.1125,0.06681746,0.1336348 +0.86249995,0.1125,0.1336348,0.0668174 +0.86249995,0.1125,0.11905497,0.119055085 +0.8625,0.112500004,0.08418465,0.16836931 +0.8625,0.1125,0.1683693,0.08418465 +0.86249995,0.1375,0.07499999,0.074999996 +0.86249995,0.1375,0.053033054,0.10606602 +0.86249995,0.1375,0.10606593,0.053033024 +0.86249995,0.1375,0.094494045,0.09449408 +0.86249995,0.1375,0.06681746,0.1336348 +0.86249995,0.1375,0.1336348,0.0668174 +0.86249995,0.13749999,0.11905497,0.11905508 +0.8625,0.1375,0.08418465,0.1683693 +0.8625,0.1375,0.1683693,0.084184654 +0.86249995,0.1625,0.07499999,0.075 +0.86249995,0.16250001,0.053033054,0.106066026 +0.86249995,0.1625,0.10606593,0.05303301 +0.86249995,0.1625,0.094494045,0.094494075 +0.86249995,0.1625,0.06681746,0.1336348 +0.86249995,0.1625,0.1336348,0.0668174 +0.86249995,0.1625,0.11905497,0.11905508 +0.8625,0.1625,0.08418465,0.1683693 +0.8625,0.1625,0.1683693,0.08418464 +0.86249995,0.1875,0.07499999,0.07499999 +0.86249995,0.1875,0.053033054,0.10606603 +0.86249995,0.1875,0.10606593,0.053033024 +0.86249995,0.1875,0.094494045,0.09449406 +0.86249995,0.1875,0.06681746,0.1336348 +0.86249995,0.1875,0.1336348,0.06681742 +0.86249995,0.1875,0.11905497,0.11905509 +0.8625,0.1875,0.08418465,0.16836931 +0.8625,0.1875,0.1683693,0.08418465 +0.86249995,0.2125,0.07499999,0.075 +0.86249995,0.2125,0.053033054,0.10606603 +0.86249995,0.2125,0.10606593,0.05303301 +0.86249995,0.21249999,0.094494045,0.094494075 +0.86249995,0.2125,0.06681746,0.1336348 +0.86249995,0.2125,0.1336348,0.0668174 +0.86249995,0.2125,0.11905497,0.11905509 +0.8625,0.2125,0.08418465,0.16836931 +0.8625,0.2125,0.1683693,0.08418465 +0.86249995,0.23750001,0.07499999,0.075 +0.86249995,0.2375,0.053033054,0.10606602 +0.86249995,0.2375,0.10606593,0.053033024 +0.86249995,0.2375,0.094494045,0.094494075 +0.86249995,0.23750001,0.06681746,0.13363482 +0.86249995,0.2375,0.1336348,0.06681743 +0.86249995,0.2375,0.11905497,0.11905506 +0.8625,0.2375,0.08418465,0.16836932 +0.8625,0.23750001,0.1683693,0.08418466 +0.86249995,0.2625,0.07499999,0.07500002 +0.86249995,0.2625,0.053033054,0.10606603 +0.86249995,0.2625,0.10606593,0.053033024 +0.86249995,0.2625,0.094494045,0.094494075 +0.86249995,0.2625,0.06681746,0.13363479 +0.86249995,0.2625,0.1336348,0.06681743 +0.86249995,0.2625,0.11905497,0.11905508 +0.8625,0.2625,0.08418465,0.1683693 +0.8625,0.2625,0.1683693,0.08418463 +0.86249995,0.2875,0.07499999,0.07499999 +0.86249995,0.2875,0.053033054,0.10606603 +0.86249995,0.28750002,0.10606593,0.053033024 +0.86249995,0.2875,0.094494045,0.094494045 +0.86249995,0.2875,0.06681746,0.1336348 +0.86249995,0.28750002,0.1336348,0.06681743 +0.86249995,0.2875,0.11905497,0.11905508 +0.8625,0.2875,0.08418465,0.1683693 +0.8625,0.2875,0.1683693,0.08418465 +0.86249995,0.3125,0.07499999,0.07499999 +0.86249995,0.3125,0.053033054,0.10606605 +0.86249995,0.3125,0.10606593,0.053032994 +0.86249995,0.3125,0.094494045,0.094494045 +0.86249995,0.3125,0.06681746,0.1336348 +0.86249995,0.3125,0.1336348,0.0668174 +0.86249995,0.3125,0.11905497,0.11905509 +0.8625,0.3125,0.08418465,0.1683693 +0.8625,0.3125,0.1683693,0.08418465 +0.86249995,0.3375,0.07499999,0.07499999 +0.86249995,0.3375,0.053033054,0.10606605 +0.86249995,0.33749998,0.10606593,0.053033024 +0.86249995,0.3375,0.094494045,0.094494045 +0.86249995,0.33750004,0.06681746,0.13363484 +0.86249995,0.33749998,0.1336348,0.06681743 +0.86249995,0.3375,0.11905497,0.11905509 +0.8625,0.3375,0.08418465,0.1683693 +0.8625,0.3375,0.1683693,0.08418465 +0.86249995,0.3625,0.07499999,0.07500002 +0.86249995,0.3625,0.053033054,0.10606602 +0.86249995,0.3625,0.10606593,0.053033024 +0.86249995,0.3625,0.094494045,0.094494075 +0.86249995,0.3625,0.06681746,0.1336348 +0.86249995,0.3625,0.1336348,0.06681743 +0.86249995,0.3625,0.11905497,0.11905506 +0.8625,0.3625,0.08418465,0.1683693 +0.8625,0.3625,0.1683693,0.08418465 +0.86249995,0.3875,0.07499999,0.07500002 +0.86249995,0.3875,0.053033054,0.10606602 +0.86249995,0.3875,0.10606593,0.053032994 +0.86249995,0.3875,0.094494045,0.094494075 +0.86249995,0.3875,0.06681746,0.13363484 +0.86249995,0.3875,0.1336348,0.0668174 +0.86249995,0.3875,0.11905497,0.11905506 +0.8625,0.3875,0.08418465,0.1683693 +0.8625,0.3875,0.1683693,0.08418465 +0.86249995,0.4125,0.07499999,0.07499999 +0.86249995,0.4125,0.053033054,0.10606605 +0.86249995,0.4125,0.10606593,0.053032994 +0.86249995,0.4125,0.094494045,0.094494045 +0.86249995,0.41250002,0.06681746,0.13363484 +0.86249995,0.4125,0.1336348,0.0668174 +0.86249995,0.4125,0.11905497,0.11905509 +0.8625,0.4125,0.08418465,0.1683693 +0.8625,0.4125,0.1683693,0.08418465 +0.86249995,0.4375,0.07499999,0.07499999 +0.86249995,0.4375,0.053033054,0.10606605 +0.86249995,0.4375,0.10606593,0.053032994 +0.86249995,0.4375,0.094494045,0.094494045 +0.86249995,0.4375,0.06681746,0.1336348 +0.86249995,0.4375,0.1336348,0.0668174 +0.86249995,0.4375,0.11905497,0.11905509 +0.8625,0.4375,0.08418465,0.1683693 +0.8625,0.4375,0.1683693,0.08418465 +0.86249995,0.4625,0.07499999,0.07499999 +0.86249995,0.4625,0.053033054,0.10606605 +0.86249995,0.46249998,0.10606593,0.053032964 +0.86249995,0.4625,0.094494045,0.094494045 +0.86249995,0.46250004,0.06681746,0.13363484 +0.86249995,0.46249998,0.1336348,0.06681737 +0.86249995,0.4625,0.11905497,0.11905509 +0.8625,0.46249998,0.08418465,0.16836926 +0.8625,0.46249998,0.1683693,0.08418462 +0.86249995,0.48749998,0.07499999,0.07499999 +0.86249995,0.4875,0.053033054,0.10606602 +0.86249995,0.4875,0.10606593,0.053032994 +0.86249995,0.48749998,0.094494045,0.094494045 +0.86249995,0.4875,0.06681746,0.13363484 +0.86249995,0.4875,0.1336348,0.0668174 +0.86249995,0.4875,0.11905497,0.11905506 +0.8625,0.4875,0.08418465,0.1683693 +0.8625,0.4875,0.1683693,0.08418465 +0.86249995,0.5125,0.07499999,0.07500002 +0.86249995,0.51250005,0.053033054,0.10606605 +0.86249995,0.5125,0.10606593,0.053032964 +0.86249995,0.5125,0.094494045,0.094494075 +0.86249995,0.51250005,0.06681746,0.13363487 +0.86249995,0.5125,0.1336348,0.06681737 +0.86249995,0.51250005,0.11905497,0.11905509 +0.8625,0.5125,0.08418465,0.1683693 +0.8625,0.5125,0.1683693,0.08418465 +0.86249995,0.5375,0.07499999,0.07499999 +0.86249995,0.5375,0.053033054,0.10606605 +0.86249995,0.5375,0.10606593,0.053032935 +0.86249995,0.5375,0.094494045,0.094494045 +0.86249995,0.5375,0.06681746,0.13363487 +0.86249995,0.5375,0.1336348,0.06681734 +0.86249995,0.5375,0.11905497,0.11905509 +0.8625,0.5375,0.08418465,0.16836932 +0.8625,0.5375,0.1683693,0.08418468 +0.86249995,0.5625,0.07499999,0.07500005 +0.86249995,0.5625,0.053033054,0.10606599 +0.86249995,0.5625,0.10606593,0.053032994 +0.86249995,0.5625,0.094494045,0.094494104 +0.86249995,0.5625,0.06681746,0.13363484 +0.86249995,0.5625,0.1336348,0.0668174 +0.86249995,0.5625,0.11905497,0.11905503 +0.8625,0.5625,0.08418465,0.1683693 +0.8625,0.5625,0.1683693,0.08418465 +0.86249995,0.5875,0.07499999,0.07499999 +0.86249995,0.5875,0.053033054,0.10606605 +0.86249995,0.5875,0.10606593,0.053032935 +0.86249995,0.5875,0.094494045,0.094494045 +0.86249995,0.5875,0.06681746,0.13363487 +0.86249995,0.5875,0.1336348,0.06681734 +0.86249995,0.5875,0.11905497,0.11905509 +0.8625,0.5875,0.08418465,0.1683693 +0.8625,0.5875,0.1683693,0.08418465 +0.86249995,0.61249995,0.07499999,0.07499999 +0.86249995,0.61249995,0.053033054,0.10606605 +0.86249995,0.6125,0.10606593,0.053032994 +0.86249995,0.61249995,0.094494045,0.094494045 +0.86249995,0.61249995,0.06681746,0.13363487 +0.86249995,0.6125,0.1336348,0.0668174 +0.86249995,0.61249995,0.11905497,0.11905509 +0.8625,0.6125,0.08418465,0.1683693 +0.8625,0.6125,0.1683693,0.08418465 +0.86249995,0.63750005,0.07499999,0.07499999 +0.86249995,0.63750005,0.053033054,0.10606605 +0.86249995,0.6375,0.10606593,0.053032994 +0.86249995,0.63750005,0.094494045,0.094494045 +0.86249995,0.63750005,0.06681746,0.13363487 +0.86249995,0.6375,0.1336348,0.0668174 +0.86249995,0.63750005,0.11905497,0.11905509 +0.8625,0.6375,0.08418465,0.1683693 +0.8625,0.6375,0.1683693,0.08418465 +0.86249995,0.6625,0.07499999,0.07499999 +0.86249995,0.6625,0.053033054,0.10606605 +0.86249995,0.6625,0.10606593,0.053032935 +0.86249995,0.6625,0.094494045,0.094494045 +0.86249995,0.6625,0.06681746,0.13363487 +0.86249995,0.6625,0.1336348,0.06681734 +0.86249995,0.6625,0.11905497,0.11905509 +0.8625,0.6625,0.08418465,0.1683693 +0.8625,0.6625,0.1683693,0.08418465 +0.86249995,0.6875,0.07499999,0.07500005 +0.86249995,0.6875,0.053033054,0.10606599 +0.86249995,0.6875,0.10606593,0.053032994 +0.86249995,0.6875,0.094494045,0.094494104 +0.86249995,0.6875,0.06681746,0.1336348 +0.86249995,0.6875,0.1336348,0.0668174 +0.86249995,0.6875,0.11905497,0.11905503 +0.8625,0.6875,0.08418465,0.1683693 +0.8625,0.6875,0.1683693,0.08418465 +0.86249995,0.7125,0.07499999,0.07499999 +0.86249995,0.7125,0.053033054,0.10606605 +0.86249995,0.7125,0.10606593,0.053032935 +0.86249995,0.7125,0.094494045,0.094494045 +0.86249995,0.7125,0.06681746,0.13363487 +0.86249995,0.7125,0.1336348,0.06681734 +0.86249995,0.7125,0.11905497,0.11905509 +0.8625,0.7125,0.08418465,0.1683693 +0.8625,0.7125,0.1683693,0.08418465 +0.86249995,0.73749995,0.07499999,0.07499999 +0.86249995,0.73749995,0.053033054,0.10606605 +0.86249995,0.7375,0.10606593,0.053032994 +0.86249995,0.73749995,0.094494045,0.094494045 +0.86249995,0.73749995,0.06681746,0.1336348 +0.86249995,0.7375,0.1336348,0.0668174 +0.86249995,0.73749995,0.11905497,0.11905509 +0.8625,0.7375,0.08418465,0.1683693 +0.8625,0.7375,0.1683693,0.08418465 +0.86249995,0.76250005,0.07499999,0.07499999 +0.86249995,0.7625,0.053033054,0.10606599 +0.86249995,0.7625,0.10606593,0.053032994 +0.86249995,0.76250005,0.094494045,0.094494045 +0.86249995,0.7625,0.06681746,0.1336348 +0.86249995,0.7625,0.1336348,0.0668174 +0.86249995,0.7625,0.11905497,0.11905503 +0.8625,0.7625,0.08418465,0.1683693 +0.8625,0.7625,0.1683693,0.08418465 +0.86249995,0.7875,0.07499999,0.07499999 +0.86249995,0.78749996,0.053033054,0.10606599 +0.86249995,0.7875,0.10606593,0.053032994 +0.86249995,0.7875,0.094494045,0.094494045 +0.86249995,0.78749996,0.06681746,0.1336348 +0.86249995,0.7875,0.1336348,0.0668174 +0.86249995,0.78749996,0.11905497,0.11905503 +0.8625,0.7875,0.08418465,0.1683693 +0.8625,0.7875,0.1683693,0.08418465 +0.86249995,0.8125,0.07499999,0.07500005 +0.86249995,0.8125,0.053033054,0.10606599 +0.86249995,0.8125,0.10606593,0.053033054 +0.86249995,0.8125,0.094494045,0.094494104 +0.86249995,0.8125,0.06681746,0.1336348 +0.86249995,0.8125,0.1336348,0.06681746 +0.86249995,0.8125,0.11905497,0.11905503 +0.8625,0.8125,0.08418465,0.1683693 +0.8625,0.8125,0.1683693,0.08418465 +0.86249995,0.8375,0.07499999,0.07499999 +0.86249995,0.8375,0.053033054,0.10606599 +0.86249995,0.8375,0.10606593,0.053033054 +0.86249995,0.8375,0.094494045,0.094494045 +0.86249995,0.8375,0.06681746,0.1336348 +0.86249995,0.8375,0.1336348,0.06681746 +0.86249995,0.8375,0.11905497,0.11905503 +0.8625,0.8375,0.08418465,0.1683693 +0.8625,0.8375,0.1683693,0.08418465 +0.86249995,0.86249995,0.07499999,0.07499999 +0.86249995,0.86249995,0.053033054,0.10606593 +0.86249995,0.86249995,0.10606593,0.053033054 +0.86249995,0.86249995,0.094494045,0.094494045 +0.86249995,0.86249995,0.06681746,0.1336348 +0.86249995,0.86249995,0.1336348,0.06681746 +0.86249995,0.86249995,0.11905497,0.11905497 +0.8625,0.8625,0.08418465,0.1683693 +0.8625,0.8625,0.1683693,0.08418465 +0.86249995,0.88750005,0.07499999,0.07499999 +0.86249995,0.88750005,0.053033054,0.10606593 +0.86249995,0.88750005,0.10606593,0.053033054 +0.86249995,0.88750005,0.094494045,0.094494045 +0.86249995,0.88750005,0.06681746,0.13363475 +0.86249995,0.88750005,0.1336348,0.06681746 +0.86249995,0.88750005,0.11905497,0.11905497 +0.8625,0.8875,0.08418465,0.1683693 +0.8625,0.8875,0.1683693,0.08418465 +0.86249995,0.9125,0.07499999,0.07499999 +0.86249995,0.9125,0.053033054,0.10606593 +0.86249995,0.9125,0.10606593,0.053033054 +0.86249995,0.9125,0.094494045,0.094494045 +0.86249995,0.9125,0.06681746,0.13363475 +0.86249995,0.9125,0.1336348,0.06681746 +0.86249995,0.9125,0.11905497,0.11905497 +0.8625,0.9125,0.08418465,0.1683693 +0.8625,0.9125,0.1683693,0.08418465 +0.86249995,0.9375,0.07499999,0.07500005 +0.86249995,0.9375,0.053033054,0.10606599 +0.86249995,0.9375,0.10606593,0.053033113 +0.86249995,0.9375,0.094494045,0.094494104 +0.86249995,0.9375,0.06681746,0.1336348 +0.86249995,0.9375,0.1336348,0.06681752 +0.86249995,0.9375,0.11905497,0.11905503 +0.8625,0.9375,0.08418465,0.1683693 +0.8625,0.9375,0.1683693,0.08418465 +0.86249995,0.9625,0.07499999,0.07499999 +0.86249995,0.9625,0.053033054,0.10606593 +0.86249995,0.9625,0.10606593,0.053033054 +0.86249995,0.9625,0.094494045,0.094494045 +0.86249995,0.9625,0.06681746,0.13363475 +0.86249995,0.9625,0.1336348,0.06681746 +0.86249995,0.9625,0.11905497,0.11905497 +0.8625,0.9625,0.08418465,0.1683693 +0.8625,0.9625,0.1683693,0.08418465 +0.86249995,0.98749995,0.07499999,0.07499999 +0.86249995,0.98749995,0.053033054,0.10606593 +0.86249995,0.98749995,0.10606593,0.053033054 +0.86249995,0.98749995,0.094494045,0.094494045 +0.86249995,0.98749995,0.06681746,0.13363475 +0.86249995,0.98749995,0.1336348,0.06681746 +0.86249995,0.98749995,0.11905497,0.11905497 +0.8625,0.98749995,0.08418465,0.16836923 +0.8625,0.98749995,0.1683693,0.08418459 +0.88750005,0.0125,0.07499999,0.075 +0.88750005,0.012499997,0.053033054,0.10606602 +0.88750005,0.012499999,0.10606593,0.05303301 +0.88750005,0.012499999,0.094494045,0.09449408 +0.88750005,0.012500001,0.06681746,0.1336348 +0.88750005,0.012499999,0.13363475,0.0668174 +0.88750005,0.012500001,0.11905497,0.11905508 +0.8875,0.012499999,0.08418465,0.1683693 +0.8875,0.012500002,0.1683693,0.084184654 +0.88750005,0.0375,0.07499999,0.075 +0.88750005,0.037499998,0.053033054,0.10606601 +0.88750005,0.0375,0.10606593,0.05303301 +0.88750005,0.0375,0.094494045,0.094494075 +0.88750005,0.0375,0.06681746,0.1336348 +0.88750005,0.0375,0.13363475,0.0668174 +0.88750005,0.0375,0.11905497,0.11905508 +0.8875,0.0375,0.08418465,0.16836931 +0.8875,0.0375,0.1683693,0.08418466 +0.88750005,0.0625,0.07499999,0.075 +0.88750005,0.0625,0.053033054,0.10606602 +0.88750005,0.0625,0.10606593,0.05303301 +0.88750005,0.0625,0.094494045,0.094494075 +0.88750005,0.0625,0.06681746,0.1336348 +0.88750005,0.0625,0.13363475,0.0668174 +0.88750005,0.0625,0.11905497,0.11905508 +0.8875,0.0625,0.08418465,0.16836932 +0.8875,0.0625,0.1683693,0.08418465 +0.88750005,0.0875,0.07499999,0.075 +0.88750005,0.08749999,0.053033054,0.10606601 +0.88750005,0.087500006,0.10606593,0.053033013 +0.88750005,0.087500006,0.094494045,0.09449408 +0.88750005,0.087500006,0.06681746,0.1336348 +0.88750005,0.0875,0.13363475,0.0668174 +0.88750005,0.0875,0.11905497,0.11905508 +0.8875,0.0875,0.08418465,0.16836931 +0.8875,0.087500006,0.1683693,0.084184654 +0.88750005,0.112500004,0.07499999,0.075 +0.88750005,0.1125,0.053033054,0.10606601 +0.88750005,0.112500004,0.10606593,0.05303301 +0.88750005,0.1125,0.094494045,0.094494075 +0.88750005,0.1125,0.06681746,0.1336348 +0.88750005,0.1125,0.13363475,0.0668174 +0.88750005,0.1125,0.11905497,0.119055085 +0.8875,0.112500004,0.08418465,0.16836931 +0.8875,0.1125,0.1683693,0.08418465 +0.88750005,0.1375,0.07499999,0.074999996 +0.88750005,0.1375,0.053033054,0.10606602 +0.88750005,0.1375,0.10606593,0.053033024 +0.88750005,0.1375,0.094494045,0.09449408 +0.88750005,0.1375,0.06681746,0.1336348 +0.88750005,0.1375,0.13363475,0.0668174 +0.88750005,0.13749999,0.11905497,0.11905508 +0.8875,0.1375,0.08418465,0.1683693 +0.8875,0.1375,0.1683693,0.084184654 +0.88750005,0.1625,0.07499999,0.075 +0.88750005,0.16250001,0.053033054,0.106066026 +0.88750005,0.1625,0.10606593,0.05303301 +0.88750005,0.1625,0.094494045,0.094494075 +0.88750005,0.1625,0.06681746,0.1336348 +0.88750005,0.1625,0.13363475,0.0668174 +0.88750005,0.1625,0.11905497,0.11905508 +0.8875,0.1625,0.08418465,0.1683693 +0.8875,0.1625,0.1683693,0.08418464 +0.88750005,0.1875,0.07499999,0.07499999 +0.88750005,0.1875,0.053033054,0.10606603 +0.88750005,0.1875,0.10606593,0.053033024 +0.88750005,0.1875,0.094494045,0.09449406 +0.88750005,0.1875,0.06681746,0.1336348 +0.88750005,0.1875,0.13363475,0.06681742 +0.88750005,0.1875,0.11905497,0.11905509 +0.8875,0.1875,0.08418465,0.16836931 +0.8875,0.1875,0.1683693,0.08418465 +0.88750005,0.2125,0.07499999,0.075 +0.88750005,0.2125,0.053033054,0.10606603 +0.88750005,0.2125,0.10606593,0.05303301 +0.88750005,0.21249999,0.094494045,0.094494075 +0.88750005,0.2125,0.06681746,0.1336348 +0.88750005,0.2125,0.13363475,0.0668174 +0.88750005,0.2125,0.11905497,0.11905509 +0.8875,0.2125,0.08418465,0.16836931 +0.8875,0.2125,0.1683693,0.08418465 +0.88750005,0.23750001,0.07499999,0.075 +0.88750005,0.2375,0.053033054,0.10606602 +0.88750005,0.2375,0.10606593,0.053033024 +0.88750005,0.2375,0.094494045,0.094494075 +0.88750005,0.23750001,0.06681746,0.13363482 +0.88750005,0.2375,0.13363475,0.06681743 +0.88750005,0.2375,0.11905497,0.11905506 +0.8875,0.2375,0.08418465,0.16836932 +0.8875,0.23750001,0.1683693,0.08418466 +0.88750005,0.2625,0.07499999,0.07500002 +0.88750005,0.2625,0.053033054,0.10606603 +0.88750005,0.2625,0.10606593,0.053033024 +0.88750005,0.2625,0.094494045,0.094494075 +0.88750005,0.2625,0.06681746,0.13363479 +0.88750005,0.2625,0.13363475,0.06681743 +0.88750005,0.2625,0.11905497,0.11905508 +0.8875,0.2625,0.08418465,0.1683693 +0.8875,0.2625,0.1683693,0.08418463 +0.88750005,0.2875,0.07499999,0.07499999 +0.88750005,0.2875,0.053033054,0.10606603 +0.88750005,0.28750002,0.10606593,0.053033024 +0.88750005,0.2875,0.094494045,0.094494045 +0.88750005,0.2875,0.06681746,0.1336348 +0.88750005,0.28750002,0.13363475,0.06681743 +0.88750005,0.2875,0.11905497,0.11905508 +0.8875,0.2875,0.08418465,0.1683693 +0.8875,0.2875,0.1683693,0.08418465 +0.88750005,0.3125,0.07499999,0.07499999 +0.88750005,0.3125,0.053033054,0.10606605 +0.88750005,0.3125,0.10606593,0.053032994 +0.88750005,0.3125,0.094494045,0.094494045 +0.88750005,0.3125,0.06681746,0.1336348 +0.88750005,0.3125,0.13363475,0.0668174 +0.88750005,0.3125,0.11905497,0.11905509 +0.8875,0.3125,0.08418465,0.1683693 +0.8875,0.3125,0.1683693,0.08418465 +0.88750005,0.3375,0.07499999,0.07499999 +0.88750005,0.3375,0.053033054,0.10606605 +0.88750005,0.33749998,0.10606593,0.053033024 +0.88750005,0.3375,0.094494045,0.094494045 +0.88750005,0.33750004,0.06681746,0.13363484 +0.88750005,0.33749998,0.13363475,0.06681743 +0.88750005,0.3375,0.11905497,0.11905509 +0.8875,0.3375,0.08418465,0.1683693 +0.8875,0.3375,0.1683693,0.08418465 +0.88750005,0.3625,0.07499999,0.07500002 +0.88750005,0.3625,0.053033054,0.10606602 +0.88750005,0.3625,0.10606593,0.053033024 +0.88750005,0.3625,0.094494045,0.094494075 +0.88750005,0.3625,0.06681746,0.1336348 +0.88750005,0.3625,0.13363475,0.06681743 +0.88750005,0.3625,0.11905497,0.11905506 +0.8875,0.3625,0.08418465,0.1683693 +0.8875,0.3625,0.1683693,0.08418465 +0.88750005,0.3875,0.07499999,0.07500002 +0.88750005,0.3875,0.053033054,0.10606602 +0.88750005,0.3875,0.10606593,0.053032994 +0.88750005,0.3875,0.094494045,0.094494075 +0.88750005,0.3875,0.06681746,0.13363484 +0.88750005,0.3875,0.13363475,0.0668174 +0.88750005,0.3875,0.11905497,0.11905506 +0.8875,0.3875,0.08418465,0.1683693 +0.8875,0.3875,0.1683693,0.08418465 +0.88750005,0.4125,0.07499999,0.07499999 +0.88750005,0.4125,0.053033054,0.10606605 +0.88750005,0.4125,0.10606593,0.053032994 +0.88750005,0.4125,0.094494045,0.094494045 +0.88750005,0.41250002,0.06681746,0.13363484 +0.88750005,0.4125,0.13363475,0.0668174 +0.88750005,0.4125,0.11905497,0.11905509 +0.8875,0.4125,0.08418465,0.1683693 +0.8875,0.4125,0.1683693,0.08418465 +0.88750005,0.4375,0.07499999,0.07499999 +0.88750005,0.4375,0.053033054,0.10606605 +0.88750005,0.4375,0.10606593,0.053032994 +0.88750005,0.4375,0.094494045,0.094494045 +0.88750005,0.4375,0.06681746,0.1336348 +0.88750005,0.4375,0.13363475,0.0668174 +0.88750005,0.4375,0.11905497,0.11905509 +0.8875,0.4375,0.08418465,0.1683693 +0.8875,0.4375,0.1683693,0.08418465 +0.88750005,0.4625,0.07499999,0.07499999 +0.88750005,0.4625,0.053033054,0.10606605 +0.88750005,0.46249998,0.10606593,0.053032964 +0.88750005,0.4625,0.094494045,0.094494045 +0.88750005,0.46250004,0.06681746,0.13363484 +0.88750005,0.46249998,0.13363475,0.06681737 +0.88750005,0.4625,0.11905497,0.11905509 +0.8875,0.46249998,0.08418465,0.16836926 +0.8875,0.46249998,0.1683693,0.08418462 +0.88750005,0.48749998,0.07499999,0.07499999 +0.88750005,0.4875,0.053033054,0.10606602 +0.88750005,0.4875,0.10606593,0.053032994 +0.88750005,0.48749998,0.094494045,0.094494045 +0.88750005,0.4875,0.06681746,0.13363484 +0.88750005,0.4875,0.13363475,0.0668174 +0.88750005,0.4875,0.11905497,0.11905506 +0.8875,0.4875,0.08418465,0.1683693 +0.8875,0.4875,0.1683693,0.08418465 +0.88750005,0.5125,0.07499999,0.07500002 +0.88750005,0.51250005,0.053033054,0.10606605 +0.88750005,0.5125,0.10606593,0.053032964 +0.88750005,0.5125,0.094494045,0.094494075 +0.88750005,0.51250005,0.06681746,0.13363487 +0.88750005,0.5125,0.13363475,0.06681737 +0.88750005,0.51250005,0.11905497,0.11905509 +0.8875,0.5125,0.08418465,0.1683693 +0.8875,0.5125,0.1683693,0.08418465 +0.88750005,0.5375,0.07499999,0.07499999 +0.88750005,0.5375,0.053033054,0.10606605 +0.88750005,0.5375,0.10606593,0.053032935 +0.88750005,0.5375,0.094494045,0.094494045 +0.88750005,0.5375,0.06681746,0.13363487 +0.88750005,0.5375,0.13363475,0.06681734 +0.88750005,0.5375,0.11905497,0.11905509 +0.8875,0.5375,0.08418465,0.16836932 +0.8875,0.5375,0.1683693,0.08418468 +0.88750005,0.5625,0.07499999,0.07500005 +0.88750005,0.5625,0.053033054,0.10606599 +0.88750005,0.5625,0.10606593,0.053032994 +0.88750005,0.5625,0.094494045,0.094494104 +0.88750005,0.5625,0.06681746,0.13363484 +0.88750005,0.5625,0.13363475,0.0668174 +0.88750005,0.5625,0.11905497,0.11905503 +0.8875,0.5625,0.08418465,0.1683693 +0.8875,0.5625,0.1683693,0.08418465 +0.88750005,0.5875,0.07499999,0.07499999 +0.88750005,0.5875,0.053033054,0.10606605 +0.88750005,0.5875,0.10606593,0.053032935 +0.88750005,0.5875,0.094494045,0.094494045 +0.88750005,0.5875,0.06681746,0.13363487 +0.88750005,0.5875,0.13363475,0.06681734 +0.88750005,0.5875,0.11905497,0.11905509 +0.8875,0.5875,0.08418465,0.1683693 +0.8875,0.5875,0.1683693,0.08418465 +0.88750005,0.61249995,0.07499999,0.07499999 +0.88750005,0.61249995,0.053033054,0.10606605 +0.88750005,0.6125,0.10606593,0.053032994 +0.88750005,0.61249995,0.094494045,0.094494045 +0.88750005,0.61249995,0.06681746,0.13363487 +0.88750005,0.6125,0.13363475,0.0668174 +0.88750005,0.61249995,0.11905497,0.11905509 +0.8875,0.6125,0.08418465,0.1683693 +0.8875,0.6125,0.1683693,0.08418465 +0.88750005,0.63750005,0.07499999,0.07499999 +0.88750005,0.63750005,0.053033054,0.10606605 +0.88750005,0.6375,0.10606593,0.053032994 +0.88750005,0.63750005,0.094494045,0.094494045 +0.88750005,0.63750005,0.06681746,0.13363487 +0.88750005,0.6375,0.13363475,0.0668174 +0.88750005,0.63750005,0.11905497,0.11905509 +0.8875,0.6375,0.08418465,0.1683693 +0.8875,0.6375,0.1683693,0.08418465 +0.88750005,0.6625,0.07499999,0.07499999 +0.88750005,0.6625,0.053033054,0.10606605 +0.88750005,0.6625,0.10606593,0.053032935 +0.88750005,0.6625,0.094494045,0.094494045 +0.88750005,0.6625,0.06681746,0.13363487 +0.88750005,0.6625,0.13363475,0.06681734 +0.88750005,0.6625,0.11905497,0.11905509 +0.8875,0.6625,0.08418465,0.1683693 +0.8875,0.6625,0.1683693,0.08418465 +0.88750005,0.6875,0.07499999,0.07500005 +0.88750005,0.6875,0.053033054,0.10606599 +0.88750005,0.6875,0.10606593,0.053032994 +0.88750005,0.6875,0.094494045,0.094494104 +0.88750005,0.6875,0.06681746,0.1336348 +0.88750005,0.6875,0.13363475,0.0668174 +0.88750005,0.6875,0.11905497,0.11905503 +0.8875,0.6875,0.08418465,0.1683693 +0.8875,0.6875,0.1683693,0.08418465 +0.88750005,0.7125,0.07499999,0.07499999 +0.88750005,0.7125,0.053033054,0.10606605 +0.88750005,0.7125,0.10606593,0.053032935 +0.88750005,0.7125,0.094494045,0.094494045 +0.88750005,0.7125,0.06681746,0.13363487 +0.88750005,0.7125,0.13363475,0.06681734 +0.88750005,0.7125,0.11905497,0.11905509 +0.8875,0.7125,0.08418465,0.1683693 +0.8875,0.7125,0.1683693,0.08418465 +0.88750005,0.73749995,0.07499999,0.07499999 +0.88750005,0.73749995,0.053033054,0.10606605 +0.88750005,0.7375,0.10606593,0.053032994 +0.88750005,0.73749995,0.094494045,0.094494045 +0.88750005,0.73749995,0.06681746,0.1336348 +0.88750005,0.7375,0.13363475,0.0668174 +0.88750005,0.73749995,0.11905497,0.11905509 +0.8875,0.7375,0.08418465,0.1683693 +0.8875,0.7375,0.1683693,0.08418465 +0.88750005,0.76250005,0.07499999,0.07499999 +0.88750005,0.7625,0.053033054,0.10606599 +0.88750005,0.7625,0.10606593,0.053032994 +0.88750005,0.76250005,0.094494045,0.094494045 +0.88750005,0.7625,0.06681746,0.1336348 +0.88750005,0.7625,0.13363475,0.0668174 +0.88750005,0.7625,0.11905497,0.11905503 +0.8875,0.7625,0.08418465,0.1683693 +0.8875,0.7625,0.1683693,0.08418465 +0.88750005,0.7875,0.07499999,0.07499999 +0.88750005,0.78749996,0.053033054,0.10606599 +0.88750005,0.7875,0.10606593,0.053032994 +0.88750005,0.7875,0.094494045,0.094494045 +0.88750005,0.78749996,0.06681746,0.1336348 +0.88750005,0.7875,0.13363475,0.0668174 +0.88750005,0.78749996,0.11905497,0.11905503 +0.8875,0.7875,0.08418465,0.1683693 +0.8875,0.7875,0.1683693,0.08418465 +0.88750005,0.8125,0.07499999,0.07500005 +0.88750005,0.8125,0.053033054,0.10606599 +0.88750005,0.8125,0.10606593,0.053033054 +0.88750005,0.8125,0.094494045,0.094494104 +0.88750005,0.8125,0.06681746,0.1336348 +0.88750005,0.8125,0.13363475,0.06681746 +0.88750005,0.8125,0.11905497,0.11905503 +0.8875,0.8125,0.08418465,0.1683693 +0.8875,0.8125,0.1683693,0.08418465 +0.88750005,0.8375,0.07499999,0.07499999 +0.88750005,0.8375,0.053033054,0.10606599 +0.88750005,0.8375,0.10606593,0.053033054 +0.88750005,0.8375,0.094494045,0.094494045 +0.88750005,0.8375,0.06681746,0.1336348 +0.88750005,0.8375,0.13363475,0.06681746 +0.88750005,0.8375,0.11905497,0.11905503 +0.8875,0.8375,0.08418465,0.1683693 +0.8875,0.8375,0.1683693,0.08418465 +0.88750005,0.86249995,0.07499999,0.07499999 +0.88750005,0.86249995,0.053033054,0.10606593 +0.88750005,0.86249995,0.10606593,0.053033054 +0.88750005,0.86249995,0.094494045,0.094494045 +0.88750005,0.86249995,0.06681746,0.1336348 +0.88750005,0.86249995,0.13363475,0.06681746 +0.88750005,0.86249995,0.11905497,0.11905497 +0.8875,0.8625,0.08418465,0.1683693 +0.8875,0.8625,0.1683693,0.08418465 +0.88750005,0.88750005,0.07499999,0.07499999 +0.88750005,0.88750005,0.053033054,0.10606593 +0.88750005,0.88750005,0.10606593,0.053033054 +0.88750005,0.88750005,0.094494045,0.094494045 +0.88750005,0.88750005,0.06681746,0.13363475 +0.88750005,0.88750005,0.13363475,0.06681746 +0.88750005,0.88750005,0.11905497,0.11905497 +0.8875,0.8875,0.08418465,0.1683693 +0.8875,0.8875,0.1683693,0.08418465 +0.88750005,0.9125,0.07499999,0.07499999 +0.88750005,0.9125,0.053033054,0.10606593 +0.88750005,0.9125,0.10606593,0.053033054 +0.88750005,0.9125,0.094494045,0.094494045 +0.88750005,0.9125,0.06681746,0.13363475 +0.88750005,0.9125,0.13363475,0.06681746 +0.88750005,0.9125,0.11905497,0.11905497 +0.8875,0.9125,0.08418465,0.1683693 +0.8875,0.9125,0.1683693,0.08418465 +0.88750005,0.9375,0.07499999,0.07500005 +0.88750005,0.9375,0.053033054,0.10606599 +0.88750005,0.9375,0.10606593,0.053033113 +0.88750005,0.9375,0.094494045,0.094494104 +0.88750005,0.9375,0.06681746,0.1336348 +0.88750005,0.9375,0.13363475,0.06681752 +0.88750005,0.9375,0.11905497,0.11905503 +0.8875,0.9375,0.08418465,0.1683693 +0.8875,0.9375,0.1683693,0.08418465 +0.88750005,0.9625,0.07499999,0.07499999 +0.88750005,0.9625,0.053033054,0.10606593 +0.88750005,0.9625,0.10606593,0.053033054 +0.88750005,0.9625,0.094494045,0.094494045 +0.88750005,0.9625,0.06681746,0.13363475 +0.88750005,0.9625,0.13363475,0.06681746 +0.88750005,0.9625,0.11905497,0.11905497 +0.8875,0.9625,0.08418465,0.1683693 +0.8875,0.9625,0.1683693,0.08418465 +0.88750005,0.98749995,0.07499999,0.07499999 +0.88750005,0.98749995,0.053033054,0.10606593 +0.88750005,0.98749995,0.10606593,0.053033054 +0.88750005,0.98749995,0.094494045,0.094494045 +0.88750005,0.98749995,0.06681746,0.13363475 +0.88750005,0.98749995,0.13363475,0.06681746 +0.88750005,0.98749995,0.11905497,0.11905497 +0.8875,0.98749995,0.08418465,0.16836923 +0.8875,0.98749995,0.1683693,0.08418459 +0.9125,0.0125,0.07499999,0.075 +0.9125,0.012499997,0.053033054,0.10606602 +0.9125,0.012499999,0.10606593,0.05303301 +0.9125,0.012499999,0.094494045,0.09449408 +0.9125,0.012500001,0.06681746,0.1336348 +0.9125,0.012499999,0.13363475,0.0668174 +0.9125,0.012500001,0.11905497,0.11905508 +0.9125,0.012499999,0.08418465,0.1683693 +0.9125,0.012500002,0.1683693,0.084184654 +0.9125,0.0375,0.07499999,0.075 +0.9125,0.037499998,0.053033054,0.10606601 +0.9125,0.0375,0.10606593,0.05303301 +0.9125,0.0375,0.094494045,0.094494075 +0.9125,0.0375,0.06681746,0.1336348 +0.9125,0.0375,0.13363475,0.0668174 +0.9125,0.0375,0.11905497,0.11905508 +0.9125,0.0375,0.08418465,0.16836931 +0.9125,0.0375,0.1683693,0.08418466 +0.9125,0.0625,0.07499999,0.075 +0.9125,0.0625,0.053033054,0.10606602 +0.9125,0.0625,0.10606593,0.05303301 +0.9125,0.0625,0.094494045,0.094494075 +0.9125,0.0625,0.06681746,0.1336348 +0.9125,0.0625,0.13363475,0.0668174 +0.9125,0.0625,0.11905497,0.11905508 +0.9125,0.0625,0.08418465,0.16836932 +0.9125,0.0625,0.1683693,0.08418465 +0.9125,0.0875,0.07499999,0.075 +0.9125,0.08749999,0.053033054,0.10606601 +0.9125,0.087500006,0.10606593,0.053033013 +0.9125,0.087500006,0.094494045,0.09449408 +0.9125,0.087500006,0.06681746,0.1336348 +0.9125,0.0875,0.13363475,0.0668174 +0.9125,0.0875,0.11905497,0.11905508 +0.9125,0.0875,0.08418465,0.16836931 +0.9125,0.087500006,0.1683693,0.084184654 +0.9125,0.112500004,0.07499999,0.075 +0.9125,0.1125,0.053033054,0.10606601 +0.9125,0.112500004,0.10606593,0.05303301 +0.9125,0.1125,0.094494045,0.094494075 +0.9125,0.1125,0.06681746,0.1336348 +0.9125,0.1125,0.13363475,0.0668174 +0.9125,0.1125,0.11905497,0.119055085 +0.9125,0.112500004,0.08418465,0.16836931 +0.9125,0.1125,0.1683693,0.08418465 +0.9125,0.1375,0.07499999,0.074999996 +0.9125,0.1375,0.053033054,0.10606602 +0.9125,0.1375,0.10606593,0.053033024 +0.9125,0.1375,0.094494045,0.09449408 +0.9125,0.1375,0.06681746,0.1336348 +0.9125,0.1375,0.13363475,0.0668174 +0.9125,0.13749999,0.11905497,0.11905508 +0.9125,0.1375,0.08418465,0.1683693 +0.9125,0.1375,0.1683693,0.084184654 +0.9125,0.1625,0.07499999,0.075 +0.9125,0.16250001,0.053033054,0.106066026 +0.9125,0.1625,0.10606593,0.05303301 +0.9125,0.1625,0.094494045,0.094494075 +0.9125,0.1625,0.06681746,0.1336348 +0.9125,0.1625,0.13363475,0.0668174 +0.9125,0.1625,0.11905497,0.11905508 +0.9125,0.1625,0.08418465,0.1683693 +0.9125,0.1625,0.1683693,0.08418464 +0.9125,0.1875,0.07499999,0.07499999 +0.9125,0.1875,0.053033054,0.10606603 +0.9125,0.1875,0.10606593,0.053033024 +0.9125,0.1875,0.094494045,0.09449406 +0.9125,0.1875,0.06681746,0.1336348 +0.9125,0.1875,0.13363475,0.06681742 +0.9125,0.1875,0.11905497,0.11905509 +0.9125,0.1875,0.08418465,0.16836931 +0.9125,0.1875,0.1683693,0.08418465 +0.9125,0.2125,0.07499999,0.075 +0.9125,0.2125,0.053033054,0.10606603 +0.9125,0.2125,0.10606593,0.05303301 +0.9125,0.21249999,0.094494045,0.094494075 +0.9125,0.2125,0.06681746,0.1336348 +0.9125,0.2125,0.13363475,0.0668174 +0.9125,0.2125,0.11905497,0.11905509 +0.9125,0.2125,0.08418465,0.16836931 +0.9125,0.2125,0.1683693,0.08418465 +0.9125,0.23750001,0.07499999,0.075 +0.9125,0.2375,0.053033054,0.10606602 +0.9125,0.2375,0.10606593,0.053033024 +0.9125,0.2375,0.094494045,0.094494075 +0.9125,0.23750001,0.06681746,0.13363482 +0.9125,0.2375,0.13363475,0.06681743 +0.9125,0.2375,0.11905497,0.11905506 +0.9125,0.2375,0.08418465,0.16836932 +0.9125,0.23750001,0.1683693,0.08418466 +0.9125,0.2625,0.07499999,0.07500002 +0.9125,0.2625,0.053033054,0.10606603 +0.9125,0.2625,0.10606593,0.053033024 +0.9125,0.2625,0.094494045,0.094494075 +0.9125,0.2625,0.06681746,0.13363479 +0.9125,0.2625,0.13363475,0.06681743 +0.9125,0.2625,0.11905497,0.11905508 +0.9125,0.2625,0.08418465,0.1683693 +0.9125,0.2625,0.1683693,0.08418463 +0.9125,0.2875,0.07499999,0.07499999 +0.9125,0.2875,0.053033054,0.10606603 +0.9125,0.28750002,0.10606593,0.053033024 +0.9125,0.2875,0.094494045,0.094494045 +0.9125,0.2875,0.06681746,0.1336348 +0.9125,0.28750002,0.13363475,0.06681743 +0.9125,0.2875,0.11905497,0.11905508 +0.9125,0.2875,0.08418465,0.1683693 +0.9125,0.2875,0.1683693,0.08418465 +0.9125,0.3125,0.07499999,0.07499999 +0.9125,0.3125,0.053033054,0.10606605 +0.9125,0.3125,0.10606593,0.053032994 +0.9125,0.3125,0.094494045,0.094494045 +0.9125,0.3125,0.06681746,0.1336348 +0.9125,0.3125,0.13363475,0.0668174 +0.9125,0.3125,0.11905497,0.11905509 +0.9125,0.3125,0.08418465,0.1683693 +0.9125,0.3125,0.1683693,0.08418465 +0.9125,0.3375,0.07499999,0.07499999 +0.9125,0.3375,0.053033054,0.10606605 +0.9125,0.33749998,0.10606593,0.053033024 +0.9125,0.3375,0.094494045,0.094494045 +0.9125,0.33750004,0.06681746,0.13363484 +0.9125,0.33749998,0.13363475,0.06681743 +0.9125,0.3375,0.11905497,0.11905509 +0.9125,0.3375,0.08418465,0.1683693 +0.9125,0.3375,0.1683693,0.08418465 +0.9125,0.3625,0.07499999,0.07500002 +0.9125,0.3625,0.053033054,0.10606602 +0.9125,0.3625,0.10606593,0.053033024 +0.9125,0.3625,0.094494045,0.094494075 +0.9125,0.3625,0.06681746,0.1336348 +0.9125,0.3625,0.13363475,0.06681743 +0.9125,0.3625,0.11905497,0.11905506 +0.9125,0.3625,0.08418465,0.1683693 +0.9125,0.3625,0.1683693,0.08418465 +0.9125,0.3875,0.07499999,0.07500002 +0.9125,0.3875,0.053033054,0.10606602 +0.9125,0.3875,0.10606593,0.053032994 +0.9125,0.3875,0.094494045,0.094494075 +0.9125,0.3875,0.06681746,0.13363484 +0.9125,0.3875,0.13363475,0.0668174 +0.9125,0.3875,0.11905497,0.11905506 +0.9125,0.3875,0.08418465,0.1683693 +0.9125,0.3875,0.1683693,0.08418465 +0.9125,0.4125,0.07499999,0.07499999 +0.9125,0.4125,0.053033054,0.10606605 +0.9125,0.4125,0.10606593,0.053032994 +0.9125,0.4125,0.094494045,0.094494045 +0.9125,0.41250002,0.06681746,0.13363484 +0.9125,0.4125,0.13363475,0.0668174 +0.9125,0.4125,0.11905497,0.11905509 +0.9125,0.4125,0.08418465,0.1683693 +0.9125,0.4125,0.1683693,0.08418465 +0.9125,0.4375,0.07499999,0.07499999 +0.9125,0.4375,0.053033054,0.10606605 +0.9125,0.4375,0.10606593,0.053032994 +0.9125,0.4375,0.094494045,0.094494045 +0.9125,0.4375,0.06681746,0.1336348 +0.9125,0.4375,0.13363475,0.0668174 +0.9125,0.4375,0.11905497,0.11905509 +0.9125,0.4375,0.08418465,0.1683693 +0.9125,0.4375,0.1683693,0.08418465 +0.9125,0.4625,0.07499999,0.07499999 +0.9125,0.4625,0.053033054,0.10606605 +0.9125,0.46249998,0.10606593,0.053032964 +0.9125,0.4625,0.094494045,0.094494045 +0.9125,0.46250004,0.06681746,0.13363484 +0.9125,0.46249998,0.13363475,0.06681737 +0.9125,0.4625,0.11905497,0.11905509 +0.9125,0.46249998,0.08418465,0.16836926 +0.9125,0.46249998,0.1683693,0.08418462 +0.9125,0.48749998,0.07499999,0.07499999 +0.9125,0.4875,0.053033054,0.10606602 +0.9125,0.4875,0.10606593,0.053032994 +0.9125,0.48749998,0.094494045,0.094494045 +0.9125,0.4875,0.06681746,0.13363484 +0.9125,0.4875,0.13363475,0.0668174 +0.9125,0.4875,0.11905497,0.11905506 +0.9125,0.4875,0.08418465,0.1683693 +0.9125,0.4875,0.1683693,0.08418465 +0.9125,0.5125,0.07499999,0.07500002 +0.9125,0.51250005,0.053033054,0.10606605 +0.9125,0.5125,0.10606593,0.053032964 +0.9125,0.5125,0.094494045,0.094494075 +0.9125,0.51250005,0.06681746,0.13363487 +0.9125,0.5125,0.13363475,0.06681737 +0.9125,0.51250005,0.11905497,0.11905509 +0.9125,0.5125,0.08418465,0.1683693 +0.9125,0.5125,0.1683693,0.08418465 +0.9125,0.5375,0.07499999,0.07499999 +0.9125,0.5375,0.053033054,0.10606605 +0.9125,0.5375,0.10606593,0.053032935 +0.9125,0.5375,0.094494045,0.094494045 +0.9125,0.5375,0.06681746,0.13363487 +0.9125,0.5375,0.13363475,0.06681734 +0.9125,0.5375,0.11905497,0.11905509 +0.9125,0.5375,0.08418465,0.16836932 +0.9125,0.5375,0.1683693,0.08418468 +0.9125,0.5625,0.07499999,0.07500005 +0.9125,0.5625,0.053033054,0.10606599 +0.9125,0.5625,0.10606593,0.053032994 +0.9125,0.5625,0.094494045,0.094494104 +0.9125,0.5625,0.06681746,0.13363484 +0.9125,0.5625,0.13363475,0.0668174 +0.9125,0.5625,0.11905497,0.11905503 +0.9125,0.5625,0.08418465,0.1683693 +0.9125,0.5625,0.1683693,0.08418465 +0.9125,0.5875,0.07499999,0.07499999 +0.9125,0.5875,0.053033054,0.10606605 +0.9125,0.5875,0.10606593,0.053032935 +0.9125,0.5875,0.094494045,0.094494045 +0.9125,0.5875,0.06681746,0.13363487 +0.9125,0.5875,0.13363475,0.06681734 +0.9125,0.5875,0.11905497,0.11905509 +0.9125,0.5875,0.08418465,0.1683693 +0.9125,0.5875,0.1683693,0.08418465 +0.9125,0.61249995,0.07499999,0.07499999 +0.9125,0.61249995,0.053033054,0.10606605 +0.9125,0.6125,0.10606593,0.053032994 +0.9125,0.61249995,0.094494045,0.094494045 +0.9125,0.61249995,0.06681746,0.13363487 +0.9125,0.6125,0.13363475,0.0668174 +0.9125,0.61249995,0.11905497,0.11905509 +0.9125,0.6125,0.08418465,0.1683693 +0.9125,0.6125,0.1683693,0.08418465 +0.9125,0.63750005,0.07499999,0.07499999 +0.9125,0.63750005,0.053033054,0.10606605 +0.9125,0.6375,0.10606593,0.053032994 +0.9125,0.63750005,0.094494045,0.094494045 +0.9125,0.63750005,0.06681746,0.13363487 +0.9125,0.6375,0.13363475,0.0668174 +0.9125,0.63750005,0.11905497,0.11905509 +0.9125,0.6375,0.08418465,0.1683693 +0.9125,0.6375,0.1683693,0.08418465 +0.9125,0.6625,0.07499999,0.07499999 +0.9125,0.6625,0.053033054,0.10606605 +0.9125,0.6625,0.10606593,0.053032935 +0.9125,0.6625,0.094494045,0.094494045 +0.9125,0.6625,0.06681746,0.13363487 +0.9125,0.6625,0.13363475,0.06681734 +0.9125,0.6625,0.11905497,0.11905509 +0.9125,0.6625,0.08418465,0.1683693 +0.9125,0.6625,0.1683693,0.08418465 +0.9125,0.6875,0.07499999,0.07500005 +0.9125,0.6875,0.053033054,0.10606599 +0.9125,0.6875,0.10606593,0.053032994 +0.9125,0.6875,0.094494045,0.094494104 +0.9125,0.6875,0.06681746,0.1336348 +0.9125,0.6875,0.13363475,0.0668174 +0.9125,0.6875,0.11905497,0.11905503 +0.9125,0.6875,0.08418465,0.1683693 +0.9125,0.6875,0.1683693,0.08418465 +0.9125,0.7125,0.07499999,0.07499999 +0.9125,0.7125,0.053033054,0.10606605 +0.9125,0.7125,0.10606593,0.053032935 +0.9125,0.7125,0.094494045,0.094494045 +0.9125,0.7125,0.06681746,0.13363487 +0.9125,0.7125,0.13363475,0.06681734 +0.9125,0.7125,0.11905497,0.11905509 +0.9125,0.7125,0.08418465,0.1683693 +0.9125,0.7125,0.1683693,0.08418465 +0.9125,0.73749995,0.07499999,0.07499999 +0.9125,0.73749995,0.053033054,0.10606605 +0.9125,0.7375,0.10606593,0.053032994 +0.9125,0.73749995,0.094494045,0.094494045 +0.9125,0.73749995,0.06681746,0.1336348 +0.9125,0.7375,0.13363475,0.0668174 +0.9125,0.73749995,0.11905497,0.11905509 +0.9125,0.7375,0.08418465,0.1683693 +0.9125,0.7375,0.1683693,0.08418465 +0.9125,0.76250005,0.07499999,0.07499999 +0.9125,0.7625,0.053033054,0.10606599 +0.9125,0.7625,0.10606593,0.053032994 +0.9125,0.76250005,0.094494045,0.094494045 +0.9125,0.7625,0.06681746,0.1336348 +0.9125,0.7625,0.13363475,0.0668174 +0.9125,0.7625,0.11905497,0.11905503 +0.9125,0.7625,0.08418465,0.1683693 +0.9125,0.7625,0.1683693,0.08418465 +0.9125,0.7875,0.07499999,0.07499999 +0.9125,0.78749996,0.053033054,0.10606599 +0.9125,0.7875,0.10606593,0.053032994 +0.9125,0.7875,0.094494045,0.094494045 +0.9125,0.78749996,0.06681746,0.1336348 +0.9125,0.7875,0.13363475,0.0668174 +0.9125,0.78749996,0.11905497,0.11905503 +0.9125,0.7875,0.08418465,0.1683693 +0.9125,0.7875,0.1683693,0.08418465 +0.9125,0.8125,0.07499999,0.07500005 +0.9125,0.8125,0.053033054,0.10606599 +0.9125,0.8125,0.10606593,0.053033054 +0.9125,0.8125,0.094494045,0.094494104 +0.9125,0.8125,0.06681746,0.1336348 +0.9125,0.8125,0.13363475,0.06681746 +0.9125,0.8125,0.11905497,0.11905503 +0.9125,0.8125,0.08418465,0.1683693 +0.9125,0.8125,0.1683693,0.08418465 +0.9125,0.8375,0.07499999,0.07499999 +0.9125,0.8375,0.053033054,0.10606599 +0.9125,0.8375,0.10606593,0.053033054 +0.9125,0.8375,0.094494045,0.094494045 +0.9125,0.8375,0.06681746,0.1336348 +0.9125,0.8375,0.13363475,0.06681746 +0.9125,0.8375,0.11905497,0.11905503 +0.9125,0.8375,0.08418465,0.1683693 +0.9125,0.8375,0.1683693,0.08418465 +0.9125,0.86249995,0.07499999,0.07499999 +0.9125,0.86249995,0.053033054,0.10606593 +0.9125,0.86249995,0.10606593,0.053033054 +0.9125,0.86249995,0.094494045,0.094494045 +0.9125,0.86249995,0.06681746,0.1336348 +0.9125,0.86249995,0.13363475,0.06681746 +0.9125,0.86249995,0.11905497,0.11905497 +0.9125,0.8625,0.08418465,0.1683693 +0.9125,0.8625,0.1683693,0.08418465 +0.9125,0.88750005,0.07499999,0.07499999 +0.9125,0.88750005,0.053033054,0.10606593 +0.9125,0.88750005,0.10606593,0.053033054 +0.9125,0.88750005,0.094494045,0.094494045 +0.9125,0.88750005,0.06681746,0.13363475 +0.9125,0.88750005,0.13363475,0.06681746 +0.9125,0.88750005,0.11905497,0.11905497 +0.9125,0.8875,0.08418465,0.1683693 +0.9125,0.8875,0.1683693,0.08418465 +0.9125,0.9125,0.07499999,0.07499999 +0.9125,0.9125,0.053033054,0.10606593 +0.9125,0.9125,0.10606593,0.053033054 +0.9125,0.9125,0.094494045,0.094494045 +0.9125,0.9125,0.06681746,0.13363475 +0.9125,0.9125,0.13363475,0.06681746 +0.9125,0.9125,0.11905497,0.11905497 +0.9125,0.9125,0.08418465,0.1683693 +0.9125,0.9125,0.1683693,0.08418465 +0.9125,0.9375,0.07499999,0.07500005 +0.9125,0.9375,0.053033054,0.10606599 +0.9125,0.9375,0.10606593,0.053033113 +0.9125,0.9375,0.094494045,0.094494104 +0.9125,0.9375,0.06681746,0.1336348 +0.9125,0.9375,0.13363475,0.06681752 +0.9125,0.9375,0.11905497,0.11905503 +0.9125,0.9375,0.08418465,0.1683693 +0.9125,0.9375,0.1683693,0.08418465 +0.9125,0.9625,0.07499999,0.07499999 +0.9125,0.9625,0.053033054,0.10606593 +0.9125,0.9625,0.10606593,0.053033054 +0.9125,0.9625,0.094494045,0.094494045 +0.9125,0.9625,0.06681746,0.13363475 +0.9125,0.9625,0.13363475,0.06681746 +0.9125,0.9625,0.11905497,0.11905497 +0.9125,0.9625,0.08418465,0.1683693 +0.9125,0.9625,0.1683693,0.08418465 +0.9125,0.98749995,0.07499999,0.07499999 +0.9125,0.98749995,0.053033054,0.10606593 +0.9125,0.98749995,0.10606593,0.053033054 +0.9125,0.98749995,0.094494045,0.094494045 +0.9125,0.98749995,0.06681746,0.13363475 +0.9125,0.98749995,0.13363475,0.06681746 +0.9125,0.98749995,0.11905497,0.11905497 +0.9125,0.98749995,0.08418465,0.16836923 +0.9125,0.98749995,0.1683693,0.08418459 +0.9375,0.0125,0.07500005,0.075 +0.9375,0.012499997,0.053033113,0.10606602 +0.9375,0.012499999,0.10606599,0.05303301 +0.9375,0.012499999,0.094494104,0.09449408 +0.9375,0.012500001,0.06681752,0.1336348 +0.9375,0.012499999,0.1336348,0.0668174 +0.9375,0.012500001,0.11905503,0.11905508 +0.9375,0.012499999,0.08418465,0.1683693 +0.9375,0.012500002,0.1683693,0.084184654 +0.9375,0.0375,0.07500005,0.075 +0.9375,0.037499998,0.053033113,0.10606601 +0.9375,0.0375,0.10606599,0.05303301 +0.9375,0.0375,0.094494104,0.094494075 +0.9375,0.0375,0.06681752,0.1336348 +0.9375,0.0375,0.1336348,0.0668174 +0.9375,0.0375,0.11905503,0.11905508 +0.9375,0.0375,0.08418465,0.16836931 +0.9375,0.0375,0.1683693,0.08418466 +0.9375,0.0625,0.07500005,0.075 +0.9375,0.0625,0.053033113,0.10606602 +0.9375,0.0625,0.10606599,0.05303301 +0.9375,0.0625,0.094494104,0.094494075 +0.9375,0.0625,0.06681752,0.1336348 +0.9375,0.0625,0.1336348,0.0668174 +0.9375,0.0625,0.11905503,0.11905508 +0.9375,0.0625,0.08418465,0.16836932 +0.9375,0.0625,0.1683693,0.08418465 +0.9375,0.0875,0.07500005,0.075 +0.9375,0.08749999,0.053033113,0.10606601 +0.9375,0.087500006,0.10606599,0.053033013 +0.9375,0.087500006,0.094494104,0.09449408 +0.9375,0.087500006,0.06681752,0.1336348 +0.9375,0.0875,0.1336348,0.0668174 +0.9375,0.0875,0.11905503,0.11905508 +0.9375,0.0875,0.08418465,0.16836931 +0.9375,0.087500006,0.1683693,0.084184654 +0.9375,0.112500004,0.07500005,0.075 +0.9375,0.1125,0.053033113,0.10606601 +0.9375,0.112500004,0.10606599,0.05303301 +0.9375,0.1125,0.094494104,0.094494075 +0.9375,0.1125,0.06681752,0.1336348 +0.9375,0.1125,0.1336348,0.0668174 +0.9375,0.1125,0.11905503,0.119055085 +0.9375,0.112500004,0.08418465,0.16836931 +0.9375,0.1125,0.1683693,0.08418465 +0.9375,0.1375,0.07500005,0.074999996 +0.9375,0.1375,0.053033113,0.10606602 +0.9375,0.1375,0.10606599,0.053033024 +0.9375,0.1375,0.094494104,0.09449408 +0.9375,0.1375,0.06681752,0.1336348 +0.9375,0.1375,0.1336348,0.0668174 +0.9375,0.13749999,0.11905503,0.11905508 +0.9375,0.1375,0.08418465,0.1683693 +0.9375,0.1375,0.1683693,0.084184654 +0.9375,0.1625,0.07500005,0.075 +0.9375,0.16250001,0.053033113,0.106066026 +0.9375,0.1625,0.10606599,0.05303301 +0.9375,0.1625,0.094494104,0.094494075 +0.9375,0.1625,0.06681752,0.1336348 +0.9375,0.1625,0.1336348,0.0668174 +0.9375,0.1625,0.11905503,0.11905508 +0.9375,0.1625,0.08418465,0.1683693 +0.9375,0.1625,0.1683693,0.08418464 +0.9375,0.1875,0.07500005,0.07499999 +0.9375,0.1875,0.053033113,0.10606603 +0.9375,0.1875,0.10606599,0.053033024 +0.9375,0.1875,0.094494104,0.09449406 +0.9375,0.1875,0.06681752,0.1336348 +0.9375,0.1875,0.1336348,0.06681742 +0.9375,0.1875,0.11905503,0.11905509 +0.9375,0.1875,0.08418465,0.16836931 +0.9375,0.1875,0.1683693,0.08418465 +0.9375,0.2125,0.07500005,0.075 +0.9375,0.2125,0.053033113,0.10606603 +0.9375,0.2125,0.10606599,0.05303301 +0.9375,0.21249999,0.094494104,0.094494075 +0.9375,0.2125,0.06681752,0.1336348 +0.9375,0.2125,0.1336348,0.0668174 +0.9375,0.2125,0.11905503,0.11905509 +0.9375,0.2125,0.08418465,0.16836931 +0.9375,0.2125,0.1683693,0.08418465 +0.9375,0.23750001,0.07500005,0.075 +0.9375,0.2375,0.053033113,0.10606602 +0.9375,0.2375,0.10606599,0.053033024 +0.9375,0.2375,0.094494104,0.094494075 +0.9375,0.23750001,0.06681752,0.13363482 +0.9375,0.2375,0.1336348,0.06681743 +0.9375,0.2375,0.11905503,0.11905506 +0.9375,0.2375,0.08418465,0.16836932 +0.9375,0.23750001,0.1683693,0.08418466 +0.9375,0.2625,0.07500005,0.07500002 +0.9375,0.2625,0.053033113,0.10606603 +0.9375,0.2625,0.10606599,0.053033024 +0.9375,0.2625,0.094494104,0.094494075 +0.9375,0.2625,0.06681752,0.13363479 +0.9375,0.2625,0.1336348,0.06681743 +0.9375,0.2625,0.11905503,0.11905508 +0.9375,0.2625,0.08418465,0.1683693 +0.9375,0.2625,0.1683693,0.08418463 +0.9375,0.2875,0.07500005,0.07499999 +0.9375,0.2875,0.053033113,0.10606603 +0.9375,0.28750002,0.10606599,0.053033024 +0.9375,0.2875,0.094494104,0.094494045 +0.9375,0.2875,0.06681752,0.1336348 +0.9375,0.28750002,0.1336348,0.06681743 +0.9375,0.2875,0.11905503,0.11905508 +0.9375,0.2875,0.08418465,0.1683693 +0.9375,0.2875,0.1683693,0.08418465 +0.9375,0.3125,0.07500005,0.07499999 +0.9375,0.3125,0.053033113,0.10606605 +0.9375,0.3125,0.10606599,0.053032994 +0.9375,0.3125,0.094494104,0.094494045 +0.9375,0.3125,0.06681752,0.1336348 +0.9375,0.3125,0.1336348,0.0668174 +0.9375,0.3125,0.11905503,0.11905509 +0.9375,0.3125,0.08418465,0.1683693 +0.9375,0.3125,0.1683693,0.08418465 +0.9375,0.3375,0.07500005,0.07499999 +0.9375,0.3375,0.053033113,0.10606605 +0.9375,0.33749998,0.10606599,0.053033024 +0.9375,0.3375,0.094494104,0.094494045 +0.9375,0.33750004,0.06681752,0.13363484 +0.9375,0.33749998,0.1336348,0.06681743 +0.9375,0.3375,0.11905503,0.11905509 +0.9375,0.3375,0.08418465,0.1683693 +0.9375,0.3375,0.1683693,0.08418465 +0.9375,0.3625,0.07500005,0.07500002 +0.9375,0.3625,0.053033113,0.10606602 +0.9375,0.3625,0.10606599,0.053033024 +0.9375,0.3625,0.094494104,0.094494075 +0.9375,0.3625,0.06681752,0.1336348 +0.9375,0.3625,0.1336348,0.06681743 +0.9375,0.3625,0.11905503,0.11905506 +0.9375,0.3625,0.08418465,0.1683693 +0.9375,0.3625,0.1683693,0.08418465 +0.9375,0.3875,0.07500005,0.07500002 +0.9375,0.3875,0.053033113,0.10606602 +0.9375,0.3875,0.10606599,0.053032994 +0.9375,0.3875,0.094494104,0.094494075 +0.9375,0.3875,0.06681752,0.13363484 +0.9375,0.3875,0.1336348,0.0668174 +0.9375,0.3875,0.11905503,0.11905506 +0.9375,0.3875,0.08418465,0.1683693 +0.9375,0.3875,0.1683693,0.08418465 +0.9375,0.4125,0.07500005,0.07499999 +0.9375,0.4125,0.053033113,0.10606605 +0.9375,0.4125,0.10606599,0.053032994 +0.9375,0.4125,0.094494104,0.094494045 +0.9375,0.41250002,0.06681752,0.13363484 +0.9375,0.4125,0.1336348,0.0668174 +0.9375,0.4125,0.11905503,0.11905509 +0.9375,0.4125,0.08418465,0.1683693 +0.9375,0.4125,0.1683693,0.08418465 +0.9375,0.4375,0.07500005,0.07499999 +0.9375,0.4375,0.053033113,0.10606605 +0.9375,0.4375,0.10606599,0.053032994 +0.9375,0.4375,0.094494104,0.094494045 +0.9375,0.4375,0.06681752,0.1336348 +0.9375,0.4375,0.1336348,0.0668174 +0.9375,0.4375,0.11905503,0.11905509 +0.9375,0.4375,0.08418465,0.1683693 +0.9375,0.4375,0.1683693,0.08418465 +0.9375,0.4625,0.07500005,0.07499999 +0.9375,0.4625,0.053033113,0.10606605 +0.9375,0.46249998,0.10606599,0.053032964 +0.9375,0.4625,0.094494104,0.094494045 +0.9375,0.46250004,0.06681752,0.13363484 +0.9375,0.46249998,0.1336348,0.06681737 +0.9375,0.4625,0.11905503,0.11905509 +0.9375,0.46249998,0.08418465,0.16836926 +0.9375,0.46249998,0.1683693,0.08418462 +0.9375,0.48749998,0.07500005,0.07499999 +0.9375,0.4875,0.053033113,0.10606602 +0.9375,0.4875,0.10606599,0.053032994 +0.9375,0.48749998,0.094494104,0.094494045 +0.9375,0.4875,0.06681752,0.13363484 +0.9375,0.4875,0.1336348,0.0668174 +0.9375,0.4875,0.11905503,0.11905506 +0.9375,0.4875,0.08418465,0.1683693 +0.9375,0.4875,0.1683693,0.08418465 +0.9375,0.5125,0.07500005,0.07500002 +0.9375,0.51250005,0.053033113,0.10606605 +0.9375,0.5125,0.10606599,0.053032964 +0.9375,0.5125,0.094494104,0.094494075 +0.9375,0.51250005,0.06681752,0.13363487 +0.9375,0.5125,0.1336348,0.06681737 +0.9375,0.51250005,0.11905503,0.11905509 +0.9375,0.5125,0.08418465,0.1683693 +0.9375,0.5125,0.1683693,0.08418465 +0.9375,0.5375,0.07500005,0.07499999 +0.9375,0.5375,0.053033113,0.10606605 +0.9375,0.5375,0.10606599,0.053032935 +0.9375,0.5375,0.094494104,0.094494045 +0.9375,0.5375,0.06681752,0.13363487 +0.9375,0.5375,0.1336348,0.06681734 +0.9375,0.5375,0.11905503,0.11905509 +0.9375,0.5375,0.08418465,0.16836932 +0.9375,0.5375,0.1683693,0.08418468 +0.9375,0.5625,0.07500005,0.07500005 +0.9375,0.5625,0.053033113,0.10606599 +0.9375,0.5625,0.10606599,0.053032994 +0.9375,0.5625,0.094494104,0.094494104 +0.9375,0.5625,0.06681752,0.13363484 +0.9375,0.5625,0.1336348,0.0668174 +0.9375,0.5625,0.11905503,0.11905503 +0.9375,0.5625,0.08418465,0.1683693 +0.9375,0.5625,0.1683693,0.08418465 +0.9375,0.5875,0.07500005,0.07499999 +0.9375,0.5875,0.053033113,0.10606605 +0.9375,0.5875,0.10606599,0.053032935 +0.9375,0.5875,0.094494104,0.094494045 +0.9375,0.5875,0.06681752,0.13363487 +0.9375,0.5875,0.1336348,0.06681734 +0.9375,0.5875,0.11905503,0.11905509 +0.9375,0.5875,0.08418465,0.1683693 +0.9375,0.5875,0.1683693,0.08418465 +0.9375,0.61249995,0.07500005,0.07499999 +0.9375,0.61249995,0.053033113,0.10606605 +0.9375,0.6125,0.10606599,0.053032994 +0.9375,0.61249995,0.094494104,0.094494045 +0.9375,0.61249995,0.06681752,0.13363487 +0.9375,0.6125,0.1336348,0.0668174 +0.9375,0.61249995,0.11905503,0.11905509 +0.9375,0.6125,0.08418465,0.1683693 +0.9375,0.6125,0.1683693,0.08418465 +0.9375,0.63750005,0.07500005,0.07499999 +0.9375,0.63750005,0.053033113,0.10606605 +0.9375,0.6375,0.10606599,0.053032994 +0.9375,0.63750005,0.094494104,0.094494045 +0.9375,0.63750005,0.06681752,0.13363487 +0.9375,0.6375,0.1336348,0.0668174 +0.9375,0.63750005,0.11905503,0.11905509 +0.9375,0.6375,0.08418465,0.1683693 +0.9375,0.6375,0.1683693,0.08418465 +0.9375,0.6625,0.07500005,0.07499999 +0.9375,0.6625,0.053033113,0.10606605 +0.9375,0.6625,0.10606599,0.053032935 +0.9375,0.6625,0.094494104,0.094494045 +0.9375,0.6625,0.06681752,0.13363487 +0.9375,0.6625,0.1336348,0.06681734 +0.9375,0.6625,0.11905503,0.11905509 +0.9375,0.6625,0.08418465,0.1683693 +0.9375,0.6625,0.1683693,0.08418465 +0.9375,0.6875,0.07500005,0.07500005 +0.9375,0.6875,0.053033113,0.10606599 +0.9375,0.6875,0.10606599,0.053032994 +0.9375,0.6875,0.094494104,0.094494104 +0.9375,0.6875,0.06681752,0.1336348 +0.9375,0.6875,0.1336348,0.0668174 +0.9375,0.6875,0.11905503,0.11905503 +0.9375,0.6875,0.08418465,0.1683693 +0.9375,0.6875,0.1683693,0.08418465 +0.9375,0.7125,0.07500005,0.07499999 +0.9375,0.7125,0.053033113,0.10606605 +0.9375,0.7125,0.10606599,0.053032935 +0.9375,0.7125,0.094494104,0.094494045 +0.9375,0.7125,0.06681752,0.13363487 +0.9375,0.7125,0.1336348,0.06681734 +0.9375,0.7125,0.11905503,0.11905509 +0.9375,0.7125,0.08418465,0.1683693 +0.9375,0.7125,0.1683693,0.08418465 +0.9375,0.73749995,0.07500005,0.07499999 +0.9375,0.73749995,0.053033113,0.10606605 +0.9375,0.7375,0.10606599,0.053032994 +0.9375,0.73749995,0.094494104,0.094494045 +0.9375,0.73749995,0.06681752,0.1336348 +0.9375,0.7375,0.1336348,0.0668174 +0.9375,0.73749995,0.11905503,0.11905509 +0.9375,0.7375,0.08418465,0.1683693 +0.9375,0.7375,0.1683693,0.08418465 +0.9375,0.76250005,0.07500005,0.07499999 +0.9375,0.7625,0.053033113,0.10606599 +0.9375,0.7625,0.10606599,0.053032994 +0.9375,0.76250005,0.094494104,0.094494045 +0.9375,0.7625,0.06681752,0.1336348 +0.9375,0.7625,0.1336348,0.0668174 +0.9375,0.7625,0.11905503,0.11905503 +0.9375,0.7625,0.08418465,0.1683693 +0.9375,0.7625,0.1683693,0.08418465 +0.9375,0.7875,0.07500005,0.07499999 +0.9375,0.78749996,0.053033113,0.10606599 +0.9375,0.7875,0.10606599,0.053032994 +0.9375,0.7875,0.094494104,0.094494045 +0.9375,0.78749996,0.06681752,0.1336348 +0.9375,0.7875,0.1336348,0.0668174 +0.9375,0.78749996,0.11905503,0.11905503 +0.9375,0.7875,0.08418465,0.1683693 +0.9375,0.7875,0.1683693,0.08418465 +0.9375,0.8125,0.07500005,0.07500005 +0.9375,0.8125,0.053033113,0.10606599 +0.9375,0.8125,0.10606599,0.053033054 +0.9375,0.8125,0.094494104,0.094494104 +0.9375,0.8125,0.06681752,0.1336348 +0.9375,0.8125,0.1336348,0.06681746 +0.9375,0.8125,0.11905503,0.11905503 +0.9375,0.8125,0.08418465,0.1683693 +0.9375,0.8125,0.1683693,0.08418465 +0.9375,0.8375,0.07500005,0.07499999 +0.9375,0.8375,0.053033113,0.10606599 +0.9375,0.8375,0.10606599,0.053033054 +0.9375,0.8375,0.094494104,0.094494045 +0.9375,0.8375,0.06681752,0.1336348 +0.9375,0.8375,0.1336348,0.06681746 +0.9375,0.8375,0.11905503,0.11905503 +0.9375,0.8375,0.08418465,0.1683693 +0.9375,0.8375,0.1683693,0.08418465 +0.9375,0.86249995,0.07500005,0.07499999 +0.9375,0.86249995,0.053033113,0.10606593 +0.9375,0.86249995,0.10606599,0.053033054 +0.9375,0.86249995,0.094494104,0.094494045 +0.9375,0.86249995,0.06681752,0.1336348 +0.9375,0.86249995,0.1336348,0.06681746 +0.9375,0.86249995,0.11905503,0.11905497 +0.9375,0.8625,0.08418465,0.1683693 +0.9375,0.8625,0.1683693,0.08418465 +0.9375,0.88750005,0.07500005,0.07499999 +0.9375,0.88750005,0.053033113,0.10606593 +0.9375,0.88750005,0.10606599,0.053033054 +0.9375,0.88750005,0.094494104,0.094494045 +0.9375,0.88750005,0.06681752,0.13363475 +0.9375,0.88750005,0.1336348,0.06681746 +0.9375,0.88750005,0.11905503,0.11905497 +0.9375,0.8875,0.08418465,0.1683693 +0.9375,0.8875,0.1683693,0.08418465 +0.9375,0.9125,0.07500005,0.07499999 +0.9375,0.9125,0.053033113,0.10606593 +0.9375,0.9125,0.10606599,0.053033054 +0.9375,0.9125,0.094494104,0.094494045 +0.9375,0.9125,0.06681752,0.13363475 +0.9375,0.9125,0.1336348,0.06681746 +0.9375,0.9125,0.11905503,0.11905497 +0.9375,0.9125,0.08418465,0.1683693 +0.9375,0.9125,0.1683693,0.08418465 +0.9375,0.9375,0.07500005,0.07500005 +0.9375,0.9375,0.053033113,0.10606599 +0.9375,0.9375,0.10606599,0.053033113 +0.9375,0.9375,0.094494104,0.094494104 +0.9375,0.9375,0.06681752,0.1336348 +0.9375,0.9375,0.1336348,0.06681752 +0.9375,0.9375,0.11905503,0.11905503 +0.9375,0.9375,0.08418465,0.1683693 +0.9375,0.9375,0.1683693,0.08418465 +0.9375,0.9625,0.07500005,0.07499999 +0.9375,0.9625,0.053033113,0.10606593 +0.9375,0.9625,0.10606599,0.053033054 +0.9375,0.9625,0.094494104,0.094494045 +0.9375,0.9625,0.06681752,0.13363475 +0.9375,0.9625,0.1336348,0.06681746 +0.9375,0.9625,0.11905503,0.11905497 +0.9375,0.9625,0.08418465,0.1683693 +0.9375,0.9625,0.1683693,0.08418465 +0.9375,0.98749995,0.07500005,0.07499999 +0.9375,0.98749995,0.053033113,0.10606593 +0.9375,0.98749995,0.10606599,0.053033054 +0.9375,0.98749995,0.094494104,0.094494045 +0.9375,0.98749995,0.06681752,0.13363475 +0.9375,0.98749995,0.1336348,0.06681746 +0.9375,0.98749995,0.11905503,0.11905497 +0.9375,0.98749995,0.08418465,0.16836923 +0.9375,0.98749995,0.1683693,0.08418459 +0.9625,0.0125,0.07499999,0.075 +0.9625,0.012499997,0.053033054,0.10606602 +0.9625,0.012499999,0.10606593,0.05303301 +0.9625,0.012499999,0.094494045,0.09449408 +0.9625,0.012500001,0.06681746,0.1336348 +0.9625,0.012499999,0.13363475,0.0668174 +0.9625,0.012500001,0.11905497,0.11905508 +0.9625,0.012499999,0.08418465,0.1683693 +0.9625,0.012500002,0.1683693,0.084184654 +0.9625,0.0375,0.07499999,0.075 +0.9625,0.037499998,0.053033054,0.10606601 +0.9625,0.0375,0.10606593,0.05303301 +0.9625,0.0375,0.094494045,0.094494075 +0.9625,0.0375,0.06681746,0.1336348 +0.9625,0.0375,0.13363475,0.0668174 +0.9625,0.0375,0.11905497,0.11905508 +0.9625,0.0375,0.08418465,0.16836931 +0.9625,0.0375,0.1683693,0.08418466 +0.9625,0.0625,0.07499999,0.075 +0.9625,0.0625,0.053033054,0.10606602 +0.9625,0.0625,0.10606593,0.05303301 +0.9625,0.0625,0.094494045,0.094494075 +0.9625,0.0625,0.06681746,0.1336348 +0.9625,0.0625,0.13363475,0.0668174 +0.9625,0.0625,0.11905497,0.11905508 +0.9625,0.0625,0.08418465,0.16836932 +0.9625,0.0625,0.1683693,0.08418465 +0.9625,0.0875,0.07499999,0.075 +0.9625,0.08749999,0.053033054,0.10606601 +0.9625,0.087500006,0.10606593,0.053033013 +0.9625,0.087500006,0.094494045,0.09449408 +0.9625,0.087500006,0.06681746,0.1336348 +0.9625,0.0875,0.13363475,0.0668174 +0.9625,0.0875,0.11905497,0.11905508 +0.9625,0.0875,0.08418465,0.16836931 +0.9625,0.087500006,0.1683693,0.084184654 +0.9625,0.112500004,0.07499999,0.075 +0.9625,0.1125,0.053033054,0.10606601 +0.9625,0.112500004,0.10606593,0.05303301 +0.9625,0.1125,0.094494045,0.094494075 +0.9625,0.1125,0.06681746,0.1336348 +0.9625,0.1125,0.13363475,0.0668174 +0.9625,0.1125,0.11905497,0.119055085 +0.9625,0.112500004,0.08418465,0.16836931 +0.9625,0.1125,0.1683693,0.08418465 +0.9625,0.1375,0.07499999,0.074999996 +0.9625,0.1375,0.053033054,0.10606602 +0.9625,0.1375,0.10606593,0.053033024 +0.9625,0.1375,0.094494045,0.09449408 +0.9625,0.1375,0.06681746,0.1336348 +0.9625,0.1375,0.13363475,0.0668174 +0.9625,0.13749999,0.11905497,0.11905508 +0.9625,0.1375,0.08418465,0.1683693 +0.9625,0.1375,0.1683693,0.084184654 +0.9625,0.1625,0.07499999,0.075 +0.9625,0.16250001,0.053033054,0.106066026 +0.9625,0.1625,0.10606593,0.05303301 +0.9625,0.1625,0.094494045,0.094494075 +0.9625,0.1625,0.06681746,0.1336348 +0.9625,0.1625,0.13363475,0.0668174 +0.9625,0.1625,0.11905497,0.11905508 +0.9625,0.1625,0.08418465,0.1683693 +0.9625,0.1625,0.1683693,0.08418464 +0.9625,0.1875,0.07499999,0.07499999 +0.9625,0.1875,0.053033054,0.10606603 +0.9625,0.1875,0.10606593,0.053033024 +0.9625,0.1875,0.094494045,0.09449406 +0.9625,0.1875,0.06681746,0.1336348 +0.9625,0.1875,0.13363475,0.06681742 +0.9625,0.1875,0.11905497,0.11905509 +0.9625,0.1875,0.08418465,0.16836931 +0.9625,0.1875,0.1683693,0.08418465 +0.9625,0.2125,0.07499999,0.075 +0.9625,0.2125,0.053033054,0.10606603 +0.9625,0.2125,0.10606593,0.05303301 +0.9625,0.21249999,0.094494045,0.094494075 +0.9625,0.2125,0.06681746,0.1336348 +0.9625,0.2125,0.13363475,0.0668174 +0.9625,0.2125,0.11905497,0.11905509 +0.9625,0.2125,0.08418465,0.16836931 +0.9625,0.2125,0.1683693,0.08418465 +0.9625,0.23750001,0.07499999,0.075 +0.9625,0.2375,0.053033054,0.10606602 +0.9625,0.2375,0.10606593,0.053033024 +0.9625,0.2375,0.094494045,0.094494075 +0.9625,0.23750001,0.06681746,0.13363482 +0.9625,0.2375,0.13363475,0.06681743 +0.9625,0.2375,0.11905497,0.11905506 +0.9625,0.2375,0.08418465,0.16836932 +0.9625,0.23750001,0.1683693,0.08418466 +0.9625,0.2625,0.07499999,0.07500002 +0.9625,0.2625,0.053033054,0.10606603 +0.9625,0.2625,0.10606593,0.053033024 +0.9625,0.2625,0.094494045,0.094494075 +0.9625,0.2625,0.06681746,0.13363479 +0.9625,0.2625,0.13363475,0.06681743 +0.9625,0.2625,0.11905497,0.11905508 +0.9625,0.2625,0.08418465,0.1683693 +0.9625,0.2625,0.1683693,0.08418463 +0.9625,0.2875,0.07499999,0.07499999 +0.9625,0.2875,0.053033054,0.10606603 +0.9625,0.28750002,0.10606593,0.053033024 +0.9625,0.2875,0.094494045,0.094494045 +0.9625,0.2875,0.06681746,0.1336348 +0.9625,0.28750002,0.13363475,0.06681743 +0.9625,0.2875,0.11905497,0.11905508 +0.9625,0.2875,0.08418465,0.1683693 +0.9625,0.2875,0.1683693,0.08418465 +0.9625,0.3125,0.07499999,0.07499999 +0.9625,0.3125,0.053033054,0.10606605 +0.9625,0.3125,0.10606593,0.053032994 +0.9625,0.3125,0.094494045,0.094494045 +0.9625,0.3125,0.06681746,0.1336348 +0.9625,0.3125,0.13363475,0.0668174 +0.9625,0.3125,0.11905497,0.11905509 +0.9625,0.3125,0.08418465,0.1683693 +0.9625,0.3125,0.1683693,0.08418465 +0.9625,0.3375,0.07499999,0.07499999 +0.9625,0.3375,0.053033054,0.10606605 +0.9625,0.33749998,0.10606593,0.053033024 +0.9625,0.3375,0.094494045,0.094494045 +0.9625,0.33750004,0.06681746,0.13363484 +0.9625,0.33749998,0.13363475,0.06681743 +0.9625,0.3375,0.11905497,0.11905509 +0.9625,0.3375,0.08418465,0.1683693 +0.9625,0.3375,0.1683693,0.08418465 +0.9625,0.3625,0.07499999,0.07500002 +0.9625,0.3625,0.053033054,0.10606602 +0.9625,0.3625,0.10606593,0.053033024 +0.9625,0.3625,0.094494045,0.094494075 +0.9625,0.3625,0.06681746,0.1336348 +0.9625,0.3625,0.13363475,0.06681743 +0.9625,0.3625,0.11905497,0.11905506 +0.9625,0.3625,0.08418465,0.1683693 +0.9625,0.3625,0.1683693,0.08418465 +0.9625,0.3875,0.07499999,0.07500002 +0.9625,0.3875,0.053033054,0.10606602 +0.9625,0.3875,0.10606593,0.053032994 +0.9625,0.3875,0.094494045,0.094494075 +0.9625,0.3875,0.06681746,0.13363484 +0.9625,0.3875,0.13363475,0.0668174 +0.9625,0.3875,0.11905497,0.11905506 +0.9625,0.3875,0.08418465,0.1683693 +0.9625,0.3875,0.1683693,0.08418465 +0.9625,0.4125,0.07499999,0.07499999 +0.9625,0.4125,0.053033054,0.10606605 +0.9625,0.4125,0.10606593,0.053032994 +0.9625,0.4125,0.094494045,0.094494045 +0.9625,0.41250002,0.06681746,0.13363484 +0.9625,0.4125,0.13363475,0.0668174 +0.9625,0.4125,0.11905497,0.11905509 +0.9625,0.4125,0.08418465,0.1683693 +0.9625,0.4125,0.1683693,0.08418465 +0.9625,0.4375,0.07499999,0.07499999 +0.9625,0.4375,0.053033054,0.10606605 +0.9625,0.4375,0.10606593,0.053032994 +0.9625,0.4375,0.094494045,0.094494045 +0.9625,0.4375,0.06681746,0.1336348 +0.9625,0.4375,0.13363475,0.0668174 +0.9625,0.4375,0.11905497,0.11905509 +0.9625,0.4375,0.08418465,0.1683693 +0.9625,0.4375,0.1683693,0.08418465 +0.9625,0.4625,0.07499999,0.07499999 +0.9625,0.4625,0.053033054,0.10606605 +0.9625,0.46249998,0.10606593,0.053032964 +0.9625,0.4625,0.094494045,0.094494045 +0.9625,0.46250004,0.06681746,0.13363484 +0.9625,0.46249998,0.13363475,0.06681737 +0.9625,0.4625,0.11905497,0.11905509 +0.9625,0.46249998,0.08418465,0.16836926 +0.9625,0.46249998,0.1683693,0.08418462 +0.9625,0.48749998,0.07499999,0.07499999 +0.9625,0.4875,0.053033054,0.10606602 +0.9625,0.4875,0.10606593,0.053032994 +0.9625,0.48749998,0.094494045,0.094494045 +0.9625,0.4875,0.06681746,0.13363484 +0.9625,0.4875,0.13363475,0.0668174 +0.9625,0.4875,0.11905497,0.11905506 +0.9625,0.4875,0.08418465,0.1683693 +0.9625,0.4875,0.1683693,0.08418465 +0.9625,0.5125,0.07499999,0.07500002 +0.9625,0.51250005,0.053033054,0.10606605 +0.9625,0.5125,0.10606593,0.053032964 +0.9625,0.5125,0.094494045,0.094494075 +0.9625,0.51250005,0.06681746,0.13363487 +0.9625,0.5125,0.13363475,0.06681737 +0.9625,0.51250005,0.11905497,0.11905509 +0.9625,0.5125,0.08418465,0.1683693 +0.9625,0.5125,0.1683693,0.08418465 +0.9625,0.5375,0.07499999,0.07499999 +0.9625,0.5375,0.053033054,0.10606605 +0.9625,0.5375,0.10606593,0.053032935 +0.9625,0.5375,0.094494045,0.094494045 +0.9625,0.5375,0.06681746,0.13363487 +0.9625,0.5375,0.13363475,0.06681734 +0.9625,0.5375,0.11905497,0.11905509 +0.9625,0.5375,0.08418465,0.16836932 +0.9625,0.5375,0.1683693,0.08418468 +0.9625,0.5625,0.07499999,0.07500005 +0.9625,0.5625,0.053033054,0.10606599 +0.9625,0.5625,0.10606593,0.053032994 +0.9625,0.5625,0.094494045,0.094494104 +0.9625,0.5625,0.06681746,0.13363484 +0.9625,0.5625,0.13363475,0.0668174 +0.9625,0.5625,0.11905497,0.11905503 +0.9625,0.5625,0.08418465,0.1683693 +0.9625,0.5625,0.1683693,0.08418465 +0.9625,0.5875,0.07499999,0.07499999 +0.9625,0.5875,0.053033054,0.10606605 +0.9625,0.5875,0.10606593,0.053032935 +0.9625,0.5875,0.094494045,0.094494045 +0.9625,0.5875,0.06681746,0.13363487 +0.9625,0.5875,0.13363475,0.06681734 +0.9625,0.5875,0.11905497,0.11905509 +0.9625,0.5875,0.08418465,0.1683693 +0.9625,0.5875,0.1683693,0.08418465 +0.9625,0.61249995,0.07499999,0.07499999 +0.9625,0.61249995,0.053033054,0.10606605 +0.9625,0.6125,0.10606593,0.053032994 +0.9625,0.61249995,0.094494045,0.094494045 +0.9625,0.61249995,0.06681746,0.13363487 +0.9625,0.6125,0.13363475,0.0668174 +0.9625,0.61249995,0.11905497,0.11905509 +0.9625,0.6125,0.08418465,0.1683693 +0.9625,0.6125,0.1683693,0.08418465 +0.9625,0.63750005,0.07499999,0.07499999 +0.9625,0.63750005,0.053033054,0.10606605 +0.9625,0.6375,0.10606593,0.053032994 +0.9625,0.63750005,0.094494045,0.094494045 +0.9625,0.63750005,0.06681746,0.13363487 +0.9625,0.6375,0.13363475,0.0668174 +0.9625,0.63750005,0.11905497,0.11905509 +0.9625,0.6375,0.08418465,0.1683693 +0.9625,0.6375,0.1683693,0.08418465 +0.9625,0.6625,0.07499999,0.07499999 +0.9625,0.6625,0.053033054,0.10606605 +0.9625,0.6625,0.10606593,0.053032935 +0.9625,0.6625,0.094494045,0.094494045 +0.9625,0.6625,0.06681746,0.13363487 +0.9625,0.6625,0.13363475,0.06681734 +0.9625,0.6625,0.11905497,0.11905509 +0.9625,0.6625,0.08418465,0.1683693 +0.9625,0.6625,0.1683693,0.08418465 +0.9625,0.6875,0.07499999,0.07500005 +0.9625,0.6875,0.053033054,0.10606599 +0.9625,0.6875,0.10606593,0.053032994 +0.9625,0.6875,0.094494045,0.094494104 +0.9625,0.6875,0.06681746,0.1336348 +0.9625,0.6875,0.13363475,0.0668174 +0.9625,0.6875,0.11905497,0.11905503 +0.9625,0.6875,0.08418465,0.1683693 +0.9625,0.6875,0.1683693,0.08418465 +0.9625,0.7125,0.07499999,0.07499999 +0.9625,0.7125,0.053033054,0.10606605 +0.9625,0.7125,0.10606593,0.053032935 +0.9625,0.7125,0.094494045,0.094494045 +0.9625,0.7125,0.06681746,0.13363487 +0.9625,0.7125,0.13363475,0.06681734 +0.9625,0.7125,0.11905497,0.11905509 +0.9625,0.7125,0.08418465,0.1683693 +0.9625,0.7125,0.1683693,0.08418465 +0.9625,0.73749995,0.07499999,0.07499999 +0.9625,0.73749995,0.053033054,0.10606605 +0.9625,0.7375,0.10606593,0.053032994 +0.9625,0.73749995,0.094494045,0.094494045 +0.9625,0.73749995,0.06681746,0.1336348 +0.9625,0.7375,0.13363475,0.0668174 +0.9625,0.73749995,0.11905497,0.11905509 +0.9625,0.7375,0.08418465,0.1683693 +0.9625,0.7375,0.1683693,0.08418465 +0.9625,0.76250005,0.07499999,0.07499999 +0.9625,0.7625,0.053033054,0.10606599 +0.9625,0.7625,0.10606593,0.053032994 +0.9625,0.76250005,0.094494045,0.094494045 +0.9625,0.7625,0.06681746,0.1336348 +0.9625,0.7625,0.13363475,0.0668174 +0.9625,0.7625,0.11905497,0.11905503 +0.9625,0.7625,0.08418465,0.1683693 +0.9625,0.7625,0.1683693,0.08418465 +0.9625,0.7875,0.07499999,0.07499999 +0.9625,0.78749996,0.053033054,0.10606599 +0.9625,0.7875,0.10606593,0.053032994 +0.9625,0.7875,0.094494045,0.094494045 +0.9625,0.78749996,0.06681746,0.1336348 +0.9625,0.7875,0.13363475,0.0668174 +0.9625,0.78749996,0.11905497,0.11905503 +0.9625,0.7875,0.08418465,0.1683693 +0.9625,0.7875,0.1683693,0.08418465 +0.9625,0.8125,0.07499999,0.07500005 +0.9625,0.8125,0.053033054,0.10606599 +0.9625,0.8125,0.10606593,0.053033054 +0.9625,0.8125,0.094494045,0.094494104 +0.9625,0.8125,0.06681746,0.1336348 +0.9625,0.8125,0.13363475,0.06681746 +0.9625,0.8125,0.11905497,0.11905503 +0.9625,0.8125,0.08418465,0.1683693 +0.9625,0.8125,0.1683693,0.08418465 +0.9625,0.8375,0.07499999,0.07499999 +0.9625,0.8375,0.053033054,0.10606599 +0.9625,0.8375,0.10606593,0.053033054 +0.9625,0.8375,0.094494045,0.094494045 +0.9625,0.8375,0.06681746,0.1336348 +0.9625,0.8375,0.13363475,0.06681746 +0.9625,0.8375,0.11905497,0.11905503 +0.9625,0.8375,0.08418465,0.1683693 +0.9625,0.8375,0.1683693,0.08418465 +0.9625,0.86249995,0.07499999,0.07499999 +0.9625,0.86249995,0.053033054,0.10606593 +0.9625,0.86249995,0.10606593,0.053033054 +0.9625,0.86249995,0.094494045,0.094494045 +0.9625,0.86249995,0.06681746,0.1336348 +0.9625,0.86249995,0.13363475,0.06681746 +0.9625,0.86249995,0.11905497,0.11905497 +0.9625,0.8625,0.08418465,0.1683693 +0.9625,0.8625,0.1683693,0.08418465 +0.9625,0.88750005,0.07499999,0.07499999 +0.9625,0.88750005,0.053033054,0.10606593 +0.9625,0.88750005,0.10606593,0.053033054 +0.9625,0.88750005,0.094494045,0.094494045 +0.9625,0.88750005,0.06681746,0.13363475 +0.9625,0.88750005,0.13363475,0.06681746 +0.9625,0.88750005,0.11905497,0.11905497 +0.9625,0.8875,0.08418465,0.1683693 +0.9625,0.8875,0.1683693,0.08418465 +0.9625,0.9125,0.07499999,0.07499999 +0.9625,0.9125,0.053033054,0.10606593 +0.9625,0.9125,0.10606593,0.053033054 +0.9625,0.9125,0.094494045,0.094494045 +0.9625,0.9125,0.06681746,0.13363475 +0.9625,0.9125,0.13363475,0.06681746 +0.9625,0.9125,0.11905497,0.11905497 +0.9625,0.9125,0.08418465,0.1683693 +0.9625,0.9125,0.1683693,0.08418465 +0.9625,0.9375,0.07499999,0.07500005 +0.9625,0.9375,0.053033054,0.10606599 +0.9625,0.9375,0.10606593,0.053033113 +0.9625,0.9375,0.094494045,0.094494104 +0.9625,0.9375,0.06681746,0.1336348 +0.9625,0.9375,0.13363475,0.06681752 +0.9625,0.9375,0.11905497,0.11905503 +0.9625,0.9375,0.08418465,0.1683693 +0.9625,0.9375,0.1683693,0.08418465 +0.9625,0.9625,0.07499999,0.07499999 +0.9625,0.9625,0.053033054,0.10606593 +0.9625,0.9625,0.10606593,0.053033054 +0.9625,0.9625,0.094494045,0.094494045 +0.9625,0.9625,0.06681746,0.13363475 +0.9625,0.9625,0.13363475,0.06681746 +0.9625,0.9625,0.11905497,0.11905497 +0.9625,0.9625,0.08418465,0.1683693 +0.9625,0.9625,0.1683693,0.08418465 +0.9625,0.98749995,0.07499999,0.07499999 +0.9625,0.98749995,0.053033054,0.10606593 +0.9625,0.98749995,0.10606593,0.053033054 +0.9625,0.98749995,0.094494045,0.094494045 +0.9625,0.98749995,0.06681746,0.13363475 +0.9625,0.98749995,0.13363475,0.06681746 +0.9625,0.98749995,0.11905497,0.11905497 +0.9625,0.98749995,0.08418465,0.16836923 +0.9625,0.98749995,0.1683693,0.08418459 +0.98749995,0.0125,0.07499999,0.075 +0.98749995,0.012499997,0.053033054,0.10606602 +0.98749995,0.012499999,0.10606593,0.05303301 +0.98749995,0.012499999,0.094494045,0.09449408 +0.98749995,0.012500001,0.06681746,0.1336348 +0.98749995,0.012499999,0.13363475,0.0668174 +0.98749995,0.012500001,0.11905497,0.11905508 +0.98749995,0.012499999,0.08418459,0.1683693 +0.98749995,0.012500002,0.16836923,0.084184654 +0.98749995,0.0375,0.07499999,0.075 +0.98749995,0.037499998,0.053033054,0.10606601 +0.98749995,0.0375,0.10606593,0.05303301 +0.98749995,0.0375,0.094494045,0.094494075 +0.98749995,0.0375,0.06681746,0.1336348 +0.98749995,0.0375,0.13363475,0.0668174 +0.98749995,0.0375,0.11905497,0.11905508 +0.98749995,0.0375,0.08418459,0.16836931 +0.98749995,0.0375,0.16836923,0.08418466 +0.98749995,0.0625,0.07499999,0.075 +0.98749995,0.0625,0.053033054,0.10606602 +0.98749995,0.0625,0.10606593,0.05303301 +0.98749995,0.0625,0.094494045,0.094494075 +0.98749995,0.0625,0.06681746,0.1336348 +0.98749995,0.0625,0.13363475,0.0668174 +0.98749995,0.0625,0.11905497,0.11905508 +0.98749995,0.0625,0.08418459,0.16836932 +0.98749995,0.0625,0.16836923,0.08418465 +0.98749995,0.0875,0.07499999,0.075 +0.98749995,0.08749999,0.053033054,0.10606601 +0.98749995,0.087500006,0.10606593,0.053033013 +0.98749995,0.087500006,0.094494045,0.09449408 +0.98749995,0.087500006,0.06681746,0.1336348 +0.98749995,0.0875,0.13363475,0.0668174 +0.98749995,0.0875,0.11905497,0.11905508 +0.98749995,0.0875,0.08418459,0.16836931 +0.98749995,0.087500006,0.16836923,0.084184654 +0.98749995,0.112500004,0.07499999,0.075 +0.98749995,0.1125,0.053033054,0.10606601 +0.98749995,0.112500004,0.10606593,0.05303301 +0.98749995,0.1125,0.094494045,0.094494075 +0.98749995,0.1125,0.06681746,0.1336348 +0.98749995,0.1125,0.13363475,0.0668174 +0.98749995,0.1125,0.11905497,0.119055085 +0.98749995,0.112500004,0.08418459,0.16836931 +0.98749995,0.1125,0.16836923,0.08418465 +0.98749995,0.1375,0.07499999,0.074999996 +0.98749995,0.1375,0.053033054,0.10606602 +0.98749995,0.1375,0.10606593,0.053033024 +0.98749995,0.1375,0.094494045,0.09449408 +0.98749995,0.1375,0.06681746,0.1336348 +0.98749995,0.1375,0.13363475,0.0668174 +0.98749995,0.13749999,0.11905497,0.11905508 +0.98749995,0.1375,0.08418459,0.1683693 +0.98749995,0.1375,0.16836923,0.084184654 +0.98749995,0.1625,0.07499999,0.075 +0.98749995,0.16250001,0.053033054,0.106066026 +0.98749995,0.1625,0.10606593,0.05303301 +0.98749995,0.1625,0.094494045,0.094494075 +0.98749995,0.1625,0.06681746,0.1336348 +0.98749995,0.1625,0.13363475,0.0668174 +0.98749995,0.1625,0.11905497,0.11905508 +0.98749995,0.1625,0.08418459,0.1683693 +0.98749995,0.1625,0.16836923,0.08418464 +0.98749995,0.1875,0.07499999,0.07499999 +0.98749995,0.1875,0.053033054,0.10606603 +0.98749995,0.1875,0.10606593,0.053033024 +0.98749995,0.1875,0.094494045,0.09449406 +0.98749995,0.1875,0.06681746,0.1336348 +0.98749995,0.1875,0.13363475,0.06681742 +0.98749995,0.1875,0.11905497,0.11905509 +0.98749995,0.1875,0.08418459,0.16836931 +0.98749995,0.1875,0.16836923,0.08418465 +0.98749995,0.2125,0.07499999,0.075 +0.98749995,0.2125,0.053033054,0.10606603 +0.98749995,0.2125,0.10606593,0.05303301 +0.98749995,0.21249999,0.094494045,0.094494075 +0.98749995,0.2125,0.06681746,0.1336348 +0.98749995,0.2125,0.13363475,0.0668174 +0.98749995,0.2125,0.11905497,0.11905509 +0.98749995,0.2125,0.08418459,0.16836931 +0.98749995,0.2125,0.16836923,0.08418465 +0.98749995,0.23750001,0.07499999,0.075 +0.98749995,0.2375,0.053033054,0.10606602 +0.98749995,0.2375,0.10606593,0.053033024 +0.98749995,0.2375,0.094494045,0.094494075 +0.98749995,0.23750001,0.06681746,0.13363482 +0.98749995,0.2375,0.13363475,0.06681743 +0.98749995,0.2375,0.11905497,0.11905506 +0.98749995,0.2375,0.08418459,0.16836932 +0.98749995,0.23750001,0.16836923,0.08418466 +0.98749995,0.2625,0.07499999,0.07500002 +0.98749995,0.2625,0.053033054,0.10606603 +0.98749995,0.2625,0.10606593,0.053033024 +0.98749995,0.2625,0.094494045,0.094494075 +0.98749995,0.2625,0.06681746,0.13363479 +0.98749995,0.2625,0.13363475,0.06681743 +0.98749995,0.2625,0.11905497,0.11905508 +0.98749995,0.2625,0.08418459,0.1683693 +0.98749995,0.2625,0.16836923,0.08418463 +0.98749995,0.2875,0.07499999,0.07499999 +0.98749995,0.2875,0.053033054,0.10606603 +0.98749995,0.28750002,0.10606593,0.053033024 +0.98749995,0.2875,0.094494045,0.094494045 +0.98749995,0.2875,0.06681746,0.1336348 +0.98749995,0.28750002,0.13363475,0.06681743 +0.98749995,0.2875,0.11905497,0.11905508 +0.98749995,0.2875,0.08418459,0.1683693 +0.98749995,0.2875,0.16836923,0.08418465 +0.98749995,0.3125,0.07499999,0.07499999 +0.98749995,0.3125,0.053033054,0.10606605 +0.98749995,0.3125,0.10606593,0.053032994 +0.98749995,0.3125,0.094494045,0.094494045 +0.98749995,0.3125,0.06681746,0.1336348 +0.98749995,0.3125,0.13363475,0.0668174 +0.98749995,0.3125,0.11905497,0.11905509 +0.98749995,0.3125,0.08418459,0.1683693 +0.98749995,0.3125,0.16836923,0.08418465 +0.98749995,0.3375,0.07499999,0.07499999 +0.98749995,0.3375,0.053033054,0.10606605 +0.98749995,0.33749998,0.10606593,0.053033024 +0.98749995,0.3375,0.094494045,0.094494045 +0.98749995,0.33750004,0.06681746,0.13363484 +0.98749995,0.33749998,0.13363475,0.06681743 +0.98749995,0.3375,0.11905497,0.11905509 +0.98749995,0.3375,0.08418459,0.1683693 +0.98749995,0.3375,0.16836923,0.08418465 +0.98749995,0.3625,0.07499999,0.07500002 +0.98749995,0.3625,0.053033054,0.10606602 +0.98749995,0.3625,0.10606593,0.053033024 +0.98749995,0.3625,0.094494045,0.094494075 +0.98749995,0.3625,0.06681746,0.1336348 +0.98749995,0.3625,0.13363475,0.06681743 +0.98749995,0.3625,0.11905497,0.11905506 +0.98749995,0.3625,0.08418459,0.1683693 +0.98749995,0.3625,0.16836923,0.08418465 +0.98749995,0.3875,0.07499999,0.07500002 +0.98749995,0.3875,0.053033054,0.10606602 +0.98749995,0.3875,0.10606593,0.053032994 +0.98749995,0.3875,0.094494045,0.094494075 +0.98749995,0.3875,0.06681746,0.13363484 +0.98749995,0.3875,0.13363475,0.0668174 +0.98749995,0.3875,0.11905497,0.11905506 +0.98749995,0.3875,0.08418459,0.1683693 +0.98749995,0.3875,0.16836923,0.08418465 +0.98749995,0.4125,0.07499999,0.07499999 +0.98749995,0.4125,0.053033054,0.10606605 +0.98749995,0.4125,0.10606593,0.053032994 +0.98749995,0.4125,0.094494045,0.094494045 +0.98749995,0.41250002,0.06681746,0.13363484 +0.98749995,0.4125,0.13363475,0.0668174 +0.98749995,0.4125,0.11905497,0.11905509 +0.98749995,0.4125,0.08418459,0.1683693 +0.98749995,0.4125,0.16836923,0.08418465 +0.98749995,0.4375,0.07499999,0.07499999 +0.98749995,0.4375,0.053033054,0.10606605 +0.98749995,0.4375,0.10606593,0.053032994 +0.98749995,0.4375,0.094494045,0.094494045 +0.98749995,0.4375,0.06681746,0.1336348 +0.98749995,0.4375,0.13363475,0.0668174 +0.98749995,0.4375,0.11905497,0.11905509 +0.98749995,0.4375,0.08418459,0.1683693 +0.98749995,0.4375,0.16836923,0.08418465 +0.98749995,0.4625,0.07499999,0.07499999 +0.98749995,0.4625,0.053033054,0.10606605 +0.98749995,0.46249998,0.10606593,0.053032964 +0.98749995,0.4625,0.094494045,0.094494045 +0.98749995,0.46250004,0.06681746,0.13363484 +0.98749995,0.46249998,0.13363475,0.06681737 +0.98749995,0.4625,0.11905497,0.11905509 +0.98749995,0.46249998,0.08418459,0.16836926 +0.98749995,0.46249998,0.16836923,0.08418462 +0.98749995,0.48749998,0.07499999,0.07499999 +0.98749995,0.4875,0.053033054,0.10606602 +0.98749995,0.4875,0.10606593,0.053032994 +0.98749995,0.48749998,0.094494045,0.094494045 +0.98749995,0.4875,0.06681746,0.13363484 +0.98749995,0.4875,0.13363475,0.0668174 +0.98749995,0.4875,0.11905497,0.11905506 +0.98749995,0.4875,0.08418459,0.1683693 +0.98749995,0.4875,0.16836923,0.08418465 +0.98749995,0.5125,0.07499999,0.07500002 +0.98749995,0.51250005,0.053033054,0.10606605 +0.98749995,0.5125,0.10606593,0.053032964 +0.98749995,0.5125,0.094494045,0.094494075 +0.98749995,0.51250005,0.06681746,0.13363487 +0.98749995,0.5125,0.13363475,0.06681737 +0.98749995,0.51250005,0.11905497,0.11905509 +0.98749995,0.5125,0.08418459,0.1683693 +0.98749995,0.5125,0.16836923,0.08418465 +0.98749995,0.5375,0.07499999,0.07499999 +0.98749995,0.5375,0.053033054,0.10606605 +0.98749995,0.5375,0.10606593,0.053032935 +0.98749995,0.5375,0.094494045,0.094494045 +0.98749995,0.5375,0.06681746,0.13363487 +0.98749995,0.5375,0.13363475,0.06681734 +0.98749995,0.5375,0.11905497,0.11905509 +0.98749995,0.5375,0.08418459,0.16836932 +0.98749995,0.5375,0.16836923,0.08418468 +0.98749995,0.5625,0.07499999,0.07500005 +0.98749995,0.5625,0.053033054,0.10606599 +0.98749995,0.5625,0.10606593,0.053032994 +0.98749995,0.5625,0.094494045,0.094494104 +0.98749995,0.5625,0.06681746,0.13363484 +0.98749995,0.5625,0.13363475,0.0668174 +0.98749995,0.5625,0.11905497,0.11905503 +0.98749995,0.5625,0.08418459,0.1683693 +0.98749995,0.5625,0.16836923,0.08418465 +0.98749995,0.5875,0.07499999,0.07499999 +0.98749995,0.5875,0.053033054,0.10606605 +0.98749995,0.5875,0.10606593,0.053032935 +0.98749995,0.5875,0.094494045,0.094494045 +0.98749995,0.5875,0.06681746,0.13363487 +0.98749995,0.5875,0.13363475,0.06681734 +0.98749995,0.5875,0.11905497,0.11905509 +0.98749995,0.5875,0.08418459,0.1683693 +0.98749995,0.5875,0.16836923,0.08418465 +0.98749995,0.61249995,0.07499999,0.07499999 +0.98749995,0.61249995,0.053033054,0.10606605 +0.98749995,0.6125,0.10606593,0.053032994 +0.98749995,0.61249995,0.094494045,0.094494045 +0.98749995,0.61249995,0.06681746,0.13363487 +0.98749995,0.6125,0.13363475,0.0668174 +0.98749995,0.61249995,0.11905497,0.11905509 +0.98749995,0.6125,0.08418459,0.1683693 +0.98749995,0.6125,0.16836923,0.08418465 +0.98749995,0.63750005,0.07499999,0.07499999 +0.98749995,0.63750005,0.053033054,0.10606605 +0.98749995,0.6375,0.10606593,0.053032994 +0.98749995,0.63750005,0.094494045,0.094494045 +0.98749995,0.63750005,0.06681746,0.13363487 +0.98749995,0.6375,0.13363475,0.0668174 +0.98749995,0.63750005,0.11905497,0.11905509 +0.98749995,0.6375,0.08418459,0.1683693 +0.98749995,0.6375,0.16836923,0.08418465 +0.98749995,0.6625,0.07499999,0.07499999 +0.98749995,0.6625,0.053033054,0.10606605 +0.98749995,0.6625,0.10606593,0.053032935 +0.98749995,0.6625,0.094494045,0.094494045 +0.98749995,0.6625,0.06681746,0.13363487 +0.98749995,0.6625,0.13363475,0.06681734 +0.98749995,0.6625,0.11905497,0.11905509 +0.98749995,0.6625,0.08418459,0.1683693 +0.98749995,0.6625,0.16836923,0.08418465 +0.98749995,0.6875,0.07499999,0.07500005 +0.98749995,0.6875,0.053033054,0.10606599 +0.98749995,0.6875,0.10606593,0.053032994 +0.98749995,0.6875,0.094494045,0.094494104 +0.98749995,0.6875,0.06681746,0.1336348 +0.98749995,0.6875,0.13363475,0.0668174 +0.98749995,0.6875,0.11905497,0.11905503 +0.98749995,0.6875,0.08418459,0.1683693 +0.98749995,0.6875,0.16836923,0.08418465 +0.98749995,0.7125,0.07499999,0.07499999 +0.98749995,0.7125,0.053033054,0.10606605 +0.98749995,0.7125,0.10606593,0.053032935 +0.98749995,0.7125,0.094494045,0.094494045 +0.98749995,0.7125,0.06681746,0.13363487 +0.98749995,0.7125,0.13363475,0.06681734 +0.98749995,0.7125,0.11905497,0.11905509 +0.98749995,0.7125,0.08418459,0.1683693 +0.98749995,0.7125,0.16836923,0.08418465 +0.98749995,0.73749995,0.07499999,0.07499999 +0.98749995,0.73749995,0.053033054,0.10606605 +0.98749995,0.7375,0.10606593,0.053032994 +0.98749995,0.73749995,0.094494045,0.094494045 +0.98749995,0.73749995,0.06681746,0.1336348 +0.98749995,0.7375,0.13363475,0.0668174 +0.98749995,0.73749995,0.11905497,0.11905509 +0.98749995,0.7375,0.08418459,0.1683693 +0.98749995,0.7375,0.16836923,0.08418465 +0.98749995,0.76250005,0.07499999,0.07499999 +0.98749995,0.7625,0.053033054,0.10606599 +0.98749995,0.7625,0.10606593,0.053032994 +0.98749995,0.76250005,0.094494045,0.094494045 +0.98749995,0.7625,0.06681746,0.1336348 +0.98749995,0.7625,0.13363475,0.0668174 +0.98749995,0.7625,0.11905497,0.11905503 +0.98749995,0.7625,0.08418459,0.1683693 +0.98749995,0.7625,0.16836923,0.08418465 +0.98749995,0.7875,0.07499999,0.07499999 +0.98749995,0.78749996,0.053033054,0.10606599 +0.98749995,0.7875,0.10606593,0.053032994 +0.98749995,0.7875,0.094494045,0.094494045 +0.98749995,0.78749996,0.06681746,0.1336348 +0.98749995,0.7875,0.13363475,0.0668174 +0.98749995,0.78749996,0.11905497,0.11905503 +0.98749995,0.7875,0.08418459,0.1683693 +0.98749995,0.7875,0.16836923,0.08418465 +0.98749995,0.8125,0.07499999,0.07500005 +0.98749995,0.8125,0.053033054,0.10606599 +0.98749995,0.8125,0.10606593,0.053033054 +0.98749995,0.8125,0.094494045,0.094494104 +0.98749995,0.8125,0.06681746,0.1336348 +0.98749995,0.8125,0.13363475,0.06681746 +0.98749995,0.8125,0.11905497,0.11905503 +0.98749995,0.8125,0.08418459,0.1683693 +0.98749995,0.8125,0.16836923,0.08418465 +0.98749995,0.8375,0.07499999,0.07499999 +0.98749995,0.8375,0.053033054,0.10606599 +0.98749995,0.8375,0.10606593,0.053033054 +0.98749995,0.8375,0.094494045,0.094494045 +0.98749995,0.8375,0.06681746,0.1336348 +0.98749995,0.8375,0.13363475,0.06681746 +0.98749995,0.8375,0.11905497,0.11905503 +0.98749995,0.8375,0.08418459,0.1683693 +0.98749995,0.8375,0.16836923,0.08418465 +0.98749995,0.86249995,0.07499999,0.07499999 +0.98749995,0.86249995,0.053033054,0.10606593 +0.98749995,0.86249995,0.10606593,0.053033054 +0.98749995,0.86249995,0.094494045,0.094494045 +0.98749995,0.86249995,0.06681746,0.1336348 +0.98749995,0.86249995,0.13363475,0.06681746 +0.98749995,0.86249995,0.11905497,0.11905497 +0.98749995,0.8625,0.08418459,0.1683693 +0.98749995,0.8625,0.16836923,0.08418465 +0.98749995,0.88750005,0.07499999,0.07499999 +0.98749995,0.88750005,0.053033054,0.10606593 +0.98749995,0.88750005,0.10606593,0.053033054 +0.98749995,0.88750005,0.094494045,0.094494045 +0.98749995,0.88750005,0.06681746,0.13363475 +0.98749995,0.88750005,0.13363475,0.06681746 +0.98749995,0.88750005,0.11905497,0.11905497 +0.98749995,0.8875,0.08418459,0.1683693 +0.98749995,0.8875,0.16836923,0.08418465 +0.98749995,0.9125,0.07499999,0.07499999 +0.98749995,0.9125,0.053033054,0.10606593 +0.98749995,0.9125,0.10606593,0.053033054 +0.98749995,0.9125,0.094494045,0.094494045 +0.98749995,0.9125,0.06681746,0.13363475 +0.98749995,0.9125,0.13363475,0.06681746 +0.98749995,0.9125,0.11905497,0.11905497 +0.98749995,0.9125,0.08418459,0.1683693 +0.98749995,0.9125,0.16836923,0.08418465 +0.98749995,0.9375,0.07499999,0.07500005 +0.98749995,0.9375,0.053033054,0.10606599 +0.98749995,0.9375,0.10606593,0.053033113 +0.98749995,0.9375,0.094494045,0.094494104 +0.98749995,0.9375,0.06681746,0.1336348 +0.98749995,0.9375,0.13363475,0.06681752 +0.98749995,0.9375,0.11905497,0.11905503 +0.98749995,0.9375,0.08418459,0.1683693 +0.98749995,0.9375,0.16836923,0.08418465 +0.98749995,0.9625,0.07499999,0.07499999 +0.98749995,0.9625,0.053033054,0.10606593 +0.98749995,0.9625,0.10606593,0.053033054 +0.98749995,0.9625,0.094494045,0.094494045 +0.98749995,0.9625,0.06681746,0.13363475 +0.98749995,0.9625,0.13363475,0.06681746 +0.98749995,0.9625,0.11905497,0.11905497 +0.98749995,0.9625,0.08418459,0.1683693 +0.98749995,0.9625,0.16836923,0.08418465 +0.98749995,0.98749995,0.07499999,0.07499999 +0.98749995,0.98749995,0.053033054,0.10606593 +0.98749995,0.98749995,0.10606593,0.053033054 +0.98749995,0.98749995,0.094494045,0.094494045 +0.98749995,0.98749995,0.06681746,0.13363475 +0.98749995,0.98749995,0.13363475,0.06681746 +0.98749995,0.98749995,0.11905497,0.11905497 +0.98749995,0.98749995,0.08418459,0.16836923 +0.98749995,0.98749995,0.16836923,0.08418459 +0.025,0.025,0.15,0.15 +0.024999999,0.024999995,0.10606602,0.21213204 +0.024999995,0.024999999,0.21213204,0.10606602 +0.024999999,0.024999999,0.18898816,0.18898816 +0.024999999,0.025000002,0.1336348,0.2672696 +0.025000002,0.024999999,0.2672696,0.1336348 +0.025000002,0.025000002,0.23811015,0.23811015 +0.025000004,0.024999999,0.16836931,0.3367386 +0.024999999,0.025000004,0.3367386,0.16836931 +0.025,0.075,0.15,0.15 +0.024999999,0.074999996,0.10606602,0.21213202 +0.024999995,0.075,0.21213204,0.10606602 +0.024999999,0.075,0.18898816,0.18898815 +0.024999999,0.075,0.1336348,0.2672696 +0.025000002,0.075,0.2672696,0.1336348 +0.025000002,0.075,0.23811015,0.23811015 +0.025000004,0.075,0.16836931,0.33673862 +0.024999999,0.075,0.3367386,0.16836932 +0.025,0.125,0.15,0.15 +0.024999999,0.125,0.10606602,0.21213204 +0.024999995,0.125,0.21213204,0.10606602 +0.024999999,0.125,0.18898816,0.18898815 +0.024999999,0.125,0.1336348,0.2672696 +0.025000002,0.125,0.2672696,0.1336348 +0.025000002,0.125,0.23811015,0.23811015 +0.025000004,0.125,0.16836931,0.33673865 +0.024999999,0.125,0.3367386,0.1683693 +0.025,0.175,0.15,0.15 +0.024999999,0.17499998,0.10606602,0.21213202 +0.024999995,0.17500001,0.21213204,0.106066026 +0.024999999,0.17500001,0.18898816,0.18898816 +0.024999999,0.17500001,0.1336348,0.2672696 +0.025000002,0.175,0.2672696,0.1336348 +0.025000002,0.175,0.23811015,0.23811015 +0.025000004,0.175,0.16836931,0.33673862 +0.024999999,0.17500001,0.3367386,0.16836931 +0.025,0.22500001,0.15,0.15 +0.024999999,0.225,0.10606602,0.21213202 +0.024999995,0.22500001,0.21213204,0.10606602 +0.024999999,0.225,0.18898816,0.18898815 +0.024999999,0.225,0.1336348,0.2672696 +0.025000002,0.225,0.2672696,0.1336348 +0.025000002,0.225,0.23811015,0.23811017 +0.025000004,0.22500001,0.16836931,0.33673862 +0.024999999,0.225,0.3367386,0.1683693 +0.025,0.275,0.15,0.14999999 +0.024999999,0.275,0.10606602,0.21213204 +0.024999995,0.275,0.21213204,0.10606605 +0.024999999,0.275,0.18898816,0.18898816 +0.024999999,0.275,0.1336348,0.2672696 +0.025000002,0.275,0.2672696,0.1336348 +0.025000002,0.27499998,0.23811015,0.23811015 +0.025000004,0.275,0.16836931,0.3367386 +0.024999999,0.275,0.3367386,0.16836931 +0.025,0.325,0.15,0.15 +0.024999999,0.32500002,0.10606602,0.21213205 +0.024999995,0.325,0.21213204,0.10606602 +0.024999999,0.325,0.18898816,0.18898815 +0.024999999,0.325,0.1336348,0.2672696 +0.025000002,0.325,0.2672696,0.1336348 +0.025000002,0.325,0.23811015,0.23811015 +0.025000004,0.325,0.16836931,0.3367386 +0.024999999,0.325,0.3367386,0.16836928 +0.025,0.375,0.15,0.14999998 +0.024999999,0.375,0.10606602,0.21213207 +0.024999995,0.375,0.21213204,0.10606605 +0.024999999,0.375,0.18898816,0.18898812 +0.024999999,0.375,0.1336348,0.2672696 +0.025000002,0.375,0.2672696,0.13363484 +0.025000002,0.375,0.23811015,0.23811018 +0.025000004,0.375,0.16836931,0.33673862 +0.024999999,0.375,0.3367386,0.1683693 +0.025,0.425,0.15,0.15 +0.024999999,0.425,0.10606602,0.21213207 +0.024999995,0.425,0.21213204,0.10606602 +0.024999999,0.42499998,0.18898816,0.18898815 +0.024999999,0.425,0.1336348,0.2672696 +0.025000002,0.425,0.2672696,0.1336348 +0.025000002,0.425,0.23811015,0.23811018 +0.025000004,0.425,0.16836931,0.33673862 +0.024999999,0.425,0.3367386,0.1683693 +0.025,0.47500002,0.15,0.15 +0.024999999,0.475,0.10606602,0.21213204 +0.024999995,0.475,0.21213204,0.10606605 +0.024999999,0.475,0.18898816,0.18898815 +0.024999999,0.47500002,0.1336348,0.26726964 +0.025000002,0.475,0.2672696,0.13363487 +0.025000002,0.475,0.23811015,0.23811013 +0.025000004,0.475,0.16836931,0.33673865 +0.024999999,0.47500002,0.3367386,0.16836932 +0.025,0.525,0.15,0.15000004 +0.024999999,0.525,0.10606602,0.21213207 +0.024999995,0.525,0.21213204,0.10606605 +0.024999999,0.525,0.18898816,0.18898815 +0.024999999,0.525,0.1336348,0.26726958 +0.025000002,0.525,0.2672696,0.13363487 +0.025000002,0.525,0.23811015,0.23811015 +0.025000004,0.525,0.16836931,0.3367386 +0.024999999,0.525,0.3367386,0.16836926 +0.025,0.575,0.15,0.14999998 +0.024999999,0.575,0.10606602,0.21213207 +0.024999995,0.57500005,0.21213204,0.10606605 +0.024999999,0.575,0.18898816,0.18898809 +0.024999999,0.575,0.1336348,0.2672696 +0.025000002,0.57500005,0.2672696,0.13363487 +0.025000002,0.575,0.23811015,0.23811015 +0.025000004,0.575,0.16836931,0.3367386 +0.024999999,0.575,0.3367386,0.1683693 +0.025,0.625,0.15,0.14999998 +0.024999999,0.625,0.10606602,0.2121321 +0.024999995,0.625,0.21213204,0.10606599 +0.024999999,0.625,0.18898816,0.18898809 +0.024999999,0.625,0.1336348,0.2672696 +0.025000002,0.625,0.2672696,0.1336348 +0.025000002,0.625,0.23811015,0.23811018 +0.025000004,0.625,0.16836931,0.3367386 +0.024999999,0.625,0.3367386,0.1683693 +0.025,0.675,0.15,0.14999998 +0.024999999,0.675,0.10606602,0.2121321 +0.024999995,0.67499995,0.21213204,0.10606605 +0.024999999,0.675,0.18898816,0.18898809 +0.024999999,0.6750001,0.1336348,0.26726967 +0.025000002,0.67499995,0.2672696,0.13363487 +0.025000002,0.675,0.23811015,0.23811018 +0.025000004,0.675,0.16836931,0.3367386 +0.024999999,0.675,0.3367386,0.1683693 +0.025,0.725,0.15,0.15000004 +0.024999999,0.725,0.10606602,0.21213204 +0.024999995,0.725,0.21213204,0.10606605 +0.024999999,0.725,0.18898816,0.18898815 +0.024999999,0.725,0.1336348,0.2672696 +0.025000002,0.725,0.2672696,0.13363487 +0.025000002,0.725,0.23811015,0.23811013 +0.025000004,0.725,0.16836931,0.3367386 +0.024999999,0.725,0.3367386,0.1683693 +0.025,0.775,0.15,0.15000004 +0.024999999,0.775,0.10606602,0.21213204 +0.024999995,0.775,0.21213204,0.10606599 +0.024999999,0.775,0.18898816,0.18898815 +0.024999999,0.775,0.1336348,0.26726967 +0.025000002,0.775,0.2672696,0.1336348 +0.025000002,0.775,0.23811015,0.23811013 +0.025000004,0.775,0.16836931,0.3367386 +0.024999999,0.775,0.3367386,0.1683693 +0.025,0.825,0.15,0.14999998 +0.024999999,0.825,0.10606602,0.2121321 +0.024999995,0.825,0.21213204,0.10606599 +0.024999999,0.825,0.18898816,0.18898809 +0.024999999,0.82500005,0.1336348,0.26726967 +0.025000002,0.825,0.2672696,0.1336348 +0.025000002,0.825,0.23811015,0.23811018 +0.025000004,0.825,0.16836931,0.3367386 +0.024999999,0.825,0.3367386,0.1683693 +0.025,0.875,0.15,0.14999998 +0.024999999,0.875,0.10606602,0.2121321 +0.024999995,0.875,0.21213204,0.10606599 +0.024999999,0.875,0.18898816,0.18898809 +0.024999999,0.875,0.1336348,0.2672696 +0.025000002,0.875,0.2672696,0.1336348 +0.025000002,0.875,0.23811015,0.23811018 +0.025000004,0.875,0.16836931,0.3367386 +0.024999999,0.875,0.3367386,0.1683693 +0.025,0.925,0.15,0.14999998 +0.024999999,0.925,0.10606602,0.2121321 +0.024999995,0.92499995,0.21213204,0.10606593 +0.024999999,0.925,0.18898816,0.18898809 +0.024999999,0.9250001,0.1336348,0.26726967 +0.025000002,0.92499995,0.2672696,0.13363475 +0.025000002,0.925,0.23811015,0.23811018 +0.025000004,0.92499995,0.16836931,0.33673853 +0.024999999,0.92499995,0.3367386,0.16836923 +0.025,0.97499996,0.15,0.14999998 +0.024999999,0.975,0.10606602,0.21213204 +0.024999995,0.975,0.21213204,0.10606599 +0.024999999,0.97499996,0.18898816,0.18898809 +0.024999999,0.975,0.1336348,0.26726967 +0.025000002,0.975,0.2672696,0.1336348 +0.025000002,0.975,0.23811015,0.23811013 +0.025000004,0.975,0.16836931,0.3367386 +0.024999999,0.975,0.3367386,0.1683693 +0.075,0.025,0.15,0.15 +0.075,0.024999995,0.10606602,0.21213204 +0.074999996,0.024999999,0.21213202,0.10606602 +0.075,0.024999999,0.18898815,0.18898816 +0.075,0.025000002,0.1336348,0.2672696 +0.075,0.024999999,0.2672696,0.1336348 +0.075,0.025000002,0.23811015,0.23811015 +0.075,0.024999999,0.16836932,0.3367386 +0.075,0.025000004,0.33673862,0.16836931 +0.075,0.075,0.15,0.15 +0.075,0.074999996,0.10606602,0.21213202 +0.074999996,0.075,0.21213202,0.10606602 +0.075,0.075,0.18898815,0.18898815 +0.075,0.075,0.1336348,0.2672696 +0.075,0.075,0.2672696,0.1336348 +0.075,0.075,0.23811015,0.23811015 +0.075,0.075,0.16836932,0.33673862 +0.075,0.075,0.33673862,0.16836932 +0.075,0.125,0.15,0.15 +0.075,0.125,0.10606602,0.21213204 +0.074999996,0.125,0.21213202,0.10606602 +0.075,0.125,0.18898815,0.18898815 +0.075,0.125,0.1336348,0.2672696 +0.075,0.125,0.2672696,0.1336348 +0.075,0.125,0.23811015,0.23811015 +0.075,0.125,0.16836932,0.33673865 +0.075,0.125,0.33673862,0.1683693 +0.075,0.175,0.15,0.15 +0.075,0.17499998,0.10606602,0.21213202 +0.074999996,0.17500001,0.21213202,0.106066026 +0.075,0.17500001,0.18898815,0.18898816 +0.075,0.17500001,0.1336348,0.2672696 +0.075,0.175,0.2672696,0.1336348 +0.075,0.175,0.23811015,0.23811015 +0.075,0.175,0.16836932,0.33673862 +0.075,0.17500001,0.33673862,0.16836931 +0.075,0.22500001,0.15,0.15 +0.075,0.225,0.10606602,0.21213202 +0.074999996,0.22500001,0.21213202,0.10606602 +0.075,0.225,0.18898815,0.18898815 +0.075,0.225,0.1336348,0.2672696 +0.075,0.225,0.2672696,0.1336348 +0.075,0.225,0.23811015,0.23811017 +0.075,0.22500001,0.16836932,0.33673862 +0.075,0.225,0.33673862,0.1683693 +0.075,0.275,0.15,0.14999999 +0.075,0.275,0.10606602,0.21213204 +0.074999996,0.275,0.21213202,0.10606605 +0.075,0.275,0.18898815,0.18898816 +0.075,0.275,0.1336348,0.2672696 +0.075,0.275,0.2672696,0.1336348 +0.075,0.27499998,0.23811015,0.23811015 +0.075,0.275,0.16836932,0.3367386 +0.075,0.275,0.33673862,0.16836931 +0.075,0.325,0.15,0.15 +0.075,0.32500002,0.10606602,0.21213205 +0.074999996,0.325,0.21213202,0.10606602 +0.075,0.325,0.18898815,0.18898815 +0.075,0.325,0.1336348,0.2672696 +0.075,0.325,0.2672696,0.1336348 +0.075,0.325,0.23811015,0.23811015 +0.075,0.325,0.16836932,0.3367386 +0.075,0.325,0.33673862,0.16836928 +0.075,0.375,0.15,0.14999998 +0.075,0.375,0.10606602,0.21213207 +0.074999996,0.375,0.21213202,0.10606605 +0.075,0.375,0.18898815,0.18898812 +0.075,0.375,0.1336348,0.2672696 +0.075,0.375,0.2672696,0.13363484 +0.075,0.375,0.23811015,0.23811018 +0.075,0.375,0.16836932,0.33673862 +0.075,0.375,0.33673862,0.1683693 +0.075,0.425,0.15,0.15 +0.075,0.425,0.10606602,0.21213207 +0.074999996,0.425,0.21213202,0.10606602 +0.075,0.42499998,0.18898815,0.18898815 +0.075,0.425,0.1336348,0.2672696 +0.075,0.425,0.2672696,0.1336348 +0.075,0.425,0.23811015,0.23811018 +0.075,0.425,0.16836932,0.33673862 +0.075,0.425,0.33673862,0.1683693 +0.075,0.47500002,0.15,0.15 +0.075,0.475,0.10606602,0.21213204 +0.074999996,0.475,0.21213202,0.10606605 +0.075,0.475,0.18898815,0.18898815 +0.075,0.47500002,0.1336348,0.26726964 +0.075,0.475,0.2672696,0.13363487 +0.075,0.475,0.23811015,0.23811013 +0.075,0.475,0.16836932,0.33673865 +0.075,0.47500002,0.33673862,0.16836932 +0.075,0.525,0.15,0.15000004 +0.075,0.525,0.10606602,0.21213207 +0.074999996,0.525,0.21213202,0.10606605 +0.075,0.525,0.18898815,0.18898815 +0.075,0.525,0.1336348,0.26726958 +0.075,0.525,0.2672696,0.13363487 +0.075,0.525,0.23811015,0.23811015 +0.075,0.525,0.16836932,0.3367386 +0.075,0.525,0.33673862,0.16836926 +0.075,0.575,0.15,0.14999998 +0.075,0.575,0.10606602,0.21213207 +0.074999996,0.57500005,0.21213202,0.10606605 +0.075,0.575,0.18898815,0.18898809 +0.075,0.575,0.1336348,0.2672696 +0.075,0.57500005,0.2672696,0.13363487 +0.075,0.575,0.23811015,0.23811015 +0.075,0.575,0.16836932,0.3367386 +0.075,0.575,0.33673862,0.1683693 +0.075,0.625,0.15,0.14999998 +0.075,0.625,0.10606602,0.2121321 +0.074999996,0.625,0.21213202,0.10606599 +0.075,0.625,0.18898815,0.18898809 +0.075,0.625,0.1336348,0.2672696 +0.075,0.625,0.2672696,0.1336348 +0.075,0.625,0.23811015,0.23811018 +0.075,0.625,0.16836932,0.3367386 +0.075,0.625,0.33673862,0.1683693 +0.075,0.675,0.15,0.14999998 +0.075,0.675,0.10606602,0.2121321 +0.074999996,0.67499995,0.21213202,0.10606605 +0.075,0.675,0.18898815,0.18898809 +0.075,0.6750001,0.1336348,0.26726967 +0.075,0.67499995,0.2672696,0.13363487 +0.075,0.675,0.23811015,0.23811018 +0.075,0.675,0.16836932,0.3367386 +0.075,0.675,0.33673862,0.1683693 +0.075,0.725,0.15,0.15000004 +0.075,0.725,0.10606602,0.21213204 +0.074999996,0.725,0.21213202,0.10606605 +0.075,0.725,0.18898815,0.18898815 +0.075,0.725,0.1336348,0.2672696 +0.075,0.725,0.2672696,0.13363487 +0.075,0.725,0.23811015,0.23811013 +0.075,0.725,0.16836932,0.3367386 +0.075,0.725,0.33673862,0.1683693 +0.075,0.775,0.15,0.15000004 +0.075,0.775,0.10606602,0.21213204 +0.074999996,0.775,0.21213202,0.10606599 +0.075,0.775,0.18898815,0.18898815 +0.075,0.775,0.1336348,0.26726967 +0.075,0.775,0.2672696,0.1336348 +0.075,0.775,0.23811015,0.23811013 +0.075,0.775,0.16836932,0.3367386 +0.075,0.775,0.33673862,0.1683693 +0.075,0.825,0.15,0.14999998 +0.075,0.825,0.10606602,0.2121321 +0.074999996,0.825,0.21213202,0.10606599 +0.075,0.825,0.18898815,0.18898809 +0.075,0.82500005,0.1336348,0.26726967 +0.075,0.825,0.2672696,0.1336348 +0.075,0.825,0.23811015,0.23811018 +0.075,0.825,0.16836932,0.3367386 +0.075,0.825,0.33673862,0.1683693 +0.075,0.875,0.15,0.14999998 +0.075,0.875,0.10606602,0.2121321 +0.074999996,0.875,0.21213202,0.10606599 +0.075,0.875,0.18898815,0.18898809 +0.075,0.875,0.1336348,0.2672696 +0.075,0.875,0.2672696,0.1336348 +0.075,0.875,0.23811015,0.23811018 +0.075,0.875,0.16836932,0.3367386 +0.075,0.875,0.33673862,0.1683693 +0.075,0.925,0.15,0.14999998 +0.075,0.925,0.10606602,0.2121321 +0.074999996,0.92499995,0.21213202,0.10606593 +0.075,0.925,0.18898815,0.18898809 +0.075,0.9250001,0.1336348,0.26726967 +0.075,0.92499995,0.2672696,0.13363475 +0.075,0.925,0.23811015,0.23811018 +0.075,0.92499995,0.16836932,0.33673853 +0.075,0.92499995,0.33673862,0.16836923 +0.075,0.97499996,0.15,0.14999998 +0.075,0.975,0.10606602,0.21213204 +0.074999996,0.975,0.21213202,0.10606599 +0.075,0.97499996,0.18898815,0.18898809 +0.075,0.975,0.1336348,0.26726967 +0.075,0.975,0.2672696,0.1336348 +0.075,0.975,0.23811015,0.23811013 +0.075,0.975,0.16836932,0.3367386 +0.075,0.975,0.33673862,0.1683693 +0.125,0.025,0.15,0.15 +0.125,0.024999995,0.10606602,0.21213204 +0.125,0.024999999,0.21213204,0.10606602 +0.125,0.024999999,0.18898815,0.18898816 +0.125,0.025000002,0.1336348,0.2672696 +0.125,0.024999999,0.2672696,0.1336348 +0.125,0.025000002,0.23811015,0.23811015 +0.125,0.024999999,0.1683693,0.3367386 +0.125,0.025000004,0.33673865,0.16836931 +0.125,0.075,0.15,0.15 +0.125,0.074999996,0.10606602,0.21213202 +0.125,0.075,0.21213204,0.10606602 +0.125,0.075,0.18898815,0.18898815 +0.125,0.075,0.1336348,0.2672696 +0.125,0.075,0.2672696,0.1336348 +0.125,0.075,0.23811015,0.23811015 +0.125,0.075,0.1683693,0.33673862 +0.125,0.075,0.33673865,0.16836932 +0.125,0.125,0.15,0.15 +0.125,0.125,0.10606602,0.21213204 +0.125,0.125,0.21213204,0.10606602 +0.125,0.125,0.18898815,0.18898815 +0.125,0.125,0.1336348,0.2672696 +0.125,0.125,0.2672696,0.1336348 +0.125,0.125,0.23811015,0.23811015 +0.125,0.125,0.1683693,0.33673865 +0.125,0.125,0.33673865,0.1683693 +0.125,0.175,0.15,0.15 +0.125,0.17499998,0.10606602,0.21213202 +0.125,0.17500001,0.21213204,0.106066026 +0.125,0.17500001,0.18898815,0.18898816 +0.125,0.17500001,0.1336348,0.2672696 +0.125,0.175,0.2672696,0.1336348 +0.125,0.175,0.23811015,0.23811015 +0.125,0.175,0.1683693,0.33673862 +0.125,0.17500001,0.33673865,0.16836931 +0.125,0.22500001,0.15,0.15 +0.125,0.225,0.10606602,0.21213202 +0.125,0.22500001,0.21213204,0.10606602 +0.125,0.225,0.18898815,0.18898815 +0.125,0.225,0.1336348,0.2672696 +0.125,0.225,0.2672696,0.1336348 +0.125,0.225,0.23811015,0.23811017 +0.125,0.22500001,0.1683693,0.33673862 +0.125,0.225,0.33673865,0.1683693 +0.125,0.275,0.15,0.14999999 +0.125,0.275,0.10606602,0.21213204 +0.125,0.275,0.21213204,0.10606605 +0.125,0.275,0.18898815,0.18898816 +0.125,0.275,0.1336348,0.2672696 +0.125,0.275,0.2672696,0.1336348 +0.125,0.27499998,0.23811015,0.23811015 +0.125,0.275,0.1683693,0.3367386 +0.125,0.275,0.33673865,0.16836931 +0.125,0.325,0.15,0.15 +0.125,0.32500002,0.10606602,0.21213205 +0.125,0.325,0.21213204,0.10606602 +0.125,0.325,0.18898815,0.18898815 +0.125,0.325,0.1336348,0.2672696 +0.125,0.325,0.2672696,0.1336348 +0.125,0.325,0.23811015,0.23811015 +0.125,0.325,0.1683693,0.3367386 +0.125,0.325,0.33673865,0.16836928 +0.125,0.375,0.15,0.14999998 +0.125,0.375,0.10606602,0.21213207 +0.125,0.375,0.21213204,0.10606605 +0.125,0.375,0.18898815,0.18898812 +0.125,0.375,0.1336348,0.2672696 +0.125,0.375,0.2672696,0.13363484 +0.125,0.375,0.23811015,0.23811018 +0.125,0.375,0.1683693,0.33673862 +0.125,0.375,0.33673865,0.1683693 +0.125,0.425,0.15,0.15 +0.125,0.425,0.10606602,0.21213207 +0.125,0.425,0.21213204,0.10606602 +0.125,0.42499998,0.18898815,0.18898815 +0.125,0.425,0.1336348,0.2672696 +0.125,0.425,0.2672696,0.1336348 +0.125,0.425,0.23811015,0.23811018 +0.125,0.425,0.1683693,0.33673862 +0.125,0.425,0.33673865,0.1683693 +0.125,0.47500002,0.15,0.15 +0.125,0.475,0.10606602,0.21213204 +0.125,0.475,0.21213204,0.10606605 +0.125,0.475,0.18898815,0.18898815 +0.125,0.47500002,0.1336348,0.26726964 +0.125,0.475,0.2672696,0.13363487 +0.125,0.475,0.23811015,0.23811013 +0.125,0.475,0.1683693,0.33673865 +0.125,0.47500002,0.33673865,0.16836932 +0.125,0.525,0.15,0.15000004 +0.125,0.525,0.10606602,0.21213207 +0.125,0.525,0.21213204,0.10606605 +0.125,0.525,0.18898815,0.18898815 +0.125,0.525,0.1336348,0.26726958 +0.125,0.525,0.2672696,0.13363487 +0.125,0.525,0.23811015,0.23811015 +0.125,0.525,0.1683693,0.3367386 +0.125,0.525,0.33673865,0.16836926 +0.125,0.575,0.15,0.14999998 +0.125,0.575,0.10606602,0.21213207 +0.125,0.57500005,0.21213204,0.10606605 +0.125,0.575,0.18898815,0.18898809 +0.125,0.575,0.1336348,0.2672696 +0.125,0.57500005,0.2672696,0.13363487 +0.125,0.575,0.23811015,0.23811015 +0.125,0.575,0.1683693,0.3367386 +0.125,0.575,0.33673865,0.1683693 +0.125,0.625,0.15,0.14999998 +0.125,0.625,0.10606602,0.2121321 +0.125,0.625,0.21213204,0.10606599 +0.125,0.625,0.18898815,0.18898809 +0.125,0.625,0.1336348,0.2672696 +0.125,0.625,0.2672696,0.1336348 +0.125,0.625,0.23811015,0.23811018 +0.125,0.625,0.1683693,0.3367386 +0.125,0.625,0.33673865,0.1683693 +0.125,0.675,0.15,0.14999998 +0.125,0.675,0.10606602,0.2121321 +0.125,0.67499995,0.21213204,0.10606605 +0.125,0.675,0.18898815,0.18898809 +0.125,0.6750001,0.1336348,0.26726967 +0.125,0.67499995,0.2672696,0.13363487 +0.125,0.675,0.23811015,0.23811018 +0.125,0.675,0.1683693,0.3367386 +0.125,0.675,0.33673865,0.1683693 +0.125,0.725,0.15,0.15000004 +0.125,0.725,0.10606602,0.21213204 +0.125,0.725,0.21213204,0.10606605 +0.125,0.725,0.18898815,0.18898815 +0.125,0.725,0.1336348,0.2672696 +0.125,0.725,0.2672696,0.13363487 +0.125,0.725,0.23811015,0.23811013 +0.125,0.725,0.1683693,0.3367386 +0.125,0.725,0.33673865,0.1683693 +0.125,0.775,0.15,0.15000004 +0.125,0.775,0.10606602,0.21213204 +0.125,0.775,0.21213204,0.10606599 +0.125,0.775,0.18898815,0.18898815 +0.125,0.775,0.1336348,0.26726967 +0.125,0.775,0.2672696,0.1336348 +0.125,0.775,0.23811015,0.23811013 +0.125,0.775,0.1683693,0.3367386 +0.125,0.775,0.33673865,0.1683693 +0.125,0.825,0.15,0.14999998 +0.125,0.825,0.10606602,0.2121321 +0.125,0.825,0.21213204,0.10606599 +0.125,0.825,0.18898815,0.18898809 +0.125,0.82500005,0.1336348,0.26726967 +0.125,0.825,0.2672696,0.1336348 +0.125,0.825,0.23811015,0.23811018 +0.125,0.825,0.1683693,0.3367386 +0.125,0.825,0.33673865,0.1683693 +0.125,0.875,0.15,0.14999998 +0.125,0.875,0.10606602,0.2121321 +0.125,0.875,0.21213204,0.10606599 +0.125,0.875,0.18898815,0.18898809 +0.125,0.875,0.1336348,0.2672696 +0.125,0.875,0.2672696,0.1336348 +0.125,0.875,0.23811015,0.23811018 +0.125,0.875,0.1683693,0.3367386 +0.125,0.875,0.33673865,0.1683693 +0.125,0.925,0.15,0.14999998 +0.125,0.925,0.10606602,0.2121321 +0.125,0.92499995,0.21213204,0.10606593 +0.125,0.925,0.18898815,0.18898809 +0.125,0.9250001,0.1336348,0.26726967 +0.125,0.92499995,0.2672696,0.13363475 +0.125,0.925,0.23811015,0.23811018 +0.125,0.92499995,0.1683693,0.33673853 +0.125,0.92499995,0.33673865,0.16836923 +0.125,0.97499996,0.15,0.14999998 +0.125,0.975,0.10606602,0.21213204 +0.125,0.975,0.21213204,0.10606599 +0.125,0.97499996,0.18898815,0.18898809 +0.125,0.975,0.1336348,0.26726967 +0.125,0.975,0.2672696,0.1336348 +0.125,0.975,0.23811015,0.23811013 +0.125,0.975,0.1683693,0.3367386 +0.125,0.975,0.33673865,0.1683693 +0.175,0.025,0.15,0.15 +0.17500001,0.024999995,0.106066026,0.21213204 +0.17499998,0.024999999,0.21213202,0.10606602 +0.17500001,0.024999999,0.18898816,0.18898816 +0.175,0.025000002,0.1336348,0.2672696 +0.17500001,0.024999999,0.2672696,0.1336348 +0.175,0.025000002,0.23811015,0.23811015 +0.17500001,0.024999999,0.16836931,0.3367386 +0.175,0.025000004,0.33673862,0.16836931 +0.175,0.075,0.15,0.15 +0.17500001,0.074999996,0.106066026,0.21213202 +0.17499998,0.075,0.21213202,0.10606602 +0.17500001,0.075,0.18898816,0.18898815 +0.175,0.075,0.1336348,0.2672696 +0.17500001,0.075,0.2672696,0.1336348 +0.175,0.075,0.23811015,0.23811015 +0.17500001,0.075,0.16836931,0.33673862 +0.175,0.075,0.33673862,0.16836932 +0.175,0.125,0.15,0.15 +0.17500001,0.125,0.106066026,0.21213204 +0.17499998,0.125,0.21213202,0.10606602 +0.17500001,0.125,0.18898816,0.18898815 +0.175,0.125,0.1336348,0.2672696 +0.17500001,0.125,0.2672696,0.1336348 +0.175,0.125,0.23811015,0.23811015 +0.17500001,0.125,0.16836931,0.33673865 +0.175,0.125,0.33673862,0.1683693 +0.175,0.175,0.15,0.15 +0.17500001,0.17499998,0.106066026,0.21213202 +0.17499998,0.17500001,0.21213202,0.106066026 +0.17500001,0.17500001,0.18898816,0.18898816 +0.175,0.17500001,0.1336348,0.2672696 +0.17500001,0.175,0.2672696,0.1336348 +0.175,0.175,0.23811015,0.23811015 +0.17500001,0.175,0.16836931,0.33673862 +0.175,0.17500001,0.33673862,0.16836931 +0.175,0.22500001,0.15,0.15 +0.17500001,0.225,0.106066026,0.21213202 +0.17499998,0.22500001,0.21213202,0.10606602 +0.17500001,0.225,0.18898816,0.18898815 +0.175,0.225,0.1336348,0.2672696 +0.17500001,0.225,0.2672696,0.1336348 +0.175,0.225,0.23811015,0.23811017 +0.17500001,0.22500001,0.16836931,0.33673862 +0.175,0.225,0.33673862,0.1683693 +0.175,0.275,0.15,0.14999999 +0.17500001,0.275,0.106066026,0.21213204 +0.17499998,0.275,0.21213202,0.10606605 +0.17500001,0.275,0.18898816,0.18898816 +0.175,0.275,0.1336348,0.2672696 +0.17500001,0.275,0.2672696,0.1336348 +0.175,0.27499998,0.23811015,0.23811015 +0.17500001,0.275,0.16836931,0.3367386 +0.175,0.275,0.33673862,0.16836931 +0.175,0.325,0.15,0.15 +0.17500001,0.32500002,0.106066026,0.21213205 +0.17499998,0.325,0.21213202,0.10606602 +0.17500001,0.325,0.18898816,0.18898815 +0.175,0.325,0.1336348,0.2672696 +0.17500001,0.325,0.2672696,0.1336348 +0.175,0.325,0.23811015,0.23811015 +0.17500001,0.325,0.16836931,0.3367386 +0.175,0.325,0.33673862,0.16836928 +0.175,0.375,0.15,0.14999998 +0.17500001,0.375,0.106066026,0.21213207 +0.17499998,0.375,0.21213202,0.10606605 +0.17500001,0.375,0.18898816,0.18898812 +0.175,0.375,0.1336348,0.2672696 +0.17500001,0.375,0.2672696,0.13363484 +0.175,0.375,0.23811015,0.23811018 +0.17500001,0.375,0.16836931,0.33673862 +0.175,0.375,0.33673862,0.1683693 +0.175,0.425,0.15,0.15 +0.17500001,0.425,0.106066026,0.21213207 +0.17499998,0.425,0.21213202,0.10606602 +0.17500001,0.42499998,0.18898816,0.18898815 +0.175,0.425,0.1336348,0.2672696 +0.17500001,0.425,0.2672696,0.1336348 +0.175,0.425,0.23811015,0.23811018 +0.17500001,0.425,0.16836931,0.33673862 +0.175,0.425,0.33673862,0.1683693 +0.175,0.47500002,0.15,0.15 +0.17500001,0.475,0.106066026,0.21213204 +0.17499998,0.475,0.21213202,0.10606605 +0.17500001,0.475,0.18898816,0.18898815 +0.175,0.47500002,0.1336348,0.26726964 +0.17500001,0.475,0.2672696,0.13363487 +0.175,0.475,0.23811015,0.23811013 +0.17500001,0.475,0.16836931,0.33673865 +0.175,0.47500002,0.33673862,0.16836932 +0.175,0.525,0.15,0.15000004 +0.17500001,0.525,0.106066026,0.21213207 +0.17499998,0.525,0.21213202,0.10606605 +0.17500001,0.525,0.18898816,0.18898815 +0.175,0.525,0.1336348,0.26726958 +0.17500001,0.525,0.2672696,0.13363487 +0.175,0.525,0.23811015,0.23811015 +0.17500001,0.525,0.16836931,0.3367386 +0.175,0.525,0.33673862,0.16836926 +0.175,0.575,0.15,0.14999998 +0.17500001,0.575,0.106066026,0.21213207 +0.17499998,0.57500005,0.21213202,0.10606605 +0.17500001,0.575,0.18898816,0.18898809 +0.175,0.575,0.1336348,0.2672696 +0.17500001,0.57500005,0.2672696,0.13363487 +0.175,0.575,0.23811015,0.23811015 +0.17500001,0.575,0.16836931,0.3367386 +0.175,0.575,0.33673862,0.1683693 +0.175,0.625,0.15,0.14999998 +0.17500001,0.625,0.106066026,0.2121321 +0.17499998,0.625,0.21213202,0.10606599 +0.17500001,0.625,0.18898816,0.18898809 +0.175,0.625,0.1336348,0.2672696 +0.17500001,0.625,0.2672696,0.1336348 +0.175,0.625,0.23811015,0.23811018 +0.17500001,0.625,0.16836931,0.3367386 +0.175,0.625,0.33673862,0.1683693 +0.175,0.675,0.15,0.14999998 +0.17500001,0.675,0.106066026,0.2121321 +0.17499998,0.67499995,0.21213202,0.10606605 +0.17500001,0.675,0.18898816,0.18898809 +0.175,0.6750001,0.1336348,0.26726967 +0.17500001,0.67499995,0.2672696,0.13363487 +0.175,0.675,0.23811015,0.23811018 +0.17500001,0.675,0.16836931,0.3367386 +0.175,0.675,0.33673862,0.1683693 +0.175,0.725,0.15,0.15000004 +0.17500001,0.725,0.106066026,0.21213204 +0.17499998,0.725,0.21213202,0.10606605 +0.17500001,0.725,0.18898816,0.18898815 +0.175,0.725,0.1336348,0.2672696 +0.17500001,0.725,0.2672696,0.13363487 +0.175,0.725,0.23811015,0.23811013 +0.17500001,0.725,0.16836931,0.3367386 +0.175,0.725,0.33673862,0.1683693 +0.175,0.775,0.15,0.15000004 +0.17500001,0.775,0.106066026,0.21213204 +0.17499998,0.775,0.21213202,0.10606599 +0.17500001,0.775,0.18898816,0.18898815 +0.175,0.775,0.1336348,0.26726967 +0.17500001,0.775,0.2672696,0.1336348 +0.175,0.775,0.23811015,0.23811013 +0.17500001,0.775,0.16836931,0.3367386 +0.175,0.775,0.33673862,0.1683693 +0.175,0.825,0.15,0.14999998 +0.17500001,0.825,0.106066026,0.2121321 +0.17499998,0.825,0.21213202,0.10606599 +0.17500001,0.825,0.18898816,0.18898809 +0.175,0.82500005,0.1336348,0.26726967 +0.17500001,0.825,0.2672696,0.1336348 +0.175,0.825,0.23811015,0.23811018 +0.17500001,0.825,0.16836931,0.3367386 +0.175,0.825,0.33673862,0.1683693 +0.175,0.875,0.15,0.14999998 +0.17500001,0.875,0.106066026,0.2121321 +0.17499998,0.875,0.21213202,0.10606599 +0.17500001,0.875,0.18898816,0.18898809 +0.175,0.875,0.1336348,0.2672696 +0.17500001,0.875,0.2672696,0.1336348 +0.175,0.875,0.23811015,0.23811018 +0.17500001,0.875,0.16836931,0.3367386 +0.175,0.875,0.33673862,0.1683693 +0.175,0.925,0.15,0.14999998 +0.17500001,0.925,0.106066026,0.2121321 +0.17499998,0.92499995,0.21213202,0.10606593 +0.17500001,0.925,0.18898816,0.18898809 +0.175,0.9250001,0.1336348,0.26726967 +0.17500001,0.92499995,0.2672696,0.13363475 +0.175,0.925,0.23811015,0.23811018 +0.17500001,0.92499995,0.16836931,0.33673853 +0.175,0.92499995,0.33673862,0.16836923 +0.175,0.97499996,0.15,0.14999998 +0.17500001,0.975,0.106066026,0.21213204 +0.17499998,0.975,0.21213202,0.10606599 +0.17500001,0.97499996,0.18898816,0.18898809 +0.175,0.975,0.1336348,0.26726967 +0.17500001,0.975,0.2672696,0.1336348 +0.175,0.975,0.23811015,0.23811013 +0.17500001,0.975,0.16836931,0.3367386 +0.175,0.975,0.33673862,0.1683693 +0.22500001,0.025,0.15,0.15 +0.22500001,0.024999995,0.10606602,0.21213204 +0.225,0.024999999,0.21213202,0.10606602 +0.225,0.024999999,0.18898815,0.18898816 +0.225,0.025000002,0.1336348,0.2672696 +0.225,0.024999999,0.2672696,0.1336348 +0.225,0.025000002,0.23811017,0.23811015 +0.225,0.024999999,0.1683693,0.3367386 +0.22500001,0.025000004,0.33673862,0.16836931 +0.22500001,0.075,0.15,0.15 +0.22500001,0.074999996,0.10606602,0.21213202 +0.225,0.075,0.21213202,0.10606602 +0.225,0.075,0.18898815,0.18898815 +0.225,0.075,0.1336348,0.2672696 +0.225,0.075,0.2672696,0.1336348 +0.225,0.075,0.23811017,0.23811015 +0.225,0.075,0.1683693,0.33673862 +0.22500001,0.075,0.33673862,0.16836932 +0.22500001,0.125,0.15,0.15 +0.22500001,0.125,0.10606602,0.21213204 +0.225,0.125,0.21213202,0.10606602 +0.225,0.125,0.18898815,0.18898815 +0.225,0.125,0.1336348,0.2672696 +0.225,0.125,0.2672696,0.1336348 +0.225,0.125,0.23811017,0.23811015 +0.225,0.125,0.1683693,0.33673865 +0.22500001,0.125,0.33673862,0.1683693 +0.22500001,0.175,0.15,0.15 +0.22500001,0.17499998,0.10606602,0.21213202 +0.225,0.17500001,0.21213202,0.106066026 +0.225,0.17500001,0.18898815,0.18898816 +0.225,0.17500001,0.1336348,0.2672696 +0.225,0.175,0.2672696,0.1336348 +0.225,0.175,0.23811017,0.23811015 +0.225,0.175,0.1683693,0.33673862 +0.22500001,0.17500001,0.33673862,0.16836931 +0.22500001,0.22500001,0.15,0.15 +0.22500001,0.225,0.10606602,0.21213202 +0.225,0.22500001,0.21213202,0.10606602 +0.225,0.225,0.18898815,0.18898815 +0.225,0.225,0.1336348,0.2672696 +0.225,0.225,0.2672696,0.1336348 +0.225,0.225,0.23811017,0.23811017 +0.225,0.22500001,0.1683693,0.33673862 +0.22500001,0.225,0.33673862,0.1683693 +0.22500001,0.275,0.15,0.14999999 +0.22500001,0.275,0.10606602,0.21213204 +0.225,0.275,0.21213202,0.10606605 +0.225,0.275,0.18898815,0.18898816 +0.225,0.275,0.1336348,0.2672696 +0.225,0.275,0.2672696,0.1336348 +0.225,0.27499998,0.23811017,0.23811015 +0.225,0.275,0.1683693,0.3367386 +0.22500001,0.275,0.33673862,0.16836931 +0.22500001,0.325,0.15,0.15 +0.22500001,0.32500002,0.10606602,0.21213205 +0.225,0.325,0.21213202,0.10606602 +0.225,0.325,0.18898815,0.18898815 +0.225,0.325,0.1336348,0.2672696 +0.225,0.325,0.2672696,0.1336348 +0.225,0.325,0.23811017,0.23811015 +0.225,0.325,0.1683693,0.3367386 +0.22500001,0.325,0.33673862,0.16836928 +0.22500001,0.375,0.15,0.14999998 +0.22500001,0.375,0.10606602,0.21213207 +0.225,0.375,0.21213202,0.10606605 +0.225,0.375,0.18898815,0.18898812 +0.225,0.375,0.1336348,0.2672696 +0.225,0.375,0.2672696,0.13363484 +0.225,0.375,0.23811017,0.23811018 +0.225,0.375,0.1683693,0.33673862 +0.22500001,0.375,0.33673862,0.1683693 +0.22500001,0.425,0.15,0.15 +0.22500001,0.425,0.10606602,0.21213207 +0.225,0.425,0.21213202,0.10606602 +0.225,0.42499998,0.18898815,0.18898815 +0.225,0.425,0.1336348,0.2672696 +0.225,0.425,0.2672696,0.1336348 +0.225,0.425,0.23811017,0.23811018 +0.225,0.425,0.1683693,0.33673862 +0.22500001,0.425,0.33673862,0.1683693 +0.22500001,0.47500002,0.15,0.15 +0.22500001,0.475,0.10606602,0.21213204 +0.225,0.475,0.21213202,0.10606605 +0.225,0.475,0.18898815,0.18898815 +0.225,0.47500002,0.1336348,0.26726964 +0.225,0.475,0.2672696,0.13363487 +0.225,0.475,0.23811017,0.23811013 +0.225,0.475,0.1683693,0.33673865 +0.22500001,0.47500002,0.33673862,0.16836932 +0.22500001,0.525,0.15,0.15000004 +0.22500001,0.525,0.10606602,0.21213207 +0.225,0.525,0.21213202,0.10606605 +0.225,0.525,0.18898815,0.18898815 +0.225,0.525,0.1336348,0.26726958 +0.225,0.525,0.2672696,0.13363487 +0.225,0.525,0.23811017,0.23811015 +0.225,0.525,0.1683693,0.3367386 +0.22500001,0.525,0.33673862,0.16836926 +0.22500001,0.575,0.15,0.14999998 +0.22500001,0.575,0.10606602,0.21213207 +0.225,0.57500005,0.21213202,0.10606605 +0.225,0.575,0.18898815,0.18898809 +0.225,0.575,0.1336348,0.2672696 +0.225,0.57500005,0.2672696,0.13363487 +0.225,0.575,0.23811017,0.23811015 +0.225,0.575,0.1683693,0.3367386 +0.22500001,0.575,0.33673862,0.1683693 +0.22500001,0.625,0.15,0.14999998 +0.22500001,0.625,0.10606602,0.2121321 +0.225,0.625,0.21213202,0.10606599 +0.225,0.625,0.18898815,0.18898809 +0.225,0.625,0.1336348,0.2672696 +0.225,0.625,0.2672696,0.1336348 +0.225,0.625,0.23811017,0.23811018 +0.225,0.625,0.1683693,0.3367386 +0.22500001,0.625,0.33673862,0.1683693 +0.22500001,0.675,0.15,0.14999998 +0.22500001,0.675,0.10606602,0.2121321 +0.225,0.67499995,0.21213202,0.10606605 +0.225,0.675,0.18898815,0.18898809 +0.225,0.6750001,0.1336348,0.26726967 +0.225,0.67499995,0.2672696,0.13363487 +0.225,0.675,0.23811017,0.23811018 +0.225,0.675,0.1683693,0.3367386 +0.22500001,0.675,0.33673862,0.1683693 +0.22500001,0.725,0.15,0.15000004 +0.22500001,0.725,0.10606602,0.21213204 +0.225,0.725,0.21213202,0.10606605 +0.225,0.725,0.18898815,0.18898815 +0.225,0.725,0.1336348,0.2672696 +0.225,0.725,0.2672696,0.13363487 +0.225,0.725,0.23811017,0.23811013 +0.225,0.725,0.1683693,0.3367386 +0.22500001,0.725,0.33673862,0.1683693 +0.22500001,0.775,0.15,0.15000004 +0.22500001,0.775,0.10606602,0.21213204 +0.225,0.775,0.21213202,0.10606599 +0.225,0.775,0.18898815,0.18898815 +0.225,0.775,0.1336348,0.26726967 +0.225,0.775,0.2672696,0.1336348 +0.225,0.775,0.23811017,0.23811013 +0.225,0.775,0.1683693,0.3367386 +0.22500001,0.775,0.33673862,0.1683693 +0.22500001,0.825,0.15,0.14999998 +0.22500001,0.825,0.10606602,0.2121321 +0.225,0.825,0.21213202,0.10606599 +0.225,0.825,0.18898815,0.18898809 +0.225,0.82500005,0.1336348,0.26726967 +0.225,0.825,0.2672696,0.1336348 +0.225,0.825,0.23811017,0.23811018 +0.225,0.825,0.1683693,0.3367386 +0.22500001,0.825,0.33673862,0.1683693 +0.22500001,0.875,0.15,0.14999998 +0.22500001,0.875,0.10606602,0.2121321 +0.225,0.875,0.21213202,0.10606599 +0.225,0.875,0.18898815,0.18898809 +0.225,0.875,0.1336348,0.2672696 +0.225,0.875,0.2672696,0.1336348 +0.225,0.875,0.23811017,0.23811018 +0.225,0.875,0.1683693,0.3367386 +0.22500001,0.875,0.33673862,0.1683693 +0.22500001,0.925,0.15,0.14999998 +0.22500001,0.925,0.10606602,0.2121321 +0.225,0.92499995,0.21213202,0.10606593 +0.225,0.925,0.18898815,0.18898809 +0.225,0.9250001,0.1336348,0.26726967 +0.225,0.92499995,0.2672696,0.13363475 +0.225,0.925,0.23811017,0.23811018 +0.225,0.92499995,0.1683693,0.33673853 +0.22500001,0.92499995,0.33673862,0.16836923 +0.22500001,0.97499996,0.15,0.14999998 +0.22500001,0.975,0.10606602,0.21213204 +0.225,0.975,0.21213202,0.10606599 +0.225,0.97499996,0.18898815,0.18898809 +0.225,0.975,0.1336348,0.26726967 +0.225,0.975,0.2672696,0.1336348 +0.225,0.975,0.23811017,0.23811013 +0.225,0.975,0.1683693,0.3367386 +0.22500001,0.975,0.33673862,0.1683693 +0.275,0.025,0.14999999,0.15 +0.275,0.024999995,0.10606605,0.21213204 +0.275,0.024999999,0.21213204,0.10606602 +0.275,0.024999999,0.18898816,0.18898816 +0.275,0.025000002,0.1336348,0.2672696 +0.275,0.024999999,0.2672696,0.1336348 +0.27499998,0.025000002,0.23811015,0.23811015 +0.275,0.024999999,0.16836931,0.3367386 +0.275,0.025000004,0.3367386,0.16836931 +0.275,0.075,0.14999999,0.15 +0.275,0.074999996,0.10606605,0.21213202 +0.275,0.075,0.21213204,0.10606602 +0.275,0.075,0.18898816,0.18898815 +0.275,0.075,0.1336348,0.2672696 +0.275,0.075,0.2672696,0.1336348 +0.27499998,0.075,0.23811015,0.23811015 +0.275,0.075,0.16836931,0.33673862 +0.275,0.075,0.3367386,0.16836932 +0.275,0.125,0.14999999,0.15 +0.275,0.125,0.10606605,0.21213204 +0.275,0.125,0.21213204,0.10606602 +0.275,0.125,0.18898816,0.18898815 +0.275,0.125,0.1336348,0.2672696 +0.275,0.125,0.2672696,0.1336348 +0.27499998,0.125,0.23811015,0.23811015 +0.275,0.125,0.16836931,0.33673865 +0.275,0.125,0.3367386,0.1683693 +0.275,0.175,0.14999999,0.15 +0.275,0.17499998,0.10606605,0.21213202 +0.275,0.17500001,0.21213204,0.106066026 +0.275,0.17500001,0.18898816,0.18898816 +0.275,0.17500001,0.1336348,0.2672696 +0.275,0.175,0.2672696,0.1336348 +0.27499998,0.175,0.23811015,0.23811015 +0.275,0.175,0.16836931,0.33673862 +0.275,0.17500001,0.3367386,0.16836931 +0.275,0.22500001,0.14999999,0.15 +0.275,0.225,0.10606605,0.21213202 +0.275,0.22500001,0.21213204,0.10606602 +0.275,0.225,0.18898816,0.18898815 +0.275,0.225,0.1336348,0.2672696 +0.275,0.225,0.2672696,0.1336348 +0.27499998,0.225,0.23811015,0.23811017 +0.275,0.22500001,0.16836931,0.33673862 +0.275,0.225,0.3367386,0.1683693 +0.275,0.275,0.14999999,0.14999999 +0.275,0.275,0.10606605,0.21213204 +0.275,0.275,0.21213204,0.10606605 +0.275,0.275,0.18898816,0.18898816 +0.275,0.275,0.1336348,0.2672696 +0.275,0.275,0.2672696,0.1336348 +0.27499998,0.27499998,0.23811015,0.23811015 +0.275,0.275,0.16836931,0.3367386 +0.275,0.275,0.3367386,0.16836931 +0.275,0.325,0.14999999,0.15 +0.275,0.32500002,0.10606605,0.21213205 +0.275,0.325,0.21213204,0.10606602 +0.275,0.325,0.18898816,0.18898815 +0.275,0.325,0.1336348,0.2672696 +0.275,0.325,0.2672696,0.1336348 +0.27499998,0.325,0.23811015,0.23811015 +0.275,0.325,0.16836931,0.3367386 +0.275,0.325,0.3367386,0.16836928 +0.275,0.375,0.14999999,0.14999998 +0.275,0.375,0.10606605,0.21213207 +0.275,0.375,0.21213204,0.10606605 +0.275,0.375,0.18898816,0.18898812 +0.275,0.375,0.1336348,0.2672696 +0.275,0.375,0.2672696,0.13363484 +0.27499998,0.375,0.23811015,0.23811018 +0.275,0.375,0.16836931,0.33673862 +0.275,0.375,0.3367386,0.1683693 +0.275,0.425,0.14999999,0.15 +0.275,0.425,0.10606605,0.21213207 +0.275,0.425,0.21213204,0.10606602 +0.275,0.42499998,0.18898816,0.18898815 +0.275,0.425,0.1336348,0.2672696 +0.275,0.425,0.2672696,0.1336348 +0.27499998,0.425,0.23811015,0.23811018 +0.275,0.425,0.16836931,0.33673862 +0.275,0.425,0.3367386,0.1683693 +0.275,0.47500002,0.14999999,0.15 +0.275,0.475,0.10606605,0.21213204 +0.275,0.475,0.21213204,0.10606605 +0.275,0.475,0.18898816,0.18898815 +0.275,0.47500002,0.1336348,0.26726964 +0.275,0.475,0.2672696,0.13363487 +0.27499998,0.475,0.23811015,0.23811013 +0.275,0.475,0.16836931,0.33673865 +0.275,0.47500002,0.3367386,0.16836932 +0.275,0.525,0.14999999,0.15000004 +0.275,0.525,0.10606605,0.21213207 +0.275,0.525,0.21213204,0.10606605 +0.275,0.525,0.18898816,0.18898815 +0.275,0.525,0.1336348,0.26726958 +0.275,0.525,0.2672696,0.13363487 +0.27499998,0.525,0.23811015,0.23811015 +0.275,0.525,0.16836931,0.3367386 +0.275,0.525,0.3367386,0.16836926 +0.275,0.575,0.14999999,0.14999998 +0.275,0.575,0.10606605,0.21213207 +0.275,0.57500005,0.21213204,0.10606605 +0.275,0.575,0.18898816,0.18898809 +0.275,0.575,0.1336348,0.2672696 +0.275,0.57500005,0.2672696,0.13363487 +0.27499998,0.575,0.23811015,0.23811015 +0.275,0.575,0.16836931,0.3367386 +0.275,0.575,0.3367386,0.1683693 +0.275,0.625,0.14999999,0.14999998 +0.275,0.625,0.10606605,0.2121321 +0.275,0.625,0.21213204,0.10606599 +0.275,0.625,0.18898816,0.18898809 +0.275,0.625,0.1336348,0.2672696 +0.275,0.625,0.2672696,0.1336348 +0.27499998,0.625,0.23811015,0.23811018 +0.275,0.625,0.16836931,0.3367386 +0.275,0.625,0.3367386,0.1683693 +0.275,0.675,0.14999999,0.14999998 +0.275,0.675,0.10606605,0.2121321 +0.275,0.67499995,0.21213204,0.10606605 +0.275,0.675,0.18898816,0.18898809 +0.275,0.6750001,0.1336348,0.26726967 +0.275,0.67499995,0.2672696,0.13363487 +0.27499998,0.675,0.23811015,0.23811018 +0.275,0.675,0.16836931,0.3367386 +0.275,0.675,0.3367386,0.1683693 +0.275,0.725,0.14999999,0.15000004 +0.275,0.725,0.10606605,0.21213204 +0.275,0.725,0.21213204,0.10606605 +0.275,0.725,0.18898816,0.18898815 +0.275,0.725,0.1336348,0.2672696 +0.275,0.725,0.2672696,0.13363487 +0.27499998,0.725,0.23811015,0.23811013 +0.275,0.725,0.16836931,0.3367386 +0.275,0.725,0.3367386,0.1683693 +0.275,0.775,0.14999999,0.15000004 +0.275,0.775,0.10606605,0.21213204 +0.275,0.775,0.21213204,0.10606599 +0.275,0.775,0.18898816,0.18898815 +0.275,0.775,0.1336348,0.26726967 +0.275,0.775,0.2672696,0.1336348 +0.27499998,0.775,0.23811015,0.23811013 +0.275,0.775,0.16836931,0.3367386 +0.275,0.775,0.3367386,0.1683693 +0.275,0.825,0.14999999,0.14999998 +0.275,0.825,0.10606605,0.2121321 +0.275,0.825,0.21213204,0.10606599 +0.275,0.825,0.18898816,0.18898809 +0.275,0.82500005,0.1336348,0.26726967 +0.275,0.825,0.2672696,0.1336348 +0.27499998,0.825,0.23811015,0.23811018 +0.275,0.825,0.16836931,0.3367386 +0.275,0.825,0.3367386,0.1683693 +0.275,0.875,0.14999999,0.14999998 +0.275,0.875,0.10606605,0.2121321 +0.275,0.875,0.21213204,0.10606599 +0.275,0.875,0.18898816,0.18898809 +0.275,0.875,0.1336348,0.2672696 +0.275,0.875,0.2672696,0.1336348 +0.27499998,0.875,0.23811015,0.23811018 +0.275,0.875,0.16836931,0.3367386 +0.275,0.875,0.3367386,0.1683693 +0.275,0.925,0.14999999,0.14999998 +0.275,0.925,0.10606605,0.2121321 +0.275,0.92499995,0.21213204,0.10606593 +0.275,0.925,0.18898816,0.18898809 +0.275,0.9250001,0.1336348,0.26726967 +0.275,0.92499995,0.2672696,0.13363475 +0.27499998,0.925,0.23811015,0.23811018 +0.275,0.92499995,0.16836931,0.33673853 +0.275,0.92499995,0.3367386,0.16836923 +0.275,0.97499996,0.14999999,0.14999998 +0.275,0.975,0.10606605,0.21213204 +0.275,0.975,0.21213204,0.10606599 +0.275,0.97499996,0.18898816,0.18898809 +0.275,0.975,0.1336348,0.26726967 +0.275,0.975,0.2672696,0.1336348 +0.27499998,0.975,0.23811015,0.23811013 +0.275,0.975,0.16836931,0.3367386 +0.275,0.975,0.3367386,0.1683693 +0.325,0.025,0.15,0.15 +0.325,0.024999995,0.10606602,0.21213204 +0.32500002,0.024999999,0.21213205,0.10606602 +0.325,0.024999999,0.18898815,0.18898816 +0.325,0.025000002,0.1336348,0.2672696 +0.325,0.024999999,0.2672696,0.1336348 +0.325,0.025000002,0.23811015,0.23811015 +0.325,0.024999999,0.16836928,0.3367386 +0.325,0.025000004,0.3367386,0.16836931 +0.325,0.075,0.15,0.15 +0.325,0.074999996,0.10606602,0.21213202 +0.32500002,0.075,0.21213205,0.10606602 +0.325,0.075,0.18898815,0.18898815 +0.325,0.075,0.1336348,0.2672696 +0.325,0.075,0.2672696,0.1336348 +0.325,0.075,0.23811015,0.23811015 +0.325,0.075,0.16836928,0.33673862 +0.325,0.075,0.3367386,0.16836932 +0.325,0.125,0.15,0.15 +0.325,0.125,0.10606602,0.21213204 +0.32500002,0.125,0.21213205,0.10606602 +0.325,0.125,0.18898815,0.18898815 +0.325,0.125,0.1336348,0.2672696 +0.325,0.125,0.2672696,0.1336348 +0.325,0.125,0.23811015,0.23811015 +0.325,0.125,0.16836928,0.33673865 +0.325,0.125,0.3367386,0.1683693 +0.325,0.175,0.15,0.15 +0.325,0.17499998,0.10606602,0.21213202 +0.32500002,0.17500001,0.21213205,0.106066026 +0.325,0.17500001,0.18898815,0.18898816 +0.325,0.17500001,0.1336348,0.2672696 +0.325,0.175,0.2672696,0.1336348 +0.325,0.175,0.23811015,0.23811015 +0.325,0.175,0.16836928,0.33673862 +0.325,0.17500001,0.3367386,0.16836931 +0.325,0.22500001,0.15,0.15 +0.325,0.225,0.10606602,0.21213202 +0.32500002,0.22500001,0.21213205,0.10606602 +0.325,0.225,0.18898815,0.18898815 +0.325,0.225,0.1336348,0.2672696 +0.325,0.225,0.2672696,0.1336348 +0.325,0.225,0.23811015,0.23811017 +0.325,0.22500001,0.16836928,0.33673862 +0.325,0.225,0.3367386,0.1683693 +0.325,0.275,0.15,0.14999999 +0.325,0.275,0.10606602,0.21213204 +0.32500002,0.275,0.21213205,0.10606605 +0.325,0.275,0.18898815,0.18898816 +0.325,0.275,0.1336348,0.2672696 +0.325,0.275,0.2672696,0.1336348 +0.325,0.27499998,0.23811015,0.23811015 +0.325,0.275,0.16836928,0.3367386 +0.325,0.275,0.3367386,0.16836931 +0.325,0.325,0.15,0.15 +0.325,0.32500002,0.10606602,0.21213205 +0.32500002,0.325,0.21213205,0.10606602 +0.325,0.325,0.18898815,0.18898815 +0.325,0.325,0.1336348,0.2672696 +0.325,0.325,0.2672696,0.1336348 +0.325,0.325,0.23811015,0.23811015 +0.325,0.325,0.16836928,0.3367386 +0.325,0.325,0.3367386,0.16836928 +0.325,0.375,0.15,0.14999998 +0.325,0.375,0.10606602,0.21213207 +0.32500002,0.375,0.21213205,0.10606605 +0.325,0.375,0.18898815,0.18898812 +0.325,0.375,0.1336348,0.2672696 +0.325,0.375,0.2672696,0.13363484 +0.325,0.375,0.23811015,0.23811018 +0.325,0.375,0.16836928,0.33673862 +0.325,0.375,0.3367386,0.1683693 +0.325,0.425,0.15,0.15 +0.325,0.425,0.10606602,0.21213207 +0.32500002,0.425,0.21213205,0.10606602 +0.325,0.42499998,0.18898815,0.18898815 +0.325,0.425,0.1336348,0.2672696 +0.325,0.425,0.2672696,0.1336348 +0.325,0.425,0.23811015,0.23811018 +0.325,0.425,0.16836928,0.33673862 +0.325,0.425,0.3367386,0.1683693 +0.325,0.47500002,0.15,0.15 +0.325,0.475,0.10606602,0.21213204 +0.32500002,0.475,0.21213205,0.10606605 +0.325,0.475,0.18898815,0.18898815 +0.325,0.47500002,0.1336348,0.26726964 +0.325,0.475,0.2672696,0.13363487 +0.325,0.475,0.23811015,0.23811013 +0.325,0.475,0.16836928,0.33673865 +0.325,0.47500002,0.3367386,0.16836932 +0.325,0.525,0.15,0.15000004 +0.325,0.525,0.10606602,0.21213207 +0.32500002,0.525,0.21213205,0.10606605 +0.325,0.525,0.18898815,0.18898815 +0.325,0.525,0.1336348,0.26726958 +0.325,0.525,0.2672696,0.13363487 +0.325,0.525,0.23811015,0.23811015 +0.325,0.525,0.16836928,0.3367386 +0.325,0.525,0.3367386,0.16836926 +0.325,0.575,0.15,0.14999998 +0.325,0.575,0.10606602,0.21213207 +0.32500002,0.57500005,0.21213205,0.10606605 +0.325,0.575,0.18898815,0.18898809 +0.325,0.575,0.1336348,0.2672696 +0.325,0.57500005,0.2672696,0.13363487 +0.325,0.575,0.23811015,0.23811015 +0.325,0.575,0.16836928,0.3367386 +0.325,0.575,0.3367386,0.1683693 +0.325,0.625,0.15,0.14999998 +0.325,0.625,0.10606602,0.2121321 +0.32500002,0.625,0.21213205,0.10606599 +0.325,0.625,0.18898815,0.18898809 +0.325,0.625,0.1336348,0.2672696 +0.325,0.625,0.2672696,0.1336348 +0.325,0.625,0.23811015,0.23811018 +0.325,0.625,0.16836928,0.3367386 +0.325,0.625,0.3367386,0.1683693 +0.325,0.675,0.15,0.14999998 +0.325,0.675,0.10606602,0.2121321 +0.32500002,0.67499995,0.21213205,0.10606605 +0.325,0.675,0.18898815,0.18898809 +0.325,0.6750001,0.1336348,0.26726967 +0.325,0.67499995,0.2672696,0.13363487 +0.325,0.675,0.23811015,0.23811018 +0.325,0.675,0.16836928,0.3367386 +0.325,0.675,0.3367386,0.1683693 +0.325,0.725,0.15,0.15000004 +0.325,0.725,0.10606602,0.21213204 +0.32500002,0.725,0.21213205,0.10606605 +0.325,0.725,0.18898815,0.18898815 +0.325,0.725,0.1336348,0.2672696 +0.325,0.725,0.2672696,0.13363487 +0.325,0.725,0.23811015,0.23811013 +0.325,0.725,0.16836928,0.3367386 +0.325,0.725,0.3367386,0.1683693 +0.325,0.775,0.15,0.15000004 +0.325,0.775,0.10606602,0.21213204 +0.32500002,0.775,0.21213205,0.10606599 +0.325,0.775,0.18898815,0.18898815 +0.325,0.775,0.1336348,0.26726967 +0.325,0.775,0.2672696,0.1336348 +0.325,0.775,0.23811015,0.23811013 +0.325,0.775,0.16836928,0.3367386 +0.325,0.775,0.3367386,0.1683693 +0.325,0.825,0.15,0.14999998 +0.325,0.825,0.10606602,0.2121321 +0.32500002,0.825,0.21213205,0.10606599 +0.325,0.825,0.18898815,0.18898809 +0.325,0.82500005,0.1336348,0.26726967 +0.325,0.825,0.2672696,0.1336348 +0.325,0.825,0.23811015,0.23811018 +0.325,0.825,0.16836928,0.3367386 +0.325,0.825,0.3367386,0.1683693 +0.325,0.875,0.15,0.14999998 +0.325,0.875,0.10606602,0.2121321 +0.32500002,0.875,0.21213205,0.10606599 +0.325,0.875,0.18898815,0.18898809 +0.325,0.875,0.1336348,0.2672696 +0.325,0.875,0.2672696,0.1336348 +0.325,0.875,0.23811015,0.23811018 +0.325,0.875,0.16836928,0.3367386 +0.325,0.875,0.3367386,0.1683693 +0.325,0.925,0.15,0.14999998 +0.325,0.925,0.10606602,0.2121321 +0.32500002,0.92499995,0.21213205,0.10606593 +0.325,0.925,0.18898815,0.18898809 +0.325,0.9250001,0.1336348,0.26726967 +0.325,0.92499995,0.2672696,0.13363475 +0.325,0.925,0.23811015,0.23811018 +0.325,0.92499995,0.16836928,0.33673853 +0.325,0.92499995,0.3367386,0.16836923 +0.325,0.97499996,0.15,0.14999998 +0.325,0.975,0.10606602,0.21213204 +0.32500002,0.975,0.21213205,0.10606599 +0.325,0.97499996,0.18898815,0.18898809 +0.325,0.975,0.1336348,0.26726967 +0.325,0.975,0.2672696,0.1336348 +0.325,0.975,0.23811015,0.23811013 +0.325,0.975,0.16836928,0.3367386 +0.325,0.975,0.3367386,0.1683693 +0.375,0.025,0.14999998,0.15 +0.375,0.024999995,0.10606605,0.21213204 +0.375,0.024999999,0.21213207,0.10606602 +0.375,0.024999999,0.18898812,0.18898816 +0.375,0.025000002,0.13363484,0.2672696 +0.375,0.024999999,0.2672696,0.1336348 +0.375,0.025000002,0.23811018,0.23811015 +0.375,0.024999999,0.1683693,0.3367386 +0.375,0.025000004,0.33673862,0.16836931 +0.375,0.075,0.14999998,0.15 +0.375,0.074999996,0.10606605,0.21213202 +0.375,0.075,0.21213207,0.10606602 +0.375,0.075,0.18898812,0.18898815 +0.375,0.075,0.13363484,0.2672696 +0.375,0.075,0.2672696,0.1336348 +0.375,0.075,0.23811018,0.23811015 +0.375,0.075,0.1683693,0.33673862 +0.375,0.075,0.33673862,0.16836932 +0.375,0.125,0.14999998,0.15 +0.375,0.125,0.10606605,0.21213204 +0.375,0.125,0.21213207,0.10606602 +0.375,0.125,0.18898812,0.18898815 +0.375,0.125,0.13363484,0.2672696 +0.375,0.125,0.2672696,0.1336348 +0.375,0.125,0.23811018,0.23811015 +0.375,0.125,0.1683693,0.33673865 +0.375,0.125,0.33673862,0.1683693 +0.375,0.175,0.14999998,0.15 +0.375,0.17499998,0.10606605,0.21213202 +0.375,0.17500001,0.21213207,0.106066026 +0.375,0.17500001,0.18898812,0.18898816 +0.375,0.17500001,0.13363484,0.2672696 +0.375,0.175,0.2672696,0.1336348 +0.375,0.175,0.23811018,0.23811015 +0.375,0.175,0.1683693,0.33673862 +0.375,0.17500001,0.33673862,0.16836931 +0.375,0.22500001,0.14999998,0.15 +0.375,0.225,0.10606605,0.21213202 +0.375,0.22500001,0.21213207,0.10606602 +0.375,0.225,0.18898812,0.18898815 +0.375,0.225,0.13363484,0.2672696 +0.375,0.225,0.2672696,0.1336348 +0.375,0.225,0.23811018,0.23811017 +0.375,0.22500001,0.1683693,0.33673862 +0.375,0.225,0.33673862,0.1683693 +0.375,0.275,0.14999998,0.14999999 +0.375,0.275,0.10606605,0.21213204 +0.375,0.275,0.21213207,0.10606605 +0.375,0.275,0.18898812,0.18898816 +0.375,0.275,0.13363484,0.2672696 +0.375,0.275,0.2672696,0.1336348 +0.375,0.27499998,0.23811018,0.23811015 +0.375,0.275,0.1683693,0.3367386 +0.375,0.275,0.33673862,0.16836931 +0.375,0.325,0.14999998,0.15 +0.375,0.32500002,0.10606605,0.21213205 +0.375,0.325,0.21213207,0.10606602 +0.375,0.325,0.18898812,0.18898815 +0.375,0.325,0.13363484,0.2672696 +0.375,0.325,0.2672696,0.1336348 +0.375,0.325,0.23811018,0.23811015 +0.375,0.325,0.1683693,0.3367386 +0.375,0.325,0.33673862,0.16836928 +0.375,0.375,0.14999998,0.14999998 +0.375,0.375,0.10606605,0.21213207 +0.375,0.375,0.21213207,0.10606605 +0.375,0.375,0.18898812,0.18898812 +0.375,0.375,0.13363484,0.2672696 +0.375,0.375,0.2672696,0.13363484 +0.375,0.375,0.23811018,0.23811018 +0.375,0.375,0.1683693,0.33673862 +0.375,0.375,0.33673862,0.1683693 +0.375,0.425,0.14999998,0.15 +0.375,0.425,0.10606605,0.21213207 +0.375,0.425,0.21213207,0.10606602 +0.375,0.42499998,0.18898812,0.18898815 +0.375,0.425,0.13363484,0.2672696 +0.375,0.425,0.2672696,0.1336348 +0.375,0.425,0.23811018,0.23811018 +0.375,0.425,0.1683693,0.33673862 +0.375,0.425,0.33673862,0.1683693 +0.375,0.47500002,0.14999998,0.15 +0.375,0.475,0.10606605,0.21213204 +0.375,0.475,0.21213207,0.10606605 +0.375,0.475,0.18898812,0.18898815 +0.375,0.47500002,0.13363484,0.26726964 +0.375,0.475,0.2672696,0.13363487 +0.375,0.475,0.23811018,0.23811013 +0.375,0.475,0.1683693,0.33673865 +0.375,0.47500002,0.33673862,0.16836932 +0.375,0.525,0.14999998,0.15000004 +0.375,0.525,0.10606605,0.21213207 +0.375,0.525,0.21213207,0.10606605 +0.375,0.525,0.18898812,0.18898815 +0.375,0.525,0.13363484,0.26726958 +0.375,0.525,0.2672696,0.13363487 +0.375,0.525,0.23811018,0.23811015 +0.375,0.525,0.1683693,0.3367386 +0.375,0.525,0.33673862,0.16836926 +0.375,0.575,0.14999998,0.14999998 +0.375,0.575,0.10606605,0.21213207 +0.375,0.57500005,0.21213207,0.10606605 +0.375,0.575,0.18898812,0.18898809 +0.375,0.575,0.13363484,0.2672696 +0.375,0.57500005,0.2672696,0.13363487 +0.375,0.575,0.23811018,0.23811015 +0.375,0.575,0.1683693,0.3367386 +0.375,0.575,0.33673862,0.1683693 +0.375,0.625,0.14999998,0.14999998 +0.375,0.625,0.10606605,0.2121321 +0.375,0.625,0.21213207,0.10606599 +0.375,0.625,0.18898812,0.18898809 +0.375,0.625,0.13363484,0.2672696 +0.375,0.625,0.2672696,0.1336348 +0.375,0.625,0.23811018,0.23811018 +0.375,0.625,0.1683693,0.3367386 +0.375,0.625,0.33673862,0.1683693 +0.375,0.675,0.14999998,0.14999998 +0.375,0.675,0.10606605,0.2121321 +0.375,0.67499995,0.21213207,0.10606605 +0.375,0.675,0.18898812,0.18898809 +0.375,0.6750001,0.13363484,0.26726967 +0.375,0.67499995,0.2672696,0.13363487 +0.375,0.675,0.23811018,0.23811018 +0.375,0.675,0.1683693,0.3367386 +0.375,0.675,0.33673862,0.1683693 +0.375,0.725,0.14999998,0.15000004 +0.375,0.725,0.10606605,0.21213204 +0.375,0.725,0.21213207,0.10606605 +0.375,0.725,0.18898812,0.18898815 +0.375,0.725,0.13363484,0.2672696 +0.375,0.725,0.2672696,0.13363487 +0.375,0.725,0.23811018,0.23811013 +0.375,0.725,0.1683693,0.3367386 +0.375,0.725,0.33673862,0.1683693 +0.375,0.775,0.14999998,0.15000004 +0.375,0.775,0.10606605,0.21213204 +0.375,0.775,0.21213207,0.10606599 +0.375,0.775,0.18898812,0.18898815 +0.375,0.775,0.13363484,0.26726967 +0.375,0.775,0.2672696,0.1336348 +0.375,0.775,0.23811018,0.23811013 +0.375,0.775,0.1683693,0.3367386 +0.375,0.775,0.33673862,0.1683693 +0.375,0.825,0.14999998,0.14999998 +0.375,0.825,0.10606605,0.2121321 +0.375,0.825,0.21213207,0.10606599 +0.375,0.825,0.18898812,0.18898809 +0.375,0.82500005,0.13363484,0.26726967 +0.375,0.825,0.2672696,0.1336348 +0.375,0.825,0.23811018,0.23811018 +0.375,0.825,0.1683693,0.3367386 +0.375,0.825,0.33673862,0.1683693 +0.375,0.875,0.14999998,0.14999998 +0.375,0.875,0.10606605,0.2121321 +0.375,0.875,0.21213207,0.10606599 +0.375,0.875,0.18898812,0.18898809 +0.375,0.875,0.13363484,0.2672696 +0.375,0.875,0.2672696,0.1336348 +0.375,0.875,0.23811018,0.23811018 +0.375,0.875,0.1683693,0.3367386 +0.375,0.875,0.33673862,0.1683693 +0.375,0.925,0.14999998,0.14999998 +0.375,0.925,0.10606605,0.2121321 +0.375,0.92499995,0.21213207,0.10606593 +0.375,0.925,0.18898812,0.18898809 +0.375,0.9250001,0.13363484,0.26726967 +0.375,0.92499995,0.2672696,0.13363475 +0.375,0.925,0.23811018,0.23811018 +0.375,0.92499995,0.1683693,0.33673853 +0.375,0.92499995,0.33673862,0.16836923 +0.375,0.97499996,0.14999998,0.14999998 +0.375,0.975,0.10606605,0.21213204 +0.375,0.975,0.21213207,0.10606599 +0.375,0.97499996,0.18898812,0.18898809 +0.375,0.975,0.13363484,0.26726967 +0.375,0.975,0.2672696,0.1336348 +0.375,0.975,0.23811018,0.23811013 +0.375,0.975,0.1683693,0.3367386 +0.375,0.975,0.33673862,0.1683693 +0.425,0.025,0.15,0.15 +0.425,0.024999995,0.10606602,0.21213204 +0.425,0.024999999,0.21213207,0.10606602 +0.42499998,0.024999999,0.18898815,0.18898816 +0.425,0.025000002,0.1336348,0.2672696 +0.425,0.024999999,0.2672696,0.1336348 +0.425,0.025000002,0.23811018,0.23811015 +0.425,0.024999999,0.1683693,0.3367386 +0.425,0.025000004,0.33673862,0.16836931 +0.425,0.075,0.15,0.15 +0.425,0.074999996,0.10606602,0.21213202 +0.425,0.075,0.21213207,0.10606602 +0.42499998,0.075,0.18898815,0.18898815 +0.425,0.075,0.1336348,0.2672696 +0.425,0.075,0.2672696,0.1336348 +0.425,0.075,0.23811018,0.23811015 +0.425,0.075,0.1683693,0.33673862 +0.425,0.075,0.33673862,0.16836932 +0.425,0.125,0.15,0.15 +0.425,0.125,0.10606602,0.21213204 +0.425,0.125,0.21213207,0.10606602 +0.42499998,0.125,0.18898815,0.18898815 +0.425,0.125,0.1336348,0.2672696 +0.425,0.125,0.2672696,0.1336348 +0.425,0.125,0.23811018,0.23811015 +0.425,0.125,0.1683693,0.33673865 +0.425,0.125,0.33673862,0.1683693 +0.425,0.175,0.15,0.15 +0.425,0.17499998,0.10606602,0.21213202 +0.425,0.17500001,0.21213207,0.106066026 +0.42499998,0.17500001,0.18898815,0.18898816 +0.425,0.17500001,0.1336348,0.2672696 +0.425,0.175,0.2672696,0.1336348 +0.425,0.175,0.23811018,0.23811015 +0.425,0.175,0.1683693,0.33673862 +0.425,0.17500001,0.33673862,0.16836931 +0.425,0.22500001,0.15,0.15 +0.425,0.225,0.10606602,0.21213202 +0.425,0.22500001,0.21213207,0.10606602 +0.42499998,0.225,0.18898815,0.18898815 +0.425,0.225,0.1336348,0.2672696 +0.425,0.225,0.2672696,0.1336348 +0.425,0.225,0.23811018,0.23811017 +0.425,0.22500001,0.1683693,0.33673862 +0.425,0.225,0.33673862,0.1683693 +0.425,0.275,0.15,0.14999999 +0.425,0.275,0.10606602,0.21213204 +0.425,0.275,0.21213207,0.10606605 +0.42499998,0.275,0.18898815,0.18898816 +0.425,0.275,0.1336348,0.2672696 +0.425,0.275,0.2672696,0.1336348 +0.425,0.27499998,0.23811018,0.23811015 +0.425,0.275,0.1683693,0.3367386 +0.425,0.275,0.33673862,0.16836931 +0.425,0.325,0.15,0.15 +0.425,0.32500002,0.10606602,0.21213205 +0.425,0.325,0.21213207,0.10606602 +0.42499998,0.325,0.18898815,0.18898815 +0.425,0.325,0.1336348,0.2672696 +0.425,0.325,0.2672696,0.1336348 +0.425,0.325,0.23811018,0.23811015 +0.425,0.325,0.1683693,0.3367386 +0.425,0.325,0.33673862,0.16836928 +0.425,0.375,0.15,0.14999998 +0.425,0.375,0.10606602,0.21213207 +0.425,0.375,0.21213207,0.10606605 +0.42499998,0.375,0.18898815,0.18898812 +0.425,0.375,0.1336348,0.2672696 +0.425,0.375,0.2672696,0.13363484 +0.425,0.375,0.23811018,0.23811018 +0.425,0.375,0.1683693,0.33673862 +0.425,0.375,0.33673862,0.1683693 +0.425,0.425,0.15,0.15 +0.425,0.425,0.10606602,0.21213207 +0.425,0.425,0.21213207,0.10606602 +0.42499998,0.42499998,0.18898815,0.18898815 +0.425,0.425,0.1336348,0.2672696 +0.425,0.425,0.2672696,0.1336348 +0.425,0.425,0.23811018,0.23811018 +0.425,0.425,0.1683693,0.33673862 +0.425,0.425,0.33673862,0.1683693 +0.425,0.47500002,0.15,0.15 +0.425,0.475,0.10606602,0.21213204 +0.425,0.475,0.21213207,0.10606605 +0.42499998,0.475,0.18898815,0.18898815 +0.425,0.47500002,0.1336348,0.26726964 +0.425,0.475,0.2672696,0.13363487 +0.425,0.475,0.23811018,0.23811013 +0.425,0.475,0.1683693,0.33673865 +0.425,0.47500002,0.33673862,0.16836932 +0.425,0.525,0.15,0.15000004 +0.425,0.525,0.10606602,0.21213207 +0.425,0.525,0.21213207,0.10606605 +0.42499998,0.525,0.18898815,0.18898815 +0.425,0.525,0.1336348,0.26726958 +0.425,0.525,0.2672696,0.13363487 +0.425,0.525,0.23811018,0.23811015 +0.425,0.525,0.1683693,0.3367386 +0.425,0.525,0.33673862,0.16836926 +0.425,0.575,0.15,0.14999998 +0.425,0.575,0.10606602,0.21213207 +0.425,0.57500005,0.21213207,0.10606605 +0.42499998,0.575,0.18898815,0.18898809 +0.425,0.575,0.1336348,0.2672696 +0.425,0.57500005,0.2672696,0.13363487 +0.425,0.575,0.23811018,0.23811015 +0.425,0.575,0.1683693,0.3367386 +0.425,0.575,0.33673862,0.1683693 +0.425,0.625,0.15,0.14999998 +0.425,0.625,0.10606602,0.2121321 +0.425,0.625,0.21213207,0.10606599 +0.42499998,0.625,0.18898815,0.18898809 +0.425,0.625,0.1336348,0.2672696 +0.425,0.625,0.2672696,0.1336348 +0.425,0.625,0.23811018,0.23811018 +0.425,0.625,0.1683693,0.3367386 +0.425,0.625,0.33673862,0.1683693 +0.425,0.675,0.15,0.14999998 +0.425,0.675,0.10606602,0.2121321 +0.425,0.67499995,0.21213207,0.10606605 +0.42499998,0.675,0.18898815,0.18898809 +0.425,0.6750001,0.1336348,0.26726967 +0.425,0.67499995,0.2672696,0.13363487 +0.425,0.675,0.23811018,0.23811018 +0.425,0.675,0.1683693,0.3367386 +0.425,0.675,0.33673862,0.1683693 +0.425,0.725,0.15,0.15000004 +0.425,0.725,0.10606602,0.21213204 +0.425,0.725,0.21213207,0.10606605 +0.42499998,0.725,0.18898815,0.18898815 +0.425,0.725,0.1336348,0.2672696 +0.425,0.725,0.2672696,0.13363487 +0.425,0.725,0.23811018,0.23811013 +0.425,0.725,0.1683693,0.3367386 +0.425,0.725,0.33673862,0.1683693 +0.425,0.775,0.15,0.15000004 +0.425,0.775,0.10606602,0.21213204 +0.425,0.775,0.21213207,0.10606599 +0.42499998,0.775,0.18898815,0.18898815 +0.425,0.775,0.1336348,0.26726967 +0.425,0.775,0.2672696,0.1336348 +0.425,0.775,0.23811018,0.23811013 +0.425,0.775,0.1683693,0.3367386 +0.425,0.775,0.33673862,0.1683693 +0.425,0.825,0.15,0.14999998 +0.425,0.825,0.10606602,0.2121321 +0.425,0.825,0.21213207,0.10606599 +0.42499998,0.825,0.18898815,0.18898809 +0.425,0.82500005,0.1336348,0.26726967 +0.425,0.825,0.2672696,0.1336348 +0.425,0.825,0.23811018,0.23811018 +0.425,0.825,0.1683693,0.3367386 +0.425,0.825,0.33673862,0.1683693 +0.425,0.875,0.15,0.14999998 +0.425,0.875,0.10606602,0.2121321 +0.425,0.875,0.21213207,0.10606599 +0.42499998,0.875,0.18898815,0.18898809 +0.425,0.875,0.1336348,0.2672696 +0.425,0.875,0.2672696,0.1336348 +0.425,0.875,0.23811018,0.23811018 +0.425,0.875,0.1683693,0.3367386 +0.425,0.875,0.33673862,0.1683693 +0.425,0.925,0.15,0.14999998 +0.425,0.925,0.10606602,0.2121321 +0.425,0.92499995,0.21213207,0.10606593 +0.42499998,0.925,0.18898815,0.18898809 +0.425,0.9250001,0.1336348,0.26726967 +0.425,0.92499995,0.2672696,0.13363475 +0.425,0.925,0.23811018,0.23811018 +0.425,0.92499995,0.1683693,0.33673853 +0.425,0.92499995,0.33673862,0.16836923 +0.425,0.97499996,0.15,0.14999998 +0.425,0.975,0.10606602,0.21213204 +0.425,0.975,0.21213207,0.10606599 +0.42499998,0.97499996,0.18898815,0.18898809 +0.425,0.975,0.1336348,0.26726967 +0.425,0.975,0.2672696,0.1336348 +0.425,0.975,0.23811018,0.23811013 +0.425,0.975,0.1683693,0.3367386 +0.425,0.975,0.33673862,0.1683693 +0.47500002,0.025,0.15,0.15 +0.475,0.024999995,0.10606605,0.21213204 +0.475,0.024999999,0.21213204,0.10606602 +0.475,0.024999999,0.18898815,0.18898816 +0.475,0.025000002,0.13363487,0.2672696 +0.47500002,0.024999999,0.26726964,0.1336348 +0.475,0.025000002,0.23811013,0.23811015 +0.47500002,0.024999999,0.16836932,0.3367386 +0.475,0.025000004,0.33673865,0.16836931 +0.47500002,0.075,0.15,0.15 +0.475,0.074999996,0.10606605,0.21213202 +0.475,0.075,0.21213204,0.10606602 +0.475,0.075,0.18898815,0.18898815 +0.475,0.075,0.13363487,0.2672696 +0.47500002,0.075,0.26726964,0.1336348 +0.475,0.075,0.23811013,0.23811015 +0.47500002,0.075,0.16836932,0.33673862 +0.475,0.075,0.33673865,0.16836932 +0.47500002,0.125,0.15,0.15 +0.475,0.125,0.10606605,0.21213204 +0.475,0.125,0.21213204,0.10606602 +0.475,0.125,0.18898815,0.18898815 +0.475,0.125,0.13363487,0.2672696 +0.47500002,0.125,0.26726964,0.1336348 +0.475,0.125,0.23811013,0.23811015 +0.47500002,0.125,0.16836932,0.33673865 +0.475,0.125,0.33673865,0.1683693 +0.47500002,0.175,0.15,0.15 +0.475,0.17499998,0.10606605,0.21213202 +0.475,0.17500001,0.21213204,0.106066026 +0.475,0.17500001,0.18898815,0.18898816 +0.475,0.17500001,0.13363487,0.2672696 +0.47500002,0.175,0.26726964,0.1336348 +0.475,0.175,0.23811013,0.23811015 +0.47500002,0.175,0.16836932,0.33673862 +0.475,0.17500001,0.33673865,0.16836931 +0.47500002,0.22500001,0.15,0.15 +0.475,0.225,0.10606605,0.21213202 +0.475,0.22500001,0.21213204,0.10606602 +0.475,0.225,0.18898815,0.18898815 +0.475,0.225,0.13363487,0.2672696 +0.47500002,0.225,0.26726964,0.1336348 +0.475,0.225,0.23811013,0.23811017 +0.47500002,0.22500001,0.16836932,0.33673862 +0.475,0.225,0.33673865,0.1683693 +0.47500002,0.275,0.15,0.14999999 +0.475,0.275,0.10606605,0.21213204 +0.475,0.275,0.21213204,0.10606605 +0.475,0.275,0.18898815,0.18898816 +0.475,0.275,0.13363487,0.2672696 +0.47500002,0.275,0.26726964,0.1336348 +0.475,0.27499998,0.23811013,0.23811015 +0.47500002,0.275,0.16836932,0.3367386 +0.475,0.275,0.33673865,0.16836931 +0.47500002,0.325,0.15,0.15 +0.475,0.32500002,0.10606605,0.21213205 +0.475,0.325,0.21213204,0.10606602 +0.475,0.325,0.18898815,0.18898815 +0.475,0.325,0.13363487,0.2672696 +0.47500002,0.325,0.26726964,0.1336348 +0.475,0.325,0.23811013,0.23811015 +0.47500002,0.325,0.16836932,0.3367386 +0.475,0.325,0.33673865,0.16836928 +0.47500002,0.375,0.15,0.14999998 +0.475,0.375,0.10606605,0.21213207 +0.475,0.375,0.21213204,0.10606605 +0.475,0.375,0.18898815,0.18898812 +0.475,0.375,0.13363487,0.2672696 +0.47500002,0.375,0.26726964,0.13363484 +0.475,0.375,0.23811013,0.23811018 +0.47500002,0.375,0.16836932,0.33673862 +0.475,0.375,0.33673865,0.1683693 +0.47500002,0.425,0.15,0.15 +0.475,0.425,0.10606605,0.21213207 +0.475,0.425,0.21213204,0.10606602 +0.475,0.42499998,0.18898815,0.18898815 +0.475,0.425,0.13363487,0.2672696 +0.47500002,0.425,0.26726964,0.1336348 +0.475,0.425,0.23811013,0.23811018 +0.47500002,0.425,0.16836932,0.33673862 +0.475,0.425,0.33673865,0.1683693 +0.47500002,0.47500002,0.15,0.15 +0.475,0.475,0.10606605,0.21213204 +0.475,0.475,0.21213204,0.10606605 +0.475,0.475,0.18898815,0.18898815 +0.475,0.47500002,0.13363487,0.26726964 +0.47500002,0.475,0.26726964,0.13363487 +0.475,0.475,0.23811013,0.23811013 +0.47500002,0.475,0.16836932,0.33673865 +0.475,0.47500002,0.33673865,0.16836932 +0.47500002,0.525,0.15,0.15000004 +0.475,0.525,0.10606605,0.21213207 +0.475,0.525,0.21213204,0.10606605 +0.475,0.525,0.18898815,0.18898815 +0.475,0.525,0.13363487,0.26726958 +0.47500002,0.525,0.26726964,0.13363487 +0.475,0.525,0.23811013,0.23811015 +0.47500002,0.525,0.16836932,0.3367386 +0.475,0.525,0.33673865,0.16836926 +0.47500002,0.575,0.15,0.14999998 +0.475,0.575,0.10606605,0.21213207 +0.475,0.57500005,0.21213204,0.10606605 +0.475,0.575,0.18898815,0.18898809 +0.475,0.575,0.13363487,0.2672696 +0.47500002,0.57500005,0.26726964,0.13363487 +0.475,0.575,0.23811013,0.23811015 +0.47500002,0.575,0.16836932,0.3367386 +0.475,0.575,0.33673865,0.1683693 +0.47500002,0.625,0.15,0.14999998 +0.475,0.625,0.10606605,0.2121321 +0.475,0.625,0.21213204,0.10606599 +0.475,0.625,0.18898815,0.18898809 +0.475,0.625,0.13363487,0.2672696 +0.47500002,0.625,0.26726964,0.1336348 +0.475,0.625,0.23811013,0.23811018 +0.47500002,0.625,0.16836932,0.3367386 +0.475,0.625,0.33673865,0.1683693 +0.47500002,0.675,0.15,0.14999998 +0.475,0.675,0.10606605,0.2121321 +0.475,0.67499995,0.21213204,0.10606605 +0.475,0.675,0.18898815,0.18898809 +0.475,0.6750001,0.13363487,0.26726967 +0.47500002,0.67499995,0.26726964,0.13363487 +0.475,0.675,0.23811013,0.23811018 +0.47500002,0.675,0.16836932,0.3367386 +0.475,0.675,0.33673865,0.1683693 +0.47500002,0.725,0.15,0.15000004 +0.475,0.725,0.10606605,0.21213204 +0.475,0.725,0.21213204,0.10606605 +0.475,0.725,0.18898815,0.18898815 +0.475,0.725,0.13363487,0.2672696 +0.47500002,0.725,0.26726964,0.13363487 +0.475,0.725,0.23811013,0.23811013 +0.47500002,0.725,0.16836932,0.3367386 +0.475,0.725,0.33673865,0.1683693 +0.47500002,0.775,0.15,0.15000004 +0.475,0.775,0.10606605,0.21213204 +0.475,0.775,0.21213204,0.10606599 +0.475,0.775,0.18898815,0.18898815 +0.475,0.775,0.13363487,0.26726967 +0.47500002,0.775,0.26726964,0.1336348 +0.475,0.775,0.23811013,0.23811013 +0.47500002,0.775,0.16836932,0.3367386 +0.475,0.775,0.33673865,0.1683693 +0.47500002,0.825,0.15,0.14999998 +0.475,0.825,0.10606605,0.2121321 +0.475,0.825,0.21213204,0.10606599 +0.475,0.825,0.18898815,0.18898809 +0.475,0.82500005,0.13363487,0.26726967 +0.47500002,0.825,0.26726964,0.1336348 +0.475,0.825,0.23811013,0.23811018 +0.47500002,0.825,0.16836932,0.3367386 +0.475,0.825,0.33673865,0.1683693 +0.47500002,0.875,0.15,0.14999998 +0.475,0.875,0.10606605,0.2121321 +0.475,0.875,0.21213204,0.10606599 +0.475,0.875,0.18898815,0.18898809 +0.475,0.875,0.13363487,0.2672696 +0.47500002,0.875,0.26726964,0.1336348 +0.475,0.875,0.23811013,0.23811018 +0.47500002,0.875,0.16836932,0.3367386 +0.475,0.875,0.33673865,0.1683693 +0.47500002,0.925,0.15,0.14999998 +0.475,0.925,0.10606605,0.2121321 +0.475,0.92499995,0.21213204,0.10606593 +0.475,0.925,0.18898815,0.18898809 +0.475,0.9250001,0.13363487,0.26726967 +0.47500002,0.92499995,0.26726964,0.13363475 +0.475,0.925,0.23811013,0.23811018 +0.47500002,0.92499995,0.16836932,0.33673853 +0.475,0.92499995,0.33673865,0.16836923 +0.47500002,0.97499996,0.15,0.14999998 +0.475,0.975,0.10606605,0.21213204 +0.475,0.975,0.21213204,0.10606599 +0.475,0.97499996,0.18898815,0.18898809 +0.475,0.975,0.13363487,0.26726967 +0.47500002,0.975,0.26726964,0.1336348 +0.475,0.975,0.23811013,0.23811013 +0.47500002,0.975,0.16836932,0.3367386 +0.475,0.975,0.33673865,0.1683693 +0.525,0.025,0.15000004,0.15 +0.525,0.024999995,0.10606605,0.21213204 +0.525,0.024999999,0.21213207,0.10606602 +0.525,0.024999999,0.18898815,0.18898816 +0.525,0.025000002,0.13363487,0.2672696 +0.525,0.024999999,0.26726958,0.1336348 +0.525,0.025000002,0.23811015,0.23811015 +0.525,0.024999999,0.16836926,0.3367386 +0.525,0.025000004,0.3367386,0.16836931 +0.525,0.075,0.15000004,0.15 +0.525,0.074999996,0.10606605,0.21213202 +0.525,0.075,0.21213207,0.10606602 +0.525,0.075,0.18898815,0.18898815 +0.525,0.075,0.13363487,0.2672696 +0.525,0.075,0.26726958,0.1336348 +0.525,0.075,0.23811015,0.23811015 +0.525,0.075,0.16836926,0.33673862 +0.525,0.075,0.3367386,0.16836932 +0.525,0.125,0.15000004,0.15 +0.525,0.125,0.10606605,0.21213204 +0.525,0.125,0.21213207,0.10606602 +0.525,0.125,0.18898815,0.18898815 +0.525,0.125,0.13363487,0.2672696 +0.525,0.125,0.26726958,0.1336348 +0.525,0.125,0.23811015,0.23811015 +0.525,0.125,0.16836926,0.33673865 +0.525,0.125,0.3367386,0.1683693 +0.525,0.175,0.15000004,0.15 +0.525,0.17499998,0.10606605,0.21213202 +0.525,0.17500001,0.21213207,0.106066026 +0.525,0.17500001,0.18898815,0.18898816 +0.525,0.17500001,0.13363487,0.2672696 +0.525,0.175,0.26726958,0.1336348 +0.525,0.175,0.23811015,0.23811015 +0.525,0.175,0.16836926,0.33673862 +0.525,0.17500001,0.3367386,0.16836931 +0.525,0.22500001,0.15000004,0.15 +0.525,0.225,0.10606605,0.21213202 +0.525,0.22500001,0.21213207,0.10606602 +0.525,0.225,0.18898815,0.18898815 +0.525,0.225,0.13363487,0.2672696 +0.525,0.225,0.26726958,0.1336348 +0.525,0.225,0.23811015,0.23811017 +0.525,0.22500001,0.16836926,0.33673862 +0.525,0.225,0.3367386,0.1683693 +0.525,0.275,0.15000004,0.14999999 +0.525,0.275,0.10606605,0.21213204 +0.525,0.275,0.21213207,0.10606605 +0.525,0.275,0.18898815,0.18898816 +0.525,0.275,0.13363487,0.2672696 +0.525,0.275,0.26726958,0.1336348 +0.525,0.27499998,0.23811015,0.23811015 +0.525,0.275,0.16836926,0.3367386 +0.525,0.275,0.3367386,0.16836931 +0.525,0.325,0.15000004,0.15 +0.525,0.32500002,0.10606605,0.21213205 +0.525,0.325,0.21213207,0.10606602 +0.525,0.325,0.18898815,0.18898815 +0.525,0.325,0.13363487,0.2672696 +0.525,0.325,0.26726958,0.1336348 +0.525,0.325,0.23811015,0.23811015 +0.525,0.325,0.16836926,0.3367386 +0.525,0.325,0.3367386,0.16836928 +0.525,0.375,0.15000004,0.14999998 +0.525,0.375,0.10606605,0.21213207 +0.525,0.375,0.21213207,0.10606605 +0.525,0.375,0.18898815,0.18898812 +0.525,0.375,0.13363487,0.2672696 +0.525,0.375,0.26726958,0.13363484 +0.525,0.375,0.23811015,0.23811018 +0.525,0.375,0.16836926,0.33673862 +0.525,0.375,0.3367386,0.1683693 +0.525,0.425,0.15000004,0.15 +0.525,0.425,0.10606605,0.21213207 +0.525,0.425,0.21213207,0.10606602 +0.525,0.42499998,0.18898815,0.18898815 +0.525,0.425,0.13363487,0.2672696 +0.525,0.425,0.26726958,0.1336348 +0.525,0.425,0.23811015,0.23811018 +0.525,0.425,0.16836926,0.33673862 +0.525,0.425,0.3367386,0.1683693 +0.525,0.47500002,0.15000004,0.15 +0.525,0.475,0.10606605,0.21213204 +0.525,0.475,0.21213207,0.10606605 +0.525,0.475,0.18898815,0.18898815 +0.525,0.47500002,0.13363487,0.26726964 +0.525,0.475,0.26726958,0.13363487 +0.525,0.475,0.23811015,0.23811013 +0.525,0.475,0.16836926,0.33673865 +0.525,0.47500002,0.3367386,0.16836932 +0.525,0.525,0.15000004,0.15000004 +0.525,0.525,0.10606605,0.21213207 +0.525,0.525,0.21213207,0.10606605 +0.525,0.525,0.18898815,0.18898815 +0.525,0.525,0.13363487,0.26726958 +0.525,0.525,0.26726958,0.13363487 +0.525,0.525,0.23811015,0.23811015 +0.525,0.525,0.16836926,0.3367386 +0.525,0.525,0.3367386,0.16836926 +0.525,0.575,0.15000004,0.14999998 +0.525,0.575,0.10606605,0.21213207 +0.525,0.57500005,0.21213207,0.10606605 +0.525,0.575,0.18898815,0.18898809 +0.525,0.575,0.13363487,0.2672696 +0.525,0.57500005,0.26726958,0.13363487 +0.525,0.575,0.23811015,0.23811015 +0.525,0.575,0.16836926,0.3367386 +0.525,0.575,0.3367386,0.1683693 +0.525,0.625,0.15000004,0.14999998 +0.525,0.625,0.10606605,0.2121321 +0.525,0.625,0.21213207,0.10606599 +0.525,0.625,0.18898815,0.18898809 +0.525,0.625,0.13363487,0.2672696 +0.525,0.625,0.26726958,0.1336348 +0.525,0.625,0.23811015,0.23811018 +0.525,0.625,0.16836926,0.3367386 +0.525,0.625,0.3367386,0.1683693 +0.525,0.675,0.15000004,0.14999998 +0.525,0.675,0.10606605,0.2121321 +0.525,0.67499995,0.21213207,0.10606605 +0.525,0.675,0.18898815,0.18898809 +0.525,0.6750001,0.13363487,0.26726967 +0.525,0.67499995,0.26726958,0.13363487 +0.525,0.675,0.23811015,0.23811018 +0.525,0.675,0.16836926,0.3367386 +0.525,0.675,0.3367386,0.1683693 +0.525,0.725,0.15000004,0.15000004 +0.525,0.725,0.10606605,0.21213204 +0.525,0.725,0.21213207,0.10606605 +0.525,0.725,0.18898815,0.18898815 +0.525,0.725,0.13363487,0.2672696 +0.525,0.725,0.26726958,0.13363487 +0.525,0.725,0.23811015,0.23811013 +0.525,0.725,0.16836926,0.3367386 +0.525,0.725,0.3367386,0.1683693 +0.525,0.775,0.15000004,0.15000004 +0.525,0.775,0.10606605,0.21213204 +0.525,0.775,0.21213207,0.10606599 +0.525,0.775,0.18898815,0.18898815 +0.525,0.775,0.13363487,0.26726967 +0.525,0.775,0.26726958,0.1336348 +0.525,0.775,0.23811015,0.23811013 +0.525,0.775,0.16836926,0.3367386 +0.525,0.775,0.3367386,0.1683693 +0.525,0.825,0.15000004,0.14999998 +0.525,0.825,0.10606605,0.2121321 +0.525,0.825,0.21213207,0.10606599 +0.525,0.825,0.18898815,0.18898809 +0.525,0.82500005,0.13363487,0.26726967 +0.525,0.825,0.26726958,0.1336348 +0.525,0.825,0.23811015,0.23811018 +0.525,0.825,0.16836926,0.3367386 +0.525,0.825,0.3367386,0.1683693 +0.525,0.875,0.15000004,0.14999998 +0.525,0.875,0.10606605,0.2121321 +0.525,0.875,0.21213207,0.10606599 +0.525,0.875,0.18898815,0.18898809 +0.525,0.875,0.13363487,0.2672696 +0.525,0.875,0.26726958,0.1336348 +0.525,0.875,0.23811015,0.23811018 +0.525,0.875,0.16836926,0.3367386 +0.525,0.875,0.3367386,0.1683693 +0.525,0.925,0.15000004,0.14999998 +0.525,0.925,0.10606605,0.2121321 +0.525,0.92499995,0.21213207,0.10606593 +0.525,0.925,0.18898815,0.18898809 +0.525,0.9250001,0.13363487,0.26726967 +0.525,0.92499995,0.26726958,0.13363475 +0.525,0.925,0.23811015,0.23811018 +0.525,0.92499995,0.16836926,0.33673853 +0.525,0.92499995,0.3367386,0.16836923 +0.525,0.97499996,0.15000004,0.14999998 +0.525,0.975,0.10606605,0.21213204 +0.525,0.975,0.21213207,0.10606599 +0.525,0.97499996,0.18898815,0.18898809 +0.525,0.975,0.13363487,0.26726967 +0.525,0.975,0.26726958,0.1336348 +0.525,0.975,0.23811015,0.23811013 +0.525,0.975,0.16836926,0.3367386 +0.525,0.975,0.3367386,0.1683693 +0.575,0.025,0.14999998,0.15 +0.57500005,0.024999995,0.10606605,0.21213204 +0.575,0.024999999,0.21213207,0.10606602 +0.575,0.024999999,0.18898809,0.18898816 +0.57500005,0.025000002,0.13363487,0.2672696 +0.575,0.024999999,0.2672696,0.1336348 +0.575,0.025000002,0.23811015,0.23811015 +0.575,0.024999999,0.1683693,0.3367386 +0.575,0.025000004,0.3367386,0.16836931 +0.575,0.075,0.14999998,0.15 +0.57500005,0.074999996,0.10606605,0.21213202 +0.575,0.075,0.21213207,0.10606602 +0.575,0.075,0.18898809,0.18898815 +0.57500005,0.075,0.13363487,0.2672696 +0.575,0.075,0.2672696,0.1336348 +0.575,0.075,0.23811015,0.23811015 +0.575,0.075,0.1683693,0.33673862 +0.575,0.075,0.3367386,0.16836932 +0.575,0.125,0.14999998,0.15 +0.57500005,0.125,0.10606605,0.21213204 +0.575,0.125,0.21213207,0.10606602 +0.575,0.125,0.18898809,0.18898815 +0.57500005,0.125,0.13363487,0.2672696 +0.575,0.125,0.2672696,0.1336348 +0.575,0.125,0.23811015,0.23811015 +0.575,0.125,0.1683693,0.33673865 +0.575,0.125,0.3367386,0.1683693 +0.575,0.175,0.14999998,0.15 +0.57500005,0.17499998,0.10606605,0.21213202 +0.575,0.17500001,0.21213207,0.106066026 +0.575,0.17500001,0.18898809,0.18898816 +0.57500005,0.17500001,0.13363487,0.2672696 +0.575,0.175,0.2672696,0.1336348 +0.575,0.175,0.23811015,0.23811015 +0.575,0.175,0.1683693,0.33673862 +0.575,0.17500001,0.3367386,0.16836931 +0.575,0.22500001,0.14999998,0.15 +0.57500005,0.225,0.10606605,0.21213202 +0.575,0.22500001,0.21213207,0.10606602 +0.575,0.225,0.18898809,0.18898815 +0.57500005,0.225,0.13363487,0.2672696 +0.575,0.225,0.2672696,0.1336348 +0.575,0.225,0.23811015,0.23811017 +0.575,0.22500001,0.1683693,0.33673862 +0.575,0.225,0.3367386,0.1683693 +0.575,0.275,0.14999998,0.14999999 +0.57500005,0.275,0.10606605,0.21213204 +0.575,0.275,0.21213207,0.10606605 +0.575,0.275,0.18898809,0.18898816 +0.57500005,0.275,0.13363487,0.2672696 +0.575,0.275,0.2672696,0.1336348 +0.575,0.27499998,0.23811015,0.23811015 +0.575,0.275,0.1683693,0.3367386 +0.575,0.275,0.3367386,0.16836931 +0.575,0.325,0.14999998,0.15 +0.57500005,0.32500002,0.10606605,0.21213205 +0.575,0.325,0.21213207,0.10606602 +0.575,0.325,0.18898809,0.18898815 +0.57500005,0.325,0.13363487,0.2672696 +0.575,0.325,0.2672696,0.1336348 +0.575,0.325,0.23811015,0.23811015 +0.575,0.325,0.1683693,0.3367386 +0.575,0.325,0.3367386,0.16836928 +0.575,0.375,0.14999998,0.14999998 +0.57500005,0.375,0.10606605,0.21213207 +0.575,0.375,0.21213207,0.10606605 +0.575,0.375,0.18898809,0.18898812 +0.57500005,0.375,0.13363487,0.2672696 +0.575,0.375,0.2672696,0.13363484 +0.575,0.375,0.23811015,0.23811018 +0.575,0.375,0.1683693,0.33673862 +0.575,0.375,0.3367386,0.1683693 +0.575,0.425,0.14999998,0.15 +0.57500005,0.425,0.10606605,0.21213207 +0.575,0.425,0.21213207,0.10606602 +0.575,0.42499998,0.18898809,0.18898815 +0.57500005,0.425,0.13363487,0.2672696 +0.575,0.425,0.2672696,0.1336348 +0.575,0.425,0.23811015,0.23811018 +0.575,0.425,0.1683693,0.33673862 +0.575,0.425,0.3367386,0.1683693 +0.575,0.47500002,0.14999998,0.15 +0.57500005,0.475,0.10606605,0.21213204 +0.575,0.475,0.21213207,0.10606605 +0.575,0.475,0.18898809,0.18898815 +0.57500005,0.47500002,0.13363487,0.26726964 +0.575,0.475,0.2672696,0.13363487 +0.575,0.475,0.23811015,0.23811013 +0.575,0.475,0.1683693,0.33673865 +0.575,0.47500002,0.3367386,0.16836932 +0.575,0.525,0.14999998,0.15000004 +0.57500005,0.525,0.10606605,0.21213207 +0.575,0.525,0.21213207,0.10606605 +0.575,0.525,0.18898809,0.18898815 +0.57500005,0.525,0.13363487,0.26726958 +0.575,0.525,0.2672696,0.13363487 +0.575,0.525,0.23811015,0.23811015 +0.575,0.525,0.1683693,0.3367386 +0.575,0.525,0.3367386,0.16836926 +0.575,0.575,0.14999998,0.14999998 +0.57500005,0.575,0.10606605,0.21213207 +0.575,0.57500005,0.21213207,0.10606605 +0.575,0.575,0.18898809,0.18898809 +0.57500005,0.575,0.13363487,0.2672696 +0.575,0.57500005,0.2672696,0.13363487 +0.575,0.575,0.23811015,0.23811015 +0.575,0.575,0.1683693,0.3367386 +0.575,0.575,0.3367386,0.1683693 +0.575,0.625,0.14999998,0.14999998 +0.57500005,0.625,0.10606605,0.2121321 +0.575,0.625,0.21213207,0.10606599 +0.575,0.625,0.18898809,0.18898809 +0.57500005,0.625,0.13363487,0.2672696 +0.575,0.625,0.2672696,0.1336348 +0.575,0.625,0.23811015,0.23811018 +0.575,0.625,0.1683693,0.3367386 +0.575,0.625,0.3367386,0.1683693 +0.575,0.675,0.14999998,0.14999998 +0.57500005,0.675,0.10606605,0.2121321 +0.575,0.67499995,0.21213207,0.10606605 +0.575,0.675,0.18898809,0.18898809 +0.57500005,0.6750001,0.13363487,0.26726967 +0.575,0.67499995,0.2672696,0.13363487 +0.575,0.675,0.23811015,0.23811018 +0.575,0.675,0.1683693,0.3367386 +0.575,0.675,0.3367386,0.1683693 +0.575,0.725,0.14999998,0.15000004 +0.57500005,0.725,0.10606605,0.21213204 +0.575,0.725,0.21213207,0.10606605 +0.575,0.725,0.18898809,0.18898815 +0.57500005,0.725,0.13363487,0.2672696 +0.575,0.725,0.2672696,0.13363487 +0.575,0.725,0.23811015,0.23811013 +0.575,0.725,0.1683693,0.3367386 +0.575,0.725,0.3367386,0.1683693 +0.575,0.775,0.14999998,0.15000004 +0.57500005,0.775,0.10606605,0.21213204 +0.575,0.775,0.21213207,0.10606599 +0.575,0.775,0.18898809,0.18898815 +0.57500005,0.775,0.13363487,0.26726967 +0.575,0.775,0.2672696,0.1336348 +0.575,0.775,0.23811015,0.23811013 +0.575,0.775,0.1683693,0.3367386 +0.575,0.775,0.3367386,0.1683693 +0.575,0.825,0.14999998,0.14999998 +0.57500005,0.825,0.10606605,0.2121321 +0.575,0.825,0.21213207,0.10606599 +0.575,0.825,0.18898809,0.18898809 +0.57500005,0.82500005,0.13363487,0.26726967 +0.575,0.825,0.2672696,0.1336348 +0.575,0.825,0.23811015,0.23811018 +0.575,0.825,0.1683693,0.3367386 +0.575,0.825,0.3367386,0.1683693 +0.575,0.875,0.14999998,0.14999998 +0.57500005,0.875,0.10606605,0.2121321 +0.575,0.875,0.21213207,0.10606599 +0.575,0.875,0.18898809,0.18898809 +0.57500005,0.875,0.13363487,0.2672696 +0.575,0.875,0.2672696,0.1336348 +0.575,0.875,0.23811015,0.23811018 +0.575,0.875,0.1683693,0.3367386 +0.575,0.875,0.3367386,0.1683693 +0.575,0.925,0.14999998,0.14999998 +0.57500005,0.925,0.10606605,0.2121321 +0.575,0.92499995,0.21213207,0.10606593 +0.575,0.925,0.18898809,0.18898809 +0.57500005,0.9250001,0.13363487,0.26726967 +0.575,0.92499995,0.2672696,0.13363475 +0.575,0.925,0.23811015,0.23811018 +0.575,0.92499995,0.1683693,0.33673853 +0.575,0.92499995,0.3367386,0.16836923 +0.575,0.97499996,0.14999998,0.14999998 +0.57500005,0.975,0.10606605,0.21213204 +0.575,0.975,0.21213207,0.10606599 +0.575,0.97499996,0.18898809,0.18898809 +0.57500005,0.975,0.13363487,0.26726967 +0.575,0.975,0.2672696,0.1336348 +0.575,0.975,0.23811015,0.23811013 +0.575,0.975,0.1683693,0.3367386 +0.575,0.975,0.3367386,0.1683693 +0.625,0.025,0.14999998,0.15 +0.625,0.024999995,0.10606599,0.21213204 +0.625,0.024999999,0.2121321,0.10606602 +0.625,0.024999999,0.18898809,0.18898816 +0.625,0.025000002,0.1336348,0.2672696 +0.625,0.024999999,0.2672696,0.1336348 +0.625,0.025000002,0.23811018,0.23811015 +0.625,0.024999999,0.1683693,0.3367386 +0.625,0.025000004,0.3367386,0.16836931 +0.625,0.075,0.14999998,0.15 +0.625,0.074999996,0.10606599,0.21213202 +0.625,0.075,0.2121321,0.10606602 +0.625,0.075,0.18898809,0.18898815 +0.625,0.075,0.1336348,0.2672696 +0.625,0.075,0.2672696,0.1336348 +0.625,0.075,0.23811018,0.23811015 +0.625,0.075,0.1683693,0.33673862 +0.625,0.075,0.3367386,0.16836932 +0.625,0.125,0.14999998,0.15 +0.625,0.125,0.10606599,0.21213204 +0.625,0.125,0.2121321,0.10606602 +0.625,0.125,0.18898809,0.18898815 +0.625,0.125,0.1336348,0.2672696 +0.625,0.125,0.2672696,0.1336348 +0.625,0.125,0.23811018,0.23811015 +0.625,0.125,0.1683693,0.33673865 +0.625,0.125,0.3367386,0.1683693 +0.625,0.175,0.14999998,0.15 +0.625,0.17499998,0.10606599,0.21213202 +0.625,0.17500001,0.2121321,0.106066026 +0.625,0.17500001,0.18898809,0.18898816 +0.625,0.17500001,0.1336348,0.2672696 +0.625,0.175,0.2672696,0.1336348 +0.625,0.175,0.23811018,0.23811015 +0.625,0.175,0.1683693,0.33673862 +0.625,0.17500001,0.3367386,0.16836931 +0.625,0.22500001,0.14999998,0.15 +0.625,0.225,0.10606599,0.21213202 +0.625,0.22500001,0.2121321,0.10606602 +0.625,0.225,0.18898809,0.18898815 +0.625,0.225,0.1336348,0.2672696 +0.625,0.225,0.2672696,0.1336348 +0.625,0.225,0.23811018,0.23811017 +0.625,0.22500001,0.1683693,0.33673862 +0.625,0.225,0.3367386,0.1683693 +0.625,0.275,0.14999998,0.14999999 +0.625,0.275,0.10606599,0.21213204 +0.625,0.275,0.2121321,0.10606605 +0.625,0.275,0.18898809,0.18898816 +0.625,0.275,0.1336348,0.2672696 +0.625,0.275,0.2672696,0.1336348 +0.625,0.27499998,0.23811018,0.23811015 +0.625,0.275,0.1683693,0.3367386 +0.625,0.275,0.3367386,0.16836931 +0.625,0.325,0.14999998,0.15 +0.625,0.32500002,0.10606599,0.21213205 +0.625,0.325,0.2121321,0.10606602 +0.625,0.325,0.18898809,0.18898815 +0.625,0.325,0.1336348,0.2672696 +0.625,0.325,0.2672696,0.1336348 +0.625,0.325,0.23811018,0.23811015 +0.625,0.325,0.1683693,0.3367386 +0.625,0.325,0.3367386,0.16836928 +0.625,0.375,0.14999998,0.14999998 +0.625,0.375,0.10606599,0.21213207 +0.625,0.375,0.2121321,0.10606605 +0.625,0.375,0.18898809,0.18898812 +0.625,0.375,0.1336348,0.2672696 +0.625,0.375,0.2672696,0.13363484 +0.625,0.375,0.23811018,0.23811018 +0.625,0.375,0.1683693,0.33673862 +0.625,0.375,0.3367386,0.1683693 +0.625,0.425,0.14999998,0.15 +0.625,0.425,0.10606599,0.21213207 +0.625,0.425,0.2121321,0.10606602 +0.625,0.42499998,0.18898809,0.18898815 +0.625,0.425,0.1336348,0.2672696 +0.625,0.425,0.2672696,0.1336348 +0.625,0.425,0.23811018,0.23811018 +0.625,0.425,0.1683693,0.33673862 +0.625,0.425,0.3367386,0.1683693 +0.625,0.47500002,0.14999998,0.15 +0.625,0.475,0.10606599,0.21213204 +0.625,0.475,0.2121321,0.10606605 +0.625,0.475,0.18898809,0.18898815 +0.625,0.47500002,0.1336348,0.26726964 +0.625,0.475,0.2672696,0.13363487 +0.625,0.475,0.23811018,0.23811013 +0.625,0.475,0.1683693,0.33673865 +0.625,0.47500002,0.3367386,0.16836932 +0.625,0.525,0.14999998,0.15000004 +0.625,0.525,0.10606599,0.21213207 +0.625,0.525,0.2121321,0.10606605 +0.625,0.525,0.18898809,0.18898815 +0.625,0.525,0.1336348,0.26726958 +0.625,0.525,0.2672696,0.13363487 +0.625,0.525,0.23811018,0.23811015 +0.625,0.525,0.1683693,0.3367386 +0.625,0.525,0.3367386,0.16836926 +0.625,0.575,0.14999998,0.14999998 +0.625,0.575,0.10606599,0.21213207 +0.625,0.57500005,0.2121321,0.10606605 +0.625,0.575,0.18898809,0.18898809 +0.625,0.575,0.1336348,0.2672696 +0.625,0.57500005,0.2672696,0.13363487 +0.625,0.575,0.23811018,0.23811015 +0.625,0.575,0.1683693,0.3367386 +0.625,0.575,0.3367386,0.1683693 +0.625,0.625,0.14999998,0.14999998 +0.625,0.625,0.10606599,0.2121321 +0.625,0.625,0.2121321,0.10606599 +0.625,0.625,0.18898809,0.18898809 +0.625,0.625,0.1336348,0.2672696 +0.625,0.625,0.2672696,0.1336348 +0.625,0.625,0.23811018,0.23811018 +0.625,0.625,0.1683693,0.3367386 +0.625,0.625,0.3367386,0.1683693 +0.625,0.675,0.14999998,0.14999998 +0.625,0.675,0.10606599,0.2121321 +0.625,0.67499995,0.2121321,0.10606605 +0.625,0.675,0.18898809,0.18898809 +0.625,0.6750001,0.1336348,0.26726967 +0.625,0.67499995,0.2672696,0.13363487 +0.625,0.675,0.23811018,0.23811018 +0.625,0.675,0.1683693,0.3367386 +0.625,0.675,0.3367386,0.1683693 +0.625,0.725,0.14999998,0.15000004 +0.625,0.725,0.10606599,0.21213204 +0.625,0.725,0.2121321,0.10606605 +0.625,0.725,0.18898809,0.18898815 +0.625,0.725,0.1336348,0.2672696 +0.625,0.725,0.2672696,0.13363487 +0.625,0.725,0.23811018,0.23811013 +0.625,0.725,0.1683693,0.3367386 +0.625,0.725,0.3367386,0.1683693 +0.625,0.775,0.14999998,0.15000004 +0.625,0.775,0.10606599,0.21213204 +0.625,0.775,0.2121321,0.10606599 +0.625,0.775,0.18898809,0.18898815 +0.625,0.775,0.1336348,0.26726967 +0.625,0.775,0.2672696,0.1336348 +0.625,0.775,0.23811018,0.23811013 +0.625,0.775,0.1683693,0.3367386 +0.625,0.775,0.3367386,0.1683693 +0.625,0.825,0.14999998,0.14999998 +0.625,0.825,0.10606599,0.2121321 +0.625,0.825,0.2121321,0.10606599 +0.625,0.825,0.18898809,0.18898809 +0.625,0.82500005,0.1336348,0.26726967 +0.625,0.825,0.2672696,0.1336348 +0.625,0.825,0.23811018,0.23811018 +0.625,0.825,0.1683693,0.3367386 +0.625,0.825,0.3367386,0.1683693 +0.625,0.875,0.14999998,0.14999998 +0.625,0.875,0.10606599,0.2121321 +0.625,0.875,0.2121321,0.10606599 +0.625,0.875,0.18898809,0.18898809 +0.625,0.875,0.1336348,0.2672696 +0.625,0.875,0.2672696,0.1336348 +0.625,0.875,0.23811018,0.23811018 +0.625,0.875,0.1683693,0.3367386 +0.625,0.875,0.3367386,0.1683693 +0.625,0.925,0.14999998,0.14999998 +0.625,0.925,0.10606599,0.2121321 +0.625,0.92499995,0.2121321,0.10606593 +0.625,0.925,0.18898809,0.18898809 +0.625,0.9250001,0.1336348,0.26726967 +0.625,0.92499995,0.2672696,0.13363475 +0.625,0.925,0.23811018,0.23811018 +0.625,0.92499995,0.1683693,0.33673853 +0.625,0.92499995,0.3367386,0.16836923 +0.625,0.97499996,0.14999998,0.14999998 +0.625,0.975,0.10606599,0.21213204 +0.625,0.975,0.2121321,0.10606599 +0.625,0.97499996,0.18898809,0.18898809 +0.625,0.975,0.1336348,0.26726967 +0.625,0.975,0.2672696,0.1336348 +0.625,0.975,0.23811018,0.23811013 +0.625,0.975,0.1683693,0.3367386 +0.625,0.975,0.3367386,0.1683693 +0.675,0.025,0.14999998,0.15 +0.67499995,0.024999995,0.10606605,0.21213204 +0.675,0.024999999,0.2121321,0.10606602 +0.675,0.024999999,0.18898809,0.18898816 +0.67499995,0.025000002,0.13363487,0.2672696 +0.6750001,0.024999999,0.26726967,0.1336348 +0.675,0.025000002,0.23811018,0.23811015 +0.675,0.024999999,0.1683693,0.3367386 +0.675,0.025000004,0.3367386,0.16836931 +0.675,0.075,0.14999998,0.15 +0.67499995,0.074999996,0.10606605,0.21213202 +0.675,0.075,0.2121321,0.10606602 +0.675,0.075,0.18898809,0.18898815 +0.67499995,0.075,0.13363487,0.2672696 +0.6750001,0.075,0.26726967,0.1336348 +0.675,0.075,0.23811018,0.23811015 +0.675,0.075,0.1683693,0.33673862 +0.675,0.075,0.3367386,0.16836932 +0.675,0.125,0.14999998,0.15 +0.67499995,0.125,0.10606605,0.21213204 +0.675,0.125,0.2121321,0.10606602 +0.675,0.125,0.18898809,0.18898815 +0.67499995,0.125,0.13363487,0.2672696 +0.6750001,0.125,0.26726967,0.1336348 +0.675,0.125,0.23811018,0.23811015 +0.675,0.125,0.1683693,0.33673865 +0.675,0.125,0.3367386,0.1683693 +0.675,0.175,0.14999998,0.15 +0.67499995,0.17499998,0.10606605,0.21213202 +0.675,0.17500001,0.2121321,0.106066026 +0.675,0.17500001,0.18898809,0.18898816 +0.67499995,0.17500001,0.13363487,0.2672696 +0.6750001,0.175,0.26726967,0.1336348 +0.675,0.175,0.23811018,0.23811015 +0.675,0.175,0.1683693,0.33673862 +0.675,0.17500001,0.3367386,0.16836931 +0.675,0.22500001,0.14999998,0.15 +0.67499995,0.225,0.10606605,0.21213202 +0.675,0.22500001,0.2121321,0.10606602 +0.675,0.225,0.18898809,0.18898815 +0.67499995,0.225,0.13363487,0.2672696 +0.6750001,0.225,0.26726967,0.1336348 +0.675,0.225,0.23811018,0.23811017 +0.675,0.22500001,0.1683693,0.33673862 +0.675,0.225,0.3367386,0.1683693 +0.675,0.275,0.14999998,0.14999999 +0.67499995,0.275,0.10606605,0.21213204 +0.675,0.275,0.2121321,0.10606605 +0.675,0.275,0.18898809,0.18898816 +0.67499995,0.275,0.13363487,0.2672696 +0.6750001,0.275,0.26726967,0.1336348 +0.675,0.27499998,0.23811018,0.23811015 +0.675,0.275,0.1683693,0.3367386 +0.675,0.275,0.3367386,0.16836931 +0.675,0.325,0.14999998,0.15 +0.67499995,0.32500002,0.10606605,0.21213205 +0.675,0.325,0.2121321,0.10606602 +0.675,0.325,0.18898809,0.18898815 +0.67499995,0.325,0.13363487,0.2672696 +0.6750001,0.325,0.26726967,0.1336348 +0.675,0.325,0.23811018,0.23811015 +0.675,0.325,0.1683693,0.3367386 +0.675,0.325,0.3367386,0.16836928 +0.675,0.375,0.14999998,0.14999998 +0.67499995,0.375,0.10606605,0.21213207 +0.675,0.375,0.2121321,0.10606605 +0.675,0.375,0.18898809,0.18898812 +0.67499995,0.375,0.13363487,0.2672696 +0.6750001,0.375,0.26726967,0.13363484 +0.675,0.375,0.23811018,0.23811018 +0.675,0.375,0.1683693,0.33673862 +0.675,0.375,0.3367386,0.1683693 +0.675,0.425,0.14999998,0.15 +0.67499995,0.425,0.10606605,0.21213207 +0.675,0.425,0.2121321,0.10606602 +0.675,0.42499998,0.18898809,0.18898815 +0.67499995,0.425,0.13363487,0.2672696 +0.6750001,0.425,0.26726967,0.1336348 +0.675,0.425,0.23811018,0.23811018 +0.675,0.425,0.1683693,0.33673862 +0.675,0.425,0.3367386,0.1683693 +0.675,0.47500002,0.14999998,0.15 +0.67499995,0.475,0.10606605,0.21213204 +0.675,0.475,0.2121321,0.10606605 +0.675,0.475,0.18898809,0.18898815 +0.67499995,0.47500002,0.13363487,0.26726964 +0.6750001,0.475,0.26726967,0.13363487 +0.675,0.475,0.23811018,0.23811013 +0.675,0.475,0.1683693,0.33673865 +0.675,0.47500002,0.3367386,0.16836932 +0.675,0.525,0.14999998,0.15000004 +0.67499995,0.525,0.10606605,0.21213207 +0.675,0.525,0.2121321,0.10606605 +0.675,0.525,0.18898809,0.18898815 +0.67499995,0.525,0.13363487,0.26726958 +0.6750001,0.525,0.26726967,0.13363487 +0.675,0.525,0.23811018,0.23811015 +0.675,0.525,0.1683693,0.3367386 +0.675,0.525,0.3367386,0.16836926 +0.675,0.575,0.14999998,0.14999998 +0.67499995,0.575,0.10606605,0.21213207 +0.675,0.57500005,0.2121321,0.10606605 +0.675,0.575,0.18898809,0.18898809 +0.67499995,0.575,0.13363487,0.2672696 +0.6750001,0.57500005,0.26726967,0.13363487 +0.675,0.575,0.23811018,0.23811015 +0.675,0.575,0.1683693,0.3367386 +0.675,0.575,0.3367386,0.1683693 +0.675,0.625,0.14999998,0.14999998 +0.67499995,0.625,0.10606605,0.2121321 +0.675,0.625,0.2121321,0.10606599 +0.675,0.625,0.18898809,0.18898809 +0.67499995,0.625,0.13363487,0.2672696 +0.6750001,0.625,0.26726967,0.1336348 +0.675,0.625,0.23811018,0.23811018 +0.675,0.625,0.1683693,0.3367386 +0.675,0.625,0.3367386,0.1683693 +0.675,0.675,0.14999998,0.14999998 +0.67499995,0.675,0.10606605,0.2121321 +0.675,0.67499995,0.2121321,0.10606605 +0.675,0.675,0.18898809,0.18898809 +0.67499995,0.6750001,0.13363487,0.26726967 +0.6750001,0.67499995,0.26726967,0.13363487 +0.675,0.675,0.23811018,0.23811018 +0.675,0.675,0.1683693,0.3367386 +0.675,0.675,0.3367386,0.1683693 +0.675,0.725,0.14999998,0.15000004 +0.67499995,0.725,0.10606605,0.21213204 +0.675,0.725,0.2121321,0.10606605 +0.675,0.725,0.18898809,0.18898815 +0.67499995,0.725,0.13363487,0.2672696 +0.6750001,0.725,0.26726967,0.13363487 +0.675,0.725,0.23811018,0.23811013 +0.675,0.725,0.1683693,0.3367386 +0.675,0.725,0.3367386,0.1683693 +0.675,0.775,0.14999998,0.15000004 +0.67499995,0.775,0.10606605,0.21213204 +0.675,0.775,0.2121321,0.10606599 +0.675,0.775,0.18898809,0.18898815 +0.67499995,0.775,0.13363487,0.26726967 +0.6750001,0.775,0.26726967,0.1336348 +0.675,0.775,0.23811018,0.23811013 +0.675,0.775,0.1683693,0.3367386 +0.675,0.775,0.3367386,0.1683693 +0.675,0.825,0.14999998,0.14999998 +0.67499995,0.825,0.10606605,0.2121321 +0.675,0.825,0.2121321,0.10606599 +0.675,0.825,0.18898809,0.18898809 +0.67499995,0.82500005,0.13363487,0.26726967 +0.6750001,0.825,0.26726967,0.1336348 +0.675,0.825,0.23811018,0.23811018 +0.675,0.825,0.1683693,0.3367386 +0.675,0.825,0.3367386,0.1683693 +0.675,0.875,0.14999998,0.14999998 +0.67499995,0.875,0.10606605,0.2121321 +0.675,0.875,0.2121321,0.10606599 +0.675,0.875,0.18898809,0.18898809 +0.67499995,0.875,0.13363487,0.2672696 +0.6750001,0.875,0.26726967,0.1336348 +0.675,0.875,0.23811018,0.23811018 +0.675,0.875,0.1683693,0.3367386 +0.675,0.875,0.3367386,0.1683693 +0.675,0.925,0.14999998,0.14999998 +0.67499995,0.925,0.10606605,0.2121321 +0.675,0.92499995,0.2121321,0.10606593 +0.675,0.925,0.18898809,0.18898809 +0.67499995,0.9250001,0.13363487,0.26726967 +0.6750001,0.92499995,0.26726967,0.13363475 +0.675,0.925,0.23811018,0.23811018 +0.675,0.92499995,0.1683693,0.33673853 +0.675,0.92499995,0.3367386,0.16836923 +0.675,0.97499996,0.14999998,0.14999998 +0.67499995,0.975,0.10606605,0.21213204 +0.675,0.975,0.2121321,0.10606599 +0.675,0.97499996,0.18898809,0.18898809 +0.67499995,0.975,0.13363487,0.26726967 +0.6750001,0.975,0.26726967,0.1336348 +0.675,0.975,0.23811018,0.23811013 +0.675,0.975,0.1683693,0.3367386 +0.675,0.975,0.3367386,0.1683693 +0.725,0.025,0.15000004,0.15 +0.725,0.024999995,0.10606605,0.21213204 +0.725,0.024999999,0.21213204,0.10606602 +0.725,0.024999999,0.18898815,0.18898816 +0.725,0.025000002,0.13363487,0.2672696 +0.725,0.024999999,0.2672696,0.1336348 +0.725,0.025000002,0.23811013,0.23811015 +0.725,0.024999999,0.1683693,0.3367386 +0.725,0.025000004,0.3367386,0.16836931 +0.725,0.075,0.15000004,0.15 +0.725,0.074999996,0.10606605,0.21213202 +0.725,0.075,0.21213204,0.10606602 +0.725,0.075,0.18898815,0.18898815 +0.725,0.075,0.13363487,0.2672696 +0.725,0.075,0.2672696,0.1336348 +0.725,0.075,0.23811013,0.23811015 +0.725,0.075,0.1683693,0.33673862 +0.725,0.075,0.3367386,0.16836932 +0.725,0.125,0.15000004,0.15 +0.725,0.125,0.10606605,0.21213204 +0.725,0.125,0.21213204,0.10606602 +0.725,0.125,0.18898815,0.18898815 +0.725,0.125,0.13363487,0.2672696 +0.725,0.125,0.2672696,0.1336348 +0.725,0.125,0.23811013,0.23811015 +0.725,0.125,0.1683693,0.33673865 +0.725,0.125,0.3367386,0.1683693 +0.725,0.175,0.15000004,0.15 +0.725,0.17499998,0.10606605,0.21213202 +0.725,0.17500001,0.21213204,0.106066026 +0.725,0.17500001,0.18898815,0.18898816 +0.725,0.17500001,0.13363487,0.2672696 +0.725,0.175,0.2672696,0.1336348 +0.725,0.175,0.23811013,0.23811015 +0.725,0.175,0.1683693,0.33673862 +0.725,0.17500001,0.3367386,0.16836931 +0.725,0.22500001,0.15000004,0.15 +0.725,0.225,0.10606605,0.21213202 +0.725,0.22500001,0.21213204,0.10606602 +0.725,0.225,0.18898815,0.18898815 +0.725,0.225,0.13363487,0.2672696 +0.725,0.225,0.2672696,0.1336348 +0.725,0.225,0.23811013,0.23811017 +0.725,0.22500001,0.1683693,0.33673862 +0.725,0.225,0.3367386,0.1683693 +0.725,0.275,0.15000004,0.14999999 +0.725,0.275,0.10606605,0.21213204 +0.725,0.275,0.21213204,0.10606605 +0.725,0.275,0.18898815,0.18898816 +0.725,0.275,0.13363487,0.2672696 +0.725,0.275,0.2672696,0.1336348 +0.725,0.27499998,0.23811013,0.23811015 +0.725,0.275,0.1683693,0.3367386 +0.725,0.275,0.3367386,0.16836931 +0.725,0.325,0.15000004,0.15 +0.725,0.32500002,0.10606605,0.21213205 +0.725,0.325,0.21213204,0.10606602 +0.725,0.325,0.18898815,0.18898815 +0.725,0.325,0.13363487,0.2672696 +0.725,0.325,0.2672696,0.1336348 +0.725,0.325,0.23811013,0.23811015 +0.725,0.325,0.1683693,0.3367386 +0.725,0.325,0.3367386,0.16836928 +0.725,0.375,0.15000004,0.14999998 +0.725,0.375,0.10606605,0.21213207 +0.725,0.375,0.21213204,0.10606605 +0.725,0.375,0.18898815,0.18898812 +0.725,0.375,0.13363487,0.2672696 +0.725,0.375,0.2672696,0.13363484 +0.725,0.375,0.23811013,0.23811018 +0.725,0.375,0.1683693,0.33673862 +0.725,0.375,0.3367386,0.1683693 +0.725,0.425,0.15000004,0.15 +0.725,0.425,0.10606605,0.21213207 +0.725,0.425,0.21213204,0.10606602 +0.725,0.42499998,0.18898815,0.18898815 +0.725,0.425,0.13363487,0.2672696 +0.725,0.425,0.2672696,0.1336348 +0.725,0.425,0.23811013,0.23811018 +0.725,0.425,0.1683693,0.33673862 +0.725,0.425,0.3367386,0.1683693 +0.725,0.47500002,0.15000004,0.15 +0.725,0.475,0.10606605,0.21213204 +0.725,0.475,0.21213204,0.10606605 +0.725,0.475,0.18898815,0.18898815 +0.725,0.47500002,0.13363487,0.26726964 +0.725,0.475,0.2672696,0.13363487 +0.725,0.475,0.23811013,0.23811013 +0.725,0.475,0.1683693,0.33673865 +0.725,0.47500002,0.3367386,0.16836932 +0.725,0.525,0.15000004,0.15000004 +0.725,0.525,0.10606605,0.21213207 +0.725,0.525,0.21213204,0.10606605 +0.725,0.525,0.18898815,0.18898815 +0.725,0.525,0.13363487,0.26726958 +0.725,0.525,0.2672696,0.13363487 +0.725,0.525,0.23811013,0.23811015 +0.725,0.525,0.1683693,0.3367386 +0.725,0.525,0.3367386,0.16836926 +0.725,0.575,0.15000004,0.14999998 +0.725,0.575,0.10606605,0.21213207 +0.725,0.57500005,0.21213204,0.10606605 +0.725,0.575,0.18898815,0.18898809 +0.725,0.575,0.13363487,0.2672696 +0.725,0.57500005,0.2672696,0.13363487 +0.725,0.575,0.23811013,0.23811015 +0.725,0.575,0.1683693,0.3367386 +0.725,0.575,0.3367386,0.1683693 +0.725,0.625,0.15000004,0.14999998 +0.725,0.625,0.10606605,0.2121321 +0.725,0.625,0.21213204,0.10606599 +0.725,0.625,0.18898815,0.18898809 +0.725,0.625,0.13363487,0.2672696 +0.725,0.625,0.2672696,0.1336348 +0.725,0.625,0.23811013,0.23811018 +0.725,0.625,0.1683693,0.3367386 +0.725,0.625,0.3367386,0.1683693 +0.725,0.675,0.15000004,0.14999998 +0.725,0.675,0.10606605,0.2121321 +0.725,0.67499995,0.21213204,0.10606605 +0.725,0.675,0.18898815,0.18898809 +0.725,0.6750001,0.13363487,0.26726967 +0.725,0.67499995,0.2672696,0.13363487 +0.725,0.675,0.23811013,0.23811018 +0.725,0.675,0.1683693,0.3367386 +0.725,0.675,0.3367386,0.1683693 +0.725,0.725,0.15000004,0.15000004 +0.725,0.725,0.10606605,0.21213204 +0.725,0.725,0.21213204,0.10606605 +0.725,0.725,0.18898815,0.18898815 +0.725,0.725,0.13363487,0.2672696 +0.725,0.725,0.2672696,0.13363487 +0.725,0.725,0.23811013,0.23811013 +0.725,0.725,0.1683693,0.3367386 +0.725,0.725,0.3367386,0.1683693 +0.725,0.775,0.15000004,0.15000004 +0.725,0.775,0.10606605,0.21213204 +0.725,0.775,0.21213204,0.10606599 +0.725,0.775,0.18898815,0.18898815 +0.725,0.775,0.13363487,0.26726967 +0.725,0.775,0.2672696,0.1336348 +0.725,0.775,0.23811013,0.23811013 +0.725,0.775,0.1683693,0.3367386 +0.725,0.775,0.3367386,0.1683693 +0.725,0.825,0.15000004,0.14999998 +0.725,0.825,0.10606605,0.2121321 +0.725,0.825,0.21213204,0.10606599 +0.725,0.825,0.18898815,0.18898809 +0.725,0.82500005,0.13363487,0.26726967 +0.725,0.825,0.2672696,0.1336348 +0.725,0.825,0.23811013,0.23811018 +0.725,0.825,0.1683693,0.3367386 +0.725,0.825,0.3367386,0.1683693 +0.725,0.875,0.15000004,0.14999998 +0.725,0.875,0.10606605,0.2121321 +0.725,0.875,0.21213204,0.10606599 +0.725,0.875,0.18898815,0.18898809 +0.725,0.875,0.13363487,0.2672696 +0.725,0.875,0.2672696,0.1336348 +0.725,0.875,0.23811013,0.23811018 +0.725,0.875,0.1683693,0.3367386 +0.725,0.875,0.3367386,0.1683693 +0.725,0.925,0.15000004,0.14999998 +0.725,0.925,0.10606605,0.2121321 +0.725,0.92499995,0.21213204,0.10606593 +0.725,0.925,0.18898815,0.18898809 +0.725,0.9250001,0.13363487,0.26726967 +0.725,0.92499995,0.2672696,0.13363475 +0.725,0.925,0.23811013,0.23811018 +0.725,0.92499995,0.1683693,0.33673853 +0.725,0.92499995,0.3367386,0.16836923 +0.725,0.97499996,0.15000004,0.14999998 +0.725,0.975,0.10606605,0.21213204 +0.725,0.975,0.21213204,0.10606599 +0.725,0.97499996,0.18898815,0.18898809 +0.725,0.975,0.13363487,0.26726967 +0.725,0.975,0.2672696,0.1336348 +0.725,0.975,0.23811013,0.23811013 +0.725,0.975,0.1683693,0.3367386 +0.725,0.975,0.3367386,0.1683693 +0.775,0.025,0.15000004,0.15 +0.775,0.024999995,0.10606599,0.21213204 +0.775,0.024999999,0.21213204,0.10606602 +0.775,0.024999999,0.18898815,0.18898816 +0.775,0.025000002,0.1336348,0.2672696 +0.775,0.024999999,0.26726967,0.1336348 +0.775,0.025000002,0.23811013,0.23811015 +0.775,0.024999999,0.1683693,0.3367386 +0.775,0.025000004,0.3367386,0.16836931 +0.775,0.075,0.15000004,0.15 +0.775,0.074999996,0.10606599,0.21213202 +0.775,0.075,0.21213204,0.10606602 +0.775,0.075,0.18898815,0.18898815 +0.775,0.075,0.1336348,0.2672696 +0.775,0.075,0.26726967,0.1336348 +0.775,0.075,0.23811013,0.23811015 +0.775,0.075,0.1683693,0.33673862 +0.775,0.075,0.3367386,0.16836932 +0.775,0.125,0.15000004,0.15 +0.775,0.125,0.10606599,0.21213204 +0.775,0.125,0.21213204,0.10606602 +0.775,0.125,0.18898815,0.18898815 +0.775,0.125,0.1336348,0.2672696 +0.775,0.125,0.26726967,0.1336348 +0.775,0.125,0.23811013,0.23811015 +0.775,0.125,0.1683693,0.33673865 +0.775,0.125,0.3367386,0.1683693 +0.775,0.175,0.15000004,0.15 +0.775,0.17499998,0.10606599,0.21213202 +0.775,0.17500001,0.21213204,0.106066026 +0.775,0.17500001,0.18898815,0.18898816 +0.775,0.17500001,0.1336348,0.2672696 +0.775,0.175,0.26726967,0.1336348 +0.775,0.175,0.23811013,0.23811015 +0.775,0.175,0.1683693,0.33673862 +0.775,0.17500001,0.3367386,0.16836931 +0.775,0.22500001,0.15000004,0.15 +0.775,0.225,0.10606599,0.21213202 +0.775,0.22500001,0.21213204,0.10606602 +0.775,0.225,0.18898815,0.18898815 +0.775,0.225,0.1336348,0.2672696 +0.775,0.225,0.26726967,0.1336348 +0.775,0.225,0.23811013,0.23811017 +0.775,0.22500001,0.1683693,0.33673862 +0.775,0.225,0.3367386,0.1683693 +0.775,0.275,0.15000004,0.14999999 +0.775,0.275,0.10606599,0.21213204 +0.775,0.275,0.21213204,0.10606605 +0.775,0.275,0.18898815,0.18898816 +0.775,0.275,0.1336348,0.2672696 +0.775,0.275,0.26726967,0.1336348 +0.775,0.27499998,0.23811013,0.23811015 +0.775,0.275,0.1683693,0.3367386 +0.775,0.275,0.3367386,0.16836931 +0.775,0.325,0.15000004,0.15 +0.775,0.32500002,0.10606599,0.21213205 +0.775,0.325,0.21213204,0.10606602 +0.775,0.325,0.18898815,0.18898815 +0.775,0.325,0.1336348,0.2672696 +0.775,0.325,0.26726967,0.1336348 +0.775,0.325,0.23811013,0.23811015 +0.775,0.325,0.1683693,0.3367386 +0.775,0.325,0.3367386,0.16836928 +0.775,0.375,0.15000004,0.14999998 +0.775,0.375,0.10606599,0.21213207 +0.775,0.375,0.21213204,0.10606605 +0.775,0.375,0.18898815,0.18898812 +0.775,0.375,0.1336348,0.2672696 +0.775,0.375,0.26726967,0.13363484 +0.775,0.375,0.23811013,0.23811018 +0.775,0.375,0.1683693,0.33673862 +0.775,0.375,0.3367386,0.1683693 +0.775,0.425,0.15000004,0.15 +0.775,0.425,0.10606599,0.21213207 +0.775,0.425,0.21213204,0.10606602 +0.775,0.42499998,0.18898815,0.18898815 +0.775,0.425,0.1336348,0.2672696 +0.775,0.425,0.26726967,0.1336348 +0.775,0.425,0.23811013,0.23811018 +0.775,0.425,0.1683693,0.33673862 +0.775,0.425,0.3367386,0.1683693 +0.775,0.47500002,0.15000004,0.15 +0.775,0.475,0.10606599,0.21213204 +0.775,0.475,0.21213204,0.10606605 +0.775,0.475,0.18898815,0.18898815 +0.775,0.47500002,0.1336348,0.26726964 +0.775,0.475,0.26726967,0.13363487 +0.775,0.475,0.23811013,0.23811013 +0.775,0.475,0.1683693,0.33673865 +0.775,0.47500002,0.3367386,0.16836932 +0.775,0.525,0.15000004,0.15000004 +0.775,0.525,0.10606599,0.21213207 +0.775,0.525,0.21213204,0.10606605 +0.775,0.525,0.18898815,0.18898815 +0.775,0.525,0.1336348,0.26726958 +0.775,0.525,0.26726967,0.13363487 +0.775,0.525,0.23811013,0.23811015 +0.775,0.525,0.1683693,0.3367386 +0.775,0.525,0.3367386,0.16836926 +0.775,0.575,0.15000004,0.14999998 +0.775,0.575,0.10606599,0.21213207 +0.775,0.57500005,0.21213204,0.10606605 +0.775,0.575,0.18898815,0.18898809 +0.775,0.575,0.1336348,0.2672696 +0.775,0.57500005,0.26726967,0.13363487 +0.775,0.575,0.23811013,0.23811015 +0.775,0.575,0.1683693,0.3367386 +0.775,0.575,0.3367386,0.1683693 +0.775,0.625,0.15000004,0.14999998 +0.775,0.625,0.10606599,0.2121321 +0.775,0.625,0.21213204,0.10606599 +0.775,0.625,0.18898815,0.18898809 +0.775,0.625,0.1336348,0.2672696 +0.775,0.625,0.26726967,0.1336348 +0.775,0.625,0.23811013,0.23811018 +0.775,0.625,0.1683693,0.3367386 +0.775,0.625,0.3367386,0.1683693 +0.775,0.675,0.15000004,0.14999998 +0.775,0.675,0.10606599,0.2121321 +0.775,0.67499995,0.21213204,0.10606605 +0.775,0.675,0.18898815,0.18898809 +0.775,0.6750001,0.1336348,0.26726967 +0.775,0.67499995,0.26726967,0.13363487 +0.775,0.675,0.23811013,0.23811018 +0.775,0.675,0.1683693,0.3367386 +0.775,0.675,0.3367386,0.1683693 +0.775,0.725,0.15000004,0.15000004 +0.775,0.725,0.10606599,0.21213204 +0.775,0.725,0.21213204,0.10606605 +0.775,0.725,0.18898815,0.18898815 +0.775,0.725,0.1336348,0.2672696 +0.775,0.725,0.26726967,0.13363487 +0.775,0.725,0.23811013,0.23811013 +0.775,0.725,0.1683693,0.3367386 +0.775,0.725,0.3367386,0.1683693 +0.775,0.775,0.15000004,0.15000004 +0.775,0.775,0.10606599,0.21213204 +0.775,0.775,0.21213204,0.10606599 +0.775,0.775,0.18898815,0.18898815 +0.775,0.775,0.1336348,0.26726967 +0.775,0.775,0.26726967,0.1336348 +0.775,0.775,0.23811013,0.23811013 +0.775,0.775,0.1683693,0.3367386 +0.775,0.775,0.3367386,0.1683693 +0.775,0.825,0.15000004,0.14999998 +0.775,0.825,0.10606599,0.2121321 +0.775,0.825,0.21213204,0.10606599 +0.775,0.825,0.18898815,0.18898809 +0.775,0.82500005,0.1336348,0.26726967 +0.775,0.825,0.26726967,0.1336348 +0.775,0.825,0.23811013,0.23811018 +0.775,0.825,0.1683693,0.3367386 +0.775,0.825,0.3367386,0.1683693 +0.775,0.875,0.15000004,0.14999998 +0.775,0.875,0.10606599,0.2121321 +0.775,0.875,0.21213204,0.10606599 +0.775,0.875,0.18898815,0.18898809 +0.775,0.875,0.1336348,0.2672696 +0.775,0.875,0.26726967,0.1336348 +0.775,0.875,0.23811013,0.23811018 +0.775,0.875,0.1683693,0.3367386 +0.775,0.875,0.3367386,0.1683693 +0.775,0.925,0.15000004,0.14999998 +0.775,0.925,0.10606599,0.2121321 +0.775,0.92499995,0.21213204,0.10606593 +0.775,0.925,0.18898815,0.18898809 +0.775,0.9250001,0.1336348,0.26726967 +0.775,0.92499995,0.26726967,0.13363475 +0.775,0.925,0.23811013,0.23811018 +0.775,0.92499995,0.1683693,0.33673853 +0.775,0.92499995,0.3367386,0.16836923 +0.775,0.97499996,0.15000004,0.14999998 +0.775,0.975,0.10606599,0.21213204 +0.775,0.975,0.21213204,0.10606599 +0.775,0.97499996,0.18898815,0.18898809 +0.775,0.975,0.1336348,0.26726967 +0.775,0.975,0.26726967,0.1336348 +0.775,0.975,0.23811013,0.23811013 +0.775,0.975,0.1683693,0.3367386 +0.775,0.975,0.3367386,0.1683693 +0.825,0.025,0.14999998,0.15 +0.825,0.024999995,0.10606599,0.21213204 +0.825,0.024999999,0.2121321,0.10606602 +0.825,0.024999999,0.18898809,0.18898816 +0.825,0.025000002,0.1336348,0.2672696 +0.82500005,0.024999999,0.26726967,0.1336348 +0.825,0.025000002,0.23811018,0.23811015 +0.825,0.024999999,0.1683693,0.3367386 +0.825,0.025000004,0.3367386,0.16836931 +0.825,0.075,0.14999998,0.15 +0.825,0.074999996,0.10606599,0.21213202 +0.825,0.075,0.2121321,0.10606602 +0.825,0.075,0.18898809,0.18898815 +0.825,0.075,0.1336348,0.2672696 +0.82500005,0.075,0.26726967,0.1336348 +0.825,0.075,0.23811018,0.23811015 +0.825,0.075,0.1683693,0.33673862 +0.825,0.075,0.3367386,0.16836932 +0.825,0.125,0.14999998,0.15 +0.825,0.125,0.10606599,0.21213204 +0.825,0.125,0.2121321,0.10606602 +0.825,0.125,0.18898809,0.18898815 +0.825,0.125,0.1336348,0.2672696 +0.82500005,0.125,0.26726967,0.1336348 +0.825,0.125,0.23811018,0.23811015 +0.825,0.125,0.1683693,0.33673865 +0.825,0.125,0.3367386,0.1683693 +0.825,0.175,0.14999998,0.15 +0.825,0.17499998,0.10606599,0.21213202 +0.825,0.17500001,0.2121321,0.106066026 +0.825,0.17500001,0.18898809,0.18898816 +0.825,0.17500001,0.1336348,0.2672696 +0.82500005,0.175,0.26726967,0.1336348 +0.825,0.175,0.23811018,0.23811015 +0.825,0.175,0.1683693,0.33673862 +0.825,0.17500001,0.3367386,0.16836931 +0.825,0.22500001,0.14999998,0.15 +0.825,0.225,0.10606599,0.21213202 +0.825,0.22500001,0.2121321,0.10606602 +0.825,0.225,0.18898809,0.18898815 +0.825,0.225,0.1336348,0.2672696 +0.82500005,0.225,0.26726967,0.1336348 +0.825,0.225,0.23811018,0.23811017 +0.825,0.22500001,0.1683693,0.33673862 +0.825,0.225,0.3367386,0.1683693 +0.825,0.275,0.14999998,0.14999999 +0.825,0.275,0.10606599,0.21213204 +0.825,0.275,0.2121321,0.10606605 +0.825,0.275,0.18898809,0.18898816 +0.825,0.275,0.1336348,0.2672696 +0.82500005,0.275,0.26726967,0.1336348 +0.825,0.27499998,0.23811018,0.23811015 +0.825,0.275,0.1683693,0.3367386 +0.825,0.275,0.3367386,0.16836931 +0.825,0.325,0.14999998,0.15 +0.825,0.32500002,0.10606599,0.21213205 +0.825,0.325,0.2121321,0.10606602 +0.825,0.325,0.18898809,0.18898815 +0.825,0.325,0.1336348,0.2672696 +0.82500005,0.325,0.26726967,0.1336348 +0.825,0.325,0.23811018,0.23811015 +0.825,0.325,0.1683693,0.3367386 +0.825,0.325,0.3367386,0.16836928 +0.825,0.375,0.14999998,0.14999998 +0.825,0.375,0.10606599,0.21213207 +0.825,0.375,0.2121321,0.10606605 +0.825,0.375,0.18898809,0.18898812 +0.825,0.375,0.1336348,0.2672696 +0.82500005,0.375,0.26726967,0.13363484 +0.825,0.375,0.23811018,0.23811018 +0.825,0.375,0.1683693,0.33673862 +0.825,0.375,0.3367386,0.1683693 +0.825,0.425,0.14999998,0.15 +0.825,0.425,0.10606599,0.21213207 +0.825,0.425,0.2121321,0.10606602 +0.825,0.42499998,0.18898809,0.18898815 +0.825,0.425,0.1336348,0.2672696 +0.82500005,0.425,0.26726967,0.1336348 +0.825,0.425,0.23811018,0.23811018 +0.825,0.425,0.1683693,0.33673862 +0.825,0.425,0.3367386,0.1683693 +0.825,0.47500002,0.14999998,0.15 +0.825,0.475,0.10606599,0.21213204 +0.825,0.475,0.2121321,0.10606605 +0.825,0.475,0.18898809,0.18898815 +0.825,0.47500002,0.1336348,0.26726964 +0.82500005,0.475,0.26726967,0.13363487 +0.825,0.475,0.23811018,0.23811013 +0.825,0.475,0.1683693,0.33673865 +0.825,0.47500002,0.3367386,0.16836932 +0.825,0.525,0.14999998,0.15000004 +0.825,0.525,0.10606599,0.21213207 +0.825,0.525,0.2121321,0.10606605 +0.825,0.525,0.18898809,0.18898815 +0.825,0.525,0.1336348,0.26726958 +0.82500005,0.525,0.26726967,0.13363487 +0.825,0.525,0.23811018,0.23811015 +0.825,0.525,0.1683693,0.3367386 +0.825,0.525,0.3367386,0.16836926 +0.825,0.575,0.14999998,0.14999998 +0.825,0.575,0.10606599,0.21213207 +0.825,0.57500005,0.2121321,0.10606605 +0.825,0.575,0.18898809,0.18898809 +0.825,0.575,0.1336348,0.2672696 +0.82500005,0.57500005,0.26726967,0.13363487 +0.825,0.575,0.23811018,0.23811015 +0.825,0.575,0.1683693,0.3367386 +0.825,0.575,0.3367386,0.1683693 +0.825,0.625,0.14999998,0.14999998 +0.825,0.625,0.10606599,0.2121321 +0.825,0.625,0.2121321,0.10606599 +0.825,0.625,0.18898809,0.18898809 +0.825,0.625,0.1336348,0.2672696 +0.82500005,0.625,0.26726967,0.1336348 +0.825,0.625,0.23811018,0.23811018 +0.825,0.625,0.1683693,0.3367386 +0.825,0.625,0.3367386,0.1683693 +0.825,0.675,0.14999998,0.14999998 +0.825,0.675,0.10606599,0.2121321 +0.825,0.67499995,0.2121321,0.10606605 +0.825,0.675,0.18898809,0.18898809 +0.825,0.6750001,0.1336348,0.26726967 +0.82500005,0.67499995,0.26726967,0.13363487 +0.825,0.675,0.23811018,0.23811018 +0.825,0.675,0.1683693,0.3367386 +0.825,0.675,0.3367386,0.1683693 +0.825,0.725,0.14999998,0.15000004 +0.825,0.725,0.10606599,0.21213204 +0.825,0.725,0.2121321,0.10606605 +0.825,0.725,0.18898809,0.18898815 +0.825,0.725,0.1336348,0.2672696 +0.82500005,0.725,0.26726967,0.13363487 +0.825,0.725,0.23811018,0.23811013 +0.825,0.725,0.1683693,0.3367386 +0.825,0.725,0.3367386,0.1683693 +0.825,0.775,0.14999998,0.15000004 +0.825,0.775,0.10606599,0.21213204 +0.825,0.775,0.2121321,0.10606599 +0.825,0.775,0.18898809,0.18898815 +0.825,0.775,0.1336348,0.26726967 +0.82500005,0.775,0.26726967,0.1336348 +0.825,0.775,0.23811018,0.23811013 +0.825,0.775,0.1683693,0.3367386 +0.825,0.775,0.3367386,0.1683693 +0.825,0.825,0.14999998,0.14999998 +0.825,0.825,0.10606599,0.2121321 +0.825,0.825,0.2121321,0.10606599 +0.825,0.825,0.18898809,0.18898809 +0.825,0.82500005,0.1336348,0.26726967 +0.82500005,0.825,0.26726967,0.1336348 +0.825,0.825,0.23811018,0.23811018 +0.825,0.825,0.1683693,0.3367386 +0.825,0.825,0.3367386,0.1683693 +0.825,0.875,0.14999998,0.14999998 +0.825,0.875,0.10606599,0.2121321 +0.825,0.875,0.2121321,0.10606599 +0.825,0.875,0.18898809,0.18898809 +0.825,0.875,0.1336348,0.2672696 +0.82500005,0.875,0.26726967,0.1336348 +0.825,0.875,0.23811018,0.23811018 +0.825,0.875,0.1683693,0.3367386 +0.825,0.875,0.3367386,0.1683693 +0.825,0.925,0.14999998,0.14999998 +0.825,0.925,0.10606599,0.2121321 +0.825,0.92499995,0.2121321,0.10606593 +0.825,0.925,0.18898809,0.18898809 +0.825,0.9250001,0.1336348,0.26726967 +0.82500005,0.92499995,0.26726967,0.13363475 +0.825,0.925,0.23811018,0.23811018 +0.825,0.92499995,0.1683693,0.33673853 +0.825,0.92499995,0.3367386,0.16836923 +0.825,0.97499996,0.14999998,0.14999998 +0.825,0.975,0.10606599,0.21213204 +0.825,0.975,0.2121321,0.10606599 +0.825,0.97499996,0.18898809,0.18898809 +0.825,0.975,0.1336348,0.26726967 +0.82500005,0.975,0.26726967,0.1336348 +0.825,0.975,0.23811018,0.23811013 +0.825,0.975,0.1683693,0.3367386 +0.825,0.975,0.3367386,0.1683693 +0.875,0.025,0.14999998,0.15 +0.875,0.024999995,0.10606599,0.21213204 +0.875,0.024999999,0.2121321,0.10606602 +0.875,0.024999999,0.18898809,0.18898816 +0.875,0.025000002,0.1336348,0.2672696 +0.875,0.024999999,0.2672696,0.1336348 +0.875,0.025000002,0.23811018,0.23811015 +0.875,0.024999999,0.1683693,0.3367386 +0.875,0.025000004,0.3367386,0.16836931 +0.875,0.075,0.14999998,0.15 +0.875,0.074999996,0.10606599,0.21213202 +0.875,0.075,0.2121321,0.10606602 +0.875,0.075,0.18898809,0.18898815 +0.875,0.075,0.1336348,0.2672696 +0.875,0.075,0.2672696,0.1336348 +0.875,0.075,0.23811018,0.23811015 +0.875,0.075,0.1683693,0.33673862 +0.875,0.075,0.3367386,0.16836932 +0.875,0.125,0.14999998,0.15 +0.875,0.125,0.10606599,0.21213204 +0.875,0.125,0.2121321,0.10606602 +0.875,0.125,0.18898809,0.18898815 +0.875,0.125,0.1336348,0.2672696 +0.875,0.125,0.2672696,0.1336348 +0.875,0.125,0.23811018,0.23811015 +0.875,0.125,0.1683693,0.33673865 +0.875,0.125,0.3367386,0.1683693 +0.875,0.175,0.14999998,0.15 +0.875,0.17499998,0.10606599,0.21213202 +0.875,0.17500001,0.2121321,0.106066026 +0.875,0.17500001,0.18898809,0.18898816 +0.875,0.17500001,0.1336348,0.2672696 +0.875,0.175,0.2672696,0.1336348 +0.875,0.175,0.23811018,0.23811015 +0.875,0.175,0.1683693,0.33673862 +0.875,0.17500001,0.3367386,0.16836931 +0.875,0.22500001,0.14999998,0.15 +0.875,0.225,0.10606599,0.21213202 +0.875,0.22500001,0.2121321,0.10606602 +0.875,0.225,0.18898809,0.18898815 +0.875,0.225,0.1336348,0.2672696 +0.875,0.225,0.2672696,0.1336348 +0.875,0.225,0.23811018,0.23811017 +0.875,0.22500001,0.1683693,0.33673862 +0.875,0.225,0.3367386,0.1683693 +0.875,0.275,0.14999998,0.14999999 +0.875,0.275,0.10606599,0.21213204 +0.875,0.275,0.2121321,0.10606605 +0.875,0.275,0.18898809,0.18898816 +0.875,0.275,0.1336348,0.2672696 +0.875,0.275,0.2672696,0.1336348 +0.875,0.27499998,0.23811018,0.23811015 +0.875,0.275,0.1683693,0.3367386 +0.875,0.275,0.3367386,0.16836931 +0.875,0.325,0.14999998,0.15 +0.875,0.32500002,0.10606599,0.21213205 +0.875,0.325,0.2121321,0.10606602 +0.875,0.325,0.18898809,0.18898815 +0.875,0.325,0.1336348,0.2672696 +0.875,0.325,0.2672696,0.1336348 +0.875,0.325,0.23811018,0.23811015 +0.875,0.325,0.1683693,0.3367386 +0.875,0.325,0.3367386,0.16836928 +0.875,0.375,0.14999998,0.14999998 +0.875,0.375,0.10606599,0.21213207 +0.875,0.375,0.2121321,0.10606605 +0.875,0.375,0.18898809,0.18898812 +0.875,0.375,0.1336348,0.2672696 +0.875,0.375,0.2672696,0.13363484 +0.875,0.375,0.23811018,0.23811018 +0.875,0.375,0.1683693,0.33673862 +0.875,0.375,0.3367386,0.1683693 +0.875,0.425,0.14999998,0.15 +0.875,0.425,0.10606599,0.21213207 +0.875,0.425,0.2121321,0.10606602 +0.875,0.42499998,0.18898809,0.18898815 +0.875,0.425,0.1336348,0.2672696 +0.875,0.425,0.2672696,0.1336348 +0.875,0.425,0.23811018,0.23811018 +0.875,0.425,0.1683693,0.33673862 +0.875,0.425,0.3367386,0.1683693 +0.875,0.47500002,0.14999998,0.15 +0.875,0.475,0.10606599,0.21213204 +0.875,0.475,0.2121321,0.10606605 +0.875,0.475,0.18898809,0.18898815 +0.875,0.47500002,0.1336348,0.26726964 +0.875,0.475,0.2672696,0.13363487 +0.875,0.475,0.23811018,0.23811013 +0.875,0.475,0.1683693,0.33673865 +0.875,0.47500002,0.3367386,0.16836932 +0.875,0.525,0.14999998,0.15000004 +0.875,0.525,0.10606599,0.21213207 +0.875,0.525,0.2121321,0.10606605 +0.875,0.525,0.18898809,0.18898815 +0.875,0.525,0.1336348,0.26726958 +0.875,0.525,0.2672696,0.13363487 +0.875,0.525,0.23811018,0.23811015 +0.875,0.525,0.1683693,0.3367386 +0.875,0.525,0.3367386,0.16836926 +0.875,0.575,0.14999998,0.14999998 +0.875,0.575,0.10606599,0.21213207 +0.875,0.57500005,0.2121321,0.10606605 +0.875,0.575,0.18898809,0.18898809 +0.875,0.575,0.1336348,0.2672696 +0.875,0.57500005,0.2672696,0.13363487 +0.875,0.575,0.23811018,0.23811015 +0.875,0.575,0.1683693,0.3367386 +0.875,0.575,0.3367386,0.1683693 +0.875,0.625,0.14999998,0.14999998 +0.875,0.625,0.10606599,0.2121321 +0.875,0.625,0.2121321,0.10606599 +0.875,0.625,0.18898809,0.18898809 +0.875,0.625,0.1336348,0.2672696 +0.875,0.625,0.2672696,0.1336348 +0.875,0.625,0.23811018,0.23811018 +0.875,0.625,0.1683693,0.3367386 +0.875,0.625,0.3367386,0.1683693 +0.875,0.675,0.14999998,0.14999998 +0.875,0.675,0.10606599,0.2121321 +0.875,0.67499995,0.2121321,0.10606605 +0.875,0.675,0.18898809,0.18898809 +0.875,0.6750001,0.1336348,0.26726967 +0.875,0.67499995,0.2672696,0.13363487 +0.875,0.675,0.23811018,0.23811018 +0.875,0.675,0.1683693,0.3367386 +0.875,0.675,0.3367386,0.1683693 +0.875,0.725,0.14999998,0.15000004 +0.875,0.725,0.10606599,0.21213204 +0.875,0.725,0.2121321,0.10606605 +0.875,0.725,0.18898809,0.18898815 +0.875,0.725,0.1336348,0.2672696 +0.875,0.725,0.2672696,0.13363487 +0.875,0.725,0.23811018,0.23811013 +0.875,0.725,0.1683693,0.3367386 +0.875,0.725,0.3367386,0.1683693 +0.875,0.775,0.14999998,0.15000004 +0.875,0.775,0.10606599,0.21213204 +0.875,0.775,0.2121321,0.10606599 +0.875,0.775,0.18898809,0.18898815 +0.875,0.775,0.1336348,0.26726967 +0.875,0.775,0.2672696,0.1336348 +0.875,0.775,0.23811018,0.23811013 +0.875,0.775,0.1683693,0.3367386 +0.875,0.775,0.3367386,0.1683693 +0.875,0.825,0.14999998,0.14999998 +0.875,0.825,0.10606599,0.2121321 +0.875,0.825,0.2121321,0.10606599 +0.875,0.825,0.18898809,0.18898809 +0.875,0.82500005,0.1336348,0.26726967 +0.875,0.825,0.2672696,0.1336348 +0.875,0.825,0.23811018,0.23811018 +0.875,0.825,0.1683693,0.3367386 +0.875,0.825,0.3367386,0.1683693 +0.875,0.875,0.14999998,0.14999998 +0.875,0.875,0.10606599,0.2121321 +0.875,0.875,0.2121321,0.10606599 +0.875,0.875,0.18898809,0.18898809 +0.875,0.875,0.1336348,0.2672696 +0.875,0.875,0.2672696,0.1336348 +0.875,0.875,0.23811018,0.23811018 +0.875,0.875,0.1683693,0.3367386 +0.875,0.875,0.3367386,0.1683693 +0.875,0.925,0.14999998,0.14999998 +0.875,0.925,0.10606599,0.2121321 +0.875,0.92499995,0.2121321,0.10606593 +0.875,0.925,0.18898809,0.18898809 +0.875,0.9250001,0.1336348,0.26726967 +0.875,0.92499995,0.2672696,0.13363475 +0.875,0.925,0.23811018,0.23811018 +0.875,0.92499995,0.1683693,0.33673853 +0.875,0.92499995,0.3367386,0.16836923 +0.875,0.97499996,0.14999998,0.14999998 +0.875,0.975,0.10606599,0.21213204 +0.875,0.975,0.2121321,0.10606599 +0.875,0.97499996,0.18898809,0.18898809 +0.875,0.975,0.1336348,0.26726967 +0.875,0.975,0.2672696,0.1336348 +0.875,0.975,0.23811018,0.23811013 +0.875,0.975,0.1683693,0.3367386 +0.875,0.975,0.3367386,0.1683693 +0.925,0.025,0.14999998,0.15 +0.92499995,0.024999995,0.10606593,0.21213204 +0.925,0.024999999,0.2121321,0.10606602 +0.925,0.024999999,0.18898809,0.18898816 +0.92499995,0.025000002,0.13363475,0.2672696 +0.9250001,0.024999999,0.26726967,0.1336348 +0.925,0.025000002,0.23811018,0.23811015 +0.92499995,0.024999999,0.16836923,0.3367386 +0.92499995,0.025000004,0.33673853,0.16836931 +0.925,0.075,0.14999998,0.15 +0.92499995,0.074999996,0.10606593,0.21213202 +0.925,0.075,0.2121321,0.10606602 +0.925,0.075,0.18898809,0.18898815 +0.92499995,0.075,0.13363475,0.2672696 +0.9250001,0.075,0.26726967,0.1336348 +0.925,0.075,0.23811018,0.23811015 +0.92499995,0.075,0.16836923,0.33673862 +0.92499995,0.075,0.33673853,0.16836932 +0.925,0.125,0.14999998,0.15 +0.92499995,0.125,0.10606593,0.21213204 +0.925,0.125,0.2121321,0.10606602 +0.925,0.125,0.18898809,0.18898815 +0.92499995,0.125,0.13363475,0.2672696 +0.9250001,0.125,0.26726967,0.1336348 +0.925,0.125,0.23811018,0.23811015 +0.92499995,0.125,0.16836923,0.33673865 +0.92499995,0.125,0.33673853,0.1683693 +0.925,0.175,0.14999998,0.15 +0.92499995,0.17499998,0.10606593,0.21213202 +0.925,0.17500001,0.2121321,0.106066026 +0.925,0.17500001,0.18898809,0.18898816 +0.92499995,0.17500001,0.13363475,0.2672696 +0.9250001,0.175,0.26726967,0.1336348 +0.925,0.175,0.23811018,0.23811015 +0.92499995,0.175,0.16836923,0.33673862 +0.92499995,0.17500001,0.33673853,0.16836931 +0.925,0.22500001,0.14999998,0.15 +0.92499995,0.225,0.10606593,0.21213202 +0.925,0.22500001,0.2121321,0.10606602 +0.925,0.225,0.18898809,0.18898815 +0.92499995,0.225,0.13363475,0.2672696 +0.9250001,0.225,0.26726967,0.1336348 +0.925,0.225,0.23811018,0.23811017 +0.92499995,0.22500001,0.16836923,0.33673862 +0.92499995,0.225,0.33673853,0.1683693 +0.925,0.275,0.14999998,0.14999999 +0.92499995,0.275,0.10606593,0.21213204 +0.925,0.275,0.2121321,0.10606605 +0.925,0.275,0.18898809,0.18898816 +0.92499995,0.275,0.13363475,0.2672696 +0.9250001,0.275,0.26726967,0.1336348 +0.925,0.27499998,0.23811018,0.23811015 +0.92499995,0.275,0.16836923,0.3367386 +0.92499995,0.275,0.33673853,0.16836931 +0.925,0.325,0.14999998,0.15 +0.92499995,0.32500002,0.10606593,0.21213205 +0.925,0.325,0.2121321,0.10606602 +0.925,0.325,0.18898809,0.18898815 +0.92499995,0.325,0.13363475,0.2672696 +0.9250001,0.325,0.26726967,0.1336348 +0.925,0.325,0.23811018,0.23811015 +0.92499995,0.325,0.16836923,0.3367386 +0.92499995,0.325,0.33673853,0.16836928 +0.925,0.375,0.14999998,0.14999998 +0.92499995,0.375,0.10606593,0.21213207 +0.925,0.375,0.2121321,0.10606605 +0.925,0.375,0.18898809,0.18898812 +0.92499995,0.375,0.13363475,0.2672696 +0.9250001,0.375,0.26726967,0.13363484 +0.925,0.375,0.23811018,0.23811018 +0.92499995,0.375,0.16836923,0.33673862 +0.92499995,0.375,0.33673853,0.1683693 +0.925,0.425,0.14999998,0.15 +0.92499995,0.425,0.10606593,0.21213207 +0.925,0.425,0.2121321,0.10606602 +0.925,0.42499998,0.18898809,0.18898815 +0.92499995,0.425,0.13363475,0.2672696 +0.9250001,0.425,0.26726967,0.1336348 +0.925,0.425,0.23811018,0.23811018 +0.92499995,0.425,0.16836923,0.33673862 +0.92499995,0.425,0.33673853,0.1683693 +0.925,0.47500002,0.14999998,0.15 +0.92499995,0.475,0.10606593,0.21213204 +0.925,0.475,0.2121321,0.10606605 +0.925,0.475,0.18898809,0.18898815 +0.92499995,0.47500002,0.13363475,0.26726964 +0.9250001,0.475,0.26726967,0.13363487 +0.925,0.475,0.23811018,0.23811013 +0.92499995,0.475,0.16836923,0.33673865 +0.92499995,0.47500002,0.33673853,0.16836932 +0.925,0.525,0.14999998,0.15000004 +0.92499995,0.525,0.10606593,0.21213207 +0.925,0.525,0.2121321,0.10606605 +0.925,0.525,0.18898809,0.18898815 +0.92499995,0.525,0.13363475,0.26726958 +0.9250001,0.525,0.26726967,0.13363487 +0.925,0.525,0.23811018,0.23811015 +0.92499995,0.525,0.16836923,0.3367386 +0.92499995,0.525,0.33673853,0.16836926 +0.925,0.575,0.14999998,0.14999998 +0.92499995,0.575,0.10606593,0.21213207 +0.925,0.57500005,0.2121321,0.10606605 +0.925,0.575,0.18898809,0.18898809 +0.92499995,0.575,0.13363475,0.2672696 +0.9250001,0.57500005,0.26726967,0.13363487 +0.925,0.575,0.23811018,0.23811015 +0.92499995,0.575,0.16836923,0.3367386 +0.92499995,0.575,0.33673853,0.1683693 +0.925,0.625,0.14999998,0.14999998 +0.92499995,0.625,0.10606593,0.2121321 +0.925,0.625,0.2121321,0.10606599 +0.925,0.625,0.18898809,0.18898809 +0.92499995,0.625,0.13363475,0.2672696 +0.9250001,0.625,0.26726967,0.1336348 +0.925,0.625,0.23811018,0.23811018 +0.92499995,0.625,0.16836923,0.3367386 +0.92499995,0.625,0.33673853,0.1683693 +0.925,0.675,0.14999998,0.14999998 +0.92499995,0.675,0.10606593,0.2121321 +0.925,0.67499995,0.2121321,0.10606605 +0.925,0.675,0.18898809,0.18898809 +0.92499995,0.6750001,0.13363475,0.26726967 +0.9250001,0.67499995,0.26726967,0.13363487 +0.925,0.675,0.23811018,0.23811018 +0.92499995,0.675,0.16836923,0.3367386 +0.92499995,0.675,0.33673853,0.1683693 +0.925,0.725,0.14999998,0.15000004 +0.92499995,0.725,0.10606593,0.21213204 +0.925,0.725,0.2121321,0.10606605 +0.925,0.725,0.18898809,0.18898815 +0.92499995,0.725,0.13363475,0.2672696 +0.9250001,0.725,0.26726967,0.13363487 +0.925,0.725,0.23811018,0.23811013 +0.92499995,0.725,0.16836923,0.3367386 +0.92499995,0.725,0.33673853,0.1683693 +0.925,0.775,0.14999998,0.15000004 +0.92499995,0.775,0.10606593,0.21213204 +0.925,0.775,0.2121321,0.10606599 +0.925,0.775,0.18898809,0.18898815 +0.92499995,0.775,0.13363475,0.26726967 +0.9250001,0.775,0.26726967,0.1336348 +0.925,0.775,0.23811018,0.23811013 +0.92499995,0.775,0.16836923,0.3367386 +0.92499995,0.775,0.33673853,0.1683693 +0.925,0.825,0.14999998,0.14999998 +0.92499995,0.825,0.10606593,0.2121321 +0.925,0.825,0.2121321,0.10606599 +0.925,0.825,0.18898809,0.18898809 +0.92499995,0.82500005,0.13363475,0.26726967 +0.9250001,0.825,0.26726967,0.1336348 +0.925,0.825,0.23811018,0.23811018 +0.92499995,0.825,0.16836923,0.3367386 +0.92499995,0.825,0.33673853,0.1683693 +0.925,0.875,0.14999998,0.14999998 +0.92499995,0.875,0.10606593,0.2121321 +0.925,0.875,0.2121321,0.10606599 +0.925,0.875,0.18898809,0.18898809 +0.92499995,0.875,0.13363475,0.2672696 +0.9250001,0.875,0.26726967,0.1336348 +0.925,0.875,0.23811018,0.23811018 +0.92499995,0.875,0.16836923,0.3367386 +0.92499995,0.875,0.33673853,0.1683693 +0.925,0.925,0.14999998,0.14999998 +0.92499995,0.925,0.10606593,0.2121321 +0.925,0.92499995,0.2121321,0.10606593 +0.925,0.925,0.18898809,0.18898809 +0.92499995,0.9250001,0.13363475,0.26726967 +0.9250001,0.92499995,0.26726967,0.13363475 +0.925,0.925,0.23811018,0.23811018 +0.92499995,0.92499995,0.16836923,0.33673853 +0.92499995,0.92499995,0.33673853,0.16836923 +0.925,0.97499996,0.14999998,0.14999998 +0.92499995,0.975,0.10606593,0.21213204 +0.925,0.975,0.2121321,0.10606599 +0.925,0.97499996,0.18898809,0.18898809 +0.92499995,0.975,0.13363475,0.26726967 +0.9250001,0.975,0.26726967,0.1336348 +0.925,0.975,0.23811018,0.23811013 +0.92499995,0.975,0.16836923,0.3367386 +0.92499995,0.975,0.33673853,0.1683693 +0.97499996,0.025,0.14999998,0.15 +0.975,0.024999995,0.10606599,0.21213204 +0.975,0.024999999,0.21213204,0.10606602 +0.97499996,0.024999999,0.18898809,0.18898816 +0.975,0.025000002,0.1336348,0.2672696 +0.975,0.024999999,0.26726967,0.1336348 +0.975,0.025000002,0.23811013,0.23811015 +0.975,0.024999999,0.1683693,0.3367386 +0.975,0.025000004,0.3367386,0.16836931 +0.97499996,0.075,0.14999998,0.15 +0.975,0.074999996,0.10606599,0.21213202 +0.975,0.075,0.21213204,0.10606602 +0.97499996,0.075,0.18898809,0.18898815 +0.975,0.075,0.1336348,0.2672696 +0.975,0.075,0.26726967,0.1336348 +0.975,0.075,0.23811013,0.23811015 +0.975,0.075,0.1683693,0.33673862 +0.975,0.075,0.3367386,0.16836932 +0.97499996,0.125,0.14999998,0.15 +0.975,0.125,0.10606599,0.21213204 +0.975,0.125,0.21213204,0.10606602 +0.97499996,0.125,0.18898809,0.18898815 +0.975,0.125,0.1336348,0.2672696 +0.975,0.125,0.26726967,0.1336348 +0.975,0.125,0.23811013,0.23811015 +0.975,0.125,0.1683693,0.33673865 +0.975,0.125,0.3367386,0.1683693 +0.97499996,0.175,0.14999998,0.15 +0.975,0.17499998,0.10606599,0.21213202 +0.975,0.17500001,0.21213204,0.106066026 +0.97499996,0.17500001,0.18898809,0.18898816 +0.975,0.17500001,0.1336348,0.2672696 +0.975,0.175,0.26726967,0.1336348 +0.975,0.175,0.23811013,0.23811015 +0.975,0.175,0.1683693,0.33673862 +0.975,0.17500001,0.3367386,0.16836931 +0.97499996,0.22500001,0.14999998,0.15 +0.975,0.225,0.10606599,0.21213202 +0.975,0.22500001,0.21213204,0.10606602 +0.97499996,0.225,0.18898809,0.18898815 +0.975,0.225,0.1336348,0.2672696 +0.975,0.225,0.26726967,0.1336348 +0.975,0.225,0.23811013,0.23811017 +0.975,0.22500001,0.1683693,0.33673862 +0.975,0.225,0.3367386,0.1683693 +0.97499996,0.275,0.14999998,0.14999999 +0.975,0.275,0.10606599,0.21213204 +0.975,0.275,0.21213204,0.10606605 +0.97499996,0.275,0.18898809,0.18898816 +0.975,0.275,0.1336348,0.2672696 +0.975,0.275,0.26726967,0.1336348 +0.975,0.27499998,0.23811013,0.23811015 +0.975,0.275,0.1683693,0.3367386 +0.975,0.275,0.3367386,0.16836931 +0.97499996,0.325,0.14999998,0.15 +0.975,0.32500002,0.10606599,0.21213205 +0.975,0.325,0.21213204,0.10606602 +0.97499996,0.325,0.18898809,0.18898815 +0.975,0.325,0.1336348,0.2672696 +0.975,0.325,0.26726967,0.1336348 +0.975,0.325,0.23811013,0.23811015 +0.975,0.325,0.1683693,0.3367386 +0.975,0.325,0.3367386,0.16836928 +0.97499996,0.375,0.14999998,0.14999998 +0.975,0.375,0.10606599,0.21213207 +0.975,0.375,0.21213204,0.10606605 +0.97499996,0.375,0.18898809,0.18898812 +0.975,0.375,0.1336348,0.2672696 +0.975,0.375,0.26726967,0.13363484 +0.975,0.375,0.23811013,0.23811018 +0.975,0.375,0.1683693,0.33673862 +0.975,0.375,0.3367386,0.1683693 +0.97499996,0.425,0.14999998,0.15 +0.975,0.425,0.10606599,0.21213207 +0.975,0.425,0.21213204,0.10606602 +0.97499996,0.42499998,0.18898809,0.18898815 +0.975,0.425,0.1336348,0.2672696 +0.975,0.425,0.26726967,0.1336348 +0.975,0.425,0.23811013,0.23811018 +0.975,0.425,0.1683693,0.33673862 +0.975,0.425,0.3367386,0.1683693 +0.97499996,0.47500002,0.14999998,0.15 +0.975,0.475,0.10606599,0.21213204 +0.975,0.475,0.21213204,0.10606605 +0.97499996,0.475,0.18898809,0.18898815 +0.975,0.47500002,0.1336348,0.26726964 +0.975,0.475,0.26726967,0.13363487 +0.975,0.475,0.23811013,0.23811013 +0.975,0.475,0.1683693,0.33673865 +0.975,0.47500002,0.3367386,0.16836932 +0.97499996,0.525,0.14999998,0.15000004 +0.975,0.525,0.10606599,0.21213207 +0.975,0.525,0.21213204,0.10606605 +0.97499996,0.525,0.18898809,0.18898815 +0.975,0.525,0.1336348,0.26726958 +0.975,0.525,0.26726967,0.13363487 +0.975,0.525,0.23811013,0.23811015 +0.975,0.525,0.1683693,0.3367386 +0.975,0.525,0.3367386,0.16836926 +0.97499996,0.575,0.14999998,0.14999998 +0.975,0.575,0.10606599,0.21213207 +0.975,0.57500005,0.21213204,0.10606605 +0.97499996,0.575,0.18898809,0.18898809 +0.975,0.575,0.1336348,0.2672696 +0.975,0.57500005,0.26726967,0.13363487 +0.975,0.575,0.23811013,0.23811015 +0.975,0.575,0.1683693,0.3367386 +0.975,0.575,0.3367386,0.1683693 +0.97499996,0.625,0.14999998,0.14999998 +0.975,0.625,0.10606599,0.2121321 +0.975,0.625,0.21213204,0.10606599 +0.97499996,0.625,0.18898809,0.18898809 +0.975,0.625,0.1336348,0.2672696 +0.975,0.625,0.26726967,0.1336348 +0.975,0.625,0.23811013,0.23811018 +0.975,0.625,0.1683693,0.3367386 +0.975,0.625,0.3367386,0.1683693 +0.97499996,0.675,0.14999998,0.14999998 +0.975,0.675,0.10606599,0.2121321 +0.975,0.67499995,0.21213204,0.10606605 +0.97499996,0.675,0.18898809,0.18898809 +0.975,0.6750001,0.1336348,0.26726967 +0.975,0.67499995,0.26726967,0.13363487 +0.975,0.675,0.23811013,0.23811018 +0.975,0.675,0.1683693,0.3367386 +0.975,0.675,0.3367386,0.1683693 +0.97499996,0.725,0.14999998,0.15000004 +0.975,0.725,0.10606599,0.21213204 +0.975,0.725,0.21213204,0.10606605 +0.97499996,0.725,0.18898809,0.18898815 +0.975,0.725,0.1336348,0.2672696 +0.975,0.725,0.26726967,0.13363487 +0.975,0.725,0.23811013,0.23811013 +0.975,0.725,0.1683693,0.3367386 +0.975,0.725,0.3367386,0.1683693 +0.97499996,0.775,0.14999998,0.15000004 +0.975,0.775,0.10606599,0.21213204 +0.975,0.775,0.21213204,0.10606599 +0.97499996,0.775,0.18898809,0.18898815 +0.975,0.775,0.1336348,0.26726967 +0.975,0.775,0.26726967,0.1336348 +0.975,0.775,0.23811013,0.23811013 +0.975,0.775,0.1683693,0.3367386 +0.975,0.775,0.3367386,0.1683693 +0.97499996,0.825,0.14999998,0.14999998 +0.975,0.825,0.10606599,0.2121321 +0.975,0.825,0.21213204,0.10606599 +0.97499996,0.825,0.18898809,0.18898809 +0.975,0.82500005,0.1336348,0.26726967 +0.975,0.825,0.26726967,0.1336348 +0.975,0.825,0.23811013,0.23811018 +0.975,0.825,0.1683693,0.3367386 +0.975,0.825,0.3367386,0.1683693 +0.97499996,0.875,0.14999998,0.14999998 +0.975,0.875,0.10606599,0.2121321 +0.975,0.875,0.21213204,0.10606599 +0.97499996,0.875,0.18898809,0.18898809 +0.975,0.875,0.1336348,0.2672696 +0.975,0.875,0.26726967,0.1336348 +0.975,0.875,0.23811013,0.23811018 +0.975,0.875,0.1683693,0.3367386 +0.975,0.875,0.3367386,0.1683693 +0.97499996,0.925,0.14999998,0.14999998 +0.975,0.925,0.10606599,0.2121321 +0.975,0.92499995,0.21213204,0.10606593 +0.97499996,0.925,0.18898809,0.18898809 +0.975,0.9250001,0.1336348,0.26726967 +0.975,0.92499995,0.26726967,0.13363475 +0.975,0.925,0.23811013,0.23811018 +0.975,0.92499995,0.1683693,0.33673853 +0.975,0.92499995,0.3367386,0.16836923 +0.97499996,0.97499996,0.14999998,0.14999998 +0.975,0.975,0.10606599,0.21213204 +0.975,0.975,0.21213204,0.10606599 +0.97499996,0.97499996,0.18898809,0.18898809 +0.975,0.975,0.1336348,0.26726967 +0.975,0.975,0.26726967,0.1336348 +0.975,0.975,0.23811013,0.23811013 +0.975,0.975,0.1683693,0.3367386 +0.975,0.975,0.3367386,0.1683693 +0.05,0.05,0.3,0.3 +0.049999997,0.04999999,0.21213204,0.42426407 +0.04999999,0.049999997,0.42426407,0.21213204 +0.049999997,0.049999997,0.37797633,0.37797633 +0.049999997,0.050000004,0.2672696,0.5345392 +0.050000004,0.049999997,0.5345392,0.2672696 +0.050000004,0.050000004,0.4762203,0.4762203 +0.05000001,0.049999997,0.33673862,0.6734772 +0.049999997,0.05000001,0.6734772,0.33673862 +0.05,0.15,0.3,0.3 +0.049999997,0.14999999,0.21213204,0.42426404 +0.04999999,0.15,0.42426407,0.21213204 +0.049999997,0.15,0.37797633,0.3779763 +0.049999997,0.15,0.2672696,0.5345392 +0.050000004,0.15,0.5345392,0.2672696 +0.050000004,0.15,0.4762203,0.4762203 +0.05000001,0.15,0.33673862,0.67347723 +0.049999997,0.15,0.6734772,0.33673865 +0.05,0.25,0.3,0.3 +0.049999997,0.25,0.21213204,0.42426407 +0.04999999,0.25,0.42426407,0.21213204 +0.049999997,0.25,0.37797633,0.3779763 +0.049999997,0.25,0.2672696,0.5345392 +0.050000004,0.25,0.5345392,0.2672696 +0.050000004,0.25,0.4762203,0.4762203 +0.05000001,0.25,0.33673862,0.6734773 +0.049999997,0.25,0.6734772,0.3367386 +0.05,0.35,0.3,0.3 +0.049999997,0.34999996,0.21213204,0.42426404 +0.04999999,0.35000002,0.42426407,0.21213205 +0.049999997,0.35000002,0.37797633,0.37797633 +0.049999997,0.35000002,0.2672696,0.5345392 +0.050000004,0.35,0.5345392,0.2672696 +0.050000004,0.35,0.4762203,0.4762203 +0.05000001,0.35,0.33673862,0.67347723 +0.049999997,0.35000002,0.6734772,0.33673862 +0.05,0.45000002,0.3,0.3 +0.049999997,0.45,0.21213204,0.42426404 +0.04999999,0.45000002,0.42426407,0.21213204 +0.049999997,0.45,0.37797633,0.3779763 +0.049999997,0.45,0.2672696,0.5345392 +0.050000004,0.45,0.5345392,0.2672696 +0.050000004,0.45,0.4762203,0.47622034 +0.05000001,0.45000002,0.33673862,0.67347723 +0.049999997,0.45,0.6734772,0.3367386 +0.05,0.55,0.3,0.29999998 +0.049999997,0.55,0.21213204,0.42426407 +0.04999999,0.55,0.42426407,0.2121321 +0.049999997,0.55,0.37797633,0.37797633 +0.049999997,0.55,0.2672696,0.5345392 +0.050000004,0.55,0.5345392,0.2672696 +0.050000004,0.54999995,0.4762203,0.4762203 +0.05000001,0.55,0.33673862,0.6734772 +0.049999997,0.55,0.6734772,0.33673862 +0.05,0.65,0.3,0.3 +0.049999997,0.65000004,0.21213204,0.4242641 +0.04999999,0.65,0.42426407,0.21213204 +0.049999997,0.65,0.37797633,0.3779763 +0.049999997,0.65,0.2672696,0.5345392 +0.050000004,0.65,0.5345392,0.2672696 +0.050000004,0.65,0.4762203,0.4762203 +0.05000001,0.65,0.33673862,0.6734772 +0.049999997,0.65,0.6734772,0.33673856 +0.05,0.75,0.3,0.29999995 +0.049999997,0.75,0.21213204,0.42426413 +0.04999999,0.75,0.42426407,0.2121321 +0.049999997,0.75,0.37797633,0.37797624 +0.049999997,0.75,0.2672696,0.5345392 +0.050000004,0.75,0.5345392,0.26726967 +0.050000004,0.75,0.4762203,0.47622037 +0.05000001,0.75,0.33673862,0.67347723 +0.049999997,0.75,0.6734772,0.3367386 +0.05,0.85,0.3,0.3 +0.049999997,0.85,0.21213204,0.42426413 +0.04999999,0.85,0.42426407,0.21213204 +0.049999997,0.84999996,0.37797633,0.3779763 +0.049999997,0.85,0.2672696,0.5345392 +0.050000004,0.85,0.5345392,0.2672696 +0.050000004,0.85,0.4762203,0.47622037 +0.05000001,0.85,0.33673862,0.67347723 +0.049999997,0.85,0.6734772,0.3367386 +0.05,0.95000005,0.3,0.3 +0.049999997,0.95,0.21213204,0.42426407 +0.04999999,0.95,0.42426407,0.2121321 +0.049999997,0.95,0.37797633,0.3779763 +0.049999997,0.95000005,0.2672696,0.5345393 +0.050000004,0.95,0.5345392,0.26726973 +0.050000004,0.95,0.4762203,0.47622025 +0.05000001,0.95,0.33673862,0.6734773 +0.049999997,0.95000005,0.6734772,0.33673865 +0.15,0.05,0.3,0.3 +0.15,0.04999999,0.21213204,0.42426407 +0.14999999,0.049999997,0.42426404,0.21213204 +0.15,0.049999997,0.3779763,0.37797633 +0.15,0.050000004,0.2672696,0.5345392 +0.15,0.049999997,0.5345392,0.2672696 +0.15,0.050000004,0.4762203,0.4762203 +0.15,0.049999997,0.33673865,0.6734772 +0.15,0.05000001,0.67347723,0.33673862 +0.15,0.15,0.3,0.3 +0.15,0.14999999,0.21213204,0.42426404 +0.14999999,0.15,0.42426404,0.21213204 +0.15,0.15,0.3779763,0.3779763 +0.15,0.15,0.2672696,0.5345392 +0.15,0.15,0.5345392,0.2672696 +0.15,0.15,0.4762203,0.4762203 +0.15,0.15,0.33673865,0.67347723 +0.15,0.15,0.67347723,0.33673865 +0.15,0.25,0.3,0.3 +0.15,0.25,0.21213204,0.42426407 +0.14999999,0.25,0.42426404,0.21213204 +0.15,0.25,0.3779763,0.3779763 +0.15,0.25,0.2672696,0.5345392 +0.15,0.25,0.5345392,0.2672696 +0.15,0.25,0.4762203,0.4762203 +0.15,0.25,0.33673865,0.6734773 +0.15,0.25,0.67347723,0.3367386 +0.15,0.35,0.3,0.3 +0.15,0.34999996,0.21213204,0.42426404 +0.14999999,0.35000002,0.42426404,0.21213205 +0.15,0.35000002,0.3779763,0.37797633 +0.15,0.35000002,0.2672696,0.5345392 +0.15,0.35,0.5345392,0.2672696 +0.15,0.35,0.4762203,0.4762203 +0.15,0.35,0.33673865,0.67347723 +0.15,0.35000002,0.67347723,0.33673862 +0.15,0.45000002,0.3,0.3 +0.15,0.45,0.21213204,0.42426404 +0.14999999,0.45000002,0.42426404,0.21213204 +0.15,0.45,0.3779763,0.3779763 +0.15,0.45,0.2672696,0.5345392 +0.15,0.45,0.5345392,0.2672696 +0.15,0.45,0.4762203,0.47622034 +0.15,0.45000002,0.33673865,0.67347723 +0.15,0.45,0.67347723,0.3367386 +0.15,0.55,0.3,0.29999998 +0.15,0.55,0.21213204,0.42426407 +0.14999999,0.55,0.42426404,0.2121321 +0.15,0.55,0.3779763,0.37797633 +0.15,0.55,0.2672696,0.5345392 +0.15,0.55,0.5345392,0.2672696 +0.15,0.54999995,0.4762203,0.4762203 +0.15,0.55,0.33673865,0.6734772 +0.15,0.55,0.67347723,0.33673862 +0.15,0.65,0.3,0.3 +0.15,0.65000004,0.21213204,0.4242641 +0.14999999,0.65,0.42426404,0.21213204 +0.15,0.65,0.3779763,0.3779763 +0.15,0.65,0.2672696,0.5345392 +0.15,0.65,0.5345392,0.2672696 +0.15,0.65,0.4762203,0.4762203 +0.15,0.65,0.33673865,0.6734772 +0.15,0.65,0.67347723,0.33673856 +0.15,0.75,0.3,0.29999995 +0.15,0.75,0.21213204,0.42426413 +0.14999999,0.75,0.42426404,0.2121321 +0.15,0.75,0.3779763,0.37797624 +0.15,0.75,0.2672696,0.5345392 +0.15,0.75,0.5345392,0.26726967 +0.15,0.75,0.4762203,0.47622037 +0.15,0.75,0.33673865,0.67347723 +0.15,0.75,0.67347723,0.3367386 +0.15,0.85,0.3,0.3 +0.15,0.85,0.21213204,0.42426413 +0.14999999,0.85,0.42426404,0.21213204 +0.15,0.84999996,0.3779763,0.3779763 +0.15,0.85,0.2672696,0.5345392 +0.15,0.85,0.5345392,0.2672696 +0.15,0.85,0.4762203,0.47622037 +0.15,0.85,0.33673865,0.67347723 +0.15,0.85,0.67347723,0.3367386 +0.15,0.95000005,0.3,0.3 +0.15,0.95,0.21213204,0.42426407 +0.14999999,0.95,0.42426404,0.2121321 +0.15,0.95,0.3779763,0.3779763 +0.15,0.95000005,0.2672696,0.5345393 +0.15,0.95,0.5345392,0.26726973 +0.15,0.95,0.4762203,0.47622025 +0.15,0.95,0.33673865,0.6734773 +0.15,0.95000005,0.67347723,0.33673865 +0.25,0.05,0.3,0.3 +0.25,0.04999999,0.21213204,0.42426407 +0.25,0.049999997,0.42426407,0.21213204 +0.25,0.049999997,0.3779763,0.37797633 +0.25,0.050000004,0.2672696,0.5345392 +0.25,0.049999997,0.5345392,0.2672696 +0.25,0.050000004,0.4762203,0.4762203 +0.25,0.049999997,0.3367386,0.6734772 +0.25,0.05000001,0.6734773,0.33673862 +0.25,0.15,0.3,0.3 +0.25,0.14999999,0.21213204,0.42426404 +0.25,0.15,0.42426407,0.21213204 +0.25,0.15,0.3779763,0.3779763 +0.25,0.15,0.2672696,0.5345392 +0.25,0.15,0.5345392,0.2672696 +0.25,0.15,0.4762203,0.4762203 +0.25,0.15,0.3367386,0.67347723 +0.25,0.15,0.6734773,0.33673865 +0.25,0.25,0.3,0.3 +0.25,0.25,0.21213204,0.42426407 +0.25,0.25,0.42426407,0.21213204 +0.25,0.25,0.3779763,0.3779763 +0.25,0.25,0.2672696,0.5345392 +0.25,0.25,0.5345392,0.2672696 +0.25,0.25,0.4762203,0.4762203 +0.25,0.25,0.3367386,0.6734773 +0.25,0.25,0.6734773,0.3367386 +0.25,0.35,0.3,0.3 +0.25,0.34999996,0.21213204,0.42426404 +0.25,0.35000002,0.42426407,0.21213205 +0.25,0.35000002,0.3779763,0.37797633 +0.25,0.35000002,0.2672696,0.5345392 +0.25,0.35,0.5345392,0.2672696 +0.25,0.35,0.4762203,0.4762203 +0.25,0.35,0.3367386,0.67347723 +0.25,0.35000002,0.6734773,0.33673862 +0.25,0.45000002,0.3,0.3 +0.25,0.45,0.21213204,0.42426404 +0.25,0.45000002,0.42426407,0.21213204 +0.25,0.45,0.3779763,0.3779763 +0.25,0.45,0.2672696,0.5345392 +0.25,0.45,0.5345392,0.2672696 +0.25,0.45,0.4762203,0.47622034 +0.25,0.45000002,0.3367386,0.67347723 +0.25,0.45,0.6734773,0.3367386 +0.25,0.55,0.3,0.29999998 +0.25,0.55,0.21213204,0.42426407 +0.25,0.55,0.42426407,0.2121321 +0.25,0.55,0.3779763,0.37797633 +0.25,0.55,0.2672696,0.5345392 +0.25,0.55,0.5345392,0.2672696 +0.25,0.54999995,0.4762203,0.4762203 +0.25,0.55,0.3367386,0.6734772 +0.25,0.55,0.6734773,0.33673862 +0.25,0.65,0.3,0.3 +0.25,0.65000004,0.21213204,0.4242641 +0.25,0.65,0.42426407,0.21213204 +0.25,0.65,0.3779763,0.3779763 +0.25,0.65,0.2672696,0.5345392 +0.25,0.65,0.5345392,0.2672696 +0.25,0.65,0.4762203,0.4762203 +0.25,0.65,0.3367386,0.6734772 +0.25,0.65,0.6734773,0.33673856 +0.25,0.75,0.3,0.29999995 +0.25,0.75,0.21213204,0.42426413 +0.25,0.75,0.42426407,0.2121321 +0.25,0.75,0.3779763,0.37797624 +0.25,0.75,0.2672696,0.5345392 +0.25,0.75,0.5345392,0.26726967 +0.25,0.75,0.4762203,0.47622037 +0.25,0.75,0.3367386,0.67347723 +0.25,0.75,0.6734773,0.3367386 +0.25,0.85,0.3,0.3 +0.25,0.85,0.21213204,0.42426413 +0.25,0.85,0.42426407,0.21213204 +0.25,0.84999996,0.3779763,0.3779763 +0.25,0.85,0.2672696,0.5345392 +0.25,0.85,0.5345392,0.2672696 +0.25,0.85,0.4762203,0.47622037 +0.25,0.85,0.3367386,0.67347723 +0.25,0.85,0.6734773,0.3367386 +0.25,0.95000005,0.3,0.3 +0.25,0.95,0.21213204,0.42426407 +0.25,0.95,0.42426407,0.2121321 +0.25,0.95,0.3779763,0.3779763 +0.25,0.95000005,0.2672696,0.5345393 +0.25,0.95,0.5345392,0.26726973 +0.25,0.95,0.4762203,0.47622025 +0.25,0.95,0.3367386,0.6734773 +0.25,0.95000005,0.6734773,0.33673865 +0.35,0.05,0.3,0.3 +0.35000002,0.04999999,0.21213205,0.42426407 +0.34999996,0.049999997,0.42426404,0.21213204 +0.35000002,0.049999997,0.37797633,0.37797633 +0.35,0.050000004,0.2672696,0.5345392 +0.35000002,0.049999997,0.5345392,0.2672696 +0.35,0.050000004,0.4762203,0.4762203 +0.35000002,0.049999997,0.33673862,0.6734772 +0.35,0.05000001,0.67347723,0.33673862 +0.35,0.15,0.3,0.3 +0.35000002,0.14999999,0.21213205,0.42426404 +0.34999996,0.15,0.42426404,0.21213204 +0.35000002,0.15,0.37797633,0.3779763 +0.35,0.15,0.2672696,0.5345392 +0.35000002,0.15,0.5345392,0.2672696 +0.35,0.15,0.4762203,0.4762203 +0.35000002,0.15,0.33673862,0.67347723 +0.35,0.15,0.67347723,0.33673865 +0.35,0.25,0.3,0.3 +0.35000002,0.25,0.21213205,0.42426407 +0.34999996,0.25,0.42426404,0.21213204 +0.35000002,0.25,0.37797633,0.3779763 +0.35,0.25,0.2672696,0.5345392 +0.35000002,0.25,0.5345392,0.2672696 +0.35,0.25,0.4762203,0.4762203 +0.35000002,0.25,0.33673862,0.6734773 +0.35,0.25,0.67347723,0.3367386 +0.35,0.35,0.3,0.3 +0.35000002,0.34999996,0.21213205,0.42426404 +0.34999996,0.35000002,0.42426404,0.21213205 +0.35000002,0.35000002,0.37797633,0.37797633 +0.35,0.35000002,0.2672696,0.5345392 +0.35000002,0.35,0.5345392,0.2672696 +0.35,0.35,0.4762203,0.4762203 +0.35000002,0.35,0.33673862,0.67347723 +0.35,0.35000002,0.67347723,0.33673862 +0.35,0.45000002,0.3,0.3 +0.35000002,0.45,0.21213205,0.42426404 +0.34999996,0.45000002,0.42426404,0.21213204 +0.35000002,0.45,0.37797633,0.3779763 +0.35,0.45,0.2672696,0.5345392 +0.35000002,0.45,0.5345392,0.2672696 +0.35,0.45,0.4762203,0.47622034 +0.35000002,0.45000002,0.33673862,0.67347723 +0.35,0.45,0.67347723,0.3367386 +0.35,0.55,0.3,0.29999998 +0.35000002,0.55,0.21213205,0.42426407 +0.34999996,0.55,0.42426404,0.2121321 +0.35000002,0.55,0.37797633,0.37797633 +0.35,0.55,0.2672696,0.5345392 +0.35000002,0.55,0.5345392,0.2672696 +0.35,0.54999995,0.4762203,0.4762203 +0.35000002,0.55,0.33673862,0.6734772 +0.35,0.55,0.67347723,0.33673862 +0.35,0.65,0.3,0.3 +0.35000002,0.65000004,0.21213205,0.4242641 +0.34999996,0.65,0.42426404,0.21213204 +0.35000002,0.65,0.37797633,0.3779763 +0.35,0.65,0.2672696,0.5345392 +0.35000002,0.65,0.5345392,0.2672696 +0.35,0.65,0.4762203,0.4762203 +0.35000002,0.65,0.33673862,0.6734772 +0.35,0.65,0.67347723,0.33673856 +0.35,0.75,0.3,0.29999995 +0.35000002,0.75,0.21213205,0.42426413 +0.34999996,0.75,0.42426404,0.2121321 +0.35000002,0.75,0.37797633,0.37797624 +0.35,0.75,0.2672696,0.5345392 +0.35000002,0.75,0.5345392,0.26726967 +0.35,0.75,0.4762203,0.47622037 +0.35000002,0.75,0.33673862,0.67347723 +0.35,0.75,0.67347723,0.3367386 +0.35,0.85,0.3,0.3 +0.35000002,0.85,0.21213205,0.42426413 +0.34999996,0.85,0.42426404,0.21213204 +0.35000002,0.84999996,0.37797633,0.3779763 +0.35,0.85,0.2672696,0.5345392 +0.35000002,0.85,0.5345392,0.2672696 +0.35,0.85,0.4762203,0.47622037 +0.35000002,0.85,0.33673862,0.67347723 +0.35,0.85,0.67347723,0.3367386 +0.35,0.95000005,0.3,0.3 +0.35000002,0.95,0.21213205,0.42426407 +0.34999996,0.95,0.42426404,0.2121321 +0.35000002,0.95,0.37797633,0.3779763 +0.35,0.95000005,0.2672696,0.5345393 +0.35000002,0.95,0.5345392,0.26726973 +0.35,0.95,0.4762203,0.47622025 +0.35000002,0.95,0.33673862,0.6734773 +0.35,0.95000005,0.67347723,0.33673865 +0.45000002,0.05,0.3,0.3 +0.45000002,0.04999999,0.21213204,0.42426407 +0.45,0.049999997,0.42426404,0.21213204 +0.45,0.049999997,0.3779763,0.37797633 +0.45,0.050000004,0.2672696,0.5345392 +0.45,0.049999997,0.5345392,0.2672696 +0.45,0.050000004,0.47622034,0.4762203 +0.45,0.049999997,0.3367386,0.6734772 +0.45000002,0.05000001,0.67347723,0.33673862 +0.45000002,0.15,0.3,0.3 +0.45000002,0.14999999,0.21213204,0.42426404 +0.45,0.15,0.42426404,0.21213204 +0.45,0.15,0.3779763,0.3779763 +0.45,0.15,0.2672696,0.5345392 +0.45,0.15,0.5345392,0.2672696 +0.45,0.15,0.47622034,0.4762203 +0.45,0.15,0.3367386,0.67347723 +0.45000002,0.15,0.67347723,0.33673865 +0.45000002,0.25,0.3,0.3 +0.45000002,0.25,0.21213204,0.42426407 +0.45,0.25,0.42426404,0.21213204 +0.45,0.25,0.3779763,0.3779763 +0.45,0.25,0.2672696,0.5345392 +0.45,0.25,0.5345392,0.2672696 +0.45,0.25,0.47622034,0.4762203 +0.45,0.25,0.3367386,0.6734773 +0.45000002,0.25,0.67347723,0.3367386 +0.45000002,0.35,0.3,0.3 +0.45000002,0.34999996,0.21213204,0.42426404 +0.45,0.35000002,0.42426404,0.21213205 +0.45,0.35000002,0.3779763,0.37797633 +0.45,0.35000002,0.2672696,0.5345392 +0.45,0.35,0.5345392,0.2672696 +0.45,0.35,0.47622034,0.4762203 +0.45,0.35,0.3367386,0.67347723 +0.45000002,0.35000002,0.67347723,0.33673862 +0.45000002,0.45000002,0.3,0.3 +0.45000002,0.45,0.21213204,0.42426404 +0.45,0.45000002,0.42426404,0.21213204 +0.45,0.45,0.3779763,0.3779763 +0.45,0.45,0.2672696,0.5345392 +0.45,0.45,0.5345392,0.2672696 +0.45,0.45,0.47622034,0.47622034 +0.45,0.45000002,0.3367386,0.67347723 +0.45000002,0.45,0.67347723,0.3367386 +0.45000002,0.55,0.3,0.29999998 +0.45000002,0.55,0.21213204,0.42426407 +0.45,0.55,0.42426404,0.2121321 +0.45,0.55,0.3779763,0.37797633 +0.45,0.55,0.2672696,0.5345392 +0.45,0.55,0.5345392,0.2672696 +0.45,0.54999995,0.47622034,0.4762203 +0.45,0.55,0.3367386,0.6734772 +0.45000002,0.55,0.67347723,0.33673862 +0.45000002,0.65,0.3,0.3 +0.45000002,0.65000004,0.21213204,0.4242641 +0.45,0.65,0.42426404,0.21213204 +0.45,0.65,0.3779763,0.3779763 +0.45,0.65,0.2672696,0.5345392 +0.45,0.65,0.5345392,0.2672696 +0.45,0.65,0.47622034,0.4762203 +0.45,0.65,0.3367386,0.6734772 +0.45000002,0.65,0.67347723,0.33673856 +0.45000002,0.75,0.3,0.29999995 +0.45000002,0.75,0.21213204,0.42426413 +0.45,0.75,0.42426404,0.2121321 +0.45,0.75,0.3779763,0.37797624 +0.45,0.75,0.2672696,0.5345392 +0.45,0.75,0.5345392,0.26726967 +0.45,0.75,0.47622034,0.47622037 +0.45,0.75,0.3367386,0.67347723 +0.45000002,0.75,0.67347723,0.3367386 +0.45000002,0.85,0.3,0.3 +0.45000002,0.85,0.21213204,0.42426413 +0.45,0.85,0.42426404,0.21213204 +0.45,0.84999996,0.3779763,0.3779763 +0.45,0.85,0.2672696,0.5345392 +0.45,0.85,0.5345392,0.2672696 +0.45,0.85,0.47622034,0.47622037 +0.45,0.85,0.3367386,0.67347723 +0.45000002,0.85,0.67347723,0.3367386 +0.45000002,0.95000005,0.3,0.3 +0.45000002,0.95,0.21213204,0.42426407 +0.45,0.95,0.42426404,0.2121321 +0.45,0.95,0.3779763,0.3779763 +0.45,0.95000005,0.2672696,0.5345393 +0.45,0.95,0.5345392,0.26726973 +0.45,0.95,0.47622034,0.47622025 +0.45,0.95,0.3367386,0.6734773 +0.45000002,0.95000005,0.67347723,0.33673865 +0.55,0.05,0.29999998,0.3 +0.55,0.04999999,0.2121321,0.42426407 +0.55,0.049999997,0.42426407,0.21213204 +0.55,0.049999997,0.37797633,0.37797633 +0.55,0.050000004,0.2672696,0.5345392 +0.55,0.049999997,0.5345392,0.2672696 +0.54999995,0.050000004,0.4762203,0.4762203 +0.55,0.049999997,0.33673862,0.6734772 +0.55,0.05000001,0.6734772,0.33673862 +0.55,0.15,0.29999998,0.3 +0.55,0.14999999,0.2121321,0.42426404 +0.55,0.15,0.42426407,0.21213204 +0.55,0.15,0.37797633,0.3779763 +0.55,0.15,0.2672696,0.5345392 +0.55,0.15,0.5345392,0.2672696 +0.54999995,0.15,0.4762203,0.4762203 +0.55,0.15,0.33673862,0.67347723 +0.55,0.15,0.6734772,0.33673865 +0.55,0.25,0.29999998,0.3 +0.55,0.25,0.2121321,0.42426407 +0.55,0.25,0.42426407,0.21213204 +0.55,0.25,0.37797633,0.3779763 +0.55,0.25,0.2672696,0.5345392 +0.55,0.25,0.5345392,0.2672696 +0.54999995,0.25,0.4762203,0.4762203 +0.55,0.25,0.33673862,0.6734773 +0.55,0.25,0.6734772,0.3367386 +0.55,0.35,0.29999998,0.3 +0.55,0.34999996,0.2121321,0.42426404 +0.55,0.35000002,0.42426407,0.21213205 +0.55,0.35000002,0.37797633,0.37797633 +0.55,0.35000002,0.2672696,0.5345392 +0.55,0.35,0.5345392,0.2672696 +0.54999995,0.35,0.4762203,0.4762203 +0.55,0.35,0.33673862,0.67347723 +0.55,0.35000002,0.6734772,0.33673862 +0.55,0.45000002,0.29999998,0.3 +0.55,0.45,0.2121321,0.42426404 +0.55,0.45000002,0.42426407,0.21213204 +0.55,0.45,0.37797633,0.3779763 +0.55,0.45,0.2672696,0.5345392 +0.55,0.45,0.5345392,0.2672696 +0.54999995,0.45,0.4762203,0.47622034 +0.55,0.45000002,0.33673862,0.67347723 +0.55,0.45,0.6734772,0.3367386 +0.55,0.55,0.29999998,0.29999998 +0.55,0.55,0.2121321,0.42426407 +0.55,0.55,0.42426407,0.2121321 +0.55,0.55,0.37797633,0.37797633 +0.55,0.55,0.2672696,0.5345392 +0.55,0.55,0.5345392,0.2672696 +0.54999995,0.54999995,0.4762203,0.4762203 +0.55,0.55,0.33673862,0.6734772 +0.55,0.55,0.6734772,0.33673862 +0.55,0.65,0.29999998,0.3 +0.55,0.65000004,0.2121321,0.4242641 +0.55,0.65,0.42426407,0.21213204 +0.55,0.65,0.37797633,0.3779763 +0.55,0.65,0.2672696,0.5345392 +0.55,0.65,0.5345392,0.2672696 +0.54999995,0.65,0.4762203,0.4762203 +0.55,0.65,0.33673862,0.6734772 +0.55,0.65,0.6734772,0.33673856 +0.55,0.75,0.29999998,0.29999995 +0.55,0.75,0.2121321,0.42426413 +0.55,0.75,0.42426407,0.2121321 +0.55,0.75,0.37797633,0.37797624 +0.55,0.75,0.2672696,0.5345392 +0.55,0.75,0.5345392,0.26726967 +0.54999995,0.75,0.4762203,0.47622037 +0.55,0.75,0.33673862,0.67347723 +0.55,0.75,0.6734772,0.3367386 +0.55,0.85,0.29999998,0.3 +0.55,0.85,0.2121321,0.42426413 +0.55,0.85,0.42426407,0.21213204 +0.55,0.84999996,0.37797633,0.3779763 +0.55,0.85,0.2672696,0.5345392 +0.55,0.85,0.5345392,0.2672696 +0.54999995,0.85,0.4762203,0.47622037 +0.55,0.85,0.33673862,0.67347723 +0.55,0.85,0.6734772,0.3367386 +0.55,0.95000005,0.29999998,0.3 +0.55,0.95,0.2121321,0.42426407 +0.55,0.95,0.42426407,0.2121321 +0.55,0.95,0.37797633,0.3779763 +0.55,0.95000005,0.2672696,0.5345393 +0.55,0.95,0.5345392,0.26726973 +0.54999995,0.95,0.4762203,0.47622025 +0.55,0.95,0.33673862,0.6734773 +0.55,0.95000005,0.6734772,0.33673865 +0.65,0.05,0.3,0.3 +0.65,0.04999999,0.21213204,0.42426407 +0.65000004,0.049999997,0.4242641,0.21213204 +0.65,0.049999997,0.3779763,0.37797633 +0.65,0.050000004,0.2672696,0.5345392 +0.65,0.049999997,0.5345392,0.2672696 +0.65,0.050000004,0.4762203,0.4762203 +0.65,0.049999997,0.33673856,0.6734772 +0.65,0.05000001,0.6734772,0.33673862 +0.65,0.15,0.3,0.3 +0.65,0.14999999,0.21213204,0.42426404 +0.65000004,0.15,0.4242641,0.21213204 +0.65,0.15,0.3779763,0.3779763 +0.65,0.15,0.2672696,0.5345392 +0.65,0.15,0.5345392,0.2672696 +0.65,0.15,0.4762203,0.4762203 +0.65,0.15,0.33673856,0.67347723 +0.65,0.15,0.6734772,0.33673865 +0.65,0.25,0.3,0.3 +0.65,0.25,0.21213204,0.42426407 +0.65000004,0.25,0.4242641,0.21213204 +0.65,0.25,0.3779763,0.3779763 +0.65,0.25,0.2672696,0.5345392 +0.65,0.25,0.5345392,0.2672696 +0.65,0.25,0.4762203,0.4762203 +0.65,0.25,0.33673856,0.6734773 +0.65,0.25,0.6734772,0.3367386 +0.65,0.35,0.3,0.3 +0.65,0.34999996,0.21213204,0.42426404 +0.65000004,0.35000002,0.4242641,0.21213205 +0.65,0.35000002,0.3779763,0.37797633 +0.65,0.35000002,0.2672696,0.5345392 +0.65,0.35,0.5345392,0.2672696 +0.65,0.35,0.4762203,0.4762203 +0.65,0.35,0.33673856,0.67347723 +0.65,0.35000002,0.6734772,0.33673862 +0.65,0.45000002,0.3,0.3 +0.65,0.45,0.21213204,0.42426404 +0.65000004,0.45000002,0.4242641,0.21213204 +0.65,0.45,0.3779763,0.3779763 +0.65,0.45,0.2672696,0.5345392 +0.65,0.45,0.5345392,0.2672696 +0.65,0.45,0.4762203,0.47622034 +0.65,0.45000002,0.33673856,0.67347723 +0.65,0.45,0.6734772,0.3367386 +0.65,0.55,0.3,0.29999998 +0.65,0.55,0.21213204,0.42426407 +0.65000004,0.55,0.4242641,0.2121321 +0.65,0.55,0.3779763,0.37797633 +0.65,0.55,0.2672696,0.5345392 +0.65,0.55,0.5345392,0.2672696 +0.65,0.54999995,0.4762203,0.4762203 +0.65,0.55,0.33673856,0.6734772 +0.65,0.55,0.6734772,0.33673862 +0.65,0.65,0.3,0.3 +0.65,0.65000004,0.21213204,0.4242641 +0.65000004,0.65,0.4242641,0.21213204 +0.65,0.65,0.3779763,0.3779763 +0.65,0.65,0.2672696,0.5345392 +0.65,0.65,0.5345392,0.2672696 +0.65,0.65,0.4762203,0.4762203 +0.65,0.65,0.33673856,0.6734772 +0.65,0.65,0.6734772,0.33673856 +0.65,0.75,0.3,0.29999995 +0.65,0.75,0.21213204,0.42426413 +0.65000004,0.75,0.4242641,0.2121321 +0.65,0.75,0.3779763,0.37797624 +0.65,0.75,0.2672696,0.5345392 +0.65,0.75,0.5345392,0.26726967 +0.65,0.75,0.4762203,0.47622037 +0.65,0.75,0.33673856,0.67347723 +0.65,0.75,0.6734772,0.3367386 +0.65,0.85,0.3,0.3 +0.65,0.85,0.21213204,0.42426413 +0.65000004,0.85,0.4242641,0.21213204 +0.65,0.84999996,0.3779763,0.3779763 +0.65,0.85,0.2672696,0.5345392 +0.65,0.85,0.5345392,0.2672696 +0.65,0.85,0.4762203,0.47622037 +0.65,0.85,0.33673856,0.67347723 +0.65,0.85,0.6734772,0.3367386 +0.65,0.95000005,0.3,0.3 +0.65,0.95,0.21213204,0.42426407 +0.65000004,0.95,0.4242641,0.2121321 +0.65,0.95,0.3779763,0.3779763 +0.65,0.95000005,0.2672696,0.5345393 +0.65,0.95,0.5345392,0.26726973 +0.65,0.95,0.4762203,0.47622025 +0.65,0.95,0.33673856,0.6734773 +0.65,0.95000005,0.6734772,0.33673865 +0.75,0.05,0.29999995,0.3 +0.75,0.04999999,0.2121321,0.42426407 +0.75,0.049999997,0.42426413,0.21213204 +0.75,0.049999997,0.37797624,0.37797633 +0.75,0.050000004,0.26726967,0.5345392 +0.75,0.049999997,0.5345392,0.2672696 +0.75,0.050000004,0.47622037,0.4762203 +0.75,0.049999997,0.3367386,0.6734772 +0.75,0.05000001,0.67347723,0.33673862 +0.75,0.15,0.29999995,0.3 +0.75,0.14999999,0.2121321,0.42426404 +0.75,0.15,0.42426413,0.21213204 +0.75,0.15,0.37797624,0.3779763 +0.75,0.15,0.26726967,0.5345392 +0.75,0.15,0.5345392,0.2672696 +0.75,0.15,0.47622037,0.4762203 +0.75,0.15,0.3367386,0.67347723 +0.75,0.15,0.67347723,0.33673865 +0.75,0.25,0.29999995,0.3 +0.75,0.25,0.2121321,0.42426407 +0.75,0.25,0.42426413,0.21213204 +0.75,0.25,0.37797624,0.3779763 +0.75,0.25,0.26726967,0.5345392 +0.75,0.25,0.5345392,0.2672696 +0.75,0.25,0.47622037,0.4762203 +0.75,0.25,0.3367386,0.6734773 +0.75,0.25,0.67347723,0.3367386 +0.75,0.35,0.29999995,0.3 +0.75,0.34999996,0.2121321,0.42426404 +0.75,0.35000002,0.42426413,0.21213205 +0.75,0.35000002,0.37797624,0.37797633 +0.75,0.35000002,0.26726967,0.5345392 +0.75,0.35,0.5345392,0.2672696 +0.75,0.35,0.47622037,0.4762203 +0.75,0.35,0.3367386,0.67347723 +0.75,0.35000002,0.67347723,0.33673862 +0.75,0.45000002,0.29999995,0.3 +0.75,0.45,0.2121321,0.42426404 +0.75,0.45000002,0.42426413,0.21213204 +0.75,0.45,0.37797624,0.3779763 +0.75,0.45,0.26726967,0.5345392 +0.75,0.45,0.5345392,0.2672696 +0.75,0.45,0.47622037,0.47622034 +0.75,0.45000002,0.3367386,0.67347723 +0.75,0.45,0.67347723,0.3367386 +0.75,0.55,0.29999995,0.29999998 +0.75,0.55,0.2121321,0.42426407 +0.75,0.55,0.42426413,0.2121321 +0.75,0.55,0.37797624,0.37797633 +0.75,0.55,0.26726967,0.5345392 +0.75,0.55,0.5345392,0.2672696 +0.75,0.54999995,0.47622037,0.4762203 +0.75,0.55,0.3367386,0.6734772 +0.75,0.55,0.67347723,0.33673862 +0.75,0.65,0.29999995,0.3 +0.75,0.65000004,0.2121321,0.4242641 +0.75,0.65,0.42426413,0.21213204 +0.75,0.65,0.37797624,0.3779763 +0.75,0.65,0.26726967,0.5345392 +0.75,0.65,0.5345392,0.2672696 +0.75,0.65,0.47622037,0.4762203 +0.75,0.65,0.3367386,0.6734772 +0.75,0.65,0.67347723,0.33673856 +0.75,0.75,0.29999995,0.29999995 +0.75,0.75,0.2121321,0.42426413 +0.75,0.75,0.42426413,0.2121321 +0.75,0.75,0.37797624,0.37797624 +0.75,0.75,0.26726967,0.5345392 +0.75,0.75,0.5345392,0.26726967 +0.75,0.75,0.47622037,0.47622037 +0.75,0.75,0.3367386,0.67347723 +0.75,0.75,0.67347723,0.3367386 +0.75,0.85,0.29999995,0.3 +0.75,0.85,0.2121321,0.42426413 +0.75,0.85,0.42426413,0.21213204 +0.75,0.84999996,0.37797624,0.3779763 +0.75,0.85,0.26726967,0.5345392 +0.75,0.85,0.5345392,0.2672696 +0.75,0.85,0.47622037,0.47622037 +0.75,0.85,0.3367386,0.67347723 +0.75,0.85,0.67347723,0.3367386 +0.75,0.95000005,0.29999995,0.3 +0.75,0.95,0.2121321,0.42426407 +0.75,0.95,0.42426413,0.2121321 +0.75,0.95,0.37797624,0.3779763 +0.75,0.95000005,0.26726967,0.5345393 +0.75,0.95,0.5345392,0.26726973 +0.75,0.95,0.47622037,0.47622025 +0.75,0.95,0.3367386,0.6734773 +0.75,0.95000005,0.67347723,0.33673865 +0.85,0.05,0.3,0.3 +0.85,0.04999999,0.21213204,0.42426407 +0.85,0.049999997,0.42426413,0.21213204 +0.84999996,0.049999997,0.3779763,0.37797633 +0.85,0.050000004,0.2672696,0.5345392 +0.85,0.049999997,0.5345392,0.2672696 +0.85,0.050000004,0.47622037,0.4762203 +0.85,0.049999997,0.3367386,0.6734772 +0.85,0.05000001,0.67347723,0.33673862 +0.85,0.15,0.3,0.3 +0.85,0.14999999,0.21213204,0.42426404 +0.85,0.15,0.42426413,0.21213204 +0.84999996,0.15,0.3779763,0.3779763 +0.85,0.15,0.2672696,0.5345392 +0.85,0.15,0.5345392,0.2672696 +0.85,0.15,0.47622037,0.4762203 +0.85,0.15,0.3367386,0.67347723 +0.85,0.15,0.67347723,0.33673865 +0.85,0.25,0.3,0.3 +0.85,0.25,0.21213204,0.42426407 +0.85,0.25,0.42426413,0.21213204 +0.84999996,0.25,0.3779763,0.3779763 +0.85,0.25,0.2672696,0.5345392 +0.85,0.25,0.5345392,0.2672696 +0.85,0.25,0.47622037,0.4762203 +0.85,0.25,0.3367386,0.6734773 +0.85,0.25,0.67347723,0.3367386 +0.85,0.35,0.3,0.3 +0.85,0.34999996,0.21213204,0.42426404 +0.85,0.35000002,0.42426413,0.21213205 +0.84999996,0.35000002,0.3779763,0.37797633 +0.85,0.35000002,0.2672696,0.5345392 +0.85,0.35,0.5345392,0.2672696 +0.85,0.35,0.47622037,0.4762203 +0.85,0.35,0.3367386,0.67347723 +0.85,0.35000002,0.67347723,0.33673862 +0.85,0.45000002,0.3,0.3 +0.85,0.45,0.21213204,0.42426404 +0.85,0.45000002,0.42426413,0.21213204 +0.84999996,0.45,0.3779763,0.3779763 +0.85,0.45,0.2672696,0.5345392 +0.85,0.45,0.5345392,0.2672696 +0.85,0.45,0.47622037,0.47622034 +0.85,0.45000002,0.3367386,0.67347723 +0.85,0.45,0.67347723,0.3367386 +0.85,0.55,0.3,0.29999998 +0.85,0.55,0.21213204,0.42426407 +0.85,0.55,0.42426413,0.2121321 +0.84999996,0.55,0.3779763,0.37797633 +0.85,0.55,0.2672696,0.5345392 +0.85,0.55,0.5345392,0.2672696 +0.85,0.54999995,0.47622037,0.4762203 +0.85,0.55,0.3367386,0.6734772 +0.85,0.55,0.67347723,0.33673862 +0.85,0.65,0.3,0.3 +0.85,0.65000004,0.21213204,0.4242641 +0.85,0.65,0.42426413,0.21213204 +0.84999996,0.65,0.3779763,0.3779763 +0.85,0.65,0.2672696,0.5345392 +0.85,0.65,0.5345392,0.2672696 +0.85,0.65,0.47622037,0.4762203 +0.85,0.65,0.3367386,0.6734772 +0.85,0.65,0.67347723,0.33673856 +0.85,0.75,0.3,0.29999995 +0.85,0.75,0.21213204,0.42426413 +0.85,0.75,0.42426413,0.2121321 +0.84999996,0.75,0.3779763,0.37797624 +0.85,0.75,0.2672696,0.5345392 +0.85,0.75,0.5345392,0.26726967 +0.85,0.75,0.47622037,0.47622037 +0.85,0.75,0.3367386,0.67347723 +0.85,0.75,0.67347723,0.3367386 +0.85,0.85,0.3,0.3 +0.85,0.85,0.21213204,0.42426413 +0.85,0.85,0.42426413,0.21213204 +0.84999996,0.84999996,0.3779763,0.3779763 +0.85,0.85,0.2672696,0.5345392 +0.85,0.85,0.5345392,0.2672696 +0.85,0.85,0.47622037,0.47622037 +0.85,0.85,0.3367386,0.67347723 +0.85,0.85,0.67347723,0.3367386 +0.85,0.95000005,0.3,0.3 +0.85,0.95,0.21213204,0.42426407 +0.85,0.95,0.42426413,0.2121321 +0.84999996,0.95,0.3779763,0.3779763 +0.85,0.95000005,0.2672696,0.5345393 +0.85,0.95,0.5345392,0.26726973 +0.85,0.95,0.47622037,0.47622025 +0.85,0.95,0.3367386,0.6734773 +0.85,0.95000005,0.67347723,0.33673865 +0.95000005,0.05,0.3,0.3 +0.95,0.04999999,0.2121321,0.42426407 +0.95,0.049999997,0.42426407,0.21213204 +0.95,0.049999997,0.3779763,0.37797633 +0.95,0.050000004,0.26726973,0.5345392 +0.95000005,0.049999997,0.5345393,0.2672696 +0.95,0.050000004,0.47622025,0.4762203 +0.95000005,0.049999997,0.33673865,0.6734772 +0.95,0.05000001,0.6734773,0.33673862 +0.95000005,0.15,0.3,0.3 +0.95,0.14999999,0.2121321,0.42426404 +0.95,0.15,0.42426407,0.21213204 +0.95,0.15,0.3779763,0.3779763 +0.95,0.15,0.26726973,0.5345392 +0.95000005,0.15,0.5345393,0.2672696 +0.95,0.15,0.47622025,0.4762203 +0.95000005,0.15,0.33673865,0.67347723 +0.95,0.15,0.6734773,0.33673865 +0.95000005,0.25,0.3,0.3 +0.95,0.25,0.2121321,0.42426407 +0.95,0.25,0.42426407,0.21213204 +0.95,0.25,0.3779763,0.3779763 +0.95,0.25,0.26726973,0.5345392 +0.95000005,0.25,0.5345393,0.2672696 +0.95,0.25,0.47622025,0.4762203 +0.95000005,0.25,0.33673865,0.6734773 +0.95,0.25,0.6734773,0.3367386 +0.95000005,0.35,0.3,0.3 +0.95,0.34999996,0.2121321,0.42426404 +0.95,0.35000002,0.42426407,0.21213205 +0.95,0.35000002,0.3779763,0.37797633 +0.95,0.35000002,0.26726973,0.5345392 +0.95000005,0.35,0.5345393,0.2672696 +0.95,0.35,0.47622025,0.4762203 +0.95000005,0.35,0.33673865,0.67347723 +0.95,0.35000002,0.6734773,0.33673862 +0.95000005,0.45000002,0.3,0.3 +0.95,0.45,0.2121321,0.42426404 +0.95,0.45000002,0.42426407,0.21213204 +0.95,0.45,0.3779763,0.3779763 +0.95,0.45,0.26726973,0.5345392 +0.95000005,0.45,0.5345393,0.2672696 +0.95,0.45,0.47622025,0.47622034 +0.95000005,0.45000002,0.33673865,0.67347723 +0.95,0.45,0.6734773,0.3367386 +0.95000005,0.55,0.3,0.29999998 +0.95,0.55,0.2121321,0.42426407 +0.95,0.55,0.42426407,0.2121321 +0.95,0.55,0.3779763,0.37797633 +0.95,0.55,0.26726973,0.5345392 +0.95000005,0.55,0.5345393,0.2672696 +0.95,0.54999995,0.47622025,0.4762203 +0.95000005,0.55,0.33673865,0.6734772 +0.95,0.55,0.6734773,0.33673862 +0.95000005,0.65,0.3,0.3 +0.95,0.65000004,0.2121321,0.4242641 +0.95,0.65,0.42426407,0.21213204 +0.95,0.65,0.3779763,0.3779763 +0.95,0.65,0.26726973,0.5345392 +0.95000005,0.65,0.5345393,0.2672696 +0.95,0.65,0.47622025,0.4762203 +0.95000005,0.65,0.33673865,0.6734772 +0.95,0.65,0.6734773,0.33673856 +0.95000005,0.75,0.3,0.29999995 +0.95,0.75,0.2121321,0.42426413 +0.95,0.75,0.42426407,0.2121321 +0.95,0.75,0.3779763,0.37797624 +0.95,0.75,0.26726973,0.5345392 +0.95000005,0.75,0.5345393,0.26726967 +0.95,0.75,0.47622025,0.47622037 +0.95000005,0.75,0.33673865,0.67347723 +0.95,0.75,0.6734773,0.3367386 +0.95000005,0.85,0.3,0.3 +0.95,0.85,0.2121321,0.42426413 +0.95,0.85,0.42426407,0.21213204 +0.95,0.84999996,0.3779763,0.3779763 +0.95,0.85,0.26726973,0.5345392 +0.95000005,0.85,0.5345393,0.2672696 +0.95,0.85,0.47622025,0.47622037 +0.95000005,0.85,0.33673865,0.67347723 +0.95,0.85,0.6734773,0.3367386 +0.95000005,0.95000005,0.3,0.3 +0.95,0.95,0.2121321,0.42426407 +0.95,0.95,0.42426407,0.2121321 +0.95,0.95,0.3779763,0.3779763 +0.95,0.95000005,0.26726973,0.5345393 +0.95000005,0.95,0.5345393,0.26726973 +0.95,0.95,0.47622025,0.47622025 +0.95000005,0.95,0.33673865,0.6734773 +0.95,0.95000005,0.6734773,0.33673865 +0.1,0.1,0.6,0.6 +0.099999994,0.09999998,0.42426407,0.84852815 +0.09999998,0.099999994,0.84852815,0.42426407 +0.099999994,0.099999994,0.75595266,0.75595266 +0.099999994,0.10000001,0.5345392,1.0690784 +0.10000001,0.099999994,1.0690784,0.5345392 +0.10000001,0.10000001,0.9524406,0.9524406 +0.10000002,0.099999994,0.67347723,1.3469543 +0.099999994,0.10000002,1.3469543,0.67347723 +0.1,0.3,0.6,0.6 +0.099999994,0.29999998,0.42426407,0.8485281 +0.09999998,0.3,0.84852815,0.42426407 +0.099999994,0.3,0.75595266,0.7559526 +0.099999994,0.3,0.5345392,1.0690784 +0.10000001,0.3,1.0690784,0.5345392 +0.10000001,0.3,0.9524406,0.9524406 +0.10000002,0.3,0.67347723,1.3469545 +0.099999994,0.3,1.3469543,0.6734773 +0.1,0.5,0.6,0.6 +0.099999994,0.5,0.42426407,0.84852815 +0.09999998,0.5,0.84852815,0.42426407 +0.099999994,0.5,0.75595266,0.7559526 +0.099999994,0.5,0.5345392,1.0690784 +0.10000001,0.5,1.0690784,0.5345392 +0.10000001,0.5,0.9524406,0.9524406 +0.10000002,0.5,0.67347723,1.3469546 +0.099999994,0.5,1.3469543,0.6734772 +0.1,0.7,0.6,0.6 +0.099999994,0.6999999,0.42426407,0.8485281 +0.09999998,0.70000005,0.84852815,0.4242641 +0.099999994,0.70000005,0.75595266,0.75595266 +0.099999994,0.70000005,0.5345392,1.0690784 +0.10000001,0.7,1.0690784,0.5345392 +0.10000001,0.7,0.9524406,0.9524406 +0.10000002,0.7,0.67347723,1.3469545 +0.099999994,0.70000005,1.3469543,0.67347723 +0.1,0.90000004,0.6,0.6 +0.099999994,0.9,0.42426407,0.8485281 +0.09999998,0.90000004,0.84852815,0.42426407 +0.099999994,0.9,0.75595266,0.7559526 +0.099999994,0.9,0.5345392,1.0690784 +0.10000001,0.9,1.0690784,0.5345392 +0.10000001,0.9,0.9524406,0.9524407 +0.10000002,0.90000004,0.67347723,1.3469545 +0.099999994,0.9,1.3469543,0.6734772 +0.3,0.1,0.6,0.6 +0.3,0.09999998,0.42426407,0.84852815 +0.29999998,0.099999994,0.8485281,0.42426407 +0.3,0.099999994,0.7559526,0.75595266 +0.3,0.10000001,0.5345392,1.0690784 +0.3,0.099999994,1.0690784,0.5345392 +0.3,0.10000001,0.9524406,0.9524406 +0.3,0.099999994,0.6734773,1.3469543 +0.3,0.10000002,1.3469545,0.67347723 +0.3,0.3,0.6,0.6 +0.3,0.29999998,0.42426407,0.8485281 +0.29999998,0.3,0.8485281,0.42426407 +0.3,0.3,0.7559526,0.7559526 +0.3,0.3,0.5345392,1.0690784 +0.3,0.3,1.0690784,0.5345392 +0.3,0.3,0.9524406,0.9524406 +0.3,0.3,0.6734773,1.3469545 +0.3,0.3,1.3469545,0.6734773 +0.3,0.5,0.6,0.6 +0.3,0.5,0.42426407,0.84852815 +0.29999998,0.5,0.8485281,0.42426407 +0.3,0.5,0.7559526,0.7559526 +0.3,0.5,0.5345392,1.0690784 +0.3,0.5,1.0690784,0.5345392 +0.3,0.5,0.9524406,0.9524406 +0.3,0.5,0.6734773,1.3469546 +0.3,0.5,1.3469545,0.6734772 +0.3,0.7,0.6,0.6 +0.3,0.6999999,0.42426407,0.8485281 +0.29999998,0.70000005,0.8485281,0.4242641 +0.3,0.70000005,0.7559526,0.75595266 +0.3,0.70000005,0.5345392,1.0690784 +0.3,0.7,1.0690784,0.5345392 +0.3,0.7,0.9524406,0.9524406 +0.3,0.7,0.6734773,1.3469545 +0.3,0.70000005,1.3469545,0.67347723 +0.3,0.90000004,0.6,0.6 +0.3,0.9,0.42426407,0.8485281 +0.29999998,0.90000004,0.8485281,0.42426407 +0.3,0.9,0.7559526,0.7559526 +0.3,0.9,0.5345392,1.0690784 +0.3,0.9,1.0690784,0.5345392 +0.3,0.9,0.9524406,0.9524407 +0.3,0.90000004,0.6734773,1.3469545 +0.3,0.9,1.3469545,0.6734772 +0.5,0.1,0.6,0.6 +0.5,0.09999998,0.42426407,0.84852815 +0.5,0.099999994,0.84852815,0.42426407 +0.5,0.099999994,0.7559526,0.75595266 +0.5,0.10000001,0.5345392,1.0690784 +0.5,0.099999994,1.0690784,0.5345392 +0.5,0.10000001,0.9524406,0.9524406 +0.5,0.099999994,0.6734772,1.3469543 +0.5,0.10000002,1.3469546,0.67347723 +0.5,0.3,0.6,0.6 +0.5,0.29999998,0.42426407,0.8485281 +0.5,0.3,0.84852815,0.42426407 +0.5,0.3,0.7559526,0.7559526 +0.5,0.3,0.5345392,1.0690784 +0.5,0.3,1.0690784,0.5345392 +0.5,0.3,0.9524406,0.9524406 +0.5,0.3,0.6734772,1.3469545 +0.5,0.3,1.3469546,0.6734773 +0.5,0.5,0.6,0.6 +0.5,0.5,0.42426407,0.84852815 +0.5,0.5,0.84852815,0.42426407 +0.5,0.5,0.7559526,0.7559526 +0.5,0.5,0.5345392,1.0690784 +0.5,0.5,1.0690784,0.5345392 +0.5,0.5,0.9524406,0.9524406 +0.5,0.5,0.6734772,1.3469546 +0.5,0.5,1.3469546,0.6734772 +0.5,0.7,0.6,0.6 +0.5,0.6999999,0.42426407,0.8485281 +0.5,0.70000005,0.84852815,0.4242641 +0.5,0.70000005,0.7559526,0.75595266 +0.5,0.70000005,0.5345392,1.0690784 +0.5,0.7,1.0690784,0.5345392 +0.5,0.7,0.9524406,0.9524406 +0.5,0.7,0.6734772,1.3469545 +0.5,0.70000005,1.3469546,0.67347723 +0.5,0.90000004,0.6,0.6 +0.5,0.9,0.42426407,0.8485281 +0.5,0.90000004,0.84852815,0.42426407 +0.5,0.9,0.7559526,0.7559526 +0.5,0.9,0.5345392,1.0690784 +0.5,0.9,1.0690784,0.5345392 +0.5,0.9,0.9524406,0.9524407 +0.5,0.90000004,0.6734772,1.3469545 +0.5,0.9,1.3469546,0.6734772 +0.7,0.1,0.6,0.6 +0.70000005,0.09999998,0.4242641,0.84852815 +0.6999999,0.099999994,0.8485281,0.42426407 +0.70000005,0.099999994,0.75595266,0.75595266 +0.7,0.10000001,0.5345392,1.0690784 +0.70000005,0.099999994,1.0690784,0.5345392 +0.7,0.10000001,0.9524406,0.9524406 +0.70000005,0.099999994,0.67347723,1.3469543 +0.7,0.10000002,1.3469545,0.67347723 +0.7,0.3,0.6,0.6 +0.70000005,0.29999998,0.4242641,0.8485281 +0.6999999,0.3,0.8485281,0.42426407 +0.70000005,0.3,0.75595266,0.7559526 +0.7,0.3,0.5345392,1.0690784 +0.70000005,0.3,1.0690784,0.5345392 +0.7,0.3,0.9524406,0.9524406 +0.70000005,0.3,0.67347723,1.3469545 +0.7,0.3,1.3469545,0.6734773 +0.7,0.5,0.6,0.6 +0.70000005,0.5,0.4242641,0.84852815 +0.6999999,0.5,0.8485281,0.42426407 +0.70000005,0.5,0.75595266,0.7559526 +0.7,0.5,0.5345392,1.0690784 +0.70000005,0.5,1.0690784,0.5345392 +0.7,0.5,0.9524406,0.9524406 +0.70000005,0.5,0.67347723,1.3469546 +0.7,0.5,1.3469545,0.6734772 +0.7,0.7,0.6,0.6 +0.70000005,0.6999999,0.4242641,0.8485281 +0.6999999,0.70000005,0.8485281,0.4242641 +0.70000005,0.70000005,0.75595266,0.75595266 +0.7,0.70000005,0.5345392,1.0690784 +0.70000005,0.7,1.0690784,0.5345392 +0.7,0.7,0.9524406,0.9524406 +0.70000005,0.7,0.67347723,1.3469545 +0.7,0.70000005,1.3469545,0.67347723 +0.7,0.90000004,0.6,0.6 +0.70000005,0.9,0.4242641,0.8485281 +0.6999999,0.90000004,0.8485281,0.42426407 +0.70000005,0.9,0.75595266,0.7559526 +0.7,0.9,0.5345392,1.0690784 +0.70000005,0.9,1.0690784,0.5345392 +0.7,0.9,0.9524406,0.9524407 +0.70000005,0.90000004,0.67347723,1.3469545 +0.7,0.9,1.3469545,0.6734772 +0.90000004,0.1,0.6,0.6 +0.90000004,0.09999998,0.42426407,0.84852815 +0.9,0.099999994,0.8485281,0.42426407 +0.9,0.099999994,0.7559526,0.75595266 +0.9,0.10000001,0.5345392,1.0690784 +0.9,0.099999994,1.0690784,0.5345392 +0.9,0.10000001,0.9524407,0.9524406 +0.9,0.099999994,0.6734772,1.3469543 +0.90000004,0.10000002,1.3469545,0.67347723 +0.90000004,0.3,0.6,0.6 +0.90000004,0.29999998,0.42426407,0.8485281 +0.9,0.3,0.8485281,0.42426407 +0.9,0.3,0.7559526,0.7559526 +0.9,0.3,0.5345392,1.0690784 +0.9,0.3,1.0690784,0.5345392 +0.9,0.3,0.9524407,0.9524406 +0.9,0.3,0.6734772,1.3469545 +0.90000004,0.3,1.3469545,0.6734773 +0.90000004,0.5,0.6,0.6 +0.90000004,0.5,0.42426407,0.84852815 +0.9,0.5,0.8485281,0.42426407 +0.9,0.5,0.7559526,0.7559526 +0.9,0.5,0.5345392,1.0690784 +0.9,0.5,1.0690784,0.5345392 +0.9,0.5,0.9524407,0.9524406 +0.9,0.5,0.6734772,1.3469546 +0.90000004,0.5,1.3469545,0.6734772 +0.90000004,0.7,0.6,0.6 +0.90000004,0.6999999,0.42426407,0.8485281 +0.9,0.70000005,0.8485281,0.4242641 +0.9,0.70000005,0.7559526,0.75595266 +0.9,0.70000005,0.5345392,1.0690784 +0.9,0.7,1.0690784,0.5345392 +0.9,0.7,0.9524407,0.9524406 +0.9,0.7,0.6734772,1.3469545 +0.90000004,0.70000005,1.3469545,0.67347723 +0.90000004,0.90000004,0.6,0.6 +0.90000004,0.9,0.42426407,0.8485281 +0.9,0.90000004,0.8485281,0.42426407 +0.9,0.9,0.7559526,0.7559526 +0.9,0.9,0.5345392,1.0690784 +0.9,0.9,1.0690784,0.5345392 +0.9,0.9,0.9524407,0.9524407 +0.9,0.90000004,0.6734772,1.3469545 +0.90000004,0.9,1.3469545,0.6734772 +0.16666666,0.16666666,0.99999994,0.99999994 +0.16666666,0.16666666,0.70710677,1.4142137 +0.16666666,0.16666666,1.4142137,0.70710677 +0.16666666,0.16666666,1.2599211,1.2599211 +0.16666664,0.16666669,0.8908987,1.7817975 +0.16666669,0.16666664,1.7817975,0.8908987 +0.16666669,0.16666669,1.587401,1.587401 +0.16666667,0.16666663,1.122462,2.244924 +0.16666663,0.16666667,2.244924,1.122462 +0.16666666,0.5,0.99999994,1.0 +0.16666666,0.5,0.70710677,1.4142137 +0.16666666,0.5,1.4142137,0.7071068 +0.16666666,0.5,1.2599211,1.2599211 +0.16666664,0.5,0.8908987,1.7817974 +0.16666669,0.5,1.7817975,0.8908987 +0.16666669,0.49999997,1.587401,1.5874009 +0.16666667,0.5,1.122462,2.244924 +0.16666663,0.5,2.244924,1.122462 +0.16666666,0.83333325,0.99999994,0.99999994 +0.16666666,0.8333333,0.70710677,1.4142135 +0.16666666,0.8333333,1.4142137,0.7071067 +0.16666666,0.8333333,1.2599211,1.259921 +0.16666664,0.8333334,0.8908987,1.7817974 +0.16666669,0.83333325,1.7817975,0.89089864 +0.16666669,0.8333333,1.587401,1.587401 +0.16666667,0.83333325,1.122462,2.244924 +0.16666663,0.8333334,2.244924,1.122462 +0.5,0.16666666,1.0,0.99999994 +0.5,0.16666666,0.7071068,1.4142137 +0.5,0.16666666,1.4142137,0.70710677 +0.5,0.16666666,1.2599211,1.2599211 +0.5,0.16666669,0.8908987,1.7817975 +0.5,0.16666664,1.7817974,0.8908987 +0.49999997,0.16666669,1.5874009,1.587401 +0.5,0.16666663,1.122462,2.244924 +0.5,0.16666667,2.244924,1.122462 +0.5,0.5,1.0,1.0 +0.5,0.5,0.7071068,1.4142137 +0.5,0.5,1.4142137,0.7071068 +0.5,0.5,1.2599211,1.2599211 +0.5,0.5,0.8908987,1.7817974 +0.5,0.5,1.7817974,0.8908987 +0.49999997,0.49999997,1.5874009,1.5874009 +0.5,0.5,1.122462,2.244924 +0.5,0.5,2.244924,1.122462 +0.5,0.83333325,1.0,0.99999994 +0.5,0.8333333,0.7071068,1.4142135 +0.5,0.8333333,1.4142137,0.7071067 +0.5,0.8333333,1.2599211,1.259921 +0.5,0.8333334,0.8908987,1.7817974 +0.5,0.83333325,1.7817974,0.89089864 +0.49999997,0.8333333,1.5874009,1.587401 +0.5,0.83333325,1.122462,2.244924 +0.5,0.8333334,2.244924,1.122462 +0.83333325,0.16666666,0.99999994,0.99999994 +0.8333333,0.16666666,0.7071067,1.4142137 +0.8333333,0.16666666,1.4142135,0.70710677 +0.8333333,0.16666666,1.259921,1.2599211 +0.83333325,0.16666669,0.89089864,1.7817975 +0.8333334,0.16666664,1.7817974,0.8908987 +0.8333333,0.16666669,1.587401,1.587401 +0.8333334,0.16666663,1.122462,2.244924 +0.83333325,0.16666667,2.244924,1.122462 +0.83333325,0.5,0.99999994,1.0 +0.8333333,0.5,0.7071067,1.4142137 +0.8333333,0.5,1.4142135,0.7071068 +0.8333333,0.5,1.259921,1.2599211 +0.83333325,0.5,0.89089864,1.7817974 +0.8333334,0.5,1.7817974,0.8908987 +0.8333333,0.49999997,1.587401,1.5874009 +0.8333334,0.5,1.122462,2.244924 +0.83333325,0.5,2.244924,1.122462 +0.83333325,0.83333325,0.99999994,0.99999994 +0.8333333,0.8333333,0.7071067,1.4142135 +0.8333333,0.8333333,1.4142135,0.7071067 +0.8333333,0.8333333,1.259921,1.259921 +0.83333325,0.8333334,0.89089864,1.7817974 +0.8333334,0.83333325,1.7817974,0.89089864 +0.8333333,0.8333333,1.587401,1.587401 +0.8333334,0.83333325,1.122462,2.244924 +0.83333325,0.8333334,2.244924,1.122462 diff --git a/mediapipe/tasks/testdata/metadata/efficientdet_lite0_v1.json b/mediapipe/tasks/testdata/metadata/efficientdet_lite0_v1.json index a3b98a62..f9122998 100644 --- a/mediapipe/tasks/testdata/metadata/efficientdet_lite0_v1.json +++ b/mediapipe/tasks/testdata/metadata/efficientdet_lite0_v1.json @@ -42,15 +42,13 @@ "description": "The scores of the detected boxes.", "content": { "content_properties_type": "FeatureProperties", - "content_properties": { - }, + "content_properties": {}, "range": { "min": 2, "max": 2 } }, - "stats": { - } + "stats": {} }, { "name": "location", @@ -71,34 +69,29 @@ "max": 2 } }, - "stats": { - } + "stats": {} }, { "name": "number of detections", "description": "The number of the detected boxes.", "content": { "content_properties_type": "FeatureProperties", - "content_properties": { - } + "content_properties": {} }, - "stats": { - } + "stats": {} }, { "name": "category", "description": "The categories of the detected boxes.", "content": { "content_properties_type": "FeatureProperties", - "content_properties": { - }, + "content_properties": {}, "range": { "min": 2, "max": 2 } }, - "stats": { - }, + "stats": {}, "associated_files": [ { "name": "labels.txt", diff --git a/mediapipe/tasks/testdata/metadata/ssd_mobilenet_v1_no_metadata.json b/mediapipe/tasks/testdata/metadata/ssd_mobilenet_v1_no_metadata.json index 95500f19..e4df01dd 100644 --- a/mediapipe/tasks/testdata/metadata/ssd_mobilenet_v1_no_metadata.json +++ b/mediapipe/tasks/testdata/metadata/ssd_mobilenet_v1_no_metadata.json @@ -56,23 +56,20 @@ "max": 2 } }, - "stats": { - } + "stats": {} }, { "name": "category", "description": "The categories of the detected boxes.", "content": { "content_properties_type": "FeatureProperties", - "content_properties": { - }, + "content_properties": {}, "range": { "min": 2, "max": 2 } }, - "stats": { - }, + "stats": {}, "associated_files": [ { "name": "labels.txt", @@ -86,26 +83,22 @@ "description": "The scores of the detected boxes.", "content": { "content_properties_type": "FeatureProperties", - "content_properties": { - }, + "content_properties": {}, "range": { "min": 2, "max": 2 } }, - "stats": { - } + "stats": {} }, { "name": "number of detections", "description": "The number of the detected boxes.", "content": { "content_properties_type": "FeatureProperties", - "content_properties": { - } + "content_properties": {} }, - "stats": { - } + "stats": {} } ], "output_tensor_groups": [ diff --git a/third_party/external_files.bzl b/third_party/external_files.bzl index 7264c1b1..c47f0fbb 100644 --- a/third_party/external_files.bzl +++ b/third_party/external_files.bzl @@ -198,8 +198,8 @@ def external_files(): http_file( name = "com_google_mediapipe_coco_ssd_mobilenet_v1_score_calibration_json", - sha256 = "f377600be924c29697477f9d739db9db5d712aec4a644548526912858db6a082", - urls = ["https://storage.googleapis.com/mediapipe-assets/coco_ssd_mobilenet_v1_score_calibration.json?generation=1677522739770755"], + sha256 = "a850674f9043bfc775527fee7f1b639f7fe0fb56e8d3ed2b710247967c888b09", + urls = ["https://storage.googleapis.com/mediapipe-assets/coco_ssd_mobilenet_v1_score_calibration.json?generation=1682456086898538"], ) http_file( @@ -262,10 +262,28 @@ def external_files(): urls = ["https://storage.googleapis.com/mediapipe-assets/dynamic_input_classifier.tflite?generation=1680543275416843"], ) + http_file( + name = "com_google_mediapipe_efficientdet_lite0_fp16_no_nms_anchors_csv", + sha256 = "284475a0f16e34afcc6c0fe68b05bd871aca5b20c83db0870c6a36dd63827176", + urls = ["https://storage.googleapis.com/mediapipe-assets/efficientdet_lite0_fp16_no_nms_anchors.csv?generation=1682456090001817"], + ) + + http_file( + name = "com_google_mediapipe_efficientdet_lite0_fp16_no_nms_json", + sha256 = "dc3b333e41c43fb49ace048c25c18d0e34df78fb5ee77edbe169264368f78b92", + urls = ["https://storage.googleapis.com/mediapipe-assets/efficientdet_lite0_fp16_no_nms.json?generation=1682456092938505"], + ) + + http_file( + name = "com_google_mediapipe_efficientdet_lite0_fp16_no_nms_tflite", + sha256 = "bcda125c96d3767bca894c8cbe7bc458379c9974c9fd8bdc6204e7124a74082a", + urls = ["https://storage.googleapis.com/mediapipe-assets/efficientdet_lite0_fp16_no_nms.tflite?generation=1682456096034465"], + ) + http_file( name = "com_google_mediapipe_efficientdet_lite0_v1_json", - sha256 = "7a9e1fb625a6130a251e612637fc546cfc8cfabfadc7dbdade44c87f1d8996ca", - urls = ["https://storage.googleapis.com/mediapipe-assets/efficientdet_lite0_v1.json?generation=1677522746026682"], + sha256 = "ef9706696a3ea5d87f4324ac56e877a92033d33e522c4b7d5a416fbcab24d8fc", + urls = ["https://storage.googleapis.com/mediapipe-assets/efficientdet_lite0_v1.json?generation=1682456098581704"], ) http_file( @@ -1158,8 +1176,8 @@ def external_files(): http_file( name = "com_google_mediapipe_ssd_mobilenet_v1_no_metadata_json", - sha256 = "89157590b736cf3f3247aa9c8be3570c2856f4981a1e9476117e7c629e7c4825", - urls = ["https://storage.googleapis.com/mediapipe-assets/ssd_mobilenet_v1_no_metadata.json?generation=1677522786336455"], + sha256 = "ae5a5971a1c3df705307448ef97c854d846b7e6f2183fb51015bd5af5d7deb0f", + urls = ["https://storage.googleapis.com/mediapipe-assets/ssd_mobilenet_v1_no_metadata.json?generation=1682456117002011"], ) http_file(