Pose estimation test (#116)
Edits from @hunminkim98's awesome work at integrating pose estimation into Pose2Sim with RTMLib. Most of the changes in syntax are not necessarily better, it is mostly for the code to be more consistent with the rest of the library. Thank you again for your fantastic work! General: - Automatically detects whether a valid CUDA install is available. If so, use the GPU with the ONNXRuntime backend. Otherwise, use the CPU with the OpenVINO backend - The tensorflow version used for marker augmentation was incompatible with the cuda torch installation for pose estimation: edited code and models for it to work with the latest tf version. - Added logging information to pose estimation - Readme.md: provided an installation procedure for CUDA (took me a while to find something simple and robust) - Readme.md: added information about PoseEstimation with RTMLib - added poseEstimation to tests.py - created videos for the multi-person case (used to only have json, no video), and reorganized Demo folders. Had to recreate calibration file as well Json files: - the json files only saved one person, I made it save all the detected ones - tracking was not taken into account by rtmlib, which caused issues in synchronization: fixed, waiting for merge - took the save_to_openpose function out from the main function - minified the json files (they take less space when all spaces are removed) Detection results: - Compared the triangulated locations of RTMpose keypoints to the ones of OpenPose to potentially edit model marker locations on OpenSim. Did not seem to need it. Others in Config.toml: - removed the "to_openpose" option, which is not needed - added the flag: save_video = 'to_images' # 'to_video' or 'to_images' or ['to_video', 'to_images'] - changed the way frame_range was handled (made me change synchronization in depth, as well as personAssociation and triangulation) - added the flag: time_range_around_maxspeed in synchronization - automatically detect framerate from video, or set to 60 fps if we work from images (or give a value) - frame_range -> time_range - moved height and weight to project (only read for markerAugmentation, and in the future for automatic scaling) - removed reorder_trc from triangulation and Config -> call it for markerAugmentation instead Others: - Provided an installation procedure for OpenSim (for the future) and made continuous installation check its install (a bit harder since it cannot be installed via pip) - scaling from motion instead of static pose (will have to study whether it's as good or not) - added logging to synchronization - Struggled quite a bit with continuous integration * Starting point of integrating RTMPose into Pose2Sim. (#111) * RTM_to_Open Convert format from RTMPose to OpenPose * rtm_intergrated * rtm_integrated * rtm_integrated * rtm_integrated * rtm * Delete build/lib/Pose2Sim directory * rtm * Delete build/lib/Pose2Sim directory * Delete onnxruntime-gpu * device = cpu * add pose folder * Update tests.py * added annotation * fix typo * Should work be still lots of tests to run. Detailed commit coming soon * intermediary commit * last checks before v0.9.0 * Update continuous-integration.yml * Update tests.py * replaced tabs with spaces * unittest issue * unittest typo * deactivated display for CI test of pose detection * Try to make continuous integration work * a * b * c * d * e * f * g * h * i * j * k * l --------- Co-authored-by: HunMinKim <144449115+hunminkim98@users.noreply.github.com>
4
.github/workflows/continuous-integration.yml
vendored
@ -64,6 +64,8 @@ jobs:
|
||||
conda run -n pose2sim flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
|
||||
|
||||
- name: Test with pytest
|
||||
env:
|
||||
PYTHONIOENCODING: utf-8
|
||||
run: |
|
||||
cd Pose2Sim/S00_Demo_BatchSession
|
||||
cd Pose2Sim/Utilities
|
||||
conda run -n pose2sim pytest -v tests.py
|
||||
|
3
.gitignore
vendored
@ -9,7 +9,10 @@ dist/
|
||||
**/*.trc
|
||||
**/*.sto
|
||||
**/*.c3d
|
||||
**/*.json
|
||||
|
||||
**/Calib_qualisys.toml
|
||||
**/pose-3d/
|
||||
**/pose/
|
||||
**/pose-sync/
|
||||
**/pose-associated/
|
||||
|
Before Width: | Height: | Size: 1.3 MiB After Width: | Height: | Size: 348 KiB |
@ -18,9 +18,13 @@
|
||||
|
||||
|
||||
[project]
|
||||
multi_person = false # If false, only the main person in scene is analyzed.
|
||||
frame_rate = 60 # fps
|
||||
frame_range = [] # For example [10,300], or [] for all frames
|
||||
multi_person = true # true for trials with multiple participants. If false, only the main person in scene is analyzed (and it run much faster).
|
||||
participant_height = [1.72, 1.40] # m # float if single person, list of float if multi-person (same order as the Static trials) # Only used for marker augmentation
|
||||
participant_mass = [70.0, 63.5] # kg # Only used for marker augmentation and scaling
|
||||
|
||||
frame_rate = 'auto' # fps # int or 'auto'. If 'auto', finds from video (or defaults to 60 fps if you work with images)
|
||||
frame_range = [] # For example [10,300], or [] for all frames.
|
||||
## If cameras are not synchronized, designates the frame range of the camera with the shortest recording time
|
||||
## N.B.: If you want a time range instead, use frame_range = time_range * frame_rate
|
||||
## For example if you want to analyze from 0.1 to 2 seconds with a 60 fps frame rate,
|
||||
## frame_range = [0.1, 2.0]*frame_rate = [6, 120]
|
||||
@ -28,26 +32,34 @@ frame_range = [] # For example [10,300], or [] for all frames
|
||||
exclude_from_batch = [] # List of trials to be excluded from batch analysis, ['<participant_dir/trial_dir>', 'etc'].
|
||||
# e.g. ['S00_P00_Participant/S00_P00_T00_StaticTrial', 'S00_P00_Participant/S00_P00_T01_BalancingTrial']
|
||||
|
||||
|
||||
[pose]
|
||||
pose_framework = 'openpose' # 'openpose', 'mediapipe', 'alphapose', 'deeplabcut'
|
||||
pose_model = 'BODY_25B' #With openpose: BODY_25B, BODY_25, BODY_135, COCO, MPII.
|
||||
#With mediapipe: BLAZEPOSE.
|
||||
#With alphapose: HALPE_26, HALPE_68, HALPE_136, COCO_133.
|
||||
#With deeplabcut: CUSTOM. See example at the end of the file.
|
||||
# What follows has not been implemented yet
|
||||
overwrite_pose = false
|
||||
openpose_path = '' # only checked if OpenPose is used
|
||||
vid_img_extension = 'mp4' # any video or image extension
|
||||
pose_model = 'HALPE_26' #With RTMLib: HALPE_26 (default, body and feet), COCO_133 (body, feet, hands), COCO_17 (body)
|
||||
# /!\ Only RTMPose is natively embeded in Pose2Sim. For all other pose estimation methods, you will have to run them yourself, and then refer to the documentation to convert the files if needed
|
||||
#With MMPose: HALPE_26 (default), COCO_133, COCO_17, CUSTOM. See example at the end of the file
|
||||
#With openpose: BODY_25B, BODY_25, BODY_135, COCO, MPII
|
||||
#With mediapipe: BLAZEPOSE
|
||||
#With alphapose: HALPE_26, HALPE_68, HALPE_136, COCO_133
|
||||
#With deeplabcut: CUSTOM. See example at the end of the file
|
||||
mode = 'balanced' # 'lightweight', 'balanced', 'performance'
|
||||
det_frequency = 1 # Run person detection only every N frames, and inbetween track previously detected bounding boxes ( (still run keypoint detection on all frame).
|
||||
#Equal to or greater than 1, can be as high as you want in simple uncrowded cases. Much faster, but might be less accurate.
|
||||
tracking = true # Gives consistent person ID across frames. Slightly slower but might facilitate synchronization if other people are in the background
|
||||
display_detection = true
|
||||
save_video = 'to_video' # 'to_video' or 'to_images', 'none', or ['to_video', 'to_images']
|
||||
output_format = 'openpose' # 'openpose', 'mmpose', 'deeplabcut', 'none' or a list of them # /!\ only 'openpose' is supported for now
|
||||
|
||||
|
||||
[synchronization]
|
||||
display_sync_plots = true # true or false (lowercase)
|
||||
keypoints_to_consider = 'all' # 'all' if all points should be considered (default)
|
||||
# ['RWrist', 'RElbow'] list of keypoint names if you want to specify the keypoints to consider
|
||||
keypoints_to_consider = 'all' # 'all' if all points should be considered, for example if the participant did not perform any particicular sharp movement. In this case, the capture needs to be 5-10 seconds long at least
|
||||
# ['RWrist', 'RElbow'] list of keypoint names if you want to specify the keypoints to consider.
|
||||
approx_time_maxspeed = 'auto' # 'auto' if you want to consider the whole capture (default, slower if long sequences)
|
||||
# [1.0, 0.2, 0.8, 1.1] list of times in seconds, one value per camera if you want to specify an approximate time where to search for synchronization.
|
||||
# Best times: only one person is in the scene, who performs a sharp vertical movement (with keypoints_to_consider).
|
||||
reset_sync = false # Revert to state before synchronization. Won't attempt to synchronize unless set to false.
|
||||
# [10.0, 2.0, 8.0, 11.0] list of times in seconds, one value per camera if you want to specify the approximate time of a clear vertical event by one person standing alone in the scene
|
||||
time_range_around_maxspeed = 2.0 # Search for best correlation in the range [approx_time_maxspeed - time_range_around_maxspeed, approx_time_maxspeed + time_range_around_maxspeed]
|
||||
likelihood_threshold = 0.4 # Keypoints whose likelihood is below likelihood_threshold are filtered out
|
||||
filter_cutoff = 6 # time series are smoothed to get coherent time-lagged correlation
|
||||
filter_order = 4
|
||||
|
||||
|
||||
# Take heart, calibration is not that complicated once you get the hang of it!
|
||||
@ -70,7 +82,7 @@ calibration_type = 'convert' # 'convert' or 'calculate'
|
||||
[calibration.calculate]
|
||||
# Camera properties, theoretically need to be calculated only once in a camera lifetime
|
||||
[calibration.calculate.intrinsics]
|
||||
overwrite_intrinsics = true # set to false if you don't want to recalculate intrinsic parameters
|
||||
overwrite_intrinsics = false # set to false if you don't want to recalculate intrinsic parameters
|
||||
show_detection_intrinsics = true # true or false (lowercase)
|
||||
intrinsics_extension = 'jpg' # any video or image extension
|
||||
extract_every_N_sec = 1 # if video, extract frames every N seconds (can be <1 )
|
||||
@ -116,7 +128,7 @@ calibration_type = 'convert' # 'convert' or 'calculate'
|
||||
[personAssociation.single_person]
|
||||
reproj_error_threshold_association = 20 # px
|
||||
tracked_keypoint = 'Neck' # If the neck is not detected by the pose_model, check skeleton.py
|
||||
# and choose a stable point for tracking the person of interest (e.g., 'right_shoulder' with BLAZEPOSE)
|
||||
# and choose a stable point for tracking the person of interest (e.g., 'right_shoulder' or 'RShoulder')
|
||||
|
||||
[personAssociation.multi_person]
|
||||
reconstruction_error_threshold = 0.1 # 0.1 = 10 cm
|
||||
@ -134,13 +146,13 @@ interp_if_gap_smaller_than = 10 # do not interpolate bigger gaps
|
||||
show_interp_indices = true # true or false (lowercase). For each keypoint, return the frames that need to be interpolated
|
||||
handle_LR_swap = false # Better if few cameras (eg less than 4) with risk of limb swapping (eg camera facing sagittal plane), otherwise slightly less accurate and slower
|
||||
undistort_points = false # Better if distorted image (parallel lines curvy on the edge or at least one param > 10^-2), but unnecessary (and slightly slower) if distortions are low
|
||||
make_c3d = false # save triangulated data in c3d format in addition to trc # Coming soon!
|
||||
make_c3d = false # save triangulated data in c3d format in addition to trc
|
||||
|
||||
|
||||
[filtering]
|
||||
type = 'butterworth' # butterworth, kalman, gaussian, LOESS, median, butterworth_on_speed
|
||||
display_figures = false # true or false (lowercase)
|
||||
make_c3d = false # save triangulated data in c3d format in addition to trc
|
||||
make_c3d = false # also save triangulated data in c3d format
|
||||
|
||||
[filtering.butterworth]
|
||||
order = 4
|
||||
@ -161,9 +173,9 @@ make_c3d = false # save triangulated data in c3d format in addition to trc
|
||||
|
||||
|
||||
[markerAugmentation]
|
||||
## Only works on BODY_25 and BODY_25B models
|
||||
participant_height = 1.72 # m # float if single person, list of float if multi-person (same order as the Static trials)
|
||||
participant_mass = 70.0 # kg
|
||||
## Requires the following markers: ["Neck", "RShoulder", "LShoulder", "RHip", "LHip", "RKnee", "LKnee",
|
||||
## "RAnkle", "LAnkle", "RHeel", "LHeel", "RSmallToe", "LSmallToe",
|
||||
## "RBigToe", "LBigToe", "RElbow", "LElbow", "RWrist", "LWrist"]
|
||||
make_c3d = false # save triangulated data in c3d format in addition to trc
|
||||
|
||||
|
||||
@ -176,20 +188,20 @@ opensim_bin_path = 'C:\OpenSim 4.4\bin'
|
||||
|
||||
|
||||
|
||||
# CUSTOM skeleton, if you trained your own DeepLabCut model for example.
|
||||
# CUSTOM skeleton, if you trained your own model from DeepLabCut or MMPose for example.
|
||||
# Make sure the node ids correspond to the column numbers of the 2D pose file, starting from zero.
|
||||
#
|
||||
# If you want to perform inverse kinematics, you will also need to create an OpenSim model
|
||||
# and add to its markerset the location where you expect the triangulated keypoints to be detected.
|
||||
#
|
||||
# In this example, CUSTOM reproduces the BODY_25B skeleton (default skeletons are stored in skeletons.py).
|
||||
# In this example, CUSTOM reproduces the HALPE_26 skeleton (default skeletons are stored in skeletons.py).
|
||||
# You can create as many custom skeletons as you want, just add them further down and rename them.
|
||||
#
|
||||
# Check your model hierarchy with: for pre, _, node in RenderTree(model):
|
||||
# print(f'{pre}{node.name} id={node.id}')
|
||||
[pose.CUSTOM]
|
||||
name = "CHip"
|
||||
id = "None"
|
||||
id = "19"
|
||||
[[pose.CUSTOM.children]]
|
||||
name = "RHip"
|
||||
id = 12
|
||||
@ -201,13 +213,13 @@ id = "None"
|
||||
id = 16
|
||||
[[pose.CUSTOM.children.children.children.children]]
|
||||
name = "RBigToe"
|
||||
id = 22
|
||||
id = 21
|
||||
[[pose.CUSTOM.children.children.children.children.children]]
|
||||
name = "RSmallToe"
|
||||
id = 23
|
||||
[[pose.CUSTOM.children.children.children.children]]
|
||||
name = "RHeel"
|
||||
id = 24
|
||||
id = 25
|
||||
[[pose.CUSTOM.children]]
|
||||
name = "LHip"
|
||||
id = 11
|
||||
@ -219,19 +231,19 @@ id = "None"
|
||||
id = 15
|
||||
[[pose.CUSTOM.children.children.children.children]]
|
||||
name = "LBigToe"
|
||||
id = 19
|
||||
id = 20
|
||||
[[pose.CUSTOM.children.children.children.children.children]]
|
||||
name = "LSmallToe"
|
||||
id = 20
|
||||
id = 22
|
||||
[[pose.CUSTOM.children.children.children.children]]
|
||||
name = "LHeel"
|
||||
id = 21
|
||||
id = 24
|
||||
[[pose.CUSTOM.children]]
|
||||
name = "Neck"
|
||||
id = 17
|
||||
id = 18
|
||||
[[pose.CUSTOM.children.children]]
|
||||
name = "Head"
|
||||
id = 18
|
||||
id = 17
|
||||
[[pose.CUSTOM.children.children.children]]
|
||||
name = "Nose"
|
||||
id = 0
|
@ -8,7 +8,7 @@
|
||||
<fov_video bottom="1919" left="0" right="1087" top="0"/>
|
||||
<fov_video_max bottom="1919" left="0" right="1087" top="0"/>
|
||||
<transform r11="0.5536380477336265" r12="0.8046719867383512" r13="0.2144479094331626" r21="-0.4345300743838753" r22="0.05946489349975602" r23="0.8986921279821063" r31="0.7104002579937896" r32="-0.5907342212870501" r33="0.3825762057979294" x="1460.2323709212087" y="-1909.1590482454608" z="1896.5058524092062"/>
|
||||
<intrinsic centerPointU="34110.316406" centerPointV="60680.792969" focalLengthU="107599.671875" focalLengthV="107588.828125" focallength="9.314096596679686" radialDistortion1="-0.046183" radialDistortion2="0.139983" radialDistortion3="0.000000" sensorMaxU="69568" sensorMaxV="122816" sensorMinU="0.000000" sensorMinV="0.000000" skew="0.000000" tangentalDistortion1="0.000608" tangentalDistortion2="0.00069"/>
|
||||
<intrinsic centerPointU="35134.316406" centerPointV="61960.792969" focalLengthU="107599.671875" focalLengthV="107588.828125" focallength="9.314096596679686" radialDistortion1="-0.046183" radialDistortion2="0.139983" radialDistortion3="0.000000" sensorMaxU="69568" sensorMaxV="122816" sensorMinU="0.000000" sensorMinV="0.000000" skew="0.000000" tangentalDistortion1="0.000608" tangentalDistortion2="0.00069"/>
|
||||
</camera>
|
||||
<camera active="1" avg-residual="0.444749" model="none" point-count="999999999" serial="cam_02" viewrotation="0">
|
||||
<fov_marker bottom="1919" left="0" right="1087" top="0"/>
|
||||
@ -16,7 +16,7 @@
|
||||
<fov_video bottom="1919" left="0" right="1087" top="0"/>
|
||||
<fov_video_max bottom="1919" left="0" right="1087" top="0"/>
|
||||
<transform r11="-0.1966832217091926" r12="0.979523227309506" r13="-0.043011131806342306" r21="-0.31478107085300017" r22="-0.02153908797812718" r23="0.9489198834051846" r31="0.9285626460991909" r32="0.20017570994064315" r33="0.3125717476340885" x="2582.0136248568124" y="706.5662881637625" z="1690.9818366061595"/>
|
||||
<intrinsic centerPointU="34207.652344" centerPointV="61646.457031" focalLengthU="107118.695313" focalLengthV="107123.023438" focallength="9.272462063031563" radialDistortion1="-0.047847" radialDistortion2="0.136786" radialDistortion3="0.000000" sensorMaxU="69568" sensorMaxV="122816" sensorMinU="0.000000" sensorMinV="0.000000" skew="0.000000" tangentalDistortion1="0.000972" tangentalDistortion2="0.000291"/>
|
||||
<intrinsic centerPointU="35359.652344" centerPointV="62158.457031" focalLengthU="107118.695313" focalLengthV="107123.023438" focallength="9.272462063031563" radialDistortion1="-0.047847" radialDistortion2="0.136786" radialDistortion3="0.000000" sensorMaxU="69568" sensorMaxV="122816" sensorMinU="0.000000" sensorMinV="0.000000" skew="0.000000" tangentalDistortion1="0.000972" tangentalDistortion2="0.000291"/>
|
||||
</camera>
|
||||
<camera active="1" avg-residual="0.450323" model="none" point-count="999999999" serial="cam_03" viewrotation="0">
|
||||
<fov_marker bottom="1919" left="0" right="1087" top="0"/>
|
||||
@ -24,7 +24,7 @@
|
||||
<fov_video bottom="1919" left="0" right="1087" top="0"/>
|
||||
<fov_video_max bottom="1919" left="0" right="1087" top="0"/>
|
||||
<transform r11="-0.740641130147863" r12="-0.6704153360235378" r13="-0.044654154988568895" r21="0.25251118212268814" r22="-0.3393170985114385" r23="0.9061467925015139" r31="-0.6226466246887545" r32="0.6598539110153292" r33="0.4205995683324882" x="-3216.86586729648" y="2231.1786368869416" z="2088.19103027083"/>
|
||||
<intrinsic centerPointU="32845.335938" centerPointV="61120.328125" focalLengthU="107622.296875" focalLengthV="107616.632813" focallength="9.316055073242188" radialDistortion1="-0.046705" radialDistortion2="0.137622" radialDistortion3="0.000000" sensorMaxU="69568" sensorMaxV="122816" sensorMinU="0.000000" sensorMinV="0.000000" skew="0.000000" tangentalDistortion1="-0.000542" tangentalDistortion2="-0.000517"/>
|
||||
<intrinsic centerPointU="34893.335938" centerPointV="61440.328125" focalLengthU="107622.296875" focalLengthV="107616.632813" focallength="9.316055073242188" radialDistortion1="-0.046705" radialDistortion2="0.137622" radialDistortion3="0.000000" sensorMaxU="69568" sensorMaxV="122816" sensorMinU="0.000000" sensorMinV="0.000000" skew="0.000000" tangentalDistortion1="-0.000542" tangentalDistortion2="-0.000517"/>
|
||||
</camera>
|
||||
<camera active="1" avg-residual="0.504772" model="none" point-count="999999999" serial="cam_04" viewrotation="0">
|
||||
<fov_marker bottom="1919" left="0" right="1087" top="0"/>
|
||||
@ -32,7 +32,7 @@
|
||||
<fov_video bottom="1919" left="0" right="1087" top="0"/>
|
||||
<fov_video_max bottom="1919" left="0" right="1087" top="0"/>
|
||||
<transform r11="0.2586331447643361" r12="-0.875095795920923" r13="-0.40904308378315923" r21="0.49590579729377593" r22="-0.24310718522469382" r23="0.8336524076031634" r31="-0.8289670298870364" r32="-0.4184569804097585" r33="0.3710895025551282" x="-3758.720480260634" y="-1415.6654017496533" z="1881.7941041388026"/>
|
||||
<intrinsic centerPointU="34566.796875" centerPointV="61697.9375" focalLengthU="107215.039063" focalLengthV="107213.070313" focallength="9.280801818890938" radialDistortion1="-0.047633" radialDistortion2="0.134667" radialDistortion3="0.000000" sensorMaxU="69568" sensorMaxV="122816" sensorMinU="0.000000" sensorMinV="0.000000" skew="0.000000" tangentalDistortion1="0.000277" tangentalDistortion2="0.000199"/>
|
||||
<intrinsic centerPointU="35014.796875" centerPointV="61697.9375" focalLengthU="107215.039063" focalLengthV="107213.070313" focallength="9.280801818890938" radialDistortion1="-0.047633" radialDistortion2="0.134667" radialDistortion3="0.000000" sensorMaxU="69568" sensorMaxV="122816" sensorMinU="0.000000" sensorMinV="0.000000" skew="0.000000" tangentalDistortion1="0.000277" tangentalDistortion2="0.000199"/>
|
||||
</camera>
|
||||
</cameras>
|
||||
</calibration>
|
BIN
Pose2Sim/Demo_MultiPerson/videos/cam_01.mp4
Normal file
BIN
Pose2Sim/Demo_MultiPerson/videos/cam_02.mp4
Normal file
BIN
Pose2Sim/Demo_MultiPerson/videos/cam_03.mp4
Normal file
BIN
Pose2Sim/Demo_MultiPerson/videos/cam_04.mp4
Normal file
@ -19,8 +19,12 @@
|
||||
|
||||
[project]
|
||||
multi_person = false # true for trials with multiple participants. If false, only the main person in scene is analyzed (and it run much faster).
|
||||
frame_rate = 60 # fps
|
||||
frame_range = [] # For example [10,300], or [] for all frames
|
||||
participant_height = 1.72 # m # float if single person, list of float if multi-person (same order as the Static trials) # Only used for marker augmentation
|
||||
participant_mass = 70.0 # kg # Only used for marker augmentation and scaling
|
||||
|
||||
frame_rate = 'auto' # fps # int or 'auto'. If 'auto', finds from video (or defaults to 60 fps if you work with images)
|
||||
frame_range = [] # For example [10,300], or [] for all frames.
|
||||
## If cameras are not synchronized, designates the frame range of the camera with the shortest recording time
|
||||
## N.B.: If you want a time range instead, use frame_range = time_range * frame_rate
|
||||
## For example if you want to analyze from 0.1 to 2 seconds with a 60 fps frame rate,
|
||||
## frame_range = [0.1, 2.0]*frame_rate = [6, 120]
|
||||
@ -28,26 +32,34 @@ frame_range = [] # For example [10,300], or [] for all frames
|
||||
exclude_from_batch = [] # List of trials to be excluded from batch analysis, ['<participant_dir/trial_dir>', 'etc'].
|
||||
# e.g. ['S00_P00_Participant/S00_P00_T00_StaticTrial', 'S00_P00_Participant/S00_P00_T01_BalancingTrial']
|
||||
|
||||
|
||||
[pose]
|
||||
pose_framework = 'openpose' # 'openpose', 'mediapipe', 'alphapose', 'deeplabcut'
|
||||
pose_model = 'BODY_25B' #With openpose: BODY_25B, BODY_25, BODY_135, COCO, MPII.
|
||||
#With mediapipe: BLAZEPOSE.
|
||||
#With alphapose: HALPE_26, HALPE_68, HALPE_136, COCO_133.
|
||||
#With deeplabcut: CUSTOM. See example at the end of the file.
|
||||
# What follows has not been implemented yet
|
||||
overwrite_pose = false
|
||||
openpose_path = '' # only checked if OpenPose is used
|
||||
vid_img_extension = 'mp4' # any video or image extension
|
||||
pose_model = 'HALPE_26' #With RTMLib: HALPE_26 (default, body and feet), COCO_133 (body, feet, hands), COCO_17 (body)
|
||||
# /!\ Only RTMPose is natively embeded in Pose2Sim. For all other pose estimation methods, you will have to run them yourself, and then refer to the documentation to convert the files if needed
|
||||
#With MMPose: HALPE_26 (default), COCO_133, COCO_17, CUSTOM. See example at the end of the file
|
||||
#With openpose: BODY_25B, BODY_25, BODY_135, COCO, MPII
|
||||
#With mediapipe: BLAZEPOSE
|
||||
#With alphapose: HALPE_26, HALPE_68, HALPE_136, COCO_133
|
||||
#With deeplabcut: CUSTOM. See example at the end of the file
|
||||
mode = 'balanced' # 'lightweight', 'balanced', 'performance'
|
||||
det_frequency = 1 # Run person detection only every N frames, and inbetween track previously detected bounding boxes ( (still run keypoint detection on all frame).
|
||||
#Equal to or greater than 1, can be as high as you want in simple uncrowded cases. Much faster, but might be less accurate.
|
||||
tracking = true # Gives consistent person ID across frames. Slightly slower but might facilitate synchronization if other people are in the background
|
||||
display_detection = true
|
||||
save_video = 'to_video' # 'to_video' or 'to_images', 'none', or ['to_video', 'to_images']
|
||||
output_format = 'openpose' # 'openpose', 'mmpose', 'deeplabcut', 'none' or a list of them # /!\ only 'openpose' is supported for now
|
||||
|
||||
|
||||
[synchronization]
|
||||
display_sync_plots = true # true or false (lowercase)
|
||||
keypoints_to_consider = 'all' # 'all' if all points should be considered (default)
|
||||
# ['RWrist', 'RElbow'] list of keypoint names if you want to specify the keypoints to consider
|
||||
keypoints_to_consider = ['RWrist'] # 'all' if all points should be considered, for example if the participant did not perform any particicular sharp movement. In this case, the capture needs to be 5-10 seconds long at least
|
||||
# ['RWrist', 'RElbow'] list of keypoint names if you want to specify the keypoints to consider.
|
||||
approx_time_maxspeed = 'auto' # 'auto' if you want to consider the whole capture (default, slower if long sequences)
|
||||
# [1.0, 0.2, 0.8, 1.1] list of times in seconds, one value per camera if you want to specify an approximate time where to search for synchronization.
|
||||
# Best times: only one person is in the scene, who performs a sharp vertical movement (with keypoints_to_consider).
|
||||
reset_sync = false # Revert to state before synchronization. Won't attempt to synchronize unless set to false.
|
||||
# [10.0, 2.0, 8.0, 11.0] list of times in seconds, one value per camera if you want to specify the approximate time of a clear vertical event by one person standing alone in the scene
|
||||
time_range_around_maxspeed = 2.0 # Search for best correlation in the range [approx_time_maxspeed - time_range_around_maxspeed, approx_time_maxspeed + time_range_around_maxspeed]
|
||||
likelihood_threshold = 0.4 # Keypoints whose likelihood is below likelihood_threshold are filtered out
|
||||
filter_cutoff = 6 # time series are smoothed to get coherent time-lagged correlation
|
||||
filter_order = 4
|
||||
|
||||
|
||||
# Take heart, calibration is not that complicated once you get the hang of it!
|
||||
@ -116,7 +128,7 @@ calibration_type = 'convert' # 'convert' or 'calculate'
|
||||
[personAssociation.single_person]
|
||||
reproj_error_threshold_association = 20 # px
|
||||
tracked_keypoint = 'Neck' # If the neck is not detected by the pose_model, check skeleton.py
|
||||
# and choose a stable point for tracking the person of interest (e.g., 'right_shoulder' with BLAZEPOSE)
|
||||
# and choose a stable point for tracking the person of interest (e.g., 'right_shoulder' or 'RShoulder')
|
||||
|
||||
[personAssociation.multi_person]
|
||||
reconstruction_error_threshold = 0.1 # 0.1 = 10 cm
|
||||
@ -134,13 +146,13 @@ interp_if_gap_smaller_than = 10 # do not interpolate bigger gaps
|
||||
show_interp_indices = true # true or false (lowercase). For each keypoint, return the frames that need to be interpolated
|
||||
handle_LR_swap = false # Better if few cameras (eg less than 4) with risk of limb swapping (eg camera facing sagittal plane), otherwise slightly less accurate and slower
|
||||
undistort_points = false # Better if distorted image (parallel lines curvy on the edge or at least one param > 10^-2), but unnecessary (and slightly slower) if distortions are low
|
||||
make_c3d = false # save triangulated data in c3d format in addition to trc
|
||||
make_c3d = true # save triangulated data in c3d format in addition to trc
|
||||
|
||||
|
||||
[filtering]
|
||||
type = 'butterworth' # butterworth, kalman, gaussian, LOESS, median, butterworth_on_speed
|
||||
display_figures = false # true or false (lowercase)
|
||||
make_c3d = false # also save triangulated data in c3d format
|
||||
make_c3d = true # also save triangulated data in c3d format
|
||||
|
||||
[filtering.butterworth]
|
||||
order = 4
|
||||
@ -161,9 +173,9 @@ make_c3d = false # also save triangulated data in c3d format
|
||||
|
||||
|
||||
[markerAugmentation]
|
||||
## Only works on BODY_25 and BODY_25B models
|
||||
participant_height = 1.72 # m # float if single person, list of float if multi-person (same order as the Static trials)
|
||||
participant_mass = 70.0 # kg
|
||||
## Requires the following markers: ["Neck", "RShoulder", "LShoulder", "RHip", "LHip", "RKnee", "LKnee",
|
||||
## "RAnkle", "LAnkle", "RHeel", "LHeel", "RSmallToe", "LSmallToe",
|
||||
## "RBigToe", "LBigToe", "RElbow", "LElbow", "RWrist", "LWrist"]
|
||||
make_c3d = false # save triangulated data in c3d format in addition to trc
|
||||
|
||||
|
||||
@ -176,20 +188,20 @@ opensim_bin_path = 'C:\OpenSim 4.4\bin'
|
||||
|
||||
|
||||
|
||||
# CUSTOM skeleton, if you trained your own DeepLabCut model for example.
|
||||
# CUSTOM skeleton, if you trained your own model from DeepLabCut or MMPose for example.
|
||||
# Make sure the node ids correspond to the column numbers of the 2D pose file, starting from zero.
|
||||
#
|
||||
# If you want to perform inverse kinematics, you will also need to create an OpenSim model
|
||||
# and add to its markerset the location where you expect the triangulated keypoints to be detected.
|
||||
#
|
||||
# In this example, CUSTOM reproduces the BODY_25B skeleton (default skeletons are stored in skeletons.py).
|
||||
# In this example, CUSTOM reproduces the HALPE_26 skeleton (default skeletons are stored in skeletons.py).
|
||||
# You can create as many custom skeletons as you want, just add them further down and rename them.
|
||||
#
|
||||
# Check your model hierarchy with: for pre, _, node in RenderTree(model):
|
||||
# print(f'{pre}{node.name} id={node.id}')
|
||||
[pose.CUSTOM]
|
||||
name = "CHip"
|
||||
id = "None"
|
||||
id = "19"
|
||||
[[pose.CUSTOM.children]]
|
||||
name = "RHip"
|
||||
id = 12
|
||||
@ -201,13 +213,13 @@ id = "None"
|
||||
id = 16
|
||||
[[pose.CUSTOM.children.children.children.children]]
|
||||
name = "RBigToe"
|
||||
id = 22
|
||||
id = 21
|
||||
[[pose.CUSTOM.children.children.children.children.children]]
|
||||
name = "RSmallToe"
|
||||
id = 23
|
||||
[[pose.CUSTOM.children.children.children.children]]
|
||||
name = "RHeel"
|
||||
id = 24
|
||||
id = 25
|
||||
[[pose.CUSTOM.children]]
|
||||
name = "LHip"
|
||||
id = 11
|
||||
@ -219,19 +231,19 @@ id = "None"
|
||||
id = 15
|
||||
[[pose.CUSTOM.children.children.children.children]]
|
||||
name = "LBigToe"
|
||||
id = 19
|
||||
id = 20
|
||||
[[pose.CUSTOM.children.children.children.children.children]]
|
||||
name = "LSmallToe"
|
||||
id = 20
|
||||
id = 22
|
||||
[[pose.CUSTOM.children.children.children.children]]
|
||||
name = "LHeel"
|
||||
id = 21
|
||||
id = 24
|
||||
[[pose.CUSTOM.children]]
|
||||
name = "Neck"
|
||||
id = 17
|
||||
id = 18
|
||||
[[pose.CUSTOM.children.children]]
|
||||
name = "Head"
|
||||
id = 18
|
||||
id = 17
|
||||
[[pose.CUSTOM.children.children.children]]
|
||||
name = "Nose"
|
||||
id = 0
|
Before Width: | Height: | Size: 1.3 MiB After Width: | Height: | Size: 1.3 MiB |
Before Width: | Height: | Size: 1.2 MiB After Width: | Height: | Size: 1.2 MiB |
Before Width: | Height: | Size: 1.4 MiB After Width: | Height: | Size: 1.4 MiB |
Before Width: | Height: | Size: 1.3 MiB After Width: | Height: | Size: 1.3 MiB |
Before Width: | Height: | Size: 277 KiB After Width: | Height: | Size: 277 KiB |
Before Width: | Height: | Size: 173 KiB After Width: | Height: | Size: 173 KiB |
Before Width: | Height: | Size: 315 KiB After Width: | Height: | Size: 315 KiB |
Before Width: | Height: | Size: 310 KiB After Width: | Height: | Size: 310 KiB |
Before Width: | Height: | Size: 225 KiB After Width: | Height: | Size: 225 KiB |
Before Width: | Height: | Size: 205 KiB After Width: | Height: | Size: 205 KiB |
Before Width: | Height: | Size: 216 KiB After Width: | Height: | Size: 216 KiB |
Before Width: | Height: | Size: 232 KiB After Width: | Height: | Size: 232 KiB |
Before Width: | Height: | Size: 269 KiB After Width: | Height: | Size: 269 KiB |
Before Width: | Height: | Size: 150 KiB After Width: | Height: | Size: 150 KiB |
Before Width: | Height: | Size: 320 KiB After Width: | Height: | Size: 320 KiB |
Before Width: | Height: | Size: 248 KiB After Width: | Height: | Size: 248 KiB |
Before Width: | Height: | Size: 334 KiB After Width: | Height: | Size: 334 KiB |
Before Width: | Height: | Size: 286 KiB After Width: | Height: | Size: 286 KiB |
Before Width: | Height: | Size: 182 KiB After Width: | Height: | Size: 182 KiB |
Before Width: | Height: | Size: 299 KiB After Width: | Height: | Size: 299 KiB |
Before Width: | Height: | Size: 316 KiB After Width: | Height: | Size: 316 KiB |
Before Width: | Height: | Size: 199 KiB After Width: | Height: | Size: 199 KiB |
Before Width: | Height: | Size: 180 KiB After Width: | Height: | Size: 180 KiB |
Before Width: | Height: | Size: 325 KiB After Width: | Height: | Size: 325 KiB |
Before Width: | Height: | Size: 238 KiB After Width: | Height: | Size: 238 KiB |
Before Width: | Height: | Size: 307 KiB After Width: | Height: | Size: 307 KiB |
Before Width: | Height: | Size: 199 KiB After Width: | Height: | Size: 199 KiB |
Before Width: | Height: | Size: 314 KiB After Width: | Height: | Size: 314 KiB |
Before Width: | Height: | Size: 253 KiB After Width: | Height: | Size: 253 KiB |
Before Width: | Height: | Size: 226 KiB After Width: | Height: | Size: 226 KiB |
Before Width: | Height: | Size: 235 KiB After Width: | Height: | Size: 235 KiB |
Before Width: | Height: | Size: 265 KiB After Width: | Height: | Size: 265 KiB |
@ -1 +1,243 @@
|
||||
{"class_name": "Sequential", "config": {"name": "sequential_2", "layers": [{"class_name": "InputLayer", "config": {"batch_input_shape": [null, null, 47], "dtype": "float32", "sparse": false, "ragged": false, "name": "lstm_8_input"}}, {"class_name": "LSTM", "config": {"name": "lstm_8", "trainable": true, "dtype": "float32", "batch_input_shape": [null, null, 47], "return_sequences": true, "return_state": false, "go_backwards": false, "stateful": false, "unroll": false, "time_major": false, "units": 128, "activation": "tanh", "recurrent_activation": "sigmoid", "use_bias": true, "kernel_initializer": {"class_name": "GlorotUniform", "config": {"seed": null}}, "recurrent_initializer": {"class_name": "Orthogonal", "config": {"gain": 1.0, "seed": null}}, "bias_initializer": {"class_name": "Zeros", "config": {}}, "unit_forget_bias": true, "kernel_regularizer": null, "recurrent_regularizer": null, "bias_regularizer": null, "activity_regularizer": null, "kernel_constraint": null, "recurrent_constraint": null, "bias_constraint": null, "dropout": 0.0, "recurrent_dropout": 0.0, "implementation": 2}}, {"class_name": "LSTM", "config": {"name": "lstm_9", "trainable": true, "dtype": "float32", "return_sequences": true, "return_state": false, "go_backwards": false, "stateful": false, "unroll": false, "time_major": false, "units": 128, "activation": "tanh", "recurrent_activation": "sigmoid", "use_bias": true, "kernel_initializer": {"class_name": "GlorotUniform", "config": {"seed": null}}, "recurrent_initializer": {"class_name": "Orthogonal", "config": {"gain": 1.0, "seed": null}}, "bias_initializer": {"class_name": "Zeros", "config": {}}, "unit_forget_bias": true, "kernel_regularizer": null, "recurrent_regularizer": null, "bias_regularizer": null, "activity_regularizer": null, "kernel_constraint": null, "recurrent_constraint": null, "bias_constraint": null, "dropout": 0.0, "recurrent_dropout": 0.0, "implementation": 2}}, {"class_name": "LSTM", "config": {"name": "lstm_10", "trainable": true, "dtype": "float32", "return_sequences": true, "return_state": false, "go_backwards": false, "stateful": false, "unroll": false, "time_major": false, "units": 128, "activation": "tanh", "recurrent_activation": "sigmoid", "use_bias": true, "kernel_initializer": {"class_name": "GlorotUniform", "config": {"seed": null}}, "recurrent_initializer": {"class_name": "Orthogonal", "config": {"gain": 1.0, "seed": null}}, "bias_initializer": {"class_name": "Zeros", "config": {}}, "unit_forget_bias": true, "kernel_regularizer": null, "recurrent_regularizer": null, "bias_regularizer": null, "activity_regularizer": null, "kernel_constraint": null, "recurrent_constraint": null, "bias_constraint": null, "dropout": 0.0, "recurrent_dropout": 0.0, "implementation": 2}}, {"class_name": "LSTM", "config": {"name": "lstm_11", "trainable": true, "dtype": "float32", "return_sequences": true, "return_state": false, "go_backwards": false, "stateful": false, "unroll": false, "time_major": false, "units": 128, "activation": "tanh", "recurrent_activation": "sigmoid", "use_bias": true, "kernel_initializer": {"class_name": "GlorotUniform", "config": {"seed": null}}, "recurrent_initializer": {"class_name": "Orthogonal", "config": {"gain": 1.0, "seed": null}}, "bias_initializer": {"class_name": "Zeros", "config": {}}, "unit_forget_bias": true, "kernel_regularizer": null, "recurrent_regularizer": null, "bias_regularizer": null, "activity_regularizer": null, "kernel_constraint": null, "recurrent_constraint": null, "bias_constraint": null, "dropout": 0.0, "recurrent_dropout": 0.0, "implementation": 2}}, {"class_name": "TimeDistributed", "config": {"name": "time_distributed_2", "trainable": true, "dtype": "float32", "layer": {"class_name": "Dense", "config": {"name": "dense_2", "trainable": true, "dtype": "float32", "units": 105, "activation": "linear", "use_bias": true, "kernel_initializer": {"class_name": "GlorotUniform", "config": {"seed": null}}, "bias_initializer": {"class_name": "Zeros", "config": {}}, "kernel_regularizer": null, "bias_regularizer": null, "activity_regularizer": null, "kernel_constraint": null, "bias_constraint": null}}}}]}, "keras_version": "2.12.0", "backend": "tensorflow"}
|
||||
{
|
||||
"class_name": "Sequential",
|
||||
"config": {
|
||||
"name": "sequential_2",
|
||||
"layers": [
|
||||
{
|
||||
"class_name": "InputLayer",
|
||||
"config": {
|
||||
"batch_input_shape": [
|
||||
null,
|
||||
null,
|
||||
47
|
||||
],
|
||||
"dtype": "float32",
|
||||
"sparse": false,
|
||||
"ragged": false,
|
||||
"name": "lstm_8_input"
|
||||
}
|
||||
},
|
||||
{
|
||||
"class_name": "LSTM",
|
||||
"config": {
|
||||
"name": "lstm_8",
|
||||
"trainable": true,
|
||||
"dtype": "float32",
|
||||
"batch_input_shape": [
|
||||
null,
|
||||
null,
|
||||
47
|
||||
],
|
||||
"return_sequences": true,
|
||||
"return_state": false,
|
||||
"go_backwards": false,
|
||||
"stateful": false,
|
||||
"unroll": false,
|
||||
"units": 128,
|
||||
"activation": "tanh",
|
||||
"recurrent_activation": "sigmoid",
|
||||
"use_bias": true,
|
||||
"kernel_initializer": {
|
||||
"class_name": "GlorotUniform",
|
||||
"config": {
|
||||
"seed": null
|
||||
}
|
||||
},
|
||||
"recurrent_initializer": {
|
||||
"class_name": "Orthogonal",
|
||||
"config": {
|
||||
"gain": 1.0,
|
||||
"seed": null
|
||||
}
|
||||
},
|
||||
"bias_initializer": {
|
||||
"class_name": "Zeros",
|
||||
"config": {}
|
||||
},
|
||||
"unit_forget_bias": true,
|
||||
"kernel_regularizer": null,
|
||||
"recurrent_regularizer": null,
|
||||
"bias_regularizer": null,
|
||||
"activity_regularizer": null,
|
||||
"kernel_constraint": null,
|
||||
"recurrent_constraint": null,
|
||||
"bias_constraint": null,
|
||||
"dropout": 0.0,
|
||||
"recurrent_dropout": 0.0,
|
||||
"implementation": 2
|
||||
}
|
||||
},
|
||||
{
|
||||
"class_name": "LSTM",
|
||||
"config": {
|
||||
"name": "lstm_9",
|
||||
"trainable": true,
|
||||
"dtype": "float32",
|
||||
"return_sequences": true,
|
||||
"return_state": false,
|
||||
"go_backwards": false,
|
||||
"stateful": false,
|
||||
"unroll": false,
|
||||
"units": 128,
|
||||
"activation": "tanh",
|
||||
"recurrent_activation": "sigmoid",
|
||||
"use_bias": true,
|
||||
"kernel_initializer": {
|
||||
"class_name": "GlorotUniform",
|
||||
"config": {
|
||||
"seed": null
|
||||
}
|
||||
},
|
||||
"recurrent_initializer": {
|
||||
"class_name": "Orthogonal",
|
||||
"config": {
|
||||
"gain": 1.0,
|
||||
"seed": null
|
||||
}
|
||||
},
|
||||
"bias_initializer": {
|
||||
"class_name": "Zeros",
|
||||
"config": {}
|
||||
},
|
||||
"unit_forget_bias": true,
|
||||
"kernel_regularizer": null,
|
||||
"recurrent_regularizer": null,
|
||||
"bias_regularizer": null,
|
||||
"activity_regularizer": null,
|
||||
"kernel_constraint": null,
|
||||
"recurrent_constraint": null,
|
||||
"bias_constraint": null,
|
||||
"dropout": 0.0,
|
||||
"recurrent_dropout": 0.0,
|
||||
"implementation": 2
|
||||
}
|
||||
},
|
||||
{
|
||||
"class_name": "LSTM",
|
||||
"config": {
|
||||
"name": "lstm_10",
|
||||
"trainable": true,
|
||||
"dtype": "float32",
|
||||
"return_sequences": true,
|
||||
"return_state": false,
|
||||
"go_backwards": false,
|
||||
"stateful": false,
|
||||
"unroll": false,
|
||||
"units": 128,
|
||||
"activation": "tanh",
|
||||
"recurrent_activation": "sigmoid",
|
||||
"use_bias": true,
|
||||
"kernel_initializer": {
|
||||
"class_name": "GlorotUniform",
|
||||
"config": {
|
||||
"seed": null
|
||||
}
|
||||
},
|
||||
"recurrent_initializer": {
|
||||
"class_name": "Orthogonal",
|
||||
"config": {
|
||||
"gain": 1.0,
|
||||
"seed": null
|
||||
}
|
||||
},
|
||||
"bias_initializer": {
|
||||
"class_name": "Zeros",
|
||||
"config": {}
|
||||
},
|
||||
"unit_forget_bias": true,
|
||||
"kernel_regularizer": null,
|
||||
"recurrent_regularizer": null,
|
||||
"bias_regularizer": null,
|
||||
"activity_regularizer": null,
|
||||
"kernel_constraint": null,
|
||||
"recurrent_constraint": null,
|
||||
"bias_constraint": null,
|
||||
"dropout": 0.0,
|
||||
"recurrent_dropout": 0.0,
|
||||
"implementation": 2
|
||||
}
|
||||
},
|
||||
{
|
||||
"class_name": "LSTM",
|
||||
"config": {
|
||||
"name": "lstm_11",
|
||||
"trainable": true,
|
||||
"dtype": "float32",
|
||||
"return_sequences": true,
|
||||
"return_state": false,
|
||||
"go_backwards": false,
|
||||
"stateful": false,
|
||||
"unroll": false,
|
||||
"units": 128,
|
||||
"activation": "tanh",
|
||||
"recurrent_activation": "sigmoid",
|
||||
"use_bias": true,
|
||||
"kernel_initializer": {
|
||||
"class_name": "GlorotUniform",
|
||||
"config": {
|
||||
"seed": null
|
||||
}
|
||||
},
|
||||
"recurrent_initializer": {
|
||||
"class_name": "Orthogonal",
|
||||
"config": {
|
||||
"gain": 1.0,
|
||||
"seed": null
|
||||
}
|
||||
},
|
||||
"bias_initializer": {
|
||||
"class_name": "Zeros",
|
||||
"config": {}
|
||||
},
|
||||
"unit_forget_bias": true,
|
||||
"kernel_regularizer": null,
|
||||
"recurrent_regularizer": null,
|
||||
"bias_regularizer": null,
|
||||
"activity_regularizer": null,
|
||||
"kernel_constraint": null,
|
||||
"recurrent_constraint": null,
|
||||
"bias_constraint": null,
|
||||
"dropout": 0.0,
|
||||
"recurrent_dropout": 0.0,
|
||||
"implementation": 2
|
||||
}
|
||||
},
|
||||
{
|
||||
"class_name": "TimeDistributed",
|
||||
"config": {
|
||||
"name": "time_distributed_2",
|
||||
"trainable": true,
|
||||
"dtype": "float32",
|
||||
"layer": {
|
||||
"class_name": "Dense",
|
||||
"config": {
|
||||
"name": "dense_2",
|
||||
"trainable": true,
|
||||
"dtype": "float32",
|
||||
"units": 105,
|
||||
"activation": "linear",
|
||||
"use_bias": true,
|
||||
"kernel_initializer": {
|
||||
"class_name": "GlorotUniform",
|
||||
"config": {
|
||||
"seed": null
|
||||
}
|
||||
},
|
||||
"bias_initializer": {
|
||||
"class_name": "Zeros",
|
||||
"config": {}
|
||||
},
|
||||
"kernel_regularizer": null,
|
||||
"bias_regularizer": null,
|
||||
"activity_regularizer": null,
|
||||
"kernel_constraint": null,
|
||||
"bias_constraint": null
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
"keras_version": "2.12.0",
|
||||
"backend": "tensorflow"
|
||||
}
|
@ -97,8 +97,8 @@ class TRCFile(object):
|
||||
dtype = {'names': col_names,
|
||||
'formats': ['int'] + ['float64'] * (3 * self.num_markers + 1)}
|
||||
usecols = [i for i in range(3 * self.num_markers + 1 + 1)]
|
||||
self.data = np.loadtxt(fpath, delimiter='\t', skiprows=5, dtype=dtype,
|
||||
usecols=usecols)
|
||||
self.data = np.genfromtxt(fpath, delimiter='\t', skip_header=5, dtype=dtype,
|
||||
usecols=usecols, filling_values=np.nan)
|
||||
self.time = self.data['time']
|
||||
|
||||
# Check the number of rows.
|
||||
|
@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<OpenSimDocument Version="40000">
|
||||
<OpenSimDocument Version="40500">
|
||||
<InverseKinematicsTool>
|
||||
<!--Name of the directory where results are written. Be default this is the directory in which the setup file is be executed.-->
|
||||
<results_directory>./</results_directory>
|
||||
@ -10,9 +10,9 @@
|
||||
<!--The accuracy of the solution in absolute terms, i.e. the number of significant digits to which the solution can be trusted. Default 1e-5.-->
|
||||
<accuracy>1.0000000000000001e-05</accuracy>
|
||||
<!--The time range for the study.-->
|
||||
<time_range>0.016666666666666666 1.6666666666666667</time_range>
|
||||
<time_range>0.016666666666666666 1.6333333333333333</time_range>
|
||||
<!--Name of the resulting inverse kinematics motion (.mot) file.-->
|
||||
<output_motion_file>../S00_Demo_Session/S00_P00_SingleParticipant/S00_P00_OpenSim/S00_P00_T01_BalancingTrial_filt_butterworth_0-100_halpe26.mot</output_motion_file>
|
||||
<output_motion_file>../Demo_SinglePerson/pose-3d/S01_Demo_SingleTrial_0-99_filt_butterworth.mot</output_motion_file>
|
||||
<!--Flag (true or false) indicating whether or not to report errors from the inverse kinematics solution. Default is true.-->
|
||||
<report_errors>true</report_errors>
|
||||
<!--Markers and coordinates to be considered (tasks) and their weightings. The sum of weighted-squared task errors composes the cost function.-->
|
||||
@ -164,7 +164,7 @@
|
||||
<groups />
|
||||
</IKTaskSet>
|
||||
<!--TRC file (.trc) containing the time history of observations of marker positions obtained during a motion capture experiment. Markers in this file that have a corresponding task and model marker are included.-->
|
||||
<marker_file>../S00_Demo_Session/S00_P00_SingleParticipant/S00_P00_T01_BalancingTrial/pose-3d/S00_P00_T01_BalancingTrial_0-100_filt_butterworth.trc</marker_file>
|
||||
<marker_file>../Demo_SinglePerson/pose-3d/S01_Demo_SingleTrial_0-99_filt_butterworth.trc</marker_file>
|
||||
<!--The name of the storage (.sto or .mot) file containing the time history of coordinate observations. Coordinate values from this file are included if there is a corresponding model coordinate and task. -->
|
||||
<coordinate_file>Unassigned</coordinate_file>
|
||||
<!--Flag indicating whether or not to report model marker locations. Note, model marker locations are expressed in Ground.-->
|
||||
|
@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<OpenSimDocument Version="40000">
|
||||
<OpenSimDocument Version="40500">
|
||||
<ScaleTool name="Pose2Sim_scaled">
|
||||
<!--Mass of the subject in kg. Subject-specific model generated by scaling step will have this total mass.-->
|
||||
<mass>69</mass>
|
||||
@ -336,47 +336,47 @@
|
||||
<ScaleSet>
|
||||
<objects>
|
||||
<Scale>
|
||||
<scales> 0.95 0.95 0.95</scales>
|
||||
<scales> 0.94999999999999995559 0.94999999999999995559 0.94999999999999995559</scales>
|
||||
<segment>pelvis</segment>
|
||||
<apply>false</apply>
|
||||
</Scale>
|
||||
<Scale>
|
||||
<scales> 0.85 0.85 0.85</scales>
|
||||
<scales> 0.8499999999999999778 0.8499999999999999778 0.8499999999999999778</scales>
|
||||
<segment>patella_r</segment>
|
||||
<apply>false</apply>
|
||||
</Scale>
|
||||
<Scale>
|
||||
<scales> 0.85 0.85 0.85</scales>
|
||||
<scales> 0.8499999999999999778 0.8499999999999999778 0.8499999999999999778</scales>
|
||||
<segment>talus_r</segment>
|
||||
<apply>false</apply>
|
||||
</Scale>
|
||||
<Scale>
|
||||
<scales> 0.85 0.85 0.85</scales>
|
||||
<scales> 0.8499999999999999778 0.8499999999999999778 0.8499999999999999778</scales>
|
||||
<segment>toes_r</segment>
|
||||
<apply>false</apply>
|
||||
</Scale>
|
||||
<Scale>
|
||||
<scales> 0.85 0.85 0.85</scales>
|
||||
<scales> 0.8499999999999999778 0.8499999999999999778 0.8499999999999999778</scales>
|
||||
<segment>patella_l</segment>
|
||||
<apply>false</apply>
|
||||
</Scale>
|
||||
<Scale>
|
||||
<scales> 0.85 0.85 0.85</scales>
|
||||
<scales> 0.8499999999999999778 0.8499999999999999778 0.8499999999999999778</scales>
|
||||
<segment>talus_l</segment>
|
||||
<apply>false</apply>
|
||||
</Scale>
|
||||
<Scale>
|
||||
<scales> 0.85 0.85 0.85</scales>
|
||||
<scales> 0.8499999999999999778 0.8499999999999999778 0.8499999999999999778</scales>
|
||||
<segment>toes_l</segment>
|
||||
<apply>false</apply>
|
||||
</Scale>
|
||||
<Scale>
|
||||
<scales> 0.8 0.8 0.8</scales>
|
||||
<scales> 0.80000000000000004441 0.80000000000000004441 0.80000000000000004441</scales>
|
||||
<segment>torso</segment>
|
||||
<apply>false</apply>
|
||||
</Scale>
|
||||
<Scale>
|
||||
<scales> 0.8 0.8 0.8</scales>
|
||||
<scales> 0.80000000000000004441 0.80000000000000004441 0.80000000000000004441</scales>
|
||||
<segment>head</segment>
|
||||
<apply>false</apply>
|
||||
</Scale>
|
||||
@ -384,9 +384,9 @@
|
||||
<groups />
|
||||
</ScaleSet>
|
||||
<!--TRC file (.trc) containing the marker positions used for measurement-based scaling. This is usually a static trial, but doesn't need to be. The marker-pair distances are computed for each time step in the TRC file and averaged across the time range.-->
|
||||
<marker_file>../S00_Demo_Session/S00_P00_SingleParticipant/S00_P00_T00_StaticTrial/pose-3d/S00_P00_T00_StaticTrial_0-12.trc</marker_file>
|
||||
<marker_file>../Demo_SinglePerson/pose-3d/S01_Demo_SingleTrial_0-99_filt_butterworth.trc</marker_file>
|
||||
<!--Time range over which to average marker-pair distances in the marker file (.trc) for measurement-based scaling.-->
|
||||
<time_range> 0.0166667 0.1</time_range>
|
||||
<time_range> 0 1.6333333333333333037</time_range>
|
||||
<!--Flag (true or false) indicating whether or not to preserve relative mass between segments.-->
|
||||
<preserve_mass_distribution>true</preserve_mass_distribution>
|
||||
<!--Name of OpenSim model file (.osim) to write when done scaling.-->
|
||||
@ -587,15 +587,15 @@
|
||||
<groups />
|
||||
</IKTaskSet>
|
||||
<!--TRC file (.trc) containing the time history of experimental marker positions (usually a static trial).-->
|
||||
<marker_file>../S00_Demo_Session/S00_P00_SingleParticipant/S00_P00_T00_StaticTrial/pose-3d/S00_P00_T00_StaticTrial_0-12.trc</marker_file>
|
||||
<marker_file>../Demo_SinglePerson/pose-3d/S01_Demo_SingleTrial_0-99_filt_butterworth.trc</marker_file>
|
||||
<!--Name of file containing the joint angles used to set the initial configuration of the model for the purpose of placing the markers. These coordinate values can also be included in the optimization problem used to place the markers. Before the model markers are placed, a single frame of an inverse kinematics (IK) problem is solved. The IK problem can be solved simply by matching marker positions, but if the model markers are not in the correct locations, the IK solution will not be very good and neither will marker placement. Alternatively, coordinate values (specified in this file) can be specified and used to influence the IK solution. This is valuable particularly if you have high confidence in the coordinate values. For example, you know for the static trial the subject was standing will all joint angles close to zero. If the coordinate set (see the CoordinateSet property) contains non-zero weights for coordinates, the IK solution will try to match not only the marker positions, but also the coordinates in this file. Least-squared error is used to solve the IK problem. -->
|
||||
<coordinate_file>Unassigned</coordinate_file>
|
||||
<!--Time range over which the marker positions are averaged.-->
|
||||
<time_range> 0.0166667 0.1</time_range>
|
||||
<time_range> 0.016666699999999999571 0.10000000000000000555</time_range>
|
||||
<!--Name of the motion file (.mot) written after marker relocation (optional).-->
|
||||
<output_motion_file>Unassigned</output_motion_file>
|
||||
<!--Output OpenSim model file (.osim) after scaling and maker placement.-->
|
||||
<output_model_file>../S00_Demo_Session/S00_P00_SingleParticipant/S00_P00_OpenSim/Model_Pose2Sim_S00_P00_Halpe26_scaled.osim</output_model_file>
|
||||
<output_model_file>D:\softs\github_david\pose2sim\Pose2Sim\OpenSim_Setup\..\S00_Demo_Session\S00_P00_SingleParticipant\S00_P00_OpenSim\Model_Pose2Sim_S00_P00_Halpe26_scaled.osim</output_model_file>
|
||||
<!--Output marker set containing the new marker locations after markers have been placed.-->
|
||||
<output_marker_file>Unassigned</output_marker_file>
|
||||
<!--Maximum amount of movement allowed in marker data when averaging frames of the static trial. A negative value means there is not limit.-->
|
||||
|
@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<OpenSimDocument Version="40000">
|
||||
<OpenSimDocument Version="40500">
|
||||
<ScaleTool name="Pose2Sim_scaled">
|
||||
<!--Mass of the subject in kg. Subject-specific model generated by scaling step will have this total mass.-->
|
||||
<mass>69</mass>
|
||||
@ -12,7 +12,7 @@
|
||||
<!--Specifies the name of the unscaled model (.osim) and the marker set.-->
|
||||
<GenericModelMaker>
|
||||
<!--Model file (.osim) for the unscaled model.-->
|
||||
<model_file>Model_Pose2Sim_LSTM.osim</model_file>
|
||||
<model_file>Unassigned</model_file>
|
||||
<!--Set of model markers used to scale the model. Scaling is done based on distances between model markers compared to the same distances between the corresponding experimental markers.-->
|
||||
<marker_set_file>Unassigned</marker_set_file>
|
||||
</GenericModelMaker>
|
||||
@ -21,7 +21,7 @@
|
||||
<!--Whether or not to use the model scaler during scale-->
|
||||
<apply>true</apply>
|
||||
<!--Specifies the scaling method and order. Valid options are 'measurements', 'manualScale', singly or both in any sequence.-->
|
||||
<scaling_order> measurements manualScale</scaling_order>
|
||||
<scaling_order> measurements</scaling_order>
|
||||
<!--Specifies the measurements by which body segments are to be scaled.-->
|
||||
<MeasurementSet>
|
||||
<objects>
|
||||
@ -426,9 +426,9 @@
|
||||
<groups />
|
||||
</ScaleSet>
|
||||
<!--TRC file (.trc) containing the marker positions used for measurement-based scaling. This is usually a static trial, but doesn't need to be. The marker-pair distances are computed for each time step in the TRC file and averaged across the time range.-->
|
||||
<marker_file>../S00_Demo_Session/S00_P00_SingleParticipant/S00_P00_T00_StaticTrial/pose-3d/S00_P00_T00_StaticTrial_0-12_filt_butterworth_LSTM.trc</marker_file>
|
||||
<marker_file>../Demo_SinglePerson/pose-3d/S01_Demo_SingleTrial_0-99_filt_butterworth_LSTM.trc</marker_file>
|
||||
<!--Time range over which to average marker-pair distances in the marker file (.trc) for measurement-based scaling.-->
|
||||
<time_range> 0.0166663666666666666 0.4166666666666667 </time_range>
|
||||
<time_range> 0 1.633333300000000099</time_range>
|
||||
<!--Flag (true or false) indicating whether or not to preserve relative mass between segments.-->
|
||||
<preserve_mass_distribution>true</preserve_mass_distribution>
|
||||
<!--Name of OpenSim model file (.osim) to write when done scaling.-->
|
||||
@ -467,18 +467,6 @@
|
||||
<!--Weight given to the task when solving inverse kinematics problems, default is 0.-->
|
||||
<weight>10</weight>
|
||||
</IKMarkerTask>
|
||||
<IKMarkerTask name="RHJC_study">
|
||||
<!--Whether or not this task will be used during inverse kinematics solve, default is true.-->
|
||||
<apply>true</apply>
|
||||
<!--Weight given to the task when solving inverse kinematics problems, default is 0.-->
|
||||
<weight>10</weight>
|
||||
</IKMarkerTask>
|
||||
<IKMarkerTask name="LHJC_study">
|
||||
<!--Whether or not this task will be used during inverse kinematics solve, default is true.-->
|
||||
<apply>true</apply>
|
||||
<!--Weight given to the task when solving inverse kinematics problems, default is 0.-->
|
||||
<weight>10</weight>
|
||||
</IKMarkerTask>
|
||||
<IKMarkerTask name="r_knee_study">
|
||||
<!--Whether or not this task will be used during inverse kinematics solve, default is true.-->
|
||||
<apply>true</apply>
|
||||
@ -617,6 +605,18 @@
|
||||
<!--Weight given to the task when solving inverse kinematics problems, default is 0.-->
|
||||
<weight>5</weight>
|
||||
</IKMarkerTask>
|
||||
<IKMarkerTask name="RHJC_study">
|
||||
<!--Whether or not this task will be used during inverse kinematics solve, default is true.-->
|
||||
<apply>true</apply>
|
||||
<!--Weight given to the task when solving inverse kinematics problems, default is 0.-->
|
||||
<weight>10</weight>
|
||||
</IKMarkerTask>
|
||||
<IKMarkerTask name="LHJC_study">
|
||||
<!--Whether or not this task will be used during inverse kinematics solve, default is true.-->
|
||||
<apply>true</apply>
|
||||
<!--Weight given to the task when solving inverse kinematics problems, default is 0.-->
|
||||
<weight>10</weight>
|
||||
</IKMarkerTask>
|
||||
<IKCoordinateTask name="pelvis_tilt">
|
||||
<!--Whether or not this task will be used during inverse kinematics solve, default is true.-->
|
||||
<apply>true</apply>
|
||||
@ -671,15 +671,15 @@
|
||||
<groups />
|
||||
</IKTaskSet>
|
||||
<!--TRC file (.trc) containing the time history of experimental marker positions (usually a static trial).-->
|
||||
<marker_file>../S00_Demo_Session/S00_P00_SingleParticipant/S00_P00_T00_StaticTrial/pose-3d/S00_P00_T00_StaticTrial_0-12_filt_butterworth_LSTM.trc</marker_file>
|
||||
<marker_file>../Demo_SinglePerson/pose-3d/S01_Demo_SingleTrial_0-99_filt_butterworth_LSTM.trc</marker_file>
|
||||
<!--Name of file containing the joint angles used to set the initial configuration of the model for the purpose of placing the markers. These coordinate values can also be included in the optimization problem used to place the markers. Before the model markers are placed, a single frame of an inverse kinematics (IK) problem is solved. The IK problem can be solved simply by matching marker positions, but if the model markers are not in the correct locations, the IK solution will not be very good and neither will marker placement. Alternatively, coordinate values (specified in this file) can be specified and used to influence the IK solution. This is valuable particularly if you have high confidence in the coordinate values. For example, you know for the static trial the subject was standing will all joint angles close to zero. If the coordinate set (see the CoordinateSet property) contains non-zero weights for coordinates, the IK solution will try to match not only the marker positions, but also the coordinates in this file. Least-squared error is used to solve the IK problem. -->
|
||||
<coordinate_file>Unassigned</coordinate_file>
|
||||
<!--Time range over which the marker positions are averaged.-->
|
||||
<time_range> 0.016666666666666666 0.4166666666666667 </time_range>
|
||||
<time_range> 0.016666666666666666435 0.41666666666666668517</time_range>
|
||||
<!--Name of the motion file (.mot) written after marker relocation (optional).-->
|
||||
<output_motion_file>Unassigned</output_motion_file>
|
||||
<!--Output OpenSim model file (.osim) after scaling and maker placement.-->
|
||||
<output_model_file>../S00_Demo_Session/S00_P00_SingleParticipant/S00_P00_OpenSim/Model_Pose2Sim_S00_P00_LSTM_scaled.osim</output_model_file>
|
||||
<output_model_file>D:\softs\github_david\pose2sim\Pose2Sim\OpenSim_Setup\..\S00_Demo_Session\S00_P00_SingleParticipant\S00_P00_OpenSim\Model_Pose2Sim_S00_P00_LSTM_scaled.osim</output_model_file>
|
||||
<!--Output marker set containing the new marker locations after markers have been placed.-->
|
||||
<output_marker_file>Unassigned</output_marker_file>
|
||||
<!--Maximum amount of movement allowed in marker data when averaging frames of the static trial. A negative value means there is not limit.-->
|
||||
|
@ -11,26 +11,30 @@ This repository offers a way to perform markerless kinematics, and gives an
|
||||
example workflow from an Openpose input to an OpenSim result.
|
||||
|
||||
It offers tools for:
|
||||
- 2D pose estimation,
|
||||
- Cameras calibration,
|
||||
- 2D pose estimation,
|
||||
- Camera synchronization,
|
||||
- Tracking the person of interest,
|
||||
- Robust triangulation,
|
||||
- Filtration,
|
||||
- Marker augmentation,
|
||||
- OpenSim scaling and inverse kinematics
|
||||
|
||||
It has been tested on Windows, Linux and MacOS, and works for any Python version >= 3.8
|
||||
It has been tested on Windows, Linux and MacOS, and works for any Python version >= 3.9
|
||||
|
||||
Installation:
|
||||
# Open Anaconda prompt. Type:
|
||||
# - conda create -n Pose2Sim python=3.8
|
||||
# - conda create -n Pose2Sim python=3.9
|
||||
# - conda activate Pose2Sim
|
||||
# - conda install Pose2Sim
|
||||
# - conda install -c opensim-org opensim -y
|
||||
# - pip install Pose2Sim
|
||||
|
||||
Usage:
|
||||
# First run Pose estimation and organize your directories (see Readme.md)
|
||||
from Pose2Sim import Pose2Sim
|
||||
Pose2Sim.calibration()
|
||||
Pose2Sim.poseEstimation()
|
||||
Pose2Sim.synchronization()
|
||||
Pose2Sim.personAssociation()
|
||||
Pose2Sim.triangulation()
|
||||
Pose2Sim.filtering()
|
||||
@ -220,49 +224,47 @@ def calibration(config=None):
|
||||
|
||||
def poseEstimation(config=None):
|
||||
'''
|
||||
Estimate pose using BlazePose, OpenPose, AlphaPose, or DeepLabCut.
|
||||
Estimate pose using RTMLib
|
||||
|
||||
config can be a dictionary,
|
||||
or a the directory path of a trial, participant, or session,
|
||||
or the function can be called without an argument, in which case it the config directory is the current one.
|
||||
'''
|
||||
|
||||
raise NotImplementedError('This has not been integrated yet. \nPlease read README.md for further explanation')
|
||||
from Pose2Sim.poseEstimation import rtm_estimator # The name of the function might change
|
||||
|
||||
level, config_dicts = read_config_files(config)
|
||||
|
||||
if isinstance(config, dict):
|
||||
config_dict = config_dicts[0]
|
||||
if config_dict.get('project').get('project_dir') is None:
|
||||
raise ValueError('Please specify the project directory in config_dict:\n \
|
||||
config_dict.get("project").update({"project_dir":"<YOUR_TRIAL_DIRECTORY>"})')
|
||||
|
||||
# Set up logging
|
||||
session_dir = os.path.realpath(os.path.join(config_dicts[0].get('project').get('project_dir'), '..', '..'))
|
||||
setup_logging(session_dir)
|
||||
|
||||
# Batch process all trials
|
||||
for config_dict in config_dicts:
|
||||
start = time.time()
|
||||
currentDateAndTime = datetime.now()
|
||||
project_dir = os.path.realpath(config_dict.get('project').get('project_dir'))
|
||||
seq_name = os.path.basename(project_dir)
|
||||
frame_range = config_dict.get('project').get('frame_range')
|
||||
frames = ["all frames" if not frame_range else f"frames {frame_range[0]} to {frame_range[1]}"][0]
|
||||
|
||||
logging.info("\n\n---------------------------------------------------------------------")
|
||||
logging.info(f"Pose estimation for {seq_name}, for {frames}.")
|
||||
logging.info(f"On {currentDateAndTime.strftime('%A %d. %B %Y, %H:%M:%S')}")
|
||||
logging.info("---------------------------------------------------------------------")
|
||||
logging.info(f"\nProject directory: {project_dir}")
|
||||
|
||||
# # TODO
|
||||
# # Determine the level at which the function is called (session:3, participant:2, trial:1)
|
||||
# level, config_dicts = read_config_files(config)
|
||||
|
||||
# if type(config)==dict:
|
||||
# config_dict = config_dicts[0]
|
||||
# if config_dict.get('project').get('project_dir') == None:
|
||||
# raise ValueError('Please specify the project directory in config_dict:\n \
|
||||
# config_dict.get("project").update({"project_dir":"<YOUR_TRIAL_DIRECTORY>"})')
|
||||
|
||||
# # Set up logging
|
||||
# session_dir = os.path.realpath(os.path.join(config_dicts[0].get('project').get('project_dir'), '..', '..'))
|
||||
# setup_logging(session_dir)
|
||||
|
||||
# # Batch process all trials
|
||||
# for config_dict in config_dicts:
|
||||
# start = time.time()
|
||||
# currentDateAndTime = datetime.now()
|
||||
# project_dir = os.path.realpath(config_dict.get('project').get('project_dir'))
|
||||
# seq_name = os.path.basename(project_dir)
|
||||
# frame_range = config_dict.get('project').get('frame_range')
|
||||
# frames = ["all frames" if frame_range == [] else f"frames {frame_range[0]} to {frame_range[1]}"][0]
|
||||
|
||||
# logging.info("\n\n---------------------------------------------------------------------")
|
||||
# logging.info("Pose estimation")
|
||||
# logging.info(f"On {currentDateAndTime.strftime('%A %d. %B %Y, %H:%M:%S')}")
|
||||
# logging.info("---------------------------------------------------------------------")
|
||||
# logging.info(f"\nProject directory: {project_dir}")
|
||||
|
||||
# pose_estimation_all(config_dict)
|
||||
rtm_estimator(config_dict)
|
||||
|
||||
# end = time.time()
|
||||
# elapsed = end-start
|
||||
# logging.info(f'Pose estimation took {time.strftime("%Hh%Mm%Ss", time.gmtime(elapsed))}.')
|
||||
end = time.time()
|
||||
elapsed = end - start
|
||||
logging.info(f'\nPose estimation took {time.strftime("%Hh%Mm%Ss", time.gmtime(elapsed))}.')
|
||||
|
||||
|
||||
def synchronization(config=None):
|
||||
|
@ -1,51 +0,0 @@
|
||||
[cam_01]
|
||||
name = "cam_01"
|
||||
size = [ [ 1088.0, 1920.0],
|
||||
[ 1088.0, 1920.0],
|
||||
[ 1088.0, 1920.0] ]
|
||||
matrix = [ [ [ 1681.244873046875, 0.0, 532.97369384375], [ 0.0, 1681.075439453125, 948.137390140625], [ 0.0, 0.0, 1.0]],
|
||||
[ [ 1681.244873046875, 0.0, 532.97369384375], [ 0.0, 1681.075439453125, 948.137390140625], [ 0.0, 0.0, 1.0]],
|
||||
[ [ 1681.244873046875, 0.0, 532.97369384375], [ 0.0, 1681.075439453125, 948.137390140625], [ 0.0, 0.0, 1.0]] ]
|
||||
distortions = [ [ -0.000721609375, 0.002187234375, 9.5e-06, 1.078125e-05],
|
||||
[ -0.000721609375, 0.002187234375, 9.5e-06, 1.078125e-05],
|
||||
[ -0.000721609375, 0.002187234375, 9.5e-06, 1.078125e-05] ]
|
||||
rotation = [ [ 1.6882754799999993, 1.0483220499999997, -0.41955852000000016],
|
||||
[ 1.6882754799999993, 1.0483220499999997, -0.41955852000000016],
|
||||
[ 1.6882754799999993, 1.0483220499999997, -0.41955852000000016] ]
|
||||
translation = [ [ 0.3211048899999996, 0.9563320600000009, 2.8907130499999996],
|
||||
[ 0.3211048899999996, 0.9563320600000009, 2.8907130499999996],
|
||||
[ 0.3211048899999996, 0.9563320600000009, 2.8907130499999996] ]
|
||||
fisheye = false
|
||||
moving = true
|
||||
framerate = 60.0
|
||||
|
||||
[cam_02]
|
||||
name = "cam_02"
|
||||
size = [ 1088.0, 1920.0]
|
||||
matrix = [ [ 1673.729614265625, 0.0, 534.494567875], [ 0.0, 1673.79724121875, 963.225891109375], [ 0.0, 0.0, 1.0]]
|
||||
distortions = [ -0.000747609375, 0.00213728125, 1.51875e-05, 4.546875e-06]
|
||||
rotation = [ 1.34975875, 1.5963809099999993, -1.1983285799999999]
|
||||
translation = [ -0.11152829000000014, 0.7766184800000001, 3.0675519599999994]
|
||||
fisheye = false
|
||||
|
||||
[cam_03]
|
||||
name = "cam_03"
|
||||
size = [ 1088.0, 1920.0]
|
||||
matrix = [ [ 1681.598388671875, 0.0, 513.20837403125], [ 0.0, 1681.509887703125, 955.005126953125], [ 0.0, 0.0, 1.0]]
|
||||
distortions = [ -0.000729765625, 0.00215034375, -8.46875e-06, -8.078125e-06]
|
||||
rotation = [ 0.8109654899999995, -2.1972129299999996, 1.3760277799999996]
|
||||
translation = [ -0.7934803899999995, 0.32283594000000126, 4.353514870000001]
|
||||
fisheye = false
|
||||
|
||||
[cam_04]
|
||||
name = "cam_04"
|
||||
size = [ 1088.0, 1920.0]
|
||||
matrix = [ [ 1675.234985359375, 0.0, 540.106201171875], [ 0.0, 1675.204223640625, 964.0302734375], [ 0.0, 0.0, 1.0]]
|
||||
distortions = [ -0.000744265625, 0.002104171875, 4.328125e-06, 3.109375e-06]
|
||||
rotation = [ 1.4045571699999995, -1.3887412699999993, 0.42535743000000026]
|
||||
translation = [ 0.5030217200000007, 0.04894934000000107, 4.406564460000002]
|
||||
fisheye = false
|
||||
|
||||
[metadata]
|
||||
adjusted = false
|
||||
error = 0.0
|
@ -1,254 +0,0 @@
|
||||
###############################################################################
|
||||
## PROJECT PARAMETERS ##
|
||||
###############################################################################
|
||||
|
||||
|
||||
# Configure your project parameters here.
|
||||
#
|
||||
# IMPORTANT:
|
||||
# If a parameter is not found here, Pose2Sim will look for its value in the
|
||||
# Config.toml file of the level above. This way, you can set global
|
||||
# instructions for the Session and alter them for specific Participants or Trials.
|
||||
#
|
||||
# If you wish to overwrite a parameter for a specific trial or participant,
|
||||
# edit its Config.toml file by uncommenting its key (e.g., [project])
|
||||
# and editing its value (e.g., frame_range = [10,300]). Or else, uncomment
|
||||
# [filtering.butterworth] and set cut_off_frequency = 10, etc.
|
||||
|
||||
|
||||
# [project]
|
||||
# multi_person = true # If false, only the main person in scene is analyzed.
|
||||
# frame_rate = 60 # fps
|
||||
# frame_range = [] # For example [10,300], or [] for all frames
|
||||
## N.B.: If you want a time range instead, use frame_range = time_range * frame_rate
|
||||
## For example if you want to analyze from 0.1 to 2 seconds with a 60 fps frame rate,
|
||||
## frame_range = [0.1, 2.0]*frame_rate = [6, 120]
|
||||
|
||||
# exclude_from_batch = [] # List of trials to be excluded from batch analysis, ['<participant_dir/trial_dir>', 'etc'].
|
||||
# e.g. ['S00_P00_Participant/S00_P00_T00_StaticTrial', 'S00_P00_Participant/S00_P00_T01_BalancingTrial']
|
||||
|
||||
|
||||
# [pose]
|
||||
# pose_framework = 'openpose' # 'openpose', 'mediapipe', 'alphapose', 'deeplabcut'
|
||||
# pose_model = 'BODY_25B' #With openpose: BODY_25B, BODY_25, BODY_135, COCO, MPII
|
||||
# #With mediapipe: BLAZEPOSE.
|
||||
# #With alphapose: HALPE_26, HALPE_68, HALPE_136, COCO_133.
|
||||
# #With deeplabcut: CUSTOM. See example at the end of the file.
|
||||
# # What follows has not been implemented yet
|
||||
# overwrite_pose = false
|
||||
# openpose_path = '' # only checked if OpenPose is used
|
||||
|
||||
|
||||
# [synchronization]
|
||||
# display_sync_plots = true # true or false (lowercase)
|
||||
# keypoints_to_consider = 'all' # 'all' if all points should be considered (default)
|
||||
# # ['RWrist', 'RElbow'] list of keypoint names if you want to specify the keypoints to consider
|
||||
# approx_time_maxspeed = 'auto' # 'auto' if you want to consider the whole capture (default, slower if long sequences)
|
||||
# # [1.0, 0.2, 0.8, 1.1] list of times in seconds, one value per camera if you want to specify an approximate time where to search for synchronization.
|
||||
# # Best times: only one person is in the scene, who performs a sharp vertical movement (with keypoints_to_consider).
|
||||
# reset_sync = false # Revert to state before synchronization. Won't attempt to synchronize unless set to false.
|
||||
|
||||
|
||||
## Take heart, calibration is not that complicated once you get the hang of it!
|
||||
# [calibration]
|
||||
# calibration_type = 'convert' # 'convert' or 'calculate'
|
||||
|
||||
# [calibration.convert]
|
||||
# convert_from = 'qualisys' # 'qualisys', 'optitrack', vicon', 'opencap', 'easymocap', 'biocv', 'anipose', or 'freemocap'
|
||||
# [calibration.convert.qualisys]
|
||||
# binning_factor = 1 # Usually 1, except when filming in 540p where it usually is 2
|
||||
# [calibration.convert.optitrack] # See readme for instructions
|
||||
# [calibration.convert.vicon] # No parameter needed
|
||||
# [calibration.convert.opencap] # No parameter needed
|
||||
# [calibration.convert.easymocap] # No parameter needed
|
||||
# [calibration.convert.biocv] # No parameter needed
|
||||
# [calibration.convert.anipose] # No parameter needed
|
||||
# [calibration.convert.freemocap] # No parameter needed
|
||||
|
||||
|
||||
# [calibration.calculate]
|
||||
# # Camera properties, theoretically need to be calculated only once in a camera lifetime
|
||||
# [calibration.calculate.intrinsics]
|
||||
# overwrite_intrinsics = false # set to false if you don't want to recalculate intrinsic parameters
|
||||
# show_detection_intrinsics = true # true or false (lowercase)
|
||||
# intrinsics_extension = 'jpg' # any video or image extension
|
||||
# extract_every_N_sec = 1 # if video, extract frames every N seconds (can be <1 )
|
||||
# intrinsics_corners_nb = [4,7]
|
||||
# intrinsics_square_size = 60 # mm
|
||||
|
||||
# # Camera placements, need to be done before every session
|
||||
# [calibration.calculate.extrinsics]
|
||||
# calculate_extrinsics = true # true or false (lowercase)
|
||||
# extrinsics_method = 'scene' # 'board', 'scene', 'keypoints'
|
||||
# # 'board' should be large enough to be detected when laid on the floor. Not recommended.
|
||||
# # 'scene' involves manually clicking any point of know coordinates on scene. Usually more accurate if points are spread out.
|
||||
# # 'keypoints' uses automatic pose estimation of a person freely walking and waving arms in the scene. Slighlty less accurate, requires synchronized cameras.
|
||||
# moving_cameras = false # Not implemented yet
|
||||
|
||||
# [calibration.calculate.extrinsics.board]
|
||||
# show_reprojection_error = true # true or false (lowercase)
|
||||
# extrinsics_extension = 'png' # any video or image extension
|
||||
# extrinsics_corners_nb = [4,7] # [H,W] rather than [w,h]
|
||||
# extrinsics_square_size = 60 # mm # [h,w] if square is actually a rectangle
|
||||
|
||||
# [calibration.calculate.extrinsics.scene]
|
||||
# show_reprojection_error = true # true or false (lowercase)
|
||||
# extrinsics_extension = 'png' # any video or image extension
|
||||
# # list of 3D coordinates to be manually labelled on images. Can also be a 2 dimensional plane.
|
||||
# # in m -> unlike for intrinsics, NOT in mm!
|
||||
# object_coords_3d = [[-2.0, 0.3, 0.0],
|
||||
# [-2.0 , 0.0, 0.0],
|
||||
# [-2.0, 0.0, 0.05],
|
||||
# [-2.0, -0.3 , 0.0],
|
||||
# [0.0, 0.3, 0.0],
|
||||
# [0.0, 0.0, 0.0],
|
||||
# [0.0, 0.0, 0.05],
|
||||
# [0.0, -0.3, 0.0]]
|
||||
|
||||
# [calibration.calculate.extrinsics.keypoints]
|
||||
# # Coming soon!
|
||||
|
||||
|
||||
# [personAssociation]
|
||||
# likelihood_threshold_association = 0.3
|
||||
|
||||
# [personAssociation.single_person]
|
||||
# reproj_error_threshold_association = 20 # px
|
||||
# tracked_keypoint = 'Neck' # If the neck is not detected by the pose_model, check skeleton.py
|
||||
# # and choose a stable point for tracking the person of interest (e.g., 'right_shoulder' with BLAZEPOSE)
|
||||
|
||||
# [personAssociation.multi_person]
|
||||
# reconstruction_error_threshold = 0.1 # 0.1 = 10 cm
|
||||
# min_affinity = 0.2 # affinity below which a correspondence is ignored
|
||||
|
||||
|
||||
# [triangulation]
|
||||
# reorder_trc = false # only checked if multi_person analysis
|
||||
# reproj_error_threshold_triangulation = 15 # px
|
||||
# likelihood_threshold_triangulation= 0.3
|
||||
# min_cameras_for_triangulation = 2
|
||||
# interpolation = 'cubic' #linear, slinear, quadratic, cubic, or none
|
||||
# # 'none' if you don't want to interpolate missing points
|
||||
# interp_if_gap_smaller_than = 10 # do not interpolate bigger gaps
|
||||
# show_interp_indices = true # true or false (lowercase). For each keypoint, return the frames that need to be interpolated
|
||||
# handle_LR_swap = false # Better if few cameras (eg less than 4) with risk of limb swapping (eg camera facing sagittal plane), otherwise slightly less accurate and slower
|
||||
# undistort_points = false # Better if distorted image (parallel lines curvy on the edge or at least one param > 10^-2), but unnecessary (and slightly slower) if distortions are low
|
||||
# make_c3d = false # save triangulated data in c3d format in addition to trc
|
||||
|
||||
|
||||
# [filtering]
|
||||
# type = 'butterworth' # butterworth, kalman, gaussian, LOESS, median, butterworth_on_speed
|
||||
# display_figures = false # true or false (lowercase)
|
||||
# make_c3d = false # save triangulated data in c3d format in addition to trc
|
||||
|
||||
# [filtering.butterworth]
|
||||
# order = 4
|
||||
# cut_off_frequency = 6 # Hz
|
||||
# [filtering.kalman]
|
||||
# # How much more do you trust triangulation results (measurements), than previous data (process assuming constant acceleration)?
|
||||
# trust_ratio = 100 # = measurement_trust/process_trust ~= process_noise/measurement_noise
|
||||
# smooth = true # should be true, unless you need real-time filtering
|
||||
# [filtering.butterworth_on_speed]
|
||||
# order = 4
|
||||
# cut_off_frequency = 10 # Hz
|
||||
# [filtering.gaussian]
|
||||
# sigma_kernel = 2 #px
|
||||
# [filtering.LOESS]
|
||||
# nb_values_used = 30 # = fraction of data used * nb frames
|
||||
# [filtering.median]
|
||||
# kernel_size = 9
|
||||
|
||||
|
||||
# [markerAugmentation]
|
||||
## Only works on BODY_25 and BODY_25B models
|
||||
# participant_height = 1.72 # m # float if single person, list of float if multi-person (same order as the Static trials)
|
||||
# participant_mass = 70.0 # kg
|
||||
# make_c3d = false # save triangulated data in c3d format in addition to trc
|
||||
|
||||
|
||||
# [opensim]
|
||||
# static_trial = [# static_trial = ['S00_P00_Participant/S00_P00_T00_StaticTrial']
|
||||
# # If this Config.toml file is at the Trial level, set to true or false (lowercase);
|
||||
# # At the Participant level, specify the name of the static trial folder name, e.g. ['S00_P00_T00_StaticTrial'];
|
||||
# # At the Session level, add participant subdirectory, e.g. ['S00_P00_Participant/S00_P00_T00_StaticTrial', 'S00_P01_Participant/S00_P00_T00_StaticTrial']
|
||||
# opensim_bin_path = 'C:\OpenSim 4.4\bin'
|
||||
|
||||
|
||||
|
||||
## CUSTOM skeleton, if you trained your own DeepLabCut model for example.
|
||||
## Make sure the node ids correspond to the column numbers of the 2D pose file, starting from zero.
|
||||
##
|
||||
## If you want to perform inverse kinematics, you will also need to create an OpenSim model
|
||||
## and add to its markerset the location where you expect the triangulated keypoints to be detected.
|
||||
##
|
||||
## In this example, CUSTOM reproduces the BODY_25B skeleton (default skeletons are stored in skeletons.py).
|
||||
## You can create as many custom skeletons as you want, just add them further down and rename them.
|
||||
##
|
||||
## Check your model hierarchy with: for pre, _, node in RenderTree(model):
|
||||
## print(f'{pre}{node.name} id={node.id}')
|
||||
# [pose.CUSTOM]
|
||||
# name = "CHip"
|
||||
# id = "None"
|
||||
# [[pose.CUSTOM.children]]
|
||||
# name = "RHip"
|
||||
# id = 12
|
||||
# [[pose.CUSTOM.children.children]]
|
||||
# name = "RKnee"
|
||||
# id = 14
|
||||
# [[pose.CUSTOM.children.children.children]]
|
||||
# name = "RAnkle"
|
||||
# id = 16
|
||||
# [[pose.CUSTOM.children.children.children.children]]
|
||||
# name = "RBigToe"
|
||||
# id = 22
|
||||
# [[pose.CUSTOM.children.children.children.children.children]]
|
||||
# name = "RSmallToe"
|
||||
# id = 23
|
||||
# [[pose.CUSTOM.children.children.children.children]]
|
||||
# name = "RHeel"
|
||||
# id = 24
|
||||
# [[pose.CUSTOM.children]]
|
||||
# name = "LHip"
|
||||
# id = 11
|
||||
# [[pose.CUSTOM.children.children]]
|
||||
# name = "LKnee"
|
||||
# id = 13
|
||||
# [[pose.CUSTOM.children.children.children]]
|
||||
# name = "LAnkle"
|
||||
# id = 15
|
||||
# [[pose.CUSTOM.children.children.children.children]]
|
||||
# name = "LBigToe"
|
||||
# id = 19
|
||||
# [[pose.CUSTOM.children.children.children.children.children]]
|
||||
# name = "LSmallToe"
|
||||
# id = 20
|
||||
# [[pose.CUSTOM.children.children.children.children]]
|
||||
# name = "LHeel"
|
||||
# id = 21
|
||||
# [[pose.CUSTOM.children]]
|
||||
# name = "Neck"
|
||||
# id = 17
|
||||
# [[pose.CUSTOM.children.children]]
|
||||
# name = "Head"
|
||||
# id = 18
|
||||
# [[pose.CUSTOM.children.children.children]]
|
||||
# name = "Nose"
|
||||
# id = 0
|
||||
# [[pose.CUSTOM.children.children]]
|
||||
# name = "RShoulder"
|
||||
# id = 6
|
||||
# [[pose.CUSTOM.children.children.children]]
|
||||
# name = "RElbow"
|
||||
# id = 8
|
||||
# [[pose.CUSTOM.children.children.children.children]]
|
||||
# name = "RWrist"
|
||||
# id = 10
|
||||
# [[pose.CUSTOM.children.children]]
|
||||
# name = "LShoulder"
|
||||
# id = 5
|
||||
# [[pose.CUSTOM.children.children.children]]
|
||||
# name = "LElbow"
|
||||
# id = 7
|
||||
# [[pose.CUSTOM.children.children.children.children]]
|
||||
# name = "LWrist"
|
||||
# id = 9
|
@ -1,101 +0,0 @@
|
||||
# times, pelvis_x, pelvis_y, pelvis_z, pelvis_rotx, pelvis_roty, pelvis_rotz, sacrum_x, sacrum_y, sacrum_z, sacrum_rotx, sacrum_roty, sacrum_rotz, femur_r_x, femur_r_y, femur_r_z, femur_r_rotx, femur_r_roty, femur_r_rotz, patella_r_x, patella_r_y, patella_r_z, patella_r_rotx, patella_r_roty, patella_r_rotz, tibia_r_x, tibia_r_y, tibia_r_z, tibia_r_rotx, tibia_r_roty, tibia_r_rotz, talus_r_x, talus_r_y, talus_r_z, talus_r_rotx, talus_r_roty, talus_r_rotz, calcn_r_x, calcn_r_y, calcn_r_z, calcn_r_rotx, calcn_r_roty, calcn_r_rotz, toes_r_x, toes_r_y, toes_r_z, toes_r_rotx, toes_r_roty, toes_r_rotz, femur_l_x, femur_l_y, femur_l_z, femur_l_rotx, femur_l_roty, femur_l_rotz, patella_l_x, patella_l_y, patella_l_z, patella_l_rotx, patella_l_roty, patella_l_rotz, tibia_l_x, tibia_l_y, tibia_l_z, tibia_l_rotx, tibia_l_roty, tibia_l_rotz, talus_l_x, talus_l_y, talus_l_z, talus_l_rotx, talus_l_roty, talus_l_rotz, calcn_l_x, calcn_l_y, calcn_l_z, calcn_l_rotx, calcn_l_roty, calcn_l_rotz, toes_l_x, toes_l_y, toes_l_z, toes_l_rotx, toes_l_roty, toes_l_rotz, lumbar5_x, lumbar5_y, lumbar5_z, lumbar5_rotx, lumbar5_roty, lumbar5_rotz, lumbar4_x, lumbar4_y, lumbar4_z, lumbar4_rotx, lumbar4_roty, lumbar4_rotz, lumbar3_x, lumbar3_y, lumbar3_z, lumbar3_rotx, lumbar3_roty, lumbar3_rotz, lumbar2_x, lumbar2_y, lumbar2_z, lumbar2_rotx, lumbar2_roty, lumbar2_rotz, lumbar1_x, lumbar1_y, lumbar1_z, lumbar1_rotx, lumbar1_roty, lumbar1_rotz, torso_x, torso_y, torso_z, torso_rotx, torso_roty, torso_rotz, head_x, head_y, head_z, head_rotx, head_roty, head_rotz, Abdomen_x, Abdomen_y, Abdomen_z, Abdomen_rotx, Abdomen_roty, Abdomen_rotz, scapulaPhantom_r_x, scapulaPhantom_r_y, scapulaPhantom_r_z, scapulaPhantom_r_rotx, scapulaPhantom_r_roty, scapulaPhantom_r_rotz, scapulaPhantom_l_x, scapulaPhantom_l_y, scapulaPhantom_l_z, scapulaPhantom_l_rotx, scapulaPhantom_l_roty, scapulaPhantom_l_rotz, humerus_r_x, humerus_r_y, humerus_r_z, humerus_r_rotx, humerus_r_roty, humerus_r_rotz, ulna_r_x, ulna_r_y, ulna_r_z, ulna_r_rotx, ulna_r_roty, ulna_r_rotz, radius_r_x, radius_r_y, radius_r_z, radius_r_rotx, radius_r_roty, radius_r_rotz, hand_r_x, hand_r_y, hand_r_z, hand_r_rotx, hand_r_roty, hand_r_rotz, humerus_l_x, humerus_l_y, humerus_l_z, humerus_l_rotx, humerus_l_roty, humerus_l_rotz, ulna_l_x, ulna_l_y, ulna_l_z, ulna_l_rotx, ulna_l_roty, ulna_l_rotz, radius_l_x, radius_l_y, radius_l_z, radius_l_rotx, radius_l_roty, radius_l_rotz, hand_l_x, hand_l_y, hand_l_z, hand_l_rotx, hand_l_roty, hand_l_rotz
|
||||
1.666669999999999957e-02,-1.379927249999999939e+00,1.671589999999999882e-02,9.108839100000000188e-01,1.552668020079404299e+00,7.336158961677777257e-02,-2.306860881172129608e-03,-1.369253753122930739e+00,1.631435875095548632e-02,8.892539412510236385e-01,1.552668020079404299e+00,7.336158961677777257e-02,-2.306860881172129608e-03,-1.472194953781843729e+00,-8.546150578419767219e-02,8.384302749466463478e-01,1.705365894657701276e+00,-3.045310389081414687e-02,-1.397740356994963129e-01,-1.422893211730668739e+00,-3.842080422734482636e-02,4.447382468175605785e-01,1.706425226558027086e+00,1.283314593743699883e-01,-1.181885520384771265e-01,-1.447614928413552216e+00,-3.779029248362900106e-02,4.777031780852538101e-01,1.771293312341488013e+00,3.717558480906157370e-01,2.589949816860950826e-02,-1.607694096741937306e+00,4.640163504127653438e-02,7.285204084035440397e-02,1.725974128337261382e+00,1.598817347138235534e-01,-5.499032631305302704e-02,-1.665024543993800066e+00,4.815553235047110442e-02,3.699005552420241844e-02,1.432274111487004120e+00,1.209825685791673933e-01,-2.595686229294957292e-01,-1.486570051690872640e+00,-6.880510820546845152e-04,1.257110787290115911e-02,1.432274111487004120e+00,1.209825685791673794e-01,-2.595686229294957292e-01,-1.471997548005541612e+00,1.163874496674729975e-01,8.347805391254952134e-01,1.484693528349263048e+00,-5.652047888212525795e-01,-1.032884647832092162e-01,-1.239539005248556425e+00,5.841635999269725876e-02,5.229652248832903361e-01,1.488580781285258725e+00,-4.857812317164942884e-01,-1.110314220898576121e-01,-1.279197572152264373e+00,6.367979951190483323e-02,5.346124087475215836e-01,1.504655792324793850e+00,-2.536297363354266254e-01,-2.131626329566729816e-01,-1.174878935855780071e+00,1.052492459848063111e-02,9.789411732990010995e-02,1.498286367577497114e+00,-1.445908527350078521e-01,-2.409848243386533140e-01,-1.216387555558146705e+00,2.594932800519265254e-02,4.675645411933648798e-02,1.573137206179694214e+00,-1.553171606223113510e-01,-1.747615960885040565e-01,-1.034320119143004035e+00,-5.047450576916745479e-03,7.356381849505227999e-02,1.573137206179694214e+00,-1.553171606223113510e-01,-1.747615960885040010e-01,-1.461783795005660913e+00,1.781485576774431007e-02,9.672343224881194690e-01,1.562729268423229012e+00,7.477932441585570522e-02,2.169159059891287780e-02,-1.450411929545124101e+00,1.826763570849222404e-02,9.985729606680812109e-01,1.575690877795254075e+00,7.691415118957799224e-02,4.720037952475350518e-02,-1.447256045075305808e+00,1.824515771291098168e-02,1.031626976712535892e+00,1.597804280238738439e+00,7.822903357085075893e-02,7.273169010538892143e-02,-1.451105731555218270e+00,1.696304860492767880e-02,1.067126668503961984e+00,1.619576427707935640e+00,7.859899929523846140e-02,9.377057633630614397e-02,-1.460027692656700182e+00,1.462181296381699983e-02,1.096694473497719091e+00,1.637985343244189318e+00,7.842317059587781969e-02,1.133060869795680659e-01,-1.465159095106834508e+00,2.223002033394731042e-02,1.002680474410142741e+00,1.652207037095827946e+00,7.766070361833141145e-02,1.313148244744939408e-01,-1.462498351248672224e+00,2.008163216583683935e-02,1.032963380519114960e+00,1.652207037123859079e+00,7.766070353387768965e-02,1.313148248357995374e-01,-1.365447907115663106e+00,2.271716078812567596e-02,1.050272651649615252e+00,1.656422511425122313e+00,7.122245595854484468e-02,1.307223876837907139e-01,-1.415955679573163373e+00,-2.129612408119847256e-01,1.420346933147247803e+00,1.652207037095827946e+00,7.766070361833141145e-02,1.313148244744939408e-01,-1.467189549125204939e+00,1.938117058062223397e-01,1.443343443550872962e+00,1.652207037095827946e+00,7.766070361833141145e-02,1.313148244744939408e-01,-1.427589630469491722e+00,-2.233788093804605912e-01,1.384488139318816646e+00,1.313733711878307897e+00,1.559903534368682898e-01,-2.244508888626806364e-01,-1.476047548909794616e+00,-2.844135566913543189e-01,1.076826236271597903e+00,1.455602682237371104e+00,-5.363816402892136459e-01,-7.814136289909215383e-02,-1.478804366948500038e+00,-3.108015150897329160e-01,1.065244597649669167e+00,1.087945953615667261e+00,4.723825057531609584e-02,1.460750643334642440e+00,-1.363824645893909393e+00,-3.413751441292699473e-01,8.698288901182066324e-01,1.087945953615667261e+00,4.723825057531608890e-02,1.460750643334642440e+00,-1.481746849460629400e+00,2.066618474708507014e-01,1.409392206322897856e+00,1.851711714825028388e+00,9.529614501424948925e-02,3.874802389943862030e-02,-1.499509674067471154e+00,2.836741807757129918e-01,1.102011596318891229e+00,1.775864107947414228e+00,-2.461141443886929459e-01,-5.396433823632721533e-02,-1.502595624255023576e+00,3.111581613072665897e-01,1.093457856032725495e+00,1.765550546188356273e+00,1.415214500548108989e-01,-1.585567696875098465e+00,-1.444921934198036828e+00,3.499649827020923643e-01,8.754896063152459718e-01,1.765550546188356273e+00,1.415214500548108989e-01,-1.585567696875098465e+00
|
||||
3.333330000000000320e-02,-1.370384789999999908e+00,1.230648999999999979e-02,9.127884099999999945e-01,1.533063516996503894e+00,6.228424777114908995e-02,5.966735508630656611e-03,-1.359466257991974736e+00,1.158723953063142340e-02,8.912893714960754554e-01,1.533063516996503894e+00,6.228424777114908995e-02,5.966735508630656611e-03,-1.460860760697248795e+00,-9.215426018786417039e-02,8.413382102592966705e-01,1.709907556659397088e+00,-4.575986844328834915e-03,-1.605885427506446306e-01,-1.419989319120572357e+00,-4.286465912643785264e-02,4.473071013450317102e-01,1.711376629534985927e+00,1.442956522002982189e-01,-1.396016090711177382e-01,-1.444385130054289146e+00,-4.190368659604749163e-02,4.806271999482306101e-01,1.777326073857265598e+00,3.852963294371130054e-01,3.976992215241262688e-03,-1.607854706878751427e+00,4.837592567899007961e-02,7.845142596146381653e-02,1.729319744401450754e+00,1.668420376379589343e-01,-8.085724503399394081e-02,-1.665356720289606018e+00,5.178065274639875176e-02,4.298503883252061120e-02,1.437028736659017536e+00,1.291510319245322003e-01,-2.837600177592702333e-01,-1.488331608306737053e+00,-1.298728853701733299e-03,1.704905135514922856e-02,1.437028736659017536e+00,1.291510319245322003e-01,-2.837600177592702888e-01,-1.462538500308058209e+00,1.095776666717084430e-01,8.337372081636775789e-01,1.499840763435625224e+00,-5.820467842285260707e-01,-1.281919407648665077e-01,-1.225517804017778989e+00,5.096673479578772009e-02,5.246453923525660201e-01,1.503687396069986582e+00,-4.882778918259417789e-01,-1.357263284922553270e-01,-1.264875933134557817e+00,5.672547282083284514e-02,5.365297056773759010e-01,1.518471221794200909e+00,-2.488796567957214656e-01,-2.388385819782061492e-01,-1.162409468114502742e+00,7.437946295906244787e-03,9.892023601304733571e-02,1.505303062225673338e+00,-6.365391245818557975e-02,-2.836227675779148805e-01,-1.206969232934093750e+00,2.603301271802541117e-02,5.154314035844399094e-02,1.578331342359112099e+00,-7.377992504458431855e-02,-2.239438643177131261e-01,-1.025113254029138998e+00,-1.421514064673541633e-02,6.322541570488550422e-02,1.578331342359112099e+00,-7.377992504458431855e-02,-2.239438643177130706e-01,-1.452874373764946103e+00,1.370833289681799502e-02,9.682011707903002140e-01,1.545629417291686014e+00,6.397576104234953265e-02,2.944149779260219618e-02,-1.441862440098612419e+00,1.477903298592246964e-02,9.996525435319842945e-01,1.562003418885387962e+00,6.622804207801084864e-02,5.438739471404354514e-02,-1.439083856649465476e+00,1.520527834962735400e-02,1.032737695139334555e+00,1.590615977664950220e+00,6.753553404295369045e-02,7.936780841605636794e-02,-1.443321138959145156e+00,1.409197375586141235e-02,1.068198788132936228e+00,1.618941802121110607e+00,6.779989556225328451e-02,9.995870704018469666e-02,-1.452545818144656442e+00,1.166088471875789505e-02,1.097665808795556863e+00,1.642821579310330460e+00,6.744494852088056547e-02,1.190771533939041921e-01,-1.456797830303022012e+00,2.033346511356080855e-02,1.003698151938009264e+00,1.661156861293027420e+00,6.648421516340712045e-02,1.366976613644583782e-01,-1.454425507451225119e+00,1.788386898882114717e-02,1.033982159187991190e+00,1.661156861304271093e+00,6.648421509300068977e-02,1.366976615337008316e-01,-1.357537917571530084e+00,1.805733788094301961e-02,1.052415458628700229e+00,1.666643506108395956e+00,5.805167186598941820e-02,1.359586084572863007e-01,-1.407076313618090158e+00,-2.188492473134258653e-01,1.422548232446547933e+00,1.661156861293027420e+00,6.648421516340712045e-02,1.366976613644583782e-01,-1.456877151899464762e+00,1.882892350209979804e-01,1.445102468898300740e+00,1.661156861293027420e+00,6.648421516340712045e-02,1.366976613644583782e-01,-1.418306152844543533e+00,-2.289490702765270835e-01,1.386470373166526437e+00,1.306242983626211940e+00,1.544737318332662368e-01,-3.421773392226358235e-01,-1.473856685086319063e+00,-2.862336119897496145e-01,1.079286590271222090e+00,1.453402120548711540e+00,-5.824712857128704346e-01,-1.824306611410983769e-01,-1.478855459589377475e+00,-3.123030448271871817e-01,1.067734288669205611e+00,1.041767820290494306e+00,4.755501247775544699e-02,1.353104939478942059e+00,-1.359068148497009965e+00,-3.567789334917758071e-01,8.779573743060083979e-01,1.041767820290494306e+00,4.755501247775544005e-02,1.353104939478942059e+00,-1.471160404285588807e+00,2.014221478579887870e-01,1.411143038030612695e+00,1.871297139267346088e+00,7.909728805645355187e-02,6.580221585794061856e-02,-1.486300155386258481e+00,2.842536362288957674e-01,1.105138153598389961e+00,1.798236342548479083e+00,-2.562747567989477337e-01,-3.296582290887425243e-02,-1.490025381874261701e+00,3.118228029421986069e-01,1.097130502154349818e+00,1.776758338310684859e+00,1.627370284179716631e-01,-1.557309448158289866e+00,-1.431054652003862948e+00,3.567858000668192031e-01,8.806976864710882591e-01,1.776758338310684859e+00,1.627370284179716631e-01,-1.557309448158289866e+00
|
||||
5.000000000000000278e-02,-1.360448279999999954e+00,7.266710000000000010e-03,9.146400099999999478e-01,1.538421012304495461e+00,4.874037090588920901e-02,4.660957653563053797e-03,-1.349241238316079228e+00,6.645882196802396086e-03,8.932868578070607413e-01,1.538421012304495461e+00,4.874037090588920901e-02,4.660957653563053797e-03,-1.450113548605409308e+00,-9.665747129935757520e-02,8.414076073794026778e-01,1.713465585118700618e+00,5.915791514937573589e-03,-1.572986597012336896e-01,-1.413476295660863968e+00,-4.513893352146156751e-02,4.470565798156094783e-01,1.715320430321814138e+00,1.599431752177389310e-01,-1.349737604175796635e-01,-1.437268451124303459e+00,-4.448662801762118257e-02,4.807536783334898645e-01,1.784870984037306707e+00,4.010577094274729304e-01,1.200531375712148192e-02,-1.607542062730893395e+00,4.767670788293211503e-02,8.184155664791770146e-02,1.729663362092731527e+00,1.519850276978022829e-01,-8.581705873115755279e-02,-1.664493936435126109e+00,5.133613768526230914e-02,4.552309049384292705e-02,1.443635513078701971e+00,1.154199417583520876e-01,-2.861251929077494038e-01,-1.487267363089172179e+00,-2.244896852142387600e-03,2.211794345359949926e-02,1.443635513078701971e+00,1.154199417583520598e-01,-2.861251929077494038e-01,-1.451372397372697964e+00,1.051151054370936949e-01,8.348805150367718531e-01,1.503439479718611915e+00,-5.842031643111808004e-01,-1.291240799432914754e-01,-1.213723716597284286e+00,4.754333263333074960e-02,5.248205089914349530e-01,1.507871363635887141e+00,-4.672369187909114485e-01,-1.379402789098179427e-01,-1.252440277009312375e+00,5.314773918706675732e-02,5.379791492658652086e-01,1.519612497495946180e+00,-2.199018895956980912e-01,-2.461007449808353953e-01,-1.162545681089681038e+00,6.716097068113748014e-03,9.730495113403653251e-02,1.501808391665828246e+00,-2.873891116925423282e-03,-2.984981106209090296e-01,-1.209535197206380586e+00,2.664441008496745006e-02,5.291141507182971909e-02,1.572900428879712154e+00,-1.201536514716093108e-02,-2.432542131926807016e-01,-1.028137765670356529e+00,-1.720685625407919472e-02,5.306871293635817555e-02,1.572900428879712154e+00,-1.201536514716093108e-02,-2.432542131926806739e-01,-1.443677158510826564e+00,8.503987939832688414e-03,9.689400429351110455e-01,1.549104766279417733e+00,5.014868166233785174e-02,2.441064437342223628e-02,-1.433093763287174305e+00,9.405625864860402835e-03,1.000543229661126521e+00,1.563094714978802591e+00,5.212363736099386718e-02,4.539568096854957463e-02,-1.430776467494646376e+00,9.751125027648563370e-03,1.033664931356850447e+00,1.587799050407508794e+00,5.337273102986505452e-02,6.640711257686013336e-02,-1.435535930063246424e+00,8.766921581233346611e-03,1.069063915730176673e+00,1.612315894723830301e+00,5.377202894857725790e-02,8.372794890264330381e-02,-1.445226934857292367e+00,6.656110149013815848e-03,1.098406042993196552e+00,1.632963207515440551e+00,5.368182272726084586e-02,9.981446816805464306e-02,-1.447899406882050766e+00,1.432091191404592095e-02,1.004294913618679175e+00,1.648780989577908196e+00,5.308645853450712909e-02,1.146466915669011322e-01,-1.446026235215040590e+00,1.214671671013336021e-02,1.034634881237739723e+00,1.648780989586926760e+00,5.308645846619593212e-02,1.146466917368675065e-01,-1.349337479333021728e+00,1.181297209197328460e-02,1.054316125982471375e+00,1.653742105709304022e+00,4.686193061644822189e-02,1.141341596985930990e-01,-1.409909309846900660e+00,-2.216309870223070744e-01,1.429015214071597484e+00,1.648780989577908196e+00,5.308645853450712909e-02,1.146466915669011322e-01,-1.448603803948294688e+00,1.872891528539484818e-01,1.443003501570345293e+00,1.648780989577908196e+00,5.308645853450712909e-02,1.146466915669011322e-01,-1.420820080235988048e+00,-2.318768094118979495e-01,1.392880661960846478e+00,1.309737927570189253e+00,1.332221965358834359e-01,-3.758227888295591068e-01,-1.471822240227243173e+00,-2.886428762377143409e-01,1.084813055486453681e+00,1.455909816617089403e+00,-6.220968568730180781e-01,-2.135096464654959725e-01,-1.477138303016569010e+00,-3.146261318741605528e-01,1.073208373230869261e+00,1.002198922481393861e+00,4.408458006467343149e-02,1.321634265633631733e+00,-1.351388066107797492e+00,-3.638234500782033809e-01,8.885224679879980547e-01,1.002198922481393861e+00,4.408458006467343149e-02,1.321634265633631733e+00,-1.462101285001172979e+00,2.003570536385476109e-01,1.408699338302921378e+00,1.877885231000905097e+00,6.565017850233956231e-02,4.410966335829581003e-02,-1.471381368052310235e+00,2.856914677624699528e-01,1.103148729319403110e+00,1.807298857475126530e+00,-2.636268024818292366e-01,-5.577904732657879699e-02,-1.474479324113114886e+00,3.133971051633619442e-01,1.095347506866629184e+00,1.784633825718176192e+00,1.711301711293435890e-01,-1.576484672624586025e+00,-1.412910997939702762e+00,3.589451371673728630e-01,8.797620254695119879e-01,1.784633825718176192e+00,1.711301711293435890e-01,-1.576484672624586025e+00
|
||||
6.666669999999999541e-02,-1.350007240000000053e+00,4.344879999999999749e-03,9.151149400000000433e-01,1.533560734146370841e+00,4.054812077482136679e-02,6.272574533331025555e-03,-1.338623887262530010e+00,3.642214648031724157e-03,8.938578032949153762e-01,1.533560734146370841e+00,4.054812077482136679e-02,6.272574533331025555e-03,-1.438879176131991899e+00,-1.000953849166641152e-01,8.416500458076349167e-01,1.715312828767759701e+00,2.564237864723554680e-02,-1.615323850626723123e-01,-1.409267413498425325e+00,-4.685950867883515586e-02,4.472234974452420353e-01,1.717436726341160291e+00,1.717102158604633944e-01,-1.400318192220639246e-01,-1.432831817248373163e+00,-4.618759201734233544e-02,4.811764785129458155e-01,1.787560286082440664e+00,4.111095538219536327e-01,5.985834510187672264e-03,-1.606453799367036028e+00,4.814058318031749772e-02,8.421846207969507780e-02,1.733750230293887418e+00,1.773146710096912271e-01,-8.729415356657964364e-02,-1.664283257743885081e+00,5.214414092788928479e-02,4.935209436110592207e-02,1.446328275658255169e+00,1.419015965691765857e-01,-2.858350540533970974e-01,-1.487697056185407929e+00,-1.187295344946395770e-03,2.104912995367987441e-02,1.446328275658255169e+00,1.419015965691765857e-01,-2.858350540533971529e-01,-1.440449258557698231e+00,1.016408435208216166e-01,8.341407625841650297e-01,1.494042696550399452e+00,-5.853864540021922469e-01,-1.048146920875092508e-01,-1.201941683501787983e+00,4.611645517321840554e-02,5.230555309714299828e-01,1.500049669197865532e+00,-4.414433684204447372e-01,-1.170132210455984839e-01,-1.239954201744319473e+00,5.101188600274497026e-02,5.376221609119038458e-01,1.508923632844052731e+00,-1.883255999854014928e-01,-2.334360203210228413e-01,-1.164227640860580948e+00,4.269631794218041454e-03,9.432617140514854004e-02,1.487664465105960065e+00,4.493003275829708654e-02,-2.925988109203163656e-01,-1.213493229109822824e+00,2.391674441494513054e-02,5.234008908242689800e-02,1.559230652268424944e+00,3.680763243876156166e-02,-2.388407320484437768e-01,-1.032119946650481124e+00,-1.911037113077391353e-02,4.337425349604928648e-02,1.559230652268424944e+00,3.680763243876156166e-02,-2.388407320484437213e-01,-1.433681911508914553e+00,5.689116487490005099e-03,9.687228967579799566e-01,1.543316917385026743e+00,4.196898648777341173e-02,2.044114494458233039e-02,-1.423357797880754561e+00,6.736837893478060495e-03,1.000407489329048660e+00,1.556167456805996219e+00,4.410160382897906906e-02,3.548902291548466231e-02,-1.421310826995947574e+00,7.277768140638508215e-03,1.033544270130982712e+00,1.579139242845372326e+00,4.566835064674757555e-02,5.056703913073520851e-02,-1.426372269985230146e+00,6.657583054115900900e-03,1.068909396860773020e+00,1.602001969998195330e+00,4.645823110555245827e-02,6.300936936492385065e-02,-1.436337494854278196e+00,5.041182326328171905e-03,1.098191227416558169e+00,1.621234953822105584e+00,4.683306659223308160e-02,7.457489505226427839e-02,-1.438086673628774292e+00,1.156085234897834615e-02,1.003972658337048518e+00,1.635932770826549865e+00,4.672870910611489487e-02,8.524384063880197093e-02,-1.436502403276451068e+00,9.705345398988627498e-03,1.034350227584994286e+00,1.635932770834527261e+00,4.672870903998995601e-02,8.524384080957896070e-02,-1.339752982820115790e+00,7.363762324483723136e-03,1.054598108063077744e+00,1.640783694311656493e+00,4.249508764692152413e-02,8.487169374074306216e-02,-1.408848262164136944e+00,-2.202290654535600523e-01,1.433066175002174703e+00,1.635932770826549865e+00,4.672870910611489487e-02,8.524384063880197093e-02,-1.435713902843715806e+00,1.898777995962687704e-01,1.441020664865608536e+00,1.635932770826549865e+00,4.672870910611489487e-02,8.524384063880197093e-02,-1.419780802390617325e+00,-2.305989878096535162e-01,1.396973628435161929e+00,1.305744169489877926e+00,1.154281323285849398e-01,-4.254625297745605605e-01,-1.469018878719362542e+00,-2.881653732792956446e-01,1.088767561121565475e+00,1.453467820804136279e+00,-6.884374230701005848e-01,-2.486176444479371306e-01,-1.474544369587714954e+00,-3.141476920817609653e-01,1.077259007449932637e+00,9.357689051243232026e-01,4.350905967910511513e-02,1.282127804954479089e+00,-1.339185493475535171e+00,-3.711998511278400970e-01,9.018583016295473875e-01,9.357689051243232026e-01,4.350905967910510819e-02,1.282127804954479089e+00,-1.448574114790758705e+00,2.029069143009089304e-01,1.406457899324386585e+00,1.878149752217761259e+00,5.805968238265860754e-02,2.119370976528069106e-02,-1.453577912674554051e+00,2.885614726610223890e-01,1.100896914471313437e+00,1.810951677756694744e+00,-2.557093577013992425e-01,-7.470642347717450227e-02,-1.456236025762547515e+00,3.163501258144510442e-01,1.093229846059467603e+00,1.776784994673893392e+00,1.750509571657349051e-01,-1.595825937409260042e+00,-1.395505154021629446e+00,3.616694565625823143e-01,8.773588167975714391e-01,1.776784994673893392e+00,1.750509571657349051e-01,-1.595825937409260042e+00
|
||||
8.333329999999999904e-02,-1.338894830000000091e+00,1.876789999999999925e-03,9.161586299999999738e-01,1.522592545038935929e+00,3.407992867753534272e-02,9.617301459715180828e-03,-1.327369417689857611e+00,9.856861126944602581e-04,8.949852711737666944e-01,1.522592545038935929e+00,3.407992867753534272e-02,9.617301459715180828e-03,-1.426892869715931766e+00,-1.036937946476158001e-01,8.432595400898980076e-01,1.713863073992060615e+00,4.188407766115807840e-02,-1.654185466150059347e-01,-1.403333012174282635e+00,-5.012982695898873103e-02,4.486136050650831320e-01,1.716210497658045009e+00,1.840790745987136157e-01,-1.446505689229291292e-01,-1.426551957405213678e+00,-4.936537821140762200e-02,4.828494724034914642e-01,1.787482936981413584e+00,4.228462355337805900e-01,7.110658784345327789e-04,-1.604323912621872905e+00,4.584049432415208264e-02,8.794310641942221229e-02,1.733309381684879469e+00,1.931267976997353142e-01,-9.127347958052728361e-02,-1.662680460469210475e+00,5.010416684192972592e-02,5.399796319261752908e-02,1.443175762522536765e+00,1.574141750632877257e-01,-2.899756267814364019e-01,-1.486759651843930774e+00,-3.832122423464784378e-03,2.284138663276287506e-02,1.443175762522536765e+00,1.574141750632877257e-01,-2.899756267814364574e-01,-1.429163585199332065e+00,9.794123636901608254e-02,8.335374788038036886e-01,1.478176881806866572e+00,-5.899011647746353892e-01,-6.581215217857207256e-02,-1.188436902782539883e+00,4.536833963802981012e-02,5.221167504264867532e-01,1.486864154930573445e+00,-4.108739294983660417e-01,-8.384660884853736840e-02,-1.225554098001631509e+00,4.926519088278678155e-02,5.382557301325594512e-01,1.492093901891389685e+00,-1.531397292450001058e-01,-2.110365466237885679e-01,-1.165769036237702005e+00,1.033114507018387251e-04,9.279019761053058923e-02,1.469029326694542226e+00,7.823600680806076790e-02,-2.739915279356593958e-01,-1.216938952454367451e+00,1.840662890011554587e-02,5.250910311930372804e-02,1.528282236245897874e+00,7.275940225282560847e-02,-2.303788414573602616e-01,-1.035656406557935894e+00,-2.304634555518333267e-02,3.681592204791900302e-02,1.528282236245897874e+00,7.275940225282562235e-02,-2.303788414573602061e-01,-1.422924600021685526e+00,3.487976253308860269e-03,9.692008064314424631e-01,1.531979258359751350e+00,3.557002717459724350e-02,2.121640501615952926e-02,-1.412812408510394580e+00,4.906407591888060048e-03,1.000939329776165287e+00,1.544381922576276711e+00,3.782379266733575107e-02,3.352487261267896035e-02,-1.410985658683528543e+00,5.826222979765627828e-03,1.034080595485994181e+00,1.566696286453115761e+00,3.958029379552068655e-02,4.586827750053935199e-02,-1.416284770842447527e+00,5.655103506055425729e-03,1.069415862480825430e+00,1.588937121624680371e+00,4.058239686885315584e-02,5.606456343214284710e-02,-1.426453479014524683e+00,4.478220419806453259e-03,1.098648741921937733e+00,1.607634949569644256e+00,4.119819014534385759e-02,6.554997213514278387e-02,-1.427529902054866850e+00,9.708073666012373079e-03,1.004339944127391915e+00,1.621903898418046497e+00,4.134539497141863362e-02,7.430604075762968497e-02,-1.426159783403144088e+00,8.248916321267920487e-03,1.034749534172769714e+00,1.621903898425141266e+00,4.134539490769332387e-02,7.430604092927778348e-02,-1.329464766320702873e+00,5.375472673521803496e-03,1.055581920350217029e+00,1.626697929111922347e+00,3.793840690682580286e-02,7.401218785976650116e-02,-1.402620982434142016e+00,-2.165015198590059531e-01,1.437918248663698995e+00,1.621903898418046497e+00,4.134539497141863362e-02,7.430604075762968497e-02,-1.422577778292594353e+00,1.941816431505084262e-01,1.437991414401980306e+00,1.621903898418046497e+00,4.134539497141863362e-02,7.430604075762968497e-02,-1.413428723919705643e+00,-2.272475392841157016e-01,1.401898206552904647e+00,1.292011046747326475e+00,1.036645018653894468e-01,-4.309453017121395724e-01,-1.461356965018689058e+00,-2.899466598838748022e-01,1.094488120825902966e+00,1.436748101723158255e+00,-7.342604253286212357e-01,-2.318725566056856202e-01,-1.466260704623540745e+00,-3.162219430978627788e-01,1.083369596768521292e+00,8.893515005316472433e-01,5.402667473586148655e-02,1.285691092517816880e+00,-1.323429054973035868e+00,-3.764518375417794660e-01,9.151023644567874982e-01,8.893515005316472433e-01,5.402667473586148655e-02,1.285691092517816880e+00,-1.435080366629622128e+00,2.068718432508735716e-01,1.403172285328229574e+00,1.874015783839743543e+00,5.124320284537776937e-02,1.465503975184302525e-02,-1.437440827945944744e+00,2.913251393336954709e-01,1.097245291049154359e+00,1.807320576073447205e+00,-2.631913564705635755e-01,-8.018480577562747680e-02,-1.439865280935885616e+00,3.190985476846418534e-01,1.089446665300139783e+00,1.784193541468090727e+00,1.711729019441243227e-01,-1.600959764095124749e+00,-1.377297232708874386e+00,3.631429230047626966e-01,8.738365678088961808e-01,1.784193541468090727e+00,1.711729019441242949e-01,-1.600959764095124749e+00
|
||||
1.000000000000000056e-01,-1.326646250000000027e+00,-5.055599999999999504e-04,9.165531799999999674e-01,1.515973879506008926e+00,3.279793269312253345e-02,1.493169610845807536e-02,-1.315086848676523479e+00,-1.472414959832875521e-03,8.954016847438569515e-01,1.515973879506008926e+00,3.279793269312253345e-02,1.493169610845807536e-02,-1.413958241427992313e+00,-1.070405060752167015e-01,8.442344268025334664e-01,1.712933847156696388e+00,6.180135534640082001e-02,-1.702204840117473583e-01,-1.397665379147183584e+00,-5.270877538585429928e-02,4.495880444267424947e-01,1.715480023858462655e+00,1.970632654695031738e-01,-1.505392939850380418e-01,-1.420582184130779302e+00,-5.183612711658338451e-02,4.841093131072770062e-01,1.787392296751878940e+00,4.345134730944458235e-01,-6.601950095099084516e-03,-1.602252212651113172e+00,4.465834766101161452e-02,9.129525888267076006e-02,1.733384308945795649e+00,2.114699169838208936e-01,-9.636404468836211323e-02,-1.661195935713089433e+00,4.928131393679399674e-02,5.842880146645756251e-02,1.441343986692384727e+00,1.758047883319691085e-01,-2.944983533227869543e-01,-1.486099527949882093e+00,-5.278229493357433633e-03,2.389634312453327997e-02,1.441343986692384727e+00,1.758047883319691085e-01,-2.944983533227869543e-01,-1.417330751458995897e+00,9.451034983727302219e-02,8.331782513983168048e-01,1.463876160862082276e+00,-5.901573948644416312e-01,-2.394003850332727598e-02,-1.175411544771947314e+00,4.633693203032496211e-02,5.208202467534315261e-01,1.475084242102504772e+00,-3.823344680013050501e-01,-4.779402804408007521e-02,-1.211725832586943996e+00,4.917034806881843967e-02,5.382872535606058051e-01,1.476515289390008423e+00,-1.224877885171626879e-01,-1.835137244596600770e-01,-1.165418921308549960e+00,-2.716354527197997748e-03,9.152767086974322730e-02,1.452055913942900345e+00,1.044152040935465431e-01,-2.491901445571389762e-01,-1.218222624730841419e+00,1.383856544511431058e-02,5.262212038800929970e-02,1.494697993193655261e+00,1.013293342733015828e-01,-2.182653925749457602e-01,-1.036981956133961491e+00,-2.537172882670744867e-02,3.158978005946252998e-02,1.494697993193655261e+00,1.013293342733015828e-01,-2.182653925749457047e-01,-1.410756835195337233e+00,9.898417236483061932e-04,9.694705106527008454e-01,1.524038260394022792e+00,3.432318861616467931e-02,2.500192797517079499e-02,-1.400696484284162935e+00,2.705948557922951449e-03,1.001210928047146620e+00,1.534696731319942886e+00,3.666440013234720241e-02,3.567714241330351144e-02,-1.398922002892390104e+00,3.952184724846772093e-03,1.034344383874506113e+00,1.553882071225342498e+00,3.857503393922309676e-02,4.638762396104401803e-02,-1.404277897961527133e+00,4.236081484959294992e-03,1.069670473537922772e+00,1.573007269446220713e+00,3.975852564018680924e-02,5.524078941606685306e-02,-1.414497291967650172e+00,3.535743053471315529e-03,1.098901176358503484e+00,1.589087224055887759e+00,4.058569398996874494e-02,6.348159431688740750e-02,-1.415382814524899446e+00,6.773656831840076283e-03,1.004501960230838264e+00,1.601359903197397960e+00,4.095533409706845346e-02,7.109535532635001542e-02,-1.414072612183791211e+00,5.933312823971506958e-03,1.034937576271560244e+00,1.601359903204477853e+00,4.095533403687966895e-02,7.109535549926931930e-02,-1.317383141866047991e+00,4.487751759535822151e-03,1.055894569915319714e+00,1.605520177105523416e+00,3.840246138531035885e-02,7.088919288313033640e-02,-1.391875829036510082e+00,-2.105882244021090588e-01,1.442593468941520740e+00,1.601359903197397960e+00,4.095533409706845346e-02,7.109535532635001542e-02,-1.408192491992580342e+00,2.001943931788714992e-01,1.434248600920324357e+00,1.601359903197397960e+00,4.095533409706845346e-02,7.109535532635001542e-02,-1.402642302715008338e+00,-2.220430361977129841e-01,1.406780091909683783e+00,1.267595250983373001e+00,9.438555399964165815e-02,-4.217898347994643582e-01,-1.450286446476273694e+00,-2.932519212710179013e-01,1.101184628793196119e+00,1.404147844307897630e+00,-7.770031061215236790e-01,-1.867107541306960161e-01,-1.454188579259314995e+00,-3.199734474100536796e-01,1.090754281347095178e+00,8.450536757692765910e-01,7.489584964087683816e-02,1.305637021503140538e+00,-1.303890885478067529e+00,-3.821444711864120380e-01,9.298575789473921827e-01,8.450536757692765910e-01,7.489584964087683816e-02,1.305637021503140760e+00,-1.420600150422320906e+00,2.121993664475669839e-01,1.399153611644420536e+00,1.866544142075411195e+00,4.896881503774796335e-02,1.539776788928943693e-02,-1.422322904729941495e+00,2.943758581439571698e-01,1.092602941843200615e+00,1.798070966728149811e+00,-2.766913820384017675e-01,-7.991672218957210361e-02,-1.424585037554610523e+00,3.220751718954613652e-01,1.084498034682638723e+00,1.797414704657360085e+00,1.615959992920945054e-01,-1.600968675601076141e+00,-1.359177379372303651e+00,3.638320427333995855e-01,8.692758616023750218e-01,1.797414704657360085e+00,1.615959992920945054e-01,-1.600968675601076141e+00
|
||||
1.166666999999999982e-01,-1.313600730000000105e+00,-2.858079999999999822e-03,9.171198000000000405e-01,1.509214785601638686e+00,3.288852671492682039e-02,2.191788801048750665e-02,-1.302033428331601295e+00,-3.884460601094983853e-03,8.959754297323582195e-01,1.509214785601638686e+00,3.288852671492682039e-02,2.191788801048750665e-02,-1.400138350440720103e+00,-1.105057496017012586e-01,8.455216147982224095e-01,1.712205422607567584e+00,7.668630567088983996e-02,-1.754026529942247503e-01,-1.389494248078224636e+00,-5.548654159695980137e-02,4.506948769349681805e-01,1.715105481846141977e+00,2.141420676381914634e-01,-1.554366520970812682e-01,-1.411771933704015103e+00,-5.458835558383268172e-02,4.856048957237285024e-01,1.790164004775497864e+00,4.518806125447279443e-01,-9.754811544359870065e-03,-1.599802966396830284e+00,4.374344177164908587e-02,9.625511404295150619e-02,1.734666385973093972e+00,2.306906833651112265e-01,-9.988137457051655954e-02,-1.659342339973667979e+00,4.869245634771718345e-02,6.452959470142854981e-02,1.439936201121737369e+00,1.951598604393680048e-01,-2.979858116287825709e-01,-1.485109422736003770e+00,-6.273789514586923521e-03,2.645612839376666747e-02,1.439936201121737369e+00,1.951598604393680048e-01,-2.979858116287826264e-01,-1.404962884276641066e+00,9.093626844750468674e-02,8.331039823723261906e-01,1.455725001349087222e+00,-5.923344491536099987e-01,5.059706722783110025e-03,-1.161667732697180044e+00,4.648630220990236650e-02,5.202974647308914458e-01,1.468889469579566898e+00,-3.586618614112384029e-01,-2.349981617951611007e-02,-1.197243979682050208e+00,4.857847633622164318e-02,5.388363215979163900e-01,1.466531364285687866e+00,-9.713269470314507548e-02,-1.654796769847119708e-01,-1.161980774424570262e+00,-5.019451974129271465e-03,9.127129492541841138e-02,1.442048782715245725e+00,1.179136990755078329e-01,-2.300715408411661556e-01,-1.215702412981000569e+00,1.020907098389421674e-02,5.308731964762773009e-02,1.471085702625240410e+00,1.161828951070238009e-01,-2.091654659446697817e-01,-1.034451232063498871e+00,-2.733100861184419028e-02,2.928105345615101759e-02,1.471085702625240410e+00,1.161828951070238009e-01,-2.091654659446697262e-01,-1.397722990195613413e+00,-1.611533401714815988e-03,9.700250181999501287e-01,1.515711764718034926e+00,3.447798683277208259e-02,3.128203384723989705e-02,-1.387677623217491885e+00,4.405603029390132812e-04,1.001750361895070274e+00,1.524290512701151235e+00,3.693068288964892337e-02,4.119721479807571252e-02,-1.385916101074325946e+00,2.045865913718754314e-03,1.034869080462650803e+00,1.539694703853300872e+00,3.900097711755153018e-02,5.114693070218218063e-02,-1.391284769170041402e+00,2.816026360984440376e-03,1.070186099986521366e+00,1.555043801568795958e+00,4.035508902908360729e-02,5.937358830207584842e-02,-1.401515256114936880e+00,2.603667948381621980e-03,1.099420725365905627e+00,1.567955802841261903e+00,4.137183686177683256e-02,6.703358250231969406e-02,-1.402336092095965991e+00,3.545330185070451334e-03,1.004971014096661230e+00,1.577820443011095142e+00,4.193472416549219595e-02,7.411711232625321777e-02,-1.401046177349242194e+00,3.426460149342122532e-03,1.035418863312414395e+00,1.577820443018401964e+00,4.193472410938673539e-02,7.411711250054954514e-02,-1.304380374780845120e+00,4.369512383806646930e-03,1.056346413223676173e+00,1.581183890504570755e+00,4.002911274346764720e-02,7.398385448197691838e-02,-1.378334001203905812e+00,-2.033416561873915840e-01,1.447844522084440477e+00,1.577820443011095142e+00,4.193472416549219595e-02,7.411711232625321777e-02,-1.394102206319680182e+00,2.070956241730717851e-01,1.430202597859076441e+00,1.577820443011095142e+00,4.193472416549219595e-02,7.411711232625321777e-02,-1.389026901594360375e+00,-2.156788242661609178e-01,1.412303224862715201e+00,1.236256035449205815e+00,8.568034654224547519e-02,-4.064601737012676352e-01,-1.436679295935673117e+00,-2.975132598247966498e-01,1.109381401126214861e+00,1.358433062892959065e+00,-8.169228122909345524e-01,-1.232132577397462431e-01,-1.439406803519390765e+00,-3.247134591657606650e-01,1.099854145199421041e+00,8.020759059975256511e-01,1.028470666941997957e-01,1.332612899706711262e+00,-1.281755907955546503e+00,-3.880702665396583151e-01,9.466402689226114386e-01,8.020759059975256511e-01,1.028470666941998096e-01,1.332612899706711262e+00,-1.406530392586055056e+00,2.182218872754247141e-01,1.394826418038856763e+00,1.857075948746452543e+00,4.771817104865355014e-02,2.349259977004692149e-02,-1.408503274454320886e+00,2.974878372193954790e-01,1.087511801168585146e+00,1.785859607181373709e+00,-2.940422256119416544e-01,-7.258237371044017061e-02,-1.410736873039817096e+00,3.250704035806405434e-01,1.079010517877903474e+00,1.814370327585666631e+00,1.490366183825132529e-01,-1.594449086216701339e+00,-1.341960281719689618e+00,3.642933008786039539e-01,8.643626047494538112e-01,1.814370327585666631e+00,1.490366183825132529e-01,-1.594449086216701339e+00
|
||||
1.333332999999999879e-01,-1.300183899999999948e+00,-5.556990000000000367e-03,9.177564999999999751e-01,1.506613352763358282e+00,3.633996287235202044e-02,2.700155114158727873e-02,-1.288682969537849887e+00,-6.580486653709164899e-03,8.965758160604804239e-01,1.506613352763358282e+00,3.633996287235202044e-02,2.700155114158727873e-02,-1.386404437260513101e+00,-1.138429135082114768e-01,8.467405977605054757e-01,1.710994250438997222e+00,8.460173112240945703e-02,-1.819332262125510358e-01,-1.379119045927214238e+00,-5.862144339477387556e-02,4.513848559620276535e-01,1.714468639388086135e+00,2.351164222655984515e-01,-1.601689253567213644e-01,-1.400389797671909298e+00,-5.775078689074816113e-02,4.867643517716341850e-01,1.795606521975592340e+00,4.749655182922044028e-01,-9.192540925991154327e-03,-1.597147943013196070e+00,4.290911491569193020e-02,1.023532690337274342e-01,1.737765424876891451e+00,2.554183529141821896e-01,-1.005941742060461885e-01,-1.657432928465810695e+00,4.811493251707085750e-02,7.211160372301843313e-02,1.439634696122055857e+00,2.203583452976016765e-01,-2.987615528042698032e-01,-1.484215012598303796e+00,-6.687611195506447392e-03,2.944755216704150053e-02,1.439634696122055857e+00,2.203583452976016765e-01,-2.987615528042698587e-01,-1.392313953464161091e+00,8.753731330861631854e-02,8.338006509686108902e-01,1.454511252581971448e+00,-5.903252216837567845e-01,1.614404286753549217e-02,-1.149487744865375971e+00,4.523022592957644250e-02,5.197205073074095960e-01,1.468400123676965041e+00,-3.393690685281609554e-01,-1.459260172318103087e-02,-1.184479229477267248e+00,4.699626237323820815e-02,5.390801643507221463e-01,1.462622375465331581e+00,-7.651545624784736321e-02,-1.596341448471898794e-01,-1.158315556579393668e+00,-6.659291797879891839e-03,9.089802683113107351e-02,1.438969762664663365e+00,1.239020276318057306e-01,-2.206264369431920613e-01,-1.212431675696335809e+00,7.977533500233800756e-03,5.304109449900522300e-02,1.461662484410086504e+00,1.226565187585016564e-01,-2.043415114037265556e-01,-1.031161430120560052e+00,-2.867573336940146267e-02,2.802864626409761958e-02,1.461662484410086504e+00,1.226565187585016564e-01,-2.043415114037265001e-01,-1.384132194920753234e+00,-4.602866667814745939e-03,9.709433788348185157e-01,1.510740044806574645e+00,3.795529401819337095e-02,3.588749151322565695e-02,-1.373992545341772287e+00,-2.332926529115136611e-03,1.002623962773909971e+00,1.516161202535517782e+00,4.047553811726868622e-02,4.528596282058858224e-02,-1.372133378447804697e+00,-4.392342160504938368e-04,1.035722141174378885e+00,1.525780955539365547e+00,4.267443638338195427e-02,5.471335159879323756e-02,-1.377403834498356128e+00,8.281401351062618946e-04,1.071039774715105253e+00,1.535343550397687107e+00,4.418458628016742190e-02,6.250488589624775271e-02,-1.387558999877575028e+00,1.175798696511537716e-03,1.100299564038501599e+00,1.543404251922958492e+00,4.538564970931208836e-02,6.975815724312936505e-02,-1.388567237843345348e+00,-6.772282659704993019e-04,1.005866238130409762e+00,1.549586979131738707e+00,4.614500050071892318e-02,7.647064332385800078e-02,-1.387215249403602080e+00,7.457025311006679983e-05,1.036302342648727448e+00,1.549586979139850218e+00,4.614500044955183872e-02,7.647064349970272845e-02,-1.290578000451311436e+00,4.282060691481365949e-03,1.056784340869233452e+00,1.551709220001736833e+00,4.503105509253262084e-02,7.640729050384918730e-02,-1.363266498003586680e+00,-1.948869824188783351e-01,1.453726766237178891e+00,1.549586979131738707e+00,4.614500050071892318e-02,7.647064332385800078e-02,-1.380213602998219935e+00,2.148898891230416053e-01,1.425959413213628402e+00,1.549586979131738707e+00,4.614500050071892318e-02,7.647064332385800078e-02,-1.373986546625993288e+00,-2.082681061807562239e-01,1.418573477236438896e+00,1.199720247961730157e+00,7.765141158314742276e-02,-3.916764079738375148e-01,-1.422113118472277060e+00,-3.019988526581553479e-01,1.119194725364129450e+00,1.300259870241765592e+00,-8.582131317887901067e-01,-4.607887410338695061e-02,-1.423570749160192772e+00,-3.296501394175343491e-01,1.110748400682335602e+00,7.554632084898487143e-01,1.356753158082145139e-01,1.360961249211344093e+00,-1.258125615950172582e+00,-3.938253186600896294e-01,9.663467522749670247e-01,7.554632084898487143e-01,1.356753158082145139e-01,1.360961249211344093e+00,-1.392753652500674288e+00,2.249610622871181242e-01,1.390307677312803136e+00,1.846103724783957123e+00,4.951600962090871305e-02,3.279279887957858158e-02,-1.395947369581789665e+00,3.008147034863943303e-01,1.082143302159663367e+00,1.771226424272855260e+00,-3.116271594059790151e-01,-6.379295687487078481e-02,-1.398157891471495162e+00,3.282553505562545992e-01,1.073188793314140632e+00,1.831435954395319143e+00,1.342419475361317782e-01,-1.587614708330744362e+00,-1.325991729634931282e+00,3.645461802122119677e-01,8.591387931620222407e-01,1.831435954395318921e+00,1.342419475361317782e-01,-1.587614708330744362e+00
|
||||
1.499999999999999944e-01,-1.287234959999999928e+00,-8.580469999999999764e-03,9.186527599999999572e-01,1.505404928858842695e+00,3.883877639454964142e-02,3.085136017226574809e-02,-1.275782275063553239e+00,-9.586376435077389666e-03,8.974451085734147515e-01,1.505404928858842695e+00,3.883877639454964142e-02,3.085136017226574809e-02,-1.373207338660042742e+00,-1.172923878567700140e-01,8.479877073229917794e-01,1.707256692750237059e+00,8.125982803078965477e-02,-1.955282824088258042e-01,-1.365480835251019931e+00,-6.345599251789242612e-02,4.513829070029696799e-01,1.711677917254217141e+00,2.629830054709040299e-01,-1.698222084792560815e-01,-1.385151723144197655e+00,-6.254352864267470613e-02,4.873289936409126444e-01,1.803595010293628675e+00,5.070534332964107271e-01,-8.625524256056348732e-03,-1.593777646584045637e+00,4.155669709595527506e-02,1.101600246209363254e-01,1.743152908315279470e+00,2.934110810072240172e-01,-1.006286842677373700e-01,-1.655138947110547987e+00,4.711451472892207171e-02,8.223441290801830617e-02,1.437330938644790779e+00,2.586689724283910419e-01,-3.007213321199817546e-01,-1.483717369232736782e+00,-7.508342893232246296e-03,3.264638478535418498e-02,1.437330938644790779e+00,2.586689724283910419e-01,-3.007213321199818101e-01,-1.379933363315444472e+00,8.404652038155521754e-02,8.348057128126977755e-01,1.461534216948819465e+00,-5.880976202274147413e-01,4.136440126299327676e-03,-1.138430897938233155e+00,4.155609124069850613e-02,5.192306655415488414e-01,1.474998400993447811e+00,-3.223419575618480803e-01,-2.621582918436041187e-02,-1.172875155507989930e+00,4.350527317640221631e-02,5.393026443561075300e-01,1.465714408906062749e+00,-5.748989852365388176e-02,-1.719530630841599739e-01,-1.155534936268823420e+00,-7.640390831499560553e-03,9.039940031071741489e-02,1.444809293725175303e+00,1.173905474632793433e-01,-2.243567956476826830e-01,-1.209295094163355566e+00,7.395946303808293223e-03,5.219348038468953760e-02,1.472522196741868461e+00,1.156964327902046119e-01,-2.044009956852479715e-01,-1.027855007461914827e+00,-2.927944333103311286e-02,2.847856518498906309e-02,1.472522196741868461e+00,1.156964327902046119e-01,-2.044009956852479160e-01,-1.371055223531089107e+00,-7.884919393706052784e-03,9.720451778377166008e-01,1.506660552831714961e+00,4.045464296945575078e-02,3.985550681089039537e-02,-1.360851712579388861e+00,-5.431540985896174054e-03,1.003691488004709642e+00,1.508255802638846843e+00,4.297658618617708481e-02,4.937303108801060353e-02,-1.358931743566467842e+00,-3.256029066831414662e-03,1.036768914362438121e+00,1.510858339111793569e+00,4.525265493827989455e-02,5.890996880164837274e-02,-1.364150460990628533e+00,-1.455839387695391637e-03,1.072071265384051397e+00,1.513399355253826739e+00,4.688999233161849495e-02,6.678240128624365890e-02,-1.374273159277536571e+00,-4.942421889195132683e-04,1.101328716157098597e+00,1.515574224698436945e+00,4.825747207797515675e-02,7.410457755754941422e-02,-1.375300497967367752e+00,-5.533377497252217614e-03,1.007012870464375709e+00,1.517291300259557385e+00,4.921301007044827369e-02,8.088273246770723290e-02,-1.373940036726475133e+00,-3.787944622527177931e-03,1.037407806577095304e+00,1.517291300268285958e+00,4.921301002497987381e-02,8.088273264514017624e-02,-1.277458610285542528e+00,4.474787253013355962e-03,1.057408587098187080e+00,1.517900165100322551e+00,4.894275362490409925e-02,8.086965429135362093e-02,-1.347628864145844263e+00,-1.849220888573006316e-01,1.461469806663835636e+00,1.517291300259557385e+00,4.921301007044827369e-02,8.088273246770723290e-02,-1.366967831452952531e+00,2.237803619420191403e-01,1.421460346562002597e+00,1.517291300259557385e+00,4.921301007044827369e-02,8.088273246770723290e-02,-1.358283979789633555e+00,-1.994984724790923036e-01,1.426775063628400897e+00,1.161093488458744494e+00,6.635302196803999353e-02,-3.793704889962786764e-01,-1.406096815529666033e+00,-3.058304662262467666e-01,1.131585807946965838e+00,1.233360659541805182e+00,-8.847253866544917411e-01,3.247593423109668836e-02,-1.406587266685676019e+00,-3.338482298573511309e-01,1.124317855960527135e+00,7.208235379425015354e-01,1.728901297412412663e-01,1.382982751714346481e+00,-1.235675945948394805e+00,-3.995137403925023700e-01,9.871327876533059209e-01,7.208235379425015354e-01,1.728901297412412663e-01,1.382982751714346481e+00,-1.379582864751428994e+00,2.326165901548873927e-01,1.385508856342326789e+00,1.832157552482980956e+00,5.103071682231832829e-02,4.055539770826788182e-02,-1.383709781526906379e+00,3.041254616204529526e-01,1.076318451114160801e+00,1.754715230703124629e+00,-3.220971132898652334e-01,-5.318454998691270891e-02,-1.385982179678076909e+00,3.314043301811716580e-01,1.066897289615086786e+00,1.841266985841615966e+00,1.180972347981193715e-01,-1.580914002517667560e+00,-1.311965533329345623e+00,3.646119037602783552e-01,8.529786721066148214e-01,1.841266985841615966e+00,1.180972347981193715e-01,-1.580914002517667560e+00
|
||||
1.666667000000000010e-01,-1.275597599999999998e+00,-1.237860999999999996e-02,9.192541499999999921e-01,1.505236624364225673e+00,4.377292781443736097e-02,2.961068534598741350e-02,-1.264250792854377803e+00,-1.340531707708191543e-02,8.979906564201783903e-01,1.505236624364225673e+00,4.377292781443736097e-02,2.961068534598741350e-02,-1.362051070512379614e+00,-1.210065088198764155e-01,8.490483263045898177e-01,1.702108413395681197e+00,5.964131600605534350e-02,-2.118192945483091394e-01,-1.347863230843793003e+00,-7.033354021874503592e-02,4.504614369476008240e-01,1.707990371662646112e+00,2.988464089218776931e-01,-1.790660431624890581e-01,-1.365258192720910868e+00,-6.949152411848313893e-02,4.869933409038963434e-01,1.816960430155215578e+00,5.478396572477979287e-01,-1.337669662394431937e-03,-1.589102143603989159e+00,3.886213837383981073e-02,1.198810507267509817e-01,1.751836275648999797e+00,3.376688628793597102e-01,-9.656448054658402225e-02,-1.651619207324496630e+00,4.466902100891342181e-02,9.470496710530151852e-02,1.438158995230092385e+00,3.040200776693686713e-01,-2.985475435846455250e-01,-1.482404611139659600e+00,-8.863805376568938132e-03,3.701057043450628470e-02,1.438158995230092385e+00,3.040200776693686713e-01,-2.985475435846455805e-01,-1.368593718060612918e+00,8.033639773772126291e-02,8.358351472952322281e-01,1.473103030339077302e+00,-5.857239841204802122e-01,-2.088043250801300404e-02,-1.128874947333649459e+00,3.638319888660947882e-02,5.186489472458242211e-01,1.485453099709555858e+00,-3.060150294711026508e-01,-4.923761340439503781e-02,-1.162769515201055537e+00,3.877536112533966350e-02,5.393906906081085140e-01,1.472570035320405202e+00,-3.873639246985061818e-02,-1.944484286325341982e-01,-1.154240157210656204e+00,-8.096723833982563678e-03,8.976757913764132901e-02,1.455568996753798583e+00,1.034567813827233368e-01,-2.357216946448803530e-01,-1.207188191677096345e+00,7.888384112579624463e-03,5.081991811976816625e-02,1.490485221526905768e+00,1.009375366248634054e-01,-2.103871661124418480e-01,-1.025638505425272795e+00,-2.990342192706817170e-02,2.985620451390179689e-02,1.490485221526905768e+00,1.009375366248634054e-01,-2.103871661124417924e-01,-1.359152861028891879e+00,-1.156280884993667567e-02,9.730586430698333622e-01,1.503494560304488692e+00,4.530695332882424958e-02,3.567991050962079219e-02,-1.348789879218946108e+00,-9.032462985647082832e-03,1.004647314095138633e+00,1.501117746350910664e+00,4.784181042686698471e-02,4.206604413675055915e-02,-1.346704114137331043e+00,-6.621459761989969932e-03,1.037698238213890400e+00,1.496536008063088508e+00,5.016650148076323701e-02,4.846253958618747248e-02,-1.351757259348664642e+00,-4.233397801883092768e-03,1.072989510638507227e+00,1.491907465526656651e+00,5.187011253133611693e-02,5.373936786453454434e-02,-1.361757467688156753e+00,-2.489671997687505252e-03,1.102252941168294642e+00,1.488057418602676707e+00,5.332238040449233107e-02,5.864434264337819308e-02,-1.363147943874553070e+00,-1.070388174739583115e-02,1.008164605437016359e+00,1.485181334392953634e+00,5.435629706533359057e-02,6.319398971084040639e-02,-1.361666158919259351e+00,-7.998940726944937796e-03,1.038483529221125190e+00,1.485181334402670306e+00,5.435629702557811388e-02,6.319398988969104902e-02,-1.265061209846310097e+00,2.189837099733254674e-03,1.057661396613192473e+00,1.484225925149444736e+00,5.475862341151156720e-02,6.320999336965557602e-02,-1.334563497135732524e+00,-1.758186083944061062e-01,1.465164003668501636e+00,1.485181334392953634e+00,5.435629706533359057e-02,6.319398971084040639e-02,-1.355112990819921315e+00,2.314490497360624510e-01,1.415593483131450281e+00,1.485181334392953634e+00,5.435629706533359057e-02,6.319398971084040639e-02,-1.345556936988945740e+00,-1.913357877884544478e-01,1.430986685648889312e+00,1.114617252962472493e+00,5.837346042823064740e-02,-3.744356180687742897e-01,-1.395305545076048093e+00,-3.115196825404648040e-01,1.141486833729856931e+00,1.131734317646592825e+00,-9.560727460185547422e-01,1.608112980364097555e-01,-1.393961402647636794e+00,-3.398701290692590637e-01,1.135785587370317096e+00,6.341576166337962173e-01,2.132864031849295294e-01,1.413718686710898842e+00,-1.210076535912371076e+00,-4.041273371123049185e-01,1.015786634055185322e+00,6.341576166337963283e-01,2.132864031849295017e-01,1.413718686710898842e+00,-1.367695920254632380e+00,2.393200900894296990e-01,1.379407239146148934e+00,1.822774270701862154e+00,5.400152808090750295e-02,5.329044735785251619e-02,-1.373531339401439011e+00,3.078227670372932212e-01,1.069564395175426119e+00,1.740724046363056887e+00,-3.429492042339218894e-01,-4.155014873000094366e-02,-1.375801273169934280e+00,3.349487532021481750e-01,1.059711120462276890e+00,1.861671788424802632e+00,1.040096368977436458e-01,-1.571585542364918320e+00,-1.297699575408439943e+00,3.656642430037640445e-01,8.468753497622372173e-01,1.861671788424802632e+00,1.040096368977436458e-01,-1.571585542364918320e+00
|
||||
1.833333000000000046e-01,-1.265198999999999963e+00,-1.675721000000000155e-02,9.196507900000000513e-01,1.508754529035824188e+00,4.598632619054757870e-02,2.574058322839281945e-02,-1.253905421061354497e+00,-1.775606604013299505e-02,8.983576530679071581e-01,1.508754529035824188e+00,4.598632619054757870e-02,2.574058322839281945e-02,-1.352251186737752686e+00,-1.247930392917653009e-01,8.492714107769407939e-01,1.694311143848135748e+00,2.355738104299654606e-02,-2.334214588131620638e-01,-1.326902829004813711e+00,-7.973419907889470193e-02,4.484911185565266800e-01,1.701878959720793727e+00,3.413360638361750965e-01,-1.922418742579199424e-01,-1.341531299989001891e+00,-7.896132658549626093e-02,4.855689614341763272e-01,1.832929466628234083e+00,5.951248052221469464e-01,5.668391015026960633e-03,-1.582271557063487988e+00,3.458343463622456926e-02,1.309286084787243398e-01,1.763059622082377986e+00,3.929443832068806319e-01,-9.201556039773238493e-02,-1.646057972311633977e+00,4.072280683558231890e-02,1.092597444689388242e-01,1.438749635253034675e+00,3.605872979843258719e-01,-2.973527782103009831e-01,-1.480169622156936482e+00,-1.156777238505118238e-02,4.162294178174869019e-02,1.438749635253034675e+00,3.605872979843258719e-01,-2.973527782103010386e-01,-1.358012399120215763e+00,7.661903162994374017e-02,8.367675523145360339e-01,1.488135397895158363e+00,-5.827131059796774037e-01,-5.774270424647830191e-02,-1.120655556613930015e+00,2.984921876347553654e-02,5.177698775920113183e-01,1.498811699550562260e+00,-2.889392629126081857e-01,-8.275903911823209724e-02,-1.153947856413101603e+00,3.292053743069376509e-02,5.391921415645514193e-01,1.482087644834792384e+00,-1.886055538301786155e-02,-2.266260438379972819e-01,-1.154671723612882728e+00,-8.019829972712340382e-03,8.890995559924175229e-02,1.469795734770389384e+00,8.458804799744419622e-02,-2.553405922676893480e-01,-1.206411774633924683e+00,9.423200003845159933e-03,4.897693474853957035e-02,1.524887875196316411e+00,7.957349868265375936e-02,-2.149577572215372601e-01,-1.024622068451573442e+00,-2.921267344366812457e-02,3.201348937017116369e-02,1.524887875196316411e+00,7.957349868265375936e-02,-2.149577572215372046e-01,-1.348626168228745481e+00,-1.579117090488793562e-02,9.736512068634258776e-01,1.503245665147205257e+00,4.744185705190895330e-02,3.032356139044674673e-02,-1.338183043714147091e+00,-1.329247526215903211e-02,1.005216017994864597e+00,1.495869521392638068e+00,4.993034156379933669e-02,3.512289907068300021e-02,-1.336018684582227944e+00,-1.071011330030431988e-02,1.038248799335131034e+00,1.482198049705208520e+00,5.224111097015483179e-02,3.991996062389731315e-02,-1.341001653841700891e+00,-7.741717128596984146e-03,1.073505614452209267e+00,1.468489057714988943e+00,5.395881257061969222e-02,4.386568464489601360e-02,-1.350957264184227125e+00,-5.195531995573791570e-03,1.102725234939651022e+00,1.457015570863261944e+00,5.544459434227280020e-02,4.752410489933520110e-02,-1.352446405324455148e+00,-1.702409252294351250e-02,1.009022899594390399e+00,1.448338070397008792e+00,5.652052295357282152e-02,5.092367509365139377e-02,-1.350929433103557953e+00,-1.321930088773545439e-02,1.039221771889529800e+00,1.448338070407189315e+00,5.652052292042256121e-02,5.092367527386887360e-02,-1.254349416629840785e+00,2.905417997227342786e-04,1.057634970916037975e+00,1.445395862571834611e+00,5.739265130331954595e-02,5.098196357699590758e-02,-1.321702741800119707e+00,-1.654828903413375074e-01,1.471574554860842987e+00,1.448338070397008792e+00,5.652052295357282152e-02,5.092367509365139377e-02,-1.344132231260001031e+00,2.399752435369034709e-01,1.408916437444726499e+00,1.448338070397008792e+00,5.652052295357282152e-02,5.092367509365139377e-02,-1.332862829631948909e+00,-1.821354324250210877e-01,1.437990735469594217e+00,1.069834688344022622e+00,4.216253576635570904e-02,-3.765261593183560906e-01,-1.382970170517437536e+00,-3.159516603883503194e-01,1.154597495697436305e+00,1.016590418443225730e+00,-1.000207355262181075e+00,2.867067476450112506e-01,-1.380482739002085291e+00,-3.445030744136975409e-01,1.150512377717293866e+00,5.678500823484333715e-01,2.570929307520541940e-01,1.428590197775230886e+00,-1.188177952609471788e+00,-4.090327290404077720e-01,1.044695674873604485e+00,5.678500823484334825e-01,2.570929307520541385e-01,1.428590197775230886e+00,-1.356643113451444504e+00,2.466360633837519079e-01,1.372463194119520669e+00,1.813468655474853808e+00,5.658276362112187735e-02,4.973598049014422984e-02,-1.362925811373337348e+00,3.122379905017177437e-01,1.062001969985588934e+00,1.728306112828948526e+00,-3.550817780546202673e-01,-4.391352966808491354e-02,-1.364900210735168207e+00,3.392558607768665357e-01,1.051794365944616505e+00,1.873393531818078772e+00,9.187355132014925208e-02,-1.577049399622923120e+00,-1.284135244927307573e+00,3.668579804171905878e-01,8.395267869649776227e-01,1.873393531818078772e+00,9.187355132014925208e-02,-1.577049399622923120e+00
|
||||
2.000000000000000111e-01,-1.255807649999999942e+00,-2.108567999999999901e-02,9.196855000000000446e-01,1.511546350927727378e+00,4.739147483536248345e-02,2.369883601830356443e-02,-1.244547596424522062e+00,-2.205037895644194543e-02,8.983730419427512492e-01,1.511546350927727378e+00,4.739147483536248345e-02,2.369883601830356443e-02,-1.343197918034650939e+00,-1.287380602802593033e-01,8.491377380281734943e-01,1.684590501405766050e+00,-1.760317174002017093e-02,-2.566605137895580646e-01,-1.305189545062890311e+00,-9.112419475045557826e-02,4.467975079098124302e-01,1.693469521634549446e+00,3.823196507041152215e-01,-2.086840883731349572e-01,-1.317131466015593277e+00,-9.037461797433754551e-02,4.842418522317687990e-01,1.846859535728058388e+00,6.403102586555179387e-01,8.140695285937655373e-03,-1.572992654989457728e+00,2.840846770209019823e-02,1.421253594173743084e-01,1.775092130649426281e+00,4.542569084284244219e-01,-8.792015439314883329e-02,-1.637956538851238264e+00,3.492632962966266130e-02,1.244293260151705383e-01,1.442336918227280051e+00,4.239204620381915589e-01,-2.955409818292454305e-01,-1.476402454450054025e+00,-1.570803614176329022e-02,4.591547191130394834e-02,1.442336918227280051e+00,4.239204620381915589e-01,-2.955409818292454860e-01,-1.348539615768390432e+00,7.271971958360189114e-02,8.371966511772771513e-01,1.504581334022596861e+00,-5.814502256347220399e-01,-9.923003692343232429e-02,-1.113164307852942736e+00,2.268359408222660190e-02,5.166852432576735099e-01,1.513395779488292625e+00,-2.698263417931469621e-01,-1.203183229896378909e-01,-1.145731721234181766e+00,2.647574111390180868e-02,5.388611933883145078e-01,1.492333873654434040e+00,3.479365142430545978e-03,-2.630520340876258967e-01,-1.156461415394933079e+00,-7.336991642510261313e-03,8.811485959145870517e-02,1.484784148396984138e+00,6.714533704753798682e-02,-2.798685853122367395e-01,-1.206893063233645425e+00,1.181295335098659499e-02,4.729982765831090147e-02,1.568884663172633864e+00,5.754222128275873760e-02,-2.176710810023404497e-01,-1.024865274883186794e+00,-2.729678860750673480e-02,3.448191744629199723e-02,1.568884663172633864e+00,5.754222128275873760e-02,-2.176710810023403941e-01,-1.339153014577015188e+00,-2.008736878569309173e-02,9.738115032689306227e-01,1.502321154110238810e+00,4.869880803538215175e-02,2.537582836128458169e-02,-1.328659075688208624e+00,-1.759481023600433999e-02,1.005359964251409277e+00,1.490030140812088844e+00,5.105296968355797077e-02,2.707971957587737913e-02,-1.326443135465182888e+00,-1.482721958341525793e-02,1.038374106316452661e+00,1.467491697582915533e+00,5.319283881854660473e-02,2.877341160589468039e-02,-1.331377479250491103e+00,-1.125869227032623952e-02,1.073581455793892525e+00,1.444938706674032014e+00,5.473745391431138196e-02,3.015401312565194406e-02,-1.341300089141596708e+00,-7.871494092904732232e-03,1.102726431322450296e+00,1.426031414883444981e+00,5.603853748162865994e-02,3.142397142099698226e-02,-1.342896363059482567e+00,-2.326734701857824383e-02,1.009542912943081960e+00,1.411683370108422597e+00,5.691913754034297335e-02,3.262343185782056593e-02,-1.341342974403390453e+00,-1.838548629277273957e-02,1.039584616482352564e+00,1.411683370118737457e+00,5.691913751380876102e-02,3.262343203913786044e-02,-1.244735055106963806e+00,-2.285559398798101688e-03,1.057288113837786092e+00,1.406784798174560702e+00,5.746542790395829658e-02,3.280981641307736951e-02,-1.308934335400588456e+00,-1.550218351641609038e-01,1.476855150667282679e+00,1.411683370108422597e+00,5.691913754034297335e-02,3.262343185782056593e-02,-1.331996189879907977e+00,2.482020564422388054e-01,1.400926511520494078e+00,1.411683370108422597e+00,5.691913754034297335e-02,3.262343185782056593e-02,-1.320335348807674780e+00,-1.727088108496882268e-01,1.443886750227497684e+00,1.020644155129488473e+00,2.086873943136507634e-02,-3.876904563146054694e-01,-1.371401436000895480e+00,-3.210204051120153501e-01,1.167978826144753235e+00,8.593259730431404009e-01,-1.044615678639746914e+00,4.517813635386209725e-01,-1.367813406201514814e+00,-3.496666016815491718e-01,1.165838683261572806e+00,4.861076612125263541e-01,3.072062337641390806e-01,1.436574620188628248e+00,-1.166654103876158199e+00,-4.140034262401107168e-01,1.077872269840554065e+00,4.861076612125264096e-01,3.072062337641390806e-01,1.436574620188628248e+00,-1.344366898702149538e+00,2.537266920334533826e-01,1.364236300183045980e+00,1.806093075267928283e+00,5.874394738079020267e-02,4.437093213360450428e-02,-1.350894289957332184e+00,3.170434373385046523e-01,1.053306019005922245e+00,1.717819084820555453e+00,-3.680371280897910546e-01,-4.873267357988402687e-02,-1.352509291830231719e+00,3.439688930360478847e-01,1.042795531304002266e+00,1.886031139289139347e+00,8.159997126014911784e-02,-1.584483461911532221e+00,-1.268875317586360518e+00,3.686665400255256797e-01,8.312824906142624037e-01,1.886031139289139347e+00,8.159997126014911784e-02,-1.584483461911532221e+00
|
||||
2.166666999999999899e-01,-1.247020699999999982e+00,-2.556411999999999921e-02,9.193643200000000126e-01,1.511886687238065852e+00,4.854586740047757421e-02,2.337855813070126992e-02,-1.235785745078277431e+00,-2.652593875695315878e-02,8.980384903179731149e-01,1.511886687238065852e+00,4.854586740047757421e-02,2.337855813070126992e-02,-1.334529137080193717e+00,-1.331650168094230258e-01,8.488845279174684899e-01,1.673747876048887750e+00,-5.745557323587206777e-02,-2.787741412137447750e-01,-1.284546410750984746e+00,-1.039869796202795710e-01,4.458820493746388225e-01,1.683282343525895230e+00,4.176577791618472646e-01,-2.270533012922365534e-01,-1.294160895025230351e+00,-1.031989105514900390e-01,4.834743879304688741e-01,1.856249413550381089e+00,6.792078640856620275e-01,5.081982086853596009e-03,-1.562064383060555173e+00,2.030381076833487342e-02,1.524262599389953343e-01,1.785093750527290135e+00,5.113804671741085661e-01,-8.667001596600673596e-02,-1.627893300801325882e+00,2.726209745418495950e-02,1.384952095779457271e-01,1.449288480005165525e+00,4.835384679983055212e-01,-2.941344573771376703e-01,-1.471033552327583038e+00,-2.168742795758240444e-02,5.002515961334159933e-02,1.449288480005165747e+00,4.835384679983055212e-01,-2.941344573771377813e-01,-1.339816860016342259e+00,6.829827489972020715e-02,8.370126099004666642e-01,1.519860025434788486e+00,-5.823728349055614650e-01,-1.359368244324319630e-01,-1.105611671890047498e+00,1.567263675079711566e-02,5.153677857506689941e-01,1.526929244269005670e+00,-2.470487496895655277e-01,-1.532351859873168354e-01,-1.137292620141452382e+00,1.998777444268014236e-02,5.384266606778060904e-01,1.500777528336245892e+00,2.971858575031694621e-02,-2.959291152445378548e-01,-1.159337049939812347e+00,-6.361232097637180977e-03,8.759358998117894313e-02,1.497197142695197769e+00,5.950051678450306303e-02,-3.034681010179861582e-01,-1.208835829392311156e+00,1.440345577450416817e-02,4.642762225331963089e-02,1.615602561466913389e+00,4.327135089563537845e-02,-2.157163699808931911e-01,-1.026548844782764425e+00,-2.429187952739993508e-02,3.632253750083702659e-02,1.615602561466913389e+00,4.327135089563537845e-02,-2.157163699808931356e-01,-1.330302771819928287e+00,-2.455470495060800562e-02,9.735874538661171140e-01,1.499032067263994294e+00,4.940941205816858778e-02,1.856500031929680938e-02,-1.319772335311105271e+00,-2.201012492699146172e-02,1.005119399143142189e+00,1.481985890983994025e+00,5.119567217813671134e-02,1.337177870882241132e-02,-1.317518764040817247e+00,-1.900159312518254554e-02,1.038109757722966098e+00,1.451036850882092555e+00,5.256636302930316196e-02,8.179260670469942415e-03,-1.322409096450206212e+00,-1.473495090830253922e-02,1.073244904251816401e+00,1.420132796993208935e+00,5.331113106155774273e-02,3.900252267075408983e-03,-1.332289392597421074e+00,-1.034873314632005215e-02,1.102270134465433538e+00,1.394191376518769898e+00,5.374046167481972419e-02,-7.208171677954940050e-05,-1.334121087946290141e+00,-2.932279715201548120e-02,1.009749618939098648e+00,1.374453423905013238e+00,5.372413003568475565e-02,-3.691669669599968642e-03,-1.332494116852168453e+00,-2.338350722909446691e-02,1.039596349618937543e+00,1.374453423914794303e+00,5.372413001590688186e-02,-3.691669487451313975e-03,-1.235801755129880997e+00,-6.691572595014842750e-03,1.056956910785266990e+00,1.367732843747945237e+00,5.183379345426561424e-02,-3.040429299985633431e-03,-1.298308202193960703e+00,-1.443434344170705375e-01,1.483280701949415858e+00,1.374453423905013238e+00,5.372413003568475565e-02,-3.691669669599968642e-03,-1.308649258654801528e+00,2.561959624820537851e-01,1.391035657895696165e+00,1.374453423905013238e+00,5.372413003568475565e-02,-3.691669669599968642e-03,-1.310207200293310947e+00,-1.628438225725143407e-01,1.450940678364134095e+00,9.733135219036863628e-01,-1.266857187446379304e-02,-3.980583761847368285e-01,-1.359362406793555911e+00,-3.260254317598552110e-01,1.183200533965771406e+00,6.806117171298817770e-01,-1.068805491830814081e+00,6.322330359970644853e-01,-1.354993177851878672e+00,-3.546429505535074744e-01,1.183121769429238190e+00,4.080352037541252752e-01,3.605925804856953132e-01,1.435693334370973018e+00,-1.147018057161080185e+00,-4.188970683046971955e-01,1.112693512868927925e+00,4.080352037541252752e-01,3.605925804856953132e-01,1.435693334370973018e+00,-1.320709538617498069e+00,2.607723631368316641e-01,1.354112306917821140e+00,1.800485790730075086e+00,8.711444992603058213e-02,8.070666614110003079e-02,-1.338212624719242294e+00,3.213597728002117182e-01,1.043062367852235273e+00,1.699232556264731464e+00,-3.970930002427978667e-01,-1.856187345796923849e-02,-1.340143587044196227e+00,3.480476920858792678e-01,1.032013155391459991e+00,1.914583090416952960e+00,6.341709573815594581e-02,-1.559183270032172608e+00,-1.251070672716264154e+00,3.709174659649884243e-01,8.225247996952348428e-01,1.914583090416952960e+00,6.341709573815593193e-02,-1.559183270032172608e+00
|
||||
2.333332999999999935e-01,-1.238615830000000084e+00,-3.048029999999999837e-02,9.188390699999999800e-01,1.507700818494971617e+00,5.034491609212815577e-02,2.120708211694706177e-02,-1.227419256654810331e+00,-3.155417571484889910e-02,8.974984079831827000e-01,1.507700818494971617e+00,5.034491609212815577e-02,2.120708211694706177e-02,-1.326455462312077671e+00,-1.382050918371599824e-01,8.489631165873503527e-01,1.662070632733411824e+00,-9.577728892600002875e-02,-2.986047886374786353e-01,-1.265219060468529610e+00,-1.181671720016011506e-01,4.460894495976784890e-01,1.671538280706674318e+00,4.460878672656528043e-01,-2.462679631722378137e-01,-1.272923615322941737e+00,-1.172727940193017404e-01,4.836929496481852664e-01,1.860476824090046000e+00,7.109415099799147875e-01,-2.622221063212748070e-03,-1.549885037402542576e+00,1.011402712858758268e-02,1.616944518270997944e-01,1.790717592399990732e+00,5.576298931998093789e-01,-8.993191220017748844e-02,-1.616235370735930710e+00,1.758757146111287334e-02,1.508446716291511613e-01,1.463081663823344591e+00,5.330557472692605270e-01,-2.913227263830140412e-01,-1.463627440294240634e+00,-2.957670191933245429e-02,5.433385693555511931e-02,1.463081663823344591e+00,5.330557472692605270e-01,-2.913227263830141522e-01,-1.331368397771274026e+00,6.321634730420334913e-02,8.362498449025687064e-01,1.532594064075476270e+00,-5.852063399198992322e-01,-1.625217043897294877e-01,-1.097441140055275710e+00,9.323853189474824721e-03,5.138010540271630289e-01,1.538164568009481314e+00,-2.202820591479275891e-01,-1.764980679191731627e-01,-1.128085133308519561e+00,1.384104728786117455e-02,5.378661235476406288e-01,1.506106534463602653e+00,5.994417339062711042e-02,-3.205252304247888651e-01,-1.162947628710522263e+00,-5.382506493882572435e-03,8.748212509865893605e-02,1.506059060816315132e+00,6.032856726012750942e-02,-3.206197170344019520e-01,-1.211989103312173022e+00,1.661006938980046435e-02,4.640660071269632481e-02,1.656995235500055896e+00,3.679325185544113364e-02,-2.091609135319880686e-01,-1.029373017090873033e+00,-2.082130505065345541e-02,3.756105207307114391e-02,1.656995235500055896e+00,3.679325185544112670e-02,-2.091609135319880131e-01,-1.321802943700377098e+00,-2.907826223420765382e-02,9.731990649956610007e-01,1.491760121989731624e+00,5.098170150713689230e-02,1.417253196725844211e-02,-1.311216386111091481e+00,-2.633439034828332151e-02,1.004695196606058216e+00,1.470639591013007008e+00,5.244249039946050073e-02,6.616928960847753144e-03,-1.308905916780472634e+00,-2.295876739410057654e-02,1.037645878830861790e+00,1.432351513744829274e+00,5.336424952812095918e-02,-9.263605752207318194e-04,-1.313733472982620887e+00,-1.797253564659649638e-02,1.072694154822589008e+00,1.394133730182792519e+00,5.363829170038118127e-02,-7.128664672493294392e-03,-1.323556870613206593e+00,-1.271439086762505069e-02,1.101592894118270438e+00,1.362051512985712698e+00,5.355155156536936523e-02,-1.287301803723634591e-02,-1.325615806501259986e+00,-3.519300302843571260e-02,1.009861832416233840e+00,1.337636995295331532e+00,5.300836320729636342e-02,-1.810897270696882472e-02,-1.323917555546560543e+00,-2.818118921076399538e-02,1.039470951664965614e+00,1.337636995305014009e+00,5.300836319422677634e-02,-1.810897252422156295e-02,-1.227229173482667690e+00,-9.170378827119754495e-03,1.056021031677560451e+00,1.329380466438542241e+00,4.958332687701112046e-02,-1.704570687010413532e-02,-1.283116523346469195e+00,-1.327952547329612765e-01,1.489438651295458937e+00,1.337636995295331532e+00,5.300836320729636342e-02,-1.810897270696882472e-02,-1.294674382519101830e+00,2.638159478155717719e-01,1.380362449883252518e+00,1.337636995295331532e+00,5.300836320729636342e-02,-1.810897270696882472e-02,-1.295242232718594622e+00,-1.523225484241089722e-01,1.457794068560187783e+00,9.240344659423087581e-01,-4.640308896907833353e-02,-4.243852031943623482e-01,-1.346172628048219799e+00,-3.295425948231746061e-01,1.199475647205091366e+00,4.855438846743088677e-01,-1.073577053376143953e+00,8.160806384502831134e-01,-1.341513473301951143e+00,-3.580353436396734312e-01,1.201600332883556055e+00,3.277390271789745180e-01,4.173117197390248112e-01,1.417714753501355895e+00,-1.128709621408155339e+00,-4.237609199748283428e-01,1.149283499731730274e+00,3.277390271789745735e-01,4.173117197390247557e-01,1.417714753501355895e+00,-1.306673557094196303e+00,2.671815677688481605e-01,1.343289278249124363e+00,1.794806432579559186e+00,8.882382133292968107e-02,5.482401048426169266e-02,-1.323067490742082741e+00,3.264064397915842908e-01,1.031916655337367317e+00,1.689914696596128474e+00,-4.135192755657466357e-01,-4.428084991078402172e-02,-1.324034218834225340e+00,3.530354603894089172e-01,1.020602087466761843e+00,1.930783751704731488e+00,5.438416929742675293e-02,-1.587622717927243743e+00,-1.230983117911959912e+00,3.713329323256387982e-01,8.123976760476996350e-01,1.930783751704731488e+00,5.438416929742675293e-02,-1.587622717927243743e+00
|
||||
2.500000000000000000e-01,-1.230389029999999995e+00,-3.545902000000000082e-02,9.181715499999999475e-01,1.494429407031077517e+00,5.292913084960977621e-02,1.746006330274072968e-02,-1.219245913627506228e+00,-3.685102302951564351e-02,8.968212899520271453e-01,1.494429407031077517e+00,5.292913084960977621e-02,1.746006330274072968e-02,-1.318720236550160907e+00,-1.438326203514366797e-01,8.499378241551722724e-01,1.648970789283048743e+00,-1.336235135199723145e-01,-3.173717644251776715e-01,-1.246621117981949300e+00,-1.339423277848357796e-01,4.478845240100362557e-01,1.657611046472716954e+00,4.675842169866726294e-01,-2.677273921868817963e-01,-1.252807346569700497e+00,-1.328301778177186088e-01,4.854369077820678280e-01,1.858691749965607931e+00,7.359492941550187517e-01,-1.637286212897324719e-02,-1.536118572897831269e+00,-2.272894038765377323e-03,1.703058099667816294e-01,1.790213168055425186e+00,5.918583769789418358e-01,-1.000574726277452808e-01,-1.602723026197675038e+00,5.882964869110537953e-03,1.617461899524655633e-01,1.480617061393541212e+00,5.705946840257878350e-01,-2.899670360693025750e-01,-1.453632173571430375e+00,-3.996995307455508684e-02,5.928930121747838511e-02,1.480617061393541212e+00,5.705946840257878350e-01,-2.899670360693026305e-01,-1.323049374428181935e+00,5.741612450300611487e-02,8.345572644358474346e-01,1.544094487942518912e+00,-5.895956113978264579e-01,-1.836558825142833029e-01,-1.088785095818349813e+00,2.980403194713251991e-03,5.115845247216584957e-01,1.548194827609411073e+00,-1.904366330808698882e-01,-1.942263220412405733e-01,-1.118262943577057467e+00,7.491835771407037714e-03,5.367215891703530639e-01,1.509504852044078360e+00,9.322958737098351045e-02,-3.404107434464169191e-01,-1.167111557087765261e+00,-4.586965228524883184e-03,8.739030805470215935e-02,1.512689816580346402e+00,6.835495532559954235e-02,-3.344201571189638345e-01,-1.216056068461237150e+00,1.846399016034348112e-02,4.678209963869096183e-02,1.698866195631290044e+00,3.609599081168533147e-02,-1.981364047014286256e-01,-1.033014321588382023e+00,-1.687325888307207589e-02,3.812275775838676328e-02,1.698866195631290044e+00,3.609599081168532453e-02,-1.981364047014285701e-01,-1.313443633149376844e+00,-3.307827986778854451e-02,9.726998511265423364e-01,1.476336779902756469e+00,5.333537703512013922e-02,8.242921399755841552e-03,-1.302773015090290754e+00,-2.989451747952123414e-02,1.004126205677288608e+00,1.452387757439310478e+00,5.453872464172546813e-02,-1.646066187860094083e-03,-1.300368202040008025e+00,-2.593155138479081440e-02,1.037004422400342518e+00,1.409051798726244087e+00,5.504879995017650240e-02,-1.150074690246191168e-02,-1.305080984993047588e+00,-2.007088316486026203e-02,1.071932053375905358e+00,1.365815914594258329e+00,5.485440445067873289e-02,-1.958393549922031809e-02,-1.314795576022288914e+00,-1.387385517900627599e-02,1.100680525386333874e+00,1.329519897728908884e+00,5.423503025145689355e-02,-2.705281210542108405e-02,-1.317284380008203915e+00,-3.967863770018505154e-02,1.009836129088148349e+00,1.301894457081052003e+00,5.311846918775366133e-02,-3.385057557147468782e-02,-1.315451357506625341e+00,-3.163958258515438965e-02,1.039174894457036258e+00,1.301894457090773338e+00,5.311846918121371219e-02,-3.385057538837538127e-02,-1.218641253142412451e+00,-1.141004152453760703e-02,1.054815599872536369e+00,1.292629096785213649e+00,4.807084761871507905e-02,-3.224599488439534173e-02,-1.266207469574321953e+00,-1.200614850537355671e-01,1.495622036356598628e+00,1.301894457081052003e+00,5.311846918775366133e-02,-3.385057557147468782e-02,-1.279142239455097085e+00,2.718423009459733919e-01,1.368989883120926176e+00,1.301894457081052003e+00,5.311846918775366133e-02,-3.385057557147468782e-02,-1.278642552044763736e+00,-1.405349269985637917e-01,1.464703845237904867e+00,8.743610094432529012e-01,-8.444423723710056673e-02,-4.534672085146230214e-01,-1.332142770135846810e+00,-3.315182224697139635e-01,1.216929019356230768e+00,2.973224694348278740e-01,-1.055759538009306775e+00,9.882509487280789484e-01,-1.327470776838346689e+00,-3.597461892740005940e-01,1.221335051133947580e+00,2.486164814864207651e-01,4.767694558011898454e-01,1.390906413294170862e+00,-1.111539861045599986e+00,-4.269445059545616261e-01,1.186685265612739348e+00,2.486164814864207928e-01,4.767694558011899009e-01,1.390906413294170862e+00,-1.291141336046157662e+00,2.740496642901932844e-01,1.331829731463108679e+00,1.786375727241707123e+00,8.984514782605360073e-02,3.005954302872955800e-02,-1.306347037660214649e+00,3.310259565581892827e-01,1.019977610124605860e+00,1.677632180065266265e+00,-4.307512804500870374e-01,-6.710584353829258941e-02,-1.306383267342646093e+00,3.575294893914248151e-01,1.008332002280025064e+00,1.947745888061188424e+00,4.274627505066901090e-02,-1.614656731493196995e+00,-1.209453098830143070e+00,3.706597578328633125e-01,8.015119832314464565e-01,1.947745888061188424e+00,4.274627505066900396e-02,-1.614656731493196995e+00
|
||||
2.666666999999999788e-01,-1.222292399999999946e+00,-4.043113000000000262e-02,9.173989999999999645e-01,1.472276038598512304e+00,5.584201040503608549e-02,1.077326288855094162e-02,-1.211213886520904115e+00,-4.235709443242101357e-02,8.960566121500023185e-01,1.472276038598512304e+00,5.584201040503608549e-02,1.077326288855094162e-02,-1.311394493266531791e+00,-1.498011452154978107e-01,8.518086242296839528e-01,1.634581981427777331e+00,-1.754475292635700456e-01,-3.342469682452184898e-01,-1.227388028976466039e+00,-1.513815197451447436e-01,4.515090183847471628e-01,1.641738909290462400e+00,4.833216223357650887e-01,-2.900865310351479209e-01,-1.232328318461117345e+00,-1.499687344672225031e-01,4.889633422988606815e-01,1.852022381406074114e+00,7.555842563779832100e-01,-3.385423186848218052e-02,-1.520107752868819606e+00,-1.708890098650914235e-02,1.788923647668192451e-01,1.782917999390273733e+00,6.125523225030262697e-01,-1.167228600838993019e-01,-1.586771941706282441e+00,-8.127336301138017929e-03,1.717149966058048038e-01,1.495595127364611310e+00,5.936957942963119184e-01,-2.928595054809908782e-01,-1.440121879261131665e+00,-5.368442515936638904e-02,6.566643551410705770e-02,1.495595127364611310e+00,5.936957942963119184e-01,-2.928595054809909337e-01,-1.314667065091699172e+00,5.107833579476490221e-02,8.319822594536623317e-01,1.554427700781451316e+00,-5.932791839265944001e-01,-2.002600626285501173e-01,-1.080156044297693629e+00,-3.251823710944047596e-03,5.083805521054807208e-01,1.557051893589480818e+00,-1.589173091673098115e-01,-2.072368625191589875e-01,-1.108406811148167304e+00,1.097519726396350981e-03,5.345779234288730031e-01,1.511383233945107651e+00,1.278918715644861148e-01,-3.558767193819474262e-01,-1.171719516913169556e+00,-4.010882671543237153e-03,8.692170468707843822e-02,1.518074563904119101e+00,7.753563840520320827e-02,-3.439202052078573768e-01,-1.220709188480606056e+00,1.985204748070652780e-02,4.684040015554807868e-02,1.738269827799980183e+00,3.593287825478090614e-02,-1.842670517575849265e-01,-1.037177885221677531e+00,-1.287029937412734193e-02,3.826746539469582514e-02,1.738269827799980183e+00,3.593287825478089920e-02,-1.842670517575848710e-01,-1.305187407299402969e+00,-3.638549957269301277e-02,9.720718569849978730e-01,1.452900468906300757e+00,5.589537893596907558e-02,-1.458411574196699255e-04,-1.294414208219697215e+00,-3.253783720423962522e-02,1.003388811577970330e+00,1.427277971689300928e+00,5.670789183348307755e-02,-1.186167427869565597e-02,-1.291894052535891957e+00,-2.777193259003452042e-02,1.036151458753732824e+00,1.380995405061988590e+00,5.670376963090609235e-02,-2.351131670729132705e-02,-1.296465198346758552e+00,-2.087899141438956385e-02,1.070908562334669245e+00,1.334841787534556623e+00,5.598301110214998211e-02,-3.304158452417892827e-02,-1.306045097426537627e+00,-1.367304301286249683e-02,1.099466024747829174e+00,1.296097393350922333e+00,5.479753771096541187e-02,-4.182673187391080377e-02,-1.309052135872401212e+00,-4.268128512237644168e-02,1.009606650395982852e+00,1.266606934605907231e+00,5.309552715701960912e-02,-4.980621427797190387e-02,-1.307056512365851297e+00,-3.364144256829809665e-02,1.038641943840720616e+00,1.266606934615630564e+00,5.309552715693440644e-02,-4.980621409475576022e-02,-1.210066322396287530e+00,-1.309242582044311404e-02,1.053370146770371552e+00,1.256796902375429514e+00,4.676862501679317219e-02,-4.765434292217345796e-02,-1.248585584211393762e+00,-1.058464715442321430e-01,1.501522641888539678e+00,1.266606934605907231e+00,5.309552715701960912e-02,-4.980621427797190387e-02,-1.263504982847275304e+00,2.805519940014554181e-01,1.357050648969669426e+00,1.266606934605907231e+00,5.309552715701960912e-02,-4.980621427797190387e-02,-1.261359614927666462e+00,-1.272178206931178224e-01,1.471359465365116970e+00,8.276748676968578300e-01,-1.269976058690657494e-01,-4.813556396455954678e-01,-1.317204202594905338e+00,-3.310988200182067853e-01,1.234625063623445484e+00,1.352885361156173638e-01,-1.021022412270630841e+00,1.131172699586465269e+00,-1.312744394427014738e+00,-3.589233158442718952e-01,1.241255771763074778e+00,1.714940254715899559e-01,5.351327315915066496e-01,1.356715194717479145e+00,-1.095153427143405134e+00,-4.272793341339278794e-01,1.223255562969056243e+00,1.714940254715899837e-01,5.351327315915066496e-01,1.356715194717479145e+00,-1.275534961514862564e+00,2.816193454747970004e-01,1.319850272395543644e+00,1.773740339526479470e+00,8.974564855778066619e-02,6.886513638857623409e-03,-1.289420972423070522e+00,3.349882992830997552e-01,1.007299172099972218e+00,1.661173477479853666e+00,-4.469377920845841734e-01,-8.527871924808337611e-02,-1.288614781717628999e+00,3.612913936527570313e-01,9.952345117056881074e-01,1.963640031832647459e+00,2.752553004599248704e-02,-1.639264797754863334e+00,-1.188333279659737451e+00,3.686228156053745764e-01,7.897296397594817385e-01,1.963640031832647459e+00,2.752553004599248704e-02,-1.639264797754863334e+00
|
||||
2.833333000000000101e-01,-1.214141010000000076e+00,-4.505714999999999720e-02,9.166950099999999768e-01,1.441746097685459471e+00,5.890016628730235931e-02,1.750862208471589765e-03,-1.203140297015730775e+00,-4.771376944972933326e-02,8.953908553352817323e-01,1.441746097685459471e+00,5.890016628730235931e-02,1.750862208471589765e-03,-1.304226000255516160e+00,-1.557211365799049674e-01,8.547171328879739072e-01,1.617462030564303488e+00,-2.222711674898816270e-01,-3.501940593196493645e-01,-1.207170983032522793e+00,-1.708456835484169767e-01,4.573772725599162814e-01,1.622453730140868133e+00,4.923642612362424398e-01,-3.154638223079389014e-01,-1.211122319020770721e+00,-1.689781553152521765e-01,4.946807535065423367e-01,1.838202681795817028e+00,7.693412182066547977e-01,-5.807386218478140238e-02,-1.501325275902738454e+00,-3.474384025045829105e-02,1.874651018909334055e-01,1.767445877927307452e+00,6.207376232507435532e-01,-1.415667095583450219e-01,-1.567906514509076477e+00,-2.480239209001118550e-02,1.808284910989138294e-01,1.502802398482434576e+00,6.029287906908389338e-01,-3.037350362025632022e-01,-1.422701784082864629e+00,-7.164152922053965145e-02,7.335910957681991695e-02,1.502802398482434576e+00,6.029287906908389338e-01,-3.037350362025632577e-01,-1.306105907292095747e+00,4.447918829722146555e-02,8.287815159459752667e-01,1.563973315910557105e+00,-5.942908007818459293e-01,-2.151225768691245044e-01,-1.072111418114518377e+00,-9.467337737417508281e-03,5.040871753578983760e-01,1.565097311889940723e+00,-1.269351060310111023e-01,-2.182214949672225401e-01,-1.099132416133394630e+00,-5.342598537826634408e-03,5.312820997214344754e-01,1.512457383757804585e+00,1.625965981851555386e-01,-3.691581599829144578e-01,-1.176790684659971387e+00,-3.563707255653451693e-03,8.586463987078296611e-02,1.523682193575694122e+00,8.062378767754051212e-02,-3.499479209262502666e-01,-1.225664223234845807e+00,2.086800840040435243e-02,4.598473483130819522e-02,1.771738260193578718e+00,3.021910673828394345e-02,-1.710497920106487657e-01,-1.041659195042423436e+00,-9.372982650446910063e-03,3.852695163582262050e-02,1.771738260193578718e+00,3.021910673828393304e-02,-1.710497920106487102e-01,-1.296841468271267006e+00,-3.874065818741737055e-02,9.714472408634861056e-01,1.421967834619202842e+00,5.849396521827659318e-02,-1.032865629518615359e-02,-1.285945746016766700e+00,-3.401766313073863179e-02,1.002601715833443929e+00,1.395839373920323645e+00,5.881576554606301327e-02,-2.330187851185475112e-02,-1.283287918894721269e+00,-2.825222863675589183e-02,1.035192336602615004e+00,1.348726364695099322e+00,5.824561028919668371e-02,-3.617099627388275368e-02,-1.287691371010038610e+00,-2.019527204108214485e-02,1.069719825295485816e+00,1.301767694424017074e+00,5.699589770216050011e-02,-4.667055053563657491e-02,-1.297113844097576241e+00,-1.193669534802111604e-02,1.098043555923849501e+00,1.262349761700988449e+00,5.527281243887725848e-02,-5.632761844115144467e-02,-1.300702539678834313e+00,-4.397350709546093278e-02,1.009239506870958758e+00,1.232346489136663781e+00,5.303601254219630912e-02,-6.507939220959312043e-02,-1.298523830845709881e+00,-3.397543067150308321e-02,1.037945625167336239e+00,1.232346489146370905e+00,5.303601254837815582e-02,-6.507939202648216348e-02,-1.201312568324261365e+00,-1.393281744393454896e-02,1.051813902561985259e+00,1.222430826037510521e+00,4.599133007549518343e-02,-6.246270023145293615e-02,-1.231728493368288824e+00,-9.015389392005868086e-02,1.506855063758119062e+00,1.232346489136663781e+00,5.303601254219630912e-02,-6.507939220959312043e-02,-1.248270066117820987e+00,2.901479429931169696e-01,1.345052491186457200e+00,1.232346489136663781e+00,5.303601254219630912e-02,-6.507939220959312043e-02,-1.244852496987174817e+00,-1.123683359917875546e-01,1.477461072269716569e+00,7.865644206456466891e-01,-1.734851325137016231e-01,-5.038490378066335929e-01,-1.301679117884741110e+00,-3.280088735976504077e-01,1.251631157236462677e+00,2.471110570319610868e-03,-9.773311972563255567e-01,1.245213191266329567e+00,-1.297543173093008484e+00,-3.553076515924641909e-01,1.260333422916827262e+00,9.522918100817487352e-02,5.889660788306479988e-01,1.318306108940975330e+00,-1.079283073145241856e+00,-4.238575097007046266e-01,1.257919397110860427e+00,9.522918100817487352e-02,5.889660788306479988e-01,1.318306108940975330e+00,-1.260364001320065874e+00,2.901068053534448521e-01,1.307857563008202550e+00,1.756661807356585614e+00,8.910683262011116768e-02,-1.322987044690524319e-02,-1.273121931252928052e+00,3.383984650651599702e-01,9.944338758822546254e-01,1.640620595122553427e+00,-4.587435274230626803e-01,-9.676419448360287778e-02,-1.271655683295763284e+00,3.644384208502871592e-01,9.818708520846660681e-01,1.975216634391167236e+00,8.898778899052285293e-03,-1.659532181687549013e+00,-1.169219949559845428e+00,3.657000853159250719e-01,7.773037226302468294e-01,1.975216634391167236e+00,8.898778899052283559e-03,-1.659532181687549013e+00
|
||||
2.999999999999999889e-01,-1.206133689999999925e+00,-4.916249000000000313e-02,9.162953999999999821e-01,1.405216543525957817e+00,5.942661481364230891e-02,-7.964932293543634800e-03,-1.195169886610418342e+00,-5.267708629773823481e-02,8.950967456290332969e-01,1.405216543525957817e+00,5.942661481364230891e-02,-7.964932293543634800e-03,-1.297098821207881336e+00,-1.613275763566333065e-01,8.584385166294870029e-01,1.596933923915897946e+00,-2.736669752246871368e-01,-3.643832856246012608e-01,-1.186195698406096843e+00,-1.921763682498505155e-01,4.655330662005853215e-01,1.599371931179660589e+00,4.935362284973565661e-01,-3.437773959134802770e-01,-1.189425911670574765e+00,-1.896670841667134066e-01,5.026302300535003820e-01,1.816082390096084076e+00,7.761718402320348931e-01,-8.964380105643175722e-02,-1.479914891135426291e+00,-5.544597648594218331e-02,1.956792385516472055e-01,1.743485169668796742e+00,6.160120421048415063e-01,-1.740516161588901989e-01,-1.546290182691979931e+00,-4.440445405599033335e-02,1.887262692652849350e-01,1.495852410477831684e+00,5.973405649850944688e-01,-3.256548406714347976e-01,-1.401579953278299762e+00,-9.462108987377788882e-02,8.211845782444149311e-02,1.495852410477831684e+00,5.973405649850943577e-01,-3.256548406714348531e-01,-1.297489050677936850e+00,3.780274475641072496e-02,8.252222059988360003e-01,1.572395142488239861e+00,-5.936650499757961663e-01,-2.269883683701652832e-01,-1.064406716478441428e+00,-1.536913245923682975e-02,4.992024878079592831e-01,1.572127644935115809e+00,-9.549997589373572515e-02,-2.262209337547161914e-01,-1.090228333740689948e+00,-1.153582507706844146e-02,5.273124453459827610e-01,1.512675522798503591e+00,1.963493244234494339e-01,-3.794139848131991011e-01,-1.181752396790315185e+00,-3.316932968509076624e-03,8.460884206276753083e-02,1.529605170424788607e+00,7.531384528508512644e-02,-3.514024270505117231e-01,-1.230298245748473907e+00,2.135698239152883718e-02,4.447859438818860256e-02,1.791525416714421226e+00,1.934938752593418770e-02,-1.622794265639204148e-01,-1.045959593938167398e+00,-7.245237155193432615e-03,3.907850589054995272e-02,1.791525416714421226e+00,1.934938752593417383e-02,-1.622794265639203592e-01,-1.288741579770612322e+00,-4.022888805472721319e-02,9.708224387565128621e-01,1.385520162693222535e+00,5.799768090502357282e-02,-2.381468153228696177e-02,-1.277781916832659403e+00,-3.449672517343396749e-02,1.001784904521192177e+00,1.359574151373700968e+00,5.722002972683658956e-02,-4.082014859068345408e-02,-1.275040454364479103e+00,-2.759916369252620252e-02,1.034147886623023593e+00,1.313007353949585898e+00,5.535051923180617922e-02,-5.764551800366444351e-02,-1.279316173258785438e+00,-1.823566531651736600e-02,1.068360408145710538e+00,1.266655733968291120e+00,5.286478586694977333e-02,-7.133275067056692176e-02,-1.288594510267816684e+00,-8.770122366093265065e-03,1.096352045416213228e+00,1.227757873599501837e+00,4.987048464005919973e-02,-8.389221976200536557e-02,-1.292792153650451192e+00,-4.376305897611607043e-02,1.008697225039671297e+00,1.198155300809324864e+00,4.635602452223560460e-02,-9.526298401623735368e-02,-1.290427446188775695e+00,-3.284310227047423925e-02,1.037050571159169321e+00,1.198155300817792535e+00,4.635602453466459993e-02,-9.526298383350575993e-02,-1.193006659993417040e+00,-1.531882173934929342e-02,1.050911849613488380e+00,1.188549719865098275e+00,3.730959577109578540e-02,-9.168418408812946396e-02,-1.226528390874755292e+00,-7.201356637701494812e-02,1.514186704277161066e+00,1.198155300809324864e+00,4.635602452223560460e-02,-9.526298401623735368e-02,-1.235018034313480229e+00,3.007800925911917611e-01,1.334033945367682383e+00,1.198155300809324864e+00,4.635602452223560460e-02,-9.526298401623735368e-02,-1.240180169607411065e+00,-9.485055003955208952e-02,1.485519148437874248e+00,7.596002828604437873e-01,-2.367736149895739994e-01,-4.905473342195500464e-01,-1.285762206929087936e+00,-3.226954396297612715e-01,1.269328859602463000e+00,-8.361088687579343315e-02,-9.391181470283141985e-01,1.315624224232255779e+00,-1.281972812407534024e+00,-3.495140555601345400e-01,1.279549479742219331e+00,3.589902959935425270e-02,6.281868092818171379e-01,1.284327753065483746e+00,-1.063836513066889644e+00,-4.179061414392147844e-01,1.288574960091656285e+00,3.589902959935425963e-02,6.281868092818171379e-01,1.284327753065483746e+00,-1.246980584062711284e+00,2.997948452372802830e-01,1.296809567141635533e+00,1.732391797216468188e+00,8.200568026608451300e-02,-2.918043805252706901e-02,-1.257051952636660364e+00,3.406057442648724454e-01,9.822268357638384018e-01,1.616132716584579132e+00,-4.583508402506719093e-01,-9.816740021569403396e-02,-1.255301202251895676e+00,3.663457140420378622e-01,9.690949061164901845e-01,1.974766692634592369e+00,-1.305821060549745144e-02,-1.671774344921328703e+00,-1.153402387032596454e+00,3.618910509729652003e-01,7.643043564558553715e-01,1.974766692634592369e+00,-1.305821060549745144e-02,-1.671774344921328703e+00
|
||||
3.166667000000000232e-01,-1.197702599999999951e+00,-5.242030000000000300e-02,9.159697399999999767e-01,1.364627174401283449e+00,6.270521653946310725e-02,-1.853556762858526302e-02,-1.186851709544051170e+00,-5.687871463818132411e-02,8.948908160647457422e-01,1.364627174401283449e+00,6.270521653946310725e-02,-1.853556762858526302e-02,-1.289792939489182499e+00,-1.660867034495420169e-01,8.630320526117104540e-01,1.570814534831253217e+00,-3.266719975789168506e-01,-3.773366189363683287e-01,-1.165619927679109713e+00,-2.152918920333033448e-01,4.760189819454982429e-01,1.570815812116551635e+00,4.842357200362606418e-01,-3.773217050660451211e-01,-1.168461924315337130e+00,-2.118389930183496861e-01,5.128648247290961137e-01,1.782410509377710506e+00,7.738115941792177432e-01,-1.324672353703441052e-01,-1.456482567132930228e+00,-7.950335356406262877e-02,2.027850737573175799e-01,1.709960461956571365e+00,5.986290767946381708e-01,-2.152997298243496671e-01,-1.522511823349852467e+00,-6.722611070040215853e-02,1.947014508200172467e-01,1.483697040250901766e+00,5.786811835692966532e-01,-3.536699561548047321e-01,-1.377424337346599081e+00,-1.221819272509835352e-01,9.098324555914079348e-02,1.483697040250901766e+00,5.786811835692966532e-01,-3.536699561548047877e-01,-1.288719712054109845e+00,3.153400300275564783e-02,8.217856597790926809e-01,1.579683419939267308e+00,-5.923909622005480990e-01,-2.388513031950998955e-01,-1.056783757960816583e+00,-2.124358753279863288e-02,4.944417403528010846e-01,1.578185176634144149e+00,-6.597652935201980817e-02,-2.343762846940368461e-01,-1.081470896431738771e+00,-1.766963900629133638e-02,5.233579368754999184e-01,1.512314555062295396e+00,2.278186956113901485e-01,-3.897458269683562460e-01,-1.185809434722003841e+00,-3.381198503245587753e-03,8.365349687063911022e-02,1.535686671012400861e+00,6.293257224994269761e-02,-3.520569908046576324e-01,-1.233774081657950550e+00,2.140240646040066780e-02,4.289685449173812753e-02,1.802256831894233802e+00,3.762719060135968560e-03,-1.582603273495986618e-01,-1.049258149697830600e+00,-6.449532976922495164e-03,4.042161864624751327e-02,1.802256831894233802e+00,3.762719060135955983e-03,-1.582603273495986063e-01,-1.280018733287993760e+00,-4.061458588801875741e-02,9.703917021701005119e-01,1.345894199034014083e+00,6.068364998297675478e-02,-3.448338071512457165e-02,-1.268888169425103962e+00,-3.376115170569618518e-02,1.001064279840251370e+00,1.321250142806116079e+00,5.933943228782544155e-02,-5.163816951089370000e-02,-1.265957125025075403e+00,-2.566272085171853595e-02,1.033131112274926044e+00,1.277118035717898836e+00,5.692913343508590462e-02,-6.857627359010610990e-02,-1.270013356106546087e+00,-1.505723765448054204e-02,1.067006433636334295e+00,1.233217059934168081e+00,5.401741099032233984e-02,-8.232638072043914346e-02,-1.279096715679739704e+00,-4.589705886882811461e-03,1.094703995285104536e+00,1.196379019177974623e+00,5.064481872004686358e-02,-9.492539609687324076e-02,-1.283940726903386231e+00,-4.207721593795282072e-02,1.008121804920153242e+00,1.168344578609267215e+00,4.678454763819754614e-02,-1.063073851656837349e-01,-1.281370200592490072e+00,-3.034728755106762266e-02,1.036131637238965730e+00,1.168344578617792173e+00,4.678454765606170768e-02,-1.063073849834005463e-01,-1.183731282405667162e+00,-1.433380977392872263e-02,1.049373013943358579e+00,1.159247407114911033e+00,3.827043483122472001e-02,-1.025817896709521893e-01,-1.211567103110639643e+00,-5.454534276411298482e-02,1.518335688407664197e+00,1.168344578609267215e+00,4.678454763819754614e-02,-1.063073851656837349e-01,-1.219957616321002636e+00,3.115547084677469658e-01,1.323776540782839906e+00,1.168344578609267215e+00,4.678454763819754614e-02,-1.063073851656837349e-01,-1.225539674825001812e+00,-7.808627774499682372e-02,1.490401493178880266e+00,7.263834110759930240e-01,-2.741781431640647471e-01,-5.042085371429728680e-01,-1.272538756355054312e+00,-3.146490944490615282e-01,1.284104675671003282e+00,-1.589441583499704713e-01,-8.939449417433572576e-01,1.375899071107968386e+00,-1.269117795748237576e+00,-3.408690696901037209e-01,1.295888931022436630e+00,-2.597513142067847669e-02,6.695445250686109517e-01,1.247395194580616096e+00,-1.051456345236019718e+00,-4.083638456462610478e-01,1.316145534291646602e+00,-2.597513142067848016e-02,6.695445250686109517e-01,1.247395194580616096e+00,-1.232061695268672041e+00,3.095855708625012692e-01,1.286637054880539033e+00,1.707738314910390631e+00,8.517952005527437698e-02,-4.325837376455884953e-02,-1.242967472480052793e+00,3.428242113007496372e-01,9.711921093975905972e-01,1.589341604507716221e+00,-4.531235249249817576e-01,-9.785276705442498557e-02,-1.241024766474515761e+00,3.682281043231662720e-01,9.574470426467994733e-01,1.969746387911842644e+00,-3.715915592870985829e-02,-1.683125692823316921e+00,-1.140761023747584035e+00,3.578078718983369044e-01,7.520669500208079228e-01,1.969746387911842644e+00,-3.715915592870985135e-02,-1.683125692823316921e+00
|
||||
3.333332999999999990e-01,-1.188909009999999933e+00,-5.517338000000000103e-02,9.158782699999999943e-01,1.326306964121934273e+00,6.405852201961619030e-02,-3.116323522743780217e-02,-1.178156612323546959e+00,-6.054414120614133588e-02,8.949622190506645314e-01,1.326306964121934273e+00,6.405852201961619030e-02,-3.116323522743780217e-02,-1.282280483656635717e+00,-1.698288933249018362e-01,8.675154555885261631e-01,1.539041167386613562e+00,-3.797516984671934770e-01,-3.847917180136588011e-01,-1.145792583896972028e+00,-2.391256063762508544e-01,4.878685990542523387e-01,1.537821357116941234e+00,4.636817893735764584e-01,-4.113185882814697214e-01,-1.148600549649854363e+00,-2.344276741757873317e-01,5.244186867603510827e-01,1.738627552414583555e+00,7.610689577356166691e-01,-1.812328858057007386e-01,-1.431837065849509871e+00,-1.072228740551271209e-01,2.078526133429677292e-01,1.669980192169793431e+00,5.721480629414461561e-01,-2.579234920950209675e-01,-1.497443971830731302e+00,-9.393877026827418542e-02,1.980953184905493991e-01,1.462424606910171621e+00,5.501437417878999314e-01,-3.846675620659920081e-01,-1.351446819322001280e+00,-1.544959876080604644e-01,9.887011323791587702e-02,1.462424606910171621e+00,5.501437417878999314e-01,-3.846675620659921191e-01,-1.279304007006738964e+00,2.605175879000470179e-02,8.187479349284922936e-01,1.584443612062293782e+00,-5.926834106980030104e-01,-2.473874818366282313e-01,-1.048060425850550370e+00,-2.665450661353752776e-02,4.905134738604937650e-01,1.582124319546394098e+00,-3.858837191212202700e-02,-2.402009748879007922e-01,-1.071668576323933531e+00,-2.333502355487608593e-02,5.201405656329501914e-01,1.510116047068815526e+00,2.567184651876866508e-01,-3.982259595719233047e-01,-1.187925273353266808e+00,-4.172242486705821096e-03,8.362269328164578797e-02,1.539558333628514797e+00,5.205728214687182359e-02,-3.515952459916886208e-01,-1.235422268978301652e+00,2.059504929950789487e-02,4.231222254046810433e-02,1.807556273087594256e+00,-8.841839586835101988e-03,-1.554484982962623940e-01,-1.050811195289237165e+00,-6.731216096491632328e-03,4.219750157050656397e-02,1.807556273087594256e+00,-8.841839586835115866e-03,-1.554484982962623385e-01,-1.270964891143996134e+00,-4.045632551710799663e-02,9.699829031533118151e-01,1.308291050620751461e+00,6.146588061329921054e-02,-4.674707231080147546e-02,-1.259690788744140200e+00,-3.257331501859193207e-02,1.000354169806258353e+00,1.284607195431926474e+00,5.949331831386328595e-02,-6.353942602718316846e-02,-1.256603546136347171e+00,-2.334096679712655345e-02,1.032098413380892588e+00,1.242228809584208005e+00,5.651412120303668518e-02,-8.008706857379345456e-02,-1.260480256963690371e+00,-1.153235272528854195e-02,1.065594935988550818e+00,1.200083735210511815e+00,5.318495370651737247e-02,-9.349251288779253377e-02,-1.269404058785648992e+00,-7.630355783759361354e-05,1.092951255705681968e+00,1.164725095041269753e+00,4.946306185109240749e-02,-1.057573555293301049e-01,-1.274764703022930989e+00,-4.010733515488520973e-02,1.007547670071867962e+00,1.137821991471228644e+00,4.531944199345289831e-02,-1.168173667296441010e-01,-1.272029687322456803e+00,-2.755391259333589415e-02,1.035182445321791711e+00,1.137821991479457617e+00,4.531944201686555901e-02,-1.168173665480038703e-01,-1.174238449597512224e+00,-1.271615111945267884e-02,1.047921842266840597e+00,1.129077417333011590e+00,3.740629462076805467e-02,-1.130469408159910372e-01,-1.198623712455659129e+00,-3.589396840482589335e-02,1.522277312521859383e+00,1.137821991471228644e+00,4.531944199345289831e-02,-1.168173667296441010e-01,-1.205761914058358863e+00,3.231240959732377682e-01,1.314316547267875723e+00,1.137821991471228644e+00,4.531944199345289831e-02,-1.168173667296441010e-01,-1.212867283466231072e+00,-6.014600111884407796e-02,1.495098511273975195e+00,6.931095748401916445e-01,-3.034059201324736943e-01,-5.125995517310591998e-01,-1.262146192473578843e+00,-3.043302561026999808e-01,1.298439172389362462e+00,-1.972661531301812543e-01,-8.520481367392860328e-01,1.396893722184604281e+00,-1.259147661191502454e+00,-3.300102144743311539e-01,1.311462508961982687e+00,-6.589130011096167028e-02,7.071101680542049017e-01,1.213654314100876208e+00,-1.042444902710098154e+00,-3.982457774097112879e-01,1.338410685410545753e+00,-6.589130011096168416e-02,7.071101680542049017e-01,1.213654314100876208e+00,-1.217960472041699660e+00,3.201355943625196487e-01,1.277276141162963397e+00,1.679431796298673563e+00,8.744480861454964615e-02,-5.261095929996374015e-02,-1.229808289540046840e+00,3.445899971549661323e-01,9.610628140717436541e-01,1.559848579641950561e+00,-4.435756490982594724e-01,-9.090837491633435574e-02,-1.227887371596039223e+00,3.696227227095095769e-01,9.466499214798541617e-01,1.960738645643268496e+00,-6.392869546737868502e-02,-1.688511664329123363e+00,-1.130173295204229156e+00,3.533635700889490305e-01,7.404219383460958204e-01,1.960738645643268496e+00,-6.392869546737867115e-02,-1.688511664329123363e+00
|
||||
3.499999999999999778e-01,-1.179244930000000080e+00,-5.652168999999999943e-02,9.159010199999999546e-01,1.282387244621136180e+00,6.186195168386809939e-02,-3.989290741310964894e-02,-1.168514226215621399e+00,-6.286875183772473730e-02,8.952489711582698462e-01,1.282387244621136180e+00,6.186195168386809939e-02,-3.989290741310964894e-02,-1.273275503129513098e+00,-1.726310302853760748e-01,8.725425945000206962e-01,1.499439782410545874e+00,-4.261147652285312004e-01,-3.907122905454528672e-01,-1.128043255086089935e+00,-2.640104699216752615e-01,5.009434507970611516e-01,1.499351816831115958e+00,4.288145580727847905e-01,-4.499960917227008861e-01,-1.131260020911823982e+00,-2.576102950579614581e-01,5.371359809840514643e-01,1.683013898598517466e+00,7.347410592604093349e-01,-2.409207250712255832e-01,-1.406275581807678421e+00,-1.389094739137668455e-01,2.101885533349149848e-01,1.619621200666507388e+00,5.242750446455090030e-01,-3.090358989521951316e-01,-1.471158190097944463e+00,-1.246182330522511428e-01,1.974627565120924411e-01,1.464105394057755971e+00,5.051821412523030963e-01,-4.042199423004730341e-01,-1.322419073537207446e+00,-1.897060689313276316e-01,1.054397414814348816e-01,1.464105394057755971e+00,5.051821412523030963e-01,-4.042199423004730896e-01,-1.269103596793643041e+00,2.090039163646478793e-02,8.152316506588103140e-01,1.587955061924374078e+00,-5.988317982439934628e-01,-2.520464328394476650e-01,-1.036788811115944897e+00,-3.174810966580959848e-02,4.873226741086996161e-01,1.584969972715507547e+00,-1.090746651644632775e-02,-2.425283907384791771e-01,-1.059248858486924627e+00,-2.876270020116128423e-02,5.176375002728983432e-01,1.506269445200314472e+00,2.858644334942807563e-01,-4.041165140704363057e-01,-1.187696491957762168e+00,-5.540661913179194265e-03,8.474879972963017538e-02,1.541155834491557242e+00,4.901719121971956361e-02,-3.497902880350216570e-01,-1.235095295934414805e+00,1.916360380656014634e-02,4.328808379855765553e-02,1.810008215695767753e+00,-1.262820649100459235e-02,-1.526743830217133779e-01,-1.050409410568789781e+00,-7.646007891863461359e-03,4.388384995877109285e-02,1.810008215695767753e+00,-1.262820649100460622e-02,-1.526743830217133224e-01,-1.261238792220015892e+00,-3.895731229704429283e-02,9.692449029274492478e-01,1.266552738981479242e+00,5.825298708017897370e-02,-5.707694570920276989e-02,-1.249929341459854903e+00,-2.990618613591202596e-02,9.992761858628351757e-01,1.245801430455666381e+00,5.532242722568554705e-02,-7.564238416489105221e-02,-1.246791388324333782e+00,-1.948294543569378118e-02,1.030644619240296489e+00,1.208844690279273548e+00,5.138265429941333423e-02,-9.391909828026311080e-02,-1.250593613167670259e+00,-6.529354817522920254e-03,1.063724224883103142e+00,1.172144317967331872e+00,4.725566705361291392e-02,-1.087118607894967393e-01,-1.259437311355469769e+00,5.806314873903171969e-03,1.090722215237632131e+00,1.141367801471492971e+00,4.279209973532348277e-02,-1.222429911339276837e-01,-1.265067109215865182e+00,-3.581053667890195941e-02,1.006099965135510477e+00,1.117962182387094439e+00,3.793776920050566381e-02,-1.344392033904766026e-01,-1.262249952702485301e+00,-2.273669830214656434e-02,1.033484046483659657e+00,1.117962182393962722e+00,3.793776922751709857e-02,-1.344392032093933154e-01,-1.164408741600889030e+00,-1.133887731235182911e-02,1.047098376492176186e+00,1.110335141429121375e+00,3.039983004336474157e-02,-1.305913085322072398e-01,-1.192455568642935448e+00,-2.022906233634554768e-02,1.524341914353993577e+00,1.117962182387094439e+00,3.793776920050566381e-02,-1.344392033904766026e-01,-1.193605574685225434e+00,3.332959334155629061e-01,1.306911251704828469e+00,1.117962182387094439e+00,3.793776920050566381e-02,-1.344392033904766026e-01,-1.206978682898204758e+00,-4.479527535203699229e-02,1.497596672280625318e+00,6.779548055576525289e-01,-3.495414525312803278e-01,-5.252609198581664751e-01,-1.254226967580675201e+00,-2.949601952888328826e-01,1.308085803850636220e+00,-2.695176752855294455e-01,-8.170827636714362852e-01,1.448612823285921003e+00,-1.251858226615618852e+00,-3.200770807256515527e-01,1.322284038934484984e+00,-1.393541077001889394e-01,7.298560678761473186e-01,1.163444137646850285e+00,-1.036693210565998502e+00,-3.873329730824713879e-01,1.361310217431939806e+00,-1.393541077001889394e-01,7.298560678761473186e-01,1.163444137646850285e+00,-1.205679868895246809e+00,3.297478600358013101e-01,1.269879505354046145e+00,1.652163405856858835e+00,8.206944026358174715e-02,-8.313356536778597483e-02,-1.215841711578956819e+00,3.458160002012172773e-01,9.530707165706475692e-01,1.538023261941388276e+00,-4.158095423170151128e-01,-1.067153605032005598e-01,-1.213734815540676637e+00,3.705493213525570262e-01,9.381749936539639512e-01,1.933513930286095972e+00,-8.460502972662481413e-02,-1.711391795246466563e+00,-1.122638038733153820e+00,3.484106068922336319e-01,7.294799137555977309e-01,1.933513930286095972e+00,-8.460502972662481413e-02,-1.711391795246466563e+00
|
||||
3.666667000000000121e-01,-1.168836889999999906e+00,-5.779001999999999750e-02,9.154939800000000405e-01,1.244959868228120659e+00,5.771996548478928318e-02,-5.205791299381910819e-02,-1.158123904117800418e+00,-6.501305781156506425e-02,8.951224317696451216e-01,1.244959868228120659e+00,5.771996548478928318e-02,-5.205791299381910819e-02,-1.263923329467366408e+00,-1.745095656504295212e-01,8.762741210127044100e-01,1.455226536543548610e+00,-4.689071264979815523e-01,-3.883646665644257534e-01,-1.111384252535559058e+00,-2.879161170861473940e-01,5.137780470685104905e-01,1.459726255676395912e+00,3.816685376333994739e-01,-4.822950290597725065e-01,-1.115413758182646209e+00,-2.795186974069465702e-01,5.494847391176453932e-01,1.623372494964581580e+00,6.956221560883172339e-01,-2.967405125670801169e-01,-1.379974018203043995e+00,-1.742571383408673957e-01,2.095642526469522759e-01,1.568980588933258424e+00,4.723485047057502384e-01,-3.512199167384025822e-01,-1.444101697105414583e+00,-1.596479053395932490e-01,1.937481393951240582e-01,1.461485586738736187e+00,4.570799037567656598e-01,-4.172700251278119166e-01,-1.292351800764534708e+00,-2.283936307031470547e-01,1.096411796664917976e-01,1.461485586738736187e+00,4.570799037567656598e-01,-4.172700251278119721e-01,-1.257694145929904694e+00,1.668499505083820278e-02,8.117590251959801995e-01,1.588929718511347122e+00,-6.105613517406518476e-01,-2.501647282050321608e-01,-1.022657110065941843e+00,-3.578173058886845170e-02,4.853326394128137933e-01,1.585655632346933297e+00,1.800372308521309972e-02,-2.395000633622271780e-01,-1.043872982250112047e+00,-3.321065779324312850e-02,5.163288129945073912e-01,1.499449374614036268e+00,3.159416511274243944e-01,-4.059124280606683510e-01,-1.185341163996442182e+00,-7.492598840153991135e-03,8.766108658905574780e-02,1.539070095386122938e+00,5.678696023593771125e-02,-3.450671743873251485e-01,-1.233189586575677454e+00,1.700983244085800192e-02,4.659896722480541542e-02,1.810307243657131027e+00,-4.873291452203511696e-03,-1.472527286690397397e-01,-1.048361969437560326e+00,-8.797420552388416498e-03,4.574802303692846600e-02,1.810307243657131027e+00,-4.873291452203525574e-03,-1.472527286690396842e-01,-1.250770489062089874e+00,-3.742768248781448009e-02,9.679280453334933032e-01,1.230734277631347018e+00,5.371449800992499080e-02,-6.867625240670910403e-02,-1.239437682924152684e+00,-2.741543861195256185e-02,9.976441689044091010e-01,1.212097022694704984e+00,5.044496715190494029e-02,-8.670487247243922890e-02,-1.236264833852172229e+00,-1.596666726433446440e-02,1.028649495278848081e+00,1.178912476592541392e+00,4.624510391825593925e-02,-1.044350108019628104e-01,-1.240016601609627234e+00,-1.996694425918797006e-03,1.061318913623215510e+00,1.145963798900973885e+00,4.196632823252099270e-02,-1.187703141144681868e-01,-1.248809274876778508e+00,1.111955097742071963e-02,1.087963696009666137e+00,1.118341256736733236e+00,3.741111328607865660e-02,-1.318770413307629452e-01,-1.254581802368757382e+00,-3.216967450437418358e-02,1.004196161589850478e+00,1.097343832491164850e+00,3.249861782230224760e-02,-1.436720475673480824e-01,-1.251720025130734770e+00,-1.854341421429321624e-02,1.031304920203098607e+00,1.097343832497028382e+00,3.249861785303862632e-02,-1.436720473868951520e-01,-1.153819065703090008e+00,-9.097568991296468843e-03,1.045373679025383140e+00,1.090401785776718313e+00,2.600862928079408429e-02,-1.401062871124525155e-01,-1.184322064097361071e+00,-4.445379248826313023e-03,1.525058259261960147e+00,1.097343832491164850e+00,3.249861782230224760e-02,-1.436720475673480824e-01,-1.180108574868965476e+00,3.435241031367544662e-01,1.299257586784388296e+00,1.097343832491164850e+00,3.249861782230224760e-02,-1.436720475673480824e-01,-1.198988955960696545e+00,-2.944824694560615325e-02,1.498800564519779055e+00,6.612007454400083972e-01,-3.875819110379896126e-01,-5.514585942725231948e-01,-1.249791043694925996e+00,-2.841566753690404346e-01,1.316394366167267016e+00,-3.227592273860226402e-01,-7.817059711629860130e-01,1.468826603217716187e+00,-1.248353464980006100e+00,-3.087292596667698952e-01,1.331631827099831522e+00,-2.023343071267366955e-01,7.515042374063555242e-01,1.102968332254254724e+00,-1.035861503738976896e+00,-3.781020285427739713e-01,1.380385977106558748e+00,-2.023343071267366955e-01,7.515042374063555242e-01,1.102968332254254724e+00,-1.192122304674415378e+00,3.392953851055203751e-01,1.262277647856085983e+00,1.622596627675052749e+00,8.198192485729935419e-02,-8.765879503451762256e-02,-1.203029185116982314e+00,3.460765792156283438e-01,9.451588811598201634e-01,1.511225897890899672e+00,-3.946389312657557213e-01,-9.673019482996610130e-02,-1.201266028745897163e+00,3.704691756923183532e-01,9.296685208012449575e-01,1.913204511221468396e+00,-1.100234233231171810e-01,-1.709998438148290445e+00,-1.115119046253464807e+00,3.435969800072027347e-01,7.194330235535862927e-01,1.913204511221468396e+00,-1.100234233231171810e-01,-1.709998438148290445e+00
|
||||
3.833332999999999879e-01,-1.157821489999999898e+00,-5.867246999999999740e-02,9.146310399999999508e-01,1.212868420512019485e+00,5.162087962787104134e-02,-6.571927997437673752e-02,-1.147114169574247278e+00,-6.667735678439537517e-02,8.945508159994949304e-01,1.212868420512019485e+00,5.162087962787104134e-02,-6.571927997437673752e-02,-1.254140512112780659e+00,-1.754665963451773614e-01,8.787861146002780011e-01,1.407050017218341553e+00,-5.053913594154595401e-01,-3.808853520068402054e-01,-1.096487978945560826e+00,-3.104800028734627793e-01,5.259519170414219680e-01,1.419765400246012499e+00,3.238512522700410790e-01,-5.091014150561548046e-01,-1.101685527915533314e+00,-2.998184475001655080e-01,5.609819969486777858e-01,1.562403220270274451e+00,6.448394083893375095e-01,-3.479555664880989441e-01,-1.353497666968383806e+00,-2.124416604703818767e-01,2.066177664801746583e-01,1.518098625429044279e+00,4.157442072790420440e-01,-3.867403358478835318e-01,-1.416796166330592799e+00,-1.980660282005905770e-01,1.875762459520790570e-01,1.464590015181416405e+00,4.071217921845322607e-01,-4.198455606469295720e-01,-1.261577353231950083e+00,-2.688234604586243193e-01,1.118894418808205060e-01,1.464590015181416405e+00,4.071217921845322607e-01,-4.198455606469296275e-01,-1.245364195263412466e+00,1.345259434452889674e-02,8.081541387731701054e-01,1.588456807461430031e+00,-6.267729948404053841e-01,-2.453555428458541188e-01,-1.006402823714332095e+00,-3.899448551578028194e-02,4.841936993971023839e-01,1.585116702768570196e+00,4.869537513501878689e-02,-2.342992526606841319e-01,-1.026266013603039706e+00,-3.686151040921151201e-02,5.158580729745785298e-01,1.490520225893910977e+00,3.475195700153843603e-01,-4.064369888050086699e-01,-1.181583973554131806e+00,-9.485112172915900752e-03,9.211575882506450874e-02,1.534228262483318783e+00,7.577949402213450536e-02,-3.403195655670165909e-01,-1.230347732994399479e+00,1.484679586162236317e-02,5.204092451054474766e-02,1.809835930449088526e+00,1.452479813973482116e-02,-1.418167155956268632e-01,-1.045433783361633839e+00,-9.948880111287059652e-03,4.756966581972248836e-02,1.809835930449088526e+00,1.452479813973480728e-02,-1.418167155956268077e-01,-1.239714970838638353e+00,-3.565538123557976391e-02,9.660191910911495317e-01,1.200235358645787009e+00,4.845626575727468577e-02,-7.885175367565283588e-02,-1.228381362897533524e+00,-2.483853027841296385e-02,9.954519678581834619e-01,1.183617828221118717e+00,4.619559985210400926e-02,-9.325610874627228430e-02,-1.225198674737370208e+00,-1.252217487421538634e-02,1.026121947915415555e+00,1.153875432862954353e+00,4.316842096908973803e-02,-1.073988680174065985e-01,-1.228937806117540443e+00,2.265696626302909911e-03,1.058430908020849159e+00,1.124299320337163621e+00,3.998663227269908665e-02,-1.188122048904413780e-01,-1.237727055159308254e+00,1.593769263413983422e-02,1.084796388793869637e+00,1.099494049904614634e+00,3.655128291287327441e-02,-1.292372775813746266e-01,-1.243460932799820062e+00,-2.868552134235343581e-02,1.001730857087956172e+00,1.080633051197478656e+00,3.273776597060972654e-02,-1.385723097278060423e-01,-1.240607576228266895e+00,-1.459771184689561199e-02,1.028603547907814830e+00,1.080633051203367723e+00,3.273776600435560763e-02,-1.385723095478907929e-01,-1.142560206570860215e+00,-5.660835364245470069e-03,1.042578181406101479e+00,1.074253541664641043e+00,2.823270425241527354e-02,-1.358377793419572321e-01,-1.170602713155589170e+00,8.814257963319561962e-03,1.523766585651362693e+00,1.080633051197478656e+00,3.273776597060972654e-02,-1.385723097278060423e-01,-1.170456879337272271e+00,3.528459096392297378e-01,1.291578851320801968e+00,1.080633051197478656e+00,3.273776597060972654e-02,-1.385723097278060423e-01,-1.185194339969335653e+00,-1.670075853524631906e-02,1.497963562511170910e+00,6.466933221987535285e-01,-4.204319551040858749e-01,-6.063129980876228453e-01,-1.247857225148843785e+00,-2.731985931678473367e-01,1.321862794553519516e+00,-3.800044526433721814e-01,-7.403157089935087365e-01,1.480379111253060875e+00,-1.247685984348726240e+00,-2.970797610013584111e-01,1.338224922984689425e+00,-2.777510203972751168e-01,7.728499428042330255e-01,1.022936385626418643e+00,-1.039205396662836067e+00,-3.698812633276915562e-01,1.398042709751132096e+00,-2.777510203972751168e-01,7.728499428042330255e-01,1.022936385626418643e+00,-1.182540320622024632e+00,3.479397918016657321e-01,1.254705444946439430e+00,1.597885992863887772e+00,6.940433602648299338e-02,-1.335536074259254247e-01,-1.190217095488903087e+00,3.469191681505072178e-01,9.374212154604565361e-01,1.493777717465897270e+00,-3.711485562999401466e-01,-1.326245810778932666e-01,-1.187820556620262424e+00,3.710135207627643927e-01,9.215537165728134861e-01,1.890295149134535446e+00,-1.272353377285984355e-01,-1.749700594398894138e+00,-1.108266078433515878e+00,3.377994367810390752e-01,7.096332328480206009e-01,1.890295149134535446e+00,-1.272353377285984077e-01,-1.749700594398894138e+00
|
||||
4.000000000000000222e-01,-1.146992229999999946e+00,-5.976603999999999944e-02,9.136351299999999620e-01,1.188065666676831222e+00,4.064964380096694474e-02,-8.328146026614988151e-02,-1.136240704406149993e+00,-6.845570623062477433e-02,8.938655898625483820e-01,1.188065666676831222e+00,4.064964380096694474e-02,-8.328146026614988151e-02,-1.244906472319680546e+00,-1.758539903230032231e-01,8.798790996176516499e-01,1.357909356533943068e+00,-5.356360636146435539e-01,-3.687096805091728546e-01,-1.083651975235023102e+00,-3.308926023613464329e-01,5.369781737539612854e-01,1.381715521987283868e+00,2.589161483580744161e-01,-5.275490929531185813e-01,-1.090303194543991605e+00,-3.178612914671592460e-01,5.710985494079201530e-01,1.504578225349646470e+00,5.854156543445804273e-01,-3.895319921799202390e-01,-1.327602336722735421e+00,-2.521648457302073654e-01,2.023287590775315059e-01,1.469775119349000958e+00,3.594112599924527141e-01,-4.129675567354961774e-01,-1.390080627627486853e+00,-2.385882145695313872e-01,1.802363037899466502e-01,1.467344683545943829e+00,3.589725312150798819e-01,-4.144845184992228537e-01,-1.231330288845850163e+00,-3.098944696074260041e-01,1.128439125338932536e-01,1.467344683545943829e+00,3.589725312150798819e-01,-4.144845184992228537e-01,-1.232381184815370290e+00,1.102734211556866822e-02,8.045475317562722495e-01,1.587048737977539092e+00,-6.434766361551430558e-01,-2.403351416554901088e-01,-9.895285332148536783e-01,-4.169341050640041485e-02,4.832681691251083378e-01,1.583840401293645117e+00,8.037499928773074453e-02,-2.295361155753582738e-01,-1.007988920495103136e+00,-3.996114657321203634e-02,5.155516873338223949e-01,1.480391738040989447e+00,3.797017615015359504e-01,-4.077157645836638200e-01,-1.177392140912985941e+00,-1.125752330874239815e-02,9.733005280484674504e-02,1.527746684606898331e+00,1.022982601454708734e-01,-3.372712404182129364e-01,-1.227313249757296498e+00,1.300280326425047248e-02,5.866148966872848647e-02,1.808890991753684396e+00,4.174874273515179895e-02,-1.381207038024931111e-01,-1.042498232683777504e+00,-1.108462581344297690e-02,4.911205541508457950e-02,1.808890991753684396e+00,4.174874273515178508e-02,-1.381207038024930556e-01,-1.228947394950512972e+00,-3.410953771152664543e-02,9.636567801115291099e-01,1.176307260322181580e+00,3.792118700855009322e-02,-9.460767758458941967e-02,-1.217697795973833319e+00,-2.273707759197586553e-02,9.929119943250387381e-01,1.160788974833630638e+00,3.618002837590340859e-02,-1.071467195598867217e-01,-1.214585764442078997e+00,-9.738598375266643500e-03,1.023306451468330769e+00,1.132858804532598462e+00,3.374733604135547738e-02,-1.194362686118646266e-01,-1.218379245771652020e+00,5.792560343959340594e-03,1.055258351056053812e+00,1.105045165422821274e+00,3.111503337425254243e-02,-1.293333993115468872e-01,-1.227199834673306622e+00,2.007379384634215558e-02,1.081288455319119768e+00,1.081720191672972620e+00,2.823638219512071557e-02,-1.383618888866265106e-01,-1.232823038264300397e+00,-2.592275638712553121e-02,9.989685430312700287e-01,1.063993250928474632e+00,2.496641409990661004e-02,-1.464087219933736805e-01,-1.230007010984434768e+00,-1.138576224963430174e-02,1.025604896456805859e+00,1.063993250932950385e+00,2.496641413663982720e-02,-1.464087218140853464e-01,-1.131901070029177836e+00,-3.561442169387460388e-03,1.040134389109267365e+00,1.057903376292446795e+00,2.137986856725859405e-02,-1.440508031651078213e-01,-1.164706341587699034e+00,2.159506826751177166e-02,1.522422848917905025e+00,1.063993250928474632e+00,2.496641409990661004e-02,-1.464087219933736805e-01,-1.158611666570428467e+00,3.607730347839173679e-01,1.283441334186264715e+00,1.063993250928474632e+00,2.496641409990661004e-02,-1.464087219933736805e-01,-1.179350377006523010e+00,-4.262455298245627910e-03,1.496993174424008366e+00,6.396236681439499971e-01,-4.649636350568832621e-01,-6.426349542222682398e-01,-1.246554296357477165e+00,-2.636115393377013727e-01,1.326843409048696465e+00,-4.315632308674642870e-01,-7.086659202947978020e-01,1.482121857692042743e+00,-1.247745431425577145e+00,-2.868897269894087887e-01,1.344012157523861495e+00,-3.465697539014972461e-01,7.821771952758549418e-01,9.422126037667976073e-01,-1.044007499697405139e+00,-3.641105792034127209e-01,1.413798810652740823e+00,-3.465697539014973017e-01,7.821771952758549418e-01,9.422126037667976073e-01,-1.170536771982076951e+00,3.553076516687257436e-01,1.246595044122104090e+00,1.571398425045046121e+00,6.543485626612392803e-02,-1.345945520954882624e-01,-1.178082422906760796e+00,3.458046081495976809e-01,9.294483712063941194e-01,1.470590355238226676e+00,-3.551129664523448026e-01,-1.232269894634974300e-01,-1.176014658356316689e+00,3.695879325549970007e-01,9.130734948009519014e-01,1.875205149727934062e+00,-1.496759462359243120e-01,-1.746457004163138427e+00,-1.100383009513707266e+00,3.323338234018157200e-01,7.003897698923169379e-01,1.875205149727934062e+00,-1.496759462359242843e-01,-1.746457004163138427e+00
|
||||
4.166667000000000010e-01,-1.136916320000000091e+00,-6.114636999999999850e-02,9.124085499999999849e-01,1.169622739559677882e+00,2.850857134285588942e-02,-1.010158220382749855e-01,-1.126114211703264090e+00,-7.040245924771040831e-02,8.929257476547214356e-01,1.169622739559677882e+00,2.850857134285588942e-02,-1.010158220382749855e-01,-1.236461924889944664e+00,-1.761917163329270453e-01,8.798766966768469810e-01,1.309475636297641188e+00,-5.603600251406489763e-01,-3.545198209756694196e-01,-1.072868031157604207e+00,-3.495337904812660934e-01,5.469832873479846258e-01,1.346033017184369740e+00,1.904807662144963609e-01,-5.389730249164110809e-01,-1.081137649660935063e+00,-3.341470414269347433e-01,5.799447080902599971e-01,1.451475619056920019e+00,5.209172464808290437e-01,-4.219717544741757864e-01,-1.302644637429804853e+00,-2.925622369017190083e-01,1.980763766935386694e-01,1.424459671960972562e+00,3.048988782154318788e-01,-4.321150565754320882e-01,-1.364310996732329251e+00,-2.801582106205058875e-01,1.731898624524350061e-01,1.472181100976996060e+00,3.143950726328437195e-01,-4.020177204363860057e-01,-1.202077517110628158e+00,-3.505777829140945823e-01,1.136132865366790423e-01,1.472181100976996060e+00,3.143950726328437195e-01,-4.020177204363860612e-01,-1.219955421177659538e+00,8.940747225218294292e-03,8.010739896825848083e-01,1.585838568660895342e+00,-6.573776805654995004e-01,-2.374778384350129390e-01,-9.741064226116236124e-01,-4.427877866497215154e-02,4.820494786943642640e-01,1.582776160650500197e+00,1.101482284883114199e-01,-2.269689923424511035e-01,-9.912514353411381318e-01,-4.287729069975459301e-02,5.148461001893438471e-01,1.470960141454691117e+00,4.096957877495605027e-01,-4.106300368014882962e-01,-1.173547756174265100e+00,-1.265997074789644572e-02,1.021892819369620287e-01,1.521322447953840307e+00,1.317503621974829564e-01,-3.370776462583618960e-01,-1.224624319028847275e+00,1.169365745109694071e-02,6.512145425320325920e-02,1.808469706627621854e+00,7.188228733433568718e-02,-1.372032593524491750e-01,-1.040156254844748496e+00,-1.217400923970542864e-02,4.996050926515079038e-02,1.808469706627621854e+00,7.188228733433567330e-02,-1.372032593524491195e-01,-1.218925415388416367e+00,-3.312754684894011342e-02,9.610554869480518736e-01,1.158333812374841454e+00,2.698636979923575360e-02,-1.091504892577512820e-01,-1.207778806726226728e+00,-2.136118891703487482e-02,9.901943007737736835e-01,1.143368249945804216e+00,2.660001666358893443e-02,-1.183557926059299464e-01,-1.204754113020878314e+00,-7.837504549375602647e-03,1.020367539495175668e+00,1.116239633619548144e+00,2.561845903255096507e-02,-1.273431493181713392e-01,-1.208621469753971223e+00,8.279490972008713562e-03,1.052018886437561696e+00,1.089171609894491244e+00,2.425808532567600220e-02,-1.345476153913815753e-01,-1.217495188052056587e+00,2.302849509252322818e-02,1.077768722904253185e+00,1.066467567618811563e+00,2.262014707962960169e-02,-1.410998043218149034e-01,-1.222939429199445982e+00,-2.418615547692939266e-02,9.961295200519236781e-01,1.049214541024269920e+00,2.053343905884556092e-02,-1.468707751438064202e-01,-1.220180609964840679e+00,-9.244595509860027011e-03,1.022547094395259926e+00,1.049214541027939207e+00,2.053343909822349239e-02,-1.468707749650987049e-01,-1.121937851153229637e+00,-1.508427054669206346e-03,1.037171475065930881e+00,1.043233084267665811e+00,1.816167127750378460e-02,-1.450806417427215611e-01,-1.157732193535726983e+00,3.218497219198571818e-02,1.519797683475690775e+00,1.049214541024269920e+00,2.053343905884556092e-02,-1.468707751438064202e-01,-1.148308233583974269e+00,3.665942917462668982e-01,1.274701311638933188e+00,1.049214541024269920e+00,2.053343905884556092e-02,-1.468707751438064202e-01,-1.172323293975451319e+00,5.943907491433947365e-03,1.494733087837493368e+00,6.353079213575052453e-01,-5.111869196783954683e-01,-6.847735792090484663e-01,-1.245331510856707791e+00,-2.555753361720035644e-01,1.330395805740487658e+00,-4.844775242102518087e-01,-6.755778575555171361e-01,1.480306443411027573e+00,-1.247999104873630749e+00,-2.781423561956536394e-01,1.348331030765981486e+00,-4.203812011088582379e-01,7.873731491880014977e-01,8.544473815446199660e-01,-1.049911450442785554e+00,-3.597689648736456247e-01,1.428585374662600715e+00,-4.203812011088582379e-01,7.873731491880014977e-01,8.544473815446198550e-01,-1.160152090868889596e+00,3.605684374448908658e-01,1.237916263484551971e+00,1.550403149100385791e+00,5.968230162976294328e-02,-1.433177563633100948e-01,-1.166907323227791560e+00,3.442866481698382830e-01,9.210274391324018151e-01,1.451900781365872195e+00,-3.465125533522950274e-01,-1.242365540022213055e-01,-1.164841262712115189e+00,3.677834336772211610e-01,9.042437800537727055e-01,1.867486616146931455e+00,-1.676738218458520280e-01,-1.752670014130893517e+00,-1.091778232602643950e+00,3.264967418938952148e-01,6.914067895909494776e-01,1.867486616146931455e+00,-1.676738218458520280e-01,-1.752670014130893517e+00
|
||||
4.333332999999999768e-01,-1.127824830000000000e+00,-6.359162999999999621e-02,9.111033099999999996e-01,1.157958475050401281e+00,1.830113486109347098e-02,-1.210687143333235571e-01,-1.117038840511241471e+00,-7.330770260290075946e-02,8.918367409498361154e-01,1.157958475050401281e+00,1.830113486109347098e-02,-1.210687143333235571e-01,-1.229344980233267437e+00,-1.770586433611326393e-01,8.791349409154410877e-01,1.263431400643153291e+00,-5.809475602109238634e-01,-3.364694416776702335e-01,-1.063532828778168682e+00,-3.662450072905132359e-01,5.562136981077516751e-01,1.313170918963789013e+00,1.212986413909944855e-01,-5.408169953806991614e-01,-1.073560153932036743e+00,-3.486623773078037503e-01,5.877817666121767370e-01,1.403949855013122416e+00,4.541637504861636421e-01,-4.424203764173578746e-01,-1.278447825975700614e+00,-3.330839798637870164e-01,1.948486686181810090e-01,1.383417625637938686e+00,2.595066459261467506e-01,-4.421679577746736589e-01,-1.339496004214242530e+00,-3.221908355673377411e-01,1.678227982385306349e-01,1.468565206154390790e+00,2.781062304356604065e-01,-3.880221582431875316e-01,-1.174401322413590742e+00,-3.911138736303350072e-01,1.147064416679705878e-01,1.468565206154390790e+00,2.781062304356604065e-01,-3.880221582431875871e-01,-1.208482878923128334e+00,6.687889969927238165e-03,7.981513340849322180e-01,1.585912919440801705e+00,-6.650351513999984698e-01,-2.371285209604492017e-01,-9.613019676415874848e-01,-4.673186483405047248e-02,4.801883024009895307e-01,1.582801496395067842e+00,1.355763596533068049e-01,-2.261771191760235666e-01,-9.773533023795550889e-01,-4.560444623493516841e-02,5.133744148759422643e-01,1.464005616774914031e+00,4.352620544672758385e-01,-4.139853067533884046e-01,-1.170284364174730474e+00,-1.347421254222150311e-02,1.057275847128899549e-01,1.516901086762028728e+00,1.574173145167276355e-01,-3.381538951247299862e-01,-1.222283323077623773e+00,1.106104828951344488e-02,7.008957722622369269e-02,1.808775400208507023e+00,9.806555168306967107e-02,-1.379159672805269632e-01,-1.038288492107587668e+00,-1.287422420525483058e-02,5.006480814062029550e-02,1.808775400208507023e+00,9.806555168306965720e-02,-1.379159672805269077e-01,-1.209683429324275972e+00,-3.334022903992010095e-02,9.586542627585368237e-01,1.146533078405818085e+00,2.092359921182789656e-02,-1.198889304564199065e-01,-1.198549307624192650e+00,-2.133781385683661963e-02,9.877017015200462158e-01,1.131321527412197714e+00,2.511101504554725389e-02,-1.192939925711202498e-01,-1.195516731036909031e+00,-7.444123138039899362e-03,1.017705303432359321e+00,1.103502880063540692e+00,2.896340727850897634e-02,-1.186018644707358266e-01,-1.199376509028936555e+00,9.037013338603946955e-03,1.049168979351037034e+00,1.075684110933895266e+00,3.179338871914100251e-02,-1.179400193318553836e-01,-1.208267069566283824e+00,2.394711285957572960e-02,1.074820235546930070e+00,1.052357601381384233e+00,3.420822784314594966e-02,-1.172747851009211389e-01,-1.213635775973374908e+00,-2.438875763288066850e-02,9.938347318200274616e-01,1.034650889557964470e+00,3.597057805244946449e-02,-1.164384048906647873e-01,-1.210891382101797475e+00,-9.036005456487441329e-03,1.020016993656858162e+00,1.034650889558973441e+00,3.597057800526930887e-02,-1.164384048626121021e-01,-1.112137622381358826e+00,2.012456173618656918e-03,1.032376736917015370e+00,1.028637221154188985e+00,3.688377321830969141e-02,-1.163636989222720658e-01,-1.135864793301206710e+00,3.930921007295046926e-02,1.514992308918166497e+00,1.034650889557964470e+00,3.597057805244946449e-02,-1.164384048906647873e-01,-1.144584941296524327e+00,3.711400342844332623e-01,1.265227830511697293e+00,1.034650889557964470e+00,3.597057805244946449e-02,-1.164384048906647873e-01,-1.150061429247056788e+00,1.231674665288075982e-02,1.490505780182876050e+00,6.076774882230259189e-01,-5.339554689137826493e-01,-7.568764404910660604e-01,-1.245254861638319444e+00,-2.472646508438845203e-01,1.334669438693785626e+00,-5.086160070464977867e-01,-6.218937086873409514e-01,1.444181618915596488e+00,-1.249283443583540487e+00,-2.686341791539869073e-01,1.353778926772130742e+00,-4.895472275089564618e-01,8.180961968051195798e-01,7.539691686426978068e-01,-1.056586748219341620e+00,-3.555175969120665802e-01,1.441309704849633500e+00,-4.895472275089564618e-01,8.180961968051195798e-01,7.539691686426978068e-01,-1.156861029721787393e+00,3.642875495421448173e-01,1.228730313486578574e+00,1.539410051499745968e+00,3.472437322044087671e-02,-1.931895738920766381e-01,-1.157318155923969583e+00,3.434284283167775009e-01,9.120381207775560828e-01,1.444098598714783410e+00,-3.548085199981176885e-01,-1.711401789797924455e-01,-1.153973368969159585e+00,3.666481086921633548e-01,8.950758806308685145e-01,1.876334305009767611e+00,-1.744929830373071200e-01,-1.803760203707331033e+00,-1.081577694766296949e+00,3.199552893048535629e-01,6.831300649825338134e-01,1.876334305009767611e+00,-1.744929830373071200e-01,-1.803760203707331033e+00
|
||||
4.500000000000000111e-01,-1.119153590000000031e+00,-6.628649999999999820e-02,9.102789799999999598e-01,1.151325749526284303e+00,9.578745592837802775e-03,-1.355410715211750328e-01,-1.108359796296956690e+00,-7.630535228491294730e-02,8.911725168152443421e-01,1.151325749526284303e+00,9.578745592837802775e-03,-1.355410715211750328e-01,-1.222047459660058122e+00,-1.785294509745540825e-01,8.783814536176914878e-01,1.219017239977648881e+00,-5.957975729191319347e-01,-3.148065067823710983e-01,-1.054627150858635121e+00,-3.812877482609368096e-01,5.649088670521946742e-01,1.281138729234071238e+00,5.451750291093767492e-02,-5.341793660361818796e-01,-1.066459961472558060e+00,-3.617199134924636850e-01,5.948887844739196851e-01,1.359811961943320435e+00,3.885752490812540705e-01,-4.528700028810516698e-01,-1.254803817867311544e+00,-3.733435275123346275e-01,1.936288344701542208e-01,1.344187059185772748e+00,2.195580479916404426e-01,-4.452747603353023886e-01,-1.315364137119176879e+00,-3.642658767128712505e-01,1.648889263846907982e-01,1.456906896492861536e+00,2.465949116221571313e-01,-3.731598383123594376e-01,-1.147792487797798966e+00,-4.313280164530827188e-01,1.174505639846227245e-01,1.456906896492861536e+00,2.465949116221571313e-01,-3.731598383123594931e-01,-1.197913218548539271e+00,4.265725035909231910e-03,7.961633145557421853e-01,1.587379252423394060e+00,-6.642623948251296095e-01,-2.383814078238529199e-01,-9.515153763894882433e-01,-4.867704896633248679e-02,4.775427819650781003e-01,1.584011466118214084e+00,1.550008788083358791e-01,-2.261175272761342669e-01,-9.667888419579890869e-01,-4.777159154006267033e-02,5.110044836748461883e-01,1.460248643116287104e+00,4.548497795771140328e-01,-4.163762912237304881e-01,-1.167520410119000207e+00,-1.354270893077347271e-02,1.073141248557539784e-01,1.515265618745009535e+00,1.753749580902511929e-01,-3.388069276332663637e-01,-1.220123784452721960e+00,1.116855697243564205e-02,7.269943614051385672e-02,1.810046382874989090e+00,1.162100966322153067e-01,-1.385694562314327971e-01,-1.036534179166484160e+00,-1.283036093002571168e-02,4.931364471971686619e-02,1.810046382874989090e+00,1.162100966322152928e-01,-1.385694562314327416e-01,-1.200933691114081991e+00,-3.449604568800434395e-02,9.569528777163029964e-01,1.138776384460949087e+00,1.233671824772971694e-02,-1.339487186166459232e-01,-1.189850433280298381e+00,-2.239053752151107246e-02,9.859766980222808286e-01,1.122079084616915745e+00,1.662460746533203984e-02,-1.329101500374929301e-01,-1.186846602143050378e+00,-8.227733119679985635e-03,1.015857069353990338e+00,1.091543366541217974e+00,2.060826992475641925e-02,-1.317896848819809230e-01,-1.190703142976481832e+00,8.717377624012635079e-03,1.047073559059871428e+00,1.061007120100618817e+00,2.357294843327866624e-02,-1.307894137592637840e-01,-1.199566062883876905e+00,2.414223458158578847e-02,1.072428109125608486e+00,1.035401902420985287e+00,2.613123054031744191e-02,-1.298207216994814173e-01,-1.205062518644157032e+00,-2.573862079670515349e-02,9.923927322466663536e-01,1.015963264288936463e+00,2.805297565353059852e-02,-1.287128911224421912e-01,-1.202281230067875351e+00,-9.910207350465896625e-03,1.018286269927616949e+00,1.015963264289747592e+00,2.805297560688255545e-02,-1.287128910935195492e-01,-1.103358366579433092e+00,1.186874724417669169e-03,1.030476922985851918e+00,1.009365476160875463e+00,2.920357038061245289e-02,-1.287510095270421040e-01,-1.129118080887847597e+00,4.766653272434843991e-02,1.513236951937765529e+00,1.015963264288936463e+00,2.805297565353059852e-02,-1.287128911224421912e-01,-1.136887092525168175e+00,3.744304385428564586e-01,1.256398634476878939e+00,1.015963264288936463e+00,2.805297565353059852e-02,-1.287128911224421912e-01,-1.143496436465975652e+00,2.036762593971170807e-02,1.489200308611384749e+00,5.932427387846753719e-01,-5.680154064894997745e-01,-7.765807714854561228e-01,-1.243360419553544371e+00,-2.415061707281932479e-01,1.340275641997251910e+00,-5.323469261207921521e-01,-5.930949190551290107e-01,1.428443959479352543e+00,-1.248303879089188273e+00,-2.621398210269240137e-01,1.359970144541646997e+00,-5.389287363832978572e-01,8.270652151090058801e-01,6.884881117914313231e-01,-1.059588847659336919e+00,-3.517926536624519374e-01,1.453197760135510164e+00,-5.389287363832979683e-01,8.270652151090058801e-01,6.884881117914314341e-01,-1.149043256285434245e+00,3.670093313941990565e-01,1.219972236157957024e+00,1.528198522046963159e+00,2.662977780032004665e-02,-2.019347553802823825e-01,-1.147876130391581206e+00,3.421658842172176085e-01,9.035694900020165843e-01,1.431113515901672573e+00,-3.655394426691599419e-01,-1.749026556513466613e-01,-1.144193776260219897e+00,3.651198764202918112e-01,8.863180188388229963e-01,1.888022764798165554e+00,-1.859205604549115098e-01,-1.814194241940645824e+00,-1.070410627142415860e+00,3.148977290304998400e-01,6.756615102418209728e-01,1.888022764798165554e+00,-1.859205604549114821e-01,-1.814194241940645824e+00
|
||||
4.666666999999999899e-01,-1.110013799999999939e+00,-6.895648000000000055e-02,9.101642500000000080e-01,1.144232896425361856e+00,1.936449917389088549e-03,-1.461930971307283111e-01,-1.099202701721083697e+00,-7.924401972530603633e-02,8.912109653388904373e-01,1.144232896425361856e+00,1.936449917389088549e-03,-1.461930971307283111e-01,-1.213885404180586880e+00,-1.803597242455567962e-01,8.784926907879324620e-01,1.175881028260392203e+00,-6.041934449264543261e-01,-2.915070267344399557e-01,-1.045978505401798486e+00,-3.949135353646137103e-01,5.736591760317819588e-01,1.248624513710805406e+00,-7.848900196563746851e-03,-5.213951671222991635e-01,-1.059591382035643958e+00,-3.735831441169454870e-01,6.019096867388169514e-01,1.317494227878506674e+00,3.262764987979135944e-01,-4.563886799645451298e-01,-1.232069217127268690e+00,-4.126946774959955877e-01,1.952897800933102723e-01,1.304871081510395436e+00,1.769855314196925600e-01,-4.434658844811409373e-01,-1.292058483601951302e+00,-4.057659431716305609e-01,1.648066884328894810e-01,1.446112300618067170e+00,2.139997999807192186e-01,-3.524382637095664905e-01,-1.121776574105526780e+00,-4.698628666743299709e-01,1.232899187396284124e-01,1.446112300618067170e+00,2.139997999807192186e-01,-3.524382637095665460e-01,-1.187271911764850696e+00,1.495291544462776234e-03,7.949652365529055187e-01,1.589863780639628965e+00,-6.546112283903851026e-01,-2.390425164463280960e-01,-9.438783569828342879e-01,-4.984826455969745829e-02,4.737979803485714014e-01,1.586144680017289366e+00,1.705792126749683113e-01,-2.248267643734428445e-01,-9.586090644655675952e-01,-4.915532041889765502e-02,5.074765508162946137e-01,1.458932529324992622e+00,4.706298500972684318e-01,-4.162162944344797721e-01,-1.165361498951590136e+00,-1.294609412573588525e-02,1.070105629597725705e-01,1.516268978983222881e+00,1.850048974233442778e-01,-3.365672278323934563e-01,-1.218316532047210021e+00,1.179796697070222694e-02,7.296009689859704606e-02,1.811156824314805069e+00,1.259989836194508883e-01,-1.373367154219164443e-01,-1.034932543052721199e+00,-1.194015448410254768e-02,4.776484654681751457e-02,1.811156824314805069e+00,1.259989836194508883e-01,-1.373367154219163888e-01,-1.191754034336427015e+00,-3.592382535565032814e-02,9.560385180529898941e-01,1.130763689930140981e+00,8.490304668916570305e-03,-1.366822553589898959e-01,-1.180718025920527436e+00,-2.360792240739503778e-02,9.849920234326564605e-01,1.112909698664941160e+00,1.698745338083355177e-02,-1.273301128682994832e-01,-1.177749128113323218e+00,-9.151034531540419917e-03,1.014734390406596631e+00,1.080229984561755785e+00,2.544841774940185056e-02,-1.180353581917827216e-01,-1.181649853187598742e+00,8.086800299328058758e-03,1.045783959606703561e+00,1.047564872523854218e+00,3.231451323244944468e-02,-1.104252626140161536e-01,-1.190573472771831343e+00,2.363600893636099917e-02,1.071041130880350023e+00,1.020232220041113802e+00,3.865983288034651605e-02,-1.034189532090948327e-01,-1.195853009094976604e+00,-2.754976232917471027e-02,9.918182664406071103e-01,9.995537126488112101e-01,4.418653664907015721e-02,-9.680094525532184635e-02,-1.193133342549201448e+00,-1.125898377889139948e-02,1.017430050449337875e+00,9.995537126501231606e-01,4.418653660290279561e-02,-9.680094522562003589e-02,-1.093794326412135476e+00,3.779779718335429806e-03,1.026943520468309279e+00,9.928063656788166380e-01,4.875326386647005350e-02,-9.877941924294363074e-02,-1.113921177723855571e+00,5.567908946086051747e-02,1.509807933751454723e+00,9.995537126488112101e-01,4.418653664907015721e-02,-9.680094525532184635e-02,-1.129820204150127960e+00,3.771831963420211320e-01,1.247518033262261072e+00,9.995537126488112101e-01,4.418653664907015721e-02,-9.680094525532184635e-02,-1.127822971093517257e+00,2.757715826942169074e-02,1.486425263938409902e+00,5.681431349859952240e-01,-6.010807532634094841e-01,-8.112092894676133925e-01,-1.239203451858894800e+00,-2.346988574667499550e-01,1.346657825314313328e+00,-5.512816441923474864e-01,-5.531393282416968704e-01,1.395676922112478291e+00,-1.245200649413916283e+00,-2.542535819290526189e-01,1.367144531247466821e+00,-5.973659066431404874e-01,8.448061008390375104e-01,6.020881850817221270e-01,-1.061332871257585575e+00,-3.478935272128438339e-01,1.465970553122091236e+00,-5.973659066431405984e-01,8.448061008390375104e-01,6.020881850817221270e-01,-1.142368341132632192e+00,3.688354456599113873e-01,1.211426663656984815e+00,1.516021287693253061e+00,2.571081761171168170e-02,-1.631736007918231923e-01,-1.140569492241690686e+00,3.402107631949212729e-01,8.953465337500987609e-01,1.410902013383022791e+00,-3.909729609911819503e-01,-1.275576129625308475e-01,-1.137407694763279631e+00,3.629098235004609707e-01,8.776599726017854097e-01,1.915302177413578111e+00,-2.027500722857474569e-01,-1.779582688940197555e+00,-1.056919641358961659e+00,3.110762426763340471e-01,6.698684064721824871e-01,1.915302177413578111e+00,-2.027500722857474291e-01,-1.779582688940197555e+00
|
||||
4.833333000000000212e-01,-1.100522849999999941e+00,-7.088154000000000676e-02,9.106110899999999564e-01,1.137010404575922839e+00,-8.435623381422938539e-04,-1.434295277929701073e-01,-1.089650822539562247e+00,-8.128177242784997980e-02,8.917544067447884526e-01,1.137010404575922839e+00,-8.435623381422938539e-04,-1.434295277929701073e-01,-1.204031871922798480e+00,-1.828082971413733659e-01,8.796052185752382124e-01,1.134156691836001762e+00,-6.049246511878392241e-01,-2.660318259342124292e-01,-1.036882450574913017e+00,-4.072960586204554256e-01,5.821549210510170713e-01,1.214802057763511689e+00,-6.205635742118241482e-02,-5.023972370929387088e-01,-1.052176674033236559e+00,-3.844833634884229356e-01,6.086544333975671961e-01,1.276141137905154599e+00,2.711216057063709495e-01,-4.533023937614267806e-01,-1.210728854383326558e+00,-4.504859148059204843e-01,1.998477144613827750e-01,1.265456043222388027e+00,1.385806651297438186e-01,-4.364284947864864317e-01,-1.270227539341644007e+00,-4.459559737603955853e-01,1.679835582503565461e-01,1.430045221115078702e+00,1.856554760293455397e-01,-3.298510994521554052e-01,-1.097503465626080033e+00,-5.065786449563028926e-01,1.316617663590408382e-01,1.430045221115078702e+00,1.856554760293455397e-01,-3.298510994521554607e-01,-1.177777035604862688e+00,-1.515600871827352258e-03,7.947523918293262213e-01,1.592767802759068152e+00,-6.384520698801571248e-01,-2.384516669062264338e-01,-9.389724021691951972e-01,-5.037851164060434817e-02,4.697628285041568486e-01,1.588732550195793403e+00,1.810546673793914929e-01,-2.221262791277167081e-01,-9.534256474183322450e-01,-4.986883028604079809e-02,5.035936060069299280e-01,1.459817682435488928e+00,4.813179395626198676e-01,-4.133793141419202510e-01,-1.164048025331694269e+00,-1.215911347019477812e-02,1.052886024677626708e-01,1.519300509743472638e+00,1.866785868398150028e-01,-3.317126564545947454e-01,-1.217129609460706474e+00,1.247159814072301004e-02,7.135319617020777216e-02,1.812488687301282875e+00,1.276455541636674351e-01,-1.339035274319001212e-01,-1.033705986516597175e+00,-1.062893665367076190e-02,4.585562161314594987e-02,1.812488687301282875e+00,1.276455541636674351e-01,-1.339035274319000657e-01,-1.182432717486995077e+00,-3.773054390900813793e-02,9.560957656398503257e-01,1.122475249930981356e+00,6.284501140849715201e-03,-1.328084354302565828e-01,-1.171476751191717014e+00,-2.512350629819182918e-02,9.849539895558311331e-01,1.103226407776557672e+00,1.538160403458434071e-02,-1.222895154145012958e-01,-1.168595038338051451e+00,-1.035704493517605393e-02,1.014552397018549712e+00,1.068015306461733704e+00,2.452067662540987486e-02,-1.118724549926308487e-01,-1.172592900593697696e+00,7.243669671508135011e-03,1.045385005765598008e+00,1.032827882702401556e+00,3.200913669489661301e-02,-1.033780104245095310e-01,-1.181602443627657539e+00,2.310016630312320893e-02,1.070419485887420086e+00,1.003390738526729997e+00,3.897891914469765740e-02,-9.558257502859675292e-02,-1.186605083329052235e+00,-2.959946400356429017e-02,9.921763121961454379e-01,9.811259943850046961e-01,4.512661522495422378e-02,-8.825994389595018252e-02,-1.183973116706028117e+00,-1.281917324344104825e-02,1.017479357975368703e+00,9.811259943863829269e-01,4.512661517934148103e-02,-8.825994386540059189e-02,-1.084588407468624505e+00,4.159219575614589437e-03,1.025893607384644524e+00,9.738876121097593819e-01,5.051213281524793985e-02,-9.078611020171614698e-02,-1.105912322408451942e+00,6.423965900191670741e-02,1.508658256914384710e+00,9.811259943850046961e-01,4.512661522495422378e-02,-8.825994389595018252e-02,-1.122441168849189319e+00,3.801313530520584183e-01,1.240322003140428730e+00,9.811259943850046961e-01,4.512661522495422378e-02,-8.825994389595018252e-02,-1.119609330529222957e+00,3.558696465494860101e-02,1.485829706404863337e+00,5.496124607386922989e-01,-6.336635859339154742e-01,-8.183595802273117004e-01,-1.234158620749191915e+00,-2.293009506019816901e-01,1.353761128437026340e+00,-5.692597725010530851e-01,-5.263594135088721648e-01,1.379971971365258510e+00,-1.240847569158068930e+00,-2.480932049268966266e-01,1.374741307031908333e+00,-6.428422330808956087e-01,8.519430299520467376e-01,5.430234545269452262e-01,-1.060376878263389555e+00,-3.433301482175349917e-01,1.478194852921422164e+00,-6.428422330808956087e-01,8.519430299520467376e-01,5.430234545269452262e-01,-1.135002438472256570e+00,3.710093319505637921e-01,1.204423105112111703e+00,1.507231956286998464e+00,2.254214309451697124e-02,-1.515214776315914336e-01,-1.132293200493395879e+00,3.395126460027085291e-01,8.886227320449098244e-01,1.397226470792293895e+00,-4.073759246014459490e-01,-1.098034744695249310e-01,-1.129148632348110581e+00,3.619932500836040012e-01,8.706562944837312745e-01,1.933108437058086659e+00,-2.139001810624479305e-01,-1.770826774370920065e+00,-1.044943741059553233e+00,3.081947104727009723e-01,6.648465881643326192e-01,1.933108437058086659e+00,-2.139001810624479305e-01,-1.770826774370920065e+00
|
||||
5.000000000000000000e-01,-1.091391229999999934e+00,-7.283741999999999994e-02,9.108966600000000247e-01,1.128185167893580587e+00,2.591143019150671679e-03,-1.343162730190380627e-01,-1.080511182072043663e+00,-8.329415328275900643e-02,8.920758841079227119e-01,1.128185167893580587e+00,2.591143019150671679e-03,-1.343162730190380627e-01,-1.194014034909167687e+00,-1.859546945981202515e-01,8.812972892891967058e-01,1.093997905582476893e+00,-6.002967506281350341e-01,-2.352202510347550790e-01,-1.027437655534852112e+00,-4.182995472300097828e-01,5.902460771817994445e-01,1.180117936946736723e+00,-1.054574436679339977e-01,-4.758046275793769708e-01,-1.044292713320080779e+00,-3.943719975049957971e-01,6.151125848040692734e-01,1.236173788520299466e+00,2.260793525203050880e-01,-4.419706628209966182e-01,-1.191440388719491761e+00,-4.858471017287488425e-01,2.069484866114945087e-01,1.226822353287618350e+00,1.081586855253466595e-01,-4.222661396955970647e-01,-1.250621889322342639e+00,-4.839745659036259751e-01,1.742379084346399321e-01,1.403653828759214850e+00,1.633970745219969489e-01,-3.078558533339946779e-01,-1.075888357098773840e+00,-5.410643829832828544e-01,1.420364803217584460e-01,1.403653828759214850e+00,1.633970745219969489e-01,-3.078558533339947334e-01,-1.169806628569516116e+00,-5.139836436458170010e-03,7.948314063999306622e-01,1.596143662587017342e+00,-6.195573937178016077e-01,-2.354984589582230503e-01,-9.361828145774380161e-01,-5.060948408376539365e-02,4.655912269599413733e-01,1.591803921798421007e+00,1.885000202775321543e-01,-2.168407266488577567e-01,-9.505087370236203759e-01,-5.029907432182826460e-02,4.995366774042723779e-01,1.462218887035285242e+00,4.890306607418355989e-01,-4.071635044138982584e-01,-1.163800563129228749e+00,-1.167214062601402980e-02,1.027429758736901899e-01,1.523863594717016934e+00,1.825321490850837780e-01,-3.233868486727102254e-01,-1.216882693374121471e+00,1.266024937285895047e-02,6.859388255786819100e-02,1.813608176729237798e+00,1.234664038643353001e-01,-1.276002993687819220e-01,-1.033212548605549896e+00,-9.295105921677284527e-03,4.387088183778298234e-02,1.813608176729237798e+00,1.234664038643352862e-01,-1.276002993687818665e-01,-1.173391238463132646e+00,-4.005756798604810653e-02,9.564877837590616272e-01,1.112818680976219277e+00,1.127624584746195202e-02,-1.206331238091986335e-01,-1.162415073668093601e+00,-2.705928164785428164e-02,9.851639557952652781e-01,1.092493064031574646e+00,2.204293921759916189e-02,-1.068870494585447972e-01,-1.159534662709647002e+00,-1.195146088322073495e-02,1.014589589000818304e+00,1.055263871324397362e+00,3.300958828281245344e-02,-9.332868219978747437e-02,-1.163567919265554362e+00,5.947112754246397168e-03,1.045245340398448297e+00,1.018064479444364290e+00,4.213194150152240608e-02,-8.232305841311042538e-02,-1.172635784182439078e+00,2.195435900342613406e-02,1.070162479561300506e+00,9.869848382126359398e-01,5.071389026486495394e-02,-7.225672623231564617e-02,-1.177370201246332737e+00,-3.216739787015775870e-02,9.928787215728956950e-01,9.635307077718845425e-01,5.843030222574084609e-02,-6.288482073696903540e-02,-1.174818756015544752e+00,-1.490362275795203278e-02,1.017862751034012136e+00,9.635307077737165216e-01,5.843030218067212650e-02,-6.288482070559919812e-02,-1.075524359094464755e+00,5.444505477786201753e-03,1.023953591640761607e+00,9.559820520580657455e-01,6.555292433218019854e-02,-6.658202917670560939e-02,-1.090292242748233553e+00,7.097089899337610808e-02,1.504914796385030673e+00,9.635307077718845425e-01,5.843030222574084609e-02,-6.288482073696903540e-02,-1.117567090385787720e+00,3.826713521307990584e-01,1.233022770509748511e+00,9.635307077718845425e-01,5.843030222574084609e-02,-6.288482073696903540e-02,-1.103554732021247986e+00,4.159232873431731314e-02,1.482762287926986167e+00,5.096611817949198153e-01,-6.547558094740640877e-01,-8.351255760375428938e-01,-1.230066264050480029e+00,-2.230862914567976196e-01,1.361645331629149691e+00,-5.698020176507408996e-01,-4.828720545305494882e-01,1.347332969138694381e+00,-1.237173306306966536e+00,-2.407385588205702975e-01,1.383461521823233786e+00,-6.940428893738737059e-01,8.800774563487433477e-01,4.711126872404571841e-01,-1.058971484398581575e+00,-3.374073866154493895e-01,1.489488076033757435e+00,-6.940428893738737059e-01,8.800774563487433477e-01,4.711126872404572397e-01,-1.130397820408071352e+00,3.726253980969683743e-01,1.197467478107457017e+00,1.499216621106221892e+00,2.236860873014857864e-02,-1.074666543748723363e-01,-1.126515070246451033e+00,3.387584347538776797e-01,8.819247553731051070e-01,1.379701467421666106e+00,-4.356419592480599845e-01,-5.695922517515820266e-02,-1.123906105916789411e+00,3.610386909820503254e-01,8.636260604787807660e-01,1.963527669936612208e+00,-2.270760672538325031e-01,-1.731807035426122354e+00,-1.031770395953178321e+00,3.075329171497580560e-01,6.611648915782488700e-01,1.963527669936612208e+00,-2.270760672538325031e-01,-1.731807035426122354e+00
|
||||
5.166667000000000343e-01,-1.082965689999999981e+00,-7.441680000000000517e-02,9.110477200000000053e-01,1.117018310705968576e+00,8.075306385621374219e-03,-1.171911348668440295e-01,-1.072034522794093059e+00,-8.488151287432241232e-02,8.922610309086331792e-01,1.117018310705968576e+00,8.075306385621374219e-03,-1.171911348668440295e-01,-1.183823050615439243e+00,-1.895802845863255870e-01,8.833304821500694848e-01,1.056329767532540043e+00,-5.926698038502803412e-01,-2.047753278774852581e-01,-1.018035551059891075e+00,-4.286717340553138356e-01,5.979799520139001956e-01,1.145990764008373297e+00,-1.393405905901555220e-01,-4.478548307165188258e-01,-1.036243620827202783e+00,-4.039065655150421708e-01,6.213783540871893329e-01,1.198534982311180830e+00,1.900532105635747704e-01,-4.282848157003886769e-01,-1.174206561934624693e+00,-5.182139763332391791e-01,2.157700370686833624e-01,1.189833130982760778e+00,8.136028958664193178e-02,-4.059772665217572518e-01,-1.233078341022125990e+00,-5.189786264575554364e-01,1.824613705396017360e-01,1.378612054949457821e+00,1.450528313828670368e-01,-2.842021294208409987e-01,-1.056513987653811881e+00,-5.721227368303091199e-01,1.536738884972205788e-01,1.378612054949457821e+00,1.450528313828670368e-01,-2.842021294208410542e-01,-1.163316974000238035e+00,-9.290251783501249361e-03,7.948354808712215780e-01,1.599854008569621122e+00,-6.008436214106794848e-01,-2.305753994298635201e-01,-9.347364411130376638e-01,-5.082546196136031313e-02,4.615469893071260099e-01,1.595221556826808662e+00,1.939014175284584640e-01,-2.094374594469124162e-01,-9.490186286916726388e-01,-5.073522897821550887e-02,4.955793131589297795e-01,1.465576127715544574e+00,4.947574751318447039e-01,-3.983773247920632254e-01,-1.164218211486502064e+00,-1.168270750151833431e-02,9.985879967019239967e-02,1.529011405790062561e+00,1.768437501744653528e-01,-3.130268127475097639e-01,-1.217288507768972794e+00,1.225259719915349974e-02,6.541198312551746441e-02,1.814881007057693063e+00,1.177134680675013950e-01,-1.194163756600798432e-01,-1.033306154775060159e+00,-8.213288358865623862e-03,4.175552977400819044e-02,1.814881007057693063e+00,1.177134680675013811e-01,-1.194163756600797877e-01,-1.165208284324677823e+00,-4.257329004823382640e-02,9.568649351524152191e-01,1.101126436759903848e+00,1.704770869239610048e-02,-1.032610262136558210e-01,-1.154263442911603876e+00,-2.906789842259534240e-02,9.853176906645160216e-01,1.080082424006773234e+00,2.809694145184771230e-02,-8.926347585082423930e-02,-1.151445188282980814e+00,-1.356251037948665722e-02,1.014541794020181298e+00,1.041472905398829862e+00,3.938549223520065173e-02,-7.547942062097331983e-02,-1.155580202853317973e+00,4.669515732075277953e-03,1.044986613555230148e+00,1.002880310595852364e+00,4.880538261954372320e-02,-6.431090012398382738e-02,-1.164756407031298124e+00,2.087324940250122676e-02,1.069736414481859521e+00,9.706416597168878724e-01,5.768636845572002597e-02,-5.411196567865849544e-02,-1.169060357039139131e+00,-3.464193494820290431e-02,9.934213158773994579e-01,9.463230320578639443e-01,6.570424539420660626e-02,-4.463113934011575523e-02,-1.166643707084705550e+00,-1.691405428838399852e-02,1.018091775587615766e+00,9.463230320599752554e-01,6.570424534968340169e-02,-4.463113930795922085e-02,-1.067663022795050765e+00,5.929574084913305509e-03,1.022685859819257415e+00,9.384393084329695212e-01,7.319836612829538902e-02,-4.870372014916114767e-02,-1.080675986213022410e+00,7.829393078404740802e-02,1.502255014868547844e+00,9.463230320578639443e-01,6.570424539420660626e-02,-4.463113934011575523e-02,-1.113889240777484080e+00,3.851564445753167254e-01,1.226040044741178336e+00,9.463230320578639443e-01,6.570424539420660626e-02,-4.463113934011575523e-02,-1.093543737303077190e+00,4.829670623439480392e-02,1.480707041776650801e+00,4.746299887097321091e-01,-6.772959983965546327e-01,-8.328242082563985793e-01,-1.225801543291106466e+00,-2.179661977756681135e-01,1.369616108173278501e+00,-5.731589235612420952e-01,-4.473753898578665122e-01,1.329542260882033089e+00,-1.233124021160252992e+00,-2.346991172069340381e-01,1.392076060810465199e+00,-7.410354999285994060e-01,8.999381309670032580e-01,4.152947332802642832e-01,-1.056220585609595641e+00,-3.310144794443167782e-01,1.500569873002299381e+00,-7.410354999285995170e-01,8.999381309670032580e-01,4.152947332802642832e-01,-1.126807659759749836e+00,3.742681718810159097e-01,1.190765583556063323e+00,1.494195877790388982e+00,1.988661970224042327e-02,-7.840391021533624216e-02,-1.121282242926349815e+00,3.388889987234472989e-01,8.754133349498230965e-01,1.365159062929401257e+00,-4.652972648335759742e-01,-1.989400868215157256e-02,-1.118818569660296358e+00,3.609851973883201337e-01,8.568729178589740147e-01,1.995299621841564175e+00,-2.368075975604355676e-01,-1.708378215692225588e+00,-1.019192656300212274e+00,3.075716803326399296e-01,6.579657651988133349e-01,1.995299621841564175e+00,-2.368075975604355676e-01,-1.708378215692225366e+00
|
||||
5.333333000000000101e-01,-1.075060389999999977e+00,-7.583728000000000691e-02,9.108563299999999918e-01,1.103422538595274727e+00,1.402356413751588288e-02,-9.819401701573576835e-02,-1.064066902292609473e+00,-8.633366781590351424e-02,8.921237543659129576e-01,1.103422538595274727e+00,1.402356413751588288e-02,-9.819401701573576835e-02,-1.173887214083032315e+00,-1.932550839680002297e-01,8.853730256734243520e-01,1.021838566107856172e+00,-5.845222743857552139e-01,-1.787446293397661756e-01,-1.009261817732559408e+00,-4.386599153674643481e-01,6.054003271312093926e-01,1.113705862262591051e+00,-1.674346699155108698e-01,-4.224772261303124665e-01,-1.028629038516125416e+00,-4.132216378933225576e-01,6.274505431980996750e-01,1.163943121666450420e+00,1.593772161300898715e-01,-4.159831815643522668e-01,-1.158650161403414591e+00,-5.476116507897796915e-01,2.253909752751695472e-01,1.155787814356057597e+00,6.022603780043597060e-02,-3.921074131518859640e-01,-1.217280915470602576e+00,-5.506545133670956993e-01,1.917886837828587099e-01,1.356223938125614925e+00,1.322948233803110663e-01,-2.635326434199811718e-01,-1.039322044809277701e+00,-6.002702372159746114e-01,1.653896919475571770e-01,1.356223938125614925e+00,1.322948233803110663e-01,-2.635326434199812273e-01,-1.157487372370445078e+00,-1.376711902316792024e-02,7.944253704573607244e-01,1.604008060650855105e+00,-5.840975868311064634e-01,-2.246156007868546078e-01,-9.334058896399075600e-01,-5.112555744892158249e-02,4.576032882411064096e-01,1.599060552949143066e+00,1.994052916974809186e-01,-2.006962162723391896e-01,-9.476233286954861557e-01,-5.129106484508040575e-02,4.917185410939571288e-01,1.469284114754172643e+00,5.006802599448256785e-01,-3.882296669381469778e-01,-1.164819578776061570e+00,-1.196356278138292067e-02,9.711770328831786925e-02,1.534504594366724151e+00,1.709893620573830209e-01,-3.014462185865198207e-01,-1.217892254057088008e+00,1.152475237721548723e-02,6.236819223836487236e-02,1.816813360925468857e+00,1.116402788650176225e-01,-1.098094264097412703e-01,-1.033581655507664232e+00,-7.184750832640654505e-03,3.983945010711710533e-02,1.816813360925468857e+00,1.116402788650176087e-01,-1.098094264097412148e-01,-1.157564608936320072e+00,-4.497971772479561481e-02,9.568773617112091845e-01,1.087404207254928368e+00,2.230257162427072906e-02,-8.590573373605082941e-02,-1.146678132532573891e+00,-3.090697726739120507e-02,9.850760857062467180e-01,1.066147175042660322e+00,3.251831618426276327e-02,-7.362679797183534214e-02,-1.143951285237811977e+00,-1.496386832900225422e-02,1.014072560792993016e+00,1.027105311042151969e+00,4.292900921227380678e-02,-6.153818861953778974e-02,-1.148217226916838696e+00,3.633857010761739476e-03,1.044277380453479731e+00,9.880613078427191720e-01,5.159328425824384612e-02,-5.174542993304082766e-02,-1.157521173360955169e+00,2.007750529746786528e-02,1.068820305001845439e+00,9.554236698851922283e-01,5.974564510358959524e-02,-4.280702013151218427e-02,-1.161346941747496420e+00,-3.667173571602497240e-02,9.933926892876150383e-01,9.307798026184124218e-01,6.708766623034134735e-02,-3.448244365168089826e-02,-1.159081800724310440e+00,-1.853887933274155422e-02,1.017781584045942100e+00,9.307798026206145492e-01,6.708766618632225343e-02,-3.448244361883173736e-02,-1.060510532307673115e+00,5.680792478430007897e-03,1.021792836874760191e+00,9.226604537132131467e-01,7.382318035038530624e-02,-3.823162579968501090e-02,-1.074723840747179304e+00,8.475399851642426152e-02,1.499664844744307501e+00,9.307798026184124218e-01,6.708766623034134735e-02,-3.448244365168089826e-02,-1.110642725122459096e+00,3.871261137023109811e-01,1.219383698189688836e+00,9.307798026184124218e-01,6.708766623034134735e-02,-3.448244365168089826e-02,-1.087296098792563726e+00,5.428560541573861781e-02,1.478609133104247242e+00,4.412106953267150300e-01,-6.973927713631723480e-01,-8.193273343166043166e-01,-1.222187803461733502e+00,-2.143831387677837541e-01,1.376871280090718574e+00,-5.767058494556547288e-01,-4.117873665336577726e-01,1.327769560286559125e+00,-1.229440302409470220e+00,-2.302880550767653633e-01,1.399947103879251253e+00,-7.907505182831550128e-01,9.184934170506255935e-01,3.728135477359881267e-01,-1.052251888641663857e+00,-3.233039355235474144e-01,1.510828544200070400e+00,-7.907505182831550128e-01,9.184934170506255935e-01,3.728135477359881267e-01,-1.123505768970536334e+00,3.755505267468587371e-01,1.184308414402295062e+00,1.493328252020173830e+00,1.591809622935429214e-02,-6.237356600546487689e-02,-1.116181524869193753e+00,3.399135690854751535e-01,8.690218470980528576e-01,1.356063067175027781e+00,-4.926525951330284481e-01,1.735550980548219643e-03,-1.113594777720572582e+00,3.618990395315802022e-01,8.503669127439849040e-01,2.024263746929796604e+00,-2.414573519749003694e-01,-1.697802050178674804e+00,-1.007656187369564416e+00,3.086360873599091059e-01,6.547078858710591032e-01,2.024263746929796604e+00,-2.414573519749003694e-01,-1.697802050178674804e+00
|
||||
5.500000000000000444e-01,-1.067451560000000077e+00,-7.743840000000000445e-02,9.105485800000000518e-01,1.089852370442450535e+00,1.754316656776794964e-02,-8.415892703315762391e-02,-1.056396463328936886e+00,-8.802424880174138100e-02,8.919028040230849719e-01,1.089852370442450535e+00,1.754316656776794964e-02,-8.415892703315762391e-02,-1.164708988924718636e+00,-1.965760795762817592e-01,8.870903944235376537e-01,9.907064489797036133e-01,-5.774974753033440544e-01,-1.590713001574290963e-01,-1.001671611179515864e+00,-4.482108389302428275e-01,6.124534229200668811e-01,1.083811896962370680e+00,-1.936647875104731964e-01,-4.010705713566232733e-01,-1.022074251044139181e+00,-4.221779930734088637e-01,6.331888568466981226e-01,1.132523038401880955e+00,1.300588159992122350e-01,-4.065448243476559309e-01,-1.144314196741525569e+00,-5.744243805606175091e-01,2.350726711740359631e-01,1.125183952745128835e+00,4.439259439332882834e-02,-3.831193078415501274e-01,-1.202798900761816725e+00,-5.792400831969248820e-01,2.014232026423736222e-01,1.336540714545220387e+00,1.244141196162005525e-01,-2.485700680485652403e-01,-1.023926451204987931e+00,-6.262723775322975861e-01,1.765114273320249616e-01,1.336540714545220387e+00,1.244141196162005386e-01,-2.485700680485652958e-01,-1.151296518565444460e+00,-1.809155178948385762e-02,7.937108498909120069e-01,1.607840566489854739e+00,-5.689122216064187443e-01,-2.179798697765327475e-01,-9.313981609692576491e-01,-5.138833136236974075e-02,4.537235943848774711e-01,1.602679338712613699e+00,2.062221601671378191e-01,-1.914864667686326793e-01,-9.454774180382921056e-01,-5.182223307504054549e-02,4.879350418368452180e-01,1.472325134851919959e+00,5.078903151726863463e-01,-3.779878617619928938e-01,-1.165261213578398847e+00,-1.237717319798509186e-02,9.478131219177798883e-02,1.539364368749186252e+00,1.673381074527446333e-01,-2.898236521677161059e-01,-1.218414918962941185e+00,1.065987298936939276e-02,5.985401004087178428e-02,1.818956943025591189e+00,1.077379022382808499e-01,-9.981211722770103045e-02,-1.033839673832336992e+00,-6.211043770962793031e-03,3.805177339721296792e-02,1.818956943025591189e+00,1.077379022382808360e-01,-9.981211722770097494e-02,-1.150173284991997447e+00,-4.715098947983951266e-02,9.565579228550775692e-01,1.073884641206019674e+00,2.549464504868822687e-02,-7.272846637009920678e-02,-1.139361204318660725e+00,-3.255982892046238586e-02,9.845204909476226174e-01,1.052673320742404606e+00,3.527963782550539579e-02,-6.133916701632153440e-02,-1.136734551884770239e+00,-1.620039720620318480e-02,1.013293573964442196e+00,1.013695268832099927e+00,4.524040245881022493e-02,-5.012898668010611070e-02,-1.141134168436753971e+00,2.742930999429311206e-03,1.043263797900474188e+00,9.747062792290857036e-01,5.352194172918807447e-02,-4.104915167000005444e-02,-1.150564848336635304e+00,1.940389268448155374e-02,1.067610997104033288e+00,9.421051164445443105e-01,6.130748999637482266e-02,-3.276367183175919739e-02,-1.153918563627523319e+00,-3.837955448284618987e-02,9.929505163622569519e-01,9.174783796322106832e-01,6.831783373916433533e-02,-2.504101773865127431e-02,-1.151803296846716229e+00,-1.990303678098908832e-02,1.017093703228605595e+00,9.174783796344931908e-01,6.831783369558508401e-02,-2.504101770521540912e-02,-1.053586977899428900e+00,5.392168471012051545e-03,1.020669558575685310e+00,9.092938621463863003e-01,7.459354870411205596e-02,-2.863805018757194579e-02,-1.067666662621149065e+00,8.922786893854192658e-02,1.495852832993442405e+00,9.174783796322106832e-01,6.831783373916433533e-02,-2.504101773865127431e-02,-1.106893685622258205e+00,3.887309680903095477e-01,1.212997095480857102e+00,9.174783796322106832e-01,6.831783373916433533e-02,-2.504101773865127431e-02,-1.079955605114376826e+00,5.835520083164350003e-02,1.475223051135011509e+00,4.025053118185040191e-01,-7.138350192391915705e-01,-8.083991363017988263e-01,-1.219643658791254914e+00,-2.114801696082144467e-01,1.383542206106956218e+00,-5.767242618125063558e-01,-3.655531785690240842e-01,1.332571122416581710e+00,-1.226564195756157272e+00,-2.263653485004260557e-01,1.407387464855108350e+00,-8.551507577176209463e-01,9.442136485389907019e-01,3.259209173699624817e-01,-1.047712336574133651e+00,-3.135006656256066893e-01,1.520355738158229331e+00,-8.551507577176210573e-01,9.442136485389908129e-01,3.259209173699625373e-01,-1.119690779989212404e+00,3.765598719066729494e-01,1.178099725427815159e+00,1.491189931817676451e+00,1.837574572140372037e-02,-2.766130854774515035e-02,-1.111925993289693659e+00,3.405465302594593568e-01,8.628664718893914731e-01,1.344212055883549084e+00,-5.176897290116004857e-01,4.390064833660439758e-02,-1.109665110873491178e+00,3.624367504181777999e-01,8.440578191092217297e-01,2.051273797802202203e+00,-2.483677280367423412e-01,-1.667922417025581083e+00,-9.969204751365925432e-01,3.112562008085781318e-01,6.516738794191472284e-01,2.051273797802202203e+00,-2.483677280367423412e-01,-1.667922417025581083e+00
|
||||
5.666666999999999677e-01,-1.060357470000000024e+00,-7.933268000000000264e-02,9.105717899999999920e-01,1.078417312649503579e+00,1.525388078559861138e-02,-7.698178979139108646e-02,-1.049198626157962888e+00,-9.005186223751618368e-02,8.920645034536386353e-01,1.078417312649503579e+00,1.525388078559861138e-02,-7.698178979139108646e-02,-1.156702800503655038e+00,-1.994476789046080167e-01,8.883671739327334560e-01,9.630644653682425282e-01,-5.738257784525503391e-01,-1.479578608604253942e-01,-9.957259856225461059e-01,-4.575983661017267723e-01,6.194038564191015617e-01,1.056828849312472896e+00,-2.222018466664617553e-01,-3.852018149715582540e-01,-1.017095957558738606e+00,-4.309710508723385569e-01,6.387452960940602775e-01,1.104586281891153599e+00,9.780383553785984563e-02,-4.015842717331254419e-01,-1.130605281277961449e+00,-5.993131084480933790e-01,2.445440160333268720e-01,1.098281150312290455e+00,2.867897918410787853e-02,-3.806583508979085595e-01,-1.188917541053777338e+00,-6.053680712520987939e-01,2.107955921595280335e-01,1.318649699094320393e+00,1.159339193623317721e-01,-2.413047628726055216e-01,-1.009513727568958075e+00,-6.511797361361404413e-01,1.874814432863831093e-01,1.318649699094320393e+00,1.159339193623317582e-01,-2.413047628726055771e-01,-1.144472592045017389e+00,-2.196197847403982134e-02,7.929438617848935111e-01,1.610779820603419177e+00,-5.546273574953350938e-01,-2.113179397352338562e-01,-9.286989188567187359e-01,-5.164163029368092767e-02,4.499963270561802564e-01,1.605581819353042006e+00,2.145912121324556887e-01,-1.828431024148301776e-01,-9.425588722332778335e-01,-5.232602513681400280e-02,4.843220093253448044e-01,1.474115496780191270e+00,5.165328160973376992e-01,-3.688660148884750356e-01,-1.165600797578892456e+00,-1.289976292993100931e-02,9.300557208936338638e-02,1.543029677587893334e+00,1.666410536110278229e-01,-2.792502552339142241e-01,-1.218923159279351687e+00,9.721160501198908288e-03,5.806336416693695657e-02,1.821223590299750228e+00,1.067409185292687301e-01,-9.025360351602895737e-02,-1.034172788264552167e+00,-5.382794671655977137e-03,3.644953946946610790e-02,1.821223590299750228e+00,1.067409185292687163e-01,-9.025360351602890185e-02,-1.143364290538868566e+00,-4.912539113308644206e-02,9.561180093267827029e-01,1.062179674427984111e+00,2.286229764260577779e-02,-6.633280537783221853e-02,-1.132701880029032715e+00,-3.413054629743808577e-02,9.839237176060392498e-01,1.040611126933242092e+00,3.220586172842189454e-02,-5.575086570079833964e-02,-1.130242308997665424e+00,-1.740545428781551524e-02,1.012500752693176853e+00,1.001015560053847953e+00,4.171680406012865522e-02,-4.534427426520415416e-02,-1.134831277685219852e+00,1.897562882802246442e-03,1.042212117449550668e+00,9.614128654480972314e-01,4.962407643762038745e-02,-3.692267334872924300e-02,-1.144424897657449369e+00,1.883982716238843946e-02,1.066300084533770232e+00,9.282844170720273569e-01,5.705688204643272893e-02,-2.924485692689214600e-02,-1.147235646521823416e+00,-4.003083833895684090e-02,9.924712981442215254e-01,9.032394573650066594e-01,6.375314546263285975e-02,-2.208705978505169990e-02,-1.145294551030364705e+00,-2.120274021861973460e-02,1.016356113434871089e+00,9.032394573671755911e-01,6.375314541953298886e-02,-2.208705975100755045e-02,-1.047283769602459280e+00,4.738444706848754517e-03,1.019892774596415030e+00,8.948842958795653058e-01,6.969087256064304681e-02,-2.559195439521462501e-02,-1.065484333304538289e+00,9.451514335860025651e-02,1.493214146087839644e+00,9.032394573650066594e-01,6.375314546263285975e-02,-2.208705978505169990e-02,-1.105412846353907907e+00,3.904170755369463786e-01,1.206838550208514604e+00,9.032394573650066594e-01,6.375314546263285975e-02,-2.208705978505169990e-02,-1.077566003106857018e+00,6.330259206389743376e-02,1.472977112223404550e+00,3.693237561975576955e-01,-7.304371727590376340e-01,-7.844165844849659841e-01,-1.217238878932223045e+00,-2.093743498542516845e-01,1.390103534224465864e+00,-5.783427986270655019e-01,-3.279943869558489822e-01,1.346731383561080797e+00,-1.223790323219840159e+00,-2.234602325850901239e-01,1.414531494285456548e+00,-9.121197472164297437e-01,9.622460693238503726e-01,2.930786491662455973e-01,-1.042986587195956272e+00,-3.039444914352866234e-01,1.529312481010615565e+00,-9.121197472164297437e-01,9.622460693238503726e-01,2.930786491662455973e-01,-1.118014178576297812e+00,3.776979801883718624e-01,1.172065591132505080e+00,1.494009260241138781e+00,1.209038835339267155e-02,-2.199658670841261876e-02,-1.108046490349553936e+00,3.425737210467107996e-01,8.567939805541471276e-01,1.342667044523991660e+00,-5.361088795264776774e-01,5.101722500554116413e-02,-1.105577461859754251e+00,3.644702867828278903e-01,8.380189158516618830e-01,2.070274260374789232e+00,-2.470508506675113680e-01,-1.666241529680434486e+00,-9.889782787442892298e-01,3.139286802534245191e-01,6.477754972987614934e-01,2.070274260374789232e+00,-2.470508506675113680e-01,-1.666241529680434486e+00
|
||||
5.833333000000000546e-01,-1.054546200000000100e+00,-8.159608999999999612e-02,9.100732400000000055e-01,1.064723205787748483e+00,1.322434494065884841e-02,-7.565948612268098838e-02,-1.043352860982301067e+00,-9.255275153553749190e-02,8.917265495989573632e-01,1.064723205787748483e+00,1.322434494065884841e-02,-7.565948612268098838e-02,-1.150687962000178421e+00,-2.021528955484607759e-01,8.894359222998023951e-01,9.381598878317346513e-01,-5.748236513258863090e-01,-1.415899986085143725e-01,-9.912643638229774457e-01,-4.667342563756740614e-01,6.267464982306790722e-01,1.032476810027501246e+00,-2.539664578922883886e-01,-3.719775323045688697e-01,-1.013592942392771867e+00,-4.395549955627645611e-01,6.445842430266748302e-01,1.079902823350233465e+00,6.183567327147041631e-02,-3.982946818357340768e-01,-1.116939759444830704e+00,-6.228528106393647068e-01,2.542774271562525112e-01,1.074405797159259546e+00,6.807563090773013220e-03,-3.801885913713974885e-01,-1.174857254776808801e+00,-6.299889400492862945e-01,2.200637205432461330e-01,1.299026030191988257e+00,9.995531646404928749e-02,-2.385573804041287993e-01,-9.949941558700575728e-01,-6.754236121632468670e-01,1.997427291407612993e-01,1.299026030191988257e+00,9.995531646404927362e-02,-2.385573804041288548e-01,-1.138631387219392277e+00,-2.598313329300515340e-02,7.915828986932382794e-01,1.614347756955156088e+00,-5.451774217311506909e-01,-2.058490934055074717e-01,-9.256272606370046230e-01,-5.239134762693420377e-02,4.466419690015165367e-01,1.608988261323687441e+00,2.242926217080379592e-01,-1.747557389891862822e-01,-9.391703499223134077e-01,-5.334883175661497834e-02,4.810856891111286449e-01,1.475792838792955086e+00,5.266881795452867943e-01,-3.606965917627319440e-01,-1.166002078096350481e+00,-1.362833277039779412e-02,9.198373111244140254e-02,1.546568178321635845e+00,1.686095542437856809e-01,-2.698529349607732275e-01,-1.219555278392766118e+00,8.657688908043720266e-03,5.717961778591406502e-02,1.824087972541037050e+00,1.083219764286708076e-01,-8.166594648680869373e-02,-1.034715399360152110e+00,-4.851421095915339765e-03,3.527734538937359055e-02,1.824087972541037050e+00,1.083219764286707937e-01,-8.166594648680862434e-02,-1.137643603464465247e+00,-5.088938617689511834e-02,9.551175573930796858e-01,1.048859745220310336e+00,1.982990338437692207e-02,-6.689533121008292560e-02,-1.127036734708181109e+00,-3.552302495519114867e-02,9.827406683614254845e-01,1.027779783962098792e+00,2.798155828005816081e-02,-5.826317320915110065e-02,-1.124640748059236417e+00,-1.843378852578549110e-02,1.011107127419811791e+00,9.891250238914872650e-01,3.623539236175203626e-02,-4.976289201837848231e-02,-1.129298429586461205e+00,1.241116973562092496e-03,1.040563329378662694e+00,9.504650133202877660e-01,4.305985850086803401e-02,-4.287223881671267667e-02,-1.138946092564341095e+00,1.850303729548280485e-02,1.064401508503183935e+00,9.181022018849802624e-01,4.944878575406957272e-02,-3.658330728455537473e-02,-1.141617729764857314e+00,-4.106726495985855291e-02,9.911321529004056829e-01,8.936049979767987095e-01,5.517305270107360216e-02,-3.069442476197000239e-02,-1.139722569168197364e+00,-2.202037296893383927e-02,1.014846574753011987e+00,8.936049979786978570e-01,5.517305265830307198e-02,-3.069442472752895168e-02,-1.041768020449814092e+00,2.892991666749916702e-03,1.019268382914534365e+00,8.853805723725287624e-01,6.001141474927912389e-02,-3.356498610100153851e-02,-1.062990627556945178e+00,9.597099105684497866e-02,1.488953660749225305e+00,8.936049979767987095e-01,5.517305270107360216e-02,-3.069442476197000239e-02,-1.104466260912653652e+00,3.907433318074677309e-01,1.201068756766525025e+00,8.936049979767987095e-01,5.517305270107360216e-02,-3.069442476197000239e-02,-1.075155908579463082e+00,6.465771992916506672e-02,1.468923367888296472e+00,3.262094856664453091e-01,-7.457346385276869549e-01,-7.589281100269236191e-01,-1.216667797859957822e+00,-2.101217708952200502e-01,1.396813219919618598e+00,-5.749863237121783932e-01,-2.706146287378145554e-01,1.376006128536808149e+00,-1.222436408677981090e+00,-2.230154824895066168e-01,1.422082451761041755e+00,-1.000392292231535363e+00,9.916654226778153225e-01,2.501606029111815843e-01,-1.037636875296894079e+00,-2.915604804850741028e-01,1.538242244754921551e+00,-1.000392292231535363e+00,9.916654226778153225e-01,2.501606029111815843e-01,-1.116881421556475962e+00,3.777826562194196991e-01,1.166318039973105236e+00,1.498782090213542473e+00,1.072355215783557525e-02,-1.475804488625808049e-02,-1.106208426855192828e+00,3.442293708623137549e-01,8.508984447489673641e-01,1.343437839894594088e+00,-5.507115780019888884e-01,5.851584027681849820e-02,-1.103639921078639619e+00,3.661731547975010104e-01,8.321919787015367165e-01,2.085063843963193442e+00,-2.442440421061694011e-01,-1.661941018899570910e+00,-9.838912444869907237e-01,3.168409974365750115e-01,6.435945913889697945e-01,2.085063843963193442e+00,-2.442440421061694011e-01,-1.661941018899570910e+00
|
||||
5.999999999999999778e-01,-1.050503509999999974e+00,-8.479154999999999331e-02,9.099205900000000291e-01,1.057988395636016321e+00,9.529080769166205223e-03,-7.906610846154409067e-02,-1.039289066053558308e+00,-9.591355049401301125e-02,8.916866197514645709e-01,1.057988395636016321e+00,9.529080769166205223e-03,-7.906610846154409067e-02,-1.146981991042465010e+00,-2.051702158178863866e-01,8.898218298877051957e-01,9.132946681964966285e-01,-5.823537897810707742e-01,-1.333984176388066933e-01,-9.871260919467879091e-01,-4.759640863935353794e-01,6.346404218595083080e-01,1.009593642029953164e+00,-2.871933915079789013e-01,-3.587567763305948843e-01,-1.010355478890246017e+00,-4.483285457312689570e-01,6.509275556320514022e-01,1.057555763253736014e+00,2.462959231162444029e-02,-3.940618578059517096e-01,-1.102730843897200996e+00,-6.457081880649191419e-01,2.647590265496997386e-01,1.052934224997826851e+00,-1.712402506554734291e-02,-3.793094708060801845e-01,-1.160150010248114150e+00,-6.538831843595795945e-01,2.299431235765729553e-01,1.272562723569649279e+00,7.864688464771142640e-02,-2.411508107681998303e-01,-9.800330827991963201e-01,-6.999216705334510014e-01,2.136232979891998507e-01,1.272562723569649279e+00,7.864688464771141252e-02,-2.411508107681998858e-01,-1.134028520240124571e+00,-2.973122234646796008e-02,7.907777613048578846e-01,1.617234042327617027e+00,-5.382494508409281231e-01,-2.013513763944155266e-01,-9.231019117965701959e-01,-5.353768220030563629e-02,4.443725357469994197e-01,1.611769435364938330e+00,2.327192492710901950e-01,-1.680788098584199419e-01,-9.363548296370358681e-01,-5.472052585816486459e-02,4.789142030049057253e-01,1.476970827972167388e+00,5.354999864434056844e-01,-3.541077118835743165e-01,-1.166491195701758743e+00,-1.480336545101006152e-02,9.177784720232801119e-02,1.549323709791734727e+00,1.708684185998723126e-01,-2.622369418233362892e-01,-1.220253670507221999e+00,7.210603522629879802e-03,5.712355740286350486e-02,1.825697983107996247e+00,1.105099027953729413e-01,-7.516216589136447135e-02,-1.035377572566472226e+00,-5.089672389162773133e-03,3.481844380264170757e-02,1.825697983107996247e+00,1.105099027953729274e-01,-7.516216589136441584e-02,-1.133639426477951684e+00,-5.349444266472248855e-02,9.544849380311295484e-01,1.041342755795855224e+00,1.293896773774674130e-02,-7.575531924064399236e-02,-1.123072581530160763e+00,-3.799259487038511574e-02,9.820470866832734513e-01,1.019201110111200625e+00,1.751445742764647789e-02,-7.282225420776791691e-02,-1.120709406859253798e+00,-2.067761109922923793e-02,1.010279260739727958e+00,9.786942611753419730e-01,2.199615987960206603e-02,-6.989727568238889022e-02,-1.125371472629378422e+00,-5.808145163729537541e-04,1.039448800734757983e+00,9.381846926795559538e-01,2.555990938834883097e-02,-6.749068406600880476e-02,-1.134991842655721062e+00,1.723648454018548298e-02,1.062885605158594649e+00,9.042215032699686406e-01,2.880186964540965011e-02,-6.527690878023659216e-02,-1.137903533121960242e+00,-4.348813818525026909e-02,9.905781676137166425e-01,8.784424331343014813e-01,3.155514790498844396e-02,-6.309346111243091526e-02,-1.135938292976191422e+00,-2.411951888957302934e-02,1.014024786767723230e+00,8.784424331354073745e-01,3.155514786274422889e-02,-6.309346107738028619e-02,-1.037835011776624849e+00,-1.471883355472311528e-03,1.020174872166061730e+00,8.696723538859266744e-01,3.379947495663617602e-02,-6.414709731199738640e-02,-1.066806669567361032e+00,9.953707792994273551e-02,1.488038675355465523e+00,8.784424331343014813e-01,3.155514790498844396e-02,-6.309346111243091526e-02,-1.088400396805766723e+00,3.912646300167360591e-01,1.195444826486112611e+00,8.784424331343014813e-01,3.155514790498844396e-02,-6.309346111243091526e-02,-1.079508988605449638e+00,6.829498769704173133e-02,1.468231844914910544e+00,2.954792084213006542e-01,-7.588625298696113353e-01,-7.165859072145259745e-01,-1.215473010309130242e+00,-2.111805783648930679e-01,1.403916608757136864e+00,-5.736512478695567907e-01,-2.322243527742181013e-01,1.415966485377136763e+00,-1.220533960503049187e+00,-2.233329024041061650e-01,1.429699675892035282e+00,-1.064362905630432010e+00,1.008445736747668686e+00,2.366145718792828090e-01,-1.032284696062469420e+00,-2.799782514918213727e-01,1.546729162179775630e+00,-1.064362905630432232e+00,1.008445736747668686e+00,2.366145718792828367e-01,-1.100433721500669426e+00,3.781270250638562591e-01,1.160626295844281675e+00,1.500228125547862446e+00,6.991785260911095867e-02,3.053031374216174515e-02,-1.106940877193234529e+00,3.449767605320352981e-01,8.450506730345167528e-01,1.326503479437287636e+00,-5.569102938333628794e-01,1.164960413409340950e-01,-1.105305427552603748e+00,3.667633900749282527e-01,8.260578632124880860e-01,2.093683867245698771e+00,-2.575160849901512172e-01,-1.615007379385546393e+00,-9.818215992074483811e-01,3.208067121338182837e-01,6.390228138599611807e-01,2.093683867245698327e+00,-2.575160849901511617e-01,-1.615007379385546393e+00
|
||||
6.166667000000000121e-01,-1.047942670000000076e+00,-8.861710000000000420e-02,9.096942599999999768e-01,1.052555693508496315e+00,9.611900226953370638e-03,-8.174661691117617035e-02,-1.036767075681187089e+00,-9.986699310427825382e-02,8.915149774012610662e-01,1.052555693508496315e+00,9.611900226953370638e-03,-8.174661691117617035e-02,-1.144747622091965233e+00,-2.088485458756238478e-01,8.902962879529924267e-01,8.871634798762232377e-01,-5.915201517872181736e-01,-1.164231777387502165e-01,-9.820795335295949835e-01,-4.847085519914743346e-01,6.431429835146904583e-01,9.861769101188507802e-01,-3.174980167732217029e-01,-3.390998259058281561e-01,-1.006233855839418379e+00,-4.568419773392305983e-01,6.579498920210775648e-01,1.035416094095189532e+00,-9.334662128998730615e-03,-3.830893125233981733e-01,-1.087489051586610023e+00,-6.679920275886109815e-01,2.765953148028089115e-01,1.032113279081501966e+00,-3.650825679471068202e-02,-3.728235447055848750e-01,-1.144492552480306014e+00,-6.774328563606683007e-01,2.414184763057975747e-01,1.237099137894961176e+00,5.770781314362789099e-02,-2.447872029012176931e-01,-9.642628837190232449e-01,-7.242560076955762982e-01,2.290554076216351209e-01,1.237099137894961176e+00,5.770781314362787018e-02,-2.447872029012177486e-01,-1.131385399933214853e+00,-3.398237489082765045e-02,7.902981198616145786e-01,1.621749552152154772e+00,-5.364727363646476510e-01,-1.980495011150911477e-01,-9.208550890510492914e-01,-5.512814010449383628e-02,4.434758800215344854e-01,1.615875535096124471e+00,2.396366830541653559e-01,-1.612838869355514293e-01,-9.338429045413365603e-01,-5.657155218916123246e-02,4.780823163759668204e-01,1.479710575058918787e+00,5.431341112479294297e-01,-3.470445983638281162e-01,-1.166664454426744157e+00,-1.609790690867336782e-02,9.261286932313944620e-02,1.552995014865089063e+00,1.741442106461207062e-01,-2.552245331988301502e-01,-1.220644240569138672e+00,5.721987866689277197e-03,5.817432683511894465e-02,1.827194849741887950e+00,1.139144946431093763e-01,-7.007775667971319344e-02,-1.035784360854977937e+00,-5.630184251698722511e-03,3.524095529312283592e-02,1.827194849741887950e+00,1.139144946431093625e-01,-7.007775667971313793e-02,-1.130972627384531748e+00,-5.686093631211548705e-02,9.541312141730259322e-01,1.035093521478064105e+00,1.258566218765201292e-02,-7.917435277426340678e-02,-1.120350088916545195e+00,-4.121928734388546900e-02,9.815926053547836538e-01,1.011863944589821873e+00,1.666210420008113965e-02,-7.701354947210976853e-02,-1.117924535850470358e+00,-2.370466695184681588e-02,1.009695989707862784e+00,9.693757766930398700e-01,2.062463207668168222e-02,-7.484885718016844047e-02,-1.122510360083086578e+00,-3.307492303465119771e-03,1.038668218802539567e+00,9.268852543626617813e-01,2.374510672057688829e-02,-7.305835098945519246e-02,-1.132059180341979943e+00,1.483196428746476683e-02,1.061885876768063675e+00,8.912567197192418078e-01,2.656261836511119787e-02,-7.140805921010529023e-02,-1.135231137805779333e+00,-4.693841162659695421e-02,9.904793899601403995e-01,8.642073024660024139e-01,2.892130306765911332e-02,-6.973912700243453666e-02,-1.133183757539774295e+00,-2.724727135478335546e-02,1.013648696398758542e+00,8.642073024670331449e-01,2.892130302591786745e-02,-6.973912696678867540e-02,-1.034983246637969145e+00,-4.439832989553624265e-03,1.019231649734831047e+00,8.549868126128512547e-01,3.086949939595139136e-02,-7.058723253328076652e-02,-1.063768437180121484e+00,1.013979690815731693e-01,1.484522558910594814e+00,8.642073024660024139e-01,2.892130306765911332e-02,-6.973912700243453666e-02,-1.088643271847828498e+00,3.913128280914146551e-01,1.189880977425541886e+00,8.642073024660024139e-01,2.892130306765911332e-02,-6.973912700243453666e-02,-1.076632575414790294e+00,6.995374176145255363e-02,1.465144680830502644e+00,2.508996524000371986e-01,-7.759286869209279791e-01,-6.834980178205305457e-01,-1.212445816364606133e+00,-2.119016625308508817e-01,1.411838475943666182e+00,-5.690630236655134233e-01,-1.776934084747063269e-01,1.445199753113939556e+00,-1.216843653383089308e+00,-2.228022346589665081e-01,1.438294010414560065e+00,-1.159246871629360687e+00,1.031461451263355755e+00,1.859109666261482274e-01,-1.025650666296592517e+00,-2.674648310163906251e-01,1.555737085868233782e+00,-1.159246871629360687e+00,1.031461451263355755e+00,1.859109666261482552e-01,-1.100701089378580022e+00,3.777508980184507981e-01,1.155234033371871805e+00,1.509871029188796232e+00,7.173210123380631409e-02,2.317866563129211688e-02,-1.108116355293804700e+00,3.476769555427501324e-01,8.393704098871743735e-01,1.335804855793609747e+00,-5.617232887472840552e-01,1.038793139832047963e-01,-1.106238979036933134e+00,3.696081856149974754e-01,8.205673422329236022e-01,2.097305968889094263e+00,-2.489705475130691292e-01,-1.623596198603521668e+00,-9.823734115901849862e-01,3.242657464100728304e-01,6.336348244504264038e-01,2.097305968889094263e+00,-2.489705475130691292e-01,-1.623596198603521668e+00
|
||||
6.333332999999999879e-01,-1.045467850000000087e+00,-9.216691999999999940e-02,9.096908400000000006e-01,1.049201882830565369e+00,1.500257704510604348e-02,-7.642038292486827422e-02,-1.034334483994744813e+00,-1.034100182335327273e-01,8.914814681671952012e-01,1.049201882830565369e+00,1.500257704510604348e-02,-7.642038292486827422e-02,-1.141732773459945616e+00,-2.129718008494805304e-01,8.911887882056482857e-01,8.589599785870356552e-01,-5.982567450248257312e-01,-9.008632790529690071e-02,-9.747103383535533627e-01,-4.927053049698741360e-01,6.519929539267299567e-01,9.607938427157416417e-01,-3.415831834175420689e-01,-3.124003239175843216e-01,-9.997851587846258159e-01,-4.648354112936609606e-01,6.654840158250440174e-01,1.011848223498019950e+00,-3.679159275373186655e-02,-3.652388600230708215e-01,-1.070855175805081050e+00,-6.894054805907121608e-01,2.898040978387551037e-01,1.010646016235423161e+00,-4.599718171075684037e-02,-3.615198060764602261e-01,-1.127712364712575965e+00,-7.002615094092438097e-01,2.547991690927288166e-01,1.198968456923780179e+00,4.469747119223418941e-02,-2.456432357176838166e-01,-9.473937269275304329e-01,-7.473329861000449492e-01,2.449274205386164638e-01,1.198968456923780179e+00,4.469747119223416859e-02,-2.456432357176838721e-01,-1.129874053062571049e+00,-3.833050791696517717e-02,7.906097152782669557e-01,1.627781119753364036e+00,-5.387723418879567516e-01,-1.954622248408436069e-01,-9.183480102303323012e-01,-5.662342809262345400e-02,4.442293034791228168e-01,1.621197975035236327e+00,2.441807884769084391e-01,-1.540060806985054653e-01,-9.311401379550724444e-01,-5.835666078568498005e-02,4.788605816571174234e-01,1.484218004146090397e+00,5.486818667902001456e-01,-3.389319757272031830e-01,-1.165709830435564864e+00,-1.711748784019887643e-02,9.453380058542848463e-02,1.557881419607948459e+00,1.759562527454137937e-01,-2.480232739410080101e-01,-1.219846788587598319e+00,4.534789691069518458e-03,6.023646878775618108e-02,1.827004087116026687e+00,1.164975540261763420e-01,-6.660665597683883277e-02,-1.035008399220837871e+00,-6.171991750950586372e-03,3.682448216813342251e-02,1.827004087116026687e+00,1.164975540261763282e-01,-6.660665597683877726e-02,-1.128415782746755136e+00,-6.072602035521320468e-02,9.545035718313747974e-01,1.030458262142365244e+00,1.516882109381100310e-02,-7.852585779592734239e-02,-1.117723367552883484e+00,-4.494741599081594069e-02,9.818589659572624084e-01,1.005528004241245554e+00,1.612901477598736866e-02,-8.126088219532964785e-02,-1.115225780863255745e+00,-2.726460945364785060e-02,1.009850512944319378e+00,9.599900268390170188e-01,1.676754972896040211e-02,-8.385680838439638074e-02,-1.119719328999476460e+00,-6.544226335437341308e-03,1.038606841311285223e+00,9.144615909236568640e-01,1.698462565625156323e-02,-8.586866161577018375e-02,-1.129169691628104877e+00,1.202458217670906299e-02,1.061522796382815104e+00,8.762754645672784504e-01,1.698011355947781978e-02,-8.765148982015390222e-02,-1.132754357424388569e+00,-5.101899327815904300e-02,9.912547087334092621e-01,8.472679767943928075e-01,1.665295106978835135e-02,-8.907957475728989216e-02,-1.130580652091129457e+00,-3.095710408976816430e-02,1.014092071526020433e+00,8.472679767949978791e-01,1.665295102865663526e-02,-8.907957472095198725e-02,-1.032408624712850997e+00,-8.710161921108960925e-03,1.019902165681825235e+00,8.373203006206266785e-01,1.610516523783346934e-02,-8.798587233437878130e-02,-1.064176651459810996e+00,1.063800850838977352e-01,1.484844842872941939e+00,8.472679767943928075e-01,1.665295106978835135e-02,-8.907957475728989216e-02,-1.078409216393181547e+00,3.905582977035096937e-01,1.184260967558744326e+00,8.472679767943928075e-01,1.665295106978835135e-02,-8.907957475728989216e-02,-1.077429036188356504e+00,7.484111168842506878e-02,1.465887124145909048e+00,2.164782776456101732e-01,-7.888667214659779159e-01,-6.300787542854954237e-01,-1.205178774625983662e+00,-2.121941513175853444e-01,1.420942503269809976e+00,-5.658975489780421197e-01,-1.423397135830227478e-01,1.485830381517561527e+00,-1.208961880439497261e+00,-2.223344128982790435e-01,1.447792493079508525e+00,-1.224341870961914491e+00,1.044364528063437048e+00,1.709704594987672410e-01,-1.015376738082321761e+00,-2.549895874777492466e-01,1.565269359007219308e+00,-1.224341870961914491e+00,1.044364528063437048e+00,1.709704594987672410e-01,-1.090351227028470094e+00,3.766061871599978295e-01,1.149729031086323738e+00,1.524629905706396782e+00,1.095950093808032988e-01,2.846710499419411247e-02,-1.109730506805193029e+00,3.508116043569666775e-01,8.339944275996913348e-01,1.342852073798671553e+00,-5.624091203288581475e-01,1.060400598485961438e-01,-1.107982176749664927e+00,3.728660219853367486e-01,8.153234674638969448e-01,2.097056876791679514e+00,-2.429730607341900050e-01,-1.617619073625413240e+00,-9.838431098766664551e-01,3.293800113877948799e-01,6.281314784401340612e-01,2.097056876791679514e+00,-2.429730607341900050e-01,-1.617619073625413240e+00
|
||||
6.500000000000000222e-01,-1.041944949999999981e+00,-9.511654999999999416e-02,9.098411600000000377e-01,1.044303985432047721e+00,2.750635498143602989e-02,-6.125348966122572125e-02,-1.030874532989869419e+00,-1.062636029679585037e-01,8.915346202834800726e-01,1.044303985432047721e+00,2.750635498143602989e-02,-6.125348966122572125e-02,-1.136579426507556168e+00,-2.174501019086014786e-01,8.930513243851548877e-01,8.294743960759489720e-01,-5.968855656262000986e-01,-5.438149447541948400e-02,-9.646053311726698887e-01,-4.994494682296871102e-01,6.606428644525895733e-01,9.324522739955179995e-01,-3.560039679684771086e-01,-2.765706710303295068e-01,-9.906497128632751892e-01,-4.718460001283428795e-01,6.730713442077114195e-01,9.854414736255198148e-01,-5.472279557780444781e-02,-3.388833758466041624e-01,-1.053025782856954917e+00,-7.096184273446021207e-01,3.040299334292092537e-01,9.870782143296993327e-01,-4.270422992413972635e-02,-3.440937482074657439e-01,-1.110079572339318199e+00,-7.221318499613629260e-01,2.699092990739948017e-01,1.157728784893205409e+00,4.283509272227434272e-02,-2.417856234894882606e-01,-9.295747888736363151e-01,-7.685724394909009272e-01,2.604604229408790106e-01,1.157728784893205409e+00,4.283509272227432191e-02,-2.417856234894883161e-01,-1.128679632871488980e+00,-4.306447591185814938e-02,7.916432030941716880e-01,1.635956467656957791e+00,-5.434127503461216868e-01,-1.917383089472856628e-01,-9.152425743696026572e-01,-5.755050343908924698e-02,4.462573360330209238e-01,1.628300661911060265e+00,2.465773780147041128e-01,-1.439610397703531275e-01,-9.279107208222654446e-01,-5.964883383737841493e-02,4.808776346657464562e-01,1.491180375961899562e+00,5.524324630970867123e-01,-3.272025175167196931e-01,-1.163432978969971998e+00,-1.768633776735489133e-02,9.721228634103140642e-02,1.564740368662036252e+00,1.755018145222412840e-01,-2.381306591368095860e-01,-1.217686234769363995e+00,3.715769161866881720e-03,6.294171029040729337e-02,1.824948515195082388e+00,1.175940250621236721e-01,-6.281902833753301441e-02,-1.032834962300446913e+00,-6.292754985390834263e-03,3.932343387068007456e-02,1.824948515195082388e+00,1.175940250621236582e-01,-6.281902833753295889e-02,-1.124784626152651734e+00,-6.475927076348050870e-02,9.555915075823324667e-01,1.024413320403680494e+00,2.717429247311293691e-02,-6.420185918656279300e-02,-1.113984055402607032e+00,-4.868047551466064826e-02,9.827286943295872046e-01,9.979654513719045106e-01,2.759048326674885462e-02,-6.783211600122708573e-02,-1.111393405268794377e+00,-3.077433297342751020e-02,1.010569240081854669e+00,9.497049228969265400e-01,2.763437337337863384e-02,-7.129111925079116563e-02,-1.115819323257933204e+00,-9.833820638676455533e-03,1.039175682263532963e+00,9.014671302846121170e-01,2.731996378885511931e-02,-7.398551960272782557e-02,-1.125237037733303858e+00,8.904598410429013372e-03,1.061966250366729092e+00,8.610078749338283544e-01,2.679090561661578648e-02,-7.637891382933460760e-02,-1.128863462764063019e+00,-5.534665354328428821e-02,9.928001220376644342e-01,8.302720660637477046e-01,2.595769559754374997e-02,-7.834754656607618994e-02,-1.126672162839255531e+00,-3.489443740995076121e-02,1.015286886853426829e+00,8.302720660647090467e-01,2.595769555703545881e-02,-7.834754652903704042e-02,-1.028733009989296177e+00,-1.055128372733060704e-02,1.019117731882978495e+00,8.197551946668035772e-01,2.490769958142395601e-02,-7.678145864642658969e-02,-1.055759604692295683e+00,1.109796575649448364e-01,1.483364018500671566e+00,8.302720660637477046e-01,2.595769559754374997e-02,-7.834754656607618994e-02,-1.077011735020500183e+00,3.906486933080021151e-01,1.178879276445885083e+00,8.302720660637477046e-01,2.595769559754374997e-02,-7.834754656607618994e-02,-1.068858831019170452e+00,7.899352303339522707e-02,1.465060327328289613e+00,1.738331521308050243e-01,-8.058005546683453257e-01,-5.879780434640623499e-01,-1.193392623781224682e+00,-2.108620859373280809e-01,1.430357053217382601e+00,-5.621706845870666491e-01,-9.572879232644378178e-02,1.516029691742795338e+00,-1.196694347774289513e+00,-2.198582155882410349e-01,1.457674209315330094e+00,-1.314429190314978291e+00,1.058028957216457622e+00,1.234001862231992597e-01,-1.001467165829829531e+00,-2.411247095595608347e-01,1.575047398164629797e+00,-1.314429190314978291e+00,1.058028957216457622e+00,1.234001862231992597e-01,-1.089162472761475930e+00,3.760079678855787200e-01,1.144707118559350700e+00,1.539194684084891573e+00,1.173031700250125181e-01,3.049348851882559275e-02,-1.111100909447897633e+00,3.547022104374393248e-01,8.288051930811655144e-01,1.356284770025544928e+00,-5.676614274891887968e-01,9.973618311918390489e-02,-1.109297032796714433e+00,3.769773879113860748e-01,8.104035288946431770e-01,2.100659144918820775e+00,-2.309718063799430787e-01,-1.617576057477272622e+00,-9.843604935674279410e-01,3.358154639456282786e-01,6.232166196907489297e-01,2.100659144918820775e+00,-2.309718063799430787e-01,-1.617576057477272622e+00
|
||||
6.666666999999999454e-01,-1.037805749999999971e+00,-9.752560999999999869e-02,9.100940600000000380e-01,1.037476839513098215e+00,4.528475141094335382e-02,-3.638161471470128389e-02,-1.026789827936385846e+00,-1.085045205708790733e-01,8.916535257667895786e-01,1.037476839513098215e+00,4.528475141094335382e-02,-3.638161471470128389e-02,-1.129618286122315851e+00,-2.222937479714920950e-01,8.957256709350279733e-01,7.995590828681532480e-01,-5.887289468080068033e-01,-1.319449158205142705e-02,-9.525362115741449198e-01,-5.054631156254756341e-01,6.690965521291289964e-01,9.023032764579508314e-01,-3.618072190910707753e-01,-2.355660822359260942e-01,-9.795320159936357074e-01,-4.783121226319486108e-01,6.807076884649557735e-01,9.571163988190521943e-01,-6.410478811003482436e-02,-3.075745692931232678e-01,-1.034707297958836314e+00,-7.287136272605485576e-01,3.189441761238838713e-01,9.616284182716930973e-01,-3.158903063782948772e-02,-3.227214792616382999e-01,-1.092116251659986714e+00,-7.430783264665644650e-01,2.861752002420290264e-01,1.120441540473765318e+00,5.053394570600810293e-02,-2.305156411003497219e-01,-9.111844095985566216e-01,-7.875163542034886444e-01,2.753623981476225335e-01,1.120441540473765318e+00,5.053394570600808211e-02,-2.305156411003497774e-01,-1.127938072004980086e+00,-4.839427073798733409e-02,7.931951435006636686e-01,1.645857787426709740e+00,-5.483700325533156228e-01,-1.860583635108469525e-01,-9.123376426384424143e-01,-5.797711767029140734e-02,4.489869053780559671e-01,1.636836795561608549e+00,2.466374580437010189e-01,-1.307299653570694054e-01,-9.249715583968760590e-01,-6.050801003213338025e-02,4.835636959800956314e-01,1.500390531589244736e+00,5.540882518843097682e-01,-3.113834134751154448e-01,-1.160616603123895807e+00,-1.807865830801506923e-02,1.000251090394612130e-01,1.573525361651238130e+00,1.713259741386840007e-01,-2.248223035638471090e-01,-1.214912141558775360e+00,2.939860889100545660e-03,6.558451256505723470e-02,1.819298857043574635e+00,1.162538568432341657e-01,-5.898318207354978637e-02,-1.029994040233623176e+00,-6.371145584572145831e-03,4.220530319496236527e-02,1.819298857043574635e+00,1.162538568432341518e-01,-5.898318207354973086e-02,-1.120545711024645064e+00,-6.897210390743893638e-02,9.571670542863925935e-01,1.016753861395808256e+00,4.443143113780705089e-02,-4.023250163202900243e-02,-1.109664177098440563e+00,-5.244545985885689515e-02,9.840012410169968193e-01,9.892163871253666363e-01,4.429484790139461003e-02,-4.483290971707189904e-02,-1.107017648107408991e+00,-3.426093193927175207e-02,1.011655328531555487e+00,9.390589584010756719e-01,4.372611982103106337e-02,-4.922236869793325531e-02,-1.111438585461659523e+00,-1.313975553724021014e-02,1.040128963177567867e+00,8.889482131256238873e-01,4.285727524455491128e-02,-5.264783382432337150e-02,-1.120893772002158784e+00,5.660194589586820674e-03,1.062852919471340085e+00,8.469164115451454089e-01,4.177695752497968124e-02,-5.569174121320501908e-02,-1.124246468259823217e+00,-5.967209882001496546e-02,9.946906806551444324e-01,8.149824410759241022e-01,4.040523306241658452e-02,-5.823054283636223960e-02,-1.122135673117142129e+00,-3.885716476111839013e-02,1.016849935967403473e+00,8.149824410774458849e-01,4.040523302247913534e-02,-5.823054279868983274e-02,-1.024740675631737430e+00,-1.181949958318395666e-02,1.018444905197785300e+00,8.041109133292442257e-01,3.881635040177938006e-02,-5.613385398651051655e-02,-1.046705130853992749e+00,1.165857625506907663e-01,1.483083844118093353e+00,8.149824410759241022e-01,4.040523306241658452e-02,-5.823054283636223960e-02,-1.075762362819757900e+00,3.899796256574346587e-01,1.173638956038569381e+00,8.149824410759241022e-01,4.040523306241658452e-02,-5.823054283636223960e-02,-1.059417091827967061e+00,8.407711961081434926e-02,1.465439529861914725e+00,1.351596754697755309e-01,-8.200246570860442175e-01,-5.401780110865015416e-01,-1.178271455255608391e+00,-2.090848607661565384e-01,1.439769501011703090e+00,-5.581757790504107142e-01,-5.602277269907668389e-02,1.550220974665759588e+00,-1.181129147416978720e+00,-2.171001607901492381e-01,1.467439833650438619e+00,-1.394068243003552476e+00,1.067657820363078658e+00,8.830086360333040674e-02,-9.847230391068657607e-01,-2.269796796838212394e-01,1.584356117894194060e+00,-1.394068243003552476e+00,1.067657820363078658e+00,8.830086360333040674e-02,-1.088128636790240300e+00,3.746016106008702162e-01,1.139870338000899430e+00,1.557119510665611717e+00,1.240493844381406197e-01,3.295534512671724481e-02,-1.112370399171225044e+00,3.588412732710674624e-01,8.238114739432327305e-01,1.373927807218142449e+00,-5.732433094925696304e-01,9.082769308510016404e-02,-1.110504876843316113e+00,3.813966914002642206e-01,8.057606654637429200e-01,2.104168003758128069e+00,-2.154814813373197024e-01,-1.617733674604436178e+00,-9.847679232199441079e-01,3.431795090818260396e-01,6.184853406993359171e-01,2.104168003758128069e+00,-2.154814813373197024e-01,-1.617733674604436178e+00
|
||||
6.833333000000000323e-01,-1.034225560000000099e+00,-1.000502699999999967e-01,9.101660299999999593e-01,1.030584780036940762e+00,6.733521248539958703e-02,-7.885691236252743291e-03,-1.023306688898908412e+00,-1.108308155804942907e-01,8.915515622422096609e-01,1.030584780036940762e+00,6.733521248539958703e-02,-7.885691236252743291e-03,-1.122683087737978758e+00,-2.275049120751131415e-01,8.986048602323359891e-01,7.696472171041859323e-01,-5.794325242982829582e-01,3.043447894900107309e-02,-9.397988320313206412e-01,-5.112751162294661977e-01,6.776724771437611095e-01,8.726600900749660328e-01,-3.628686385003864201e-01,-1.944284705569595817e-01,-9.676419236467483920e-01,-4.846544694452459834e-01,6.886431997935734683e-01,9.292149116161456668e-01,-6.827553458919671803e-02,-2.755256886741632161e-01,-1.016514666581267212e+00,-7.466070920442642311e-01,3.342277054467438502e-01,9.361778853915888599e-01,-1.840112234935271235e-02,-3.003924735142002866e-01,-1.074243355572262582e+00,-7.628669485589942845e-01,3.029394670465549999e-01,1.089872433120752993e+00,6.297287061095294125e-02,-2.139992339265472387e-01,-8.927529474581528124e-01,-8.043204724822247131e-01,2.898695172783749552e-01,1.089872433120752993e+00,6.297287061095291349e-02,-2.139992339265472943e-01,-1.128303834160162555e+00,-5.432118261626793509e-02,7.950087048117882027e-01,1.656925259419966157e+00,-5.517579838375885615e-01,-1.793259640285546352e-01,-9.109139573388272959e-01,-5.821122632898356047e-02,4.518166294470713495e-01,1.646352335092976515e+00,2.435133517476353593e-01,-1.158470368944807538e-01,-9.236525576320331332e-01,-6.120581159714363895e-02,4.863137909790412605e-01,1.511669797836082463e+00,5.526713827871344575e-01,-2.929060499117705496e-01,-1.158217297290277559e+00,-1.837215998971286623e-02,1.021584241499680634e-01,1.583816700251905685e+00,1.638291248568754244e-01,-2.097689311590794359e-01,-1.212461137128387101e+00,2.209591949879741168e-03,6.737429478900341939e-02,1.811818118766086227e+00,1.123076943119430682e-01,-5.541873813994607073e-02,-1.027422409864165109e+00,-6.460268596307602168e-03,4.471399027716484176e-02,1.811818118766086227e+00,1.123076943119430543e-01,-5.541873813994601522e-02,-1.116696821338429402e+00,-7.357668194188982103e-02,9.588970349168128848e-01,1.008947953462650204e+00,6.601160765682034803e-02,-1.250269026644727777e-02,-1.105707122286200272e+00,-5.654656083853713128e-02,9.853699259314001591e-01,9.802222989416586874e-01,6.536749112467110656e-02,-1.792300253592325407e-02,-1.102974972406991938e+00,-3.805787397140718287e-02,1.012813068346347878e+00,9.280296608268550074e-01,6.423773334497737131e-02,-2.309445060622886473e-02,-1.107368930822744790e+00,-1.675794073204208909e-02,1.041156977727602850e+00,8.759179084523014414e-01,6.286282269393345112e-02,-2.713024838287894300e-02,-1.116851496843638047e+00,2.076237000155176093e-03,1.063840802277941311e+00,8.322050481855159942e-01,6.128040302695059172e-02,-3.071354171659647359e-02,-1.119870638704246302e+00,-6.438663868695013170e-02,9.967622764065171559e-01,7.989880783161150690e-01,5.942101362945102772e-02,-3.372219573964722189e-02,-1.117857758833777693e+00,-4.318793054797899489e-02,1.018563941936247552e+00,7.989880783183921364e-01,5.942101359012071093e-02,-3.372219570130395583e-02,-1.021259314528643714e+00,-1.302781028747315717e-02,1.017424946508711292e+00,7.877731207091195342e-01,5.734052281567951492e-02,-3.111143552212725094e-02,-1.037209420805554005e+00,1.230007151033938595e-01,1.482472013295817126e+00,7.989880783161150690e-01,5.942101362945102772e-02,-3.372219573964722189e-02,-1.073787506370283307e+00,3.894321518546853822e-01,1.168179030767818150e+00,7.989880783161150690e-01,5.942101362945102772e-02,-3.372219573964722189e-02,-1.049432221590924197e+00,8.991595919273742687e-02,1.465568471937260142e+00,9.456750077871076132e-02,-8.271634081853014298e-01,-4.877340150774476801e-01,-1.161761507387779613e+00,-2.064492519694022810e-01,1.448863682483433113e+00,-5.492824743854551883e-01,-2.377989049225263593e-02,1.579785864002533957e+00,-1.164139257823208817e+00,-2.136476452531896608e-01,1.476802690774723370e+00,-1.459942600111860722e+00,1.079101707731745519e+00,6.032326481094776177e-02,-9.665280016009131225e-01,-2.138940588566219103e-01,1.592094114961620788e+00,-1.459942600111860722e+00,1.079101707731745519e+00,6.032326481094776177e-02,-1.086415737236734458e+00,3.732320883707205272e-01,1.134895200287145967e+00,1.573869332441854230e+00,1.340718471826555513e-01,4.370640226537959860e-02,-1.113909392486607031e+00,3.623738127470190751e-01,8.188960648500551720e-01,1.390543993420214619e+00,-5.750643365512881910e-01,9.053656559499603795e-02,-1.112232188050609638e+00,3.851962413721043976e-01,8.011652305709017208e-01,2.104118221597775840e+00,-2.014114592041604257e-01,-1.608989692102823943e+00,-9.860746351581819447e-01,3.507151927020684123e-01,6.134481271219358600e-01,2.104118221597775840e+00,-2.014114592041603979e-01,-1.608989692102823943e+00
|
||||
6.999999999999999556e-01,-1.032022599999999901e+00,-1.031525699999999990e-01,9.098505500000000357e-01,1.017564701443923525e+00,9.077530819126318484e-02,1.637107659627820566e-02,-1.021268171517011769e+00,-1.139033253503084764e-01,8.911234614264045284e-01,1.017564701443923525e+00,9.077530819126318484e-02,1.637107659627820566e-02,-1.117454789973745033e+00,-2.329326642404996039e-01,9.020052519416622561e-01,7.414625974775950201e-01,-5.697682773794379152e-01,7.457677209711395527e-02,-9.281383735956829639e-01,-5.165226042898533043e-01,6.865036760840581564e-01,8.447398368738106011e-01,-3.616529805638687423e-01,-1.533769726358960028e-01,-9.567915153075128298e-01,-4.905105850760440589e-01,6.969390488436039144e-01,9.028507515897505886e-01,-6.994170301311342097e-02,-2.428084642043356611e-01,-9.992083700655504108e-01,-7.629444646123866303e-01,3.496658770684612505e-01,9.109941652772595155e-01,-1.236992073480478078e-02,-2.733865127126912098e-01,-1.056871255685671640e+00,-7.814298152361088823e-01,3.195125727227583479e-01,1.065368258534497459e+00,7.119054480031947185e-02,-1.889587058145714982e-01,-8.745141148840760437e-01,-8.183369036675834929e-01,3.049617482718534056e-01,1.065368258534497459e+00,7.119054480031944410e-02,-1.889587058145715537e-01,-1.129881330667701800e+00,-6.134560631254962204e-02,7.963651885398117525e-01,1.670291616453507322e+00,-5.539798125629532555e-01,-1.717496427067279618e-01,-9.109928547910398633e-01,-5.835688237777626741e-02,4.541167450070851541e-01,1.657848340677186671e+00,2.387957195964483248e-01,-9.864246945742716211e-02,-9.239014455142137150e-01,-6.189985402798838660e-02,4.885072138272882336e-01,1.525646431797569536e+00,5.499332793562641264e-01,-2.710737012892962539e-01,-1.156807093382187235e+00,-1.835259030488878285e-02,1.034237427746125815e-01,1.596626337663819895e+00,1.524338472483333651e-01,-1.921700781353948007e-01,-1.210887904567076845e+00,1.739974362174448452e-03,6.810387534323712744e-02,1.801404884461069056e+00,1.056906511272464599e-01,-5.280285780867435136e-02,-1.025684154526522285e+00,-6.471792140591041062e-03,4.665336644851460213e-02,1.801404884461069056e+00,1.056906511272464461e-01,-5.280285780867429585e-02,-1.113986934693137476e+00,-7.811016016557079111e-02,9.601675073764182056e-01,9.965526296029747488e-01,9.200541448668149436e-02,1.556553682968830725e-02,-1.102819095949559847e+00,-6.043804658558578347e-02,9.861410647167823118e-01,9.685629526403770617e-01,9.427386533999648766e-02,1.404539625547748111e-02,-1.099912074141463636e+00,-4.153947208055917828e-02,1.013285139324013651e+00,9.175194266992523495e-01,9.623909936955252209e-02,1.264137674659700748e-02,-1.104179686412531503e+00,-2.010504644453394579e-02,1.041546360012497230e+00,8.665079353286937458e-01,9.755168482617211645e-02,1.159195561443511664e-02,-1.113610000536527256e+00,-1.442713195712298779e-03,1.064393787541626502e+00,8.237210597235384846e-01,9.857116067354193545e-02,1.068283432696784385e-02,-1.116332783287957708e+00,-6.848128343596954215e-02,9.978784225555510368e-01,7.912287829040883791e-01,9.916788271393167653e-02,1.009034468974239103e-02,-1.114403151321173402e+00,-4.703737664028079246e-02,1.019446568368648443e+00,7.912287829079268642e-01,9.916788267489955178e-02,1.009034472851248060e-02,-1.018829669729820031e+00,-1.311745053624820134e-02,1.014214178131790156e+00,7.801628850246264957e-01,9.955795467875611093e-02,1.068871230566593653e-02,-1.021783166022751432e+00,1.264596939208788851e-01,1.478842636663133092e+00,7.912287829040883791e-01,9.916788271393167653e-02,1.009034468974239103e-02,-1.087698918155881600e+00,3.872564222902619702e-01,1.163791562713802463e+00,7.912287829040883791e-01,9.916788271393167653e-02,1.009034468974239103e-02,-1.033180927756742085e+00,9.272989004320261741e-02,1.462652547071173537e+00,4.772686982957460161e-02,-8.435328056557331866e-01,-4.509148258559935174e-01,-1.144888291217510234e+00,-2.042748955743058648e-01,1.456417236778217328e+00,-5.421104002535453992e-01,2.725388718405831814e-02,1.606289519229376239e+00,-1.146923885797106690e+00,-2.100925064107421192e-01,1.484702754382909218e+00,-1.568775778652819808e+00,1.086450584824863785e+00,-9.335352789079461380e-03,-9.487615368758356427e-01,-1.992314049606103976e-01,1.598527627507174698e+00,-1.568775778652819808e+00,1.086450584824863785e+00,-9.335352789079459646e-03,-1.100902950218198173e+00,3.702428366960169859e-01,1.131143146432279423e+00,1.592346677203383631e+00,9.197265885562111443e-02,2.204932763742937368e-02,-1.115444927129184638e+00,3.661313351123014481e-01,8.141244036302879294e-01,1.423741262951957687e+00,-5.774916172985122831e-01,4.906251000565071962e-02,-1.113220523799517192e+00,3.893945483920168704e-01,7.970383366448321460e-01,2.103190553158849063e+00,-1.734852936617260755e-01,-1.632200257609875083e+00,-9.877519397294716175e-01,3.572285216198188840e-01,6.084505243938574948e-01,2.103190553158849063e+00,-1.734852936617260755e-01,-1.632200257609875083e+00
|
||||
7.166666999999999899e-01,-1.031722690000000053e+00,-1.074193199999999987e-01,9.095276399999999706e-01,1.008539274009110365e+00,1.120725438668532109e-01,3.001982920406573788e-02,-1.021207673811981742e+00,-1.181931543646415478e-01,8.906782568087608931e-01,1.008539274009110365e+00,1.120725438668532109e-01,3.001982920406573788e-02,-1.115389102018662149e+00,-2.384907104520385679e-01,9.047003476637158759e-01,7.134240599542586159e-01,-5.688175735224840768e-01,1.185533632279573285e-01,-9.177238517399697315e-01,-5.216151820600702926e-01,6.959578009172381341e-01,8.211699492031109271e-01,-3.625859271875384038e-01,-1.192186011494815456e-01,-9.469554128027015683e-01,-4.961216425136695807e-01,7.059195115979776114e-01,8.811710256299057908e-01,-7.207304311729523238e-02,-2.151516386813463744e-01,-9.831213081226355399e-01,-7.769991232336412867e-01,3.647187892047443758e-01,8.899767711661562553e-01,-1.101000411065025317e-02,-2.492746657836656388e-01,-1.040520267686438460e+00,-7.974514897149760362e-01,3.353419535175602983e-01,1.046804571615078450e+00,7.545113064005506964e-02,-1.653005602988627254e-01,-8.574049838900607012e-01,-8.300475120126225015e-01,3.200357900346336160e-01,1.046804571615078450e+00,7.545113064005504189e-02,-1.653005602988627809e-01,-1.132546710234289655e+00,-6.812582168717543074e-02,7.977527833436712790e-01,1.683380887458920006e+00,-5.540044201785666589e-01,-1.663549115171885084e-01,-9.128558094752452501e-01,-5.873249427333131906e-02,4.561321065284080767e-01,1.669114563570930354e+00,2.314462164761776908e-01,-8.432113601319483898e-02,-9.260603171952085377e-01,-6.277310969704619215e-02,4.903874803531127480e-01,1.540152594112710993e+00,5.444104389931643251e-01,-2.516310978864247372e-01,-1.156198102942368022e+00,-1.791281231799023849e-02,1.037935875469747082e-01,1.608697027876944130e+00,1.459573404576368361e-01,-1.784768692865489892e-01,-1.210212786568237053e+00,1.910206917632030488e-03,6.822112361956092497e-02,1.796919354704429317e+00,1.023498818088435375e-01,-5.011502548152441117e-02,-1.024918214106197878e+00,-5.815200918040172931e-03,4.738303445799497970e-02,1.796919354704429317e+00,1.023498818088435236e-01,-5.011502548152435565e-02,-1.112969995663782852e+00,-8.308171286970475466e-02,9.613313739693936100e-01,9.870948920221571665e-01,1.134749036313165010e-01,2.927719677174582535e-02,-1.101516679367153362e+00,-6.498765041759806127e-02,9.868871206814525676e-01,9.585113890332775943e-01,1.159941680841975603e-01,2.776004436424207508e-02,-1.098310157677885979e+00,-4.576069697155078775e-02,1.013765344218143571e+00,9.064115825731910991e-01,1.181953372588801371e-01,2.636425704118551538e-02,-1.102286659879521347e+00,-2.406139095871514394e-02,1.041865878477939100e+00,8.543516674743395489e-01,1.196853329540889521e-01,2.532681967593692837e-02,-1.111498689215048241e+00,-5.251801282428230494e-03,1.064681421793291394e+00,8.106851118337831119e-01,1.208588635471343764e-01,2.443112989822155551e-02,-1.114653123791493616e+00,-7.327179570856200141e-02,9.991874628115130497e-01,7.775293725585616933e-01,1.215779480188128037e-01,2.387096881067623036e-02,-1.112579417570791929e+00,-5.149784067810632415e-02,1.020408776551391838e+00,7.775293725633403152e-01,1.215779479803128366e-01,2.387096885007775754e-02,-1.017653148908845173e+00,-1.588524077697191228e-02,1.012315026868987999e+00,7.662533693076462038e-01,1.220963890005335728e-01,2.444878771363637182e-02,-1.011615337493709132e+00,1.315824672166966414e-01,1.476563559798730108e+00,7.775293725585616933e-01,1.215779480188128037e-01,2.387096881067623036e-02,-1.085138055520436184e+00,3.864234410250705909e-01,1.158699633106151428e+00,7.775293725585616933e-01,1.215779480188128037e-01,2.387096881067623036e-02,-1.022845357161803026e+00,9.745815461083050246e-02,1.461099226945407503e+00,4.447426171163598035e-03,-8.418803153768882330e-01,-3.988088546806472512e-01,-1.128673418944694085e+00,-2.017434762588883879e-01,1.463938637039950974e+00,-5.244576872831382408e-01,5.799270474421400895e-02,1.636193129321522610e+00,-1.130095652666172290e+00,-2.067146807977942313e-01,1.492422371415483617e+00,-1.638504411841450237e+00,1.101705895876077923e+00,-4.214541180368983758e-02,-9.305866386433553350e-01,-1.865187829777907036e-01,1.602561650654764414e+00,-1.638504411841450237e+00,1.101705895876077923e+00,-4.214541180368983064e-02,-1.098794971279643651e+00,3.687513359397116552e-01,1.126591799218376488e+00,1.607195213291572555e+00,1.051394666216482338e-01,3.000602310439563422e-02,-1.117618103063919621e+00,3.691044489576895127e-01,8.097719421283635644e-01,1.437787200053603609e+00,-5.773387462807192394e-01,4.752412167862459652e-02,-1.115549144416669858e+00,3.925799394081861404e-01,7.929588666950391218e-01,2.101767441722455665e+00,-1.617995096888000528e-01,-1.625833980127694645e+00,-9.900286769067776493e-01,3.634011915025248118e-01,6.039202603120656931e-01,2.101767441722455665e+00,-1.617995096888000528e-01,-1.625833980127694645e+00
|
||||
7.333332999999999657e-01,-1.032429580000000069e+00,-1.128538300000000022e-01,9.095490999999999993e-01,1.000278245396699850e+00,1.283305079463560316e-01,3.000122869198455430e-02,-1.022206272755512790e+00,-1.237816203143431576e-01,8.906280084122573104e-01,1.000278245396699850e+00,1.283305079463560316e-01,3.000122869198455430e-02,-1.116025965645252471e+00,-2.440376830497781868e-01,9.071992803320944043e-01,6.883664188762316227e-01,-5.755253244363255360e-01,1.579007661696262832e-01,-9.093010605435929428e-01,-5.262422949837242125e-01,7.057128382263860855e-01,8.031876756199197720e-01,-3.681986693317156334e-01,-9.231262624966106445e-02,-9.389779169335057407e-01,-5.011727912163618237e-01,7.151792865329855697e-01,8.653609154186824304e-01,-7.789563140479663361e-02,-1.929886992222295261e-01,-9.683354011581150056e-01,-7.883697413873100857e-01,3.786170871491830181e-01,8.736707088650772501e-01,-2.299773806105513685e-02,-2.248487298974252979e-01,-1.024987153978107024e+00,-8.107480149618185861e-01,3.491937953052591803e-01,1.034786552807615667e+00,6.752862118970577587e-02,-1.394115452428167645e-01,-8.409755700122713007e-01,-8.386238898310746093e-01,3.353858614742884492e-01,1.034786552807615667e+00,6.752862118970574812e-02,-1.394115452428168200e-01,-1.135069887685803192e+00,-7.462447447398669331e-02,7.990657788124264638e-01,1.696010177085385262e+00,-5.518557705442427297e-01,-1.632731066569005907e-01,-9.153075299793892450e-01,-5.940810734609960897e-02,4.577011694271613251e-01,1.680082706588237329e+00,2.238444523935113339e-01,-7.302614407035938615e-02,-9.288372078783435626e-01,-6.390226962014507184e-02,4.918171018819897933e-01,1.554464826502493402e+00,5.384720476070842254e-01,-2.351571915492951803e-01,-1.156014668197120621e+00,-1.706561025456540537e-02,1.037096251089576482e-01,1.620678179126615825e+00,1.388299707403232164e-01,-1.676391480681457824e-01,-1.209886255724334170e+00,2.637917475082678098e-03,6.785489904682606710e-02,1.793311657217214306e+00,9.817434684908217524e-02,-4.963831681291713815e-02,-1.024503604972058168e+00,-5.009796875444140311e-03,4.778572528966344712e-02,1.793311657217214306e+00,9.817434684908216136e-02,-4.963831681291708264e-02,-1.112862962758259133e+00,-8.814014702650152522e-02,9.624336484387762125e-01,9.784882749226559984e-01,1.307465140845731344e-01,3.045771253795634750e-02,-1.101017826671529587e+00,-6.979018072910056492e-02,9.876264387851703130e-01,9.493821147674410543e-01,1.344889892924281682e-01,3.009453707614238513e-02,-1.097390906602198291e+00,-5.029300177209392736e-02,1.014255043689847868e+00,8.962196589889585008e-01,1.379482608758568485e-01,2.981520099597978826e-02,-1.100925856692686056e+00,-2.830821465449664259e-02,1.042191326709877908e+00,8.430731503140442840e-01,1.404934859830903049e-01,2.966469156372324861e-02,-1.109780042694092028e+00,-9.281513433003110713e-03,1.064968371465432773e+00,7.985025159599112854e-01,1.426642849927287349e-01,2.956276226389683084e-02,-1.113872627834616491e+00,-7.820321206910157974e-02,1.000474197566149526e+00,7.646824139572142576e-01,1.442939774830059030e-01,2.974149890525588924e-02,-1.111494109676549602e+00,-5.613160878175366131e-02,1.021353290259610525e+00,7.646824139629685435e-01,1.442939774450115453e-01,2.974149894527381918e-02,-1.016869664646122162e+00,-1.960318525791106270e-02,1.010266394430253012e+00,7.531112484591725442e-01,1.457050916954640285e-01,2.965245954335305953e-02,-1.001148167277350343e+00,1.347985481323603352e-01,1.473430324132529723e+00,7.646824139572142576e-01,1.442939774830059030e-01,2.974149890525588924e-02,-1.082911834032167953e+00,3.840854795764207519e-01,1.153471889852949683e+00,7.646824139572142576e-01,1.442939774830059030e-01,2.974149890525588924e-02,-1.012456630117450684e+00,1.003873389036168406e-01,1.458675155859117112e+00,-3.686396299901423951e-02,-8.455430519541413670e-01,-3.469781071749167278e-01,-1.111943775026454251e+00,-2.007723348525132234e-01,1.470268935504433161e+00,-5.085968863542870144e-01,9.619348381838531414e-02,1.677887013324037335e+00,-1.112830283777530127e+00,-2.046633114124003228e-01,1.498941799870358027e+00,-1.728153397653736434e+00,1.111714338763773569e+00,-8.185198010286812154e-02,-9.130373969896496966e-01,-1.721123899591962825e-01,1.605551469684936006e+00,-1.728153397653736434e+00,1.111714338763773569e+00,-8.185198010286810766e-02,-1.097144915492965556e+00,3.658831515890856312e-01,1.121915237762799444e+00,1.626274988563515489e+00,1.142125762638807190e-01,3.064485787835819278e-02,-1.119017409075112157e+00,3.721822009624318195e-01,8.053537542765751844e-01,1.456786879067215601e+00,-5.811061982500687062e-01,3.512932360197800613e-02,-1.116849719779795302e+00,3.959201073342862864e-01,7.889259829273602698e-01,2.103994734910711539e+00,-1.456076666794839658e-01,-1.628169629658753559e+00,-9.907972039550747567e-01,3.695236448441883148e-01,5.998324298412537336e-01,2.103994734910711095e+00,-1.456076666794839380e-01,-1.628169629658753559e+00
|
||||
7.500000000000000000e-01,-1.032405259999999991e+00,-1.188723500000000016e-01,9.100402800000000347e-01,9.940232841233415106e-01,1.393157943333960258e-01,1.898715459047747856e-02,-1.022499464860610052e+00,-1.300250666857481197e-01,8.910815761354142772e-01,9.940232841233415106e-01,1.393157943333960258e-01,1.898715459047747856e-02,-1.117348653317122853e+00,-2.492078808211100061e-01,9.094486857477577235e-01,6.669126700848323486e-01,-5.859200973022082870e-01,1.927380360958529382e-01,-9.017032365341683953e-01,-5.299337482969941338e-01,7.148715525563020812e-01,7.901321072652706112e-01,-3.756540554053975356e-01,-7.102037482060691298e-02,-9.317206404491698013e-01,-5.052235560979680962e-01,7.238946339998399981e-01,8.544639243521928718e-01,-8.486810112925653737e-02,-1.749770845237130779e-01,-9.544911630568527761e-01,-7.968701694090919441e-01,3.906652529934832030e-01,8.616446711518734869e-01,-4.002317123232657092e-02,-2.017148764661327864e-01,-1.010196119795620850e+00,-8.209819124522660383e-01,3.608069213113939688e-01,1.023167801711573510e+00,5.252503371588036069e-02,-1.164359982452177339e-01,-8.254081322089172890e-01,-8.446587430873173652e-01,3.498162978187027705e-01,1.023167801711573510e+00,5.252503371588033293e-02,-1.164359982452177755e-01,-1.135846573367915724e+00,-8.030570855892683879e-02,8.004246355732869134e-01,1.706760391968934254e+00,-5.471603023666812282e-01,-1.621731216059135450e-01,-9.169082577659826150e-01,-6.032917455218152897e-02,4.587825469744075679e-01,1.689617965743797301e+00,2.172168022144407296e-01,-6.539348763632721329e-02,-9.307483822731856815e-01,-6.519079219621565224e-02,4.927756987535575339e-01,1.567041368200427609e+00,5.331658942197740059e-01,-2.228495361055294888e-01,-1.155245104562013791e+00,-1.605764504454881836e-02,1.033943430146213593e-01,1.630497787329883375e+00,1.387552435374465876e-01,-1.610202695385401228e-01,-1.209160892150074718e+00,3.705468000088724123e-03,6.763898620994512889e-02,1.793783178645164345e+00,9.974067938870082028e-02,-4.961369964662742937e-02,-1.023809561851745986e+00,-3.935274675379561195e-03,4.727996172374158979e-02,1.793783178645164345e+00,9.974067938870080641e-02,-4.961369964662737386e-02,-1.112004601103511625e+00,-9.299988664511457670e-02,9.636278829269959711e-01,9.714144737188049605e-01,1.424896640664227443e-01,2.026754682199419233e-02,-1.099699585651526812e+00,-7.457658207333719980e-02,9.885457772547947553e-01,9.411660695043249092e-01,1.471599915799563785e-01,2.067467356567272152e-02,-1.095580310646987243e+00,-5.488462535571260459e-02,1.014958153359778015e+00,8.858245052608098025e-01,1.515687245666561822e-01,2.113519332522252950e-02,-1.098585011089190155e+00,-3.257304046413821152e-02,1.042695629330284479e+00,8.304783608972904352e-01,1.549045843465059191e-01,2.156714094376717752e-02,-1.106999512875776581e+00,-1.319675318996222160e-02,1.065343962111131804e+00,7.840689154560313012e-01,1.578184394569424331e-01,2.198158663632620788e-02,-1.112402535358295141e+00,-8.314400646238176429e-02,1.002058029274450091e+00,7.488714564570104759e-01,1.601223497078275160e-01,2.264553186723203618e-02,-1.109600787305442982e+00,-6.075288920788776692e-02,1.022540646488768523e+00,7.488714564635026161e-01,1.601223496704640425e-01,2.264553190795071461e-02,-1.014911666785225597e+00,-2.418531292673219146e-02,1.008766741457338467e+00,7.367644469982483901e-01,1.622396308077259097e-01,2.203930101800565325e-02,-9.909746083132343619e-01,1.383099393692636958e-01,1.470725429076629842e+00,7.488714564570104759e-01,1.601223497078275160e-01,2.264553186723203618e-02,-1.080130686332893664e+00,3.838190966473619126e-01,1.150141020997961228e+00,7.488714564570104759e-01,1.601223497078275160e-01,2.264553186723203618e-02,-1.002666975305108510e+00,1.037219778120679892e-01,1.456700839506439582e+00,-7.312191511180919645e-02,-8.452841225672578229e-01,-2.918947982457687496e-01,-1.093583047047626877e+00,-1.997483538332893716e-01,1.475917564916197522e+00,-4.926902674353606515e-01,1.256579880791502402e-01,1.720789546388893143e+00,-1.093985323869906878e+00,-2.027678126208102283e-01,1.504706100642954514e+00,-1.801559812993966725e+00,1.120628191480312008e+00,-1.066670892895448391e-01,-8.945202336699100698e-01,-1.587262665704590736e-01,1.607742025491828430e+00,-1.801559812993966725e+00,1.120628191480312008e+00,-1.066670892895448391e-01,-1.094932723847037881e+00,3.651830316869211779e-01,1.119103553134311202e+00,1.638850480162299172e+00,1.143929087263177297e-01,2.862867060753706769e-02,-1.116950761326706676e+00,3.755086476932259498e-01,8.026579108746297875e-01,1.473726322845262393e+00,-5.738473799630403605e-01,2.283918062537441951e-02,-1.114835251310184461e+00,3.994674275241654748e-01,7.865470377237231414e-01,2.095444262098208110e+00,-1.321018242707859280e-01,-1.630028621030973568e+00,-9.903144165186349435e-01,3.753418401838192753e-01,5.961398437032244813e-01,2.095444262098208110e+00,-1.321018242707859280e-01,-1.630028621030973568e+00
|
||||
7.666667000000000343e-01,-1.029344959999999976e+00,-1.242230899999999943e-01,9.111099700000000468e-01,9.900914080211373758e-01,1.475177410511255283e-01,2.766864318074420490e-03,-1.019770420209210160e+00,-1.356038613308253871e-01,8.921166408881452403e-01,9.900914080211373758e-01,1.475177410511255283e-01,2.766864318074420490e-03,-1.116318551550650628e+00,-2.532125595102073801e-01,9.117358890547321293e-01,6.507695400028996602e-01,-5.938016306367903674e-01,2.197833638801547640e-01,-8.937737352706097704e-01,-5.323947175467511617e-01,7.223844301773385546e-01,7.806721594526015995e-01,-3.812785216488105977e-01,-5.460700230609647626e-02,-9.240524083454542126e-01,-5.079780040981041189e-01,7.310821631242938601e-01,8.466513218657381046e-01,-9.008614521387679763e-02,-1.609389429324805942e-01,-9.416308589627998549e-01,-8.027313892477299095e-01,4.002808569928268390e-01,8.514669392700729977e-01,-6.171782125863917168e-02,-1.782185554190131860e-01,-9.961764724429327256e-01,-8.285353538229743853e-01,3.697052165095729426e-01,1.011352396837612133e+00,3.185341720061034970e-02,-9.387225841668284110e-02,-8.107153177080987927e-01,-8.480685564901748741e-01,3.625918102926654618e-01,1.011352396837612133e+00,3.185341720061032195e-02,-9.387225841668288273e-02,-1.133064668264624153e+00,-8.446948837574207170e-02,8.021836007324611995e-01,1.713877241532442364e+00,-5.372022173105349685e-01,-1.622251259633291087e-01,-9.167781095288556337e-01,-6.117195371505597390e-02,4.590833631789651426e-01,1.696485156303027653e+00,2.136455384352040077e-01,-6.185120635926938393e-02,-9.308540346774900609e-01,-6.627142655947765304e-02,4.930090585201243325e-01,1.576207960597054258e+00,5.303564201555412971e-01,-2.156932522225360471e-01,-1.153738387580864000e+00,-1.493225395437904057e-02,1.029865729483119274e-01,1.637695179687627123e+00,1.403687096689056335e-01,-1.579859770373903682e-01,-1.207710950180125309e+00,4.981341163437839892e-03,6.740076756697767346e-02,1.795250517296773651e+00,1.023080685779857862e-01,-5.075185817767066676e-02,-1.022420882376127382e+00,-2.865068759333413984e-03,4.656783463528621492e-02,1.795250517296773651e+00,1.023080685779857724e-01,-5.075185817767061125e-02,-1.108088341122738907e+00,-9.689652240495169599e-02,9.652376827214588229e-01,9.666372547197707998e-01,1.518639000417250362e-01,5.558977764309958741e-03,-1.095294190662287948e+00,-7.852736088858675023e-02,9.899487099824199055e-01,9.351882685673971185e-01,1.578943302376246138e-01,7.476607782900768218e-03,-1.090652119959813149e+00,-5.872641185948986042e-02,1.016191919140388311e+00,8.774506452882758767e-01,1.637371293953407136e-01,9.378084258531937251e-03,-1.093090464491961455e+00,-3.614356975676441541e-02,1.043763842148200505e+00,8.196622384865092092e-01,1.683055873644293821e-01,1.093439500661869471e-02,-1.101032808353563208e+00,-1.644399745258825346e-02,1.066303191369664116e+00,7.712176694931154319e-01,1.724034801205166223e-01,1.234008934981415707e-02,-1.107849395255719571e+00,-8.728138232995671930e-02,1.004150237834336989e+00,7.345071336569340970e-01,1.758161778613812065e-01,1.389998841193326555e-02,-1.104591496243803928e+00,-6.461625664994688489e-02,1.024260625795337942e+00,7.345071336641698645e-01,1.758161778245989626e-01,1.389998845330132210e-02,-1.009770075892304497e+00,-2.812607784715845383e-02,1.007712906998693647e+00,7.217346243191152810e-01,1.791260668365405595e-01,1.226455119543937503e-02,-9.757521181446220382e-01,1.410776545189476594e-01,1.468079870729728231e+00,7.345071336569340970e-01,1.758161778613812065e-01,1.389998841193326555e-02,-1.071346598090646918e+00,3.838112023789310712e-01,1.147462574342738240e+00,7.345071336569340970e-01,1.758161778613812065e-01,1.389998841193326555e-02,-9.878754572448215088e-01,1.063675626576511962e-01,1.454739637777903827e+00,-1.061916875892080919e-01,-8.452001625941304441e-01,-2.503051133831522557e-01,-1.073534828977292799e+00,-1.981110671239830756e-01,1.480902452347531373e+00,-4.736482916911133878e-01,1.583327403766017771e-01,1.762458029048115549e+00,-1.073463585567612899e+00,-2.001158540289437182e-01,1.509782107836202369e+00,-1.886802867747725321e+00,1.129118809027568338e+00,-1.446105907479101338e-01,-8.746222351434846942e-01,-1.447398956663442093e-01,1.608463425183476847e+00,-1.886802867747725099e+00,1.129118809027568338e+00,-1.446105907479101338e-01,-1.086743070455084226e+00,3.648261660941202189e-01,1.116929892194545859e+00,1.653135744231956306e+00,1.255370565831638585e-01,2.549889996203924883e-02,-1.112344377728776035e+00,3.796549967528527469e-01,8.009331585521226593e-01,1.489070481753445696e+00,-5.674986047136825196e-01,9.366267819694325605e-03,-1.110208823297808012e+00,4.038072386733608243e-01,7.851164785974776850e-01,2.088056979066371888e+00,-1.197191110312197798e-01,-1.634284782479013654e+00,-9.870602965240684590e-01,3.814857449333061701e-01,5.935999699953964370e-01,2.088056979066371888e+00,-1.197191110312197798e-01,-1.634284782479013654e+00
|
||||
7.833333000000000101e-01,-1.022527519999999912e+00,-1.274993700000000008e-01,9.128919599999999468e-01,9.856892644612798016e-01,1.547474584972700351e-01,-9.390497524613983585e-03,-1.013222555194546404e+00,-1.390708940978384878e-01,8.938799169992175386e-01,9.856892644612798016e-01,1.547474584972700351e-01,-9.390497524613983585e-03,-1.110969132868135478e+00,-2.554753790290512638e-01,9.147093407213275906e-01,6.425742555013858048e-01,-5.935482399807449072e-01,2.359943614895541608e-01,-8.849921203920432244e-01,-5.333688746410094605e-01,7.274196503676144676e-01,7.742239416450755751e-01,-3.812493641446232373e-01,-4.212614712346127860e-02,-9.154831218291156203e-01,-5.092019366381070888e-01,7.359971641687378385e-01,8.407828993672021856e-01,-9.031416066114837660e-02,-1.502014833739601374e-01,-9.302662929215900212e-01,-8.060372457903828280e-01,4.069252552879004114e-01,8.428570171265068467e-01,-7.855284458270582471e-02,-1.574882402448254393e-01,-9.838104723756301295e-01,-8.332768820917714203e-01,3.758292524989993444e-01,1.000714050885615602e+00,1.543872563789264359e-02,-7.435518919029868168e-02,-7.979126258653458370e-01,-8.492060744785384641e-01,3.717996169364624071e-01,1.000714050885615602e+00,1.543872563789261410e-02,-7.435518919029872331e-02,-1.126573103750699856e+00,-8.702185974597656526e-02,8.045445174274189482e-01,1.716889142285708658e+00,-5.211321851499566282e-01,-1.628373505962228684e-01,-9.150942143016485009e-01,-6.184294384850369530e-02,4.586256317332520482e-01,1.700362225004002692e+00,2.142474295862042133e-01,-6.201655746037747219e-02,-9.292931925269370952e-01,-6.704513373518135311e-02,4.925591911336291706e-01,1.581447944980959086e+00,5.311243217737501299e-01,-2.134999932578627302e-01,-1.152070848290646987e+00,-1.381818765277795236e-02,1.027288524377891199e-01,1.641928132676132801e+00,1.439136891959408582e-01,-1.581219603667599338e-01,-1.206129442812915009e+00,6.301673806182385429e-03,6.739051826885909813e-02,1.797438949560750343e+00,1.061000222163552137e-01,-5.260267505999794563e-02,-1.020933866733830575e+00,-1.879560654847959450e-03,4.585792730881937257e-02,1.797438949560750343e+00,1.061000222163551998e-01,-5.260267505999789012e-02,-1.100556526028547921e+00,-9.903653826204666943e-02,9.674667900893207939e-01,9.612149855362251971e-01,1.584646273909473269e-01,-7.624532791485777797e-03,-1.087373304878122005e+00,-8.069261412182300586e-02,9.919913667072437491e-01,9.284311367976950669e-01,1.638178852504160454e-01,-6.808318075156210084e-03,-1.082314258571095866e+00,-6.077979579946019006e-02,1.018072170941996424e+00,8.683912716457439229e-01,1.689216613604323236e-01,-5.968627289979360623e-03,-1.084296554238901367e+00,-3.791561315661542975e-02,1.045447482935077943e+00,8.083316015285104683e-01,1.728295333996193173e-01,-5.251609127939891285e-03,-1.091855355986292464e+00,-1.784891468941981335e-02,1.067793588755973078e+00,7.579711227579429833e-01,1.762755997263905638e-01,-4.596618765929586480e-03,-1.099929652210235975e+00,-8.950040670431927414e-02,1.006730781029586019e+00,7.197885200414636531e-01,1.790590329226885158e-01,-3.698512118749663034e-03,-1.096266789838236111e+00,-6.659797351295945744e-02,1.026499734597328128e+00,7.197885200489329005e-01,1.790590328865097614e-01,-3.698512076811870820e-03,-1.001151781900797344e+00,-3.105506611054338617e-02,1.008664075060673015e+00,7.065905945422055190e-01,1.817972426265820618e-01,-4.743022634881720496e-03,-9.639468832870966564e-01,1.447130857181995467e-01,1.467651010703565184e+00,7.197885200414636531e-01,1.790590329226885158e-01,-3.698512118749663034e-03,-1.059919622225615976e+00,3.857948640963758669e-01,1.146466757536100500e+00,7.197885200414636531e-01,1.790590329226885158e-01,-3.698512118749663034e-03,-9.766323421570539676e-01,1.099995119170302932e-01,1.454853566803457454e+00,-1.236678876601063903e-01,-8.435792236113472953e-01,-1.996684050809299782e-01,-1.050683111634795219e+00,-1.971729831181912029e-01,1.484699817139120803e+00,-4.598511151909084327e-01,1.770548629427591003e-01,1.818135811143185121e+00,-1.050255599332084344e+00,-1.985506012340216009e-01,1.513613103857514020e+00,-1.939366839448667390e+00,1.135230153830568689e+00,-1.388261667481838491e-01,-8.538134452915557837e-01,-1.305599825358320920e-01,1.609164857799634030e+00,-1.939366839448667390e+00,1.135230153830568689e+00,-1.388261667481838491e-01,-1.075698676257086595e+00,3.666031598199951946e-01,1.116260341263942468e+00,1.662186020061637404e+00,1.370327272203436808e-01,2.465228851193707049e-02,-1.104966894068970973e+00,3.842290563619020771e-01,8.007259437369564914e-01,1.500230142457928961e+00,-5.526824332046981203e-01,1.652361967620471356e-03,-1.103021803877576756e+00,4.085249855943033914e-01,7.851059823354826772e-01,2.072520937051399947e+00,-1.113082372493902072e-01,-1.634279079640256871e+00,-9.827741706140443734e-01,3.877907899359879229e-01,5.915782540343875739e-01,2.072520937051399947e+00,-1.113082372493902072e-01,-1.634279079640256871e+00
|
||||
8.000000000000000444e-01,-1.012810790000000072e+00,-1.286007799999999979e-01,9.149340799999999829e-01,9.810070052630620596e-01,1.657298775188845164e-01,-1.425618350578965708e-02,-1.003763833310514997e+00,-1.402956121229068931e-01,8.958730255874867154e-01,9.810070052630620596e-01,1.657298775188845164e-01,-1.425618350578965708e-02,-1.101750083024381155e+00,-2.561998559942849640e-01,9.183043334229898935e-01,6.421240360957656268e-01,-5.837717484426576675e-01,2.443548632482004934e-01,-8.752577207228134926e-01,-5.327186767885567775e-01,7.296939096379728706e-01,7.704818655222541723e-01,-3.731258979881456606e-01,-3.151324509860249645e-02,-9.059208508643394886e-01,-5.088104079403775737e-01,7.384362412749951865e-01,8.363476323772796039e-01,-8.289307291885128492e-02,-1.406734935179606016e-01,-9.206067427634266886e-01,-8.068634505657945599e-01,4.104625037861311942e-01,8.358816627762497564e-01,-8.552097479647766121e-02,-1.390245303581662539e-01,-9.734701663914908654e-01,-8.353012276566182948e-01,3.792745316632412100e-01,9.969917678667564731e-01,1.112738607035645977e-02,-5.444569387003490163e-02,-7.872765713156349987e-01,-8.475314868736445462e-01,3.760570198551422827e-01,9.969917678667564731e-01,1.112738607035643028e-02,-5.444569387003495020e-02,-1.117880178310623585e+00,-8.817717246327777536e-02,8.075588675897062974e-01,1.715716853006510778e+00,-5.000931967105273213e-01,-1.627949842810620384e-01,-9.130520149984775458e-01,-6.238312539458934491e-02,4.577616961333691448e-01,1.700959471996233763e+00,2.178333643193619551e-01,-6.464526214572419160e-02,-9.272961980646723390e-01,-6.755786687264354884e-02,4.917654557352275080e-01,1.582687801847622922e+00,5.342616001909018530e-01,-2.149905202077124489e-01,-1.151065287174968477e+00,-1.319128871684177584e-02,1.026609008879169616e-01,1.643464189323758484e+00,1.446525244499921314e-01,-1.598157960371213993e-01,-1.205102466576977394e+00,7.089183621214013159e-03,6.738167169131789591e-02,1.797537593728752325e+00,1.071246031303249441e-01,-5.534775351447286662e-02,-1.019952145385856213e+00,-1.598995466350212544e-03,4.565931967801770130e-02,1.797537593728752325e+00,1.071246031303249302e-01,-5.534775351447280417e-02,-1.090115072880542213e+00,-9.957127399501480847e-02,9.702369396101151455e-01,9.564569026134720486e-01,1.700936652791933679e-01,-1.152368234111468201e-02,-1.076589739763601061e+00,-8.115752739954203154e-02,9.945215967237847066e-01,9.235159099954932671e-01,1.761388857630356575e-01,-9.695017003793809235e-03,-1.071168488991678158e+00,-6.113100790036316012e-02,1.020442006358005749e+00,8.630322882441111565e-01,1.820012097795314088e-01,-7.892413073738991508e-03,-1.072770299015922246e+00,-3.812058521671297939e-02,1.047719367207600172e+00,8.024927076749605037e-01,1.865872364716396614e-01,-6.426641544546769953e-03,-1.080018576903997163e+00,-1.792593065921039078e-02,1.070053046529681362e+00,7.517392784165501940e-01,1.907015783637041051e-01,-5.112643852197598995e-03,-1.088919267360061172e+00,-8.997487071160002736e-02,1.009575236249208974e+00,7.132810240802111013e-01,1.941342800156914683e-01,-3.635421851463141538e-03,-1.084988624745884644e+00,-6.694293386071029084e-02,1.029141264602983386e+00,7.132810240883707964e-01,1.941342799797819985e-01,-3.635421809166770706e-03,-9.901179903361798651e-01,-3.126534192500984854e-02,1.009414524102575150e+00,6.998525450109948087e-01,1.975529214826723112e-01,-5.394255510943279583e-03,-9.457418680784182019e-01,1.477559836935283810e-01,1.467139995332386704e+00,7.132810240802111013e-01,1.941342800156914683e-01,-3.635421851463141538e-03,-1.047197590971274739e+00,3.870361983405698481e-01,1.146399331902484331e+00,7.132810240802111013e-01,1.941342800156914683e-01,-3.635421851463141538e-03,-9.585732759300022998e-01,1.129463827511811985e-01,1.454755557599979987e+00,-1.365275255396564413e-01,-8.501825361231438727e-01,-1.750122053668506927e-01,-1.028156600842982327e+00,-1.950059722409180907e-01,1.487201894440719929e+00,-4.485247088901256896e-01,2.030328948894508656e-01,1.863118173511739251e+00,-1.027578059686400369e+00,-1.955517941547111338e-01,1.516140210146210032e+00,-2.006321005437492033e+00,1.134861562984951000e+00,-1.566851635884029814e-01,-8.339273457524167821e-01,-1.165663015717684770e-01,1.608892971564666929e+00,-2.006321005437492033e+00,1.134861562984951000e+00,-1.566851635884029814e-01,-1.063405467077941591e+00,3.676338386219610288e-01,1.116556730932936503e+00,1.672274046373512624e+00,1.533921218723702518e-01,2.888917524288004551e-02,-1.097965295808824182e+00,3.881781561783238521e-01,8.017348668895645236e-01,1.510525631501785648e+00,-5.394449503049433270e-01,-1.202330653710108332e-03,-1.096286473869254374e+00,4.126151501053758608e-01,7.863052320265326856e-01,2.058686532083292331e+00,-1.033430371339441184e-01,-1.630304918615135490e+00,-9.785634777001328555e-01,3.938873600730303237e-01,5.910286388313157335e-01,2.058686532083292331e+00,-1.033430371339441184e-01,-1.630304918615135490e+00
|
||||
8.166666999999999677e-01,-1.001636729999999975e+00,-1.275531699999999935e-01,9.173167700000000035e-01,9.757934650811784794e-01,1.796333402279391978e-01,-6.809268569489160955e-03,-9.927586231862002286e-01,-1.392685001365989161e-01,8.981890263213941905e-01,9.757934650811784794e-01,1.796333402279391978e-01,-6.809268569489160955e-03,-1.089448400992939936e+00,-2.558680595139762315e-01,9.225589272707188648e-01,6.497058768741169610e-01,-5.647806725759133561e-01,2.471798822780852112e-01,-8.647098011102375414e-01,-5.303335700694571386e-01,7.292701249266274610e-01,7.696759181563526120e-01,-3.579957949266180384e-01,-1.958914139615563696e-02,-8.956035929731593903e-01,-5.067971214774223965e-01,7.384254469659908837e-01,8.336047276962378350e-01,-6.909775371351509210e-02,-1.291978866608866350e-01,-9.115295268181570210e-01,-8.053026234944822281e-01,4.109214103217644354e-01,8.312917192700750579e-01,-8.249097540680622176e-02,-1.207309893124347555e-01,-9.639856916611005966e-01,-8.348120494553499249e-01,3.800428922531180476e-01,9.959052344186207772e-01,1.627793513230461203e-02,-3.480567999083779979e-02,-7.776068601810537384e-01,-8.433839166777481466e-01,3.758666812339538921e-01,9.959052344186207772e-01,1.627793513230458081e-02,-3.480567999083784836e-02,-1.108527165108790014e+00,-8.854627984306513711e-02,8.112225757717314023e-01,1.711796357472940455e+00,-4.757940855043092943e-01,-1.617971670110002480e-01,-9.115840521320557333e-01,-6.287497683608166132e-02,4.570062682241525787e-01,1.699206390972289427e+00,2.216681418616094357e-01,-6.849236109553366592e-02,-9.258929786079364010e-01,-6.793062616745473847e-02,4.911002400749708285e-01,1.581527721900117589e+00,5.371708859190663654e-01,-2.182556873990870172e-01,-1.150704096697088064e+00,-1.310017998903350439e-02,1.026619978537302025e-01,1.643208534325195869e+00,1.427669829727511719e-01,-1.621016304212106185e-01,-1.204631216430811502e+00,7.282208095311833163e-03,6.727326600460165063e-02,1.796419736448329196e+00,1.054753434492088360e-01,-5.809024167304776415e-02,-1.019470204682623393e+00,-1.917752848334980387e-03,4.585488798372074071e-02,1.796419736448329196e+00,1.054753434492088221e-01,-5.809024167304770864e-02,-1.078403311902172090e+00,-9.888810098436934259e-02,9.735508910744037347e-01,9.515485643268857263e-01,1.842065755843046992e-01,-3.641069628039859517e-03,-1.064698791505088504e+00,-8.024218738133520601e-02,9.975559682719155052e-01,9.189761527839362953e-01,1.904194243006975540e-01,-1.318659801322824088e-03,-1.059093157582740252e+00,-6.005174852691204379e-02,1.023309596860878745e+00,8.590671110283438772e-01,1.964916709987051535e-01,9.546361026041793024e-04,-1.060521221996856722e+00,-3.695191836171847488e-02,1.050521345008184948e+00,7.990795428778150189e-01,2.012888194738937930e-01,2.787719745987154562e-03,-1.067640170758431539e+00,-1.675536647523040781e-02,1.072894994805387192e+00,7.487954073690407109e-01,2.056257327204780438e-01,4.427046822470023096e-03,-1.076710172594445458e+00,-8.904204480861013793e-02,1.012728360691807827e+00,7.107077601872198169e-01,2.092955074007556704e-01,6.180104661715331467e-03,-1.072722252093964324e+00,-6.591964737298644517e-02,1.032175745063886207e+00,7.107077601960547497e-01,2.092955073649531428e-01,6.180104704237369441e-03,-9.785063367804139878e-01,-2.948651513312983141e-02,1.011021069121163629e+00,6.973058194862993275e-01,2.129230988598531382e-01,4.096723455831220891e-03,-9.297086500026408018e-01,1.516308359530680883e-01,1.467700275460577020e+00,7.107077601872198169e-01,2.092955074007556704e-01,6.180104661715331467e-03,-1.036242349051107681e+00,3.885157192462630471e-01,1.147212919143377974e+00,7.107077601872198169e-01,2.092955074007556704e-01,6.180104661715331467e-03,-9.423651861185710077e-01,1.166584701541587554e-01,1.455597657266961109e+00,-1.393458476683771263e-01,-8.509602783968325257e-01,-1.554672176439242659e-01,-1.006587324384773829e+00,-1.923955924007085816e-01,1.488618259931917320e+00,-4.382247754124788397e-01,2.158376664113503540e-01,1.902511148651900186e+00,-1.005833389632945440e+00,-1.924743446719448525e-01,1.517557577957257875e+00,-2.044275693793391468e+00,1.138088780527349853e+00,-1.538652807811696499e-01,-8.147667177194952703e-01,-1.049229533774276857e-01,1.607949295292272707e+00,-2.044275693793391468e+00,1.138088780527349853e+00,-1.538652807811696221e-01,-1.052698631213794922e+00,3.688691925534718918e-01,1.117667489556748439e+00,1.679329788879367458e+00,1.685030892640850542e-01,3.962596356666360509e-02,-1.092288130748859887e+00,3.910835487989558490e-01,8.035521433403149949e-01,1.517723363721291685e+00,-5.253480727448178733e-01,4.640664155072055964e-03,-1.091058653745200946e+00,4.156292652024032308e-01,7.882532891400471087e-01,2.044192738183859159e+00,-9.793652181665182810e-02,-1.619352033508384858e+00,-9.759361001763995347e-01,3.992188433258063718e-01,5.912256831806500523e-01,2.044192738183859159e+00,-9.793652181665182810e-02,-1.619352033508384858e+00
|
||||
8.333333000000000546e-01,-9.904265300000000272e-01,-1.250864999999999894e-01,9.191603099999999804e-01,9.713675944840061138e-01,1.998184957948428708e-01,1.057056783192044519e-02,-9.817229613445471736e-01,-1.367258528264302664e-01,8.999063837125418353e-01,9.713675944840061138e-01,1.998184957948428708e-01,1.057056783192044519e-02,-1.075757717526071522e+00,-2.549502363355873880e-01,9.267153789446676004e-01,6.624375263162968208e-01,-5.440704351113879733e-01,2.478205062301157557e-01,-8.532891424296177307e-01,-5.264624374513507954e-01,7.271892271533411112e-01,7.727741928585513120e-01,-3.414492737016613932e-01,-7.261367247356074334e-03,-8.844566958681052693e-01,-5.033943497312273196e-01,7.368741521435719921e-01,8.342543085066598252e-01,-5.384958650714888329e-02,-1.163176723703410326e-01,-9.014640133891326235e-01,-8.012897073882140342e-01,4.088693180957951867e-01,8.313255189870435435e-01,-7.166598798431134121e-02,-1.050733603685410772e-01,-9.537811213438065483e-01,-8.315811723974853020e-01,3.785166297216691067e-01,1.001471598991838130e+00,2.952889329082135708e-02,-1.657253218692761668e-02,-7.673489282794387911e-01,-8.367459652684836602e-01,3.718571422164121398e-01,1.001471598991838130e+00,2.952889329082132586e-02,-1.657253218692766178e-02,-1.100125758499902684e+00,-8.851298248925593137e-02,8.150856361843945574e-01,1.707158374201013462e+00,-4.522926356437692585e-01,-1.601820121094019722e-01,-9.108906657752885438e-01,-6.319133282343507296e-02,4.567879107017875917e-01,1.696514986569663597e+00,2.234393945813264171e-01,-7.228972497268894293e-02,-9.253453705907248583e-01,-6.809237973348718220e-02,4.909485344706736587e-01,1.579833668697485871e+00,5.378180797978071581e-01,-2.214344308751478307e-01,-1.150398270833166370e+00,-1.323875104986838719e-02,1.026535999463461524e-01,1.642270846731344491e+00,1.394233827225365430e-01,-1.641850820841792846e-01,-1.204173828136533952e+00,7.196951004641384542e-03,6.706554230143876860e-02,1.794380891065171069e+00,1.024735071374165557e-01,-6.068408116261124474e-02,-1.018974506260710511e+00,-2.490715536054980903e-03,4.620057731814421892e-02,1.794380891065171069e+00,1.024735071374165418e-01,-6.068408116261118923e-02,-1.066555800457562375e+00,-9.756424607522105885e-02,9.768138473600249672e-01,9.479103517376866739e-01,2.038235859082132284e-01,1.311276338014829429e-02,-1.052712712111260718e+00,-7.859226511032363360e-02,1.000481137234998652e+00,9.163910240352515224e-01,2.093303546813457261e-01,1.483899171589740142e-02,-1.046959713427215055e+00,-5.824101566828780024e-02,1.026075572986720141e+00,8.584752117445000330e-01,2.146744547546525772e-01,1.654904216670497960e-02,-1.048255087914510053e+00,-3.514882431382339301e-02,1.053301413767962158e+00,8.004976407454121867e-01,2.188616991581670002e-01,1.794836069357320582e-02,-1.055277936187267951e+00,-1.508839487962282400e-02,1.075827697670389993e+00,7.518959081558993507e-01,2.226231145286354240e-01,1.921086631214654825e-02,-1.064371780905332576e+00,-8.723275385379436475e-02,1.015497652660686034e+00,7.150796793478344515e-01,2.257702776617017959e-01,2.061760887444716306e-02,-1.060373991893346357e+00,-6.413525518835537509e-02,1.034972579372233525e+00,7.150796793573519494e-01,2.257702776257177468e-01,2.061760891696331685e-02,-9.670425194570281269e-01,-2.694877432837246289e-02,1.013015533156113701e+00,7.021498237504212314e-01,2.287812235879549405e-01,1.901086383066980315e-02,-9.144930075775132838e-01,1.536318098889345451e-01,1.469541983383162886e+00,7.150796793478344515e-01,2.257702776617017959e-01,2.061760887444716306e-02,-1.027247125810031969e+00,3.881706313401980246e-01,1.149040927441812299e+00,7.150796793478344515e-01,2.257702776617017959e-01,2.061760887444716306e-02,-9.268763447615410156e-01,1.185393581036632837e-01,1.457504523889893822e+00,-1.314873016141206441e-01,-8.599212038485475329e-01,-1.442711294185218263e-01,-9.861042410876755815e-01,-1.916927851994489895e-01,1.488766807617187382e+00,-4.297308304860702477e-01,2.349478712437307326e-01,1.957431840681270740e+00,-9.853332467480548917e-01,-1.911289672584079447e-01,1.517700290372633098e+00,-2.093586223548332903e+00,1.136007472683649322e+00,-1.455888363892051118e-01,-7.991320440210580855e-01,-9.171475035644720275e-02,1.605951677768246100e+00,-2.093586223548332903e+00,1.136007472683649322e+00,-1.455888363892051118e-01,-1.043924409206694159e+00,3.684197575632359167e-01,1.119689626845059571e+00,1.688177450901914067e+00,1.820376773054446784e-01,4.710892370045952765e-02,-1.088013483934614500e+00,3.929322602979165024e-01,8.063454909101006596e-01,1.527286610852888638e+00,-5.109420573287571932e-01,5.895270294229482122e-03,-1.087151169569258391e+00,4.176094151506619112e-01,7.912341312885785571e-01,2.029322822399885151e+00,-9.036063724270959607e-02,-1.611962942588984316e+00,-9.747970225278701495e-01,4.035096811688097529e-01,5.924374388092922272e-01,2.029322822399885151e+00,-9.036063724270959607e-02,-1.611962942588984316e+00
|
||||
8.499999999999999778e-01,-9.802051499999999695e-01,-1.220180299999999995e-01,9.211778800000000045e-01,9.689052719154767068e-01,2.189285557068262333e-01,3.284389620099566892e-02,-9.716061349628598576e-01,-1.335147954236642065e-01,9.017917601142296791e-01,9.689052719154767068e-01,2.189285557068262333e-01,3.284389620099566892e-02,-1.062393089318739881e+00,-2.537662194648203640e-01,9.306982712570940341e-01,6.810995465273754768e-01,-5.254735249863868862e-01,2.453254565513204588e-01,-8.422231649072983162e-01,-5.211297935301495432e-01,7.238038140049951608e-01,7.812658097891207465e-01,-3.284423560159437372e-01,5.565152436686674094e-03,-8.737867076961205459e-01,-4.986670765137302119e-01,7.340017970141358150e-01,8.401903480375214617e-01,-4.226256953853053944e-02,-1.016600777383303150e-01,-8.899355097199552755e-01,-7.944564338402015924e-01,4.040534125550772071e-01,8.377802507229102913e-01,-5.776954935408102482e-02,-9.201410388097934490e-02,-9.422387509521692461e-01,-8.252185705891789125e-01,3.741535759681027806e-01,1.009832022866073320e+00,4.317075131879607314e-02,-2.426569111859173782e-03,-7.558610731304576946e-01,-8.277357165489185320e-01,3.649333993956939692e-01,1.009832022866073320e+00,4.317075131879604538e-02,-2.426569111859220619e-03,-1.092669526741560260e+00,-8.826659996619459769e-02,8.191206138147215654e-01,1.702742957459047135e+00,-4.290345862534543087e-01,-1.585513818785778961e-01,-9.110471484998297065e-01,-6.324712635848182829e-02,4.570485900003351531e-01,1.693763570640598237e+00,2.222698587270576231e-01,-7.615957825822790295e-02,-9.257772391263245915e-01,-6.797746682739909396e-02,4.912354543661724970e-01,1.578858831044534394e+00,5.354035556087789471e-01,-2.241268487077250626e-01,-1.149866712345818165e+00,-1.315592189213498492e-02,1.023791944607068127e-01,1.641789472839313646e+00,1.328868361872279913e-01,-1.660702019470715884e-01,-1.203377184208181294e+00,7.322130206657152807e-03,6.641786645419242574e-02,1.790423805142290270e+00,9.685534680979793198e-02,-6.450294691924074453e-02,-1.018103202146211528e+00,-3.087106856038100700e-03,4.658895259850744097e-02,1.790423805142290270e+00,9.685534680979791811e-02,-6.450294691924068902e-02,-1.055832074228178818e+00,-9.606004884266758359e-02,9.802017920835391918e-01,9.461751798064133023e-01,2.224993281398700284e-01,3.500827293086161696e-02,-1.041977551305300675e+00,-7.673100783251234069e-02,1.003571078045765175e+00,9.156286698715307981e-01,2.274386190523206008e-01,3.641008271332929480e-02,-1.036206710621385474e+00,-5.622553082292618132e-02,1.029038446295121645e+00,8.595280749413960475e-01,2.322134191242796741e-01,3.781299400009181799e-02,-1.037507945726262149e+00,-3.318111699682695093e-02,1.056305401534924027e+00,8.033750904064033138e-01,2.359381460466852820e-01,3.897504958368761679e-02,-1.044549295413865320e+00,-1.332010908590661527e-02,1.079002265781901171e+00,7.563023665742191204e-01,2.392726665854680301e-01,4.003187038457281521e-02,-1.053245902329817962e+00,-8.531988977454477152e-02,1.018444821500191555e+00,7.206435448215109396e-01,2.420450306730543011e-01,4.123841176798211106e-02,-1.049373960099992731e+00,-6.224200415710830908e-02,1.037968366024736078e+00,7.206435448316915737e-01,2.420450306368402693e-01,4.123841181045657944e-02,-9.571436560286640249e-01,-2.370130980488148464e-02,1.015199063379159661e+00,7.081284617484360222e-01,2.446234795727537104e-01,3.992248820167217799e-02,-9.028175346915972010e-01,1.560649176078295897e-01,1.471840834329096737e+00,7.206435448215109396e-01,2.420450306730543011e-01,4.123841176798211106e-02,-1.021177494182569312e+00,3.876304351681012506e-01,1.150987513386057648e+00,7.206435448215109396e-01,2.420450306730543011e-01,4.123841176798211106e-02,-9.147183942517563837e-01,1.207967382634323183e-01,1.459830309335250265e+00,-1.184622851203775973e-01,-8.543694326628865632e-01,-1.362656142751414723e-01,-9.682674111450396692e-01,-1.907182069478460529e-01,1.488469417653859539e+00,-4.159951106741705540e-01,2.376795439436554525e-01,2.003127207187803904e+00,-9.672030499313769569e-01,-1.898890758167265935e-01,1.517387204984087745e+00,-2.115781461268979591e+00,1.146021257868798493e+00,-1.232864571878256182e-01,-7.844371727978636244e-01,-8.195763131891189990e-02,1.602767643262966946e+00,-2.115781461268979591e+00,1.146021257868798493e+00,-1.232864571878256182e-01,-1.037952164178362224e+00,3.676998072822323937e-01,1.121813755284395864e+00,1.694735577754028721e+00,1.917931901179620036e-01,5.954914221624874049e-02,-1.085480923710377521e+00,3.935498577725468627e-01,8.090805643172327422e-01,1.533717351985980581e+00,-5.027683578175918822e-01,1.381456647132070850e-02,-1.085015381703772208e+00,4.183177191717497578e-01,7.941007425675586928e-01,2.020871328281872881e+00,-8.511283694701067548e-02,-1.600181373439006682e+00,-9.741584029820874457e-01,4.065546223818795601e-01,5.943140022190736005e-01,2.020871328281872881e+00,-8.511283694701067548e-02,-1.600181373439006682e+00
|
||||
8.666667000000000121e-01,-9.722356699999999963e-01,-1.193426300000000051e-01,9.232792899999999747e-01,9.715628386802814820e-01,2.346289698097957233e-01,5.393053426755111540e-02,-9.637107894051590851e-01,-1.306268579738671387e-01,9.037361856171572949e-01,9.715628386802814820e-01,2.346289698097957233e-01,5.393053426755111540e-02,-1.051548472079455676e+00,-2.527645026528471672e-01,9.338227225776638551e-01,7.048352292210576797e-01,-5.154346340015154571e-01,2.398337674564375854e-01,-8.325653310591067946e-01,-5.147302287304056367e-01,7.194568181429046305e-01,7.973219064785942445e-01,-3.218384579909614462e-01,1.418852691913389912e-02,-8.645134572099311132e-01,-4.928952217619225751e-01,7.301376876285300410e-01,8.540696297911738455e-01,-3.607078107015544710e-02,-8.906313831616913257e-02,-8.784135833397864745e-01,-7.841022536777144669e-01,3.960369316013642726e-01,8.532149355658921186e-01,-4.189865027505158823e-02,-8.555710882905093184e-02,-9.309250354817959483e-01,-8.147439012578381323e-01,3.663792992582613484e-01,1.028570879883101030e+00,5.857346972678840330e-02,6.728499992064158886e-03,-7.446986416751877336e-01,-8.155335408532197183e-01,3.542511011596899406e-01,1.028570879883101030e+00,5.857346972678837554e-02,6.728499992064111181e-03,-1.086967480079193971e+00,-8.772602468448208179e-02,8.230790770726725825e-01,1.698971454838519302e+00,-4.077746782824800409e-01,-1.595992517789853182e-01,-9.122084755659345401e-01,-6.335139085308991169e-02,4.578012336429742035e-01,1.691288265668132507e+00,2.184656508960186594e-01,-8.229784545712363897e-02,-9.273285320342268268e-01,-6.787318211640860910e-02,4.919725186555563567e-01,1.578770737834042315e+00,5.303334501629700659e-01,-2.285939517448698499e-01,-1.149256925769808646e+00,-1.253735091304262333e-02,1.019514698600795799e-01,1.641862717303314678e+00,1.240957142058330964e-01,-1.701441966172839437e-01,-1.202369180332632403e+00,8.107727676701505931e-03,6.549865825434983413e-02,1.783900195751800588e+00,8.978844270680015616e-02,-7.252211889452180038e-02,-1.017051242811912060e+00,-3.808344801597519230e-03,4.697149657801712869e-02,1.783900195751800588e+00,8.978844270680014228e-02,-7.252211889452174487e-02,-1.047435157358577840e+00,-9.504354772100029325e-02,9.835425653261050671e-01,9.490178171492955617e-01,2.379841552665951654e-01,5.589894590613830178e-02,-1.033611334985019337e+00,-7.548269744837574069e-02,1.006736290748626361e+00,9.187132519948925102e-01,2.426578416131059401e-01,5.712332849726032419e-02,-1.027860564493873197e+00,-5.492072790096928087e-02,1.032162733716905478e+00,8.630739742085021815e-01,2.471627211977759919e-01,5.835680664615246205e-02,-1.029202261852519840e+00,-3.197822657972784754e-02,1.059513829619864289e+00,8.073871345648353515e-01,2.506643354563464765e-01,5.938624417529142496e-02,-1.036288236627874282e+00,-1.232755938982007041e-02,1.082379331814597112e+00,7.607046205458933841e-01,2.537903563558026043e-01,6.032637565465798907e-02,-1.044497985594325273e+00,-8.425249261648586063e-02,1.021666154102683244e+00,7.253419836685011113e-01,2.563749386558400456e-01,6.142244883681633599e-02,-1.040780876565746249e+00,-6.117690617821434917e-02,1.041222481544306078e+00,7.253419836792662778e-01,2.563749386194326130e-01,6.142244887926961994e-02,-9.496537587649998002e-01,-2.094060833315493364e-02,1.017418109058495945e+00,7.129369461065208080e-01,2.587656139143995060e-01,6.025721742970270578e-02,-8.951226602595839799e-01,1.575488014439208051e-01,1.473982298633313537e+00,7.253419836685011113e-01,2.563749386558400456e-01,6.142244883681633599e-02,-1.016920189346328662e+00,3.873019506680104862e-01,1.153349294820323223e+00,7.253419836685011113e-01,2.563749386558400456e-01,6.142244883681633599e-02,-9.065252893943027690e-01,1.221046608718839022e-01,1.462006465005012190e+00,-1.061911186636749493e-01,-8.392779946069854891e-01,-1.256828427671852211e-01,-9.535196895657196414e-01,-1.906795660871340170e-01,1.488213535495360951e+00,-3.987935065911896726e-01,2.308097377038726972e-01,2.043271974409930358e+00,-9.519648685624120255e-01,-1.897702592465486948e-01,1.517106691086597126e+00,-2.123423238575212313e+00,1.163843166454295419e+00,-9.412517532464259595e-02,-7.717108976898802153e-01,-7.518112164046847345e-02,1.599083622743252997e+00,-2.123423238575212313e+00,1.163843166454295419e+00,-9.412517532464258208e-02,-1.033736806475500591e+00,3.671626731052556880e-01,1.124343458670538309e+00,1.698106762096646793e+00,1.992238895162348755e-01,7.310471731603938872e-02,-1.083986263482973333e+00,3.932593150674482674e-01,8.120563885343268229e-01,1.535902159625734287e+00,-5.001460831272157570e-01,2.516922095674841223e-02,-1.083867937196337783e+00,4.180586837309626103e-01,7.971219966791812661e-01,2.018160309059192414e+00,-8.331032110486547015e-02,-1.587548442560568152e+00,-9.734075481142940856e-01,4.080410871925995719e-01,5.970206923358590823e-01,2.018160309059191970e+00,-8.331032110486547015e-02,-1.587548442560568152e+00
|
||||
8.833332999999999879e-01,-9.676715099999999570e-01,-1.178726300000000060e-01,9.247224600000000239e-01,9.710519464618566632e-01,2.516679782714300595e-01,7.058667420803167725e-02,-9.592910558597218529e-01,-1.290455163930001869e-01,9.050533238447696638e-01,9.710519464618566632e-01,2.516679782714300595e-01,7.058667420803167725e-02,-1.044542699146193243e+00,-2.525872609661025670e-01,9.368000892923816769e-01,7.350076313280632379e-01,-5.151879924329955118e-01,2.316456987042294635e-01,-8.250992487085604399e-01,-5.073677816275206087e-01,7.146748074881428270e-01,8.229116104028390000e-01,-3.201322309046516490e-01,1.665488574569996480e-02,-8.573318894007679880e-01,-4.861545179304745390e-01,7.259088150120049932e-01,8.777720861389953777e-01,-3.301149835797204807e-02,-7.968701690888659039e-02,-8.686586881285488504e-01,-7.694357633224589987e-01,3.849667323039570599e-01,8.791185183993818208e-01,-2.321247865941331034e-02,-8.525369751019017117e-02,-9.216218173337352715e-01,-7.993259963874460583e-01,3.553454689817892032e-01,1.071666464304551702e+00,8.227253383013304056e-02,1.858543934068949272e-02,-7.357469239702149055e-01,-7.978601468854602530e-01,3.387213367530027552e-01,1.071666464304551702e+00,8.227253383013301280e-02,1.858543934068944414e-02,-1.084600958099507517e+00,-8.835394289092252107e-02,8.264410684504895910e-01,1.698785415158954759e+00,-3.930379684946253005e-01,-1.612829222630881854e-01,-9.144022502052913115e-01,-6.362525904328243664e-02,4.592232419009031341e-01,1.691718100588770701e+00,2.127604290145726218e-01,-8.638071147466630517e-02,-9.299389740294244922e-01,-6.805222906594857180e-02,4.933266995467774918e-01,1.581908200447450508e+00,5.239200083959190124e-01,-2.301760781003761858e-01,-1.149009347721221763e+00,-1.155755326611474648e-02,1.018586834313426892e-01,1.644329717560453874e+00,1.165780619722501243e-01,-1.729217963428766047e-01,-1.201771042620671803e+00,9.291654030684600579e-03,6.501506206864055004e-02,1.779202470117357882e+00,8.395232859759683974e-02,-7.981128704094515858e-02,-1.016441536644024923e+00,-3.991677611378328938e-03,4.756473872029901018e-02,1.779202470117357882e+00,8.395232859759682587e-02,-7.981128704094510307e-02,-1.042235462003377577e+00,-9.473535086350057255e-02,9.862200536718030985e-01,9.491387363609236072e-01,2.539542230642062859e-01,7.114432621622990283e-02,-1.028343149647465093e+00,-7.494407851048143221e-02,1.009175910623985706e+00,9.197565280346891026e-01,2.574036321601925192e-01,7.093481014889324587e-02,-1.022495649588484934e+00,-5.430804595614577290e-02,1.034520516473785179e+00,8.661016935561667296e-01,2.606169612392825186e-01,7.079818690307294882e-02,-1.023729827733564912e+00,-3.144470087154054017e-02,1.061943761860187241e+00,8.124700478727014952e-01,2.630064441589351487e-01,7.075643945170813354e-02,-1.030722002076286392e+00,-1.196292110500779202e-02,1.084982280434775070e+00,7.674966852464867317e-01,2.650628795677260063e-01,7.074959436046934780e-02,-1.039054119150116362e+00,-8.349876183989665690e-02,1.023830783782134768e+00,7.334000203092203574e-01,2.666431339247324894e-01,7.099493888372024331e-02,-1.035298306780078059e+00,-6.053424051895676949e-02,1.043510066440443751e+00,7.334000203203568935e-01,2.666431338879953761e-01,7.099493892598485179e-02,-9.447353148036091719e-01,-2.009302401908900915e-02,1.019719969183272124e+00,7.216648481421995553e-01,2.680242934692694257e-01,7.074597407396200632e-02,-8.865891960256651050e-01,1.559811698377143729e-01,1.476448092470219464e+00,7.334000203092203574e-01,2.666431339247324894e-01,7.099493888372024331e-02,-1.015566268217037660e+00,3.839583445696209685e-01,1.156078536354296915e+00,7.334000203092203574e-01,2.666431339247324894e-01,7.099493888372024331e-02,-8.978559452658469997e-01,1.205374828119054470e-01,1.464343008631502130e+00,-8.993824541830601482e-02,-8.199063946272803216e-01,-1.302512561820449166e-01,-9.420897809589998673e-01,-1.929127973486220449e-01,1.487180400616269660e+00,-3.734351136703675245e-01,2.246935096403863685e-01,2.086233476523991381e+00,-9.398618069894911775e-01,-1.917503617043389008e-01,1.516020366335149028e+00,-2.145285585819152185e+00,1.187863539403150703e+00,-7.707053191326462827e-02,-7.620510485144467161e-01,-6.999159368394720915e-02,1.592835198087531046e+00,-2.145285585819152185e+00,1.187863539403150703e+00,-7.707053191326462827e-02,-1.032544270301647638e+00,3.638979697187295081e-01,1.127112065232952043e+00,1.705613535224525412e+00,1.984272862395255466e-01,7.581722706702381798e-02,-1.082750106605336438e+00,3.922423774499757543e-01,8.150139630648673972e-01,1.543359218794402077e+00,-5.046882434812643980e-01,2.237771931177645612e-02,-1.082586513402776562e+00,4.171404982476341061e-01,8.002452269878926883e-01,2.022449159892409476e+00,-7.659710437280850548e-02,-1.587091556419005123e+00,-9.712420647834422160e-01,4.085391612713790699e-01,6.005684567807946239e-01,2.022449159892409476e+00,-7.659710437280849160e-02,-1.587091556419005123e+00
|
||||
9.000000000000000222e-01,-9.663414000000000170e-01,-1.176337900000000020e-01,9.262864200000000547e-01,9.750735204160779768e-01,2.665615233693512387e-01,8.401022486996781446e-02,-9.581226139665584007e-01,-1.286499912583335958e-01,9.064613049936860456e-01,9.750735204160779768e-01,2.665615233693512387e-01,8.401022486996781446e-02,-1.041348097264105599e+00,-2.533235377666007149e-01,9.391459830942240350e-01,7.702297780435152230e-01,-5.215103900925863734e-01,2.255156106533363625e-01,-8.192949074315413194e-01,-4.985987553343758649e-01,7.089573539949625136e-01,8.562959459036255661e-01,-3.182421481553962539e-01,1.611496796144900809e-02,-8.516771488273449098e-01,-4.780676640187695448e-01,7.209434838786463740e-01,9.092920674280380311e-01,-2.784245947369207858e-02,-7.057052291154040924e-02,-8.611679030982537508e-01,-7.504691449277504089e-01,3.711929686488354974e-01,9.127188369037926297e-01,-8.249773627177159558e-04,-8.477094170747853652e-02,-9.146812769188666925e-01,-7.793584238994843982e-01,3.415675283733830558e-01,1.128698935147713911e+00,1.103790032100718937e-01,3.517711543554295772e-02,-7.294115024718825779e-01,-7.747514878988661646e-01,3.196159159708151232e-01,1.128698935147713911e+00,1.103790032100718660e-01,3.517711543554290915e-02,-1.085104100056308196e+00,-8.931024848414199913e-02,8.298692082702363582e-01,1.700096679452088644e+00,-3.829447521688391087e-01,-1.620584908963551840e-01,-9.178688156113811170e-01,-6.371466045071616513e-02,4.615208014692093741e-01,1.693274484493290544e+00,2.055222909582523905e-01,-8.839645910812489460e-02,-9.338433719697967206e-01,-6.810902862201920205e-02,4.955205230192988308e-01,1.586299183284697545e+00,5.162254819187945820e-01,-2.294285317870012331e-01,-1.149552027371907981e+00,-1.053450037823690233e-02,1.023467264017396960e-01,1.647605808984751175e+00,1.096758452737400802e-01,-1.740744675476242620e-01,-1.202009402011241734e+00,1.046938409715408511e-02,6.515803172743403482e-02,1.772086014885662753e+00,7.960950155066190415e-02,-8.777717984481764324e-02,-1.016719835641159309e+00,-4.309101966918480256e-03,4.850392070151694768e-02,1.772086014885662753e+00,7.960950155066189027e-02,-8.777717984481758773e-02,-1.040244685038984152e+00,-9.558575090515825101e-02,9.889702224065507474e-01,9.530186575586372388e-01,2.678114756277506503e-01,8.307836887156067052e-02,-1.026246737020227062e+00,-7.570227943426929840e-02,1.011781719077334385e+00,9.235462391312486696e-01,2.701150692290797961e-01,8.132229180168584759e-02,-1.020264566229979852e+00,-5.507996333625120311e-02,1.037106182832639112e+00,8.700865381593428927e-01,2.721038788576041201e-01,7.970272439176127877e-02,-1.021354433932778694e+00,-3.231040998686497689e-02,1.064613726504003210e+00,8.167355228874444428e-01,2.734235508829298555e-01,7.849609076276227448e-02,-1.028227874022186850e+00,-1.295120454350687580e-02,1.087790877394303246e+00,7.719811085774556103e-01,2.744410178915538956e-01,7.745409689010643306e-02,-1.036765468320163919e+00,-8.429356431110025805e-02,1.026442476520839087e+00,7.380155011597006043e-01,2.750311924975899491e-01,7.677675469548470022e-02,-1.032942623904783863e+00,-6.138701238492794143e-02,1.046176337557995994e+00,7.380155011711575508e-01,2.750311924606649860e-01,7.677675473767123226e-02,-9.428864355156312271e-01,-2.056067368563180287e-02,1.022024859569173660e+00,7.266059873362067378e-01,2.754844335856416748e-01,7.743345638765479488e-02,-8.808477680429602774e-01,1.535063507617699385e-01,1.478171487231548120e+00,7.380155011597006043e-01,2.750311924975899491e-01,7.677675469548470022e-02,-1.014819833765636004e+00,3.812455183062520847e-01,1.159079120933183660e+00,7.380155011597006043e-01,2.750311924975899491e-01,7.677675469548470022e-02,-8.920587432894210300e-01,1.180578248469827812e-01,1.466028847993766426e+00,-7.851113112992853804e-02,-7.933222139376455706e-01,-1.282949564233111239e-01,-9.325421599269962947e-01,-1.960682884501678269e-01,1.486403703764595408e+00,-3.476455195990156288e-01,2.100695387531112401e-01,2.120186845746037996e+00,-9.295094794765620394e-01,-1.948258672154811189e-01,1.515166839651754804e+00,-2.151094879437007723e+00,1.216909044096390335e+00,-5.409980780783481269e-02,-7.530655936131146477e-01,-6.802430849311610905e-02,1.586799944034059662e+00,-2.151094879437007723e+00,1.216909044096390335e+00,-5.409980780783481269e-02,-1.031958205010665486e+00,3.612179778133417507e-01,1.130184458864915920e+00,1.710646666511510983e+00,1.946259401888638108e-01,7.816501615438087303e-02,-1.081139381043698444e+00,3.911218874316992333e-01,8.180687352317532746e-01,1.547262774708125121e+00,-5.167200658394134338e-01,2.088898098127645042e-02,-1.080810235900846017e+00,4.160740662054268624e-01,8.033942953712026602e-01,2.034375492006395447e+00,-7.273498642507919554e-02,-1.587561909765730084e+00,-9.670829744298800046e-01,4.082493238627175058e-01,6.050328444739944134e-01,2.034375492006395447e+00,-7.273498642507919554e-02,-1.587561909765730084e+00
|
||||
9.166666999999999454e-01,-9.668959099999999696e-01,-1.181338100000000058e-01,9.275978400000000068e-01,9.801837836787494762e-01,2.822069843563804192e-01,9.574027249219260738e-02,-9.588829839894076335e-01,-1.289964627320914492e-01,9.076044383031415252e-01,9.801837836787494762e-01,2.822069843563804192e-01,9.574027249219260738e-02,-1.040282845374696619e+00,-2.546373499524959838e-01,9.411706784339705090e-01,8.100293406915055616e-01,-5.304644488529908219e-01,2.228058494135801704e-01,-8.140201442910780516e-01,-4.879195668989858015e-01,7.023885845863929722e-01,8.954505750867330915e-01,-3.133585951042292539e-01,1.605089784772486747e-02,-8.464621226972278700e-01,-4.682191759813421061e-01,7.153517071040611519e-01,9.464449638531172715e-01,-1.849153238665219787e-02,-5.874928654160628538e-02,-8.550409681992487965e-01,-7.273709641085791544e-01,3.556506948148781544e-01,9.504922521849457073e-01,1.589359284873572559e-02,-7.520697708531817738e-02,-9.086962621837163523e-01,-7.555948151796929579e-01,3.256429960220403319e-01,1.189388067913769387e+00,1.307715178816441781e-01,6.174530518031848270e-02,-7.241197063424750224e-01,-7.460101813984726382e-01,2.998047240386483292e-01,1.189388067913769387e+00,1.307715178816441504e-01,6.174530518031843412e-02,-1.087475830384500020e+00,-9.071484805223914427e-02,8.331957003410808138e-01,1.702848384458066855e+00,-3.770420502190224843e-01,-1.599368376515712398e-01,-9.218371355818282264e-01,-6.341540334788110800e-02,4.643890030880993836e-01,1.695979190576511808e+00,1.978702346963421843e-01,-8.634037033559080476e-02,-9.382137903363436671e-01,-6.788034750160761022e-02,4.982648417072076397e-01,1.591690589302202197e+00,5.084053076111705316e-01,-2.245369703437369857e-01,-1.150633646530113463e+00,-9.676488255233137159e-03,1.033967623085393917e-01,1.651465030076918694e+00,1.053451176151150720e-01,-1.717308188312692552e-01,-1.202947880037236850e+00,1.133946609501402039e-02,6.601375863044753323e-02,1.763669624501371880e+00,7.836641714574747730e-02,-9.373673833013880519e-02,-1.017731640043191055e+00,-4.560128578262743343e-03,4.957801095301418715e-02,1.763669624501371880e+00,7.836641714574746342e-02,-9.373673833013874968e-02,-1.040007703880556189e+00,-9.706752038034083263e-02,9.915349003707442099e-01,9.576922315547267139e-01,2.821159098394449560e-01,9.274688026271861452e-02,-1.025844233946235917e+00,-7.713745620607670439e-02,1.014203216625572335e+00,9.277932238950821198e-01,2.829610907076042792e-01,8.882821093756534947e-02,-1.019659453698828599e+00,-5.655345206131245916e-02,1.039510254735057204e+00,8.741035539332092652e-01,2.833750117779006428e-01,8.513635031581270884e-02,-1.020528383273383799e+00,-3.387163896643254068e-02,1.067098167795781372e+00,8.206547229381827568e-01,2.833047316709417229e-01,8.230301906881523633e-02,-1.027218872865824695e+00,-1.459870069429182460e-02,1.090400332074136225e+00,7.757971791432884956e-01,2.829632552399052314e-01,7.981584901241557672e-02,-1.036206281702525711e+00,-8.576662484289916677e-02,1.028913466228242202e+00,7.417049643503236256e-01,2.822467783720131185e-01,7.785792474171404631e-02,-1.032237436759787741e+00,-6.291866470211932016e-02,1.048686390120026513e+00,7.417049643620579058e-01,2.822467783349387194e-01,7.785792478384562232e-02,-9.425312272000624381e-01,-2.204045145673655393e-02,1.024234677475334587e+00,7.306781442690999384e-01,2.814817195004731820e-01,7.973173214626216865e-02,-8.763228898275450263e-01,1.501920947508744164e-01,1.479744555385677396e+00,7.417049643503236256e-01,2.822467783720131185e-01,7.785792474171404631e-02,-1.014083596075507465e+00,3.785571398239271912e-01,1.162336795477548979e+00,7.417049643503236256e-01,2.822467783720131185e-01,7.785792474171404631e-02,-8.876222750726765476e-01,1.147790297206810195e-01,1.467580412940917567e+00,-6.795134102502077555e-02,-7.608772167057267222e-01,-1.230674252692987025e-01,-9.235341284384473992e-01,-2.000506839023570571e-01,1.485520508631275938e+00,-3.201554922050548480e-01,1.892841831809571607e-01,2.152513953993263396e+00,-9.195619818000144718e-01,-1.988033904653590533e-01,1.514168808013034218e+00,-2.145598987647192146e+00,1.250889581622200097e+00,-2.203835296575542071e-02,-7.442529341016389521e-01,-6.748917425181269469e-02,1.580242223330933005e+00,-2.145598987647192146e+00,1.250889581622200097e+00,-2.203835296575542071e-02,-1.031436168684131571e+00,3.586144359251617897e-01,1.133511382588301197e+00,1.717108705688494164e+00,1.869596256628459907e-01,7.742160131118329403e-02,-1.078324135388033955e+00,3.907736585926959716e-01,8.212669914436376839e-01,1.551930384875777724e+00,-5.378067942727786654e-01,1.493875316666295333e-02,-1.077597949034382108e+00,4.157883986690277256e-01,8.067138412830924254e-01,2.055349312357767300e+00,-6.791923489584913987e-02,-1.592637271583309477e+00,-9.597553122045725527e-01,4.084163412257802439e-01,6.107517339497818831e-01,2.055349312357767300e+00,-6.791923489584913987e-02,-1.592637271583309477e+00
|
||||
9.333333000000000323e-01,-9.676245900000000066e-01,-1.185172300000000012e-01,9.285443399999999681e-01,9.871701273295423462e-01,2.984501408718392979e-01,1.075075701516615412e-01,-9.598446765626420518e-01,-1.292020834014807884e-01,9.083639739543291070e-01,9.871701273295423462e-01,2.984501408718392979e-01,1.075075701516615412e-01,-1.039441376646308646e+00,-2.557992664038918340e-01,9.426536377502898745e-01,8.539977091757141592e-01,-5.389708088616783632e-01,2.220051373376599746e-01,-8.085059668779016606e-01,-4.749406714253965323e-01,6.947010007050280489e-01,9.380754510051297901e-01,-3.061740535681031217e-01,1.895915474789282990e-02,-8.410145165988851534e-01,-4.562755741310508539e-01,7.087571632947369249e-01,9.869718798972376694e-01,-6.903709454061825526e-03,-4.263333554876713727e-02,-8.488799598080946085e-01,-7.005818257666458493e-01,3.387968217222343537e-01,9.897842517210251323e-01,1.808023113888807681e-02,-5.338878603245739152e-02,-9.019285955719247294e-01,-7.287310740506195428e-01,3.076616263104595128e-01,1.241922455957738425e+00,1.322390480537709856e-01,9.611633311960662840e-02,-7.178485453654350756e-01,-7.127322725731363162e-01,2.814593375309836776e-01,1.241922455957738425e+00,1.322390480537709578e-01,9.611633311960657289e-02,-1.090040081647705827e+00,-9.181731574026502640e-02,8.363237206701534809e-01,1.705319858103056196e+00,-3.729496204264073356e-01,-1.541142969990365319e-01,-9.255516082859294169e-01,-6.241336714407313968e-02,4.672857339016389111e-01,1.698348092381433139e+00,1.907716695371935445e-01,-8.052770493541346053e-02,-9.422703933935046017e-01,-6.700800478222458667e-02,5.010429985859403690e-01,1.596394820148186788e+00,5.011628518484160244e-01,-2.162780145677878352e-01,-1.151885385851726396e+00,-9.103655483983646990e-03,1.046349689830660679e-01,1.654449610414567395e+00,1.045830046206292357e-01,-1.659847752047966529e-01,-1.204266581380510681e+00,1.173247756138805220e-02,6.724507404637827812e-02,1.753714339526047050e+00,8.096982958612372605e-02,-9.693062251956750808e-02,-1.019148255282431137e+00,-4.772507678491490907e-03,5.031057449962029332e-02,1.753714339526047050e+00,8.096982958612371217e-02,-9.693062251956745257e-02,-1.039849290638702906e+00,-9.848448296397954715e-02,9.938080536199360715e-01,9.641167958731096110e-01,2.969929717932573432e-01,1.022945091780892851e-01,-1.025491566713274461e+00,-7.854836268001504085e-02,1.016348677003638512e+00,9.336589889087300032e-01,2.963625969284453543e-01,9.604123000333197879e-02,-1.019069086986785111e+00,-5.804134259872002072e-02,1.041659061513901197e+00,8.796002575623141917e-01,2.951710828772432516e-01,9.011343682639701147e-02,-1.019676267157190397e+00,-3.548159040978715595e-02,1.069353917999082304e+00,8.259410792055303929e-01,2.936744216371958149e-01,8.552580002554198424e-02,-1.026148541781076284e+00,-1.631638860442569811e-02,1.092805994600521080e+00,7.808867578917457752e-01,2.919322563359065814e-01,8.148066659394420652e-02,-1.035699239194932231e+00,-8.723198141045859777e-02,1.031112325079950320e+00,7.465939466821178705e-01,2.898616936519861076e-01,7.814566326605172641e-02,-1.031547914901889573e+00,-6.446930548714215059e-02,1.050946049476253696e+00,7.465939466941327041e-01,2.898616936147142553e-01,7.814566330808810080e-02,-9.421584668261515638e-01,-2.360025135885188141e-02,1.026194081467368457e+00,7.359975127351834345e-01,2.878238560542065727e-01,8.128876445090003899e-02,-8.715475509733294768e-01,1.465328935272559308e-01,1.481392306523887648e+00,7.465939466821178705e-01,2.898616936519861076e-01,7.814566326605172641e-02,-1.011669660134612014e+00,3.761396204907434537e-01,1.165842259149760363e+00,7.465939466821178705e-01,2.898616936519861076e-01,7.814566326605172641e-02,-8.829825744042044677e-01,1.111820121722127963e-01,1.469174161422277081e+00,-5.671055633823544884e-02,-7.255880310632403241e-01,-1.156227643709694802e-01,-9.135865343278146700e-01,-2.043538738852103132e-01,1.484331967083349468e+00,-2.934188913786545116e-01,1.640846640057805339e-01,2.183892594636095641e+00,-9.086200012803509196e-01,-2.031596029486241184e-01,1.512826984432361854e+00,-2.125203325108017349e+00,1.286821147143403454e+00,2.411642992740736791e-02,-7.345949892581919993e-01,-6.756711115428160053e-02,1.573426927964921340e+00,-2.125203325108017349e+00,1.286821147143403454e+00,2.411642992740737138e-02,-1.029273072921204069e+00,3.563335667945856655e-01,1.137074782054666278e+00,1.725803743566505677e+00,1.771880764598815772e-01,7.440353614036052110e-02,-1.073165914836272439e+00,3.915955721582178306e-01,8.247299946291966055e-01,1.558708579144118200e+00,-5.645570189283588558e-01,4.551420195683375351e-03,-1.071882308437820175e+00,4.166907378059040434e-01,8.103548854807036683e-01,2.081930496437843114e+00,-6.118888655728374482e-02,-1.601189416422153622e+00,-9.489001150146832986e-01,4.096685161346507176e-01,6.175636763966411147e-01,2.081930496437843114e+00,-6.118888655728374482e-02,-1.601189416422153622e+00
|
||||
9.499999999999999556e-01,-9.675001300000000137e-01,-1.185058300000000064e-01,9.292915400000000270e-01,9.956788939299224817e-01,3.138035404308820442e-01,1.191943738303622019e-01,-9.599515691215740887e-01,-1.289925253010940631e-01,9.089202668594255075e-01,9.956788939299224817e-01,3.138035404308820442e-01,1.191943738303622019e-01,-1.037830746570421958e+00,-2.565263575900597059e-01,9.436796942594267712e-01,9.032716994849889769e-01,-5.462093169347839172e-01,2.178851153273299035e-01,-8.030216112930671502e-01,-4.599896751903225223e-01,6.860140664370129038e-01,9.837176893864321148e-01,-3.013280733913159537e-01,2.421484995971054724e-02,-8.357285324738858989e-01,-4.425612486554475478e-01,7.010700279554831216e-01,1.030426371020993326e+00,1.031328104802969664e-03,-2.350015835251714064e-02,-8.414808660215141733e-01,-6.706060414363149702e-01,3.208325399748228612e-01,1.030824840760271810e+00,4.590958213657573422e-03,-2.485741965403675049e-02,-8.932527140028950763e-01,-6.989265334407893659e-01,2.877634635150392306e-01,1.284401251972529856e+00,1.139447347779109915e-01,1.312906522069154647e-01,-7.094219424612048241e-01,-6.763370501624235143e-01,2.648735279619185978e-01,1.284401251972529856e+00,1.139447347779109776e-01,1.312906522069154092e-01,-1.091630704704891874e+00,-9.235402917982538096e-02,8.392317577234345016e-01,1.706294538535890748e+00,-3.680553227134579219e-01,-1.451662626946616519e-01,-9.287745347336238133e-01,-6.090238473992930224e-02,4.697620335343710707e-01,1.699373374948210280e+00,1.849093545183962684e-01,-7.238598821145046658e-02,-9.457756695592406393e-01,-6.563350412948674995e-02,5.034257556280326007e-01,1.599373643257403499e+00,4.949570825163161492e-01,-2.062746006292005274e-01,-1.153254749494589948e+00,-9.019323578603286040e-03,1.057098386542719148e-01,1.655945469816100912e+00,1.053802933614466919e-01,-1.578185941827130456e-01,-1.205821825194221875e+00,1.145617049564807977e-02,6.838163184641438130e-02,1.742990954439230133e+00,8.498697759030805765e-02,-9.725270701176773336e-02,-1.020781294932993521e+00,-5.121358270909030785e-03,5.068490416415358940e-02,1.742990954439230133e+00,8.498697759030804377e-02,-9.725270701176767785e-02,-1.038836794709426803e+00,-9.954474575719746143e-02,9.958394791423703651e-01,9.712848016523617511e-01,3.098038480834910402e-01,1.098007099309429579e-01,-1.024283878203215981e+00,-7.964957318220498850e-02,1.018291154720609715e+00,9.394454130802353253e-01,3.063959925435826848e-01,9.917379686391863958e-02,-1.017622903505899679e+00,-5.925013233897526155e-02,1.043626910717930123e+00,8.841180012261592447e-01,3.021794588453430297e-01,8.906716617567606020e-02,-1.017970492424859374e+00,-3.679515583768269010e-02,1.071411320205353901e+00,8.295018972777591371e-01,2.979953451082546501e-01,8.120860215509084767e-02,-1.024233435438828721e+00,-1.766344327480462092e-02,1.094947158697758827e+00,7.836207945211590697e-01,2.936139911485130538e-01,7.426570140981647583e-02,-1.034461357681234928e+00,-8.837767286059947103e-02,1.033129591282647253e+00,7.486149341355070597e-01,2.889971063142606766e-01,6.837215470056270950e-02,-1.030089171638261858e+00,-6.569872522005062998e-02,1.053011715292101913e+00,7.486149341474616081e-01,2.889971062769075005e-01,6.837215474250959990e-02,-9.406362432119774741e-01,-2.555574372624738744e-02,1.028737492213996019e+00,7.387399949252589915e-01,2.845681686073851524e-01,7.388123647131569771e-02,-8.693371315258223708e-01,1.428592504285373377e-01,1.484308762469512155e+00,7.486149341355070597e-01,2.889971063142606766e-01,6.837215470056270950e-02,-1.008356861834269091e+00,3.756610709747278953e-01,1.170812027568406855e+00,7.486149341355070597e-01,2.889971063142606766e-01,6.837215470056270950e-02,-8.811284705314480492e-01,1.076530244407457593e-01,1.472011867767272442e+00,-4.076426886455845194e-02,-6.844575107286344773e-01,-9.728101467472208275e-02,-9.021513736730684130e-01,-2.088382017958239079e-01,1.482993583675025207e+00,-2.693233712857794893e-01,1.287075379202100023e-01,2.219953950872274095e+00,-8.960805173700855386e-01,-2.078759501571846580e-01,1.511282760454042862e+00,-2.058784407762777935e+00,1.325807848794592791e+00,1.207853551556788557e-01,-7.242139012381446639e-01,-6.749711443983100190e-02,1.566942714985619434e+00,-2.058784407762777935e+00,1.325807848794592791e+00,1.207853551556788557e-01,-1.026143284190271787e+00,3.560956110230289462e-01,1.141992527228890886e+00,1.729759211665156560e+00,1.589433723971922230e-01,8.721337159774784908e-02,-1.064884772348809294e+00,3.925313271199757370e-01,8.291015038465117115e-01,1.563564518983587615e+00,-5.885037952043945531e-01,1.322286888179941867e-02,-1.063543581655677972e+00,4.177026334197731505e-01,8.148654477217107672e-01,2.105764510699785319e+00,-5.629823136171472481e-02,-1.591270071799436137e+00,-9.359202274847293612e-01,4.129182556671180948e-01,6.250450826495264067e-01,2.105764510699785319e+00,-5.629823136171472481e-02,-1.591270071799436137e+00
|
||||
9.666666999999999899e-01,-9.662872099999999520e-01,-1.180505800000000022e-01,9.295788099999999776e-01,1.005653305911820672e+00,3.298012120504845157e-01,1.302055494585324658e-01,-9.590061655407151608e-01,-1.283275310930572233e-01,9.090042872387300577e-01,1.005653305911820672e+00,3.298012120504845157e-01,1.302055494585324658e-01,-1.035284180034119039e+00,-2.567254884753608080e-01,9.441310789594570263e-01,9.580094802941435672e-01,-5.524924503756745153e-01,2.081667485995417621e-01,-7.977211228110898666e-01,-4.433411287040905924e-01,6.765327061944115261e-01,1.032534456291000602e+00,-3.011181051529483454e-01,2.995000608549485202e-02,-8.307787617989257356e-01,-4.273056349082186012e-01,6.924004388314541902e-01,1.076857886460742542e+00,2.710981182658833699e-03,-3.421279304387680586e-03,-8.325563928613342046e-01,-6.375232556603829259e-01,3.019859717907720231e-01,1.074416023414434873e+00,-1.873326468838898071e-02,3.667660747937058745e-03,-8.826961807308448815e-01,-6.658264873589799793e-01,2.664772816360827523e-01,1.321598841560700732e+00,8.328802567085813457e-02,1.624505477773111606e-01,-6.990672355878077004e-01,-6.373592280546148681e-01,2.492142539938586865e-01,1.321598841560700732e+00,8.328802567085813457e-02,1.624505477773111051e-01,-1.092137757733416148e+00,-9.222295061699500862e-02,8.418425356201262311e-01,1.705073148739603139e+00,-3.617549654114796676e-01,-1.347009706582336930e-01,-9.315617581041121253e-01,-5.931878828702412398e-02,4.716370559646151928e-01,1.698408648105464769e+00,1.800482416232069283e-01,-6.395366498804104516e-02,-9.488114894612127426e-01,-6.413784296415545039e-02,5.052339935389351666e-01,1.600045157104632576e+00,4.894336774955289626e-01,-1.966650253808299165e-01,-1.154604069053501103e+00,-9.653077875129034702e-03,1.063461531345281097e-01,1.654969860317705210e+00,1.110847789558489229e-01,-1.495260829846626061e-01,-1.207556318190412536e+00,1.037617223924261131e-02,6.932147514964721868e-02,1.733683532777289038e+00,9.301212483438137113e-02,-9.488839380501412624e-02,-1.022627349567393873e+00,-5.767002756877460251e-03,5.012092997264963601e-02,1.733683532777289038e+00,9.301212483438135725e-02,-9.488839380501407073e-02,-1.036622541830027888e+00,-1.001434115611326559e-01,9.974709676213803222e-01,9.807172675846211884e-01,3.251058542670535734e-01,1.193333546237385495e-01,-1.021836952959308764e+00,-8.031064710199666001e-02,1.019825940210868476e+00,9.483261463438502625e-01,3.209670161016032197e-01,1.071407826255190293e-01,-1.014892252836277375e+00,-6.005158566499708278e-02,1.045198105940709166e+00,8.925721518927149933e-01,3.159218648965841370e-01,9.553457751468590053e-02,-1.014924043559656486e+00,-3.778731148426898306e-02,1.073137620008012716e+00,8.376735017351371049e-01,3.109760708081591440e-01,8.649912844715636207e-02,-1.020919866532631781e+00,-1.883006598257564931e-02,1.096883194833929487e+00,7.915430521097374106e-01,3.058302184889938324e-01,7.851082861771835342e-02,-1.031809204089378929e+00,-8.915625841389764050e-02,1.034736124198106566e+00,7.563115982260134595e-01,3.004557905242618565e-01,7.169872751509777375e-02,-1.027223609690891326e+00,-6.660286352389999109e-02,1.054712766432297055e+00,7.563115982383816771e-01,3.004557904866003160e-01,7.169872755688860844e-02,-9.381873944244277785e-01,-2.620393245450888808e-02,1.029773834130080612e+00,7.467832009230928048e-01,2.952403494137875173e-01,7.795679424237575428e-02,-8.622440334244566573e-01,1.394578609405706660e-01,1.485709877236380150e+00,7.563115982260134595e-01,3.004557905242618565e-01,7.169872751509777375e-02,-1.001437747012520196e+00,3.750514491659029392e-01,1.175119451202101706e+00,7.563115982260134595e-01,3.004557905242618565e-01,7.169872751509777375e-02,-8.741444356854829456e-01,1.043194870889322112e-01,1.473324290764385536e+00,-2.967604020154260280e-02,-6.516241556629422949e-01,-9.210388298114066674e-02,-8.910523915194286104e-01,-2.125111035563946038e-01,1.481182705767333907e+00,-2.484440961876877019e-01,1.021440187358851059e-01,2.241995119688906524e+00,-8.840783480012598394e-01,-2.116536738843972920e-01,1.509266264634869126e+00,-2.000161464023505253e+00,1.356771302222707254e+00,1.975150267888358124e-01,-7.132505471208367975e-01,-6.835174428329940377e-02,1.560499078489090419e+00,-2.000161464023505253e+00,1.356771302222707254e+00,1.975150267888357847e-01,-1.019546680686131745e+00,3.556547517157226945e-01,1.146386851382421135e+00,1.739787750441122993e+00,1.534322026793269178e-01,7.718527842762672175e-02,-1.056381107420928389e+00,3.957580898060302221e-01,8.337141725205781118e-01,1.571936618411599929e+00,-6.120772521739674676e-01,-5.874870348684974909e-03,-1.054345001923115532e+00,4.210039676953364340e-01,8.196942341718527203e-01,2.129137235810092399e+00,-4.863992048539610841e-02,-1.606864060819753304e+00,-9.223597195821713335e-01,4.156718622690813714e-01,6.328953163656584335e-01,2.129137235810092399e+00,-4.863992048539610147e-02,-1.606864060819753304e+00
|
||||
9.833332999999999657e-01,-9.641977200000000359e-01,-1.172240100000000035e-01,9.296001900000000484e-01,1.017949764486195674e+00,3.461366035478368741e-01,1.416220101116523189e-01,-9.572094540142477292e-01,-1.272566211046046170e-01,9.088047296305510336e-01,1.017949764486195674e+00,3.461366035478368741e-01,1.416220101116523189e-01,-1.031916867663178028e+00,-2.565353152890648136e-01,9.440763049773309712e-01,1.018736493935268772e+00,-5.569711773035528335e-01,1.914569104551827050e-01,-7.930079640737265345e-01,-4.252437643536346457e-01,6.664179648500930808e-01,1.084889735197942295e+00,-3.069777340143912681e-01,3.494270865724038999e-02,-8.266025545740836034e-01,-4.107382600846319898e-01,6.828365381283099111e-01,1.126338549332847494e+00,-3.643312774187710146e-03,1.613190957851398308e-02,-8.220687029976400106e-01,-6.013449459769761862e-01,2.825034273260997320e-01,1.122173409634172003e+00,-3.967116663349188471e-02,2.612964382477453093e-02,-8.707982561686369305e-01,-6.290647051148152702e-01,2.446486531254668806e-01,1.361113870604298670e+00,5.367496952921287090e-02,1.863171222647588832e-01,-6.874950031685712615e-01,-5.960754299946887658e-01,2.328329163026859328e-01,1.361113870604298670e+00,5.367496952921285702e-02,1.863171222647588277e-01,-1.091773197565480302e+00,-9.152361680015208556e-02,8.443530905788463325e-01,1.701901523250059389e+00,-3.538248578886862283e-01,-1.231065535954605078e-01,-9.341362179467703752e-01,-5.774859159288594362e-02,4.731254123362628738e-01,1.695662318222563192e+00,1.753596981022560453e-01,-5.555497920180448024e-02,-9.516447943436540102e-01,-6.260406059682549484e-02,5.066682066307214294e-01,1.598875741257163252e+00,4.837460508616442389e-01,-1.875177339399810017e-01,-1.155800278713636775e+00,-1.094551283406501596e-02,1.065649483220106886e-01,1.652335204428554638e+00,1.168234829696665894e-01,-1.410485945135349084e-01,-1.209149394210066175e+00,8.552346299261718438e-03,6.982745121549430167e-02,1.725079880199898996e+00,1.004809639313012370e-01,-9.066089677972982708e-02,-1.024304511555308661e+00,-6.811470529426101941e-03,4.922869011619174229e-02,1.725079880199898996e+00,1.004809639313012370e-01,-9.066089677972977157e-02,-1.033442258951867254e+00,-1.004656459807482111e-01,9.988924818683317941e-01,9.922866380786528051e-01,3.406565271726780808e-01,1.289328545021554140e-01,-1.018397116914461442e+00,-8.074369223306571142e-02,1.021172628194001231e+00,9.591440886345268257e-01,3.357007099367080860e-01,1.148125428888630006e-01,-1.011135438216800964e+00,-6.067304349083882387e-02,1.046605671182595509e+00,9.027494802158635423e-01,3.297134184534268320e-01,1.013601739976731919e-01,-1.010812297061967957e+00,-3.864155696667033457e-02,1.074727105860737941e+00,8.473922615713089801e-01,3.238898800600151784e-01,9.087613238916232572e-02,-1.016507076985990521e+00,-1.988301418396884457e-02,1.098703370067591667e+00,8.008630276838938356e-01,3.178556670546253682e-01,8.160144336038568924e-02,-1.028176821153612641e+00,-8.972785628890715681e-02,1.036155335413936784e+00,7.652847773591890945e-01,3.115934458838553467e-01,7.366126995304760061e-02,-1.023339562279798054e+00,-6.733273040203452409e-02,1.056250329693689149e+00,7.652847773719370084e-01,3.115934458458371470e-01,7.366126999462903335e-02,-9.346652607139871449e-01,-2.677819365999549450e-02,1.030724289696204776e+00,7.561621414402929231e-01,3.054202121486189747e-01,8.081748411390723974e-02,-8.534675786984401435e-01,1.356079565459916147e-01,1.487132135797279986e+00,7.652847773591890945e-01,3.115934458838553467e-01,7.366126995304760061e-02,-9.936440532739706510e-01,3.741146035721034102e-01,1.179768209396105494e+00,7.652847773591890945e-01,3.115934458838553467e-01,7.366126995304760061e-02,-8.655400191267290655e-01,1.005746466484949836e-01,1.474616105160597046e+00,-1.616822510449502856e-02,-6.207204234595810055e-01,-9.182879741459658296e-02,-8.796405292422129207e-01,-2.164655784920192505e-01,1.478607105391488652e+00,-2.312918136224883792e-01,7.486884463704771009e-02,2.259300724073793010e+00,-8.718271454301750323e-01,-2.157843120830768846e-01,1.506473674193332002e+00,-1.911580788676287002e+00,1.383715874194129114e+00,3.001196863372997958e-01,-7.017757447155915651e-01,-7.030838010002588012e-02,1.554030546726454576e+00,-1.911580788676287002e+00,1.383715874194129114e+00,3.001196863372997958e-01,-1.012103910414469343e+00,3.549531611719691226e-01,1.151101147414351544e+00,1.750338909540166688e+00,1.496825646769062435e-01,6.975735878705634219e-02,-1.047630686544721801e+00,3.987196422630092663e-01,8.387686320782015148e-01,1.582508264656106389e+00,-6.271834257857391570e-01,-2.298455341965436119e-02,-1.045105491966295208e+00,4.240570625470664323e-01,8.249955687663533821e-01,2.144015762943828118e+00,-3.962199547331426291e-02,-1.618490623001555884e+00,-9.103485056844218271e-01,4.188203489391952861e-01,6.401834661451318853e-01,2.144015762943828118e+00,-3.962199547331426291e-02,-1.618490623001555884e+00
|
||||
1.000000000000000000e+00,-9.615263600000000244e-01,-1.160782100000000011e-01,9.292276499999999606e-01,1.031594345460064455e+00,3.625416859376496825e-01,1.545512244138814995e-01,-9.548357191538041633e-01,-1.258407377771231239e-01,9.082069769491840638e-01,1.031594345460064455e+00,3.625416859376496825e-01,1.545512244138814995e-01,-1.027840761370119482e+00,-2.560857897170103481e-01,9.434880300480530391e-01,1.084453652878668350e+00,-5.603048354811823728e-01,1.698118354100403848e-01,-7.884127246568027880e-01,-4.056748080952797819e-01,6.561254317540567982e-01,1.140944034009873320e+00,-3.173448550150659853e-01,3.799044009024351437e-02,-8.226499302773546685e-01,-3.927934982500166372e-01,6.728820135992874540e-01,1.178918923521302009e+00,-1.602900583797770701e-02,3.410323166633490166e-02,-8.103109913858644875e-01,-5.618224895886372305e-01,2.631320718108407508e-01,1.174937512429654607e+00,-5.048893214108891164e-02,4.173962043951751771e-02,-8.582025643883821608e-01,-5.883528872288226186e-01,2.234020634407951622e-01,1.405854062462096543e+00,3.297138606516710618e-02,2.025309986586187327e-01,-6.752764800293189484e-01,-5.522746183740344650e-01,2.153775604951150835e-01,1.405854062462096543e+00,3.297138606516709924e-02,2.025309986586186772e-01,-1.090832393890696084e+00,-9.057093578813697754e-02,8.465692613867066285e-01,1.697568085920168723e+00,-3.451672090058371944e-01,-1.124333356371306492e-01,-9.363695720655174082e-01,-5.657235665646096617e-02,4.742140932470020886e-01,1.691812903269196200e+00,1.702856710136085028e-01,-4.872930832926221367e-02,-9.541726045577322290e-01,-6.140537557377527544e-02,5.077008798050682836e-01,1.596675515031849013e+00,4.774457178606960062e-01,-1.801263541380794253e-01,-1.156410539668809800e+00,-1.268571851019476698e-02,1.062573628787625291e-01,1.648559173340239603e+00,1.235267443595300663e-01,-1.341656257787053330e-01,-1.210162519562137717e+00,6.317129406493506710e-03,6.984919405240977430e-02,1.721324062550279921e+00,1.074467079694744615e-01,-8.390780785785049989e-02,-1.025366732895897304e+00,-7.792702937296188889e-03,4.795361615050713899e-02,1.721324062550279921e+00,1.074467079694744476e-01,-8.390780785785044438e-02,-1.029635049986988182e+00,-1.005991912289940227e-01,9.999289723197957169e-01,1.004979525565023124e+00,3.558999129546362994e-01,1.392871870058142725e-01,-1.014336904672576978e+00,-8.100160778363728331e-02,1.022146860131395441e+00,9.708968073075373573e-01,3.496888202383961475e-01,1.224672284592733529e-01,-1.006761289623287814e+00,-6.114290619803103288e-02,1.047654610338609293e+00,9.138048660329313178e-01,3.422794898362480076e-01,1.064301288569331205e-01,-1.006084504144824532e+00,-3.937011568040829634e-02,1.075970544370341564e+00,8.580057044319174819e-01,3.351522643615595931e-01,9.391772769700376666e-02,-1.011479608479161740e+00,-2.082386079074362989e-02,1.100180024218429864e+00,8.110910778791901032e-01,3.278112437848624827e-01,8.284217863239191904e-02,-1.023968636177839953e+00,-9.008950471779106350e-02,1.037147199104455852e+00,7.751609677079180916e-01,3.202605938184374668e-01,7.331472599457493355e-02,-1.018866985572875139e+00,-6.788734298943958911e-02,1.057390388272604342e+00,7.751609677209204685e-01,3.202605937800302449e-01,7.331472603587671499e-02,-9.304299531083868313e-01,-2.743910630518822669e-02,1.031645698620736962e+00,7.666374429924768252e-01,3.127339764606310024e-01,8.167848387885093264e-02,-8.443125885850528700e-01,1.310489780146432692e-01,1.488637203509433071e+00,7.751609677079180916e-01,3.202605938184374668e-01,7.331472599457493355e-02,-9.875572404435128959e-01,3.727696364410372221e-01,1.185497207965223510e+00,7.751609677079180916e-01,3.202605938184374668e-01,7.331472599457493355e-02,-8.566221179933298790e-01,9.616734938222058771e-02,1.475929917691307880e+00,-2.821311302133254137e-03,-5.863799797942086389e-01,-9.442718494890954550e-02,-8.690787838963152101e-01,-2.209668267811350506e-01,1.475878836587603882e+00,-2.123342135302490608e-01,4.486869315668298025e-02,2.273730211995355965e+00,-8.603370658656938064e-01,-2.204777457231752447e-01,1.503472348739809172e+00,-1.781661935503149552e+00,1.411285175160057470e+00,4.414051026923366261e-01,-6.906959400673415850e-01,-7.323945030200379458e-02,1.546890715772626157e+00,-1.781661935503149552e+00,1.411285175160057470e+00,4.414051026923366261e-01,-1.006349514479980556e+00,3.539219142853300415e-01,1.156838152690379262e+00,1.757148842819753032e+00,1.394629904358066497e-01,6.726671348101849468e-02,-1.038679775321317722e+00,4.001245636974108955e-01,8.445092775495375292e-01,1.594987542522013024e+00,-6.218856856225707386e-01,-3.124839575975886519e-02,-1.036198551432824022e+00,4.255996518947690044e-01,8.309844057699590225e-01,2.138503753327520851e+00,-2.961163608516171122e-02,-1.619266724182560235e+00,-9.023755715086712037e-01,4.221336327969615332e-01,6.454533341073012132e-01,2.138503753327520851e+00,-2.961163608516171122e-02,-1.619266724182560235e+00
|
||||
1.016666700000000034e+00,-9.584043500000000160e-01,-1.148059000000000024e-01,9.285710900000000434e-01,1.046231018311334582e+00,3.775379002617279545e-01,1.675629890101273389e-01,-9.519984666209270197e-01,-1.242840855452083115e-01,9.073327055052814449e-01,1.046231018311334582e+00,3.775379002617279545e-01,1.675629890101273389e-01,-1.023397011510015941e+00,-2.554755792574772699e-01,9.423941118783801807e-01,1.153228428397394145e+00,-5.623910979623435447e-01,1.471064321916792372e-01,-7.837386131401212763e-01,-3.845290328383567102e-01,6.461709695632178452e-01,1.199540103800959212e+00,-3.311272184090672810e-01,4.071191928781755370e-02,-8.187036631999927705e-01,-3.733853540055018794e-01,6.630584930529395127e-01,1.233389457343504247e+00,-3.318416607305505611e-02,5.175899075742585592e-02,-7.972457883673426116e-01,-5.192596876873846190e-01,2.448739614139897047e-01,1.231727427571072786e+00,-4.780920796010472429e-02,5.415627636610177015e-02,-8.449633280997941309e-01,-5.442366907684590416e-01,2.039456820993686970e-01,1.455382549821952587e+00,2.479204099772993469e-02,2.143593921220163512e-01,-6.624405432928366366e-01,-5.058926125019206355e-01,1.973767279797716823e-01,1.455382549821952587e+00,2.479204099772992775e-02,2.143593921220162957e-01,-1.089290121737098493e+00,-8.940188943631807716e-02,8.484048149806897587e-01,1.693074071533777092e+00,-3.363683474930161399e-01,-9.921594268876007816e-02,-9.381122092730308504e-01,-5.492195449624677484e-02,4.749545545794609525e-01,1.687775148488207755e+00,1.644380820559103729e-01,-3.944201888118317734e-02,-9.562388226746455500e-01,-5.977307196995011729e-02,5.083701339574409062e-01,1.594491848875384532e+00,4.702751473483617883e-01,-1.701380259340358192e-01,-1.156289083767341408e+00,-1.453501764828216830e-02,1.054258497909070780e-01,1.644546516544225456e+00,1.309611675921610319e-01,-1.249406307686357076e-01,-1.210508631314593631e+00,3.834138180592853995e-03,6.938763248494853042e-02,1.713969697320448349e+00,1.159758945261076118e-01,-7.712891095271293129e-02,-1.025816639101729599e+00,-9.021597187843517773e-03,4.590179525050455678e-02,1.713969697320448349e+00,1.159758945261075980e-01,-7.712891095271287578e-02,-1.025415028020993269e+00,-1.006378987188840113e-01,1.000584334771288608e+00,1.019749576241272271e+00,3.718173472503715771e-01,1.531723971035771903e-01,-1.009890510291396648e+00,-8.115990287078264642e-02,1.022750746835924485e+00,9.857650135007607339e-01,3.666906566076164053e-01,1.372158844152371326e-01,-1.002026442755421520e+00,-6.152365001885674173e-02,1.048343117428597093e+00,9.287763768626456917e-01,3.603991103117100137e-01,1.219810742693266808e-01,-1.001016855700330943e+00,-4.007977482078944886e-02,1.076898803908107327e+00,8.730534798350142456e-01,3.542127284197873482e-01,1.100784507652938088e-01,-1.006117255012492606e+00,-2.188883801848790639e-02,1.101439562040986253e+00,8.261843365466018385e-01,3.477616071567059541e-01,9.952824442238807079e-02,-1.019152461547601751e+00,-9.050868982079052216e-02,1.037813352631802299e+00,7.902800803622164194e-01,3.410263066574366619e-01,9.046634447630924614e-02,-1.013877005740918102e+00,-6.849818403670671074e-02,1.058220624207517613e+00,7.902800803759211234e-01,3.410263066184411329e-01,9.046634451728557957e-02,-9.263761639369240131e-01,-2.669276519605424947e-02,1.030972171634549017e+00,7.816611033030054223e-01,3.340533448181073339e-01,9.821796844653156444e-02,-8.331658293259125436e-01,1.272208617074726267e-01,1.488361664497347636e+00,7.902800803622164194e-01,3.410263066574366619e-01,9.046634447630924614e-02,-9.925708227125478178e-01,3.694481451163703634e-01,1.192904261649607056e+00,7.902800803622164194e-01,3.410263066574366619e-01,9.046634447630924614e-02,-8.453281025363049705e-01,9.235003574232139578e-02,1.475484077377436032e+00,1.071783242626685867e-02,-5.639511425166904290e-01,-1.070591216611475882e-01,-8.594983030470989549e-01,-2.246860932965481228e-01,1.471415278163768159e+00,-2.051303989082389201e-01,2.063315930823056768e-02,2.267749810700426583e+00,-8.501740991838615535e-01,-2.246354092838546979e-01,1.498821762811560765e+00,-1.634877760013510706e+00,1.422944093750822203e+00,5.802515519703553837e-01,-6.787223666018185053e-01,-7.904990456906446639e-02,1.540673238389086208e+00,-1.634877760013510706e+00,1.422944093750822203e+00,5.802515519703553837e-01,-1.011757844016938135e+00,3.507266157238625448e-01,1.164424616394840406e+00,1.762686559260725039e+00,9.734020369601895095e-02,3.365427176583373620e-02,-1.029378414021945298e+00,4.001674744130528927e-01,8.514160321191338587e-01,1.620990168341848392e+00,-5.886048575320199649e-01,-6.673780645833006508e-02,-1.026794721105397601e+00,4.258953021644473202e-01,8.383982689698979973e-01,2.105017898793061004e+00,-8.542529690728819722e-03,-1.639320101068839852e+00,-8.990692002267728355e-01,4.240381473843500837e-01,6.485954131197618766e-01,2.105017898793061004e+00,-8.542529690728817987e-03,-1.639320101068839852e+00
|
||||
1.033333300000000010e+00,-9.549897499999999706e-01,-1.132864199999999988e-01,9.276020099999999768e-01,1.061776068563917708e+00,3.916065155686376253e-01,1.820237965420804516e-01,-9.488526045518170804e-01,-1.224598188966863482e-01,9.061514967783703689e-01,1.061776068563917708e+00,3.916065155686376253e-01,1.820237965420804516e-01,-1.018544332017996989e+00,-2.546694851378017432e-01,9.408203549480258499e-01,1.222670797224778783e+00,-5.644042513421845264e-01,1.262249093779366227e-01,-7.784164434680167499e-01,-3.620170923319329659e-01,6.371784872236052610e-01,1.259331665040576809e+00,-3.466065963768030223e-01,4.342061120271268476e-02,-8.141145881792999361e-01,-3.526867818921168851e-01,6.540374997498243914e-01,1.288534744185316328e+00,-5.290672040393026160e-02,6.930537450795629106e-02,-7.830951604947034017e-01,-4.743347929705189481e-01,2.287639164786037793e-01,1.290988788849920743e+00,-3.071891928926204565e-02,6.696193948615981884e-02,-8.312965365770782489e-01,-4.976478995371443892e-01,1.874230803155028657e-01,1.508198057100391010e+00,3.046225876920818226e-02,2.250055309107261703e-01,-6.492569019020020260e-01,-4.572704476314947697e-01,1.797276755181937413e-01,1.508198057100391010e+00,3.046225876920817879e-02,2.250055309107261148e-01,-1.087385341707519881e+00,-8.809120607765240363e-02,8.498865730635069005e-01,1.688982248326009517e+00,-3.274633539055362141e-01,-8.479357049199366669e-02,-9.395075091840153769e-01,-5.287500901638930717e-02,4.754278740601697861e-01,1.684074997560827125e+00,1.570542902604620816e-01,-2.882840518414624478e-02,-9.580276115935658643e-01,-5.778146128150057903e-02,5.087391118418367331e-01,1.593079021402092899e+00,4.614966430769249506e-01,-1.583762061721244452e-01,-1.155202556114977908e+00,-1.608815457897420920e-02,1.039992026486199483e-01,1.640366620388857388e+00,1.430957823995031852e-01,-1.149733224900774259e-01,-1.210060203238666920e+00,1.611275294533302815e-03,6.859712555007502210e-02,1.708805082984090395e+00,1.286681721366256526e-01,-6.810438358255142821e-02,-1.025573585503504859e+00,-9.565673356970151586e-03,4.275626322885046904e-02,1.708805082984090395e+00,1.286681721366256526e-01,-6.810438358255137270e-02,-1.020928157523043112e+00,-1.005450531481985044e-01,1.000860829507943084e+00,1.034646453145620093e+00,3.850942462178929548e-01,1.653978639190168409e-01,-1.005194697850904095e+00,-8.121720982853762594e-02,1.023011839607273599e+00,1.000097131856558574e+00,3.791339722356484310e-01,1.470856479416684792e-01,-9.970559038195370150e-01,-6.183939843971780759e-02,1.048715077894037506e+00,9.430337627752235496e-01,3.718652684111931062e-01,1.295788662809553293e-01,-9.957229304591054264e-01,-4.073464676932674056e-02,1.077509170152838314e+00,8.874720637991163619e-01,3.647587579796885415e-01,1.158791111918413413e-01,-1.000539693428898369e+00,-2.284920512351188218e-02,1.102330197241699894e+00,8.407163077673758256e-01,3.573696038637926842e-01,1.037215870156932007e-01,-1.014354728549641038e+00,-9.061859028576897679e-02,1.037961161519622255e+00,8.048349341565360637e-01,3.496904261431817984e-01,9.323593395519021165e-02,-1.008829247770469451e+00,-6.888329705565443550e-02,1.058595977301799662e+00,8.048349341704102988e-01,3.496904261036283823e-01,9.323593399568601281e-02,-9.215097729940062710e-01,-2.715233783570639159e-02,1.031348436116138245e+00,7.968196476595139632e-01,3.416590228808436547e-01,1.018076541499024074e-01,-8.225900888731999538e-01,1.215051707499034545e-01,1.489363026551114633e+00,8.048349341565360637e-01,3.496904261431817984e-01,9.323593395519021165e-02,-9.820304688985320718e-01,3.684828736220359668e-01,1.198623524263283668e+00,8.048349341565360637e-01,3.496904261431817984e-01,9.323593395519021165e-02,-8.349562867387634313e-01,8.682829020513110896e-02,1.476160043963822721e+00,2.845555558096182769e-02,-5.383781948159990227e-01,-1.211240392869928906e-01,-8.507993662600169538e-01,-2.300155086339033539e-01,1.466765322358542400e+00,-1.989452589592119180e-01,-8.829387719746683433e-03,2.260661171936293901e+00,-8.408330785806282792e-01,-2.305440684593303979e-01,1.493939804537687044e+00,-1.430641509924324595e+00,1.429624478706286617e+00,7.752494179673392605e-01,-6.673799443977002088e-01,-8.695747558785560383e-02,1.534427856925291378e+00,-1.430641509924324595e+00,1.429624478706286617e+00,7.752494179673392605e-01,-1.001539166783498969e+00,3.501691675351145117e-01,1.170097281619676410e+00,1.762336629652489384e+00,1.103436634638099434e-01,2.615269567879028451e-02,-1.022854759630892785e+00,3.995248490259892815e-01,8.573051477165946066e-01,1.622544583251846362e+00,-5.568016463294994667e-01,-7.148769883245727208e-02,-1.020582135428294235e+00,4.252887263418819175e-01,8.443006657127837267e-01,2.073212108012251864e+00,-7.275380496458164203e-03,-1.642975970927840645e+00,-8.989313433119422436e-01,4.236155626330073698e-01,6.505465248612181117e-01,2.073212108012251864e+00,-7.275380496458164203e-03,-1.642975970927840645e+00
|
||||
1.050000000000000044e+00,-9.513654299999999564e-01,-1.116097000000000061e-01,9.263610300000000297e-01,1.078799772224188658e+00,4.044412181982030563e-01,1.976461015866762538e-01,-9.454825454038050525e-01,-1.204488591465038838e-01,9.046999761601746126e-01,1.078799772224188658e+00,4.044412181982030563e-01,1.976461015866762538e-01,-1.013441867334313962e+00,-2.537256926290715198e-01,9.387158352732489774e-01,1.290764517072856776e+00,-5.659219405011702841e-01,1.085263367487571406e-01,-7.727681812581808085e-01,-3.387470012552052934e-01,6.292850400473276595e-01,1.318501587252436824e+00,-3.637197784853015703e-01,4.698096645322494269e-02,-8.092062390699519270e-01,-3.312834654846729676e-01,6.459248052629908976e-01,1.342549604029170007e+00,-7.522471382228430870e-02,8.697933902135539241e-02,-7.681530137251002532e-01,-4.284162249127810296e-01,2.152301061358470879e-01,1.350387022335971299e+00,-2.421380486416146397e-03,8.344866201294268149e-02,-8.173064660482004529e-01,-4.502269937818585976e-01,1.741915046154965674e-01,1.563048918891659200e+00,4.769044923479016235e-02,2.388093210747566919e-01,-6.360268095437435765e-01,-4.072702304505111393e-01,1.632193083110452803e-01,1.563048918891659200e+00,4.769044923479016235e-02,2.388093210747566364e-01,-1.085178477269004516e+00,-8.662164628942575773e-02,8.510433946232316416e-01,1.685451533363367727e+00,-3.183096350822762766e-01,-6.872758693481556547e-02,-9.407078573965479418e-01,-5.029247713824816501e-02,4.756378899125394688e-01,1.680889008993136979e+00,1.487482493193205135e-01,-1.632189608304493444e-02,-9.596617820505083385e-01,-5.531217319789091813e-02,5.088191185220711787e-01,1.592490330033360380e+00,4.517568374391472963e-01,-1.443053397273872940e-01,-1.153534144505072412e+00,-1.722855398549996697e-02,1.021327163784562786e-01,1.636482210971282436e+00,1.573148600074166514e-01,-1.034152691707026783e-01,-1.209111763677037210e+00,-2.788754275613938849e-04,6.749494836947035614e-02,1.703831748039110305e+00,1.434604130960658031e-01,-5.759840780980143848e-02,-1.024921228925794736e+00,-9.503318670311835734e-03,3.891623207682857327e-02,1.703831748039110305e+00,1.434604130960658031e-01,-5.759840780980138297e-02,-1.016262359945732996e+00,-1.004178918159305267e-01,1.000793567003746443e+00,1.050824853487565047e+00,3.969379530288002500e-01,1.782116936943554664e-01,-1.000341508785548728e+00,-8.126524981335075948e-02,1.022963283277754432e+00,1.015539971486574267e+00,3.899009377896709427e-01,1.569622369859739186e-01,-9.919499611890119084e-01,-6.217872725615467000e-02,1.048802891030468976e+00,9.583174725815551964e-01,3.813811334000342668e-01,1.366219932204798815e-01,-9.903166732514386839e-01,-4.144826269714246142e-02,1.077852392597148379e+00,9.028902901772245526e-01,3.731065569779350444e-01,1.206797953833284864e-01,-9.948701850997213603e-01,-2.389127326143683158e-02,1.102956007230593727e+00,8.562247597815991762e-01,3.645323243064520491e-01,1.065162211638538414e-01,-1.009450391940220015e+00,-9.069851247161318797e-02,1.037755321125665597e+00,8.203359776655549940e-01,3.556705039757930842e-01,9.424775357476257442e-02,-1.003679302302191045e+00,-6.927686365441232397e-02,1.058649268056458759e+00,8.203359776794579838e-01,3.556705039356547471e-01,9.424775361468869239e-02,-9.163974070554986584e-01,-2.782580007441387560e-02,1.031735115136030778e+00,8.130325190864703400e-01,3.463326430218710561e-01,1.037728496504572301e-01,-8.123116347430536788e-01,1.147531575599249482e-01,1.490438607648121527e+00,8.203359776655549940e-01,3.556705039757930842e-01,9.424775357476257442e-02,-9.713546457596473616e-01,3.667368284664773714e-01,1.204134009270239503e+00,8.203359776655549940e-01,3.556705039757930842e-01,9.424775357476257442e-02,-8.249259097956583853e-01,8.031706445126343685e-02,1.476845844887157977e+00,5.002043938569962489e-02,-5.169707913912641173e-01,-1.388988936774379068e-01,-8.431957882451474040e-01,-2.361410348512989754e-01,1.461042688469582851e+00,-1.989280358598142784e-01,-3.838695611965886600e-02,2.248386927014221826e+00,-8.327347506950053546e-01,-2.374149647893846193e-01,1.488005673155804232e+00,-1.227722710327598055e+00,1.424153119717988192e+00,9.638117333986422341e-01,-6.567816196657484396e-01,-9.689992870618757692e-02,1.528482853294739430e+00,-1.227722710327598055e+00,1.424153119717988192e+00,9.638117333986423452e-01,-9.911509022447581030e-01,3.489064057138417940e-01,1.175499905533523570e+00,1.759509175629338840e+00,1.234560807672583221e-01,1.906387328020645033e-02,-1.016215302842045531e+00,3.974481733621184620e-01,8.628583704781388475e-01,1.622571570887321624e+00,-5.188539998202965631e-01,-7.364562606167165959e-02,-1.014379750175405492e+00,4.232437395819213521e-01,8.498476726832548955e-01,2.035263450388910655e+00,-7.272958327733003436e-03,-1.644843995006098902e+00,-9.001505204508428726e-01,4.218615232115117686e-01,6.516251856872045112e-01,2.035263450388910655e+00,-7.272958327733003436e-03,-1.644843995006098902e+00
|
||||
1.066666700000000079e+00,-9.474733699999999814e-01,-1.098271400000000037e-01,9.247220099999999832e-01,1.097788136753905297e+00,4.163321140802551668e-01,2.145849170648485571e-01,-9.418404068011870800e-01,-1.182943484894875691e-01,9.028469917134349654e-01,1.097788136753905297e+00,4.163321140802551668e-01,2.145849170648485571e-01,-1.008036605980596967e+00,-2.526893741318372855e-01,9.359272388163083489e-01,1.355112610134074691e+00,-5.648943433578395013e-01,9.650935495598618463e-02,-7.674073595356987187e-01,-3.152653818601655056e-01,6.220311022195468276e-01,1.374765842028079943e+00,-3.816001443723787689e-01,5.357544149089335517e-02,-8.045983783259893496e-01,-3.097353376885264575e-01,6.382565507686428496e-01,1.393248197305606340e+00,-9.946430864324802557e-02,1.060382695501533162e-01,-7.532137685511047787e-01,-3.830232196553272628e-01,2.039679688825221104e-01,1.407353440190679761e+00,3.413279238315293507e-02,1.067595638274215358e-01,-8.035861011426514988e-01,-4.037886455847146672e-01,1.638760304915756194e-01,1.618325907939867969e+00,7.416347198223088855e-02,2.600191976481249223e-01,-6.236362790723950500e-01,-3.569768446219990232e-01,1.479166038874386302e-01,1.618325907939867969e+00,7.416347198223088855e-02,2.600191976481248668e-01,-1.082646299960073444e+00,-8.501550209634398114e-02,8.518128728705964825e-01,1.682123806880129635e+00,-3.086152051399752017e-01,-5.140506292175999609e-02,-9.418057738127072476e-01,-4.740820643470020773e-02,4.754658682082740784e-01,1.677894827725912696e+00,1.399441545884714810e-01,-2.467958411029371694e-03,-9.612192746932302079e-01,-5.258305137666478835e-02,5.084988826637134585e-01,1.592297529412207480e+00,4.414298854010301754e-01,-1.286107077901330609e-01,-1.151501913441467462e+00,-1.817307793847693781e-02,9.979464267648580078e-02,1.632170353296706011e+00,1.767337658791019728e-01,-9.113701609580204810e-02,-1.207967803182796285e+00,-2.031425641726786191e-03,6.622399053005520453e-02,1.700946610657622537e+00,1.629393580003253572e-01,-4.477948151606088445e-02,-1.024266096502751022e+00,-8.873075343240614116e-03,3.405473094542842832e-02,1.700946610657622537e+00,1.629393580003253572e-01,-4.477948151606082894e-02,-1.011326947647285701e+00,-1.003338131484922541e-01,1.000284355242567536e+00,1.068644698042860330e+00,4.074629699931928695e-01,1.913024487229979531e-01,-9.952262921118435468e-01,-8.139634867241853089e-02,1.022509358065135654e+00,1.032358070022051821e+00,3.988969538866010134e-01,1.660560359271832098e-01,-9.865881391677132628e-01,-6.265041655282432842e-02,1.048516614749289477e+00,9.748994050395977107e-01,3.886172467988972534e-01,1.418624413503953019e-01,-9.846596701933515439e-01,-4.234403638499325412e-02,1.077846473553915274e+00,9.196348369428778424e-01,3.787145193618441930e-01,1.228714523581888735e-01,-9.889556771161773785e-01,-2.514275234342885218e-02,1.103240054477178544e+00,8.730847201439893013e-01,3.684973242863978649e-01,1.059813611397198985e-01,-1.004368688277510024e+00,-9.080155177878104777e-02,1.037071756334450034e+00,8.371890703993235539e-01,3.580099632615918459e-01,9.128405759315144641e-02,-9.983298557670663431e-01,-6.975855521976234708e-02,1.058272565982489199e+00,8.371890704130712235e-01,3.580099632208284532e-01,9.128405763238452153e-02,-9.108267117804724755e-01,-2.904501387386343447e-02,1.032184350363203107e+00,8.308082413078956563e-01,3.469486059263271471e-01,1.019990501985734849e-01,-8.022754886068094171e-01,1.060896779803058576e-01,1.491635010033021569e+00,8.371890703993235539e-01,3.580099632615918459e-01,9.128405759315144641e-02,-9.604554396502489322e-01,3.635824172854634773e-01,1.209672933789520233e+00,8.371890703993235539e-01,3.580099632615918459e-01,9.128405759315144641e-02,-8.152455674973706490e-01,7.198133910941259539e-02,1.477559289227040162e+00,7.325846163990026860e-02,-4.965878421453138736e-01,-1.588219165166465663e-01,-8.365786708421504292e-01,-2.438597279425710196e-01,1.454787027796666576e+00,-2.005869929832685417e-01,-6.800820917006074329e-02,2.235997745506983048e+00,-8.256784212841696835e-01,-2.459173969374657542e-01,1.481526685707403423e+00,-1.050354312711197391e+00,1.411745169450472792e+00,1.126648890324560393e+00,-6.472956856390411629e-01,-1.085975397570464462e-01,1.522334016472478346e+00,-1.050354312711197391e+00,1.411745169450472792e+00,1.126648890324560393e+00,-9.805157193888593969e-01,3.463739361240357195e-01,1.180842724007201694e+00,1.756679344224516770e+00,1.346078873657007013e-01,8.432574304129763013e-03,-1.008558439842984988e+00,3.942633175249695143e-01,8.683535725089847057e-01,1.623675052767686422e+00,-4.796535135209982204e-01,-7.940808839410347375e-02,-1.007094654941191880e+00,4.201017419712677614e-01,8.553808355889563897e-01,1.996062062045436791e+00,-6.304167754429346529e-03,-1.649811888044778296e+00,-9.006901691986659575e-01,4.189363157212386835e-01,6.528490874802088673e-01,1.996062062045436791e+00,-6.304167754429345662e-03,-1.649811888044778296e+00
|
||||
1.083333300000000055e+00,-9.431260299999999486e-01,-1.079847899999999972e-01,9.226915900000000059e-01,1.120218495753737109e+00,4.266919728455954575e-01,2.328829276651890878e-01,-9.377398160452188325e-01,-1.160134491984139149e-01,9.005902404993421095e-01,1.120218495753737109e+00,4.266919728455954575e-01,2.328829276651890878e-01,-1.002230997196309703e+00,-2.515760199663289454e-01,9.322436670457101560e-01,1.413486814877383813e+00,-5.582703669964030890e-01,9.198425819567820905e-02,-7.633911582385022321e-01,-2.922243366847209201e-01,6.145230998475943451e-01,1.426050431716634703e+00,-3.996214500517983326e-01,6.480910659709367139e-02,-8.013705947856628597e-01,-2.887007979176390848e-01,6.301183600322600720e-01,1.438683748839781673e+00,-1.255911311766197969e-01,1.268990132614490063e-01,-7.393620769366751055e-01,-3.396735634728855757e-01,1.940280196125525602e-01,1.459797393949934685e+00,7.595172884022387272e-02,1.378463345360502745e-01,-7.910398022660630746e-01,-3.600324561020775138e-01,1.554162788543441698e-01,1.672686808692871452e+00,1.071540222659886910e-01,2.905839486439157349e-01,-6.132449942430915346e-01,-3.078119017333022511e-01,1.332801904122726255e-01,1.672686808692871452e+00,1.071540222659886910e-01,2.905839486439156794e-01,-1.079575221158050935e+00,-8.314570639372544092e-02,8.522095440285515355e-01,1.678227691502011565e+00,-2.989884214899570791e-01,-3.370059749631364870e-02,-9.424159781231820077e-01,-4.454704867967614057e-02,4.749130531444878400e-01,1.674353112656342013e+00,1.323472945789016531e-01,1.176901593943893189e-02,-9.622320150546135320e-01,-4.988166630917398314e-02,5.078154250605357856e-01,1.591235863711869536e+00,4.322639404194361656e-01,-1.128756309801686453e-01,-1.149360434996373526e+00,-1.936918884602176552e-02,9.734907097812472987e-02,1.626064559639908813e+00,2.047462173042768063e-01,-7.966852978049202005e-02,-1.206956826842336294e+00,-4.065154148281034663e-03,6.534312626495628051e-02,1.701237600212363033e+00,1.900939038112462731e-01,-2.965131089986513396e-02,-1.024113339698061065e+00,-8.098595274659944193e-03,2.819508416817889662e-02,1.701237600212363033e+00,1.900939038112462731e-01,-2.965131089986507498e-02,-1.005943071463702765e+00,-1.004130193458095399e-01,9.993320378231451695e-01,1.089235883572694519e+00,4.160266282248597514e-01,2.043713300212668948e-01,-9.896643479697248003e-01,-8.176911472261498559e-02,1.021675387455605932e+00,1.051284347330091906e+00,4.053794402444200196e-01,1.737334041046336430e-01,-9.807857822079161236e-01,-6.344425828742931983e-02,1.047901056948744802e+00,9.929158742899288903e-01,3.926980553945277896e-01,1.443532705300197561e-01,-9.785768675934873873e-01,-4.362406862801859048e-02,1.077542458874494624e+00,9.372832007816918054e-01,3.805743652299136692e-01,1.212670675679369953e-01,-9.826364795227386928e-01,-2.679706027038198865e-02,1.103223977909555842e+00,8.904159853286663928e-01,3.681160447073272279e-01,1.007225646769716737e-01,-9.989011077110682146e-01,-9.116699497992832024e-02,1.036001662435200865e+00,8.541723122064253104e-01,3.554220120617149759e-01,8.276922559427966897e-02,-9.925869584076542074e-01,-7.055687419846713715e-02,1.057544734916911366e+00,8.541723122198057183e-01,3.554220120203334110e-01,8.276922563273085565e-02,-9.046300740189373579e-01,-3.101268635369994198e-02,1.032787535567779802e+00,8.489238275025052793e-01,3.420011632661882350e-01,9.505510923306993709e-02,-7.929513758992881023e-01,9.566268756744321367e-02,1.493362483496418314e+00,8.541723122064253104e-01,3.554220120617149759e-01,8.276922559427966897e-02,-9.494899295867089695e-01,3.592442071845132201e-01,1.215517957312624908e+00,8.541723122064253104e-01,3.554220120617149759e-01,8.276922559427966897e-02,-8.063939749671701351e-01,6.197596472940031936e-02,1.478725923863086988e+00,9.820968269918474436e-02,-4.751821881127794023e-01,-1.798137839462941867e-01,-8.311343561430231119e-01,-2.529762007744023600e-01,1.448356468661409657e+00,-2.023992816047431031e-01,-9.864755179056933221e-02,2.227014219084115343e+00,-8.197939707351703520e-01,-2.558087895402066381e-01,1.474841008434402578e+00,-8.979562971242088798e-01,1.394482274058594928e+00,1.267788684398850840e+00,-6.394571401719686410e-01,-1.211638906945823879e-01,1.515972025364835662e+00,-8.979562971242088798e-01,1.394482274058594928e+00,1.267788684398850618e+00,-9.697587025650916681e-01,3.427929645854346230e-01,1.186393034959697390e+00,1.755033039778308046e+00,1.419728292892678267e-01,-7.085673339623727376e-03,-9.993703593097305049e-01,3.906121602660758141e-01,8.740378987208288208e-01,1.626645416796129284e+00,-4.441832003963542275e-01,-9.113208693300282881e-02,-9.980914061661844139e-01,4.165096127540153237e-01,8.611637004625459779e-01,1.960594414067583502e+00,-3.604158764901669015e-03,-1.660036156244216299e+00,-8.988748225990238483e-01,4.154337833880079045e-01,6.550149824629020179e-01,1.960594414067583502e+00,-3.604158764901669015e-03,-1.660036156244216299e+00
|
||||
1.100000000000000089e+00,-9.381545599999999707e-01,-1.058945500000000040e-01,9.204254600000000286e-01,1.148087675749169811e+00,4.346128834730932367e-01,2.521950857449942185e-01,-9.330148802601216929e-01,-1.133786729884211919e-01,8.980756968176560884e-01,1.148087675749169811e+00,4.346128834730932367e-01,2.521950857449942185e-01,-9.960400958183950326e-01,-2.501236353009005375e-01,9.275188613484416367e-01,1.464036455614475596e+00,-5.439765950095402092e-01,9.584572235375836413e-02,-7.616870367772680117e-01,-2.701044841056770007e-01,6.059854543527571913e-01,1.470928528914811073e+00,-4.165488024323419358e-01,8.095869210921238790e-02,-8.004835460849524242e-01,-2.686378266965797623e-01,6.207355949563446718e-01,1.477706957838320845e+00,-1.533239930338151369e-01,1.488563654921364054e-01,-7.276892097446576724e-01,-2.993998451243400916e-01,1.844183400367381820e-01,1.506232834285899935e+00,1.182498807217729347e-01,1.752222673492119520e-01,-7.805425246956207985e-01,-3.200024316338023755e-01,1.475673040065239583e-01,1.724690441457857659e+00,1.418585009877098291e-01,3.295930650039113896e-01,-6.057950203987317872e-01,-2.610655471738315692e-01,1.189711528287252656e-01,1.724690441457857659e+00,1.418585009877098291e-01,3.295930650039113341e-01,-1.075750170478003032e+00,-8.053654862850126439e-02,8.523997267071060646e-01,1.672728603104392420e+00,-2.905436980188578766e-01,-1.624699552661441546e-02,-9.419533874846695021e-01,-4.173714198509633627e-02,4.741702000450515597e-01,1.669244218851252626e+00,1.275026040346921852e-01,2.560536114708043820e-02,-9.620332568133890261e-01,-4.718833246203595760e-02,5.069983309917462933e-01,1.587734116082543778e+00,4.258694334085729727e-01,-9.864299224327680027e-02,-1.147129239512065357e+00,-2.117516183541021807e-02,9.530247625513621479e-02,1.616652676076356876e+00,2.424595204697123918e-01,-7.043324458452465686e-02,-1.206078976087859633e+00,-6.726633048423779834e-03,6.543431758705287038e-02,1.705795129999797544e+00,2.256495323346459636e-01,-1.207634357839128432e-02,-1.024627343305634986e+00,-7.520073760077641833e-03,2.181480495194269842e-02,1.705795129999797544e+00,2.256495323346459636e-01,-1.207634357839122707e-02,-9.999588008939990225e-01,-1.005509380984945800e-01,9.980705002214274035e-01,1.114049994751451056e+00,4.216561242061007131e-01,2.164903593714840035e-01,-9.834898437849325381e-01,-8.233947452759750318e-02,1.020629951179663486e+00,1.073147565671877190e+00,4.082392621490202322e-01,1.784871717931988122e-01,-9.743723499841265845e-01,-6.456162909656207316e-02,1.047148776093042910e+00,1.012265590550246674e+00,3.923016120099724890e-01,1.420548084950434276e-01,-9.719067091246256229e-01,-4.530036235605554990e-02,1.077136845507335572e+00,9.548693977842909186e-01,3.771336771878047167e-01,1.134286975308900075e-01,-9.757684306283237463e-01,-2.884060460747328580e-02,1.103085167331102401e+00,9.065532042423843917e-01,3.615825326507637882e-01,8.796628131745852508e-02,-9.928553745589966395e-01,-9.187908945003181449e-02,1.034812429747227869e+00,8.691091576976140987e-01,3.458421784646440456e-01,6.564617884155203587e-02,-9.862726276300228800e-01,-7.173178681835253034e-02,1.056709990605484872e+00,8.691091577103788879e-01,3.458421784227286855e-01,6.564617887920748407e-02,-8.976757494811089533e-01,-3.377846136507976771e-02,1.033842189370161258e+00,8.652946460767245718e-01,3.289122842429696991e-01,8.025699040578711252e-02,-7.860135430936214807e-01,8.368720332109741422e-02,1.496362998851063164e+00,8.691091576976140987e-01,3.458421784646440456e-01,6.564617884155203587e-02,-9.384672848752870777e-01,3.539031805465951974e-01,1.221786599194593093e+00,8.691091576976140987e-01,3.458421784646440456e-01,6.564617884155203587e-02,-8.000727782755074902e-01,5.052614787634026466e-02,1.481118001276213514e+00,1.282237404603047137e-01,-4.490014246645309681e-01,-1.972428457616230979e-01,-8.268094379088820611e-01,-2.632256289806120253e-01,1.441441429142746866e+00,-2.050005979592137983e-01,-1.359349084023666332e-01,2.223851806978980772e+00,-8.149368214341442540e-01,-2.669182808038022547e-01,1.467584574474908310e+00,-7.526268286792671125e-01,1.368884083656717543e+00,1.407080768501992596e+00,-6.332825016067816781e-01,-1.341889784029957622e-01,1.509142030709793580e+00,-7.526268286792671125e-01,1.368884083656717543e+00,1.407080768501992596e+00,-9.588426391253730419e-01,3.383353669742145686e-01,1.192253299972763525e+00,1.756905236361347766e+00,1.464189202586848870e-01,-2.689898406614382731e-02,-9.888601849832338031e-01,3.873553795521118004e-01,8.801231314003520323e-01,1.633048502361198917e+00,-4.151164331776708849e-01,-1.096799094843513567e-01,-9.875314187194798032e-01,4.133433924714550178e-01,8.674378520568608586e-01,1.931546777473611476e+00,2.311591878181699228e-03,-1.675897694024221174e+00,-8.942106844643736840e-01,4.125454968575574810e-01,6.585527503450872011e-01,1.931546777473611476e+00,2.311591878181698794e-03,-1.675897694024221174e+00
|
||||
1.116666699999999901e+00,-9.323494599999999632e-01,-1.032042999999999988e-01,9.181756199999999701e-01,1.179713993391102500e+00,4.384999042454009732e-01,2.715717355897194762e-01,-9.274178831323411920e-01,-1.100586313215623224e-01,8.955783190378538983e-01,1.179713993391102500e+00,4.384999042454009732e-01,2.715717355897194762e-01,-9.893063320316366482e-01,-2.479244969682636579e-01,9.220563369757608374e-01,1.504924708614749473e+00,-5.201520461236087689e-01,1.094921512572413491e-01,-7.629737249837685864e-01,-2.492254151339041435e-01,5.961839781824977980e-01,1.507901027635620839e+00,-4.305202489713308989e-01,1.029950366556555419e-01,-8.026125216292748776e-01,-2.498748491835061092e-01,6.098492269068845895e-01,1.509230930543208560e+00,-1.830429987542364079e-01,1.716112398026789221e-01,-7.185780578115255057e-01,-2.629989142222010079e-01,1.746664699767896956e-01,1.544937133552324093e+00,1.548698671274133243e-01,2.163231947448825132e-01,-7.722413996820960413e-01,-2.844113752126515848e-01,1.394856430635343647e-01,1.768987713816945639e+00,1.721119488848623924e-01,3.724661160684689110e-01,-6.011063608068540898e-01,-2.182936053080954952e-01,1.052917043895484905e-01,1.768987713816945639e+00,1.721119488848623924e-01,3.724661160684688554e-01,-1.070847896532425292e+00,-7.689000317935082429e-02,8.523818398432425614e-01,1.665627727659474200e+00,-2.858091671280718615e-01,1.125466807378204320e-03,-9.392868910423538553e-01,-3.862783844871219008e-02,4.734032240090131349e-01,1.662520874486209221e+00,1.278722317227835026e-01,3.966512366248606258e-02,-9.593418501370898355e-01,-4.415668526804088917e-02,5.062696086690949837e-01,1.580892280317525378e+00,4.250711257616492378e-01,-8.613115239732603567e-02,-1.144704577136684831e+00,-2.356988967312523969e-02,9.438670303819446383e-02,1.603839260865651095e+00,2.859039278053112643e-01,-6.305766787961021580e-02,-1.205068637304939960e+00,-1.003134816796417451e-02,6.702200931430961350e-02,1.710511798534926298e+00,2.666225171256800808e-01,5.632875802957626465e-03,-1.025568690195549193e+00,-7.613353542042761157e-03,1.601310068319260899e-02,1.710511798534926298e+00,2.666225171256800808e-01,5.632875802957682844e-03,-9.933062909763615833e-01,-1.003112528588270547e-01,9.966164619586550533e-01,1.140918413036865031e+00,4.221415132051331009e-01,2.248436177085063881e-01,-9.766612828330892837e-01,-8.267523110231060623e-02,1.019501145621976468e+00,1.095440800100852430e+00,4.044580895036631873e-01,1.756167132824257848e-01,-9.673411442634619606e-01,-6.556647965524152466e-02,1.046387522589153907e+00,1.030469108786409516e+00,3.834393704810839520e-01,1.285079751327585784e-01,-9.646813881201034002e-01,-4.690639535176621688e-02,1.076737740204357863e+00,9.701384895342501924e-01,3.634935482348255475e-01,9.155159290303771513e-02,-9.684151451289187973e-01,-3.073811649595099491e-02,1.102886644433621832e+00,9.195001038492642831e-01,3.430748338314798529e-01,5.873873110263707481e-02,-9.863594125314399941e-01,-9.235069126687425745e-02,1.033539025416722490e+00,8.802513284553354911e-01,3.225469411287861798e-01,2.992108768954686304e-02,-9.794964448578994398e-01,-7.272506289622464315e-02,1.055820944494161528e+00,8.802513284670187010e-01,3.225469410864786890e-01,2.992108772640420661e-02,-8.897320770488400532e-01,-3.782293193085969896e-02,1.036209289047653970e+00,8.787706400081790603e-01,3.001061859084501182e-01,4.816775411111303556e-02,-7.868895236877088140e-01,6.979688810706560775e-02,1.502740389978077795e+00,8.802513284553354911e-01,3.225469411287861798e-01,2.992108768954686304e-02,-9.181945016589583286e-01,3.494339606120639985e-01,1.227629824614262288e+00,8.802513284553354911e-01,3.225469411287861798e-01,2.992108768954686304e-02,-8.018847178302866974e-01,3.738942239287613989e-02,1.486783323776014187e+00,1.718707102586765068e-01,-4.159684060628727198e-01,-1.928121261704133227e-01,-8.226566339980118103e-01,-2.747975767079360310e-01,1.433519246607076969e+00,-2.143049305850359132e-01,-1.903579821148753959e-01,2.233037237310631085e+00,-8.100781640358923896e-01,-2.796566974250220272e-01,1.459136228993199058e+00,-6.161663095140684776e-01,1.322729439511500793e+00,1.547821205338874462e+00,-6.283366457938820426e-01,-1.475987608088886183e-01,1.502415597290797322e+00,-6.161663095140685886e-01,1.322729439511500793e+00,1.547821205338874462e+00,-9.384806250286142904e-01,3.350140412757273145e-01,1.197459197041544243e+00,1.761046577219816944e+00,1.786899078826317544e-01,-2.207166337047712645e-02,-9.787221213941469378e-01,3.854066910963750425e-01,8.867013175922462409e-01,1.630463429675709675e+00,-4.032849098639892937e-01,-1.080029803760220314e-01,-9.775629260574366652e-01,4.113818836551676461e-01,8.739732232727088768e-01,1.919705730615034023e+00,-1.207063515981129351e-05,-1.675262936620250054e+00,-8.867589129614268373e-01,4.104190730275112386e-01,6.639825425323108155e-01,1.919705730615034023e+00,-1.207063515981129351e-05,-1.675262936620250054e+00
|
||||
1.133333300000000099e+00,-9.254021399999999842e-01,-9.958319999999999672e-02,9.157733799999999702e-01,1.215921187467570386e+00,4.392926856613882935e-01,2.882135683449127961e-01,-9.206854802622976841e-01,-1.057206353410897748e-01,8.929255064141744525e-01,1.215921187467570386e+00,4.392926856613882935e-01,2.882135683449127961e-01,-9.821587678565500967e-01,-2.444340116811445363e-01,9.156828478294585238e-01,1.536795539090526574e+00,-4.895162292043211960e-01,1.293997158491455302e-01,-7.667388344146769397e-01,-2.298813719326811833e-01,5.852265155347726733e-01,1.537654073791582476e+00,-4.384423031770475765e-01,1.274818723274393495e-01,-8.071735182373602768e-01,-2.325861357488172576e-01,5.976131329615200771e-01,1.534525961643646186e+00,-2.141031853745431757e-01,1.918344064459018561e-01,-7.116836968385507056e-01,-2.304196546074635810e-01,1.646061301425791323e-01,1.576172642065698515e+00,1.802372842675501463e-01,2.552295190583809270e-01,-7.657110253612041673e-01,-2.528156412289951360e-01,1.306148682560415997e-01,1.796875789894566422e+00,1.925167483861751072e-01,4.076050094265699086e-01,-5.977084589844511298e-01,-1.809612149372845091e-01,9.266667221016161582e-02,1.796875789894566422e+00,1.925167483861751350e-01,4.076050094265698531e-01,-1.064569770916960145e+00,-7.141945798857705918e-02,8.521946509526058255e-01,1.655939587255661927e+00,-2.846826582529202176e-01,1.539780150231066097e-02,-9.340147561918772379e-01,-3.516636893668183272e-02,4.725773156051563118e-01,1.653248205206192312e+00,1.342325277811883544e-01,5.042303502853116154e-02,-9.537428375322561935e-01,-4.062281642878309146e-02,5.056152162862361799e-01,1.569478139466464750e+00,4.305543458607249407e-01,-7.934172089839203190e-02,-1.141908052500388848e+00,-2.625994416846424984e-02,9.474024206539521931e-02,1.586652844421927444e+00,3.327366498466297617e-01,-6.140556214107884686e-02,-1.203604458309271763e+00,-1.349076149894762322e-02,7.011424334648294621e-02,1.719018025939225369e+00,3.098743848908397380e-01,2.251678238961810422e-02,-1.026540436320113159e+00,-8.079757990888648822e-03,1.140274849171635241e-02,1.719018025939225369e+00,3.098743848908397380e-01,2.251678238961816320e-02,-9.855877893657642996e-01,-9.923014793628731622e-02,9.948596216371270451e-01,1.172906855362230827e+00,4.212563688626350111e-01,2.326538519119095705e-01,-9.687224860530774251e-01,-8.233476652457669132e-02,1.018137921873801588e+00,1.123215685597097391e+00,4.011527984014106041e-01,1.744470292539924972e-01,-9.591676735523673170e-01,-6.604026286332270734e-02,1.045444775748191057e+00,1.053915292603879283e+00,3.769428146663908463e-01,1.187822118681955974e-01,-9.562851500317959275e-01,-4.811949762433441469e-02,1.076217824255299771e+00,9.901881641750829299e-01,3.538099059826649295e-01,7.514896390883675503e-02,-9.598609232640806788e-01,-3.236816081783507049e-02,1.102641148463483489e+00,9.368464361299545518e-01,3.300277332360911364e-01,3.645134581608276692e-02,-9.786066904992873905e-01,-9.241967798192890493e-02,1.032143409952458457e+00,8.955541869034083780e-01,3.061226241563414496e-01,2.434461685117505440e-03,-9.714843243372431880e-01,-7.335253101582668578e-02,1.054825238336239090e+00,8.955541869142508160e-01,3.061226241135040493e-01,2.434461721095300402e-03,-8.810844842233203078e-01,-4.053145086904291761e-02,1.037679268727138338e+00,8.960896823860785565e-01,2.785969723135520160e-01,2.356371077783749046e-02,-7.816268922461973023e-01,5.630739751068986054e-02,1.506841236503985382e+00,8.955541869034083780e-01,3.061226241563414496e-01,2.434461685117505440e-03,-8.972227048052682230e-01,3.448931341765080760e-01,1.234404748628311843e+00,8.955541869034083780e-01,3.061226241563414496e-01,2.434461685117505440e-03,-7.973902195317394970e-01,2.463730665867830405e-02,1.490160394154714574e+00,2.054746994390028170e-01,-3.867616466475691794e-01,-2.102911498716008576e-01,-8.208297269135579333e-01,-2.853331305472756041e-01,1.426143409083910685e+00,-2.188814625070597542e-01,-2.322592501756139127e-01,2.231334823375621834e+00,-8.077018339970049032e-01,-2.911355376127213734e-01,1.451283998717418200e+00,-5.338377590378556858e-01,1.286546908417131707e+00,1.624604429833414354e+00,-6.246431426090968131e-01,-1.611250172865721919e-01,1.495206224393395011e+00,-5.338377590378556858e-01,1.286546908417131707e+00,1.624604429833414354e+00,-9.174629117988941651e-01,3.315771827787385995e-01,1.203700561578425310e+00,1.769822180542120815e+00,2.117885959351005765e-01,-8.701260031826205457e-03,-9.685176044217954638e-01,3.842618746807859309e-01,8.949174687351230117e-01,1.630328879017975741e+00,-4.011243687883844777e-01,-1.015624547307765191e-01,-9.675518746131464010e-01,4.102451630508893721e-01,8.821897494298123199e-01,1.917544768250152742e+00,-1.282997631602322331e-04,-1.668874928924251710e+00,-8.771977668973053310e-01,4.098825657746262285e-01,6.720032000539060135e-01,1.917544768250152742e+00,-1.282997631602322331e-04,-1.668874928924251710e+00
|
||||
1.149999999999999911e+00,-9.168996099999999760e-01,-9.452112999999999488e-02,9.133023300000000511e-01,1.255286979803001524e+00,4.355671910006935210e-01,3.030648562735582252e-01,-9.123502001110149751e-01,-9.985865012544294095e-02,8.902208641103802611e-01,1.255286979803001524e+00,4.355671910006935210e-01,3.030648562735582252e-01,-9.739372993117930699e-01,-2.391819926715162414e-01,9.085046789589885652e-01,1.563141272092003708e+00,-4.536830753090236867e-01,1.467948911855023186e-01,-7.717128921784395246e-01,-2.123044958563702900e-01,5.733395366760432044e-01,1.563205866858020876e+00,-4.359058085342119027e-01,1.466447718091400676e-01,-8.128910631575569923e-01,-2.167544498637080652e-01,5.843379016324427022e-01,1.557131033559372879e+00,-2.452929900515979089e-01,2.022424386720969858e-01,-7.061989997413590237e-01,-2.010629934276453590e-01,1.542348373321937860e-01,1.603079897237603468e+00,1.948076069576096803e-01,2.840127181462395733e-01,-7.603973181117216207e-01,-2.240178372711824073e-01,1.208948349532290023e-01,1.808932381779214005e+00,2.034548938771249815e-01,4.254564673604144809e-01,-5.941049524693713391e-01,-1.493272213498439971e-01,8.094302032129085944e-02,1.808932381779214005e+00,2.034548938771249815e-01,4.254564673604144254e-01,-1.056440808795263919e+00,-6.389980236635886546e-02,8.517095643603480593e-01,1.643851568095578530e+00,-2.848337440103947404e-01,2.626139302475109447e-02,-9.264014524301633635e-01,-3.107090342508844749e-02,4.713971793207085148e-01,1.641654082504211631e+00,1.455981677313938905e-01,5.712068587825484128e-02,-9.455810468356938836e-01,-3.629033258370225473e-02,5.047092856628736524e-01,1.554121493441261492e+00,4.410544962416313997e-01,-7.850403514346325495e-02,-1.138566649961507249e+00,-2.867128676993036668e-02,9.589491239353775676e-02,1.566970587183347474e+00,3.729654123039633506e-01,-6.454329380298277907e-02,-1.201277233620273943e+00,-1.650293416381529849e-02,7.364064941504737394e-02,1.725737748123948201e+00,3.468590923021773187e-01,3.501323069434708612e-02,-1.026582501948647641e+00,-8.947147538262719899e-03,8.428324777213169750e-03,1.725737748123948201e+00,3.468590923021773187e-01,3.501323069434714164e-02,-9.765458934469681829e-01,-9.684914299129088189e-02,9.927628351462723932e-01,1.208592682228710080e+00,4.170848349173761904e-01,2.402405620081224935e-01,-9.594859993750824989e-01,-8.083146005383318178e-02,1.016514287913928616e+00,1.155059436643679494e+00,3.958622197802543763e-01,1.746274782968975925e-01,-9.497414547479290370e-01,-6.547726136125699148e-02,1.044295199692508502e+00,1.081303450589441217e+00,3.697909278043994830e-01,1.118575229075138844e-01,-9.466933402150615740e-01,-4.841696579503209502e-02,1.075538259696645627e+00,1.013845863634291966e+00,3.445857364989302063e-01,6.265675679716670166e-02,-9.501578282953622168e-01,-3.318842182839308597e-02,1.102280185948647073e+00,9.575076590732843895e-01,3.184881654016040176e-01,1.904422155289418883e-02,-9.694873103423322647e-01,-9.154820093762028321e-02,1.030527757028799840e+00,9.139706722219660406e-01,2.921899800275972736e-01,-1.932633431232927065e-02,-9.621770490639738327e-01,-7.307756419741079368e-02,1.053639338334669162e+00,9.139706722320459775e-01,2.921899799841353729e-01,-1.932633427733560297e-02,-8.714676563216391392e-01,-4.162072096356207035e-02,1.038679994062740475e+00,9.163553729715633311e-01,2.595311591256464490e-01,4.220756065644075232e-03,-7.755623996122049668e-01,4.345417946719734581e-02,1.510360139990288619e+00,9.139706722219660406e-01,2.921899800275972736e-01,-1.932633431232927065e-02,-8.782560574003263065e-01,3.405486030473611758e-01,1.242231190743024349e+00,9.139706722219660406e-01,2.921899800275972736e-01,-1.932633431232927065e-02,-7.919365003097468270e-01,1.251939030481608039e-02,1.492905762631219435e+00,2.368774121266447596e-01,-3.572259496382992339e-01,-2.283780237739748142e-01,-8.189880920221814797e-01,-2.948639503858457855e-01,1.418656519691104512e+00,-2.226369631956475748e-01,-2.734932150798844996e-01,2.226341994053618656e+00,-8.053414835271250904e-01,-3.016129773431402983e-01,1.443279262410273933e+00,-4.686750609909829945e-01,1.249968512034044688e+00,1.680887380713468771e+00,-6.205337044699976712e-01,-1.742310298235772992e-01,1.487577186092497783e+00,-4.686750609909829945e-01,1.249968512034044688e+00,1.680887380713468771e+00,-8.984075469461536567e-01,3.283230134278606882e-01,1.211019332888885192e+00,1.782574351491446718e+00,2.386310557215797490e-01,1.024656487552612003e-02,-9.585971454638955169e-01,3.839310698888425133e-01,9.044019603993060930e-01,1.635106042644115965e+00,-4.027768424462684904e-01,-9.234033762458583594e-02,-9.578937121502811847e-01,4.099770385431957820e-01,8.917856437525272240e-01,1.919216656858198311e+00,4.260776199772744327e-03,-1.657780459267467421e+00,-8.671111089433582997e-01,4.115046694885854395e-01,6.817890554585029905e-01,1.919216656858198311e+00,4.260776199772743460e-03,-1.657780459267467421e+00
|
||||
1.166666699999999945e+00,-9.064559699999999998e-01,-8.798380999999999563e-02,9.107603100000000174e-01,1.295899692794191926e+00,4.274843484417235051e-01,3.160240028809108148e-01,-9.020084182676321172e-01,-9.246776471190784608e-02,8.874782621353757284e-01,1.295899692794191926e+00,4.274843484417235051e-01,3.160240028809108148e-01,-9.641017786080171570e-01,-2.321349368999082730e-01,9.007356399395139990e-01,1.587191602394096623e+00,-4.156359438152301133e-01,1.554334177442225351e-01,-7.760706020167675856e-01,-1.962308335657196035e-01,5.610310046595652356e-01,1.587217723376191270e+00,-4.192251431081158164e-01,1.553689872939545968e-01,-8.179184646835173655e-01,-2.019151825580518256e-01,5.707603536997635230e-01,1.580237602559647625e+00,-2.722751467076731102e-01,1.990706494681320216e-01,-7.018614945104885150e-01,-1.742308417273933374e-01,1.436978043365779167e-01,1.629297918171989323e+00,2.050699424598823040e-01,2.997559687010250551e-01,-7.563891515828475853e-01,-1.970411487572439613e-01,1.107985211211508225e-01,1.806826101449989119e+00,2.110465627498452901e-01,4.213587888319339503e-01,-5.900714685120714842e-01,-1.231630676263614360e-01,6.946519441726292654e-02,1.806826101449989119e+00,2.110465627498452901e-01,4.213587888319338948e-01,-1.046083094891138821e+00,-5.451593417796829488e-02,8.508666715314399109e-01,1.630209527561249594e+00,-2.820865012069116995e-01,3.522377209114795765e-02,-9.175048555770215497e-01,-2.603815143067898796e-02,4.695094507650456883e-01,1.628596513764980491e+00,1.598613002177524667e-01,6.099072896624437023e-02,-9.360567651387202703e-01,-3.090916637133484662e-02,5.031431737314082664e-01,1.536603843329096719e+00,4.541036005960676358e-01,-8.119721309456215397e-02,-1.134875837726243564e+00,-3.023791461621623544e-02,9.706287322291917707e-02,1.547806663096395807e+00,3.986720205790262317e-01,-6.857282161041280966e-02,-1.198201281557561559e+00,-1.861438378380433564e-02,7.630907782929816086e-02,1.728473957626114998e+00,3.703263032878534866e-01,4.409730875092933433e-02,-1.025158019491382744e+00,-9.536349415274631910e-03,7.015461849741735922e-03,1.728473957626114998e+00,3.703263032878534866e-01,4.409730875092939678e-02,-9.658357328788641505e-01,-9.306127331602323527e-02,9.902922770217502668e-01,1.247141619854336803e+00,4.102720415487847161e-01,2.498664042083354186e-01,-9.486406442698567254e-01,-7.800065306910403118e-02,1.014565748779784338e+00,1.191135291607308355e+00,3.899700811016113544e-01,1.807915913962195864e-01,-9.387807566853060282e-01,-6.366881434761792469e-02,1.042847875807039415e+00,1.113677701346453608e+00,3.643544754411686126e-01,1.145649915745406006e-01,-9.356503746151968448e-01,-4.759463282269719292e-02,1.074601760007058093e+00,1.042749137710781593e+00,3.391741468429679274e-01,6.257274436669678364e-02,-9.390722569958476207e-01,-3.306413377249521612e-02,1.101734049381192460e+00,9.835206707775803192e-01,3.128372563406303097e-01,1.644920030186569626e-02,-9.585802669653937791e-01,-8.961116726435759683e-02,1.028589338804618558e+00,9.377705981987805028e-01,2.861537739736459418e-01,-2.418845473263661963e-02,-9.512108636435530062e-01,-7.175533734577095590e-02,1.052160735975830264e+00,9.377705982083330838e-01,2.861537739293988913e-01,-2.418845469879376750e-02,-8.606857089991767351e-01,-4.001053112020980240e-02,1.038552936264807602e+00,9.410565548085401133e-01,2.495062174274438882e-01,4.435090339558329627e-04,-7.681449789302106090e-01,3.229702145173161953e-02,1.513038612302999297e+00,9.377705981987805028e-01,2.861537739736459418e-01,-2.418845473263661963e-02,-8.681208451969412154e-01,3.372520723339823556e-01,1.253032428653864772e+00,9.377705981987805028e-01,2.861537739736459418e-01,-2.418845473263661963e-02,-7.847593534532317783e-01,1.959281222054600619e-03,1.494781785630972415e+00,2.661795921613944738e-01,-3.316514853455610479e-01,-2.462924053157034276e-01,-8.157159521876984343e-01,-3.025981505985466669e-01,1.411021911328649514e+00,-2.277985885311753778e-01,-3.119692458531717061e-01,2.214832726719490719e+00,-8.016921566271983934e-01,-3.103464894566296262e-01,1.435133218848559489e+00,-4.235181924941604503e-01,1.214186903945915219e+00,1.710487077439383663e+00,-6.143909946926281451e-01,-1.868832461839282644e-01,1.480049631160836654e+00,-4.235181924941604503e-01,1.214186903945915219e+00,1.710487077439383663e+00,-8.882040912102685537e-01,3.259731228584795693e-01,1.221422680608930333e+00,1.793173276946854022e+00,2.400456504697808247e-01,1.829264086370729556e-02,-9.491873922180885659e-01,3.843931371231734118e-01,9.154857659402186876e-01,1.645439559027435106e+00,-4.035593155366157259e-01,-9.144039978055477913e-02,-9.485926629218648376e-01,4.105596722257098263e-01,9.031157422905247145e-01,1.920069346786630105e+00,1.375973360656680168e-02,-1.652818613938852987e+00,-8.574769910687564112e-01,4.145095936509676227e-01,6.932950706207585689e-01,1.920069346786630105e+00,1.375973360656680168e-02,-1.652818613938852987e+00
|
||||
1.183333299999999921e+00,-8.944225799999999671e-01,-8.017762000000000500e-02,9.082568899999999834e-01,1.336367813788635228e+00,4.173491149088833230e-01,3.311527577880047368e-01,-8.900306852459867191e-01,-8.377502687592004726e-02,8.848109896487671433e-01,1.336367813788635228e+00,4.173491149088833230e-01,3.311527577880047368e-01,-9.523060581227095200e-01,-2.237582845444296975e-01,8.928563583271987847e-01,1.609842087720667392e+00,-3.779578678126053748e-01,1.563827622660574346e-01,-7.783729433347388316e-01,-1.810862958833279746e-01,5.488804609329049899e-01,1.610024385137769354e+00,-3.894889289568077562e-01,1.558958332412946901e-01,-8.207464139523866775e-01,-1.875250378980719279e-01,5.577756463064692527e-01,1.604082277293291670e+00,-2.887720691250793559e-01,1.867289209494801538e-01,-6.994756865477820273e-01,-1.495955036340589073e-01,1.329547131748405331e-01,1.655352872497653172e+00,2.145377352417369432e-01,3.058100840464648140e-01,-7.545330027114578453e-01,-1.717373607706504379e-01,1.004836733380639058e-01,1.790356206239594572e+00,2.186252534197218600e-01,3.979997901093568213e-01,-5.868120465562941535e-01,-1.019213979363643718e-01,5.778240087526777952e-02,1.790356206239594572e+00,2.186252534197218877e-01,3.979997901093567658e-01,-1.034124694004428635e+00,-4.424706426145381954e-02,8.499868706639808202e-01,1.616568396267859420e+00,-2.738508935999914851e-01,4.529247902233003720e-02,-9.088815092970909948e-01,-2.010488072455535180e-02,4.671190386697395280e-01,1.615541359064647020e+00,1.744674134766770190e-01,6.545117156384176738e-02,-9.268576524399894101e-01,-2.463142909197651997e-02,5.010663574550402455e-01,1.519393975936081498e+00,4.670591831618815526e-01,-8.272926621663323488e-02,-1.131394774951932192e+00,-3.098206981769317456e-02,9.788535648717017201e-02,1.531644355097441235e+00,4.097360760900957133e-01,-6.849609244387552809e-02,-1.195039305567733745e+00,-2.005465658933084164e-02,7.773830480419093025e-02,1.730329892376601064e+00,3.796099862510478595e-01,5.522288192424634062e-02,-1.022756717053659337e+00,-9.084392381025114399e-03,6.841552635189970810e-03,1.730329892376601064e+00,3.796099862510478595e-01,5.522288192424639613e-02,-9.536427443323416409e-01,-8.820577156816603037e-02,9.876646451028452400e-01,1.286623596589595797e+00,4.021673950749842241e-01,2.637317253709926534e-01,-9.363908430623314461e-01,-7.408269943567939719e-02,1.012455040860710254e+00,1.229163141355604338e+00,3.837530798293730672e-01,1.932567973853804855e-01,-9.264934008854889269e-01,-6.078743479197100397e-02,1.041226233174504134e+00,1.148949751842950562e+00,3.597520309515073178e-01,1.254612009356777524e-01,-9.233609962419333517e-01,-4.577660581257793349e-02,1.073496300970941730e+00,1.075227192598871007e+00,3.356821259266252744e-01,7.209082242605972801e-02,-9.268069498847565368e-01,-3.207717830677205006e-02,1.101054035598480807e+00,1.013601403137602164e+00,3.102028598690835803e-01,2.465752758027892760e-02,-9.461708435258596728e-01,-8.665068293979057146e-02,1.026385750314382506e+00,9.659695565712672627e-01,2.842049685149328209e-01,-1.722039059462932009e-02,-9.388442612990204328e-01,-6.944538741675905513e-02,1.050449177560786262e+00,9.659695565803829709e-01,2.842049684697879885e-01,-1.722039056211894029e-02,-8.487343205775239596e-01,-3.650946889043435450e-02,1.037881324749472256e+00,9.695156233329151885e-01,2.445446700896928560e-01,7.453758167275940059e-03,-7.594348060176643322e-01,2.205550886134292898e-02,1.515196252742471161e+00,9.659695565712672627e-01,2.842049685149328209e-01,-1.722039059462932009e-02,-8.580158985500216939e-01,3.345602336928517606e-01,1.264275686257366083e+00,9.659695565712672627e-01,2.842049685149328209e-01,-1.722039059462932009e-02,-7.760313529280692402e-01,-7.761441192566845282e-03,1.496085215007685765e+00,2.960233273339794025e-01,-3.085599165043360070e-01,-2.643275309104767268e-01,-8.109512319061932262e-01,-3.090904716398833463e-01,1.402754221831027603e+00,-2.349090390899579717e-01,-3.499054190640895623e-01,2.199920861140556738e+00,-7.966611927049143116e-01,-3.179055703908206798e-01,1.426337002857428704e+00,-3.909350292189803788e-01,1.177549140158275609e+00,1.723589575722814793e+00,-6.064968834900088535e-01,-1.992591494839172361e-01,1.472194871356309109e+00,-3.909350292189803788e-01,1.177549140158275609e+00,1.723589575722814793e+00,-8.780298843850513624e-01,3.241592314706497890e-01,1.232322796451653879e+00,1.806623482251390245e+00,2.464395656901133269e-01,5.327818804273842107e-02,-9.429922906071726008e-01,3.844941017004352979e-01,9.275788940718112663e-01,1.654039831895099733e+00,-4.208908838207268688e-01,-6.785109342124633069e-02,-9.428863068687721727e-01,4.107496577339174726e-01,9.153849081721180392e-01,1.937491347162473065e+00,2.144361851348711157e-02,-1.625476818840493332e+00,-8.481879455119312183e-01,4.185649482033417246e-01,7.072658956151953724e-01,1.937491347162473065e+00,2.144361851348710810e-02,-1.625476818840493110e+00
|
||||
1.199999999999999956e+00,-8.820481799999999595e-01,-7.175001999999999769e-02,9.055398099999999451e-01,1.373428315281677081e+00,4.107925565615714314e-01,3.521913480782780104e-01,-8.777588574412359401e-01,-7.451751129291178666e-02,8.819626383508872847e-01,1.373428315281677081e+00,4.107925565615714314e-01,3.521913480782780104e-01,-9.391447348849931709e-01,-2.150780509276246921e-01,8.855363198774727218e-01,1.633465688087248013e+00,-3.435420667385122306e-01,1.458660142666498016e-01,-7.779642677019387165e-01,-1.670710578396242263e-01,5.377031611327225402e-01,1.633720910325877185e+00,-3.546919146035501513e-01,1.451199108206253641e-01,-8.206633881418272658e-01,-1.736726612866929531e-01,5.464387098555515410e-01,1.629477368206830423e+00,-2.902991640441333621e-01,1.657739791040165056e-01,-6.999871191588536989e-01,-1.271157212873926801e-01,1.223069454664583167e-01,1.682480778102535046e+00,2.249507513534400316e-01,3.017815879598506057e-01,-7.558335383777462502e-01,-1.479927055275258030e-01,9.034967214487060749e-02,1.769295308858471305e+00,2.273876656560740173e-01,3.608421949597515055e-01,-5.859714521499093109e-01,-8.463389266550924717e-02,4.607192417745965829e-02,1.769295308858471305e+00,2.273876656560740173e-01,3.608421949597514500e-01,-1.022271187889566280e+00,-3.471968471423411001e-02,8.492428920254464497e-01,1.605506446192931147e+00,-2.615634714834153551e-01,6.140401182055501422e-02,-9.018467986180115359e-01,-1.329820339879585547e-02,4.646582837215783579e-01,1.604925021451547584e+00,1.876942167409257345e-01,7.675370765151831587e-02,-9.193299283457839755e-01,-1.767184738686657791e-02,4.988764537068479110e-01,1.505490869420434530e+00,4.786152469571015033e-01,-7.590963111469083147e-02,-1.128758664075746765e+00,-3.133503288384173469e-02,9.839723242667808289e-02,1.520640466723827799e+00,4.103651774528015439e-01,-5.792396821693465009e-02,-1.192583524080212509e+00,-2.156327426682434073e-02,7.822699921962711356e-02,1.730229124695354948e+00,3.792717377350788843e-01,7.269613939497472643e-02,-1.020495044036956456e+00,-7.582951850077715786e-03,7.388506212305037679e-03,1.730229124695354948e+00,3.792717377350788843e-01,7.269613939497478194e-02,-9.407975256978826639e-01,-8.285231562190245591e-02,9.849269882066790105e-01,1.324697051682981686e+00,3.983935904472489242e-01,2.870772287332225559e-01,-9.235152870773664091e-01,-6.945295941141073348e-02,1.010094539807772973e+00,1.267951823534572808e+00,3.830140825792054948e-01,2.188345699300347225e-01,-9.135685300515026253e-01,-5.707026338213372352e-02,1.039253376146629826e+00,1.187816791383034198e+00,3.622351484480904049e-01,1.528582623890150649e-01,-9.103914614216215284e-01,-4.317176299442590515e-02,1.072013674200609223e+00,1.113773626796426663e+00,3.409333958294943900e-01,1.006718215446096992e-01,-9.138130251046100438e-01,-3.052260255409153938e-02,1.100072080492614734e+00,1.051686086280875010e+00,3.180860692247777233e-01,5.411064830497733236e-02,-9.329216812234623069e-01,-8.273782484558063477e-02,1.023672551364622318e+00,1.003535289691244836e+00,2.945634947923583824e-01,1.285526028872795677e-02,-9.256708775385358301e-01,-6.626809312726633650e-02,1.048267740224516409e+00,1.003535289700191235e+00,2.945634947460733510e-01,1.285526031954394022e-02,-8.362870368657516762e-01,-3.096174885509695579e-02,1.035769163658647463e+00,1.006045704181729450e+00,2.552101092110536373e-01,3.531241867127420803e-02,-7.391111519839279609e-01,1.178835751025929246e-02,1.512693459166935650e+00,1.003535289691244836e+00,2.945634947923583824e-01,1.285526028872795677e-02,-8.415865100634624119e-01,3.315171105045304767e-01,1.273053103499915739e+00,1.003535289691244836e+00,2.945634947923583824e-01,1.285526028872795677e-02,-7.553354226178633501e-01,-1.764141526515759784e-02,1.492683732533341745e+00,3.154689908301406276e-01,-2.959569212865679200e-01,-3.192832064745749210e-01,-8.056202914429544393e-01,-3.148114324499701189e-01,1.393231886501558936e+00,-2.453658854889426422e-01,-3.650484007816373611e-01,2.177933004179843923e+00,-7.915478251322587422e-01,-3.244136146518446506e-01,1.416637495577128369e+00,-3.952610977107648416e-01,1.159593692157840250e+00,1.693961634794643345e+00,-5.983771943742706156e-01,-2.115269222843848829e-01,1.464429585878309847e+00,-3.952610977107648416e-01,1.159593692157840250e+00,1.693961634794643345e+00,-8.617358716194970514e-01,3.218815406052882300e-01,1.240945679673516766e+00,1.831205712684673026e+00,2.804591492837910094e-01,1.435104090078439809e-01,-9.427285035975714322e-01,3.822420013348656886e-01,9.400701818820131894e-01,1.659142996507827705e+00,-4.719574832266573150e-01,-3.738969812945528576e-03,-9.437409249474973949e-01,4.085012623241868757e-01,9.279258431759752623e-01,1.988634564513245273e+00,2.528814546432421595e-02,-1.557965557485766483e+00,-8.392670494421522465e-01,4.234935818827298970e-01,7.249410617572469295e-01,1.988634564513245273e+00,2.528814546432421595e-02,-1.557965557485766483e+00
|
||||
1.216666699999999990e+00,-8.702137800000000478e-01,-6.302135000000000375e-02,9.034603599999999624e-01,1.407495857044712917e+00,4.026619938151203559e-01,3.846059496202829942e-01,-8.659670213596327715e-01,-6.494923701177417186e-02,8.797920560522837219e-01,1.407495857044712917e+00,4.026619938151203559e-01,3.846059496202829942e-01,-9.246747356873653567e-01,-2.066923869715372730e-01,8.790530232434173863e-01,1.654539893133619932e+00,-3.152934171327663737e-01,1.366959845425287923e-01,-7.741035346994483701e-01,-1.535752836500272611e-01,5.277834830963130663e-01,1.654815634970861149e+00,-3.251818815083382108e-01,1.358200463638285782e-01,-8.167674234961331825e-01,-1.602456923912755626e-01,5.371665707868240602e-01,1.651435968000283472e+00,-2.744764900213908509e-01,1.529901096805726668e-01,-7.038155101351568632e-01,-1.066887492442456370e-01,1.117355149970580275e-01,1.706729189614595743e+00,2.402896514190565880e-01,3.014407451828002849e-01,-7.604659542729744759e-01,-1.266653178803076041e-01,8.062920995768628474e-02,1.728239388731580339e+00,2.410061987632649838e-01,3.159788073784211559e-01,-5.884867074093271810e-01,-7.126658296541837911e-02,3.391620012032708908e-02,1.728239388731580339e+00,2.410061987632649838e-01,3.159788073784211004e-01,-1.011333926992313836e+00,-2.687375624527103823e-02,8.488569148246443152e-01,1.598632514185756692e+00,-2.462670526668810089e-01,8.633888667926478688e-02,-8.969142131775291737e-01,-5.709513733780920836e-03,4.625099281234933968e-01,1.598332234297037857e+00,1.983019558743587818e-01,9.855261576493312692e-02,-9.140138616462248899e-01,-1.023077616038509108e-02,4.969373768848565076e-01,1.496950065484148551e+00,4.878352008668125905e-01,-5.641427000938685488e-02,-1.126905681909236678e+00,-3.161955467889818877e-02,9.862810297432600404e-02,1.515204354230398343e+00,4.072922893632147656e-01,-3.449917419770420768e-02,-1.190900729078373521e+00,-2.358703324260029086e-02,7.823077800556868522e-02,1.729431772506174747e+00,3.758333206416656358e-01,9.919312143428529738e-02,-1.019001962124919558e+00,-5.029841934211656124e-03,7.985272521952579972e-03,1.729431772506174747e+00,3.758333206416656358e-01,9.919312143428535289e-02,-9.284262085631399541e-01,-7.777784922271743784e-02,9.826476667043939628e-01,1.360545898933327225e+00,3.927129946499909874e-01,3.220011659588973285e-01,-9.113070060499596226e-01,-6.486255317041220159e-02,1.008176551134902788e+00,1.305533693413389429e+00,3.800523703561730082e-01,2.562255987441939276e-01,-9.014847637927712043e-01,-5.326339106645100463e-02,1.037697669909939391e+00,1.227187877286337825e+00,3.623022959007942689e-01,1.923037712178638781e-01,-8.984372167147975929e-01,-4.048268754036896816e-02,1.070922497605918400e+00,1.154492603571453779e+00,3.437090660133054754e-01,1.414721050790420376e-01,-9.019762017559654899e-01,-2.900147990231730435e-02,1.099464750942631408e+00,1.093346373414813666e+00,3.235117445100897937e-01,9.590798795247998387e-02,-9.202826289035690444e-01,-7.864918476348892185e-02,1.021183027009341382e+00,1.045751508299925137e+00,3.025372812547065804e-01,5.535438433251481383e-02,-9.132829339911948674e-01,-6.296204658819215538e-02,1.046355780116764667e+00,1.045751508308511157e+00,3.025372812072182893e-01,5.535438436133264389e-02,-8.248483871102532117e-01,-2.486145408018609892e-02,1.034334125551885197e+00,1.047080005404371628e+00,2.646095272336204673e-01,7.497594628840549558e-02,-7.329428558806900806e-01,1.703044027613315192e-03,1.514594791439913379e+00,1.045751508299925137e+00,3.025372812547065804e-01,5.535438433251481383e-02,-8.404062958883151691e-01,3.270513597444037468e-01,1.285758300583775604e+00,1.045751508299925137e+00,3.025372812547065804e-01,5.535438433251481383e-02,-7.484787880713786867e-01,-2.738227338526152618e-02,1.493561323700958399e+00,3.506629552408658257e-01,-2.744539562551965850e-01,-3.265021217630603712e-01,-7.989864278810626663e-01,-3.206100134175401961e-01,1.383127055369404612e+00,-2.551916663045818989e-01,-4.110737001439799254e-01,2.153746468902375089e+00,-7.847801143446057059e-01,-3.316032965601043436e-01,1.405829194668451798e+00,-3.647508329712046971e-01,1.114460326663401002e+00,1.693748145973984709e+00,-5.876805199863843754e-01,-2.262530159386448303e-01,1.454772529998864750e+00,-3.647508329712046971e-01,1.114460326663401002e+00,1.693748145973984709e+00,-8.605770172531946871e-01,3.180993470814577062e-01,1.253466953258681515e+00,1.849940464401184537e+00,2.789824199698280882e-01,1.889005716546827418e-01,-9.444968728792358936e-01,3.805499057949576769e-01,9.538227603004594268e-01,1.671537135708735633e+00,-5.181397725953929001e-01,2.037862653623269057e-02,-9.457446099557604846e-01,4.069110321193225022e-01,9.419234780363567872e-01,2.035048335337920733e+00,3.526122845452758781e-02,-1.526552976624539815e+00,-8.325656539488371921e-01,4.274323066693837547e-01,7.441564863403591357e-01,2.035048335337920733e+00,3.526122845452758781e-02,-1.526552976624539815e+00
|
||||
1.233333299999999966e+00,-8.580853000000000508e-01,-5.454813000000000023e-02,9.013479699999999983e-01,1.437840538892138254e+00,3.968364364642577025e-01,4.178978690621717451e-01,-8.539369025833307703e-01,-5.572194543128756311e-02,8.776129057437602743e-01,1.437840538892138254e+00,3.968364364642577025e-01,4.178978690621717451e-01,-9.096015438097070360e-01,-1.986214945599804327e-01,8.732050686834509357e-01,1.672443893751979216e+00,-2.969399467779604285e-01,1.292295069801715490e-01,-7.661836208618093558e-01,-1.406470303234010066e-01,5.190639165497806795e-01,1.672803856568644498e+00,-3.082247687038432438e-01,1.280215416466288503e-01,-8.083655416665076476e-01,-1.473551476478522915e-01,5.298793583361776083e-01,1.668733856104152036e+00,-2.422001271118031374e-01,1.519197832849562280e-01,-7.103071828236200425e-01,-8.847956055210726145e-02,1.014680050473955042e-01,1.726971662729092083e+00,2.602173214231778275e-01,3.070104620590981548e-01,-7.677062798636556940e-01,-1.080988909724455438e-01,7.152866868982267479e-02,1.668666549061570636e+00,2.575564067101879795e-01,2.679637807172467467e-01,-5.939882531229518925e-01,-6.135339205792852274e-02,2.188099012806400678e-02,1.668666549061570636e+00,2.575564067101879795e-01,2.679637807172466912e-01,-1.000263867471031354e+00,-1.993889512157241001e-02,8.485224415178119761e-01,1.594779811311536122e+00,-2.281461175543876563e-01,1.170113555197480892e-01,-8.929859397475825578e-01,2.400352978706155743e-03,4.603519299969542899e-01,1.594670505947133110e+00,2.075133059736357921e-01,1.273563620989315581e-01,-9.097620929338309237e-01,-2.469027593336843573e-03,4.949565317125864672e-01,1.492303277584817733e+00,4.958704342717262237e-01,-2.830985323220318317e-02,-1.125144432320314802e+00,-3.183759201491852264e-02,9.849894259520380890e-02,1.513414031057781273e+00,4.037196023478611950e-01,-2.862516852081663319e-03,-1.189292545679099256e+00,-2.591263352011650978e-02,7.786274265361720071e-02,1.724614748143630694e+00,3.730481924508863845e-01,1.291428028716383736e-01,-1.017834552237471879e+00,-2.200448324220564272e-03,8.092582640692416729e-03,1.724614748143630472e+00,3.730481924508863845e-01,1.291428028716384291e-01,-9.155040413466056792e-01,-7.276274860608392125e-02,9.803947059403976816e-01,1.395963048928055672e+00,3.901091848582369792e-01,3.641810349975688754e-01,-8.985259276626622604e-01,-6.018497700877672996e-02,1.006184919885818374e+00,1.346307604180725592e+00,3.815395717107396556e-01,3.075107692883079502e-01,-8.887555570811941363e-01,-4.929727586471636946e-02,1.035992749103999300e+00,1.274265415525188905e+00,3.688911598397446867e-01,2.520439352648026765e-01,-8.856890510189983079e-01,-3.777528060126772447e-02,1.069673223951252305e+00,1.206832348314729408e+00,3.552405049356459066e-01,2.075838805889879402e-01,-8.891654127722228296e-01,-2.782029701368388813e-02,1.098791605074301625e+00,1.149807144984388740e+00,3.401568593459026735e-01,1.674335251761367438e-01,-9.068730328980126876e-01,-7.409156989423254513e-02,1.018339527067356087e+00,1.105154711551271429e+00,3.242654643521058477e-01,1.314581042139059963e-01,-9.000654275845643149e-01,-5.938903896254358467e-02,1.044151183854619802e+00,1.105154711559553915e+00,3.242654643030681294e-01,1.314581042399019795e-01,-8.131840588933462177e-01,-1.676282140002475357e-02,1.031332210234196189e+00,1.103470118988784332e+00,2.929419849021835942e-01,1.457564824221876110e-01,-7.026337274613081441e-01,-1.017433302727738242e-02,1.505674143909208507e+00,1.105154711551271429e+00,3.242654643521058477e-01,1.314581042139059963e-01,-8.341313766518165806e-01,3.205711986825151016e-01,1.296392077704689338e+00,1.105154711551271429e+00,3.242654643521058477e-01,1.314581042139059963e-01,-7.170792547002216022e-01,-3.895281758366588021e-02,1.483473846330245038e+00,3.525424843428582866e-01,-2.635779896161835612e-01,-4.129896757783529382e-01,-7.936080084965345671e-01,-3.260912909237198010e-01,1.372010382379789784e+00,-2.582374900133245221e-01,-4.081976765541956431e-01,2.113771807503291189e+00,-7.799545547340772655e-01,-3.376369947089162271e-01,1.394777434709043806e+00,-3.733543995430833040e-01,1.115780185720141038e+00,1.644834705018799914e+00,-5.788752988871943561e-01,-2.404415243166417582e-01,1.444401573993762566e+00,-3.733543995430833595e-01,1.115780185720140816e+00,1.644834705018799914e+00,-8.546694034076578461e-01,3.121932719258460054e-01,1.264178300475012451e+00,1.881998847498633110e+00,2.948433039732540895e-01,2.695319381778155110e-01,-9.497966710634783150e-01,3.760851173580208040e-01,9.682088901280696547e-01,1.689783247968037028e+00,-5.876005358459003292e-01,6.089089180679806146e-02,-9.515630683488377484e-01,4.025856145081742610e-01,9.566909806507803982e-01,2.105004347552963839e+00,4.869828205430488943e-02,-1.473515984871831108e+00,-8.263387932946409942e-01,4.326302448489605657e-01,7.675915810713600518e-01,2.105004347552963839e+00,4.869828205430488943e-02,-1.473515984871831108e+00
|
||||
1.250000000000000000e+00,-8.451207200000000475e-01,-4.612199000000000160e-02,8.999576000000000242e-01,1.462249899287009214e+00,3.838767020799158103e-01,4.457415004724913921e-01,-8.409018399806553745e-01,-4.660263669867117237e-02,8.762108033913074134e-01,1.462249899287009214e+00,3.838767020799158103e-01,4.457415004724913921e-01,-8.938923997672004740e-01,-1.903461629499625940e-01,8.679608527279388808e-01,1.686456282581070276e+00,-2.866031441720235384e-01,1.221954108137657813e-01,-7.547297009840767679e-01,-1.283862015815492308e-01,5.112588796289280202e-01,1.686854537689106426e+00,-2.979753343028943569e-01,1.208132995806640020e-01,-7.960414178957453402e-01,-1.350795444753192798e-01,5.240452027542282787e-01,1.681803271298676128e+00,-1.983853967640197558e-01,1.593351320323902198e-01,-7.180817049784884443e-01,-7.280015647287438330e-02,9.200165736388865589e-02,1.744715119629921762e+00,2.898626653912658724e-01,3.184828637784146710e-01,-7.763215568180500403e-01,-9.259712245333195924e-02,6.385670889422115359e-02,1.595247963152082393e+00,2.805210174910249266e-01,2.197579049167390774e-01,-6.016574916927902583e-01,-5.468554152694290321e-02,1.016161735315403158e-02,1.595247963152082393e+00,2.805210174910249266e-01,2.197579049167390219e-01,-9.878075585474991316e-01,-1.279314919031977749e-02,8.476820309260038044e-01,1.591684429421555969e+00,-2.075344870856609403e-01,1.461648902191429455e-01,-8.886351564403385250e-01,1.030911529692474932e-02,4.575637588873514572e-01,1.591737614257408895e+00,2.192674589672337082e-01,1.550251117006390400e-01,-9.049957707265758877e-01,5.117148331519147386e-03,4.923849984318718342e-01,1.488003693928567461e+00,5.065223209199867238e-01,-1.324687350859996612e-03,-1.123644639539089995e+00,-3.198436238673561111e-02,9.837124900937060934e-02,1.512105871327973139e+00,4.026999557058091317e-01,2.775380016914870754e-02,-1.187924318930240863e+00,-2.808313126095739187e-02,7.766275940341817174e-02,1.714893898252909388e+00,3.739048116384621201e-01,1.546571359934714729e-01,-1.017188337979478607e+00,-3.271705550535533580e-05,7.731467825854418385e-03,1.714893898252909388e+00,3.739048116384621201e-01,1.546571359934715284e-01,-9.023554955855145332e-01,-6.744143152708295674e-02,9.783587003001459337e-01,1.424773359225542713e+00,3.791136544093691163e-01,3.981109039293277418e-01,-8.856671725709187593e-01,-5.523483040122626614e-02,1.004513533424082672e+00,1.379996246304682872e+00,3.730163879825224016e-01,3.477381851935279489e-01,-8.761294120826527143e-01,-4.505045032541467320e-02,1.034643658819787593e+00,1.314173215958499563e+00,3.635672924903909364e-01,2.981765177459957950e-01,-8.732390725577845458e-01,-3.470506190206348873e-02,1.068719877360999604e+00,1.252198917409644841e+00,3.531013824837045401e-01,2.582064542884372482e-01,-8.768063939790328165e-01,-2.611820211584143375e-02,1.098260683551314232e+00,1.199624461646749074e+00,3.413712476928394968e-01,2.218959359099559880e-01,-8.937609209444085101e-01,-6.900801941983501775e-02,1.015803070804571107e+00,1.158316154914489804e+00,3.288698574848902267e-01,1.891714409055944013e-01,-8.872019122920604683e-01,-5.531326212279663590e-02,1.042226215206365714e+00,1.158316154921997798e+00,3.288698574346123893e-01,1.891714409288409449e-01,-8.013269148571983136e-01,-9.891663397180991413e-03,1.030139488863247355e+00,1.154913546883054920e+00,3.024799272801749206e-01,1.997422936600742605e-01,-6.907046395980023235e-01,-2.334227346470528486e-02,1.501714612013350214e+00,1.158316154914489804e+00,3.288698574848902267e-01,1.891714409055944013e-01,-8.338767617871356563e-01,3.132165775265086105e-01,1.309825903841171701e+00,1.158316154914489804e+00,3.288698574848902267e-01,1.891714409055944013e-01,-7.042782458978902316e-01,-5.157289652159059712e-02,1.478294176983173891e+00,3.797607995795858060e-01,-2.485193503109109636e-01,-4.353677171714016580e-01,-7.855504879460637468e-01,-3.339972375499395407e-01,1.358458576710658505e+00,-2.698944126973164548e-01,-4.390895092569037095e-01,2.091418976591648882e+00,-7.720786676814984650e-01,-3.466325115699153692e-01,1.380750249068321889e+00,-3.636213040798685903e-01,1.083411826312434378e+00,1.626362847197404760e+00,-5.681290440237909412e-01,-2.565505780971705230e-01,1.432055005847322260e+00,-3.636213040798685903e-01,1.083411826312434378e+00,1.626362847197404760e+00,-8.544955844103252485e-01,3.055833612642792629e-01,1.277478944072215183e+00,1.910994179691955397e+00,2.880761247856895579e-01,3.347154336879637482e-01,-9.538704408814697722e-01,3.723631616092968333e-01,9.835497808496334038e-01,1.717388490647391963e+00,-6.485867245324951069e-01,8.573212723067963337e-02,-9.560597967030978195e-01,3.990848809395208252e-01,9.726312102277486771e-01,2.167065591532985280e+00,6.836485853394004553e-02,-1.429038072628814326e+00,-8.213335490424220620e-01,4.394139082036014332e-01,7.921740420474068234e-01,2.167065591532985280e+00,6.836485853394004553e-02,-1.429038072628814326e+00
|
||||
1.266666700000000034e+00,-8.309265900000000205e-01,-3.794336999999999710e-02,8.989546299999999768e-01,1.480440108020749435e+00,3.663111266064150162e-01,4.607867441583873291e-01,-8.265072451118007368e-01,-3.784415218420516397e-02,8.752396586606675521e-01,1.480440108020749435e+00,3.663111266064150162e-01,4.607867441583873291e-01,-8.782074831681248028e-01,-1.817945922774168166e-01,8.632555594669339971e-01,1.697758377671939156e+00,-2.817125287953078927e-01,1.085487762258869060e-01,-7.409482153367443757e-01,-1.174229578176264888e-01,5.041447850628304472e-01,1.697919190250184451e+00,-2.860278727924247533e-01,1.079745967341543406e-01,-7.811013251230863874e-01,-1.238087464181802377e-01,5.192245171267262371e-01,1.693184964887907817e+00,-1.469703784244600631e-01,1.654374294556823499e-01,-7.264472458136890243e-01,-5.980041883896909660e-02,8.386957028804686853e-02,1.760867165765050979e+00,3.213708037387876248e-01,3.257628369587105555e-01,-7.855838267971061439e-01,-7.961336637146491924e-02,5.767319213472103800e-02,1.528228245925315365e+00,3.034208421559448365e-01,1.742729862406772745e-01,-6.105868984217149853e-01,-5.003723853071398442e-02,-2.701749356804478142e-05,1.528228245925315365e+00,3.034208421559448365e-01,1.742729862406772190e-01,-9.734528983315535733e-01,-4.607114948931630150e-03,8.462476458427152792e-01,1.587499448747565767e+00,-1.825180959139281467e-01,1.691454207844812208e-01,-8.838733847625973583e-01,1.751238412206512773e-02,4.539110637851415664e-01,1.587690041746936398e+00,2.359345852679471389e-01,1.761267084160452190e-01,-8.996764446437135465e-01,1.218655622372036632e-02,4.890295131700887477e-01,1.481522359872667449e+00,5.218764622960947452e-01,1.822597826938469889e-02,-1.123402235732233523e+00,-3.220895992439828937e-02,9.863677090621875143e-02,1.508807426429361387e+00,4.072648268844039632e-01,5.114814795659564095e-02,-1.187849191483028255e+00,-2.996321632905158544e-02,7.820432467859370074e-02,1.704024681412625641e+00,3.804580732419066136e-01,1.733119849884736385e-01,-1.018123235311631403e+00,1.166075256142647815e-03,7.126525914621664737e-03,1.704024681412625641e+00,3.804580732419066136e-01,1.733119849884736940e-01,-8.886260304853068615e-01,-6.152916345471746290e-02,9.763597691473357987e-01,1.447688706778969436e+00,3.629610873678439931e-01,4.191366908095375821e-01,-8.722525420101012728e-01,-4.980916053804071431e-02,1.002932555955241112e+00,1.408289350440822929e+00,3.587090192691614887e-01,3.750080333180347836e-01,-8.630048203857946243e-01,-4.036752803845582160e-02,1.033393324338702568e+00,1.349622150481628813e+00,3.517964114635824813e-01,3.314043211813288980e-01,-8.603449866334417218e-01,-3.118089516225941785e-02,1.067819227779586155e+00,1.294088842727096456e+00,3.439535721194083573e-01,2.960550220878094829e-01,-8.640336918106320541e-01,-2.389713143407891371e-02,1.097694174623488284e+00,1.246871557019408217e+00,3.350519758044927521e-01,2.637727242351591839e-01,-8.804205220722312042e-01,-6.313328543108474855e-02,1.013329882268065418e+00,1.209689313453626625e+00,3.254610603278279557e-01,2.345238195072046894e-01,-8.740562407184363503e-01,-5.054241803433973113e-02,1.040343129260083543e+00,1.209689313460170057e+00,3.254610602764867466e-01,2.345238195276688475e-01,-7.885384702689696157e-01,-3.674973119422296486e-03,1.029607989310910243e+00,1.205093061320029690e+00,3.040529780612954980e-01,2.419850202048599574e-01,-6.779796574102214812e-01,-3.813821087300349466e-02,1.495119635445535167e+00,1.209689313453626625e+00,3.254610603278279557e-01,2.345238195072046894e-01,-8.304693273767440598e-01,3.049510045765177479e-01,1.323073832647811976e+00,1.209689313453626625e+00,3.254610603278279557e-01,2.345238195072046894e-01,-6.909161803398417012e-01,-6.558987628933662939e-02,1.470446166221931472e+00,4.001449885134544249e-01,-2.357591174731319406e-01,-4.594431557244105235e-01,-7.779264305877724439e-01,-3.435262688831471900e-01,1.344311972407407962e+00,-2.761733789141028184e-01,-4.652588124442577633e-01,2.060784450365325426e+00,-7.647227164675429734e-01,-3.571726476574564879e-01,1.366163677766060847e+00,-3.499314927732876113e-01,1.057457590150186366e+00,1.604997279079887651e+00,-5.575038498057416358e-01,-2.752766263655267442e-01,1.418084432695195574e+00,-3.499314927732876668e-01,1.057457590150186366e+00,1.604997279079887651e+00,-8.511058809171767603e-01,2.982898215041651091e-01,1.290524040924722948e+00,1.948677619276797834e+00,2.868378966073193426e-01,3.925832283474571804e-01,-9.571720577690245868e-01,3.702213375961048714e-01,1.000170670105206661e+00,1.757412593861847450e+00,-6.993152670000867266e-01,9.029929709928716242e-02,-9.596541162175991069e-01,3.972479547346010054e-01,9.900979297030593207e-01,2.220045710268063743e+00,9.598635938656517597e-02,-1.395132466732417420e+00,-8.178449995804146777e-01,4.479464958434641875e-01,8.178707130255690183e-01,2.220045710268063743e+00,9.598635938656517597e-02,-1.395132466732417420e+00
|
||||
1.283333300000000010e+00,-8.161808400000000185e-01,-3.029694999999999958e-02,8.984330099999999764e-01,1.495074114979479285e+00,3.441172094804617054e-01,4.609621054091279091e-01,-8.114335475004672560e-01,-2.969550490959099731e-02,8.747889452739786575e-01,1.495074114979479285e+00,3.441172094804617054e-01,4.609621054091279091e-01,-8.636478979065985717e-01,-1.730818111646778568e-01,8.589052668025631831e-01,1.705205011551846672e+00,-2.808473214951892616e-01,9.029806576249262140e-02,-7.264688158567190746e-01,-1.081636389483489752e-01,4.975952435735331303e-01,1.704731617238890218e+00,-2.683996931087920257e-01,9.204368510231195066e-02,-7.653045009003205390e-01,-1.140206370471824326e-01,5.149737651655582615e-01,1.702506720864087164e+00,-9.430130946380697876e-02,1.684698976295795902e-01,-7.342636396514151675e-01,-4.967102574310597318e-02,7.735103200433951498e-02,1.772876814170169624e+00,3.459188473972538702e-01,3.252299651821098370e-01,-7.941716004122224559e-01,-6.914434627967264158e-02,5.269815482037918525e-02,1.477150902482181394e+00,3.198858472350199489e-01,1.347423948315324971e-01,-6.190738279704711688e-01,-4.673688140823487047e-02,-7.854814338818003061e-03,1.477150902482181616e+00,3.198858472350199489e-01,1.347423948315324416e-01,-9.578043153258819498e-01,4.918839480169970996e-03,8.445282787205020680e-01,1.581051726625921861e+00,-1.532683430232771593e-01,1.828018348934362103e-01,-8.790784904679439515e-01,2.366940476720577266e-02,4.498384891577304479e-01,1.581277199919321141e+00,2.575477874961780711e-01,1.870372443280794716e-01,-8.942063580139446577e-01,1.849184945701328603e-02,4.853299527506355071e-01,1.471360065224432967e+00,5.417783615807648667e-01,2.621308665670872215e-02,-1.124949312475024721e+00,-3.245851667100640991e-02,9.985306132581961425e-02,1.502096809952711887e+00,4.178337134580742407e-01,6.334846647586853119e-02,-1.189626656859285481e+00,-3.130976846196854152e-02,8.006771751688637750e-02,1.692686137088371456e+00,3.928659653654117401e-01,1.824671344372333082e-01,-1.021075068759504267e+00,1.187050171281303634e-03,6.839953671592680085e-03,1.692686137088371456e+00,3.928659653654117401e-01,1.824671344372333637e-01,-8.750568188480819520e-01,-5.529676389855718577e-02,9.744967929150127883e-01,1.466430834421878382e+00,3.416766412612624038e-01,4.237409585621071950e-01,-8.589863030476033723e-01,-4.428016386383393233e-02,1.001550796614036454e+00,1.431797293893791734e+00,3.386019917923098754e-01,3.842619569335569141e-01,-8.500699367702030385e-01,-3.568682127763739276e-02,1.032359669348501763e+00,1.379693901552094371e+00,3.333800474407747627e-01,3.451320448067963231e-01,-8.477126038925005824e-01,-2.763750309094455820e-02,1.067091605194470993e+00,1.330175495440910849e+00,3.273330813264322403e-01,3.132861612986788669e-01,-8.515998541325601190e-01,-2.151475938769297630e-02,1.097201671146899704e+00,1.288017899384269693e+00,3.203987555965336909e-01,2.840868708613896176e-01,-8.675404411469918031e-01,-5.699792497017960868e-02,1.011112195856402884e+00,1.254783334062862910e+00,3.128620277785988391e-01,2.575195194057129933e-01,-8.613312202132636930e-01,-4.556853025641273425e-02,1.038672385331033343e+00,1.254783334068380274e+00,3.128620277264356764e-01,2.575195194236389318e-01,-7.752925440732806317e-01,9.635986197418719423e-04,1.030011305323638826e+00,1.249676985771374094e+00,2.952638384786348547e-01,2.628435777090458170e-01,-6.707929102226998230e-01,-5.506879502635930734e-02,1.489626625018795059e+00,1.254783334062862910e+00,3.128620277785988391e-01,2.575195194057129933e-01,-8.278042068672165632e-01,2.956338319201177178e-01,1.339026582791507325e+00,1.254783334062862910e+00,3.128620277785988391e-01,2.575195194057129933e-01,-6.834458740494023798e-01,-8.150579166302317213e-02,1.463728452141153991e+00,4.307667200912522198e-01,-2.276789935162752965e-01,-4.683263396102139153e-01,-7.701688194263655030e-01,-3.553287984269095645e-01,1.328712347407545069e+00,-2.904931827441137315e-01,-4.978427849217910706e-01,2.038599993083417328e+00,-7.572936691533785902e-01,-3.701013868872832790e-01,1.350021028336464202e+00,-3.440579240775823444e-01,1.022616126168975903e+00,1.581245848142017074e+00,-5.476292688287899280e-01,-2.960516005952002483e-01,1.403871285374739264e+00,-3.440579240775823999e-01,1.022616126168975903e+00,1.581245848142017074e+00,-8.483289582255537642e-01,2.902492665571129171e-01,1.306171314101433056e+00,1.987710130107932072e+00,2.710937248975381908e-01,4.433529169101570466e-01,-9.576669730032255634e-01,3.696220011813025619e-01,1.018987706720608566e+00,1.810336165153841437e+00,-7.276099414964112277e-01,8.705442973485927327e-02,-9.607678402061082812e-01,3.969648563718022327e-01,1.009998177259980645e+00,2.252564389630886232e+00,1.328342235333931642e-01,-1.360019795968849143e+00,-8.165631775980345397e-01,4.593270466480822156e-01,8.436901669222416356e-01,2.252564389630886232e+00,1.328342235333931365e-01,-1.360019795968849143e+00
|
||||
1.300000000000000044e+00,-8.015605900000000172e-01,-2.304855999999999919e-02,8.983677700000000099e-01,1.504330055148219492e+00,3.207238235466658427e-01,4.530392822412995790e-01,-7.964004219890770120e-01,-2.207249218976781863e-02,8.748229133053828654e-01,1.504330055148219492e+00,3.207238235466658427e-01,4.530392822412995790e-01,-8.498768801594298594e-01,-1.645599497004051615e-01,8.554359247485195938e-01,1.708846389913618813e+00,-2.803397778801170470e-01,6.799351396242764300e-02,-7.122680611202377721e-01,-1.010976757514532864e-01,4.919945503614445714e-01,1.707523677095103665e+00,-2.447453267431778379e-01,7.308913276538557546e-02,-7.497952700330269282e-01,-1.062217967819402142e-01,5.114374069559312064e-01,1.709663702565040966e+00,-4.530783378999966166e-02,1.651547231441566899e-01,-7.402667921155394737e-01,-4.240860793371338533e-02,7.274030284063021101e-02,1.778155211355456400e+00,3.544037056170243338e-01,3.111287615651069371e-01,-8.007109342383692541e-01,-6.087428237411183357e-02,4.862676143373408089e-02,1.452512075047015738e+00,3.239432051105212151e-01,1.022342969761241699e-01,-6.252078384298556113e-01,-4.424184816704834766e-02,-1.261057982140276895e-02,1.452512075047015738e+00,3.239432051105212151e-01,1.022342969761241144e-01,-9.418462303977053196e-01,1.470544023347558280e-02,8.427111871819392697e-01,1.573319234988201254e+00,-1.227486807827635473e-01,1.868803926786666847e-01,-8.742847073363356758e-01,2.851342538375462726e-02,4.458513881939181189e-01,1.573403965563694218e+00,2.829816529957061566e-01,1.879174061703333121e-01,-8.886235300708997809e-01,2.371854311156586237e-02,4.817582300297327258e-01,1.458362295777470230e+00,5.653469401703622443e-01,2.280114224734133485e-02,-1.128090471977243103e+00,-3.248460994544469932e-02,1.023804842603997511e-01,1.493436855736526736e+00,4.309442006866811004e-01,6.523634595003770242e-02,-1.193016412547982519e+00,-3.185824979342392893e-02,8.340238523414034155e-02,1.683353001866786380e+00,4.072825404384915471e-01,1.837189332427182631e-01,-1.025562711001377192e+00,6.346890761821655236e-04,7.696023335161686352e-03,1.683353001866786380e+00,4.072825404384915471e-01,1.837189332427183186e-01,-8.620045723563508622e-01,-4.876447419483143780e-02,9.729485142015276145e-01,1.480255149434106077e+00,3.188274160290787140e-01,4.190395227122802879e-01,-8.462547256847335886e-01,-3.848589109949922260e-02,1.000477205681965742e+00,1.451169542336877782e+00,3.165044071807454618e-01,3.829512714439978205e-01,-8.376964132130675367e-01,-3.074711707485792631e-02,1.031612632986848022e+00,1.407537655384751174e+00,3.125059518885650589e-01,3.470900786232086754e-01,-8.356514828176402343e-01,-2.384656567190104187e-02,1.066611408694861707e+00,1.366071242435885846e+00,3.078440391347988525e-01,3.178039708719097578e-01,-8.397329359297740492e-01,-1.888114113943423905e-02,1.096909115663693646e+00,1.330694344988699207e+00,3.024788020052137094e-01,2.908526787258958746e-01,-8.555745835838974855e-01,-4.994280524585485714e-02,1.009114818458788809e+00,1.302709374736733539e+00,2.966155763908288057e-01,2.662322847246753055e-01,-8.494117398612028857e-01,-3.989482967739887975e-02,1.037218324934490621e+00,1.302709374741176429e+00,2.966155763379085819e-01,2.662322847398763126e-01,-7.618468207112710777e-01,4.096031305982662796e-03,1.031036307614609848e+00,1.297868364393454099e+00,2.830184605250852803e-01,2.697333352659886385e-01,-6.623032015916199278e-01,-7.433516470423341682e-02,1.484157342655608947e+00,1.302709374736733539e+00,2.966155763908288057e-01,2.662322847246753055e-01,-8.241564718907283815e-01,2.835465347992660035e-01,1.356384635607710942e+00,1.302709374736733539e+00,2.966155763908288057e-01,2.662322847246753055e-01,-6.749999128924624170e-01,-9.941616928087565475e-02,1.456964248408419760e+00,4.616703971288495523e-01,-2.203712915632914382e-01,-4.850377595301781919e-01,-7.633714003674963999e-01,-3.681766717147412216e-01,1.313132647713530998e+00,-3.071063929881259758e-01,-5.281240834198643874e-01,2.017606130024903077e+00,-7.509345117837755712e-01,-3.840247524211815588e-01,1.333922570454616707e+00,-3.431111118450682618e-01,9.890573940362877847e-01,1.552897295850371506e+00,-5.392069453086949515e-01,-3.179625556179450085e-01,1.390043917057594669e+00,-3.431111118450682618e-01,9.890573940362877847e-01,1.552897295850371506e+00,-8.445796968565112417e-01,2.798746141900239626e-01,1.323231407647172064e+00,2.036929857871353722e+00,2.492177504871249116e-01,4.724661003019078875e-01,-9.557324588893788553e-01,3.723451308221160105e-01,1.040700836077002922e+00,1.880545283783382038e+00,-7.314593978098035132e-01,5.610750371313242418e-02,-9.592692289308702991e-01,4.000692869466859758e-01,1.033156223949390107e+00,2.264234472814272703e+00,1.840298667575400726e-01,-1.342318157762118602e+00,-8.161246126382539767e-01,4.733458895602253302e-01,8.704216543818951157e-01,2.264234472814272703e+00,1.840298667575400726e-01,-1.342318157762118602e+00
|
||||
1.316666700000000079e+00,-7.871609699999999599e-01,-1.707258000000000039e-02,8.990050299999999828e-01,1.515990753324148788e+00,2.957143486565154689e-01,4.327477115637065608e-01,-7.815543696765607784e-01,-1.573725548023389292e-02,8.755801871983650564e-01,1.515990753324148788e+00,2.957143486565154689e-01,4.327477115637065608e-01,-8.380247121148083345e-01,-1.564715064237805764e-01,8.522728173797645690e-01,1.707911939464256346e+00,-2.856349588209046164e-01,4.895737117136402666e-02,-6.980655354723310779e-01,-9.568023782721152282e-02,4.873035558124190758e-01,1.705596738807089618e+00,-2.201735610726086034e-01,5.820512905402391163e-02,-7.342522720691062599e-01,-1.001144411551652125e-01,5.085507679193701502e-01,1.713384013860720589e+00,-1.020469577016545632e-03,1.637757739651747313e-01,-7.440840807464497164e-01,-3.787290451963977456e-02,6.963461331016068678e-02,1.775736938173234858e+00,3.487579088988415066e-01,2.924355395196864271e-01,-8.047011347272265969e-01,-5.526934553404403566e-02,4.516269194281291588e-02,1.445494675998165279e+00,3.167801002570888591e-01,8.030654966862590949e-02,-6.284387441814354158e-01,-4.246745720738403368e-02,-1.480119555939465870e-02,1.445494675998165279e+00,3.167801002570888591e-01,8.030654966862584010e-02,-9.254859075021157899e-01,2.517372621552669762e-02,8.416941067602989879e-01,1.564608466032605394e+00,-9.279166302080736617e-02,1.862298793322091917e-01,-8.688958296117905711e-01,3.330303823160271626e-02,4.430046285812922480e-01,1.564324872325606242e+00,3.108798822816132290e-01,1.836768937501269683e-01,-8.823364911147048018e-01,2.902102490617865585e-02,4.793357167942414176e-01,1.442846812345467633e+00,5.912849828159060239e-01,1.290939404171616289e-02,-1.131546360630719450e+00,-3.189449991388981775e-02,1.070261353485672529e-01,1.484409865438909959e+00,4.403759016484822264e-01,6.331227716581377951e-02,-1.196639315214088395e+00,-3.155468902809260151e-02,8.862151307982495119e-02,1.659630792042416259e+00,4.203560917971307931e-01,1.726483041939601282e-01,-1.029830228304774220e+00,-1.138149536111920240e-03,1.066287584291335244e-02,1.659630792042416259e+00,4.203560917971307931e-01,1.726483041939601837e-01,-8.495343199453885275e-01,-4.285647613127605698e-02,9.719558803617752707e-01,1.493960402335814841e+00,2.940158300412516468e-01,3.971462725938267879e-01,-8.340175436255259367e-01,-3.359508579002123269e-02,9.999733605745373399e-01,1.467500063779794583e+00,2.918547440074477084e-01,3.593564323558900986e-01,-8.257925908236812829e-01,-2.683527871358620462e-02,1.031425175930837712e+00,1.428349075732320284e+00,2.881194865568293406e-01,3.217540169577896569e-01,-8.241196515298222502e-01,-2.095031109405751102e-02,1.066629240412855895e+00,1.391283667445143424e+00,2.837603309358628367e-01,2.909929272195040384e-01,-8.285189900896612336e-01,-1.676745862240691318e-02,1.097000849895054975e+00,1.359603664925359778e+00,2.787377102324369860e-01,2.626329921811514923e-01,-8.441688207728476057e-01,-4.404450153408156349e-02,1.007926771303803593e+00,1.334444970664673269e+00,2.732514689373908290e-01,2.366690360819736216e-01,-8.380692970530428942e-01,-3.523271145015730021e-02,1.036455663639694436e+00,1.334444970668274832e+00,2.732514688840359529e-01,2.366690360953194738e-01,-7.482589073267614799e-01,3.944908220865697701e-03,1.033216970962987480e+00,1.330238522883766539e+00,2.606607510193287847e-01,2.394934227967386309e-01,-6.619478010768151677e-01,-9.403759799399044605e-02,1.480873759364128128e+00,1.334444970664673269e+00,2.732514689373908290e-01,2.366690360819736216e-01,-7.954563192164908481e-01,2.785943585819394830e-01,1.365890324176848303e+00,1.334444970664673269e+00,2.732514689373908290e-01,2.366690360819736216e-01,-6.751641296780563906e-01,-1.176407505863003577e-01,1.452625795027292055e+00,5.059869675886987661e-01,-2.237667194556572092e-01,-4.786403997115844522e-01,-7.557759407151399822e-01,-3.822664710316766024e-01,1.297048737510462013e+00,-3.320362701482910683e-01,-5.690172409932224840e-01,1.998918969179582561e+00,-7.439021072638168919e-01,-3.994405334920010375e-01,1.317101727439177417e+00,-3.437780906411083692e-01,9.429655094867125387e-01,1.520657971126548658e+00,-5.303422095705447870e-01,-3.427776347214524510e-01,1.376463902236084058e+00,-3.437780906411084247e-01,9.429655094867125387e-01,1.520657971126548658e+00,-8.154811218427702180e-01,2.768789690453291596e-01,1.332337494762874108e+00,2.118661347734750677e+00,2.852306378345534910e-01,5.625463601840230421e-01,-9.525601332116373499e-01,3.748448585892935614e-01,1.063374140468089868e+00,1.961449372133716285e+00,-7.408891943984787787e-01,3.487873476667402439e-02,-9.569745724047353796e-01,4.028426852985506623e-01,1.057484049342233279e+00,2.285969683320692170e+00,2.408724350717919016e-01,-1.304621328706712546e+00,-8.154248760591007450e-01,4.904772229712063281e-01,9.005565085222124733e-01,2.285969683320692170e+00,2.408724350717919294e-01,-1.304621328706712768e+00
|
||||
1.333333300000000055e+00,-7.736132399999999798e-01,-1.135675000000000053e-02,9.002957499999999502e-01,1.523531457274642786e+00,2.716687651825152594e-01,4.134823797040924065e-01,-7.675325879427147280e-01,-9.761508332495122051e-03,8.770058123954962426e-01,1.523531457274642786e+00,2.716687651825152594e-01,4.134823797040924065e-01,-8.265198097268682265e-01,-1.488496770630655386e-01,8.502990447708169697e-01,1.703313436792433189e+00,-2.891824925879634689e-01,3.760781348027829318e-02,-6.851756833934738999e-01,-9.122573251061985578e-02,4.838607236516308530e-01,1.700270757014707312e+00,-1.959081729218168089e-01,5.026251495583961004e-02,-7.201851159981212946e-01,-9.514666794261390781e-02,5.065219016914650485e-01,1.713693306286889539e+00,3.548430470566505540e-02,1.648051167482203483e-01,-7.459047953607238490e-01,-3.540938365379442399e-02,6.790131498715107350e-02,1.768738527663755500e+00,3.381604312022032377e-01,2.754257499141106735e-01,-8.064726935648525163e-01,-5.200123058676915655e-02,4.275815187721633548e-02,1.437730782798671170e+00,3.043507670219339767e-01,6.219650591823853297e-02,-6.292730012569975884e-01,-4.236262441545118884e-02,-1.499436137630852373e-02,1.437730782798671170e+00,3.043507670219339767e-01,6.219650591823847052e-02,-9.098893853382241659e-01,3.478431965688749683e-02,8.411104938200971715e-01,1.555809798224044416e+00,-6.971118364482585539e-02,1.783577802120860645e-01,-8.619128261911235267e-01,3.730578951373783592e-02,4.411125862698674349e-01,1.554940924586765361e+00,3.395380408167105180e-01,1.720327601337683920e-01,-8.743411401909964020e-01,3.364955011058233525e-02,4.778311703086448037e-01,1.425371612672689192e+00,6.182711084383438749e-01,-6.134669011196094111e-03,-1.134044587939647020e+00,-3.027930130806831543e-02,1.132795198552384863e-01,1.473759602730616125e+00,4.530171564325579658e-01,5.262184110759289546e-02,-1.199352142025373658e+00,-2.972838424353419634e-02,9.565685835325102304e-02,1.644610076984476699e+00,4.349247923925583237e-01,1.591155884402047915e-01,-1.033289205061083127e+00,-1.785533584703326293e-03,1.521877947343716619e-02,1.644610076984476699e+00,4.349247923925583237e-01,1.591155884402048470e-01,-8.379033641396479437e-01,-3.697536595410398641e-02,9.716227232031946492e-01,1.506281275801381492e+00,2.704812269223434429e-01,3.815975460914308171e-01,-8.227021070099022060e-01,-2.857945240057080394e-02,1.000082402874545862e+00,1.485660835589796669e+00,2.690815105171910915e-01,3.477300616360004537e-01,-8.148538463648098418e-01,-2.272588160579995520e-02,1.031811063790626148e+00,1.455550088751891069e+00,2.665574612480502981e-01,3.139654454142855045e-01,-8.135262293318292759e-01,-1.800163228120892425e-02,1.067204694771580753e+00,1.427127813856585048e+00,2.635565300799625477e-01,2.862723448107983848e-01,-8.181554390730871873e-01,-1.496033663653241648e-02,1.097678413479955761e+00,1.402748719182066006e+00,2.600704965205798969e-01,2.606697781576771122e-01,-8.336631951376404226e-01,-3.743238943382540262e-02,1.007251856504105536e+00,1.383263938701228213e+00,2.562138454222036565e-01,2.371611742298771752e-01,-8.276227991911757620e-01,-3.012706567425432400e-02,1.036215547456438069e+00,1.383263938703908735e+00,2.562138453682852313e-01,2.371611742404541312e-01,-7.361186354849188485e-01,5.387604954145100433e-03,1.035224985022331401e+00,1.379711426544029340e+00,2.476723739220886011e-01,2.387247399669495673e-01,-6.523475010125097118e-01,-1.133429995795489642e-01,1.474689225663915249e+00,1.383263938701228213e+00,2.562138454222036565e-01,2.371611742298771752e-01,-7.861648090742550110e-01,2.658657607058383388e-01,1.383925142226042126e+00,1.383263938701228213e+00,2.562138454222036565e-01,2.371611742298771752e-01,-6.656852447016652352e-01,-1.353458654888949619e-01,1.445232373689803396e+00,5.346705665136187724e-01,-2.190971285902630072e-01,-5.024594982844242663e-01,-7.494373126066026236e-01,-3.942443594844901034e-01,1.281872593590883014e+00,-3.445212132227811197e-01,-5.995050115879916319e-01,1.963975639845434884e+00,-7.382535349952157322e-01,-4.125352171893903463e-01,1.301325778164627689e+00,-3.357919946852312987e-01,9.111069005233781715e-01,1.485215752369568598e+00,-5.223940697164808356e-01,-3.667791579491626597e-01,1.361769604059787309e+00,-3.357919946852312987e-01,9.111069005233781715e-01,1.485215752369568598e+00,-8.060139255695831784e-01,2.660702752378502067e-01,1.350225017725855237e+00,2.184318952717094753e+00,2.505988961862769537e-01,5.901394164428289679e-01,-9.456337713413104362e-01,3.816824809727554779e-01,1.089707507033584877e+00,2.056030688499666415e+00,-7.240336731980712148e-01,-1.156975113636522084e-02,-9.506074299487334844e-01,4.099423725467367108e-01,1.085873449706721283e+00,2.288084848124902315e+00,3.131455409198634077e-01,-1.287215965264753681e+00,-8.133792397739812996e-01,5.107846403687789083e-01,9.330937303774513580e-01,2.288084848124902315e+00,3.131455409198634077e-01,-1.287215965264753681e+00
|
||||
1.350000000000000089e+00,-7.615493300000000243e-01,-6.524489999999999977e-03,9.019771399999999550e-01,1.536440881616320420e+00,2.489611261088091609e-01,3.922567240352892726e-01,-7.550540380973380650e-01,-4.610327047825405963e-03,8.788235769408739850e-01,1.536440881616320420e+00,2.489611261088091609e-01,3.922567240352892726e-01,-8.169729059818723327e-01,-1.416315330491386137e-01,8.483357866398631986e-01,1.695932275666684141e+00,-2.977243431729824641e-01,3.387335196160230766e-02,-6.729109426733720367e-01,-8.716945843622390944e-02,4.810383374431327907e-01,1.692222555366467374e+00,-1.730547651191711722e-01,4.974854712672049234e-02,-7.067334161617836452e-01,-9.075503888068039982e-02,5.049170156620489402e-01,1.711569240167082340e+00,6.824180424301892756e-02,1.719911383827420759e-01,-7.468764369523083202e-01,-3.458145603491503267e-02,6.690887579061227664e-02,1.758999808570264722e+00,3.262634690946351612e-01,2.648563495991492212e-01,-8.072106222036691259e-01,-5.087176333613695201e-02,4.101775169813691446e-02,1.430281951527784257e+00,2.906381741930239015e-01,5.239499279975351476e-02,-6.291470721924307119e-01,-4.294389974719164949e-02,-1.428602399876248430e-02,1.430281951527784257e+00,2.906381741930239015e-01,5.239499279975345924e-02,-8.956806081452175494e-01,4.415407367198425498e-02,8.416151979033266173e-01,1.548945474381113074e+00,-5.983179142437686920e-02,1.716941971055021277e-01,-8.519489461706836186e-01,4.280522904924927846e-02,4.407647982273885656e-01,1.547406543795955436e+00,3.693999244806220883e-01,1.619410354437255950e-01,-8.630998374078020507e-01,3.970681075046043895e-02,4.778047644616410516e-01,1.407159781052684577e+00,6.473566815195506141e-01,-2.593063192881826101e-02,-1.133953225198708559e+00,-2.694988497038000586e-02,1.219592756574205406e-01,1.465328100929842448e+00,4.597382068744229611e-01,4.469508175911306169e-02,-1.199368684531891160e+00,-2.626109976210269648e-02,1.047464437041564778e-01,1.602968757364322094e+00,4.472049526966555555e-01,1.306288903109836530e-01,-1.033580258576749067e+00,-3.276335298543490288e-03,2.220018460119180248e-02,1.602968757364322094e+00,4.472049526966555555e-01,1.306288903109837085e-01,-8.275951666853158528e-01,-3.198105046393739243e-02,9.717408959016639036e-01,1.522695906532997467e+00,2.483772282054353964e-01,3.644272917581766191e-01,-8.126457074055565277e-01,-2.457127259175390099e-02,1.000604908153079231e+00,1.506257277046337828e+00,2.477849252918494782e-01,3.348524116346456303e-01,-8.051259264324808207e-01,-1.968456355630672158e-02,1.032575854465908716e+00,1.482275993497628175e+00,2.463725195543229052e-01,3.053265519686770291e-01,-8.041323544712366544e-01,-1.608185091385900406e-02,1.068112245098609581e+00,1.459627691599785226e+00,2.445300771952150232e-01,2.810679470721161866e-01,-8.090108827882483977e-01,-1.407783487417731128e-02,1.098633276786135760e+00,1.440162113285789580e+00,2.423069050547743686e-01,2.586004567520759911e-01,-8.241434911912872696e-01,-3.241551581011117844e-02,1.007217634727537225e+00,1.424556759182779020e+00,2.397598295863069828e-01,2.379319755256332491e-01,-8.182321513059003237e-01,-2.641228608298007777e-02,1.036505291267574291e+00,1.424556759184733901e+00,2.397598295320121642e-01,2.379319755338658582e-01,-7.256635651284222277e-01,6.617150896019290476e-03,1.037468572384428134e+00,1.421454058375751117e+00,2.337847953726846228e-01,2.388129777450366531e-01,-6.490384020811299504e-01,-1.306986635884478110e-01,1.470308473809162297e+00,1.424556759182779020e+00,2.397598295863069828e-01,2.379319755256332491e-01,-7.700629014357995850e-01,2.563731034145558807e-01,1.400575763667827989e+00,1.424556759182779020e+00,2.397598295863069828e-01,2.379319755256332491e-01,-6.623788053093824235e-01,-1.512949300513686257e-01,1.439852684660578364e+00,5.718092037170385833e-01,-2.160691539611722112e-01,-5.068295809658482920e-01,-7.426921314936492102e-01,-4.049058813100226417e-01,1.266761633868204617e+00,-3.527266602299245490e-01,-6.447776819806215753e-01,1.923810026425733177e+00,-7.321652709387748148e-01,-4.245311585421183143e-01,1.285257375208406661e+00,-3.125348849703531995e-01,8.677517561836619597e-01,1.458335607419370739e+00,-5.139085677567782895e-01,-3.912189779495984787e-01,1.345229801678894388e+00,-3.125348849703531995e-01,8.677517561836620708e-01,1.458335607419370739e+00,-7.896807518076829346e-01,2.582061275055077543e-01,1.366789559195656256e+00,2.259095609680200845e+00,2.284087761097853275e-01,6.269244178128414724e-01,-9.375882131457777824e-01,3.894777607111041817e-01,1.118554996691634162e+00,2.151613764827112085e+00,-7.024182260467040084e-01,-5.784574739329673143e-02,-9.430757403354494972e-01,4.178532506182894291e-01,1.116888453811331283e+00,2.291022372270942409e+00,3.885272902758434843e-01,-1.269912983115998761e+00,-8.104631930393406680e-01,5.318570448817252494e-01,9.693776779688920708e-01,2.291022372270942409e+00,3.885272902758434843e-01,-1.269912983115998761e+00
|
||||
1.366666699999999901e+00,-7.500798600000000427e-01,-1.192570000000000002e-03,9.035995999999999473e-01,1.548729311901758665e+00,2.299756226468506748e-01,3.752185389764046697e-01,-7.432401824364559539e-01,1.008330664778529957e-03,8.805710271798767863e-01,1.548729311901758665e+00,2.299756226468506748e-01,3.752185389764046697e-01,-8.074525530504151893e-01,-1.341702203489292256e-01,8.467805957300553743e-01,1.687193886806654497e+00,-3.022262678018399762e-01,3.177312193770701759e-02,-6.620878638559002383e-01,-8.329736067754708873e-02,4.784407747753611218e-01,1.683192539194789061e+00,-1.517233347777857122e-01,4.950368015492281198e-02,-6.949105956769868753e-01,-8.653570410465714902e-02,5.032911702014881694e-01,1.707754964847330692e+00,9.589550915777203532e-02,1.764825200327100885e-01,-7.469451137066803748e-01,-3.432022559376899512e-02,6.604522469844381627e-02,1.747995487879461241e+00,3.141417400384886593e-01,2.533871173547231348e-01,-8.070304221235097275e-01,-5.031215498987656048e-02,3.940029581262888964e-02,1.422251342147581976e+00,2.765804839810706572e-01,4.212496877953260388e-02,-6.281319657084755148e-01,-4.419653661266034761e-02,-1.338159477690078342e-02,1.422251342147581976e+00,2.765804839810706572e-01,4.212496877953254837e-02,-8.823642292950407695e-01,5.324853275421407434e-02,8.424433033697623641e-01,1.543015093079078914e+00,-6.775001154039896056e-02,1.629655331517932404e-01,-8.367276147625044569e-01,4.939401906424680661e-02,4.412035632108842753e-01,1.540709078698371925e+00,3.994939888843521691e-01,1.493788120948488507e-01,-8.463584238677368532e-01,4.685199017327106030e-02,4.784522343557687796e-01,1.386665366887413819e+00,6.773613817254887648e-01,-5.122756604696472593e-02,-1.128815571792731509e+00,-2.155784116870633482e-02,1.320871968211088099e-01,1.454071407832256302e+00,4.745305668932886523e-01,3.043287198132177754e-02,-1.194463963883147350e+00,-2.044412601422682108e-02,1.158087883244707100e-01,1.565280643367650937e+00,4.660436673268766317e-01,9.983472768589007895e-02,-1.029634912058151386e+00,-2.812360464539837013e-03,3.008544851496265660e-02,1.565280643367650937e+00,4.660436673268766317e-01,9.983472768589013446e-02,-8.175405316230767161e-01,-2.657324111722957419e-02,9.720243759910611736e-01,1.539044004353349093e+00,2.299473657869626486e-01,3.528735343355256515e-01,-8.028179061600947408e-01,-2.002419316538243607e-02,1.001211385406522991e+00,1.527515588568786109e+00,2.301367572893312785e-01,3.291173314383556425e-01,-7.955682561834153121e-01,-1.603074965111035005e-02,1.033368216397139161e+00,1.510942932799798522e+00,2.298131068750419725e-01,3.053735209026188779e-01,-7.948132197928160503e-01,-1.357172750785570411e-02,1.069007932561270247e+00,1.495344152317330311e+00,2.291130904023760406e-01,2.858371972267003680e-01,-7.998350040500399327e-01,-1.272211263650253020e-02,1.099560054828492728e+00,1.481881920301109323e+00,2.281419591071938979e-01,2.677158587593397865e-01,-8.148281939203806390e-01,-2.665016021562682802e-02,1.007348463475335132e+00,1.471010401496263276e+00,2.268928109815662453e-01,2.510189109523131012e-01,-8.089747153986984740e-01,-2.201496977391736998e-02,1.036895059400580799e+00,1.471010401497525377e+00,2.268928109269586491e-01,2.510189109579241129e-01,-7.155877068228856386e-01,9.078602437673648912e-03,1.039363573835988319e+00,1.468716353923039675e+00,2.236624839361828765e-01,2.513821303612968072e-01,-6.397000380490929228e-01,-1.460333898452765844e-01,1.465481816176557039e+00,1.471010401496263276e+00,2.268928109815662453e-01,2.510189109523131012e-01,-7.552514753144116133e-01,2.456175427766424946e-01,1.417563856242130216e+00,1.471010401496263276e+00,2.268928109815662453e-01,2.510189109523131012e-01,-6.529460961397000052e-01,-1.652077786042939755e-01,1.434071429296651434e+00,6.028716047602856731e-01,-1.972677990415342419e-01,-5.176652532081562619e-01,-7.346395485123464741e-01,-4.121174362069665587e-01,1.252161952777485432e+00,-3.425817521176505176e-01,-6.955318051255976464e-01,1.873305044585197088e+00,-7.245806785951379725e-01,-4.330129716086765779e-01,1.269489805603690069e+00,-2.686724434841929465e-01,8.253810554031064672e-01,1.446996851388198557e+00,-5.037399480063380341e-01,-4.120451668349706109e-01,1.325455015086346666e+00,-2.686724434841929465e-01,8.253810554031064672e-01,1.446996851388198557e+00,-7.748233628946257223e-01,2.489895329120126455e-01,1.383869664721314008e+00,2.334818241936845507e+00,1.879670070482637179e-01,6.562385653262939877e-01,-9.275359455004525966e-01,3.983961203761063885e-01,1.149166031256255494e+00,2.258152837635272192e+00,-6.824722633980205844e-01,-1.115147162916017565e-01,-9.334372406246623788e-01,4.267269621429373161e-01,1.149938603545306970e+00,2.305570640616381173e+00,4.718590336403709062e-01,-1.249450979498368364e+00,-8.044171004627040933e-01,5.545696987440189574e-01,1.010825628135405108e+00,2.305570640616381173e+00,4.718590336403709062e-01,-1.249450979498368364e+00
|
||||
1.383333300000000099e+00,-7.370301099999999606e-01,5.178150000000000287e-03,9.049598699999999996e-01,1.560050510615576647e+00,2.133833805880408496e-01,3.558957720484326459e-01,-7.298747498729734051e-01,7.599602586958297511e-03,8.820496603138610059e-01,1.560050510615576647e+00,2.133833805880408496e-01,3.558957720484326459e-01,-7.966067414814076431e-01,-1.255779574283007738e-01,8.453230860664708857e-01,1.676992495111756964e+00,-2.988853906950739714e-01,2.821884136942837129e-02,-6.524905472232531700e-01,-7.923569952109868475e-02,4.752992817323523078e-01,1.673164986303707247e+00,-1.322697431637968601e-01,4.604927768110251424e-02,-6.845596735512925468e-01,-8.201295583602744022e-02,5.009170178578317145e-01,1.701815027583819973e+00,1.191298534401361991e-01,1.746167323850299491e-01,-7.460769335919102963e-01,-3.404112885948616662e-02,6.441685215891390648e-02,1.736083041460438459e+00,3.051054193400278836e-01,2.384022352708890791e-01,-8.060309954338678029e-01,-4.958857623060664022e-02,3.721895375520074128e-02,1.413909783242325080e+00,2.656458295744148490e-01,2.898166653696508666e-02,-6.264978213647711680e-01,-4.582400194612398781e-02,-1.359102419357192254e-02,1.413909783242325080e+00,2.656458295744148490e-01,2.898166653696502768e-02,-8.673750795054948615e-01,6.348210624594705087e-02,8.432029411815302744e-01,1.536924215174522823e+00,-9.096792426384553432e-02,1.533398606999737679e-01,-8.144673997750959682e-01,5.780449480876799495e-02,4.421412503859469822e-01,1.533686698700012840e+00,4.298725874146999137e-01,1.347901741216027960e-01,-8.223971052264570369e-01,5.582514565144038043e-02,4.794775142813690882e-01,1.362978463732973822e+00,7.076812066492952358e-01,-8.129336728595902561e-02,-1.116622741006847441e+00,-1.380043874537452420e-02,1.433016110527564613e-01,1.438123737110498901e+00,5.002806727747366455e-01,9.361348816732610600e-03,-1.182644902728074987e+00,-1.201683175695684308e-02,1.286786415714001319e-01,1.530357588360867105e+00,4.946632659743920302e-01,6.678062419958773199e-02,-1.019851410651515744e+00,-8.501159842224347007e-05,3.821374741213902360e-02,1.530357588360867105e+00,4.946632659743920302e-01,6.678062419958780138e-02,-8.058235375415073731e-01,-1.981846622018530735e-02,9.721886150147376338e-01,1.555216983399621000e+00,2.137863846362539622e-01,3.425004358134636773e-01,-7.912973132230894935e-01,-1.408638843609094984e-02,1.001644693295577815e+00,1.549534430951535757e+00,2.146042677976215951e-01,3.282560200654234261e-01,-7.842769235620643542e-01,-1.095243599612645558e-02,1.033947278467324260e+00,1.541650268636890253e+00,2.151865281473494262e-01,3.140086660292600307e-01,-7.836919628655492076e-01,-9.682832820225561674e-03,1.069652353623707253e+00,1.534300132897678415e+00,2.154551760781101000e-01,3.022749080250009546e-01,-7.887692730170804412e-01,-1.013357922955486663e-02,1.100204084673120031e+00,1.527908779972668496e+00,2.155576427596039013e-01,2.913799170608298850e-01,-8.037985460328810339e-01,-1.939795087414154101e-02,1.007415014194911862e+00,1.522675096708455689e+00,2.154319382935556138e-01,2.813297153484539126e-01,-7.979541923822058846e-01,-1.618302815790472263e-02,1.037151478919874137e+00,1.522675096709033449e+00,2.154319382387385462e-01,2.813297153511562509e-01,-7.041882068006428685e-01,1.417286062182808101e-02,1.040853374860778668e+00,1.521557319212984316e+00,2.145824034068901931e-01,2.814039960263543527e-01,-6.252021666094336183e-01,-1.587937557619796825e-01,1.459327659941072719e+00,1.522675096708455689e+00,2.154319382935556138e-01,2.813297153484539126e-01,-7.424233453484080369e-01,2.341874188695954873e-01,1.437414801602591830e+00,1.522675096708455689e+00,2.154319382935556138e-01,2.813297153484539126e-01,-6.381679200443801658e-01,-1.765702978146324320e-01,1.426991744403060647e+00,6.294994200929692196e-01,-1.685333161327981777e-01,-5.283358492112469884e-01,-7.234751628124603817e-01,-4.161068025818273064e-01,1.237059666962909477e+00,-3.143953752346656527e-01,-7.495614948203770389e-01,1.811041446368076402e+00,-7.137732381339138010e-01,-4.382062962101455073e-01,1.253045403924519352e+00,-2.104864873207294151e-01,7.836789774356112126e-01,1.445318384117571853e+00,-4.904535719463326005e-01,-4.293597691137274741e-01,1.301958055137273584e+00,-2.104864873207294151e-01,7.836789774356112126e-01,1.445318384117571853e+00,-7.621461448074107192e-01,2.389206759416928894e-01,1.403973283961246432e+00,2.401145752724000104e+00,1.304060478512800436e-01,6.634223989971248514e-01,-9.131130237703493080e-01,4.087011842512047743e-01,1.182359120876254721e+00,2.362376052879318511e+00,-6.601803434224468026e-01,-1.649898872473375688e-01,-9.193142690278902629e-01,4.367960995510792865e-01,1.185565214894019892e+00,2.325205290368796973e+00,5.546912908324038716e-01,-1.228406910119150597e+00,-7.932746323057647819e-01,5.773536517956087133e-01,1.056336865533510139e+00,2.325205290368796973e+00,5.546912908324038716e-01,-1.228406910119150597e+00
|
||||
1.399999999999999911e+00,-7.216616099999999534e-01,1.237474000000000039e-02,9.060672199999999510e-01,1.568076285747611376e+00,1.993148339106885214e-01,3.303700777512084685e-01,-7.141969550269884337e-01,1.487486637446074067e-02,8.832643997076149445e-01,1.568076285747611376e+00,1.993148339106885214e-01,3.303700777512084685e-01,-7.841142699577490216e-01,-1.159865036602857058e-01,8.442114439027448292e-01,1.665532762910401088e+00,-2.843726086820940191e-01,2.051124553373742318e-02,-6.448804728118213703e-01,-7.540149851620657484e-02,4.715591065713514163e-01,1.662323793495270152e+00,-1.150336356356666256e-01,3.662896800408955295e-02,-6.764961571797897255e-01,-7.753481509559753682e-02,4.977560812567590198e-01,1.693506338778098197e+00,1.379859957197788478e-01,1.633463819517458893e-01,-7.450493143844465482e-01,-3.382599335781764915e-02,6.185693275894033061e-02,1.723382696858506646e+00,3.006358929537651936e-01,2.173054412616375330e-01,-8.050722263617728913e-01,-4.863023882366400430e-02,3.439745930013513031e-02,1.405684927952740360e+00,2.594811013762862717e-01,1.070117515304519137e-02,-6.251872177253506857e-01,-4.816017629799525940e-02,-1.529307479962047772e-02,1.405684927952740360e+00,2.594811013762862717e-01,1.070117515304513413e-02,-8.497060196708516866e-01,7.494226056399827529e-02,8.436731884831636386e-01,1.529826588416036026e+00,-1.238783627627704637e-01,1.430232708331063973e-01,-7.859930574964691941e-01,6.735527419133792437e-02,4.435364659073079974e-01,1.525456874724508527e+00,4.584171566472541870e-01,1.178830908202000149e-01,-7.922544148490124893e-01,6.593717041885420460e-02,4.808614909851506303e-01,1.336940797954676574e+00,7.355407038920068752e-01,-1.148589932944759223e-01,-1.097440374044365452e+00,-4.323800653384168857e-03,1.547394112074314543e-01,1.417078382441282036e+00,5.353102730402572451e-01,-1.868883966791406309e-02,-1.163896355776089964e+00,-1.616619124424035006e-03,1.424019889107079606e-01,1.502558561318030783e+00,5.313536275157545452e-01,3.433684528743728703e-02,-1.004239967658435928e+00,4.850424188689766818e-03,4.598621450613202266e-02,1.502558561318030783e+00,5.313536275157545452e-01,3.433684528743734948e-02,-7.918271769659933623e-01,-1.154335565791417620e-02,9.722622996061460743e-01,1.567896330268116589e+00,1.998517570704518020e-01,3.243471021585304093e-01,-7.774539248180197815e-01,-6.609502281147675191e-03,1.001937020270690759e+00,1.567969985214063833e+00,2.008603896379282938e-01,3.179449757990372438e-01,-7.706299856946917659e-01,-4.271970926632206664e-03,1.034348965784508856e+00,1.569156670602174897e+00,2.017585625470015298e-01,3.115420856183131471e-01,-7.701934366892080330e-01,-4.088100472918447352e-03,1.070078278317165177e+00,1.570566634099389569e+00,2.023892920402352580e-01,3.062695336410898306e-01,-7.753210542907318370e-01,-5.703827985373761608e-03,1.100582275299641921e+00,1.571651504617837869e+00,2.029069636006375910e-01,3.013739366074996706e-01,-7.905682919552772248e-01,-1.022108412490155965e-02,1.007477310724487207e+00,1.572312913098804055e+00,2.032302575550415102e-01,2.968550142227250332e-01,-7.846728404855076722e-01,-8.466035443607862476e-03,1.037325476297907834e+00,1.572312913098786957e+00,2.032302575001609657e-01,2.968550142226401012e-01,-6.900984724609751098e-01,1.938554916458189864e-02,1.042224243019773899e+00,1.572796837922913360e+00,2.034238274447998374e-01,2.968462005617909516e-01,-6.095731636637520268e-01,-1.707403855047621988e-01,1.454261980302116397e+00,1.572312913098804055e+00,2.032302575550415102e-01,2.968550142227250332e-01,-7.200955663914498928e-01,2.244350025165998963e-01,1.455036576797181791e+00,1.572312913098804055e+00,2.032302575550415102e-01,2.968550142227250332e-01,-6.225208169755390708e-01,-1.869461453606381385e-01,1.421103885296847169e+00,6.602597353526432622e-01,-1.323394428122482425e-01,-5.265012324676121569e-01,-7.094157488983824367e-01,-4.183820774903098116e-01,1.222066358807739173e+00,-2.712143480537347329e-01,-8.113698507746497368e-01,1.746735050464194527e+00,-6.998333766164790415e-01,-4.416297844389848182e-01,1.236411428008742819e+00,-1.430314309942090634e-01,7.350055872132192913e-01,1.457873589415391802e+00,-4.744902441968688045e-01,-4.427846890634578592e-01,1.275927509078191191e+00,-1.430314309942090634e-01,7.350055872132192913e-01,1.457873589415391802e+00,-7.399186264134340885e-01,2.307303236308551053e-01,1.421913429805987894e+00,2.475776755142018004e+00,8.241544293080985129e-02,6.747713092790160738e-01,-8.932898339300595625e-01,4.187490090327038450e-01,1.217327253659697739e+00,2.466756254240348945e+00,-6.317601121529380359e-01,-2.206554517168313745e-01,-8.996390319726350615e-01,4.464093383381435021e-01,1.223041500262079806e+00,2.348123258227154064e+00,6.406731538708654305e-01,-1.208286729503762702e+00,-7.761259093342910420e-01,5.986542269452025389e-01,1.105107687360052493e+00,2.348123258227154064e+00,6.406731538708655416e-01,-1.208286729503762702e+00
|
||||
1.416666699999999945e+00,-7.058267099999999683e-01,1.944405000000000092e-02,9.074309799999999981e-01,1.571270219073021446e+00,1.863423219457561453e-01,2.960637117151675435e-01,-6.980177845275091775e-01,2.183629678086614762e-02,8.847321219374078005e-01,1.571270219073021446e+00,1.863423219457561453e-01,2.960637117151675435e-01,-7.720021835877732830e-01,-1.062337845715190382e-01,8.439568180184895407e-01,1.653206189309656349e+00,-2.611044469277737923e-01,6.513655843819320980e-03,-6.405199226044410166e-01,-7.257842596037544780e-02,4.681283532598071728e-01,1.650809804609150833e+00,-1.002866170486164804e-01,1.980483046732380709e-02,-6.719426559209710215e-01,-7.384294629608781357e-02,4.947435133040530841e-01,1.683018773764447529e+00,1.526417609488789906e-01,1.418824049674005938e-01,-7.452884860889413821e-01,-3.415890056196384944e-02,5.923963291640599316e-02,1.710336322084906824e+00,3.019706655228258652e-01,1.895400622896163678e-01,-8.056188898057331516e-01,-4.786707153351128785e-02,3.188516774763555661e-02,1.398577997875846135e+00,2.596189689562232172e-01,-1.283072745861410686e-02,-6.257769800712670305e-01,-5.164300946545427595e-02,-1.782012639511119934e-02,1.398577997875846135e+00,2.596189689562232172e-01,-1.283072745861416411e-02,-8.308858139372017337e-01,8.686999476940725218e-02,8.440508321555508786e-01,1.520776001752786932e+00,-1.616830183908341545e-01,1.317067830401134065e-01,-7.543463227112250369e-01,7.655009010289993976e-02,4.457115191604182902e-01,1.515102588372919223e+00,4.810557597356334703e-01,9.785668161979997615e-02,-7.592426242592995589e-01,7.569176386026786607e-02,4.829626161218050218e-01,1.310179335976585646e+00,7.565182913393294628e-01,-1.507401537815308834e-01,-1.073203964549676259e+00,5.537786878187414552e-03,1.652561777526487252e-01,1.390623510479897407e+00,5.754670089599018823e-01,-5.460031901758283929e-02,-1.140037832998983314e+00,9.477350114000976031e-03,1.555787711632023451e-01,1.493665406814344232e+00,5.717825368648237205e-01,9.090152224537887196e-03,-9.843008976780863728e-01,1.185607129768336161e-02,5.277636295985438375e-02,1.493665406814344010e+00,5.717825368648237205e-01,9.090152224537953116e-03,-7.775399221468246580e-01,-2.455400386285774145e-03,9.726590408939710386e-01,1.577487237443374157e+00,1.867797353579591091e-01,3.026554485613595635e-01,-7.633354080031623523e-01,1.730324418110328576e-03,1.002528969379523183e+00,1.585435203973266205e+00,1.875689108276840655e-01,3.096654840593126012e-01,-7.567261994755399845e-01,3.323783742247144249e-03,1.035030456991854919e+00,1.598887535348457956e+00,1.881633534750378478e-01,3.166800643203790400e-01,-7.564229179167659689e-01,2.343687236002942563e-03,1.070748200160117847e+00,1.612110797404880724e+00,1.884770397468431002e-01,3.224604905728349347e-01,-7.615374389312840053e-01,-6.678801295453458409e-04,1.101148125736793215e+00,1.623299758808271820e+00,1.886458690330125310e-01,3.278295829058468502e-01,-7.772143817778756070e-01,2.969851470696540253e-04,1.008009135082004404e+00,1.631962720762567320e+00,1.886232302464441457e-01,3.327806034512732491e-01,-7.712150825681691746e-01,3.995071452492010762e-04,1.037888014415687010e+00,1.631962720761926944e+00,1.886232301916661858e-01,3.327806034478579256e-01,-6.762615777461917776e-01,2.646473797494870717e-02,1.044117578191020801e+00,1.634616543388465404e+00,1.875737089610501063e-01,3.326721976770288802e-01,-5.899727405841189709e-01,-1.823495572944431875e-01,1.446492645920991027e+00,1.631962720762567320e+00,1.886232302464441457e-01,3.327806034512732491e-01,-7.105452060652514001e-01,2.077958249312393813e-01,1.480231157471294523e+00,1.631962720762567320e+00,1.886232302464441457e-01,3.327806034512732491e-01,-6.026894147140668956e-01,-1.968457451204394248e-01,1.412465092662592347e+00,6.836314143048253245e-01,-9.403211945703859875e-02,-5.349358444973165705e-01,-6.952123071021761858e-01,-4.197760590967337668e-01,1.206380531571575432e+00,-2.232814483678760842e-01,-8.613891392445617301e-01,1.680985453313314171e+00,-6.858139650155662403e-01,-4.439223637508982745e-01,1.219291220355423366e+00,-8.532198797516900302e-02,6.945805485395470935e-01,1.465555031235166172e+00,-4.592693234596458840e-01,-4.534644808197381693e-01,1.249768345885974519e+00,-8.532198797516901689e-02,6.945805485395470935e-01,1.465555031235166172e+00,-7.306786006168483061e-01,2.155834329843290820e-01,1.447616326062743708e+00,2.522150086030545690e+00,2.688174931292318642e-03,6.259535452166710146e-01,-8.668464145007854782e-01,4.278862741411553205e-01,1.254963563496729995e+00,2.549651421064750512e+00,-5.987771795585493662e-01,-2.528894402198310076e-01,-8.735138930911624522e-01,4.549465212139915393e-01,1.262795964463609089e+00,2.363399868265998460e+00,7.150169475201201275e-01,-1.183063732645509791e+00,-7.542906710820735938e-01,6.174119425374088310e-01,1.154476104768182854e+00,2.363399868265998460e+00,7.150169475201200164e-01,-1.183063732645509791e+00
|
||||
1.433333299999999921e+00,-6.918050300000000430e-01,2.531096000000000040e-02,9.091731699999999750e-01,1.571385953886521136e+00,1.777757149517582014e-01,2.552693932859695369e-01,-6.837177869904550453e-01,2.743409767390249041e-02,8.865451098541675679e-01,1.571385953886521136e+00,1.777757149517582014e-01,2.552693932859695369e-01,-7.625256488744693861e-01,-9.741671440440666241e-02,8.448335037924014079e-01,1.640583624318580513e+00,-2.348272709418532389e-01,-1.373357516320246156e-02,-6.398608903973225237e-01,-7.135283048652894811e-02,4.659562441129472821e-01,1.638928592890070979e+00,-8.787592782266562264e-02,-3.459518602470252908e-03,-6.712357873278864684e-01,-7.155049907922564345e-02,4.928705743759593250e-01,1.671142863618564345e+00,1.638040458122467513e-01,1.125107665642528232e-01,-7.477134315376430251e-01,-3.548824626017434841e-02,5.759049445121072752e-02,1.696960030126705377e+00,3.059230596470955965e-01,1.559395646873758257e-01,-8.084746705687995139e-01,-4.776504585616887788e-02,3.051116004720109270e-02,1.396185583392059781e+00,2.636756596987187007e-01,-3.879920319845813620e-02,-6.289936632607604494e-01,-5.620601299094200171e-02,-1.992002633130907086e-02,1.396185583392059781e+00,2.636756596987187007e-01,-3.879920319845819865e-02,-8.134817161451867173e-01,9.792868697374704223e-02,8.449506628525887963e-01,1.510477752228875037e+00,-2.021836935820225112e-01,1.202948383278634459e-01,-7.227510541616515294e-01,8.424355505346765860e-02,4.493919616228801428e-01,1.503749581825298165e+00,4.918726775746638524e-01,7.646663790073970901e-02,-7.268437920810033592e-01,8.388829543439418890e-02,4.865188799750242987e-01,1.287392159536262293e+00,7.651656416867007593e-01,-1.841942461750838145e-01,-1.045598506209831191e+00,1.466877179948337939e-02,1.734138266255906280e-01,1.361846612966842285e+00,6.120056654810991370e-01,-9.526588240482898595e-02,-1.112640510796394810e+00,2.007472176932128399e-02,1.661969260010486837e-01,1.508773166624763462e+00,6.073994605756575238e-01,-4.686069892667289218e-03,-9.606364583009269209e-01,2.035803799258597419e-02,5.792562681749126308e-02,1.508773166624763240e+00,6.073994605756575238e-01,-4.686069892667221563e-03,-7.648882445415647879e-01,6.208387366573822619e-03,9.737564969712915186e-01,1.583693758064288915e+00,1.779919365849550739e-01,2.708670945416501441e-01,-7.507522205340677601e-01,9.654321516731441052e-03,1.003752604992354192e+00,1.599331886677663128e+00,1.782803228025534870e-01,2.874452533971283974e-01,-7.442680650104280815e-01,1.056465719547473175e-02,1.036305578175046538e+00,1.625481005758493414e+00,1.780581169509095618e-01,3.040151473216172184e-01,-7.440400689184741845e-01,8.549139924830747445e-03,1.071980259103128219e+00,1.651101337803574598e+00,1.774451639765509126e-01,3.176458475870551634e-01,-7.491358510433033802e-01,4.345918882685000442e-03,1.102240936222141920e+00,1.672792407951135374e+00,1.765526812257006972e-01,3.302828946609411287e-01,-7.654730079965332834e-01,1.096410313467659908e-02,1.009443158806458074e+00,1.689615959613713247e+00,1.754228411493349293e-01,3.419197954912255311e-01,-7.592862421641293214e-01,9.331431872557617579e-03,1.039239263335226759e+00,1.689615959612560170e+00,1.754228410948412697e-01,3.419197954846185938e-01,-6.633042144698956255e-01,3.052560214647419279e-02,1.046484468892323383e+00,1.694418047355360502e+00,1.706868114855763507e-01,3.414040835995090784e-01,-5.732802203290032761e-01,-1.965258296101040081e-01,1.439266695763833370e+00,1.689615959613713247e+00,1.754228411493349293e-01,3.419197954912255311e-01,-6.924112733062609548e-01,1.902495776546107575e-01,1.500046733967132617e+00,1.689615959613713247e+00,1.754228411493349293e-01,3.419197954912255311e-01,-5.862315754037185078e-01,-2.090152379276675187e-01,1.404539117029161455e+00,7.116042920035630104e-01,-5.423171685951270332e-02,-5.436336650535233961e-01,-6.843618098293369201e-01,-4.219942538689699929e-01,1.190670810153749315e+00,-1.739465360464692856e-01,-9.125520583721439261e-01,1.616693029710147167e+00,-6.751767595184977599e-01,-4.469728022570117476e-01,1.202062285849007317e+00,-3.440314936933067114e-02,6.498438058466448064e-01,1.471240967162216418e+00,-4.480557065777458492e-01,-4.636925686181350703e-01,1.223945122053996970e+00,-3.440314936933067808e-02,6.498438058466448064e-01,1.471240967162216418e+00,-7.127373130164740278e-01,1.999332019319422504e-01,1.468065377308583441e+00,2.588286304444181951e+00,-4.900492825358104820e-02,5.818354061846260361e-01,-8.384998606451026237e-01,4.332108055868468255e-01,1.293438351701176492e+00,2.628043868919244463e+00,-5.511833249974130711e-01,-2.876104845295453516e-01,-8.451262217816455369e-01,4.595373810147590499e-01,1.303491287174390667e+00,2.367566511261357309e+00,7.961430626055353565e-01,-1.172266613380396505e+00,-7.301592598548914959e-01,6.308223173858142907e-01,1.204564799143344800e+00,2.367566511261357309e+00,7.961430626055354676e-01,-1.172266613380396505e+00
|
||||
1.449999999999999956e+00,-6.813464299999999474e-01,2.894688000000000122e-02,9.108758300000000530e-01,1.569559636806677982e+00,1.785621967249556297e-01,2.103590182754088433e-01,-6.731814977061751915e-01,3.066394450773424901e-02,8.882412129465855344e-01,1.569559636806677982e+00,1.785621967249556297e-01,2.103590182754088433e-01,-7.574922419198174550e-01,-9.063008655938514790e-02,8.467958405966404811e-01,1.629014533981190560e+00,-2.125642851173797365e-01,-3.988196964944679818e-02,-6.423512441676418883e-01,-7.208529436499616638e-02,4.656399633654276782e-01,1.627880417281118541e+00,-7.886538007364739256e-02,-3.208871832826701992e-02,-6.737307223461808103e-01,-7.107431557641991082e-02,4.927373906479726728e-01,1.659573637453499284e+00,1.711380053657765854e-01,7.793892234300249522e-02,-7.517814619577981583e-01,-3.773652285861837929e-02,5.751935592935103481e-02,1.684658803235046243e+00,3.105284964941498194e-01,1.187413465220321235e-01,-8.130045712495300725e-01,-4.830153220944634340e-02,3.076024916631998549e-02,1.402868741600505897e+00,2.705956981580791010e-01,-6.333090451446299340e-02,-6.341390204029426769e-01,-6.110753072653417328e-02,-2.092250997393802284e-02,1.402868741600506119e+00,2.705956981580791010e-01,-6.333090451446304892e-02,-7.996907717830598061e-01,1.067922629061683337e-01,8.465501448148924357e-01,1.502137524554703285e+00,-2.462648304840320546e-01,1.118118805134661886e-01,-6.931089642061780687e-01,9.071899931878960044e-02,4.549051994752202344e-01,1.495434204835506931e+00,4.870711956032511281e-01,5.972454619679928856e-02,-6.970784923646573539e-01,9.068671294048008535e-02,4.918728580386353966e-01,1.275388033324120984e+00,7.590068467979623756e-01,-2.064112956774550312e-01,-1.015422043585973100e+00,2.285924752097785728e-02,1.780456715249200683e-01,1.342506515484243934e+00,6.262465856095401628e-01,-1.257738296929894195e-01,-1.082455143155194088e+00,2.946324240908981471e-02,1.718095555585182066e-01,1.530600901342427989e+00,6.202922610780059465e-01,-9.937438993229210510e-03,-9.318467504081496822e-01,2.900895323904474285e-02,6.160568935807725355e-02,1.530600901342427766e+00,6.202922610780059465e-01,-9.937438993229141121e-03,-7.551830251311839604e-01,1.324494282110620993e-02,9.755185174432690065e-01,1.587535395060704957e+00,1.785677380447709683e-01,2.305446960700145154e-01,-7.408706545872150162e-01,1.598161625219797488e-02,1.005503370584078571e+00,1.610483050147504702e+00,1.783319858210086484e-01,2.519890818544238686e-01,-7.342641439292885153e-01,1.629210860042781470e-02,1.038042883294661767e+00,1.649254873254905274e+00,1.772138303300987150e-01,2.733936754941743708e-01,-7.339020985252998619e-01,1.341876990987458246e-02,1.073657021118864519e+00,1.687322155370765353e+00,1.755639455397608462e-01,2.909625311581128249e-01,-7.388719232123975855e-01,8.296472726996436189e-03,1.103795744935515577e+00,1.719484086906244213e+00,1.734740852275182821e-01,3.072093623243890570e-01,-7.562470255770147309e-01,2.047861952707703825e-02,1.011747903393164227e+00,1.744330205943225742e+00,1.710909953614994095e-01,3.221357124879602463e-01,-7.497332634981063171e-01,1.710530341374021795e-02,1.041327307950783876e+00,1.744330205941588607e+00,1.710909953074430945e-01,3.221357124783439385e-01,-6.522568161075444904e-01,3.043753511366354553e-02,1.048392451509462919e+00,1.751168521109061516e+00,1.619069062959847538e-01,3.208563392884200005e-01,-5.588854239868288332e-01,-2.137449717554494311e-01,1.431625247095286824e+00,1.744330205943225742e+00,1.710909953614994095e-01,3.221357124879602463e-01,-6.653639625027123472e-01,1.724125859909358960e-01,1.512922350349378942e+00,1.744330205943225742e+00,1.710909953614994095e-01,3.221357124879602463e-01,-5.726401584153610891e-01,-2.240142181902060048e-01,1.396481577656399242e+00,7.417315052852470059e-01,-1.259693543440494612e-02,-5.591335616076122950e-01,-6.780600567753010122e-01,-4.251798794192489517e-01,1.174787467230411941e+00,-1.278067168468368098e-01,-9.625146474394443707e-01,1.555215092926389486e+00,-6.691917705397760763e-01,-4.509045530393386847e-01,1.184669441410033386e+00,6.154384043619835765e-03,6.033471301327284486e-01,1.470761410713829376e+00,-4.420434848962364605e-01,-4.740391481336218016e-01,1.199189380648383096e+00,6.154384043619836632e-03,6.033471301327283376e-01,1.470761410713829376e+00,-6.857995671726598852e-01,1.843449583668788916e-01,1.481781827000814955e+00,2.669095228639651207e+00,-8.275248348979376278e-02,5.628027163300711733e-01,-8.107585629766145274e-01,4.334017225818412866e-01,1.329843568514192498e+00,2.712703371782797745e+00,-5.032738374883588550e-01,-3.291254724143160004e-01,-8.171508320442396611e-01,4.587753418726179255e-01,1.342228118871627851e+00,2.385123234873746334e+00,8.827930105343314571e-01,-1.158075085840998719e+00,-7.045545504985439855e-01,6.380157343329029285e-01,1.255410258444027427e+00,2.385123234873746334e+00,8.827930105343314571e-01,-1.158075085840998719e+00
|
||||
1.466666699999999990e+00,-6.753956899999999930e-01,3.095117999999999828e-02,9.131866600000000389e-01,1.568252990808237879e+00,1.829743996534775596e-01,1.664030992566274403e-01,-6.672572528683935467e-01,3.226445723210576155e-02,8.905155007220163510e-01,1.568252990808237879e+00,1.829743996534775596e-01,1.664030992566274403e-01,-7.569590889360724439e-01,-8.531092812115620427e-02,8.496759143294686512e-01,1.618663930659992589e+00,-1.993770707178609269e-01,-7.528436812837936698e-02,-6.462780743754300561e-01,-7.460706424619940880e-02,4.672112201047726732e-01,1.617841604364909314e+00,-7.335990205818339327e-02,-6.924748059783826515e-02,-6.775895085811842744e-01,-7.214538000989210997e-02,4.944156665181917432e-01,1.649151889306837537e+00,1.758075387021964808e-01,3.636528357054601146e-02,-7.561173218002908980e-01,-4.027076675480726481e-02,5.917383063563469436e-02,1.672949823090779553e+00,3.100485996021241641e-01,7.403608557131013956e-02,-8.176876706724048871e-01,-4.860592058597727749e-02,3.242395813009504857e-02,1.421896166990300525e+00,2.750829115880237818e-01,-8.831362725440730643e-02,-6.394349005206935166e-01,-6.581903989362131169e-02,-2.008932520816793244e-02,1.421896166990300525e+00,2.750829115880237818e-01,-8.831362725440736194e-02,-7.904900930086796729e-01,1.137663865518742656e-01,8.491710321716857690e-01,1.491391070321038681e+00,-2.917553716443777034e-01,9.664581622839339692e-02,-6.669461950963180286e-01,9.337062682179853024e-02,4.627040002647710981e-01,1.485938335187953818e+00,4.593686550021984782e-01,3.606481194531163670e-02,-6.718019090231971413e-01,9.368889750730602373e-02,4.994818630573440443e-01,1.272493423811030810e+00,7.302014016758471282e-01,-2.281853493724277648e-01,-9.826564512974589327e-01,2.945916617968363793e-02,1.774963357031053568e-01,1.318915552775197453e+00,6.397509695361807136e-01,-1.716587090060584520e-01,-1.049539237385694879e+00,3.810439490492526643e-02,1.722151167103677660e-01,1.611080274818020852e+00,6.264328399583072304e-01,7.707101589726715433e-03,-8.995739282159403993e-01,4.047055979529935732e-02,6.116200428503214270e-02,1.611080274818020852e+00,6.264328399583072304e-01,7.707101589726783955e-03,-7.495798245870466392e-01,1.862097651254200625e-02,9.781616621866355832e-01,1.591614604834338920e+00,1.828639429932361338e-01,1.891957467084462996e-01,-7.350125947130023984e-01,2.064080172991729356e-02,1.008080054820410298e+00,1.621568243694460953e+00,1.822824899208524974e-01,2.134006958234962448e-01,-7.281961568923092099e-01,2.035128950105268356e-02,1.040576081416708210e+00,1.672637074971419002e+00,1.804206860209649210e-01,2.375225193476303287e-01,-7.276385282860228232e-01,1.665480840221894923e-02,1.076110390502910130e+00,1.722870776179457719e+00,1.778354245280844570e-01,2.572683063025696937e-01,-7.324693512696958120e-01,1.069485411162573486e-02,1.106116056814673065e+00,1.765241671744571805e+00,1.746288342816121053e-01,2.754699869427156833e-01,-7.507720031895384061e-01,2.839515690388029479e-02,1.015142094239776194e+00,1.797869223174108244e+00,1.710409140400402095e-01,2.921389492426292867e-01,-7.439562130450511068e-01,2.328058942946739304e-02,1.044401891509416425e+00,1.797869223171974173e+00,1.710409139865684269e-01,2.921389492300912605e-01,-6.452510748184537848e-01,2.777954423600480227e-02,1.050491687825902964e+00,1.806624846030117082e+00,1.572978923488343173e-01,2.897220311484610678e-01,-5.530433117358295458e-01,-2.338960509846810254e-01,1.424073901203859682e+00,1.797869223174108244e+00,1.710409140400402095e-01,2.921389492426292867e-01,-6.460097799501011151e-01,1.501846256162034099e-01,1.524714763744134949e+00,1.797869223174108244e+00,1.710409140400402095e-01,2.921389492426292867e-01,-5.677151308024094289e-01,-2.418348621907856488e-01,1.388698194213350279e+00,7.826057374350603446e-01,1.446903198210674341e-02,-5.679059159266954815e-01,-6.750907535596608611e-01,-4.309636020247967769e-01,1.157548778830574054e+00,-1.015071856441069481e-01,-1.013736217476767676e+00,1.512170516951134802e+00,-6.666565679827428648e-01,-4.573441850114074447e-01,1.165974222572164098e+00,2.752876433330607095e-02,5.532224169231496624e-01,1.461371394130081880e+00,-4.398969537854231504e-01,-4.859052775122877921e-01,1.176304912805624214e+00,2.752876433330607095e-02,5.532224169231495514e-01,1.461371394130081880e+00,-6.664204123482001529e-01,1.644582849668189128e-01,1.494558564099297993e+00,2.742666928367437862e+00,-1.142342900531330002e-01,5.121205311587960773e-01,-7.816785499904488344e-01,4.298931436817540752e-01,1.364216113946898457e+00,2.779422173133971441e+00,-4.476877541508630376e-01,-3.536754879699938181e-01,-7.877841772434001077e-01,4.542293710765948900e-01,1.378656615992764456e+00,2.385756196020023090e+00,9.640726285326337575e-01,-1.151557430085161204e+00,-6.789457917435921530e-01,6.402339431848003137e-01,1.301852405215623731e+00,2.385756196020023090e+00,9.640726285326337575e-01,-1.151557430085160982e+00
|
||||
1.483333299999999966e+00,-6.735897299999999976e-01,3.052068000000000142e-02,9.146342100000000030e-01,1.566258204170998924e+00,2.000407273411002607e-01,1.246319632561493362e-01,-6.657834507140995006e-01,3.140356320598040180e-02,8.918258159312300037e-01,1.566258204170998924e+00,2.000407273411002607e-01,1.246319632561493362e-01,-7.609382284250968409e-01,-8.252126233402229394e-02,8.530319394035386082e-01,1.612245615401065590e+00,-1.987032764606054269e-01,-1.123264989898188765e-01,-6.504386617270038196e-01,-7.842996717385926353e-02,4.704093308574305299e-01,1.611538752514658945e+00,-7.320258051451514203e-02,-1.071214031298020619e-01,-6.816218175545640801e-01,-7.460000457838289467e-02,4.976115615299776529e-01,1.642752055429312907e+00,1.764800079617413753e-01,-3.224539772260434211e-03,-7.591657184931523972e-01,-4.247097372024680184e-02,6.221205197019630262e-02,1.666000726145250743e+00,3.091297515506601923e-01,3.302223429682404204e-02,-8.209830093975736265e-01,-4.858175742594982721e-02,3.543110358471135424e-02,1.442521450507467717e+00,2.789844214403016109e-01,-1.116988854973556683e-01,-6.433899661574828954e-01,-6.989521773891407830e-02,-1.780829791674923973e-02,1.442521450507467717e+00,2.789844214403016109e-01,-1.116988854973557238e-01,-7.862144760770656271e-01,1.177701889336866536e-01,8.521340467336993019e-01,1.486229798493436949e+00,-3.403837787003360926e-01,8.451165359040423153e-02,-6.444015937646432324e-01,9.534843779116233820e-02,4.720976297187385873e-01,1.483686792755381179e+00,4.148545680599554086e-01,2.103462646929996419e-02,-6.508500784940618455e-01,9.577447660900191562e-02,5.086089152644022171e-01,1.284591085540060407e+00,6.866903933728979448e-01,-2.345082177336825224e-01,-9.479716668983114713e-01,3.552038586118750479e-02,1.731705589053889605e-01,1.319843757881533630e+00,6.131134345542801345e-01,-1.905109990420609800e-01,-1.014511706891053411e+00,4.543455007314665950e-02,1.660944897686190136e-01,1.669643266124904102e+00,5.914943258663545311e-01,2.381367206525037555e-02,-8.607786771801044789e-01,5.042421462465571796e-02,6.040983954173584358e-02,1.669643266124904102e+00,5.914943258663545311e-01,2.381367206525044494e-02,-7.471254747430351451e-01,2.153765252499344196e-02,9.808827580149936942e-01,1.593835076934295047e+00,1.999895773930553677e-01,1.466379732051126261e-01,-7.319686513268158778e-01,2.292771826257286247e-02,1.010542868138325279e+00,1.629336017849103646e+00,1.994417048599714248e-01,1.700062477640174319e-01,-7.245798802286409490e-01,2.217074941489003553e-02,1.042905429300092335e+00,1.690337799938576246e+00,1.974140524449845280e-01,1.932663371152000542e-01,-7.234824338619958439e-01,1.792319149349791765e-02,1.078363735034092441e+00,1.750450240888959952e+00,1.945276151580493940e-01,2.122638368339738735e-01,-7.279417226608514424e-01,1.149311999685740347e-02,1.108328577930734138e+00,1.801107846087351749e+00,1.909188898817900659e-01,2.297257063058507631e-01,-7.475803626341879227e-01,3.361023410711926757e-02,1.018600012745555006e+00,1.840039640027844037e+00,1.868600197482302439e-01,2.456647182176814603e-01,-7.403151283874431776e-01,2.707439661757720523e-02,1.047466060823784906e+00,1.840039640025084022e+00,1.868600196953268677e-01,2.456647182028245113e-01,-6.407769497937942926e-01,2.222301557852111170e-02,1.050807871662420734e+00,1.850605524160779725e+00,1.709799120293801211e-01,2.423386795452712184e-01,-5.505158279546382705e-01,-2.535154509456123972e-01,1.415842062107739663e+00,1.840039640027844037e+00,1.868600197482302439e-01,2.456647182176814603e-01,-6.202932078379135294e-01,1.312265516260733289e-01,1.529518083577250387e+00,1.840039640027844037e+00,1.868600197482302439e-01,2.456647182176814603e-01,-5.664877001407019330e-01,-2.593624916961174143e-01,1.380622194752779475e+00,8.257482555585131667e-01,3.342353011738541380e-02,-5.811004032889640625e-01,-6.746895371064268732e-01,-4.359889684701371282e-01,1.140154510842555480e+00,-8.587448286909867001e-02,-1.062553273080656613e+00,1.473190750002860261e+00,-6.669040014139058226e-01,-4.629585742576889928e-01,1.147231554359913419e+00,3.904277074961957222e-02,5.047741291806069341e-01,1.441675227363752532e+00,-4.409150420132396109e-01,-4.977423890484411473e-01,1.155071085855324586e+00,3.904277074961957222e-02,5.047741291806069341e-01,1.441675227363752532e+00,-6.406532215050169121e-01,1.476617463462255586e-01,1.500447791849215617e+00,2.816714078216714157e+00,-1.457827603486264723e-01,5.033802359206552834e-01,-7.571157432513457852e-01,4.224714080807400185e-01,1.392533994439636880e+00,2.860144542509159393e+00,-4.146146725532476318e-01,-3.988054097757253724e-01,-7.628926838877747585e-01,4.456366159307347252e-01,1.408906497285926651e+00,2.442498491077127465e+00,1.038491460323652804e+00,-1.115109287132818983e+00,-6.521776297442214432e-01,6.359757815624997868e-01,1.346813336559044672e+00,2.442498491077127465e+00,1.038491460323652804e+00,-1.115109287132818983e+00
|
||||
1.500000000000000000e+00,-6.745083499999999788e-01,2.868356000000000031e-02,9.149333699999999681e-01,1.565503372428103335e+00,2.285819233318691912e-01,8.995078728949194857e-02,-6.673261697151823268e-01,2.922084917509304436e-02,8.919101659280231909e-01,1.565503372428103335e+00,2.285819233318691912e-01,8.995078728949194857e-02,-7.674112542219663213e-01,-8.147474600649858012e-02,8.563050607005668891e-01,1.610254448248358727e+00,-2.095245138639257321e-01,-1.449598414361392973e-01,-6.530774007879784904e-01,-8.232586911999770218e-02,4.744959719874881077e-01,1.609504926121934520e+00,-7.670117512327911946e-02,-1.397162368699652601e-01,-6.840530465155966189e-01,-7.742020786403350230e-02,5.016482954627230484e-01,1.641203250514524647e+00,1.750238089471724268e-01,-3.451371239806501345e-02,-7.599522710169492878e-01,-4.358722041699653049e-02,6.608808056464882119e-02,1.663945957956309396e+00,3.056978105122121203e-01,9.134757575914801819e-04,-8.218389730396733484e-01,-4.780139223153557354e-02,3.910261786055891503e-02,1.458086309974991668e+00,2.787631543568217518e-01,-1.327012418767415658e-01,-6.447228512049203442e-01,-7.281065269236719484e-02,-1.411770483145351196e-02,1.458086309974991668e+00,2.787631543568217518e-01,-1.327012418767416213e-01,-7.857871208822406750e-01,1.195665550111598280e-01,8.552643075375605530e-01,1.485646104584729343e+00,-3.903863476657969400e-01,7.099933943654254676e-02,-6.251509086140681903e-01,9.635672085401719711e-02,4.828587367625850613e-01,1.486799105212066374e+00,3.556352067856090038e-01,9.221428394725148664e-03,-6.338193438061474616e-01,9.674453451761072520e-02,5.189510462210249475e-01,1.307319686938131831e+00,6.299237853433198309e-01,-2.332933754623173483e-01,-9.112325112343606648e-01,4.162986272484078126e-02,1.661976023609148534e-01,1.338937459650648920e+00,5.545244859485743971e-01,-1.923373949084722645e-01,-9.770961421731316765e-01,5.240275150983901564e-02,1.551583399094125792e-01,1.704198604458237121e+00,5.256902377025997053e-01,3.195500871822375827e-02,-8.167741821924654477e-01,5.892307244276710765e-02,5.985702285181895843e-02,1.704198604458237121e+00,5.256902377025997053e-01,3.195500871822382072e-02,-7.464018387817861200e-01,2.246600777748413574e-02,9.832688583407438454e-01,1.594151720857403420e+00,2.288688962262878102e-01,1.038322428367215305e-01,-7.303522437679699220e-01,2.328517611254953337e-02,1.012477682466629281e+00,1.631420357899789675e+00,2.291019227281242410e-01,1.185901700916443258e-01,-7.220535648843606769e-01,2.218230550647002156e-02,1.044608128200751995e+00,1.696753470854455603e+00,2.282739509015712098e-01,1.332921963987976910e-01,-7.201015836984849816e-01,1.776962197886855846e-02,1.080007507785865739e+00,1.761460962280654297e+00,2.267061532542935798e-01,1.453094069598295235e-01,-7.239913764673299168e-01,1.147409489239675610e-02,1.110079657967850464e+00,1.815928926063211435e+00,2.245824803939125980e-01,1.563565126949610640e-01,-7.450956513145899907e-01,3.617713381366167991e-02,1.021358996808766406e+00,1.857654086602816390e+00,2.220454399428739289e-01,1.664200601754313447e-01,-7.373190042810527922e-01,2.873990537872276110e-02,1.049871466469018078e+00,1.857654086599310528e+00,2.220454398902358684e-01,1.664200601595126061e-01,-6.374694300535005409e-01,1.356491641948006158e-02,1.048495393595118674e+00,1.870191598379849163e+00,2.111243408998745297e-01,1.637945796914780372e-01,-5.552481062770707743e-01,-2.705398778328964582e-01,1.409523186350141843e+00,1.857654086602816390e+00,2.220454399428739289e-01,1.664200601754313447e-01,-5.848801364817945991e-01,1.182683426465508253e-01,1.526340474577983164e+00,1.857654086602816390e+00,2.220454399428739289e-01,1.664200601754313447e-01,-5.729599975977111015e-01,-2.746526664132208917e-01,1.374895141081799110e+00,8.785156221377379282e-01,3.871865282680355541e-02,-5.794670115874777094e-01,-6.751890282730035331e-01,-4.396958884130602874e-01,1.123819023172090592e+00,-7.439346721754525049e-02,-1.115264229907893645e+00,1.441778096382962726e+00,-6.679857726933757789e-01,-4.671615764258451042e-01,1.129458866994482946e+00,4.650191179231262517e-02,4.522112753926235129e-01,1.423875407663775405e+00,-4.427949174365312102e-01,-5.071030667822747917e-01,1.135470343789660719e+00,4.650191179231263211e-02,4.522112753926235129e-01,1.423875407663775405e+00,-6.048844720498376404e-01,1.366533092222760870e-01,1.498206025842356404e+00,2.895981529237545260e+00,-1.765009972871429411e-01,5.514981241823447844e-01,-7.393133222300443119e-01,4.117833842718987558e-01,1.414769925334695255e+00,2.955170837568897646e+00,-3.893885676859162315e-01,-4.781031384839983800e-01,-7.443914431514334629e-01,4.336166766449340848e-01,1.433088734776450712e+00,2.557212616021333318e+00,1.111438378747864997e+00,-1.056208652105167678e+00,-6.249111831462912381e-01,6.238523173591843385e-01,1.389761488526508160e+00,2.557212616021333318e+00,1.111438378747864997e+00,-1.056208652105167678e+00
|
||||
1.516666700000000034e+00,-6.759285999999999905e-01,2.677867999999999915e-02,9.146226899999999604e-01,1.566342037662302955e+00,2.574856279741607468e-01,6.323317229541415563e-02,-6.694027885107701747e-01,2.709907623927005141e-02,8.914009017463343509e-01,1.566342037662302955e+00,2.574856279741607468e-01,6.323317229541415563e-02,-7.734152798816793517e-01,-8.089693789091544074e-02,8.588966709078041939e-01,1.611360358090772715e+00,-2.277231356242837290e-01,-1.734956329236441441e-01,-6.526615315771293613e-01,-8.567902828348476774e-02,4.785680720357858853e-01,1.610443357269573994e+00,-8.122927032371736467e-02,-1.675517607951480803e-01,-6.833427930259690086e-01,-7.994705593486654827e-02,5.056822322977310158e-01,1.643212794313474667e+00,1.734521241426137395e-01,-5.882913203652535838e-02,-7.576503148966298173e-01,-4.343237401155518318e-02,7.006412624721874982e-02,1.666330283055959871e+00,3.059304632925743950e-01,-2.259919905400002357e-02,-8.196258196154166953e-01,-4.608442936254047301e-02,4.308373066167082988e-02,1.465304668549340050e+00,2.802480690630355653e-01,-1.531546486311946009e-01,-6.431370399683035144e-01,-7.468441088718408283e-02,-1.041148581125759393e-02,1.465304668549340272e+00,2.802480690630355653e-01,-1.531546486311946564e-01,-7.864008233112572688e-01,1.205651672980090489e-01,8.580270777727670994e-01,1.488701666412538316e+00,-4.385779769510881332e-01,5.421559510660740877e-02,-6.076813998841517073e-01,9.691036687733084465e-02,4.940414843800332023e-01,1.493321971729205444e+00,2.865281592433600033e-01,-2.646903836462366315e-03,-6.189967554289338425e-01,9.721195701048865323e-02,5.294929720766754500e-01,1.335684164909608729e+00,5.639180022169284490e-01,-2.305014740756394787e-01,-8.718653984664666012e-01,4.836490223049579040e-02,1.578720640639214023e-01,1.366360395767183933e+00,4.772965419339751936e-01,-1.888134612748419427e-01,-9.365229102131135130e-01,5.991125783757982742e-02,1.416848414605005602e-01,1.720352789055368037e+00,4.434101222268365117e-01,3.069821367414098806e-02,-7.688977480275257514e-01,6.648492870480038341e-02,5.991334077959352411e-02,1.720352789055368037e+00,4.434101222268365117e-01,3.069821367414105051e-02,-7.459588086900086346e-01,2.256862070634808176e-02,9.850152742912606785e-01,1.594843286459622256e+00,2.581403695799160403e-01,7.009261796652532794e-02,-7.290425351014584443e-01,2.288636744963102806e-02,1.013741646899684046e+00,1.632298168383948811e+00,2.592145766191121248e-01,7.741300981683482685e-02,-7.198329040473055995e-01,2.148037394772399702e-02,1.045610283934137463e+00,1.699220456768683496e+00,2.596437122837870204e-01,8.473597771024261871e-02,-7.169858145703201791e-01,1.696706940785300266e-02,1.080934609806389890e+00,1.765806938222332478e+00,2.594390792929703315e-01,9.075515391573155122e-02,-7.202248525464339801e-01,1.085791914459372995e-02,1.111122005387762401e+00,1.821780638660528640e+00,2.588398992040332747e-01,9.631157610043919459e-02,-7.428507597303288801e-01,3.717950706626129559e-02,1.023242372746180573e+00,1.864506730142537538e+00,2.578492395696444506e-01,1.013599500015958249e-01,-7.345577141195153148e-01,2.915466309257929919e-02,1.051448343846277167e+00,1.864506730138347557e+00,2.578492395171140261e-01,1.013599499851643576e-01,-6.352266980856174916e-01,6.268989824744344852e-03,1.045618258658537192e+00,1.878222408232603557e+00,2.522523045275428255e-01,9.964636297904704010e-02,-5.603445449000306056e-01,-2.825699026762917287e-01,1.403819872134863589e+00,1.864506730142537538e+00,2.578492395696444506e-01,1.013599500015958249e-01,-5.577633661686396405e-01,1.072961071619217277e-01,1.521344805440691728e+00,1.864506730142537538e+00,2.578492395696444506e-01,1.013599500015958249e-01,-5.795358914867180244e-01,-2.853893376976412433e-01,1.369857088893246866e+00,9.298906277951332067e-01,3.695742271795789124e-02,-5.763996700458052791e-01,-6.740298987067218084e-01,-4.397835911615695093e-01,1.109160802148824398e+00,-4.686456978304126553e-02,-1.164884679091817699e+00,1.391355599232295903e+00,-6.675112957968769578e-01,-4.676737292008242286e-01,1.113368742685134638e+00,5.928131751902832036e-02,4.026262260711378493e-01,1.403774467849865371e+00,-4.433935646960778798e-01,-5.135504586170378527e-01,1.116360414585969796e+00,5.928131751902832730e-02,4.026262260711379048e-01,1.403774467849865371e+00,-5.775054539765085426e-01,1.270573716032998290e-01,1.493968354979915647e+00,2.961486060821941990e+00,-2.155492227258569982e-01,5.812406328872262717e-01,-7.237334359088062330e-01,4.017116199802729937e-01,1.431424946262485731e+00,3.040774401724861686e+00,-3.626686050349715029e-01,-5.700974760180071987e-01,-7.278494449632022523e-01,4.222454177644726636e-01,1.451411951173771753e+00,2.694666730309140945e+00,1.173171667220570757e+00,-9.916266136546669774e-01,-5.964145869734047700e-01,6.077291000284873457e-01,1.425661931456407405e+00,2.694666730309140945e+00,1.173171667220570757e+00,-9.916266136546669774e-01
|
||||
1.533333300000000010e+00,-6.750197399999999792e-01,2.565637000000000126e-02,9.138629000000000335e-01,1.569677142405247139e+00,2.810571663058157865e-01,4.513216373923399638e-02,-6.690409588514732997e-01,2.590309397677092312e-02,8.904933980305850261e-01,1.569677142405247139e+00,2.810571663058157865e-01,4.513216373923399638e-02,-7.758281937098872039e-01,-8.003085146646404802e-02,8.602816763696337077e-01,1.613592182469225644e+00,-2.469283279762034822e-01,-1.937097311331323901e-01,-6.483937594813408145e-01,-8.765397854125531185e-02,4.815432150652746435e-01,1.612436910123653977e+00,-8.304241485582715410e-02,-1.866992220080313514e-01,-6.786926756860547361e-01,-8.142316332840206228e-02,5.087158209552723465e-01,1.646884984349210379e+00,1.747101283322667620e-01,-7.345278373157425322e-02,-7.528646574382718004e-01,-4.216766287491528070e-02,7.331303395379967780e-02,1.670913693924696464e+00,3.107772211392781370e-01,-3.559566344018101625e-02,-8.149976460650494303e-01,-4.380594779548682011e-02,4.661572930502499990e-02,1.461358698603801853e+00,2.841276847033448183e-01,-1.714510721518478220e-01,-6.392673279215048687e-01,-7.560228984683654840e-02,-7.567611191339064514e-03,1.461358698603802075e+00,2.841276847033448183e-01,-1.714510721518478775e-01,-7.849990750652338090e-01,1.216426672957458821e-01,8.600645985726416143e-01,1.494685320455434230e+00,-4.810264167024917437e-01,3.239807195247041555e-02,-5.903955745162779989e-01,9.706255144248598921e-02,5.045232413111824243e-01,1.501785977428055086e+00,2.122047058364030514e-01,-1.742795720233271742e-02,-6.045936903097752779e-01,9.732902025088042974e-02,5.390742136438821941e-01,1.366143908313091071e+00,4.927041965173478144e-01,-2.306106780562377223e-01,-8.294567751300039316e-01,5.573840517430204283e-02,1.490261416229723412e-01,1.394457225707676606e+00,3.971419802159033563e-01,-1.900078354783100165e-01,-8.923859941683639496e-01,6.830699287333656666e-02,1.276279565793871917e-01,1.729922810637625208e+00,3.594276549522740227e-01,2.159641067579023965e-02,-7.184368853755145334e-01,7.350825896462952203e-02,6.022884047803397922e-02,1.729922810637625208e+00,3.594276549522740227e-01,2.159641067579029863e-02,-7.434301069863115119e-01,2.262301243857288771e-02,9.858899163364218676e-01,1.597687319743698708e+00,2.820017266761694619e-01,4.814945473359753120e-02,-7.258265184942352954e-01,2.251369292475002837e-02,1.014202730141540831e+00,1.634735786128966861e+00,2.837022253289593898e-01,5.140601367771263641e-02,-7.158769120794102880e-01,2.082437169882643199e-02,1.045833842555808690e+00,1.701725017761924752e+00,2.849757910932453342e-01,5.470164273631399066e-02,-7.122717990053988313e-01,1.618134850274595415e-02,1.081071049954696939e+00,1.768563353053788534e+00,2.856353686598309127e-01,5.745418829594311355e-02,-7.149210083939234739e-01,1.015199900785247050e-02,1.111331951952007069e+00,1.824695541870536619e+00,2.859741529813613625e-01,6.002631591353532053e-02,-7.389556053899094534e-01,3.743696570272064122e-02,1.024120902259366916e+00,1.867437924006461136e+00,2.859038352278928663e-01,6.234772243438253120e-02,-7.301971022747636431e-01,2.905813851775858325e-02,1.052082186389230678e+00,1.867437924001745353e+00,2.859038351754088492e-01,6.234772241766148998e-02,-6.315811308608505481e-01,1.898921559178444463e-03,1.042989115953479873e+00,1.881549794024014899e+00,2.834547307753592649e-01,6.114266237155122075e-02,-5.595649626702737800e-01,-2.892372713186004418e-01,1.397453551204067779e+00,1.867437924006461136e+00,2.859038352278928663e-01,6.234772243438253120e-02,-5.371924530015825816e-01,9.997220358655531380e-02,1.516079980174547259e+00,1.867437924006461136e+00,2.859038352278928663e-01,6.234772243438253120e-02,-5.798024638456733548e-01,-2.912544465722917142e-01,1.364045435523314254e+00,9.688378478036350216e-01,3.870203826973890593e-02,-5.804110797814096001e-01,-6.698830158669694113e-01,-4.362821542957595611e-01,1.096497841690884378e+00,1.363439582484702803e-02,-1.203639620954779943e+00,1.305310140141576314e+00,-6.641572997019238311e-01,-4.645086390904193396e-01,1.099420251285075700e+00,8.197449096740848373e-02,3.629063685034845665e-01,1.382254989858100913e+00,-4.415110411813265023e-01,-5.171041180192346154e-01,1.097242876836640457e+00,8.197449096740848373e-02,3.629063685034845665e-01,1.382254989858100913e+00,-5.568960422378160802e-01,1.205326314826633549e-01,1.489270186831335163e+00,3.009993004910370917e+00,-2.593469959360387156e-01,5.922029039517894278e-01,-7.087058433368063071e-01,3.953203336653386968e-01,1.442635866369273323e+00,3.115538222654675948e+00,-3.380444110001753488e-01,-6.750975415364669496e-01,-7.116731277102308351e-01,4.146581195015542343e-01,1.463973720284368341e+00,2.854077544735635907e+00,1.219612199827698085e+00,-9.225032063663454185e-01,-5.655290883432952942e-01,5.904015944272700267e-01,1.454047362694055767e+00,2.854077544735635463e+00,1.219612199827698085e+00,-9.225032063663454185e-01
|
||||
1.550000000000000044e+00,-6.708604999999999707e-01,2.535373000000000140e-02,9.129191300000000231e-01,1.575949573372505075e+00,2.968060948351035067e-01,3.443823526951864111e-02,-6.652523888162440446e-01,2.565415345322698271e-02,8.894585427579770887e-01,1.575949573372505075e+00,2.968060948351035067e-01,3.443823526951864111e-02,-7.738258883931774523e-01,-7.877631596399346792e-02,8.604011048373385595e-01,1.615205688939650663e+00,-2.629209685013317310e-01,-2.073394269082928232e-01,-6.410361634717222090e-01,-8.859772178561385603e-02,4.828685923977867889e-01,1.613814048101142706e+00,-7.935051254679376109e-02,-1.992022426194182405e-01,-6.708157508591507945e-01,-8.209428442191663011e-02,5.102651255417401943e-01,1.650715334948960944e+00,1.813092089901752468e-01,-8.120906985007289580e-02,-7.473819833070614038e-01,-4.034597246661445619e-02,7.550915419784931526e-02,1.676061453583981953e+00,3.217203864902468680e-01,-4.136071694587621639e-02,-8.098081928445898248e-01,-4.138549742638852891e-02,4.947406097119987772e-02,1.448134986511948608e+00,2.923540859747469911e-01,-1.884494546190277620e-01,-6.350872124414296271e-01,-7.610580778336933916e-02,-6.159252121731587093e-03,1.448134986511948608e+00,2.923540859747469911e-01,-1.884494546190278175e-01,-7.804727971448713886e-01,1.229938236142600477e-01,8.613959596779967587e-01,1.502763092054895555e+00,-5.146574418256154582e-01,5.852342196117824198e-03,-5.731873242412917069e-01,9.662563143791666476e-02,5.135103823132828316e-01,1.511032428734132793e+00,1.362689231940190926e-01,-3.580358880173532821e-02,-5.903591670184620277e-01,9.698712672214189479e-02,5.468938767696607250e-01,1.396442404228168455e+00,4.193957640163228362e-01,-2.349994530213174171e-01,-7.849620172708834387e-01,6.292923122253969714e-02,1.401993045261669679e-01,1.420898722842876660e+00,3.209982885587008283e-01,-1.979173648169778588e-01,-8.457714304202261779e-01,7.679157795243178597e-02,1.140079138746854376e-01,1.736666314852474136e+00,2.803162101638118631e-01,5.821691620052638072e-03,-6.669771685670348171e-01,7.928882901735216648e-02,6.058168309322450179e-02,1.736666314852474136e+00,2.803162101638118631e-01,5.821691620052695318e-03,-7.381466198664452527e-01,2.277671592602450307e-02,9.860150103449643044e-01,1.603308504548360824e+00,2.979736136560068860e-01,3.563622314092156074e-02,-7.200905452340727875e-01,2.228530074461546051e-02,1.014038081249855283e+00,1.639624396753716740e+00,3.001260379403051237e-01,3.697682381650358591e-02,-7.096455686674487673e-01,2.030922013422607059e-02,1.045492158426829743e+00,1.705705793103168499e+00,3.019373953308743808e-01,3.837607245189315897e-02,-7.055198069187688104e-01,1.549205055904810495e-02,1.080648327410046017e+00,1.771734606566652603e+00,3.031025005771325609e-01,3.959386523537860442e-02,-7.077489365330024151e-01,9.445537356704761592e-03,1.110939783252477886e+00,1.827158728839115787e+00,3.039637264441899522e-01,4.076657317611270814e-02,-7.328202526199694145e-01,3.729980388652938406e-02,1.024201435369032964e+00,1.869304434349790434e+00,3.043781600420784605e-01,4.180580654542771779e-02,-7.237237398681520828e-01,2.870982593772018060e-02,1.051990196885146833e+00,1.869304434344720267e+00,3.043781599896244194e-01,4.180580652850983403e-02,-6.256312968586725809e-01,-3.279981782049017081e-04,1.040846336013950157e+00,1.883369772314008150e+00,3.034654631635005373e-01,4.080823719866609467e-02,-5.536645379500682029e-01,-2.926941421224306672e-01,1.390896153851207684e+00,1.869304434349790434e+00,3.043781600420784605e-01,4.180580654542771779e-02,-5.212285804510596865e-01,9.549732649592627964e-02,1.511650873896667857e+00,1.869304434349790434e+00,3.043781600420784605e-01,4.180580654542771779e-02,-5.745557043528572994e-01,-2.942504055111075933e-01,1.357867910577260417e+00,9.961615049117656939e-01,5.029230151152216943e-02,-5.881546827285047963e-01,-6.644421536673326134e-01,-4.306023592074088580e-01,1.085732231589102259e+00,9.687206294339571755e-02,-1.232123388016281407e+00,1.201960250180637679e+00,-6.593877864588750803e-01,-4.590499247742361177e-01,1.087534489269118332e+00,1.086989500133200282e-01,3.311917678204694959e-01,1.366117326074334892e+00,-4.382331465502667389e-01,-5.170559511652590423e-01,1.079269627160257539e+00,1.086989500133200282e-01,3.311917678204694404e-01,1.366117326074334892e+00,-5.409876273804248292e-01,1.164956776131566979e-01,1.485224051197605810e+00,3.042064049616414856e+00,-3.028162919789553209e-01,5.866031571394972888e-01,-6.929231863393106039e-01,3.928344489445416698e-01,1.449422847189649310e+00,-3.105365682064082478e+00,-3.164955681237897611e-01,-7.835831032296325382e-01,-6.947345622738897442e-01,4.111070550260977896e-01,1.471803408655214751e+00,3.020613693835117353e+00,1.250308329166437193e+00,-8.536703706682355897e-01,-5.335536976368239204e-01,5.734360685139534564e-01,1.475325063290215732e+00,3.020613693835117353e+00,1.250308329166437193e+00,-8.536703706682355897e-01
|
||||
1.566666700000000079e+00,-6.649628699999999837e-01,2.520338999999999913e-02,9.120535400000000514e-01,1.586220327143071263e+00,3.053088372336122958e-01,2.879538162950675759e-02,-6.595582381002527139e-01,2.567989017951943440e-02,8.885481529440858450e-01,1.586220327143071263e+00,3.053088372336122958e-01,2.879538162950675759e-02,-7.692898461020036827e-01,-7.752499262001535940e-02,8.594622659320055869e-01,1.615183071432819917e+00,-2.760232596595729726e-01,-2.153933875365195427e-01,-6.324376274155004696e-01,-8.929550938614042033e-02,4.826624819946892520e-01,1.613603709459677793e+00,-6.897788433486652659e-02,-2.062414540221237935e-01,-6.614961632889443388e-01,-8.268960778131051459e-02,5.104823459460504642e-01,1.654081443930098372e+00,1.946683812093774057e-01,-8.323244867716275697e-02,-7.436112521676694342e-01,-3.882369620885766509e-02,7.694923521295815583e-02,1.680480653592272722e+00,3.366379102162386228e-01,-4.217581001596866497e-02,-8.064162390557515492e-01,-3.959993080516836794e-02,5.183212131575542364e-02,1.429777336879336502e+00,3.035506742059868590e-01,-2.029430017388031138e-01,-6.328374834411774064e-01,-7.675711774387095065e-02,-5.767753060157518319e-03,1.429777336879336502e+00,3.035506742059868590e-01,-2.029430017388031693e-01,-7.741660682921807091e-01,1.242763048011815696e-01,8.624319753132261290e-01,1.512109078284217034e+00,-5.382108855608537246e-01,-2.479893122736341604e-02,-5.576979254593424917e-01,9.513101257470797656e-02,5.209064109130590037e-01,1.520323035736338868e+00,5.984529708458569824e-02,-5.792887876154933363e-02,-5.778939262117928077e-01,9.578066550888372777e-02,5.528424802518820957e-01,1.425721297088106798e+00,3.447604847256519611e-01,-2.437176609967608987e-01,-7.404037686776927529e-01,6.883556885510677681e-02,1.317781175559000761e-01,1.445824218526355898e+00,2.487268637410483263e-01,-2.114628873999560010e-01,-7.987656469407736770e-01,8.417086303100054789e-02,1.012059366256844173e-01,1.741063511606225633e+00,2.059188900921410381e-01,-1.565665869737148733e-02,-6.164814865312990833e-01,8.278139800429326622e-02,6.122418177706372144e-02,1.741063511606225633e+00,2.059188900921410381e-01,-1.565665869737142835e-02,-7.316255251115993952e-01,2.250859662883923987e-02,9.857142429139904571e-01,1.612978647757387973e+00,3.065734762091634202e-01,3.020485441735924065e-02,-7.133259997587489964e-01,2.161828722104421063e-02,1.013569554220374203e+00,1.648482183741999396e+00,3.089144557005653047e-01,3.178624965220542414e-02,-7.026127572664572218e-01,1.930559944487361679e-02,1.044910271015774272e+00,1.713009776666555073e+00,3.108779970690436767e-01,3.342644177901598485e-02,-6.981991833693519389e-01,1.423125898471229098e-02,1.079995341741571968e+00,1.777470751704459229e+00,3.121341901331186608e-01,3.484319896248150306e-02,-7.001878308116337157e-01,8.047991605048784511e-03,1.110276147162649663e+00,1.831586984835252174e+00,3.130568717562399184e-01,3.620069913399681649e-02,-7.259088340075947610e-01,3.626687361760762285e-02,1.023847391561358178e+00,1.872747387206243230e+00,3.134905393804182094e-01,3.740237257679660671e-02,-7.166033702713608955e-01,2.754585882633255045e-02,1.051525935194802086e+00,1.872747387200952351e+00,3.134905393280200125e-01,3.740237255963970581e-02,-6.187434319285425310e-01,-1.345983046584064979e-03,1.039459866616023742e+00,1.886422196922057593e+00,3.124602488218337082e-01,3.631294089014078935e-02,-5.450218522740282179e-01,-2.951678554493176732e-01,1.385164325508097205e+00,1.872747387206243230e+00,3.134905393804182094e-01,3.740237257679660671e-02,-5.105559987301476754e-01,9.230833743610160347e-02,1.508713063523352105e+00,1.872747387206243230e+00,3.134905393804182094e-01,3.740237257679660671e-02,-5.662250706951829082e-01,-2.965133519089494518e-01,1.352326225516944591e+00,1.016050855424146526e+00,6.915916710724860639e-02,-6.018176398014427608e-01,-6.593021358368676976e-01,-4.241112284655180753e-01,1.077036017430327064e+00,1.941729325214020807e-01,-1.252598573286778816e+00,1.084960962630991288e+00,-6.549315667601964819e-01,-4.527173111540698791e-01,1.077841564737335389e+00,1.363868380148970383e-01,3.045273510383340598e-01,1.349885055621263374e+00,-4.355139355929487088e-01,-5.158442933555493770e-01,1.063237830709746090e+00,1.363868380148970383e-01,3.045273510383340598e-01,1.349885055621263374e+00,-5.304430230682373182e-01,1.134914501616299254e-01,1.482530824478518694e+00,3.061728599099532211e+00,-3.366471428722708770e-01,5.640459780576818627e-01,-6.772332247365667746e-01,3.933810159186750255e-01,1.453483888323186868e+00,-3.061027151017254422e+00,-2.974675161887920249e-01,-8.881925084771054024e-01,-6.778395677343025394e-01,4.107969993253546281e-01,1.476600432559932230e+00,-3.124202486062047868e+00,1.269271712631302673e+00,-8.131222431743521106e-01,-5.027151724850884573e-01,5.574226268635691373e-01,1.489819862732322697e+00,-3.124202486062047868e+00,1.269271712631302673e+00,-8.131222431743521106e-01
|
||||
1.583333300000000055e+00,-6.588132100000000380e-01,2.468998000000000026e-02,9.114010900000000248e-01,1.597848538709894406e+00,3.088258681768094038e-01,2.719752535862545936e-02,-6.534955090764641428e-01,2.539727515911248748e-02,8.878816914216581813e-01,1.597848538709894406e+00,3.088258681768094038e-01,2.719752535862545936e-02,-7.638651426921299059e-01,-7.692165567138926907e-02,8.580883562467934711e-01,1.614258412987929159e+00,-2.862165335450553849e-01,-2.181451104986321665e-01,-6.241097392196096605e-01,-9.006187456724178142e-02,4.816108868542544608e-01,1.612549994564128619e+00,-5.391853379963624376e-02,-2.081190855361115255e-01,-6.523333035359925036e-01,-8.351498389841294223e-02,5.099746977793313540e-01,1.657368560223312803e+00,2.124615208464409044e-01,-8.010421911356531421e-02,-7.421183001733562268e-01,-3.784445631284335393e-02,7.815190841957664336e-02,1.684316422180538897e+00,3.526196862126348419e-01,-3.881733735291663379e-02,-8.053112246919762462e-01,-3.864588213762153862e-02,5.402826159499610204e-02,1.408584276826092996e+00,3.151139647267769961e-01,-2.144389873632755461e-01,-6.328328211989705521e-01,-7.769297275710236594e-02,-5.591462596588867018e-03,1.408584276826092996e+00,3.151139647267769961e-01,-2.144389873632756016e-01,-7.676940394590232586e-01,1.248570237182295012e-01,8.632907067602810791e-01,1.522780023499090918e+00,-5.531289143927015095e-01,-5.718680275592639278e-02,-5.449604868875087549e-01,9.265705513343180932e-02,5.268404348609991850e-01,1.529939455174993634e+00,-1.541926686070463175e-02,-8.179600521914805189e-02,-5.681590698820890850e-01,9.376662529418525183e-02,5.570672987590225000e-01,1.453935173488162702e+00,2.703296687639173412e-01,-2.545473002731698520e-01,-6.974896678780383441e-01,7.294464372705626587e-02,1.243194204624619714e-01,1.470022286825700686e+00,1.794959945313415739e-01,-2.272877455665016644e-01,-7.531443310908403355e-01,8.973680549771535786e-02,8.972866888890804193e-02,1.742202318433100805e+00,1.357321263809928846e-01,-4.087175686566368871e-02,-5.685997121407306842e-01,8.365783957767866652e-02,6.263039846578656589e-02,1.742202318433100805e+00,1.357321263809928846e-01,-4.087175686566363320e-02,-7.252085969286554690e-01,2.152519228345508434e-02,9.852841554813930314e-01,1.623468782540110178e+00,3.102245832047049734e-01,2.792799550342071890e-02,-7.068048089266990575e-01,2.026353664083798550e-02,1.013056862086952670e+00,1.657517520279484069e+00,3.128231454741744466e-01,2.880706521488609131e-02,-6.959750955311256870e-01,1.762579494956898959e-02,1.044331839881254220e+00,1.719560006409071029e+00,3.150663745623568102e-01,2.974857587404153639e-02,-6.914367098987564964e-01,1.232020377012890515e-02,1.079366929632053607e+00,1.781574714189629649e+00,3.165665976896329670e-01,3.059638512631081622e-02,-6.933209295879675382e-01,6.041648897665080446e-03,1.109635142761430826e+00,1.833626049863480656e+00,3.177297428480410080e-01,3.143290159430834479e-02,-7.193170054182679296e-01,3.437816827087839672e-02,1.023328933320762912e+00,1.873191768447152850e+00,3.183740032511742646e-01,3.215288507134200779e-02,-7.099233059852499972e-01,2.559980378655293820e-02,1.050959500813069436e+00,1.873191768441766047e+00,3.183740031987833952e-01,3.215288505413318315e-02,-6.121587329867830274e-01,-2.899352805642779057e-03,1.038417665246086141e+00,1.886384382550032157e+00,3.179302096203043271e-01,3.115150138563741594e-02,-5.392078708386076613e-01,-2.975050352036530676e-01,1.381530706807028386e+00,1.873191768447152850e+00,3.183740032511742646e-01,3.215288507134200779e-02,-5.028015778358710941e-01,8.970483325848091494e-02,1.506156987623911814e+00,1.873191768447152850e+00,3.183740032511742646e-01,3.215288507134200779e-02,-5.605785026286150829e-01,-2.987275738068189690e-01,1.348796487106129760e+00,1.034223519835078875e+00,8.718607476174652926e-02,-6.107600833566962928e-01,-6.561787093144787475e-01,-4.183873124009256372e-01,1.070819142225799325e+00,2.985610551720029315e-01,-1.267929695308005478e+00,9.661242306939539226e-01,-6.523582477688948389e-01,-4.470830925454690741e-01,1.070696574788094990e+00,1.630023452639360604e-01,2.800015446374599093e-01,1.338124504171475104e+00,-4.345450080664779446e-01,-5.139340624676953517e-01,1.049942726295442608e+00,1.630023452639360881e-01,2.800015446374599093e-01,1.338124504171475104e+00,-5.227020866381123509e-01,1.110017187499545421e-01,1.480077492595403665e+00,3.076212152335289218e+00,-3.595554895264175821e-01,5.348322127344705690e-01,-6.623176911687854718e-01,3.949948544162116271e-01,1.455898189638338280e+00,-3.032045655330070755e+00,-2.783011869869863042e-01,-9.857563265639674999e-01,-6.616591753266271025e-01,4.116615859361690832e-01,1.479559237050262599e+00,-3.020493159312287901e+00,1.284728049498003344e+00,-8.031806612998175776e-01,-4.743564653760247163e-01,5.415631923941546244e-01,1.499197192169267057e+00,-3.020493159312287901e+00,1.284728049498003344e+00,-8.031806612998175776e-01
|
||||
1.600000000000000089e+00,-6.523687299999999523e-01,2.386570999999999831e-02,9.108023200000000541e-01,1.608039912325273546e+00,3.092491361950622797e-01,2.685624435093108761e-02,-6.470643550949894962e-01,2.478269920595166376e-02,8.872871534748731914e-01,1.608039912325273546e+00,3.092491361950622797e-01,2.685624435093108761e-02,-7.578056377248880704e-01,-7.686258658538520916e-02,8.565810197313110663e-01,1.613049611410842799e+00,-2.950765215173236089e-01,-2.150668714875565157e-01,-6.156471367893560087e-01,-9.054871523927622567e-02,4.802233552705476027e-01,1.611248427178235465e+00,-3.586305967884777235e-02,-2.042235816793008529e-01,-6.429694179328263592e-01,-8.423613954908260038e-02,5.091984898999671882e-01,1.661029550747845196e+00,2.330614032127636126e-01,-7.107807402264822161e-02,-7.418678222621659657e-01,-3.713701002016120412e-02,7.952554248497906153e-02,1.687224312244264723e+00,3.650070726638264262e-01,-3.152405569967167698e-02,-8.053462889741739295e-01,-3.826075875921890884e-02,5.617688553538811858e-02,1.389899663328542534e+00,3.234333283219754107e-01,-2.198896457714405450e-01,-6.335723971226939755e-01,-7.817375794749159557e-02,-4.885943125063962889e-03,1.389899663328542534e+00,3.234333283219754107e-01,-2.198896457714406005e-01,-7.609360729904240950e-01,1.248681454447294753e-01,8.637415006633153425e-01,1.534069850091031029e+00,-5.613043030320323812e-01,-8.850879444531073448e-02,-5.342428633333543564e-01,8.987279914025128602e-02,5.312118572389250559e-01,1.539592250902259041e+00,-8.580383378900911795e-02,-1.053892549742077162e-01,-5.602390368337358817e-01,9.156551750375130361e-02,5.595645662177245461e-01,1.479957581970850811e+00,1.997405640584745956e-01,-2.657573446242636472e-01,-6.572164123481341047e-01,7.545469793898958166e-02,1.182409720197284964e-01,1.492884435019724343e+00,1.144447022467526415e-01,-2.427668487438991995e-01,-7.100480794417082242e-01,9.351761802183172767e-02,8.005086598583091573e-02,1.739802132195323425e+00,7.107872021521857708e-02,-6.749639672775681332e-02,-5.243693478216160386e-01,8.243143752249884604e-02,6.493492420529095588e-02,1.739802132195323425e+00,7.107872021521856321e-02,-6.749639672775675781e-02,-7.187251967272356712e-01,2.021305832210122319e-02,9.846978415883999025e-01,1.632432016691542920e+00,3.107722843545119851e-01,2.658728586615392853e-02,-7.003051704492596619e-01,1.864396372997818158e-02,1.012444506808556577e+00,1.664931273539498990e+00,3.135929981524145371e-01,2.642052487375892017e-02,-6.894581089854301403e-01,1.573792677528568565e-02,1.043689735806023755e+00,1.724406638309903483e+00,3.161053218736705750e-01,2.631958554907101386e-02,-6.849048786292540880e-01,1.025715303515138330e-02,1.078696165977603316e+00,1.783912038404428246e+00,3.178629089801214280e-01,2.631510049184939207e-02,-6.867788414239918149e-01,3.929925212504198177e-03,1.108955219049903018e+00,1.833836610840773318e+00,3.192948167926298875e-01,2.636801167235842958e-02,-7.127820412747742918e-01,3.223691407406782672e-02,1.022643310282514983e+00,1.871747209413802571e+00,3.201946689145736547e-01,2.636759331414753257e-02,-7.033860034068187828e-01,2.344780676131300728e-02,1.050269667209067670e+00,1.871747209408407997e+00,3.201946688621592485e-01,2.636759329700810034e-02,-6.056641364451635923e-01,-4.679241633314790150e-03,1.037589901964445449e+00,1.884480948168807179e+00,3.205282165265291305e-01,2.553512162198642160e-02,-5.351915311607925441e-01,-2.995051272141145970e-01,1.379268909045910485e+00,1.871747209413802571e+00,3.201946689145736547e-01,2.636759331414753257e-02,-4.963427867091079193e-01,8.771226591299523256e-02,1.503813799573077370e+00,1.871747209413802571e+00,3.201946689145736547e-01,2.636759331414753257e-02,-5.566267252338122917e-01,-3.006601410607018798e-01,1.346574474638305707e+00,1.047804802627366749e+00,1.044921052289919799e-01,-6.166255669956430818e-01,-6.548353342003634392e-01,-4.137633784829224393e-01,1.066767427487995690e+00,3.909757423209552774e-01,-1.277224372247940609e+00,8.650732361991517738e-01,-6.513876383103139878e-01,-4.424935223911682924e-01,1.065900841448837122e+00,1.848106407984516919e-01,2.604735289046564151e-01,1.331237945027810898e+00,-4.348075626678811201e-01,-5.115481767509696409e-01,1.040076292228623744e+00,1.848106407984517197e-01,2.604735289046564151e-01,1.331237945027810898e+00,-5.161759707752491266e-01,1.090779391549114297e-01,1.477739282130078768e+00,3.084811704163006763e+00,-3.755594901000333663e-01,5.064213532307210164e-01,-6.483277143129578812e-01,3.968509672939025679e-01,1.456482335473350487e+00,-3.012764739691282667e+00,-2.621407709451879509e-01,-1.076732736053024775e+00,-6.464489490819683715e-01,4.128496935138281643e-01,1.480535812308285015e+00,-2.942041544687543198e+00,1.296390462425634160e+00,-8.136143753135006707e-01,-4.488883079293980449e-01,5.257141561050687750e-01,1.504489683557763913e+00,-2.942041544687543198e+00,1.296390462425634160e+00,-8.136143753135006707e-01
|
||||
1.616666699999999901e+00,-6.445425900000000263e-01,2.302852999999999845e-02,9.104214099999999865e-01,1.616174656971033130e+00,3.081653626181420913e-01,2.588568061866569625e-02,-6.392141102591907265e-01,2.411002779434475232e-02,8.869186870680970669e-01,1.616174656971033130e+00,3.081653626181420913e-01,2.588568061866569625e-02,-7.502768149120769836e-01,-7.691130070036616972e-02,8.553270857167157848e-01,1.611728027200815649e+00,-3.020400704984197993e-01,-2.079461815189238560e-01,-6.063513967878734201e-01,-9.044810076975204338e-02,4.788967410027886729e-01,1.609879643203649291e+00,-1.676318841740774557e-02,-1.964195504355732702e-01,-6.327787245276420558e-01,-8.446977030523307450e-02,5.084854798326287062e-01,1.664797893569958109e+00,2.544213060739457521e-01,-5.842969601906555788e-02,-7.412673339812496653e-01,-3.643196845509570625e-02,8.123771174742949741e-02,1.688901307813130970e+00,3.725328224619876560e-01,-2.248892472079893137e-02,-8.049071388745715483e-01,-3.805072593609273163e-02,5.836210932818455821e-02,1.378195004749474428e+00,3.283358462148286971e-01,-2.186948128636753974e-01,-6.333791473445209430e-01,-7.771531581440557779e-02,-3.547945602132000775e-03,1.378195004749474428e+00,3.283358462148286971e-01,-2.186948128636754529e-01,-7.527199378167672705e-01,1.247672541969366000e-01,8.640535971928698933e-01,1.544548956901308889e+00,-5.637657610430619748e-01,-1.158560378539652130e-01,-5.240806524843762970e-01,8.752331004578128848e-02,5.342866374170959221e-01,1.548367543533675672e+00,-1.476127793460560444e-01,-1.265849187307502011e-01,-5.524889844913706272e-01,8.984818430800531330e-02,5.607461452508963884e-01,1.502274546481910500e+00,1.366946716368555304e-01,-2.756416311361692961e-01,-6.200623162309299996e-01,7.678906068119183137e-02,1.138748116522178555e-01,1.512909358209818311e+00,5.634870326681371000e-02,-2.559705945138921468e-01,-6.701848462059106781e-01,9.581833004587317348e-02,7.262487559118513403e-02,1.732155927671297890e+00,1.519897600046713447e-02,-9.448800254973339918e-02,-4.843230279749461409e-01,7.965852335580816956e-02,6.790983140874501389e-02,1.732155927671297890e+00,1.519897600046712580e-02,-9.448800254973334367e-02,-7.109771430818062621e-01,1.903014263889860058e-02,9.842288195667617812e-01,1.639299804633456148e+00,3.098516474594090186e-01,2.418796265160907608e-02,-6.925853369815000438e-01,1.720044177246125502e-02,1.011978630019079839e+00,1.670230306619500782e+00,3.129424462959762843e-01,2.251763738879942675e-02,-6.817712859617109933e-01,1.407804751218070041e-02,1.043214454395201551e+00,1.727218727894314299e+00,3.157923011890828580e-01,2.091904000889232423e-02,-6.772610301812894695e-01,8.481257326003150548e-03,1.078208263980078963e+00,1.784319646575103446e+00,3.178806640754303636e-01,1.969038329631521422e-02,-6.791761561279964221e-01,2.162861233945175161e-03,1.108466901339731692e+00,1.832194657440030294e+00,3.196625204058385350e-01,1.861719067974990441e-02,-7.050204231608283578e-01,3.035832612763006075e-02,1.022072423043820733e+00,1.868491241997037644e+00,3.209025337090152807e-01,1.758328851042823340e-02,-6.956748420304539327e-01,2.158232757780298439e-02,1.049720053951250787e+00,1.868491241991687035e+00,3.209025336565481390e-01,1.758328849346470213e-02,-5.980147633629920856e-01,-6.512207601523583439e-03,1.037021708410412302e+00,1.880815076289671373e+00,3.222642445121717270e-01,1.698184085017196560e-02,-5.312894847640382556e-01,-3.012664856160451876e-01,1.378726221009126673e+00,1.868491241997037644e+00,3.209025337090152807e-01,1.758328851042823340e-02,-4.892247363412257077e-01,8.615345306490046484e-02,1.501975934997958451e+00,1.868491241997037644e+00,3.209025337090152807e-01,1.758328851042823340e-02,-5.527543003582831016e-01,-3.023565690367023273e-01,1.346048995716760066e+00,1.057951022274526753e+00,1.222100271186962323e-01,-6.244869960909622542e-01,-6.543525940397096896e-01,-4.093709526559858314e-01,1.065059733919951679e+00,4.707676177866030320e-01,-1.282995573710606463e+00,7.772311195912223747e-01,-6.512473451100876387e-01,-4.381152212164108883e-01,1.063582167910162690e+00,2.025668396197630450e-01,2.443369781066815905e-01,1.324278450132304830e+00,-4.358222642423351112e-01,-5.090785922092666560e-01,1.033605238332345078e+00,2.025668396197630727e-01,2.443369781066815905e-01,1.324278450132304830e+00,-5.089085756915593395e-01,1.075913776682867751e-01,1.475847607452996924e+00,3.089155418390648222e+00,-3.845651422931942731e-01,4.808332904887946402e-01,-6.339977867447025295e-01,3.986088444545610177e-01,1.456079447981011077e+00,-3.002280274667505466e+00,-2.498496340943424376e-01,-1.154696095091774621e+00,-6.310243549838638888e-01,4.140497587025100956e-01,1.480385735604857755e+00,-2.892469032879584123e+00,1.305292578299179107e+00,-8.411445972706829144e-01,-4.256398836869982882e-01,5.113444933977232543e-01,1.506716997389206503e+00,-2.892469032879584123e+00,1.305292578299179107e+00,-8.411445972706829144e-01
|
||||
1.633333300000000099e+00,-6.346704600000000474e-01,2.239690000000000084e-02,9.102834600000000442e-01,1.620722070541283921e+00,3.074195846222255168e-01,2.235480830712265748e-02,-6.293214214984729216e-01,2.355442166980994609e-02,8.867890298146500205e-01,1.620722070541283921e+00,3.074195846222255168e-01,2.235480830712265748e-02,-7.408578986005592837e-01,-7.678204165531080094e-02,8.546880819367821402e-01,1.610395849496360832e+00,-3.076648740955147954e-01,-1.975330449366952401e-01,-5.956073453178660770e-01,-8.957583025984880432e-02,4.780558036995850024e-01,1.608535653436042656e+00,3.009695740742026476e-03,-1.854216293113104541e-01,-6.211431025501052972e-01,-8.400391274873247882e-02,5.082482285073327555e-01,1.668741280489409062e+00,2.762200647507806472e-01,-4.278197183566844614e-02,-7.395278262261421043e-01,-3.553538837885269336e-02,8.368501358273588986e-02,1.689958058668580509e+00,3.775756609663766805e-01,-1.150674593017026771e-02,-8.032611959436838367e-01,-3.780463432043791594e-02,6.112738879665854247e-02,1.370909266113109037e+00,3.317270163831956276e-01,-2.125557069151691736e-01,-6.316984455819808497e-01,-7.638472313597916008e-02,-1.368898335743218286e-03,1.370909266113109037e+00,3.317270163831956276e-01,-2.125557069151692291e-01,-7.423170216925298881e-01,1.248662204890042537e-01,8.642906696877641348e-01,1.552405095817722236e+00,-5.635580086598518390e-01,-1.357299370778679848e-01,-5.128443856591178296e-01,8.607591465928654539e-02,5.364727706845593413e-01,1.554943160390578116e+00,-1.968566450720196648e-01,-1.424543424248754520e-01,-5.431060416328801210e-01,8.895923346675455035e-02,5.612452888710199872e-01,1.518981301007345186e+00,8.557158715971525942e-02,-2.822879932750783638e-01,-5.866928481155583297e-01,7.721864945015682880e-02,1.113641560679902720e-01,1.528112886405407655e+00,8.877568904372197534e-03,-2.648695757238964665e-01,-6.345204393885444105e-01,9.681254008323678106e-02,6.772312844983235935e-02,1.717476450890338624e+00,-2.794608414131571558e-02,-1.205424740905204767e-01,-4.491159009192095541e-01,7.578504708851031835e-02,7.103796228464286100e-02,1.717476450890338624e+00,-2.794608414131572252e-02,-1.205424740905204212e-01,-7.011719208400013503e-01,1.840380898023259021e-02,9.840308774590411645e-01,1.642691305524542456e+00,3.092882308684851700e-01,1.924528795553297547e-02,-6.828048905872330376e-01,1.637815466540519516e-02,1.011783896843301944e+00,1.672197185976979306e+00,3.126744263879022712e-01,1.608600768355457344e-02,-6.720203645414911664e-01,1.312241309198910327e-02,1.043016310469163210e+00,1.726956941464803386e+00,3.158772854266605479e-01,1.300471848255771792e-02,-6.675506494397365209e-01,7.504466058064989016e-03,1.078012022217921695e+00,1.781910151451422619e+00,3.183008619040035292e-01,1.056428126787235973e-02,-6.695058521806319662e-01,1.278661512367440523e-03,1.108287554096906380e+00,1.827950378152930933e+00,3.204306913685903146e-01,8.375853544923600111e-03,-6.951791735824681684e-01,2.920955032419136205e-02,1.021757532139504931e+00,1.862795609369149341e+00,3.220022854679390756e-01,6.317887281907233997e-03,-6.858877361517611293e-01,2.049520473823424407e-02,1.049442887536975011e+00,1.862795609363878668e+00,3.220022854153811176e-01,6.317887265252792282e-03,-5.883415747871163504e-01,-7.865246549465691045e-03,1.036749467455017726e+00,1.874742230526600828e+00,3.243150238951959530e-01,5.914085753176532775e-03,-5.258787379184612920e-01,-3.017787010309079809e-01,1.379245486081702499e+00,1.862795609369149341e+00,3.220022854679390756e-01,6.317887281907233997e-03,-4.795661333187359876e-01,8.601287483289613012e-02,1.500282826691235583e+00,1.862795609369149341e+00,3.220022854679390756e-01,6.317887281907233997e-03,-5.473875568060336816e-01,-3.028423183767603999e-01,1.346596334923207960e+00,1.059814622155665020e+00,1.414461189605795144e-01,-6.358535468013722936e-01,-6.542605693594243377e-01,-4.050426784662842783e-01,1.065771652228038935e+00,5.335409808920715813e-01,-1.281811360391108101e+00,7.062665135105812286e-01,-6.514869575763434506e-01,-4.337979428971351359e-01,1.063900665191567896e+00,2.186151504700167558e-01,2.355590709634702296e-01,1.317310443796483765e+00,-4.372487835340346796e-01,-5.066844134745593919e-01,1.030256215630837913e+00,2.186151504700167836e-01,2.355590709634702573e-01,1.317310443796483765e+00,-4.990739305175076468e-01,1.074945030020989095e-01,1.474058541327879723e+00,3.089681660214738557e+00,-3.908802244916032009e-01,4.644429407322990810e-01,-6.193285051891782578e-01,4.005631466271549757e-01,1.454594106586195368e+00,-2.995080588096191043e+00,-2.401377517203335810e-01,-1.225701807885854810e+00,-6.153735988275836899e-01,4.154805500888184566e-01,1.479086728678062457e+00,-2.854742200560008936e+00,1.312192419643207986e+00,-8.739646540191633450e-01,-4.038373399760754046e-01,4.980161819533733825e-01,1.507062833844563743e+00,-2.854742200560008936e+00,1.312192419643207986e+00,-8.739646540191633450e-01
|
||||
1.649999999999999911e+00,-6.224419799999999503e-01,2.267699999999999924e-02,9.110535100000000108e-01,1.622431828822280098e+00,3.049425859505197622e-01,2.097749599646078766e-02,-6.170333890605531613e-01,2.386388205411607219e-02,8.875741834747238324e-01,1.622431828822280098e+00,3.049425859505197622e-01,2.097749599646078766e-02,-7.286806183516838509e-01,-7.620696096870839542e-02,8.550321334484880520e-01,1.608416701883286448e+00,-3.093224571808695922e-01,-1.856867602715634447e-01,-5.835202301749045084e-01,-8.802442842130608902e-02,4.777620518456370813e-01,1.606640511399068494e+00,2.368134313098200702e-02,-1.733805899785555438e-01,-6.081745054800142825e-01,-8.284941191367989344e-02,5.085445171061910852e-01,1.672066337841137562e+00,2.986120991595664909e-01,-2.678281612906183162e-02,-7.367095648827349796e-01,-3.456191067144114698e-02,8.692250647382993023e-02,1.691277177510276619e+00,3.877152362716382861e-01,1.109541370034867894e-03,-8.006362275801617301e-01,-3.757664235711611483e-02,6.500832116114832471e-02,1.366893888615552166e+00,3.411454007865451499e-01,-2.026342269944184926e-01,-6.292828235515471880e-01,-7.434024320198304170e-02,8.644590171486832286e-04,1.366893888615552166e+00,3.411454007865451499e-01,-2.026342269944185481e-01,-7.297819529286500018e-01,1.254272749284585931e-01,8.649710636650876916e-01,1.556971768767614561e+00,-5.624883929493804668e-01,-1.486986044064753654e-01,-5.000398762189284252e-01,8.541220590067080676e-02,5.385156288815386993e-01,1.558776004352961930e+00,-2.333540053971222827e-01,-1.532917494062698560e-01,-5.316270963298834751e-01,8.874862717254969335e-02,5.619385420583649093e-01,1.529926611089950983e+00,4.701803720757376237e-02,-2.863345372618041895e-01,-5.572134352502022825e-01,7.702412888420040460e-02,1.106752485532455643e-01,1.537902930579980065e+00,-2.520614118026928349e-02,-2.707334631889778964e-01,-6.033498192427244611e-01,9.690854485800598495e-02,6.537643618293134673e-02,1.696989563947428614e+00,-5.624658745313650121e-02,-1.461393881723767885e-01,-4.187150307475324684e-01,7.112817256033737712e-02,7.394111665286319524e-02,1.696989563947428614e+00,-5.624658745313650815e-02,-1.461393881723767330e-01,-6.891308148081320972e-01,1.868593852365414698e-02,9.846316412065626578e-01,1.643370452448071006e+00,3.070688069382275232e-01,1.540233439804729494e-02,-6.708330243767097745e-01,1.657048542547020359e-02,1.012424079589520520e+00,1.671694938018683629e+00,3.108601486989193696e-01,9.631850740937461519e-03,-6.601259532123371354e-01,1.326061155074710965e-02,1.043677328111049629e+00,1.724944585141247044e+00,3.145787480129914604e-01,3.952091484593240993e-03,-6.557491853623986788e-01,7.672066025818104554e-03,1.078689310685131630e+00,1.778527077634897147e+00,3.175150074610466056e-01,-6.101957293967099228e-04,-6.577903607415767073e-01,1.568462210753871454e-03,1.108984221387573355e+00,1.823358105285910913e+00,3.201909986739597258e-01,-4.750668363922288563e-03,-6.831295261885781400e-01,2.934384765342214554e-02,1.022306167876690930e+00,1.857183873321233358e+00,3.222992632856514494e-01,-8.598708921656681575e-03,-6.739440276605126456e-01,2.065558838161718480e-02,1.050035039105452705e+00,1.857183873316056166e+00,3.222992632330057283e-01,-8.598708938001556681e-03,-5.765383619360247014e-01,-8.730451963544990507e-03,1.037274599794541619e+00,1.868961584713143997e+00,3.262823218832339167e-01,-8.671537326815184285e-03,-5.221067243650548972e-01,-3.014695534538408550e-01,1.381346709353438840e+00,1.857183873321233358e+00,3.222992632856514494e-01,-8.598708921656681575e-03,-4.699023237590562174e-01,8.631818775898474072e-02,1.500344280611231040e+00,1.857183873321233358e+00,3.222992632856514494e-01,-8.598708921656681575e-03,-5.436386956255601088e-01,-3.024241458045093256e-01,1.348709451345943222e+00,1.062140691276461490e+00,1.532126416119864165e-01,-6.477281803368301061e-01,-6.539970495999036793e-01,-4.008018254853866202e-01,1.067867640580188127e+00,5.704487236455658694e-01,-1.282145139229333042e+00,6.595695941481449776e-01,-6.515616985367698177e-01,-4.295698401227342478e-01,1.065739461469612515e+00,2.271430631331603500e-01,2.290989424512243078e-01,1.307956445458436034e+00,-4.383812609062764931e-01,-5.045852780905107915e-01,1.030114093055589430e+00,2.271430631331603778e-01,2.290989424512242800e-01,1.307956445458436034e+00,-4.891350616141645902e-01,1.079144654498382649e-01,1.474011217218164971e+00,3.084490170536818621e+00,-3.884377600335698344e-01,4.445018968115085345e-01,-6.029421645193193680e-01,4.034386202994043602e-01,1.452971396537059201e+00,-2.996533459688287326e+00,-2.384029023836763406e-01,-1.288494564645635165e+00,-5.980088800799789883e-01,4.180455730767863587e-01,1.477473608325017063e+00,-2.857610784338557419e+00,1.314306215485712359e+00,-9.398757054523193544e-01,-3.816353527501650245e-01,4.870344195098261775e-01,1.505139788674924040e+00,-2.857610784338557419e+00,1.314306215485712359e+00,-9.398757054523193544e-01
|
||||
1.666666699999999945e+00,-6.086218700000000092e-01,2.305472999999999897e-02,9.116324799999999673e-01,1.621453337595614164e+00,3.082535449178219755e-01,1.450055469671733543e-02,-6.032834866561522791e-01,2.418510720482496684e-02,8.881343049710721527e-01,1.621453337595614164e+00,3.082535449178219755e-01,1.450055469671733543e-02,-7.156536963903200599e-01,-7.522537066260984173e-02,8.560600893756361573e-01,1.606233475368724850e+00,-3.107156141351783418e-01,-1.727452870331097623e-01,-5.707188288821430922e-01,-8.597301095260648229e-02,4.781180434765240350e-01,1.604570344188888109e+00,4.515298113069422109e-02,-1.603815597375597701e-01,-5.944516560745299882e-01,-8.119696131303318076e-02,5.094822993359777730e-01,1.675497776473912959e+00,3.217446059826120086e-01,-9.789754904292437276e-03,-7.334415087128277611e-01,-3.349246276110071086e-02,9.112340340683922069e-02,1.692989286141769245e+00,4.002908893798379775e-01,1.519671138229196188e-02,-7.975929475899681265e-01,-3.733543944189307573e-02,7.001030915447677139e-02,1.363947695098578938e+00,3.533237546054432965e-01,-1.907080064159359101e-01,-6.265925165894872251e-01,-7.190788454288654652e-02,3.741273342785247924e-03,1.363947695098578938e+00,3.533237546054432965e-01,-1.907080064159359656e-01,-7.154761515148243545e-01,1.264214760989209596e-01,8.658006246013899565e-01,1.557280854006699133e+00,-5.631638374594211127e-01,-1.508227245349061663e-01,-4.850703896754094413e-01,8.593856981314643151e-02,5.405821591168686879e-01,1.558976508408018047e+00,-2.581352870046742520e-01,-1.550209928123581771e-01,-5.175220712130991219e-01,8.948218357130634237e-02,5.630570925245148572e-01,1.534734165319031396e+00,2.042750508649889690e-02,-2.842426015970033193e-01,-5.309526517215018560e-01,7.642289971172580576e-02,1.113052145241809621e-01,1.542079203135989340e+00,-4.959833648230057429e-02,-2.694443277007168569e-01,-5.759878416824449898e-01,9.612735075448375355e-02,6.483474429876739942e-02,1.665136745156240439e+00,-7.265665211301065851e-02,-1.709536364164976618e-01,-3.922202692530165624e-01,6.574023555285307685e-02,7.641442577712886930e-02,1.665136745156240439e+00,-7.265665211301065851e-02,-1.709536364164976063e-01,-6.750911511816840571e-01,1.954829553545356369e-02,9.854336332983091307e-01,1.641854825254041472e+00,3.104253094293608628e-01,9.138908215443584254e-03,-6.567127579542844096e-01,1.736936751674708276e-02,1.013168223440035876e+00,1.669453467256767354e+00,3.143095157472174384e-01,3.596645558187601920e-03,-6.459158546602766782e-01,1.407117650505987534e-02,1.044391825414716202e+00,1.721333479894770147e+00,3.180871939210686006e-01,-1.857603561467500520e-03,-6.414416836490025586e-01,8.587857676022093295e-03,1.079408259105955503e+00,1.773537143226594059e+00,3.210422168818808930e-01,-6.237225599176523388e-03,-6.433993128346985335e-01,2.639762347835525498e-03,1.109739742118287520e+00,1.817215288748888158e+00,3.237147565644762359e-01,-1.021126959407643933e-02,-6.689661423494441816e-01,2.989793446195215462e-02,1.022965167464434666e+00,1.850170661344444412e+00,3.257920441098869357e-01,-1.390988092239538350e-02,-6.597081865384604171e-01,2.136461572014914517e-02,1.050718045827896852e+00,1.850170661339331835e+00,3.257920440571338005e-01,-1.390988093836933309e-02,-5.624068874536733986e-01,-7.846335857006531134e-03,1.037891148288512255e+00,1.861617508022400447e+00,3.295323898478753066e-01,-1.406993566061214181e-02,-5.050376046537695673e-01,-2.983549759182199113e-01,1.378840099357874660e+00,1.850170661344444412e+00,3.257920441098869357e-01,-1.390988092239538350e-02,-4.534582097232643383e-01,9.039240298232717463e-02,1.497393184554770329e+00,1.850170661344444412e+00,3.257920441098869357e-01,-1.390988092239538350e-02,-5.266890236477984599e-01,-2.994585133452027370e-01,1.346286667835848272e+00,1.024397498156116360e+00,1.942722048276678826e-01,-6.810112550024619571e-01,-6.549792749844226547e-01,-3.957412693058330877e-01,1.072424477780120622e+00,5.804005468660833333e-01,-1.255063766110457335e+00,6.407684752140361262e-01,-6.528572733353978919e-01,-4.245578829705866086e-01,1.070647223380795099e+00,2.465481660488442472e-01,2.487637077247475126e-01,1.303249931304433007e+00,-4.412633499339909671e-01,-5.020757375185584959e-01,1.031132977818720597e+00,2.465481660488442750e-01,2.487637077247475126e-01,1.303249931304433007e+00,-4.727187201303058028e-01,1.118736581384399964e-01,1.470986441875196338e+00,3.085769793172874031e+00,-3.896766126351955961e-01,4.460638296873452036e-01,-5.871179779368640439e-01,4.071975927851808619e-01,1.450350544424778620e+00,-2.995473565549989114e+00,-2.253186695070245049e-01,-1.357214763421131565e+00,-5.811533571824260003e-01,4.211129749226137364e-01,1.475025312641055519e+00,-2.835144151131209878e+00,1.326191154482089907e+00,-9.865867537764498874e-01,-3.605173348609024275e-01,4.747733498418800768e-01,1.503001938851533437e+00,-2.835144151131209878e+00,1.326191154482089907e+00,-9.865867537764498874e-01
|
|
@ -1,111 +0,0 @@
|
||||
Coordinates
|
||||
version=1
|
||||
nRows=100
|
||||
nColumns=69
|
||||
inDegrees=yes
|
||||
|
||||
Units are S.I. units (second, meters, Newtons, ...)
|
||||
If the header above contains a line with 'inDegrees', this indicates whether rotational values are in degrees (yes) or radians (no).
|
||||
|
||||
endheader
|
||||
time pelvis_tilt pelvis_list pelvis_rotation pelvis_tx pelvis_ty pelvis_tz hip_flexion_r hip_adduction_r hip_rotation_r knee_angle_r knee_angle_r_beta ankle_angle_r subtalar_angle_r mtp_angle_r hip_flexion_l hip_adduction_l hip_rotation_l knee_angle_l knee_angle_l_beta ankle_angle_l subtalar_angle_l mtp_angle_l L5_S1_Flex_Ext L5_S1_Lat_Bending L5_S1_axial_rotation L4_L5_Flex_Ext L4_L5_Lat_Bending L4_L5_axial_rotation L3_L4_Flex_Ext L3_L4_Lat_Bending L3_L4_axial_rotation L2_L3_Flex_Ext L2_L3_Lat_Bending L2_L3_axial_rotation L1_L2_Flex_Ext L1_L2_Lat_Bending L1_L2_axial_rotation L1_T12_Flex_Ext L1_T12_Lat_Bending L1_T12_axial_rotation Abs_r3 Abs_r2 Abs_r1 Abs_t1 Abs_t2 neck_flexion neck_bending neck_rotation sh_tx_r sh_ty_r sh_tz_r sh_plane_elev_r sh_elev_r sh_axial_rot_r elbow_flex_r pro_sup_r wrist_flex_r wrist_dev_r sh_tx_l sh_ty_l sh_tz_l sh_plane_elev_l sh_elev_l sh_axial_rot_l elbow_flex_l pro_sup_l wrist_flex_l wrist_dev_l
|
||||
0.01666670 -1.03176270 4.20500877 -90.05617661 0.01671590 0.91088391 -1.37992725 7.01110301 8.42906582 -8.06696504 23.92167736 0.41751203 13.00560695 -19.21693873 0.00000000 35.94939224 7.16987742 5.54761353 17.93899114 0.31309446 -6.47555136 -6.16619873 0.00000000 -0.06893942 0.47388196 1.37248288 -0.12802741 0.63026300 1.45826306 -0.11326058 1.15219659 1.45826306 -0.07879087 1.15219659 1.20092252 -0.06401715 0.96634009 1.11514234 -0.03939199 0.73404315 1.02936216 -0.49242742 5.36064747 7.63333801 0.00000000 0.00000000 0.00000000 0.00000000 0.00000002 -0.02714894 0.00810935 -0.00584054 -28.82048545 17.03068013 8.92106747 41.60210664 89.99559364 0.00000000 0.00000000 -0.02647133 -0.00218831 -0.00501763 1.27284560 11.53285371 4.13181997 20.80321303 89.99559364 0.00000000 0.00000000
|
||||
0.03333330 -2.18737817 3.55309608 -89.52292120 0.01230649 0.91278841 -1.37038479 5.18727436 9.96916451 -9.83039782 23.24147266 0.40564022 13.43216988 -19.02278257 0.00000000 36.05528306 6.51043501 7.76821784 19.09903413 0.33334103 -10.97108116 -5.61208819 0.00000000 -0.06210538 0.63438639 1.34507369 -0.11533590 0.84373390 1.42914080 -0.10203293 1.54244706 1.42914080 -0.07098024 1.54244706 1.17693948 -0.05767105 1.29364072 1.09287237 -0.03548701 0.98266451 1.00880527 -0.44361251 7.17630570 7.48089635 0.00000000 0.00000000 0.00000000 0.00000000 0.00000001 -0.02387496 0.01152068 -0.00575971 -35.53735979 17.49288258 8.57814460 44.31740243 89.99559364 0.00000000 0.00000000 -0.01924147 -0.00266900 -0.00507886 1.76516740 12.12949994 2.37061020 20.55507419 89.99559364 0.00000000 0.00000000
|
||||
0.05000000 -1.87016548 2.78246799 -89.64230437 0.00726671 0.91464001 -1.36044828 3.80472344 9.97220039 -9.49860040 23.60600231 0.41200246 15.33455069 -18.80435034 0.00000000 35.45620555 6.54418450 7.53874082 20.87472798 0.36433273 -12.85767888 -5.20309621 0.00000000 -0.05560163 0.55565548 1.13224188 -0.10325778 0.73902178 1.20300700 -0.09134791 1.35102072 1.20300700 -0.06354710 1.35102072 0.99071164 -0.05163167 1.13309264 0.91994653 -0.03177077 0.86071033 0.84918141 -0.39715687 6.28568587 6.29718966 0.00000000 0.00000000 0.00000000 0.00000000 0.00000001 -0.02447807 0.01420653 -0.00574257 -35.77701344 16.97221485 8.10730624 45.39204701 89.99559364 0.00000000 0.00000000 -0.01689380 -0.00341916 -0.00508033 1.72002688 13.15722485 2.40155747 20.22824458 89.99559364 0.00000000 0.00000000
|
||||
0.06666670 -2.14971396 2.30818930 -89.55403140 0.00434488 0.91511494 -1.35000724 2.28159820 10.54020322 -9.80260645 23.05344735 0.40235856 14.41352572 -18.55415611 0.00000000 35.13838188 6.14722735 6.59201277 22.82398016 0.39835360 -13.86071493 -5.04787491 0.00000000 -0.05885445 0.52508554 0.81359592 -0.10929860 0.69836377 0.86444567 -0.09669198 1.27669299 0.86444567 -0.06726475 1.27669299 0.71189643 -0.05465224 1.07075444 0.66104669 -0.03362943 0.81335751 0.61019694 -0.42039146 5.93987268 4.52497644 0.00000000 0.00000000 0.00000000 0.00000000 0.00000001 -0.02333188 0.01555384 -0.00566521 -35.96560204 16.67751325 7.09970919 48.33004791 89.99559364 0.00000000 0.00000000 -0.01556365 -0.00288336 -0.00511877 1.48248970 13.87344107 2.26275432 19.28785520 89.99559364 0.00000000 0.00000000
|
||||
0.08333330 -2.78208993 1.92371058 -89.35517531 0.00187679 0.91615863 -1.33889483 1.03542527 11.25032805 -10.18252567 22.77838567 0.39755783 14.16111158 -18.52586258 0.00000000 35.15730413 5.44311075 5.22743795 25.23197347 0.44038101 -13.81277150 -4.07266659 0.00000000 -0.05940253 0.51433347 0.66753514 -0.11031644 0.68406352 0.70925609 -0.09759241 1.25055040 0.70925609 -0.06789115 1.25055040 0.58409325 -0.05516119 1.04882881 0.54237230 -0.03394260 0.79670255 0.50065135 -0.42430632 5.81824308 3.71263019 0.00000000 0.00000000 0.00000000 0.00000000 0.00000001 -0.02255676 0.01679795 -0.00568981 -35.52802516 16.93778860 7.00314079 50.51948639 89.99559364 0.00000000 0.00000000 -0.01198237 -0.00368973 -0.00514899 1.42725414 14.42419018 2.05689944 19.30632870 89.99559364 0.00000000 0.00000000
|
||||
0.10000000 -3.17041534 1.82924847 -89.04232140 -0.00050556 0.91655318 -1.32664625 -0.09350978 11.79662777 -10.70617742 22.28347944 0.38892009 13.74995701 -18.41186012 0.00000000 35.27978474 4.80070163 3.69438153 27.14091271 0.47369829 -13.60752546 -2.87235811 0.00000000 -0.06024369 0.44238940 0.58058692 -0.11187855 0.58837790 0.61687360 -0.09897435 1.07562558 0.61687360 -0.06885251 1.07562558 0.50801355 -0.05594229 0.90212046 0.47172687 -0.03442324 0.68526117 0.43544019 -0.43031464 5.00439733 3.22905025 0.00000000 0.00000000 0.00000000 0.00000000 0.00000001 -0.02261212 0.01672906 -0.00568565 -34.79386551 17.35257426 7.04753756 52.84260101 89.99559364 0.00000000 0.00000000 -0.00937655 -0.00363355 -0.00520062 1.46647888 15.18229850 1.77807800 19.94618526 89.99559364 0.00000000 0.00000000
|
||||
0.11666670 -3.57057558 1.80302953 -88.62994894 -0.00285808 0.91711980 -1.31360073 -0.83641567 12.33301953 -11.35610304 22.43963117 0.39164545 13.64616306 -18.33560290 0.00000000 35.52103715 4.26331763 2.87269780 28.81716525 0.50295441 -12.93475799 -1.93570566 0.00000000 -0.06132300 0.35389141 0.54081102 -0.11388295 0.47067557 0.57461171 -0.10074756 0.86045157 0.57461171 -0.07008606 0.86045157 0.47320964 -0.05694454 0.72165536 0.43940895 -0.03503996 0.54817779 0.40560826 -0.43802407 4.00329038 3.00782864 0.00000000 0.00000000 0.00000000 0.00000000 0.00000001 -0.02263298 0.01650122 -0.00569926 -34.03564934 17.96263808 7.07539575 55.21868446 89.99559364 0.00000000 0.00000000 -0.00723859 -0.00339311 -0.00531197 1.50631757 16.00476896 1.43336967 20.86764981 89.99559364 0.00000000 0.00000000
|
||||
0.13333330 -3.73450223 1.97780192 -88.32159109 -0.00555699 0.91775650 -1.30018390 -0.99705473 12.53886517 -12.00918281 23.35924324 0.40769571 13.56689083 -18.23118460 0.00000000 35.63579078 4.02340151 2.67842735 29.92147907 0.52222833 -12.06803315 -1.50592397 0.00000000 -0.06176228 0.21725655 0.51365797 -0.11469873 0.28895121 0.54576159 -0.10146925 0.52823757 0.54576159 -0.07058811 0.52823757 0.44945073 -0.05735245 0.44302955 0.41734710 -0.03529097 0.33653039 0.38524348 -0.44116180 2.45764950 2.85681154 0.00000000 0.00000000 0.00000000 0.00000000 0.00000001 -0.02295576 0.01581970 -0.00565068 -33.18859382 18.53616617 7.01721048 57.95417969 89.99559364 0.00000000 0.00000000 -0.00728241 -0.00255490 -0.00535308 1.47497277 17.01650380 1.05346087 21.97450647 89.99559364 0.00000000 0.00000000
|
||||
0.15000000 -3.81606982 2.10391148 -88.08945735 -0.00858047 0.91865276 -1.28723496 -0.55459264 12.40908821 -13.04219680 25.48073792 0.44472277 13.23655826 -18.21889414 0.00000000 35.55771865 4.06348776 3.47792450 30.84991651 0.53843262 -10.51692605 -1.84815117 0.00000000 -0.05925875 0.05122430 0.52043187 -0.11004943 0.06812831 0.55295887 -0.09735620 0.12454676 0.55295887 -0.06772683 0.12454676 0.45537789 -0.05502768 0.10445659 0.42285090 -0.03386045 0.07934644 0.39032391 -0.42327934 0.57945949 2.89448595 0.00000000 0.00000000 0.00000000 0.00000000 0.00000001 -0.02195991 0.01642331 -0.00559224 -32.53433059 19.03525997 6.86220302 59.83238116 89.99559364 0.00000000 0.00000000 -0.00626314 -0.00093603 -0.00532336 1.42656715 18.07686069 0.90500406 22.61593121 89.99559364 0.00000000 0.00000000
|
||||
0.16666670 -3.83221678 2.39028307 -88.14119992 -0.01237861 0.91925415 -1.27559760 1.01040959 11.87683555 -14.01738608 29.21880066 0.50996428 13.07872884 -18.12254923 0.00000000 35.57940419 4.13991882 4.63133958 31.71467383 0.55352548 -8.52967972 -2.35315685 0.00000000 -0.06428330 -0.11549390 0.35239982 -0.11938051 -0.15360688 0.37442481 -0.10561103 -0.28081186 0.37442481 -0.07346938 -0.28081186 0.30834984 -0.05969347 -0.23551516 0.28632485 -0.03673148 -0.17890005 0.26429986 -0.45916916 -1.30649007 1.95994207 0.00000000 0.00000000 0.00000000 0.00000000 0.00000001 -0.01943065 0.01359268 -0.00559521 -30.86598593 19.95236443 6.51939177 65.30299978 89.99559364 0.00000000 0.00000000 -0.01153392 -0.00057416 -0.00529724 0.46744560 19.36453503 0.10316459 23.99183932 89.99559364 0.00000000 0.00000000
|
||||
0.18333330 -3.62490567 2.53735261 -88.36309338 -0.01675721 0.91965079 -1.26519900 3.18427479 10.73451751 -15.16380158 34.18711012 0.59667763 12.65250351 -18.03239111 0.00000000 35.38397393 4.45996321 6.10021695 32.57987283 0.56862605 -6.18506392 -3.76840335 0.00000000 -0.06547267 -0.32804918 0.26696206 -0.12158930 -0.43630541 0.28364718 -0.10756506 -0.79761877 0.28364718 -0.07482872 -0.79761877 0.23359180 -0.06079793 -0.66895788 0.21690667 -0.03741109 -0.50814818 0.20022154 -0.46766476 -3.71095791 1.48476286 0.00000000 0.00000000 0.00000000 0.00000000 0.00000001 -0.01569512 0.01355529 -0.00539978 -29.65536293 20.58923592 5.81602556 69.08927553 89.99559364 0.00000000 0.00000000 -0.01391463 0.00096986 -0.00527328 0.02958448 20.92095295 0.03938211 24.81953287 89.99559364 0.00000000 0.00000000
|
||||
0.20000000 -3.46179026 2.62931651 -88.48220718 -0.02108568 0.91968550 -1.25580765 5.53862877 9.36453176 -16.48054851 39.28769936 0.68569971 11.70917025 -17.72218631 0.00000000 35.22315937 4.86545968 7.90889625 33.68008424 0.58782836 -3.79368523 -5.83728148 0.00000000 -0.06816129 -0.53323909 0.10024234 -0.12658234 -0.70920799 0.10650749 -0.11198219 -1.29651753 0.10650749 -0.07790154 -1.29651753 0.08771205 -0.06329458 -1.08738115 0.08144690 -0.03894736 -0.82598735 0.07518176 -0.48686931 -6.03210725 0.55751784 0.00000000 0.00000000 0.00000000 0.00000000 0.00000001 -0.00966164 0.01349242 -0.00537616 -28.23339332 21.54994536 4.60459086 73.70755672 89.99559364 0.00000000 0.00000000 -0.01522352 0.00206133 -0.00522261 -0.67141036 22.55986518 -0.00916615 25.68089392 89.99559364 0.00000000 0.00000000
|
||||
0.21666670 -3.44316608 2.69693899 -88.49746464 -0.02556412 0.91936432 -1.24702070 7.73041977 7.99756572 -17.79681487 43.88234194 0.76589135 10.60869268 -17.16648883 0.00000000 35.19964251 5.14346597 9.65043333 35.14484623 0.61339328 -1.76987965 -8.28449697 0.00000000 -0.06907493 -0.72284898 -0.27208884 -0.12827905 -0.96138914 -0.28909440 -0.11348320 -1.75753500 -0.28909440 -0.07894574 -1.75753500 -0.23807774 -0.06414298 -1.47403363 -0.22107218 -0.03946941 -1.11969306 -0.20406663 -0.49339531 -8.17701219 -1.51327652 0.00000000 0.00000000 0.00000000 0.00000000 0.00000001 -0.00191824 0.01546370 -0.00537510 -24.52970667 22.53166755 1.82862441 77.36365321 89.99559364 0.00000000 0.00000000 -0.00876743 0.00262980 -0.00508772 -7.61751840 23.90413520 2.69793150 29.06282580 89.99559364 0.00000000 0.00000000
|
||||
0.23333330 -3.67984070 2.80145518 -88.60386212 -0.03048030 0.91883907 -1.23861583 9.78732677 6.80667838 -18.88235328 47.90688690 0.83613291 9.71354709 -16.18349649 0.00000000 35.39114842 5.01180444 10.95891241 36.97304644 0.64530139 -0.02280350 -10.58038339 0.00000000 -0.06808938 -0.89268610 -0.39946878 -0.12644879 -1.18727251 -0.42443558 -0.11186404 -2.17047698 -0.42443558 -0.07781935 -2.17047698 -0.34953519 -0.06322780 -1.82036549 -0.32456839 -0.03890627 -1.38277077 -0.29960159 -0.48635564 -10.09824369 -2.22172554 0.00000000 0.00000000 0.00000000 0.00000000 0.00000001 0.00611245 0.01806162 -0.00528942 -23.82461554 23.61804833 -0.14692467 81.25808346 89.99559364 0.00000000 0.00000000 -0.00681979 0.00269464 -0.00506152 -7.04864123 25.73010516 2.73819358 30.10729306 89.99559364 0.00000000 0.00000000
|
||||
0.25000000 -4.43363270 2.94688546 -88.76963374 -0.03545902 0.91817155 -1.23038903 11.78792443 6.00933891 -19.90923509 51.44331463 0.89785522 9.12501275 -14.89658658 0.00000000 35.74413216 4.33974498 12.22831581 39.07975461 0.68207039 1.47384560 -13.01109640 0.00000000 -0.07279456 -1.00825197 -0.52411078 -0.13518678 -1.34097512 -0.55686770 -0.11959418 -2.45146385 -0.55686770 -0.08319690 -2.45146385 -0.45859693 -0.06759703 -2.05602742 -0.42584001 -0.04159481 -1.56178231 -0.39308308 -0.51996427 -11.40554797 -2.91494692 0.00000000 0.00000000 0.00000000 0.00000000 0.00000001 0.01522484 0.02174095 -0.00526017 -23.11796550 24.85028975 -2.43252691 84.83147843 89.99559364 0.00000000 0.00000000 -0.00420589 0.00243338 -0.00495330 -6.46379825 27.33534968 2.62213715 31.14176188 89.99559364 0.00000000 0.00000000
|
||||
0.26666670 -5.68739387 3.12299001 -89.06979503 -0.04043113 0.91739900 -1.22229240 13.95554971 5.54058356 -20.81168816 54.84453600 0.95721773 9.02935890 -13.60379924 0.00000000 36.11875860 3.09677948 13.44599199 41.23629439 0.71970911 2.98105160 -15.33187599 0.00000000 -0.07633175 -1.07478985 -0.62140218 -0.14175569 -1.42947051 -0.66023982 -0.12540543 -2.61324405 -0.66023982 -0.08723955 -2.61324405 -0.54372691 -0.07088166 -2.19171147 -0.50488927 -0.04361596 -1.66484949 -0.46605164 -0.54523003 -12.15823780 -3.45605252 0.00000000 0.00000000 0.00000000 0.00000000 0.00000001 0.02466511 0.02609885 -0.00522056 -22.32434164 26.02124772 -4.96324044 87.86971682 89.99559364 0.00000000 0.00000000 -0.00175759 0.00209327 -0.00489211 -5.90642923 28.67261248 2.43081602 32.02451615 89.99559364 0.00000000 0.00000000
|
||||
0.28333330 -7.41254126 3.33369938 -89.46555484 -0.04505715 0.91669501 -1.21414101 16.31630070 5.25743728 -21.73178505 58.12151864 1.01441187 9.32058730 -12.45385531 0.00000000 36.39285217 1.36242295 14.76980408 43.24869991 0.75483221 4.84884770 -17.28173326 0.00000000 -0.07920155 -1.09213365 -0.68826486 -0.14708519 -1.45253775 -0.73128141 -0.13012022 -2.65541374 -0.73128141 -0.09051945 -2.65541374 -0.60223175 -0.07354656 -2.22707893 -0.55921520 -0.04525576 -1.69171502 -0.51619864 -0.56572873 -12.35443422 -3.82792266 0.00000000 0.00000000 0.00000000 0.00000000 0.00000001 0.03267579 0.03071176 -0.00518970 -21.15844067 27.01346988 -7.86362905 90.34262408 89.99559364 0.00000000 0.00000000 0.00007215 0.00188598 -0.00484372 -5.43434434 29.69076661 2.19008807 32.59670101 89.99559364 0.00000000 0.00000000
|
||||
0.30000000 -9.47678420 3.43351512 -89.88905045 -0.04916249 0.91629540 -1.20613369 18.67640481 4.98912792 -22.71226594 61.19112471 1.06798660 9.94884857 -11.70903491 0.00000000 36.49111605 -0.72703798 16.11817763 45.12087425 0.78750782 7.15417797 -18.35095247 0.00000000 -0.08612566 -1.07454892 -0.90778157 -0.15994396 -1.42915006 -0.96451792 -0.14149584 -2.61265825 -0.96451792 -0.09843301 -2.61265825 -0.79430887 -0.07997628 -2.19122016 -0.73757252 -0.04921220 -1.66447628 -0.68083618 -0.61518695 -12.15551230 -5.04880875 0.00000000 0.00000000 0.00000000 0.00000000 0.00000001 0.03247733 0.03751555 -0.00536065 -14.91440060 27.57854085 -13.86710820 89.73792727 89.99559364 0.00000000 0.00000000 -0.00303832 0.00282791 -0.00485726 -5.31169885 30.29127932 1.18244840 32.04703743 89.99559364 0.00000000 0.00000000
|
||||
0.31666670 -11.76936434 3.73378600 -90.30524009 -0.05242030 0.91596974 -1.19770260 21.12235674 4.55241804 -23.81277199 63.74351212 1.11253416 10.74226162 -10.85792725 0.00000000 36.76082603 -2.95396597 17.59719607 46.83187907 0.81737048 9.73929077 -18.86574745 0.00000000 -0.09003960 -1.01626210 -0.91650842 -0.16721254 -1.35162860 -0.97379019 -0.14792606 -2.47093968 -0.97379019 -0.10290626 -2.47093968 -0.80194486 -0.08361077 -2.07236168 -0.74466309 -0.05144863 -1.57419000 -0.68738131 -0.64314387 -11.49616015 -5.09734486 0.00000000 0.00000000 0.00000000 0.00000000 0.00000001 0.03667109 0.04244659 -0.00537642 -14.31656391 28.28612078 -15.95470200 91.42323987 89.99559364 0.00000000 0.00000000 -0.00136735 0.00383147 -0.00486902 -5.37884482 30.58096674 1.35701452 31.83636912 89.99559364 0.00000000 0.00000000
|
||||
0.33333330 -13.92147956 3.99233464 -90.84683418 -0.05517338 0.91587827 -1.18890901 23.33896953 3.76334635 -24.58298402 65.67164736 1.14618647 11.42069043 -10.18270151 0.00000000 37.07008938 -5.07806981 18.74820442 48.50271046 0.84653199 12.08570461 -19.12930474 0.00000000 -0.08736297 -0.97554522 -0.90068105 -0.16224177 -1.29747515 -0.95697361 -0.14352862 -2.37194066 -0.95697361 -0.09984714 -2.37194066 -0.78809592 -0.08112525 -1.98933182 -0.73180335 -0.04991920 -1.51111955 -0.67551078 -0.62402496 -11.03556268 -5.00931778 0.00000000 0.00000000 0.00000000 0.00000000 0.00000001 0.03905932 0.04752557 -0.00536101 -14.14445548 28.81037089 -17.09086145 92.11459251 89.99559364 0.00000000 0.00000000 -0.00040293 0.00619491 -0.00499116 -5.61394848 30.69855317 1.43627694 31.33074169 89.99559364 0.00000000 0.00000000
|
||||
0.35000000 -16.41195575 4.04647143 -91.18706511 -0.05652169 0.91590102 -1.17924493 24.75140603 2.94849962 -25.65555034 66.43369073 1.15948664 12.53029244 -7.90183803 0.00000000 37.55368834 -7.29674195 20.10512484 50.53652645 0.88202878 13.98909280 -19.23793301 0.00000000 -0.09663154 -0.84730927 -1.00108540 -0.17945444 -1.12692133 -1.06365324 -0.15875596 -2.06014775 -1.06365324 -0.11044019 -2.06014775 -0.87594973 -0.08973205 -1.72783306 -0.81338189 -0.05521526 -1.31248206 -0.75081405 -0.69022944 -9.58493189 -5.56773668 0.00000000 0.00000000 0.00000000 0.00000000 0.00000001 0.03748607 0.05127518 -0.00558095 -12.39427946 29.33633372 -20.11298857 93.23764599 89.99559364 0.00000000 0.00000000 -0.00275646 0.00745452 -0.00502643 -5.69344327 30.29468660 2.19648212 29.33233810 89.99559364 0.00000000 0.00000000
|
||||
0.36666670 -18.51970635 4.08491412 -91.77267879 -0.05779002 0.91549398 -1.16883689 25.87464102 1.86718428 -26.04606707 66.34979035 1.15802230 13.12537187 -5.66712002 0.00000000 38.31794162 -9.28247546 20.82260516 52.96767963 0.92446041 15.32137066 -19.29777813 0.00000000 -0.10030120 -0.76118805 -0.97416760 -0.18626936 -1.01238011 -1.03505307 -0.16478484 -1.85075263 -1.03505307 -0.11463424 -1.85075263 -0.85239665 -0.09313970 -1.55221468 -0.79151117 -0.05731211 -1.17908030 -0.73062570 -0.71644146 -8.61071151 -5.41802793 0.00000000 0.00000000 0.00000000 0.00000000 0.00000001 0.03593206 0.05452121 -0.00571417 -13.18385904 29.74367213 -21.36041368 94.25079280 89.99559364 0.00000000 0.00000000 -0.00235859 0.00964575 -0.00502828 -6.28371240 29.76650062 2.40044415 28.05348822 89.99559364 0.00000000 0.00000000
|
||||
0.38333330 -20.32142249 4.08467986 -92.49792495 -0.05867247 0.91463104 -1.15782149 26.59285752 0.62403413 -26.00732896 65.35640304 1.14068442 13.33827721 -2.93070333 0.00000000 39.25839880 -11.00932803 21.21155514 55.75892202 0.97317678 16.09055857 -19.33596739 0.00000000 -0.10288798 -0.68549646 -0.76741291 -0.19107327 -0.91171029 -0.81537622 -0.16903466 -1.66671610 -0.81537622 -0.11759067 -1.66671610 -0.67148630 -0.09554178 -1.39786438 -0.62352299 -0.05879019 -1.06183402 -0.57555968 -0.73491856 -7.75447307 -4.26812039 0.00000000 0.00000000 0.00000000 0.00000000 0.00000001 0.03718156 0.05668408 -0.00566710 -17.81259569 30.21804342 -20.63009645 96.55135856 89.99559364 0.00000000 0.00000000 -0.00256959 0.01099334 -0.00508208 -4.74285232 29.36171142 3.91288768 25.92410968 89.99559364 0.00000000 0.00000000
|
||||
0.40000000 -21.70925898 3.93550174 -93.56548223 -0.05976604 0.91363513 -1.14699223 26.93835077 -0.63536560 -25.31618115 63.63831348 1.11069810 13.07638052 -0.13808957 0.00000000 39.97298206 -12.55058182 21.13487111 58.62367514 1.02317615 16.45825538 -19.34641853 0.00000000 -0.10475822 -0.64761600 -0.65992938 -0.19454648 -0.86132928 -0.70117496 -0.17210727 -1.57461354 -0.70117496 -0.11972816 -1.57461354 -0.57743820 -0.09727848 -1.32061855 -0.53619262 -0.05985884 -1.00315718 -0.49494703 -0.74827745 -7.32596171 -3.67032922 0.00000000 0.00000000 0.00000000 0.00000000 0.00000001 0.03469415 0.05867964 -0.00573841 -19.18805635 30.62057666 -21.87930567 97.03848393 89.99559364 0.00000000 0.00000000 -0.00277841 0.01215655 -0.00498466 -5.26764134 28.78539582 3.95019918 24.75459203 89.99559364 0.00000000 0.00000000
|
||||
0.41666670 -22.74882917 3.75483213 -94.70002819 -0.06114637 0.91240855 -1.13691632 27.10727304 -1.95893258 -24.35601489 61.41683428 1.07192597 12.45746308 2.80564563 0.00000000 40.42959204 -13.85105249 20.90111127 61.19853944 1.06811601 16.52266162 -19.34614916 0.00000000 -0.10681698 -0.63344532 -0.46298568 -0.19836982 -0.84248228 -0.49192229 -0.17548962 -1.54015896 -0.49192229 -0.12208113 -1.54015896 -0.40511247 -0.09919025 -1.29172170 -0.37617587 -0.06103522 -0.98120681 -0.34723926 -0.76298304 -7.16566019 -2.57498748 0.00000000 0.00000000 0.00000000 0.00000000 0.00000001 0.03281651 0.05968736 -0.00586384 -21.43857322 31.11914130 -22.98710005 97.64527802 89.99559364 0.00000000 0.00000000 -0.00175895 0.01203386 -0.00497881 -5.20760359 28.42423459 4.34069744 23.92611608 89.99559364 0.00000000 0.00000000
|
||||
0.43333330 -23.39646704 3.73233039 -95.94407659 -0.06359163 0.91110331 -1.12782483 27.48989907 -3.25604574 -22.98203507 58.89817233 1.02796703 11.21524729 5.14928998 0.00000000 40.63250074 -15.03532366 20.40672520 63.14324133 1.10205746 16.54048086 -19.31116632 0.00000000 -0.10911962 -0.65606901 0.12219665 -0.20264605 -0.87257178 0.12983394 -0.17927263 -1.59516618 0.12983394 -0.12471281 -1.59516618 0.10692207 -0.10132848 -1.33785592 0.09928478 -0.06235095 -1.01625089 0.09164749 -0.77943054 -7.42158380 0.67962110 0.00000000 0.00000000 0.00000000 0.00000000 0.00000000 0.03838146 0.05903920 -0.00550475 -30.31156595 32.64589877 -19.95686028 100.13254973 89.99559364 0.00000000 0.00000000 0.00018242 0.01084237 -0.00501681 -0.77610083 28.65903022 5.10136199 22.95484952 89.99559364 0.00000000 0.00000000
|
||||
0.45000000 -23.77702307 3.65231919 -96.87995670 -0.06628650 0.91027898 -1.11915359 27.76634504 -4.63336692 -21.57442809 56.16325568 0.98023373 9.74686383 6.98817315 0.00000000 40.34620974 -15.99139821 19.94670867 64.23808545 1.12116610 16.64891898 -19.26168747 0.00000000 -0.10531007 -0.72016108 0.14768908 -0.19557134 -0.95781424 0.15691964 -0.17301392 -1.75099966 0.15691964 -0.12035888 -1.75099966 0.12922794 -0.09779093 -1.46855248 0.11999737 -0.06017418 -1.11552952 0.11076681 -0.75221932 -8.14660620 0.82140234 0.00000000 0.00000000 0.00000000 0.00000000 0.00000000 0.03858355 0.05979892 -0.00559580 -30.87684540 33.19756477 -20.66714559 99.99011899 89.99559364 0.00000000 0.00000000 -0.00384032 0.01058184 -0.00518031 -0.80895626 29.06189731 4.92494908 23.12727480 89.99559364 0.00000000 0.00000000
|
||||
0.46666670 -24.19624335 3.55550818 -97.58987189 -0.06895648 0.91016425 -1.11001380 27.84167619 -5.84139372 -20.24194756 53.27909092 0.92989556 8.63149730 8.98530822 0.00000000 39.60646768 -17.07183455 19.52558109 64.58700973 1.12725597 17.01550660 -19.14183722 0.00000000 -0.10760422 -0.77518138 0.65151521 -0.19983179 -1.03099123 0.69223491 -0.17678297 -1.88477601 0.69223491 -0.12298086 -1.88477601 0.57007581 -0.09992127 -1.58074987 0.52935611 -0.06148505 -1.20075596 0.48863641 -0.76860615 -8.76900680 3.62353213 0.00000000 0.00000000 0.00000000 0.00000000 0.00000000 0.03787644 0.05933038 -0.00548067 -36.18720116 34.60813325 -20.06504873 100.37332345 89.99559364 0.00000000 0.00000000 0.00261011 0.00934234 -0.00518324 1.39724018 29.48562409 2.65277820 24.60346589 89.99559364 0.00000000 0.00000000
|
||||
0.48333330 -24.63503241 3.40082093 -97.48576138 -0.07088154 0.91061109 -1.10052285 27.56361052 -7.15681919 -19.42716282 50.39058395 0.87948160 7.69532042 10.71432212 0.00000000 38.64736930 -17.83016346 19.59967585 64.25610318 1.12148056 17.54297017 -19.01198061 0.00000000 -0.10426705 -0.83511719 0.72391089 -0.19363434 -1.11070587 0.76915532 -0.17130034 -2.03050394 0.76915532 -0.11916681 -2.03050394 0.63342203 -0.09682238 -1.70297098 0.58817760 -0.05957819 -1.29359653 0.54293317 -0.74476912 -9.44701271 4.02617521 0.00000000 0.00000000 0.00000000 0.00000000 0.00000000 0.03605928 0.05966721 -0.00555436 -37.56929865 35.34473296 -20.62345273 99.87583552 89.99559364 0.00000000 0.00000000 0.00390040 0.00938145 -0.00531501 1.86294209 30.07341872 2.09856667 25.41032583 89.99559364 0.00000000 0.00000000
|
||||
0.50000000 -25.14347788 3.42117325 -96.89918638 -0.07283742 0.91089666 -1.09139123 27.37714806 -8.32504121 -18.74456411 47.80280503 0.83431634 6.88546174 11.72644953 0.00000000 37.87966132 -18.52619783 19.97532512 63.58762195 1.10981337 18.23197984 -18.84514519 0.00000000 -0.09967532 -0.88667247 0.92165590 -0.18510704 -1.17927439 0.97925939 -0.16375659 -2.15585545 0.97925939 -0.11391893 -2.15585545 0.80644891 -0.09255851 -1.80810250 0.74884542 -0.05695448 -1.37345566 0.69124192 -0.71197087 -10.03021633 5.12597360 0.00000000 0.00000000 0.00000000 0.00000000 0.00000000 0.03771034 0.05769379 -0.00534325 -42.00603448 37.16479366 -19.32769684 100.42726876 89.99559364 0.00000000 0.00000000 0.00685856 0.00908324 -0.00551496 3.73097402 30.84707977 -0.51560996 27.10590379 89.99559364 0.00000000 0.00000000
|
||||
0.51666670 -25.80142035 3.35160038 -95.83987024 -0.07441680 0.91104772 -1.08296569 26.95616364 -9.43008059 -18.49829074 45.57635417 0.79545744 6.39033744 12.71762007 0.00000000 37.21728066 -19.14166892 20.74323873 62.80988088 1.09623922 18.88997524 -18.66924445 0.00000000 -0.09713025 -0.92136213 0.94277126 -0.18038059 -1.22541164 1.00169446 -0.15957529 -2.24019989 1.00169446 -0.11101016 -2.24019989 0.82492485 -0.09019515 -1.87884166 0.76600165 -0.05550023 -1.42718994 0.70707845 -0.69379167 -10.42263270 5.24341092 0.00000000 0.00000000 0.00000000 0.00000000 0.00000000 0.03699412 0.05682137 -0.00535541 -44.22860200 38.57354033 -19.01381792 100.43070377 89.99559364 0.00000000 0.00000000 0.00835936 0.00909120 -0.00556024 4.95940705 31.69554937 -2.11325680 28.74566617 89.99559364 0.00000000 0.00000000
|
||||
0.53333330 -26.60674096 3.24630937 -94.66704961 -0.07583728 0.91085633 -1.07506039 26.38709543 -10.38946371 -18.60097742 43.62354784 0.76137454 5.87377718 13.66306070 0.00000000 36.73321604 -19.84594753 21.68484866 62.15401468 1.08479220 19.56667936 -18.51547838 0.00000000 -0.09272514 -0.93125183 0.84226936 -0.17219986 -1.23856493 0.89491120 -0.15233814 -2.26424569 0.89491120 -0.10597557 -2.26424569 0.73698569 -0.08610457 -1.89900873 0.68434386 -0.05298315 -1.44250908 0.63170202 -0.66232643 -10.53450693 4.68444951 0.00000000 0.00000000 0.00000000 0.00000000 0.00000000 0.03558562 0.05605221 -0.00544285 -44.99451270 39.78310087 -19.10296485 100.73992062 89.99559364 0.00000000 0.00000000 0.00815702 0.00898990 -0.00566157 5.53844227 32.60896083 -2.87790027 30.14935314 89.99559364 0.00000000 0.00000000
|
||||
0.55000000 -27.40988218 3.11754321 -93.81502925 -0.07743840 0.91054858 -1.06745156 25.77369958 -11.19098869 -18.72294523 41.78905770 0.72935665 5.11536471 14.52672158 0.00000000 36.25923541 -20.72683832 22.34728086 61.66682034 1.07628905 20.19114369 -18.38774483 0.00000000 -0.08825799 -0.92958519 0.79134014 -0.16390392 -1.23634831 0.84079889 -0.14499905 -2.26019344 0.84079889 -0.10087006 -2.26019344 0.69242262 -0.08195637 -1.89561013 0.64296386 -0.05043062 -1.43992746 0.59350510 -0.63041800 -10.51565362 4.40119643 0.00000000 0.00000000 0.00000000 0.00000000 0.00000000 0.03583028 0.05396601 -0.00528395 -46.06616888 41.35913636 -18.86911647 102.04941213 89.99559364 0.00000000 0.00000000 0.00853444 0.00874125 -0.00563946 5.66964237 33.35853958 -4.40506529 31.80705449 89.99559364 0.00000000 0.00000000
|
||||
0.56666670 -28.09098775 2.85202842 -93.47747268 -0.07933268 0.91057179 -1.06035747 25.06588725 -11.93430048 -18.78831378 39.93152011 0.69693650 4.16031413 15.27072888 0.00000000 35.52555014 -21.74628218 22.49171051 61.32294806 1.07028735 20.73063898 -18.30850946 0.00000000 -0.08361222 -0.94251838 0.74373038 -0.15527626 -1.25354945 0.79021352 -0.13736652 -2.29163920 0.79021352 -0.09556041 -2.29163920 0.65076408 -0.07764231 -1.92198349 0.60428093 -0.04777602 -1.45996097 0.55779778 -0.59723375 -10.66195645 4.13640523 0.00000000 0.00000000 0.00000000 0.00000000 0.00000000 0.03402226 0.05298920 -0.00526480 -45.61120589 42.38613364 -19.19683103 102.84484658 89.99559364 0.00000000 0.00000000 0.00590768 0.00881373 -0.00570320 5.73921775 34.35148981 -4.56557428 32.52468480 89.99559364 0.00000000 0.00000000
|
||||
0.58333330 -28.88453887 2.76123489 -93.42777656 -0.08159609 0.91007324 -1.05454620 24.66470993 -12.46128997 -18.96033548 38.08427452 0.66469598 3.33738994 15.75987267 0.00000000 35.17893306 -22.93256646 22.59690978 61.34333612 1.07064319 21.20196274 -18.24400254 0.00000000 -0.07772279 -0.91763043 0.62268226 -0.14433900 -1.22044847 0.66159990 -0.12769078 -2.23112662 0.66159990 -0.08882938 -2.23112662 0.54484698 -0.07217339 -1.87123197 0.50592934 -0.04441080 -1.42140953 0.46701169 -0.55516615 -10.38041893 3.46317192 0.00000000 0.00000000 0.00000000 0.00000000 0.00000000 0.03414350 0.05012230 -0.00527501 -44.35613178 43.95391697 -19.83980392 105.16274978 89.99559364 0.00000000 0.00000000 -0.00040684 0.00775593 -0.00559707 5.04614635 35.17151102 -4.90075499 33.29909050 89.99559364 0.00000000 0.00000000
|
||||
0.60000000 -29.27345553 2.69554428 -93.68290904 -0.08479155 0.90992059 -1.05050351 24.77171899 -13.29149963 -18.77598581 36.54750894 0.63787436 2.55132435 15.63882466 0.00000000 34.80216064 -23.83459735 22.27639299 61.43647970 1.07226885 21.57948171 -18.14279312 0.00000000 -0.07282593 -0.95602186 0.26117295 -0.13524503 -1.27150908 0.27749626 -0.11964572 -2.32447156 0.27749626 -0.08323275 -2.32447156 0.22852633 -0.06762616 -1.94951978 0.21220302 -0.04161274 -1.48087787 0.19587971 -0.52018833 -10.81471052 1.45256560 0.00000000 0.00000000 0.00000000 0.00000000 0.00000000 0.03353646 0.05041688 -0.00536091 -40.10523332 44.15984193 -21.19008642 106.46074548 89.99559364 0.00000000 0.00000000 0.00284290 0.00932093 -0.00544891 -2.79709677 35.58556851 -3.23855334 37.21614533 89.99559364 0.00000000 0.00000000
|
||||
0.61666670 -29.57773575 2.79542872 -93.79961065 -0.08861710 0.90969426 -1.04794267 25.42706937 -14.15509747 -18.34348953 35.32598510 0.61655475 1.67352460 14.78985313 0.00000000 34.94953734 -24.53440145 22.21003898 61.74720050 1.07769195 21.82090827 -17.96139885 0.00000000 -0.07129775 -1.00227663 0.21245137 -0.13240705 -1.33302792 0.22572958 -0.11713507 -2.43693540 0.22572958 -0.08148619 -2.43693540 0.18589494 -0.06620709 -2.04384251 0.17261673 -0.04073953 -1.55252650 0.15933852 -0.50927267 -11.33795372 1.18159076 0.00000000 0.00000000 0.00000000 0.00000000 0.00000000 0.03396542 0.04845368 -0.00525047 -38.80183017 45.25709012 -22.20486047 108.38113993 89.99559364 0.00000000 0.00000000 -0.00251209 0.01010088 -0.00540062 -3.25880914 36.92332255 -2.86418995 37.56668509 89.99559364 0.00000000 0.00000000
|
||||
0.63333330 -29.76621741 2.92390277 -93.37193534 -0.09216692 0.90969084 -1.04546785 26.25424318 -15.23484244 -17.90019709 34.39498787 0.60030578 0.57195244 13.68798380 0.00000000 35.57873578 -24.79478377 22.70291644 62.16182347 1.08492849 22.01815170 -17.60564553 0.00000000 -0.07022938 -1.07204938 -0.09985198 -0.13042298 -1.42582568 -0.10609273 -0.11537985 -2.60658087 -0.10609273 -0.08026516 -2.60658087 -0.08737048 -0.06521500 -2.18612310 -0.08112974 -0.04012907 -1.66060450 -0.07488899 -0.50164144 -12.12723704 -0.55534677 0.00000000 0.00000000 0.00000000 0.00000000 0.00000000 0.03340112 0.05059398 -0.00542482 -35.00650844 45.24647832 -23.98245205 109.20344718 89.99559364 0.00000000 0.00000000 -0.00104529 0.01140399 -0.00534022 -7.94687701 38.41803212 -0.75461056 39.80725131 89.99559364 0.00000000 0.00000000
|
||||
0.65000000 -30.05625422 3.12385696 -92.24593778 -0.09511655 0.90984116 -1.04194495 27.00542602 -16.30198396 -17.51473426 33.59584289 0.58635807 -0.75457023 12.40208260 0.00000000 36.76945223 -24.81122590 23.89995777 62.59400797 1.09247153 22.23249633 -17.02311561 0.00000000 -0.07149474 -1.13493610 -0.15558557 -0.13277288 -1.50946502 -0.16530967 -0.11745871 -2.75948365 -0.16530967 -0.08171134 -2.75948365 -0.13613737 -0.06639002 -2.31436171 -0.12641328 -0.04085210 -1.75801603 -0.11668918 -0.51067979 -12.83862421 -0.86532026 0.00000000 0.00000000 0.00000000 0.00000000 0.00000000 0.03443376 0.05105473 -0.00538648 -34.57644970 45.93732136 -25.15906079 110.51528653 89.99559364 0.00000000 0.00000000 -0.00072494 0.01254508 -0.00529291 -7.71273033 40.19378538 -0.51260439 40.51986811 89.99559364 0.00000000 0.00000000
|
||||
0.66666670 -30.49601244 3.29338762 -90.47765293 -0.09752561 0.91009406 -1.03780575 27.51005132 -17.38462298 -17.34806930 32.94249813 0.57495506 -2.06622712 11.48110630 0.00000000 38.29361372 -24.65809712 25.67479546 62.91448510 1.09806491 22.53324374 -16.11424538 0.00000000 -0.07438765 -1.17730568 -0.21470240 -0.13814530 -1.56581656 -0.22812130 -0.12221147 -2.86250103 -0.22812130 -0.08501764 -2.86250103 -0.18786460 -0.06907637 -2.40076174 -0.17444570 -0.04250510 -1.82364650 -0.16102680 -0.53134353 -13.31791732 -1.19411031 0.00000000 0.00000000 0.00000000 0.00000000 0.00000000 0.03469374 0.05308160 -0.00544489 -34.39927496 46.43235086 -26.38720124 111.53826598 89.99559364 0.00000000 0.00000000 0.00231123 0.01279569 -0.00521646 -6.99978695 42.09604608 -0.09713301 41.18882352 89.99559364 0.00000000 0.00000000
|
||||
0.68333330 -30.98603299 3.54066601 -88.40152800 -0.10005027 0.91016603 -1.03422556 28.09954713 -18.55662794 -17.33196463 32.57127701 0.56847603 -3.21017552 11.03352884 0.00000000 39.98727252 -24.41547053 27.65375173 62.96263073 1.09890521 22.84131279 -15.01290858 0.00000000 -0.07641598 -1.22189750 -0.26541438 -0.14191212 -1.62512368 -0.28200278 -0.12554382 -2.97092159 -0.28200278 -0.08733583 -2.97092159 -0.23223758 -0.07095988 -2.49169339 -0.21564918 -0.04366409 -1.89271923 -0.19906078 -0.54583172 -13.82234895 -1.47615515 0.00000000 0.00000000 0.00000000 0.00000000 0.00000000 0.03464196 0.05548161 -0.00558034 -34.44521391 46.83518953 -27.32483957 112.04213745 89.99559364 0.00000000 0.00000000 0.00784662 0.01355470 -0.00513609 -6.15421721 43.96789166 0.00990661 41.84243169 89.99559364 0.00000000 0.00000000
|
||||
0.70000000 -31.86180373 3.92878158 -86.46269177 -0.10315257 0.90985055 -1.03202260 28.92070879 -19.27906748 -17.29609903 32.33166266 0.56429397 -3.75497986 11.04231905 0.00000000 41.93267016 -24.65565130 29.70771173 62.86103106 1.09713196 23.29057324 -13.57287066 0.00000000 -0.08415984 -1.19968935 -0.00206983 -0.15629324 -1.59558683 -0.00219919 -0.13826620 -2.91692468 -0.00219919 -0.09618628 -2.91692468 -0.00181110 -0.07815083 -2.44640652 -0.00168173 -0.04808893 -1.85831880 -0.00155237 -0.60114532 -13.57112585 -0.01151175 0.00000000 0.00000000 0.00000000 0.00000000 0.00000000 0.03574425 0.05575099 -0.00547958 -37.30609339 48.11147106 -28.24959271 113.74649020 89.99559364 0.00000000 0.00000000 0.00396591 0.01211701 -0.00514516 0.64660388 45.93669420 -1.14708366 39.44720183 89.99559364 0.00000000 0.00000000
|
||||
0.71666670 -32.50400314 4.50679623 -85.10949095 -0.10741932 0.90952764 -1.03172269 30.52773177 -20.10083463 -16.85902494 32.63625594 0.56961012 -4.02918573 11.20410256 0.00000000 43.67132053 -25.00609189 31.15176381 62.47985147 1.09047912 23.29224369 -12.52218262 0.00000000 -0.09036761 -1.22388983 0.00706870 -0.16782169 -1.62777347 0.00751049 -0.14846495 -2.97576573 0.00751049 -0.10328114 -2.97576573 0.00618511 -0.08391537 -2.49575614 0.00574331 -0.05163605 -1.89580535 0.00530152 -0.64548682 -13.84488654 0.03931396 0.00000000 0.00000000 0.00000000 0.00000000 0.00000000 0.03653073 0.05799730 -0.00560734 -36.89257022 48.46470253 -29.27372851 114.40243113 89.99559364 0.00000000 0.00000000 0.00815937 0.01373006 -0.00511572 1.36148296 47.61819826 -1.30964354 40.19824490 89.99559364 0.00000000 0.00000000
|
||||
0.73333330 -33.04802065 5.24764749 -84.56427974 -0.11285383 0.90954910 -1.03242958 32.73483641 -20.64644396 -16.06672006 33.15302776 0.57862949 -3.65568232 11.57335181 0.00000000 45.12471266 -25.76414617 31.92418743 61.95884269 1.08138581 23.31210444 -11.53371704 0.00000000 -0.10038834 -1.25193652 0.09660782 -0.18643119 -1.66507557 0.10264581 -0.16492801 -3.04395846 0.10264581 -0.11473383 -3.04395846 0.08453184 -0.09322061 -2.55294896 0.07849385 -0.05736190 -1.93924967 0.07245586 -0.71706388 -14.16215632 0.53730369 0.00000000 0.00000000 0.00000000 0.00000000 0.00000000 0.03708842 0.05929662 -0.00566885 -35.96979814 48.69319745 -31.06384035 115.77219526 89.99559364 0.00000000 0.00000000 0.00955424 0.01425178 -0.00530635 2.39255703 49.52962450 -1.71370430 40.94494127 89.99559364 0.00000000 0.00000000
|
||||
0.75000000 -33.40384421 6.08630306 -84.71287885 -0.11887235 0.91004028 -1.03240526 35.28909660 -20.89213812 -14.88737185 33.77910861 0.58955666 -3.00649668 11.70230123 0.00000000 46.15042958 -26.78256317 32.03628897 61.34040835 1.07059209 22.96856221 -10.90653905 0.00000000 -0.10918854 -1.30584453 0.16008155 -0.20277404 -1.73677322 0.17008665 -0.17938586 -3.17503038 0.17008665 -0.12479159 -3.17503038 0.14007136 -0.10139248 -2.66287816 0.13006626 -0.06239033 -2.02275317 0.12006117 -0.77992284 -14.77197444 0.89032558 0.00000000 0.00000000 0.00000000 0.00000000 0.00000000 0.03739505 0.06107004 -0.00588759 -33.72649289 48.51973070 -33.22136900 116.70114074 89.99559364 0.00000000 0.00000000 0.00600371 0.01778985 -0.00542413 3.53453073 51.24105583 -2.75614360 40.52766379 89.99559364 0.00000000 0.00000000
|
||||
0.76666670 -33.57581030 6.97122262 -85.20632706 -0.12422309 0.91110997 -1.02934496 37.64870531 -20.89242518 -13.60017412 34.26831079 0.59809485 -1.91225007 11.71374421 0.00000000 46.60005002 -27.86070656 31.65804970 60.57634792 1.05725672 22.68504323 -10.51082123 0.00000000 -0.11504976 -1.36795164 0.26892166 -0.21365891 -1.81937568 0.28572927 -0.18901525 -3.32603761 0.28572927 -0.13149037 -3.32603761 0.23530646 -0.10683521 -2.78952698 0.21849885 -0.06573943 -2.11895709 0.20169125 -0.82178893 -15.47454252 1.49566162 0.00000000 0.00000000 0.00000000 0.00000000 0.00000000 0.03935141 0.06230408 -0.00592465 -32.17773657 48.48632250 -35.01390631 118.26328376 89.99559364 0.00000000 0.00000000 0.00464121 0.02103809 -0.00562330 3.77278599 52.88417022 -3.19937179 40.81946485 89.99559364 0.00000000 0.00000000
|
||||
0.78333330 -33.78292071 7.68183154 -85.52681920 -0.12749937 0.91289196 -1.02252752 39.08505470 -20.65065964 -12.70358453 34.41400268 0.60063766 -0.79634434 11.66570853 0.00000000 46.46712476 -28.81942147 31.29754888 59.67742440 1.04156754 22.50925633 -10.34968001 0.00000000 -0.11740528 -1.41825981 0.20098865 -0.21803335 -1.88628554 0.21355044 -0.19288514 -3.44835690 0.21355044 -0.13418250 -3.44835690 0.17586507 -0.10902254 -2.89211540 0.16330328 -0.06708538 -2.19688444 0.15074149 -0.83861418 -16.04363859 1.11783857 0.00000000 0.00000000 0.00000000 0.00000000 0.00000000 0.03818841 0.06355454 -0.00626944 -28.49667211 47.88330414 -37.66651886 119.38126101 89.99559364 0.00000000 0.00000000 0.00007739 0.02484581 -0.00577427 3.04509688 54.12123868 -3.63084224 40.63409674 89.99559364 0.00000000 0.00000000
|
||||
0.80000000 -34.06240805 8.33822756 -85.36819514 -0.12860078 0.91493408 -1.01281079 39.71186037 -20.31559759 -12.25341700 34.30869987 0.59879977 0.17856460 11.93948367 0.00000000 46.07260039 -29.44979007 31.16240293 58.63850476 1.02343498 22.64449586 -10.24827970 0.00000000 -0.11530870 -1.43305138 0.26739807 -0.21413979 -1.90595833 0.28411045 -0.18944067 -3.48432112 0.28411045 -0.13178632 -3.48432112 0.23397331 -0.10707566 -2.92227837 0.21726094 -0.06588739 -2.21979658 0.20054856 -0.82363853 -16.21096378 1.48718787 0.00000000 0.00000000 0.00000000 0.00000000 0.00000000 0.03869148 0.06410758 -0.00629042 -27.82000851 47.69426813 -39.35438278 121.35635309 89.99559364 0.00000000 0.00000000 0.00016499 0.02593464 -0.00582448 2.87957042 55.01396801 -3.74182991 40.83314693 89.99559364 0.00000000 0.00000000
|
||||
0.81666670 -34.47512843 8.72993452 -84.51344301 -0.12755317 0.91731677 -1.00163673 39.37725297 -19.90711234 -12.36130133 33.87177640 0.59117402 0.91215469 12.17156106 0.00000000 45.48549463 -29.69218910 31.52395866 57.40496520 1.00190565 22.92518247 -10.20313696 0.00000000 -0.10969818 -1.42225377 0.29477437 -0.20372048 -1.89159751 0.31319776 -0.18022313 -3.45806781 0.31319776 -0.12537405 -3.45806781 0.25792757 -0.10186573 -2.90025988 0.23950417 -0.06268154 -2.20307109 0.22108077 -0.78356310 -16.08881907 1.63944659 0.00000000 0.00000000 0.00000000 0.00000000 0.00000000 0.03804055 0.06437871 -0.00641160 -27.57331691 47.41326549 -40.40464410 122.76892694 89.99559364 0.00000000 0.00000000 0.00185352 0.02565408 -0.00584310 2.84328072 55.52961278 -3.76122479 40.90569226 89.99559364 0.00000000 0.00000000
|
||||
0.83333330 -34.96402131 9.08580338 -82.97871410 -0.12508650 0.91916031 -0.99042653 38.72749618 -19.59917654 -13.08703410 33.31065006 0.58138052 1.21313177 12.50137253 0.00000000 45.20386684 -29.48681915 32.45320540 56.09003511 0.97895579 23.16107413 -10.15150463 0.00000000 -0.10309552 -1.37342104 0.24732810 -0.19145870 -1.82664999 0.26278611 -0.16937564 -3.33933593 0.26278611 -0.11782787 -3.33933593 0.21641209 -0.09573450 -2.80068019 0.20095408 -0.05890878 -2.12742920 0.18549608 -0.73640102 -15.53641354 1.37556470 0.00000000 0.00000000 0.00000000 0.00000000 0.00000000 0.03656738 0.06457090 -0.00626128 -27.72781435 47.07518965 -41.75077905 125.33460537 89.99559364 0.00000000 0.00000000 0.00315705 0.02272566 -0.00573843 3.05085578 55.81775829 -3.51077066 40.87336895 89.99559364 0.00000000 0.00000000
|
||||
0.85000000 -35.39914160 9.22592788 -81.26083928 -0.12201803 0.92117788 -0.98020515 37.84769524 -19.15453920 -14.14535061 32.51029375 0.56741167 1.05180009 12.55157338 0.00000000 44.80317068 -29.15467309 33.52159781 54.61232497 0.95316488 23.40289750 -9.96077632 0.00000000 -0.09517375 -1.32966640 0.21561099 -0.17674718 -1.76845631 0.22908668 -0.15636096 -3.23295088 0.22908668 -0.10877408 -3.23295088 0.18865962 -0.08837835 -2.71145572 0.17518393 -0.05438228 -2.05965325 0.16170824 -0.67981660 -15.04145224 1.19916364 0.00000000 0.00000000 0.00000000 0.00000000 0.00000000 0.03423144 0.06456971 -0.00613085 -28.04664977 46.68907997 -42.11164058 127.09490794 89.99559364 0.00000000 0.00000000 0.00559259 0.01933842 -0.00570172 3.53914895 55.95437734 -3.38352414 40.98235500 89.99559364 0.00000000 0.00000000
|
||||
0.86666670 -35.53128554 9.28204951 -79.76000195 -0.11934263 0.92327929 -0.97223567 37.23056192 -18.65065696 -15.28087972 31.81010984 0.55519115 0.39176734 12.68764048 0.00000000 44.21789235 -28.67393028 34.41074290 53.09581499 0.92669679 23.61921976 -9.57075111 0.00000000 -0.09236967 -1.31829870 0.19899765 -0.17153971 -1.75333727 0.21143500 -0.15175413 -3.20531145 0.21143500 -0.10556929 -3.20531145 0.17412294 -0.08577447 -2.68827470 0.16168559 -0.05278003 -2.04204468 0.14924824 -0.65978729 -14.91285852 1.10676523 0.00000000 0.00000000 0.00000000 0.00000000 0.00000000 0.03120645 0.06376913 -0.00620410 -28.03524079 46.32887097 -42.06089290 128.25509033 89.99559364 0.00000000 0.00000000 0.00855883 0.01712614 -0.00559705 4.06319113 55.96373598 -3.37036986 41.27382997 89.99559364 0.00000000 0.00000000
|
||||
0.88333330 -35.84351227 9.51121411 -78.39345733 -0.11787263 0.92472246 -0.96767151 37.23368363 -17.71366917 -16.77102838 31.43902488 0.54871450 -0.64923976 13.76595385 0.00000000 44.30952583 -28.37497028 35.50175731 51.86788878 0.90526544 23.67472104 -9.13056380 0.00000000 -0.08848348 -1.26360309 0.09949056 -0.16432268 -1.68059210 0.10570872 -0.14536951 -3.07232454 0.10570872 -0.10112777 -3.07232454 0.08705424 -0.08216576 -2.57673941 0.08083608 -0.05055946 -1.95732118 0.07461792 -0.63202867 -14.29413082 0.55333666 0.00000000 0.00000000 0.00000000 0.00000000 0.00000000 0.03115609 0.06372828 -0.00588099 -27.97440429 46.04730521 -41.61868957 130.33908306 89.99559364 0.00000000 0.00000000 0.00706615 0.01274693 -0.00552025 4.88374441 56.06149483 -3.56139458 41.51613339 89.99559364 0.00000000 0.00000000
|
||||
0.90000000 -35.87174754 9.79877678 -77.29395317 -0.11763379 0.92628642 -0.96634140 37.85943473 -16.65464273 -17.95387594 31.57654015 0.55111459 -1.75845854 15.20707705 0.00000000 44.51923980 -27.96524368 36.24905360 50.82998845 0.88715066 23.61712946 -8.46056442 0.00000000 -0.08822912 -1.24955234 -0.00243118 -0.16385030 -1.66190461 -0.00258313 -0.14495162 -3.03816156 -0.00258313 -0.10083706 -3.03816156 -0.00212728 -0.08192956 -2.54808713 -0.00197533 -0.05041412 -1.93555657 -0.00182338 -0.63021178 -14.13518597 -0.01352149 0.00000000 0.00000000 0.00000000 0.00000000 0.00000000 0.03181528 0.06301397 -0.00562915 -27.36917128 45.78521448 -41.04112281 131.58913644 89.99559364 0.00000000 0.00000000 0.00672764 0.01076295 -0.00551830 5.76811801 56.20520545 -3.98362150 42.01664168 89.99559364 0.00000000 0.00000000
|
||||
0.91666670 -35.85098231 10.19561175 -76.26003805 -0.11813381 0.92759784 -0.96689591 39.01849719 -15.38228399 -18.91093603 32.11123724 0.56044682 -2.19628350 16.61133450 0.00000000 45.06585792 -27.52703272 36.84060367 50.02329369 0.87307118 23.40109351 -7.64159763 0.00000000 -0.09048110 -1.24080711 -0.13972397 -0.16803246 -1.65027346 -0.14845672 -0.14865140 -3.01689841 -0.14845672 -0.10341085 -3.01689841 -0.12225847 -0.08402075 -2.53025386 -0.11352573 -0.05170090 -1.92201022 -0.10479298 -0.64629747 -14.03625822 -0.77710281 0.00000000 0.00000000 0.00000000 0.00000000 0.00000000 0.03248026 0.06243632 -0.00544196 -26.16351542 45.52355831 -40.51112768 132.54913371 89.99559364 0.00000000 0.00000000 0.00603306 0.00976538 -0.00554886 6.82114614 56.50124665 -4.61317718 42.82914187 89.99559364 0.00000000 0.00000000
|
||||
0.93333330 -35.75113876 10.65074970 -75.22471908 -0.11851723 0.92854434 -0.96762459 40.43590491 -13.96947832 -19.67060196 32.72903831 0.57122948 -1.56713961 17.48059688 0.00000000 45.72089896 -27.00691834 37.19951826 49.35677005 0.86143815 23.01436683 -6.75625832 0.00000000 -0.09401740 -1.23300771 -0.28428560 -0.17459971 -1.63990025 -0.30205345 -0.15446118 -2.99793494 -0.30205345 -0.10745248 -2.99793494 -0.24874990 -0.08730455 -2.51434931 -0.23098205 -0.05372154 -1.90992894 -0.21321420 -0.67155685 -13.94802978 -1.58111124 0.00000000 0.00000000 0.00000000 0.00000000 0.00000000 0.03293738 0.06221682 -0.00536997 -24.66087508 45.29902223 -40.08344598 133.31681838 89.99559364 0.00000000 0.00000000 0.00643760 0.00926356 -0.00560093 8.04498650 56.89885060 -5.28881706 43.86232246 89.99559364 0.00000000 0.00000000
|
||||
0.95000000 -35.57412491 11.09888322 -74.24220439 -0.11850583 0.92929154 -0.96750013 41.82192895 -12.38048450 -20.42542650 33.00615850 0.57606614 -0.21948802 17.72743722 0.00000000 46.21824719 -26.47723847 37.26068996 48.70942446 0.85013983 22.60216091 -5.91458677 0.00000000 -0.09906574 -1.23208576 -0.55450942 -0.18397498 -1.63867407 -0.58916626 -0.16275510 -2.99569333 -0.58916626 -0.11322223 -2.99569333 -0.48519574 -0.09199244 -2.51246929 -0.45053890 -0.05660616 -1.90850085 -0.41588206 -0.70761664 -13.93760058 -3.08401504 0.00000000 0.00000000 0.00000000 0.00000000 0.00000000 0.03179208 0.06232436 -0.00548405 -21.26730632 44.92200800 -40.23199016 133.56674175 89.99559364 0.00000000 0.00000000 0.00343773 0.01109897 -0.00553998 9.10925041 57.06037814 -7.31664686 44.21699205 89.99559364 0.00000000 0.00000000
|
||||
0.96666670 -35.33778930 11.63354021 -73.29020231 -0.11805058 0.92957881 -0.96628721 43.21085338 -10.67239209 -21.30860128 32.83969022 0.57316072 1.30124747 17.56488247 0.00000000 46.58541699 -25.87400171 37.09452801 48.02777467 0.83824280 21.95130082 -5.32256194 0.00000000 -0.10357172 -1.22779206 -0.64218160 -0.19234304 -1.63296344 -0.68231795 -0.17015798 -2.98525361 -0.68231795 -0.11837212 -2.98525361 -0.56190890 -0.09617670 -2.50371357 -0.52177255 -0.05918088 -1.90184990 -0.48163620 -0.73980243 -13.88902934 -3.57162142 0.00000000 0.00000000 0.00000000 0.00000000 0.00000000 0.03105286 0.06251980 -0.00556099 -20.22754725 44.80723956 -39.83794060 134.04799103 89.99559364 0.00000000 0.00000000 0.00647854 0.01233456 -0.00564843 10.34800639 57.45317200 -7.46760341 45.32628507 89.99559364 0.00000000 0.00000000
|
||||
0.98333330 -35.00244098 12.22299330 -72.33995469 -0.11722401 0.92960019 -0.96419772 44.51202451 -8.88214667 -22.37943571 32.11689164 0.56054550 2.15411775 17.25997443 0.00000000 46.77809841 -25.15833698 36.73110433 47.24928871 0.82465566 21.29327972 -4.89587227 0.00000000 -0.10985833 -1.22488511 -0.74745429 -0.20401790 -1.62909720 -0.79417018 -0.18048625 -2.97818566 -0.79417018 -0.12555708 -2.97818566 -0.65402250 -0.10201444 -2.49778572 -0.60730661 -0.06277305 -1.89734704 -0.56059072 -0.78470706 -13.85614535 -4.15711653 0.00000000 0.00000000 0.00000000 0.00000000 0.00000000 0.03069644 0.06289359 -0.00568316 -19.35225100 44.63015499 -39.41686673 134.51577282 89.99559364 0.00000000 0.00000000 0.00856967 0.01324138 -0.00573439 11.42213094 57.77208509 -7.75467054 46.04925751 89.99559364 0.00000000 0.00000000
|
||||
1.00000000 -34.63300550 12.80695951 -71.33814276 -0.11607821 0.92922765 -0.96152636 45.79607398 -7.01958939 -23.65845953 31.05959299 0.54209216 2.03349418 16.86400564 0.00000000 46.85951012 -24.31622334 36.39887910 46.39820084 0.80980137 20.54620978 -4.87353515 0.00000000 -0.11532040 -1.21655767 -0.89791316 -0.21416151 -1.61802171 -0.95403273 -0.18945988 -2.95793833 -0.95403273 -0.13179968 -2.95793833 -0.78567401 -0.10708652 -2.48080441 -0.72955444 -0.06589408 -1.88444784 -0.67343487 -0.82372208 -13.76194372 -4.99392362 0.00000000 0.00000000 0.00000000 0.00000000 0.00000000 0.03062695 0.06328673 -0.00577523 -18.49255338 44.50538631 -38.65543647 135.02814537 89.99559364 0.00000000 0.00000000 0.00726921 0.01404711 -0.00586299 12.75938138 57.85622125 -8.65847842 45.17642943 89.99559364 0.00000000 0.00000000
|
||||
1.01666670 -34.21169329 13.36000386 -70.39870447 -0.11480590 0.92857109 -0.95840435 47.15281325 -5.04754989 -24.89848109 29.78192707 0.51979268 0.85383861 16.37117328 0.00000000 46.85408860 -23.51577354 35.86112461 45.49031274 0.79395574 19.70607416 -4.62341426 0.00000000 -0.12035999 -1.21464765 -0.82821818 -0.22352053 -1.61548138 -0.87998182 -0.19773942 -2.95329430 -0.87998182 -0.13755943 -2.95329430 -0.72469091 -0.11176628 -2.47690949 -0.67292728 -0.06877370 -1.88148921 -0.62116364 -0.85971934 -13.74033716 -4.60630108 0.00000000 0.00000000 0.00000000 0.00000000 0.00000000 0.02973357 0.06335475 -0.00582641 -19.83272836 44.27347935 -37.68209234 134.97026583 89.99559364 0.00000000 0.00000000 -0.00043697 0.01285881 -0.00575404 17.59907868 58.38016322 -9.29966492 40.77773335 89.99559364 0.00000000 0.00000000
|
||||
1.03333330 -33.76493448 13.86085823 -69.43781956 -0.11328642 0.92760201 -0.95498975 48.64949339 -3.09600245 -26.08063455 28.49998596 0.49741859 -1.28543343 15.77339157 0.00000000 46.79743780 -22.71913304 35.28025103 44.48273945 0.77637026 18.49834076 -4.51826101 0.00000000 -0.12665247 -1.19263993 -0.95158775 -0.23520630 -1.58621111 -1.01106199 -0.20807734 -2.89978473 -1.01106199 -0.14475111 -2.89978473 -0.83263929 -0.11760948 -2.43203135 -0.77316505 -0.07236922 -1.84739926 -0.71369082 -0.90466592 -13.49138146 -5.29244562 0.00000000 0.00000000 0.00000000 0.00000000 0.00000000 0.03060123 0.06390581 -0.00600502 -19.91668243 44.01877733 -36.78747582 134.82828269 89.99559364 0.00000000 0.00000000 0.00267253 0.01428472 -0.00583490 17.56810758 57.59361894 -8.87323397 39.66316029 89.99559364 0.00000000 0.00000000
|
||||
1.05000000 -33.25245845 14.31904395 -68.48577054 -0.11160970 0.92636103 -0.95136543 50.23156013 -1.23806999 -27.09459486 27.18136371 0.47440429 -4.19944644 15.18846213 0.00000000 46.66588627 -21.93429642 34.58892721 43.40396242 0.75754205 17.11162712 -4.40156179 0.00000000 -0.13219363 -1.16722559 -1.10659632 -0.24549678 -1.55241004 -1.17575859 -0.21718091 -2.83799231 -1.17575859 -0.15108409 -2.83799231 -0.96827178 -0.12275500 -2.38020643 -0.89910951 -0.07553544 -1.80803244 -0.82994724 -0.94424585 -13.20388936 -6.15455678 0.00000000 0.00000000 0.00000000 0.00000000 0.00000000 0.03179667 0.06431256 -0.00610966 -20.00483760 43.62781256 -36.00210092 134.50694465 89.99559364 0.00000000 0.00000000 0.00529554 0.01502730 -0.00582433 17.36315375 56.57672324 -8.45322025 38.17908635 89.99559364 0.00000000 0.00000000
|
||||
1.06666670 -32.65497203 14.75814434 -67.53128536 -0.10982714 0.92472201 -0.94747337 51.77285651 0.49936869 -27.78578251 25.72775609 0.44903405 -7.69728481 14.72002098 0.00000000 46.43968105 -21.11597408 33.79380763 42.26021424 0.73757988 15.38781747 -4.43469326 0.00000000 -0.13683413 -1.13413494 -1.31944430 -0.25411466 -1.50839947 -1.40190957 -0.22480479 -2.75753569 -1.40190957 -0.15638773 -2.75753569 -1.15451376 -0.12706417 -2.31272797 -1.07204849 -0.07818702 -1.75677502 -0.98958322 -0.97739250 -12.82956125 -7.33835336 0.00000000 0.00000000 0.00000000 0.00000000 0.00000000 0.03334238 0.06442872 -0.00614588 -19.88673940 43.26212352 -35.25789588 134.27830773 89.99559364 0.00000000 0.00000000 0.00659518 0.01472834 -0.00577462 17.05116203 55.45784100 -7.98858701 36.50704305 89.99559364 0.00000000 0.00000000
|
||||
1.08333330 -31.88114859 15.18855155 -66.61029516 -0.10798479 0.92269159 -0.94312603 53.01185644 2.11681375 -27.96276732 23.93709039 0.41778104 -11.62902864 14.44778916 0.00000000 46.06707034 -20.14054786 32.87006679 41.19113793 0.71892098 13.23322332 -4.75629310 0.00000000 -0.13954837 -1.10502604 -1.60771886 -0.25915527 -1.46968463 -1.70820128 -0.22926401 -2.68676031 -1.70820128 -0.15948983 -2.68676031 -1.40675400 -0.12958461 -2.25336910 -1.30627157 -0.07973794 -1.71168534 -1.20578914 -0.99678003 -12.50027557 -8.94164996 0.00000000 0.00000000 0.00000000 0.00000000 0.00000000 0.03506703 0.06453507 -0.00615172 -19.38802416 42.88820035 -34.46925639 134.29043625 89.99559364 0.00000000 0.00000000 0.00593009 0.01395006 -0.00561147 16.63929236 54.36343112 -7.47785357 34.83913392 89.99559364 0.00000000 0.00000000
|
||||
1.10000000 -30.79826460 15.63367136 -65.79496310 -0.10589455 0.92042546 -0.93815456 53.68976896 3.58712013 -27.45063215 21.67134004 0.37823624 -15.72018933 14.41163762 0.00000000 45.50244105 -18.84842620 31.74363666 40.35885915 0.70439497 10.67775203 -5.50131524 0.00000000 -0.13978655 -1.09834686 -2.00145027 -0.25959761 -1.46080132 -2.12654091 -0.22965533 -2.67052054 -2.12654091 -0.15976205 -2.67052054 -1.75126898 -0.12980579 -2.23974891 -1.62617834 -0.07987404 -1.70133928 -1.50108770 -0.99848137 -12.42471930 -11.13146594 0.00000000 0.00000000 0.00000000 0.00000000 0.00000000 0.03587476 0.06458973 -0.00614010 -17.83149790 42.31806991 -33.73762575 134.32467930 89.99559364 0.00000000 0.00000000 0.00251139 0.01300701 -0.00549146 15.83138035 53.47411699 -6.87944218 33.39431431 89.99559364 0.00000000 0.00000000
|
||||
1.11666670 -29.44517066 16.01483838 -65.15181214 -0.10320430 0.91817562 -0.93234946 53.53409857 5.00789806 -26.18505817 18.76620306 0.32753203 -19.63774393 14.42522961 0.00000000 44.83604621 -17.26578638 30.44719948 40.07312885 0.69940804 8.11415695 -6.39745691 0.00000000 -0.13685028 -1.10262645 -2.60647744 -0.25414466 -1.46649318 -2.76938228 -0.22483133 -2.68092595 -2.76938228 -0.15640619 -2.68092595 -2.28066776 -0.12707917 -2.24847586 -2.11776292 -0.07819625 -1.70796837 -1.95485808 -0.97750789 -12.47313094 -14.49644558 0.00000000 0.00000000 0.00000000 0.00000000 0.00000000 0.03229524 0.06459963 -0.00633839 -12.70552873 41.46041519 -34.23052838 133.43753101 89.99559364 0.00000000 0.00000000 0.00295700 0.01396578 -0.00551040 11.46289732 52.15787633 -5.96568927 34.61431410 89.99559364 0.00000000 0.00000000
|
||||
1.13333330 -27.74972136 16.47422517 -64.80569948 -0.09958320 0.91577338 -0.92540214 52.64721919 6.22593366 -24.20156358 15.38680987 0.26855049 -23.00926397 13.97872862 0.00000000 44.10348584 -15.28439351 28.98194067 40.37453785 0.70466862 5.71665001 -7.69973376 0.00000000 -0.13300983 -1.13280309 -3.07183208 -0.24701255 -1.50662811 -3.26382158 -0.21852185 -2.75429743 -3.26382158 -0.15201693 -2.75429743 -2.68785307 -0.12351293 -2.31001206 -2.49586356 -0.07600182 -1.75471199 -2.30387406 -0.95007590 -12.81449512 -17.08460848 0.00000000 0.00000000 0.00000000 0.00000000 0.00000000 0.03243465 0.06459538 -0.00628814 -10.48173515 40.79537353 -33.33155447 133.53681142 89.99559364 0.00000000 0.00000000 0.00498563 0.01536956 -0.00557293 7.40030737 50.94461033 -5.22100331 36.47779763 89.99559364 0.00000000 0.00000000
|
||||
1.15000000 -25.75781075 16.87053318 -64.71945493 -0.09452113 0.91330233 -0.91689961 50.95750120 7.14069250 -22.05168140 11.68732717 0.20398234 -25.78525107 12.92251216 0.00000000 43.15105646 -13.02090464 27.45804793 41.05902934 0.71661525 3.99180693 -8.99485169 0.00000000 -0.12661580 -1.18258714 -3.44433856 -0.23513820 -1.57284089 -3.65960972 -0.20801710 -2.87534236 -3.65960972 -0.14470920 -2.87534236 -3.01379624 -0.11757543 -2.41153169 -2.79852508 -0.07234827 -1.83182747 -2.58325392 -0.90440399 -13.37766220 -19.15637774 0.00000000 0.00000000 0.00000000 0.00000000 0.00000000 0.03228133 0.06443544 -0.00632727 -8.97493326 40.23415060 -32.07385738 133.58031968 89.99559364 0.00000000 0.00000000 0.00569514 0.01652516 -0.00551810 3.85245846 49.84156840 -4.76659534 38.22386779 89.99559364 0.00000000 0.00000000
|
||||
1.16666670 -23.56531089 17.15115886 -64.85033424 -0.08798381 0.91076031 -0.90645597 48.68405105 7.71581129 -20.19961469 8.07893050 0.14100394 -28.09811618 11.07802519 0.00000000 41.83873955 -10.70417815 25.87365832 41.74247245 0.72854358 3.26156627 -10.06104228 0.00000000 -0.11819249 -1.24763752 -3.60100518 -0.21949527 -1.65935791 -3.82606800 -0.19417844 -3.03350587 -3.82606800 -0.13508220 -3.03350587 -3.15087953 -0.10975355 -2.54418244 -2.92581670 -0.06753519 -1.93259052 -2.70075388 -0.84423713 -14.11352518 -20.02771048 0.00000000 0.00000000 0.00000000 0.00000000 0.00000000 0.03039133 0.06438316 -0.00641407 -8.88056502 39.79367249 -30.61672948 133.28598908 89.99559364 0.00000000 0.00000000 0.00082359 0.01777988 -0.00561711 3.13281523 48.89452244 -4.96839647 38.41762427 89.99559364 0.00000000 0.00000000
|
||||
1.18333330 -21.36604192 17.29590864 -64.88267521 -0.08017762 0.90825689 -0.89442258 46.17411940 7.89789504 -18.95393248 5.05609455 0.08824550 -29.78433965 8.37775840 0.00000000 40.21072204 -8.46500801 24.38991518 42.11398947 0.73502778 3.38503414 -10.98210823 0.00000000 -0.10970616 -1.30715732 -3.64906829 -0.20373531 -1.73851924 -3.87713506 -0.18023625 -3.17822231 -3.87713506 -0.12538317 -3.17822231 -3.19293475 -0.10187314 -2.66555521 -2.96486799 -0.06268610 -2.02478669 -2.73680122 -0.78362014 -14.78682503 -20.29502310 0.00000000 0.00000000 0.00000000 0.00000000 0.00000000 0.02768665 0.06443571 -0.00646630 -9.71561756 39.38397549 -29.02547480 132.77672243 89.99559364 0.00000000 0.00000000 -0.00173446 0.01903707 -0.00573342 2.10209853 47.66547248 -5.74341492 39.90672327 89.99559364 0.00000000 0.00000000
|
||||
1.20000000 -19.54399901 17.45193432 -64.42922136 -0.07175002 0.90553981 -0.88204818 44.02916546 7.74402846 -18.95529288 3.04174278 0.05308843 -30.68338849 5.35315834 0.00000000 38.73078874 -6.50753093 23.14537032 42.15995290 0.73582999 4.04188058 -11.57837141 0.00000000 -0.10185109 -1.31991948 -3.50309972 -0.18914767 -1.75549291 -3.72204345 -0.16733116 -3.20925224 -3.72204345 -0.11640562 -3.20925224 -3.06521225 -0.09457893 -2.69157981 -2.84626852 -0.05819772 -2.04455528 -2.62732479 -0.72751218 -14.93119320 -19.48318971 0.00000000 0.00000000 0.00000000 0.00000000 0.00000000 0.03196141 0.06406668 -0.00642706 -15.39971291 39.25827741 -25.97197509 134.18000233 89.99559364 0.00000000 0.00000000 0.00741379 0.01907326 -0.00563059 -0.81641563 45.82561223 -6.62164281 45.11050934 89.99559364 0.00000000 0.00000000
|
||||
1.21666670 -18.04643918 17.30219473 -63.28189473 -0.06302135 0.90346036 -0.87021378 42.15388805 7.26760367 -19.75460751 2.35004129 0.04101596 -30.84410688 1.31342245 0.00000000 37.15136835 -4.88947034 22.21630939 41.86783137 0.73073151 4.77788124 -11.85783541 0.00000000 -0.09219864 -1.29773498 -3.35654956 -0.17122209 -1.72598753 -3.56633391 -0.15147314 -3.15531284 -3.56633391 -0.10537382 -3.15531284 -2.93698087 -0.08561566 -2.64634118 -2.72719652 -0.05268230 -2.01019149 -2.51741217 -0.65856566 -14.68023769 -18.66812171 0.00000000 0.00000000 0.00000000 0.00000000 0.00000000 0.02311718 0.06415466 -0.00644346 -17.65602630 38.99625327 -24.65386793 132.34278836 89.99559364 0.00000000 0.00000000 0.00605447 0.01792465 -0.00584697 -0.28308671 44.48344138 -7.26255496 47.92682521 89.99559364 0.00000000 0.00000000
|
||||
1.23333330 -16.83633099 17.23695920 -61.95248112 -0.05454813 0.90134797 -0.85808530 40.99678414 6.59285660 -20.78746334 3.17382850 0.05539376 -30.27023016 -3.51571692 0.00000000 35.68254038 -3.66450142 21.23531025 41.32021536 0.72117381 5.47074452 -11.71345697 0.00000000 -0.08542553 -1.21701304 -2.86905550 -0.15864375 -1.61862735 -3.04837147 -0.14034560 -2.95904551 -3.04837147 -0.09763284 -2.95904551 -2.51042357 -0.07932615 -2.48173300 -2.33110760 -0.04881215 -1.88515320 -2.15179163 -0.61018602 -13.76709494 -15.95682600 0.00000000 0.00000000 0.00000000 0.00000000 0.00000000 0.03192032 0.06142092 -0.00580589 -29.05390981 40.15792256 -20.02588529 135.04798574 89.99559364 0.00000000 0.00000000 0.01612565 0.01435641 -0.00565305 -0.21194267 42.72971788 -7.58188733 53.31431916 89.99559364 0.00000000 0.00000000
|
||||
1.25000000 -15.65199936 16.81185587 -60.92404589 -0.04612199 0.89995760 -0.84512072 39.87835672 5.93706974 -21.74333319 5.14393647 0.08977863 -29.55900300 -8.84924182 0.00000000 33.73127916 -2.83374371 20.25127404 40.77588996 0.71167354 6.16787320 -11.24481742 0.00000000 -0.07600357 -1.12934732 -2.54782755 -0.14114624 -1.50203194 -2.70706677 -0.12486627 -2.74589508 -2.70706677 -0.08686448 -2.74589508 -2.22934910 -0.07057692 -2.30296506 -2.07010988 -0.04342844 -1.74935900 -1.91087066 -0.54288592 -12.77540279 -14.17025246 0.00000000 0.00000000 0.00000000 0.00000000 0.00000000 0.02726079 0.05772936 -0.00550044 -33.26673056 40.66819932 -18.68965199 134.34076141 89.99559364 0.00000000 0.00000000 0.01605030 0.01178143 -0.00554900 0.26882371 41.32343670 -8.52275587 56.92720002 89.99559364 0.00000000 0.00000000
|
||||
1.26666670 -14.43997423 16.22356511 -60.57040384 -0.03794337 0.89895463 -0.83092659 38.79327146 5.40007072 -22.60110912 7.89410933 0.13777820 -28.48445928 -13.51419616 0.00000000 31.29081189 -2.35135627 19.12334087 40.26182895 0.70270148 6.81717279 -10.78077362 0.00000000 -0.06669219 -1.02410340 -2.23790096 -0.12385406 -1.36205753 -2.37776977 -0.10956860 -2.49000502 -2.37776977 -0.07622250 -2.49000502 -1.95816334 -0.06193037 -2.08835166 -1.81829453 -0.03810792 -1.58633617 -1.67842572 -0.47637563 -11.58486252 -12.44653377 0.00000000 0.00000000 0.00000000 0.00000000 0.00000000 0.02534041 0.05186446 -0.00522870 -36.82273691 41.68043914 -17.64371014 133.47299837 89.99559364 0.00000000 0.00000000 0.01536368 0.00926570 -0.00546212 -0.76201521 40.27790846 -8.31897462 60.48185836 89.99559364 0.00000000 0.00000000
|
||||
1.28333330 -13.03923270 15.52373560 -61.04964647 -0.03029695 0.89843301 -0.81618084 37.60065975 4.89734056 -23.02095783 10.96593891 0.19139174 -26.87656194 -16.93431287 0.00000000 28.32779869 -1.98238065 17.81225594 39.79072506 0.69447916 7.38838977 -10.43858605 0.00000000 -0.05757926 -0.92303264 -2.01341640 -0.10693045 -1.22763341 -2.13925493 -0.09459697 -2.24426156 -2.13925493 -0.06580734 -2.24426156 -1.76173935 -0.05346810 -1.88224816 -1.63590083 -0.03290079 -1.42977756 -1.51006230 -0.41128292 -10.44152983 -11.19801799 0.00000000 0.00000000 0.00000000 0.00000000 0.00000000 0.02153735 0.04575591 -0.00508673 -37.46076796 42.34449394 -17.89728850 131.80799182 89.99559364 0.00000000 0.00000000 0.00840827 0.00909794 -0.00540907 -1.91973043 39.58622113 -8.88761769 62.02569105 89.99559364 0.00000000 0.00000000
|
||||
1.30000000 -11.77558190 14.69978501 -61.90236520 -0.02304856 0.89836777 -0.80156059 36.29614980 4.48176255 -23.41848991 13.84355061 0.24161554 -24.46435641 -18.56479138 0.00000000 25.20206381 -1.73996402 16.76048828 39.47689233 0.68900175 8.03510487 -10.29953647 0.00000000 -0.04910684 -0.76616902 -1.85247478 -0.09119631 -1.01900479 -1.96825445 -0.08067763 -1.86286335 -1.96825445 -0.05612421 -1.86286335 -1.62091543 -0.04560061 -1.56237186 -1.50513576 -0.02805965 -1.18679581 -1.38935608 -0.35076525 -8.66705715 -10.30290898 0.00000000 0.00000000 0.00000000 0.00000000 0.00000000 0.02065901 0.04131698 -0.00467712 -37.58869980 43.27738101 -18.43791911 130.60094091 89.99559364 0.00000000 0.00000000 -0.00128072 0.00875458 -0.00551340 -3.02869844 39.50480667 -9.13735956 62.11855994 89.99559364 0.00000000 0.00000000
|
||||
1.31666670 -10.19408658 13.95676239 -63.48653977 -0.01707258 0.89900503 -0.78716097 35.08747795 3.84469491 -22.86548536 16.76790369 0.29265513 -21.42144160 -18.91045595 0.00000000 22.00992418 -1.27178511 15.24508454 39.35068279 0.68679898 9.05282386 -9.42250710 0.00000000 -0.04268575 -0.66866923 -1.95422451 -0.07927170 -0.88933008 -2.07636355 -0.07012842 -1.62580237 -2.07636355 -0.04878554 -1.62580237 -1.70994645 -0.03963799 -1.36355030 -1.58780742 -0.02439064 -1.03576864 -1.46566839 -0.30490004 -7.56412008 -10.86881048 0.00000000 0.00000000 0.00000000 0.00000000 0.00000000 0.01897590 0.03695996 -0.00480653 -33.38960136 43.50141884 -20.51063101 127.55818898 89.99559364 0.00000000 0.00000000 0.00916206 0.01034391 -0.00534075 -14.07482612 39.79649502 -4.57989515 67.00189389 89.99559364 0.00000000 0.00000000
|
||||
1.33333330 -8.91627401 13.08917235 -64.91405562 -0.01135675 0.90029575 -0.77361324 33.77319713 3.34876661 -22.10940421 19.10590624 0.33346097 -18.52075831 -19.10729377 0.00000000 19.24282531 -0.79184646 14.33744521 39.69603036 0.69282643 9.95420531 -9.09617883 0.00000000 -0.03806156 -0.49856382 -1.76138505 -0.07068412 -0.66308989 -1.87147162 -0.06253133 -1.21220808 -1.87147162 -0.04350055 -1.21220808 -1.54121192 -0.03534396 -1.01667135 -1.43112535 -0.02174837 -0.77227536 -1.32103879 -0.27186989 -5.63985369 -9.79629524 0.00000000 0.00000000 0.00000000 0.00000000 0.00000000 0.02210150 0.03419681 -0.00454939 -33.56557079 44.68812007 -21.13812716 125.98404601 89.99559364 0.00000000 0.00000000 0.00546188 0.01231259 -0.00548466 -15.33254283 40.79252405 -5.05287230 66.20083040 89.99559364 0.00000000 0.00000000
|
||||
1.35000000 -7.40447494 12.38138929 -66.47474445 -0.00652449 0.90197714 -0.76154933 32.73925073 2.50351136 -20.65933601 21.49116094 0.37509152 -15.75952994 -19.14677745 0.00000000 17.32553611 0.09222092 13.20834767 40.92574207 0.71428895 11.34700994 -7.27304442 0.00000000 -0.03559864 -0.39459361 -1.54565758 -0.06611024 -0.52480951 -1.64226118 -0.05848501 -0.95941491 -1.64226118 -0.04068569 -0.95941491 -1.35245038 -0.03305690 -0.80465530 -1.25584678 -0.02034106 -0.61122551 -1.15924318 -0.25427753 -4.46372187 -8.59648376 0.00000000 0.00000000 0.00000000 0.00000000 0.00000000 0.02015686 0.03185250 -0.00471661 -32.35689698 45.22656766 -22.20592455 122.78165543 89.99559364 0.00000000 0.00000000 0.01108627 0.01761005 -0.00548723 -18.11189589 42.51407738 -4.38975678 66.49357769 89.99559364 0.00000000 0.00000000
|
||||
1.36666670 -6.10111366 11.76841894 -67.72614892 -0.00119257 0.90359960 -0.75007986 31.70052767 1.63750309 -19.41723993 23.32136511 0.40703461 -13.29851890 -19.14972637 0.00000000 16.62556691 1.16185383 12.50548495 43.25283339 0.75490435 12.32939537 -5.80280708 0.00000000 -0.03478099 -0.26271166 -1.24624541 -0.06459177 -0.34940650 -1.32413575 -0.05714168 -0.63875712 -1.32413575 -0.03975119 -0.63875712 -1.09046474 -0.03229762 -0.53572161 -1.01257440 -0.01987386 -0.40694035 -0.93468406 -0.24843710 -2.97184679 -6.93124312 0.00000000 0.00000000 0.00000000 0.00000000 0.00000000 0.02066509 0.03185549 -0.00472267 -32.88583030 45.82872585 -22.11677310 120.10949962 89.99559364 0.00000000 0.00000000 0.01717224 0.02277229 -0.00560892 -18.63848682 44.52532358 -5.22771540 66.42358348 89.99559364 0.00000000 0.00000000
|
||||
1.38333330 -4.90426010 11.22963586 -69.06029508 0.00517815 0.90495987 -0.73703011 30.36918112 0.88198458 -18.22480528 24.41542355 0.42612953 -11.29942124 -19.07620129 0.00000000 16.93442324 2.35949597 11.75205177 46.51290816 0.81180339 12.69281259 -4.71750233 0.00000000 -0.03370705 -0.11403576 -0.74972146 -0.06259737 -0.15166756 -0.79657905 -0.05537732 -0.27726654 -0.79657905 -0.03852379 -0.27726654 -0.65600628 -0.03130037 -0.23254171 -0.60914869 -0.01926021 -0.17664139 -0.56229109 -0.24076611 -1.28999528 -4.16972584 0.00000000 0.00000000 0.00000000 0.00000000 0.00000000 0.02052234 0.03270510 -0.00479010 -34.80965421 46.52779092 -21.41784819 117.51825632 89.99559364 0.00000000 0.00000000 0.02177952 0.03030024 -0.00590212 -16.10913050 46.42992682 -7.41860183 65.16009289 89.99559364 0.00000000 0.00000000
|
||||
1.40000000 -3.89875308 10.74320195 -70.68887462 0.01237474 0.90606722 -0.72166161 28.56853801 0.41907643 -17.09308042 24.58721012 0.42912777 -9.84893416 -18.88764632 0.00000000 17.95693521 3.47732066 10.72071343 50.22559526 0.87660201 12.36099217 -4.25847264 0.00000000 -0.03154204 0.05820066 -0.33813701 -0.05857672 0.07740688 -0.35927057 -0.05182042 0.14150909 -0.35927057 -0.03604940 0.14150909 -0.29586988 -0.02928994 0.11868279 -0.27473632 -0.01802312 0.09015283 -0.25360275 -0.22530164 0.65837754 -1.88061659 0.00000000 0.00000000 0.00000000 0.00000000 0.00000000 0.02067697 0.03556359 -0.00494025 -35.27272385 47.01740409 -20.57858170 114.68849285 89.99559364 0.00000000 0.00000000 0.03022290 0.03769950 -0.00619557 -15.56665684 48.53557034 -8.66286103 64.86213501 89.99559364 0.00000000 0.00000000
|
||||
1.41666670 -3.12202639 10.21506688 -72.76022027 0.01944405 0.90743098 -0.70582671 26.34494731 0.28698689 -16.00047684 23.99717723 0.41882975 -9.00903241 -18.53443087 0.00000000 19.35424127 4.36314592 9.31095103 53.85772552 0.93999464 11.29730029 -4.98247422 0.00000000 -0.02731781 0.28606809 0.37110236 -0.05073190 0.38047056 0.39429626 -0.04488042 0.69554595 0.39429626 -0.03122152 0.69554595 0.32471457 -0.02536731 0.58335005 0.30152067 -0.01560939 0.44311947 0.27832677 -0.19512835 3.23605945 2.06396000 0.00000000 0.00000000 0.00000000 0.00000000 0.00000000 0.02032899 0.03835134 -0.00499707 -37.74405780 48.05776881 -19.65725873 112.93676639 89.99559364 0.00000000 0.00000000 0.02725561 0.04900640 -0.00681675 -8.66217304 49.76935709 -12.83520123 60.00184108 89.99559364 0.00000000 0.00000000
|
||||
1.43333330 -2.56449228 9.86103775 -75.15588467 0.02531096 0.90917317 -0.69180503 24.20788917 0.28633811 -14.96604666 23.03093873 0.40196571 -8.54144045 -17.84233379 0.00000000 21.21138557 5.00565516 7.59154636 56.93338370 0.99367500 9.66555853 -6.91399634 0.00000000 -0.02251791 0.54687469 0.87959413 -0.04181802 0.72734334 0.93456877 -0.03699468 1.32967113 0.93456877 -0.02573572 1.32967113 0.76964487 -0.02091013 1.11518687 0.71467023 -0.01286674 0.84710890 0.65969560 -0.16084320 6.18635590 4.89203870 0.00000000 0.00000000 0.00000000 0.00000000 0.00000000 0.02209537 0.04258074 -0.00506808 -38.60294577 48.91299324 -19.03015259 111.50303801 89.99559364 0.00000000 0.00000000 0.02866947 0.05710051 -0.00735698 -5.29753142 51.36670021 -14.84792515 56.51059929 89.99559364 0.00000000 0.00000000
|
||||
1.45000000 -2.22860497 9.98795303 -77.74620705 0.02894688 0.91087583 -0.68134643 22.84962696 0.30698000 -14.03602824 22.08854701 0.38551787 -8.34856095 -16.65866327 0.00000000 23.89562357 5.22544552 5.52777494 59.28205220 1.03466700 8.43976134 -8.75923954 0.00000000 -0.01732886 0.82433190 1.13828137 -0.03218142 1.09636143 1.20942395 -0.02846958 2.00428058 1.20942395 -0.01980515 2.00428058 0.99599620 -0.01609158 1.68097761 0.92485361 -0.00990171 1.27689011 0.85371102 -0.12377829 9.32500733 6.33077947 0.00000000 0.00000000 0.00000000 0.00000000 0.00000000 0.02724272 0.04784785 -0.00505922 -38.05482592 49.45201852 -18.72328326 110.75617174 89.99559364 0.00000000 0.00000000 0.03434436 0.06125254 -0.00784690 -6.10747639 53.06021961 -15.53375239 55.53822295 89.99559364 0.00000000 0.00000000
|
||||
1.46666670 -1.90156685 10.31267771 -80.28082484 0.03095118 0.91318666 -0.67539569 22.22739608 0.08385713 -13.62317929 21.53024548 0.37577367 -8.01556109 -14.82625765 0.00000000 26.85018317 5.55814682 3.91274888 60.36467806 1.05356238 5.78833453 -13.50403483 0.00000000 -0.01774442 1.10076472 1.28436867 -0.03295315 1.46401708 1.36464171 -0.02915230 2.67639935 1.36464171 -0.02028009 2.67639935 1.12382258 -0.01647746 2.24467942 1.04354954 -0.01013916 1.70508456 0.96327650 -0.12674658 12.45207070 7.14327322 0.00000000 0.00000000 0.00000000 0.00000000 0.00000000 0.02987115 0.05306672 -0.00554458 -35.72825566 49.75725582 -19.63650048 109.77984064 89.99559364 0.00000000 0.00000000 0.03401444 0.06444265 -0.00820968 -5.50856983 54.56963291 -16.73704635 52.42743224 89.99559364 0.00000000 0.00000000
|
||||
1.48333330 -1.70683137 11.33831118 -82.66357170 0.03052068 0.91463421 -0.67358973 23.08276126 -0.10568893 -13.40680457 21.49015733 0.37507400 -7.90640276 -13.18575233 0.00000000 30.75286244 5.38563420 2.31079805 60.62041814 1.05802589 4.69441666 -16.55519022 0.00000000 -0.02284035 1.32927115 1.23603600 -0.04241681 1.76793063 1.31328825 -0.03752441 3.23198988 1.31328825 -0.02610424 3.23198988 1.08153150 -0.02120955 2.71064973 1.00427925 -0.01305098 2.05904102 0.92702700 -0.16314634 15.03698114 6.87446143 0.00000000 0.00000000 0.00000000 0.00000000 0.00000000 0.03273390 0.05702698 -0.00583201 -32.01863517 49.38699581 -21.34370041 108.83792186 89.99559364 0.00000000 0.00000000 0.03705246 0.06555250 -0.00843337 -8.54334927 56.11206690 -17.94128887 53.17272257 89.99559364 0.00000000 0.00000000
|
||||
1.50000000 -1.50716459 13.01474758 -84.63946142 0.02868356 0.91493337 -0.67450835 25.29534465 -0.29935087 -13.28993637 22.01740153 0.38427615 -7.78496814 -12.16052585 0.00000000 35.35901203 5.04388631 1.18467926 60.07152776 1.04844595 4.76442419 -18.10678407 0.00000000 -0.03331947 1.46086699 0.77494226 -0.06187759 1.94295310 0.82337615 -0.05474056 3.55195200 0.82337615 -0.03808083 3.55195200 0.67807448 -0.03094046 2.97899997 0.62964059 -0.01903875 2.26288297 0.58120670 -0.23799766 16.52561958 4.30999638 0.00000000 0.00000000 0.00000000 0.00000000 0.00000000 0.03490800 0.05866394 -0.00602761 -24.68460465 48.11071645 -23.84837778 106.98862508 89.99559364 0.00000000 0.00000000 0.04350267 0.06551067 -0.00842307 -17.49221913 58.21322770 -18.22392310 59.27923830 89.99559364 0.00000000 0.00000000
|
||||
1.51666670 -1.21661475 14.70586497 -86.18696631 0.02677868 0.91462269 -0.67592860 27.97875020 -0.54702718 -13.32792801 22.98298296 0.40112872 -7.89701671 -11.86651738 0.00000000 39.82831131 4.72694792 0.63356601 58.81850900 1.02657664 5.40764845 -18.58157670 0.00000000 -0.04632535 1.53264099 0.38029587 -0.08603081 2.03841252 0.40406436 -0.07610792 3.72646331 0.40406436 -0.05294524 3.72646331 0.33275889 -0.04301772 3.12536151 0.30899039 -0.02647030 2.37406090 0.28522190 -0.33089733 17.33754143 2.11509154 0.00000000 0.00000000 0.00000000 0.00000000 0.00000000 0.03455906 0.05830325 -0.00607048 -17.70074275 46.63249680 -26.70602434 104.50069720 89.99559364 0.00000000 0.00000000 0.04521813 0.06511850 -0.00828344 -24.10555327 60.33854982 -19.69655205 65.28470138 89.99559364 0.00000000 0.00000000
|
||||
1.53333330 -0.81290982 16.08352515 -87.29019317 0.02565637 0.91386290 -0.67501974 30.42803668 -0.87320380 -13.29610000 24.17946009 0.42201119 -8.11984213 -12.33210072 0.00000000 43.60930303 4.65170776 0.69336906 56.90736418 0.99322087 5.89631493 -18.64686706 0.00000000 -0.05851756 1.55675019 0.16617127 -0.10867296 2.07047776 0.17655697 -0.09613850 3.78508242 0.17655697 -0.06687972 3.78508242 0.14539986 -0.05433940 3.17452499 0.13501416 -0.03343693 2.41140605 0.12462845 -0.41798506 17.61026953 0.92419474 0.00000000 0.00000000 0.00000000 0.00000000 0.00000000 0.03428192 0.05611036 -0.00597253 -13.13105068 45.23706147 -28.99574613 102.06339192 89.99559364 0.00000000 0.00000000 0.04551535 0.06437207 -0.00812583 -27.71828874 62.15159232 -22.10166872 71.15733147 89.99559364 0.00000000 0.00000000
|
||||
1.55000000 -0.29477209 17.00574477 -88.02690728 0.02535373 0.91291913 -0.67086050 32.24363354 -1.34204272 -13.21270778 25.49864234 0.44503526 -8.38923243 -13.32562773 0.00000000 46.40413335 4.90656944 1.21590103 54.36887854 0.94891594 6.00844379 -18.51565982 0.00000000 -0.06900585 1.54739880 0.06529309 -0.12815076 2.05804040 0.06937391 -0.11336970 3.76234544 0.06937391 -0.07886678 3.76234544 0.05713146 -0.06407883 3.15545563 0.05305064 -0.03942994 2.39692074 0.04896982 -0.49290186 17.50448468 0.36314059 0.00000000 0.00000000 0.00000000 0.00000000 0.00000000 0.03503979 0.05306278 -0.00584581 -10.94036526 43.85085464 -30.04024277 100.36372915 89.99559364 0.00000000 0.00000000 0.04524579 0.06343583 -0.00794289 -28.99521646 63.54964530 -24.91168370 76.44077592 89.99559364 0.00000000 0.00000000
|
||||
1.56666670 0.40636259 17.50995223 -88.54869345 0.02520339 0.91205354 -0.66496287 33.46827928 -2.04194792 -12.96730997 27.03470721 0.47184465 -8.49142529 -14.52845046 0.00000000 48.19893433 5.52186169 1.98485870 51.18947437 0.89342487 5.81106407 -18.20851526 0.00000000 -0.07565186 1.50876553 0.07589076 -0.14049306 2.00665816 0.08063393 -0.12428844 3.66841252 0.08063393 -0.08646251 3.66841252 0.06640441 -0.07025031 3.07667467 0.06166124 -0.04322747 2.33707781 0.05691807 -0.54037365 17.06745746 0.42208163 0.00000000 0.00000000 0.00000000 0.00000000 0.00000000 0.03606263 0.05044052 -0.00565660 -10.88325258 42.35164285 -30.11773314 99.26965233 89.99559364 0.00000000 0.00000000 0.04450874 0.06229221 -0.00780856 -28.13732858 64.61768303 -27.52614119 80.75431513 89.99559364 0.00000000 0.00000000
|
||||
1.58333330 1.12950593 17.72521364 -88.85909436 0.02468998 0.91140109 -0.65881321 34.24200275 -2.79216458 -12.60660055 28.65606093 0.50014261 -8.39146474 -15.83185429 0.00000000 49.21576426 6.29555387 2.95158353 47.54314033 0.82978434 5.45251800 -17.62177454 0.00000000 -0.08215060 1.45515618 0.03768475 -0.15256188 1.93535772 0.04004005 -0.13496523 3.53806674 0.04004005 -0.09388992 3.53806674 0.03297416 -0.07628505 2.96735448 0.03061886 -0.04694085 2.25403692 0.02826356 -0.58679354 16.46101775 0.20959127 0.00000000 0.00000000 0.00000000 0.00000000 0.00000000 0.03603585 0.04808419 -0.00559301 -10.95289150 40.90018181 -29.75516542 98.24134673 89.99559364 0.00000000 0.00000000 0.04340613 0.06076379 -0.00763284 -26.89964629 65.63938853 -29.54294329 84.51288191 89.99559364 0.00000000 0.00000000
|
||||
1.60000000 1.74828290 17.75952515 -89.06705831 0.02386571 0.91080232 -0.65236873 34.76969238 -3.39225758 -12.03920848 30.36355024 0.52994392 -7.90725041 -16.95412067 0.00000000 49.68007658 6.99038834 3.98451010 43.75999440 0.76375598 5.08533617 -16.74187406 0.00000000 -0.08622517 1.40227928 -0.01791671 -0.16012877 1.86503144 -0.01903650 -0.14165934 3.40950183 -0.01903650 -0.09854675 3.40950183 -0.01567712 -0.08006870 2.85952790 -0.01455733 -0.04926906 2.17213060 -0.01343753 -0.61589779 15.86286363 -0.09964736 0.00000000 0.00000000 0.00000000 0.00000000 0.00000000 0.03528032 0.04591944 -0.00557502 -11.29700142 39.65537342 -28.96530532 97.58968522 89.99559364 0.00000000 0.00000000 0.04263100 0.05912521 -0.00745948 -25.64423681 66.47225209 -31.07126627 88.01589221 89.99559364 0.00000000 0.00000000
|
||||
1.61666670 2.25627627 17.70230033 -89.27213826 0.02302853 0.91042141 -0.64454259 35.10965671 -3.79328936 -11.29040945 32.00630542 0.55861541 -7.08390509 -17.64415299 0.00000000 49.74820178 7.50652377 4.89922104 40.12446788 0.70030408 4.76448720 -15.50074214 0.00000000 -0.09004701 1.35463137 -0.09695549 -0.16722631 1.80165972 -0.10301520 -0.14793824 3.29365072 -0.10301520 -0.10291473 3.29365072 -0.08483605 -0.08361766 2.76236429 -0.07877633 -0.05145286 2.09832399 -0.07271661 -0.64319682 15.32386099 -0.53923732 0.00000000 0.00000000 0.00000000 0.00000000 0.00000000 0.03413138 0.04453991 -0.00557411 -11.91662464 38.48184524 -27.87124470 97.30062380 89.99559364 0.00000000 0.00000000 0.04163084 0.05768775 -0.00734349 -24.65445432 67.10638266 -32.07974931 90.99260698 89.99559364 0.00000000 0.00000000
|
||||
1.63333330 2.59459842 17.65370247 -89.56541915 0.02239690 0.91028346 -0.63467046 35.39452867 -3.90134440 -10.34559325 33.59853991 0.58640515 -6.08352308 -18.06720498 0.00000000 49.69762923 7.72381295 5.49561169 37.07250316 0.64703724 4.53091419 -13.85768335 0.00000000 -0.09453564 1.31295936 -0.17489021 -0.17556214 1.74623595 -0.18582085 -0.15531260 3.19232940 -0.18582085 -0.10804478 3.19232940 -0.15302893 -0.08778580 2.67738673 -0.14209830 -0.05401766 2.03377405 -0.13116766 -0.67525862 14.85245891 -0.97268688 0.00000000 0.00000000 0.00000000 0.00000000 0.00000000 0.03280382 0.04322683 -0.00553675 -13.05693436 37.50958004 -26.36352986 97.40339321 89.99559364 0.00000000 0.00000000 0.04075507 0.05641527 -0.00724002 -24.25707936 67.53077210 -32.77976206 94.07353580 89.99559364 0.00000000 0.00000000
|
||||
1.65000000 2.72332511 17.50895765 -89.67224563 0.02267700 0.91105351 -0.62244198 35.34263710 -3.88209467 -9.56376618 34.99123393 0.61071224 -5.35184491 -18.24887581 0.00000000 49.48546722 7.87812324 5.99645756 34.73816247 0.60629531 4.25707934 -11.93264616 0.00000000 -0.09917856 1.29619368 -0.31046564 -0.18418450 1.72393759 -0.32986974 -0.16294045 3.15156531 -0.32986974 -0.11335117 3.15156531 -0.27165744 -0.09209721 2.64319815 -0.25225333 -0.05667063 2.00780401 -0.23284923 -0.70842252 14.66280214 -1.72671676 0.00000000 0.00000000 0.00000000 0.00000000 0.00000000 0.02902327 0.04173332 -0.00554465 -13.67813172 36.80565457 -25.32139560 97.51625700 89.99559364 0.00000000 0.00000000 0.03768280 0.05518652 -0.00714777 -23.70653566 67.63149021 -33.00120004 96.46778656 89.99559364 0.00000000 0.00000000
|
||||
1.66666670 2.78158067 17.68045886 -90.05288680 0.02305473 0.91163248 -0.60862187 35.60488362 -3.62559121 -8.52182273 36.41113548 0.63549420 -4.72141815 -18.35695285 0.00000000 49.72734814 7.68870159 5.81505564 33.23251231 0.58001676 4.12355129 -9.38721087 0.00000000 -0.10312219 1.26270863 -0.29852667 -0.19150823 1.67940248 -0.31718459 -0.16941945 3.07014976 -0.31718459 -0.11785836 3.07014976 -0.26121084 -0.09575927 2.57491544 -0.24255292 -0.05892402 1.95593567 -0.22389500 -0.73659152 14.28401255 -1.66031580 0.00000000 0.00000000 0.00000000 0.00000000 0.00000000 0.03303969 0.03800005 -0.00521762 -18.73323176 36.64365102 -21.34818786 99.67797579 89.99559364 0.00000000 0.00000000 0.03883431 0.05277932 -0.00676729 -24.06910635 67.93613602 -33.26782650 100.56352523 89.99559364 0.00000000 0.00000000
|
@ -1,101 +0,0 @@
|
||||
# times, pelvis_x, pelvis_y, pelvis_z, pelvis_rotx, pelvis_roty, pelvis_rotz, sacrum_x, sacrum_y, sacrum_z, sacrum_rotx, sacrum_roty, sacrum_rotz, femur_r_x, femur_r_y, femur_r_z, femur_r_rotx, femur_r_roty, femur_r_rotz, patella_r_x, patella_r_y, patella_r_z, patella_r_rotx, patella_r_roty, patella_r_rotz, tibia_r_x, tibia_r_y, tibia_r_z, tibia_r_rotx, tibia_r_roty, tibia_r_rotz, talus_r_x, talus_r_y, talus_r_z, talus_r_rotx, talus_r_roty, talus_r_rotz, calcn_r_x, calcn_r_y, calcn_r_z, calcn_r_rotx, calcn_r_roty, calcn_r_rotz, toes_r_x, toes_r_y, toes_r_z, toes_r_rotx, toes_r_roty, toes_r_rotz, femur_l_x, femur_l_y, femur_l_z, femur_l_rotx, femur_l_roty, femur_l_rotz, patella_l_x, patella_l_y, patella_l_z, patella_l_rotx, patella_l_roty, patella_l_rotz, tibia_l_x, tibia_l_y, tibia_l_z, tibia_l_rotx, tibia_l_roty, tibia_l_rotz, talus_l_x, talus_l_y, talus_l_z, talus_l_rotx, talus_l_roty, talus_l_rotz, calcn_l_x, calcn_l_y, calcn_l_z, calcn_l_rotx, calcn_l_roty, calcn_l_rotz, toes_l_x, toes_l_y, toes_l_z, toes_l_rotx, toes_l_roty, toes_l_rotz, lumbar5_x, lumbar5_y, lumbar5_z, lumbar5_rotx, lumbar5_roty, lumbar5_rotz, lumbar4_x, lumbar4_y, lumbar4_z, lumbar4_rotx, lumbar4_roty, lumbar4_rotz, lumbar3_x, lumbar3_y, lumbar3_z, lumbar3_rotx, lumbar3_roty, lumbar3_rotz, lumbar2_x, lumbar2_y, lumbar2_z, lumbar2_rotx, lumbar2_roty, lumbar2_rotz, lumbar1_x, lumbar1_y, lumbar1_z, lumbar1_rotx, lumbar1_roty, lumbar1_rotz, torso_x, torso_y, torso_z, torso_rotx, torso_roty, torso_rotz, head_x, head_y, head_z, head_rotx, head_roty, head_rotz, Abdomen_x, Abdomen_y, Abdomen_z, Abdomen_rotx, Abdomen_roty, Abdomen_rotz, humerus_r_x, humerus_r_y, humerus_r_z, humerus_r_rotx, humerus_r_roty, humerus_r_rotz, ulna_r_x, ulna_r_y, ulna_r_z, ulna_r_rotx, ulna_r_roty, ulna_r_rotz, radius_r_x, radius_r_y, radius_r_z, radius_r_rotx, radius_r_roty, radius_r_rotz, hand_r_x, hand_r_y, hand_r_z, hand_r_rotx, hand_r_roty, hand_r_rotz, humerus_l_x, humerus_l_y, humerus_l_z, humerus_l_rotx, humerus_l_roty, humerus_l_rotz, ulna_l_x, ulna_l_y, ulna_l_z, ulna_l_rotx, ulna_l_roty, ulna_l_rotz, radius_l_x, radius_l_y, radius_l_z, radius_l_rotx, radius_l_roty, radius_l_rotz, hand_l_x, hand_l_y, hand_l_z, hand_l_rotx, hand_l_roty, hand_l_rotz
|
||||
1.666667000000000148e-02,-1.358761480000000077e+00,3.534827000000000108e-02,9.524390900000000437e-01,1.584093864521765926e+00,6.973361562223438781e-02,2.855852095116850897e-01,-1.350378642511382843e+00,3.804547646335383615e-02,9.347612955275628188e-01,1.584093864521765926e+00,6.973361562223438781e-02,2.855852095116850897e-01,-1.407718175951598871e+00,-6.524326147464447334e-02,8.902402493747417767e-01,1.612521949245673714e+00,1.190711234649581562e-01,-3.942117057032143435e-01,-1.415719421802478895e+00,-4.249388569613533895e-02,4.596113111674323126e-01,1.613315311265237639e+00,2.267446955083203541e-01,-3.896071014995111659e-01,-1.439417497182259087e+00,-3.212366735911638405e-02,4.971077134867757374e-01,1.675217648847105778e+00,4.695500480928654907e-01,-2.796478904863372583e-01,-1.611241891394261438e+00,6.336839277381146884e-02,1.196797625036690182e-01,1.611058536869271363e+00,1.303247869140706505e-01,-3.691570277794002375e-01,-1.663033054522325749e+00,7.681694567279763464e-02,8.459674917364970459e-02,1.494221806328386748e+00,1.124261416755579501e-01,-4.514624430619501583e-01,-1.505932649669805778e+00,-7.040095427573028752e-04,6.291936710982706793e-02,1.494221806328386748e+00,1.124261416755579501e-01,-4.514624430619502138e-01,-1.454675956096713962e+00,9.523857148131913142e-02,8.924584671155421089e-01,1.580482498295121996e+00,-5.211250225617992671e-01,-3.123233992912444190e-01,-1.220244155064725833e+00,2.389241734108950299e-02,5.403666769611263909e-01,1.580163484034295518e+00,-4.583253397365172344e-01,-3.116455330956255376e-01,-1.263342469324039374e+00,3.558436734173939242e-02,5.518236837681950169e-01,1.586154375429690955e+00,-2.278276100128900916e-01,-3.857773301085608009e-01,-1.171841892891462455e+00,5.477283343163268092e-03,1.373174447516186114e-01,1.555977348737881849e+00,8.781763627662586558e-02,-4.416801102405337187e-01,-1.215411588581409186e+00,3.404719040850219536e-02,1.001765238514544520e-01,1.824209030502375706e+00,2.520323734449703146e-02,-2.509260613358741954e-01,-1.044147013195133811e+00,-8.276355357191726714e-03,9.408494876149438302e-02,1.824209030502375706e+00,2.520323734449701758e-02,-2.509260613358741399e-01,-1.439288457458223425e+00,1.095528415608008552e-02,1.012515688350152487e+00,1.589410793337097116e+00,7.073023549286962253e-02,2.539641116815576360e-01,-1.428361287238336441e+00,1.318900797365673075e-02,1.043587466475946135e+00,1.597029088066453273e+00,7.234489897981631612e-02,2.203769642600870160e-01,-1.425267211317558624e+00,1.295576244355794472e-02,1.076320101774108196e+00,1.612895113128411495e+00,7.441195170342963794e-02,1.868075120623198526e-01,-1.428939383814732178e+00,1.066496443587648668e-02,1.111436335187953928e+00,1.629144737915583452e+00,7.647817575379180222e-02,1.591855624263683877e-01,-1.437635947597452502e+00,7.561836228218825513e-03,1.140684191965121608e+00,1.642533604297337302e+00,7.868820365955653262e-02,1.335586808049726293e-01,-1.442943269076251145e+00,1.418259576215307946e-02,1.054020351459641791e+00,1.652329392705572442e+00,8.085118612558193918e-02,1.099136821021577531e-01,-1.546059005350009619e+00,5.075833093748700897e-02,1.066524467533273457e+00,1.675130882605069926e+00,2.960089274108928525e-01,-1.181650488774688701e-01,-1.341471981607833763e+00,1.414647544070457910e-02,1.093889844876626327e+00,1.655287118590637707e+00,8.849202376940296100e-02,1.102962322219453450e-01,-1.389826252987346189e+00,-1.788918023753659770e-01,1.405545619458905993e+00,1.122656965939123896e+00,2.502640908121975261e-01,-3.602927162715964804e-01,-1.482383997540520859e+00,-2.715112961225462085e-01,1.139573219991032005e+00,1.281965263309163827e+00,-5.359841210085234398e-01,-4.357488229181085554e-02,-1.486806728099961949e+00,-2.998270589592794133e-01,1.131866617123320928e+00,1.076787633466338878e+00,1.960489157969438068e-01,1.405090237972365763e+00,-1.373480085790695693e+00,-3.668819150099781323e-01,9.377828743897612673e-01,1.076787633466338878e+00,1.960489157969438068e-01,1.405090237972365763e+00,-1.424432707635955975e+00,1.548784979719203536e-01,1.432875438363399034e+00,1.978038669394135640e+00,3.547303587954701576e-01,-2.066989732177939576e-01,-1.483493757068200081e+00,2.777367694453626301e-01,1.169618412725007106e+00,1.856400149966116242e+00,-2.992476348007344980e-02,-3.563533792636245923e-01,-1.479672614064661662e+00,3.066878350869203240e-01,1.164329805842956311e+00,1.547885585443812273e+00,2.271086240815518575e-01,-1.916887232834385779e+00,-1.451240755442797736e+00,3.615394881420394557e-01,9.380761730699861412e-01,1.547885585443812273e+00,2.271086240815518575e-01,-1.916887232834385779e+00
|
||||
3.333333000000000129e-02,-1.348933310000000052e+00,2.995068000000000036e-02,9.527695200000000364e-01,1.568129148354880931e+00,5.734242978110194733e-02,2.414276341671300619e-01,-1.340162651900113078e+00,3.206352298234594472e-02,9.352007193720945910e-01,1.568129148354880931e+00,5.734242978110194733e-02,2.414276341671300619e-01,-1.401200456203637312e+00,-6.921073839921398907e-02,8.909692887154683216e-01,1.617393225742450591e+00,1.326393323755157283e-01,-3.789705678802809397e-01,-1.413810184036147888e+00,-4.265736601822617269e-02,4.610500014641749078e-01,1.618257834726637867e+00,2.321567444733775853e-01,-3.742098582420124719e-01,-1.437743526661783955e+00,-3.279714253850630340e-02,4.986508484827201770e-01,1.679339611912931574e+00,4.717956670401851627e-01,-2.653580492640593147e-01,-1.611193143771985747e+00,6.211296089069123089e-02,1.218199623156730471e-01,1.616262011058282599e+00,1.451914819518261568e-01,-3.534952046026246797e-01,-1.663601497314297628e+00,7.513245549127567369e-02,8.749995041476721358e-02,1.490619980217644525e+00,1.262091492651696012e-01,-4.412750870552814009e-01,-1.506007120708103164e+00,-6.557321409350613806e-04,6.341452592134277921e-02,1.490619980217644525e+00,1.262091492651696012e-01,-4.412750870552814564e-01,-1.441206931797031965e+00,9.315815007819544524e-02,8.905240020504294751e-01,1.554319817517676228e+00,-5.235035284217487428e-01,-2.573266990903641527e-01,-1.205613339519121974e+00,2.384664918373766151e-02,5.366967603120507135e-01,1.555108031873213781e+00,-4.285179158633970475e-01,-2.590448610104412186e-01,-1.248102946921643586e+00,3.366373887739670251e-02,5.503761528267108183e-01,1.559561988906932761e+00,-1.845844380371997051e-01,-3.485305322728879385e-01,-1.176331359885016248e+00,2.498005134713328357e-03,1.320799055179613934e-01,1.531325662755224304e+00,9.869279521538323885e-02,-4.061660154475972284e-01,-1.221676423306696790e+00,2.872542016029859535e-02,9.533818669713867155e-02,1.778329232234751922e+00,4.788263917699919076e-02,-2.304113813117757426e-01,-1.049779120508146368e+00,-1.010834456414373000e-02,8.517941691882569000e-02,1.778329232234751922e+00,4.788263917699917688e-02,-2.304113813117756870e-01,-1.431381251184975723e+00,9.798023230899632202e-03,1.011803552098189618e+00,1.573300808003450291e+00,5.787900907760613889e-02,2.084522068565983488e-01,-1.420861334708676704e+00,1.195345111513036046e-02,1.043021248018396907e+00,1.580652953908030511e+00,5.904493701521368321e-02,1.734187387669652858e-01,-1.418302966364746398e+00,1.203082119505273669e-02,1.075800828235274231e+00,1.595754082867509860e+00,6.064924034847208462e-02,1.383971389597697388e-01,-1.422641006786442786e+00,1.044642305510563862e-02,1.110880053558981562e+00,1.611184126582508425e+00,6.232097176001848149e-02,1.095743774917651708e-01,-1.431946105323075979e+00,8.246958358493887767e-03,1.140022380889591957e+00,1.623920915764721418e+00,6.415622160331031776e-02,8.282838294632831333e-02,-1.435525392223916841e+00,1.352673521568394099e-02,1.053178026125640931e+00,1.633276396057002922e+00,6.595893949630213249e-02,5.814869206818189945e-02,-1.556995457717673004e+00,4.092890625555395401e-02,1.067204080458623139e+00,1.652435032408000382e+00,3.041236315636641763e-01,-8.811287904413299399e-02,-1.334857047470750624e+00,9.573166037484062002e-03,1.094767565601499237e+00,1.635920720661755423e+00,7.343438655125175685e-02,5.838722926355818105e-02,-1.397848206080028133e+00,-1.755792157312979218e-01,1.408830277091419614e+00,1.111303011337692048e+00,2.272625905915977296e-01,-3.476394971256266953e-01,-1.484217089010352320e+00,-2.744427166314637456e-01,1.143023865903532776e+00,1.261918240912561107e+00,-5.838980080186744193e-01,-5.336407902218625807e-03,-1.487497133795937954e+00,-3.030016547398732829e-01,1.135650735041223491e+00,1.026025959162451873e+00,2.065580232375816838e-01,1.422525839901814360e+00,-1.363262476628498865e+00,-3.702415704472276636e-01,9.484280749151168255e-01,1.026025959162451873e+00,2.065580232375816561e-01,1.422525839901814360e+00,-1.415992746160305682e+00,1.599471320820096132e-01,1.429806089041258055e+00,1.972236188541250268e+00,3.398253545687871524e-01,-2.489712444208466435e-01,-1.466593232666615343e+00,2.827214126643497472e-01,1.164753847454308655e+00,1.857080305903486162e+00,-2.876222841214502030e-02,-3.912252403045053950e-01,-1.461769916226764110e+00,3.115274039647107918e-01,1.159492176416251130e+00,1.546699452462962254e+00,2.278002388076877105e-01,-1.952006609542925819e+00,-1.431628513209353137e+00,3.655975212791806594e-01,9.332717109223432894e-01,1.546699452462962254e+00,2.278002388076877105e-01,-1.952006609542925819e+00
|
||||
5.000000000000000278e-02,-1.339250379999999963e+00,2.476483999999999977e-02,9.532851199999999858e-01,1.554828635457538688e+00,4.593703840525530796e-02,2.065000745631243029e-01,-1.330169230977744199e+00,2.638950992459426076e-02,9.358224602785270019e-01,1.554828635457538688e+00,4.593703840525530796e-02,2.065000745631243029e-01,-1.394025085431060074e+00,-7.320631112839194599e-02,8.917587415143751750e-01,1.622435088761638555e+00,1.471496793632391387e-01,-3.630241896871817531e-01,-1.411697932189074578e+00,-4.280554301831233227e-02,4.626871232289423430e-01,1.623361893419249080e+00,2.381850554789767815e-01,-3.581889345545302694e-01,-1.435862297544600930e+00,-3.348005164963322594e-02,5.003989037338936186e-01,1.683521177439596173e+00,4.742607377076826780e-01,-2.506512751702294484e-01,-1.611062656570614093e+00,6.079032430344075838e-02,1.242179039573491073e-01,1.621564571063333959e+00,1.603051718367813627e-01,-3.373127304781425861e-01,-1.664089891729257031e+00,7.334017185597534183e-02,9.068255491507663801e-02,1.484472602153080523e+00,1.397624591221857948e-01,-4.323009048988185055e-01,-1.506136598772600754e+00,-8.981408382656569378e-04,6.423686021897487275e-02,1.484472602153080523e+00,1.397624591221857948e-01,-4.323009048988185055e-01,-1.428427905074796112e+00,9.042041027947271548e-02,8.890914663350987235e-01,1.510535094442404525e+00,-5.247767269936258749e-01,-1.376039774321753950e-01,-1.189287076362814943e+00,3.109559688831094182e-02,5.337464665929734231e-01,1.514374624253310264e+00,-3.917031258590082388e-01,-1.462641759441616618e-01,-1.231199846144682031e+00,3.707254590210878192e-02,5.497453312697129224e-01,1.516791000019463986e+00,-1.399300837864222435e-01,-2.554307402677400973e-01,-1.179659850181666636e+00,-1.275220382664157825e-04,1.289674825901248600e-01,1.493093283932619864e+00,9.000773239556271454e-02,-3.120047044504319356e-01,-1.227472559447836620e+00,2.010656047137873020e-02,9.157052128080883646e-02,1.640685881818775504e+00,6.907402787279616485e-02,-2.049318980327988482e-01,-1.054954144961760099e+00,-1.452425059454066913e-02,7.749756197490974274e-02,1.640685881818775504e+00,6.907402787279616485e-02,-2.049318980327987927e-01,-1.423153114742404357e+00,8.070496502614606105e-03,1.011340606598611025e+00,1.559609319408216344e+00,4.605923986343458260e-02,1.731798031701180796e-01,-1.413003282025832030e+00,1.022142740001109884e-02,1.042681032975156130e+00,1.566356959229922685e+00,4.680242645362047565e-02,1.377724904487296065e-01,-1.410906104725743848e+00,1.061990153507696641e-02,1.075491043299667826e+00,1.580035287475447081e+00,4.792945728002330485e-02,1.023715929603165875e-01,-1.415797664439420123e+00,9.697279696040015176e-03,1.110521117595333784e+00,1.593981595556641873e+00,4.916123204677014247e-02,7.323103680523010417e-02,-1.425593551544297677e+00,8.304650434159606062e-03,1.139552132134642237e+00,1.605517031379366744e+00,5.055357835238585840e-02,4.618499462134538491e-02,-1.427724345802586559e+00,1.203127100555005310e-02,1.052579783142305381e+00,1.614026274372891256e+00,5.191607215925884977e-02,2.122615176829860742e-02,-1.563581250719901838e+00,3.533594733941666788e-02,1.068006896149483964e+00,1.634584092740533956e+00,3.107277169475796130e-01,-6.661664817754076040e-02,-1.327971269843379432e+00,6.004627537012419136e-03,1.095816334396807035e+00,1.616312360331686682e+00,5.866050996083925495e-02,2.132532033056852225e-02,-1.402008400006958810e+00,-1.715400472636705864e-01,1.412175967628522821e+00,1.094324137593692292e+00,2.084295748453720287e-01,-3.331958569650619317e-01,-1.483279934004773315e+00,-2.777339789110225832e-01,1.147592501364334661e+00,1.235004166243177881e+00,-6.234216782407135948e-01,4.012614590751842347e-02,-1.485410298580041477e+00,-3.065274465170901852e-01,1.140727192312082749e+00,9.825594563100387147e-01,2.223437528977496580e-01,1.443454934908643184e+00,-1.351804373270614867e+00,-3.738257864639995542e-01,9.600944961213291329e-01,9.825594563100387147e-01,2.223437528977496580e-01,1.443454934908643184e+00,-1.408392555025024473e+00,1.647563358572588232e-01,1.426706086798815054e+00,1.969323338455674310e+00,3.188944721392155679e-01,-2.772890522141877589e-01,-1.450458017112738585e+00,2.866427021088618909e-01,1.159758836206529864e+00,1.861413878658643162e+00,-3.207353410464439808e-02,-4.128756060679690254e-01,-1.444991141318047623e+00,3.153519941894751266e-01,1.154598941278955015e+00,1.550146672986823848e+00,2.320968946762515528e-01,-1.972739458429533244e+00,-1.412614717106799977e+00,3.693577130573149070e-01,9.286721162771414129e-01,1.550146672986823848e+00,2.320968946762515528e-01,-1.972739458429533244e+00
|
||||
6.666666999999999732e-02,-1.329365759999999952e+00,2.009516999999999901e-02,9.538624799999999571e-01,1.541704287339007218e+00,3.947729574928614954e-02,1.810818427823580601e-01,-1.320095062187354396e+00,2.128912466629846734e-02,9.364647807613739605e-01,1.541704287339007218e+00,3.947729574928614954e-02,1.810818427823580601e-01,-1.386024998088670745e+00,-7.720236441650756010e-02,8.929770909997002404e-01,1.629533652488681206e+00,1.619958348428729156e-01,-3.393701669479769478e-01,-1.408930966381486183e+00,-4.243901588378812262e-02,4.649471612620616479e-01,1.630535330700611629e+00,2.440037117234528097e-01,-3.344059182556391452e-01,-1.433441217777646992e+00,-3.388862665548091763e-02,5.027516131085565387e-01,1.689646252188331088e+00,4.757637261867802558e-01,-2.280747247290845492e-01,-1.610555841086818152e+00,5.902127571522815946e-02,1.271289641248002922e-01,1.629222577024799223e+00,1.776437466366783124e-01,-3.129737096488423576e-01,-1.664326862447717437e+00,7.076010771658888809e-02,9.449641806111638842e-02,1.470471922083672833e+00,1.537757794824789470e-01,-4.219287787222809061e-01,-1.505974048128673637e+00,-1.702084945743490008e-03,6.562495416847473340e-02,1.470471922083672833e+00,1.537757794824789470e-01,-4.219287787222809616e-01,-1.416317376621162749e+00,8.718473998495866739e-02,8.881166358405579997e-01,1.467690511588541913e+00,-5.215478414515383188e-01,-1.458243030957541994e-03,-1.173954519886537096e+00,4.229341037364243300e-02,5.309884601187844222e-01,1.475676753196741853e+00,-3.493412228422692056e-01,-2.032075523266774902e-02,-1.214842192055817005e+00,4.409053573386428893e-02,5.492568913389812568e-01,1.474072394141197950e+00,-9.443133398737869888e-02,-1.479615700140352041e-01,-1.181399005265141522e+00,-2.445079488630742814e-03,1.275814190250151858e-01,1.453622086385851331e+00,9.167423003779087698e-02,-2.019595946924512830e-01,-1.231551267279165973e+00,1.080779928872591805e-02,9.012320501876233680e-02,1.482557221318298701e+00,8.967291413573579006e-02,-1.808005452640780997e-01,-1.058640276011810766e+00,-1.989702998880759841e-02,7.226411339917752918e-02,1.482557221318298701e+00,8.967291413573579006e-02,-1.808005452640780442e-01,-1.414161215310009156e+00,6.169203696817008448e-03,1.011348197770201685e+00,1.546043087572534391e+00,3.921263925013190876e-02,1.507093806836971306e-01,-1.404243067636952391e+00,8.484974503553328537e-03,1.042750921220930937e+00,1.552127878148793494e+00,3.950104930089146787e-02,1.184271393596701832e-01,-1.402432385841571261e+00,9.283018782889382314e-03,1.075570800319390008e+00,1.564302864018301653e+00,4.008199161044266601e-02,8.614688037165994794e-02,-1.407659765448900036e+00,8.971582967517894441e-03,1.110563292327093388e+00,1.576693033287726475e+00,4.078825283719722528e-02,5.957102960385633750e-02,-1.417745356003542678e+00,8.193242372563545872e-03,1.139517983751872965e+00,1.586969823002248647e+00,4.163455766206788922e-02,3.490143874718030365e-02,-1.419000247531008840e+00,1.024835796245385927e-02,1.052473340526214329e+00,1.594592318594453717e+00,4.245461531301772395e-02,1.213429912637314922e-02,-1.561906024642942370e+00,3.653599441127248354e-02,1.068438825150420879e+00,1.624009732160293762e+00,3.123551188825524627e-01,-5.806297831581358482e-02,-1.319939225625440971e+00,4.979575900477303807e-03,1.096909879880754390e+00,1.596706339261803720e+00,4.785291076081135686e-02,1.212166919395441834e-02,-1.398293769428813338e+00,-1.665539025799625539e-01,1.415765725648726159e+00,1.070291694804997418e+00,1.951699877485903734e-01,-3.318991302423388579e-01,-1.477616955939194288e+00,-2.802390759226510153e-01,1.153715849820983852e+00,1.200272961681553285e+00,-6.557941319034437111e-01,8.053573641426023388e-02,-1.478957096484376788e+00,-3.092353820939489073e-01,1.147539042382860197e+00,9.446523351958739934e-01,2.438862364182939890e-01,1.454371674127810765e+00,-1.337976873174941073e+00,-3.784220331650365310e-01,9.733392584572535533e-01,9.446523351958739934e-01,2.438862364182939890e-01,1.454371674127810765e+00,-1.402037813067448901e+00,1.700007975966051910e-01,1.423769163966654983e+00,1.968973607505630774e+00,2.881109719128243651e-01,-2.760051370727473752e-01,-1.436357247869568532e+00,2.894942421736290128e-01,1.154640724229354598e+00,1.867928371566789814e+00,-5.074735146703331784e-02,-4.077458439118547551e-01,-1.430944327025765128e+00,3.182253172791020268e-01,1.149545598165111038e+00,1.569436637734280771e+00,2.383568804982350298e-01,-1.962844049535713342e+00,-1.394409540913498446e+00,3.720831119696745293e-01,9.242184401806863292e-01,1.569436637734280771e+00,2.383568804982350575e-01,-1.962844049535713342e+00
|
||||
8.333332999999999713e-02,-1.318493289999999929e+00,1.636320999999999956e-02,9.546464900000000142e-01,1.532203156437186076e+00,3.815002382068417852e-02,1.663654255993521347e-01,-1.309156287458005830e+00,1.726505365326635316e-02,9.372666635902767718e-01,1.532203156437186076e+00,3.815002382068417852e-02,1.663654255993521347e-01,-1.376368158983704015e+00,-8.066477951613111597e-02,8.944785679101139309e-01,1.630021191945846049e+00,1.774748847079309910e-01,-3.336897501720038628e-01,-1.405326725582538572e+00,-4.380478726807751633e-02,4.673376067836748637e-01,1.631009610441342073e+00,2.530464178203449266e-01,-3.290656785036051302e-01,-1.429765810288969874e+00,-3.544855663620594816e-02,5.053275254184246279e-01,1.689441702375274357e+00,4.819127705223721359e-01,-2.246793379442521277e-01,-1.609466879124569871e+00,5.729001535075530643e-02,1.308928885280578602e-01,1.629877268563044490e+00,1.926419045264732843e-01,-3.074532569170782548e-01,-1.663754833115109300e+00,6.890436299987900970e-02,9.908202626757703357e-02,1.469179825214015800e+00,1.686963805010804618e-01,-4.168829141389130966e-01,-1.505450717963763507e+00,-2.577917988344627376e-03,6.761720104370666506e-02,1.469179825214015800e+00,1.686963805010804618e-01,-4.168829141389131521e-01,-1.404282618760216428e+00,8.408832495316355404e-02,8.880311018866651196e-01,1.444175518169537931e+00,-5.153979928853148484e-01,8.340860436965820413e-02,-1.161511224312034463e+00,4.939959400368218456e-02,5.287517001399130168e-01,1.455058536101025757e+00,-3.127388488795240229e-01,5.649922055873225074e-02,-1.201234432847401612e+00,4.873851679028141232e-02,5.487849557838653247e-01,1.448412482161643311e+00,-5.666097575666727976e-02,-8.256475568467604165e-02,-1.181681321557686015e+00,-5.007872799153434418e-03,1.270940552144421143e-01,1.428915689079428564e+00,1.070440344242445246e-01,-1.345948529918274406e-01,-1.233322143603085452e+00,3.886194027797815198e-03,9.037720552248157402e-02,1.392726042937532105e+00,1.080220115199044123e-01,-1.608693066326309651e-01,-1.060223958707865899e+00,-2.349398801609383844e-02,6.922800665532877207e-02,1.392726042937532105e+00,1.080220115199044262e-01,-1.608693066326309096e-01,-1.403645349269252884e+00,4.180228142219905366e-03,1.012000751232476015e+00,1.535552116030017400e+00,3.777402122080170815e-02,1.418967714608359854e-01,-1.393799288120353808e+00,6.729965602700614322e-03,1.043407938638945875e+00,1.540253915063765966e+00,3.787417949275165979e-02,1.158831698937956012e-01,-1.392085820296093734e+00,7.912121695387802287e-03,1.076221578769351872e+00,1.549670410278370714e+00,3.811747196793961040e-02,8.987049438695711434e-02,-1.397427790877881826e+00,8.099881568521498723e-03,1.111197871058924758e+00,1.559259954509535584e+00,3.842161881518076083e-02,6.845308754756512792e-02,-1.407608795573970673e+00,7.726291564237951215e-03,1.140127218663548936e+00,1.567222878056518498e+00,3.879882899193399376e-02,4.856970144097843417e-02,-1.408553796709000272e+00,7.893558630965333972e-03,1.053054904011853976e+00,1.573140720602186571e+00,3.911947991823382098e-02,3.021931691252915941e-02,-1.555655585257863738e+00,3.447976432332090779e-02,1.069245768191901869e+00,1.600872396656271901e+00,3.153391571760367218e-01,-6.376859623993262616e-02,-1.309935151175674939e+00,6.634272182855290023e-03,1.098095910452428603e+00,1.574928882056073176e+00,4.248885589631658244e-02,3.014918083746686434e-02,-1.385956385149859305e+00,-1.606979253835950916e-01,1.420118145381653818e+00,1.038309279296184329e+00,1.908073181601623869e-01,-3.378384051724878656e-01,-1.466867441294108287e+00,-2.824790265526053168e-01,1.162224003592549515e+00,1.159123346894558981e+00,-6.752008510334558400e-01,1.205421263111134539e-01,-1.467653312036979685e+00,-3.116648111142177879e-01,1.156903563283064651e+00,9.179628497445793123e-01,2.714212762386603583e-01,1.462164961846622591e+00,-1.321771797984497621e+00,-3.839482802410025264e-01,9.880797950533171115e-01,9.179628497445793123e-01,2.714212762386603583e-01,1.462164961846622591e+00,-1.396097911843012573e+00,1.758190378031385948e-01,1.420906829429283480e+00,1.967057096898882751e+00,2.511193398444913072e-01,-2.497811092155680091e-01,-1.424030700283986262e+00,2.913984853800667962e-01,1.149341414464164934e+00,1.872382825418927865e+00,-8.107595056022988411e-02,-3.790031230568148279e-01,-1.419301244393474715e+00,3.202382503480377118e-01,1.144180513190157455e+00,1.600745904407563813e+00,2.422077956405927768e-01,-1.926356437486041351e+00,-1.377636571408602517e+00,3.735395798145691448e-01,9.196124743406746127e-01,1.600745904407563813e+00,2.422077956405927768e-01,-1.926356437486041351e+00
|
||||
1.000000000000000056e-01,-1.306772940000000105e+00,1.347806000000000004e-02,9.554146500000000319e-01,1.522276565201630349e+00,4.298200846656785590e-02,1.586462091653756956e-01,-1.297485303702486936e+00,1.412786980263388593e-02,9.379971627041305826e-01,1.522276565201630349e+00,4.298200846656785590e-02,1.586462091653756956e-01,-1.365546905558805646e+00,-8.375274525676397464e-02,8.964578731236174658e-01,1.627785100037542954e+00,1.904985513213822423e-01,-3.335008420574817056e-01,-1.399998186762559493e+00,-4.601533601277067731e-02,4.698965016348748969e-01,1.628769222686317297e+00,2.643609152814416774e-01,-3.291391449925200607e-01,-1.424062744973718209e+00,-3.771549800926290996e-02,5.081628338137973433e-01,1.687835672542210785e+00,4.926016181869763422e-01,-2.254046557014335317e-01,-1.607775285967308010e+00,5.539233737820647985e-02,1.357721150127011445e-01,1.628819452106214039e+00,2.112808088579105070e-01,-3.059196076953369925e-01,-1.662649371732166426e+00,6.705655943764537996e-02,1.050022171778370039e-01,1.471988588508645890e+00,1.883082380173716486e-01,-4.117347109395335103e-01,-1.504573955562932719e+00,-3.344441122036134750e-03,7.013379996945237616e-02,1.471988588508645890e+00,1.883082380173716486e-01,-4.117347109395335658e-01,-1.392278486917496449e+00,8.112337539217585880e-02,8.883548050115802619e-01,1.439200904440219642e+00,-5.113824739053561830e-01,1.085791313478488423e-01,-1.150500478881610888e+00,5.010604154942002036e-02,5.272274911019347865e-01,1.451193400229693342e+00,-2.872439856895013799e-01,7.792863508584037258e-02,-1.189339743558537776e+00,4.876557627093975472e-02,5.484443457684469170e-01,1.440087991152633196e+00,-2.970261432759170248e-02,-6.624461470769062166e-02,-1.180508458783386505e+00,-7.407129073583283707e-03,1.267088246636243754e-01,1.421421257441671804e+00,1.186019047016674405e-01,-1.147173539278837223e-01,-1.232771598069345442e+00,1.936041869049463793e-04,9.058682162630252166e-02,1.372852659509403939e+00,1.194275504317248715e-01,-1.497420457535508231e-01,-1.059637182902120722e+00,-2.526291842725742615e-02,6.742684890187242153e-02,1.372852659509403939e+00,1.194275504317248854e-01,-1.497420457535507676e-01,-1.391827568608992260e+00,2.526038055864749873e-03,1.013160410829571090e+00,1.524567569332857975e+00,4.262902863225951494e-02,1.412998753081524117e-01,-1.381878713323557939e+00,5.433259857050948619e-03,1.044503878748813008e+00,1.527812867214854986e+00,4.266486583684156453e-02,1.228515440489878624e-01,-1.380069203357315866e+00,7.060189167473439331e-03,1.077293455285344148e+00,1.534403321510932283e+00,4.272751043010488553e-02,1.044051738594398149e-01,-1.385310870776231384e+00,7.734168995727992713e-03,1.112279191896851760e+00,1.541134826662679425e+00,4.278744428299074976e-02,8.921809679479576760e-02,-1.395402916474941968e+00,7.676735090733184490e-03,1.141242054052931110e+00,1.546721641778667555e+00,4.286291347079901337e-02,7.511861465688904338e-02,-1.396555610205362230e+00,5.861287638262162487e-03,1.054191462572303450e+00,1.550867032985410621e+00,4.285996144334994207e-02,6.210772738608850985e-02,-1.543924334030949863e+00,3.283240838787412907e-02,1.070193303598773404e+00,1.578068078007297315e+00,3.166304593505803178e-01,-6.415582676590633748e-02,-1.298192955443653318e+00,1.001468789518174078e-02,1.099046843640355986e+00,1.552250848928216742e+00,4.455676361643551298e-02,6.203871955702960211e-02,-1.367577588584297787e+00,-1.536187550944683733e-01,1.424860512924776890e+00,9.983979534526056243e-01,1.925060556493599639e-01,-3.496829426533250573e-01,-1.452799363813305655e+00,-2.843088015375305755e-01,1.172781190557828701e+00,1.111041357814745112e+00,-6.871903394901872630e-01,1.639530874863660559e-01,-1.453118364616104996e+00,-3.136714866694074733e-01,1.168484021871097900e+00,8.963034704634831318e-01,3.047000953781479060e-01,1.469139202053454385e+00,-1.303408775257827390e+00,-3.898794939172053331e-01,1.004816189796391201e+00,8.963034704634831318e-01,3.047000953781479060e-01,1.469139202053454385e+00,-1.388756761045797150e+00,1.823182203946208668e-01,1.418157509739224054e+00,1.961023052462909977e+00,2.186750555681677144e-01,-2.080990391932818206e-01,-1.413312764985482861e+00,2.931990006015181560e-01,1.144316170221836737e+00,1.869403515896872925e+00,-1.203684895152322964e-01,-3.378921831444681168e-01,-1.409571749782511763e+00,3.221234299902866471e-01,1.138828284638714994e+00,1.641098008003864406e+00,2.381402928743694136e-01,-1.875945259750257499e+00,-1.362024865278338659e+00,3.735312199166766489e-01,9.149883559410630918e-01,1.641098008003864406e+00,2.381402928743694136e-01,-1.875945259750257499e+00
|
||||
1.166666700000000001e-01,-1.294122109999999992e+00,1.060020000000000059e-02,9.562650700000000503e-01,1.515694184856040794e+00,5.106440705139920350e-02,1.545711690499687874e-01,-1.284953776764595101e+00,1.107991611425155482e-02,9.387789943221770406e-01,1.515694184856040794e+00,5.106440705139920350e-02,1.545711690499687874e-01,-1.353668807292295106e+00,-8.686053555735907816e-02,8.984748811766689602e-01,1.624137621020119493e+00,1.981813665893737697e-01,-3.368800899758115919e-01,-1.391981841022413180e+00,-4.923849877663670493e-02,4.718527243992450826e-01,1.625198861350495738e+00,2.790438737172581951e-01,-3.323937353654712878e-01,-1.415225864164092684e+00,-4.101036158290190248e-02,5.105356239078773228e-01,1.687724681548188332e+00,5.106622979911837890e-01,-2.258973735280765116e-01,-1.605428268963648097e+00,5.364189695717726247e-02,1.418105103886236340e-01,1.628731238262207448e+00,2.383763808093239400e-01,-3.044854625808154913e-01,-1.661095751031157919e+00,6.546763665877165794e-02,1.125651808756479993e-01,1.472955337632380957e+00,2.160274205832941330e-01,-4.082615416777141681e-01,-1.503724283084845625e+00,-3.972098323503273076e-03,7.291308285406966627e-02,1.472955337632380957e+00,2.160274205832941330e-01,-4.082615416777142237e-01,-1.379839654807154758e+00,7.804810346017278244e-02,8.892770644385670220e-01,1.443570994578253552e+00,-5.065828850030889008e-01,1.024371438069432566e-01,-1.140337350989677034e+00,4.717041672154936166e-02,5.261482294895423184e-01,1.455435690743785315e+00,-2.696043815050869763e-01,7.130625359380070305e-02,-1.178598074949034347e+00,4.598609940758880549e-02,5.481538561230221429e-01,1.440912853338810473e+00,-1.048574000433548023e-02,-7.414759259956284210e-02,-1.178268712896533676e+00,-9.307081634657918268e-03,1.262098197521708265e-01,1.424045266313354041e+00,1.202054200801175587e-01,-1.166468008682160218e-01,-1.230561182750897542e+00,-1.489097415703650312e-03,9.017674193703617558e-02,1.382224042291618771e+00,1.210949445916357364e-01,-1.467728042639264152e-01,-1.057386703316398613e+00,-2.640599700271573785e-02,6.673122247041560207e-02,1.382224042291618771e+00,1.210949445916357503e-01,-1.467728042639263597e-01,-1.378812394563513344e+00,4.182221070250236039e-04,1.014683325306047434e+00,1.516172383885991071e+00,5.084741786757702303e-02,1.423591116435378723e-01,-1.368650683519631928e+00,3.637135497823969221e-03,1.045927840277211640e+00,1.516972564252693889e+00,5.098088527456180047e-02,1.293640056307713559e-01,-1.366629359427066204e+00,5.672608157279370941e-03,1.078682290723853354e+00,1.518987069003212342e+00,5.104517990420045365e-02,1.163732959433952385e-01,-1.371655567962625000e+00,6.872932315127657475e-03,1.113685691366516961e+00,1.521120506753912638e+00,5.102684687564353061e-02,1.056800620668213869e-01,-1.381569997128869076e+00,7.250592425607488636e-03,1.142707433884722290e+00,1.522861552457191570e+00,5.096788405829115465e-02,9.575379291014765593e-02,-1.383156455543238739e+00,2.986972452908751366e-03,1.055749405123586060e+00,1.524103122482476369e+00,5.079750389872872418e-02,8.659741972248580222e-02,-1.524802290809087912e+00,3.426188439370739247e-02,1.069889626655391890e+00,1.543743565962746978e+00,3.085295361399436609e-01,-1.128310941559604597e-01,-1.285040117381399893e+00,1.272994617615299563e-02,1.099860678414291693e+00,1.524585189775703453e+00,5.122929323255716316e-02,8.657387592124814180e-02,-1.348004168073694053e+00,-1.455106215935667302e-01,1.430425179499746235e+00,9.555560956559306929e-01,1.923880048707092283e-01,-3.615862599257420595e-01,-1.437343573645407213e+00,-2.856952054586370804e-01,1.184959546393759222e+00,1.058059425035729362e+00,-6.968231215241034171e-01,2.128114610178969968e-01,-1.437155814904928608e+00,-3.152018103319399467e-01,1.181787841190827804e+00,8.744271907425051893e-01,3.411206332746197778e-01,1.477242240196046552e+00,-1.283519117217764460e+00,-3.952850088536656870e-01,1.023704865482335968e+00,8.744271907425053003e-01,3.411206332746197778e-01,1.477242240196046552e+00,-1.377885741940001241e+00,1.894638866205598238e-01,1.414730929323553488e+00,1.951943919347685963e+00,1.896530265413480520e-01,-1.317228736280720569e-01,-1.403438305799374897e+00,2.946225930131957105e-01,1.138732130544477084e+00,1.860406571757145411e+00,-1.704150429727544769e-01,-2.656099410058477828e-01,-1.401493213782047276e+00,3.236140982463752147e-01,1.132695248920094766e+00,1.692146499425771777e+00,2.273410772479957653e-01,-1.793190230892889314e+00,-1.347451920410261073e+00,3.734052075945111238e-01,9.099663446190917604e-01,1.692146499425771777e+00,2.273410772479957653e-01,-1.793190230892889314e+00
|
||||
1.333333299999999999e-01,-1.280849120000000063e+00,7.952229999999999369e-03,9.570641199999999627e-01,1.507081002228222832e+00,5.996415469932565856e-02,1.524988129880299748e-01,-1.271811233995354895e+00,8.244665315453578169e-03,9.395061473770127680e-01,1.507081002228222832e+00,5.996415469932565856e-02,1.524988129880299748e-01,-1.340978572953978265e+00,-8.997595081164305730e-02,9.006847767223823409e-01,1.614268625259480006e+00,1.982326826766878380e-01,-3.554815152726658600e-01,-1.381126071374463082e+00,-5.515962760907411333e-02,4.729880962466727068e-01,1.615397858521469443e+00,2.990745545264631433e-01,-3.508988256128477423e-01,-1.402801917224849815e+00,-4.667283570129692610e-02,5.122381954212882338e-01,1.684987962163074338e+00,5.390447308256346437e-01,-2.382629565839171903e-01,-1.602246848393785283e+00,5.166619694076082098e-02,1.494085270256325648e-01,1.625122630080416908e+00,2.730031696093552229e-01,-3.150818931141294299e-01,-1.658757891506208448e+00,6.423935518674876721e-02,1.221610743810989247e-01,1.487054872078066081e+00,2.541398345036259276e-01,-4.057495859923193615e-01,-1.502709093641290350e+00,-4.133240497698989491e-03,7.596686002709573948e-02,1.487054872078066303e+00,2.541398345036259276e-01,-4.057495859923193615e-01,-1.366960677640105315e+00,7.487652232126595919e-02,8.900562936203109121e-01,1.460357821952912083e+00,-5.044275520555974168e-01,4.852926690277876293e-02,-1.130381596168064329e+00,3.832390826673588713e-02,5.252290355168934832e-01,1.470827632767030657e+00,-2.584675896453627608e-01,2.061857187619493825e-02,-1.168268540429835634e+00,3.859734411368023060e-02,5.477436093692077401e-01,1.453548335105719236e+00,3.430124890241891163e-03,-1.224420938588389185e-01,-1.175787409156101582e+00,-1.063374270591564696e-02,1.251161364315186431e-01,1.439395881855402903e+00,1.133376350166776514e-01,-1.565045727356015881e-01,-1.227376997047322504e+00,-1.392680305890067055e-04,8.875150526259517614e-02,1.442267677870664455e+00,1.131984180121431982e-01,-1.544297662503895108e-01,-1.054196313637639548e+00,-2.628418997897267323e-02,6.673245565624896791e-02,1.442267677870664455e+00,1.131984180121432121e-01,-1.544297662503894553e-01,-1.365115382045373860e+00,-1.515458007230290061e-03,1.016211135909195207e+00,1.505665430508677405e+00,5.963293311906014971e-02,1.409495843662127712e-01,-1.354726703273274824e+00,2.062753970110890560e-03,1.047341595214665855e+00,1.503966862730940601e+00,5.959019548779532355e-02,1.286577149336338710e-01,-1.352481437949592191e+00,4.561656896484377055e-03,1.080049412263599518e+00,1.501474244087779741e+00,5.942803047338608008e-02,1.163726714117108013e-01,-1.357290991278518266e+00,6.416996691377051427e-03,1.115054787975258366e+00,1.499114798874063181e+00,5.918283956797554951e-02,1.062621411410101663e-01,-1.367040205523262664e+00,7.449779662462152965e-03,1.144116521439771494e+00,1.497085117745375227e+00,5.888089245308808506e-02,9.687827981539215427e-02,-1.369048250271798661e+00,5.754030631126266088e-04,1.057334680111468916e+00,1.495456827787112086e+00,5.846937314762537530e-02,8.822557936615023355e-02,-1.507435165202096083e+00,3.090203932012974830e-02,1.070254796682301501e+00,1.508781529887470718e+00,3.032255291962558386e-01,-1.291012993952212751e-01,-1.271018657240115424e+00,1.365187945318079715e-02,1.100566089855513408e+00,1.495013318478857656e+00,5.819729626415221652e-02,8.826165529487998984e-02,-1.331501521785426467e+00,-1.368201674468860485e-01,1.435992645880725282e+00,9.125257448879386946e-01,1.847026853936476476e-01,-3.701068375082250395e-01,-1.422830267436183682e+00,-2.871840741527579288e-01,1.197379193293784727e+00,9.981954343076031577e-01,-7.114417995854749321e-01,2.726001884944803111e-01,-1.421956620215502953e+00,-3.167840259924869506e-01,1.195426172554604483e+00,8.438095531203236854e-01,3.795181702023826542e-01,1.487471200490802170e+00,-1.262718923980290509e+00,-3.998770769303919281e-01,1.044606141543893862e+00,8.438095531203236854e-01,3.795181702023826542e-01,1.487471200490802170e+00,-1.362556865881660473e+00,1.974592828776592646e-01,1.410695337873732136e+00,1.938871101405901465e+00,1.586722784074216797e-01,1.071814502149536462e-02,-1.394376905516403919e+00,2.943670247020841457e-01,1.132337656769748513e+00,1.845248498611232524e+00,-2.392639528771879631e-01,-1.308358384110465678e-01,-1.395828670733159749e+00,3.232096557936741665e-01,1.125501743673605892e+00,1.761832869716404515e+00,2.091200785983512445e-01,-1.646407594352006232e+00,-1.334100483751422095e+00,3.743899280543013242e-01,9.050975889173613620e-01,1.761832869716404515e+00,2.091200785983512167e-01,-1.646407594352006232e+00
|
||||
1.499999999999999944e-01,-1.267862169999999900e+00,4.850250000000000394e-03,9.578824400000000017e-01,1.498986299713952919e+00,6.661791842074349379e-02,1.520254107019581025e-01,-1.258918387469529332e+00,4.984885026913392185e-03,9.402744323917147096e-01,1.498986299713952919e+00,6.661791842074349379e-02,1.520254107019581025e-01,-1.328286322465111136e+00,-9.358192888334870840e-02,9.027087323378590877e-01,1.605869987238287555e+00,1.866567536946264760e-01,-3.693667959364896336e-01,-1.366463725715350019e+00,-6.258413516331115534e-02,4.728913417242193162e-01,1.607166280386901347e+00,3.250899526383845273e-01,-3.642572129471779996e-01,-1.386062608891966308e+00,-5.423112046646329926e-02,5.127552278087430526e-01,1.688849302916857198e+00,5.757766023773194242e-01,-2.397473641637549169e-01,-1.597674196698465998e+00,4.909391436857975938e-02,1.582997478674567082e-01,1.627822390529439556e+00,3.220967793242140997e-01,-3.154512818169553090e-01,-1.655355219970950920e+00,6.218994402569021779e-02,1.338989376553337829e-01,1.493271166966461116e+00,3.046954102638906314e-01,-4.022210621353715099e-01,-1.501412037163406099e+00,-4.620914043018349571e-03,7.914722255247746974e-02,1.493271166966461116e+00,3.046954102638906314e-01,-4.022210621353715654e-01,-1.354335257668135784e+00,7.116790448019583160e-02,8.907371954072351716e-01,1.485344404240249716e+00,-5.027358156360481889e-01,-3.734665616003834260e-02,-1.121602196297678322e+00,2.526988484484228581e-02,5.242842242942886699e-01,1.493525581652638046e+00,-2.503370689291631312e-01,-5.941843403766939452e-02,-1.159118358379350289e+00,2.783783848711875869e-02,5.471649504105270401e-01,1.473826776406062633e+00,1.508567516113110130e-02,-1.976362308243358457e-01,-1.173473199644542220e+00,-1.130647549242973227e-02,1.236606701566197453e-01,1.462641596631225394e+00,1.032638395414017946e-01,-2.228797512412130088e-01,-1.223670628261124493e+00,3.456867608146969167e-03,8.683312831187124659e-02,1.538389487457316074e+00,9.628495070993083049e-02,-1.680136368662613622e-01,-1.050477370764378637e+00,-2.490296807529277304e-02,6.786579130393055603e-02,1.538389487457316074e+00,9.628495070993083049e-02,-1.680136368662613067e-01,-1.351810126386152611e+00,-4.086299087447981850e-03,1.017562321327468045e+00,1.495205748923349232e+00,6.594324166120844877e-02,1.375990604701734787e-01,-1.341263580057060478e+00,-1.778995652934470609e-04,1.048599783634910798e+00,1.490438730417554369e+00,6.547675564642937984e-02,1.222509562413715833e-01,-1.338868079935707778e+00,2.774195950815462088e-03,1.081259173529385942e+00,1.482573757630662348e+00,6.480295862206696123e-02,1.069169923942929479e-01,-1.343547853005038650e+00,5.362074206556745326e-03,1.116235668272718140e+00,1.474896849441596602e+00,6.406491112654670583e-02,9.430189404402218589e-02,-1.353213101836627796e+00,7.228677710965698833e-03,1.145283727409084351e+00,1.468395236748325949e+00,6.324934827690793793e-02,8.259792486726552641e-02,-1.355441759395959567e+00,-2.520102120074510857e-03,1.058782566161528438e+00,1.463345636784836978e+00,6.232585169730015667e-02,7.181031317062273878e-02,-1.489408928352431660e+00,3.230606251329992684e-02,1.069507626824795610e+00,1.483548726413005614e+00,2.939631364424259430e-01,-1.415112587315912607e-01,-1.257473091072623506e+00,1.252790003918725394e-02,1.101374564798421885e+00,1.461837946696121993e+00,6.101103739932137865e-02,7.197787380792598777e-02,-1.319310969932418809e+00,-1.281650534671409380e-01,1.441636411525582862e+00,8.715302049394111350e-01,1.668958211568385974e-01,-3.730677414514310120e-01,-1.409529103984266785e+00,-2.892820801651544427e-01,1.209712682740347489e+00,9.303796817067282454e-01,-7.312870691689550284e-01,3.447074406468150221e-01,-1.407802044647197492e+00,-3.189018317971878402e-01,1.209062853769735657e+00,8.030467664183486010e-01,4.192198854178975642e-01,1.498925306855863893e+00,-1.241243515523978935e+00,-4.037613339287643988e-01,1.067412220008958634e+00,8.030467664183486010e-01,4.192198854178975642e-01,1.498925306855863893e+00,-1.345570390603079147e+00,2.055399084435265700e-01,1.405600591556313450e+00,1.927163309470968588e+00,1.773158378487132703e-01,2.139180548410147750e-02,-1.383732894981132056e+00,2.987065987683394930e-01,1.126763336063134169e+00,1.825652283683687482e+00,-2.526730052158822626e-01,-1.238782823859170545e-01,-1.385169814761497920e+00,3.273993099220866010e-01,1.119320333538575962e+00,1.774443719485579107e+00,1.894161981675455408e-01,-1.641725388703755728e+00,-1.321147517775253188e+00,3.741829339526873133e-01,8.985937633624702103e-01,1.774443719485579107e+00,1.894161981675455408e-01,-1.641725388703755728e+00
|
||||
1.666666699999999890e-01,-1.255907260000000081e+00,1.603180000000000056e-03,9.585966000000000209e-01,1.490368510329202589e+00,7.044324301764379181e-02,1.566094926870347515e-01,-1.247007194393558560e+00,1.623934445196823255e-03,9.409659532186055442e-01,1.490368510329202589e+00,7.044324301764379181e-02,1.566094926870347515e-01,-1.315954364387599052e+00,-9.763708967328110777e-02,9.044687496096768253e-01,1.593982391295371004e+00,1.645427864926860551e-01,-3.907731855463290604e-01,-1.349164173887004825e+00,-7.308583776433788537e-02,4.717827128038761253e-01,1.595220472201614559e+00,3.582942428825315329e-01,-3.860052681884011405e-01,-1.366123086901093187e+00,-6.483016453371046039e-02,5.121981557302865973e-01,1.692840352845194296e+00,6.191091333807141606e-01,-2.468146661705439004e-01,-1.591152635984844910e+00,4.529265894536674275e-02,1.682085047722703397e-01,1.630644208972848563e+00,3.797214589636606075e-01,-3.211463214152367462e-01,-1.649966957590352612e+00,5.924339891573979222e-02,1.472261692037054592e-01,1.509814262184454137e+00,3.654052387055820583e-01,-3.977364171105841062e-01,-1.499067733113798484e+00,-5.438310926976830384e-03,8.237522426305110557e-02,1.509814262184454137e+00,3.654052387055820583e-01,-3.977364171105841617e-01,-1.342886286981054944e+00,6.686043765577515119e-02,8.910669824480349499e-01,1.511235086119367743e+00,-5.009562278956943837e-01,-1.269008969587615832e-01,-1.114204679517179386e+00,1.153019577716200145e-02,5.231030841896315842e-01,1.517010351581649763e+00,-2.405846624317236337e-01,-1.427048141153071936e-01,-1.151146599506645440e+00,1.642330171944161171e-02,5.464030393690331167e-01,1.494642696199582677e+00,2.851927355884865262e-02,-2.760757000915832204e-01,-1.171613140844543155e+00,-1.142855459372861190e-02,1.222572991291561162e-01,1.486148616375079667e+00,9.616363257242971363e-02,-2.938332050271969531e-01,-1.220092150514605844e+00,7.722078951283510573e-03,8.514874440408584655e-02,1.645266818549942389e+00,7.382309101150456854e-02,-1.788101162488534013e-01,-1.046793853243904948e+00,-2.237024404206458539e-02,7.024583007706980409e-02,1.645266818549942389e+00,7.382309101150456854e-02,-1.788101162488533458e-01,-1.339662192033946209e+00,-7.223831928746127749e-03,1.018563296979767774e+00,1.484023480261100758e+00,6.913325786910910764e-02,1.366778100731035339e-01,-1.329066009054941100e+00,-2.948359202052022038e-03,1.049535302318674868e+00,1.475979805255031030e+00,6.789225527852019160e-02,1.154866872484746204e-01,-1.326629993276064567e+00,4.692131165546144927e-04,1.082146300744614376e+00,1.462516295585716053e+00,6.628057491943624424e-02,9.432866984117342646e-02,-1.331296721478899991e+00,3.824481131972127471e-03,1.117059285851181638e+00,1.449336392113062422e+00,6.463742555857185379e-02,7.693481159537937653e-02,-1.340974189206749267e+00,6.604182331624101551e-03,1.146029894400784288e+00,1.438209620073958916e+00,6.287818572617120960e-02,6.080896522475428417e-02,-1.343174583892646989e+00,-6.117126075304860078e-03,1.059913899761376399e+00,1.429619068158334061e+00,6.101129460597710247e-02,4.595440808283940415e-02,-1.476976513244579792e+00,3.983602464956963879e-02,1.068674243111269462e+00,1.474654372734421903e+00,2.927162336975955848e-01,-1.348480932714656022e-01,-1.245364061493015040e+00,1.005546321260759532e-02,1.102284790850239782e+00,1.427130575995648742e+00,5.783639951822083791e-02,4.641420444344810520e-02,-1.311155380374027457e+00,-1.196652310398741564e-01,1.446890324264597405e+00,8.315690900767179761e-01,1.357375816239046740e-01,-3.760582041921583518e-01,-1.397543601171391758e+00,-2.920606832288439869e-01,1.221715931072388406e+00,8.470570657148637217e-01,-7.581804099334087388e-01,4.305274493127354551e-01,-1.394953301840025084e+00,-3.216128892105238335e-01,1.222547898246281850e+00,7.465022810439789769e-01,4.623512444762516993e-01,1.504112888883815113e+00,-1.219373014235202390e+00,-4.077693108946772726e-01,1.093101328659718430e+00,7.465022810439789769e-01,4.623512444762516993e-01,1.504112888883815113e+00,-1.329352981553498125e+00,2.131713276251465672e-01,1.399605954479693493e+00,1.916911665199116266e+00,1.793882250138024437e-01,6.676561284863211099e-02,-1.372255029528508974e+00,3.015837368275554597e-01,1.119910970334413003e+00,1.811356170520937559e+00,-2.740448179740577195e-01,-8.021961144139254374e-02,-1.374681300963416231e+00,3.300769315636616907e-01,1.111974613547912494e+00,1.795399919539564682e+00,1.744997377236351677e-01,-1.597996245931810444e+00,-1.308131781560365026e+00,3.759602771844849922e-01,8.918072662132048301e-01,1.795399919539564682e+00,1.744997377236351677e-01,-1.597996245931810444e+00
|
||||
1.833333299999999888e-01,-1.245295349999999912e+00,-1.992190000000000020e-03,9.591619500000000409e-01,1.483429919100492489e+00,7.236500537113516041e-02,1.669751207237614443e-01,-1.236409136933392938e+00,-2.000761181218350861e-03,9.415243070637693279e-01,1.483429919100492489e+00,7.236500537113516041e-02,1.669751207237614443e-01,-1.304301055370831186e+00,-1.022627380136049702e-01,9.057929141010824248e-01,1.585508360504356062e+00,1.370894255881107970e-01,-4.022111297474496583e-01,-1.330508715438128764e+00,-8.414854528978418791e-02,4.703367884159971868e-01,1.586575087700417885e+00,3.932932861871271113e-01,-3.981744653664389122e-01,-1.344924407823548940e+00,-7.634579870997884599e-02,5.111591887174853355e-01,1.701796837996564005e+00,6.610471483739588372e-01,-2.429470462032750633e-01,-1.582971311907177325e+00,3.992234906538978667e-02,1.781282540475310205e-01,1.639849907082107983e+00,4.440056958649825636e-01,-3.149712953530141024e-01,-1.642934020108649085e+00,5.426110160353363882e-02,1.610145233512763063e-01,1.521306995339406054e+00,4.312719375666478894e-01,-3.889910021950720442e-01,-1.495750732672960437e+00,-7.322162238231628983e-03,8.548621005276796359e-02,1.521306995339406054e+00,4.312719375666478339e-01,-3.889910021950720997e-01,-1.333028290423526663e+00,6.183273673207518445e-02,8.912397890337503403e-01,1.532043715188686317e+00,-4.986954522352173846e-01,-1.927312822024805916e-01,-1.107637158749726902e+00,6.281046205775867031e-04,5.217732349221346766e-01,1.535874500685114441e+00,-2.263267256959771712e-01,-2.034335857384165502e-01,-1.143830017694746903e+00,7.057113593684515018e-03,5.456707839923888859e-01,1.510262115047650955e+00,4.614586466462301806e-02,-3.338340168426426335e-01,-1.170778497673711227e+00,-1.084580868045934357e-02,1.213507644565111065e-01,1.504852328614129542e+00,8.933753870625861515e-02,-3.443874273534084929e-01,-1.217716438451092120e+00,1.137892488220782275e-02,8.397568036033208061e-02,1.729396035778590246e+00,4.908798818700180200e-02,-1.825016493198164669e-01,-1.044187582818713045e+00,-1.925908908918312623e-02,7.353571109292383889e-02,1.729396035778590246e+00,4.908798818700179506e-02,-1.825016493198164391e-01,-1.328904873378192963e+00,-1.129941372108267915e-02,1.019258811093917139e+00,1.474240110475573351e+00,7.029868412350931406e-02,1.409770001343748635e-01,-1.318338825160138006e+00,-6.653040651119856638e-03,1.050187575765809900e+00,1.462568407592728770e+00,6.811430136977829342e-02,1.133541786251320571e-01,-1.315941394382189156e+00,-2.801402298847990770e-03,1.082753047043307992e+00,1.442896742191460913e+00,6.529866031822909034e-02,8.580063286086818397e-02,-1.320678290297062629e+00,1.280014972123376480e-03,1.117579061514356376e+00,1.423621566086588519e+00,6.245215759481761303e-02,6.317453989415157400e-02,-1.330433472481472590e+00,4.938010815110480470e-03,1.146425332638165484e+00,1.407391429498915381e+00,5.941206657702136767e-02,4.222139540857131751e-02,-1.332411631432636412e+00,-1.084405269495562936e-02,1.060810036629897368e+00,1.394918359322480539e+00,5.624526979511926261e-02,2.293872565761174986e-02,-1.467612282555422754e+00,3.526408612520503388e-02,1.068131368791512381e+00,1.443383398485467595e+00,2.896273189220026079e-01,-1.327644390621676718e-01,-1.234990838253569256e+00,7.005169008283520030e-03,1.103193882772654177e+00,1.391509858580021186e+00,5.014351309720760375e-02,2.395879835306460176e-02,-1.304957559841152026e+00,-1.116135135831345521e-01,1.451656482643755908e+00,7.917848178194165643e-01,9.282401493568827322e-02,-3.813538879772886969e-01,-1.385884398330625711e+00,-2.956000954087236177e-01,1.233742718742327771e+00,7.465858415359774014e-01,-7.851152451605086791e-01,5.275683124458514506e-01,-1.382595674957412646e+00,-3.249867868803028581e-01,1.236260924714213782e+00,6.780918059951582810e-01,5.097970550967870773e-01,1.499079524590633872e+00,-1.197704868596626060e+00,-4.125758808010524525e-01,1.121581715090415710e+00,6.780918059951582810e-01,5.097970550967870773e-01,1.499079524590633872e+00,-1.315871238866672899e+00,2.197002754221832055e-01,1.392841485205313701e+00,1.909931227880804716e+00,1.885972936313054238e-01,4.193008958849431950e-02,-1.359171635837686187e+00,3.070704562164587870e-01,1.112880503803295618e+00,1.801425333673486673e+00,-2.748835432319801653e-01,-1.039455667918398746e-01,-1.360845804998597641e+00,3.355403422549140813e-01,1.104670909113777189e+00,1.795748504424822034e+00,1.649100378952559898e-01,-1.624354915064986082e+00,-1.293145110603513226e+00,3.775353950158747418e-01,8.840789503016610595e-01,1.795748504424822034e+00,1.649100378952559620e-01,-1.624354915064986082e+00
|
||||
2.000000000000000111e-01,-1.235768299999999931e+00,-6.012390000000000269e-03,9.593501500000000126e-01,1.476105927202882473e+00,7.503300155965898777e-02,1.761378021187421650e-01,-1.226906148431781807e+00,-6.069881269217050623e-03,9.417004964959748703e-01,1.476105927202882473e+00,7.503300155965898777e-02,1.761378021187421650e-01,-1.293869617685755147e+00,-1.072561727270573140e-01,9.068330727742696107e-01,1.576590440637396284e+00,1.087627269215020731e-01,-4.134487174267341691e-01,-1.312776291392710792e+00,-9.619279739080648095e-02,4.690914042966271569e-01,1.577117794133656270e+00,4.246999141139174427e-01,-4.114728934786248682e-01,-1.324898912755435365e+00,-8.876575277229960259e-02,5.101813670229121689e-01,1.708646412508197709e+00,6.979953992269398722e-01,-2.423123645095187351e-01,-1.573853822633020094e+00,3.300465240569988579e-02,1.872454051842095124e-01,1.647900467614351383e+00,5.021621758574333905e-01,-3.112757162556381574e-01,-1.634631484976054594e+00,4.772110599766568595e-02,1.736989026340851616e-01,1.542424490233807344e+00,4.921349755594480735e-01,-3.765259043929407579e-01,-1.491234547640546859e+00,-1.018283619890225644e-02,8.858488242359564835e-02,1.542424490233807344e+00,4.921349755594480735e-01,-3.765259043929408134e-01,-1.324207910866457727e+00,5.643676356847100728e-02,8.910665611487320614e-01,1.543457427532733517e+00,-4.980479093888853792e-01,-2.169763905370221124e-01,-1.099957176068733666e+00,-5.226658692411109697e-03,5.203001430175480113e-01,1.546265281711699524e+00,-2.050581971977132045e-01,-2.250429354351499989e-01,-1.135274695286014879e+00,1.460733238876278650e-03,5.450966205075400417e-01,1.516273608482816559e+00,7.039832944177087937e-02,-3.561650866042353480e-01,-1.171374006448651750e+00,-9.852835092853900675e-03,1.212298288344428876e-01,1.515360314437005362e+00,7.765193985805318722e-02,-3.578748456499040165e-01,-1.217437623704240357e+00,1.325870194482639368e-02,8.330877928890033368e-02,1.767590960196665284e+00,2.743851431288178710e-02,-1.753459732095224710e-01,-1.043498965124453948e+00,-1.610330681415581694e-02,7.673914546344610954e-02,1.767590960196665284e+00,2.743851431288178017e-02,-1.753459732095224155e-01,-1.319202649319401344e+00,-1.566933742358991855e-02,1.019634992592235223e+00,1.464148185428558735e+00,7.224400086710762448e-02,1.459229927091496570e-01,-1.308650808304950175e+00,-1.063455957959736319e-02,1.050507529571957033e+00,1.448931567850511026e+00,6.911143590928169045e-02,1.138424725296973139e-01,-1.306277748698367880e+00,-6.331843852410447976e-03,1.083018297922210049e+00,1.423124096007085226e+00,6.506789956175738909e-02,8.188032180927647119e-02,-1.311070256774262699e+00,-1.537334003793983800e-03,1.117745599911962984e+00,1.397813228674370301e+00,6.098461388582884085e-02,5.567186119860568355e-02,-1.320889154529097498e+00,2.938752852359138336e-03,1.146454066814272199e+00,1.376545814173461668e+00,5.662192984783599725e-02,3.143606899844336722e-02,-1.322666094431487638e+00,-1.589887618937465413e-02,1.061452060193065261e+00,1.360263107065926569e+00,5.211664998928833975e-02,9.159894286275956088e-03,-1.461066866068462033e+00,3.200560549673453492e-02,1.067693212803934033e+00,1.414533640432825479e+00,2.910986852604623976e-01,-1.293271181422587235e-01,-1.225741687216070908e+00,4.532579383776050991e-03,1.103640534790521599e+00,1.356067904558089898e+00,4.275936335535584359e-02,1.094935973245773561e-02,-1.298171007532700205e+00,-1.034202529726783448e-01,1.455671737505201069e+00,7.509755023456293754e-01,4.078574780880581813e-02,-3.954942112420988809e-01,-1.374263696635545706e+00,-2.987837277532093827e-01,1.246077750558467701e+00,6.283583030035642114e-01,-8.068782679568468064e-01,6.305663753033201591e-01,-1.370654838795352548e+00,-3.279079269609721514e-01,1.250492709673111325e+00,5.990687635153778556e-01,5.617070226034123204e-01,1.477174170208039872e+00,-1.177385801578491709e+00,-4.180923358019455471e-01,1.152913857323789593e+00,5.990687635153778556e-01,5.617070226034123204e-01,1.477174170208039872e+00,-1.304851744675398661e+00,2.257692156043251408e-01,1.385409367577646877e+00,1.903147172213045746e+00,1.829224193701901313e-01,1.983023358823940430e-02,-1.344692524579719883e+00,3.121866558771816402e-01,1.104640134486206460e+00,1.795224175843480596e+00,-2.825954467016881244e-01,-1.234403102863074614e-01,-1.345705316625096737e+00,3.406285222044754257e-01,1.096227691887215139e+00,1.803249793329090078e+00,1.585691786651530488e-01,-1.644347903456607085e+00,-1.275605254188112658e+00,3.796637331872877441e-01,8.758416344325814507e-01,1.803249793329090078e+00,1.585691786651530488e-01,-1.644347903456607085e+00
|
||||
2.166666700000000056e-01,-1.226823039999999976e+00,-1.009555999999999995e-02,9.590163200000000332e-01,1.464888843306534350e+00,8.010010647843178455e-02,1.833004244397333227e-01,-1.218012613740126815e+00,-1.029242147278461826e-02,9.413417920245171766e-01,1.464888843306534350e+00,8.010010647843178455e-02,1.833004244397333227e-01,-1.284261609632504131e+00,-1.124205371309324603e-01,9.078839444267480241e-01,1.566260725668014331e+00,8.133307735827795260e-02,-4.251041740248209799e-01,-1.296339648145427459e+00,-1.091383232038832252e-01,4.684468826914207074e-01,1.565773151611309366e+00,4.511393410619212729e-01,-4.269257586269676330e-01,-1.306464988569026486e+00,-1.019342405523360473e-01,5.096738078843057185e-01,1.711123321570175548e+00,7.292965491272417333e-01,-2.469550358834141091e-01,-1.564173600543557363e+00,2.441721302893340440e-02,1.954831083559467886e-01,1.651130292024374668e+00,5.470768707517869034e-01,-3.136085738817778190e-01,-1.625401011682327423e+00,3.957472240677673697e-02,1.847378762852320555e-01,1.573282483388860564e+00,5.406225459873920114e-01,-3.615611817088639768e-01,-1.485177095940406700e+00,-1.459063483753947343e-02,9.219971051511863247e-02,1.573282483388860564e+00,5.406225459873919004e-01,-3.615611817088640323e-01,-1.315962719569284900e+00,5.082444473288706688e-02,8.902632792842020137e-01,1.549033298131473391e+00,-4.997383904897323981e-01,-2.151438953416535405e-01,-1.091161050057817938e+00,-8.049801386074667553e-03,5.184854704497016131e-01,1.551386710811664349e+00,-1.784838202948585417e-01,-2.221275613904255819e-01,-1.125477941132315474e+00,-1.887131228748083200e-03,5.443913610055122199e-01,1.515893016765844648e+00,9.979355561084631010e-02,-3.565683132289045321e-01,-1.173299602763792970e+00,-8.993956173786451375e-03,1.215949609545377563e-01,1.519905527083217134e+00,6.846311739544407027e-02,-3.492468247561100192e-01,-1.219164865001727271e+00,1.377710466523282204e-02,8.323010091751797956e-02,1.779773075453431774e+00,1.473678816313953380e-02,-1.602927609931676933e-01,-1.044732012203667626e+00,-1.295375634971514950e-02,7.891900713187535721e-02,1.779773075453431774e+00,1.473678816313952165e-02,-1.602927609931676378e-01,-1.309999450951649491e+00,-1.970149443586613133e-02,1.019664652302550545e+00,1.450533064124151172e+00,7.652212370108676942e-02,1.497052561791199499e-01,-1.299405505444739983e+00,-1.417269200376878452e-02,1.050437975783969025e+00,1.432278818430493095e+00,7.240513648009619385e-02,1.140573001831946542e-01,-1.296994368830418409e+00,-9.315071677695928309e-03,1.082867649272776012e+00,1.401297653158582346e+00,6.709756698978097678e-02,7.858955302115223918e-02,-1.301769022153157040e+00,-3.738841587156540962e-03,1.117480283759073156e+00,1.370924606760132836e+00,6.174768984027926427e-02,4.955441285207051044e-02,-1.311585720279403899e+00,1.568492637524218636e-03,1.146046991052482422e+00,1.345441462935039967e+00,5.603681728641173032e-02,2.274794799358227648e-02,-1.313370062887749379e+00,-2.025846544531918064e-02,1.061760626839980848e+00,1.325977878575461011e+00,5.016414115371390509e-02,-1.855201178093550656e-03,-1.455144786052302130e+00,3.592742259715966946e-02,1.066258583010454508e+00,1.401007154940016264e+00,2.987492004899753861e-01,-1.141522425021740256e-01,-1.216795024405397108e+00,2.605770287505549190e-03,1.103422164280555506e+00,1.321254563474850041e+00,3.770680204903239380e-02,8.675720011176324018e-04,-1.290445873612917627e+00,-9.445440921514025590e-02,1.458797902332479079e+00,7.082821798573526451e-01,-1.687641052193098595e-02,-4.090870871313471713e-01,-1.361729778877685870e+00,-3.015228302644128999e-01,1.258978239056269821e+00,5.026554450143929653e-01,-8.136404163339634454e-01,7.344051467420757984e-01,-1.358078716275908926e+00,-3.302584769173212420e-01,1.265433241124840347e+00,5.191859477325827532e-01,6.177805366512223451e-01,1.445427515675974162e+00,-1.158323218073706862e+00,-4.235389662814673661e-01,1.185406545500727882e+00,5.191859477325827532e-01,6.177805366512223451e-01,1.445427515675974162e+00,-1.293931692293524005e+00,2.321842220463973261e-01,1.377298253656355609e+00,1.896201035789785161e+00,1.753385817997247798e-01,-1.710699248157621435e-02,-1.328562035230144822e+00,3.180116458387893807e-01,1.095658383164434424e+00,1.789215248084279120e+00,-2.915042224790646563e-01,-1.575719710242452498e-01,-1.328488086719230576e+00,3.464111249746724130e-01,1.087044509772259193e+00,1.811966270614053798e+00,1.523704804856627071e-01,-1.678831146019336140e+00,-1.255297405179272685e+00,3.813470939938404802e-01,8.669754683899079106e-01,1.811966270614053798e+00,1.523704804856627071e-01,-1.678831146019336140e+00
|
||||
2.333333300000000055e-01,-1.218023800000000101e+00,-1.448859000000000084e-02,9.580702399999999619e-01,1.446288957238033746e+00,8.883219147750222311e-02,1.837215638642371862e-01,-1.209304716702050975e+00,-1.501863477770205325e-02,9.403573084681131622e-01,1.446288957238033746e+00,8.883219147750222311e-02,1.837215638642371862e-01,-1.275517580430000075e+00,-1.179180520617677252e-01,9.092755512775757554e-01,1.558946245212924131e+00,5.065337340262535126e-02,-4.280425163960254187e-01,-1.279031210131541529e+00,-1.220492987977519345e-01,4.685557089082966753e-01,1.557492360872484660e+00,4.743693723523693673e-01,-4.335197350382036241e-01,-1.287429996499895868e+00,-1.152189430332787035e-01,5.098087260204466897e-01,1.716371753318044480e+00,7.564696389523694053e-01,-2.426597222938184084e-01,-1.553121522036267743e+00,1.414414302660521594e-02,2.035940637306128953e-01,1.655950234366057261e+00,5.830702220298975558e-01,-3.088599430660916578e-01,-1.614699406307282592e+00,2.931188713080807098e-02,1.951023215628460983e-01,1.589910499724006776e+00,5.781056664123213062e-01,-3.494412950071821844e-01,-1.477184372682687208e+00,-2.189232956594916110e-02,9.698153724475917781e-02,1.589910499724006998e+00,5.781056664123213062e-01,-3.494412950071822399e-01,-1.307642830161534153e+00,4.488386532885040719e-02,8.885903793267971862e-01,1.552623656648383532e+00,-5.027096962008756886e-01,-2.038337344779802551e-01,-1.081655149396010263e+00,-9.967074247931660691e-03,5.159528459201603301e-01,1.554694514389278748e+00,-1.486822234491200767e-01,-2.102046550603326736e-01,-1.114837858119292369e+00,-4.605891863793398766e-03,5.430571514637182462e-01,1.512833265851026843e+00,1.323129335717980470e-01,-3.490499414887673901e-01,-1.175936912811123669e+00,-8.603211010931598873e-03,1.219334865700685278e-01,1.521587831803554058e+00,6.584410431707254929e-02,-3.334497282292678277e-01,-1.222037456159929425e+00,1.347371873615183999e-02,8.344511100761943523e-02,1.785495829234073906e+00,1.043523965156952470e-02,-1.413381153616062313e-01,-1.047111089142925167e+00,-9.938954190461226496e-03,7.990145976033587172e-02,1.785495829234073906e+00,1.043523965156951255e-02,-1.413381153616061758e-01,-1.300864963457606605e+00,-2.305184073975323489e-02,1.019330519953838721e+00,1.430050868876909798e+00,8.410407082409079860e-02,1.469641366749717959e-01,-1.290128300974253239e+00,-1.687310596975825222e-02,1.049930035550223240e+00,1.409504858867876242e+00,7.859495821219193712e-02,1.079948219405488241e-01,-1.287577124647564242e+00,-1.127182087867667840e-02,1.082228851640140155e+00,1.374841940978662969e+00,7.165561511633639080e-02,6.928462122906181575e-02,-1.292217842408213579e+00,-4.731036125117948216e-03,1.116690499156959282e+00,1.340934000768069678e+00,6.477278598339669680e-02,3.765288425132509720e-02,-1.301928462120663710e+00,1.543073898080522116e-03,1.145096605040943016e+00,1.312523371980073295e+00,5.749443462103587255e-02,8.499096627972366202e-03,-1.304071966283700368e+00,-2.327587548605502057e-02,1.061648850860472448e+00,1.290859910357720519e+00,5.008069907494047679e-02,-1.822037810837311145e-02,-1.447017237884131724e+00,3.735889686509095975e-02,1.064454783545631944e+00,1.368882214683730725e+00,2.992656010451075210e-01,-1.372655510697984582e-01,-1.207541400392429853e+00,8.872048378125493157e-04,1.102502839109043453e+00,1.285999475742838793e+00,3.500120802881143134e-02,-1.446720274208262470e-02,-1.282024870281791129e+00,-8.383183529633876641e-02,1.461043462673960569e+00,6.654587942951893931e-01,-8.071262701069455148e-02,-4.204175885498578347e-01,-1.348160520224028769e+00,-3.025909490478115860e-01,1.272212453740466653e+00,3.765192986087884663e-01,-8.066314891877545135e-01,8.312903953733696838e-01,-1.344777111181203022e+00,-3.308077286918137405e-01,1.280762341936162674e+00,4.371069945348408092e-01,6.753812477314298235e-01,1.401396420121528541e+00,-1.140490031957230643e+00,-4.277255456366541031e-01,1.218460602062192422e+00,4.371069945348408092e-01,6.753812477314299345e-01,1.401396420121528541e+00,-1.280785518184718308e+00,2.397643892892510342e-01,1.368139821523850053e+00,1.886694130054817897e+00,1.684761300336784229e-01,-3.566797502253214042e-02,-1.312114508012595548e+00,3.234571601997147661e-01,1.085472811649781821e+00,1.778463221765947955e+00,-3.120574804362098442e-01,-1.750520670135904122e-01,-1.311291220570890426e+00,3.517282944090493468e-01,1.076483937043120953e+00,1.832204476715636243e+00,1.411010276572038369e-01,-1.696547998505280486e+00,-1.233346909511293887e+00,3.821310827251955811e-01,8.573763479308598168e-01,1.832204476715636243e+00,1.411010276572038369e-01,-1.696547998505280486e+00
|
||||
2.500000000000000000e-01,-1.209190009999999926e+00,-1.850175000000000083e-02,9.565580900000000275e-01,1.414820883306207921e+00,1.005716061306585335e-01,1.807131879110435158e-01,-1.200574959442754608e+00,-1.961591025355970824e-02,9.388213807420302537e-01,1.414820883306207921e+00,1.005716061306585335e-01,1.807131879110435158e-01,-1.266962427833571825e+00,-1.234744834696222676e-01,9.115338407156775569e-01,1.547713446028566642e+00,1.576447775530575787e-02,-4.361401595760915351e-01,-1.261053657899127600e+00,-1.374666445471449117e-01,4.700910148714121384e-01,1.544584375268021281e+00,4.938013227972968822e-01,-4.482022763394485354e-01,-1.267795971592533544e+00,-1.307622505021484027e-01,5.112444741479150734e-01,1.714879172204847979e+00,7.803136441185952732e-01,-2.493349177178466602e-01,-1.539830973551305382e+00,1.559556656092753180e-03,2.119417657777319941e-01,1.652311612319515177e+00,6.053157468233499872e-01,-3.167686506820674430e-01,-1.601490554479412465e+00,1.712004305275481933e-02,2.048725847488977736e-01,1.606900338680763429e+00,6.021141425498475197e-01,-3.446498173397042342e-01,-1.465986204009703364e+00,-3.257923583029002923e-02,1.032433700624395267e-01,1.606900338680763429e+00,6.021141425498474087e-01,-3.446498173397042897e-01,-1.299218926281785480e+00,3.856213511668572791e-02,8.856876638226803822e-01,1.556273689780229397e+00,-5.052047424559383826e-01,-1.914559581650542852e-01,-1.072281643361769010e+00,-1.192533032005541060e-02,5.121153439479217973e-01,1.557999173288213024e+00,-1.179073713614464530e-01,-1.969796324167384649e-01,-1.104260792256283708e+00,-7.390314813545878492e-03,5.403890902381689454e-01,1.509409960709083842e+00,1.656021106314342906e-01,-3.401826075003023253e-01,-1.178977483923770109e+00,-8.638601285418583825e-03,1.214498679812783255e-01,1.523280499058184523e+00,6.326226272272041096e-02,-3.160366983088896964e-01,-1.225338284492033525e+00,1.266829715465376052e-02,8.284030663848312992e-02,1.790020899521484576e+00,6.522634227927626670e-03,-1.216269659579536089e-01,-1.049971040485069285e+00,-7.285945382505737422e-03,7.999381236153550734e-02,1.790020899521484576e+00,6.522634227927614527e-03,-1.216269659579535534e-01,-1.291669801618431812e+00,-2.503239637595002995e-02,1.018551994206436273e+00,1.397905626935856960e+00,9.382741006446043697e-02,1.392849511415179820e-01,-1.280747634522958478e+00,-1.789377117437374390e-02,1.048875637330217714e+00,1.376810593010334927e+00,8.602441797840620907e-02,9.541010845363104287e-02,-1.278004228252748620e+00,-1.125423795958300360e-02,1.080961383649033936e+00,1.341929425604250659e+00,7.661813807546068167e-02,5.189407991679730742e-02,-1.282436095019651612e+00,-3.516598550591679140e-03,1.115202169011749511e+00,1.308031557857039617e+00,6.757361146986420875e-02,1.638851738546027309e-02,-1.291962250914301391e+00,3.876230679963482695e-03,1.143400712948259734e+00,1.279693446095570231e+00,5.819110794104399159e-02,-1.629559518007734145e-02,-1.294772301316617691e+00,-2.362279332100096149e-02,1.060817292453216654e+00,1.258128839501704954e+00,4.877545596011262363e-02,-4.622461232421409133e-02,-1.437151709067265193e+00,4.329846716535953877e-02,1.061435552773376978e+00,1.341087964429694690e+00,2.979080051749308233e-01,-1.676291770107885271e-01,-1.197885502557862081e+00,-8.618817797491386268e-04,1.101137050202496859e+00,1.253940486856761849e+00,3.212333541853389096e-02,-4.151733060799614461e-02,-1.274258359335206814e+00,-7.164219603959964822e-02,1.461993649936108586e+00,6.255895521057516229e-01,-1.536008147995819861e-01,-4.271633536707643564e-01,-1.333773553624712838e+00,-3.017816510657262974e-01,1.284848520546636452e+00,2.479512980088643403e-01,-7.925139139898029761e-01,9.261069642637276278e-01,-1.330894451841225123e+00,-3.293374731666129929e-01,1.295484409773812073e+00,3.424470240681734001e-01,7.302685626167706445e-01,1.342722660945435686e+00,-1.123188041148870830e+00,-4.293193013723066720e-01,1.252247137004995015e+00,3.424470240681734001e-01,7.302685626167706445e-01,1.342722660945435686e+00,-1.264499435590546783e+00,2.485966076383275547e-01,1.358557625626914067e+00,1.873594190584862096e+00,1.744889844398236078e-01,-6.675440809907932926e-02,-1.295339238071778976e+00,3.296237779839272797e-01,1.075061367757155217e+00,1.760883999961456503e+00,-3.277186842649085219e-01,-2.041041424311132169e-01,-1.293428904840825178e+00,3.576686599102613107e-01,1.065544544596412679e+00,1.847185714090822550e+00,1.236879525305414618e-01,-1.729150584160219939e+00,-1.211875429232260437e+00,3.810795195075052932e-01,8.468924395536753247e-01,1.847185714090822328e+00,1.236879525305414618e-01,-1.729150584160219939e+00
|
||||
2.666666699999999945e-01,-1.200629629999999892e+00,-2.147131999999999860e-02,9.546590099999999746e-01,1.370844930364651049e+00,1.161302514004811520e-01,1.816798486198262230e-01,-1.192137684849838619e+00,-2.334901045358084987e-02,9.369273307054876154e-01,1.370844930364651049e+00,1.161302514004811520e-01,1.816798486198262230e-01,-1.258109425144388283e+00,-1.287154555711047810e-01,9.149239046924310115e-01,1.532307066040713872e+00,-2.501954864712845408e-02,-4.485291921623624778e-01,-1.241525564729091702e+00,-1.555808853370559408e-01,4.735558665159683156e-01,1.526746242359679817e+00,5.083378908473149549e-01,-4.709434591445586515e-01,-1.246715975720096958e+00,-1.487574450941683835e-01,5.145052937145471184e-01,1.705653456099325060e+00,7.999475134897052753e-01,-2.675250796003300069e-01,-1.523316468013222735e+00,-1.361730921744755407e-02,2.206966391168986297e-01,1.640590038807416606e+00,6.169151806237399560e-01,-3.362464823462744112e-01,-1.584866781656940615e+00,2.692893499215316677e-03,2.144083837745776322e-01,1.613450734862838187e+00,6.149838569191439230e-01,-3.528957537969500957e-01,-1.451014311617332631e+00,-4.765220516070235030e-02,1.109248976489276423e-01,1.613450734862838409e+00,6.149838569191439230e-01,-3.528957537969501512e-01,-1.291507296856717391e+00,3.178549527506126238e-02,8.819330081060732240e-01,1.561842002342813451e+00,-5.040801982949240090e-01,-1.849127919323118319e-01,-1.064997327886449296e+00,-1.459177156167826284e-02,5.069091180616865921e-01,1.562924060756151645e+00,-8.978924120459053082e-02,-1.885319295405300521e-01,-1.095879514952395217e+00,-1.072309951986301357e-02,5.361744646493207256e-01,1.508285584369460919e+00,1.958919615776135159e-01,-3.346389924966632345e-01,-1.182693069531377761e+00,-8.682091182819299049e-03,1.195769908158988981e-01,1.527632905299393551e+00,5.579661482378432680e-02,-3.017936741542606716e-01,-1.229020715382861173e+00,1.204921918936156626e-02,8.061588228879520979e-02,1.796260512545914345e+00,-2.737803593737538760e-03,-1.051883016381613828e-01,-1.053329388751042206e+00,-5.011133584932861776e-03,7.941309175558654287e-02,1.796260512545914345e+00,-2.737803593737551337e-03,-1.051883016381613273e-01,-1.282615437923277035e+00,-2.561278903077929270e-02,1.017507916591117834e+00,1.354282499092829495e+00,1.058430261716878512e-01,1.324384246624651096e-01,-1.271492505269208095e+00,-1.715457230895834836e-02,1.047416469946188977e+00,1.334304293353016924e+00,9.412700062647988419e-02,8.035539857734017022e-02,-1.268527263267854588e+00,-9.187938027830858806e-03,1.079178997942628504e+00,1.302798054263957228e+00,8.069885932451228983e-02,2.875905840226973195e-02,-1.272703506110616667e+00,-5.462118847098830499e-05,1.113107303804959480e+00,1.272672532339119700e+00,6.827492141911485624e-02,-1.330719283929307495e-02,-1.281992410255744286e+00,8.580943954427381476e-03,1.141030605666574216e+00,1.247634528722868508e+00,5.571025443069006766e-02,-5.201765687698018531e-02,-1.285656917633799079e+00,-2.121928674771067502e-02,1.059284975901645165e+00,1.228683508222035758e+00,4.333669998571437754e-02,-8.746637768315464190e-02,-1.423215291193326015e+00,5.922518252995510879e-02,1.055064279600212540e+00,1.338798499758981242e+00,2.968260703276990875e-01,-1.742438367075212213e-01,-1.188225111583759652e+00,-2.857141980369584666e-03,1.099804008970018732e+00,1.226048866525748515e+00,2.643407879988065798e-02,-8.206278766102312328e-02,-1.268226763518921496e+00,-5.805290067482865579e-02,1.461787931504344051e+00,5.871136166009605084e-01,-2.307770383174527762e-01,-4.190879495886474237e-01,-1.318195647281911187e+00,-2.995368593611234531e-01,1.297242398808589270e+00,1.292483916248472475e-01,-7.694787726082165102e-01,1.013126864738404631e+00,-1.315880801473962469e+00,-3.263093430613283608e-01,1.309836457082070194e+00,2.439161268295272911e-01,7.801825080664140932e-01,1.278533864961940880e+00,-1.105911234129969944e+00,-4.278467463322510600e-01,1.285123762026421534e+00,2.439161268295272911e-01,7.801825080664140932e-01,1.278533864961940880e+00,-1.245395747660382302e+00,2.583220371454645892e-01,1.348948299580586596e+00,1.853701305844207115e+00,1.759013405837162314e-01,-3.439619520036563821e-02,-1.279701004413516419e+00,3.326412001677108154e-01,1.064015964904040379e+00,1.736211344567124115e+00,-3.524843627687506697e-01,-1.664190209399288300e-01,-1.278415186251196101e+00,3.604620475287751979e-01,1.053765022403277074e+00,1.871076053045181098e+00,9.938465332146356745e-02,-1.697037398389342755e+00,-1.193124017442582341e+00,3.803475332781258711e-01,8.361925867633004383e-01,1.871076053045181098e+00,9.938465332146356745e-02,-1.697037398389342755e+00
|
||||
2.833333299999999944e-01,-1.192177690000000068e+00,-2.437517999999999976e-02,9.529119999999999813e-01,1.322136669279164289e+00,1.320155336940564417e-01,1.778031157484134817e-01,-1.183804448125926667e+00,-2.712704345504469983e-02,9.352380821400768651e-01,1.322136669279164289e+00,1.320155336940564417e-01,1.778031157484134817e-01,-1.249681670061438599e+00,-1.335983278187231615e-01,9.190341854940283772e-01,1.514203029472827922e+00,-7.272540915705100195e-02,-4.625591629328011933e-01,-1.220627859002390014e+00,-1.760824667543489097e-01,4.788960016075134996e-01,1.505892688220593856e+00,5.159988926320068225e-01,-4.987334454357084668e-01,-1.224496359048210303e+00,-1.689371461025524768e-01,5.195693577283102549e-01,1.689956606198078859e+00,8.131141969102354539e-01,-2.943551863935366941e-01,-1.503559354680801707e+00,-3.147326224857832644e-02,2.291873002894869726e-01,1.623474407573761047e+00,6.196520031565041498e-01,-3.629591404541459010e-01,-1.564873058438971620e+00,-1.420649474367777221e-02,2.231462367294823335e-01,1.598297029439715411e+00,6.176594618189363839e-01,-3.783789635882369717e-01,-1.432607764716936627e+00,-6.787493742414793529e-02,1.192928066832119188e-01,1.598297029439715411e+00,6.176594618189363839e-01,-3.783789635882370272e-01,-1.283680712982931515e+00,2.497041807094372776e-02,8.782372466087502438e-01,1.568087060945780875e+00,-4.982825904856973964e-01,-1.828602445695187151e-01,-1.059339216411921525e+00,-1.772979600912319778e-02,5.010236807294988770e-01,1.568411647783547913e+00,-6.377553700179797169e-02,-1.840030716222284257e-01,-1.089234877656216405e+00,-1.438029432644346087e-02,5.311409409302983997e-01,1.508447293760343477e+00,2.236631217867154076e-01,-3.319042774924824135e-01,-1.186938646208665515e+00,-8.752513772225649705e-03,1.169954159336594746e-01,1.533433455510222698e+00,4.486165186145962130e-02,-2.905277351492532301e-01,-1.233015032432801528e+00,1.156391569492458242e-02,7.752117998437874080e-02,1.802621028105935164e+00,-1.551740823132655676e-02,-9.221775975136480008e-02,-1.057115416612151693e+00,-3.205680231656573079e-03,7.858362330615650815e-02,1.802621028105935164e+00,-1.551740823132656891e-02,-9.221775975136474457e-02,-1.273716250102612024e+00,-2.550694506278646662e-02,1.016465063266059898e+00,1.306605760976420560e+00,1.176433674845502736e-01,1.223734106530062482e-01,-1.262380938646058715e+00,-1.566452303077126712e-02,1.045866296908059656e+00,1.288718424618742420e+00,1.015418639964294767e-01,6.381167097032505731e-02,-1.259179886284867100e+00,-6.301009987776561710e-03,1.077222361708223941e+00,1.262378804246076180e+00,8.382321696010922030e-02,5.828627986726828136e-03,-1.263080552846096882e+00,4.242904525380751524e-03,1.110772832791156350e+00,1.237828047343381588e+00,6.796850799221661188e-02,-4.144789390188614864e-02,-1.272113464214623679e+00,1.406927671612407359e-02,1.138385082802260140e+00,1.217628775765515092e+00,5.230696020927730339e-02,-8.497417101220207380e-02,-1.276616777152294713e+00,-1.770452019819956230e-02,1.057430908592721819e+00,1.202490130195916773e+00,3.714875335919135685e-02,-1.248615927564319522e-01,-1.409118724706969861e+00,6.696752619971776954e-02,1.049953071424436724e+00,1.313352118673680069e+00,2.854565869611572215e-01,-2.132328570184680860e-01,-1.178629787496983550e+00,-4.184442284718127569e-03,1.098342505241415079e+00,1.201144329004934841e+00,2.247027366938776638e-02,-1.196082040999817964e-01,-1.261702675985121758e+00,-4.437246929813614543e-02,1.460835847498391793e+00,5.496842320634574008e-01,-3.034429050029911479e-01,-4.058151452905743306e-01,-1.302599299968190794e+00,-2.958480042229655882e-01,1.309263602484631361e+00,2.303101178743910057e-02,-7.413555394393068765e-01,1.091506247350875869e+00,-1.300856836275951833e+00,-3.217638231769209822e-01,1.323618700764169098e+00,1.425572723085093141e-01,8.225936782873425335e-01,1.211193036490655794e+00,-1.089479969551351290e+00,-4.231384506673269152e-01,1.316492279122782882e+00,1.425572723085093141e-01,8.225936782873425335e-01,1.211193036490655572e+00,-1.227053190869376698e+00,2.678359765253505165e-01,1.339706005443210612e+00,1.832867587043668145e+00,1.891717933746979996e-01,-5.987004461871217598e-02,-1.263858193191726764e+00,3.372636912249199481e-01,1.053853231776240573e+00,1.711479821739281704e+00,-3.495389671546491606e-01,-1.814976968052352535e-01,-1.261992600588847102e+00,3.648110607296700114e-01,1.042972207192268908e+00,1.867287894490946565e+00,7.628130581838278579e-02,-1.720952669601667484e+00,-1.177822678004887713e+00,3.778214107714578662e-01,8.244454681086058612e-01,1.867287894490946565e+00,7.628130581838278579e-02,-1.720952669601667484e+00
|
||||
2.999999999999999889e-01,-1.183742340000000004e+00,-2.688646000000000091e-02,9.515281700000000065e-01,1.275386339707627048e+00,1.475017395104697704e-01,1.725893730165024009e-01,-1.175491510675131357e+00,-3.047881280698209322e-02,9.339477797529573966e-01,1.275386339707627048e+00,1.475017395104697704e-01,1.725893730165024009e-01,-1.241325933902459600e+00,-1.376822711647718855e-01,9.233762961786216028e-01,1.490462982870589093e+00,-1.249973533068623882e-01,-4.818202152287101026e-01,-1.199829453132760460e+00,-1.995421490947875132e-01,4.860702896477277490e-01,1.479222319780930217e+00,5.141995351224601940e-01,-5.369920336835224406e-01,-1.202637164156735938e+00,-1.916973294515783299e-01,5.264057426370578607e-01,1.662780113719461328e+00,8.176338761125484522e-01,-3.376968601049623597e-01,-1.481366413080766442e+00,-5.239365626581216073e-02,2.365804390328735685e-01,1.596786619338801616e+00,6.093256081838031024e-01,-4.034828513183334464e-01,-1.542219710159560719e+00,-3.374316894751891449e-02,2.300198342605137281e-01,1.577609752997530146e+00,6.075658694882244415e-01,-4.152022962020905927e-01,-1.411072836267461383e+00,-9.270710797061465502e-02,1.276299130831388129e-01,1.577609752997530146e+00,6.075658694882244415e-01,-4.152022962020906482e-01,-1.275848986387826400e+00,1.869395681129627784e-02,8.752202323228857050e-01,1.574348616047328564e+00,-4.900967775221088951e-01,-1.862519219979502649e-01,-1.054664097380931809e+00,-2.139185620014300016e-02,4.955498033918189771e-01,1.573933063181232272e+00,-4.070381744730552226e-02,-1.847074562266060593e-01,-1.083695589433477435e+00,-1.837204770187227804e-02,5.263790001393580109e-01,1.509437196125904546e+00,2.481668484271059572e-01,-3.336566223190033376e-01,-1.190818463870546573e+00,-8.859795857291944202e-03,1.146407082411627365e-01,1.539541671528131594e+00,3.458941637985482598e-02,-2.850182664949320599e-01,-1.236541591120433603e+00,1.133151603431747055e-02,7.469433749067652673e-02,1.808556103293841089e+00,-2.745289662146318047e-02,-8.560475039905929284e-02,-1.060572705526144244e+00,-2.262471631096947544e-03,7.787229242349806568e-02,1.808556103293841089e+00,-2.745289662146319434e-02,-8.560475039905923733e-02,-1.264823114637465773e+00,-2.504099118622131817e-02,1.015647681502430233e+00,1.260980249605882175e+00,1.289361382999110461e-01,1.123197746357957189e-01,-1.253268398800050587e+00,-1.390313418582147381e-02,1.044496368817617871e+00,1.245328962205094037e+00,1.083945499687401365e-01,4.870708065162315109e-02,-1.249823489511402874e+00,-3.231573030006623659e-03,1.075405508243591379e+00,1.224376418691703217e+00,8.643716981993671000e-02,-1.427583641673044884e-02,-1.253442543594357472e+00,8.609871854796292620e-03,1.108552516563306334e+00,1.205611542377077905e+00,6.728276773897172436e-02,-6.566206568403590293e-02,-1.262218823153425262e+00,1.950269555397159127e-02,1.135845951581630153e+00,1.190438608106689777e+00,4.871582203912821346e-02,-1.130183031254144016e-01,-1.267492502871361504e+00,-1.398343634955879350e-02,1.055634019419367409e+00,1.179268503795040557e+00,3.099876329448227399e-02,-1.564622714506300472e-01,-1.394901715160261402e+00,7.038638353695741978e-02,1.045812309766685821e+00,1.286270108977539683e+00,2.741618587175181920e-01,-2.398162655208611049e-01,-1.169045283568546312e+00,-4.925505327486149471e-03,1.097023195659948991e+00,1.178738858031789238e+00,1.977313603175448117e-02,-1.520257268183691501e-01,-1.254403178334706492e+00,-3.145681842697329450e-02,1.459604940598429046e+00,5.144330902140733519e-01,-3.669021016209549901e-01,-3.931635754585016129e-01,-1.288414525158303237e+00,-2.910206449502443782e-01,1.320477401177596599e+00,-6.856508741582031941e-02,-7.106225308886678915e-01,1.159994807189499433e+00,-1.287212366715508205e+00,-3.160599109485292546e-01,1.336362131950691312e+00,4.248460796570009690e-02,8.568552881509852170e-01,1.144303573805325547e+00,-1.075110128114747265e+00,-4.157634878832060510e-01,1.345285018115812470e+00,4.248460796570009690e-02,8.568552881509852170e-01,1.144303573805325547e+00,-1.209844754965285540e+00,2.765561714019080797e-01,1.331192775667993988e+00,1.809364116508935805e+00,1.890378169572277667e-01,-2.838019299805083495e-02,-1.249253268560007735e+00,3.380029871509826478e-01,1.043863901609003886e+00,1.687894489979441914e+00,-3.478571412518469685e-01,-1.365315824431804215e-01,-1.248458757135389785e+00,3.653576614633953223e-01,1.032382384146310672e+00,1.864998288673074045e+00,5.416944801337817555e-02,-1.684194638322117354e+00,-1.165870417386035474e+00,3.767126160004935498e-01,8.131610076442810087e-01,1.864998288673074045e+00,5.416944801337817555e-02,-1.684194638322117354e+00
|
||||
3.166666699999999834e-01,-1.175073150000000011e+00,-2.969194000000000000e-02,9.509344400000000475e-01,1.234186490688061744e+00,1.570827775977221286e-01,1.586572033407552540e-01,-1.166900850512589738e+00,-3.407836752531906432e-02,9.334981537231160642e-01,1.234186490688061744e+00,1.570827775977221286e-01,1.586572033407552540e-01,-1.233580629356591851e+00,-1.411171264998954122e-01,9.275803668897375509e-01,1.463284000349570846e+00,-1.799461172872250658e-01,-5.011126749217670318e-01,-1.179964242629131466e+00,-2.247856138962828765e-01,4.949505172780467865e-01,1.450174860075514660e+00,5.004520479192735571e-01,-5.785206961953462956e-01,-1.182117863577012429e+00,-2.159128058593404453e-01,5.348826074952417464e-01,1.627536670438060495e+00,8.103001005831818038e-01,-3.896376970900630177e-01,-1.457692729158788225e+00,-7.666469278908005780e-02,2.420299642699898501e-01,1.564464248181864692e+00,5.848647059318289321e-01,-4.494568661653154940e-01,-1.517926493926274212e+00,-5.658035193842514410e-02,2.341230804287534328e-01,1.561247087205245965e+00,5.845238378320181116e-01,-4.514195767639908596e-01,-1.386917661542820923e+00,-1.213001009188745954e-01,1.350878113326860475e-01,1.561247087205245965e+00,5.845238378320181116e-01,-4.514195767639909151e-01,-1.267050234651485141e+00,1.337610205052443962e-02,8.730276385575986842e-01,1.578890033895346656e+00,-4.820455386207297965e-01,-1.909812954869556101e-01,-1.049141886510328803e+00,-2.511797107790209732e-02,4.910330656691916373e-01,1.577969021547588779e+00,-1.900034583343116965e-02,-1.873653263371898303e-01,-1.077339937639968159e+00,-2.231798406628754394e-02,5.225075210647305290e-01,1.509180430176039422e+00,2.709980796554314897e-01,-3.376311788387815205e-01,-1.193301922770970913e+00,-9.378878140062187757e-03,1.132647914770620878e-01,1.543956968722968170e+00,2.695277194518731073e-02,-2.825655715407250357e-01,-1.238728096975039383e+00,1.079103531744566788e-02,7.297033446561722314e-02,1.812491821206745124e+00,-3.619460143862271440e-02,-8.256085177408943598e-02,-1.062752727223230886e+00,-2.257864345663744207e-03,7.769686107561377120e-02,1.812491821206745124e+00,-3.619460143862272827e-02,-8.256085177408938047e-02,-1.255951596635494827e+00,-2.454579174263799707e-02,1.015129483065700278e+00,1.221111326205061021e+00,1.354077985829406638e-01,9.700945899960011776e-02,-1.244213056352352131e+00,-1.238525805963951870e-02,1.043487025941499002e+00,1.207651495043005951e+00,1.116606953193069324e-01,3.197199944026396512e-02,-1.240572554547283879e+00,-6.122908555735596253e-04,1.073970836817085051e+00,1.191333274513761031e+00,8.676210699922959346e-02,-3.244923786371851221e-02,-1.243965671581426902e+00,1.234707403461129255e-02,1.106721144489718922e+00,1.177404321048163505e+00,6.541526480990202119e-02,-8.505828716163721381e-02,-1.252536609877235474e+00,2.414555246920779136e-02,1.133701914225965002e+00,1.166399008990592234e+00,4.499632797788735705e-02,-1.335954452284674188e-01,-1.258385827753848440e+00,-1.086627338371848328e-02,1.054185853574439724e+00,1.158499505207980063e+00,2.570591379264030446e-02,-1.781702552731887212e-01,-1.383786480861688650e+00,7.802223859670896766e-02,1.041748727906702365e+00,1.268284795159302369e+00,2.664549698939499001e-01,-2.700587341047765433e-01,-1.159597484887032071e+00,-4.920707856064323454e-03,1.095942484690498597e+00,1.158203941170717899e+00,1.801448657851413906e-02,-1.748613792619480023e-01,-1.246289083520433216e+00,-1.997588201931674301e-02,1.458462786462981109e+00,4.816345629338603662e-01,-4.171686265882643685e-01,-3.874613186169260648e-01,-1.277428006330052490e+00,-2.856145257216254896e-01,1.330583537029355723e+00,-1.442981771615408082e-01,-6.775397092307954283e-01,1.218003097590234285e+00,-1.276681424876200843e+00,-3.097774469743934667e-01,1.347797791327856265e+00,-5.155916965212177516e-02,8.854364979817959114e-01,1.081867496829582498e+00,-1.064305598466316338e+00,-4.066213229752266289e-01,1.370722729896862946e+00,-5.155916965212177516e-02,8.854364979817959114e-01,1.081867496829582498e+00,-1.195033921713610781e+00,2.842142897960235892e-01,1.323598458867703220e+00,1.786590819549272124e+00,1.901429138172009148e-01,-5.310845348616154843e-02,-1.233824405168907123e+00,3.400379683543669485e-01,1.035040597628450021e+00,1.669029803264264089e+00,-3.233810840335603065e-01,-1.456054083118150655e-01,-1.232925552014498605e+00,3.672138004434503111e-01,1.023149386098042068e+00,1.840155592733682122e+00,3.683564274785115777e-02,-1.700612366395222841e+00,-1.156088944421685527e+00,3.742220234898839260e-01,8.016662009261235067e-01,1.840155592733682122e+00,3.683564274785115084e-02,-1.700612366395222841e+00
|
||||
3.333333299999999833e-01,-1.165929339999999925e+00,-3.283549999999999663e-02,9.511947400000000385e-01,1.205446615694415469e+00,1.596302260743506785e-01,1.399438278692591575e-01,-1.157794003918882764e+00,-3.783145655007207064e-02,9.339057831351883499e-01,1.205446615694415469e+00,1.596302260743506785e-01,1.399438278692591575e-01,-1.225978243286633962e+00,-1.440407835000713788e-01,9.309062163036043724e-01,1.434997313391418672e+00,-2.353231685177849253e-01,-5.131479079762788498e-01,-1.160346099648649654e+00,-2.500207982949308461e-01,5.047078909040896288e-01,1.422150146882138699e+00,4.757810978215680220e-01,-6.134792563597187831e-01,-1.162297235556490893e+00,-2.398954501896471136e-01,5.441757197240549848e-01,1.589551682012585454e+00,7.914545641556302025e-01,-4.379738425898094256e-01,-1.433018060733732835e+00,-1.043021026837847587e-01,2.451457996398498373e-01,1.531625990176767260e+00,5.511361139782602336e-01,-4.891616961945359776e-01,-1.492643249386703452e+00,-8.325043751232688582e-02,2.353646826711493778e-01,1.545720629353137587e+00,5.528453220519836675e-01,-4.805699536490393164e-01,-1.360866033892572879e+00,-1.532083654534069916e-01,1.410216999416282757e-01,1.545720629353137587e+00,5.528453220519836675e-01,-4.805699536490393720e-01,-1.257168494834046912e+00,9.296054387596328072e-03,8.719201614259590727e-01,1.580406278957425137e+00,-4.758059902457248969e-01,-1.910819785815721095e-01,-1.041952765317639251e+00,-2.801623750425109860e-02,4.880250794293773953e-01,1.579338820109603247e+00,1.134000997735200907e-03,-1.866702968614743774e-01,-1.069345700902994967e+00,-2.544185864681637599e-02,5.200841171554235753e-01,1.506359901467174245e+00,2.918596458767135360e-01,-3.390398021784983285e-01,-1.193694758412459089e+00,-1.064539592684817480e-02,1.133746498872728048e-01,1.544938222822902718e+00,2.599650876172327971e-02,-2.787302461019417477e-01,-1.239149492905203154e+00,9.378738804239778251e-03,7.303971319444652055e-02,1.813883949717778998e+00,-3.753934933113878963e-02,-7.832798078412947507e-02,-1.063126858738083547e+00,-2.922344280378795164e-03,7.800561807798002401e-02,1.813883949717778998e+00,-3.753934933113880351e-02,-7.832798078412941956e-02,-1.246822786126371430e+00,-2.472083981342996020e-02,1.015063450571928705e+00,1.192806365009696057e+00,1.359333326820926502e-01,7.814720452232649939e-02,-1.234951079051680001e+00,-1.194958229438299047e-02,1.043095273051774186e+00,1.180097178519707635e+00,1.100744034506696972e-01,1.297977056241961941e-02,-1.231183419873451035e+00,5.915141527354783602e-04,1.073255552509084776e+00,1.165272841662341685e+00,8.315514798028458832e-02,-5.156045488733775745e-02,-1.234431898579398723e+00,1.445140171089341272e-02,1.105649858253537454e+00,1.152906154748840617e+00,6.022483028913666603e-02,-1.042728061729162881e-01,-1.242863846179260490e+00,2.706314914521146947e-02,1.132304641884773977e+00,1.143304007192264660e+00,3.840214498830559625e-02,-1.529190473872352185e-01,-1.249105651195590028e+00,-9.638384885868746255e-03,1.053584709310784850e+00,1.136575725745597731e+00,1.786862032615876145e-02,-1.976098061547529317e-01,-1.373883826558642385e+00,8.285820838041899061e-02,1.038632452523127192e+00,1.248063714657213330e+00,2.586371442657193764e-01,-2.971856009551041011e-01,-1.150305051552151792e+00,-5.125500065459615007e-03,1.095688195984376723e+00,1.136317244035929930e+00,1.120225394761687442e-02,-1.945439528515135463e-01,-1.238553304275423761e+00,-9.663177332977786194e-03,1.458007510369429216e+00,4.611522370136099669e-01,-4.651181537904442997e-01,-3.967842167293834654e-01,-1.269920024276351311e+00,-2.791228371406989095e-01,1.338448969937791055e+00,-2.169056207364294386e-01,-6.509285449821484715e-01,1.267492562402087630e+00,-1.269869759513700069e+00,-3.025101164198750192e-01,1.356718270410431026e+00,-1.492632448897907582e-01,9.003708579658236122e-01,1.010454236783865145e+00,-1.058402459114215821e+00,-3.970536088407334296e-01,1.393472721476394005e+00,-1.492632448897907582e-01,9.003708579658236122e-01,1.010454236783865145e+00,-1.181071469572588128e+00,2.903166778372662238e-01,1.316391606354902377e+00,1.766481195711087526e+00,1.920738823387369010e-01,-8.100396076938151668e-02,-1.219514064781779927e+00,3.414135072638834201e-01,1.026912928601976027e+00,1.652625431283158752e+00,-3.006141439914401525e-01,-1.605978830995923312e-01,-1.218372802296408874e+00,3.684246063792130377e-01,1.014672310034702818e+00,1.817179572935669229e+00,2.151805158355499237e-02,-1.721311084516421674e+00,-1.146972389744413512e+00,3.712880975817585694e-01,7.912857341710741732e-01,1.817179572935669229e+00,2.151805158355499237e-02,-1.721311084516421674e+00
|
||||
3.499999999999999778e-01,-1.155674910000000111e+00,-3.612582999999999767e-02,9.517704500000000456e-01,1.176165177687862551e+00,1.525581142446172378e-01,1.044774413206763924e-01,-1.147524207647617311e+00,-4.185181367544113518e-02,9.347166977270339183e-01,1.176165177687862551e+00,1.525581142446172378e-01,1.044774413206763924e-01,-1.218939443080637286e+00,-1.459561950926452356e-01,9.339098840587096717e-01,1.399960406525252443e+00,-2.903233270073974359e-01,-5.268154825529085539e-01,-1.143641111126422194e+00,-2.770902736097450858e-01,5.163320950922793973e-01,1.390215064338806927e+00,4.347820386750462229e-01,-6.529103988571006711e-01,-1.145811448068441596e+00,-2.651438869964966027e-01,5.551801964232011555e-01,1.542164624858193722e+00,7.562623837793739368e-01,-4.961011507949921739e-01,-1.408317796690778501e+00,-1.369147245425822723e-01,2.457582951178890474e-01,1.491756646047247559e+00,4.997699161551586999e-01,-5.348727286170766870e-01,-1.467077938633218448e+00,-1.149603811320445701e-01,2.331385288020890734e-01,1.582185796863274652e+00,5.111864293384198454e-01,-4.794638122607620678e-01,-1.331836212506255279e+00,-1.864527727056008444e-01,1.450564190590122038e-01,1.582185796863274652e+00,5.111864293384198454e-01,-4.794638122607621233e-01,-1.244755651714960276e+00,6.555413062974996263e-03,8.703637979121652268e-01,1.579664909411514273e+00,-4.774200751823031164e-01,-1.882525550565788408e-01,-1.029898645727999273e+00,-3.038804388789827921e-02,4.857241031394531339e-01,1.578676536510950301e+00,2.895995122739450367e-02,-1.839492689916372437e-01,-1.056018110520025699e+00,-2.812268278498036150e-02,5.185751958079943824e-01,1.498891930893176516e+00,3.207312685113404283e-01,-3.412044557104247366e-01,-1.192347411204392138e+00,-1.215608803916334163e-02,1.157680411977604629e-01,1.541667957259161170e+00,3.763323694982369239e-02,-2.751734830091843165e-01,-1.238359336279942990e+00,7.702136433955560774e-03,7.598664291708129293e-02,1.813293848785490825e+00,-2.558544485232835952e-02,-7.442526195337828554e-02,-1.062243460601662193e+00,-3.916342962544828304e-03,7.884214043661318116e-02,1.813293848785490825e+00,-2.558544485232837340e-02,-7.442526195337823003e-02,-1.236919098220818025e+00,-2.374176108099050608e-02,1.014498643371194442e+00,1.165554456582962528e+00,1.294255074595198340e-01,4.892101978589597638e-02,-1.224943508713669083e+00,-1.054297076851708204e-02,1.042286983161943903e+00,1.154985141876060828e+00,1.043470923036820402e-01,-9.709293076840153081e-03,-1.221091276400731340e+00,2.672446322975675914e-03,1.072147112235232846e+00,1.142870332077368545e+00,7.848210438617507501e-02,-6.783597872802374362e-02,-1.224240891109503293e+00,1.730571643617986183e-02,1.104209256014864859e+00,1.132859610216436996e+00,5.661938118609134707e-02,-1.153579825291862898e-01,-1.232583045877532646e+00,3.052765580161155567e-02,1.130595544809392283e+00,1.125124330283303831e+00,3.592897116134267238e-02,-1.592504790010063065e-01,-1.239037168824058677e+00,-7.409602072376238191e-03,1.052482058858059455e+00,1.119733347339837648e+00,1.654158436916793040e-02,-1.995999499823301604e-01,-1.366967893331731077e+00,9.084062470548992518e-02,1.035879661272669283e+00,1.238835742203125978e+00,2.634180251924954086e-01,-3.066142572207151695e-01,-1.140040438986822169e+00,-3.060057442775682146e-03,1.094416053987682380e+00,1.119293069189744472e+00,1.175905305249265800e-02,-1.972760462459020869e-01,-1.227661583907432075e+00,-6.710853872646596607e-04,1.456826396170946891e+00,4.472486601356152613e-01,-5.099761484946551127e-01,-4.351638122723336388e-01,-1.266974836432839258e+00,-2.719580875683360044e-01,1.343935056374954584e+00,-2.917696109728724618e-01,-6.203922945550068846e-01,1.308296082858077858e+00,-1.267935690896905276e+00,-2.944768548404194108e-01,1.363240925369454182e+00,-2.574856495426953717e-01,9.102807746363588137e-01,9.216283823851342261e-01,-1.058988762565892250e+00,-3.877551694021452722e-01,1.414700792684646213e+00,-2.574856495426953717e-01,9.102807746363588137e-01,9.216283823851342261e-01,-1.169963291932886840e+00,2.967928053675265576e-01,1.310084173552989117e+00,1.741879081835624232e+00,1.793871003905756212e-01,-1.032012135882097725e-01,-1.204541197280163622e+00,3.412060065079353111e-01,1.019019816402015444e+00,1.637608611699505223e+00,-2.701414263099099489e-01,-1.668847791079869636e-01,-1.203517986715549881e+00,3.680911724853292433e-01,1.006494817843269329e+00,1.786593783399060831e+00,7.343469378916433858e-03,-1.732267485511793881e+00,-1.139379489618060015e+00,3.681652886410853864e-01,7.808977689543051826e-01,1.786593783399060831e+00,7.343469378916433858e-03,-1.732267485511793881e+00
|
||||
3.666666699999999723e-01,-1.144853780000000043e+00,-4.097746000000000027e-02,9.532888200000000367e-01,1.164168255451152767e+00,1.346838553938585203e-01,5.660626554310061592e-02,-1.136661982193489129e+00,-4.725688616004097148e-02,9.364509293876314144e-01,1.164168255451152767e+00,1.346838553938585203e-01,5.660626554310061592e-02,-1.212786380856082813e+00,-1.479659470549050115e-01,9.353239811009582683e-01,1.368657909191805855e+00,-3.439507412629286276e-01,-5.246169654083816525e-01,-1.125884033778183024e+00,-3.012701922036545299e-01,5.276454739606726285e-01,1.365378822810929815e+00,3.855050070819261432e-01,-6.718019204833221014e-01,-1.128836990680541552e+00,-2.874842867409906910e-01,5.657823623234800037e-01,1.502694000856188206e+00,7.111368315452051281e-01,-5.313443001690288936e-01,-1.382415606043239320e+00,-1.720397863284716666e-01,2.441231213038890790e-01,1.460289542833654419e+00,4.525956655192175382e-01,-5.581322479754720067e-01,-1.440624282746977736e+00,-1.502422120338506306e-01,2.289368877741738695e-01,1.593162574762276185e+00,4.706516073539496192e-01,-4.762897577514747516e-01,-1.302090383145261931e+00,-2.228621027216328154e-01,1.471160179845236726e-01,1.593162574762276185e+00,4.706516073539496192e-01,-4.762897577514748071e-01,-1.230342764817413670e+00,4.875482366721591021e-03,8.697828249503025688e-01,1.577362895510710183e+00,-4.805959282215496731e-01,-1.827155769270190633e-01,-1.015454418986946328e+00,-3.187718212655481914e-02,4.846250372403749784e-01,1.576629383446102484e+00,5.961015289192254929e-02,-1.793322600382965260e-01,-1.040138175428708678e+00,-2.994638881189960050e-02,5.182950212957425640e-01,1.488960379361088604e+00,3.521861046677992046e-01,-3.425427805820617788e-01,-1.189625731017449617e+00,-1.357125454560535738e-02,1.202001332603366834e-01,1.535104013093454789e+00,6.410164651748133380e-02,-2.724247801020011628e-01,-1.236765478468323964e+00,6.176488049506080602e-03,8.170497966648899990e-02,1.812366952681574439e+00,1.587394050049847731e-03,-7.117713029500739863e-02,-1.060600507992454533e+00,-4.872303181534011485e-03,7.976281976895410741e-02,1.812366952681574439e+00,1.587394050049834504e-03,-7.117713029500734312e-02,-1.226586676612024807e+00,-2.418806232939016768e-02,1.014335189781753854e+00,1.154053341076321182e+00,1.149418389274263902e-01,1.086682001529150864e-02,-1.214542256951521626e+00,-1.112919077540567084e-02,1.042159473950629689e+00,1.143144868732816288e+00,9.355599552371561545e-02,-3.743478040793241091e-02,-1.210648615509617221e+00,2.352130507639493828e-03,1.071895165388529136e+00,1.128458613514385922e+00,7.140651029293937357e-02,-8.528798299266178440e-02,-1.213742862330524197e+00,1.753560203142456864e-02,1.103705798115096615e+00,1.115297753341867315e+00,5.258752083914727815e-02,-1.243638059536242985e-01,-1.222027009795029651e+00,3.129509785182848364e-02,1.129834257808072007e+00,1.104718304194787892e+00,3.469391348695586436e-02,-1.604084323798571632e-01,-1.228674269202903568e+00,-8.386384912533489944e-03,1.052608412860702503e+00,1.097007665865121995e+00,1.786325409587655177e-02,-1.935030323467392122e-01,-1.355348800610537419e+00,1.176268269509796738e-01,1.026493593593057474e+00,1.269986556949718182e+00,2.710288236480374868e-01,-3.057118466385314037e-01,-1.129518746153376219e+00,-9.804804610320030922e-04,1.093323954934137587e+00,1.095869738718429964e+00,1.161363431459239669e-02,-1.903574008359106839e-01,-1.215054012882841539e+00,7.336516131817766295e-03,1.456633701248488899e+00,4.505828099498617734e-01,-5.622345737182036229e-01,-4.953784463658637560e-01,-1.264900174179920622e+00,-2.636637289754569791e-01,1.347268024122639352e+00,-3.730392370657037437e-01,-5.968682636286829490e-01,1.335374178701762338e+00,-1.267448914362818702e+00,-2.853760754342528072e-01,1.367338216775462856e+00,-3.713819325408362348e-01,9.021037483725180550e-01,8.125282692198366741e-01,-1.063822948438061244e+00,-3.803287514344776410e-01,1.434630386395297830e+00,-3.713819325408362348e-01,9.021037483725181660e-01,8.125282692198366741e-01,-1.160137100165447022e+00,3.018579489816413108e-01,1.303048554218272370e+00,1.718388098965432098e+00,1.909207079304183208e-01,-3.381367119379952157e-01,-1.189036777767587871e+00,3.477570714460824775e-01,1.011595808187394363e+00,1.620477959499192933e+00,-2.254116079519907501e-01,-3.886016785437334531e-01,-1.182621173232438094e+00,3.737510883997486877e-01,9.987940192714175325e-01,1.741810482767916834e+00,-9.118997641882122321e-03,-1.958147042610951516e+00,-1.130920694115225000e+00,3.598368824679045730e-01,7.704494636041634426e-01,1.741810482767916834e+00,-9.118997641882122321e-03,-1.958147042610951294e+00
|
||||
3.833333300000000277e-01,-1.133755030000000108e+00,-4.659891000000000033e-02,9.550812400000000535e-01,1.160053656488063023e+00,1.089027967005068293e-01,-4.095094314759488950e-03,-1.125525045980610761e+00,-5.342977174945834351e-02,9.384782885974138900e-01,1.160053656488063023e+00,1.089027967005068293e-01,-4.095094314759488950e-03,-1.207519614983140865e+00,-1.493846584051409798e-01,9.356393783325045455e-01,1.336581895470013270e+00,-3.936542192115108363e-01,-5.165466329759290653e-01,-1.109640608913458060e+00,-3.235050105711118063e-01,5.389706637597904137e-01,1.342522146612390443e+00,3.266880947738329821e-01,-6.822254669662972670e-01,-1.113817420141446579e+00,-3.076636719865413760e-01,5.762130568384236096e-01,1.464888538870686041e+00,6.554940689896059380e-01,-5.578032250303864847e-01,-1.356472241481656349e+00,-2.092950341743299303e-01,2.407485088555116892e-01,1.430205016221518965e+00,4.028718241195662908e-01,-5.731831285177153568e-01,-1.414174905182552733e+00,-1.881705518869621896e-01,2.229113334215799269e-01,1.604107268134681297e+00,4.282166409753748737e-01,-4.652655946545633525e-01,-1.271866910275685214e+00,-2.607313214730844209e-01,1.477893399832044818e-01,1.604107268134681297e+00,4.282166409753748737e-01,-4.652655946545634080e-01,-1.214148952265817760e+00,3.960228511317852307e-03,8.692634048271816738e-01,1.574676836015949988e+00,-4.842276540697605380e-01,-1.786932887080665833e-01,-9.993031195501607122e-01,-3.309906167972615637e-02,4.836076592963354237e-01,1.574245894410133628e+00,9.386062925061837425e-02,-1.765635030999998523e-01,-1.022372728733059954e+00,-3.146633476933536483e-02,5.181233874964283892e-01,1.477458640957752589e+00,3.870635381503810257e-01,-3.465253710173813451e-01,-1.186270727389434620e+00,-1.445239157688094425e-02,1.257687189227799651e-01,1.526852523921483407e+00,9.989384830605745058e-02,-2.729767489403973624e-01,-1.234792443207269441e+00,5.354089223935445951e-03,8.906241987303811780e-02,1.811566921655247464e+00,3.827161254424343156e-02,-7.100754267194570035e-02,-1.058815244462048000e+00,-5.652671167133114377e-03,8.064687812119511467e-02,1.811566921655247464e+00,3.827161254424341769e-02,-7.100754267194564484e-02,-1.215874505279515905e+00,-2.467164547582594361e-02,1.013940363137949996e+00,1.149811518135873900e+00,9.470552978480692441e-02,-3.650768877309622934e-02,-1.203791760443396308e+00,-1.206011129700126916e-02,1.041953336334366043e+00,1.137592204713461896e+00,7.931591869408197160e-02,-7.076061751553440471e-02,-1.199867206951561016e+00,1.494650337839851725e-03,1.071651507828123462e+00,1.118288131252620721e+00,6.323029448036428246e-02,-1.046452872418607710e-01,-1.202898674271036139e+00,1.711590542510946569e-02,1.103255190350571402e+00,1.099845038632248473e+00,4.943004708689237303e-02,-1.322534345526396038e-01,-1.211113859668150550e+00,3.134558814819088379e-02,1.129152507376954828e+00,1.084593302263995529e+00,3.620139006888070665e-02,-1.576613425645105315e-01,-1.218012248356979299e+00,-1.013778375757516670e-02,1.052900893781076430e+00,1.073137637895096086e+00,2.367692364904606245e-02,-1.809385825363755418e-01,-1.345278891091364448e+00,1.285220925447624896e-01,1.021272145847038848e+00,1.269789502267822279e+00,2.744827806488334132e-01,-3.105378842627849467e-01,-1.118386748731676761e+00,1.722569347765767755e-03,1.091396691137122232e+00,1.070471231366688425e+00,1.667951326812009902e-02,-1.772930303395180429e-01,-1.200558075450896212e+00,1.481819920249922984e-02,1.456313468472259842e+00,4.546689849083183632e-01,-6.117504742807751139e-01,-5.601396782030132471e-01,-1.262519188681115345e+00,-2.550562887763389019e-01,1.350411602752693785e+00,-4.440903707620500462e-01,-5.707796937767839474e-01,1.343531430184576436e+00,-1.266783021849935409e+00,-2.758676599358148573e-01,1.371134567201805599e+00,-4.736986001339573149e-01,8.912615752320550699e-01,7.015416936706733164e-01,-1.070001946237434831e+00,-3.741323542324862528e-01,1.452553477204997945e+00,-4.736986001339573149e-01,8.912615752320550699e-01,7.015416936706733164e-01,-1.151064790593176346e+00,3.065068959068268373e-01,1.295642195160756849e+00,1.698159432076075115e+00,1.892170963036318432e-01,-4.584332999332440539e-01,-1.176543719432906032e+00,3.500314854176178048e-01,1.003506852775502001e+00,1.603139954044023652e+00,-2.146617501006473361e-01,-4.997797416232987455e-01,-1.167417083083530649e+00,3.749922911704502981e-01,9.903008926247302002e-01,1.731068622411780611e+00,-2.604508387982136519e-02,-2.072920674972043020e+00,-1.121669819921895517e+00,3.530291212236252307e-01,7.613192605018767045e-01,1.731068622411780611e+00,-2.604508387982136866e-02,-2.072920674972043020e+00
|
||||
4.000000000000000222e-01,-1.123311790000000032e+00,-5.263342000000000021e-02,9.567944099999999841e-01,1.162980545936742383e+00,7.891523508179301705e-02,-7.102812852454534753e-02,-1.115062569709184936e+00,-5.998879305485837338e-02,9.404267542028578175e-01,1.162980545936742383e+00,7.891523508179301705e-02,-7.102812852454534753e-02,-1.203189495959868793e+00,-1.502172954355877055e-01,9.348615715243617785e-01,1.304251298323360730e+00,-4.385098585952265648e-01,-5.018384463641150095e-01,-1.094788552979779617e+00,-3.431014935794539644e-01,5.498325252515202655e-01,1.321260422597389850e+00,2.627512899886902398e-01,-6.833516565573788393e-01,-1.100512673940861719e+00,-3.251416368227103559e-01,5.859768718712765612e-01,1.429667168211645745e+00,5.938363593409563546e-01,-5.737810415795422392e-01,-1.330998459560874814e+00,-2.474475413187894324e-01,2.367861727840709363e-01,1.401897758356136947e+00,3.563201246111056819e-01,-5.793461507499745311e-01,-1.388319750839755784e+00,-2.274747625053168132e-01,2.165534356944261163e-01,1.606728169555316166e+00,3.886083623102603579e-01,-4.512222330780422674e-01,-1.242441207679286341e+00,-2.992673101852453277e-01,1.478131611932074763e-01,1.606728169555316388e+00,3.886083623102603024e-01,-4.512222330780423230e-01,-1.197510288708484971e+00,3.277918092792958538e-03,8.687454740602720271e-01,1.572779123231565546e+00,-4.856819578205953669e-01,-1.786050173383747219e-01,-9.835506812929449838e-01,-3.445492606218533010e-02,4.822559151200127014e-01,1.572564300798581449e+00,1.280497512625764778e-01,-1.774536533907221658e-01,-1.005035984927921788e+00,-3.304608866869302580e-02,5.175440444967643883e-01,1.466568010862029592e+00,4.216728331073131275e-01,-3.538371059811267760e-01,-1.182873253525797530e+00,-1.455421839312062010e-02,1.313754662703416898e-01,1.518759292081035994e+00,1.398566354246995602e-01,-2.779734518130217991e-01,-1.232764639546867436e+00,5.562436361170423893e-03,9.673191304694739312e-02,1.811704523839997139e+00,7.904215756019355998e-02,-7.504454362012301372e-02,-1.057321426972178458e+00,-6.117723526614396445e-03,8.113711833951767205e-02,1.811704523839997139e+00,7.904215756019354611e-02,-7.504454362012295821e-02,-1.205509634031005861e+00,-2.528541184900822553e-02,1.013224990478072352e+00,1.151586157340443783e+00,7.143658652992801450e-02,-8.828363478513040485e-02,-1.193446525191550478e+00,-1.331606380563347437e-02,1.041526469662318322e+00,1.136924973732806210e+00,6.333961611647341561e-02,-1.065400852186027120e-01,-1.189508569783036318e+00,1.774842025608503598e-04,1.071250441952573018e+00,1.111309750407512009e+00,5.474743779043029362e-02,-1.245549207626180516e-01,-1.192468504118064931e+00,1.614857079209609803e-02,1.102684745904419117e+00,1.086012852021704500e+00,4.726665051397223316e-02,-1.391839650599667466e-01,-1.200600236095981321e+00,3.079498281800443701e-02,1.128375118946096212e+00,1.064836747148506069e+00,4.001425333188276395e-02,-1.526031340013161985e-01,-1.207811795315876013e+00,-1.250818255344099059e-02,1.053169503670574603e+00,1.048748381062792889e+00,3.308016529796053984e-02,-1.648549955982923088e-01,-1.337301452066048668e+00,1.281535323108510815e-01,1.018797828597954647e+00,1.249737381709386419e+00,2.782370326939774818e-01,-3.115673987103986242e-01,-1.107299526378245469e+00,4.531081803962493104e-03,1.088496176605803889e+00,1.043855940463347398e+00,2.767578393114938570e-02,-1.619301571644186366e-01,-1.185431945949147359e+00,2.180812751442190792e-02,1.455650171357803391e+00,4.512066159223087625e-01,-6.529065437145202822e-01,-6.143035328853339028e-01,-1.259140993702434042e+00,-2.468576170732513231e-01,1.354297727174607724e+00,-4.957547605379953870e-01,-5.428194926195099024e-01,1.334875534995109359e+00,-1.264898521736760983e+00,-2.667052825081837608e-01,1.375596923077389455e+00,-5.555647423316651956e-01,8.850304841601622785e-01,6.020409189050268672e-01,-1.074868513511952228e+00,-3.686903272326693681e-01,1.467767565893649762e+00,-5.555647423316651956e-01,8.850304841601622785e-01,6.020409189050269783e-01,-1.143017879463327890e+00,3.105888881460050488e-01,1.287859056122827361e+00,1.686034091510215882e+00,1.757265342286577492e-01,-4.381890873355221427e-01,-1.167368132778287215e+00,3.486993184584420424e-01,9.948722232406119748e-01,1.590716294513342843e+00,-2.319763579849951074e-01,-4.749180924842998364e-01,-1.158663829745314899e+00,3.736051817263200125e-01,9.812829707968567794e-01,1.748440138019418999e+00,-3.809135165680794383e-02,-2.051367601230076332e+00,-1.110195031384239694e+00,3.483838324709633283e-01,7.531986883534766974e-01,1.748440138019418999e+00,-3.809135165680794383e-02,-2.051367601230076332e+00
|
||||
4.166666700000000167e-01,-1.113960499999999909e+00,-5.859775999999999874e-02,9.581313700000000377e-01,1.168654574135628232e+00,5.039591372636392785e-02,-1.337324198580102375e-01,-1.105719428828836337e+00,-6.642911856320150854e-02,9.419818847610631485e-01,1.168654574135628232e+00,5.039591372636392785e-02,-1.337324198580102375e-01,-1.199155038519765126e+00,-1.509110296919971561e-01,9.335496511175700451e-01,1.271487354071240361e+00,-4.770689143902618334e-01,-4.831284479976896140e-01,-1.081441794392556499e+00,-3.604707057862068798e-01,5.602642936073751745e-01,1.300443077621818100e+00,1.964049700710138457e-01,-6.779135342249221763e-01,-1.088920172617895643e+00,-3.404033255991077977e-01,5.950930892181163223e-01,1.396153203451746982e+00,5.289776383875927079e-01,-5.822236990094252773e-01,-1.306223771737247130e+00,-2.858694016189265996e-01,2.332928527295831111e-01,1.374444788030722453e+00,3.154747812830604459e-01,-5.799805381475987565e-01,-1.363283126273696633e+00,-2.673134579094315066e-01,2.110686994165157371e-01,1.600200710140167404e+00,3.542885399519886680e-01,-4.377767888369547555e-01,-1.214406473046511614e+00,-3.381103320995031969e-01,1.479538095387200047e-01,1.600200710140167404e+00,3.542885399519886125e-01,-4.377767888369548110e-01,-1.181904500966702187e+00,2.039631613386647113e-03,8.681823314892993526e-01,1.572400803626287757e+00,-4.834808286628766716e-01,-1.820998759689130830e-01,-9.699701217282554744e-01,-3.626239347494580878e-02,4.803638765617909145e-01,1.572234841192408750e+00,1.580932423136443277e-01,-1.811275387842087858e-01,-9.901038157070090051e-01,-3.502138342180763364e-02,5.162719451151296379e-01,1.458231283856944227e+00,4.520155765906200274e-01,-3.626157613452900552e-01,-1.179745442409189105e+00,-1.419857745766395229e-02,1.358817791649711837e-01,1.512583740857029069e+00,1.768230841801330666e-01,-2.855187403732311613e-01,-1.230755508417699762e+00,6.398393264317573520e-03,1.032054277708184253e-01,1.813045573916758357e+00,1.165286519415847377e-01,-8.157689255636109416e-02,-1.056097547904872203e+00,-6.367672501870813573e-03,8.103407260584137572e-02,1.813045573916758357e+00,1.165286519415847238e-01,-8.157689255636103864e-02,-1.195875603430256229e+00,-2.622300156345189204e-02,1.012266389834207470e+00,1.155240911254653779e+00,4.962396350852486121e-02,-1.358974913061821443e-01,-1.183883563508727477e+00,-1.486894645180765820e-02,1.040850209408757499e+00,1.137429447536236093e+00,4.888439771385771904e-02,-1.382356023842300496e-01,-1.179945385061154095e+00,-1.445180565602685249e-03,1.070605185301209072e+00,1.104967638568700616e+00,4.803897439872872877e-02,-1.405292495214564008e-01,-1.182830502594115041e+00,1.483902769227164221e-02,1.101884083293915850e+00,1.072528998331236716e+00,4.725063243497682614e-02,-1.423787145888773531e-01,-1.190875875129466799e+00,2.985278064234864887e-02,1.127388769651161304e+00,1.045317797395345805e+00,4.645234039969949047e-02,-1.440656709783602329e-01,-1.198405757477927214e+00,-1.523895292906842641e-02,1.053270596209207710e+00,1.024638000590070153e+00,4.564179595498659564e-02,-1.455841148279468089e-01,-1.326329696793308921e+00,1.267572780662437892e-01,1.014790251335810467e+00,1.230387132498431901e+00,2.739039883013437149e-01,-3.142779346641215166e-01,-1.096681641604103641e+00,7.075166927950196638e-03,1.084735624081230920e+00,1.017596565500917816e+00,4.479542661879656190e-02,-1.450600724712495515e-01,-1.170329365275768918e+00,2.837306688133895555e-02,1.454492308713997373e+00,4.333759876997095306e-01,-6.814902935732206624e-01,-6.512008960804800406e-01,-1.255443788930413973e+00,-2.392544922571976374e-01,1.359531008949621089e+00,-5.240607697996022551e-01,-5.119876053381965386e-01,1.313213492402527605e+00,-1.262245887464394478e+00,-2.581017598489428466e-01,1.381422711904104039e+00,-6.173425859743904009e-01,8.903749333458109705e-01,5.182076960262123055e-01,-1.077485202350894067e+00,-3.633887001619316992e-01,1.480346572556920925e+00,-6.173425859743904009e-01,8.903749333458110815e-01,5.182076960262123055e-01,-1.136487682579879532e+00,3.141810206471936651e-01,1.279804893096551766e+00,1.677595812404510500e+00,1.605987474561497430e-01,-4.002792636511323665e-01,-1.159178451813284161e+00,3.473299585150421143e-01,9.860824035127900844e-01,1.580291110123935194e+00,-2.581798031713031794e-01,-4.340679490086143399e-01,-1.151166334570989491e+00,3.722726288287167007e-01,9.721395245666322182e-01,1.774742561470270541e+00,-4.800948557483505907e-02,-2.014179240202517374e+00,-1.097335148692322182e+00,3.443297471839645851e-01,7.455800852072829166e-01,1.774742561470270541e+00,-4.800948557483505214e-02,-2.014179240202517374e+00
|
||||
4.333333300000000166e-01,-1.105726699999999951e+00,-6.368418000000000689e-02,9.587072300000000213e-01,1.172846564836825367e+00,2.943358962374385823e-02,-1.821950591372457906e-01,-1.097532667113171323e+00,-7.190175242003060685e-02,9.427265969384664990e-01,1.172846564836825367e+00,2.943358962374385823e-02,-1.821950591372457906e-01,-1.194761799481809827e+00,-1.517387822890302607e-01,9.321884039697458935e-01,1.237265994425222893e+00,-5.084793731787886628e-01,-4.596723951534679165e-01,-1.069121862798854572e+00,-3.760200623660431285e-01,5.704315304399627529e-01,1.278263115694335816e+00,1.295400959586750778e-01,-6.656655654621994600e-01,-1.078506477317150658e+00,-3.539075216903498911e-01,6.037150780181832488e-01,1.362513531472050454e+00,4.629124037211026499e-01,-5.835678605215853798e-01,-1.282147707375686174e+00,-3.248941963182701564e-01,2.311795890387319807e-01,1.346089580422855869e+00,2.806214992342040970e-01,-5.756310333976231153e-01,-1.339100600266125873e+00,-3.080213736060226082e-01,2.073955224671784892e-01,1.584342185518341051e+00,3.257026443170599195e-01,-4.248250200373939189e-01,-1.187745598373062705e+00,-3.776308992444143975e-01,1.490335319438292061e-01,1.584342185518341051e+00,3.257026443170599195e-01,-4.248250200373939744e-01,-1.168705685268355499e+00,2.132886117984233998e-04,8.674117154463788504e-01,1.573157147229118591e+00,-4.782670217203741081e-01,-1.866547889940410876e-01,-9.595493134743868779e-01,-3.822068467967750655e-02,4.779491189803283246e-01,1.572927196567048158e+00,1.813613928543815479e-01,-1.851838972460004007e-01,-9.786739361844454255e-01,-3.711546821398900575e-02,5.143014749891170467e-01,1.452897897724596321e+00,4.755111197103114029e-01,-3.701394094541964330e-01,-1.177141652135235805e+00,-1.379722177208047088e-02,1.385874357435635806e-01,1.509098396879876125e+00,2.038288192624964357e-01,-2.920077475887580265e-01,-1.228888406710213488e+00,7.240115936041499611e-03,1.073831124748180210e-01,1.814794351763619362e+00,1.437883352153740413e-01,-8.738733002726770116e-02,-1.054973755308109773e+00,-6.479289582357026372e-03,8.044955468151632205e-02,1.814794351763619362e+00,1.437883352153740413e-01,-8.738733002726764565e-02,-1.187110006544644270e+00,-2.738276106161896539e-02,1.011126443320928825e+00,1.157072558028497955e+00,3.423572667225507210e-02,-1.716501421902557334e-01,-1.175163384313430370e+00,-1.644669545395715041e-02,1.039891803059886488e+00,1.136055519426250271e+00,3.968785470327110959e-02,-1.606037896621797245e-01,-1.171188307013778962e+00,-3.015158942425953670e-03,1.069637710155526333e+00,1.097348016087169364e+00,4.553492804895203222e-02,-1.497556116513940050e-01,-1.173966311785177075e+00,1.357693210570209280e-02,1.100762644053750350e+00,1.058598790375197884e+00,5.066261169616605858e-02,-1.409978112497629887e-01,-1.181906558233407400e+00,2.891719614025430041e-02,1.126105299919550440e+00,1.026171132551235043e+00,5.566612199560842106e-02,-1.330130065701694009e-01,-1.189782226586951319e+00,-1.787403773397241297e-02,1.053081581751895035e+00,1.001638564444687240e+00,6.042474891608549947e-02,-1.257336256905476901e-01,-1.313407254121940593e+00,1.157337003768996453e-01,1.012359132749963031e+00,1.190267410450811525e+00,2.525745835964978703e-01,-3.373310356482700501e-01,-1.086830704227863986e+00,9.194617927419976300e-03,1.080452894788979767e+00,9.931828332812481230e-01,6.571331713661465734e-02,-1.286697945216928596e-01,-1.155609431134584586e+00,3.470686871598416962e-02,1.452752224887190025e+00,4.026837727052261506e-01,-7.017936256688418473e-01,-6.724392465724372547e-01,-1.251495927285827037e+00,-2.320554170756283785e-01,1.365975000268486506e+00,-5.368531234246427530e-01,-4.785549017804079930e-01,1.284769635527754694e+00,-1.258972491595462317e+00,-2.498736655459395661e-01,1.388499336129112693e+00,-6.688300285381821864e-01,9.050162577434247568e-01,4.434209247279501387e-01,-1.078083275184350986e+00,-3.579153233465829920e-01,1.491522985532546919e+00,-6.688300285381822974e-01,9.050162577434248679e-01,4.434209247279501387e-01,-1.130915991865189207e+00,3.174384282643431532e-01,1.271643863978540123e+00,1.668468639666040421e+00,1.430129156571936511e-01,-2.994475347420221811e-01,-1.152708827598985630e+00,3.440409439618162812e-01,9.771884302594482374e-01,1.567986375903159368e+00,-2.917165881195104005e-01,-3.298981080789443188e-01,-1.146854016973168466e+00,3.693505502546953756e-01,9.628399209214221210e-01,1.808465853012039215e+00,-5.945406399139176873e-02,-1.915161948785272461e+00,-1.084202959696775270e+00,3.419816423439794306e-01,7.384884808269495116e-01,1.808465853012039215e+00,-5.945406399139176873e-02,-1.915161948785272461e+00
|
||||
4.500000000000000111e-01,-1.097453589999999979e+00,-6.747245000000000326e-02,9.587728599999999490e-01,1.172210280991153653e+00,1.734199767209933934e-02,-2.078905017127836985e-01,-1.089286999072561324e+00,-7.594735682159593770e-02,9.429130349232408559e-01,1.172210280991153653e+00,1.734199767209933934e-02,-2.078905017127836985e-01,-1.188405430592464951e+00,-1.532957294888691036e-01,9.314555129718520288e-01,1.201681154528986273e+00,-5.302216555925014507e-01,-4.348366149101343114e-01,-1.057540300662364707e+00,-3.904585442052843081e-01,5.802778807780653025e-01,1.253598840429694050e+00,6.472271271990709396e-02,-6.492630654508526611e-01,-1.068871959208712141e+00,-3.664027087208476807e-01,6.118163656400505968e-01,1.327683502141626892e+00,3.980985210855858547e-01,-5.810075208927500956e-01,-1.258944903245486913e+00,-3.641492366612180120e-01,2.310783822618115990e-01,1.315410378339374020e+00,2.474325698645561955e-01,-5.693440547140807828e-01,-1.315835728653689474e+00,-3.491391337365071235e-01,2.059360519777684029e-01,1.560633320128578472e+00,2.989346672363214497e-01,-4.136116861453521532e-01,-1.162346060017389604e+00,-4.176968371942472169e-01,1.520778352042985726e-01,1.560633320128578472e+00,2.989346672363214497e-01,-4.136116861453522087e-01,-1.157697546436850189e+00,-2.264980450904841014e-03,8.665624392988845459e-01,1.574734354664316882e+00,-4.697349667861938083e-01,-1.910243551655888272e-01,-9.521596780940227989e-01,-4.023269321452969949e-02,4.750698948146471756e-01,1.574377876405616217e+00,1.981154802153335948e-01,-1.885368688834312967e-01,-9.706080854015370907e-01,-3.924230751268784761e-02,5.117255053375504570e-01,1.450367529618978635e+00,4.924517624049843945e-01,-3.753578003932429574e-01,-1.175182653973007696e+00,-1.358252030097537380e-02,1.394553945414984675e-01,1.508465040534044510e+00,2.191159853844970029e-01,-2.958007769477539184e-01,-1.227307725805544036e+00,7.762974055688154351e-03,1.091016017855432063e-01,1.816751022472039345e+00,1.590557655389500391e-01,-9.103635987952074515e-02,-1.053873267375439848e+00,-6.548542762281461121e-03,7.951083108040510328e-02,1.816751022472039345e+00,1.590557655389500391e-01,-9.103635987952068964e-02,-1.178485007644271665e+00,-2.893147618920163811e-02,1.010127628216197948e+00,1.154392320430940533e+00,2.611570495865391667e-02,-1.885317308908811829e-01,-1.166571680315784398e+00,-1.808092754676953254e-02,1.038939442517951006e+00,1.130766915802407624e+00,3.606245549932421413e-02,-1.682453132032084020e-01,-1.162575120920159355e+00,-4.495795418998600051e-03,1.068611992636109287e+00,1.087243527802796761e+00,4.685001797195187390e-02,-1.483808235907486395e-01,-1.165293827737926780e+00,1.242154292432214036e-02,1.099565185903217612e+00,1.043720103797552090e+00,5.640103289693407240e-02,-1.323979389363712511e-01,-1.173184010152874990e+00,2.804418750374668839e-02,1.124750317909842590e+00,1.007412366648793300e+00,6.577980232301547381e-02,-1.178698662274753617e-01,-1.181205522452330348e+00,-2.036853699144994256e-02,1.052804426870742160e+00,9.800855952668312554e-01,7.475294163006247772e-02,-1.046656008156501283e-01,-1.303777437439032738e+00,1.091629168849559683e-01,1.009896804920152213e+00,1.160319649473527281e+00,2.399594824096059065e-01,-3.506531868741993296e-01,-1.077428167204495635e+00,1.093200442593172950e-02,1.076448197526002293e+00,9.709425881202881081e-01,8.560492409023509608e-02,-1.109428802042244505e-01,-1.141652455416415801e+00,4.090581199035650539e-02,1.450736787581977882e+00,3.636924872716781887e-01,-7.169719618141201511e-01,-6.820138817867145153e-01,-1.247406144914113391e+00,-2.250042718287167676e-01,1.373311930730892083e+00,-5.409345359587520718e-01,-4.442369240261845320e-01,1.253598507520071736e+00,-1.255300425065136727e+00,-2.417954443594966807e-01,1.396473786535790129e+00,-7.154043370991151063e-01,9.246211861625104333e-01,3.735203280223606814e-01,-1.077315795908895701e+00,-3.522260962274144647e-01,1.501993091322549434e+00,-7.154043370991151063e-01,9.246211861625104333e-01,3.735203280223606814e-01,-1.126366429858442153e+00,3.204588049216616774e-01,1.263751224865475420e+00,1.657493753302182293e+00,1.277945376513931475e-01,-2.077512055956824422e-01,-1.146808780700667274e+00,3.408593361269399158e-01,9.687045292458855705e-01,1.553341473466658407e+00,-3.234118621497821811e-01,-2.336194530076626530e-01,-1.142898512908246955e+00,3.662936601566206818e-01,9.539214421077768513e-01,1.840472962301183513e+00,-7.284894169069873471e-02,-1.825433493697090626e+00,-1.071851242574122232e+00,3.401042579389252918e-01,7.319435572631634024e-01,1.840472962301183513e+00,-7.284894169069872083e-02,-1.825433493697090404e+00
|
||||
4.666666700000000056e-01,-1.088229499999999961e+00,-6.899231000000000114e-02,9.580351099999999676e-01,1.163312672711567908e+00,1.839993379973874771e-02,-2.012563751047039273e-01,-1.080050091575999405e+00,-7.754623081576375587e-02,9.422243851277087856e-01,1.163312672711567908e+00,1.839993379973874771e-02,-2.012563751047039273e-01,-1.178671722519301746e+00,-1.556595850613050336e-01,9.317083578787225262e-01,1.165030022144892374e+00,-5.416333664891535005e-01,-4.135325983647727410e-01,-1.046530718869182808e+00,-4.045585055791074414e-01,5.897875680565185519e-01,1.225762388775632816e+00,4.375199655509814586e-03,-6.330646872508274292e-01,-1.059685041783258175e+00,-3.786585332991704300e-01,6.194381840672085193e-01,1.291119436142959875e+00,3.368257595673329607e-01,-5.792307741246259800e-01,-1.237114165107154440e+00,-4.029752125196928714e-01,2.334047405856125579e-01,1.281637994888078724e+00,2.115391074104162605e-01,-5.650606447862798198e-01,-1.293847761092510318e+00,-3.898599031536678639e-01,2.068850549850478615e-01,1.537221601010971828e+00,2.709903938150514113e-01,-4.021750902958644014e-01,-1.138271187081584257e+00,-4.572658384392793707e-01,1.577697406442699624e-01,1.537221601010971828e+00,2.709903938150514113e-01,-4.021750902958644569e-01,-1.149175060803557802e+00,-4.981477658353244964e-03,8.654480589652715494e-01,1.576775771540759319e+00,-4.604022165985479642e-01,-1.955353111250809905e-01,-9.473080949561153430e-01,-4.225977395503403150e-02,4.719691047217278723e-01,1.576272904906735883e+00,2.095085530941854235e-01,-1.917395423538571231e-01,-9.653345880014843061e-01,-4.135471797988772569e-02,5.088243359491593232e-01,1.449874085169944316e+00,5.040432086976651682e-01,-3.792806660564528864e-01,-1.173868686099663439e+00,-1.349808604613411331e-02,1.389165742493744249e-01,1.510036911779518043e+00,2.242161891412187136e-01,-2.977653597195388802e-01,-1.226077982792583398e+00,8.057271754472523917e-03,1.088572684279255770e-01,1.818722620630770503e+00,1.639190744866743654e-01,-9.331842094444144087e-02,-1.052821177381690454e+00,-6.633192798085831357e-03,7.842350057804151064e-02,1.818722620630770503e+00,1.639190744866743654e-01,-9.331842094444138536e-02,-1.169376469150358977e+00,-3.056629364294335266e-02,1.009293477033123221e+00,1.144524588034086188e+00,2.875908587579534617e-02,-1.789548724499187005e-01,-1.157445241917731238e+00,-1.933351356274935068e-02,1.037951105220137782e+00,1.119647368833189160e+00,4.050504453399951521e-02,-1.556014455463142210e-01,-1.153445229280898321e+00,-5.388307963770030962e-03,1.067455363115273892e+00,1.073755751367475142e+00,5.327613510835395305e-02,-1.327754368667443952e-01,-1.156186351945077240e+00,1.188016555423967655e-02,1.098211328109306884e+00,1.027871905053908019e+00,6.460548042272347413e-02,-1.144478734847174939e-01,-1.164120254401198817e+00,2.772583637582216529e-02,1.123242780014165332e+00,9.896496147401472321e-01,7.574344603016641697e-02,-9.782020320389300805e-02,-1.171947925039605654e+00,-2.216852532503388665e-02,1.052292901312275708e+00,9.609516326743453574e-01,8.640983944105817827e-02,-8.273040933214775849e-02,-1.299358584369034064e+00,9.307256812180203509e-02,1.013298848479882830e+00,1.107870410427421959e+00,2.250979001300119631e-01,-3.726256804326725791e-01,-1.068206826707344348e+00,1.270168325803386344e-02,1.073266796650359733e+00,9.514331127718830272e-01,9.956544436564816747e-02,-9.062639370305901332e-02,-1.128610935496576984e+00,4.718624911449451065e-02,1.448501148647056036e+00,3.197916441089911355e-01,-7.305606811957539026e-01,-6.819264602317739454e-01,-1.242799833889637995e+00,-2.180030535594097152e-01,1.381254191774935691e+00,-5.421627042890416748e-01,-4.101777228671606990e-01,1.222695476638843592e+00,-1.250969373477968327e+00,-2.337777078311800982e-01,1.405027151285879405e+00,-7.614526556590354156e-01,9.449531153250817495e-01,3.050595182475029921e-01,-1.075415009400997102e+00,-3.462952051882468574e-01,1.512396880784335984e+00,-7.614526556590354156e-01,9.449531153250818605e-01,3.050595182475029921e-01,-1.122389235067672963e+00,3.235988975889780850e-01,1.256395767916293815e+00,1.641851398251511940e+00,1.145025809345074363e-01,-8.333489042524318269e-02,-1.141704149186880679e+00,3.363687885910537356e-01,9.608446082944512856e-01,1.533003928000797655e+00,-3.549622424212224847e-01,-1.018488361153948724e-01,-1.140553399392107758e+00,3.617550873074995010e-01,9.455166498270830555e-01,1.872612610296512381e+00,-9.121245736328424669e-02,-1.703064464294244740e+00,-1.060316858337246204e+00,3.396881900387115349e-01,7.262384468633155121e-01,1.872612610296512381e+00,-9.121245736328424669e-02,-1.703064464294244740e+00
|
||||
4.833333300000000055e-01,-1.078364179999999894e+00,-6.888202999999999687e-02,9.567185299999999559e-01,1.147914706708387689e+00,3.020192269189232726e-02,-1.692372116012795524e-01,-1.070136967560541219e+00,-7.737512991514550187e-02,9.408998216524885327e-01,1.147914706708387689e+00,3.020192269189232726e-02,-1.692372116012795524e-01,-1.166309179150570641e+00,-1.587642351570227039e-01,9.328234179777690205e-01,1.128503538303396780e+00,-5.441445541398376440e-01,-3.919955441220616121e-01,-1.035297325103389010e+00,-4.177697709181233954e-01,5.987389321821197097e-01,1.195435998559753354e+00,-4.745572943429913343e-02,-6.137311419697877302e-01,-1.050124703601330145e+00,-3.902698428609354675e-01,6.265111984883297014e-01,1.253922034268923014e+00,2.832087404987890800e-01,-5.744684767007509629e-01,-1.217035781809604034e+00,-4.401857365060666827e-01,2.382544410313371941e-01,1.246070106329594696e+00,1.752590190756782018e-01,-5.583007048032410102e-01,-1.273604468640060938e+00,-4.291681301259697712e-01,2.104587219818170596e-01,1.509816287381611222e+00,2.432393785620734494e-01,-3.897836635648190828e-01,-1.116017328713560186e+00,-4.951857949361990752e-01,1.660976370279036440e-01,1.509816287381611222e+00,2.432393785620734494e-01,-3.897836635648191383e-01,-1.142667194873583369e+00,-8.099153138988832157e-03,8.642270481397507087e-01,1.579263434749817341e+00,-4.510754428585913023e-01,-1.978563260021853065e-01,-9.442367783889535904e-01,-4.404870772267154011e-02,4.688891332636968001e-01,1.578600700365177856e+00,2.176770852099893239e-01,-1.924796755752541944e-01,-9.619933821232915516e-01,-4.325904702373264965e-02,5.058843762995626214e-01,1.450776670957559800e+00,5.124637687342507020e-01,-3.800198097234420147e-01,-1.173272267000616598e+00,-1.373306630437687650e-02,1.376675061732567928e-01,1.513057490297454288e+00,2.233333999765565181e-01,-2.963439688726111076e-01,-1.225446451136149362e+00,7.860022208626176593e-03,1.075743339275453264e-01,1.821037161452194297e+00,1.625867612922055894e-01,-9.239566522894629430e-02,-1.052135023569887862e+00,-6.670537684507420184e-03,7.737571641556001412e-02,1.821037161452194297e+00,1.625867612922055894e-01,-9.239566522894623879e-02,-1.159979109235468320e+00,-3.242374371680319112e-02,1.008666640778413948e+00,1.129102788292717374e+00,4.018307333911630419e-02,-1.486373641048299443e-01,-1.148012825853081731e+00,-2.043976184386409392e-02,1.037003518650788214e+00,1.104108018804485392e+00,5.148888967669753430e-02,-1.270856730275892743e-01,-1.144044318567550844e+00,-5.972360546717752142e-03,1.066259554851902491e+00,1.057816560802086192e+00,6.374415536789590497e-02,-1.060410789188767217e-01,-1.146891599517126048e+00,1.166493482714875581e-02,1.096795744362910385e+00,1.011477911024988297e+00,7.458763397966237940e-02,-8.916235787211959640e-02,-1.154957052526869310e+00,2.768296747466949398e-02,1.121674871139094920e+00,9.728565104705264588e-01,8.522815581630663329e-02,-7.386505098948578651e-02,-1.162273790079724645e+00,-2.356693801239127112e-02,1.051641979506081181e+00,9.438426948112543791e-01,9.540294419626987876e-02,-5.999099562775404848e-02,-1.295762833974174466e+00,9.038011129303460955e-02,1.012253408177767655e+00,1.087725731312646493e+00,2.284697966630796495e-01,-3.677471711541269728e-01,-1.059329772071228692e+00,1.439844487579938770e-02,1.070935361528064567e+00,9.339886915257626931e-01,1.076751498367660292e-01,-6.762985162937071304e-02,-1.116686025267444649e+00,5.333469831164901892e-02,1.446201288972242427e+00,2.767706224812285232e-01,-7.458976601534583750e-01,-6.768898104197997867e-01,-1.237712059917468688e+00,-2.111814288297816644e-01,1.389012641528516667e+00,-5.465361165547598654e-01,-3.780117227435532690e-01,1.195847320890593091e+00,-1.246134681210510964e+00,-2.259614679368374679e-01,1.413330219387671116e+00,-8.103572328757188137e-01,9.607123274839303173e-01,2.366678052083608097e-01,-1.072987884467418551e+00,-3.400333141909684942e-01,1.522945827036942701e+00,-8.103572328757188137e-01,9.607123274839303173e-01,2.366678052083608097e-01,-1.119121150711948953e+00,3.266144432477696147e-01,1.249581375763191282e+00,1.630811892333240642e+00,1.030769977078747623e-01,-3.448195893089806702e-02,-1.135783948481120298e+00,3.350441350298125065e-01,9.537133047510990558e-01,1.517894877769699002e+00,-3.812587534070192019e-01,-4.727965794411925077e-02,-1.135484621352127022e+00,3.602173637951501806e-01,9.379985455997160715e-01,1.899506900894959882e+00,-1.043964071369491153e-01,-1.656559288648030703e+00,-1.048687639402406502e+00,3.387607412205909663e-01,7.211721679547171693e-01,1.899506900894959882e+00,-1.043964071369491153e-01,-1.656559288648030481e+00
|
||||
5.000000000000000000e-01,-1.068786730000000018e+00,-6.749513999999999514e-02,9.548156100000000368e-01,1.127202957344110912e+00,5.009712191471485387e-02,-1.204000271863245042e-01,-1.060500080609616980e+00,-7.585702399389167294e-02,9.389580678692088789e-01,1.127202957344110912e+00,5.009712191471485387e-02,-1.204000271863245042e-01,-1.152652266091398259e+00,-1.620344488433596575e-01,9.344931840237485909e-01,1.092803047285196172e+00,-5.413945904393657749e-01,-3.705097629966891959e-01,-1.024014573077619783e+00,-4.299540865614557283e-01,6.073378018506635501e-01,1.163836995512609329e+00,-9.007078177535407515e-02,-5.926487387345216185e-01,-1.040309049603665548e+00,-4.011324596901089667e-01,6.333366815464739341e-01,1.217298304902315609e+00,2.381685411044713319e-01,-5.675933210812263985e-01,-1.198928435827210093e+00,-4.747139496740517828e-01,2.453677796691877133e-01,1.210402367110749999e+00,1.425674658165026198e-01,-5.497783698626187432e-01,-1.255375828276704686e+00,-4.658312064030696309e-01,2.165789843629670197e-01,1.480980674629721827e+00,2.192521480310308524e-01,-3.768508320853924953e-01,-1.096017433895891457e+00,-5.302322449449194952e-01,1.763626571985058566e-01,1.480980674629721827e+00,2.192521480310308524e-01,-3.768508320853925508e-01,-1.138078879744804484e+00,-1.165556942277237024e-02,8.628120752878358779e-01,1.582505421508573873e+00,-4.434761211176928564e-01,-1.985308626939266408e-01,-9.423009727459316087e-01,-4.574308338455702200e-02,4.659980825880070121e-01,1.581643924149005898e+00,2.240833396364869667e-01,-1.910959506827369647e-01,-9.598575275576104460e-01,-4.511666856870236858e-02,5.030985155933188624e-01,1.452849426718199721e+00,5.192811468085256621e-01,-3.782243639141117386e-01,-1.173242313781182267e+00,-1.421177542359743085e-02,1.362115646587444551e-01,1.517088838488591218e+00,2.200830350888373643e-01,-2.926448105483580586e-01,-1.225348849786987548e+00,7.319746844319796608e-03,1.059574999425642039e-01,1.824010945104189485e+00,1.586880172517821652e-01,-8.923342801147562953e-02,-1.051875238476139618e+00,-6.668250513208507507e-03,7.644162787011299365e-02,1.824010945104189485e+00,1.586880172517821652e-01,-8.923342801147557402e-02,-1.150942468926560602e+00,-3.417884141374329110e-02,1.008006477037553195e+00,1.109072908538983881e+00,5.769988514429331972e-02,-1.056738803118647124e-01,-1.138965165197209251e+00,-2.116910000712457843e-02,1.035882514528387865e+00,1.084858462830226022e+00,6.633300915987963564e-02,-9.030800451191392519e-02,-1.135067714708686504e+00,-6.048521512995487515e-03,1.064816309389590154e+00,1.039910611055899547e+00,7.560474352594728775e-02,-7.530443647085580117e-02,-1.138077384083494570e+00,1.199261053589187678e-02,1.095100483776502820e+00,9.948550512978173721e-01,8.374182330066605451e-02,-6.327096965505048243e-02,-1.146323331842000304e+00,2.818316164951037428e-02,1.119808099165117365e+00,9.572190565378361216e-01,9.168262580416257357e-02,-5.236640223492206037e-02,-1.152972394528083422e+00,-2.424188077762520072e-02,1.050583503038586164e+00,9.288479754540366340e-01,9.923465968250325120e-02,-4.246684899655643608e-02,-1.293774618210917549e+00,8.949888976628334047e-02,1.010940603486105704e+00,1.069285490817948103e+00,2.285410762147501162e-01,-3.730201445555342277e-01,-1.051263504424681638e+00,1.570279851175911123e-02,1.069455041171921916e+00,9.189126746445746008e-01,1.077766521066667593e-01,-4.794544040115958361e-02,-1.107099302851877853e+00,5.932112545334642523e-02,1.443752726282239607e+00,2.337372423006084943e-01,-7.624672190173876762e-01,-6.626560233547893475e-01,-1.232493012264046950e+00,-2.051377193942286181e-01,1.396587474250729599e+00,-5.534531364031279876e-01,-3.473010425293323045e-01,1.176585668363584247e+00,-1.241090592902481582e+00,-2.189740249068454214e-01,1.421394186151247352e+00,-8.616252688244403490e-01,9.724073086562681212e-01,1.727579574952885499e-01,-1.069811437154059242e+00,-3.333590359141092030e-01,1.533587326910897719e+00,-8.616252688244403490e-01,9.724073086562681212e-01,1.727579574952885777e-01,-1.115604856738645623e+00,3.295757482332409838e-01,1.243160519260649632e+00,1.621494212707871085e+00,9.228162044250416696e-02,9.888653223690719880e-04,-1.129364015620478945e+00,3.346536567371808379e-01,9.470667429506043344e-01,1.504871943545323720e+00,-4.046960190109883948e-01,-6.605024085327658272e-03,-1.129592766771881918e+00,3.596271879757237944e-01,9.310353640711567236e-01,1.923576679883096885e+00,-1.154256605831070759e-01,-1.623512443877792366e+00,-1.037054700264577356e+00,3.386406318959969131e-01,7.165498133188016316e-01,1.923576679883096885e+00,-1.154256605831070759e-01,-1.623512443877792366e+00
|
||||
5.166666699999999945e-01,-1.060373049999999928e+00,-6.646902999999999839e-02,9.528332600000000152e-01,1.106505206914654149e+00,6.919575933739201268e-02,-7.524869354750812755e-02,-1.052034237597293531e+00,-7.474202800004010883e-02,9.369564525035272151e-01,1.106505206914654149e+00,6.919575933739201268e-02,-7.524869354750812755e-02,-1.140146782386359359e+00,-1.651513528241314033e-01,9.360385929529460025e-01,1.058160581763392116e+00,-5.377797100619604587e-01,-3.466602849563846789e-01,-1.013177805949712296e+00,-4.410287556963522482e-01,6.156330014163504671e-01,1.132378545810681647e+00,-1.240705860296595076e-01,-5.693886039814806121e-01,-1.030744912564866000e+00,-4.112011608666349405e-01,6.400291169495246901e-01,1.182526942247552837e+00,2.015595926622078815e-01,-5.575395298277450173e-01,-1.182898845482138306e+00,-5.061900985108853668e-01,2.541269316731498140e-01,1.176413438459234184e+00,1.177066255422881819e-01,-5.389599712045031188e-01,-1.239354963818892097e+00,-4.993792728314274676e-01,2.247956287109661444e-01,1.450778731756938278e+00,2.022312333582488297e-01,-3.642748038419068024e-01,-1.078595718383879909e+00,-5.620611646382208670e-01,1.875479436528904587e-01,1.450778731756938278e+00,2.022312333582488297e-01,-3.642748038419068579e-01,-1.134068710588560291e+00,-1.566236737756774439e-02,8.613360321642669071e-01,1.586438900565194210e+00,-4.362598296069064574e-01,-1.961962186663048779e-01,-9.406842592098243472e-01,-4.702208506856547787e-02,4.631279361296007369e-01,1.585360531250696869e+00,2.309881424579716958e-01,-1.862514204691285702e-01,-9.580187977694349932e-01,-4.664519845300835188e-02,5.003375850840432459e-01,1.455497196406544402e+00,5.267312712178663370e-01,-3.728824475683534256e-01,-1.173759394592398531e+00,-1.482077397917463957e-02,1.349098698414259445e-01,1.521823619474225620e+00,2.164443206777731110e-01,-2.854029347927610760e-01,-1.225853291214499485e+00,6.489832980978535448e-03,1.044781439083697222e-01,1.827642630940010893e+00,1.542558861555143046e-01,-8.255225742939710509e-02,-1.052160085086469854e+00,-6.343629262558582449e-03,7.573937240873543364e-02,1.827642630940010893e+00,1.542558861555142768e-01,-8.255225742939704958e-02,-1.142878547781484233e+00,-3.596687692963970728e-02,1.007158861884988488e+00,1.089047813816443222e+00,7.362480327267757751e-02,-6.732560284631369796e-02,-1.130950372424608386e+00,-2.196624163898365512e-02,1.034571918050559924e+00,1.065703402590899129e+00,7.871005708764690356e-02,-5.911173130167972356e-02,-1.127160037053357211e+00,-6.205086415998414817e-03,1.063176587592465028e+00,1.022534730188874308e+00,8.409996885226110608e-02,-5.108687885016443414e-02,-1.130348287141260011e+00,1.224764216391684146e-02,1.093194068035567401e+00,9.792687187264159654e-01,8.877238490173064434e-02,-4.464539389128949209e-02,-1.138775470394933542e+00,2.864786749159781501e-02,1.117701384709815171e+00,9.430461937676309914e-01,9.329413351587438619e-02,-3.880548213038929883e-02,-1.144794545583747825e+00,-2.476717027413309971e-02,1.049180485181286482e+00,9.156344244211228611e-01,9.755208346176665046e-02,-3.348713569701056852e-02,-1.292437148005671776e+00,8.668385027821495781e-02,1.010459502279827060e+00,1.051035601907464700e+00,2.318669312512279257e-01,-3.704594694178153791e-01,-1.044179554084322392e+00,1.600018632376402905e-02,1.068460843745156819e+00,9.059855110800166811e-01,1.019874906617118243e-01,-3.637346024143962159e-02,-1.100273457167107338e+00,6.444475444461221503e-02,1.441262440683555468e+00,1.932683249681140802e-01,-7.802499999676536513e-01,-6.434219661358916431e-01,-1.228192423361715857e+00,-2.003141284852374415e-01,1.403498754755221789e+00,-5.638627749500332298e-01,-3.148432882587663961e-01,1.170811958395663321e+00,-1.236825462006202248e+00,-2.132263676443739153e-01,1.428786685118306421e+00,-9.203799607027304264e-01,9.806848003376263945e-01,1.149129535307666650e-01,-1.066188021180719758e+00,-3.253368463620224804e-01,1.544207156096242484e+00,-9.203799607027304264e-01,9.806848003376263945e-01,1.149129535307666650e-01,-1.111303173061193528e+00,3.319267693625662652e-01,1.237108439592850662e+00,1.618488703655859062e+00,8.476199129764945550e-02,8.615977818393889473e-03,-1.122867375035582427e+00,3.360288409112605623e-01,9.409056944685727508e-01,1.498094040352914824e+00,-4.263113311874690559e-01,3.302363617814844856e-03,-1.122926768978123047e+00,3.609008519364308998e-01,9.247157519636858281e-01,1.945621825985047737e+00,-1.205659029550918693e-01,-1.618936445290430459e+00,-1.025625284841374052e+00,3.392639979299977848e-01,7.124139655745242994e-01,1.945621825985047737e+00,-1.205659029550918693e-01,-1.618936445290430459e+00
|
||||
5.333333300000000499e-01,-1.052932720000000044e+00,-6.651039999999999730e-02,9.513624099999999917e-01,1.088147706612977217e+00,7.946853953214691457e-02,-4.420943829846910034e-02,-1.044505576471658426e+00,-7.479174087236917234e-02,9.355366730571397227e-01,1.088147706612977217e+00,7.946853953214691457e-02,-4.420943829846910034e-02,-1.129638631181163033e+00,-1.680013234050479753e-01,9.372236082722651407e-01,1.025559577823098367e+00,-5.348529246968577455e-01,-3.237499450459548345e-01,-1.003755292991727277e+00,-4.512107611034818500e-01,6.235450635412128628e-01,1.102391758756216200e+00,-1.529646468164502227e-01,-5.466649015288364000e-01,-1.022443934969478718e+00,-4.205922086695095818e-01,6.464584196674214578e-01,1.150420075403827402e+00,1.698801124913638938e-01,-5.468624838206959105e-01,-1.168856340651279968e+00,-5.347785440517638378e-01,2.635496806022266658e-01,1.145306276625749353e+00,1.012678087154432194e-01,-5.294028599278483016e-01,-1.225436200653337027e+00,-5.297282631842957779e-01,2.341010799078604432e-01,1.422670073052795914e+00,1.927286388179907939e-01,-3.541263513599074986e-01,-1.063735459189607102e+00,-5.909458260737424640e-01,1.985310813211962622e-01,1.422670073052795914e+00,1.927286388179907939e-01,-3.541263513599075541e-01,-1.129247673215600933e+00,-1.975061781766590530e-02,8.598547013411155238e-01,1.590395644738187730e+00,-4.278352788657106553e-01,-1.914039780677946057e-01,-9.387118802635502357e-01,-4.781450239484302117e-02,4.600274262278889470e-01,1.589154375461458324e+00,2.398295083529254912e-01,-1.789101380051065504e-01,-9.557442376561310349e-01,-4.774464265535882657e-02,4.973755948156757811e-01,1.457764631960391633e+00,5.361151960307141140e-01,-3.652983204332344025e-01,-1.174624076948671547e+00,-1.542026163221280055e-02,1.338636080521021232e-01,1.526515393379926033e+00,2.138946752312212152e-01,-2.756455346132609674e-01,-1.226789666721618932e+00,5.546680666469065712e-03,1.033161932378624942e-01,1.831399498575883245e+00,1.509192938059980282e-01,-7.335635706318159588e-02,-1.052889810880686117e+00,-5.689887140546138339e-03,7.516438551758092279e-02,1.831399498575883245e+00,1.509192938059980005e-01,-7.335635706318154037e-02,-1.135779963663005265e+00,-3.772414133637295997e-02,1.006102660783658731e+00,1.071138120475608746e+00,8.075295812040853005e-02,-4.243196809478407688e-02,-1.124009404333762285e+00,-2.293327238647764610e-02,1.033166569968568815e+00,1.048469140164285607e+00,8.235494544778174109e-02,-4.067955792500037304e-02,-1.120408835619282506e+00,-6.621533878286213481e-03,1.061485977623769283e+00,1.006909080846234206e+00,8.398138838059177047e-02,-3.895692279643740014e-02,-1.123830187334913466e+00,1.223849238662836833e-02,1.091224009136876782e+00,9.653234851785983395e-01,8.532898170279930306e-02,-3.756383208412691216e-02,-1.132464473237454694e+00,2.891068211326867574e-02,1.115474343808837476e+00,9.304560066035773014e-01,8.659299299102612979e-02,-3.629521614813825681e-02,-1.137865955536823570e+00,-2.532731842488980881e-02,1.047551914916283744e+00,9.039907126107163959e-01,8.772524766675217356e-02,-3.510937639780461333e-02,-1.295731126983513670e+00,7.993887422282092148e-02,1.013609837321883811e+00,1.029431935261056585e+00,2.531369085200920188e-01,-3.480035130075562200e-01,-1.037960916971197856e+00,1.512496044548844454e-02,1.068057535855411411e+00,8.948454814508842725e-01,8.876980104303169861e-02,-3.570748041571866066e-02,-1.096986530457849440e+00,6.853249165905264673e-02,1.438944765275775417e+00,1.555058999012370324e-01,-7.980786373801224132e-01,-6.181686325304147633e-01,-1.225360262834967351e+00,-1.970974890734731033e-01,1.409832531609168882e+00,-5.756994759018996266e-01,-2.792488439402272538e-01,1.181299500393990565e+00,-1.233823014975074850e+00,-2.091195379555806366e-01,1.435612113942470458e+00,-9.867820236353384011e-01,9.872876583203499257e-01,6.663507317638511784e-02,-1.062038130459402208e+00,-3.156670430015500739e-01,1.554546395757912425e+00,-9.867820236353385122e-01,9.872876583203500367e-01,6.663507317638511784e-02,-1.105931849539735001e+00,3.335660841074091776e-01,1.231521730780910096e+00,1.623707108055106207e+00,8.184394441417702781e-02,-2.180975046296628264e-02,-1.116465915252938590e+00,3.395439732394521237e-01,9.353124765727947043e-01,1.500303676750228687e+00,-4.430970652164212265e-01,-2.923329441935244161e-02,-1.115467182509330080e+00,3.644300176220973131e-01,9.191748799029059169e-01,1.962399678410249093e+00,-1.176923574181071019e-01,-1.652535554175296850e+00,-1.015337147543567298e+00,3.400508437795061178e-01,7.084916751830073745e-01,1.962399678410249093e+00,-1.176923574181071019e-01,-1.652535554175296850e+00
|
||||
5.500000000000000444e-01,-1.046079299999999934e+00,-6.781700000000000228e-02,9.507719000000000031e-01,1.073166796838258552e+00,7.724682177505361180e-02,-3.100936946100547875e-02,-1.037506173885456962e+00,-7.621264545253125799e-02,9.350854105732421262e-01,1.073166796838258552e+00,7.724682177505361180e-02,-3.100936946100547875e-02,-1.121294902099937429e+00,-1.706013532354488937e-01,9.380400506153929729e-01,9.960628310933294927e-01,-5.337841665607537811e-01,-3.051160089910086581e-01,-9.962388590359203544e-01,-4.607154928060848698e-01,6.311329540167112118e-01,1.074977121748472042e+00,-1.809104527853482580e-01,-5.264257272836971868e-01,-1.015974407328168239e+00,-4.294193476907940399e-01,6.525801244659642508e-01,1.121655287662428169e+00,1.387840895047424139e-01,-5.374981555301632241e-01,-1.156128864302288672e+00,-5.609846962600193443e-01,2.729204065286958691e-01,1.117808293681110898e+00,8.910175872449663248e-02,-5.233814298161765244e-01,-1.212841615156275088e+00,-5.572998256589324351e-01,2.435249715637931855e-01,1.396676008595413077e+00,1.863838887816808287e-01,-3.487056863251471461e-01,-1.050612174197383508e+00,-6.177615716329338813e-01,2.090876320115067077e-01,1.396676008595413077e+00,1.863838887816808287e-01,-3.487056863251472016e-01,-1.122896061469922158e+00,-2.353718117825338851e-02,8.584540097488447818e-01,1.593778536971366400e+00,-4.174415527039813667e-01,-1.843718245008926504e-01,-9.360299074164536437e-01,-4.801358182895401616e-02,4.566585770295349955e-01,1.592484027971623028e+00,2.509258008085715752e-01,-1.696670686406445139e-01,-9.526660251137206714e-01,-4.827837751184772819e-02,4.941798327633727950e-01,1.459008523302504967e+00,5.476372320031434038e-01,-3.562566998302088561e-01,-1.175586582523937551e+00,-1.597481693958596738e-02,1.331298095860698472e-01,1.530542525849934776e+00,2.132999949456950428e-01,-2.640724173045973511e-01,-1.227924954043526862e+00,4.543054762287685594e-03,1.025730135326252124e-01,1.834775432103777915e+00,1.496736405258294600e-01,-6.232971857492003442e-02,-1.053875789239505645e+00,-4.772068823724440190e-03,7.464343603674108985e-02,1.834775432103777915e+00,1.496736405258294322e-01,-6.232971857491997891e-02,-1.129427901991286953e+00,-3.940778950710830536e-02,1.004945111382869349e+00,1.056327371327213438e+00,7.585556932383460960e-02,-3.410762313146376012e-02,-1.117916710308573647e+00,-2.409995180096074358e-02,1.031832551428998768e+00,1.033992059704764488e+00,7.451878928233501842e-02,-3.748472156479087936e-02,-1.114592574221177523e+00,-7.362025277309565408e-03,1.059936448361851413e+00,9.933836869615511045e-01,7.299502170158221614e-02,-4.076136867936959451e-02,-1.118308411047975959e+00,1.190290516562676412e-02,1.089378524186447095e+00,9.528287009417056863e-01,7.157769630967833474e-02,-4.337074486176718813e-02,-1.127180026949395231e+00,2.893212889512750477e-02,1.113292701347520675e+00,9.188068918516775208e-01,7.014554598260304419e-02,-4.572515774175518050e-02,-1.131970032942920978e+00,-2.605837140982869213e-02,1.045932033161343311e+00,8.929455248412717649e-01,6.869653156130475780e-02,-4.781131205888723701e-02,-1.297006431014976480e+00,7.376526684616306617e-02,1.015492745467495128e+00,1.014758689834944327e+00,2.738476550021903821e-01,-3.189300784059062588e-01,-1.032394558588186184e+00,1.317577254761677363e-02,1.068344632435104247e+00,8.842128122524357536e-01,6.727813428990088440e-02,-4.664520986405055331e-02,-1.097213767488915082e+00,7.196629197781392873e-02,1.436895358852818827e+00,1.195376200291717872e-01,-8.155849975462251544e-01,-5.854494728839825246e-01,-1.223781987465652143e+00,-1.952864133994502149e-01,1.415845391206607129e+00,-5.874206089464942826e-01,-2.416417877279797011e-01,1.205283564161078180e+00,-1.231914799315166897e+00,-2.064639733203188776e-01,1.442106659721740458e+00,-1.057733015898135953e+00,9.924762364672572446e-01,2.828028232219299831e-02,-1.057581399280491885e+00,-3.046608216962970461e-01,1.564470973849324320e+00,-1.057733015898135953e+00,9.924762364672572446e-01,2.828028232219300178e-02,-1.099156632458934135e+00,3.345995690217364871e-01,1.226260304402010837e+00,1.632836414866244201e+00,8.805073483116337973e-02,-6.006253043526354335e-02,-1.111121425206418989e+00,3.437838881018895343e-01,9.301874822872535642e-01,1.505962878422423712e+00,-4.540171630794367363e-01,-7.175344218279619546e-02,-1.108945828077193108e+00,3.686793438473456863e-01,9.141806787729510608e-01,1.973111112344035689e+00,-1.120333683324769014e-01,-1.693829116419838465e+00,-1.007507640520358239e+00,3.412164037611099543e-01,7.045050678938049593e-01,1.973111112344035467e+00,-1.120333683324769014e-01,-1.693829116419838465e+00
|
||||
5.666666700000000390e-01,-1.039672280000000004e+00,-7.047006999999999577e-02,9.510898599999999536e-01,1.061357441162098736e+00,6.312947161027464282e-02,-3.571820496503121806e-02,-1.030918530870033933e+00,-7.909005218836881457e-02,9.356263840738675563e-01,1.061357441162098736e+00,6.312947161027464282e-02,-3.571820496503121806e-02,-1.115113380889527273e+00,-1.731166313071526852e-01,9.385825099037127250e-01,9.695407385057994709e-01,-5.353663468771255873e-01,-2.899050438672457486e-01,-9.902702264226725948e-01,-4.696887601293583403e-01,6.386283136846617747e-01,1.050120245870763691e+00,-2.100794064569125874e-01,-5.075195543117223540e-01,-1.011061000372683205e+00,-4.378089601851182788e-01,6.585576909261434686e-01,1.096056113151961053e+00,1.060408045413291922e-01,-5.284681362891300305e-01,-1.143736814878811181e+00,-5.855962347787473377e-01,2.821931550153041202e-01,1.093441816070674477e+00,7.437205218158000897e-02,-5.186270539355263276e-01,-1.200450076245398900e+00,-5.831303585734071149e-01,2.526714440680373208e-01,1.371407551035250583e+00,1.764999455134220741e-01,-3.457491325625376977e-01,-1.037739328425910434e+00,-6.432682271452041523e-01,2.199820894833603435e-01,1.371407551035250583e+00,1.764999455134220741e-01,-3.457491325625377532e-01,-1.115041702297511872e+00,-2.703508390403470268e-02,8.571911793733765217e-01,1.596356054734263230e+00,-4.051464436868502661e-01,-1.766348176876105514e-01,-9.326994580497265375e-01,-4.806319035239778326e-02,4.531246643065839907e-01,1.595127734552711285e+00,2.637049712285818859e-01,-1.602151391055949559e-01,-9.488683071981517392e-01,-4.864684579386020086e-02,4.908431094951993812e-01,1.459128058509719938e+00,5.606824236655001403e-01,-3.474380895413293202e-01,-1.176461484837677762e+00,-1.666453538681433172e-02,1.326913379080285615e-01,1.533643535632857269e+00,2.150213389397638286e-01,-2.525186598403164617e-01,-1.229047992960988545e+00,3.384531631219100944e-03,1.022495893929992600e-01,1.837568599969704009e+00,1.509301726656185894e-01,-5.129087599461227415e-02,-1.054940910597727433e+00,-4.002454451298933027e-03,7.410530217395704111e-02,1.837568599969704009e+00,1.509301726656185616e-01,-5.129087599461221864e-02,-1.123641522284060335e+00,-4.108204732507883539e-02,1.003761674092202405e+00,1.044520915511591763e+00,5.995363390659776137e-02,-4.185910834385265372e-02,-1.112438028141393698e+00,-2.551773114395780584e-02,1.030631852558328676e+00,1.022246611520457815e+00,5.666381605258272863e-02,-4.843658935661711296e-02,-1.109427694492426841e+00,-8.464584954956909379e-03,1.058581278598482722e+00,9.818789176306339517e-01,5.305690258328778913e-02,-5.482782948147292557e-02,-1.113450878408428935e+00,1.121141611425544027e-02,1.087709606260490292e+00,9.416003340380603159e-01,4.981916030265549911e-02,-5.992732728654344421e-02,-1.122550131017887587e+00,2.867763753075289884e-02,1.111219550320609484e+00,9.078169256013826072e-01,4.661769433245278177e-02,-6.453331001449350013e-02,-1.126812408527598341e+00,-2.705880225616775353e-02,1.044438741760413736e+00,8.821380571946231264e-01,4.347829316971593000e-02,-6.865038967407426085e-02,-1.295702024309088873e+00,6.873778288138718273e-02,1.015581189947626806e+00,1.002374694118390641e+00,2.830943423041594187e-01,-3.011448530647740651e-01,-1.027289064192154822e+00,1.043201932935607090e-02,1.069049534804359380e+00,8.735518044797464521e-01,4.057393514307076204e-02,-6.635736628884567057e-02,-1.099623133624165083e+00,7.512229282156446253e-02,1.434937041110423639e+00,8.410314410594513235e-02,-8.332638601602333495e-01,-5.462391681282519063e-01,-1.222616298361272280e+00,-1.942884953654686608e-01,1.421627923414439776e+00,-5.989651060943690375e-01,-2.036983984309179985e-01,1.236648777592427528e+00,-1.230374507852278754e+00,-2.046485655616605281e-01,1.448333986947124341e+00,-1.130115457965526815e+00,9.953919749850346221e-01,-3.581735890654922597e-03,-1.053054017528665565e+00,-2.928791980007071638e-01,1.573954765408882794e+00,-1.130115457965526815e+00,9.953919749850346221e-01,-3.581735890654922597e-03,-1.091069499106396501e+00,3.350911185818734039e-01,1.221184417575742476e+00,1.644615499197706665e+00,1.046664043335442801e-01,-1.073114942014921358e-01,-1.107090494191961705e+00,3.488218273449110174e-01,9.254794644031820727e-01,1.513850996299497931e+00,-4.567437506753326826e-01,-1.249310868414278686e-01,-1.103623651765646363e+00,3.736850082097618042e-01,9.096510741103895903e-01,1.975496567000721404e+00,-1.048224516252983241e-01,-1.743795662453238471e+00,-1.002925699863786768e+00,3.426191418046898862e-01,7.001215649766832083e-01,1.975496567000721404e+00,-1.048224516252983241e-01,-1.743795662453238471e+00
|
||||
5.833333299999999833e-01,-1.034007960000000059e+00,-7.358681999999999723e-02,9.515606800000000476e-01,1.052735122927140443e+00,4.814996570637011114e-02,-4.586059761769646637e-02,-1.025114110806220280e+00,-8.243356739115843823e-02,9.363066375327854240e-01,1.052735122927140443e+00,4.814996570637011114e-02,-4.586059761769646637e-02,-1.110253925776571338e+00,-1.756165029916703091e-01,9.388876160667927184e-01,9.464104367618529912e-01,-5.442400829592134448e-01,-2.835245093371090430e-01,-9.853946610534188855e-01,-4.791114570198962697e-01,6.468056999633426951e-01,1.029241278058438125e+00,-2.445117919303017584e-01,-4.960021628912398284e-01,-1.007122551905458963e+00,-4.466020107613283829e-01,6.650592163463995288e-01,1.075103941050074674e+00,6.780461679350477389e-02,-5.253878368587794334e-01,-1.130582280714485854e+00,-6.089923687234448657e-01,2.915872881089541235e-01,1.073442932681891948e+00,4.969848801797813881e-02,-5.193647584734857325e-01,-1.186952247758464196e+00,-6.074384445912466290e-01,2.613545556356713928e-01,1.347987782053590600e+00,1.558222265765520365e-01,-3.487338748120538678e-01,-1.023830049604914194e+00,-6.683193628145736032e-01,2.322924349054640292e-01,1.347987782053590600e+00,1.558222265765520365e-01,-3.487338748120539234e-01,-1.107575070822363283e+00,-3.030419904470732506e-02,8.561740719958963464e-01,1.598609354796565185e+00,-3.937762768914803702e-01,-1.701499028085369236e-01,-9.295001157641501477e-01,-4.837926026554152659e-02,4.500632364150919940e-01,1.597487180043598354e+00,2.755244102813454443e-01,-1.522134107723947805e-01,-9.452308611966385721e-01,-4.923590555719561945e-02,4.879585761582010406e-01,1.459124404825156818e+00,5.727311924744088456e-01,-3.400881694294466406e-01,-1.177106027699678092e+00,-1.749475188757403099e-02,1.325424531404518769e-01,1.536114992400290147e+00,2.186975661389898573e-01,-2.430816110270764274e-01,-1.229959570786453016e+00,2.183145876241181227e-03,1.023217764385616346e-01,1.840141503749112228e+00,1.542290357885514607e-01,-4.226877750462099126e-02,-1.055885848785355963e+00,-3.624644087157500617e-03,7.360673717471140354e-02,1.840141503749112228e+00,1.542290357885514329e-01,-4.226877750462093575e-02,-1.118445841827624854e+00,-4.290681744405680509e-02,1.002725033625310624e+00,1.035700060654439536e+00,4.340256441662246334e-02,-5.461712808522389134e-02,-1.107482845385417969e+00,-2.721758846771983598e-02,1.029621830331274301e+00,1.013193379488553481e+00,3.840773387687530099e-02,-6.395310821173524896e-02,-1.104707629787391454e+00,-9.928866834646332684e-03,1.057450622756562986e+00,9.724262546786669459e-01,3.297534737241909070e-02,-7.302233579214696679e-02,-1.108940671215912666e+00,1.012943361907562081e-02,1.086286964282316303e+00,9.317631164535161714e-01,2.813647600107696198e-02,-8.025709775799767798e-02,-1.118174930366299114e+00,2.804629574163894010e-02,1.109401644004077925e+00,8.976765030630605713e-01,2.337538905210716916e-02,-8.678939866305711293e-02,-1.122181432959223235e+00,-2.843441903398992790e-02,1.043232157956883954e+00,8.717888236222460785e-01,1.874049481264391734e-02,-9.263791245654721951e-02,-1.297568604023373151e+00,6.181748777821019503e-02,1.018900738881992840e+00,9.979664021897521886e-01,3.300150019606469254e-01,-2.395641692732400907e-01,-1.022607818008438807e+00,7.250989933524465414e-03,1.069801613364490533e+00,8.631511559089012353e-01,1.451980789325886360e-02,-8.929164281633490685e-02,-1.101819563981786487e+00,7.798475435226252805e-02,1.433013517803453762e+00,4.850909584282933618e-02,-8.519971358215647772e-01,-5.044157846889791852e-01,-1.220645672999395748e+00,-1.935551946085391495e-01,1.427265830307292038e+00,-6.110251567978416398e-01,-1.650483635687336192e-01,1.270666655142678181e+00,-1.228066598949389077e+00,-2.030687090187675847e-01,1.454379620156725395e+00,-1.204419961054485233e+00,9.954175831708739208e-01,-3.412370618265433975e-02,-1.048011534460703498e+00,-2.804717241197929312e-01,1.583207908105392026e+00,-1.204419961054485233e+00,9.954175831708739208e-01,-3.412370618265433975e-02,-1.082021685873557404e+00,3.349703166691822553e-01,1.216418033359099038e+00,1.652138025058718984e+00,1.273699054794761032e-01,-1.124773331996768849e-01,-1.104375432634837839e+00,3.517466932216760656e-01,9.212816459498971433e-01,1.516733259887704799e+00,-4.538263035858483008e-01,-1.336852453856930967e-01,-1.100762797130209636e+00,3.766298656620268859e-01,9.055174050102700045e-01,1.972443676540380775e+00,-1.023745532486571574e-01,-1.750966724907154992e+00,-1.000834626172854014e+00,3.454301905672031436e-01,6.956395317276540258e-01,1.972443676540380775e+00,-1.023745532486571574e-01,-1.750966724907154770e+00
|
||||
5.999999999999999778e-01,-1.029561680000000035e+00,-7.705301000000000511e-02,9.516246200000000321e-01,1.047336009251730538e+00,4.180739736698162873e-02,-5.306099379395207843e-02,-1.020637654290371898e+00,-8.604840261322430073e-02,9.364754952284464196e-01,1.047336009251730538e+00,4.180739736698162873e-02,-5.306099379395207843e-02,-1.106439379030638159e+00,-1.786219174628687900e-01,9.390672919963281018e-01,9.239844101257337350e-01,-5.587438734529370787e-01,-2.769196946331338727e-01,-9.800261827220549948e-01,-4.890435706488067691e-01,6.558131673335347855e-01,1.010173636946161135e+00,-2.800697896113945595e-01,-4.858878731212100122e-01,-1.002589877870175838e+00,-4.559838254504590127e-01,6.723593622323019714e-01,1.056746042378381212e+00,2.878077280379421829e-02,-5.227185570901569100e-01,-1.116293341694995389e+00,-6.319656944072163940e-01,3.019594185352448279e-01,1.055996547703121680e+00,2.151093517579333314e-02,-5.201581674386724918e-01,-1.172177994037696847e+00,-6.312963442039289941e-01,2.708071540848126513e-01,1.323455696583281327e+00,1.302480277096308425e-01,-3.536202377984627443e-01,-1.008721190310292393e+00,-6.932513682569746427e-01,2.462430969014814952e-01,1.323455696583281327e+00,1.302480277096308425e-01,-3.536202377984627998e-01,-1.102246853746069899e+00,-3.380734180159003510e-02,8.555476313002357003e-01,1.601477079630313938e+00,-3.861616055267561021e-01,-1.658368509258455192e-01,-9.270084463196155422e-01,-4.933675425216994814e-02,4.480904262349140188e-01,1.600407207022747746e+00,2.844303257338754998e-01,-1.459669110867264918e-01,-9.424023144180138090e-01,-5.043607215791003073e-02,4.861101312284190068e-01,1.460316932144428481e+00,5.820392773879571324e-01,-3.340554723642639723e-01,-1.177444534032247692e+00,-1.852628086790647499e-02,1.327956333703474434e-01,1.538498883270926543e+00,2.250527373226481886e-01,-2.366591379376016546e-01,-1.230582366627477997e+00,9.522478917991933356e-04,1.029466192829855686e-01,1.843429718075354273e+00,1.600890707449725558e-01,-3.600139956780134404e-02,-1.056645807323403297e+00,-3.753001098539992739e-03,7.321652401072573091e-02,1.843429718075354273e+00,1.600890707449725558e-01,-3.600139956780128159e-02,-1.114091430007649874e+00,-4.549549145205891709e-02,1.002098909623580170e+00,1.029533708691101612e+00,3.560664043010739604e-02,-6.404933772033047368e-02,-1.103183267394092670e+00,-2.972455295945536716e-02,1.028969944415167426e+00,1.006044611054891513e+00,2.897857167862366232e-02,-7.570119487560747484e-02,-1.100455507413965028e+00,-1.225085208384161031e-02,1.056687704860228338e+00,9.635083679816444091e-01,2.180579424433191568e-02,-8.700876744895889858e-02,-1.104709782709871302e+00,8.149800187601505957e-03,1.085279670101728877e+00,9.210929776132280589e-01,1.545017613695157631e-02,-9.601944741524032212e-02,-1.113930652629347096e+00,2.648621892427352464e-02,1.108068022197413072e+00,8.855601839937463637e-01,9.217378909749480639e-03,-1.041451888641788254e-01,-1.118071021465422588e+00,-3.092550540030499645e-02,1.042711470999193590e+00,8.586003305861806822e-01,3.186912918030846299e-03,-1.114278712925242526e-01,-1.289623372964961545e+00,5.887747872146765343e-02,1.015669334347734099e+00,9.985606204093606664e-01,3.430035993424425111e-01,-2.056890640594003783e-01,-1.018420901704204740e+00,3.994276148573380758e-03,1.069906821529014618e+00,8.496402028729782563e-01,-2.380477120032209199e-03,-1.069871897265402688e-01,-1.101173022768992427e+00,8.086801314939776053e-02,1.431151712872562598e+00,1.138870012635747643e-02,-8.731019786169408325e-01,-4.614909473494989700e-01,-1.215972006219528279e+00,-1.924528594386013258e-01,1.433027341810110933e+00,-6.251894005313369806e-01,-1.270538636050772274e-01,1.301509863923171473e+00,-1.223207769066868122e+00,-2.010746383808032500e-01,1.460487191814745067e+00,-1.278050222184922591e+00,9.905972423183053710e-01,-6.702878372225397341e-02,-1.041438426527211192e+00,-2.679953019437269490e-01,1.592734353113344437e+00,-1.278050222184922591e+00,9.905972423183053710e-01,-6.702878372225397341e-02,-1.073532765861962890e+00,3.342012412728040949e-01,1.211139370433998774e+00,1.662777848075882359e+00,1.524084493557098796e-01,-1.286083112898296632e-01,-1.102504742370076007e+00,3.553999306821107318e-01,9.168642200695921174e-01,1.522717419344900236e+00,-4.490977578895981037e-01,-1.554708975186973874e-01,-1.098476033301688526e+00,3.803041782975697949e-01,9.012346758555612736e-01,1.967453241044176737e+00,-9.720775247021479215e-02,-1.769644407206517611e+00,-9.999726665657058255e-01,3.484650948719291152e-01,6.907800720122847515e-01,1.967453241044176737e+00,-9.720775247021477827e-02,-1.769644407206517611e+00
|
||||
6.166666699999999723e-01,-1.026254760000000044e+00,-8.016797999999999980e-02,9.508863499999999913e-01,1.038267519420831064e+00,4.743980075219439430e-02,-5.010497985176244617e-02,-1.017392545151618810e+00,-8.926603973842678341e-02,9.357622711370278124e-01,1.038267519420831064e+00,4.743980075219439430e-02,-5.010497985176244617e-02,-1.102862884562276768e+00,-1.820988037425299022e-01,9.396875786273011233e-01,9.007496595164307118e-01,-5.738434938357065418e-01,-2.649023416343538329e-01,-9.734661057645668247e-01,-4.988057896775399125e-01,6.655724915755030224e-01,9.904979843882389945e-01,-3.135179537724565035e-01,-4.716074264596962218e-01,-9.968776418441018805e-01,-4.653651075254279235e-01,6.804529324656077849e-01,1.038393231725046162e+00,-7.986085995123019116e-03,-5.157917838114928211e-01,-1.100872891174159207e+00,-6.547189120928722517e-01,3.138136833518887503e-01,1.039266277872126443e+00,-3.421182744058462238e-04,-5.186347727184353884e-01,-1.156422408456839968e+00,-6.549423024039688901e-01,2.820614046308428380e-01,1.295900523655392877e+00,1.090472398168128298e-01,-3.591313223264105958e-01,-9.928702678837614259e-01,-7.180101459425696220e-01,2.612506136594937578e-01,1.295900523655392877e+00,1.090472398168128160e-01,-3.591313223264106513e-01,-1.099668526599220986e+00,-3.800884461050811625e-02,8.548804322919566490e-01,1.605987211712542884e+00,-3.847789210793946535e-01,-1.640901751669721909e-01,-9.248687897069144404e-01,-5.112632748437913321e-02,4.471144152223943125e-01,1.604845028845133026e+00,2.909856200528988524e-01,-1.411045205357736032e-01,-9.399834663019959180e-01,-5.248591097136251493e-02,4.852083818880498223e-01,1.463425087869781427e+00,5.894092837312010502e-01,-3.289554275655075521e-01,-1.177294556093527733e+00,-1.966593012220540365e-02,1.334975493891419895e-01,1.541755464961447553e+00,2.329169031657857825e-01,-2.326780147807142318e-01,-1.230700182214400362e+00,-2.145867089734521116e-04,1.041123436623311166e-01,1.847982206689007922e+00,1.672229260244465499e-01,-3.210535250498581378e-02,-1.056961596987952445e+00,-4.227895183376975674e-03,7.314878517658615631e-02,1.847982206689007922e+00,1.672229260244465221e-01,-3.210535250498575827e-02,-1.110582613966080157e+00,-4.845114102684280888e-02,1.001597933462663903e+00,1.019949049226219762e+00,4.029826412304313848e-02,-6.237055434417484306e-02,-1.099565365058517097e+00,-3.240738451364791328e-02,1.028262029635612862e+00,9.958264874794349186e-01,3.261913437677342598e-02,-7.534519993828107942e-02,-1.096727881753148282e+00,-1.465791519698288192e-02,1.055792942710464866e+00,9.522383781904933953e-01,2.432971146328182302e-02,-8.792121470977347364e-02,-1.100869059354473656e+00,6.060542309661274413e-03,1.084172169240542827e+00,9.088032114359879676e-01,1.700370531305672728e-02,-9.792956265112078007e-02,-1.109995959750651018e+00,2.469044517549646989e-02,1.106759213023327915e+00,8.724271238822605135e-01,9.831723708761092029e-03,-1.069434082951648407e-01,-1.114425989683716534e+00,-3.361853495194636054e-02,1.042220183052361859e+00,8.448361703677523815e-01,2.911496562808276508e-03,-1.150194247483266596e-01,-1.281320254284066040e+00,5.457287408984283494e-02,1.013149290046826412e+00,9.875872609774839495e-01,3.413459741084159393e-01,-1.975714855404893666e-01,-1.014737292803409296e+00,1.699374478602036498e-03,1.068669538525929052e+00,8.357516401887669089e-01,-3.443675133043250236e-03,-1.098516153000532458e-01,-1.096625094680291568e+00,8.342697339918553334e-02,1.429069807284066185e+00,-3.081195904128578369e-02,-8.963176558808292338e-01,-4.162335586987977454e-01,-1.208030026079538910e+00,-1.911148841691547862e-01,1.439185818370811276e+00,-6.408470258681252529e-01,-8.660747309335785349e-02,1.329011686992304098e+00,-1.215189743540487921e+00,-1.987329078474598942e-01,1.466960606569901460e+00,-1.355073081082738717e+00,9.820594494351821968e-01,-1.054446304385168454e-01,-1.032475886188686687e+00,-2.551724903162274627e-01,1.602747206177210559e+00,-1.355073081082738717e+00,9.820594494351823078e-01,-1.054446304385168454e-01,-1.068375353071103318e+00,3.336213312627259731e-01,1.205570647350787894e+00,1.673616413684382520e+00,1.686681425728397965e-01,-1.483159866074914568e-01,-1.101144549070697032e+00,3.592562302324683876e-01,9.120478105462143104e-01,1.531069167706922807e+00,-4.447718926637780346e-01,-1.815171867347607215e-01,-1.096603338780400838e+00,3.841909510240307801e-01,8.966085163092912813e-01,1.962799396753737602e+00,-8.986161357837949004e-02,-1.791646351192497155e+00,-9.994522909564393931e-01,3.518744899654784319e-01,6.855987984717085704e-01,1.962799396753737602e+00,-8.986161357837949004e-02,-1.791646351192497155e+00
|
||||
6.333333300000000277e-01,-1.023398140000000067e+00,-8.206940000000000068e-02,9.491408999999999541e-01,1.028479829165504178e+00,6.815497636708515994e-02,-2.549987001461037281e-02,-1.014627783819151086e+00,-9.108186235015251764e-02,9.339123846644729054e-01,1.028479829165504178e+00,6.815497636708515994e-02,-2.549987001461037281e-02,-1.097624955480537512e+00,-1.859879274621002443e-01,9.404558800365848681e-01,8.751946475519484236e-01,-5.855694762817176269e-01,-2.456732084994069643e-01,-9.645468633972473782e-01,-5.082314283646440778e-01,6.752790984176745281e-01,9.683550398974687390e-01,-3.407222587395202229e-01,-4.520489870577125702e-01,-9.887739078462994824e-01,-4.745978293357036026e-01,6.886690118842366815e-01,1.018065528932235342e+00,-3.829248068761322704e-02,-5.039965325223210169e-01,-1.084528545074939343e+00,-6.769340202544767982e-01,3.267500575978500299e-01,1.021080379458388698e+00,-1.393922131883375097e-02,-5.135948046873358708e-01,-1.139983804143280377e+00,-6.781468448072734967e-01,2.948557120830689882e-01,1.265425986557193294e+00,9.489072990422600662e-02,-3.629692699731218997e-01,-9.764288206506446244e-01,-7.419871203957475458e-01,2.765764565454406632e-01,1.265425986557193294e+00,9.489072990422599274e-02,-3.629692699731219552e-01,-1.099848875920042435e+00,-4.265340011807733367e-02,8.543475775103320791e-01,1.612298143607129308e+00,-3.904588834358463934e-01,-1.647517679533480051e-01,-9.227649103441408762e-01,-5.342798697105038963e-02,4.474350940031467938e-01,1.610909997987405973e+00,2.952921985154963180e-01,-1.372682942696436259e-01,-9.376474004726776945e-01,-5.507804705483366342e-02,4.855530421894188597e-01,1.468494196892579096e+00,5.949787578101496388e-01,-3.244539473430870236e-01,-1.176393010334335854e+00,-2.062962583987978243e-02,1.349705922213114695e-01,1.546159738990971144e+00,2.409021211681698915e-01,-2.304680547605085505e-01,-1.230019462693840104e+00,-1.066370339925418187e-03,1.060657722231477806e-01,1.853556158391006292e+00,1.742912010903958087e-01,-3.011867935365731760e-02,-1.056494558003169271e+00,-4.718903360139354089e-03,7.388330727515926566e-02,1.853556158391006292e+00,1.742912010903957809e-01,-3.011867935365726556e-02,-1.107419151986410721e+00,-5.200913827073135737e-02,1.001348751285144001e+00,1.009488036230933083e+00,5.942613395777998631e-02,-3.989652928137606830e-02,-1.096256969364511669e+00,-3.545687749916344444e-02,1.027638765123029208e+00,9.846197641031877446e-01,4.994375554219022961e-02,-5.505350775716746220e-02,-1.093297554647933101e+00,-1.737245093592042211e-02,1.054938010624083100e+00,9.400181632679732724e-01,3.975524307528792434e-02,-6.972649707050236623e-02,-1.097363948216743657e+00,3.579890814698720447e-03,1.083156126157456267e+00,8.956646885048658024e-01,3.079380027936191172e-02,-8.138919162500328486e-02,-1.106469648402385930e+00,2.232714518159847547e-02,1.105654226806908280e+00,8.585337145492083488e-01,2.204860089610609364e-02,-9.187950153352035521e-02,-1.110869368714921368e+00,-3.691506778678853296e-02,1.041968220286631830e+00,8.303715567331787506e-01,1.365078066228102294e-02,-1.012840115617679726e-01,-1.269608024211996700e+00,4.667309032096279842e-02,1.010340324608443030e+00,9.803857092053960276e-01,3.453611204294115833e-01,-1.614349813511948839e-01,-1.011613834412854462e+00,4.477611017352361999e-04,1.066691041058742906e+00,8.213841248353515034e-01,6.050602586680856217e-03,-9.500645349802096240e-02,-1.090004163221962141e+00,8.550088162836937122e-02,1.426998262211714330e+00,-7.773034675137560634e-02,-9.176658390835656931e-01,-3.637081533283459400e-01,-1.197252684057153349e+00,-1.902396731431174604e-01,1.445747267796792856e+00,-6.542576012023574306e-01,-4.432565513873416851e-02,1.358661210287285037e+00,-1.204306481609018098e+00,-1.968275931568965742e-01,1.473811087001910103e+00,-1.432791678295578741e+00,9.731180952965712283e-01,-1.411239321833815119e-01,-1.020615745575904176e+00,-2.419273012356990826e-01,1.612488809067707640e+00,-1.432791678295578741e+00,9.731180952965712283e-01,-1.411239321833815119e-01,-1.067960005605317342e+00,3.330649558143342626e-01,1.199900874762992453e+00,1.684527123525372261e+00,1.707252847063585321e-01,-1.404433898519801271e-01,-1.101036151789466011e+00,3.617102418991560153e-01,9.066909838722235770e-01,1.542203446497368846e+00,-4.452217582343793167e-01,-1.805401881457421864e-01,-1.096604838396606274e+00,3.868209751292317478e-01,8.915071359853938837e-01,1.962878075707036984e+00,-7.980193115790949754e-02,-1.785883172556010701e+00,-9.987996448873771582e-01,3.571362773819929948e-01,6.804129778170158183e-01,1.962878075707036984e+00,-7.980193115790948366e-02,-1.785883172556010701e+00
|
||||
6.500000000000000222e-01,-1.020281729999999998e+00,-8.295879000000000447e-02,9.471101699999999735e-01,1.016140994787858132e+00,9.631793135796899719e-02,1.560403335609656002e-02,-1.011567449818181696e+00,-9.178903832165427601e-02,9.317433440438389614e-01,1.016140994787858132e+00,9.631793135796899719e-02,1.560403335609656002e-02,-1.090263680272035796e+00,-1.900000739260310212e-01,9.417435854598004141e-01,8.474609592337707387e-01,-5.903309333211879117e-01,-2.187064646953822411e-01,-9.532428404337549566e-01,-5.166664120769125512e-01,6.846659873748976999e-01,9.427311674596254853e-01,-3.602234599677862636e-01,-4.249545331147428495e-01,-9.783506779529000941e-01,-4.830578984971260481e-01,6.967693544093910285e-01,9.945031990315510440e-01,-6.112252696970186389e-02,-4.855365788622931222e-01,-1.067293382562169102e+00,-6.983202778838220048e-01,3.406155709174491508e-01,1.000225435355735160e+00,-1.746005784331280258e-02,-5.038823000007157660e-01,-1.122956212078845883e+00,-7.006858299928682143e-01,3.091503591596097000e-01,1.236803389009972332e+00,9.177470543797133784e-02,-3.603135163633307547e-01,-9.591912835946025950e-01,-7.641540377604258971e-01,2.914647888599717351e-01,1.236803389009972332e+00,9.177470543797132396e-02,-3.603135163633308102e-01,-1.100950306849175275e+00,-4.799413321114914116e-02,8.540824131593423019e-01,1.620405151563112600e+00,-3.990087454698456604e-01,-1.618622299623797556e-01,-9.203164446569416235e-01,-5.518645196619751531e-02,4.485928736531927252e-01,1.618600705506933357e+00,2.970644649547855565e-01,-1.285727225620169334e-01,-9.350572034294930557e-01,-5.723601093260786282e-02,4.866885606892242810e-01,1.475975642910409835e+00,5.983451538035260420e-01,-3.142110861401485877e-01,-1.174452887216452801e+00,-2.180274347303797627e-02,1.366479854420519779e-01,1.552043794284281075e+00,2.486762565800824665e-01,-2.238421834923712828e-01,-1.228361149480779346e+00,-2.309451885268341831e-03,1.082241077990615807e-01,1.860184965555129910e+00,1.809781392796768196e-01,-2.402884608859624446e-02,-1.055034098555373889e+00,-4.889409154220847840e-03,7.489211365693258793e-02,1.860184965555129910e+00,1.809781392796767918e-01,-2.402884608859619242e-02,-1.104005792377844353e+00,-5.578434010562127038e-02,1.001337839857308065e+00,9.968436122607217120e-01,8.721116937614215026e-02,9.079059604906487965e-04,-1.092820817010573542e+00,-3.845145530851522969e-02,1.027110138640304537e+00,9.716958372522825904e-01,7.733904884329571849e-02,-1.456715613729296643e-02,-1.089861990866698216e+00,-1.992113433631872640e-02,1.054108754679889959e+00,9.269754653084497642e-01,6.674115694875022708e-02,-2.952757765490695782e-02,-1.094011243244857656e+00,1.190514080120823326e-03,1.082195737497131605e+00,8.825970465315999824e-01,5.742675082097639661e-02,-4.140180345758848884e-02,-1.103258249520892909e+00,1.982185490678141718e-02,1.104732477149483749e+00,8.454313560609175715e-01,4.834307080549526958e-02,-5.206926951794226682e-02,-1.106976810397980016e+00,-4.027807141143602276e-02,1.041811236601865254e+00,8.172087356060050434e-01,3.962055811939835942e-02,-6.161770751745802160e-02,-1.260893997552606782e+00,4.503009885760292375e-02,1.003850616923893435e+00,9.855522656418516103e-01,3.466956321315374234e-01,-1.273456559266732124e-01,-1.008687092717346578e+00,1.206286826021252256e-03,1.063518334684626643e+00,8.084742543815208737e-01,3.197569206031115191e-02,-5.510764656256840477e-02,-1.080760619623828633e+00,8.730621771680485699e-02,1.424830968685270483e+00,-1.282708424368584621e-01,-9.381816037974174405e-01,-3.085902435339202832e-01,-1.184177850515328423e+00,-1.891602167863679074e-01,1.452359334515631595e+00,-6.665740538081550426e-01,-2.545227289464605121e-04,1.387484027324030311e+00,-1.191155430360563816e+00,-1.946617545243706504e-01,1.480675075021732567e+00,-1.511295549246762127e+00,9.625035376761135186e-01,-1.772467015569198778e-01,-1.006821409471951201e+00,-2.281228626546394633e-01,1.621774698537424175e+00,-1.511295549246762127e+00,9.625035376761135186e-01,-1.772467015569198778e-01,-1.074749909941601800e+00,3.329154847263570693e-01,1.194641702152786422e+00,1.698098234384840088e+00,1.509920664756156383e-01,-1.619301598898121863e-01,-1.100788647237354700e+00,3.652738111194558934e-01,9.011088303129641819e-01,1.562193793708442691e+00,-4.461474985333804266e-01,-2.109284608881608902e-01,-1.095742867866470460e+00,3.905432709708645533e-01,8.863871046075125770e-01,1.963258730006989472e+00,-6.174463422371203464e-02,-1.807680775932412720e+00,-9.976344622072904622e-01,3.624237767597410786e-01,6.752193619126036772e-01,1.963258730006989472e+00,-6.174463422371203464e-02,-1.807680775932412720e+00
|
||||
6.666666700000000167e-01,-1.017150910000000019e+00,-8.343512000000000151e-02,9.449620600000000481e-01,1.002686122339770947e+00,1.288180036692112007e-01,6.376363363627522707e-02,-1.008496490091400188e+00,-9.206021723182465644e-02,9.294456165201475661e-01,1.002686122339770947e+00,1.288180036692112007e-01,6.376363363627522707e-02,-1.081842175015405250e+00,-1.938729858750612156e-01,9.433409277701751972e-01,8.179453064488981795e-01,-5.899726172961505810e-01,-1.851407999215276268e-01,-9.402546251347290163e-01,-5.240756476666127428e-01,6.938147889330444906e-01,9.147707756064926699e-01,-3.724896436455958915e-01,-3.925062257807478971e-01,-9.662568475111675825e-01,-4.906782090834684862e-01,7.048572990598612753e-01,9.687388486826007394e-01,-7.665035550672154308e-02,-4.620837091085779336e-01,-1.049660584028144328e+00,-7.183826954380023722e-01,3.551592896187391601e-01,9.768229167587327844e-01,-1.763700860608439364e-02,-4.886117124210870855e-01,-1.105619280019188855e+00,-7.222207495686868706e-01,3.243713104544499459e-01,1.212140197867794589e+00,9.438369886491843053e-02,-3.484888179395329577e-01,-9.411681928595334590e-01,-7.837681216100625958e-01,3.062686719090177978e-01,1.212140197867794589e+00,9.438369886491841665e-02,-3.484888179395330132e-01,-1.102358812131405630e+00,-5.393833116443575576e-02,8.541123878993650553e-01,1.629882612737642678e+00,-4.079296418916176226e-01,-1.571285304715798747e-01,-9.179257044965007939e-01,-5.661618654986814297e-02,4.502338874902611643e-01,1.627513899064499059e+00,2.969383835747216316e-01,-1.170539093769063232e-01,-9.326050111514602170e-01,-5.913202612829768223e-02,4.882753327571525692e-01,1.485419268597977904e+00,6.000078605233676310e-01,-3.003177660732888055e-01,-1.172036530471568971e+00,-2.297230048796192192e-02,1.383335719229553673e-01,1.559280773507892182e+00,2.555943247905231308e-01,-2.144236592307218747e-01,-1.226239999008540860e+00,-3.655212319285318368e-03,1.103542924326969821e-01,1.867509848471215816e+00,1.867165911820131141e-01,-1.554127829098806042e-02,-1.053089054189886076e+00,-4.749397984295969204e-03,7.603960663147935062e-02,1.867509848471215816e+00,1.867165911820130864e-01,-1.554127829098800664e-02,-1.100372594442305951e+00,-5.959619844497381774e-02,1.001483441652813777e+00,9.834645226620843950e-01,1.204097243420726576e-01,5.039353657816952881e-02,-1.089255926899433513e+00,-4.133764936231086595e-02,1.026639026586393610e+00,9.584768124067049033e-01,1.113518289604994299e-01,3.628320280281416982e-02,-1.086367172642096479e+00,-2.229209299165190589e-02,1.053284310752272468e+00,9.143353717379951728e-01,1.016306884753884754e-01,2.265626755134697232e-02,-1.090664177374967014e+00,-1.057067450982728668e-03,1.081255748052242671e+00,8.705941626507531783e-01,9.308619603651024921e-02,1.185245222127415989e-02,-1.100103108540753771e+00,1.732339078375851743e-02,1.103918786697759113e+00,8.339285256126470758e-01,8.475443265300369733e-02,2.154994603233503000e-03,-1.102796851009032464e+00,-4.355359227058618055e-02,1.041696899540960120e+00,8.060326975713166808e-01,7.674370411998703012e-02,-6.507407265383202168e-03,-1.256213233794967632e+00,4.175681653449681008e-02,9.997526758293278082e-01,9.789739970805201308e-01,3.407765671755495496e-01,-1.144335069281684214e-01,-1.006050559261721489e+00,3.208753276546905120e-03,1.059439388014253414e+00,7.975815418847709282e-01,7.001771500034147111e-02,-5.790771511290576179e-04,-1.069529889427798031e+00,8.946651357150807449e-02,1.422312342429473908e+00,-1.826341552659103973e-01,-9.546869214364237521e-01,-2.510264733339882537e-01,-1.169453321868261231e+00,-1.872434777104138304e-01,1.458829630821794288e+00,-6.755102937708375999e-01,4.342892441972731610e-02,1.413035725274190524e+00,-1.176342835289644118e+00,-1.916565886296890675e-01,1.487356701390271985e+00,-1.586795842147492364e+00,9.524855968506293902e-01,-2.132530747211922040e-01,-9.914873709407922009e-01,-2.140418540067656472e-01,1.629958026646761260e+00,-1.586795842147492364e+00,9.524855968506293902e-01,-2.132530747211922317e-01,-1.085820083800303149e+00,3.325010508357570949e-01,1.189898955631994548e+00,1.713288089515915047e+00,1.181248713692732849e-01,-1.770023915675901505e-01,-1.101015754214967668e+00,3.679426547213462961e-01,8.959608528074052280e-01,1.587449730306457418e+00,-4.479108081800490249e-01,-2.351874356820017054e-01,-1.095533732090157697e+00,3.934567024681359659e-01,8.818287793790020590e-01,1.964555674352927550e+00,-3.893917439497639188e-02,-1.821086690233908678e+00,-9.963517656531855060e-01,3.686281689027527397e-01,6.707499736565258885e-01,1.964555674352927550e+00,-3.893917439497638494e-02,-1.821086690233908678e+00
|
||||
6.833333299999999610e-01,-1.014630149999999897e+00,-8.505728999999999373e-02,9.434843600000000219e-01,9.901108118647711231e-01,1.560835914983835226e-01,9.857527377653124701e-02,-1.006069051390916291e+00,-9.359493687486986069e-02,9.278681030566148236e-01,9.901108118647711231e-01,1.560835914983835226e-01,9.857527377653124701e-02,-1.075236914980710612e+00,-1.977879749185955105e-01,9.451344431479631325e-01,7.873791706458157513e-01,-5.862910531038414419e-01,-1.429129984247412000e-01,-9.270346502951146705e-01,-5.302570929894937501e-01,7.028355977890239359e-01,8.858630027219318581e-01,-3.784724205051692714e-01,-3.534572774668473527e-01,-9.540138805929012644e-01,-4.973103557380808004e-01,7.130443474154375405e-01,9.420130315329423576e-01,-8.555526847270228386e-02,-4.318916088818575694e-01,-1.032075359912276058e+00,-7.369306070982057921e-01,3.701409284143435952e-01,9.517716196635345183e-01,-1.674579693992420820e-02,-4.649952684473488973e-01,-1.088295748102302563e+00,-7.427331617406264241e-01,3.401475243238880619e-01,1.187697781550757226e+00,9.887383232868346417e-02,-3.274733963965084094e-01,-9.226737889184085661e-01,-8.008194440592375507e-01,3.212982527732478610e-01,1.187697781550757226e+00,9.887383232868345029e-02,-3.274733963965084649e-01,-1.103188633243251893e+00,-6.005518402552287999e-02,8.545102075705801603e-01,1.639522678425366253e+00,-4.130242777797797360e-01,-1.508443818677424331e-01,-9.163153999333576438e-01,-5.762169238233523505e-02,4.517366448599339224e-01,1.636579175887541648e+00,2.949004195332253220e-01,-1.040777191254108752e-01,-9.310474165516962053e-01,-6.061325165826803030e-02,4.897043158631873006e-01,1.495925673121983213e+00,5.996549822436507693e-01,-2.841805041206592608e-01,-1.169857046044891824e+00,-2.402193455805248096e-02,1.393826771477742477e-01,1.567351531821709720e+00,2.598685650116866475e-01,-2.029731176958735339e-01,-1.224312052793982364e+00,-4.978076524671016384e-03,1.117061584232340032e-01,1.874567143825351057e+00,1.898958813164380033e-01,-5.513573401766957288e-03,-1.051266615435197282e+00,-4.324250310051187818e-03,7.685226744838810631e-02,1.874567143825351057e+00,1.898958813164379755e-01,-5.513573401766903512e-03,-1.097180876990246690e+00,-6.341224633403159949e-02,1.001842556376725923e+00,9.713709422069538579e-01,1.502468779512665942e-01,8.919872793508606956e-02,-1.086098133428933687e+00,-4.436033413886331100e-02,1.026418456549413882e+00,9.468852122760237355e-01,1.440707534203341800e-01,7.922160263812909331e-02,-1.083218971890157256e+00,-2.483096526723739192e-02,1.052712052564387601e+00,9.034507213503013556e-01,1.374100878160549044e-01,6.959668532573455579e-02,-1.087559783597299878e+00,-3.454528506117843928e-03,1.080568430497704346e+00,8.603464647436269708e-01,1.315243441346368447e-01,6.197666681364651098e-02,-1.097069274975415398e+00,1.469856786629909762e-02,1.103385017568614401e+00,8.241755227170687315e-01,1.257663188217263139e-01,5.514351546672830590e-02,-1.098986791249354722e+00,-4.691198202689669805e-02,1.041861004188649131e+00,7.966204774590865956e-01,1.201944065989364457e-01,4.906713270550400879e-02,-1.251394237002518173e+00,3.399514919627491527e-02,9.992469453576716676e-01,9.595741350159174843e-01,3.327412291814714207e-01,-1.104026457455204030e-01,-1.003934847810953768e+00,5.116394708450475171e-03,1.054842588444311113e+00,7.881040649587116587e-01,1.156497122589157933e-01,5.326369931215644421e-02,-1.057005807163071465e+00,9.213751890587451587e-02,1.419448064244741570e+00,-2.392894047624940790e-01,-9.658019477812704867e-01,-1.922565593052204258e-01,-1.153666084746627352e+00,-1.843846882194634107e-01,1.465042841154544639e+00,-6.803885085706985469e-01,8.533152295652805808e-02,1.435137728860820028e+00,-1.160431008338582259e+00,-1.877441281458882560e-01,1.493742748307075763e+00,-1.657714979577422643e+00,9.441078325668481597e-01,-2.484622506513957385e-01,-9.750007097512887189e-01,-1.999548809899240331e-01,1.636831121878613571e+00,-1.657714979577422643e+00,9.441078325668481597e-01,-2.484622506513957385e-01,-1.097001233904575823e+00,3.311822215398816383e-01,1.185770647533155309e+00,1.731296689790501997e+00,8.541588971229190086e-02,-2.019930180627773075e-01,-1.100763205743955364e+00,3.702392589815079460e-01,8.919220140981567457e-01,1.617044917553754235e+00,-4.430836659188610582e-01,-2.693370627181461696e-01,-1.094705143829144856e+00,3.960028399365567719e-01,8.784954553209749495e-01,1.959496277803099762e+00,-1.227548630503332017e-02,-1.842353204169440595e+00,-9.955950343244389655e-01,3.747723743321973444e-01,6.669907643689154675e-01,1.959496277803099762e+00,-1.227548630503332017e-02,-1.842353204169440595e+00
|
||||
6.999999999999999556e-01,-1.013217070000000053e+00,-8.861895000000000189e-02,9.431023400000000390e-01,9.803630938028567998e-01,1.730842714909801294e-01,1.085185513941681335e-01,-1.004805841108734832e+00,-9.723568954852179758e-02,9.274481286634956856e-01,9.803630938028567998e-01,1.730842714909801294e-01,1.085185513941681335e-01,-1.072475007546502601e+00,-2.020099578205115654e-01,9.469864410828058299e-01,7.571782563155514678e-01,-5.839564320483370263e-01,-9.475292742730162532e-02,-9.150563000253369994e-01,-5.355692038480673878e-01,7.121083285084923720e-01,8.588554737132644279e-01,-3.814803342608890646e-01,-3.120036627335265322e-01,-9.430076929039816758e-01,-5.032421236323501024e-01,7.216587061372787826e-01,9.171714809764557330e-01,-9.060341620652569150e-02,-3.982650249065753378e-01,-1.015186481984702738e+00,-7.536090637829724326e-01,3.852053930840205198e-01,9.280074720368599595e-01,-1.638536612750994895e-02,-4.362223579223145076e-01,-1.071526760524331046e+00,-7.616378999473423228e-01,3.559595937023704026e-01,1.162555316829016361e+00,1.018161199891363528e-01,-3.023973813568602842e-01,-9.045604272316477568e-01,-8.155716651050217703e-01,3.366376600980050537e-01,1.162555316829016361e+00,1.018161199891363250e-01,-3.023973813568603397e-01,-1.103459340973907077e+00,-6.564945391484053316e-02,8.552795363718774801e-01,1.648457053079872781e+00,-4.135957006023993632e-01,-1.446317795285442243e-01,-9.158284464691980320e-01,-5.817144308718065482e-02,4.529317839136391410e-01,1.645036591708314067e+00,2.915944764902637654e-01,-9.198826643019909766e-02,-9.307062234313429050e-01,-6.159614419884235081e-02,4.908187707421446944e-01,1.506464878155924891e+00,5.977784873166980262e-01,-2.685108918484505613e-01,-1.168407949159083525e+00,-2.456538444532511967e-02,1.397905288638170429e-01,1.575312064519945432e+00,2.629419936651343770e-01,-1.919935388299030543e-01,-1.223073173093861765e+00,-5.783899531369311731e-03,1.123501372096092354e-01,1.880851960996966055e+00,1.920792094522623672e-01,3.744193736381261784e-03,-1.050115815127467656e+00,-3.518584889248289101e-03,7.712847810110863567e-02,1.880851960996966055e+00,1.920792094522623394e-01,3.744193736381315561e-03,-1.095078643647828587e+00,-6.725583000177692838e-02,1.002525478507715340e+00,9.620695385998162541e-01,1.710866838415861513e-01,1.048015629645108054e-01,-1.083840583566059834e+00,-4.774608535109420293e-02,1.026668192516201561e+00,9.378905460834564556e-01,1.691684311827962583e-01,1.006996548539594444e-01,-1.080780426742212530e+00,-2.785433519658807658e-02,1.052667720139295549e+00,8.943006361004839366e-01,1.670071967608435515e-01,9.675957803178844574e-02,-1.084937081673516213e+00,-6.272208248340387787e-03,1.080392599472994597e+00,8.508580734769757292e-01,1.650155138063429394e-01,9.365809021206653040e-02,-1.094298657357855031e+00,1.183867770396062821e-02,1.103303902644586776e+00,8.144005446020434746e-01,1.630162392389955806e-01,9.088711021053287598e-02,-1.096143014923820713e+00,-5.059571502425734557e-02,1.042613494476071434e+00,7.866610461962919576e-01,1.610047409314159239e-01,8.847079369091358225e-02,-1.244231076901268551e+00,3.106831185366698556e-02,9.957605966117308860e-01,9.476922632156143944e-01,3.194076016717040667e-01,-1.154687292067934357e-01,-1.002381642498764824e+00,5.527929253972302392e-03,1.050585756977274965e+00,7.775693534703528309e-01,1.593332586541228446e-01,9.022083988844284419e-02,-1.044922778721040668e+00,9.510759276434817278e-02,1.416533523571998465e+00,-2.945649172899528212e-01,-9.700752210286925914e-01,-1.319576226592088508e-01,-1.137459754632508702e+00,-1.812300718498682239e-01,1.470948844780038511e+00,-6.798622554953336339e-01,1.242992075438497657e-01,1.458465078994232611e+00,-1.144003973849630373e+00,-1.836334119348775051e-01,1.499795540425505225e+00,-1.723425002819456431e+00,9.392093339050928691e-01,-2.783256152395447991e-01,-9.576417958568851363e-01,-1.860066435574963539e-01,1.642172810928927085e+00,-1.723425002819456653e+00,9.392093339050927581e-01,-2.783256152395447991e-01,-1.103949854468569081e+00,3.291702139441716191e-01,1.181847280273115919e+00,1.748705185854547706e+00,6.560364446740137023e-02,-2.145617123299651818e-01,-1.100398241853114634e+00,3.720125948668941973e-01,8.885240107867776738e-01,1.642605992456694475e+00,-4.365642162921756220e-01,-2.897595523104132820e-01,-1.094091692951719264e+00,3.980323691595275548e-01,8.757203595457107026e-01,1.953051966523007721e+00,1.087376201847039571e-02,-1.851887235087920747e+00,-9.951398558724935395e-01,3.809452661570849052e-01,6.637667192840508434e-01,1.953051966523007721e+00,1.087376201847039571e-02,-1.851887235087920747e+00
|
||||
7.166666699999999501e-01,-1.013115589999999955e+00,-9.473562000000000649e-02,9.443509900000000012e-01,9.742463386879935960e-01,1.748904911219724134e-01,8.730356770548949874e-02,-1.004899603136900854e+00,-1.036164243954103142e-01,9.287407312695338257e-01,9.742463386879935960e-01,1.748904911219724134e-01,8.730356770548949874e-02,-1.074641432179554990e+00,-2.068829735275512505e-01,9.490041500983512623e-01,7.282402900538932355e-01,-5.803769693921612127e-01,-3.830398262275518800e-02,-9.050428178986980043e-01,-5.394357867667182171e-01,7.210434856795125969e-01,8.338015989871273570e-01,-3.799461747688722135e-01,-2.649199650438310849e-01,-9.340585318718097607e-01,-5.079859119014242808e-01,7.301614049487163971e-01,8.939857068092019743e-01,-9.036764072823243177e-02,-3.580894823225393431e-01,-9.994329257326699523e-01,-7.680998395170867132e-01,3.997659639000580301e-01,9.053761924260373961e-01,-1.348859686472957467e-02,-3.996525794279023880e-01,-1.055776177143960215e+00,-7.787325478235804788e-01,3.713689656075961909e-01,1.128379153881680308e+00,1.024539060187937140e-01,-2.756297705749481963e-01,-8.874446722856280667e-01,-8.282212459835469609e-01,3.519958444842542500e-01,1.128379153881680308e+00,1.024539060187936862e-01,-2.756297705749482518e-01,-1.102988214202139883e+00,-7.049305112449653909e-02,8.564913329816882248e-01,1.656233731902570838e+00,-4.093043133693212154e-01,-1.398926350380864381e-01,-9.164295774749745549e-01,-5.850888588272325219e-02,4.537933747532548745e-01,1.652531544234995931e+00,2.878643359245088296e-01,-8.256855815660825437e-02,-9.315175551755560113e-01,-6.229201329762876910e-02,4.916052027039227168e-01,1.516401837256324603e+00,5.951512287121011324e-01,-2.553682543428237861e-01,-1.167862090709856249e+00,-2.450169802768692451e-02,1.397424925840056176e-01,1.582626674020382707e+00,2.661019875705372129e-01,-1.833856806424342956e-01,-1.222701353599404239e+00,-5.881190045781480719e-03,1.125406929050183635e-01,1.886575628086035072e+00,1.944727326608804985e-01,1.071214638299817883e-02,-1.049847074099502287e+00,-2.402797838979240166e-03,7.691424989250279787e-02,1.886575628086035072e+00,1.944727326608804707e-01,1.071214638299823087e-02,-1.094454477735072206e+00,-7.136103684237407596e-02,1.003734689198458652e+00,9.559732580517643630e-01,1.778169510517735030e-01,9.066825980034141919e-02,-1.082813288059626622e+00,-5.184532570864357204e-02,1.027681015399877440e+00,9.314711601395495588e-01,1.813241782803249047e-01,9.394657707892498100e-02,-1.079344669149077340e+00,-3.177163789270520677e-02,1.053488203198781559e+00,8.861873795355202921e-01,1.849026959895854194e-01,9.713935016466007655e-02,-1.083073201336761660e+00,-9.913533615594147252e-03,1.081056206264092490e+00,8.407952976119541511e-01,1.878859494722694701e-01,9.969636916923435566e-02,-1.092077324109980152e+00,8.401860690472433280e-03,1.103948207259566328e+00,8.027618220450967179e-01,1.906929639587862935e-01,1.020033852280264608e-01,-1.094660990112258814e+00,-5.499951394079329731e-02,1.044294223408840816e+00,7.739510321308573637e-01,1.932421792369901914e-01,1.041511395443365101e-01,-1.236496638884766019e+00,2.570673045728984890e-02,9.950993227901255844e-01,9.315890730254666741e-01,3.167445954745921055e-01,-1.161398379756027194e-01,-1.001261235195116894e+00,3.573004163527043753e-03,1.047322635277793346e+00,7.636839772007752991e-01,1.953612190204556120e-01,1.024878107809446687e-01,-1.034625048932636959e+00,9.748593189404222703e-02,1.414176676671410782e+00,-3.446851352383181744e-01,-9.688067225711262109e-01,-7.060495017098684933e-02,-1.121385930771916950e+00,-1.790043790183203642e-01,1.476724908712841566e+00,-6.737577340002729454e-01,1.614909764037607831e-01,1.489302681216163160e+00,-1.127593039190568414e+00,-1.805451756251202355e-01,1.505704771536597875e+00,-1.787167363178192581e+00,9.380379915732062202e-01,-2.997874629568542115e-01,-9.399611280720769901e-01,-1.721604481487795102e-01,1.646174494415618916e+00,-1.787167363178192581e+00,9.380379915732062202e-01,-2.997874629568542115e-01,-1.105077394592486550e+00,3.267251533987156065e-01,1.177886631570960407e+00,1.765212387947182382e+00,6.318262228343939080e-02,-2.217516263269903587e-01,-1.099416626609477587e+00,3.740876895115911038e-01,8.852924247652681489e-01,1.662786012172846162e+00,-4.274732043083703248e-01,-3.044898517623091938e-01,-1.092987747586642744e+00,4.003208072264319295e-01,8.729949556005492939e-01,1.944195021808145407e+00,2.931471484365082147e-02,-1.858345708137270735e+00,-9.948379747759320546e-01,3.868995044034020947e-01,6.604055120755301100e-01,1.944195021808145407e+00,2.931471484365082147e-02,-1.858345708137270735e+00
|
||||
7.333333300000000055e-01,-1.013957980000000036e+00,-1.022201400000000010e-01,9.466175799999999585e-01,9.693509056489442166e-01,1.681943789215747387e-01,4.637836916005425025e-02,-1.005996922957580253e+00,-1.114932045325171123e-01,9.311036137302362015e-01,9.693509056489442166e-01,1.681943789215747387e-01,4.637836916005425025e-02,-1.079961421450505998e+00,-2.117904569654174840e-01,9.513081465783084223e-01,7.043726267797894014e-01,-5.837297655195478052e-01,9.897109644650540702e-03,-8.981321057988346235e-01,-5.427472060133132770e-01,7.303668701294481203e-01,8.146896029122446814e-01,-3.851300010117064687e-01,-2.249718541759605228e-01,-9.281212299543689648e-01,-5.121041915888047136e-01,7.389174845407281422e-01,8.769284532839040081e-01,-9.659119405086634413e-02,-3.234512966600744943e-01,-9.847055565781168696e-01,-7.801668969054605940e-01,4.132876115608196677e-01,8.889303118011110394e-01,-1.843478948926281780e-02,-3.674257190032199083e-01,-1.040716752121670918e+00,-7.930786137975784911e-01,3.851799699267647314e-01,1.104137855450665562e+00,9.628826934002961135e-02,-2.496171662801285884e-01,-8.710461958215504064e-01,-8.382327289262329062e-01,3.669329754549480183e-01,1.104137855450665562e+00,9.628826934002958360e-02,-2.496171662801286439e-01,-1.102176732973821904e+00,-7.479253862504664507e-02,8.580213703485796151e-01,1.663057979425978772e+00,-4.020876169426620961e-01,-1.362725205998746580e-01,-9.178004921782525471e-01,-5.880042451910798273e-02,4.545204290988206219e-01,1.659227399406983050e+00,2.838025596334557421e-01,-7.525876433948118505e-02,-9.331434871988988355e-01,-6.288332653939156247e-02,4.922588493152037503e-01,1.525745627286402062e+00,5.919358038464739291e-01,-2.443060772819179438e-01,-1.167939008259164080e+00,-2.410363443291769353e-02,1.394679580662598894e-01,1.589169525510335301e+00,2.705259015423257529e-01,-1.768611333296232213e-01,-1.222954439735332910e+00,-5.556909765198816270e-03,1.125732135770533410e-01,1.892239885704597890e+00,1.981170064471161618e-01,1.597526977679853549e-02,-1.050250146315701238e+00,-1.162152233344065921e-03,7.632603801590612247e-02,1.892239885704597890e+00,1.981170064471161341e-01,1.597526977679859100e-02,-1.094702952417051511e+00,-7.533836991424791574e-02,1.005323877725974535e+00,9.507085993687284242e-01,1.757990924402969279e-01,5.637432154509505050e-02,-1.082471878809140753e+00,-5.610373121990765155e-02,1.029203568677438119e+00,9.254706020055384341e-01,1.844377326285094321e-01,6.658848623176465142e-02,-1.078409136304356197e+00,-3.596402379909847263e-02,1.054871708354690352e+00,8.778370352050737235e-01,1.934787674474714170e-01,7.646395923180165921e-02,-1.081506262598225909e+00,-1.377903162915653651e-02,1.082254954833613114e+00,8.298828662039101633e-01,2.012238033184158004e-01,8.430026500716619742e-02,-1.089984119341298907e+00,4.925611090363771899e-03,1.105032783748122416e+00,7.898051037169300237e-01,2.086481799260853087e-01,9.132703092478174078e-02,-1.094029270501055695e+00,-5.942475642762398702e-02,1.046483988778972307e+00,7.596165979771787313e-01,2.155945402059139815e-01,9.769969545072147710e-02,-1.229890755397282875e+00,2.053402003903255502e-02,9.963604032530624099e-01,9.153769454259355065e-01,3.247848145059797909e-01,-1.178789834810130277e-01,-9.999451684159398335e-01,-3.259319159973766977e-04,1.045250015990991654e+00,7.480705295402124699e-01,2.217578944660313633e-01,9.219299774536325598e-02,-1.025780405398538875e+00,9.880097832992298934e-02,1.412511124288023723e+00,-3.906812527708477534e-01,-9.659703684296162551e-01,-7.348450057043089297e-03,-1.105263112249315283e+00,-1.780771459627693287e-01,1.482565585796816965e+00,-6.656940197455438746e-01,1.976230392149326553e-01,1.527304021265473155e+00,-1.111133239870728318e+00,-1.788059515077735084e-01,1.511647283521916352e+00,-1.849659476864020213e+00,9.370005217582060286e-01,-3.136066668434645544e-01,-9.226067987432008399e-01,-1.585898793239643167e-01,1.649693914019682683e+00,-1.849659476864020213e+00,9.370005217582060286e-01,-3.136066668434645544e-01,-1.100370777703708169e+00,3.244472404977088997e-01,1.174042720033499299e+00,1.776861024722314886e+00,7.466791246964038509e-02,-2.015263787675985740e-01,-1.098238380308212969e+00,3.759115859731455012e-01,8.820949541513374292e-01,1.673204331234874331e+00,-4.217615581670650649e-01,-2.907467514337029879e-01,-1.092317378548388618e+00,4.023868517648255816e-01,8.700642959063284998e-01,1.938661547712724476e+00,3.891463692047787692e-02,-1.840499239266564224e+00,-9.945316863265104557e-01,3.930201328500705360e-01,6.570901102781192549e-01,1.938661547712724476e+00,3.891463692047787692e-02,-1.840499239266564002e+00
|
||||
7.500000000000000000e-01,-1.014393139999999915e+00,-1.096233999999999958e-01,9.493762799999999613e-01,9.661444804280512333e-01,1.644612482467513737e-01,6.077342575144062051e-03,-1.006748956558705999e+00,-1.192542586402961374e-01,9.339210438050162821e-01,9.661444804280512333e-01,1.644612482467513737e-01,6.077342575144062051e-03,-1.084718609698255065e+00,-2.164679676762503724e-01,9.541382888022700293e-01,6.860121347124918945e-01,-5.785833191744443882e-01,5.672528913228816472e-02,-8.917953902890108919e-01,-5.439244271684284815e-01,7.374490713403073494e-01,7.972026877143141288e-01,-3.839590392134442087e-01,-1.814534855539658709e-01,-9.228664023604791211e-01,-5.142788204784065620e-01,7.456605748760773977e-01,8.605910989461994509e-01,-9.711801864794120109e-02,-2.849333221260649252e-01,-9.708313612003177662e-01,-7.893417815235517221e-01,4.245158343576815319e-01,8.717792249783310465e-01,-2.654364401296389550e-02,-3.262268664596575385e-01,-1.026207936725690661e+00,-8.050561068458351732e-01,3.965783892293768265e-01,1.058822354231383267e+00,7.720060491252141166e-02,-2.261461890209684744e-01,-8.552224118905559225e-01,-8.463430257052502181e-01,3.817701069708500650e-01,1.058822354231383267e+00,7.720060491252138390e-02,-2.261461890209685299e-01,-1.101118318087871417e+00,-7.898865428384381493e-02,8.603573724658620803e-01,1.669298736711433362e+00,-3.932504665189109905e-01,-1.341501155041538162e-01,-9.195293823655608101e-01,-5.945993917252098693e-02,4.558313367155107931e-01,1.665439709878125729e+00,2.794368399884656351e-01,-7.012398734053500171e-02,-9.351632353897613159e-01,-6.379355918635952472e-02,4.934940705541378536e-01,1.534747282998194517e+00,5.882407687965929277e-01,-2.353841671360478449e-01,-1.168217351578580088e+00,-2.367253968698584954e-02,1.396999257469660471e-01,1.594769770121965635e+00,2.789844345671232406e-01,-1.729586029987250084e-01,-1.223473861909139648e+00,-5.076672685781304095e-03,1.133386326430380481e-01,1.898043868360175690e+00,2.058163896749852229e-01,1.901357133748638947e-02,-1.051066089751731880e+00,-1.536868388436179317e-04,7.577177350404576406e-02,1.898043868360175690e+00,2.058163896749851951e-01,1.901357133748644151e-02,-1.094225046932878254e+00,-7.936886365404893784e-02,1.007688707425174357e+00,9.464626599277550234e-01,1.747681472015905069e-01,1.979301420080206361e-02,-1.081339249513255441e+00,-6.048517206683284853e-02,1.031504080491458142e+00,9.197399576620848283e-01,1.863867432776646904e-01,3.388557659246056730e-02,-1.076597567600173333e+00,-4.033246676168061873e-02,1.057044748168029180e+00,8.688513589465287623e-01,1.986330137681935337e-01,4.746314286278122130e-02,-1.078963829599131952e+00,-1.780948218021373430e-02,1.084223014650459227e+00,8.175345790795991441e-01,2.091948877282723274e-01,5.819054998944157148e-02,-1.086835235919433318e+00,1.379682230656181785e-03,1.106814379146752625e+00,7.747109953218402900e-01,2.193649264779290731e-01,6.777333942308011450e-02,-1.092698441682167010e+00,-6.393623835749549789e-02,1.049498012111573342e+00,7.425539310997324449e-01,2.289342151072178977e-01,7.641408418495573840e-02,-1.216152260416506703e+00,1.626583521986769976e-02,9.953463615856941171e-01,9.015098755661725693e-01,3.185232510579913967e-01,-1.243890880737850563e-01,-9.974182624433092226e-01,-5.535100958168809315e-03,1.044796953987880750e+00,7.298120615110208487e-01,2.378778542567372423e-01,6.808228830318902025e-02,-1.017318340233541507e+00,9.949187905037783219e-02,1.411821411028096662e+00,-4.273677885575913327e-01,-9.661482310334091883e-01,5.446982537703038557e-02,-1.088075994549840608e+00,-1.782425861262086353e-01,1.487607591735292001e+00,-6.592706383342812337e-01,2.303771761925925421e-01,1.573629942766954004e+00,-1.093726752781346789e+00,-1.782806146778201095e-01,1.516741801586023897e+00,-1.905543615269637003e+00,9.335392831678341885e-01,-3.136225420810085374e-01,-9.054493532895858676e-01,-1.451232279173609863e-01,1.652609344856578621e+00,-1.905543615269637003e+00,9.335392831678342995e-01,-3.136225420810085374e-01,-1.090822748548278875e+00,3.221775798228350141e-01,1.170252953384312899e+00,1.792752406194160875e+00,1.069520576106604143e-01,-2.141290544429999831e-01,-1.096174283308306352e+00,3.801172957026570653e-01,8.795624403349002751e-01,1.683243188346320363e+00,-4.100540059126177583e-01,-3.135484066882847642e-01,-1.089857126810130472e+00,4.066235758615378559e-01,8.678046623005679638e-01,1.927155787122389219e+00,4.836259102131155313e-02,-1.859746839782315808e+00,-9.940420057067697046e-01,3.980571839718801685e-01,6.539031422767963564e-01,1.927155787122389219e+00,4.836259102131155313e-02,-1.859746839782315808e+00
|
||||
7.666666699999999945e-01,-1.012211390000000044e+00,-1.142328499999999969e-01,9.514180599999999544e-01,9.576800035314118054e-01,1.737592538577854007e-01,-1.402790069505854137e-02,-1.004893795081602592e+00,-1.241318030179205112e-01,9.359741343903792421e-01,9.576800035314118054e-01,1.737592538577854007e-01,-1.402790069505854137e-02,-1.084468313813366169e+00,-2.196996313460207184e-01,9.577271844700057102e-01,6.754181581929674660e-01,-5.712848137088851752e-01,8.554257360564797297e-02,-8.852575108474465271e-01,-5.444542368857163694e-01,7.431198443463306047e-01,7.837920661829392843e-01,-3.845520340883063493e-01,-1.482210440672009355e-01,-9.172562942506331529e-01,-5.156045549475842815e-01,7.509560385144719019e-01,8.478516098217275809e-01,-1.004292678296535707e-01,-2.559413400938495009e-01,-9.575792746571338832e-01,-7.960759123174664387e-01,4.334594414865806655e-01,8.574616895292683783e-01,-4.271954747880184894e-02,-2.907914157181885062e-01,-1.012053233394037299e+00,-8.142304312557757662e-01,4.052281248471174546e-01,1.022267627528226086e+00,5.200429928186172529e-02,-2.039560474420549219e-01,-8.398880950853593319e-01,-8.518199652959037582e-01,3.949258592080235331e-01,1.022267627528226086e+00,5.200429928186169753e-02,-2.039560474420549774e-01,-1.099184116985942872e+00,-8.271287047786361757e-02,8.629514238619014899e-01,1.674085090307757540e+00,-3.831960000638498509e-01,-1.350658061525356057e-01,-9.209056861048637854e-01,-6.077520586027676530e-02,4.571668150146295795e-01,1.670369934741025464e+00,2.767146341388352360e-01,-6.904231296649304683e-02,-9.367788095748872390e-01,-6.526118510428416397e-02,4.947821482914607771e-01,1.541933354948531898e+00,5.859316424103750975e-01,-2.311667672428378839e-01,-1.168557369095637011e+00,-2.332302295251408031e-02,1.403613474348002210e-01,1.598941224988859711e+00,2.889457098178612182e-01,-1.730052701171647944e-01,-1.224028866760996648e+00,-4.512411696857739074e-03,1.146110109612805406e-01,1.903605817898430530e+00,2.149690104436208227e-01,1.880133272997590310e-02,-1.051969249627546565e+00,3.758847669123998453e-04,7.547615047767197716e-02,1.903605817898430530e+00,2.149690104436207949e-01,1.880133272997595861e-02,-1.090913345597650075e+00,-8.201110891103099987e-02,1.010210671037148344e+00,9.375811208601676494e-01,1.836420484129162034e-01,-1.079304987150768360e-03,-1.077455992331567414e+00,-6.317089071872820927e-02,1.033742465263965293e+00,9.102909781236261377e-01,1.947728865015431465e-01,1.221514131045478221e-02,-1.072104658008312228e+00,-4.287729147312122069e-02,1.059050034981893429e+00,8.583723414430530774e-01,2.065091769570154834e-01,2.500149735565519032e-02,-1.073806743915195705e+00,-2.002549863311867823e-02,1.086002496100644477e+00,8.060200783778376232e-01,2.166339852515773712e-01,3.508328862806050358e-02,-1.081122520482877158e+00,-4.157507567372660529e-04,1.108418608280486550e+00,7.623114162004145378e-01,2.263841987207292072e-01,4.407166408766940296e-02,-1.088703212838328938e+00,-6.635198309687126428e-02,1.052020291567221211e+00,7.294615816342558956e-01,2.355615355120217747e-01,5.216297034873062372e-02,-1.201517696121003898e+00,1.296193859381170044e-02,9.956211357288370367e-01,8.896346308553797488e-01,3.148190768884026047e-01,-1.306730514639918850e-01,-9.923805848187999823e-01,-9.733040061067260718e-03,1.045808084097900270e+00,7.164146301600462508e-01,2.441068649541703606e-01,4.399231989713808799e-02,-1.007727178922908307e+00,1.001599200114475230e-01,1.411722700109175666e+00,-4.596159945866795105e-01,-9.707552627633777576e-01,1.141137594911033754e-01,-1.069764391779356449e+00,-1.783794184008159478e-01,1.492058527454857897e+00,-6.567008069330605435e-01,2.607378232514480088e-01,1.621046529847853135e+00,-1.075378800482319042e+00,-1.777945757856791986e-01,1.521193919547976670e+00,-1.954839700814415604e+00,9.258649113343788706e-01,-3.063418425521501343e-01,-8.887267714223907600e-01,-1.317529078307171087e-01,1.655540358392761480e+00,-1.954839700814415382e+00,9.258649113343789816e-01,-3.063418425521501343e-01,-1.077927004104867859e+00,3.211807127474448631e-01,1.167655224149370952e+00,1.803989657277162983e+00,1.494252159934388868e-01,-2.385273614744405912e-01,-1.092977100601945750e+00,3.852966080730965137e-01,8.786063173196241305e-01,1.686239147162455598e+00,-3.910021204844914555e-01,-3.458626897961226132e-01,-1.086036380054477002e+00,4.116991175981973283e-01,8.669672199556935910e-01,1.908154171995560366e+00,5.159140550224251137e-02,-1.891842208966765027e+00,-9.941839223476746090e-01,4.020953847720308283e-01,6.513780850263968247e-01,1.908154171995560366e+00,5.159140550224251137e-02,-1.891842208966765027e+00
|
||||
7.833333300000000499e-01,-1.006408399999999981e+00,-1.149627200000000044e-01,9.523086400000000395e-01,9.440078581883966091e-01,1.990465042757998404e-01,-8.752831573532749918e-03,-9.994064721432240894e-01,-1.250091499931819949e-01,9.368136874296675298e-01,9.440078581883966091e-01,1.990465042757998404e-01,-8.752831573532749918e-03,-1.077638539380380234e+00,-2.208856721533838385e-01,9.618325839835359936e-01,6.714696238941061379e-01,-5.621383029962414568e-01,9.651915543222652771e-02,-8.771666458848641490e-01,-5.444586950256933289e-01,7.472654406856145126e-01,7.748439485901646995e-01,-3.842289241379777120e-01,-1.286651563532824061e-01,-9.097810472795330172e-01,-5.160816683227267276e-01,7.548308736573241529e-01,8.389898513985423190e-01,-1.030515673107408742e-01,-2.394902845692421511e-01,-9.455947584250742333e-01,-8.000510221743013517e-01,4.399134267840815182e-01,8.465220233252147564e-01,-5.984872815602368390e-02,-2.661906966594618229e-01,-9.992282939431403888e-01,-8.199379250830781674e-01,4.112435656390019401e-01,1.003484562002691316e+00,3.248083964864565548e-02,-1.840277203809517759e-01,-8.261862294220773117e-01,-8.541406417187996647e-01,4.044198806724011441e-01,1.003484562002691316e+00,3.248083964864562773e-02,-1.840277203809518314e-01,-1.095847268045781586e+00,-8.528258417560974358e-02,8.656836523914990256e-01,1.676102808406496836e+00,-3.713900451133249070e-01,-1.370692332851102535e-01,-9.216819706420602554e-01,-6.224092841465519999e-02,4.582753603112174612e-01,1.672764609581461226e+00,2.757604339608344390e-01,-7.087603075462953206e-02,-9.377354292604267449e-01,-6.675616777707193972e-02,4.958831083509598336e-01,1.545913676269524917e+00,5.849366887682483362e-01,-2.309221866893519381e-01,-1.168817780257760619e+00,-2.330140492182689732e-02,1.411905022526681597e-01,1.601155218965800042e+00,2.956061024499090362e-01,-1.751901859455345378e-01,-1.224394044583458241e+00,-4.251238203738134935e-03,1.158453652602958461e-01,1.908104064318052018e+00,2.207337333020585046e-01,1.736066711361618220e-02,-1.052554476959439045e+00,3.920444475068556034e-04,7.572619876210674728e-02,1.908104064318052018e+00,2.207337333020584769e-01,1.736066711361623424e-02,-1.083847102924794026e+00,-8.256738573243210810e-02,1.012662588779532857e+00,9.241373969549560030e-01,2.045604380644804321e-01,-1.832118913237907806e-03,-1.069938710602799103e+00,-6.339279609949889649e-02,1.035655232442638241e+00,8.973191862047941170e-01,2.108080130898334903e-01,5.217362269553732328e-03,-1.064096501976518505e+00,-4.280677464884535821e-02,1.060616374891396374e+00,8.470732968103421578e-01,2.173507846086572548e-01,1.199945110605054981e-02,-1.065265995505529473e+00,-1.965143257614043390e-02,1.087338621024673380e+00,7.965542522624531330e-01,2.229582349849333345e-01,1.735110586569427182e-02,-1.072136498714167496e+00,2.790791517596341587e-04,1.109612313827415875e+00,7.542718475707030912e-01,2.283339834043917049e-01,2.212411451441405330e-02,-1.081159826610216479e+00,-6.584587195058470843e-02,1.053652008650142857e+00,7.223285426192367353e-01,2.333680788432159758e-01,2.643466606605934799e-02,-1.186729251640511906e+00,7.345388516755688157e-03,1.000994437758442324e+00,8.764354201512533082e-01,3.297448644264171502e-01,-1.197897670736550596e-01,-9.840983455652609901e-01,-1.209836663993611727e-02,1.048499758776205493e+00,7.102857280443812815e-01,2.377510513267125369e-01,2.221590003251622952e-02,-9.970551185621743251e-01,1.011387160475658159e-01,1.412416137447254361e+00,-4.820602926056100634e-01,-9.799481773503010418e-01,1.663108340865891155e-01,-1.050597266106272576e+00,-1.784311589899867379e-01,1.495244558809165181e+00,-6.561241634138436085e-01,2.879615239927603154e-01,1.671477911164607200e+00,-1.056297511585723381e+00,-1.773387904783879365e-01,1.524348658707581849e+00,-1.997078979886654837e+00,9.164468917963606298e-01,-2.897040985186647988e-01,-8.724869913742225869e-01,-1.183442795252217655e-01,1.657544458594489400e+00,-1.997078979886654837e+00,9.164468917963606298e-01,-2.897040985186647988e-01,-1.061331588998998710e+00,3.221012413885498415e-01,1.166669851937716329e+00,1.799021154256668087e+00,1.748859969923482471e-01,-9.659057179467940568e-02,-1.092804008746885547e+00,3.827208047998472695e-01,8.781886925797963706e-01,1.671341256960056976e+00,-4.033098426728772279e-01,-2.052215437712870960e-01,-1.089367701922178355e+00,4.096275819914853566e-01,8.661490981117851984e-01,1.920165444844438296e+00,3.758300321998087057e-02,-1.756428334546727754e+00,-9.950776961672345156e-01,4.090229505536742693e-01,6.514008501419915609e-01,1.920165444844438296e+00,3.758300321998087057e-02,-1.756428334546727754e+00
|
||||
8.000000000000000444e-01,-9.977800100000000505e-01,-1.128786299999999937e-01,9.523801400000000417e-01,9.319582375674387853e-01,2.368015505663861597e-01,1.992861387945476029e-02,-9.910509149943184104e-01,-1.228966869616823360e-01,9.367465505339416243e-01,9.319582375674387853e-01,2.368015505663861597e-01,1.992861387945476029e-02,-1.065231613868936167e+00,-2.208338162187781784e-01,9.657991176814408885e-01,6.730229434353546258e-01,-5.533451464010398224e-01,9.297002755710469246e-02,-8.673052511065107995e-01,-5.445705250783958729e-01,7.497146142515057621e-01,7.712773540602593236e-01,-3.823209774990264931e-01,-1.234416560664464008e-01,-9.001607438169242359e-01,-5.163104986538111785e-01,7.571939460693275503e-01,8.349859228578069281e-01,-1.033946862039471365e-01,-2.357649504042309829e-01,-9.352213486338873949e-01,-8.016393736507605450e-01,4.434226897998880812e-01,8.400295954204644033e-01,-7.542457826127582643e-02,-2.532682820603426865e-01,-9.882133336502780807e-01,-8.224885922765705626e-01,4.142479475685552082e-01,1.010749845864560514e+00,2.552531786948641912e-02,-1.633609269703424349e-01,-8.144578509173447944e-01,-8.531071208231025826e-01,4.086370184664237515e-01,1.010749845864560514e+00,2.552531786948638790e-02,-1.633609269703424904e-01,-1.091293670163471674e+00,-8.707978314573458500e-02,8.688713085996092600e-01,1.676220703678167334e+00,-3.576349502816045245e-01,-1.395919810418713436e-01,-9.220394446302939695e-01,-6.374063056929822613e-02,4.595374985368549936e-01,1.673395647554582810e+00,2.749983243981842795e-01,-7.461548150910568555e-02,-9.382901043395506235e-01,-6.819516698543859334e-02,4.971526393576802816e-01,1.548032794227101938e+00,5.837700414420922135e-01,-2.330303997256410742e-01,-1.168680888413560881e+00,-2.346902035317278978e-02,1.421683120990668292e-01,1.602100968068532971e+00,2.998422223199576075e-01,-1.787857683494359362e-01,-1.224284017759329490e+00,-4.162300651441106641e-03,1.170775058373021982e-01,1.911039543500421489e+00,2.243035876440438448e-01,1.458699964097379120e-02,-1.052575511154115739e+00,6.675422850410325792e-06,7.634971442409227427e-02,1.911039543500421489e+00,2.243035876440438170e-01,1.458699964097384498e-02,-1.073883684351404133e+00,-8.214738227506165891e-02,1.015250090610354095e+00,9.123665589197063053e-01,2.371549609605813902e-01,1.998399480857312310e-02,-1.059715439928426761e+00,-6.236083058270858182e-02,1.037554881693617093e+00,8.862751272937992031e-01,2.376878737979432055e-01,1.991074965799828969e-02,-1.053565498412852852e+00,-4.140438737253812618e-02,1.062131628825220275e+00,8.385948230370650069e-01,2.381821953162901184e-01,1.985362863191561175e-02,-1.054406704352732316e+00,-1.804772645285314392e-02,1.088692172358948662e+00,7.909205652177593304e-01,2.385481089691015855e-01,1.982231560279757582e-02,-1.061007173909932488e+00,1.983814735116561784e-03,1.110957040323147460e+00,7.509377353678570177e-01,2.388618113127854992e-01,1.980148331899475589e-02,-1.070752786470711149e+00,-6.418069878726993804e-02,1.055168674491851588e+00,7.205755723598992191e-01,2.391011118822665149e-01,1.982481011423270836e-02,-1.178231055128279969e+00,7.147960010412596210e-03,1.005968117840537079e+00,8.683965294598313678e-01,3.438442959418628875e-01,-1.238917621852725637e-01,-9.739119904075080880e-01,-1.191133568370440765e-02,1.050923023896035202e+00,7.101556127968742249e-01,2.392869302082584471e-01,1.979536407139007026e-02,-9.835725759271427560e-01,1.029310580202140862e-01,1.413138542333551850e+00,-4.999323364154925065e-01,-9.919911294175643990e-01,2.070077956965585275e-01,-1.031035594662434995e+00,-1.773183996630723902e-01,1.497365184782424308e+00,-6.570834726270272652e-01,3.133491176064905903e-01,1.714497468065075747e+00,-1.036909973525456996e+00,-1.757470585933854912e-01,1.526412684822953558e+00,-2.034558996359917327e+00,9.055986786308687364e-01,-2.760162859839952465e-01,-8.564291745394547739e-01,-1.055325312795361292e-01,1.658716812203794744e+00,-2.034558996359917327e+00,9.055986786308688474e-01,-2.760162859839953020e-01,-1.047878262099489532e+00,3.238408286676638381e-01,1.167352474671018880e+00,1.798798414854548167e+00,2.003953342894851386e-01,-4.556976438567286736e-02,-1.089745174854365839e+00,3.830465651351472323e-01,8.799007981005531054e-01,1.665649650278681948e+00,-3.913697172818242920e-01,-1.546646734719281380e-01,-1.087765986946084507e+00,4.100476744022737430e-01,8.677452392093890632e-01,1.908124040064884008e+00,3.255381348144236603e-02,-1.708496163833187254e+00,-9.962723787187257596e-01,4.132837119053082708e-01,6.518141657499250119e-01,1.908124040064884008e+00,3.255381348144235909e-02,-1.708496163833187254e+00
|
||||
8.166666700000000390e-01,-9.877480400000000493e-01,-1.099416700000000052e-01,9.526483500000000326e-01,9.281528597239031564e-01,2.759715413982948840e-01,5.785555397463467558e-02,-9.812465699227189697e-01,-1.197842924305389245e-01,9.368083697285374267e-01,9.281528597239031564e-01,2.759715413982948840e-01,5.785555397463467558e-02,-1.050368790795786822e+00,-2.203486713295919608e-01,9.691724440815960850e-01,6.759607493920742893e-01,-5.286024778883909869e-01,1.019043362444088247e-01,-8.544077624499359924e-01,-5.418975962402696744e-01,7.483141378471813709e-01,7.672079611542701461e-01,-3.602960018689251309e-01,-1.089292554305215238e-01,-8.875128366701436899e-01,-5.140633513534632604e-01,7.564667968191445269e-01,8.285184633807445298e-01,-8.267469707507399401e-02,-2.223480279384239533e-01,-9.256877261928462275e-01,-8.003521933758197537e-01,4.439358528768107548e-01,8.307179960180729461e-01,-7.000248491401248052e-02,-2.304098106227579490e-01,-9.784181181901236979e-01,-8.225970495332165511e-01,4.153233012272445346e-01,9.983186711587258566e-01,2.979607534177811101e-02,-1.434594671361092977e-01,-8.041142663523712653e-01,-8.497616655848878597e-01,4.089833118907623688e-01,9.983186711587258566e-01,2.979607534177807979e-02,-1.434594671361093532e-01,-1.085371971393178425e+00,-8.828529301039879373e-02,8.727441610418342766e-01,1.674988682236230986e+00,-3.410136974758473660e-01,-1.414176940379237579e-01,-9.221367089422020102e-01,-6.495993677754749451e-02,4.611422913364747744e-01,1.672765556689560729e+00,2.732867788296783895e-01,-7.884890685864240356e-02,-9.386628112276398372e-01,-6.929535281780800637e-02,4.987622688619235967e-01,1.549274448160272266e+00,5.812996417349283185e-01,-2.355682124343002337e-01,-1.167968872112254974e+00,-2.367433777345204216e-02,1.431899589080093405e-01,1.602474668512923195e+00,3.010838771887728305e-01,-1.823000407074424623e-01,-1.223530621610133595e+00,-4.151755215848776381e-03,1.181746287969459436e-01,1.913057609527156977e+00,2.249608491712044300e-01,1.194200803496109874e-02,-1.051837779312174037e+00,-4.342375566663897110e-04,7.733723708787246243e-02,1.913057609527156977e+00,2.249608491712044023e-01,1.194200803496115251e-02,-1.062489583664661286e+00,-8.180976188106998948e-02,1.018307370115107524e+00,9.082690399693562622e-01,2.727860688506287823e-01,5.324141163678763194e-02,-1.048230618762353128e+00,-6.141774077989965719e-02,1.040000418515083735e+00,8.821700369519592799e-01,2.694164884830282936e-01,4.832751880974101022e-02,-1.041929661456274303e+00,-4.015920258226497036e-02,1.064278057694480362e+00,8.356208322596995197e-01,2.657995264193316332e-01,4.362362889900713026e-02,-1.042611254891364192e+00,-1.673251278185234822e-02,1.090782370329113071e+00,7.893519667705760634e-01,2.626169274827895306e-01,3.993245297643059633e-02,-1.049085336887445319e+00,3.214263628051751420e-03,1.113160209672134249e+00,7.505076003658832651e-01,2.595135920572916310e-01,3.664915434643983838e-02,-1.058879275287258448e+00,-6.309464716246596105e-02,1.057553987842633436e+00,7.209065077602967442e-01,2.565198768348000979e-01,3.375579059506558788e-02,-1.173129978972806020e+00,9.346500084920800200e-03,1.010371430435759610e+00,8.661494901234336741e-01,3.622600905157071782e-01,-1.243316263965636853e-01,-9.631355784856173718e-01,-1.000834442456779994e-02,1.052561393325814221e+00,7.116877687750280401e-01,2.542471727420141936e-01,3.624994345080302660e-02,-9.677996770583371378e-01,1.053036705002944051e-01,1.413946563594596917e+00,-5.117096868173554025e-01,-1.003094528029899068e+00,2.327334536134448018e-01,-1.011856012113838021e+00,-1.753481385107496793e-01,1.498682774376994153e+00,-6.544300352390985953e-01,3.377864625737392323e-01,1.750940047149775136e+00,-1.017837575108269554e+00,-1.732759928775657599e-01,1.527676943014957711e+00,-2.071993775362086510e+00,8.975833956414570602e-01,-2.697846752767305012e-01,-8.402189522942615785e-01,-9.346192208322898209e-02,1.658402302847817422e+00,-2.071993775362086510e+00,8.975833956414570602e-01,-2.697846752767305012e-01,-1.039430244508866785e+00,3.252363069909481874e-01,1.169312477025285402e+00,1.798936187823059418e+00,2.104978503124649014e-01,-9.552349898645253606e-03,-1.086301481640580047e+00,3.829637638893005902e-01,8.823329449550617598e-01,1.665067893123646670e+00,-3.788543509181340752e-01,-1.179723463353899854e-01,-1.085459983022079022e+00,4.100304950712020391e-01,8.701913370883129772e-01,1.895594860382031621e+00,3.222313818320160506e-02,-1.672428120996468426e+00,-9.968495992132603289e-01,4.168040460472023367e-01,6.531427258074107289e-01,1.895594860382031621e+00,3.222313818320160506e-02,-1.672428120996468426e+00
|
||||
8.333333299999999833e-01,-9.770867500000000039e-01,-1.063577899999999937e-01,9.532099000000000544e-01,9.302945677888914133e-01,3.110635460337691782e-01,9.841674768613220547e-02,-9.707577053102374176e-01,-1.159552350262096632e-01,9.371511470359581431e-01,9.302945677888914133e-01,3.110635460337691782e-01,9.841674768613220547e-02,-1.034629998438511000e+00,-2.191526205210200251e-01,9.719238206185167872e-01,6.845311204957961193e-01,-5.144556678424518914e-01,9.881885334041153046e-02,-8.415023174532532124e-01,-5.390336582764151396e-01,7.464129179393914626e-01,7.708693837829254658e-01,-3.474703668088142128e-01,-1.065409328488749613e-01,-8.746608493028827924e-01,-5.113663392399180330e-01,7.550825574845364541e-01,8.303055192164363607e-01,-7.024998796469324180e-02,-2.190319451977948695e-01,-9.155213003992298537e-01,-7.963963952256642997e-01,4.417416809634162056e-01,8.303850256399801788e-01,-6.978066682394978848e-02,-2.193299027555984104e-01,-9.680107801452060290e-01,-8.192307937882203905e-01,4.131505855693602403e-01,1.008420274599727939e+00,3.559282763194344251e-02,-1.266308053786678878e-01,-7.933131897002869692e-01,-8.434423546925453596e-01,4.057683903122483726e-01,1.008420274599727939e+00,3.559282763194340782e-02,-1.266308053786679433e-01,-1.078243296959926711e+00,-8.872608799412735892e-02,8.767861723392911255e-01,1.672848565413936450e+00,-3.220457775999783778e-01,-1.422601017192302864e-01,-9.219444040115009065e-01,-6.551952048737230694e-02,4.627167304687860860e-01,1.671249456451801674e+00,2.704962432058200528e-01,-8.293232163006590552e-02,-9.388275242311449054e-01,-6.969831673932791460e-02,5.003339939337547726e-01,1.550079099733902455e+00,5.774473869939173998e-01,-2.377436479462930186e-01,-1.166624099941227621e+00,-2.356792385220008584e-02,1.438582989349254659e-01,1.602804407857387536e+00,2.982590195505431252e-01,-1.849319524915293000e-01,-1.222061223028881427e+00,-3.899039766332039469e-03,1.186815962093914073e-01,1.912756271728327961e+00,2.221490338703731859e-01,9.123584596270000943e-03,-1.050244548204426698e+00,-6.648516182835490819e-04,7.832673436116725785e-02,1.912756271728327961e+00,2.221490338703731582e-01,9.123584596270054720e-03,-1.050540137819228059e+00,-8.113927670391371527e-02,1.021455309598577887e+00,9.099290626432249285e-01,3.058760596102865770e-01,9.099140498094439311e-02,-1.036341389743362207e+00,-6.019831957257257282e-02,1.042659440379394065e+00,8.835001204560313237e-01,3.003176831877139574e-01,8.315018055647994955e-02,-1.030028415556015764e+00,-3.870685019354871276e-02,1.066728153291147452e+00,8.372653316619762531e-01,2.943852315679241216e-01,7.564121520296465673e-02,-1.030687754116264010e+00,-1.530404273812862800e-02,1.093254501125307421e+00,7.915348438053467772e-01,2.891960592274606667e-01,6.974368903502939365e-02,-1.037142485844434692e+00,4.439297832801634980e-03,1.115817583301803806e+00,7.531197852817798077e-01,2.841554864173453376e-01,6.449502749029073501e-02,-1.046524499959913035e+00,-6.202007562199932794e-02,1.060320739445926419e+00,7.237759127678109472e-01,2.793201877282199819e-01,5.985204295549297754e-02,-1.173646803727423249e+00,1.407328241588420153e-02,1.015362855866565051e+00,8.654022497061025776e-01,3.821025589836936076e-01,-1.328599797791251425e-01,-9.524034025960139704e-01,-6.801345202963535175e-03,1.053751642825259127e+00,7.153531034599666105e-01,2.757401022964372506e-01,6.372460979669700154e-02,-9.515909819059416019e-01,1.081314179136935727e-01,1.414870102798588825e+00,-5.163162342020597428e-01,-1.009109731199954618e+00,2.452727116035924304e-01,-9.937636724372842512e-01,-1.728109502780282303e-01,1.499601879043558350e+00,-6.456378665845986520e-01,3.584732479942564498e-01,1.782039618924263324e+00,-9.996916388338236148e-01,-1.702714025692330102e-01,1.528569871901614752e+00,-2.107551198973604656e+00,8.956870510743096814e-01,-2.694643564310834072e-01,-8.238967248237375474e-01,-8.265638354302798363e-02,1.656739827116411767e+00,-2.107551198973604656e+00,8.956870510743096814e-01,-2.694643564310834072e-01,-1.034354121378685321e+00,3.265214993083188078e-01,1.172376444754341218e+00,1.797565908450228456e+00,2.047007408860838373e-01,4.983115422829980518e-02,-1.082902455211124604e+00,3.810498743262218935e-01,8.850502545498039053e-01,1.665958578640466259e+00,-3.759034585717253019e-01,-5.689910452517078082e-02,-1.083758593079440447e+00,4.081292899428397569e-01,8.729379890226179883e-01,1.892656426444296658e+00,3.309959791536026819e-02,-1.611122630774634468e+00,-9.963604550212596944e-01,4.205433325469047356e-01,6.556473132430841178e-01,1.892656426444296658e+00,3.309959791536026125e-02,-1.611122630774634468e+00
|
||||
8.499999999999999778e-01,-9.670568699999999573e-01,-1.032481600000000055e-01,9.543200499999999753e-01,9.385035395895395816e-01,3.372760871894576740e-01,1.302928320394365069e-01,-9.608861631783940371e-01,-1.125860797417477244e-01,9.380480821812413605e-01,9.385035395895395816e-01,3.372760871894576740e-01,1.302928320394365069e-01,-1.020757280882907958e+00,-2.177616526446791434e-01,9.739932787985942086e-01,6.969666016080562354e-01,-5.028570274931274398e-01,1.003777147095149258e-01,-8.281671442933914440e-01,-5.340534806084086261e-01,7.428578140958546072e-01,7.803973761025424505e-01,-3.318142956578357117e-01,-1.041096177143060186e-01,-8.613014236369133103e-01,-5.066634437328298990e-01,7.523243009693502126e-01,8.376659160128713255e-01,-5.312037227189968236e-02,-2.137131070127758492e-01,-9.052922763710102849e-01,-7.885244960302872919e-01,4.365500679300545750e-01,8.364066231361666492e-01,-6.098565667435899840e-02,-2.087973626025828588e-01,-9.577388138994217259e-01,-8.117116622318497621e-01,4.081648252435640667e-01,1.013537070217193969e+00,4.290819440706971494e-02,-1.163767489140589695e-01,-7.828602378554130325e-01,-8.341181295037362053e-01,3.994827482620830761e-01,1.013537070217193969e+00,4.290819440706968718e-02,-1.163767489140590111e-01,-1.070710919716395537e+00,-8.825758899451832673e-02,8.807317981090999615e-01,1.669995680997943266e+00,-3.028446760795466264e-01,-1.448816391377273638e-01,-9.214507575539565565e-01,-6.572281680874839105e-02,4.642887153721149684e-01,1.668963639381300990e+00,2.672761411127664855e-01,-8.920379631002114951e-02,-9.387309995435110244e-01,-6.967584708110910463e-02,5.019016059459893153e-01,1.550221450435912418e+00,5.729669989934306207e-01,-2.421643730378847115e-01,-1.164754750310301734e+00,-2.286348334403858623e-02,1.443878567436429616e-01,1.602633819513085367e+00,2.940992224975050306e-01,-1.895143847421307259e-01,-1.219999577817577174e+00,-2.967401186519412482e-03,1.189681611116819304e-01,1.911401524051218992e+00,2.182276609119912780e-01,4.154433659076087020e-03,-1.048012509687035410e+00,-5.884195933171174064e-04,7.928524995412947196e-02,1.911401524051218992e+00,2.182276609119912503e-01,4.154433659076140796e-03,-1.039346163096737330e+00,-8.049054284378859281e-02,1.024641870875242944e+00,9.170765776202817188e-01,3.306943613248694569e-01,1.207507181086027864e-01,-1.025193732076106201e+00,-5.924403379481867765e-02,1.045571140456182047e+00,8.895153080921758271e-01,3.235926872672560406e-01,1.107214364805545609e-01,-1.018864329241807365e+00,-3.767345242698409702e-02,1.069564707104655454e+00,8.420074878498041704e-01,3.160128789054377774e-01,1.011256687395364895e-01,-1.019502537414631593e+00,-1.435587910591897345e-02,1.096166577443189460e+00,7.952007467016611875e-01,3.093864075480315945e-01,9.359499205630673890e-02,-1.025943605331718134e+00,5.201620633775383418e-03,1.118894629192489054e+00,7.558690765168928349e-01,3.029514228370317475e-01,8.689900627804127142e-02,-1.034923083258808996e+00,-6.142570603629805837e-02,1.063531895595472454e+00,7.257747258105073929e-01,2.967876543154406854e-01,8.097198171754277363e-02,-1.171605299994818994e+00,1.665134596566168745e-02,1.020764446021401373e+00,8.635800673804950867e-01,3.984513650669816998e-01,-1.361254452597193410e-01,-9.423120842518611928e-01,-4.082806151312692866e-03,1.055402971574983972e+00,7.177303579593222738e-01,2.921561275085191034e-01,8.593872937140852042e-02,-9.372923035826672411e-01,1.104630765450553692e-01,1.416507294084995427e+00,-5.087412147131307183e-01,-1.008193737647896659e+00,2.473935742680124228e-01,-9.769078767339590685e-01,-1.711392073667180047e-01,1.500277121809663328e+00,-6.290993393230740471e-01,3.722233436832089737e-01,1.815450183155901120e+00,-9.825641555452866438e-01,-1.682695807560930512e-01,1.529268611104148912e+00,-2.138800075698513492e+00,9.027317893649875469e-01,-2.664264895992080051e-01,-8.077656754650736071e-01,-7.369959085376009966e-02,1.653806915019285562e+00,-2.138800075698513492e+00,9.027317893649875469e-01,-2.664264895992080051e-01,-1.028770812464614437e+00,3.272276029494861627e-01,1.175692091898724589e+00,1.798249449574816916e+00,2.008198715788842015e-01,9.076237705864940997e-02,-1.078409215554308798e+00,3.800233498821876665e-01,8.882285950474266834e-01,1.667997214296481179e+00,-3.749806615914417218e-01,-1.592525326555654236e-02,-1.080404866130611596e+00,4.070665843584542753e-01,8.761697581952624381e-01,1.891765356694525169e+00,3.501158545215739271e-02,-1.569431584531772117e+00,-9.937946665037866723e-01,4.235303719275843592e-01,6.588326978718584970e-01,1.891765356694525169e+00,3.501158545215739271e-02,-1.569431584531772117e+00
|
||||
8.666666699999999723e-01,-9.586935100000000265e-01,-1.006901800000000041e-01,9.555120200000000175e-01,9.436712982130277538e-01,3.557507820088694483e-01,1.502341265503995826e-01,-9.526643582562922541e-01,-1.098807196526522811e-01,9.391036497390439219e-01,9.436712982130277538e-01,3.557507820088694483e-01,1.502341265503995826e-01,-1.009921929599090218e+00,-2.162025246009570689e-01,9.759242057773059864e-01,7.163096491268169386e-01,-5.066630683313307904e-01,9.138001606435895707e-02,-8.169195481130258063e-01,-5.286142816129619781e-01,7.394807208807938625e-01,8.006093311984129324e-01,-3.265335863783321857e-01,-1.154840506223308860e-01,-8.497706067849258860e-01,-5.012457400130239105e-01,7.496410581878979462e-01,8.565480862134586815e-01,-4.435580874525676259e-02,-2.190251789437787922e-01,-8.964216081442485384e-01,-7.764414332848550426e-01,4.284164815209389743e-01,8.552814816637657191e-01,-5.268423168913825144e-02,-2.140385049101203863e-01,-9.490817989183552017e-01,-7.988346172342349893e-01,3.997903466474909684e-01,1.049784545097101063e+00,5.783914035406102078e-02,-1.101553446532004127e-01,-7.742150276281422050e-01,-8.200944933015492655e-01,3.884072643040578643e-01,1.049784545097101063e+00,5.783914035406099302e-02,-1.101553446532004543e-01,-1.063981550408888310e+00,-8.743771078135084696e-02,8.839375087232679284e-01,1.667505766146303303e+00,-2.852703307316873937e-01,-1.489592299640602191e-01,-9.211448874783936258e-01,-6.567018917817804557e-02,4.654613036987282348e-01,1.666926799951673255e+00,2.640267543546072071e-01,-9.650576538707618390e-02,-9.388186280384621663e-01,-6.938330101556676455e-02,5.030657220622286596e-01,1.550560127724176507e+00,5.685055585644007703e-01,-2.475971528394190768e-01,-1.163002339243425443e+00,-2.159507100456557749e-02,1.445240049903603885e-01,1.603109487306935366e+00,2.868001813875206141e-01,-1.946878448932343741e-01,-1.217954955017542362e+00,-1.430681235975679588e-03,1.186857894484239090e-01,1.908482659908116164e+00,2.116555174784509608e-01,-2.531472276220352469e-03,-1.045699771194382954e+00,-2.066811468102933147e-04,8.012936241829199391e-02,1.908482659908116164e+00,2.116555174784509330e-01,-2.531472276220299127e-03,-1.030035682566289079e+00,-7.939706018428237255e-02,1.027245603406238272e+00,9.213992707709828256e-01,3.472801379470947802e-01,1.378830503148903430e-01,-1.015865351408746564e+00,-5.796611778669032156e-02,1.047973674982359382e+00,8.930895522508902618e-01,3.380850122054804285e-01,1.249580639853820341e-01,-1.009463011679937905e+00,-3.635395635629827538e-02,1.071910570267756491e+00,8.452364778433375525e-01,3.282826601247854637e-01,1.125984891161275897e-01,-1.010009257906010038e+00,-1.309312414557860585e-02,1.098564447398788335e+00,7.983396398640095759e-01,3.197267926640123825e-01,1.029011188999053167e-01,-1.016372239883999384e+00,6.367418373886501309e-03,1.121397411766219987e+00,7.589216996035229590e-01,3.114266048733294601e-01,9.428124012896665906e-02,-1.025409155270195383e+00,-6.018786488698001091e-02,1.065957698013752397e+00,7.287002469355845502e-01,3.034910166342908999e-01,8.664317489575895648e-02,-1.169191981210459419e+00,2.088974256508954741e-02,1.024820556415919848e+00,8.639309251106177534e-01,4.066310723057564580e-01,-1.494338387986759997e-01,-9.332790521819464002e-01,-2.508584252014847693e-03,1.057681055521835223e+00,7.213790514265091547e-01,2.975934377163676481e-01,9.290527419633066997e-02,-9.261643904542851136e-01,1.113894153194686237e-01,1.418634417163033845e+00,-4.925922625585146819e-01,-9.998875658933684685e-01,2.457347116527849040e-01,-9.615597676465414967e-01,-1.711916507856137692e-01,1.500985691165236835e+00,-6.057767086956512559e-01,3.792666633177970703e-01,1.853510008288821176e+00,-9.667489351524427565e-01,-1.681204738049370540e-01,1.530043824466211344e+00,-2.166492203455054888e+00,9.179546787453040091e-01,-2.587956879097992324e-01,-7.925022187649833905e-01,-6.687865316419144834e-02,1.650026974750216757e+00,-2.166492203455054888e+00,9.179546787453040091e-01,-2.587956879097992324e-01,-1.020346006267493832e+00,3.282420551270003872e-01,1.178943167948686366e+00,1.801037432145363937e+00,2.084557879990663054e-01,9.714591443678026461e-02,-1.072549349933374696e+00,3.813164260281354245e-01,8.919857738271832481e-01,1.669021840169775173e+00,-3.725135582099106668e-01,-1.155591743472644470e-02,-1.074702834028232301e+00,4.083617147639131417e-01,8.799587392034798894e-01,1.889313711852533606e+00,3.600834099586040782e-02,-1.564775190483078893e+00,-9.887057447854061820e-01,4.254496396963030058e-01,6.624264789894941385e-01,1.889313711852533606e+00,3.600834099586040782e-02,-1.564775190483078893e+00
|
||||
8.833333300000000277e-01,-9.533714500000000092e-01,-9.867070000000000007e-02,9.560912599999999983e-01,9.441047270264796287e-01,3.739546443950637622e-01,1.637231341021394004e-01,-9.475168478851478948e-01,-1.078222474887103877e-01,9.395981063562937052e-01,9.441047270264796287e-01,3.739546443950637622e-01,1.637231341021394004e-01,-1.002676377032181376e+00,-2.148019419740799796e-01,9.776937798980793737e-01,7.398824315605382340e-01,-5.143818890256784959e-01,8.440129293813931899e-02,-8.072772989070394756e-01,-5.216741587088646881e-01,7.352050733273907124e-01,8.271067320147821311e-01,-3.184110276057107169e-01,-1.295329669231836678e-01,-8.396839507480446940e-01,-4.943784873892408949e-01,7.463432500522151347e-01,8.815765119968564933e-01,-3.090992841019830559e-02,-2.246771506543017438e-01,-8.900819568742525112e-01,-7.604612447163467959e-01,4.180838687547940857e-01,8.811433610777810177e-01,-3.401381574940092606e-02,-2.229255850925623561e-01,-9.432724600401850568e-01,-7.816058778145887898e-01,3.894887495620968365e-01,1.108381564778487594e+00,8.809653158792227212e-02,-9.805070248843424097e-02,-7.685866240556958884e-01,-8.006328690001039972e-01,3.726727777398947672e-01,1.108381564778487594e+00,8.809653158792224437e-02,-9.805070248843429648e-02,-1.060100153503892084e+00,-8.700457990674570485e-02,8.863991116015899063e-01,1.666617793090882982e+00,-2.725756497920254762e-01,-1.525034510226567774e-01,-9.217851726355996700e-01,-6.545542741725920988e-02,4.666163337307477899e-01,1.666283814680674880e+00,2.598097094912108496e-01,-1.020333270353551286e-01,-9.398453444350963748e-01,-6.900159018704521419e-02,5.041806445452622354e-01,1.552294886014107700e+00,5.634269531834900091e-01,-2.510443217264334281e-01,-1.161920366304514562e+00,-2.017706536809184270e-02,1.444681696212486433e-01,1.604692512355588851e+00,2.793668128294463648e-01,-1.983757777821249790e-01,-1.216591618644966122e+00,2.147260754724877874e-04,1.182148843640135061e-01,1.905825149034643617e+00,2.050244807161014648e-01,-8.297574393606737750e-03,-1.044081299544528774e+00,4.393702332877932881e-04,8.079718889293646678e-02,1.905825149034643617e+00,2.050244807161014371e-01,-8.297574393606685708e-03,-1.023686992934133677e+00,-7.814508339379758195e-02,1.029051749383484982e+00,9.210463191205059408e-01,3.620540831043883578e-01,1.464331583799558245e-01,-1.009403636053208819e+00,-5.653932574236793934e-02,1.049519086226866849e+00,8.923826270780719216e-01,3.490650995787977218e-01,1.284293130191549448e-01,-1.002821351839211950e+00,-3.485922737513393044e-02,1.073345855501987467e+00,8.456690687054064792e-01,3.352660600086888043e-01,1.112180597251441055e-01,-1.003140812328736420e+00,-1.159989589835912563e-02,1.100005587352253178e+00,8.003636218944084613e-01,3.232652907173272361e-01,9.770776622212819229e-02,-1.009304567968205557e+00,7.859857241698697122e-03,1.122893923500010604e+00,7.622795032094664691e-01,3.116520961656115141e-01,8.569193492864475570e-02,-1.019052621643767420e+00,-5.832938196326599434e-02,1.067139535232482173e+00,7.329852898024928898e-01,3.005805576841881765e-01,7.502509663319702204e-02,-1.164834916483331151e+00,2.193167413627816753e-02,1.030222000389973580e+00,8.640266584630692526e-01,4.204430531047305131e-01,-1.529825123402610565e-01,-9.261876141368103887e-01,-2.551779999597700299e-03,1.060349091380666353e+00,7.271597041952043705e-01,2.928660067679833556e-01,8.313550930996481403e-02,-9.185217371198348690e-01,1.104368859561059985e-01,1.420806953474127887e+00,-4.712732501435809573e-01,-9.845604789659825329e-01,2.432352394344470536e-01,-9.481275635513899402e-01,-1.732631092914295179e-01,1.501580907910603946e+00,-5.777424403633552030e-01,3.794442573839130750e-01,1.894078005545266619e+00,-9.526887020287547747e-01,-1.701079698485191416e-01,1.530735252514354494e+00,-2.189702239631833525e+00,9.399808375292119100e-01,-2.472027003725869032e-01,-7.786792388825662936e-01,-6.267722019720024795e-02,1.645570445445223129e+00,-2.189702239631833525e+00,9.399808375292120211e-01,-2.472027003725869032e-01,-1.009277887490363623e+00,3.295139493830049338e-01,1.181818040449308382e+00,1.805128605619382265e+00,2.191597299129217080e-01,1.397752400988885868e-01,-1.066848514445581042e+00,3.810712166356128860e-01,8.956116549809207683e-01,1.667516617350181862e+00,-3.856962157840123639e-01,2.593767289961025624e-02,-1.069839874554807224e+00,4.080057527431671383e-01,8.835154891521990184e-01,1.902477979606317815e+00,3.437909411831045065e-02,-1.527375468119199553e+00,-9.816653438179732127e-01,4.280278112223721010e-01,6.671081184964535726e-01,1.902477979606317815e+00,3.437909411831044371e-02,-1.527375468119199553e+00
|
||||
9.000000000000000222e-01,-9.514756399999999559e-01,-9.730663999999999980e-02,9.558492600000000339e-01,9.418628778855925310e-01,3.981473618750997479e-01,1.788868003437965870e-01,-9.458627398039651801e-01,-1.064684225042942800e-01,9.392779475230230712e-01,9.418628778855925310e-01,3.981473618750997479e-01,1.788868003437965870e-01,-9.983873892603932765e-01,-2.140689949554131222e-01,9.793002792664216027e-01,7.668872338041441417e-01,-5.129043318762039894e-01,9.072920371028495024e-02,-7.984723814251624141e-01,-5.118129506582964616e-01,7.282615557032254827e-01,8.550777728659058052e-01,-2.970791706417019173e-01,-1.310274039425823323e-01,-8.305621147453912112e-01,-4.850683649601654768e-01,7.408898778953435516e-01,9.072345625742915809e-01,-3.781133078763022470e-03,-2.169071927624628693e-01,-8.857326766109088201e-01,-7.413080074934491615e-01,4.056412106706749343e-01,9.067932356713790387e-01,-7.383569074571743295e-03,-2.149954353813379182e-01,-9.393255669439031230e-01,-7.620299349592251081e-01,3.774914361527914042e-01,1.162678140621896894e+00,1.219861676291439379e-01,-7.154667951244414459e-02,-7.648724566165869820e-01,-7.762995140507534808e-01,3.546345771127896729e-01,1.162678140621896894e+00,1.219861676291439101e-01,-7.154667951244420010e-02,-1.059981834343902030e+00,-8.778576158255466111e-02,8.886192910783831111e-01,1.668336371303306587e+00,-2.651329876861957535e-01,-1.526042469770183818e-01,-9.240777366768631040e-01,-6.513433823398259714e-02,4.682989506362386090e-01,1.668030522284960071e+00,2.533283028017460636e-01,-1.025275576764690805e-01,-9.425666661588716355e-01,-6.867392531426971813e-02,5.057629263608816039e-01,1.556819177177491520e+00,5.565635722667385821e-01,-2.487385156488449156e-01,-1.161897739413250363e+00,-1.910080445266376659e-02,1.444727380479669532e-01,1.608072747874403907e+00,2.738773523447895486e-01,-1.977169123083129532e-01,-1.216404636282397478e+00,1.361061099293264798e-03,1.179337812225998150e-01,1.904578128375252755e+00,2.002280066553824567e-01,-1.020951726928739922e-02,-1.043717153991619906e+00,1.252178102848618569e-03,8.134189414275501406e-02,1.904578128375252755e+00,2.002280066553824289e-01,-1.020951726928734545e-02,-1.020383163362268419e+00,-7.744047223429860460e-02,1.030320047082237123e+00,9.180174552312224678e-01,3.819298751483647947e-01,1.554232295638801886e-01,-1.005929911385362585e+00,-5.557181374916313199e-02,1.050384877985599541e+00,8.893070659310029491e-01,3.641557960681280903e-01,1.311125677435092951e-01,-9.990800418484628853e-01,-3.375952366574459795e-02,1.074015242078902643e+00,8.449507684537513885e-01,3.453607456168842349e-01,1.078729139677989113e-01,-9.990541542254073315e-01,-1.047041372786099503e-02,1.100652066342340252e+00,8.026264635791917623e-01,3.290917866004490766e-01,8.960976753900508351e-02,-1.004906587381975136e+00,9.001417343749248956e-03,1.123612027637270527e+00,7.670617466595860412e-01,3.134007619469810213e-01,7.334422737895808508e-02,-1.015757608580117433e+00,-5.662186386895307066e-02,1.067398019141138299e+00,7.395886518651548780e-01,2.984895157334880311e-01,5.887080220047229834e-02,-1.159509597419607019e+00,2.078492499349944567e-02,1.035309795437917568e+00,8.644378696682523122e-01,4.334137447715040170e-01,-1.524127052247192249e-01,-9.217051217698798427e-01,-3.789346787026678931e-03,1.062540472713209727e+00,7.356995450655419155e-01,2.892401805166887052e-01,6.851647911624618448e-02,-9.127984666390005497e-01,1.080225039580837709e-01,1.422307587749668922e+00,-4.504464057918252662e-01,-9.671326610462033235e-01,2.410737122536648069e-01,-9.365385845517260055e-01,-1.766523781528639425e-01,1.501574493038452474e+00,-5.505360769441014490e-01,3.757484058329952359e-01,1.931195555245565076e+00,-9.404536098442572989e-01,-1.734661414953425351e-01,1.530819239084695749e+00,-2.208378228965980572e+00,9.631273442785626138e-01,-2.353257116011227557e-01,-7.666084007753189988e-01,-6.076252681329274985e-02,1.640744301249408954e+00,-2.208378228965980572e+00,9.631273442785626138e-01,-2.353257116011227557e-01,-9.991635049108359423e-01,3.302366950078060581e-01,1.184591217764263016e+00,1.811252782164008757e+00,2.286833089753455284e-01,1.687668205218442741e-01,-1.061105428263737771e+00,3.814108494644322667e-01,8.992299940066443842e-01,1.667589754467407870e+00,-4.035419233200488454e-01,4.791801071655554106e-02,-1.064472889267159328e+00,4.082842088290409843e-01,8.870966737174909023e-01,1.920332534989045659e+00,3.412890354246907176e-02,-1.504755524581807613e+00,-9.729178389024485396e-01,4.304407406142013448e-01,6.723071450562748685e-01,1.920332534989045659e+00,3.412890354246906482e-02,-1.504755524581807613e+00
|
||||
9.166666700000000167e-01,-9.518383299999999547e-01,-9.635496000000000338e-02,9.550902700000000189e-01,9.395830291932109057e-01,4.254139389875896127e-01,1.959171128428369990e-01,-9.464994259469977633e-01,-1.055369791643183536e-01,9.384398065813686074e-01,9.395830291932109057e-01,4.254139389875896127e-01,1.959171128428369990e-01,-9.960031378259104340e-01,-2.137598713179885146e-01,9.805788283380784121e-01,7.994908781019902655e-01,-5.056299660939437279e-01,1.044599051157630715e-01,-7.905180432546760061e-01,-4.988425467044568795e-01,7.187280766709269741e-01,8.856924611900501842e-01,-2.698959833267206565e-01,-1.211123574246578960e-01,-8.225148598578220227e-01,-4.731107123374141965e-01,7.330691113354173005e-01,9.352953128777493630e-01,2.867953981166133925e-02,-1.969326826385050522e-01,-8.815698038607009401e-01,-7.189060740679664718e-01,3.907368634845577726e-01,9.328874109323836983e-01,6.616379515021621194e-03,-1.859778938441347951e-01,-9.347908101636202005e-01,-7.403778942217711379e-01,3.624439066766132478e-01,1.201355931915266462e+00,1.361938903146597823e-01,-3.248870452590919139e-02,-7.602630856866117171e-01,-7.477581180056133148e-01,3.370362251358577921e-01,1.201355931915266462e+00,1.361938903146597546e-01,-3.248870452590923996e-02,-1.062231210219833244e+00,-8.926746047693639996e-02,8.906908180976887968e-01,1.671201237646834814e+00,-2.605550271604349377e-01,-1.481178178634584008e-01,-9.276395875945064873e-01,-6.457234503061104469e-02,4.702503121992205881e-01,1.670795112352684963e+00,2.449139416906507272e-01,-9.784703358905645632e-02,-9.466050933365943720e-01,-6.822897008772971228e-02,5.075675436810710428e-01,1.562698479509196714e+00,5.479399356528298348e-01,-2.408427783966713420e-01,-1.162704192923600166e+00,-1.870127276710708414e-02,1.443287784950564867e-01,1.612110676168661660e+00,2.698906081634165899e-01,-1.923271094895024069e-01,-1.217174605502292506e+00,1.607053960012948257e-03,1.175976730820645633e-01,1.903446596694096771e+00,1.970840939868004904e-01,-7.879134722587190914e-03,-1.044373533638987439e+00,1.897985459780600131e-03,8.154702097625676771e-02,1.903446596694096771e+00,1.970840939868004627e-01,-7.879134722587138873e-03,-1.019108059923731879e+00,-7.717338342446322663e-02,1.031219502771186125e+00,9.153420430078720305e-01,4.056813300725192195e-01,1.672353379913373850e-01,-1.004479925588026790e+00,-5.499499952882511145e-02,1.050812278013295353e+00,8.870998051124447947e-01,3.840360039895081012e-01,1.376007282508003027e-01,-9.973296479931792469e-01,-3.302849187011203114e-02,1.074209988791722914e+00,8.459944694223374695e-01,3.612465589882742356e-01,1.092509564298823899e-01,-9.968954933906157834e-01,-9.738643292942990998e-03,1.100843602082296924e+00,8.075289702691959004e-01,3.416038087356690345e-01,8.692833271163245834e-02,-1.002364608499487719e+00,9.669407815838276798e-03,1.123952024254287085e+00,7.752157711691893827e-01,3.227177465531145817e-01,6.700278470002730968e-02,-1.014447476172658291e+00,-5.522359207904181666e-02,1.067148582128537360e+00,7.501214872139680967e-01,3.048122506432648926e-01,4.923222143986923788e-02,-1.156314417511192350e+00,2.200310459509423333e-02,1.038079078151366463e+00,8.705891671766463613e-01,4.430582070279391327e-01,-1.570052271818859757e-01,-9.192702115312504363e-01,-5.167858308839604065e-03,1.063586281745671602e+00,7.478737411023802517e-01,2.952881311099919692e-01,5.910518124111589777e-02,-9.069801866784003019e-01,1.046301854763813100e-01,1.422910730405061219e+00,-4.350376129245667189e-01,-9.522216967554479883e-01,2.402585328853188706e-01,-9.260498077726144750e-01,-1.806936075768465488e-01,1.501098367832565561e+00,-5.267723524261753720e-01,3.736173313492789916e-01,1.963110172527496644e+00,-9.294148477910659789e-01,-1.774119446625063989e-01,1.530400959741456735e+00,-2.227712554921647214e+00,9.824965609277739320e-01,-2.280886273137191778e-01,-7.559408639792375428e-01,-6.001412108458437089e-02,1.635910716305290391e+00,-2.227712554921647214e+00,9.824965609277739320e-01,-2.280886273137191778e-01,-9.921069116526346487e-01,3.302319557270835815e-01,1.187954519477308457e+00,1.817253995526836530e+00,2.314012690584654197e-01,1.723348545775011120e-01,-1.055209333705365182e+00,3.827788253089030590e-01,9.030974767248369783e-01,1.669695466318930954e+00,-4.214648306614599549e-01,4.490165690528812037e-02,-1.058302376304372849e+00,4.096926493513346479e-01,8.909807997347582997e-01,1.938299580877123729e+00,3.571973340045354189e-02,-1.506300279642652118e+00,-9.628877730477847230e-01,4.322362581638210521e-01,6.779183207347326823e-01,1.938299580877123729e+00,3.571973340045353495e-02,-1.506300279642652118e+00
|
||||
9.333333299999999610e-01,-9.526612399999999647e-01,-9.555091999999999752e-02,9.544194499999999470e-01,9.384485840277627666e-01,4.507976169284457213e-01,2.104732580369799433e-01,-9.475955015587638197e-01,-1.047569811648349503e-01,9.376970686997617710e-01,9.384485840277627666e-01,4.507976169284457213e-01,2.104732580369799433e-01,-9.944065075115964270e-01,-2.134400995547965918e-01,9.816881874537242147e-01,8.409329401851952657e-01,-5.057022813214525625e-01,1.070912876646101380e-01,-7.839225764184409861e-01,-4.844053534395593719e-01,7.085755458842672994e-01,9.241465309737447731e-01,-2.531583924255808027e-01,-1.149953022587770490e-01,-8.159779728469251925e-01,-4.597614750271502015e-01,7.243536366485212596e-01,9.718176096154894639e-01,4.973349047028103459e-02,-1.787047649911577829e-01,-8.758202752132341340e-01,-6.927604844074395363e-01,3.733200561275666907e-01,9.661673924086922050e-01,-3.793128207333188590e-03,-1.544186097544723857e-01,-9.278908005183020835e-01,-7.149896052959986426e-01,3.435117929019942951e-01,1.237156966858674600e+00,1.223284908901283996e-01,5.747680995408474200e-03,-7.528806853846049529e-01,-7.156376511358040204e-01,3.204686977761617706e-01,1.237156966858674600e+00,1.223284908901283857e-01,5.747680995408421291e-03,-1.064699715271806513e+00,-9.052227378908297983e-02,8.927250188567258382e-01,1.673082701541908968e+00,-2.562458855373449529e-01,-1.406113724271448595e-01,-9.314857772995428498e-01,-6.383463229948800610e-02,4.721531115462356820e-01,1.672585797988415779e+00,2.369684417368892182e-01,-9.062782669365927746e-02,-9.508885080006859170e-01,-6.763386430880241607e-02,5.093310318106589740e-01,1.567301009584274318e+00,5.396431309338490800e-01,-2.308703534814298963e-01,-1.164087118920429376e+00,-1.904702959188581124e-02,1.442558532896570656e-01,1.614850621861839919e+00,2.679232455365048726e-01,-1.846644510461061262e-01,-1.218632264747043337e+00,9.429020479644750763e-04,1.174372836533688902e-01,1.903537424731935435e+00,1.954324618885883991e-01,-1.830454371160960495e-03,-1.045776777704890748e+00,2.279069556135593626e-03,8.167221897694301735e-02,1.903537424731935435e+00,1.954324618885883713e-01,-1.830454371160907152e-03,-1.018319618139674754e+00,-7.689753980764160723e-02,1.032071483545369928e+00,9.141534286895360850e-01,4.286738831452210907e-01,1.780534312085325366e-01,-1.003507177367859660e+00,-5.445772314290438232e-02,1.051223307140953578e+00,8.866690224492773664e-01,4.043992459555600383e-01,1.446221037293320133e-01,-9.960439782306202972e-01,-3.236914009602241682e-02,1.074407611341141155e+00,8.489336304634590435e-01,3.789490731094315445e-01,1.125987300176824746e-01,-9.951783086757999275e-01,-9.115608316393297716e-03,1.101063113330778664e+00,8.143320990672155979e-01,3.571021030988587031e-01,8.732349364136952896e-02,-1.000235101100122037e+00,1.017787045529278123e-02,1.124361051807258649e+00,7.852548181391759696e-01,3.361595017381056594e-01,6.470544738369177207e-02,-1.013573278203260264e+00,-5.392103945978470037e-02,1.066943765158624435e+00,7.625241879495100461e-01,3.163478533889139133e-01,4.448538144957182860e-02,-1.154933632280816136e+00,2.086877493996454336e-02,1.043667917755429775e+00,8.712065979536828264e-01,4.577848970446071197e-01,-1.619233518292813312e-01,-9.173887042467164799e-01,-6.238260880372686890e-03,1.064012318259113243e+00,7.613771277062985066e-01,3.074845975493655792e-01,5.360671738697215388e-02,-9.004634178122901123e-01,1.009840756514250454e-01,1.423145561126902825e+00,-4.201964089745491293e-01,-9.395071023884927763e-01,2.353803345986777984e-01,-9.163719127866265524e-01,-1.848869576788719771e-01,1.500030514581872199e+00,-5.052277719463335037e-01,3.716500727868889409e-01,1.990261080731336119e+00,-9.192380683198674296e-01,-1.814861166483642541e-01,1.529372534470295752e+00,-2.246463107224951017e+00,9.998478182950686355e-01,-2.244704400261779420e-01,-7.460809112918319608e-01,-6.010912832110894277e-02,1.630822061059198802e+00,-2.246463107224951017e+00,9.998478182950687465e-01,-2.244704400261779698e-01,-9.864654925765415916e-01,3.299408960308549132e-01,1.191781007582929597e+00,1.822976803555087733e+00,2.264114735553234559e-01,1.979188485427194888e-01,-1.049742836073957575e+00,3.827751129133861729e-01,9.070159336996095334e-01,1.672404078050500509e+00,-4.489679313011775141e-01,6.313713846970646359e-02,-1.053026350085799479e+00,4.096748326307170784e-01,8.949180697042082855e-01,1.965866077707648207e+00,3.760705018948921896e-02,-1.485912201661238496e+00,-9.522893006204662392e-01,4.349525512309094233e-01,6.846304938041389843e-01,1.965866077707648207e+00,3.760705018948921896e-02,-1.485912201661238496e+00
|
||||
9.499999999999999556e-01,-9.526436999999999822e-01,-9.516929999999999834e-02,9.547908200000000400e-01,9.419444666663155941e-01,4.660016279592371080e-01,2.148318898658359011e-01,-9.478122696153156168e-01,-1.043638690341273517e-01,9.379929485517817245e-01,9.419444666663155941e-01,4.660016279592371080e-01,2.148318898658359011e-01,-9.936289284308097436e-01,-2.131707954109396119e-01,9.827187305787439264e-01,8.903135670446497008e-01,-5.134183162395665745e-01,9.895294917776999155e-02,-7.781600357822848757e-01,-4.686591801079522668e-01,6.986239401416494132e-01,9.699462981871947997e-01,-2.479799656357307702e-01,-1.127943178329963436e-01,-8.104790986677268272e-01,-4.451770820615522095e-01,7.155050463784640158e-01,1.016120184328565657e+00,5.806566043525894505e-02,-1.624594938760074991e-01,-8.674472577364441550e-01,-6.629547708484606616e-01,3.543655701410799441e-01,1.007343097721122183e+00,-2.393658149912424038e-02,-1.294125007299249674e-01,-9.181513074622517090e-01,-6.853268451546885576e-01,3.223875212608189322e-01,1.275486127023981453e+00,9.604471539223297105e-02,3.589546897273000747e-02,-7.426644878521988513e-01,-6.806205959247879633e-01,3.038896306558492855e-01,1.275486127023981453e+00,9.604471539223295717e-02,3.589546897272994502e-02,-1.065640018417432833e+00,-9.046579609875653183e-02,8.948423493506574289e-01,1.672087144067531117e+00,-2.497446659934882407e-01,-1.294938404635713469e-01,-9.349298885011685378e-01,-6.247689494547044309e-02,4.737827383703617778e-01,1.671602271981851517e+00,2.302017624849974908e-01,-8.130303731285073998e-02,-9.547231967599107971e-01,-6.638060222039671165e-02,5.108556483794333136e-01,1.568707598566215999e+00,5.320381045604728465e-01,-2.196898389439068400e-01,-1.165606258236852932e+00,-2.020247864569910817e-02,1.441266892511818831e-01,1.614859063856601606e+00,2.664693836138944394e-01,-1.748183151258392853e-01,-1.220307043358712207e+00,-7.570209806755517912e-04,1.172249372487776248e-01,1.902741406110465938e+00,1.941881822311869454e-01,7.637632093552767197e-03,-1.047427832691527172e+00,2.214801104664993435e-03,8.167368708675487587e-02,1.902741406110465938e+00,1.941881822311869177e-01,7.637632093552820974e-03,-1.017141031353126612e+00,-7.668760217694528536e-02,1.033450406956497147e+00,9.179095711115288214e-01,4.437324978800063491e-01,1.816014853368576598e-01,-1.002077446705819330e+00,-5.423301708699972135e-02,1.052388209369563121e+00,8.910144233074147602e-01,4.193333626847235429e-01,1.473062605864335906e-01,-9.942784071884144259e-01,-3.218061367125153727e-02,1.075496261665520592e+00,8.550711796371873730e-01,3.937835332425925206e-01,1.144142915117852405e-01,-9.929868675003385992e-01,-9.041051159645235868e-03,1.102233635491416175e+00,8.224257253073444796e-01,3.718748648744191199e-01,8.841272346199594012e-02,-9.976467566620080829e-01,1.011011458344688793e-02,1.125731150126710878e+00,7.949531833176048945e-01,3.508902489852894213e-01,6.510902218597953983e-02,-1.012103924314437409e+00,-5.335497065684381701e-02,1.067883485277930644e+00,7.733710677894606311e-01,3.310416867680517905e-01,4.425682961051234654e-02,-1.154243832548827342e+00,2.212915330535826508e-02,1.047978407644402532e+00,8.774877348102817498e-01,4.743045853549828772e-01,-1.647922895193232873e-01,-9.153915522218747380e-01,-6.790464309685051436e-03,1.064457399949758187e+00,7.725005492955505648e-01,3.229158749930795547e-01,5.256027149974401569e-02,-8.930420506658625079e-01,9.769707394709224724e-02,1.423800195647885403e+00,-3.975342240167512586e-01,-9.236739587139277674e-01,2.189470164578869449e-01,-9.070507428395947480e-01,-1.889269438611126950e-01,1.498211572039647388e+00,-4.817201559166311431e-01,3.637583294025442116e-01,2.013079300004947836e+00,-9.092837262573069124e-01,-1.855042313580241853e-01,1.527606019177934815e+00,-2.259791078415915866e+00,1.022060305484379095e+00,-2.213970551863084224e-01,-7.355828662184633604e-01,-6.143763373208502299e-02,1.624782515028671659e+00,-2.259791078415915866e+00,1.022060305484379095e+00,-2.213970551863084502e-01,-9.816723140310006368e-01,3.291842942949304573e-01,1.195972448588678239e+00,1.829204210895628568e+00,2.192994823149256312e-01,2.178847117277329382e-01,-1.044315955187400835e+00,3.829583263223411693e-01,9.112431882734863819e-01,1.676513029058545268e+00,-4.769611360160039837e-01,7.513541289394347344e-02,-1.047637759915765354e+00,4.098799645497535060e-01,8.992046789435446108e-01,1.993958520131467127e+00,4.063301535615003457e-02,-1.470979907099337902e+00,-9.414903889074077714e-01,4.377582833784621763e-01,6.919287378943291822e-01,1.993958520131466905e+00,4.063301535615003457e-02,-1.470979907099337902e+00
|
||||
9.666666699999999501e-01,-9.519885000000000153e-01,-9.401887999999999912e-02,9.546252800000000205e-01,9.405895539744495437e-01,4.853984201649209074e-01,2.232788138565316438e-01,-9.473874936741916164e-01,-1.032613455851671413e-01,9.377890430340647399e-01,9.405895539744495437e-01,4.853984201649209074e-01,2.232788138565316438e-01,-9.913683683719236583e-01,-2.122304327962565296e-01,9.839402047064664814e-01,9.505752444618333907e-01,-5.240943880750321693e-01,7.056023273234673931e-02,-7.735038699785758975e-01,-4.518544255400219756e-01,6.884096577024851893e-01,1.023925604978257464e+00,-2.549872009157101993e-01,-1.203453114709893274e-01,-8.063028368468679874e-01,-4.294520483947192324e-01,7.059890993856086094e-01,1.068261310984430557e+00,5.199804505994742865e-02,-1.543591995149366514e-01,-8.569686581154482008e-01,-6.290013181839262391e-01,3.335548398714855978e-01,1.056078137104049297e+00,-5.623209154848939073e-02,-1.169796449292745955e-01,-9.060852172414012307e-01,-6.506086420111135693e-01,2.987023915471176405e-01,1.316425037435329459e+00,5.547432367278291171e-02,5.230809208651239495e-02,-7.301012753810895983e-01,-6.429256137380390257e-01,2.872757612756748347e-01,1.316425037435329459e+00,5.547432367278289783e-02,5.230809208651233944e-02,-1.066121140538126566e+00,-9.066264898087889046e-02,8.967755943035411459e-01,1.670943469505950851e+00,-2.425162381729649708e-01,-1.248010711587442256e-01,-9.380602140778222520e-01,-6.227522463531746932e-02,4.751512614146468083e-01,1.670507914973949681e+00,2.242419750121903144e-01,-7.843237998481238094e-02,-9.582400819154617277e-01,-6.615915593552171292e-02,5.121310207386371438e-01,1.569855756758995469e+00,5.251916308907753628e-01,-2.150516050402525026e-01,-1.166773266819774113e+00,-2.101910088715100433e-02,1.439320250828199366e-01,1.614086513945003798e+00,2.699837965926294436e-01,-1.720037481673756252e-01,-1.221628744230104147e+00,-1.742449489886513381e-03,1.172244739681625181e-01,1.901388098423888451e+00,1.982167184019831829e-01,9.874544319747834836e-03,-1.048901648293192324e+00,1.612590789979654292e-03,8.097480321903738343e-02,1.901388098423888451e+00,1.982167184019831552e-01,9.874544319747888613e-03,-1.015173767489203627e+00,-7.568906352172383167e-02,1.034377705207356168e+00,9.181175642751788768e-01,4.633781944172835621e-01,1.901083734670866721e-01,-9.999342416532031041e-01,-5.304767257681514137e-02,1.052948928726038957e+00,8.934348438838530804e-01,4.393055815050884161e-01,1.558424659532868795e-01,-9.918371733339448326e-01,-3.092034530689805744e-02,1.075882223284424510e+00,8.619893085133633059e-01,4.142327236501748278e-01,1.228598011008959490e-01,-9.901073717134442065e-01,-7.890286376769129612e-03,1.102689569803928293e+00,8.339179707447935685e-01,3.928349538248568362e-01,9.667644088159606242e-02,-9.943210474831767343e-01,1.102651844145626295e-02,1.126460093455406986e+00,8.102024692792866301e-01,3.724099864094450041e-01,7.311825024720773614e-02,-1.010031683019754212e+00,-5.147525949424870684e-02,1.067897945239361768e+00,7.913641520073733115e-01,3.531357871672351489e-01,5.196848925033310113e-02,-1.162307568189385076e+00,2.780063591523040945e-02,1.056075880517022947e+00,8.734310893316474811e-01,4.906323350025034169e-01,-2.036873590939506928e-01,-9.126549631650403560e-01,-6.298039175003392054e-03,1.063954393663922415e+00,7.907655448591738301e-01,3.468415606234077075e-01,5.832399906627314112e-02,-8.830785606647055808e-01,9.413823523219154443e-02,1.423353666158530428e+00,-3.874040239833219657e-01,-9.130091909633935021e-01,2.032404622197978572e-01,-8.984160574767616758e-01,-1.926529407708446051e-01,1.496853370483029133e+00,-4.626226289374849032e-01,3.632804300994423308e-01,2.024680512173807401e+00,-9.001869640724841082e-01,-1.890251776459434818e-01,1.526254695673009643e+00,-2.280732643216082600e+00,1.036283564043124938e+00,-2.345313281297034536e-01,-7.255337006594511085e-01,-6.342473150376634616e-02,1.619681385000003582e+00,-2.280732643216082600e+00,1.036283564043124938e+00,-2.345313281297034258e-01,-9.772469633121882993e-01,3.290419252907356151e-01,1.201318291863537890e+00,1.831634134250907930e+00,2.084084590660593983e-01,2.286077861903190456e-01,-1.037566914951961072e+00,3.835351611326349164e-01,9.162242465747811870e-01,1.681046252467516711e+00,-4.866852362381037245e-01,8.340267877256066220e-02,-1.041055542865726213e+00,4.104787426797421035e-01,9.042824047117420383e-01,2.003792405018030909e+00,4.439661450966771172e-02,-1.460193973987039762e+00,-9.332700820861922208e-01,4.404530407455452545e-01,6.981474569941248376e-01,2.003792405018030909e+00,4.439661450966770478e-02,-1.460193973987039762e+00
|
||||
9.833333300000000055e-01,-9.498289500000000052e-01,-9.374380000000000213e-02,9.559967499999999507e-01,9.509509300495466722e-01,4.945126010443918751e-01,2.213468740626652886e-01,-9.454747978878784709e-01,-1.029000553814302388e-01,9.390481320253452058e-01,9.509509300495466722e-01,4.945126010443918751e-01,2.213468740626652886e-01,-9.896957593224764427e-01,-2.118867793450075476e-01,9.849274258297899820e-01,1.017514669361479829e+00,-5.365262973624798093e-01,3.720834919553296649e-02,-7.686527047480249397e-01,-4.336626760303023964e-01,6.784093228634411332e-01,1.083728612238779032e+00,-2.654263221990992849e-01,-1.305437764302651849e-01,-8.020204708046911879e-01,-4.124398351194048518e-01,6.965677243170458333e-01,1.125811850385952884e+00,4.157715249050864675e-02,-1.473366658413035324e-01,-8.447041217661359624e-01,-5.912875108801267654e-01,3.127893651126118502e-01,1.112643955233133086e+00,-7.353798516920881378e-02,-1.147901512276540553e-01,-8.928452950508866115e-01,-6.112331689795659218e-01,2.756598063312742375e-01,1.367168018725677614e+00,2.816596261681550070e-02,5.900650141090305750e-02,-7.166780150095131141e-01,-6.022719772098554802e-01,2.689716765187358805e-01,1.367168018725677614e+00,2.816596261681549029e-02,5.900650141090300199e-02,-1.064558686923997577e+00,-8.921330122782843153e-02,8.994222671984433148e-01,1.666622988357457924e+00,-2.317473233622023565e-01,-1.156640517671498891e-01,-9.406950437503924789e-01,-6.114291839899776287e-02,4.768446401769743659e-01,1.666302719074514549e+00,2.171273823379946954e-01,-7.295634369265932562e-02,-9.613529233929590800e-01,-6.495236185082313429e-02,5.137252190640679839e-01,1.568255739149830630e+00,5.164531151280761234e-01,-2.081036522378231779e-01,-1.167178782113059921e+00,-2.259501113003799938e-02,1.436768642506624505e-01,1.610632384262161043e+00,2.726215625194464698e-01,-1.663348753867070484e-01,-1.222244153997368743e+00,-3.756377779788822036e-03,1.170889592883197494e-01,1.897959043537726709e+00,2.016123920398542324e-01,1.555222552002404925e-02,-1.049664012902940424e+00,5.721192752961637429e-04,8.024735768673364744e-02,1.897959043537726709e+00,2.016123920398542047e-01,1.555222552002410302e-02,-1.012015682001321082e+00,-7.554094832566851658e-02,1.036558999721458374e+00,9.293269956987956215e-01,4.749464806088840030e-01,1.909137474895696851e-01,-9.964326681898927340e-01,-5.310910533275232936e-02,1.055099693610415335e+00,9.053047265533222809e-01,4.536030472122033474e-01,1.593773882895405114e-01,-9.879386614764134045e-01,-3.118436129069465657e-02,1.078083793255239176e+00,8.741923577172863169e-01,4.313458568941562210e-01,1.289699325465569479e-01,-9.857415787245169536e-01,-8.387585737314139783e-03,1.105055523669775219e+00,8.462069857520668759e-01,4.123240624564256662e-01,1.047999370966146565e-01,-9.895257288874458323e-01,1.029187273909532366e-02,1.129084675309541375e+00,8.224943067536621966e-01,3.941466749295391425e-01,8.303206566943902023e-02,-1.006235479597537230e+00,-5.172056192985799439e-02,1.070279142545450091e+00,8.036192024932373723e-01,3.769685895772446060e-01,6.348415696932727115e-02,-1.164856385326959121e+00,2.960838048794747768e-02,1.064637488851241542e+00,8.492153638078132616e-01,4.778136979925518557e-01,-2.651410022544677947e-01,-9.092570359266837210e-01,-5.725731052549837274e-03,1.064244665579707760e+00,8.026907364646894694e-01,3.711086250661722596e-01,6.932336032115118951e-02,-8.716414404518614267e-01,9.126160388643153598e-02,1.423987637695402819e+00,-3.647515172817193396e-01,-8.981475654280591803e-01,1.703805657773951043e-01,-8.900558080041824915e-01,-1.960670692026618978e-01,1.494625932309315175e+00,-4.425862252731093682e-01,3.529077185716915088e-01,2.028247010693595254e+00,-8.911841855307119920e-01,-1.924653648427780694e-01,1.524062120721705993e+00,-2.288846827455386812e+00,1.057337125711347303e+00,-2.450136033028446902e-01,-7.141360937140029952e-01,-6.756947164553038510e-02,1.613855048155122152e+00,-2.288846827455386812e+00,1.057337125711347303e+00,-2.450136033028446902e-01,-9.728641772733994664e-01,3.276762168118015905e-01,1.206710792531631604e+00,1.837372093751613367e+00,2.044510575097542304e-01,1.919998812986861980e-01,-1.030279853782876787e+00,3.861950578727401662e-01,9.218150057791829610e-01,1.690736705214921809e+00,-4.726422153813155669e-01,4.511131249222802980e-02,-1.033025994949286819e+00,4.133348039076078506e-01,9.101262251650563684e-01,1.989989120380460941e+00,5.339863630865328975e-02,-1.494687940293693007e+00,-9.272737028477547883e-01,4.412858882294432017e-01,7.026582267386851655e-01,1.989989120380460941e+00,5.339863630865328975e-02,-1.494687940293693007e+00
|
||||
1.000000000000000000e+00,-9.468765700000000285e-01,-9.311505999999999950e-02,9.573340999999999656e-01,9.618313557360425037e-01,5.036339237273848024e-01,2.203214893208298442e-01,-9.427661132764212359e-01,-1.021731572322670950e-01,9.402722617481984457e-01,9.618313557360425037e-01,5.036339237273848024e-01,2.203214893208298442e-01,-9.871639538756086241e-01,-2.112185585687909595e-01,9.858402464303562818e-01,1.089744395225088480e+00,-5.446468769096696194e-01,-2.824132159079772620e-05,-7.636130483910750222e-01,-4.134292198510541860e-01,6.683244846722642407e-01,1.146883258838241826e+00,-2.760038459892186768e-01,-1.417771279657179251e-01,-7.976376052270025552e-01,-3.934855414334305079e-01,6.869734798936873998e-01,1.186032526997316650e+00,2.950561227175099374e-02,-1.408728879781933896e-01,-8.315855940189784690e-01,-5.499960663397749361e-01,2.927068140080472114e-01,1.174142555750643302e+00,-7.552288165365006467e-02,-1.179632945864781263e-01,-8.793554007097907910e-01,-5.677074733245345284e-01,2.539981895311744786e-01,1.425391628134671462e+00,1.495479586081676152e-02,6.039884352961426978e-02,-7.031353311947452500e-01,-5.583944455592093625e-01,2.495598103840704352e-01,1.425391628134671462e+00,1.495479586081675284e-02,6.039884352961421426e-02,-1.062189299517050989e+00,-8.745807585121781469e-02,9.020612947545102456e-01,1.661986843192124530e+00,-2.206057356618569276e-01,-1.063924845211490083e-01,-9.426499662732787943e-01,-5.988905126936943518e-02,4.785687785137444084e-01,1.661761646119331193e+00,2.093123581007793610e-01,-6.743380596250504733e-02,-9.638302787463515209e-01,-6.361518351632484969e-02,5.153299339173686988e-01,1.566543946003402743e+00,5.068563968470055636e-01,-2.009487737690629772e-01,-1.166608931199727861e+00,-2.415634388709778091e-02,1.432841944412039381e-01,1.606695116132450085e+00,2.766766215252048911e-01,-1.608330146482171985e-01,-1.221918938806713539e+00,-5.761831079543339174e-03,1.168938375918393002e-01,1.892943135626860895e+00,2.069551665627136494e-01,2.031158228032422727e-02,-1.049562145462511031e+00,-6.237762699447119141e-04,7.912240954925586767e-02,1.892943135626860895e+00,2.069551665627136217e-01,2.031158228032427931e-02,-1.008060455635666486e+00,-7.512069116579718486e-02,1.038706972353412805e+00,9.408758050053309674e-01,4.859174099402449043e-01,1.918912439256741931e-01,-9.921432829272762710e-01,-5.290713337120704629e-02,1.057226679172845518e+00,9.174219096900155801e-01,4.666147839196314595e-01,1.623673444033520152e-01,-9.832621041508574633e-01,-3.120061085435711645e-02,1.080271419180978354e+00,8.867277747616013617e-01,4.464689575321423853e-01,1.338544287206823724e-01,-9.806101278332634008e-01,-8.653455695388570512e-03,1.107411425782651060e+00,8.589841636260128199e-01,4.292348300253804316e-01,1.111597891411674199e-01,-9.839780182004669307e-01,9.783868651889869594e-03,1.131688328589842696e+00,8.354245490137717223e-01,4.127526970661948291e-01,9.069862401764214321e-02,-1.001689620358270583e+00,-5.165381655587377580e-02,1.072573633774726254e+00,8.166367829301985903e-01,3.971615513962745703e-01,7.231230295809457087e-02,-1.171097218084903524e+00,3.566895898897325806e-02,1.074097719886268676e+00,8.381028616978961621e-01,4.888474750729396856e-01,-3.110773322655022710e-01,-9.049764499864159095e-01,-5.213842851115577104e-03,1.064912321769388548e+00,8.154826742825614927e-01,3.916865437804104566e-01,7.767989730827019879e-02,-8.602479559155049582e-01,8.810630690560622424e-02,1.424895245524560261e+00,-3.388805820683731262e-01,-8.770938921152376944e-01,1.328096454814217398e-01,-8.820903139946083549e-01,-1.997647815329535725e-01,1.492273074312642667e+00,-4.215410364844149327e-01,3.349122115855515669e-01,2.024633986996936308e+00,-8.824238099217823761e-01,-1.963744482446775630e-01,1.521754070209137000e+00,-2.287054469770532172e+00,1.084088445656542499e+00,-2.541499559544032616e-01,-7.017904408964644736e-01,-7.404829966933355878e-02,1.607868413612690173e+00,-2.287054469770532172e+00,1.084088445656542499e+00,-2.541499559544032616e-01,-9.669055717632945024e-01,3.264046246621946645e-01,1.212327129771840317e+00,1.839596943845555499e+00,2.029741389072507451e-01,1.768503655994835000e-01,-1.023096320729186326e+00,3.864968910669564495e-01,9.275146594928085353e-01,1.697847226292797496e+00,-4.461580987728127057e-01,3.288326269511233219e-02,-1.025905104000836898e+00,4.137236342439248316e-01,9.160451394114602630e-01,1.963678648963061102e+00,6.061198905447771901e-02,-1.505261943419141657e+00,-9.254754902325309507e-01,4.418532703048397292e-01,7.059727780119456897e-01,1.963678648963061102e+00,6.061198905447771901e-02,-1.505261943419141657e+00
|
||||
1.016666669999999995e+00,-9.433475700000000241e-01,-9.212262000000000228e-02,9.585002700000000431e-01,9.761234871642435751e-01,5.117439556164021797e-01,2.221931682617752368e-01,-9.394651872587406194e-01,-1.010227618208892342e-01,9.413024246612756718e-01,9.761234871642435751e-01,5.117439556164021797e-01,2.221931682617752368e-01,-9.839353235125032349e-01,-2.103132932388482312e-01,9.862078336278987667e-01,1.163079073775260541e+00,-5.490830351908497775e-01,-3.371373543627183972e-02,-7.574619840017411398e-01,-3.911814718358533893e-01,6.585074568500355330e-01,1.210790794068392628e+00,-2.833862432946741561e-01,-1.505679963618385686e-01,-7.921387344531347630e-01,-3.726715775411906795e-01,6.776625989755795665e-01,1.246732823777122690e+00,1.978979666080154728e-02,-1.318482653612989552e-01,-8.178664955902391620e-01,-5.059506775996009953e-01,2.743401746392296059e-01,1.237823345778764850e+00,-6.114592932779920609e-02,-1.193997247325014333e-01,-8.658520296282721240e-01,-5.212686361103499033e-01,2.348844444128523057e-01,1.489413118291334825e+00,1.742481176260421774e-02,6.357857108676978619e-02,-6.896828568849893148e-01,-5.112785382221685104e-01,2.299281237381445298e-01,1.489413118291334825e+00,1.742481176260421427e-02,6.357857108676973068e-02,-1.059210581546641716e+00,-8.531043206460318939e-02,9.045237314956315888e-01,1.657382330332981768e+00,-2.097012284994518583e-01,-9.587632704423046381e-02,-9.439087592450181585e-01,-5.817301988415046754e-02,4.802245121149855689e-01,1.657222459732338171e+00,2.008472428562976808e-01,-6.052538907666051710e-02,-9.656403257945894714e-01,-6.184876440837888678e-02,5.168418593157484420e-01,1.565012444484405574e+00,4.965318030966680007e-01,-1.922202698693498413e-01,-1.165097425744598514e+00,-2.553729126370207075e-02,1.426860677320100357e-01,1.602713726193032429e+00,2.810826324586955249e-01,-1.540492576877838249e-01,-1.220680472965508523e+00,-7.660879460526841267e-03,1.165142366873485602e-01,1.886609362536032730e+00,2.130882368033316376e-01,2.555477832185224993e-02,-1.048589743328274926e+00,-1.635010329385615246e-03,7.767592738277705189e-02,1.886609362536032730e+00,2.130882368033315821e-01,2.555477832185230197e-02,-1.003570164050785918e+00,-7.467112479763293731e-02,1.040704248050094760e+00,9.548890355444674682e-01,4.947991565895195620e-01,1.939450247778886083e-01,-9.873467409339032885e-01,-5.272411824785087214e-02,1.059276149874929684e+00,9.310563275148604490e-01,4.763437899406987586e-01,1.645728710960297769e-01,-9.781123713905613970e-01,-3.129341653663424150e-02,1.082439842848186728e+00,8.997892355195993286e-01,4.570312385038635128e-01,1.361971317500673406e-01,-9.750576414649030355e-01,-9.032697625427736632e-03,1.109773102458033511e+00,8.714928620986093222e-01,4.404700190832027684e-01,1.136083645819872534e-01,-9.780705603967467798e-01,9.169774354340898964e-03,1.134272841702555157e+00,8.474429616438085011e-01,4.246031972108695318e-01,9.324117492121332396e-02,-9.966803282808709419e-01,-5.165678477877873320e-02,1.074802688669320716e+00,8.282484834305076093e-01,4.095663237076443974e-01,7.494532728068201144e-02,-1.167485460654980489e+00,3.157999731407121202e-02,1.084311581882864362e+00,8.197155288410820084e-01,4.888721752526587472e-01,-3.370501655713415423e-01,-9.000149279043139217e-01,-5.207496735440866886e-03,1.066221251069372933e+00,8.270195219258746899e-01,4.040419109211249582e-01,8.027012103697819811e-02,-8.503413516400547545e-01,8.439791218597762767e-02,1.426574174162184239e+00,-3.060368148043786651e-01,-8.510561165431675956e-01,9.533612374894742669e-02,-8.739444581298853043e-01,-2.043753598841368535e-01,1.489339727449019435e+00,-4.024058767040730178e-01,3.067091025969777007e-01,2.019174782046557759e+00,-8.733968450890532420e-01,-2.015016249166363682e-01,1.518872361359360434e+00,-2.265381924463947261e+00,1.116160935829496159e+00,-2.463253339410595155e-01,-6.889562977486364259e-01,-8.275038195041657663e-02,1.601863972750417586e+00,-2.265381924463947261e+00,1.116160935829496159e+00,-2.463253339410595155e-01,-9.593101774179125796e-01,3.249556208223241538e-01,1.217756256054465247e+00,1.840218554924458294e+00,2.101678458174917608e-01,1.393834466399524741e-01,-1.015254360582675375e+00,3.870045371274573598e-01,9.333150418592661701e-01,1.704029669858816209e+00,-3.989040169103222344e-01,2.241662905782094029e-03,-1.017833096372538604e+00,4.143615399467980298e-01,9.221043676218789731e-01,1.916535230993492434e+00,6.778067608945742561e-02,-1.536392526278567372e+00,-9.266895037218468856e-01,4.408198764126041169e-01,7.076269032562121364e-01,1.916535230993492211e+00,6.778067608945741174e-02,-1.536392526278567372e+00
|
||||
1.033333330000000050e+00,-9.398803799999999598e-01,-9.038617000000000179e-02,9.587037000000000475e-01,9.897069655121389919e-01,5.227915706313739364e-01,2.293501814702815222e-01,-9.362256203453455106e-01,-9.912870210007584948e-02,9.413756254150350555e-01,9.897069655121389919e-01,5.227915706313739364e-01,2.293501814702815222e-01,-9.800480753412683654e-01,-2.088425236992801914e-01,9.858838136362608751e-01,1.232703438456786094e+00,-5.500158330402195039e-01,-5.611877283142297640e-02,-7.498043641608498344e-01,-3.667416310430204884e-01,6.493848421254027059e-01,1.271584005737938616e+00,-2.862918793609519619e-01,-1.509758157700450409e-01,-7.851299056179251723e-01,-3.499265065687993115e-01,6.690809339654438803e-01,1.304500094464471127e+00,1.406626686668766002e-02,-1.152548800525783484e-01,-8.037449635480852228e-01,-4.605076149358877657e-01,2.585696524290875820e-01,1.299710602619648103e+00,-3.075883095421815330e-02,-1.110835483369039256e-01,-8.524791356286040012e-01,-4.738093384187954671e-01,2.193007002969060149e-01,1.553785319992965208e+00,3.557423837377438752e-02,7.500819813699297067e-02,-6.765662360204638404e-01,-4.616923104527337340e-01,2.110682049142966754e-01,1.553785319992965208e+00,3.557423837377438752e-02,7.500819813699291516e-02,-1.056459448032492254e+00,-8.314479056430575110e-02,9.063492027855123423e-01,1.653735360833993306e+00,-2.006680759193119890e-01,-8.312961356502879262e-02,-9.446954598985143337e-01,-5.591364423618915697e-02,4.814955403435556280e-01,1.653593468012427348e+00,1.920807794378918965e-01,-5.072035681317086514e-02,-9.669613184317741306e-01,-5.964128737779565703e-02,5.179454848824955882e-01,1.564371492940664021e+00,4.860827317469345044e-01,-1.804265840463994408e-01,-1.163024029131828119e+00,-2.665662874280128047e-02,1.416933886149288058e-01,1.599617611266695993e+00,2.847524428471847058e-01,-1.443807445221538810e-01,-1.218898118020221633e+00,-9.429647839801730963e-03,1.157064053846940249e-01,1.878981472642361705e+00,2.189868582635557392e-01,3.236228682476420537e-02,-1.047086663190087030e+00,-2.251845230946671224e-03,7.584103527027577507e-02,1.878981472642361705e+00,2.189868582635557115e-01,3.236228682476426088e-02,-9.990016963677015305e-01,-7.370785013667038865e-02,1.041862061718777488e+00,9.676844801405621865e-01,5.050492602738092529e-01,1.987705354745380737e-01,-9.825223052305432914e-01,-5.194956908989600830e-02,1.060430699144028877e+00,9.432893786818007387e-01,4.856793966806265961e-01,1.670119902308071502e-01,-9.729628549231156276e-01,-3.076392519028520872e-02,1.083687799029643850e+00,9.122511420897509993e-01,4.653959696010922520e-01,1.363265508359300104e-01,-9.695164426088637155e-01,-8.798874368740550178e-03,1.111213145819664128e+00,8.844883427024377021e-01,4.479973800384330351e-01,1.118889401579963999e-01,-9.721797872207370572e-01,9.156425263481378363e-03,1.135934829651780165e+00,8.608603261539626850e-01,4.313247445465108743e-01,8.984590817146508035e-02,-9.918285617686540823e-01,-5.074375627407903822e-02,1.075862231840066574e+00,8.419000092838214711e-01,4.155220051325091979e-01,7.003580778425497200e-02,-1.160066647061972933e+00,3.152709121758127953e-02,1.088243099886195830e+00,8.269040967297259792e-01,4.976904643290482322e-01,-3.391225102161443128e-01,-8.945380299466931806e-01,-5.663207233912573302e-03,1.067499319179677553e+00,8.409959964109601227e-01,4.100570912848446326e-01,7.519263549083329834e-02,-8.416966887737433733e-01,7.953207551793228802e-02,1.428222534681133693e+00,-2.763488348105191394e-01,-8.246656918353147958e-01,6.253591468854935442e-02,-8.667159943976291414e-01,-2.100532004858989277e-01,1.486540852946809599e+00,-3.853559364008098953e-01,2.777109036007398557e-01,2.011326307152129900e+00,-8.653314310642733487e-01,-2.077579214367822613e-01,1.516096721684689230e+00,-2.236804916663076792e+00,1.147144935621170259e+00,-2.332170630967828062e-01,-6.771807895568856539e-01,-9.294712250561351641e-02,1.596256545285319906e+00,-2.236804916663076348e+00,1.147144935621170259e+00,-2.332170630967828062e-01,-9.495660000211396667e-01,3.237081396469969619e-01,1.223065520430906883e+00,1.838043239820629005e+00,2.214085973668254159e-01,1.206568827476122846e-01,-1.007466832127798861e+00,3.857833416355731515e-01,9.390218848449511935e-01,1.706061431499319658e+00,-3.537970329993093688e-01,-8.762927628847909725e-03,-1.010266394906498499e+00,4.131905866930876692e-01,9.279882968068913218e-01,1.871399685443027261e+00,7.106678499590197984e-02,-1.549781690403517542e+00,-9.286152045035171998e-01,4.392035202998715859e-01,7.096669942240142470e-01,1.871399685443027261e+00,7.106678499590197984e-02,-1.549781690403517542e+00
|
||||
1.050000000000000044e+00,-9.363217099999999737e-01,-8.824434999999999918e-02,9.584041500000000102e-01,1.002595083558190492e+00,5.325190990817699754e-01,2.405880019339056430e-01,-9.328353885550965119e-01,-9.682101482780396118e-02,9.409588730549190982e-01,1.002595083558190492e+00,5.325190990817699754e-01,2.405880019339056430e-01,-9.756015759384498720e-01,-2.071198176109916023e-01,9.850466984922795488e-01,1.296064643514621917e+00,-5.442162867312881902e-01,-6.355580048889424016e-02,-7.422185866525915499e-01,-3.404850381165228645e-01,6.406499236314743273e-01,1.326307122447297759e+00,-2.879227359932872155e-01,-1.377402984481703174e-01,-7.783645007044019959e-01,-3.257228378361309851e-01,6.607428598778024575e-01,1.356180285830921317e+00,8.473013245879880417e-03,-8.758406390501766170e-02,-7.898016002132791646e-01,-4.156980009486358485e-01,2.449690307882833595e-01,1.355720412630346594e+00,4.111236225664673463e-03,-8.741408191901418878e-02,-8.393593836276240783e-01,-4.278946008861365669e-01,2.063779044692659881e-01,1.614784386272811290e+00,5.929651076290652634e-02,1.019011177037520005e-01,-6.640956065258993846e-01,-4.109563540663578873e-01,1.939019745957916430e-01,1.614784386272811290e+00,5.929651076290652634e-02,1.019011177037519450e-01,-1.053557048660860529e+00,-8.111598636596967227e-02,9.075202443026939569e-01,1.650921499687094007e+00,-1.927873314036140373e-01,-6.862763196350855910e-02,-9.449939548785050158e-01,-5.333951475721694646e-02,4.822071882943849142e-01,1.650805794834385276e+00,1.852495260172642155e-01,-3.847675812680229068e-02,-9.676729935787341530e-01,-5.721891533229185589e-02,5.185187753616125050e-01,1.564025118930687519e+00,4.778431451683711195e-01,-1.664498830368260074e-01,-1.161137600705404838e+00,-2.763788717330939101e-02,1.406423104416084646e-01,1.597665535774391410e+00,2.853609738864886225e-01,-1.317913504121059898e-01,-1.217255248238879206e+00,-1.119263572149006500e-02,1.146736886540725281e-01,1.868763107375231547e+00,2.226582572013350025e-01,3.996184665884869314e-02,-1.045653688248928237e+00,-2.731390840287199404e-03,7.416126414535897937e-02,1.868763107375231547e+00,2.226582572013349748e-01,3.996184665884875559e-02,-9.945124772937552482e-01,-7.256040601536715984e-02,1.042408066748657491e+00,9.787145161662262893e-01,5.120299844377766973e-01,2.041806741610139031e-01,-9.778714946228510563e-01,-5.094952484926474484e-02,1.061004979354904121e+00,9.530024653880074803e-01,4.895808603269296566e-01,1.664755484948795272e-01,-9.680791147766037996e-01,-3.000076498691373050e-02,1.084379491977840004e+00,9.223685228672894310e-01,4.660623585892079701e-01,1.300798759510124192e-01,-9.643390845137941314e-01,-8.333198742519504210e-03,1.112101778163535393e+00,8.957164139957117799e-01,4.458959012086281537e-01,1.011033239604684913e-01,-9.667470104938058473e-01,9.403965927579246292e-03,1.137006523233952127e+00,8.730221774362070253e-01,4.265782796616640615e-01,7.496754280729801823e-02,-9.874063954326732784e-01,-4.927920446585377923e-02,1.076078576883363391e+00,8.546502292203730367e-01,4.082727025834232415e-01,5.147903413949123097e-02,-1.145203932286638304e+00,1.637082050205684869e-02,1.097429410535871286e+00,8.179682707971148714e-01,5.015575823178842763e-01,-3.212354642762695889e-01,-8.886073945554736619e-01,-7.387723786021926919e-03,1.069549086280549011e+00,8.543630642038660961e-01,4.029916936656043891e-01,5.636585553422308187e-02,-8.365926631768160204e-01,7.315607535713715415e-02,1.430950349604205973e+00,-2.351612485044272671e-01,-8.009541242805838790e-01,3.822910025315960636e-02,-8.586104538505168193e-01,-2.180422806934002589e-01,1.481993060198046663e+00,-3.780499010457175624e-01,2.389996053662575004e-01,2.011410084527090358e+00,-8.565455692750689742e-01,-2.166963477001648819e-01,1.511567701606793213e+00,-2.169639997247365226e+00,1.176047986880948804e+00,-1.733704214501506080e-01,-6.663650902670356091e-01,-1.047772170166531708e-01,1.591023817556799891e+00,-2.169639997247365226e+00,1.176047986880948804e+00,-1.733704214501505803e-01,-9.372942228009353283e-01,3.222689633451016888e-01,1.228097930278770900e+00,1.834618505699635582e+00,2.398687531552702035e-01,8.136077171650073214e-02,-9.979040319643419643e-01,3.851572321300891777e-01,9.447992528024091730e-01,1.705885062036222699e+00,-3.040114920006837806e-01,-3.998954012386817664e-02,-1.000390038770894385e+00,4.126586271614192669e-01,9.339259947866782596e-01,1.821500781655245316e+00,7.229208783828479368e-02,-1.584639690796213252e+00,-9.289235954912213877e-01,4.365068778997989174e-01,7.118188377831013991e-01,1.821500781655245316e+00,7.229208783828477980e-02,-1.584639690796213252e+00
|
||||
1.066666670000000039e+00,-9.330206800000000467e-01,-8.563250000000000028e-02,9.570903200000000499e-01,1.015646307974935603e+00,5.449431345402044879e-01,2.568369503783483609e-01,-9.297122802954981280e-01,-9.404018135932197542e-02,9.395285236786775629e-01,1.015646307974935603e+00,5.449431345402044879e-01,2.568369503783483609e-01,-9.707705525887796449e-01,-2.050823090324866427e-01,9.833734001024414528e-01,1.351537919029665691e+00,-5.349572854192562454e-01,-5.706943004971015698e-02,-7.350372747348841163e-01,-3.134250733320171345e-01,6.324147388298475558e-01,1.374257102120300944e+00,-2.900748805833276989e-01,-1.133010192019251183e-01,-7.720846631940976312e-01,-3.009719478431274187e-01,6.527235913902420528e-01,1.401131327193902099e+00,1.739416832780591154e-03,-5.136918887904474984e-02,-7.765028101038090602e-01,-3.726950216895298373e-01,2.332828985217910711e-01,1.405720120873936718e+00,4.510452489042344332e-02,-5.099941930938658302e-02,-8.270576750553051415e-01,-3.846507382402178932e-01,1.959295526335776416e-01,1.672127662210350918e+00,9.008770215121825187e-02,1.415833535181933722e-01,-6.530879715850486100e-01,-3.607232731138924620e-01,1.779862173082224497e-01,1.672127662210350918e+00,9.008770215121825187e-02,1.415833535181933167e-01,-1.051060402506082792e+00,-7.923801696757190594e-02,9.080001523951432008e-01,1.648052873578098820e+00,-1.862156750038903297e-01,-5.307887701485898557e-02,-9.452910021753491154e-01,-5.093326441275194960e-02,4.822980368293001141e-01,1.647963870392104235e+00,1.800033847916443774e-01,-2.490581967581625630e-02,-9.682781512673859226e-01,-5.500912874935107166e-02,5.185018484375549797e-01,1.563061911250805069e+00,4.713591655365810817e-01,-1.516574968710668048e-01,-1.159793669774491720e+00,-2.906919758419995031e-02,1.393671226207813807e-01,1.594975226532334922e+00,2.892562706286717078e-01,-1.185114053567817710e-01,-1.216244630906927471e+00,-1.346796127860015735e-02,1.136009356597663944e-01,1.861414163317798520e+00,2.286639174110157158e-01,5.025853303846920805e-02,-1.044987445286615690e+00,-3.264378831564841363e-03,7.204605779741068972e-02,1.861414163317798520e+00,2.286639174110156880e-01,5.025853303846926357e-02,-9.901050829461258695e-01,-7.115818522384696754e-02,1.042064873122153124e+00,9.891955727166756862e-01,5.203572602178043738e-01,2.118052737813055919e-01,-9.733309773276882515e-01,-4.963881221720432835e-02,1.060648564797002313e+00,9.618905450068269136e-01,4.932748450454262357e-01,1.653747944399293068e-01,-9.633082413191930149e-01,-2.891800770936108975e-02,1.084128406394813116e+00,9.325545311874285925e-01,4.649337553085738373e-01,1.206119195576989545e-01,-9.592553663955109000e-01,-7.582743562886372357e-03,1.112063894683382959e+00,9.082695515323453428e-01,4.406856067013961709e-01,8.497601379596915472e-02,-9.613851380183763284e-01,9.903607795490574489e-03,1.137170673288015355e+00,8.876009695852939974e-01,4.175014378609068766e-01,5.282272036007570892e-02,-9.832605929683930768e-01,-4.710664207520368074e-02,1.075091076968906156e+00,8.706302847364609798e-01,3.955655510318197288e-01,2.390976050448182302e-02,-1.126113127265130354e+00,-1.260145564668713886e-02,1.115284103957083772e+00,7.956754500221601134e-01,5.239792710547143129e-01,-2.768252758788966594e-01,-8.822868053609613792e-01,-1.018730018631583412e-02,1.071352587206877871e+00,8.708738322184104153e-01,3.915199399205648856e-01,2.758173495144831955e-02,-8.328154257559317042e-01,6.482021710201682496e-02,1.433570901385073038e+00,-1.981593585409475444e-01,-7.787725617877236939e-01,1.825090605219944692e-02,-8.519030705120557156e-01,-2.277166221916734068e-01,1.477667198862011810e+00,-3.699751628135738990e-01,2.044854498358232853e-01,2.015669883180175592e+00,-8.491929205358665911e-01,-2.271869896026272595e-01,1.507215621405615158e+00,-2.104061578959973033e+00,1.201673575878506428e+00,-1.100255874594808503e-01,-6.575596277341282381e-01,-1.169885185359638563e-01,1.585578615446628259e+00,-2.104061578959973033e+00,1.201673575878506206e+00,-1.100255874594808503e-01,-9.225372647137605187e-01,3.202121054137463396e-01,1.233390697325803309e+00,1.835694273488148953e+00,2.577611910079052326e-01,9.115968430716629711e-02,-9.888088912993899804e-01,3.823533802690894934e-01,9.511972221239473058e-01,1.705697474940936154e+00,-2.808599128790238986e-01,-2.924249123694549340e-02,-9.918395788072977837e-01,4.098320156379071655e-01,9.404048993950291369e-01,1.798291093727976575e+00,7.269771231356152164e-02,-1.575627909845383812e+00,-9.257917951571789095e-01,4.345540811076948340e-01,7.167214388433972294e-01,1.798291093727976575e+00,7.269771231356152164e-02,-1.575627909845383812e+00
|
||||
1.083333330000000094e+00,-9.295499099999999792e-01,-8.296224000000000653e-02,9.550950299999999560e-01,1.025112908219340868e+00,5.570610340368362667e-01,2.728943463475007047e-01,-9.263918757500454459e-01,-9.125283693692434750e-02,9.374500837948728238e-01,1.025112908219340868e+00,5.570610340368362667e-01,2.728943463475007047e-01,-9.656081972896874976e-01,-2.029428566322606931e-01,9.813354874715232157e-01,1.397212545924986227e+00,-5.148981213262051604e-01,-3.189202347646858532e-02,-7.311047817231461909e-01,-2.855014044637152471e-01,6.237472368121268484e-01,1.412909531405381225e+00,-2.976075214173973249e-01,-7.137561460642957711e-02,-7.694252651639660323e-01,-2.757886660492110398e-01,6.438104234509973711e-01,1.435919323372763401e+00,-1.235182080250354225e-02,-3.071464850232327130e-03,-7.643925820163341989e-01,-3.330276582207900571e-01,2.221558443775857872e-01,1.446665414078786460e+00,8.756729075303654186e-02,1.568619967454438222e-03,-8.158417279801065680e-01,-3.459940108264137337e-01,1.863946215621674063e-01,1.721998249398170255e+00,1.239309372264006531e-01,1.975737088812453135e-01,-6.442029599708587462e-01,-3.124060652981264785e-01,1.624796089768684726e-01,1.721998249398170255e+00,1.239309372264006670e-01,1.975737088812452580e-01,-1.048320878367455578e+00,-7.765961733331271100e-02,9.076666700879222338e-01,1.645239494669912261e+00,-1.814880530426878635e-01,-3.625448888453137314e-02,-9.448540349322750442e-01,-4.875652231867389635e-02,4.815721009804308506e-01,1.645209468239291262e+00,1.792799528128631026e-01,-9.500728699069848834e-03,-9.678818199795140576e-01,-5.309239072886247357e-02,5.177703366398151985e-01,1.560805760842258749e+00,4.698607341464788312e-01,-1.362379644910380327e-01,-1.159338056204266998e+00,-3.113739182081284515e-02,1.383540720811413105e-01,1.591595313130382383e+00,2.958396938011861876e-01,-1.039832862884248338e-01,-1.216200209215155814e+00,-1.647811526369016150e-02,1.129413362320248609e-01,1.854466703334280098e+00,2.371979381975536094e-01,6.233009888845137542e-02,-1.045440732167185471e+00,-4.241659469416536946e-03,6.991326698185816590e-02,1.854466703334280098e+00,2.371979381975535817e-01,6.233009888845143093e-02,-9.856102358300102839e-01,-6.950982487683339539e-02,1.040915085473365309e+00,9.963768399373132967e-01,5.279028838533628143e-01,2.182672403134360284e-01,-9.687360260789565913e-01,-4.802525768518312727e-02,1.059448568764906895e+00,9.682107781398489044e-01,4.956289366131110263e-01,1.622054325690159005e-01,-9.585046759005572126e-01,-2.749832298948590159e-02,1.083008464041012031e+00,9.420342502993935829e-01,4.619957681812994488e-01,1.081761832794003314e-01,-9.541405448600477346e-01,-6.509090738220923988e-03,1.111158466208274076e+00,9.221160937736629926e-01,4.333688943511725955e-01,6.511126065561623211e-02,-9.559800658841473009e-01,1.068912226392847512e-02,1.136486486182748612e+00,9.051857515249552844e-01,4.061135866007907769e-01,2.619156194892822975e-02,-9.791907679886601157e-01,-4.417603171978601306e-02,1.072977014056256007e+00,8.909386946310980937e-01,3.804129825084864858e-01,-8.868930749677657321e-03,-1.106023528011671253e+00,-2.961807158182830357e-02,1.121302825810455817e+00,8.083902788082246715e-01,5.415647408309572919e-01,-2.302862582996752228e-01,-8.756187584279785385e-01,-1.382929229356646972e-02,1.072562410639358310e+00,8.909615641020905974e-01,3.797069585569274874e-01,-8.192944542165627245e-03,-8.298909948694911387e-01,5.486418975864865155e-02,1.435702484532725531e+00,-1.642810041225791495e-01,-7.569581051134237626e-01,3.758925273253230681e-04,-8.464218083769724510e-01,-2.387583812743069855e-01,1.473107590631103081e+00,-3.608282608158655536e-01,1.727728758150723354e-01,2.022170075410403278e+00,-8.430678204577172208e-01,-2.389430393854075074e-01,1.502594051334409597e+00,-2.038466519121698184e+00,1.225356016282279192e+00,-4.378098250847408529e-02,-6.502642341144803106e-01,-1.297412668408138292e-01,1.579467523591383316e+00,-2.038466519121698184e+00,1.225356016282279192e+00,-4.378098250847408529e-02,-9.061556921148716803e-01,3.173669542874558713e-01,1.239174792673739756e+00,1.843052527823278997e+00,2.698617376909949739e-01,1.423814853949058878e-01,-9.790644547112345997e-01,3.776666819444791656e-01,9.582212748836804739e-01,1.709777832562877187e+00,-2.770327571494635155e-01,1.694830885634299525e-02,-9.834331986329393205e-01,4.050125933629190600e-01,9.475512278533456678e-01,1.794552098591977618e+00,7.671417592478499414e-02,-1.528592675199403228e+00,-9.195001812048970713e-01,4.336934121430441325e-01,7.237259373091665671e-01,1.794552098591977618e+00,7.671417592478499414e-02,-1.528592675199403228e+00
|
||||
1.100000000000000089e+00,-9.252167500000000322e-01,-8.054211000000000009e-02,9.529897099999999899e-01,1.038991740265516661e+00,5.662183758329858430e-01,2.874516109351137327e-01,-9.222131972989984217e-01,-8.865564010444554333e-02,9.352358201475531319e-01,1.038991740265516661e+00,5.662183758329858430e-01,2.874516109351137327e-01,-9.601011828947325633e-01,-2.010039462677113420e-01,9.786047915470491576e-01,1.433751786845840481e+00,-4.838106359980450799e-01,9.315914567444356920e-03,-7.316186979144913005e-01,-2.580012176750177133e-01,6.140843288025397140e-01,1.443412798062002400e+00,-3.112209906002764703e-01,-1.554566760405319027e-02,-7.715232475709058457e-01,-2.514419550450011087e-01,6.333809829016028292e-01,1.461459144461194182e+00,-3.562462345944837627e-02,5.331470717390419251e-02,-7.540037040689637760e-01,-2.970090634754263270e-01,2.106388411617095557e-01,1.479087371271223139e+00,1.253267993298926852e-01,6.546800850099580849e-02,-8.059653829735705655e-01,-3.120187581114709507e-01,1.764526016800680441e-01,1.759389242338829984e+00,1.546389634115851175e-01,2.620868149067867026e-01,-6.376624427229813374e-01,-2.675713113001262911e-01,1.471526124231089805e-01,1.759389242338829984e+00,1.546389634115851175e-01,2.620868149067866471e-01,-1.044586660616021234e+00,-7.568385405574279412e-02,9.070404788122951034e-01,1.641599007874316341e+00,-1.794389583740119420e-01,-1.535524526758420133e-02,-9.427194005420146405e-01,-4.619902236967490805e-02,4.805446438644177531e-01,1.641654988926390280e+00,1.837362530632228874e-01,1.026908713487537095e-02,-9.654587960837606175e-01,-5.087756293096266230e-02,5.168611727078051832e-01,1.555998875327983866e+00,4.740189705871676318e-01,-1.182412096008080837e-01,-1.159073951763878840e+00,-3.421810861945250026e-02,1.382718856815282060e-01,1.585754165674288840e+00,3.096846579409047173e-01,-8.669114776670813760e-02,-1.216562088157471022e+00,-2.075307758248183532e-02,1.136180200472291235e-01,1.847968595449237528e+00,2.527507843749998706e-01,7.861450913156020626e-02,-1.046713989138493339e+00,-5.802408295098777230e-03,6.792288526246859082e-02,1.847968595449237528e+00,2.527507843749998706e-01,7.861450913156026177e-02,-9.803306074540825144e-01,-6.824294968560851160e-02,1.039592267112110946e+00,1.007789450513334462e+00,5.332016562147775529e-01,2.236099675397276165e-01,-9.633110418125915286e-01,-4.692227524253378412e-02,1.058182197092617960e+00,9.785187499281283730e-01,4.964627558323593259e-01,1.583506330282018204e-01,-9.528428388725037612e-01,-2.670479849995232788e-02,1.081904821372313918e+00,9.548822353865540347e-01,4.582869343491716152e-01,9.547772955165639841e-02,-9.481568392588766159e-01,-6.161040691450604678e-03,1.110330204916449848e+00,9.386769432386583567e-01,4.259281990316388100e-01,4.531026705504216656e-02,-9.497064625139374217e-01,1.068071512603209136e-02,1.135916010111739149e+00,9.249652757036272988e-01,3.952291304240142522e-01,-9.473492424100738113e-05,-9.741559124670090553e-01,-4.188443710132777609e-02,1.070943759653830485e+00,9.130903972560652226e-01,3.663643193591243352e-01,-4.106308896483984450e-02,-1.080288763323709933e+00,-4.479963025002712401e-02,1.120442983198957743e+00,8.443196795873981753e-01,5.582629026373800984e-01,-1.595893438075654536e-01,-8.683801820775638447e-01,-1.801865191897115970e-02,1.073424532360903294e+00,9.121011781013925734e-01,3.697924311975036016e-01,-4.388851972583919514e-02,-8.264476435015637446e-01,4.377935096951698912e-02,1.437704086500797285e+00,-1.294976689693050909e-01,-7.342921562013738912e-01,-2.470943371580535189e-02,-8.426596398958099421e-01,-2.506917367948826580e-01,1.467879798940063596e+00,-3.491382192959261443e-01,1.425193325411609202e-01,2.029136182662925059e+00,-8.386064545459726016e-01,-2.515081545321870560e-01,1.497267548921751956e+00,-1.971629769414908750e+00,1.249243620436468749e+00,2.451093132266778801e-02,-6.445678630755925509e-01,-1.429894465527415670e-01,1.571970265132086153e+00,-1.971629769414908528e+00,1.249243620436468749e+00,2.451093132266779148e-02,-8.891728785802771595e-01,3.130213330426065421e-01,1.245554563804823101e+00,1.854393362887367225e+00,2.877952999730214456e-01,1.593705980512901688e-01,-9.683491675103537144e-01,3.745298404252331848e-01,9.665663153636468996e-01,1.716017102745078793e+00,-2.715844688573545995e-01,2.604777643277526519e-02,-9.730720155442263986e-01,4.018889766125071650e-01,9.560826579902257372e-01,1.789244248315363439e+00,8.285921912174813719e-02,-1.518226143279180818e+00,-9.107078389813555441e-01,4.325694692644784789e-01,7.320799847409845684e-01,1.789244248315363439e+00,8.285921912174812332e-02,-1.518226143279180818e+00
|
||||
1.116666670000000083e+00,-9.195996300000000012e-01,-7.813749000000000389e-02,9.511256099999999547e-01,1.058824186364407227e+00,5.704463645677421146e-01,2.997144180725123674e-01,-9.167417716672158212e-01,-8.598296270626323845e-02,9.332277747051586081e-01,1.058824186364407227e+00,5.704463645677421146e-01,2.997144180725123674e-01,-9.540713979187903648e-01,-1.990220030432141296e-01,9.752656551717892031e-01,1.465091501637302729e+00,-4.406710208691869690e-01,5.488915503528619261e-02,-7.378489765528422062e-01,-2.325827009673982482e-01,6.034076053683090635e-01,1.469750607058067704e+00,-3.300765110657217782e-01,4.251388304437342391e-02,-7.795944300798836046e-01,-2.293631271685954987e-01,6.212523529785525245e-01,1.481415764934286727e+00,-7.229250851498217334e-02,1.057754544491123355e-01,-7.451403887310203977e-01,-2.639039989028228450e-01,1.985064938709452664e-01,1.506220203823334325e+00,1.520914100385863110e-01,1.280136735390676461e-01,-7.971367542608829293e-01,-2.811577958485384499e-01,1.654506254027011680e-01,1.778582625473480894e+00,1.757628943279594402e-01,3.171778212772075611e-01,-6.321764174250227297e-01,-2.276771867017648721e-01,1.324679585640689272e-01,1.778582625473480894e+00,1.757628943279594402e-01,3.171778212772075056e-01,-1.039380803149891896e+00,-7.279857930592195658e-02,9.063140417449804254e-01,1.637102481386614183e+00,-1.808240787399612859e-01,7.834227100007334910e-03,-9.380883526189714994e-01,-4.290724982201218896e-02,4.794292274789359043e-01,1.637272831895526304e+00,1.943224145435188954e-01,3.263064651710043812e-02,-9.601549305788972255e-01,-4.794827690023770184e-02,5.160039279095389730e-01,1.548215796098997732e+00,4.848664398759537364e-01,-9.979906751824432765e-02,-1.158420463565840164e+00,-3.775202194772211972e-02,1.395985228043448712e-01,1.577278657220230196e+00,3.303738887744522845e-01,-6.852456403442307165e-02,-1.216686717691604969e+00,-2.564733225471534442e-02,1.160926491737663824e-01,1.839563030993060178e+00,2.755857272134756841e-01,9.596633735726887993e-02,-1.048208644999850669e+00,-7.869963319772594473e-03,6.650385234099906451e-02,1.839563030993060178e+00,2.755857272134756841e-01,9.596633735726893544e-02,-9.739596212630162730e-01,-6.720980015466382351e-02,1.038386061928656456e+00,1.025430906292499111e+00,5.351460764421962502e-01,2.284261237070873696e-01,-9.567531140320103544e-01,-4.622842937510833472e-02,1.057188795067426579e+00,9.949743064345102361e-01,4.956368120165706714e-01,1.557274546877412125e-01,-9.460381369041784838e-01,-2.647352255101772731e-02,1.081189089764681865e+00,9.727755404023905594e-01,4.546174075772945744e-01,8.568381612947183201e-02,-9.410496584572010104e-01,-6.502574147190326448e-03,1.109968795843046196e+00,9.589371399654648132e-01,4.199246907026926157e-01,2.974234879865274295e-02,-9.423369671479794318e-01,9.886347967430184763e-03,1.135861464220283779e+00,9.472974231399536871e-01,3.870784702372421227e-01,-2.094688539054081686e-02,-9.678033446929785732e-01,-4.037571872365179615e-02,1.069473204414786993e+00,9.369435735468574222e-01,3.562480613511570526e-01,-6.674067286124016340e-02,-1.055608235616620316e+00,-5.223613623392101002e-02,1.113587338301948337e+00,8.998179255433730317e-01,5.689163270396937477e-01,-8.686869981554566633e-02,-8.605217280335533125e-01,-2.183855374515762671e-02,1.074069312606093840e+00,9.347210303975881374e-01,3.633705112117052161e-01,-7.245226312323978235e-02,-8.215604350516934051e-01,3.226410402025038648e-02,1.439615909580908237e+00,-9.574009564111270187e-02,-7.080357140684619965e-01,-5.905310722449799016e-02,-8.406571940403676502e-01,-2.626947809184518867e-01,1.462445582581171966e+00,-3.332993997892564897e-01,1.126413174003629142e-01,2.031639609968675320e+00,-8.358020861494215303e-01,-2.640897746034822080e-01,1.491689669477058278e+00,-1.901242191653820246e+00,1.275392406615398988e+00,9.207217787263849429e-02,-6.398176938749402520e-01,-1.569241387241208652e-01,1.563197887479699455e+00,-1.901242191653820246e+00,1.275392406615399210e+00,9.207217787263850817e-02,-8.728549643384001522e-01,3.075708781492742516e-01,1.252741110631070853e+00,1.869137503761387764e+00,3.017895377075995311e-01,1.765103922663516234e-01,-9.573267752501446459e-01,3.712438526884278001e-01,9.757990779742713450e-01,1.726182199709789256e+00,-2.682401280510810504e-01,3.330957048185839015e-02,-9.623602959884802743e-01,3.986545947322707728e-01,9.655986079865308547e-01,1.786161120099781341e+00,9.274528862022221598e-02,-1.508524193483619102e+00,-9.011297627361273266e-01,4.321223547273722598e-01,7.416823030664074778e-01,1.786161120099781119e+00,9.274528862022221598e-02,-1.508524193483619102e+00
|
||||
1.133333329999999917e+00,-9.123858500000000538e-01,-7.578319000000000027e-02,9.497704599999999830e-01,1.088897409251709414e+00,5.664231229219707231e-01,3.101122307651766885e-01,-9.096400400310897805e-01,-8.318798192819518156e-02,9.316685018575496802e-01,1.088897409251709414e+00,5.664231229219707231e-01,3.101122307651766885e-01,-9.474733623257690640e-01,-1.970416908191880145e-01,9.709683965955734353e-01,1.490876441533151464e+00,-3.886950467583382696e-01,1.115311024654990490e-01,-7.487286428193645760e-01,-2.090281405174551077e-01,5.921330967363545028e-01,1.492296705475556706e+00,-3.419217457805996951e-01,1.075565071374067205e-01,-7.922538669634262565e-01,-2.096178457175371934e-01,6.079615987386350895e-01,1.497484119876326014e+00,-1.184190042114494357e-01,1.593268041529577739e-01,-7.378030100599336505e-01,-2.324382509372423522e-01,1.865253076267491261e-01,1.529302334994202983e+00,1.703043537685872133e-01,1.935882948619666033e-01,-7.893592258581475507e-01,-2.522564945416506110e-01,1.542267037783897898e-01,1.750002124584945751e+00,1.896975868094943340e-01,3.457992594153374566e-01,-6.264210220744380608e-01,-1.942949051753098677e-01,1.188495854479675873e-01,1.750002124584945751e+00,1.896975868094943340e-01,3.457992594153374011e-01,-1.032298667841629713e+00,-6.862038923786467626e-02,9.055695498220404094e-01,1.631710570339170774e+00,-1.828359635624201007e-01,3.107780857284720560e-02,-9.314669377329627409e-01,-3.871426646702487429e-02,4.782004264070074950e-01,1.632028756002530390e+00,2.090495290234044845e-01,5.488923806104452352e-02,-9.526338997734707936e-01,-4.405201681247841033e-02,5.151149655147393425e-01,1.538200847211218525e+00,4.999778355973564792e-01,-8.277476198440598953e-02,-1.156986106372193124e+00,-4.101432474370759335e-02,1.418521060400966260e-01,1.567653732970393232e+00,3.503355995980073634e-01,-5.057422012461318395e-02,-1.215963266266040232e+00,-3.033093778800557624e-02,1.194564405764574760e-01,1.825412928338701724e+00,2.991078035132859747e-01,1.104740510419013610e-01,-1.048970454388604923e+00,-1.026869746992515112e-02,6.587610938873775246e-02,1.825412928338701724e+00,2.991078035132859747e-01,1.104740510419014166e-01,-9.663581182626442834e-01,-6.676259647156684851e-02,1.037488375372199734e+00,1.053488526479759768e+00,5.310887791050420415e-01,2.340788822456634499e-01,-9.489448542106921902e-01,-4.639341257035316246e-02,1.056767719646226622e+00,1.021229435581745060e+00,4.912279396941438003e-01,1.565605537617813792e-01,-9.380222524808472517e-01,-2.733659427756030685e-02,1.081234364275845294e+00,9.977378969658408092e-01,4.496702607377654481e-01,8.186793595209079788e-02,-9.328323286520897595e-01,-8.106806444631908803e-03,1.110479608160243048e+00,9.831300587962976678e-01,4.144280551769218279e-01,2.220904482142808251e-02,-9.339692448594554275e-01,7.724995525500686494e-03,1.136723542301673717e+00,9.708925438751139225e-01,3.809994974247868926e-01,-3.185180611813835660e-02,-9.599606550530106475e-01,-4.057182656764123097e-02,1.069091920615999003e+00,9.600507780040581363e-01,3.495856398346171012e-01,-8.070360683252007783e-02,-1.037869217536989686e+00,-5.249001245859065412e-02,1.105848218501462643e+00,9.574038848283098480e-01,5.720141863904575352e-01,-3.423914858432640373e-02,-8.522132651566975969e-01,-2.470210532280181503e-02,1.074929897693634784e+00,9.575246793324283523e-01,3.575942754736157192e-01,-8.681506902116549462e-02,-8.153059249474747805e-01,2.102440686636729283e-02,1.441851987872600827e+00,-6.241373698670248105e-02,-6.781358150834672083e-01,-9.876662742619132795e-02,-8.393081614542715618e-01,-2.740683481444236569e-01,1.457043517099973151e+00,-3.163428966553868960e-01,7.989533167059142960e-02,2.027146700658786660e+00,-8.335999026096058140e-01,-2.761337744169887198e-01,1.486093207178578846e+00,-1.809156091308764536e+00,1.301879903473654565e+00,1.744064163398847123e-01,-6.349009474282194532e-01,-1.717032885418165178e-01,1.554069523644240114e+00,-1.809156091308764536e+00,1.301879903473654565e+00,1.744064163398847400e-01,-8.589854493003330482e-01,3.012653735882172557e-01,1.260456732086438159e+00,1.885959107502578336e+00,3.126074967566803697e-01,1.876006961665716566e-01,-9.475858150550301451e-01,3.682293833659246451e-01,9.855887263817399990e-01,1.738635190316149659e+00,-2.677509406823105897e-01,3.296349447935206095e-02,-9.527092916416398660e-01,3.957453974746912850e-01,9.757219308725197937e-01,1.786039039805379813e+00,1.047630927231991416e-01,-1.505584726169344689e+00,-8.917801629292617660e-01,4.320750726038827816e-01,7.521697518406509353e-01,1.786039039805379813e+00,1.047630927231991416e-01,-1.505584726169344911e+00
|
||||
1.149999999999999911e+00,-9.029973300000000425e-01,-7.342753999999999948e-02,9.489879199999999848e-01,1.132060098767618594e+00,5.530401703243061906e-01,3.211719768705119660e-01,-9.003104215807238297e-01,-8.015459983206139893e-02,9.306146107270751866e-01,1.132060098767618594e+00,5.530401703243061906e-01,3.211719768705119660e-01,-9.395506110550828627e-01,-1.949934170083933160e-01,9.654106252986490722e-01,1.488677623691628815e+00,-3.222366485451785278e-01,2.806373443721201788e-01,-7.649178779096593717e-01,-1.806374312254991343e-01,5.798982533715177912e-01,1.488651278692024738e+00,-3.231936992941978337e-01,2.807204142125596658e-01,-8.093079741926328952e-01,-1.894673153237102226e-01,5.934239045971778648e-01,1.490009400033132092e+00,-1.651124366582023273e-01,3.106203920230755644e-01,-7.324309164321802790e-01,-2.008565579739826079e-01,1.750288552478725390e-01,1.531758787894536900e+00,2.129646778148141517e-01,3.544124031858320034e-01,-7.814333455679502993e-01,-2.290428035721345512e-01,1.450571439950360253e-01,1.538145558854603356e+00,2.139572016584387615e-01,3.586873929752227297e-01,-6.199162682105182620e-01,-1.696960841603404879e-01,1.056852604679592439e-01,1.538145558854603578e+00,2.139572016584387615e-01,3.586873929752226742e-01,-1.022746329464581327e+00,-6.312620262288487494e-02,9.049632719774145517e-01,1.625097366907086283e+00,-1.800524506622371568e-01,4.881690730005595891e-02,-9.240215113353767995e-01,-3.440168712398384426e-02,4.767453054182203553e-01,1.625598669026867560e+00,2.247780282113013839e-01,7.077698972465265581e-02,-9.443402968052561075e-01,-3.982837781108521102e-02,5.140092128068807220e-01,1.527036181712560836e+00,5.155535429071805842e-01,-7.207427870512272960e-02,-1.154739858517565221e+00,-4.330238560833354206e-02,1.441252176419759445e-01,1.557819836610631059e+00,3.660821401846198198e-01,-3.787312618693812472e-02,-1.214234741387639760e+00,-3.376239877925853866e-02,1.225995691935294063e-01,1.810569124882319691e+00,3.182940549509639672e-01,1.197210497082223657e-01,-1.048489964066054769e+00,-1.230853501703571204e-02,6.578104126655107131e-02,1.810569124882319691e+00,3.182940549509639672e-01,1.197210497082224212e-01,-9.569990359126943069e-01,-6.718561573448503244e-02,1.036929171220612567e+00,1.094955627529580644e+00,5.204805310938538376e-01,2.442035416096168254e-01,-9.394114081821092199e-01,-4.773323968057628652e-02,1.056981313281406765e+00,1.060107981678563682e+00,4.833495727504824035e-01,1.655275975746515749e-01,-9.283755380948416347e-01,-2.964544600693612419e-02,1.082123723434221807e+00,1.031694716703704273e+00,4.441560708393104129e-01,8.969841140170424498e-02,-9.231474287270470258e-01,-1.135060240640676371e-02,1.111956656186485315e+00,1.012127122453129191e+00,4.105684407045849249e-01,2.918573080421266522e-02,-9.243000306221171858e-01,3.794124734155924702e-03,1.138602102254108628e+00,9.957024286930723500e-01,3.784526611371419325e-01,-2.557964867851193758e-02,-9.501480774127005757e-01,-4.315769970479847728e-02,1.069975588985285775e+00,9.816496532190740476e-01,3.480939094377237808e-01,-7.501366116495208902e-02,-1.041123175773115861e+00,-3.258965127708997322e-02,1.097782385901847846e+00,1.043750899063326631e+00,5.954433026748270352e-01,4.164239020894641837e-04,-8.431492407840421865e-01,-2.584141359200391175e-02,1.076030080396302990e+00,9.804168292196456802e-01,3.524594542779567741e-01,-7.810056326631986678e-02,-8.065409869996056358e-01,1.067804586460920080e-02,1.444338876098725910e+00,-3.022395993281250942e-02,-6.483734184664700084e-01,-1.426475035268315317e-01,-8.373394524618421597e-01,-2.840809051217536574e-01,1.451771191756946022e+00,-3.020694812865886147e-01,4.570902536288010132e-02,2.013189504883717174e+00,-8.308667415356237873e-01,-2.869487950088056016e-01,1.480591565093346551e+00,-1.691028709004726460e+00,1.323438990268791082e+00,2.737820343394822831e-01,-6.288109126086938172e-01,-1.871299444085535724e-01,1.545533229932143815e+00,-1.691028709004726460e+00,1.323438990268791082e+00,2.737820343394822831e-01,-8.491953017281097527e-01,2.945861994283800467e-01,1.268486924521075476e+00,1.905567085509997538e+00,3.178878363254839523e-01,2.091512525944532741e-01,-9.412814687733642716e-01,3.648731788132394960e-01,9.956014130967441034e-01,1.753186229617453851e+00,-2.798946144044878737e-01,3.926289634916851207e-02,-9.465742086365894759e-01,3.924759212275124587e-01,9.860719737459915368e-01,1.798743085066997871e+00,1.183397443828194256e-01,-1.493936117799188334e+00,-8.834440589771936914e-01,4.326590897266111568e-01,7.637935943567800701e-01,1.798743085066997871e+00,1.183397443828194256e-01,-1.493936117799188334e+00
|
||||
1.166666669999999906e+00,-8.908890799999999999e-01,-7.080595000000000638e-02,9.488876200000000427e-01,1.191625131626287581e+00,5.286677043190136649e-01,3.303458342535464110e-01,-8.882112252911472661e-01,-7.654891308996533694e-02,9.301820386515943229e-01,1.191625131626287581e+00,5.286677043190136649e-01,3.303458342535464110e-01,-9.301424022412683179e-01,-1.922805480399142064e-01,9.582261842420234377e-01,1.496371069801998299e+00,-2.701852270105734033e-01,4.042296291466225822e-01,-7.779060984616622543e-01,-1.608990850514345483e-01,5.686707621721263095e-01,1.496127012627301189e+00,-2.817247263583776973e-01,4.051253489095057447e-01,-8.219842756865759492e-01,-1.763404118942462351e-01,5.801125064268959353e-01,1.495771576919355805e+00,-2.086983464711594516e-01,4.173912449105235400e-01,-7.286813920816653800e-01,-1.698580120417454153e-01,1.649658280333197169e-01,1.553989033557380717e+00,2.982600714640663564e-01,4.829939987349070596e-01,-7.762238845349916927e-01,-2.044033430061306666e-01,1.396609372523774650e-01,1.324546642899067317e+00,2.502765667210314349e-01,3.372264664764892395e-01,-6.147329248313679884e-01,-1.493872060277537106e-01,9.434163450533916695e-02,1.324546642899067317e+00,2.502765667210314349e-01,3.372264664764891839e-01,-1.010065137688936021e+00,-5.545943760361455449e-02,9.047779624516926189e-01,1.616811499191687984e+00,-1.670282488226797202e-01,6.341406814217401267e-02,-9.171062227944364320e-01,-2.928251597886094570e-02,4.750974940189575668e-01,1.617493375500675290e+00,2.384954611797298896e-01,8.210880097943400180e-02,-9.368568825947849454e-01,-3.463984613459356043e-02,5.126709845051378167e-01,1.515684639154870839e+00,5.280244528890393196e-01,-6.458595357880950183e-02,-1.152002695229927598e+00,-4.421507057515638994e-02,1.456358246627387776e-01,1.549165451031660590e+00,3.712175554209591888e-01,-2.674134431065890855e-02,-1.211741698087625219e+00,-3.569379865482140424e-02,1.243603589809582077e-01,1.792321068889601410e+00,3.274144034618235444e-01,1.250912683021194183e-01,-1.046640417258281275e+00,-1.344716023750200384e-02,6.599428370483736983e-02,1.792321068889601410e+00,3.274144034618235444e-01,1.250912683021194738e-01,-9.453897523842128559e-01,-6.833564711258077740e-02,1.036707798999917607e+00,1.153428713528018346e+00,5.021646163683683994e-01,2.583059705277240825e-01,-9.276384995387232379e-01,-5.024316738906911550e-02,1.057858154480895374e+00,1.115212654685272309e+00,4.714385130525813317e-01,1.842482561557422238e-01,-9.165758200830282920e-01,-3.349997954196861499e-02,1.083904498148154039e+00,1.077308797600250889e+00,4.381528324181707679e-01,1.127944857880143342e-01,-9.114810002381434906e-01,-1.639893493961519164e-02,1.114460626551559752e+00,1.047398536677462744e+00,4.089721814178547410e-01,5.585808868974731500e-02,-9.128331873688972919e-01,-2.114244612208968782e-03,1.141567022841773138e+00,1.022170966846679629e+00,3.805856491863132685e-01,4.456054389213270212e-03,-9.377102775489374320e-01,-4.857568693663655290e-02,1.072249247639943448e+00,1.001416322961155014e+00,3.534162770782728336e-01,-4.183126113821519776e-02,-1.050753946329386235e+00,-1.688678988816694898e-02,1.099643482694937946e+00,1.083226025232973289e+00,6.087495991260176709e-01,-1.998660571263673538e-02,-8.331055041392323446e-01,-2.420253533541841251e-02,1.077260431971453603e+00,1.002609014168831525e+00,3.486106495156841012e-01,-3.856490472487172916e-02,-7.938966705896859377e-01,1.994614983017256593e-03,1.446988417828267703e+00,2.568500285449088014e-03,-6.210206400962388074e-01,-1.925011132208334086e-01,-8.335687167102170392e-01,-2.917946734076483084e-01,1.446209469197222930e+00,-2.923194665750666332e-01,1.095175095892416371e-02,1.990456412579842294e+00,-8.265019519486972444e-01,-2.956077638229808180e-01,1.474779661280546161e+00,-1.549970347097452850e+00,1.336647296487708969e+00,3.877786451126004064e-01,-6.207297426655349337e-01,-2.022386042834985742e-01,1.537611012564407797e+00,-1.549970347097452850e+00,1.336647296487708969e+00,3.877786451126004064e-01,-8.448025925751764253e-01,2.879295382386553581e-01,1.276703521644795725e+00,1.927202767020648855e+00,3.149466711538814745e-01,2.456726617251101530e-01,-9.395068573780481769e-01,3.610653616647345743e-01,1.005467687844410873e+00,1.769520153587888611e+00,-3.103681377226999993e-01,5.566108849778160506e-02,-9.451054421178758380e-01,3.887128484743130885e-01,9.962477626596112357e-01,1.830090628472881731e+00,1.326779730615260944e-01,-1.468861811340980594e+00,-8.763177078159314348e-01,4.340600202130815988e-01,7.766580033459342669e-01,1.830090628472881731e+00,1.326779730615260666e-01,-1.468861811340980594e+00
|
||||
1.183333329999999961e+00,-8.769514099999999868e-01,-6.853462999999999916e-02,9.494527099999999775e-01,1.257045420107551381e+00,4.965540315995505272e-01,3.306668408179966878e-01,-8.742143667357124004e-01,-7.314977554808262117e-02,9.304458604394945098e-01,1.257045420107551381e+00,4.965540315995505272e-01,3.306668408179966878e-01,-9.201114332563079534e-01,-1.890344086212481789e-01,9.505137485398797992e-01,1.548008801888154595e+00,-2.578380469297429922e-01,3.238509467522566743e-01,-7.768494790559770102e-01,-1.509367580640355033e-01,5.597447393850439878e-01,1.547962349327234088e+00,-2.654416152016895736e-01,3.240305313081049965e-01,-8.221929277719499662e-01,-1.642372659064518237e-01,5.702686321845612527e-01,1.547179655417071586e+00,-2.306769484370521650e-01,3.313532637335552811e-01,-7.269453249462922706e-01,-1.420957805283890596e-01,1.561045789891188362e-01,1.610362015990318030e+00,3.074462106185061883e-01,4.302175399249863474e-01,-7.775424494800007302e-01,-1.721073115064305492e-01,1.309402197716984517e-01,1.352243331694650275e+00,2.605854599402081528e-01,2.651437106501713936e-01,-6.129906177846518034e-01,-1.289474792442131534e-01,8.382474290579555731e-02,1.352243331694650275e+00,2.605854599402081528e-01,2.651437106501713381e-01,-9.950099193934431874e-01,-4.657224444276619746e-02,9.051362115093513072e-01,1.608242793732016951e+00,-1.453583732793241878e-01,7.895442218433583459e-02,-9.109928049199133016e-01,-2.341511586006329859e-02,4.736708422468977608e-01,1.609034360124026009e+00,2.497225554926942037e-01,9.383520331477146481e-02,-9.304302189280040380e-01,-2.870130957212186848e-02,5.115082325582627210e-01,1.505658978494319067e+00,5.372273401845152341e-01,-5.498007331606918208e-02,-1.148940738233418024e+00,-4.441709291457044545e-02,1.466789830662984517e-01,1.541579388026858455e+00,3.738795926037797868e-01,-1.376852448844149111e-02,-1.208864755690507664e+00,-3.698599546164329371e-02,1.255154082265782234e-01,1.778161735233598106e+00,3.329124508717389852e-01,1.341854070425364254e-01,-1.044296600721549062e+00,-1.330690209677099986e-02,6.621475474763954816e-02,1.778161735233598106e+00,3.329124508717389852e-01,1.341854070425364809e-01,-9.324738618979473426e-01,-6.994951678245857341e-02,1.036653999880926547e+00,1.219792196682625507e+00,4.782970713456087264e-01,2.712033218522081901e-01,-9.145775747612373552e-01,-5.354264048407104959e-02,1.059021339982006982e+00,1.179497821588121109e+00,4.567760680085943825e-01,2.095494631932264817e-01,-9.035513720598372656e-01,-3.838652291171545938e-02,1.086037053959539200e+00,1.130971852139522893e+00,4.325247390832520078e-01,1.498577367628122492e-01,-8.986910411637196727e-01,-2.266288304781146831e-02,1.117360934354088231e+00,1.088662828468991428e+00,4.105321268255488487e-01,1.022816919847065881e-01,-9.003418228524840972e-01,-9.420743451425189416e-03,1.144974356261652337e+00,1.052819266957371491e+00,3.886064971133889601e-01,5.938948456522481767e-02,-9.235890748755395396e-01,-5.587538264492920848e-02,1.075081956370138370e+00,1.024043115116362701e+00,3.672449304836341022e-01,2.083992913518807610e-02,-1.059297259321531737e+00,-1.526062469452553472e-02,1.110117862619172779e+00,1.098241805133115312e+00,6.333135807729247668e-01,-2.524284384478674842e-02,-8.228594578534723647e-01,-2.000294265297933999e-02,1.077763878969814737e+00,1.025480129356548531e+00,3.528016788570518814e-01,2.958758801325874280e-02,-7.774461655778708291e-01,-5.356302911323593263e-03,1.448925810540822701e+00,3.648461442107828884e-02,-5.988869691351025315e-01,-2.480305543837869053e-01,-8.277719122975507604e-01,-2.973575649796879050e-01,1.439480910062673313e+00,-2.885115850957400419e-01,-2.158910256876776790e-02,1.963474834943257363e+00,-8.203561079968676450e-01,-3.021737010712703397e-01,1.467810141928530099e+00,-1.408320279350094628e+00,1.339253782116566205e+00,4.986571531676281532e-01,-6.111448531659439132e-01,-2.161711281737451473e-01,1.529793922691041530e+00,-1.408320279350094628e+00,1.339253782116566205e+00,4.986571531676281532e-01,-8.462729794758090396e-01,2.808614408800617079e-01,1.285556866349327310e+00,1.949749112883149005e+00,2.981704920667011538e-01,3.018063218942546033e-01,-9.418375310306430492e-01,3.561379875526055061e-01,1.015209900424734579e+00,1.789154135932180534e+00,-3.625738148703694930e-01,8.643485750134936862e-02,-9.480058269299966867e-01,3.837674613556884551e-01,1.006304901746973846e+00,1.883735974560444948e+00,1.484107752614158837e-01,-1.424086576153231309e+00,-8.700205745894212805e-01,4.366714490489781442e-01,7.915323493245008946e-01,1.883735974560444726e+00,1.484107752614158837e-01,-1.424086576153231309e+00
|
||||
1.199999999999999956e+00,-8.628855500000000012e-01,-6.578082999999999847e-02,9.496280700000000463e-01,1.321564612111014947e+00,4.675828107565111469e-01,3.410562039312182714e-01,-8.600646937080289600e-01,-6.923513772254309695e-02,9.303884797649071281e-01,1.321564612111014947e+00,4.675828107565111469e-01,3.410562039312182714e-01,-9.083641980388825754e-01,-1.852280995441360767e-01,9.426888748705978260e-01,1.601578734562788764e+00,-2.533421553445295848e-01,2.222268068148063602e-01,-7.686749530576880707e-01,-1.405329188758920322e-01,5.508420651478892482e-01,1.601654173896827738e+00,-2.626158202459187851e-01,2.219311166698248183e-01,-8.146277795691490020e-01,-1.502629242836913404e-01,5.621375879062313619e-01,1.600138672751462376e+00,-2.165187807196220227e-01,2.345020591706925284e-01,-7.286475394345284240e-01,-1.168862611622262515e-01,1.467009370876887764e-01,1.663213587457989640e+00,3.018453567765417289e-01,3.581433937599052819e-01,-7.819912414521278388e-01,-1.410838446043074790e-01,1.209534636549421255e-01,1.391118872127344197e+00,2.601890225757577113e-01,1.822211012980670675e-01,-6.144379133315387431e-01,-1.116350433912629836e-01,7.385150044397355285e-02,1.391118872127344197e+00,2.601890225757577113e-01,1.822211012980670120e-01,-9.800907493375508039e-01,-3.872231802468517614e-02,9.058686340351169708e-01,1.603304297461983330e+00,-1.216628682377402515e-01,1.016008734347349229e-01,-9.059292403616663325e-01,-1.681053966518738715e-02,4.728660467458030148e-01,1.604173405526288398e+00,2.585143972898681364e-01,1.140831390323089473e-01,-9.251579734549505440e-01,-2.230957065972614603e-02,5.109078961373956229e-01,1.500639900186144349e+00,5.442249646223417114e-01,-3.475176517748194277e-02,-1.145851300041950571e+00,-4.448572009014088724e-02,1.477317843480017712e-01,1.538280672557397422e+00,3.757847252020327655e-01,8.655932040545754116e-03,-1.205973809359355942e+00,-3.853789094660598630e-02,1.266625371045253523e-01,1.768561016538379604e+00,3.368724632515098794e-01,1.527784952862958623e-01,-1.042109734356130080e+00,-1.185618480935176494e-02,6.669090984261909216e-02,1.768561016538379604e+00,3.368724632515098794e-01,1.527784952862959178e-01,-9.192174524513176959e-01,-7.162169796622622209e-02,1.036123217574189237e+00,1.286323330019019551e+00,4.568110077155881354e-01,2.972897990488652109e-01,-9.013530766279003181e-01,-5.672408114730197876e-02,1.059546740777874696e+00,1.245495070377115931e+00,4.438829409166453188e-01,2.515469386859009449e-01,-8.904992587547527760e-01,-4.306742111791328487e-02,1.087417753256877395e+00,1.188461262048472245e+00,4.285559171653862687e-01,2.070351423162656579e-01,-8.859911217034933673e-01,-2.877441985454433360e-02,1.119469381000887775e+00,1.135692459156415257e+00,4.140795497906495370e-01,1.714639103240548634e-01,-8.880253581206644098e-01,-1.677557510155097686e-02,1.147619119333880944e+00,1.090939345366557012e+00,3.992430444638632725e-01,1.393624683932520036e-01,-9.089619638489933040e-01,-6.310856192400296494e-02,1.076911235756984109e+00,1.055569602292527609e+00,3.845050561205859974e-01,1.105063621883931729e-01,-1.071188709639817604e+00,6.143233925543084561e-04,1.113066950926710375e+00,1.112279159801500272e+00,6.293896449210484301e-01,-8.005483699387468122e-02,-8.133247698633540024e-01,-1.400337703033322639e-02,1.076950522981884539e+00,1.053787357238625599e+00,3.661642674076585613e-01,1.203741415878775700e-01,-7.596563129997643271e-01,-1.155310199268896887e-02,1.449361248284930515e+00,7.268284378286951619e-02,-5.784320943716949603e-01,-3.047948805909387326e-01,-8.208046005077032081e-01,-3.010217740529441688e-01,1.430509224309455263e+00,-2.894466903180162864e-01,-5.614262490244402437e-02,1.932430130728797879e+00,-8.132219587827521634e-01,-3.069867527009452202e-01,1.458574456761513760e+00,-1.262846688071598500e+00,1.332241645636423666e+00,6.090640028229661329e-01,-6.007346389684201649e-01,-2.295536145099801584e-01,1.520711634027298587e+00,-1.262846688071598500e+00,1.332241645636423666e+00,6.090640028229661329e-01,-8.538101732925181819e-01,2.727621038534114861e-01,1.295585263764335249e+00,1.969439284204932861e+00,2.771802877330664105e-01,3.188222163409772381e-01,-9.464255369966735332e-01,3.535504016079071832e-01,1.025803371619345317e+00,1.809310426014370199e+00,-4.148202058216758359e-01,7.838382601952915973e-02,-9.521408404296616279e-01,3.813823819081876287e-01,1.017233022873709425e+00,1.937787176369584641e+00,1.634605616229030389e-01,-1.416099262056090602e+00,-8.634158469754380505e-01,4.391073561074420595e-01,8.079402048870850672e-01,1.937787176369584641e+00,1.634605616229030112e-01,-1.416099262056090602e+00
|
||||
1.216666669999999950e+00,-8.498819300000000077e-01,-6.150479999999999836e-02,9.486890700000000232e-01,1.375607802413643777e+00,4.428049976577822511e-01,3.604314392296220637e-01,-8.469467933331993326e-01,-6.392690235563001921e-02,9.293094493276982115e-01,1.375607802413643777e+00,4.428049976577822511e-01,3.604314392296220637e-01,-8.958154471030950194e-01,-1.801934588342803956e-01,9.350060758577281028e-01,1.653992875835230025e+00,-2.560611237186914968e-01,8.945448114080034596e-02,-7.530414814037573734e-01,-1.324439702714119982e-01,5.419190632473865898e-01,1.654243371709401389e+00,-2.672611368186021408e-01,8.848615499998083167e-02,-7.984796630932367023e-01,-1.371488260022745709e-01,5.558663546290688595e-01,1.651135843266915648e+00,-1.636768072809537677e-01,1.245673158852011880e-01,-7.341397494102317456e-01,-9.467392253259497570e-02,1.373565312550369399e-01,1.707772379759233461e+00,2.765767564271648937e-01,2.523296894752175001e-01,-7.895960093711369421e-01,-1.111307672638218585e-01,1.100109380051235708e-01,1.467703797558574941e+00,2.486485658018615374e-01,9.414618092765968116e-02,-6.196099103816654630e-01,-9.634906902064267753e-02,6.477630367601854011e-02,1.467703797558574941e+00,2.486485658018615374e-01,9.414618092765962565e-02,-9.666763670184680413e-01,-3.158562322108117437e-02,9.057005552495589473e-01,1.600095534840376255e+00,-1.001091306921993995e-01,1.255251873139615615e-01,-9.015904954764671908e-01,-1.041196616421432436e-02,4.714993354035137418e-01,1.601022072688823572e+00,2.672465320574647918e-01,1.364384163356719970e-01,-9.205634639101257788e-01,-1.620940421889853489e-02,5.097355142750250590e-01,1.497312787996384342e+00,5.515266837574110959e-01,-1.212769588225132839e-02,-1.143308266386952710e+00,-4.475309466892134908e-02,1.482604461401520468e-01,1.536850847690293786e+00,3.765765649106903590e-01,3.353336650407480468e-02,-1.203578165658538479e+00,-4.036283502715286298e-02,1.272302098214686261e-01,1.767056855048863007e+00,3.379022923467297490e-01,1.776188149271943073e-01,-1.040488476686590946e+00,-9.632954396652130408e-03,6.708561419586663022e-02,1.767056855048863007e+00,3.379022923467297490e-01,1.776188149271943628e-01,-9.068161883069754126e-01,-7.175539051312997130e-02,1.034375855162189328e+00,1.343174580437628940e+00,4.371052286369573325e-01,3.305974334440314188e-01,-8.891459102486927168e-01,-5.801110376960483261e-02,1.058636777951212915e+00,1.303744296750908527e+00,4.302118637630729658e-01,2.992063358412755392e-01,-8.785650225054479900e-01,-4.562887656005393255e-02,1.087198661371349129e+00,1.243093059436529924e+00,4.215265504647203731e-01,2.684843748336702696e-01,-8.744460043573101249e-01,-3.274283966569121324e-02,1.119890620931766057e+00,1.185141484207759222e+00,4.129489164577702098e-01,2.438169814017949188e-01,-8.768460782200109271e-01,-2.211284281999378876e-02,1.148556354224309795e+00,1.136048737241158513e+00,4.039087084711325271e-01,2.214756246418452812e-01,-8.954947202990747313e-01,-6.735415236622438462e-02,1.076506657947680745e+00,1.097671841813799620e+00,3.947388241245091689e-01,2.013456657155029972e-01,-1.073376288342674734e+00,1.017510968749302247e-03,1.116562238419080533e+00,1.120864782887146083e+00,6.206970286375922408e-01,-1.009716749684373138e-01,-8.047364176988603957e-01,-7.697491854422096325e-03,1.075318571877440954e+00,1.091728395600806589e+00,3.786327209818255990e-01,2.089870551500496443e-01,-7.439391325253443821e-01,-1.827316223906341741e-02,1.448381791398420715e+00,1.116176493867273439e-01,-5.578762814788738034e-01,-3.534394266646055938e-01,-8.132784769575370776e-01,-3.050301945886870758e-01,1.419242750762123029e+00,-2.942254105867475045e-01,-9.509102896799448423e-02,1.903571651753376948e+00,-8.056441444644290018e-01,-3.122850190976484419e-01,1.446988366399859283e+00,-1.117447999978642637e+00,1.315502729843784691e+00,7.208527696834803322e-01,-5.904711524353253305e-01,-2.434949969741041498e-01,1.510046253519747639e+00,-1.117447999978642637e+00,1.315502729843784691e+00,7.208527696834803322e-01,-8.616777966655688736e-01,2.635610616292456965e-01,1.306768881246698655e+00,1.992908498015518504e+00,2.500336571516041939e-01,3.495094315976610133e-01,-9.514449514497335114e-01,3.502735350582325546e-01,1.037864755485794488e+00,1.837078172630785877e+00,-4.741937722839803526e-01,7.707852966545926388e-02,-9.569810991318835613e-01,3.782920103953019142e-01,1.029799347435632839e+00,2.000056253727652944e+00,1.832460895963629322e-01,-1.394713720127216394e+00,-8.571297741259941150e-01,4.431123351432820212e-01,8.277206024754724112e-01,2.000056253727652944e+00,1.832460895963629044e-01,-1.394713720127216394e+00
|
||||
1.233333330000000005e+00,-8.371434899999999901e-01,-5.495830000000000159e-02,9.467554099999999639e-01,1.416804875558316024e+00,4.192993836443682509e-01,3.850396227867725618e-01,-8.340333317217694109e-01,-5.651516745175098888e-02,9.273143610648656443e-01,1.416804875558316024e+00,4.192993836443682509e-01,3.850396227867725618e-01,-8.820652739704502032e-01,-1.732686914879819629e-01,9.275513831069072124e-01,1.690986018917249423e+00,-2.574964021816478765e-01,-3.033276080072274186e-02,-7.347639400535110887e-01,-1.270722241079109138e-01,5.323344227666584327e-01,1.690828796911536536e+00,-2.524990627064024884e-01,-2.970946748231546169e-02,-7.784423043544004273e-01,-1.275161100729681474e-01,5.498683895160105806e-01,1.689367786306384955e+00,-9.005970896303425177e-02,3.764358750751133076e-02,-7.423592222693886633e-01,-7.578135283183909388e-02,1.290171803476085066e-01,1.737928454417671187e+00,2.564764507762558043e-01,1.517003571520709748e-01,-7.988362759699082494e-01,-8.524519517454681727e-02,1.004727575829086617e-01,1.537357391297366149e+00,2.393970190679341470e-01,1.771380121233158758e-02,-6.278287631217172038e-01,-8.334742775254574965e-02,5.673749007730827937e-02,1.537357391297366149e+00,2.393970190679341470e-01,1.771380121233153207e-02,-9.538091826830831232e-01,-2.404293840608355548e-02,9.041236539215579127e-01,1.596275101349289516e+00,-7.885613991806246503e-02,1.475562028460349617e-01,-8.976671637795823333e-01,-4.399546299138856753e-03,4.688337976057885270e-01,1.597216289770639897e+00,2.787982409430695974e-01,1.568360615607721775e-01,-9.162416460059459311e-01,-1.040797732848857717e-02,5.073163961881861361e-01,1.492366131108268990e+00,5.617233086975602641e-01,7.594689177235812785e-03,-1.141953288024675439e+00,-4.546507431969919882e-02,1.482628224894744773e-01,1.535934221105186515e+00,3.709832788337053544e-01,5.808000691930052112e-02,-1.202194321747538597e+00,-4.258677209480039860e-02,1.268913646577793097e-01,1.770548979364335862e+00,3.312270764952240376e-01,2.051329637515777737e-01,-1.039621956200081021e+00,-7.294555437845733070e-03,6.786060996803264245e-02,1.770548979364335862e+00,3.312270764952239821e-01,2.051329637515778292e-01,-8.946902959411825451e-01,-6.933106780220260612e-02,1.031434794728139703e+00,1.387027252583468373e+00,4.161230123461232000e-01,3.632336601614086780e-01,-8.773627820045246661e-01,-5.643641782909436522e-02,1.056399465134279181e+00,1.349909370122587493e+00,4.123054868375048976e-01,3.401857862258136911e-01,-8.671551442850553570e-01,-4.513379942377724469e-02,1.085538511290532027e+00,1.289989073367902694e+00,4.071432127082736940e-01,3.175162629694041616e-01,-8.634568916116067694e-01,-3.360518360678408506e-02,1.118781944047598120e+00,1.231903368045415892e+00,4.018028611701564001e-01,2.992221709437351551e-01,-8.662013988116290530e-01,-2.435084121186117945e-02,1.147890430458128774e+00,1.182761162035203428e+00,3.960221748845905720e-01,2.825789143114032509e-01,-8.831311210538435041e-01,-6.729069618529434638e-02,1.074028638073371456e+00,1.144581518593373426e+00,3.900296977899230799e-01,2.675344801139494244e-01,-1.072565425755630963e+00,-4.627943479196067189e-03,1.122004453844683391e+00,1.137365757369723784e+00,6.210005341650792765e-01,-9.830614685579770751e-02,-7.953628923987131616e-01,-2.197517453135802712e-03,1.074180008764809902e+00,1.136355998531985323e+00,3.772555839668386701e-01,2.728706985569464560e-01,-7.316863260646311318e-01,-2.701410548911320486e-02,1.447005078306365711e+00,1.549417973711573748e-01,-5.323447380158249365e-01,-3.908952157223901103e-01,-8.056649981875366739e-01,-3.111632035682896924e-01,1.406101898611197498e+00,-2.993913169307488853e-01,-1.428081973423513673e-01,1.880212691505109168e+00,-7.979417171391115504e-01,-3.198930218953640603e-01,1.433394313312199353e+00,-9.647244582354189690e-01,1.289591059060656075e+00,8.441745956002404405e-01,-5.805703413750308295e-01,-2.592652671064789582e-01,1.497282818680758965e+00,-9.647244582354189690e-01,1.289591059060656075e+00,8.441745956002404405e-01,-8.637636207883188089e-01,2.546415662118154399e-01,1.318269652273796000e+00,2.024621268439527277e+00,2.384406230889258016e-01,3.759914347512448018e-01,-9.552506159865521429e-01,3.484435843903620489e-01,1.052341212514745328e+00,1.871303413877863031e+00,-5.196457935448716148e-01,6.254556261259823502e-02,-9.605034299176621326e-01,3.767084985290307664e-01,1.044976616604108122e+00,2.049523579373052851e+00,2.080726569631038414e-01,-1.383305642761257559e+00,-8.521808319045935942e-01,4.483103275558955048e-01,8.496636021625567636e-01,2.049523579373052851e+00,2.080726569631038414e-01,-1.383305642761257559e+00
|
||||
1.250000000000000000e+00,-8.236176699999999684e-01,-4.678915000000000157e-02,9.444071899999999520e-01,1.442439914706261872e+00,3.943486978154203126e-01,4.027042606060065588e-01,-8.202259562671602167e-01,-4.771281067711954232e-02,9.249728278189489616e-01,1.442439914706261872e+00,3.943486978154203126e-01,4.027042606060065588e-01,-8.673518360067712374e-01,-1.647637739111740274e-01,9.208822905369373757e-01,1.704406901593358059e+00,-2.582167198821060938e-01,-7.879206425608180353e-02,-7.184229669382721228e-01,-1.196663256647780144e-01,5.230079636702156254e-01,1.703227598700919554e+00,-2.222425231957105840e-01,-7.383627324842854944e-02,-7.600269622268288616e-01,-1.187543633776396712e-01,5.436998120492986253e-01,1.707601887387713235e+00,-2.221471383284627163e-02,1.750208047263828587e-02,-7.516796912766464667e-01,-6.056295920645461683e-02,1.222282261430496231e-01,1.751447357734670085e+00,2.613657127780567579e-01,1.163988781330897171e-01,-8.086615321092851527e-01,-6.747810990726815783e-02,9.395710158710414428e-02,1.533188083674805080e+00,2.435019380835945768e-01,-2.913178531897975959e-02,-6.379327414231553695e-01,-7.359326920637158931e-02,4.952479967625423446e-02,1.533188083674805080e+00,2.435019380835945768e-01,-2.913178531897981510e-02,-9.399159459696252439e-01,-1.540427284411143016e-02,9.011196565701470318e-01,1.590424761841670920e+00,-5.431489541500657270e-02,1.625954215515955092e-01,-8.938200809459663221e-01,8.779353510562255825e-04,4.647270468202422955e-01,1.591277868586895572e+00,2.945264196913702781e-01,1.696074307961095151e-01,-9.118774553581600051e-01,-5.092946902834415840e-03,5.035369435968404250e-01,1.484150875740108955e+00,5.757931795860443680e-01,1.845873783435129922e-02,-1.142002149977139558e+00,-4.617351237639143180e-02,1.479399438275051382e-01,1.533621181624093222e+00,3.629805852427795410e-01,7.617341295112944888e-02,-1.202110795377313801e+00,-4.446891865555471779e-02,1.260755644411169496e-01,1.774491697904768239e+00,3.218108684850636836e-01,2.274947919492346926e-01,-1.039833657205246897e+00,-5.419699771819948275e-03,6.861920250657840836e-02,1.774491697904768239e+00,3.218108684850636836e-01,2.274947919492347481e-01,-8.822216274830293470e-01,-6.423012793185385594e-02,1.027775037413570125e+00,1.415105394177956111e+00,3.919662501678231603e-01,3.825115238753786229e-01,-8.653258225020639127e-01,-5.203008653861041638e-02,1.053376954424900092e+00,1.380894821689930607e+00,3.891286653604087986e-01,3.611250323104994164e-01,-8.555643857853243439e-01,-4.166321429561727074e-02,1.083012674908172102e+00,1.325275998526169063e+00,3.851002227423415691e-01,3.400128595281453059e-01,-8.523046549739387023e-01,-3.138275762079174858e-02,1.116708683732818397e+00,1.271237725638182825e+00,3.808105100915489816e-01,3.229037201117294087e-01,-8.553783077162778747e-01,-2.336524156498079319e-02,1.146149787382183316e+00,1.225503930878219405e+00,3.760930195439212698e-01,3.072752925420484393e-01,-8.714909561600711063e-01,-6.296794445830675158e-02,1.070270918580276565e+00,1.189976591870362421e+00,3.711345341203649562e-01,2.930982498911232081e-01,-1.066781774984699060e+00,-6.826539427480293742e-03,1.124728058858568858e+00,1.175532474890991441e+00,6.243364675780017636e-01,-7.834630138354971296e-02,-7.836429721978381835e-01,1.671626350881701140e-03,1.074026605004533064e+00,1.181759221624292033e+00,3.598265375451084047e-01,2.972675220872415536e-01,-7.227582351606880451e-01,-3.850090722942980936e-02,1.445702798486165008e+00,2.010593881691173090e-01,-5.025609560026507161e-01,-4.159034427421173796e-01,-7.979082264003176661e-01,-3.201878552695031077e-01,1.391929514245699995e+00,-3.039035900595689621e-01,-1.984970725284482540e-01,1.860899200010186494e+00,-7.900474031530844155e-01,-3.305457693361714133e-01,1.418606391357750018e+00,-8.176203534900264858e-01,1.254180008145013847e+00,9.647196274981396646e-01,-5.707556976738614729e-01,-2.777981518638349412e-01,1.482922933005639932e+00,-8.176203534900265968e-01,1.254180008145013847e+00,9.647196274981395536e-01,-8.565079766445411469e-01,2.476094822475940760e-01,1.329088087643472749e+00,2.065670097145486661e+00,2.472586289450193209e-01,4.103017279622068192e-01,-9.565283783702739351e-01,3.478706974284119791e-01,1.068645710241979074e+00,1.909840735730125250e+00,-5.451632431212216634e-01,4.707729204300058895e-02,-9.617333278010709030e-01,3.763538814246733533e-01,1.062137912669365303e+00,2.080120667756950592e+00,2.374500667580348723e-01,-1.372447878366397367e+00,-8.491591699399083648e-01,4.550675572486462817e-01,8.720353167095322711e-01,2.080120667756950592e+00,2.374500667580348723e-01,-1.372447878366397367e+00
|
||||
1.266666669999999995e+00,-8.089383500000000282e-01,-3.806633000000000239e-02,9.421888299999999772e-01,1.456727188077472146e+00,3.670017901802474780e-01,4.059067347827208794e-01,-8.051614409661747018e-01,-3.855206412710845271e-02,9.228097091483146164e-01,1.456727188077472146e+00,3.670017901802474780e-01,4.059067347827208794e-01,-8.524160286210994419e-01,-1.553681247056561410e-01,9.150947258703101550e-01,1.706890091628348038e+00,-2.555019754206399041e-01,-1.023330794900129820e-01,-7.044813456327794210e-01,-1.122039943807502382e-01,5.142482807936394895e-01,1.704747327226909137e+00,-1.850939605817761568e-01,-9.253344322376901021e-02,-7.441369691932311348e-01,-1.107564852180966397e-01,5.375081958535086191e-01,1.716824887484603046e+00,3.639202536249436931e-02,1.487877451407156049e-02,-7.603750407176468329e-01,-4.906917802453415745e-02,1.167645502182672046e-01,1.756595565528108249e+00,2.727104676643778425e-01,9.972018754549376307e-02,-8.178015358894337172e-01,-5.484872455523460283e-02,8.914570752467973480e-02,1.515642529067927402e+00,2.521668802730483994e-01,-6.006306547780818766e-02,-6.477312073102516887e-01,-6.625146081566123113e-02,4.325447156134078208e-02,1.515642529067927402e+00,2.521668802730483994e-01,-6.006306547780824318e-02,-9.242910152539564050e-01,-5.425758180144173159e-03,8.973283156458434773e-01,1.581693999724731459e+00,-2.468662006303755374e-02,1.687590935806124459e-01,-8.899487187874164373e-01,5.269150633304903533e-03,4.599372268345874315e-01,1.582250139584611803e+00,3.138337105106325242e-01,1.725641197774594182e-01,-9.074455338657368975e-01,-3.605979259851538332e-04,4.991428683079202622e-01,1.471963157395115962e+00,5.928267784805344442e-01,1.838556444918028679e-02,-1.143232288144838238e+00,-4.669343816950657922e-02,1.479277083282385385e-01,1.528506842752968664e+00,3.564892609030739790e-01,8.505096707365661368e-02,-1.203203882579844786e+00,-4.572373982753067528e-02,1.256460224944071224e-01,1.776955707288555120e+00,3.140245568421254907e-01,2.414973931592072909e-01,-1.041059895049073702e+00,-4.295971163807296711e-03,6.949433608460486855e-02,1.776955707288554898e+00,3.140245568421254907e-01,2.414973931592073464e-01,-8.692260262840573182e-01,-5.727735073024502882e-02,1.023951549481651568e+00,1.431633289328571257e+00,3.645530454989104330e-01,3.827318042648352181e-01,-8.527682291558159600e-01,-4.581522508052764120e-02,1.050172661425651688e+00,1.400557881706540275e+00,3.616263196270328995e-01,3.581750883084754422e-01,-8.434784044918071100e-01,-3.635442514173242712e-02,1.080259986590141885e+00,1.351152008154276718e+00,3.574678222303190878e-01,3.338728537041875111e-01,-8.406693347889399037e-01,-2.722777983383774247e-02,1.114327815846679837e+00,1.303429148754219336e+00,3.530380729886794522e-01,3.141163424629245249e-01,-8.440845868741516655e-01,-2.026054283725127469e-02,1.143998316543556992e+00,1.262949704328731659e+00,3.481633499646974994e-01,2.960112237228813004e-01,-8.600559117413213439e-01,-5.586129617388690266e-02,1.066137127371855176e+00,1.231342914194011762e+00,3.430313937662609058e-01,2.795319994129005226e-01,-1.054779949800099814e+00,-8.116974633681418860e-03,1.124695497369792241e+00,1.218804429245708754e+00,6.205188412759986560e-01,-5.838584651175806467e-02,-7.695912686802564018e-01,3.541997156253605394e-03,1.074685384344520989e+00,1.224441360519118005e+00,3.316866885358535910e-01,2.832296969336395853e-01,-7.169688608131081775e-01,-5.249389428767447380e-02,1.444533627246672225e+00,2.512387471106538039e-01,-4.754247638051948832e-01,-4.310464080479023408e-01,-7.901504355035228189e-01,-3.316744725542135619e-01,1.376789359429791748e+00,-3.125556261965306559e-01,-2.579551313088961351e-01,1.846881024171122432e+00,-7.822445047703467935e-01,-3.437228806388433200e-01,1.402732890805774568e+00,-7.012326892288688329e-01,1.208230488780131395e+00,1.058526581534878552e+00,-5.616166614444568772e-01,-2.983451796448237658e-01,1.468093427618157643e+00,-7.012326892288688329e-01,1.208230488780131395e+00,1.058526581534878552e+00,-8.407988876821116397e-01,2.422400376119127063e-01,1.338962926144293686e+00,2.116770505833505567e+00,2.710956530992096325e-01,4.464432396944491566e-01,-9.540264313977628863e-01,3.490286246918262725e-01,1.086648945178020131e+00,1.952419896778136765e+00,-5.439507670553427321e-01,2.925814925145595741e-02,-9.593681513015592799e-01,3.777068767764790169e-01,1.081193802262692794e+00,2.084989422779866874e+00,2.735841543298409562e-01,-1.366976142814357642e+00,-8.476343911007859777e-01,4.637574811537107933e-01,8.937941195301755126e-01,2.084989422779866874e+00,2.735841543298409007e-01,-1.366976142814357642e+00
|
||||
1.283333330000000050e+00,-7.941361700000000301e-01,-2.924310000000000104e-02,9.402757400000000265e-01,1.460042929127872702e+00,3.384787952639593533e-01,3.984561110900683434e-01,-7.898785335312121791e-01,-2.949216433130516860e-02,9.209920213976460213e-01,1.460042929127872702e+00,3.384787952639593533e-01,3.984561110900683434e-01,-8.379064920219113644e-01,-1.457706180567820697e-01,9.104494679623739151e-01,1.703103849738101694e+00,-2.492671575956879326e-01,-1.170087908375614244e-01,-6.928357352247926926e-01,-1.057738993740592603e-01,5.066240437760565207e-01,1.700453304987277869e+00,-1.498744195829475045e-01,-1.036556886348544981e-01,-7.308557830936485145e-01,-1.039172843486675657e-01,5.318075717991090912e-01,1.719844153113861518e+00,8.325294345121689310e-02,1.323783332117028401e-02,-7.666844024983088257e-01,-4.119310073654873505e-02,1.124316056305557643e-01,1.755605090164911841e+00,2.831967342100315532e-01,8.566359692820367522e-02,-8.244682655566484275e-01,-4.623097754993520103e-02,8.541955378666381271e-02,1.505522443979047553e+00,2.611298907106773814e-01,-7.937138974286384041e-02,-6.550650889012471501e-01,-6.090148130114645536e-02,3.801401978225437545e-02,1.505522443979047553e+00,2.611298907106773814e-01,-7.937138974286389592e-02,-9.080482917016794442e-01,5.029074555593836260e-03,8.930152211847073307e-01,1.570997936009391527e+00,5.974653750480818024e-03,1.655137213904118998e-01,-8.857838917154020608e-01,8.837679076419597407e-03,4.549258382048903537e-01,1.571009926567625836e+00,3.367076128471740426e-01,1.655830862402951631e-01,-9.025995933191174325e-01,3.818610858733149319e-03,4.945778399864935726e-01,1.456074150056732686e+00,6.132071848065127062e-01,6.734019772813339307e-03,-1.145558326971759966e+00,-4.653180176855263583e-02,1.488465803812551447e-01,1.520617120602138383e+00,3.544654572431179540e-01,8.371930449240019834e-02,-1.205472078085564780e+00,-4.580788967820476065e-02,1.264005482974455696e-01,1.776251696109421907e+00,3.113740949168714023e-01,2.449358818880225941e-01,-1.043327692380623839e+00,-3.788136335757606721e-03,7.069163420907093043e-02,1.776251696109421907e+00,3.113740949168714023e-01,2.449358818880226496e-01,-8.566155475414998222e-01,-4.906081377270665039e-02,1.020228195428925178e+00,1.438081450395022332e+00,3.355286010817342124e-01,3.701147198524237791e-01,-8.406458326449198770e-01,-3.827893690470277749e-02,1.047033546108726565e+00,1.411492425449776933e+00,3.320315685958283303e-01,3.400794724925660928e-01,-8.318882615656530977e-01,-2.962828452687907288e-02,1.077522079202763550e+00,1.371243076193699340e+00,3.272913809151133946e-01,3.102915185540041088e-01,-8.295758522364700127e-01,-2.156141867449432731e-02,1.111894542942891917e+00,1.332890269207305467e+00,3.223781790830639316e-01,2.860031031408493130e-01,-8.333621744642268903e-01,-1.554135467078646832e-02,1.141727684506805396e+00,1.300207638178039193e+00,3.170485106990724167e-01,2.636729362278456557e-01,-8.494748865502586010e-01,-4.646318856928224883e-02,1.061926956133546929e+00,1.274408776869249138e+00,3.114834635290948395e-01,2.432767286815953889e-01,-1.041212408711483128e+00,-1.990067940118489531e-02,1.127766027207537380e+00,1.254577760903480499e+00,6.221783801309953565e-01,-2.215082462105954705e-02,-7.550610006916987915e-01,4.008336087050697744e-03,1.075638838335267300e+00,1.269537674251024706e+00,3.009029731560808885e-01,2.463162760809669283e-01,-7.144156151867619986e-01,-6.812239376876141894e-02,1.442661807053707834e+00,3.041931082312315793e-01,-4.599918272897955962e-01,-4.379814591913394617e-01,-7.824460550940927073e-01,-3.448048872729113645e-01,1.360776026775357916e+00,-3.308317924726818515e-01,-3.148303824589055999e-01,1.837753771044505102e+00,-7.747658994592279136e-01,-3.584862199078819311e-01,1.385966720397084462e+00,-6.316504225924691740e-01,1.154862635989527542e+00,1.108637954497775135e+00,-5.536499091031303887e-01,-3.202398847895755463e-01,1.454177551130915402e+00,-6.316504225924691740e-01,1.154862635989527764e+00,1.108637954497775135e+00,-8.212262322097814149e-01,2.371281554500358768e-01,1.349063017577556423e+00,2.173759740970100829e+00,2.900203969313016605e-01,4.835387746102153828e-01,-9.470797353645941108e-01,3.513911050264210134e-01,1.106181363113455163e+00,2.000777933280196930e+00,-5.230942931638312698e-01,1.565849533849431041e-02,-9.528422692827143159e-01,3.802060109642487751e-01,1.102030568367288632e+00,2.071565391780243903e+00,3.183457468817573743e-01,-1.359893812668906188e+00,-8.461718457498466073e-01,4.751445434780868782e-01,9.159771444321822553e-01,2.071565391780243903e+00,3.183457468817573188e-01,-1.359893812668906188e+00
|
||||
1.300000000000000044e+00,-7.793078199999999844e-01,-2.165016999999999983e-02,9.392367799999999933e-01,1.462607187691194133e+00,3.077718342258716766e-01,3.800399332890486148e-01,-7.745247967566104563e-01,-2.171888232603465599e-02,9.200751184920382686e-01,1.462607187691194133e+00,3.077718342258716766e-01,3.800399332890486148e-01,-8.244478101584347129e-01,-1.368883469493987481e-01,9.065771119074818030e-01,1.695583016269420984e+00,-2.445538108726177107e-01,-1.224025977072501770e-01,-6.821064486990873199e-01,-1.003882684876913900e-01,5.002619529575711432e-01,1.692737391662727964e+00,-1.203150553503593984e-01,-1.067482317502680272e-01,-7.187613508627599401e-01,-9.830789709587875458e-02,5.268862334685875393e-01,1.718508259591099874e+00,1.204206501199579227e-01,1.610778015327535978e-02,-7.703283430293330625e-01,-3.649975051507704099e-02,1.090168609211404904e-01,1.749079843404130807e+00,2.857046281129116405e-01,7.550611804472376343e-02,-8.282066302573122263e-01,-4.122971673327222725e-02,8.215169267898740635e-02,1.502638677025217584e+00,2.632528411095162446e-01,-8.690270666199564897e-02,-6.590189681470695060e-01,-5.717238642047563213e-02,3.438862254720356781e-02,1.502638677025217584e+00,2.632528411095162446e-01,-8.690270666199570448e-02,-8.911984224960108891e-01,1.546848568078873151e-02,8.893688691597743112e-01,1.559531539950885337e+00,3.711011684059522392e-02,1.564015687662149712e-01,-8.812773548218478803e-01,1.204093592856018968e-02,4.510001667434102579e-01,1.558764120900115291e+00,3.609045612080679644e-01,1.525705280050760893e-01,-8.973602693759424875e-01,7.762193272150096426e-03,4.911005628313384053e-01,1.438408848296957032e+00,6.347551252546170808e-01,-1.175220053874181415e-02,-1.148138797334357308e+00,-4.546763945864658318e-02,1.514375989973045233e-01,1.510998717302443728e+00,3.580345472570868326e-01,7.568305445489441341e-02,-1.208112503959501760e+00,-4.467040998976870569e-02,1.291547599420143078e-01,1.769302665582888290e+00,3.159073966394655986e-01,2.386610470276714357e-01,-1.045954899300880481e+00,-3.741366317204654346e-03,7.267760322422084363e-02,1.769302665582888290e+00,3.159073966394655986e-01,2.386610470276714913e-01,-8.443371500926438733e-01,-4.133942620805307333e-02,1.017161929624110783e+00,1.444536171051957973e+00,3.046227199553740439e-01,3.488712086165990378e-01,-8.288479758244513551e-01,-3.138269934371099024e-02,1.044562174830452772e+00,1.423137449750416339e+00,3.009860248007401595e-01,3.158207601093059869e-01,-8.206492070058541977e-01,-2.360899857819437342e-02,1.075440010277757041e+00,1.392384430025522146e+00,2.962780355794285003e-01,2.829711635167941330e-01,-8.188892278624659848e-01,-1.662492501858646443e-02,1.110081911569642310e+00,1.363520213905016654e+00,2.915333060829159995e-01,2.561093367710765012e-01,-8.231044751672332849e-01,-1.156078908217103227e-02,1.140035538251793712e+00,1.338779413769329851e+00,2.864672740112015892e-01,2.313382015178243600e-01,-8.390104518923556798e-01,-3.768681219084473594e-02,1.058502213637795064e+00,1.318993458603210156e+00,2.812172694171063969e-01,2.086413789643283001e-01,-1.030570231313411966e+00,-2.554836195714901836e-02,1.128440657157881333e+00,1.297614404357050777e+00,6.186003871836179835e-01,2.903159025819155182e-03,-7.413717977517263469e-01,3.907391399389642528e-03,1.076751036965213792e+00,1.315661433093594068e+00,2.730585805534801458e-01,2.106791610500115541e-01,-7.131758092120248360e-01,-8.400080360044243077e-02,1.440195561179422823e+00,3.616916271365775426e-01,-4.560924281607358077e-01,-4.447111343068959055e-01,-7.744110132299333316e-01,-3.575865203263489112e-01,1.343822694822183861e+00,-3.592615264443557721e-01,-3.704511857497700955e-01,1.829335176799435247e+00,-7.672746306181856824e-01,-3.729055966366678354e-01,1.368218035414303424e+00,-5.937328139048141384e-01,1.095327931808289579e+00,1.124892709361708931e+00,-5.463505118427298690e-01,-3.429109365337482673e-01,1.441023494544353856e+00,-5.937328139048141384e-01,1.095327931808289801e+00,1.124892709361708931e+00,-8.034860370678189589e-01,2.301599825218390571e-01,1.359608947487811026e+00,2.233627910366280833e+00,2.915671673219741855e-01,5.086615560278261450e-01,-9.371156920204573026e-01,3.552262423532097091e-01,1.126396233540899683e+00,2.057769688542639752e+00,-4.915039282101720253e-01,-2.183123025832059503e-03,-9.432693475318001397e-01,3.841481226209645383e-01,1.123867980386343612e+00,2.049501171642923669e+00,3.735558120306875507e-01,-1.357523518148048280e+00,-8.434980592393228616e-01,4.892937204502489368e-01,9.394828560944945561e-01,2.049501171642923669e+00,3.735558120306875507e-01,-1.357523518148048280e+00
|
||||
1.316666670000000039e+00,-7.647042499999999743e-01,-1.585924000000000014e-02,9.393725000000000547e-01,1.469426212902949613e+00,2.756306623200089345e-01,3.506217733215387100e-01,-7.593919070005111793e-01,-1.575060235149779511e-02,9.203509723485898686e-01,1.469426212902949613e+00,2.756306623200089345e-01,3.506217733215387100e-01,-8.124782536975891922e-01,-1.290361551574002452e-01,9.034177992754031106e-01,1.686343874738685855e+00,-2.427517529772462157e-01,-1.245808210913162684e-01,-6.718610338688493222e-01,-9.648718088678473470e-02,4.952056966822023232e-01,1.683464495314932030e+00,-9.618215735299233404e-02,-1.075546435904670556e-01,-7.073583224745080278e-01,-9.419706742163902469e-02,5.229292291814956473e-01,1.714717367301135553e+00,1.502286719093278156e-01,1.937632114430083707e-02,-7.715604307151302521e-01,-3.439514171327012759e-02,1.065207360439412443e-01,1.739040378671617093e+00,2.800912210490767995e-01,6.516112481109836985e-02,-8.293040501845326817e-01,-3.893829749154500280e-02,7.933544362881189693e-02,1.508511688680639562e+00,2.587053893530377180e-01,-8.709983091326614635e-02,-6.599057222652298105e-01,-5.492178293204513784e-02,3.233885559503794221e-02,1.508511688680639562e+00,2.587053893530377180e-01,-8.709983091326620186e-02,-8.739476705466325823e-01,2.562708606421927951e-02,8.871339139260755458e-01,1.547517327194864567e+00,6.633248344792484763e-02,1.413824762045431949e-01,-8.757688165379537981e-01,1.507924031354273067e-02,4.489063558254314801e-01,1.545735456377956840e+00,3.848126773343759077e-01,1.335165953637026670e-01,-8.911036276001503831e-01,1.163965391298300497e-02,4.894239340014644446e-01,1.419341461393735182e+00,6.559503685651784100e-01,-3.702918196045446725e-02,-1.149882867966438127e+00,-4.302336974221866728e-02,1.560480608816832704e-01,1.499534391572735048e+00,3.673520662307134810e-01,6.033604500435350154e-02,-1.210033927163369771e+00,-4.179821718801587233e-02,1.342683672140703721e-01,1.756198034353454451e+00,3.276840503191302822e-01,2.221772491761592194e-01,-1.047884623214121902e+00,-3.720194443262395123e-03,7.580802161020760987e-02,1.756198034353454451e+00,3.276840503191302822e-01,2.221772491761593027e-01,-8.324677524164544318e-01,-3.481612543389331349e-02,1.015119141913459755e+00,1.456217711826991890e+00,2.731079344476934900e-01,3.228316881951785455e-01,-8.174189794675504883e-01,-2.590059630640874008e-02,1.043116983773686890e+00,1.440742402326541161e+00,2.703496350928563108e-01,2.933294122119561864e-01,-8.097690823363636881e-01,-1.913693564074329251e-02,1.074371164057763117e+00,1.419139270382054674e+00,2.668812758480208491e-01,2.639402160012882526e-01,-8.085751937261436151e-01,-1.335161586845255190e-02,1.109257495188227027e+00,1.399025437333796695e+00,2.634453257353972511e-01,2.398423288856966484e-01,-8.132311421276841035e-01,-9.397241155400849061e-03,1.139313260992853127e+00,1.381689297595353638e+00,2.598158667963311741e-01,2.175583470125829755e-01,-8.285103930099386726e-01,-3.079983518487262525e-02,1.056299523788615469e+00,1.367677208395023936e+00,2.560553856178928167e-01,1.970846114187463083e-01,-1.024002845410761253e+00,-3.046458240695519917e-02,1.129910720573504168e+00,1.346049503795067936e+00,6.180400309579641149e-01,3.233826357240918159e-02,-7.291408959018471636e-01,4.662462970794024192e-03,1.078087402016332463e+00,1.365227389390236690e+00,2.512056541582675107e-01,1.980988154649897526e-01,-7.098737289575581810e-01,-9.956829519308359189e-02,1.436911393686193028e+00,4.186160079070436191e-01,-4.549538780135939375e-01,-4.595114049810734569e-01,-7.661248752989154864e-01,-3.689531088676822335e-01,1.326665057355963517e+00,-3.883704429863782392e-01,-4.246727008605121201e-01,1.815549909536781303e+00,-7.596918572749411513e-01,-3.858610755419069616e-01,1.350191035346998802e+00,-5.643098687052319207e-01,1.036522242344984468e+00,1.125596089518065668e+00,-5.390776099203768990e-01,-3.658360458229443224e-01,1.427237338434640623e+00,-5.643098687052320317e-01,1.036522242344984468e+00,1.125596089518065668e+00,-7.913099860116651341e-01,2.204296569068228129e-01,1.371210664713830019e+00,2.293512811948068109e+00,2.717022492568820224e-01,5.148509730137488249e-01,-9.260341801568993114e-01,3.605873261790539797e-01,1.147398593472026329e+00,2.124167216356446897e+00,-4.605107289253458358e-01,-3.041964423580809790e-02,-9.322988248490508001e-01,3.895891803653109831e-01,1.146781034545010236e+00,2.031109315903695034e+00,4.380331510661864547e-01,-1.362586056466776441e+00,-8.382522526656517314e-01,5.058160536061224732e-01,9.660759240258109948e-01,2.031109315903695034e+00,4.380331510661864547e-01,-1.362586056466776441e+00
|
||||
1.333333330000000094e+00,-7.507747900000000252e-01,-1.173585000000000080e-02,9.406676200000000376e-01,1.484335084038511221e+00,2.460263816553991123e-01,3.177607854057636350e-01,-7.450134398775136724e-01,-1.138836953395241068e-02,9.217801266097140900e-01,1.484335084038511221e+00,2.460263816553991123e-01,3.177607854057636350e-01,-8.017745776924525281e-01,-1.222173272751587297e-01,9.009564768225326592e-01,1.676395259387766901e+00,-2.446629162465496221e-01,-1.243254117145617260e-01,-6.615459699763621693e-01,-9.378596698917138208e-02,4.913844792982038356e-01,1.673528250328112810e+00,-7.490084473996534709e-02,-1.063709122921305539e-01,-6.959575859567745937e-01,-9.132381834416379573e-02,5.200346056853716314e-01,1.709978202120720381e+00,1.764487231141192713e-01,2.411885939532857487e-02,-7.713365289910847356e-01,-3.408701305313307367e-02,1.051416348541399648e-01,1.728043796237327845e+00,2.724227456718956719e-01,5.717580067504410279e-02,-8.288753138593292213e-01,-3.861929299736013149e-02,7.752365788366019639e-02,1.518117031194245126e+00,2.527596222953069627e-01,-8.192623772227744516e-02,-6.591223853327291549e-01,-5.373027661550003331e-02,3.152859264581165527e-02,1.518117031194245126e+00,2.527596222953069627e-01,-8.192623772227750067e-02,-8.571683315588536356e-01,3.494419849823090368e-02,8.869507935411961030e-01,1.536184954752777498e+00,8.669311028094449367e-02,1.222342235664156257e-01,-8.676098552535734809e-01,1.840094620325622224e-02,4.489310030651378902e-01,1.533216546479196696e+00,4.088354069410284897e-01,1.102867954512650323e-01,-8.820284204839721198e-01,1.582441296639984507e-02,4.898149213850604977e-01,1.398888402854886470e+00,6.778478108304055727e-01,-6.842585913313001256e-02,-1.149327858345641662e+00,-3.882346011743551678e-02,1.632282794899777567e-01,1.485918784035894502e+00,3.851778462431241778e-01,3.771379085392650987e-02,-1.209816063825547960e+00,-3.682316992638773323e-02,1.424633616109888534e-01,1.737039962676245830e+00,3.493245853597137796e-01,1.956708287163777815e-01,-1.047996080621913073e+00,-3.344353973346245179e-03,8.038754897952715694e-02,1.737039962676245830e+00,3.493245853597137796e-01,1.956708287163778370e-01,-8.209569335784162591e-01,-2.990371636617833451e-02,1.014377896628864351e+00,1.476032669250164631e+00,2.448559713946020511e-01,2.995830776068744705e-01,-8.062620701386286060e-01,-2.218419681203596949e-02,1.042913988651883450e+00,1.466186007480250186e+00,2.437977076319272629e-01,2.802517862576954233e-01,-7.990724887791201825e-01,-1.654267186639993975e-02,1.074498316528842423e+00,1.452097812982781289e+00,2.423764988468082304e-01,2.609584650155302166e-01,-7.983571379415134173e-01,-1.207464368826446574e-02,1.109590608466647144e+00,1.438863157309532070e+00,2.408987114125368811e-01,2.451055780272425599e-01,-8.033710015480934885e-01,-9.410831726533085140e-03,1.139731097394139692e+00,1.427451990734553311e+00,2.393001811603584494e-01,2.304156055742015430e-01,-8.178769907378268256e-01,-2.645562510075045656e-02,1.055578586741276137e+00,1.418244698030326267e+00,2.375700312549552107e-01,2.168948900670370217e-01,-1.019529042384783368e+00,-3.286354997594796712e-02,1.131732871783460270e+00,1.401004701356765025e+00,6.190306486179822931e-01,6.600962740553334429e-02,-7.182311783868540189e-01,6.957116806109086768e-03,1.079866049741988521e+00,1.416291972611242844e+00,2.353662944351561370e-01,2.172704423953066011e-01,-7.016945892043954247e-01,-1.139839345771171131e-01,1.433083022835002884e+00,4.685692212862138661e-01,-4.441446090247182510e-01,-4.857512449447333736e-01,-7.578873534248089516e-01,-3.778712014136421660e-01,1.310231455371373865e+00,-4.045644425708678771e-01,-4.794436768921030434e-01,1.787566335925456551e+00,-7.521119832448618370e-01,-3.962984275464317419e-01,1.332766253678076440e+00,-5.212820092001344552e-01,9.846540540004581343e-01,1.127000570546198732e+00,-5.311370441675946630e-01,-3.884145846912720468e-01,1.410969208175794298e+00,-5.212820092001344552e-01,9.846540540004580233e-01,1.127000570546198732e+00,-7.850622805836720008e-01,2.083893256520827908e-01,1.383359303928402451e+00,2.353524161723090202e+00,2.283042844070229671e-01,5.166080968098420989e-01,-9.158495987431320984e-01,3.660609483069818260e-01,1.169067538348200319e+00,2.203264497112256137e+00,-4.441404943257360460e-01,-6.126929115876035559e-02,-9.222164135189816481e-01,3.950058252452915419e-01,1.170614298518453333e+00,2.033606634790314338e+00,5.109964437440845941e-01,-1.357708020701503981e+00,-8.309440024774580325e-01,5.242887636406358132e-01,9.975159172635391647e-01,2.033606634790314338e+00,5.109964437440845941e-01,-1.357708020701503981e+00
|
||||
1.350000000000000089e+00,-7.378907099999999497e-01,-8.610549999999999801e-03,9.427129199999999543e-01,1.507153930955569043e+00,2.231590472043345763e-01,2.882288695336165385e-01,-7.318252406742543625e-01,-7.941462312204094001e-03,9.239295840875286769e-01,1.507153930955569043e+00,2.231590472043345763e-01,2.882288695336165385e-01,-7.920543243363621366e-01,-1.160936952415153323e-01,8.991493293645724805e-01,1.666677598318831777e+00,-2.462869305793623509e-01,-1.242799982471090581e-01,-6.522330983570099328e-01,-9.174653076526695372e-02,4.884329106124987718e-01,1.663924579567928719e+00,-5.644733346482061487e-02,-1.061053418002693149e-01,-6.857055293855871536e-01,-8.907428432443359467e-02,5.178356561231503008e-01,1.704849779989301206e+00,1.986966781637891366e-01,2.686972829495871268e-02,-7.704503262487951698e-01,-3.445539934088596989e-02,1.043996743970478369e-01,1.717388168000719695e+00,2.652260680297300333e-01,4.923198335215513144e-02,-8.277971285537051305e-01,-3.896865986624249711e-02,7.638216697078396844e-02,1.526301242769965150e+00,2.470931039956241748e-01,-7.776434204701591912e-02,-6.577267606742103201e-01,-5.337720678490512349e-02,3.134431244234732461e-02,1.526301242769965150e+00,2.470931039956241748e-01,-7.776434204701598851e-02,-8.417493643900352263e-01,4.323992534363823442e-02,8.887776052890618006e-01,1.529003854963934428e+00,9.240730770377417191e-02,1.072395934152424873e-01,-8.554984760384397591e-01,2.334408083765339426e-02,4.505053492353882083e-01,1.524937669894060210e+00,4.335076564639669949e-01,9.182389897696535686e-02,-8.686861079429035737e-01,2.140112794383679587e-02,4.916790837553899896e-01,1.379957703000950664e+00,7.018659658280611557e-01,-9.724677951249492691e-02,-1.145015617275730868e+00,-3.274451929771748926e-02,1.726109635447827806e-01,1.473396454625984564e+00,4.090490163494736597e-01,1.643501372082838141e-02,-1.205937310985272459e+00,-2.999111607389499945e-02,1.532467702025142597e-01,1.705337209633407403e+00,3.795339871420029265e-01,1.618886198766596729e-01,-1.045010252996420252e+00,-2.369998174699829152e-03,8.616845441753068213e-02,1.705337209633407403e+00,3.795339871420029265e-01,1.618886198766597284e-01,-8.098070851232199718e-01,-2.634569866499741897e-02,1.014839953886270241e+00,1.503398012573761156e+00,2.233961256162320386e-01,2.850571444029936230e-01,-7.953288344515376806e-01,-1.985846333599332325e-02,1.043790476343395390e+00,1.498583053061028680e+00,2.239841208059266675e-01,2.816616673613256405e-01,-7.884369344531838575e-01,-1.538790961159303659e-02,1.075627550695660739e+00,1.490405046122016630e+00,2.244504219604837869e-01,2.782708697056082148e-01,-7.880143136519875968e-01,-1.233834731020946526e-02,1.110876103715672025e+00,1.482360565110554029e+00,2.247194174651317711e-01,2.754828194411116926e-01,-7.932040504193319519e-01,-1.116004104927200910e-02,1.141081630303258487e+00,1.475558061154621736e+00,2.248932780383104957e-01,2.728968711469447750e-01,-8.071193823877320650e-01,-2.423886441364806257e-02,1.056124175838520474e+00,1.470298879233702616e+00,2.249151789859435424e-01,2.705207760612445833e-01,-1.018062053061425276e+00,-2.645421270532507044e-02,1.134878687898171590e+00,1.460034809252869215e+00,6.231583217011900100e-01,8.083278686087266851e-02,-7.084969809848535860e-01,1.127784210743110020e-02,1.082076342688903070e+00,1.468673751646717429e+00,2.246139881375441849e-01,2.705834022567015773e-01,-6.870006792822792585e-01,-1.264347845182393348e-01,1.428678394355166636e+00,5.048484196263425261e-01,-4.179021096035235860e-01,-5.215400165276344868e-01,-7.494757076037860122e-01,-3.837785286930120998e-01,1.295420403421079891e+00,-3.981311565577507205e-01,-5.329721201335668734e-01,1.738609651328628436e+00,-7.442301473244472554e-01,-4.035911609053155491e-01,1.316883823478563142e+00,-4.577340207021835528e-01,9.448032120757479113e-01,1.133410085299917380e+00,-5.220115322029394989e-01,-4.098042993060484473e-01,1.391637183103609177e+00,-4.577340207021835528e-01,9.448032120757480223e-01,1.133410085299917380e+00,-7.837755836014999034e-01,1.943417400723805588e-01,1.395751532005627515e+00,2.417342420890976840e+00,1.786558644550957642e-01,4.965464896052823041e-01,-9.062979909165399528e-01,3.726170416374284811e-01,1.193037939626942379e+00,2.288798231930568416e+00,-4.252062011703221511e-01,-1.077779406136348817e-01,-9.123290088477308268e-01,4.014117528681361291e-01,1.196940006546148183e+00,2.038707786215949724e+00,5.907291655870043900e-01,-1.365505328984062183e+00,-8.217106845457919917e-01,5.430291169185943456e-01,1.033414405276354531e+00,2.038707786215949724e+00,5.907291655870043900e-01,-1.365505328984062183e+00
|
||||
1.366666670000000083e+00,-7.254202800000000284e-01,-5.707799999999999853e-03,9.451124600000000431e-01,1.535725650060631775e+00,2.066254837420132273e-01,2.607481665727269249e-01,-7.191694536472933441e-01,-4.657703281206588414e-03,9.264074935133757016e-01,1.535725650060631775e+00,2.066254837420132273e-01,2.607481665727269249e-01,-7.827580064231668411e-01,-1.098935888162998614e-01,8.977646343330760725e-01,1.657591530593141460e+00,-2.440106433056605240e-01,-1.310247885653702815e-01,-6.445943681390827740e-01,-9.016061662739317806e-02,4.857431225608352388e-01,1.655081787405303428e+00,-4.000500698310789638e-02,-1.133845935279634148e-01,-6.772754361117080402e-01,-8.704125686467842349e-02,5.157659512211215658e-01,1.699591424369423676e+00,2.178076941653581955e-01,2.074990115137930261e-02,-7.695855161176522463e-01,-3.428762521469413266e-02,1.037099869940611430e-01,1.706878435654501036e+00,2.566005018268218696e-01,3.346005021574589150e-02,-8.267328139726489722e-01,-3.832978165131026294e-02,7.521694754995962573e-02,1.532587596617519532e+00,2.397290482063658690e-01,-8.278192998672528891e-02,-6.564116757083070519e-01,-5.360630410794579859e-02,3.143016509829414662e-02,1.532587596617519532e+00,2.397290482063658690e-01,-8.278192998672534442e-02,-8.270051045418882474e-01,5.126978468989844273e-02,8.920258484699991053e-01,1.524157953452472070e+00,8.172191563803737901e-02,9.480109855801628627e-02,-8.379363926637717341e-01,2.966099758602147585e-02,4.528746199046281284e-01,1.518915125477978911e+00,4.600674724009233829e-01,7.555867531563974226e-02,-8.495256862943220133e-01,2.822289922159287173e-02,4.942487761806771962e-01,1.359324769563581503e+00,7.288180255422088694e-01,-1.274438531023849575e-01,-1.135730186259782393e+00,-2.515648560589221761e-02,1.838750665127694139e-01,1.458312462157946854e+00,4.440089839247458592e-01,-7.854392436289107243e-03,-1.197233907997579561e+00,-2.155264129874223319e-02,1.666033990727581182e-01,1.673602063542629637e+00,4.201920719649004932e-01,1.264608421736521937e-01,-1.038277345925061823e+00,-6.970274135597795406e-05,9.290645666315698603e-02,1.673602063542629637e+00,4.201920719649004932e-01,1.264608421736522492e-01,-7.985262926357209468e-01,-2.325183533163716065e-02,1.016080954890708821e+00,1.535737121333999866e+00,2.075414653250050312e-01,2.747756722786993677e-01,-7.841316662865283060e-01,-1.804148159596694057e-02,1.045329612204618952e+00,1.534997268436970597e+00,2.088560201228755464e-01,2.896717093685698408e-01,-7.773869807573661195e-01,-1.478570430740700284e-02,1.077345075191955104e+00,1.531109442166514345e+00,2.101387486658597703e-01,3.045720933519823759e-01,-7.770910594185226339e-01,-1.320267425638292115e-02,1.112691135455633695e+00,1.526686815640077022e+00,2.111579890583455410e-01,3.168448315502926937e-01,-7.822975569650074679e-01,-1.357951957033998527e-02,1.142914478805244105e+00,1.523219039813521691e+00,2.120871595030521251e-01,3.282418919400113544e-01,-7.958972899607205109e-01,-2.298227319621978793e-02,1.057421586186622964e+00,1.520985561718196655e+00,2.128486135646877608e-01,3.387673780928310840e-01,-1.015795754120512928e+00,-1.070869070280613955e-02,1.138743458052063895e+00,1.529288911406051943e+00,6.278906796852971040e-01,8.703700774845406218e-02,-6.990951963738066821e-01,1.666168223847982674e-02,1.084785890749305537e+00,1.519603025592926038e+00,2.141265626970816627e-01,3.387321712601739088e-01,-6.683599588489419485e-01,-1.368826076715168594e-01,1.424068688501108682e+00,5.275923399484965248e-01,-3.779930592180367199e-01,-5.520798022908093294e-01,-7.395908203730057195e-01,-3.874947843378626633e-01,1.282624970893895489e+00,-3.678037561542016332e-01,-5.846232061994673934e-01,1.677144270278285942e+00,-7.345923155548802486e-01,-4.085359425051887650e-01,1.302947847436080497e+00,-3.751999139505699521e-01,9.148840442764961667e-01,1.154203640146133525e+00,-5.106570613442623641e-01,-4.282500932984192876e-01,1.369821870424582144e+00,-3.751999139505699521e-01,9.148840442764961667e-01,1.154203640146133525e+00,-7.834450156185315262e-01,1.790827599971165085e-01,1.407684084722494955e+00,2.485406892958411884e+00,1.221359173408131382e-01,4.703266446371334175e-01,-8.954186837507858154e-01,3.784446181192937519e-01,1.218995528767095937e+00,2.381581687545149872e+00,-4.067357276833346580e-01,-1.545768488329231638e-01,-9.011470486940210689e-01,4.068468702512719748e-01,1.225416790893563146e+00,2.051774619405712929e+00,6.769408307456127316e-01,-1.367042380957220526e+00,-8.102885031054422038e-01,5.612576805795571611e-01,1.074056931228493994e+00,2.051774619405712929e+00,6.769408307456127316e-01,-1.367042380957220526e+00
|
||||
1.383333329999999917e+00,-7.113798599999999750e-01,-2.977930000000000160e-03,9.477655699999999461e-01,1.560460059637970298e+00,1.919511315689800268e-01,2.168546976067594334e-01,-7.049139435729913084e-01,-1.733535272212871842e-03,9.291458301791364338e-01,1.560460059637970298e+00,1.919511315689800268e-01,2.168546976067594334e-01,-7.732809822477094697e-01,-1.029299185265261096e-01,8.971497512068075109e-01,1.647641019344994628e+00,-2.313349892846405798e-01,-1.534759873477755665e-01,-6.404398841958733879e-01,-8.977313184020972725e-02,4.831397004746569857e-01,1.645618911975213150e+00,-2.773169220789764577e-02,-1.379028944991225747e-01,-6.726366901216420668e-01,-8.561011929862288872e-02,5.135649804600203039e-01,1.691587154269852178e+00,2.311642301656211262e-01,-5.974210833943090562e-03,-7.691167527783313584e-01,-3.375497492459085536e-02,1.023510997485735929e-01,1.693323558946450369e+00,2.405930757956139254e-01,-3.000438419784221076e-03,-8.259039196180592013e-01,-3.628301067206204239e-02,7.297708580554340685e-02,1.552866548948484970e+00,2.271689659047353427e-01,-9.737015961258867203e-02,-6.552910965100062768e-01,-5.405493060199932642e-02,3.131933684328271766e-02,1.552866548948484970e+00,2.271689659047353427e-01,-9.737015961258872754e-02,-8.095811664550042197e-01,6.029933776886930996e-02,8.954530394525763715e-01,1.519645489328791843e+00,6.320190675307524319e-02,8.488610346623340353e-02,-8.147195056840811356e-01,3.726876029967048087e-02,4.552946900540683073e-01,1.512985768889310023e+00,4.882795999022599975e-01,6.097665664853395284e-02,-8.245155089099082124e-01,3.627222162615582890e-02,4.967770979097417272e-01,1.336093471647812780e+00,7.573345625897643929e-01,-1.582933780795874878e-01,-1.120893946772713035e+00,-1.663389648917274616e-02,1.960197564963877537e-01,1.439658639936057360e+00,4.877049351212480177e-01,-3.435391890429451839e-02,-1.183026686778987369e+00,-1.216099112325513126e-02,1.814073742659240984e-01,1.648482475881847709e+00,4.678599330745955576e-01,9.513066854894575153e-02,-1.027161834509584981e+00,3.933115096111439168e-03,1.001234756910172885e-01,1.648482475881847709e+00,4.678599330745955576e-01,9.513066854894582092e-02,-7.859010255631302400e-01,-1.882406342986623488e-02,1.017653376266185239e+00,1.564491300503876747e+00,1.925624089719900622e-01,2.498459016845837877e-01,-7.715724291038202898e-01,-1.498830739353441271e-02,1.047145854278825672e+00,1.568194703611740737e+00,1.933340150750815778e-01,2.849054096295723926e-01,-7.649827005770398758e-01,-1.294107852074761686e-02,1.079293470306034841e+00,1.569414070677612072e+00,1.939987819324647533e-01,3.199721670169242138e-01,-7.648345356452015409e-01,-1.278041542279605668e-02,1.114675817383413037e+00,1.569455163788024965e+00,1.944643200095066693e-01,3.488541160323011536e-01,-7.700691592909374439e-01,-1.466392092257429516e-02,1.144837865198961246e+00,1.570001674771181577e+00,1.948366685428005174e-01,3.756752494273902787e-01,-7.834485612683280698e-01,-2.011514660065844354e-02,1.058968288870323127e+00,1.571271632177497990e+00,1.950576201783607577e-01,4.004347111361318268e-01,-1.012413982005649693e+00,5.090137214814906969e-03,1.145371664791609234e+00,1.607881968059710731e+00,6.358742296507589042e-01,1.087628334046154832e-01,-6.883855383870893796e-01,2.248494382345339951e-02,1.088252920744634755e+00,1.570500434966833669e+00,1.974169029471394554e-01,4.004453614501081726e-01,-6.492922920343292548e-01,-1.463119071465447674e-01,1.419170492790909677e+00,5.419004527348108002e-01,-3.300231881462837857e-01,-5.659334625557480569e-01,-7.275822007733538932e-01,-3.909286177124796646e-01,1.271116519257640798e+00,-3.192599639922303889e-01,-6.334457670010997798e-01,1.616537943907479624e+00,-7.224354414828557669e-01,-4.130368416072781601e-01,1.290233841335046927e+00,-2.821465104545177183e-01,8.895202371076643688e-01,1.194424540957060632e+00,-4.966467563154662868e-01,-4.429374904277234015e-01,1.346208850232203158e+00,-2.821465104545177183e-01,8.895202371076643688e-01,1.194424540957060632e+00,-7.805042376798198012e-01,1.637373466401441935e-01,1.419327479600982045e+00,2.557110026793254942e+00,6.882965223534831534e-02,4.273598480764416729e-01,-8.789469461878990364e-01,3.841292201758620961e-01,1.247213914771063914e+00,2.473073085420681494e+00,-3.718915254002327919e-01,-1.933034196105760938e-01,-8.844117664906524512e-01,4.118620698750583009e-01,1.256256009938034657e+00,2.049926406590856232e+00,7.684568340383314267e-01,-1.372240761809708331e+00,-7.957657894427526690e-01,5.788920690054119023e-01,1.117509294970522093e+00,2.049926406590856232e+00,7.684568340383314267e-01,-1.372240761809708331e+00
|
||||
1.399999999999999911e+00,-6.956020499999999718e-01,2.236399999999999933e-04,9.505505800000000338e-01,1.578648885651542155e+00,1.770628721672836969e-01,1.593566520277354126e-01,-6.888515341104787248e-01,1.443966855476998355e-03,9.320305194691221873e-01,1.578648885651542155e+00,1.770628721672836969e-01,1.593566520277354126e-01,-7.628472555930834176e-01,-9.474070138752041514e-02,8.972217299503657539e-01,1.634973425292673088e+00,-2.085144843520780888e-01,-1.981620356635043767e-01,-6.394006247077244076e-01,-9.117701404111241970e-02,4.805774722473127314e-01,1.633591380758249612e+00,-1.775717052563747025e-02,-1.859759273234644350e-01,-6.712272679965355371e-01,-8.512684872703948913e-02,5.112711677619770079e-01,1.679224786053019836e+00,2.410381913376772323e-01,-5.962951914694031297e-02,-7.692906485341242107e-01,-3.313889148661884609e-02,1.004487731952168894e-01,1.674888647981431111e+00,2.166050240481124656e-01,-6.690180070082332731e-02,-8.254436667547143669e-01,-3.285755564890117247e-02,6.977687445364226526e-02,1.596118051573155672e+00,2.096161621621009108e-01,-1.204633137383656905e-01,-6.545862449220442025e-01,-5.456298401924349062e-02,3.109147178737067113e-02,1.596118051573155672e+00,2.096161621621009108e-01,-1.204633137383657460e-01,-7.891539269849390248e-01,7.039760588754670478e-02,8.985143341491872437e-01,1.514463364920456634e+00,4.105745802459810634e-02,7.717672057748210801e-02,-7.869698538170735169e-01,4.564718559192296188e-02,4.575574148515437201e-01,1.506096658348123896e+00,5.153971397923096109e-01,4.756848012936235742e-02,-7.950061264723955468e-01,4.506166265347238964e-02,4.990421734767203632e-01,1.311062005254121754e+00,7.840997625534751325e-01,-1.887273213934688165e-01,-1.100792698527049529e+00,-7.800456558225692116e-03,2.078474226971593897e-01,1.417312579854105303e+00,5.358576014496884143e-01,-6.279800505508055519e-02,-1.163483337565505593e+00,-2.460290598150007349e-03,1.962124589233538441e-01,1.639509266982849933e+00,5.173254692217406081e-01,7.416681399739259717e-02,-1.011518644988885995e+00,1.003365770103625994e-02,1.072710284115312440e-01,1.639509266982849933e+00,5.173254692217404971e-01,7.416681399739266656e-02,-7.717733559538759724e-01,-1.244862400277316206e-02,1.019297619213259676e+00,1.587017445205031851e+00,1.766791369028183900e-01,2.099687266190665147e-01,-7.576094519207965394e-01,-1.000905328537573559e-02,1.049017184985721496e+00,1.595738697773945391e+00,1.759846485951860329e-01,2.637369421160993266e-01,-7.512849956608972368e-01,-9.116353185681456972e-03,1.081270885493055278e+00,1.603807834200986715e+00,1.748181565154783013e-01,3.174877163765260635e-01,-7.514128893308700263e-01,-1.030147375132895761e-02,1.116634375065658213e+00,1.610159469132747212e+00,1.735007903113204852e-01,3.617335266838074825e-01,-7.567943235625034237e-01,-1.359313624745331350e-02,1.146649159557841413e+00,1.616114644466590144e+00,1.719973942763808050e-01,4.027989612798842378e-01,-7.699536074057351520e-01,-1.450029411849737028e-02,1.060577509212095038e+00,1.621728421242814244e+00,1.703308786595920943e-01,4.406831762660541330e-01,-1.006761712823722732e+00,1.500084222335148175e-02,1.153049114657076490e+00,1.686850736619122770e+00,6.410904967685689959e-01,1.457352476943171438e-01,-6.757591804330755902e-01,2.776557051261473869e-02,1.092537612786030454e+00,1.621753381637025093e+00,1.711648203129073065e-01,4.406902486964121568e-01,-6.324574780666061269e-01,-1.562366576196906054e-01,1.413670658868844576e+00,5.556541766176460451e-01,-2.824425306346532993e-01,-5.655641358344934977e-01,-7.146637377900193489e-01,-3.956860851050636452e-01,1.259421747959668991e+00,-2.661446774876197741e-01,-6.783451913789760868e-01,1.566672928910584739e+00,-7.091144884354131372e-01,-4.187022424149944300e-01,1.277315798162825145e+00,-1.953448021923743227e-01,8.630134758887147983e-01,1.243683380552428996e+00,-4.817338750970276973e-01,-4.547761408356718604e-01,1.322087567182299139e+00,-1.953448021923743227e-01,8.630134758887147983e-01,1.243683380552428996e+00,-7.732528542627162826e-01,1.491130846188259695e-01,1.430562552051183989e+00,2.632446567019065764e+00,2.869806306338439084e-02,3.613875888455722607e-01,-8.543176639823835128e-01,3.895854019553112169e-01,1.277303995365471234e+00,2.557773201290379550e+00,-3.131479746316028767e-01,-2.171163248731790285e-01,-8.594813577260230764e-01,4.163576933083973364e-01,1.289022159940843792e+00,2.015435328574471274e+00,8.646693673092948895e-01,-1.392746046068861876e+00,-7.771168405785511268e-01,5.957496473715657714e-01,1.162363587775353535e+00,2.015435328574471274e+00,8.646693673092948895e-01,-1.392746046068861876e+00
|
||||
1.416666669999999906e+00,-6.798423000000000105e-01,4.766850000000000427e-03,9.532826300000000197e-01,1.588161907987910570e+00,1.644764384260152257e-01,1.039902498001712833e-01,-6.728197775962053706e-01,5.796971888951400927e-03,9.348523741022009004e-01,1.588161907987910570e+00,1.644764384260152257e-01,1.039902498001712833e-01,-7.517602439821073901e-01,-8.563761088285404277e-02,8.981559318954975835e-01,1.619386545841556835e+00,-1.832781278088450316e-01,-2.413563894901624707e-01,-6.394572798487190290e-01,-9.163495093930429380e-02,4.790327295555332210e-01,1.618574448153955458e+00,-9.892082043502760380e-03,-2.329668720821483630e-01,-6.709495923706469966e-01,-8.363761613681766627e-02,5.098957810529971546e-01,1.662838132531748281e+00,2.482156025442734948e-01,-1.141578602241349466e-01,-7.699213045557646851e-01,-3.292036357726867146e-02,9.913237633196353427e-02,1.654437105326715285e+00,1.990367775003745454e-01,-1.277749934678590049e-01,-8.255038957756319906e-01,-3.014640996506313605e-02,6.755886350568171550e-02,1.631530968278125382e+00,1.970981646747945737e-01,-1.434842073688486208e-01,-6.547219677849872577e-01,-5.577463405170993843e-02,3.099834111524661651e-02,1.631530968278125382e+00,1.970981646747945737e-01,-1.434842073688486763e-01,-7.686432330335373209e-01,8.070880739519009639e-02,9.010205648150273472e-01,1.509965712440561880e+00,1.271290706610655324e-02,7.371283877235854098e-02,-7.563929707640457689e-01,5.466296502224473469e-02,4.595607539257456353e-01,1.499957089228641793e+00,5.378094891121204535e-01,3.815446045028223626e-02,-7.628783917864269126e-01,5.438730835186241647e-02,5.009447198625642805e-01,1.287869180529005897e+00,8.059241649619957037e-01,-2.141075863393092638e-01,-1.076205429361657195e+00,9.410087924249660452e-04,2.179891142178065899e-01,1.394617898762583685e+00,5.803134156872528093e-01,-8.865280253035248692e-02,-1.139286227980294219e+00,6.988914993689561775e-03,2.091436829810273124e-01,1.648444091284655189e+00,5.607117474445060257e-01,6.710778951781203039e-02,-9.912246386740724002e-01,1.815877782696734624e-02,1.136819391676018448e-01,1.648444091284655189e+00,5.607117474445060257e-01,6.710778951781209978e-02,-7.574003103951245652e-01,-4.271686163183495595e-03,1.021045963845384374e+00,1.601264676717194746e+00,1.630240277906415403e-01,1.663807086487370246e-01,-7.434678763531780143e-01,-2.989203774069362600e-03,1.050946481610923522e+00,1.615839062476917443e+00,1.606318440086298982e-01,2.326235568520934327e-01,-7.374524634328558648e-01,-3.054135919479789539e-03,1.083271880823767352e+00,1.633425722493265342e+00,1.570594144120412428e-01,2.987793514312806487e-01,-7.379023821610104505e-01,-5.425206600313933238e-03,1.118573822324754330e+00,1.648947664144057690e+00,1.532042688061717173e-01,3.531701784219871687e-01,-7.434964465311943993e-01,-9.957703042933025231e-03,1.148386688369374298e+00,1.662504141352238562e+00,1.489133315923246159e-01,4.035876229778755930e-01,-7.566391306634796532e-01,-5.703814173484899816e-03,1.062411507305784930e+00,1.673826265172836170e+00,1.443819580362933064e-01,4.500429839977219126e-01,-9.965713918691608830e-01,1.435671642251500936e-02,1.158068755471244993e+00,1.755508619443004292e+00,6.368082178483289724e-01,1.957720139965368755e-01,-6.619383099606136467e-01,3.147579855787235176e-02,1.097263572107250784e+00,1.674075445186738564e+00,1.387010269913326321e-01,4.494546738694936705e-01,-6.193967516136238416e-01,-1.673773643514835652e-01,1.406933418396918434e+00,5.731857387263743497e-01,-2.433563232418064770e-01,-5.604361157100760105e-01,-7.030882117895568273e-01,-4.020914332628022780e-01,1.246335568703449415e+00,-2.196687216855327252e-01,-7.192664468155199886e-01,1.525021421111903086e+00,-6.972157911054122081e-01,-4.258980237058297424e-01,1.263053691360450648e+00,-1.264271136906929827e-01,8.336124652429862669e-01,1.283653683709582660e+00,-4.689007176595491599e-01,-4.663211800432206511e-01,1.298352082820572129e+00,-1.264271136906929827e-01,8.336124652429862669e-01,1.283653683709582660e+00,-7.605873666272902067e-01,1.363300968669105828e-01,1.441198959848305261e+00,2.683199366583156387e+00,-8.750005935791141387e-02,3.391193197209925181e-01,-8.231284679813100080e-01,3.910667757333233796e-01,1.303052446830460731e+00,2.661241453456417272e+00,-3.366592138777974585e-01,-1.798879054085131823e-01,-8.306597274903994021e-01,4.162223582798229016e-01,1.316880371307443953e+00,2.118851090832978290e+00,9.426837807285762816e-01,-1.241126316152704190e+00,-7.565387753142347460e-01,6.117824927553456860e-01,1.210719648707448970e+00,2.118851090832978290e+00,9.426837807285762816e-01,-1.241126316152704190e+00
|
||||
1.433333329999999961e+00,-6.662237899999999824e-01,1.063517999999999929e-02,9.555870199999999537e-01,1.594520479515871392e+00,1.564174208028667745e-01,7.299212169794287719e-02,-6.590323581398744857e-01,1.156592755631427258e-02,9.372167091353509338e-01,1.594520479515871392e+00,1.564174208028667745e-01,7.299212169794287719e-02,-7.405761280749036946e-01,-7.703968345820590147e-02,8.992935195011133587e-01,1.602393593429651819e+00,-1.608765988176689143e-01,-2.915120330504237245e-01,-6.393188710454841273e-01,-9.316746956657817602e-02,4.781494090354099780e-01,1.601985472923446840e+00,-1.144765959136804546e-03,-2.864847448237158867e-01,-6.702002624620113647e-01,-8.301627296132788048e-02,5.092131718212609126e-01,1.645180759188388464e+00,2.565192303757059533e-01,-1.749069622752985331e-01,-7.707245655643923943e-01,-3.313712835737590151e-02,9.872425650512572926e-02,1.633773004969988563e+00,1.874798458592076555e-01,-1.925668051681466708e-01,-8.257967328092435944e-01,-2.769354032553089998e-02,6.660837691505994140e-02,1.674295457173971213e+00,1.906272612174864656e-01,-1.646192853846466797e-01,-6.553575446614477995e-01,-5.687554978457138449e-02,3.112826892549292596e-02,1.674295457173971213e+00,1.906272612174864656e-01,-1.646192853846467352e-01,-7.521516839593997972e-01,8.973868539543126965e-02,9.032120017957542268e-01,1.508175795682771492e+00,-2.649914776640808350e-02,7.602582772988983328e-02,-7.249875794005188334e-01,6.401674495480372262e-02,4.617816866074340165e-01,1.497346491596512674e+00,5.501005132483373083e-01,3.591663279975774309e-02,-7.303781969403778662e-01,6.385996534147964088e-02,5.029793313974275648e-01,1.272529739930257309e+00,8.182831990414142220e-01,-2.282325679621940717e-01,-1.047898347562232324e+00,9.230003532531332044e-03,2.249672176327823236e-01,1.376262330441977211e+00,6.142296688953371442e-01,-1.070342169731314658e-01,-1.111202512743462822e+00,1.569541253917365597e-02,2.182748985554200938e-01,1.674487925377974973e+00,5.911519110401149968e-01,7.536470717866865232e-02,-9.661896743126781040e-01,2.791338554423623483e-02,1.183652272448142279e-01,1.674487925377974973e+00,5.911519110401148858e-01,7.536470717866872171e-02,-7.445428196376411289e-01,3.622195105442174018e-03,1.022711956988807902e+00,1.611761511986711026e+00,1.542287945618991685e-01,1.377135779652493841e-01,-7.307942577343558010e-01,4.121630662084724110e-03,1.052720305667030232e+00,1.631806205777469154e+00,1.506448140371450528e-01,2.063930567695982099e-01,-7.249933888635087254e-01,3.308118293164211306e-03,1.085075004910750929e+00,1.659469381672848742e+00,1.451486271997628474e-01,2.748946579821252012e-01,-7.256591348918229878e-01,-7.331532732684099135e-05,1.120291381928920194e+00,1.684997890397108566e+00,1.391169056713854046e-01,3.311164922456658610e-01,-7.314181710398471870e-01,-5.623221677717333937e-03,1.149899225992488505e+00,1.706767795942477184e+00,1.323536484975513239e-01,3.831357955373914659e-01,-7.447950288641399519e-01,3.723885350373463445e-03,1.064360779916972755e+00,1.724102612048640459e+00,1.252339252002026282e-01,4.309856219052544679e-01,-9.843026313557060591e-01,1.282012762292925045e-02,1.160702322120361618e+00,1.812262603635222513e+00,6.287005171670230208e-01,2.308622520043011606e-01,-6.485359224514214427e-01,3.241185642126975797e-02,1.101158315055926318e+00,1.724298146341984417e+00,1.107838092760108500e-01,4.290664059139387976e-01,-6.106708969709409018e-01,-1.795380019279138040e-01,1.399166623013243793e+00,5.987258047569206099e-01,-2.173038689530563394e-01,-5.570567449347815225e-01,-6.936866775388006445e-01,-4.092866725806444395e-01,1.231206650140344250e+00,-1.862867832261061174e-01,-7.597607615265986603e-01,1.487320537289357203e+00,-6.878266756204809429e-01,-4.338606449782667629e-01,1.246779541859814211e+00,-7.874163973804344796e-02,7.992347030604711744e-01,1.303212282922804555e+00,-4.594609431612365347e-01,-4.790936786923847279e-01,1.275254893831461844e+00,-7.874163973804344796e-02,7.992347030604711744e-01,1.303212282922804555e+00,-7.438365757987069893e-01,1.254408613600363487e-01,1.450175779333912729e+00,2.746574107271362752e+00,-1.651412393763168063e-01,2.895544879297378693e-01,-7.885138384558496583e-01,3.931986602902798333e-01,1.331027437797200452e+00,2.749320849678495104e+00,-3.346970831455659545e-01,-1.526808368285348660e-01,-7.975878100000647342e-01,4.166690018450386890e-01,1.346760867369480197e+00,2.194420031950984118e+00,1.014422206313285946e+00,-1.122139842247148689e+00,-7.336487688269672791e-01,6.241437187646602380e-01,1.258026310270643489e+00,2.194420031950984118e+00,1.014422206313285946e+00,-1.122139842247148689e+00
|
||||
1.449999999999999956e+00,-6.558387199999999861e-01,1.768263000000000126e-02,9.569231900000000346e-01,1.597866544385180942e+00,1.579886303629614297e-01,6.954971752111789585e-02,-6.486766595266014734e-01,1.864342949114308756e-02,9.385429544577265082e-01,1.597866544385180942e+00,1.579886303629614297e-01,6.954971752111789585e-02,-7.306394589407667617e-01,-6.951694557136019192e-02,9.004856711660907953e-01,1.584553560552673046e+00,-1.480174030006525532e-01,-3.632412892164455509e-01,-6.385101133545991736e-01,-9.817658354097326401e-02,4.779954327387579971e-01,1.584403758427088027e+00,9.675149264480917277e-03,-3.610806214740358011e-01,-6.680813173642987657e-01,-8.534753679309955987e-02,5.093753629789387061e-01,1.628037562471970734e+00,2.688044470694168631e-01,-2.542988533607322688e-01,-7.711605012897888578e-01,-3.339978221202349190e-02,9.977760076178771032e-02,1.614237090214002635e+00,1.832961667635380487e-01,-2.744878641360575244e-01,-8.256746997426224199e-01,-2.429532633196495456e-02,6.753916054328371055e-02,1.740416644772747157e+00,1.911080096278462981e-01,-1.872818282524020550e-01,-6.559411910551471436e-01,-5.719060224895317762e-02,3.192481727427766425e-02,1.740416644772747157e+00,1.911080096278462981e-01,-1.872818282524021105e-01,-7.415459066147880307e-01,9.729265141927624649e-02,9.049555778724619470e-01,1.508035154178562820e+00,-7.638881271825226360e-02,8.230810488850014150e-02,-6.945163336743567228e-01,7.327203726846699683e-02,4.646374784078553533e-01,1.497478348038519202e+00,5.477055909353407692e-01,3.928347135724807176e-02,-6.995115447124304886e-01,7.309367296908036993e-02,5.056070196174544673e-01,1.267182876830797778e+00,8.167458172617487744e-01,-2.304837610341914367e-01,-1.016755238764983194e+00,1.685297562145413042e-02,2.276004788242537713e-01,1.366540566915586785e+00,6.258912018395472732e-01,-1.142824928682612262e-01,-1.080127777832272873e+00,2.337810872943091658e-02,2.216548999931443331e-01,1.706491469332992450e+00,5.978455261563371259e-01,9.314494040235747618e-02,-9.360064296930592498e-01,3.817044442082000166e-02,1.208076471261105012e-01,1.706491469332992450e+00,5.978455261563371259e-01,9.314494040235754557e-02,-7.340642695477808122e-01,1.076614191042820495e-02,1.024167038170066490e+00,1.618517808652157441e+00,1.557873698555585773e-01,1.253030110733936719e-01,-7.202384915598027959e-01,1.088156683191558553e-02,1.054143425430491998e+00,1.643471042379108571e+00,1.521492107606497723e-01,1.844441329461234125e-01,-7.143388591324912884e-01,9.554237428629885204e-03,1.086463159178461257e+00,1.681252432783388207e+00,1.462564874384314206e-01,2.433523410042165158e-01,-7.148892942177136334e-01,5.418832534491758307e-03,1.121600246286031277e+00,1.717144915205245814e+00,1.396009327325415939e-01,2.916022106233690514e-01,-7.205980722789774306e-01,-7.949733306267855321e-04,1.151084866306632870e+00,1.747514053969150938e+00,1.320335327582465579e-01,3.361449130005773056e-01,-7.347937844279580633e-01,1.320109602313275163e-02,1.066311330836127391e+00,1.771220524425294096e+00,1.240149104337655156e-01,3.770282574700880573e-01,-9.671641862476301199e-01,7.758563753600088153e-04,1.157943483347842584e+00,1.831181179663101233e+00,6.207501918271699504e-01,2.423862247812353099e-01,-6.356533121051358703e-01,2.993514585225181407e-02,1.102575154733980156e+00,1.773002725059377394e+00,1.033785596490426756e-01,3.736459950976292466e-01,-6.066090667283174920e-01,-1.922374654822379125e-01,1.390399019974694284e+00,6.331060366273035811e-01,-2.047387070102567319e-01,-5.566938989223381151e-01,-6.866838913335078232e-01,-4.165429900534048935e-01,1.213872313528460811e+00,-1.678609235836614755e-01,-8.017795533697761323e-01,1.454650043158922879e+00,-6.811827754340760155e-01,-4.418761116448906012e-01,1.228318952330624159e+00,-5.072968846559076928e-02,7.599900478015659822e-01,1.303210400147023496e+00,-4.535299239082763445e-01,-4.927405802341284224e-01,1.252706773017300934e+00,-5.072968846559076234e-02,7.599900478015658711e-01,1.303210400147023496e+00,-7.203676470416233713e-01,1.175727448019001226e-01,1.456910358161620289e+00,2.826575354410407304e+00,-1.774031124491843581e-01,2.516203789173366845e-01,-7.594260699145445326e-01,3.949223727885069479e-01,1.359759715158992854e+00,2.827376407121274138e+00,-3.016712607959903814e-01,-1.677892303440393362e-01,-7.683651389531936937e-01,4.169961507102098452e-01,1.377467794427331249e+00,2.228585995697017985e+00,1.093812686663609535e+00,-1.083084409495297828e+00,-7.080775337558887772e-01,6.314164134975130960e-01,1.304002589491003894e+00,2.228585995697017985e+00,1.093812686663609313e+00,-1.083084409495297828e+00
|
||||
1.466666669999999950e+00,-6.493067300000000541e-01,2.485414000000000026e-02,9.572995699999999886e-01,1.593370389912865059e+00,1.745683741162182279e-01,8.546625360074609767e-02,-6.424592668913062798e-01,2.582644841534215141e-02,9.388004302957654312e-01,1.593370389912865059e+00,1.745683741162182279e-01,8.546625360074609767e-02,-7.235414016762363731e-01,-6.390408714035834825e-02,9.025702296599235064e-01,1.572642496022673919e+00,-1.437594071966821485e-01,-3.976232561087977291e-01,-6.361660160794485597e-01,-9.973584451154762776e-02,4.795430100816615582e-01,1.572623682441733006e+00,1.589312139731321322e-02,-3.973297236561408874e-01,-6.648931734464906818e-01,-8.559469737467176320e-02,5.111119511923483127e-01,1.616804492801356963e+00,2.765922256380914379e-01,-2.930419217068572779e-01,-7.703769506346790363e-01,-3.332376605942401204e-02,1.021680226793946211e-01,1.603385234839673101e+00,1.929653607481555122e-01,-3.118305548026086282e-01,-8.249338835832532579e-01,-2.253004402062989270e-02,7.052876527118509542e-02,1.762154109379978184e+00,2.021378988561682855e-01,-2.026946781529753439e-01,-6.561162305488177360e-01,-5.791015165679055943e-02,3.299487920675944069e-02,1.762154109379978184e+00,2.021378988561682855e-01,-2.026946781529753994e-01,-7.371593117693517883e-01,1.027245620827111766e-01,9.062874998679445460e-01,1.508466009465399882e+00,-1.322383238602402034e-01,8.844926577190795336e-02,-6.671507586565363912e-01,8.119026197332705752e-02,4.686329574732219783e-01,1.499325127263956725e+00,5.263109281579051446e-01,4.427123357176399043e-02,-6.726837227302588929e-01,8.089390297812272534e-02,5.093471200914752028e-01,1.273380063464012446e+00,7.969872938261641782e-01,-2.230435909138190620e-01,-9.840745948396418807e-01,2.364682977055874297e-02,2.250010078370887623e-01,1.369905862308444799e+00,6.034032185022405459e-01,-1.087628937575691457e-01,-1.047319154656660256e+00,2.994692323629772474e-02,2.176226304122442501e-01,1.734876246068212780e+00,5.697431660409175702e-01,1.136898125038819235e-01,-9.007588128578052356e-01,4.806476763557225584e-02,1.209181603934024046e-01,1.734876246068212780e+00,5.697431660409175702e-01,1.136898125038819929e-01,-7.263104742772090727e-01,1.703183419936076318e-02,1.025841852027343792e+00,1.616898016311689279e+00,1.733091812487990435e-01,1.218430865983662209e-01,-7.119718452256112995e-01,1.721682652753173809e-02,1.055575689692235919e+00,1.646432291009831683e+00,1.710764517898641368e-01,1.604345882027647663e-01,-7.054839898077122085e-01,1.572286177603402987e-02,1.087774517697811083e+00,1.694785509357919162e+00,1.669464407735370692e-01,1.988352679849424709e-01,-7.054083963670607638e-01,1.123074784995492514e-02,1.122869966927432905e+00,1.741815307335655927e+00,1.620045414573718090e-01,2.302273824271809932e-01,-7.106992794705071503e-01,4.831740786732652282e-03,1.152392225597384856e+00,1.781528428332276315e+00,1.562325232852390389e-01,2.591381200863635548e-01,-7.265578361078118830e-01,2.288437106077076399e-02,1.068680537316251344e+00,1.812251397481040138e+00,1.500116933491640603e-01,2.856047809338903010e-01,-9.466572025828812187e-01,-1.502103739610251287e-02,1.152779648105158206e+00,1.827990216324306028e+00,6.189996089166253102e-01,2.369104207692083464e-01,-6.235578435447811652e-01,2.382398119025515640e-02,1.100646688881783852e+00,1.818374398775484124e+00,1.304733670819996638e-01,2.818532764036142946e-01,-6.073134606633980859e-01,-2.041297509181489167e-01,1.381593499660927371e+00,6.780823575186308849e-01,-2.044687359342681199e-01,-5.572192727304934312e-01,-6.812967760658031890e-01,-4.222843731168120507e-01,1.194987889260596958e+00,-1.624934034252442372e-01,-8.491464608854442098e-01,1.427241241442411823e+00,-6.764341580392996267e-01,-4.483959515277025631e-01,1.208227040185350099e+00,-3.664223671415097611e-02,7.136426760052662077e-01,1.289215553809027082e+00,-4.501093574841746880e-01,-5.056965188017765733e-01,1.230621468382808947e+00,-3.664223671415098305e-02,7.136426760052662077e-01,1.289215553809027082e+00,-6.878709087540398892e-01,1.129216832314652724e-01,1.461192650155218153e+00,2.844292101849422938e+00,-3.727439502933986293e-01,3.577186650956536984e-01,-7.412732847864685892e-01,3.919767056906008906e-01,1.376557523571302344e+00,2.963648990694497165e+00,-4.898767674230924407e-01,-2.167463396347646398e-01,-7.539618980491642475e-01,4.124662758473858215e-01,1.393875471101194030e+00,2.675789831945297959e+00,1.028152389475975648e+00,-6.871163594011973075e-01,-6.825788376392202261e-01,6.321630046705462025e-01,1.353309638169379436e+00,2.675789831945297514e+00,1.028152389475975870e+00,-6.871163594011971965e-01
|
||||
1.483333330000000005e+00,-6.465999399999999842e-01,3.190996000000000110e-02,9.558556799999999853e-01,1.589670676816208328e+00,2.059438242152064613e-01,1.234134848508074839e-01,-6.403660902595597060e-01,3.300697144252470738e-02,9.371477408354410565e-01,1.589670676816208328e+00,2.059438242152064613e-01,1.234134848508074839e-01,-7.189851790101721152e-01,-6.004877186377501064e-02,9.040089938427868788e-01,1.565962168923380249e+00,-1.476531918488030448e-01,-4.159359314520099105e-01,-6.322797103954487241e-01,-1.006332800123772575e-01,4.809018247488572873e-01,1.566013628106418532e+00,2.184777057029742287e-02,-4.167516087541127123e-01,-6.602841470048206318e-01,-8.589300249515550989e-02,5.126928411945506081e-01,1.611866161717403712e+00,2.849622893944317448e-01,-3.118404168109789598e-01,-7.686892536003960830e-01,-3.258994167733211822e-02,1.046470952915798946e-01,1.598580183226305351e+00,2.025213712693329782e-01,-3.299702915577328310e-01,-8.233838802783556288e-01,-2.090255077852232538e-02,7.356802381114531386e-02,1.761816572954539639e+00,2.121688347132132391e-01,-2.183356022979156819e-01,-6.555163684481364328e-01,-5.883597308766627676e-02,3.430610155374749087e-02,1.761816572954539639e+00,2.121688347132132391e-01,-2.183356022979157374e-01,-7.389265639909914363e-01,1.059547495889229113e-01,9.070983862359263128e-01,1.509000201860484669e+00,-1.927770045054452430e-01,9.065793825004905826e-02,-6.435658273877711277e-01,8.710356313931207073e-02,4.739989739307206018e-01,1.502172042027953625e+00,4.865532811650529199e-01,4.667729375375269385e-02,-6.505115468301305715e-01,8.663017933355013356e-02,5.143855970035943193e-01,1.288956962803504025e+00,7.594948146751777651e-01,-2.117189622312927177e-01,-9.505533348159977969e-01,3.006243800311897418e-02,2.179581517811995939e-01,1.384480457105232265e+00,5.468345738117391663e-01,-9.569208027576261988e-02,-1.013301929143701541e+00,3.609739844787820257e-02,2.069946149487549292e-01,1.747768582349934041e+00,5.092195095802548588e-01,1.265234605545541013e-01,-8.614460416898037654e-01,5.682225897625609728e-02,1.194148558878448396e-01,1.747768582349934041e+00,5.092195095802548588e-01,1.265234605545541846e-01,-7.211036273819327880e-01,2.163988063367448811e-02,1.026796046242140603e+00,1.613336706544628241e+00,2.059891269811703896e-01,1.321495809521475995e-01,-7.058276468742837872e-01,2.222514517802235898e-02,1.056054481993476513e+00,1.644337978459913474e+00,2.060749222059340413e-01,1.414399127147859814e-01,-6.982621019984129873e-01,2.080446869383476699e-02,1.088019198680387101e+00,1.699425978078779931e+00,2.055756451684441488e-01,1.506957580330909041e-01,-6.970328700784551579e-01,1.628604817316560774e-02,1.123086537719722999e+00,1.754164110693679612e+00,2.046719455407669808e-01,1.582714519506275841e-01,-7.014785687028560757e-01,1.013465177323087316e-02,1.152799993069780982e+00,1.800192809770587932e+00,2.034633460328212906e-01,1.652512479444820936e-01,-7.197007827237135169e-01,3.104897186302004244e-02,1.070237200748714423e+00,1.835365451488601751e+00,2.020136215195875717e-01,1.716252158354130974e-01,-9.273842137150005716e-01,-1.882875391404011459e-02,1.150076695564334450e+00,1.839569487147403537e+00,6.260887174789964149e-01,2.312467115328174228e-01,-6.133249530487823176e-01,1.530201580015188093e-02,1.094202194539908524e+00,1.846573230956445100e+00,1.960737320817854401e-01,1.702449715296548149e-01,-6.110164719780842857e-01,-2.126413663876503268e-01,1.374329118262695992e+00,7.319286598719225712e-01,-2.139998781719903709e-01,-5.592403825989101795e-01,-6.761178907610689848e-01,-4.238183949597962297e-01,1.176711578926394886e+00,-1.581801751018713509e-01,-9.036409963198047679e-01,1.390664959226881381e+00,-6.722135104189452814e-01,-4.507556746869517683e-01,1.188538390560692770e+00,-2.380883467276207269e-02,6.599877111854707268e-01,1.264095314758188149e+00,-4.480683529007882249e-01,-5.167095760439364138e-01,1.208954365371918138e+00,-2.380883467276207269e-02,6.599877111854707268e-01,1.264095314758188149e+00,-6.491093027581011921e-01,1.105575663300029793e-01,1.460576003609073359e+00,2.928755781270999670e+00,-3.531429628800329956e-01,4.378544797522175291e-01,-7.367152186205935260e-01,3.866647444707191350e-01,1.397515289511326753e+00,3.075439043993449140e+00,-4.449511878018130862e-01,-3.659725748296424608e-01,-7.471553435735870385e-01,4.062874202574828786e-01,1.417179701130329983e+00,2.834205170349015201e+00,1.106740806232281438e+00,-6.469760111300938421e-01,-6.547119983273329558e-01,6.210747560597731365e-01,1.399057640839761918e+00,2.834205170349015201e+00,1.106740806232281438e+00,-6.469760111300938421e-01
|
||||
1.500000000000000000e+00,-6.471514200000000328e-01,3.891587999999999992e-02,9.533655300000000166e-01,1.585678139389692154e+00,2.420772458590266518e-01,1.757516875720346039e-01,-6.416413712899692312e-01,4.015166247166833402e-02,9.344403216954116909e-01,1.585678139389692154e+00,2.420772458590266518e-01,1.757516875720346039e-01,-7.162925646452269479e-01,-5.727361151562282426e-02,9.048764188805773490e-01,1.563085942061013256e+00,-1.562174885556361636e-01,-4.228279207431674402e-01,-6.275620881868795298e-01,-1.008617041029763184e-01,4.819724749289253651e-01,1.563176965494068149e+00,2.744274697772420418e-02,-4.242366217854490196e-01,-6.549971872182821508e-01,-8.600093668003457037e-02,5.139899716566902477e-01,1.611306663271761863e+00,2.931006222291877017e-01,-3.168505970367179181e-01,-7.663623755473617516e-01,-3.134716035415940905e-02,1.069212136565111382e-01,1.597866869351468821e+00,2.105512497373838998e-01,-3.349847809332116011e-01,-8.212405221228810115e-01,-1.933255616173938998e-02,7.629370490891253243e-02,1.744480613534445279e+00,2.200518093423934896e-01,-2.351409957145805252e-01,-6.543464332614502554e-01,-6.004481758277913084e-02,3.568804682292131547e-02,1.744480613534445279e+00,2.200518093423934896e-01,-2.351409957145805807e-01,-7.449410632254586107e-01,1.074619309425188518e-01,9.072923855874345245e-01,1.509102550819952260e+00,-2.559595333568946973e-01,8.379711354035232485e-02,-6.230230631733280067e-01,9.024067807708648081e-02,4.807875125538819683e-01,1.505069479625976037e+00,4.319846609456068354e-01,4.060845243701560053e-02,-6.320783438335362270e-01,8.962763903677083144e-02,5.207071457271992276e-01,1.309802908714835956e+00,7.074073988261851964e-01,-2.053913868576589807e-01,-9.160437900682351087e-01,3.661876285998051650e-02,2.082205083020756131e-01,1.402709220547514679e+00,4.695060949350674528e-01,-8.809253978675544994e-02,-9.777342824648280750e-01,4.285052361100565033e-02,1.924263865044950617e-01,1.749267902332543922e+00,4.296834175988974436e-01,1.263356892054142699e-01,-8.194516530965274548e-01,6.436530203292743779e-02,1.173020352912470393e-01,1.749267902332543922e+00,4.296834175988974436e-01,1.263356892054143255e-01,-7.184810844499704974e-01,2.543161654223016419e-02,1.026979816213482666e+00,1.607476709937744941e+00,2.432338153859361085e-01,1.569482169230405344e-01,-7.021874168632820101e-01,2.676170691888360778e-02,1.055659780034187367e+00,1.637654070550190966e+00,2.454039804934849134e-01,1.370171310513164931e-01,-6.934117910884289859e-01,2.566672656773174438e-02,1.087324792753268765e+00,1.696800134721839548e+00,2.486204809518472725e-01,1.172088158529599328e-01,-6.908389242957353460e-01,2.130568167493224890e-02,1.122335336081058399e+00,1.756792050122230497e+00,2.521135307624214339e-01,1.010619755973704154e-01,-6.942168008294665738e-01,1.548399377834755106e-02,1.152254922487889077e+00,1.806735436597519229e+00,2.560173093773068786e-01,8.623341795748426519e-02,-7.150515770121005366e-01,3.845965857422029011e-02,1.070859449585575662e+00,1.844039864369184434e+00,2.599858057696102231e-01,7.265380094944097478e-02,-9.083492958666392614e-01,-1.141056255162404415e-02,1.147003236221615818e+00,1.846526159181502091e+00,6.374736469419456375e-01,1.966667896302239926e-01,-6.068012807997356095e-01,8.331122207567938365e-03,1.085590348971299912e+00,1.857556747457905111e+00,2.752859323105692479e-01,7.532359380493650058e-02,-6.138984647294982722e-01,-2.162296030970011773e-01,1.368467551829483098e+00,7.803710745081757771e-01,-2.235569703823193921e-01,-5.641375503398592395e-01,-6.711008508808770090e-01,-4.206830859471852868e-01,1.161553839508450592e+00,-1.328657130069227088e-01,-9.551952670675566415e-01,1.327922544407964311e+00,-6.683115702969243399e-01,-4.483568697661825531e-01,1.171903540052501969e+00,1.849189518863639334e-03,6.103836438006098319e-01,1.236872619274269613e+00,-4.471158688716548868e-01,-5.247332587475943555e-01,1.187616262530863498e+00,1.849189518863639551e-03,6.103836438006097209e-01,1.236872619274269613e+00,-6.141371073617454268e-01,1.087909331595976470e-01,1.456266943397894531e+00,3.022300796236695231e+00,-3.361601138281256063e-01,5.166011624092178289e-01,-7.346242995293654765e-01,3.769704584169212835e-01,1.418198547926420749e+00,-3.122412308503636602e+00,-3.645761098942440492e-01,-4.984683085054010809e-01,-7.423499863514193553e-01,3.953004105324389728e-01,1.440222655557798825e+00,2.985974405015754396e+00,1.200981121262695517e+00,-6.068574805813535811e-01,-6.294800485549306712e-01,6.008925694598806766e-01,1.440073995175686017e+00,2.985974405015754396e+00,1.200981121262695517e+00,-6.068574805813535811e-01
|
||||
1.516666669999999995e+00,-6.489969599999999561e-01,4.492481000000000252e-02,9.512608200000000069e-01,1.585595902571960369e+00,2.702764348301969211e-01,2.296409184784089230e-01,-6.440829406216985742e-01,4.633224898060289004e-02,9.321840583895533161e-01,1.585595902571960369e+00,2.702764348301969211e-01,2.296409184784089230e-01,-7.141520525692786059e-01,-5.515771566248204444e-02,9.051911767699367672e-01,1.562451214722932802e+00,-1.648066683813874944e-01,-4.191571493871241172e-01,-6.225492018154843432e-01,-9.993447912650099685e-02,4.825205006580036149e-01,1.562559747954195721e+00,3.322124986250957202e-02,-4.207998782319374853e-01,-6.496042385201296065e-01,-8.531912976682529126e-02,5.147647016816609966e-01,1.613067087168476466e+00,3.009548582442337361e-01,-3.103969793896996787e-01,-7.641232350415145813e-01,-2.969988249854250972e-02,1.087029909194874300e-01,1.599278177058424122e+00,2.173634366540015128e-01,-3.289384875330868541e-01,-8.192521978576057240e-01,-1.789408920783855036e-02,7.844697199517863817e-02,1.710194695674618348e+00,2.257312348540548852e-01,-2.536957698118715299e-01,-6.533807918941693105e-01,-6.170894418037677076e-02,3.689122915562676602e-02,1.710194695674618348e+00,2.257312348540548852e-01,-2.536957698118715854e-01,-7.515696598068121181e-01,1.078104010644694299e-01,9.075761115901699316e-01,1.510434010934814442e+00,-3.166941583522354109e-01,6.668419703827269118e-02,-6.041917468979040029e-01,9.081948960427002615e-02,4.892031699484151175e-01,1.509345584109460736e+00,3.668566837240437306e-01,2.579956577645109092e-02,-6.158728862795240788e-01,9.013537412144990990e-02,5.284577785693279628e-01,1.334887241766447463e+00,6.449931106057664731e-01,-2.059935076337463256e-01,-8.797104429960314054e-01,4.365506367174559060e-02,1.978166761872720558e-01,1.421000866176288735e+00,3.873621640392498344e-01,-9.196504959516124678e-02,-9.397989253826455336e-01,5.075403938932687015e-02,1.770083892375093060e-01,1.744628860416699512e+00,3.467105877744418030e-01,1.122337005758172468e-01,-7.755890225365187352e-01,7.066207706299564018e-02,1.153746124690198105e-01,1.744628860416699512e+00,3.467105877744418030e-01,1.122337005758173023e-01,-7.174485654849716010e-01,2.810144517077321422e-02,1.026892570135885308e+00,1.605058578918134859e+00,2.722319068197739389e-01,1.901549609653015449e-01,-7.004127628114242832e-01,3.021171913919307866e-02,1.055091183495602047e+00,1.633670760038984149e+00,2.758379636601088203e-01,1.482543815992256875e-01,-6.906910524475944335e-01,2.946374047066938756e-02,1.086487059589738458e+00,1.695251522842026626e+00,2.818284960394265570e-01,1.065731319639421637e-01,-6.870113636339507668e-01,2.519606527993967920e-02,1.121406553618299107e+00,1.758739440123304298e+00,2.887207438669461834e-01,7.256005917804339567e-02,-6.894574861390974085e-01,1.949183469938445268e-02,1.151438965605152243e+00,1.810993626076250473e+00,2.966270445852915993e-01,4.129138053800737035e-02,-7.124937084955317301e-01,4.405429809826981458e-02,1.071100115875748937e+00,1.849053530155504887e+00,3.048379065674959865e-01,1.264048584162596328e-02,-8.926526280833245730e-01,1.538538628071677017e-03,1.144565296971649326e+00,1.858947793927520076e+00,6.468803759486366767e-01,1.607945495031640748e-01,-6.033299721561409257e-01,4.459848000956181946e-03,1.078059175846143747e+00,1.861604321331897127e+00,3.409234317206952247e-01,1.899931425228380474e-02,-6.139132218936740326e-01,-2.176254596379877948e-01,1.363460760814056538e+00,8.203455954349292423e-01,-2.245785711513781646e-01,-5.729543638620853141e-01,-6.664975368248481358e-01,-4.152754965792231356e-01,1.148854198244781077e+00,-8.528741806018882987e-02,-9.996701874617331951e-01,1.246957659905754578e+00,-6.647427004586432542e-01,-4.435267324695469915e-01,1.157771760601460809e+00,3.707051021240541366e-02,5.676350911780906339e-01,1.214937931472476196e+00,-4.467590857963432693e-01,-5.296326170011360635e-01,1.166529680350432141e+00,3.707051021240542060e-02,5.676350911780906339e-01,1.214937931472476418e+00,-5.902514648672172459e-01,1.064203532674795893e-01,1.451673976895729634e+00,3.098166274623483929e+00,-3.558261697913442934e-01,5.554139890470496388e-01,-7.283849048628469047e-01,3.682030980975917744e-01,1.435073638295596421e+00,-3.052644973924725225e+00,-2.992666697479294813e-01,-6.031128953941440329e-01,-7.341871229081258221e-01,3.850151786914947083e-01,1.458831224668106996e+00,-3.097973047397342583e+00,1.266768773456173669e+00,-5.005421203034534638e-01,-6.047454917829002685e-01,5.799891628909787933e-01,1.474251678213939654e+00,-3.097973047397342583e+00,1.266768773456173891e+00,-5.005421203034534638e-01
|
||||
1.533333330000000050e+00,-6.492561199999999921e-01,4.802452000000000110e-02,9.499426300000000101e-01,1.595237851055021361e+00,2.845372868917664388e-01,2.605974177738339392e-01,-6.446927843329703922e-01,4.967194821226667695e-02,9.307980941646317730e-01,1.595237851055021361e+00,2.845372868917664388e-01,2.605974177738339392e-01,-7.122923093243531678e-01,-5.361930628254360509e-02,9.043456841357605525e-01,1.562624117895761611e+00,-1.752332713816985577e-01,-4.151856598310743052e-01,-6.171302619563983072e-01,-9.944719061752908817e-02,4.819067900631590629e-01,1.562741949684350651e+00,4.263946599526987485e-02,-4.169537535350274493e-01,-6.436271379739915144e-01,-8.518713272103116407e-02,5.144951224950051749e-01,1.616720607898094908e+00,3.127641733906177945e-01,-3.021948734380854318e-01,-7.626855841646187351e-01,-2.760794011992140362e-02,1.100152872150044758e-01,1.601395005433674967e+00,2.213714122330505407e-01,-3.227947628143340020e-01,-8.179755677663246294e-01,-1.601820577719763675e-02,7.997029181249026841e-02,1.672817572612784298e+00,2.275829468007391776e-01,-2.744774613399655339e-01,-6.531393063742922944e-01,-6.332651045696904846e-02,3.812682357523548837e-02,1.672817572612784520e+00,2.275829468007391776e-01,-2.744774613399655894e-01,-7.542579097977213376e-01,1.082073743748239725e-01,9.082681985508265221e-01,1.513418889893766828e+00,-3.663228356572200139e-01,4.055311536335264727e-02,-5.859324064875024440e-01,8.957416631511147531e-02,4.980944760452988285e-01,1.514802641787537762e+00,2.953555271186516507e-01,3.667466734275311429e-03,-6.006174077806548661e-01,8.896657947754917084e-02,5.364500402400764756e-01,1.362369997712946201e+00,5.760482984172839993e-01,-2.132023420306275174e-01,-8.409015545743803166e-01,5.089102369472112142e-02,1.872967858810502539e-01,1.438803767601852579e+00,3.073200965371389315e-01,-1.064298641921392341e-01,-8.989442330753456556e-01,5.940522830366413987e-02,1.617514972770913717e-01,1.736992105632563010e+00,2.668328737236362880e-01,8.673649379076724120e-02,-7.299077468367404231e-01,7.548702309865309990e-02,1.135022818246476245e-01,1.736992105632563010e+00,2.668328737236362880e-01,8.673649379076729671e-02,-7.159736399086991110e-01,2.886586605948010531e-02,1.026562001197395047e+00,1.612758345689883077e+00,2.872923903376991550e-01,2.111870609855362457e-01,-6.985247011509747583e-01,3.118803270587471033e-02,1.054490457743907816e+00,1.639610833684893576e+00,2.919415942642932804e-01,1.587416401858665616e-01,-6.882698862418730190e-01,3.041893416093922886e-02,1.085714922072045452e+00,1.700894258851688656e+00,2.995764054573389346e-01,1.065613346430048236e-01,-6.839611574750876777e-01,2.599970143103901010e-02,1.120541894793834592e+00,1.764646501999644235e+00,3.083295455600176260e-01,6.396448864870930839e-02,-6.858671402663921723e-01,2.018861799535458940e-02,1.150592931908830163e+00,1.816730955869641617e+00,3.183413636050030360e-01,2.478140030304877214e-02,-7.101901838709645531e-01,4.571762636285388315e-02,1.070935013978519645e+00,1.854047466828709689e+00,3.287276362248072736e-01,-1.114930735699583460e-02,-8.857103529951116938e-01,7.324566373743110481e-03,1.145275408082738089e+00,1.875631839982146332e+00,6.572667266303876543e-01,1.539575928550940276e-01,-6.007277273597004807e-01,2.449902549589100254e-03,1.073684994656986191e+00,1.864940484214064886e+00,3.755319675430749404e-01,-2.802543978075501020e-03,-6.113483332512681390e-01,-2.198380203184294168e-01,1.359690345943261214e+00,8.554172379647848601e-01,-2.124669118492652775e-01,-5.842936613920465261e-01,-6.627823941547634767e-01,-4.095915714143438247e-01,1.137801294381632911e+00,-2.318763557173721124e-02,-1.038680109905590676e+00,1.162685048338681026e+00,-6.617855575323854378e-01,-4.382812186854032621e-01,1.145327591917515209e+00,7.499834732077791111e-02,5.284968411721117088e-01,1.203336276436099306e+00,-4.465341595037190525e-01,-5.314146000906357914e-01,1.146216234292770420e+00,7.499834732077791111e-02,5.284968411721117088e-01,1.203336276436099528e+00,-5.773695627513177886e-01,1.030581954228817765e-01,1.448744352668780877e+00,-3.131399843243655390e+00,-3.941850574828182907e-01,5.434995550124227526e-01,-7.174662718443372000e-01,3.643209049551975331e-01,1.447589932211673425e+00,-2.992431582307231164e+00,-2.545097515625972528e-01,-6.985315600785791945e-01,-7.219825797430483583e-01,3.797561660651642690e-01,1.472531671842648215e+00,-2.864181665462446347e+00,1.297804675160098897e+00,-3.552541078345839431e-01,-5.776201898378369171e-01,5.622818672646368032e-01,1.501714707206289523e+00,-2.864181665462446347e+00,1.297804675160098897e+00,-3.552541078345839987e-01
|
||||
1.550000000000000044e+00,-6.465515600000000251e-01,4.862696999999999853e-02,9.494067000000000478e-01,1.606371323297305587e+00,2.872409306853718758e-01,2.624257134762756905e-01,-6.420888378607454428e-01,5.045267677053167504e-02,9.302546189023204182e-01,1.606371323297305587e+00,2.872409306853718758e-01,2.624257134762756905e-01,-7.099674274612512992e-01,-5.249225875926851609e-02,9.031742504942068539e-01,1.562403997807845224e+00,-1.836933931573951073e-01,-4.115430656304280288e-01,-6.120572827780282887e-01,-9.921039247138731254e-02,4.808466813396727879e-01,1.562533496257808352e+00,5.322038058640492231e-02,-4.135156139663103136e-01,-6.379707744142335546e-01,-8.528724363703267530e-02,5.137962454018348835e-01,1.620018340321190076e+00,3.253859975562747309e-01,-2.947502829153940684e-01,-7.619019501330148714e-01,-2.578084131535999385e-02,1.110627529459053409e-01,1.603307409629796121e+00,2.275148483001028510e-01,-3.171444737802904812e-01,-8.174087380673487058e-01,-1.436992989040613081e-02,8.135091067361145678e-02,1.637522601572968028e+00,2.308573728419106297e-01,-2.940884761844558826e-01,-6.536780088229177110e-01,-6.493313929136049212e-02,3.897692394046706199e-02,1.637522601572968028e+00,2.308573728419106297e-01,-2.940884761844559381e-01,-7.516949238354170282e-01,1.093430017102299256e-01,9.088783569204531565e-01,1.517373676831469398e+00,-4.033401032119159346e-01,1.005429985193249422e-02,-5.674584611691320113e-01,8.752127325918201972e-02,5.060726386903318108e-01,1.520430523006247370e+00,2.216949216100119469e-01,-2.201410753035921292e-02,-5.853240354459937622e-01,8.718929861839139206e-02,5.432751321075085515e-01,1.389554017251151130e+00,5.043350803978166041e-01,-2.244644024884754063e-01,-7.995925812025219681e-01,5.742912008885719954e-02,1.768088495502570523e-01,1.456001453692740588e+00,2.297112419072519784e-01,-1.260731723326573017e-01,-8.552156576758387363e-01,6.752680640371833132e-02,1.468402647942307349e-01,1.729438703702842028e+00,1.897050162770186621e-01,5.690084873870514259e-02,-6.825681559727471148e-01,7.872809332118559100e-02,1.118071958083116657e-01,1.729438703702842028e+00,1.897050162770186621e-01,5.690084873870520504e-02,-7.128824716338343359e-01,2.881770345815400439e-02,1.026196104524081498e+00,1.623420541855679744e+00,2.905786607731475901e-01,2.121777571137282992e-01,-6.952796440923199039e-01,3.084568475667870402e-02,1.054050937539677602e+00,1.649716205685309189e+00,2.958581431702060893e-01,1.588506939642487514e-01,-6.848590563047618485e-01,2.976863067407679864e-02,1.085211316052163921e+00,1.710313926914332816e+00,3.041325957938709745e-01,1.058093991573017673e-01,-6.803757193432959927e-01,2.503935635505312451e-02,1.119975438461604300e+00,1.773440618185362361e+00,3.134191892688515391e-01,6.252047237161249826e-02,-6.821376281408128017e-01,1.899610501757125272e-02,1.149989515421964370e+00,1.824944251430199227e+00,3.239295536120253005e-01,2.270521102591187973e-02,-7.068018617712767959e-01,4.522570965938527143e-02,1.070665027670107072e+00,1.861734623783249054e+00,3.347700367785291231e-01,-1.380865078706423714e-02,-8.835678527655927983e-01,9.161606497340414601e-03,1.147593205539899408e+00,1.893259434471588065e+00,6.646461571166298876e-01,1.601405391235329323e-01,-5.974630423119055012e-01,1.500754456203290399e-03,1.072371202057547102e+00,1.872535012558560030e+00,3.821284495553682325e-01,-4.941514511618534146e-03,-6.076269843929973380e-01,-2.229520760637402899e-01,1.356871550303595297e+00,8.828060204702492531e-01,-1.897528834337302017e-01,-5.915414967340641983e-01,-6.602944269240470510e-01,-4.047524703175469085e-01,1.128701917959910928e+00,5.013597647061716206e-02,-1.068647335933865739e+00,1.081049757746438633e+00,-6.596777900604267053e-01,-4.337514197928132864e-01,1.134980085423233476e+00,1.136230643250035477e-01,4.956756507411396728e-01,1.204381289498048568e+00,-4.461890541433657376e-01,-5.305802395361502999e-01,1.127596314422807167e+00,1.136230643250035616e-01,4.956756507411396728e-01,1.204381289498048568e+00,-5.714468479938685785e-01,9.910117760898437544e-02,1.448084699726079894e+00,-3.098454183870974710e+00,-4.357561725684326870e-01,4.961974552902170821e-01,-7.026556573704330066e-01,3.648108074692202329e-01,1.456407254560619924e+00,-2.941781389262402069e+00,-2.290715388490364990e-01,-7.918736792113723055e-01,-7.063305764938422326e-01,3.792260778440635915e-01,1.482086616854974448e+00,-2.657992274748059991e+00,1.299396731133336091e+00,-2.378161044387285539e-01,-5.482254354341177249e-01,5.475935411621606352e-01,1.522865808078597283e+00,-2.657992274748059991e+00,1.299396731133336091e+00,-2.378161044387285539e-01
|
||||
1.566666670000000039e+00,-6.419544400000000151e-01,4.795573000000000197e-02,9.493332399999999671e-01,1.619278868623307721e+00,2.851866642003124674e-01,2.538677872797657220e-01,-6.374908051453496149e-01,4.996620234139760586e-02,9.301998851105646171e-01,1.619278868623307721e+00,2.851866642003124674e-01,2.538677872797657220e-01,-7.066508620042577515e-01,-5.179673355904899912e-02,9.019209098338336617e-01,1.561910007229257547e+00,-1.889696732103294530e-01,-4.073544894509777414e-01,-6.071600189167971617e-01,-9.894173036488179696e-02,4.794929673161324457e-01,1.562049998650739013e+00,6.452946225405496727e-02,-4.095878189580079987e-01,-6.325134013719829751e-01,-8.535031499378578634e-02,5.128071520569783548e-01,1.622865226337114608e+00,3.383407809573051317e-01,-2.874067489610728221e-01,-7.615079669485952385e-01,-2.412539568724716282e-02,1.119254669107655475e-01,1.605019562473005479e+00,2.358131725857230132e-01,-3.111931404696505199e-01,-8.172951641981643922e-01,-1.290144950852272973e-02,8.267110599202955046e-02,1.604116613319425344e+00,2.357159857827748617e-01,-3.117985501803451909e-01,-6.546969986004069764e-01,-6.635918429092672877e-02,3.949644060042485638e-02,1.604116613319425344e+00,2.357159857827748617e-01,-3.117985501803452464e-01,-7.463931717281481193e-01,1.104513462139549568e-01,9.096979107205308557e-01,1.523027494906659340e+00,-4.300987605890752019e-01,-2.625556090433209255e-02,-5.502763318528635095e-01,8.415099460062185066e-02,5.133663038890325936e-01,1.526924907973614021e+00,1.442642296121084966e-01,-5.249691610094291139e-02,-5.715509083590585293e-01,8.435034544086422725e-02,5.490760658347217937e-01,1.417574134739089775e+00,4.281960018209883256e-01,-2.403688408224437800e-01,-7.566239312451268351e-01,6.284149290764994011e-02,1.664802482405198236e-01,1.473448549349898107e+00,1.559444950432163912e-01,-1.523886279562636781e-01,-8.095068950729430446e-01,7.476368546242304070e-02,1.324911405878950454e-01,1.727788484188530038e+00,1.153766830550079225e-01,2.422560949769488742e-02,-6.344625499595654139e-01,8.036719915667002445e-02,1.103999098932107459e-01,1.727788484188530038e+00,1.153766830550079087e-01,2.422560949769494293e-02,-7.084378475123218610e-01,2.799820686328609309e-02,1.025952188844672319e+00,1.636019746270555020e+00,2.889935776730432893e-01,2.057468599074847027e-01,-6.907909063413097961e-01,2.951238354960135715e-02,1.053811799777750080e+00,1.661711301934061025e+00,2.947002199509412002e-01,1.546917133727297444e-01,-6.803603657054236864e-01,2.800091282565426651e-02,1.084951164728607864e+00,1.720605515625152959e+00,3.031835258236548203e-01,1.039279954858506466e-01,-6.758986590006567097e-01,2.291803123064929670e-02,1.119668953718787163e+00,1.781909837527776430e+00,3.124579519350233481e-01,6.250730915088401063e-02,-6.776903008594763467e-01,1.664173765587765447e-02,1.149633622127364641e+00,1.831954230912450132e+00,3.228180666448119407e-01,2.441384082947585868e-02,-7.022771998461292409e-01,4.326187945480000629e-02,1.070417608768720052e+00,1.867748710250918487e+00,3.334271741008352774e-01,-1.052246967868022964e-02,-8.813323675837047011e-01,7.577904127881264496e-03,1.149089704432893377e+00,1.901945968816117771e+00,6.684014396323707530e-01,1.643132638271490031e-01,-5.932181152179871741e-01,4.961198790977769391e-04,1.072514496578890197e+00,1.878863958624648278e+00,3.773973641088542164e-01,-1.843760161416937169e-03,-6.031520593342787340e-01,-2.264030041260821358e-01,1.355240732370235346e+00,9.035468565025802645e-01,-1.603610852839665868e-01,-5.963376468754983950e-01,-6.590137831160414184e-01,-4.004358898678433976e-01,1.121834120480215802e+00,1.293863281745754323e-01,-1.090129398807484717e+00,1.001763143601103190e+00,-6.585480550181226356e-01,-4.296542380718940679e-01,1.127011564246574560e+00,1.512045903928885549e-01,4.682898035994979002e-01,1.212403120921946797e+00,-4.462233913927715068e-01,-5.280548179911935813e-01,1.111412081612014102e+00,1.512045903928885549e-01,4.682898035994979002e-01,1.212403120921946797e+00,-5.675249098145997984e-01,9.517541686417778368e-02,1.448327597550721713e+00,-3.078175431600724821e+00,-4.735232706110865109e-01,4.370848921175669033e-01,-6.855291814126300842e-01,3.667695515623166647e-01,1.462407436315445564e+00,-2.899843313579122839e+00,-2.149507341583118680e-01,-8.785596892411979830e-01,-6.886558954022548029e-01,3.804649582386963602e-01,1.488549245625128137e+00,-2.507048490139789809e+00,1.286615871548481449e+00,-1.700853340401941860e-01,-5.190140155897924323e-01,5.344053709397440510e-01,1.538865870329733321e+00,-2.507048490139789809e+00,1.286615871548481227e+00,-1.700853340401942138e-01
|
||||
1.583333330000000094e+00,-6.362502500000000172e-01,4.605789999999999884e-02,9.493243500000000390e-01,1.627963758065537947e+00,2.862215121413921870e-01,2.370461671237851509e-01,-6.318052051872093955e-01,4.813238039913355498e-02,9.301935002498674665e-01,1.627963758065537947e+00,2.862215121413921870e-01,2.370461671237851509e-01,-7.029975693668863990e-01,-5.205451974728771136e-02,9.013362420282861054e-01,1.563949331094027562e+00,-1.913260773676525028e-01,-3.772119419217782599e-01,-6.013088656725359415e-01,-9.555284440016337255e-02,4.786687226365164416e-01,1.564055621165943322e+00,7.440327727144972758e-02,-3.790150682189944997e-01,-6.265880298289079331e-01,-8.298657438102735595e-02,5.122944547229490997e-01,1.627681737366289960e+00,3.490631848994467101e-01,-2.536032165867449506e-01,-7.611806906433045139e-01,-2.310829137265135724e-02,1.130531479209998524e-01,1.610719100333271925e+00,2.545462798246779790e-01,-2.761775455818325509e-01,-8.177882076190980953e-01,-1.346655129058607799e-02,8.482848056115216417e-02,1.544607228487982375e+00,2.463511096492090047e-01,-3.200302396282634909e-01,-6.561030677044825676e-01,-6.822998238591283793e-02,3.989712468402247664e-02,1.544607228487982375e+00,2.463511096492090047e-01,-3.200302396282635464e-01,-7.395812664484169296e-01,1.108626093995880996e-01,9.105021818816440016e-01,1.531079745510899093e+00,-4.467883411044549780e-01,-6.318427143495708442e-02,-5.354004121090454316e-01,8.036265059609142003e-02,5.194261462285789666e-01,1.534901739301537615e+00,6.607777098986693243e-02,-8.272313352552108923e-02,-5.601705510642943642e-01,8.126501882982403724e-02,5.533093114628495623e-01,1.446209130339366045e+00,3.504590032775384834e-01,-2.558360113366283661e-01,-7.138056018491800714e-01,6.679068270052883338e-02,1.567226513972338475e-01,1.491880238856349461e+00,8.856235181823612912e-02,-1.796133196117964681e-01,-7.638272280872304698e-01,8.047659828758903233e-02,1.192454770027632366e-01,1.732939946904116679e+00,4.612943134903306486e-02,-5.527208426480302063e-03,-5.875844850348217463e-01,8.087337617001465195e-02,1.093317146406072859e-01,1.732939946904116679e+00,4.612943134903305792e-02,-5.527208426480247419e-03,-7.028795233227913553e-01,2.678264400145335608e-02,1.025991252695568123e+00,1.644498262522681831e+00,2.901453468654328627e-01,1.920057744321004289e-01,-6.851363325557026096e-01,2.779565246963354441e-02,1.053812258064391161e+00,1.669709319104094591e+00,2.958543440380597689e-01,1.442294830670258488e-01,-6.746568430895294455e-01,2.592507594792068520e-02,1.084916115701004768e+00,1.727010685167563286e+00,3.040851221711710628e-01,9.673538065985735901e-02,-6.701904439795222101e-01,2.060632541839350212e-02,1.119598917555953532e+00,1.786588335179874809e+00,3.129395703498940584e-01,5.798500858064022101e-02,-6.719975271958535945e-01,1.421300747940853343e-02,1.149538093700224195e+00,1.835287228280457095e+00,3.227498735740056968e-01,2.234692809108908967e-02,-6.965105553253533310e-01,4.101242660144045760e-02,1.070362106236856015e+00,1.870219433834582778e+00,3.327546147625573547e-01,-1.033758000277436827e-02,-8.768422769258022997e-01,7.772931259650436853e-03,1.150628903753646126e+00,1.900614782534037372e+00,6.747246053640155727e-01,1.504842767620528099e-01,-5.879253125137355873e-01,-1.009866842141778076e-03,1.073034910698276834e+00,1.881781031996478948e+00,3.725706287131302918e-01,-2.198969411807923536e-03,-5.977519200003820199e-01,-2.293764481262895449e-01,1.354625616080328498e+00,9.145020217953920838e-01,-1.264104765909373485e-01,-5.993328887133939631e-01,-6.590219824402451243e-01,-3.967235992104655162e-01,1.117713112294483002e+00,2.094114502671066691e-01,-1.100198561673924047e+00,9.269715431661920135e-01,-6.585472283148016137e-01,-4.260819767637787914e-01,1.122025301337838288e+00,1.879280420125914453e-01,4.493313340361729247e-01,1.225029338447938931e+00,-4.470592332692152615e-01,-5.246820512447998297e-01,1.098389861116128019e+00,1.879280420125914453e-01,4.493313340361729247e-01,1.225029338447938931e+00,-5.619896565108113418e-01,9.196215087545882294e-02,1.448485641651987343e+00,-3.058668099142015873e+00,-4.908324010464706344e-01,3.875281651428661434e-01,-6.690545192239200079e-01,3.677354977900793020e-01,1.467793678351367648e+00,-2.879392896301846250e+00,-1.942998246081130698e-01,-9.525264822178876045e-01,-6.713312335524405094e-01,3.808667173498219705e-01,1.494310132547362446e+00,-2.404291187389391293e+00,1.287793727798323573e+00,-1.412365884330646637e-01,-4.915906421717721742e-01,5.210996698191824317e-01,1.549408404955783691e+00,-2.404291187389391293e+00,1.287793727798323573e+00,-1.412365884330646637e-01
|
||||
1.600000000000000089e+00,-6.293145999999999463e-01,4.457670999999999856e-02,9.494925800000000304e-01,1.634940788758954211e+00,2.903386912956860688e-01,2.274660125992060411e-01,-6.249513877186859689e-01,4.670670227588655243e-02,9.303489958013942962e-01,1.634940788758954211e+00,2.903386912956860688e-01,2.274660125992060411e-01,-6.974570540876228186e-01,-5.248840656588390358e-02,9.013357616353535606e-01,1.564162672432265033e+00,-1.904469649425498123e-01,-3.556881585803878254e-01,-5.955287711092525083e-01,-9.344108388851934954e-02,4.781755946167963733e-01,1.564258884054588350e+00,8.522628988866115529e-02,-3.575004081135475520e-01,-6.205753491918560849e-01,-8.160283167259478609e-02,5.121237043411168699e-01,1.630507012693588109e+00,3.606931916416338813e-01,-2.297437751955439256e-01,-7.607723307500402488e-01,-2.273438156656377995e-02,1.146648685830647385e-01,1.613914185622619124e+00,2.705334543697130445e-01,-2.516737080724547049e-01,-8.180008816694362972e-01,-1.424161557369718785e-02,8.733774171239984396e-02,1.506931588099087227e+00,2.562093304043869813e-01,-3.220190482010571453e-01,-6.568655060408965518e-01,-6.925594985043495577e-02,4.076781213723985886e-02,1.506931588099087227e+00,2.562093304043869813e-01,-3.220190482010572008e-01,-7.321008252417449125e-01,1.107865031193369099e-01,9.116063654400068383e-01,1.540184798904763896e+00,-4.550783483571077537e-01,-9.606104468206465297e-02,-5.230224270928472974e-01,7.708809790981702159e-02,5.245768851044620984e-01,1.543300117771569724e+00,-8.313528198365406283e-03,-1.092905580363962986e-01,-5.511187705967438566e-01,7.878159785504894319e-02,5.563840232993774171e-01,1.473157633574360803e+00,2.753448590374737437e-01,-2.681285686923225442e-01,-6.731421235310850459e-01,6.928528068653092009e-02,1.488127590069171502e-01,1.509571865898544640e+00,3.336692009097901035e-02,-2.043839106491847080e-01,-7.205547760820150138e-01,8.449486128135380580e-02,1.086292423145805153e-01,1.737731675347539140e+00,-1.041874108435302503e-02,-3.350283855441404252e-02,-5.440912332186439437e-01,7.996078647780967275e-02,1.086985335961413307e-01,1.737731675347539140e+00,-1.041874108435303370e-02,-3.350283855441398700e-02,-6.957388384266385284e-01,2.564361204052495458e-02,1.026422209385318363e+00,1.650645285290421649e+00,2.944586900298958865e-01,1.825625303297857827e-01,-6.778386401920410975e-01,2.632043731733006708e-02,1.054152530907776386e+00,1.674784528601993117e+00,3.002761320267404721e-01,1.349277009635494462e-01,-6.672238592695638459e-01,2.420789579610954992e-02,1.085195213657750513e+00,1.730252584346386291e+00,3.085333452744922766e-01,8.756837811053339027e-02,-6.626490048482065465e-01,1.875722110704815954e-02,1.119844003796037324e+00,1.788022895276175417e+00,3.173455413133692282e-01,4.891405823494081317e-02,-6.643831476144782533e-01,1.235196758854609916e-02,1.149785142755119782e+00,1.835193344549818306e+00,3.270662337468672187e-01,1.334801381984458517e-02,-6.890025639788122103e-01,3.924357154759837429e-02,1.070675510891389903e+00,1.868945094238888993e+00,3.369643122755200948e-01,-1.928177406691573142e-02,-8.668110789474171574e-01,5.130346320554070305e-03,1.148847557339170544e+00,1.892340611022797603e+00,6.733484548639213640e-01,1.380795493034975563e-01,-5.808787218892095261e-01,-3.069610379775059017e-03,1.073141632404557511e+00,1.880364391173719563e+00,3.757025446172682637e-01,-1.125870726529427761e-02,-5.913499152755776755e-01,-2.316582387832552548e-01,1.354832727968516837e+00,9.188544950212419460e-01,-9.198701136679825197e-02,-6.056662421624172676e-01,-6.597497385389943236e-01,-3.931343332342537300e-01,1.115806455195337055e+00,2.776645849450442571e-01,-1.103085972888865118e+00,8.634400655626764953e-01,-6.592639695892431595e-01,-4.225799637524484953e-01,1.119474366085961625e+00,2.191265326567075067e-01,4.364554892482287451e-01,1.235752659660934727e+00,-4.486395253285704321e-01,-5.211560826405667868e-01,1.089013357642754753e+00,2.191265326567075344e-01,4.364554892482287451e-01,1.235752659660934727e+00,-5.524533490177054862e-01,8.946891441270457546e-02,1.448168400207065165e+00,-3.044434455028989461e+00,-5.003642848015974476e-01,3.598868494707953558e-01,-6.538337719449970331e-01,3.670971086381062953e-01,1.471216601778533750e+00,-2.869427687562436269e+00,-1.724602748827506749e-01,-1.015198126529762490e+00,-6.552218850214688306e-01,3.797098016773407525e-01,1.498044345156856139e+00,-2.321300351321609501e+00,1.294804217147776049e+00,-1.223166287928722784e-01,-4.671043438780307921e-01,5.074160164637611103e-01,1.555582977306137815e+00,-2.321300351321609501e+00,1.294804217147776049e+00,-1.223166287928722784e-01
|
||||
1.616666670000000083e+00,-6.203199999999999825e-01,4.304033000000000164e-02,9.498430199999999823e-01,1.635895237142045211e+00,2.999539370638222846e-01,2.127966725167830808e-01,-6.161092633017029030e-01,4.508308315222277207e-02,9.306558325955638367e-01,1.635895237142045211e+00,2.999539370638222846e-01,2.127966725167830808e-01,-6.903637769165122950e-01,-5.304975948753849757e-02,9.024650285315483078e-01,1.564004147025788605e+00,-1.860891918622683550e-01,-3.284497860491055188e-01,-5.893276105825591138e-01,-9.061428428674103697e-02,4.786163471771237021e-01,1.564091138957480309e+00,9.506257143357127459e-02,-3.303429358894874324e-01,-6.142812424714156894e-01,-7.958785255186495711e-02,5.128438940899002763e-01,1.632319564386498056e+00,3.709641120504212908e-01,-2.011805989241360060e-01,-7.599239473929635391e-01,-2.318218712608298426e-02,1.169893531420059807e-01,1.616968914255033418e+00,2.896298307845224240e-01,-2.212832215457953278e-01,-8.178600939974763895e-01,-1.619457491760119966e-02,9.074850388377542210e-02,1.475743717050899795e+00,2.696756808429244257e-01,-3.132632551184026393e-01,-6.568689443004304129e-01,-6.965694426963794927e-02,4.192669136121158352e-02,1.475743717050899795e+00,2.696756808429244257e-01,-3.132632551184026948e-01,-7.224642074154645766e-01,1.107364568380985043e-01,9.128578153821451657e-01,1.547220399415443870e+00,-4.571175308588005803e-01,-1.184458156538588658e-01,-5.110152578552173974e-01,7.514201469143262646e-02,5.286612419603782254e-01,1.549587942683340325e+00,-7.098308242573629634e-02,-1.273485232174134674e-01,-5.418641654620754977e-01,7.753701792582788632e-02,5.584263883433198128e-01,1.494157388612676440e+00,2.107514938820266304e-01,-2.740636612772814340e-01,-6.361315313792565984e-01,7.019411717867139744e-02,1.435119878825595885e-01,1.523634289825820609e+00,-9.832262500691364704e-03,-2.204489068007173536e-01,-6.814275955149937669e-01,8.634722184039678172e-02,1.013059484906971008e-01,1.733232701882922777e+00,-5.216663577315307915e-02,-5.835630816960040573e-02,-5.052877960272101898e-01,7.743042509954199681e-02,1.087360472642204812e-01,1.733232701882922777e+00,-5.216663577315308609e-02,-5.835630816960035022e-02,-6.862787848537753588e-01,2.518997642931032968e-02,1.027429185675841739e+00,1.650846155547031735e+00,3.040308297812143734e-01,1.674392940744235114e-01,-6.681091316426263083e-01,2.563476052138655842e-02,1.054988135143055894e+00,1.674130571526828426e+00,3.097005857991753652e-01,1.193104524850366055e-01,-6.572406289023924320e-01,2.341315662334312112e-02,1.085935395660826197e+00,1.728517561520092727e+00,3.177983387704925722e-01,7.144631042269068699e-02,-6.524356616305209133e-01,1.797337598194453934e-02,1.120555072154586940e+00,1.785308725074913561e+00,3.264760302284589466e-01,3.236127890907543325e-02,-6.539994774132819044e-01,1.168408229561195000e-02,1.150530235527608580e+00,1.831615167632981933e+00,3.360668397294995224e-01,-3.619587923977308792e-03,-6.789015100836639505e-01,3.865790011803840742e-02,1.071538224250811355e+00,1.864638548650265681e+00,3.458559225398695203e-01,-3.664020631933530975e-02,-8.519555614198113247e-01,5.207472635580051579e-03,1.146780269705948596e+00,1.881498777622867102e+00,6.715064692810865932e-01,1.172916042742577214e-01,-5.714694612160897691e-01,-5.158310787028289046e-03,1.073230939669458595e+00,1.876004777807277701e+00,3.846095519818842345e-01,-2.867348592451007122e-02,-5.830057210619048469e-01,-2.327018791918915863e-01,1.355856747173727950e+00,9.149083863175739850e-01,-5.758367161102410231e-02,-6.174022825105899281e-01,-6.605992781117335788e-01,-3.893448748520659808e-01,1.116422339052391743e+00,3.350936965032262904e-01,-1.097759711401090854e+00,8.067343902030622571e-01,-6.601966932776298647e-01,-4.188397794925955986e-01,1.119681667830769944e+00,2.478062972699876798e-01,4.311218250655241002e-01,1.242297472689438909e+00,-4.508841706014959372e-01,-5.181195826178369712e-01,1.083081540605511206e+00,2.478062972699877076e-01,4.311218250655241002e-01,1.242297472689438909e+00,-5.381673175466001879e-01,8.811125102864088288e-02,1.447593283771305250e+00,-3.035098666014278912e+00,-5.053827097912418909e-01,3.567383562278855780e-01,-6.399669608698377310e-01,3.653736479376838431e-01,1.473069151901104989e+00,-2.867353895832181809e+00,-1.488071196604641433e-01,-1.069452417912887476e+00,-6.404150432024927619e-01,3.774569927268703884e-01,1.500171304939506678e+00,-2.245557925358493190e+00,1.307321663819974500e+00,-1.032315708666462356e-01,-4.451337828144490416e-01,4.935813919295584107e-01,1.558378985030802966e+00,-2.245557925358493190e+00,1.307321663819974500e+00,-1.032315708666462356e-01
|
||||
1.633333329999999917e+00,-6.088093700000000164e-01,4.201471999999999846e-02,9.505999000000000532e-01,1.631683825932565002e+00,3.135387720421051183e-01,1.967043408209869781e-01,-6.048097209909342187e-01,4.386798792978208184e-02,9.313484192709502452e-01,1.631683825932565002e+00,3.135387720421051183e-01,1.967043408209869781e-01,-6.808537890606980447e-01,-5.333443878017010004e-02,9.047496038160230958e-01,1.562429207335930936e+00,-1.786869383344303619e-01,-3.048543227647164677e-01,-5.822768988942575996e-01,-8.818233276793749353e-02,4.800014816262451744e-01,1.562516367494610980e+00,1.055315128279441794e-01,-3.072137032184667493e-01,-6.070727849948092114e-01,-7.780943393503181316e-02,5.145130821402954524e-01,1.632465269581949929e+00,3.818211297118598302e-01,-1.774312979191581541e-01,-7.582228746759468452e-01,-2.406064473002456766e-02,1.203571076499444503e-01,1.619222092222087461e+00,3.134720538398722556e-01,-1.945216557259417389e-01,-8.169086583677120927e-01,-1.841502811030232625e-02,9.549525367612801685e-02,1.456110415755139664e+00,2.898863919989002058e-01,-2.996698989424096959e-01,-6.561853964669925876e-01,-6.941945989400184758e-02,4.327911040689300104e-02,1.456110415755139886e+00,2.898863919989002058e-01,-2.996698989424097515e-01,-7.103975727350887448e-01,1.109757650263220041e-01,9.144291743787180682e-01,1.550574837915503990e+00,-4.568040461720672685e-01,-1.268640587224075245e-01,-4.977001579490767380e-01,7.491544052900250827e-02,5.322728104014402550e-01,1.552518587253450599e+00,-1.192711163416214221e-01,-1.336092946517583036e-01,-5.306171855913991431e-01,7.772706190142159022e-02,5.602749836560076968e-01,1.507762156224886629e+00,1.598998515030084500e-01,-2.712417423108411940e-01,-6.029485830340182151e-01,7.001829086337107988e-02,1.409863504078129326e-01,1.532395503080387966e+00,-4.121874023293570916e-02,-2.248738979500022606e-01,-6.467793195863313915e-01,8.642779485473647827e-02,9.735607777987725919e-02,1.710588423738745423e+00,-7.705554039845069481e-02,-8.339480200643192842e-02,-4.711576985160961240e-01,7.308331250672829571e-02,1.091423239602774542e-01,1.710588423738745423e+00,-7.705554039845070868e-02,-8.339480200643187291e-02,-6.740471238038172608e-01,2.565903071414575229e-02,1.029119556347194875e+00,1.646095226585057025e+00,3.173382943884830998e-01,1.507498101547554703e-01,-6.555310223478189036e-01,2.600432793846487595e-02,1.056447957484444533e+00,1.668878508441831832e+00,3.226072229396809710e-01,1.019714073864319837e-01,-6.443181808256975840e-01,2.380568370299382744e-02,1.087273814345899980e+00,1.723024784443616397e+00,3.303406957496460850e-01,5.344476233645635566e-02,-6.391791423976457276e-01,1.848951992695932120e-02,1.121864801207355100e+00,1.779720949461373491e+00,3.387569752796160683e-01,1.379975558915835614e-02,-6.404824377130057256e-01,1.238988541336624553e-02,1.151891534513195703e+00,1.825894342490521183e+00,3.481313340082479724e-01,-2.271328197206137767e-02,-6.658668118526112067e-01,3.941714468673633565e-02,1.073071696541378905e+00,1.858723226498080416e+00,3.577574711231227278e-01,-5.622866556799354515e-02,-8.320391655151936350e-01,1.009844771133069224e-02,1.145351748136322678e+00,1.872655959228741285e+00,6.697553533183577823e-01,8.986372216820348591e-02,-5.592049081003827027e-01,-6.468161035164447792e-03,1.073606734754336545e+00,1.870205469641712748e+00,3.971863978600505551e-01,-4.829131233141015223e-02,-5.712808682434700192e-01,-2.321935213108164420e-01,1.357589358636797527e+00,9.003911215524299516e-01,-2.186179671291128140e-02,-6.363367581620700264e-01,-6.608273204544972135e-01,-3.850091338358233584e-01,1.119859584644396167e+00,3.863545743245940800e-01,-1.081704609484518187e+00,7.498123685389914694e-01,-6.606742353032634130e-01,-4.145250640505740436e-01,1.122945216975473226e+00,2.790895010083365158e-01,4.348368447053402863e-01,1.243948587254331439e+00,-4.536313003757794782e-01,-5.159700322952966989e-01,1.079934494068507611e+00,2.790895010083365713e-01,4.348368447053402863e-01,1.243948587254331439e+00,-5.197144415053465138e-01,8.822638518017014708e-02,1.447138932931628430e+00,-3.033203902227954885e+00,-5.134281823610623574e-01,3.705597799058666930e-01,-6.257686815111467293e-01,3.638429156538433018e-01,1.473112963883715043e+00,-2.865560102555069655e+00,-1.287842030107090308e-01,-1.119223163641293040e+00,-6.254237173820278439e-01,3.754222819120673904e-01,1.500435737813088810e+00,-2.175961881888363258e+00,1.316650941508840988e+00,-8.547346008180302379e-02,-4.242157695611046275e-01,4.806384797519258623e-01,1.559195368652256608e+00,-2.175961881888363258e+00,1.316650941508840988e+00,-8.547346008180302379e-02
|
||||
1.649999999999999911e+00,-5.950049299999999874e-01,4.220627999999999880e-02,9.518970700000000118e-01,1.623621281959085172e+00,3.293487951287060733e-01,1.852073250734212750e-01,-5.912611596372056022e-01,4.382214970553982569e-02,9.325728765358050065e-01,1.623621281959085172e+00,3.293487951287060733e-01,1.852073250734212750e-01,-6.685328092542621725e-01,-5.296278001173668204e-02,9.080722933674708619e-01,1.559032928466854706e+00,-1.682373906013675535e-01,-2.868530486685416658e-01,-5.740746175906573656e-01,-8.618158246135043665e-02,4.822244702239466552e-01,1.559118945204335027e+00,1.171720665085155266e-01,-2.901880532812338709e-01,-5.986081330615229401e-01,-7.624936794512789107e-02,5.170388825858517334e-01,1.630619064771801519e+00,3.939070909792867226e-01,-1.605688319740196657e-01,-7.554774279042565377e-01,-2.506829328794305672e-02,1.247803758450320988e-01,1.620777477737485706e+00,3.445632388140341118e-01,-1.730004045207880481e-01,-8.149963146145864368e-01,-2.049423510494167641e-02,1.017459213463826340e-01,1.444271783249410079e+00,3.190014340388215852e-01,-2.854700426855203421e-01,-6.550936275424482647e-01,-6.878533058316445292e-02,4.465787215811884564e-02,1.444271783249410079e+00,3.190014340388215852e-01,-2.854700426855203976e-01,-6.964776017826425081e-01,1.116994642316052611e-01,9.164273042172628170e-01,1.549299920892448723e+00,-4.570873108988093847e-01,-1.177817543058740923e-01,-4.824420664577324658e-01,7.691084730058264651e-02,5.359320814234398433e-01,1.551275824605542475e+00,-1.540409594949552763e-01,-1.242746248134634912e-01,-5.168225865674710429e-01,7.966412891696419973e-02,5.625784131253707132e-01,1.513778950676552215e+00,1.224880368012528226e-01,-2.562763915865194919e-01,-5.731845493651221979e-01,6.936367585643804512e-02,1.409014704377219984e-01,1.534932536337618281e+00,-6.050948298815939097e-02,-2.149491994505497716e-01,-6.163237006556319120e-01,8.525951810172592571e-02,9.640043895758271253e-02,1.665388533370236956e+00,-8.481813212996619500e-02,-1.094139247032349660e-01,-4.412090680024868261e-01,6.727808753614557269e-02,1.094954067340952186e-01,1.665388533370236956e+00,-8.481813212996619500e-02,-1.094139247032349105e-01,-6.592703190885282893e-01,2.726112626770258590e-02,1.031492369305188284e+00,1.637850886189066379e+00,3.326618886489894900e-01,1.385586396163762113e-01,-6.403693482172387874e-01,2.769589486376819107e-02,1.058554053534386918e+00,1.660656717273099714e+00,3.372874630263972828e-01,8.902742012790679227e-02,-6.287518215469261040e-01,2.565877733336852443e-02,1.089240791854770629e+00,1.715640530254574303e+00,3.444790159627989512e-01,3.973760260952464984e-02,-6.231953539513238605e-01,2.053871810270151838e-02,1.123796689997515585e+00,1.773347557436209643e+00,3.525435116459871843e-01,-5.462092458944945187e-04,-6.241597173253310427e-01,1.463098481737787858e-02,1.153874371196633941e+00,1.820310976025556693e+00,3.616588187180935221e-01,-3.765851812869697862e-02,-6.502416557085001214e-01,4.173025811318380879e-02,1.075306686267954781e+00,1.853636156463630114e+00,3.711215701415035984e-01,-7.172202797628543514e-02,-8.061991901547975736e-01,2.260764588627926786e-02,1.144662686483230107e+00,1.868227828113161904e+00,6.678096666516583069e-01,5.105078205928272744e-02,-5.442170315792425050e-01,-6.266260421687756821e-03,1.074371914254799387e+00,1.865476098351709799e+00,4.119551679041348891e-01,-6.366955376232950881e-02,-5.554931935418818689e-01,-2.300694432296579994e-01,1.359589654317944429e+00,8.745385908522496088e-01,1.524489573390163354e-02,-6.629972799528975891e-01,-6.597386860748301052e-01,-3.798552304806371849e-01,1.125958065696841315e+00,4.328915592649819066e-01,-1.053679428657420258e+00,6.904253454662346856e-01,-6.600233135410908947e-01,-4.093649251593302063e-01,1.129093604815384788e+00,3.160570846827315816e-01,4.479238574238866288e-01,1.241131780448769595e+00,-4.565761860072803935e-01,-5.147048514505327965e-01,1.078888555291016127e+00,3.160570846827315816e-01,4.479238574238866288e-01,1.241131780448769817e+00,-4.983380282900787828e-01,8.995118666602167079e-02,1.447152332582304135e+00,-3.039095124840067719e+00,-5.268499345378442333e-01,3.912195747828111636e-01,-6.096247180799849730e-01,3.636345977994244194e-01,1.471632674153512621e+00,-2.860280229935094454e+00,-1.139464658418047893e-01,-1.169660645521786391e+00,-6.086771003202777752e-01,3.747519068025639832e-01,1.499132531598567741e+00,-2.113922558226905224e+00,1.319270176392541183e+00,-7.520354034847544222e-02,-4.024233352879232339e-01,4.688890194427336455e-01,1.559177258296997826e+00,-2.113922558226905224e+00,1.319270176392541183e+00,-7.520354034847542835e-02
|
||||
1.666666669999999906e+00,-5.797295500000000379e-01,4.348389999999999894e-02,9.535794399999999449e-01,1.612828990054495204e+00,3.447945005106403671e-01,1.797350607417253499e-01,-5.762412069448382690e-01,4.484473842774169827e-02,9.341879241753063834e-01,1.612828990054495204e+00,3.447945005106403671e-01,1.797350607417253499e-01,-6.540088566772598311e-01,-5.209217148739311160e-02,9.119632266136250554e-01,1.554161229717546000e+00,-1.552995540045205569e-01,-2.747036741271735028e-01,-5.650358898559977305e-01,-8.471279340863209495e-02,4.848973327346731144e-01,1.554221965329048105e+00,1.298197911597632759e-01,-2.794227916747153984e-01,-5.892129860008630260e-01,-7.501767072240007883e-02,5.200293754527547385e-01,1.627122563249973508e+00,4.070514921885740600e-01,-1.505985540779412601e-01,-7.519250022478887185e-01,-2.609521505727310092e-02,1.298683737129861515e-01,1.621467348287962240e+00,3.795095098778884513e-01,-1.575610392132957005e-01,-8.122633450169687297e-01,-2.229133296520355995e-02,1.089203224800061598e-01,1.439618473404900900e+00,3.535688359137033610e-01,-2.721459415677940918e-01,-6.537281679929793921e-01,-6.789921494125110424e-02,4.609943946225557310e-02,1.439618473404900900e+00,3.535688359137033610e-01,-2.721459415677941474e-01,-6.815403320520981856e-01,1.127187943909586654e-01,9.185765241978709472e-01,1.544715307053993181e+00,-4.592536495872956426e-01,-9.660538558624660876e-02,-4.655540518649450288e-01,8.035421151231375569e-02,5.397430405728786962e-01,1.547032573556592405e+00,-1.803922828068288131e-01,-1.039043035322656794e-01,-5.010143999649050439e-01,8.267101876196383814e-02,5.653293474222309545e-01,1.514755739873092866e+00,9.369082942505145561e-02,-2.327734238781357934e-01,-5.451902001187619584e-01,6.864746735435958702e-02,1.423091908519522053e-01,1.532651497562615095e+00,-6.669417337384114797e-02,-1.964442888740342286e-01,-5.883629330156568971e-01,8.359504259904917967e-02,9.751308492669770456e-02,1.606787149473615672e+00,-7.869173730074061068e-02,-1.359771501684341466e-01,-4.137211083380583077e-01,6.084738782112873723e-02,1.094597108471027924e-01,1.606787149473615672e+00,-7.869173730074061068e-02,-1.359771501684340911e-01,-6.429534763577728906e-01,2.968701526758502768e-02,1.034209401142566653e+00,1.627201272546460631e+00,3.475883149758222102e-01,1.321255689437261516e-01,-6.236892429681897276e-01,3.038586127951950835e-02,1.061007660991635460e+00,1.650485726682339838e+00,3.516135449711625394e-01,8.156478841968352322e-02,-6.116673924458480016e-01,2.862691136487108962e-02,1.091555311383356042e+00,1.707218440162392881e+00,3.583509708349836842e-01,3.123755012143246412e-02,-6.056707171318888028e-01,2.375328519320884374e-02,1.126072638424657102e+00,1.766863513874901814e+00,3.661705065464961883e-01,-9.903267748041271606e-03,-6.062662492523464008e-01,1.802391401499520152e-02,1.156194051690105695e+00,1.815384784019181241e+00,3.751536914182673765e-01,-4.780865438210563784e-02,-6.331585969687829607e-01,4.521532400288462428e-02,1.077929771948915372e+00,1.849772645217076406e+00,3.845763856130141045e-01,-8.259596506549640726e-02,-7.761856401528608451e-01,4.088630344076471523e-02,1.144566626017335054e+00,1.865558435605858545e+00,6.666931023931740308e-01,2.276020923489138151e-04,-5.275491349759242610e-01,-4.820814708066022136e-03,1.075331751033997918e+00,1.862009625636881216e+00,4.276364382942015596e-01,-7.434802210373694931e-02,-5.370909417431857236e-01,-2.267636289688613749e-01,1.361597904484378230e+00,8.418741592788672179e-01,5.211987920414686698e-02,-6.933699040144069015e-01,-6.570340064242302658e-01,-3.737965555388853001e-01,1.133822568425739918e+00,4.766553341901508811e-01,-1.017209362834351705e+00,6.295306530998598937e-01,-6.578675923835338724e-01,-4.032780732214735209e-01,1.137121045038941736e+00,3.591163857614499411e-01,4.662284389448304034e-01,1.236892019204399951e+00,-4.592312360314975139e-01,-5.135475010522936312e-01,1.078879891276424363e+00,3.591163857614499411e-01,4.662284389448304589e-01,1.236892019204399951e+00,-4.757258404308998267e-01,9.291770207296383421e-02,1.447535730980491708e+00,-3.048476066347216573e+00,-5.431541251869808073e-01,4.105891863913302409e-01,-5.914160663543777119e-01,3.649705521026076482e-01,1.469663595630648745e+00,-2.852705539080916619e+00,-1.004118732100260925e-01,-1.223761348798127147e+00,-5.899458430181661051e-01,3.755998231025110545e-01,1.497332924132446896e+00,-2.051914401938757848e+00,1.318311999865777517e+00,-6.844313301780007019e-02,-3.791213376004348712e-01,4.576854095376973741e-01,1.559161438472509875e+00,-2.051914401938757848e+00,1.318311999865777517e+00,-6.844313301780005632e-02
|
|
@ -1,111 +0,0 @@
|
||||
Coordinates
|
||||
version=1
|
||||
nRows=100
|
||||
nColumns=63
|
||||
inDegrees=yes
|
||||
|
||||
Units are S.I. units (second, meters, Newtons, ...)
|
||||
If the header above contains a line with 'inDegrees', this indicates whether rotational values are in degrees (yes) or radians (no).
|
||||
|
||||
endheader
|
||||
time pelvis_tilt pelvis_list pelvis_rotation pelvis_tx pelvis_ty pelvis_tz hip_flexion_r hip_adduction_r hip_rotation_r knee_angle_r knee_angle_r_beta ankle_angle_r subtalar_angle_r mtp_angle_r hip_flexion_l hip_adduction_l hip_rotation_l knee_angle_l knee_angle_l_beta ankle_angle_l subtalar_angle_l mtp_angle_l L5_S1_Flex_Ext L5_S1_Lat_Bending L5_S1_axial_rotation L4_L5_Flex_Ext L4_L5_Lat_Bending L4_L5_axial_rotation L3_L4_Flex_Ext L3_L4_Lat_Bending L3_L4_axial_rotation L2_L3_Flex_Ext L2_L3_Lat_Bending L2_L3_axial_rotation L1_L2_Flex_Ext L1_L2_Lat_Bending L1_L2_axial_rotation L1_T12_Flex_Ext L1_T12_Lat_Bending L1_T12_axial_rotation Abs_r3 Abs_r2 Abs_r1 Abs_t1 Abs_t2 neck_flexion neck_bending neck_rotation arm_flex_r arm_add_r arm_rot_r elbow_flex_r pro_sup_r wrist_flex_r wrist_dev_r arm_flex_l arm_add_l arm_rot_l elbow_flex_l pro_sup_l wrist_flex_l wrist_dev_l
|
||||
0.01666667 0.03149947 4.33024803 -75.44503024 0.03162683 0.96918196 -1.35246041 0.04696862 5.19361067 -37.08274815 16.94307591 0.29571246 17.44978726 -8.07402490 0.00000000 28.71246175 15.20191456 28.39456379 12.19857854 0.21290536 -21.94723845 -18.33820166 -0.00000000 0.00190057 0.38184989 -1.44344601 0.00352955 0.50786035 -1.53366138 0.00312245 0.92842981 -1.53366138 0.00217216 0.92842981 -1.26301526 0.00176487 0.77866829 -1.17279988 0.00108599 0.59148547 -1.08258451 0.01357559 4.31956228 -8.02801366 0.00000000 0.00000000 3.22109695 -0.29951629 -14.26163142 -23.73580087 -23.18367861 -27.75567387 55.85467135 89.99559364 0.00000000 0.00000000 -8.53577339 -28.64648261 25.98153146 31.43412732 89.99559364 0.00000000 0.00000000
|
||||
0.03333333 -0.48540525 3.40929823 -77.97054301 0.02657215 0.96969212 -1.34330134 -1.47454144 6.34036655 -33.86050985 16.50438916 0.28805593 16.76336525 -8.25836013 0.00000000 28.54765748 13.38413616 23.44066251 14.66694745 0.25598652 -20.16157169 -16.19839417 0.00000000 0.00131594 0.36090059 -1.52645158 0.00244383 0.47999779 -1.62185480 0.00216196 0.87749371 -1.62185480 0.00150399 0.87749371 -1.33564513 0.00122198 0.73594849 -1.24024191 0.00075193 0.55903502 -1.14483869 0.00939962 4.08257971 -8.48966575 0.00000000 0.00000000 1.53624327 -0.04671504 -8.98961871 -22.51440035 -24.98801997 -24.36227903 57.85073589 89.99559364 0.00000000 0.00000000 -9.00035992 -28.88358091 25.46304684 30.08752141 89.99559364 0.00000000 0.00000000
|
||||
0.05000000 -1.09605821 2.61041075 -79.93821572 0.02201845 0.97032712 -1.33425582 -2.98055130 7.51735550 -30.91644987 15.93685442 0.27815058 15.93527610 -8.89323627 0.00000000 28.76504497 11.14323763 15.56008580 17.36778090 0.30312496 -17.15346801 -8.85379264 0.00000000 0.00026607 0.34084191 -1.54968103 0.00049412 0.45331975 -1.64653609 0.00043713 0.82872303 -1.64653609 0.00030409 0.82872303 -1.35597090 0.00024708 0.69504483 -1.25911583 0.00015203 0.52796413 -1.16226077 0.00190053 3.85567191 -8.61886097 0.00000000 0.00000000 0.22578243 0.08034655 -5.19502387 -21.64156254 -26.56568475 -21.70623374 59.76493430 89.99559364 0.00000000 0.00000000 -8.89905136 -29.13263584 25.11785711 28.66507734 89.99559364 0.00000000 0.00000000
|
||||
0.06666667 -1.66644515 2.10099111 -81.36683275 0.01803729 0.97107076 -1.32470406 -4.26667535 8.48851615 -28.64884460 15.43773989 0.26943939 15.27654580 -9.28782332 0.00000000 29.13585694 8.76737892 7.44337049 19.94378194 0.34808466 -14.91630816 -0.76312404 0.00000000 -0.00039367 0.30017570 -1.38174527 -0.00073109 0.39923368 -1.46810434 -0.00064676 0.72984720 -1.46810434 -0.00044993 0.72984720 -1.20902711 -0.00036556 0.61211829 -1.12266803 -0.00022494 0.46497216 -1.03630895 -0.00281195 3.39564756 -7.68485264 0.00000000 0.00000000 -0.53144174 0.13635592 -4.08357186 -21.70908653 -27.43926534 -21.05842244 61.57415648 89.99559364 0.00000000 0.00000000 -7.83212271 -29.49001379 25.24142778 27.40594240 89.99559364 0.00000000 0.00000000
|
||||
0.08333333 -2.25896368 1.96589519 -82.25181327 0.01495338 0.97184901 -1.31421033 -5.20540931 9.32691221 -27.24603269 15.02140985 0.26217306 14.72578453 -9.36133390 0.00000000 29.43942004 6.88947079 2.46788188 21.96080652 0.38328838 -13.75215622 3.73545040 0.00000000 0.00010122 0.24664493 -1.01402045 0.00018798 0.32803776 -1.07739673 0.00016630 0.59969248 -1.07739673 0.00011569 0.59969248 -0.88726790 0.00009400 0.50295834 -0.82389162 0.00005784 0.38205299 -0.76051534 0.00072303 2.79009676 -5.63967756 0.00000000 0.00000000 -0.80936690 0.18269304 -5.32175883 -22.95194467 -27.63602276 -22.59614160 63.39536914 89.99559364 0.00000000 0.00000000 -6.00525993 -29.80803581 25.21557143 26.71858755 89.99559364 0.00000000 0.00000000
|
||||
0.10000000 -2.84077619 2.15670351 -82.67101771 0.01266003 0.97262945 -1.30259092 -5.69496828 9.97719608 -26.64696901 14.99504050 0.26171283 14.23233517 -9.04815103 0.00000000 29.69459311 5.77092835 0.77123084 23.33551948 0.40728165 -12.81466050 4.82956932 0.00000000 -0.00012903 0.17728129 -0.57843341 -0.00023963 0.23578412 -0.61458550 -0.00021199 0.43104173 -0.61458550 -0.00014747 0.43104173 -0.50612924 -0.00011982 0.36151201 -0.46997715 -0.00007373 0.27460872 -0.43382506 -0.00092166 2.00544143 -3.21707312 0.00000000 0.00000000 -0.78302876 0.21791943 -7.53232953 -24.88728308 -27.38276960 -25.45034976 65.35827445 89.99559364 0.00000000 0.00000000 -4.14399192 -30.01710662 24.30045718 26.74379113 89.99559364 0.00000000 0.00000000
|
||||
0.11666667 -3.26865399 2.55339989 -82.69182449 0.01050963 0.97350671 -1.28996794 -5.74058002 10.32378282 -26.89611184 15.54923817 0.27138540 13.33683051 -8.83655488 0.00000000 29.84951074 5.34996032 1.29885914 24.11388824 0.42086675 -11.74815955 4.60330655 0.00000000 0.00333714 0.06599024 -0.32652153 0.00619741 0.08776702 -0.34692913 0.00548259 0.16044867 -0.34692913 0.00381402 0.16044867 -0.28570634 0.00309887 0.13456730 -0.26529874 0.00190684 0.10221888 -0.24489115 0.02383688 0.74649479 -1.81601480 0.00000000 0.00000000 -0.77747756 0.22312894 -7.88329795 -26.21580338 -27.68688336 -26.49451314 66.94967780 89.99559364 0.00000000 0.00000000 -3.27566877 -30.70543668 23.71393441 27.67195691 89.99559364 0.00000000 0.00000000
|
||||
0.13333333 -4.14285450 3.01332660 -82.81542112 0.00862674 0.97392012 -1.27687350 -5.23056456 10.69465869 -27.56990996 17.27727226 0.30154529 13.16029102 -7.38566294 0.00000000 29.98746642 5.20298292 4.94822874 24.73035597 0.43162614 -10.20413966 0.31657572 0.00000000 -0.00041352 0.00540024 -0.25668553 -0.00076794 0.00718232 -0.27272837 -0.00067937 0.01313015 -0.27272837 -0.00047261 0.01313015 -0.22459984 -0.00038399 0.01101217 -0.20855699 -0.00023628 0.00836497 -0.19251415 -0.00295370 0.06108861 -1.42760790 0.00000000 0.00000000 -0.28219326 0.22445737 -11.57431411 -26.85531074 -27.96349974 -28.45797601 69.57061293 89.99559364 0.00000000 0.00000000 -5.13518111 -29.96495023 12.90284382 30.11702106 89.99559364 0.00000000 0.00000000
|
||||
0.15000000 -4.78131974 3.32621804 -82.93905541 0.00568827 0.97449835 -1.26404441 -4.24145515 10.61199180 -28.00464890 20.20708040 0.35268009 12.42626300 -7.30978870 0.00000000 29.91273596 4.92522885 7.70680773 25.28173573 0.44124953 -7.75858869 -1.55310455 0.00000000 -0.00075515 -0.09887377 -0.37386742 -0.00140240 -0.13150212 -0.39723413 -0.00124064 -0.24040170 -0.39723413 -0.00086307 -0.24040170 -0.32713399 -0.00070124 -0.20162340 -0.30376728 -0.00043149 -0.15315548 -0.28040056 -0.00539399 -1.11847991 -2.07933842 0.00000000 0.00000000 -0.30991889 0.22894146 -11.28715206 -26.47381193 -29.11921772 -28.13416861 71.90395107 89.99559364 0.00000000 0.00000000 -6.46628987 -31.11468843 11.97710537 31.60669828 89.99559364 0.00000000 0.00000000
|
||||
0.16666667 -5.47007587 3.40513403 -82.05909516 0.00393689 0.97504574 -1.25216160 -3.13083653 10.36115266 -29.92896676 23.56913838 0.41135907 11.14249860 -6.60757807 0.00000000 29.34745627 6.16848271 15.96600338 25.73090058 0.44908893 -7.46498629 -11.51669151 0.00000000 -0.00196329 -0.20155561 -0.84655102 -0.00364602 -0.26806896 -0.89946046 -0.00322548 -0.49006231 -0.89946046 -0.00224384 -0.49006231 -0.74073214 -0.00182311 -0.41101220 -0.68782270 -0.00112182 -0.31220964 -0.63491327 -0.01402355 -2.28003739 -4.70826281 0.00000000 0.00000000 -0.20386623 0.18534943 -8.67559247 -24.80608500 -30.95324514 -26.75441061 73.98614555 89.99559364 0.00000000 0.00000000 -9.03163110 -31.57596885 6.36404373 33.25609142 89.99559364 0.00000000 0.00000000
|
||||
0.18333333 -6.09968830 3.37547861 -81.39633599 0.00116781 0.97534089 -1.24170284 -1.74107509 9.78670244 -31.44972460 27.53648729 0.48060237 9.87225040 -5.95119930 0.00000000 29.01719511 6.41923707 20.25788004 26.67592346 0.46558270 -5.72954824 -16.22028575 0.00000000 -0.00047151 -0.31111797 -1.20574355 -0.00087564 -0.41378690 -1.28110252 -0.00077464 -0.75645223 -1.28110252 -0.00053889 -0.75645223 -1.05502561 -0.00043784 -0.63443176 -0.97966663 -0.00026942 -0.48192174 -0.90430766 -0.00336793 -3.51942870 -6.70598390 0.00000000 0.00000000 -0.20613419 0.16148815 -6.36800459 -23.31131771 -32.57325720 -26.51796559 76.30318127 89.99559364 0.00000000 0.00000000 -10.05075346 -32.55950430 4.04264507 33.44729408 89.99559364 0.00000000 0.00000000
|
||||
0.20000000 -6.77850054 3.34768481 -80.64223074 -0.00197129 0.97527979 -1.23236448 -0.39352090 9.25998124 -32.87091424 31.09352577 0.54268440 8.45312287 -5.17311710 0.00000000 29.13723036 6.16595087 22.26538174 28.22106362 0.49255048 -3.11702590 -17.88865794 0.00000000 0.00047467 -0.42007202 -1.49123377 0.00088151 -0.55869578 -1.58443588 0.00077984 -1.02136310 -1.58443588 0.00054250 -1.02136310 -1.30482955 0.00044078 -0.85661085 -1.21162744 0.00027123 -0.65069155 -1.11842533 0.00339053 -4.75193865 -8.29379485 0.00000000 0.00000000 -0.21914364 0.14510724 -4.80176197 -22.05266253 -33.97696781 -27.39320413 78.45175872 89.99559364 0.00000000 0.00000000 -9.93999416 -34.07835806 3.97037956 33.41015905 89.99559364 0.00000000 0.00000000
|
||||
0.21666667 -7.62274373 3.42952295 -80.16218483 -0.00543940 0.97468516 -1.22349676 0.97355013 8.82839094 -33.91858176 34.28699572 0.59842097 7.48321252 -4.10399886 0.00000000 29.70341556 5.45059043 22.91348866 30.26537747 0.52823049 -0.45861656 -18.44057907 0.00000000 0.00008335 -0.51661162 -1.68576955 0.00015479 -0.68709346 -1.79113015 0.00013694 -1.25608950 -1.79113015 0.00009526 -1.25608950 -1.47504836 0.00007740 -1.05347442 -1.36968776 0.00004763 -0.80023140 -1.26432717 0.00059536 -5.84401398 -9.37574453 0.00000000 0.00000000 -0.21530089 0.13256451 -3.74989063 -20.89256119 -35.38123814 -28.91967611 80.23341728 89.99559364 0.00000000 0.00000000 -9.23695876 -35.61543221 4.28382293 33.48336520 89.99559364 0.00000000 0.00000000
|
||||
0.23333333 -8.84463537 3.64746677 -79.91808332 -0.00914617 0.97358476 -1.21461061 2.58607426 8.60930894 -34.66677803 37.42279927 0.65315106 6.98969365 -3.18686028 0.00000000 30.55305717 4.23430082 23.19807670 32.47677739 0.56682670 1.92285331 -18.73556164 0.00000000 0.00142785 -0.58338319 -1.88609052 0.00265165 -0.77589964 -2.00397118 0.00234581 -1.41843788 -2.00397118 0.00163189 -1.41843788 -1.65032920 0.00132590 -1.18963500 -1.53244855 0.00081587 -0.90366056 -1.41456789 0.01019896 -6.59934729 -10.48986963 0.00000000 0.00000000 -0.21524907 0.12630052 -3.22350798 -19.16492483 -36.92900060 -30.20555450 81.23380627 89.99559364 0.00000000 0.00000000 -8.80693991 -37.07030070 4.30567851 34.00380686 89.99559364 0.00000000 0.00000000
|
||||
0.25000000 -10.84327171 3.93889732 -79.29369653 -0.01186637 0.97171208 -1.20566289 4.39473779 8.73333512 -36.26273345 40.50511970 0.70694770 7.25262839 -1.41968923 0.00000000 31.62296873 2.54101744 24.19643156 34.71869369 0.60595552 4.29479723 -18.96898865 0.00000000 0.00217992 -0.56190256 -2.29519936 0.00404832 -0.74733041 -2.43864932 0.00358139 -1.36620989 -2.43864932 0.00249143 -1.36620989 -2.00829944 0.00202427 -1.14583170 -1.86484948 0.00124560 -0.87038707 -1.72139952 0.01557093 -6.35635415 -12.76521030 0.00000000 0.00000000 0.08006717 0.09040154 -1.51757873 -16.15791777 -38.97699017 -30.43616441 81.74033356 89.99559364 0.00000000 0.00000000 -9.63870694 -38.03975985 3.17452297 35.16502840 89.99559364 0.00000000 0.00000000
|
||||
0.26666667 -13.32851362 4.28970956 -79.17795870 -0.01491449 0.96967137 -1.19687227 6.69868070 9.03198299 -37.24928930 43.88377215 0.76591631 7.75558096 -1.09193089 0.00000000 32.67014058 0.13101195 25.13348046 36.64808696 0.63962978 6.75248580 -19.19456501 0.00000000 0.00554060 -0.48088391 -2.69247965 0.01028946 -0.63957561 -2.86075963 0.00910266 -1.16922115 -2.86075963 0.00633236 -1.16922115 -2.35591970 0.00514500 -0.98061848 -2.18763972 0.00316590 -0.74488918 -2.01935974 0.03957598 -5.43985501 -14.97476409 0.00000000 0.00000000 0.15473653 0.08180576 -1.01770101 -12.00554680 -41.18763503 -29.57212166 81.80822200 89.99559364 0.00000000 0.00000000 -11.29095548 -38.58631998 1.53058615 36.36782433 89.99559364 0.00000000 0.00000000
|
||||
0.28333333 -15.97990817 4.67283146 -78.71960268 -0.01716625 0.96778666 -1.18811698 9.09892727 8.91234063 -39.08397222 47.22412724 0.82421651 8.47856126 -0.83787441 0.00000000 33.49707323 -2.25297992 26.78972693 37.94319609 0.66223370 9.12622866 -19.36260749 0.00000000 0.00696678 -0.37482161 -3.20289034 0.01293801 -0.49851275 -3.40307098 0.01144573 -0.91134127 -3.40307098 0.00796234 -0.91134127 -2.80252905 0.00646935 -0.76433624 -2.60234840 0.00398082 -0.58059868 -2.40216775 0.04976303 -4.24005707 -17.81351519 0.00000000 0.00000000 0.40342525 0.05434883 0.72669094 -6.88525291 -43.02819754 -27.77420593 81.42576466 89.99559364 0.00000000 0.00000000 -13.94171251 -37.47661872 -5.84143060 37.28194146 89.99559364 0.00000000 0.00000000
|
||||
0.30000000 -18.57096818 5.02924362 -78.46435402 -0.01939928 0.96632941 -1.17941487 11.35049989 8.33607815 -41.01145219 50.27071991 0.87738958 9.34394669 -0.74890809 0.00000000 34.18401561 -4.62752103 28.51562851 38.96715754 0.68010520 11.31849344 -19.48225934 0.00000000 0.00822693 -0.25525812 -3.54802764 0.01527822 -0.33949330 -3.76977937 0.01351602 -0.62063459 -3.76977937 0.00940255 -0.62063459 -3.10452419 0.00763952 -0.52052236 -2.88277246 0.00470086 -0.39539483 -2.66102073 0.05876410 -2.88753090 -19.73306533 0.00000000 0.00000000 0.21089480 0.05004092 0.85351740 -2.95251737 -44.51650433 -26.70150447 81.56591326 89.99559364 0.00000000 0.00000000 -15.14914514 -37.30071648 -7.21805684 36.75335071 89.99559364 0.00000000 0.00000000
|
||||
0.31666667 -20.81037621 5.33975023 -78.78499797 -0.02192346 0.96561338 -1.17049024 13.21601979 7.21926461 -42.49081956 52.79365586 0.92142312 10.33063770 -0.02085453 0.00000000 34.70782665 -6.91206517 29.63744464 39.93008635 0.69691148 13.24205099 -19.55737009 0.00000000 0.00928681 -0.15433000 -3.69414735 0.01724653 -0.20525890 -3.92503156 0.01525730 -0.37523797 -3.92503156 0.01061389 -0.37523797 -3.23237893 0.00862373 -0.31470974 -3.00149472 0.00530648 -0.23905717 -2.77061051 0.06633473 -1.74581186 -20.54573932 0.00000000 0.00000000 -0.08573175 0.04484116 0.91618848 -0.59418620 -45.60863760 -26.74144507 82.46516126 89.99559364 0.00000000 0.00000000 -15.52059457 -37.18830404 -7.34282003 35.30345315 89.99559364 0.00000000 0.00000000
|
||||
0.33333333 -22.48357112 5.55943006 -79.57052153 -0.02458331 0.96556890 -1.16104711 14.57814031 5.50146378 -43.41457824 54.65959946 0.95398998 11.36484653 1.95562991 0.00000000 35.10280440 -8.85096219 29.95272051 41.10968737 0.71749940 14.65527657 -19.60250109 0.00000000 0.01062144 -0.10184606 -3.68545188 0.01972508 -0.13545526 -3.91579262 0.01744996 -0.24762851 -3.91579262 0.01213924 -0.24762851 -3.22477039 0.00986307 -0.20768449 -2.99442965 0.00606909 -0.15775955 -2.76408891 0.07586789 -1.15210302 -20.49737770 0.00000000 0.00000000 -1.10867620 0.01885727 1.34477361 -0.08537155 -46.14099314 -28.49854644 84.13294107 89.99559364 0.00000000 0.00000000 -15.29938092 -37.58776004 -4.95816175 33.35900270 89.99559364 0.00000000 0.00000000
|
||||
0.35000000 -23.66439662 5.70293600 -81.44807426 -0.02801654 0.96621944 -1.15073742 15.65110271 3.62861547 -42.89764853 55.74830576 0.97299149 12.05168932 4.85231783 0.00000000 35.33767947 -10.86984869 28.89805123 42.81675394 0.74729333 15.68618404 -19.62732808 0.00000000 0.01027148 -0.09172323 -3.41895549 0.01907517 -0.12199189 -3.63264021 0.01687502 -0.22301586 -3.63264021 0.01173928 -0.22301586 -2.99158606 0.00953810 -0.18704201 -2.77790134 0.00586912 -0.14207928 -2.56421662 0.07336816 -1.03759151 -19.01520476 0.00000000 0.00000000 -1.46789273 0.00598582 1.56437401 -1.26905043 -46.21816740 -32.15863294 86.15826823 89.99559364 0.00000000 0.00000000 -14.95490675 -37.72613829 -3.40046136 31.67885234 89.99559364 0.00000000 0.00000000
|
||||
0.36666667 -24.11161376 5.78866536 -84.17690354 -0.03255916 0.96757756 -1.13974935 16.70205390 1.56673634 -40.97493639 56.07880752 0.97875983 12.06385332 7.24042737 0.00000000 35.27125997 -12.69886379 26.62927578 44.89201524 0.78351347 16.14309932 -19.63532473 0.00000000 0.01069873 -0.16450516 -2.83191954 0.01986862 -0.21879187 -3.00891451 0.01757695 -0.39997786 -3.00891451 0.01222758 -0.39997786 -2.47792959 0.00993484 -0.33545893 -2.30093462 0.00611326 -0.25481850 -2.12393965 0.07641999 -1.86091531 -15.75028688 0.00000000 0.00000000 -2.93391290 -0.04926945 1.10077844 -4.85627319 -45.30904306 -39.01475313 88.69312549 89.99559364 0.00000000 0.00000000 -12.65965858 -40.37384144 10.63160810 29.73101919 89.99559364 0.00000000 0.00000000
|
||||
0.38333333 -24.14929383 5.85766960 -87.89153491 -0.03795035 0.96913263 -1.12851710 17.85796191 -0.27965876 -37.70496839 55.63840275 0.97107332 11.61795771 9.65033259 0.00000000 34.85994025 -14.65458643 23.43446961 47.28707852 0.82531521 16.18935462 -19.64211568 0.00000000 0.01054755 -0.27935230 -2.00115602 0.01958785 -0.37153856 -2.12622827 0.01732857 -0.67921718 -2.12622827 0.01205479 -0.67921718 -1.75101152 0.00979445 -0.56965521 -1.62593927 0.00602687 -0.43271671 -1.50086701 0.07534009 -3.16008907 -11.12982943 0.00000000 0.00000000 -3.20960765 -0.05447051 0.16053389 -9.04088055 -44.17405266 -46.32250056 90.63179297 89.99559364 0.00000000 0.00000000 -10.67093054 -41.77735337 18.19732414 29.19228300 89.99559364 0.00000000 0.00000000
|
||||
0.40000000 -23.81232750 5.83707178 -91.99886981 -0.04375278 0.97063272 -1.11786381 19.10058129 -1.99657599 -33.76224870 54.62134471 0.95332231 10.72306815 11.83098520 0.00000000 33.96194784 -16.49234196 19.79152624 49.50514142 0.86402771 15.94838154 -19.64246915 0.00000000 0.00962248 -0.43621966 -1.04439020 0.01786991 -0.58017215 -1.10966459 0.01580877 -1.06062449 -1.10966459 0.01099753 -1.06062449 -0.91384143 0.00893543 -0.88953914 -0.84856704 0.00549828 -0.67570426 -0.78329265 0.06873241 -4.93460406 -5.80858498 0.00000000 0.00000000 -3.15239669 -0.03430281 -1.04988027 -13.28208886 -42.90630500 -53.12170459 91.85532465 89.99559364 0.00000000 0.00000000 -8.80484644 -42.61107719 21.00326092 29.24561050 89.99559364 0.00000000 0.00000000
|
||||
0.41666667 -23.47918584 5.77312858 -95.78780168 -0.04928361 0.97154947 -1.10831516 20.37829642 -3.41801296 -29.92760024 53.07561434 0.92634422 9.34889740 13.76955566 0.00000000 32.82989455 -18.15310390 16.45195919 51.30672376 0.89547126 15.70763497 -19.63313078 0.00000000 0.00949067 -0.58883850 -0.11811356 0.01762513 -0.78315521 -0.12549566 0.01559223 -1.43170194 -0.12549566 0.01084689 -1.43170194 -0.10334936 0.00881304 -1.20075948 -0.09596727 0.00542297 -0.91211084 -0.08858517 0.06779093 -6.66105891 -0.65691217 0.00000000 0.00000000 -3.03070144 -0.03171088 -1.19838817 -17.40645098 -41.87308308 -58.83497637 92.62156729 89.99559364 0.00000000 0.00000000 -7.26755420 -42.93606249 19.68537718 29.79189919 89.99559364 0.00000000 0.00000000
|
||||
0.43333333 -23.30321305 5.69988449 -98.84961460 -0.05421606 0.97200310 -1.09992664 21.68471287 -4.49347445 -26.39794212 51.14364247 0.89262495 7.46109512 14.63866853 0.00000000 31.59797714 -19.60034835 13.73042552 52.48167479 0.91597802 15.55469661 -19.60901211 0.00000000 0.00726459 -0.72577802 0.70848434 0.01349107 -0.96528476 0.75276461 0.01193499 -1.76465667 0.75276461 0.00830270 -1.76465667 0.61992380 0.00674590 -1.48000653 0.57564353 0.00415099 -1.12423015 0.53136326 0.05189022 -8.21014608 3.94037735 0.00000000 0.00000000 -2.72019057 -0.02139645 -2.26893496 -21.49145096 -40.97077228 -63.77632278 92.94641061 89.99559364 0.00000000 0.00000000 -5.40076257 -43.02503108 17.43907978 30.01570129 89.99559364 0.00000000 0.00000000
|
||||
0.45000000 -23.46135162 5.64979876 -100.35806244 -0.05768486 0.97174573 -1.09161338 22.51364829 -5.56927853 -24.32129325 48.75648387 0.85096118 5.54943738 15.44439465 0.00000000 30.65833845 -20.56922775 12.48413642 53.10216549 0.92680763 15.70586986 -19.57696664 0.00000000 0.00402763 -0.82808557 1.26879265 0.00747971 -1.10135381 1.34809219 0.00661699 -2.01340727 1.34809219 0.00460318 -2.01340727 1.11019357 0.00374006 -1.68863210 1.03089403 0.00230139 -1.28270456 0.95159449 0.02876896 -9.36746964 7.05664408 0.00000000 0.00000000 -2.41389054 -0.00968214 -3.77477936 -25.47789174 -40.16682517 -68.02385773 93.03414715 89.99559364 0.00000000 0.00000000 -3.69605757 -43.00693192 14.69723220 30.53434310 89.99559364 0.00000000 0.00000000
|
||||
0.46666667 -24.02366878 5.62568970 -100.05705485 -0.05917803 0.97080515 -1.08256547 22.64737835 -6.78049049 -23.99186182 46.04088449 0.80356502 3.98815035 16.19124957 0.00000000 30.20935552 -21.01140534 13.02864478 53.30996780 0.93043446 16.14402961 -19.54526049 0.00000000 0.00364730 -0.88484886 1.51274093 0.00677340 -1.17684898 1.60728723 0.00599214 -2.15142151 1.60728723 0.00416850 -2.15142151 1.32364831 0.00338688 -1.80438379 1.22910200 0.00208407 -1.37063088 1.13455569 0.02605228 -10.00958725 8.41341121 0.00000000 0.00000000 -2.24552041 0.01208392 -5.67983945 -29.34974263 -39.44841924 -71.75634930 92.84842810 89.99559364 0.00000000 0.00000000 -2.17724320 -42.83454370 11.68758668 31.17906377 89.99559364 0.00000000 0.00000000
|
||||
0.48333333 -25.01976915 5.60984456 -97.92005390 -0.05862208 0.96921446 -1.07281070 22.00869999 -8.13209996 -25.48277496 43.23318849 0.75456149 2.89477187 17.01184566 0.00000000 30.46067074 -21.00652834 15.37124341 53.35114675 0.93115317 16.72491096 -19.52634410 0.00000000 0.00297474 -0.89773077 1.36269984 0.00552438 -1.19398193 1.44786858 0.00488719 -2.18274260 1.44786858 0.00339983 -2.18274260 1.19236236 0.00276234 -1.83065259 1.10719362 0.00169976 -1.39058497 1.02202488 0.02124824 -10.15531004 7.57892773 0.00000000 0.00000000 -2.53880939 0.18692328 -11.43692925 -32.42490260 -39.02545759 -74.51468066 92.20055105 89.99559364 0.00000000 0.00000000 -1.81159823 -42.02337463 4.81395562 32.39407305 89.99559364 0.00000000 0.00000000
|
||||
0.50000000 -26.24472159 5.57270250 -94.93310104 -0.05726881 0.96709777 -1.06352255 21.06885221 -9.38449441 -27.60059312 40.76588017 0.71149883 2.14724165 17.60960473 0.00000000 31.10816512 -20.85414055 18.53997619 53.32827044 0.93075390 17.37801498 -19.51375176 0.00000000 0.00273867 -0.87409930 1.03763646 0.00508598 -1.16255207 1.10248874 0.00449936 -2.12528503 1.10248874 0.00313003 -2.12528503 0.90793190 0.00254313 -1.78246329 0.84307963 0.00156488 -1.35397981 0.77822735 0.01956204 -9.88798609 5.77102271 0.00000000 0.00000000 -2.87674629 0.29088351 -11.56438653 -35.20789555 -38.79048631 -77.03545777 91.77593782 89.99559364 0.00000000 0.00000000 -0.66832299 -42.36558137 4.45491056 33.13707454 89.99559364 0.00000000 0.00000000
|
||||
0.51666667 -27.49547955 5.46158441 -92.02152614 -0.05615447 0.96489904 -1.05535803 20.07563988 -10.46748379 -29.64286022 38.74430984 0.67621577 1.46428053 18.04808911 0.00000000 31.80339913 -20.83551346 21.56419250 53.34921327 0.93111942 18.04342927 -19.50239791 0.00000000 0.00265041 -0.83743720 0.60967465 0.00492207 -1.11379147 0.64777931 0.00435435 -2.03614480 0.64777931 0.00302915 -2.03614480 0.53346532 0.00246117 -1.70770193 0.49536065 0.00151444 -1.29719022 0.45725599 0.01893160 -9.47325706 3.39082748 0.00000000 0.00000000 -3.43204632 0.43728207 -11.20634612 -37.04542630 -39.09965959 -78.66718155 91.69336966 89.99559364 0.00000000 0.00000000 -0.16028678 -43.14339545 4.93771423 34.06378456 89.99559364 0.00000000 0.00000000
|
||||
0.53333333 -28.62739066 5.15689483 -90.26158532 -0.05636596 0.96339714 -1.04805526 19.16400483 -11.13386822 -30.57030402 36.99957124 0.64576434 0.57266851 18.22629142 0.00000000 31.90072467 -21.43323699 23.26819451 53.37094266 0.93149867 18.82289089 -19.48749857 0.00000000 0.00147898 -0.79784557 0.24521922 0.00274661 -1.06113461 0.26054542 0.00242981 -1.93988172 0.26054542 0.00169032 -1.93988172 0.21456682 0.00137338 -1.62696669 0.19924061 0.00084509 -1.23586279 0.18391441 0.01056420 -9.02538866 1.36383572 0.00000000 0.00000000 -3.77561730 0.51668963 -10.33828086 -37.93683100 -40.12554607 -79.37625536 92.15359160 89.99559364 0.00000000 0.00000000 -0.75780922 -44.27711406 5.51714255 35.23192836 89.99559364 0.00000000 0.00000000
|
||||
0.55000000 -29.42771425 4.69009018 -89.49858416 -0.05751779 0.96262063 -1.04145671 18.31801329 -11.80951236 -30.80336684 35.44583292 0.61864649 -0.66830155 18.54788143 0.00000000 31.47017112 -22.24857004 23.91243116 53.50514642 0.93384097 19.50975602 -19.46806108 0.00000000 0.00090370 -0.78191363 -0.10325934 0.00167825 -1.03994512 -0.10971304 0.00148468 -1.90114479 -0.10971304 0.00103283 -1.90114479 -0.09035192 0.00083917 -1.59447827 -0.08389821 0.00051637 -1.21118421 -0.07744450 0.00645501 -8.84516331 -0.57429745 0.00000000 0.00000000 -5.02501221 0.72399456 -4.05838004 -37.58941692 -41.90291714 -78.79144333 92.98019213 89.99559364 0.00000000 0.00000000 -2.58852802 -45.65380714 5.70367224 36.04743969 89.99559364 0.00000000 0.00000000
|
||||
0.56666667 -30.17249850 4.11971548 -90.01692086 -0.06000473 0.96280325 -1.03518024 17.63190499 -12.03547070 -30.05794703 33.73081083 0.58871371 -1.92673619 18.65218251 0.00000000 30.30685342 -23.78010337 23.13520915 53.51980183 0.93409676 20.25913111 -19.43613981 0.00000000 0.00015527 -0.76177496 -0.30056463 0.00028835 -1.01316070 -0.31934992 0.00025509 -1.85217965 -0.31934992 0.00017746 -1.85217965 -0.26299405 0.00014418 -1.55341151 -0.24420876 0.00008872 -1.17998942 -0.22542347 0.00110906 -8.61735075 -1.67165031 0.00000000 0.00000000 -5.00060575 0.71619873 -2.86509910 -36.55375215 -44.14995288 -77.62548906 93.88946710 89.99559364 0.00000000 0.00000000 -5.49621267 -47.02652197 5.54496181 36.86548578 89.99559364 0.00000000 0.00000000
|
||||
0.58333333 -30.33441245 3.69198370 -90.92136698 -0.06335061 0.96329282 -1.02960429 17.43557679 -12.85786688 -29.11338228 32.35124573 0.56463576 -2.56297659 18.62365295 0.00000000 29.01614040 -24.83438754 21.79607930 53.58038044 0.93515405 20.67881452 -19.42373018 0.00000000 -0.00043707 -0.81674241 -0.54073756 -0.00081168 -1.08626741 -0.57453365 -0.00071806 -1.98582750 -0.57453365 -0.00049953 -1.98582750 -0.47314536 -0.00040586 -1.66550113 -0.43934926 -0.00024974 -1.26513400 -0.40555317 -0.00312194 -9.23915352 -3.00742007 0.00000000 0.00000000 -4.85081054 0.60483708 4.99391005 -33.94942796 -46.47469002 -75.21108497 94.86446246 89.99559364 0.00000000 0.00000000 -10.67123687 -47.70072815 -0.37825967 38.51744098 89.99559364 0.00000000 0.00000000
|
||||
0.60000000 -30.96435405 3.62583786 -91.43644774 -0.06662752 0.96299857 -1.02513954 17.59625627 -13.36343477 -28.96717841 30.91515354 0.53957122 -3.49383778 18.52185402 0.00000000 28.58388750 -26.04669203 21.28068991 53.81371914 0.93922658 20.96577344 -19.40154792 0.00000000 0.00224978 -0.81394052 -0.66307644 0.00417806 -1.08254089 -0.70451872 0.00369616 -1.97901497 -0.70451872 0.00257127 -1.97901497 -0.58019188 0.00208914 -1.65978750 -0.53874961 0.00128552 -1.26079386 -0.49730733 0.01606993 -9.20745792 -3.68783224 0.00000000 0.00000000 -4.57226249 0.58713073 6.49078432 -32.40515407 -48.34096046 -74.46843836 95.62753551 89.99559364 0.00000000 0.00000000 -13.79700567 -48.88776131 -1.30419569 39.38349893 89.99559364 0.00000000 0.00000000
|
||||
0.61666667 -31.31956182 3.86073616 -90.85778997 -0.06947194 0.96188600 -1.02185137 18.11249637 -14.56201895 -29.68864345 29.94492889 0.52263760 -4.22518811 18.19386785 0.00000000 29.24093961 -26.33430205 22.00585784 54.20385339 0.94603571 20.88231735 -19.39585148 0.00000000 0.00207262 -0.85791441 -0.87155284 0.00384906 -1.14102616 -0.92602489 0.00340511 -2.08593309 -0.92602489 0.00236880 -2.08593309 -0.76260873 0.00192464 -1.74945906 -0.70813668 0.00118430 -1.32890942 -0.65366463 0.01480452 -9.70489936 -4.84731541 0.00000000 0.00000000 -3.21338605 0.61300094 11.27255822 -30.80521237 -49.58956301 -74.24642247 96.45668920 89.99559364 0.00000000 0.00000000 -16.45373289 -49.56651675 -5.39912109 40.25818412 89.99559364 0.00000000 0.00000000
|
||||
0.63333333 -31.99374848 4.12047389 -89.11412922 -0.07139974 0.96001468 -1.01896454 18.41325538 -15.69918058 -31.03911168 29.06877629 0.50734586 -5.30332696 17.56710172 0.00000000 30.87544134 -26.28159302 24.20479543 54.79823217 0.95640958 20.74457087 -19.38125088 0.00000000 0.00381703 -0.87235217 -0.97802038 0.00708861 -1.16022839 -1.03914665 0.00627101 -2.12103707 -1.03914665 0.00436249 -2.12103707 -0.85576783 0.00354450 -1.77890055 -0.79464156 0.00218105 -1.35127352 -0.73351528 0.02726470 -9.86822225 -5.43945595 0.00000000 0.00000000 -2.62964279 0.68176292 11.60417358 -31.29171587 -50.08058802 -76.39982363 97.28883389 89.99559364 0.00000000 0.00000000 -15.79317120 -51.31786235 -4.22450781 40.35116128 89.99559364 0.00000000 0.00000000
|
||||
0.65000000 -32.83160369 4.16628580 -86.29282651 -0.07225409 0.95791837 -1.01593866 18.16742411 -16.92677187 -33.06332536 28.32012482 0.49427942 -6.50852881 17.08899555 0.00000000 33.05988434 -25.78296738 27.46175036 55.44836618 0.96775655 20.44674572 -19.35616957 0.00000000 0.00290808 -0.87680254 -0.96901159 0.00540059 -1.16614738 -1.02957481 0.00477768 -2.13185770 -1.02957481 0.00332364 -2.13185770 -0.84788514 0.00270044 -1.78797574 -0.78732192 0.00166168 -1.35816714 -0.72675869 0.02077212 -9.91856572 -5.38935175 0.00000000 0.00000000 -1.53247949 0.85263978 9.95511579 -33.90402722 -49.65632737 -80.67997981 98.17650389 89.99559364 0.00000000 0.00000000 -11.02547810 -53.96834492 2.73043189 39.22871502 89.99559364 0.00000000 0.00000000
|
||||
0.66666667 -33.83215547 4.06850887 -83.00343842 -0.07272445 0.95587108 -1.01291814 17.65328196 -18.01282827 -35.12301302 27.71242800 0.48367311 -7.50848237 16.90772006 0.00000000 35.40571692 -25.15941482 31.04844733 55.94615361 0.97644458 20.09085780 -19.30947590 0.00000000 0.00095186 -0.87004315 -0.85724722 0.00176769 -1.15715738 -0.91082517 0.00156381 -2.11542291 -0.91082517 0.00108788 -2.11542291 -0.75009132 0.00088389 -1.77419198 -0.69651337 0.00054389 -1.34769683 -0.64293542 0.00679902 -9.84210208 -4.76775188 0.00000000 0.00000000 -1.17671287 0.91860359 6.13221318 -37.57397353 -48.59075224 -85.83021808 98.89018191 89.99559364 0.00000000 0.00000000 -2.94512162 -56.28927096 12.89165745 37.40351919 89.99559364 0.00000000 0.00000000
|
||||
0.68333333 -34.53687333 4.00352063 -80.48473568 -0.07437716 0.95513281 -1.01040314 17.61499445 -19.09235318 -35.92642945 27.35098838 0.47736480 -8.14071807 16.89098697 0.00000000 37.13342068 -24.77409440 33.51052941 55.98265823 0.97708171 19.65441303 -19.24646683 0.00000000 -0.00123296 -0.91332119 -0.66871238 -0.00228973 -1.21471719 -0.71050691 -0.00202563 -2.22064915 -0.71050691 -0.00140915 -2.22064915 -0.58512334 -0.00114493 -1.86244458 -0.54332881 -0.00070451 -1.41473453 -0.50153429 -0.00880691 -10.33167200 -3.71917767 0.00000000 0.00000000 -1.17605487 0.94647264 1.97498570 -39.99641308 -47.53802972 -88.97510919 99.25438007 89.99559364 0.00000000 0.00000000 5.69630795 -58.10744968 23.52822939 35.58288221 89.99559364 0.00000000 0.00000000
|
||||
0.70000000 -34.82966967 4.20962710 -79.49671513 -0.07807499 0.95595359 -1.00872992 18.68294786 -20.14406297 -34.78268917 27.32040070 0.47683095 -8.44926202 16.73961192 0.00000000 38.03012530 -24.98359893 34.27408399 55.58404427 0.97012458 19.17589283 -19.17903272 0.00000000 -0.00162733 -1.01173705 -0.42067590 -0.00302211 -1.34561028 -0.44696815 -0.00267353 -2.45993746 -0.44696815 -0.00185987 -2.45993746 -0.36809142 -0.00151114 -2.06313419 -0.34179917 -0.00092985 -1.56718069 -0.31550693 -0.01162383 -11.44497185 -2.33967317 0.00000000 0.00000000 -1.14386474 0.97138279 -1.24652837 -40.35042477 -47.18946909 -89.52098025 99.47349675 89.99559364 0.00000000 0.00000000 12.36374510 -59.72660192 31.42574767 34.44908191 89.99559364 0.00000000 0.00000000
|
||||
0.71666667 -35.04273271 4.80783508 -80.31564035 -0.08395969 0.95750780 -1.00825131 21.22028299 -20.64475091 -31.36414666 27.58502221 0.48144946 -8.53452398 15.98812508 0.00000000 38.37519421 -26.22679086 33.38257057 55.04985722 0.96080126 18.77305964 -19.10568530 0.00000000 -0.00035388 -1.09719806 -0.05049067 -0.00065720 -1.45927342 -0.05364633 -0.00058139 -2.66772736 -0.05364633 -0.00040445 -2.66772736 -0.04417933 -0.00032862 -2.23740628 -0.04102367 -0.00020221 -1.69955979 -0.03786800 -0.00252775 -12.41172388 -0.28081394 0.00000000 0.00000000 -0.75650483 0.96823449 -2.35397222 -39.40576038 -47.70190011 -89.62319396 99.93211768 89.99559364 0.00000000 0.00000000 15.94526504 -61.04328332 33.76379369 34.26337751 89.99559364 0.00000000 0.00000000
|
||||
0.73333333 -35.07989469 5.73719719 -82.16021136 -0.09127181 0.95954756 -1.00889081 24.62593467 -20.76242955 -27.26319003 27.93400565 0.48754037 -8.34811383 15.02078210 0.00000000 38.39737817 -27.91032462 31.51579908 54.44203165 0.95019270 18.28860797 -19.05312872 0.00000000 0.00068501 -1.18720659 0.35945432 0.00127214 -1.57898477 0.38192022 0.00112541 -2.88657411 0.38192022 0.00078290 -2.88657411 0.31452253 0.00063610 -2.42095169 0.29205664 0.00039142 -1.83898301 0.26959074 0.00489297 -13.42991843 1.99917710 0.00000000 0.00000000 0.50758357 0.90116874 -3.65652831 -37.39427128 -48.68002632 -89.62420971 100.66336405 89.99559364 0.00000000 0.00000000 18.96011757 -62.93692801 37.46244565 34.34754351 89.99559364 0.00000000 0.00000000
|
||||
0.75000000 -35.24535658 6.84985801 -84.09673644 -0.09837425 0.96157555 -1.00890573 28.00116404 -20.29288766 -23.45367970 27.99928458 0.48867970 -7.73383509 13.80149769 0.00000000 38.43093728 -29.74025593 29.62362647 53.83951530 0.93967681 17.73840168 -19.00202786 0.00000000 0.00188012 -1.24330350 0.65142389 0.00349158 -1.65359366 0.69213788 0.00308886 -3.02296813 0.69213788 0.00214879 -3.02296813 0.56999590 0.00174588 -2.53534450 0.52928191 0.00107430 -1.92587712 0.48856791 0.01342954 -14.06449787 3.62302423 0.00000000 0.00000000 1.25263263 0.84270021 -3.51239606 -34.57781789 -50.08758768 -89.55724258 101.65833305 89.99559364 0.00000000 0.00000000 18.54708802 -64.93048120 36.15215442 35.41411100 89.99559364 0.00000000 0.00000000
|
||||
0.76666667 -35.95896585 7.98464322 -84.57822835 -0.10262404 0.96258196 -1.00648073 30.19171986 -19.58742572 -21.64838074 27.57992504 0.48136050 -6.80069954 12.29649323 0.00000000 39.23741031 -31.03041618 29.47649116 53.31686804 0.93055489 17.22264563 -18.99195620 0.00000000 0.00385999 -1.21182065 0.59841376 0.00716838 -1.61172146 0.63581463 0.00634157 -2.94642072 0.63581463 0.00441158 -2.94642072 0.52361204 0.00358438 -2.47114466 0.48621118 0.00220560 -1.87711018 0.44881032 0.02757151 -13.70835750 3.32819784 0.00000000 0.00000000 3.65089762 0.63115847 -2.35010071 -31.22274532 -51.85561852 -89.40137786 102.82660627 89.99559364 0.00000000 0.00000000 12.98043660 -66.05834432 26.43916842 37.04373231 89.99559364 0.00000000 0.00000000
|
||||
0.78333333 -36.94624335 8.96157150 -83.26128287 -0.10328754 0.96280750 -1.00051327 30.83864572 -19.49388992 -22.75943186 26.93839656 0.47016372 -5.70107054 12.45269332 0.00000000 40.61073633 -31.32729578 31.03733484 52.67260145 0.91931032 16.85877129 -19.02080127 0.00000000 0.00675027 -1.13747320 0.24832104 0.01253592 -1.51283936 0.26384110 0.01109001 -2.76565235 0.26384110 0.00771488 -2.76565235 0.21728091 0.00626830 -2.31953536 0.20176084 0.00385710 -1.76194599 0.18624078 0.04821647 -12.86732437 1.38108711 0.00000000 0.00000000 3.88691269 0.56763428 -1.04887316 -28.12745933 -53.28892101 -89.15585512 104.19344937 89.99559364 0.00000000 0.00000000 6.09372295 -66.39857919 16.00904880 38.50914781 89.99559364 0.00000000 0.00000000
|
||||
0.80000000 -37.98061083 9.63133360 -80.63506292 -0.10128335 0.96281839 -0.99185422 30.32542053 -19.80417322 -25.31621440 26.37200744 0.46027836 -4.67236519 13.47264691 0.00000000 42.07026593 -30.76763051 33.66623556 51.80092555 0.90409671 16.58527303 -19.06279797 0.00000000 0.00836833 -1.05589309 -0.22393632 0.01554082 -1.40433781 -0.23793234 0.01374832 -2.56729846 -0.23793234 0.00956416 -2.56729846 -0.19594428 0.00777083 -2.15317719 -0.18194826 0.00478166 -1.63557840 -0.16795224 0.05977412 -11.94447382 -1.24546662 0.00000000 0.00000000 3.58273492 0.54546132 -0.32045064 -25.83067495 -54.05431611 -89.09612413 105.70374526 89.99559364 0.00000000 0.00000000 1.14869195 -66.07689529 8.35431368 39.16672690 89.99559364 0.00000000 0.00000000
|
||||
0.81666667 -38.67860184 9.96819224 -77.59921135 -0.09825789 0.96342199 -0.98176458 29.33786319 -20.20060237 -27.50377905 26.04028330 0.45448868 -3.66583625 13.84134556 0.00000000 43.00342146 -29.74788691 36.18026130 50.60868862 0.88328825 16.37634061 -19.08964652 0.00000000 0.00936475 -1.02336576 -0.61956963 0.01739127 -1.36107646 -0.65829273 0.01538534 -2.48821151 -0.65829273 0.01070297 -2.48821151 -0.54212343 0.00869610 -2.08684746 -0.50340033 0.00535102 -1.58519356 -0.46467722 0.06689146 -11.57651815 -3.44586042 0.00000000 0.00000000 2.49752775 0.54115216 -0.36769783 -24.76132846 -53.94652736 -89.30172291 107.30538320 89.99559364 0.00000000 0.00000000 -0.41932706 -65.81009822 4.81799269 39.23786142 89.99559364 0.00000000 0.00000000
|
||||
0.83333333 -38.87885174 10.05927262 -74.85031447 -0.09500251 0.96490915 -0.97112927 28.26532046 -20.65337844 -29.40365816 25.86118531 0.45136283 -2.80798589 14.06030671 0.00000000 43.13954533 -28.64466282 37.94277267 49.12198869 0.85734044 16.22269059 -19.08303833 0.00000000 0.00843087 -1.05220125 -0.86308128 0.01565696 -1.39942766 -0.91702386 0.01385107 -2.55832212 -0.91702386 0.00963564 -2.55832212 -0.75519612 0.00782890 -2.14564879 -0.70125354 0.00481740 -1.62985974 -0.64731096 0.06022085 -11.90271099 -4.80019918 0.00000000 0.00000000 0.93569177 0.56171161 -1.19011254 -24.62424220 -53.20470803 -89.50579595 108.92123065 89.99559364 0.00000000 0.00000000 1.00504031 -65.84980195 5.07933627 38.71576259 89.99559364 0.00000000 0.00000000
|
||||
0.85000000 -38.83768006 10.15396829 -73.04256893 -0.09231665 0.96685734 -0.96082615 27.80046320 -20.64145495 -30.30447061 25.88460828 0.45177164 -2.30787816 13.59902046 0.00000000 42.71217407 -28.04708451 38.68203435 47.56784899 0.83021558 16.32580024 -18.99938698 0.00000000 0.00662809 -1.09049872 -0.97202901 0.01230903 -1.45036330 -1.03278082 0.01088929 -2.65143860 -1.03278082 0.00757525 -2.65143860 -0.85052538 0.00615485 -2.22374500 -0.78977357 0.00378729 -1.68918252 -0.72902176 0.04734379 -12.33593965 -5.40613373 0.00000000 0.00000000 0.57658226 0.57051166 -1.33027221 -24.68302972 -52.51574861 -89.57573909 110.61506472 89.99559364 0.00000000 0.00000000 2.15323654 -65.77047038 4.81421082 38.60508092 89.99559364 0.00000000 0.00000000
|
||||
0.86666667 -38.95572919 10.39898825 -71.99946525 -0.09029528 0.96829524 -0.95246788 28.21833301 -20.08841692 -30.68113177 26.41169373 0.46097102 -2.40700147 13.85390268 0.00000000 42.44536330 -27.92809042 39.06065672 46.35312819 0.80901471 16.47899788 -18.90232171 0.00000000 0.00518261 -1.07599776 -1.03253258 0.00962462 -1.43107702 -1.09706586 0.00851451 -2.61618096 -1.09706586 0.00592320 -2.61618096 -0.90346601 0.00481257 -2.19417464 -0.83893272 0.00296134 -1.66672053 -0.77439943 0.03701886 -12.17190189 -5.74263644 0.00000000 0.00000000 0.32569452 0.57698294 -1.38961408 -24.34235037 -52.43946275 -89.54956176 112.18552173 89.99559364 0.00000000 0.00000000 2.61906106 -65.56082957 4.66210073 38.88357355 89.99559364 0.00000000 0.00000000
|
||||
0.88333333 -39.18653806 10.90238969 -70.88071772 -0.08838517 0.96862144 -0.94681898 28.99329449 -19.78966747 -33.04142989 27.42375222 0.47863477 -2.78746216 16.73986737 0.00000000 42.80697856 -27.76556757 39.32520948 45.27648839 0.79022380 16.72916336 -18.61842845 0.00000000 0.00598773 -1.02437579 -1.21620438 0.01111982 -1.36241980 -1.29221715 0.00983725 -2.49066729 -1.29221715 0.00684338 -2.49066729 -1.06417883 0.00556021 -2.08890710 -0.98816606 0.00342139 -1.58675809 -0.91215329 0.04276979 -11.58794378 -6.76416390 0.00000000 0.00000000 -3.24248900 0.66557526 -1.26854482 -23.59502687 -52.88557327 -89.36592079 113.70252174 89.99559364 0.00000000 0.00000000 1.27383043 -64.73203240 0.84654110 39.75590348 89.99559364 0.00000000 0.00000000
|
||||
0.90000000 -39.66544444 11.53145180 -69.82255968 -0.08759081 0.96842463 -0.94445924 30.65391598 -18.72868820 -33.24454254 28.75178354 0.50181329 -2.73228302 18.06842493 0.00000000 43.76257415 -27.81952104 39.49480316 44.37640052 0.77451430 16.84337787 -18.20886451 0.00000000 0.00733307 -0.93375985 -1.41419876 0.01361824 -1.24190060 -1.50258618 0.01204750 -2.27034371 -1.50258618 0.00838097 -2.27034371 -1.23742391 0.00680949 -1.90412309 -1.14903649 0.00419012 -1.44639401 -1.06064907 0.05237938 -10.56287821 -7.86534922 0.00000000 0.00000000 -3.80702823 0.66693685 -0.45920437 -22.46732784 -53.65746070 -88.96278030 114.98379476 89.99559364 0.00000000 0.00000000 0.28040743 -63.95367981 -2.29860267 41.12067048 89.99559364 0.00000000 0.00000000
|
||||
0.91666667 -40.13917460 12.18025473 -68.60484078 -0.08729678 0.96810463 -0.94420760 32.61279354 -17.40602621 -33.06279600 29.97923626 0.52323638 -1.48408752 18.68611478 0.00000000 44.97013694 -27.74995082 39.58848329 43.51639715 0.75950441 16.66855908 -17.74752705 0.00000000 0.00822298 -0.84397282 -1.59431983 0.01527090 -1.12248384 -1.69396482 0.01350954 -2.05203550 -1.69396482 0.00939805 -2.05203550 -1.39502985 0.00763586 -1.72102936 -1.29538486 0.00469861 -1.30731389 -1.19573987 0.05873595 -9.54718928 -8.86712860 0.00000000 0.00000000 -3.87667132 0.66628004 -0.42077944 -21.48330631 -54.30202109 -88.54091172 116.11253036 89.99559364 0.00000000 0.00000000 1.14312840 -63.53551037 -2.62950057 42.20970945 89.99559364 0.00000000 0.00000000
|
||||
0.93333333 -40.54515921 12.82476502 -67.30267992 -0.08679304 0.96768820 -0.94455369 34.55087315 -16.00277115 -33.51973333 30.74588873 0.53661699 0.80721268 18.92722041 0.00000000 46.14654716 -27.49631060 39.63880583 42.69641383 0.74519300 16.43666610 -17.18466824 0.00000000 0.01035480 -0.75783422 -1.75549394 0.01922990 -1.00791951 -1.86521232 0.01701190 -1.84259811 -1.86521232 0.01183450 -1.84259811 -1.53605720 0.00961547 -1.54537553 -1.42633883 0.00591673 -1.17388520 -1.31662046 0.07396330 -8.57277222 -9.76353067 0.00000000 0.00000000 -4.04683060 0.66777796 -0.48583420 -20.74241248 -54.81515958 -88.20855591 117.16661107 89.99559364 0.00000000 0.00000000 2.43265373 -62.95695896 -3.08401193 43.55378394 89.99559364 0.00000000 0.00000000
|
||||
0.95000000 -40.78885799 13.41708349 -66.44353969 -0.08639111 0.96792348 -0.94433209 36.55869091 -14.36088234 -34.21988300 31.04515445 0.54184016 2.48052194 18.95846514 0.00000000 46.71232887 -27.30256930 39.63567847 41.80972119 0.72971729 16.12874521 -16.94302539 0.00000000 0.00859358 -0.69039337 -1.81330656 0.01595914 -0.91822319 -1.92663822 0.01411839 -1.67862245 -1.92663822 0.00982160 -1.67862245 -1.58664324 0.00798000 -1.40785017 -1.47331158 0.00491037 -1.06941934 -1.35997992 0.06138308 -7.80986794 -10.08506711 0.00000000 0.00000000 -4.12139883 0.66944835 -0.58129220 -20.10263598 -55.02160587 -87.86985977 118.21015168 89.99559364 0.00000000 0.00000000 4.01896505 -62.45164483 -3.17227966 44.98081440 89.99559364 0.00000000 0.00000000
|
||||
0.96666667 -41.00299475 13.94588733 -65.45793714 -0.08543474 0.96819376 -0.94330886 38.17904394 -12.63056122 -36.31054773 30.60979814 0.53424176 4.24609256 18.94029816 0.00000000 47.19447202 -26.97910058 39.63173870 40.90962129 0.71400759 15.44719282 -16.70313619 0.00000000 0.00767088 -0.62009105 -1.79493523 0.01424558 -0.82472110 -1.90711868 0.01260248 -1.50768938 -1.90711868 0.00876704 -1.50768938 -1.57056833 0.00712318 -1.26448967 -1.45838487 0.00438314 -0.96052104 -1.34620142 0.05479230 -7.01459398 -9.98289126 0.00000000 0.00000000 -5.88168431 0.76710642 -3.68201197 -21.15956103 -54.97552282 -88.69224986 119.11704426 89.99559364 0.00000000 0.00000000 7.81465224 -62.15214008 0.72665278 44.80025275 89.99559364 0.00000000 0.00000000
|
||||
0.98333333 -40.92915457 14.53520143 -64.83769792 -0.08454528 0.96914855 -0.94126439 39.93968348 -10.75769220 -38.13708403 29.87493349 0.52141595 4.55074691 18.88636917 0.00000000 47.10321129 -26.54361755 39.58158148 39.85230839 0.69555400 14.56812593 -16.95351121 0.00000000 0.00608250 -0.58643960 -1.73099767 0.01129581 -0.77996467 -1.83918503 0.00999294 -1.42586924 -1.83918503 0.00695169 -1.42586924 -1.51462296 0.00564821 -1.19586763 -1.40643561 0.00347554 -0.90839494 -1.29824825 0.04344670 -6.63392205 -9.62728975 0.00000000 0.00000000 -6.81334165 0.91697392 -6.16089700 -22.01955803 -54.54894023 -88.97729784 119.81552110 89.99559364 0.00000000 0.00000000 11.04084934 -61.81179625 4.28579445 44.10522657 89.99559364 0.00000000 0.00000000
|
||||
1.00000000 -40.72776662 15.13422519 -64.21201078 -0.08347117 0.97013028 -0.93839334 41.73939790 -8.81380135 -39.96365755 28.97508989 0.50571072 3.92819171 18.85690066 0.00000000 46.88173002 -25.98074068 39.49953606 38.71962039 0.67578486 13.52122266 -17.15617659 0.00000000 0.00443385 -0.56437225 -1.67961008 0.00823410 -0.75061510 -1.78458571 0.00728437 -1.37221470 -1.78458571 0.00506744 -1.37221470 -1.46965882 0.00411727 -1.15086790 -1.36468319 0.00253350 -0.87421262 -1.25970756 0.03167053 -6.38429182 -9.34148739 0.00000000 0.00000000 -7.70418828 1.17364893 -8.82010715 -23.06465721 -53.96298304 -89.10311940 120.20556329 89.99559364 0.00000000 0.00000000 13.91576327 -61.52839235 8.63413988 42.63046875 89.99559364 0.00000000 0.00000000
|
||||
1.01666667 -40.52009290 15.68350675 -63.53325428 -0.08197506 0.97067996 -0.93503777 43.67694686 -6.82201560 -41.53732176 28.14395769 0.49120473 2.48339290 18.84110874 0.00000000 46.68727858 -25.39587101 39.38173444 37.59582551 0.65617094 12.54911752 -17.18631801 0.00000000 0.00379106 -0.52624544 -1.68123777 0.00704038 -0.69990644 -1.78631513 0.00622834 -1.27951317 -1.78631513 0.00433281 -1.27951317 -1.47108305 0.00352038 -1.07311971 -1.36600569 0.00216621 -0.81515419 -1.26092833 0.02707919 -5.95299369 -9.35054013 0.00000000 0.00000000 -8.30460651 1.46628539 -10.49211514 -23.85747136 -53.55843468 -89.01434242 120.26141564 89.99559364 0.00000000 0.00000000 15.85078811 -60.88014200 12.20466462 40.30809479 89.99559364 0.00000000 0.00000000
|
||||
1.03333333 -40.41946542 16.16392348 -62.72426121 -0.07989479 0.97042518 -0.93157548 45.80038490 -4.85095119 -42.78851943 27.45024005 0.47909707 0.40183420 18.81046793 0.00000000 46.67112658 -24.83077069 39.25023696 36.56818793 0.63823528 11.71833065 -17.09138850 0.00000000 0.00282685 -0.44824755 -1.79807485 0.00524974 -0.59616925 -1.91045453 0.00464423 -1.08986910 -1.91045453 0.00323081 -1.08986910 -1.57331549 0.00262501 -0.91406641 -1.46093582 0.00161526 -0.69433546 -1.34855614 0.02019191 -5.07066598 -10.00035289 0.00000000 0.00000000 -8.35753840 1.53188973 -10.56262804 -23.93985957 -53.66415080 -88.53321532 120.08559754 89.99559364 0.00000000 0.00000000 15.69150458 -59.76178237 12.82221322 38.08085856 89.99559364 0.00000000 0.00000000
|
||||
1.05000000 -40.34556352 16.55861460 -61.73825704 -0.07745522 0.96950536 -0.92817745 48.01389844 -2.99148134 -43.41088460 26.78209816 0.46743579 -2.01153738 18.78245141 0.00000000 46.74970732 -24.20920726 39.11909749 35.63575653 0.62196128 11.03220462 -16.83479472 0.00000000 0.00265110 -0.34101763 -2.04477401 0.00492336 -0.45355344 -2.17257238 0.00435550 -0.82915026 -2.17257238 0.00302994 -0.82915026 -1.78917726 0.00246181 -0.69540314 -1.66137888 0.00151484 -0.52823630 -1.53358051 0.01893656 -3.85765959 -11.37241960 0.00000000 0.00000000 -8.44932818 1.60372903 -10.24147062 -23.08833486 -54.26152483 -87.20473724 119.89080877 89.99559364 0.00000000 0.00000000 14.59208010 -58.72390631 13.22835858 36.06459629 89.99559364 0.00000000 0.00000000
|
||||
1.06666667 -40.17910639 16.90103114 -60.58178617 -0.07478884 0.96803155 -0.92482103 50.09703045 -1.31859495 -43.43971851 25.88547837 0.45178683 -4.69654985 18.87506327 0.00000000 46.78348754 -23.40228139 38.97643395 34.80669306 0.60749140 10.39223038 -16.63594295 0.00000000 0.00443673 -0.21770122 -2.51971463 0.00823945 -0.28954262 -2.67719680 0.00728910 -0.52931873 -2.67719680 0.00507073 -0.52931873 -2.20475031 0.00411994 -0.44393632 -2.04726814 0.00253515 -0.33721918 -1.88978598 0.03169109 -2.46267969 -14.01389688 0.00000000 0.00000000 -8.82131145 1.79454461 -7.00819733 -19.74317849 -55.54085676 -83.30501242 119.70280421 89.99559364 0.00000000 0.00000000 10.71307698 -57.74273096 9.78745078 35.41427626 89.99559364 0.00000000 0.00000000
|
||||
1.08333333 -40.18501838 17.15579214 -59.43546175 -0.07208569 0.96600248 -0.92112785 51.81780167 0.84599533 -42.43357923 23.99151939 0.41873101 -7.99722645 18.88280553 0.00000000 46.91295748 -22.71844441 38.83169851 34.29960682 0.59864107 9.72434620 -16.61710585 0.00000000 0.00599160 -0.04206029 -3.06187345 0.01112700 -0.05594018 -3.25324055 0.00984360 -0.10226539 -3.25324055 0.00684780 -0.10226539 -2.67913927 0.00556380 -0.08576934 -2.48777218 0.00342360 -0.06515139 -2.29640509 0.04279741 -0.47579439 -17.02922159 0.00000000 0.00000000 -9.01148397 1.87977824 -1.68839671 -15.97384696 -57.18090690 -78.71597007 119.84417692 89.99559364 0.00000000 0.00000000 5.27635725 -55.61004038 0.79462878 35.90873684 89.99559364 0.00000000 0.00000000
|
||||
1.10000000 -39.81016463 17.49027423 -58.42661392 -0.06959073 0.96391952 -0.91665077 52.81430603 3.14631658 -40.17653193 20.92643897 0.36523526 -11.51517376 18.78772251 0.00000000 46.86707877 -21.66889372 38.43561869 34.23629214 0.59753602 8.86921037 -16.80574596 0.00000000 0.00933744 0.09959117 -3.61326943 0.01734055 0.13245625 -3.83909877 0.01534048 0.24214596 -3.83909877 0.01067176 0.24214596 -3.16161076 0.00867074 0.20308630 -2.93578142 0.00533541 0.15426672 -2.70995208 0.06669638 1.12659518 -20.09592062 0.00000000 0.00000000 -9.03992869 1.81231874 2.22246553 -11.95504340 -58.38967903 -73.57034235 120.38661580 89.99559364 0.00000000 0.00000000 0.64144940 -54.04610698 -4.93389342 36.65756217 89.99559364 0.00000000 0.00000000
|
||||
1.11666667 -39.16028841 17.83449251 -57.74512889 -0.06691408 0.96182432 -0.91093133 52.73644475 5.72722339 -37.34020557 16.46553424 0.28737779 -15.41962116 18.29418364 0.00000000 46.72697730 -20.46085318 37.64567344 34.84739858 0.60820184 8.15051510 -16.93720451 0.00000000 0.01298109 0.22406025 -4.02652112 0.02410718 0.29800014 -4.27817869 0.02132663 0.54478010 -4.27817869 0.01483609 0.54478010 -3.52320598 0.01205424 0.45690367 -3.27154841 0.00741740 0.34706933 -3.01989084 0.09272264 2.53461439 -22.39430252 0.00000000 0.00000000 -9.22960930 1.54472700 7.22583100 -9.93656944 -59.19216952 -70.19477074 121.32932251 89.99559364 0.00000000 0.00000000 -2.81664971 -52.07457328 -10.47989715 37.54965154 89.99559364 0.00000000 0.00000000
|
||||
1.13333333 -37.67896100 18.19997222 -57.56652073 -0.06422111 0.96022015 -0.90372489 51.37268254 8.10013493 -33.59995623 11.06525212 0.19312508 -19.28568531 16.06798035 0.00000000 45.97720323 -18.86553758 36.13901304 35.77581660 0.62440579 7.59539936 -16.93595171 0.00000000 0.01554912 0.24493988 -4.28825375 0.02887627 0.32577004 -4.55626961 0.02554564 0.59554683 -4.55626961 0.01777109 0.59554683 -3.75222203 0.01443891 0.49948141 -3.48420617 0.00888477 0.37941188 -3.21619031 0.11106579 2.77080895 -23.84998088 0.00000000 0.00000000 -9.31816673 1.25284255 10.27730374 -9.51780736 -59.35504262 -67.97653350 122.23320943 89.99559364 0.00000000 0.00000000 -5.11217372 -50.77425743 -13.53089302 38.32227203 89.99559364 0.00000000 0.00000000
|
||||
1.15000000 -35.35171213 18.46808867 -57.87296202 -0.06147968 0.95915797 -0.89437137 48.61005994 10.67299520 -20.28391619 4.58088782 0.07995158 -24.47633769 0.48751986 0.00000000 44.33482455 -17.05039923 34.07884537 36.51219981 0.63725810 7.53878221 -16.64388779 0.00000000 0.01660988 0.14972882 -4.33632234 0.03084620 0.19913933 -4.60734249 0.02728836 0.36405065 -4.60734249 0.01898343 0.36405065 -3.79428205 0.01542393 0.30532700 -3.52326190 0.00949088 0.23192994 -3.25224175 0.11864268 1.69376232 -24.11732395 0.00000000 0.00000000 -9.41873099 -0.04772195 12.64733959 -11.42266520 -58.81050424 -67.80203449 122.81794950 89.99559364 0.00000000 0.00000000 -6.44095261 -50.02437229 -15.25613390 39.55521893 89.99559364 0.00000000 0.00000000
|
||||
1.16666667 -32.00887072 18.70763827 -58.85569885 -0.05842839 0.95865163 -0.88271517 45.05808409 11.39928387 -10.62174366 -0.29283903 -0.00511101 -32.07444536 -13.97341716 0.00000000 41.56893638 -14.97515498 31.23042014 36.66776750 0.63997327 7.88855572 -16.25214429 0.00000000 0.01426883 -0.09002208 -4.04784673 0.02649865 -0.11972937 -4.30083715 0.02344227 -0.21887968 -4.30083715 0.01630785 -0.21887968 -3.54186589 0.01325004 -0.18357302 -3.28887547 0.00815321 -0.13944420 -3.03588505 0.10192084 -1.01834776 -22.51290915 0.00000000 0.00000000 -9.46363843 -1.07912968 10.42822712 -16.20916115 -57.09639081 -70.63137626 123.22398145 89.99559364 0.00000000 0.00000000 -6.30624486 -49.75992756 -15.90964698 41.55753497 89.99559364 0.00000000 0.00000000
|
||||
1.18333333 -28.12469847 18.84777750 -60.49997501 -0.05595526 0.95900086 -0.86931689 42.37864078 11.26113976 -12.26498511 -1.88511028 -0.03290138 -34.23468030 -15.68143877 0.00000000 38.07791011 -13.02596009 27.64052853 36.18881828 0.63161403 8.40297695 -15.78524121 0.00000000 0.00788755 -0.41932714 -3.34468278 0.01464797 -0.55770509 -3.55372545 0.01295846 -1.01955200 -3.55372545 0.00901468 -1.01955200 -2.92659743 0.00732438 -0.85509189 -2.71755476 0.00450695 -0.64953773 -2.50851208 0.05634000 -4.74351242 -18.60212221 0.00000000 0.00000000 -9.68450242 -1.26055326 7.51747674 -23.27713232 -53.76719289 -76.14729699 123.66564105 89.99559364 0.00000000 0.00000000 -3.85015553 -50.15956117 -13.84923489 43.90910650 89.99559364 0.00000000 0.00000000
|
||||
1.20000000 -24.42374651 18.70315242 -61.76113950 -0.05327958 0.95939402 -0.85562627 40.44840807 10.72069790 -16.18577904 -1.22727712 -0.02142003 -33.24580470 -15.75700581 0.00000000 34.59481260 -11.13216699 24.32176895 35.34780487 0.61693558 8.71258607 -15.48627320 0.00000000 0.00189837 -0.73619693 -2.45722275 0.00352546 -0.97914192 -2.61079917 0.00311883 -1.78998922 -2.61079917 0.00216965 -1.78998922 -2.15006991 0.00176283 -1.50125278 -1.99649349 0.00108473 -1.14036905 -1.84291706 0.01355986 -8.32800693 -13.66633577 0.00000000 0.00000000 -10.24099179 -1.32905572 -0.33440623 -30.36427555 -49.15300717 -81.92862008 123.90688280 89.99559364 0.00000000 0.00000000 0.71665811 -50.89473782 -8.64714881 46.34195995 89.99559364 0.00000000 0.00000000
|
||||
1.21666667 -21.40158714 18.27623090 -62.09924682 -0.04931768 0.95902649 -0.84294603 39.48265997 9.55989677 -22.49683112 1.72411542 0.03009149 -29.29843033 -14.19659732 0.00000000 31.58261234 -9.37221437 21.87319479 34.54824010 0.60298054 9.19009387 -15.29955823 0.00000000 -0.00247471 -0.94388695 -1.68715905 -0.00459578 -1.25536965 -1.79260650 -0.00406570 -2.29496674 -1.79260650 -0.00282834 -2.29496674 -1.47626417 -0.00229801 -1.92477428 -1.37081673 -0.00141405 -1.46208089 -1.26536929 -0.01767660 -10.67743800 -9.38347251 0.00000000 0.00000000 -10.50571461 -1.16488708 -5.32192476 -35.69077164 -44.59688867 -86.11979854 123.77865398 89.99559364 0.00000000 0.00000000 5.47271348 -51.27804085 -2.64256271 48.65175966 89.99559364 0.00000000 0.00000000
|
||||
1.23333333 -19.10080777 17.59358150 -61.88880041 -0.04339206 0.95786280 -0.83061808 38.84031745 7.73157336 -31.04884916 6.23574085 0.10883421 -23.19195503 -9.51077815 0.00000000 28.77793442 -7.92932841 20.35634497 33.88203998 0.59135316 10.01256311 -15.40115129 0.00000000 -0.00439200 -1.00665887 -1.24971102 -0.00815639 -1.33885629 -1.32781796 -0.00721562 -2.44759037 -1.32781796 -0.00501962 -2.44759037 -1.09349714 -0.00407841 -2.05277876 -1.01539020 -0.00250959 -1.55931459 -0.93728326 -0.03137163 -11.38752644 -6.95051777 0.00000000 0.00000000 -10.63197981 -0.70447982 -10.88173908 -38.48967421 -41.70537480 -87.62394765 123.19009715 89.99559364 0.00000000 0.00000000 6.85979673 -51.07590018 -0.53359586 51.40312237 89.99559364 0.00000000 0.00000000
|
||||
1.25000000 -17.33354804 16.71787469 -61.84571442 -0.03606116 0.95609020 -0.81728338 37.72022767 6.43934679 -33.18470359 10.21185286 0.17823046 -19.88944636 -11.51777672 0.00000000 25.75102594 -6.97746585 19.31718595 33.19818717 0.57941767 11.34937840 -15.79320169 0.00000000 -0.00428884 -0.93391448 -1.11735174 -0.00796481 -1.24210626 -1.18718623 -0.00704614 -2.27071966 -1.18718623 -0.00490172 -2.27071966 -0.97768278 -0.00398262 -1.90443840 -0.90784829 -0.00245064 -1.44663353 -0.83801381 -0.03063476 -10.56462736 -6.21437520 0.00000000 0.00000000 -10.55858942 -0.65402737 -11.01584132 -39.46817868 -40.92454844 -87.50225530 122.37776206 89.99559364 0.00000000 0.00000000 4.27397481 -50.96595420 -1.79378461 54.08824116 89.99559364 0.00000000 0.00000000
|
||||
1.26666667 -15.86678158 15.72577628 -62.31112319 -0.02801261 0.95433110 -0.80279361 36.00018893 5.59871507 -34.84032176 13.36323669 0.23323248 -16.56579194 -11.54538834 0.00000000 22.46172703 -6.45008953 18.22759828 32.52578502 0.56768204 12.61951715 -15.99212666 0.00000000 -0.00724442 -0.77749749 -1.33864955 -0.01345361 -1.03407166 -1.42231514 -0.01190185 -1.89040739 -1.42231514 -0.00827964 -1.89040739 -1.17131835 -0.00672717 -1.58547288 -1.08765276 -0.00413946 -1.20434361 -1.00398716 -0.05174614 -8.79520710 -7.44516718 0.00000000 0.00000000 -10.03465141 -0.58445433 -10.57186102 -37.91176032 -42.59904526 -84.87135518 121.04021071 89.99559364 0.00000000 0.00000000 -3.27975831 -50.02054988 -9.91619437 57.01182988 89.99559364 0.00000000 0.00000000
|
||||
1.28333333 -14.59678071 14.64780850 -63.22563453 -0.02011971 0.95278402 -0.78811195 34.05298691 5.16183437 -35.12452062 15.80827372 0.27590643 -14.09065887 -11.72072055 0.00000000 19.02828912 -6.10187204 17.32675091 31.94271494 0.55750555 13.86292116 -16.21951479 0.00000000 -0.00631059 -0.56919029 -1.65693236 -0.01171940 -0.75702309 -1.76049064 -0.01036767 -1.38392928 -1.76049064 -0.00721237 -1.38392928 -1.44981582 -0.00586001 -1.16069285 -1.34625755 -0.00360587 -0.88167577 -1.24269927 -0.04507591 -6.43879445 -9.21536073 0.00000000 0.00000000 -9.21096833 -0.51287849 -7.56504971 -35.09941392 -45.46720998 -81.39124958 119.35207193 89.99559364 0.00000000 0.00000000 -11.05527176 -48.81905961 -17.40281374 58.37181955 89.99559364 0.00000000 0.00000000
|
||||
1.30000000 -13.18946195 13.51652344 -64.81921150 -0.01371756 0.95214486 -0.77338282 31.93895512 4.95215563 -33.86322290 17.64811955 0.30801779 -12.03416050 -11.76389135 0.00000000 15.38918684 -5.72155327 16.14531270 31.41289361 0.54825842 14.81327650 -16.17497196 0.00000000 -0.00592915 -0.37852233 -1.84533482 -0.01101102 -0.50343470 -1.96066824 -0.00974100 -0.92033919 -1.96066824 -0.00677642 -0.92033919 -1.61466797 -0.00550581 -0.77188273 -1.49933454 -0.00338791 -0.58633109 -1.38400111 -0.04235131 -4.28192029 -10.26319865 0.00000000 0.00000000 -8.85385861 -0.47274007 -5.54496343 -31.61386624 -48.22789573 -77.69367014 117.29660450 89.99559364 0.00000000 0.00000000 -17.12054266 -47.88971765 -23.00349606 58.26173977 89.99559364 0.00000000 0.00000000
|
||||
1.31666667 -11.49752747 12.42800494 -66.97162969 -0.00904679 0.95263391 -0.75895256 29.84659964 4.56841975 -31.71695355 19.24087467 0.33581661 -9.92707326 -11.20303796 0.00000000 11.81357335 -5.00183920 14.66188197 31.07597633 0.54237811 15.41447355 -15.81002657 0.00000000 -0.00507688 -0.23560170 -1.70363830 -0.00942828 -0.31335026 -1.81011569 -0.00834081 -0.57284197 -1.81011569 -0.00580237 -0.57284197 -1.49068351 -0.00471439 -0.48043898 -1.38420612 -0.00290093 -0.36494703 -1.27772872 -0.03626368 -2.66517353 -9.47512512 0.00000000 0.00000000 -8.72141874 -0.41398240 -3.69103187 -29.52098549 -49.80517104 -75.63848026 115.20732586 89.99559364 0.00000000 0.00000000 -20.09684301 -48.23556566 -25.12978798 57.10566434 89.99559364 0.00000000 0.00000000
|
||||
1.33333333 -9.44693369 11.55826728 -69.41179555 -0.00619951 0.95420633 -0.74509567 28.04389865 3.70179175 -29.02162179 20.83631618 0.36366232 -7.81040162 -10.27428282 0.00000000 8.85015836 -3.62782479 13.30070587 31.29975017 0.54628370 15.51136400 -15.34600472 0.00000000 -0.00524026 -0.16760716 -1.17082832 -0.00973168 -0.22291753 -1.24400509 -0.00860922 -0.40752006 -1.24400509 -0.00598909 -0.40752006 -1.02447478 -0.00486610 -0.34178453 -0.95129801 -0.00299428 -0.25962350 -0.87812124 -0.03743064 -1.89600575 -6.51179589 0.00000000 0.00000000 -8.79999963 -0.37837251 -3.82028624 -30.36800612 -49.46187478 -76.51270687 113.39918635 89.99559364 0.00000000 0.00000000 -19.75799368 -50.29807500 -24.04040608 55.65813606 89.99559364 0.00000000 0.00000000
|
||||
1.35000000 -7.33250628 11.01302318 -71.51724103 -0.00412294 0.95641594 -0.73239228 26.67679930 2.47890045 -26.34009988 22.19108353 0.38730747 -6.20403452 -10.01027738 0.00000000 7.23636322 -1.91601012 12.05711850 32.54547800 0.56802575 15.60111428 -13.87844812 0.00000000 -0.00402967 -0.13886057 -0.32015789 -0.00748350 -0.18468456 -0.34016776 -0.00662034 -0.33762560 -0.34016776 -0.00460551 -0.33762560 -0.28013816 -0.00374195 -0.28316448 -0.26012829 -0.00230255 -0.21509503 -0.24011842 -0.02878353 -1.57081857 -1.78062216 0.00000000 0.00000000 -9.18572899 -0.05940483 -7.74439148 -34.59702728 -47.14343736 -80.61346542 111.86060755 89.99559364 0.00000000 0.00000000 -15.13647274 -53.99078546 -18.27717919 53.73029677 89.99559364 0.00000000 0.00000000
|
||||
1.36666667 -5.07850168 10.76304646 -73.67117124 -0.00244578 0.95899116 -0.71979913 25.41590971 0.99774057 -24.05375575 23.02476346 0.40185793 -4.59815756 -9.33764530 0.00000000 6.84356166 0.15561307 10.72787968 34.76367895 0.60674066 15.06389107 -12.56616307 0.00000000 0.00010511 -0.14680051 0.67779350 0.00019519 -0.19524468 0.72015559 0.00017268 -0.35693077 0.72015559 0.00012013 -0.35693077 0.59306931 0.00009760 -0.29935561 0.55070722 0.00006006 -0.22739400 0.50834512 0.00075076 -1.66063678 3.76968411 0.00000000 0.00000000 -9.46567505 0.28579057 -11.30618106 -39.26235235 -43.85576447 -84.70260342 110.31283277 89.99559364 0.00000000 0.00000000 -7.26852345 -57.95188733 -9.67711796 51.54279956 89.99559364 0.00000000 0.00000000
|
||||
1.38333333 -2.82342790 10.49533951 -76.64768685 -0.00111465 0.96177881 -0.70569739 23.73423405 -0.25269737 -22.02839877 22.96205326 0.40076343 -2.84466933 -7.65693296 0.00000000 7.06614078 2.19248463 8.38071511 37.50992003 0.65467161 14.11142659 -11.73791416 0.00000000 0.00537164 -0.14445249 1.76286764 0.00997567 -0.19212181 1.87304687 0.00882507 -0.35122177 1.87304687 0.00613925 -0.35122177 1.54250918 0.00498810 -0.29456751 1.43232996 0.00306936 -0.22375690 1.32215073 0.03836909 -1.63407541 9.80454095 0.00000000 0.00000000 -9.91517588 0.85168694 -15.13251157 -43.19807527 -41.06658169 -87.15718049 108.73721785 89.99559364 0.00000000 0.00000000 3.35353714 -61.29084925 2.06459828 48.26380430 89.99559364 0.00000000 0.00000000
|
||||
1.40000000 -0.80890770 10.01984387 -80.29412504 0.00054749 0.96458173 -0.68993362 21.48791973 -1.33342709 -20.90473088 22.10336594 0.38577651 -0.81428080 -4.06459205 0.00000000 7.61625564 3.90302099 5.20626981 40.42048976 0.70547063 12.86212560 -11.85044717 0.00000000 0.01168732 -0.08182636 2.77324137 0.02170452 -0.10882906 2.94656895 0.01920110 -0.19895261 2.94656895 0.01335744 -0.19895261 2.42658620 0.01085284 -0.16686031 2.25325861 0.00667813 -0.12674903 2.07993103 0.08348135 -0.92563614 15.42393651 0.00000000 0.00000000 -10.46413097 1.64569003 -17.51200540 -46.15289870 -39.63056531 -88.07808014 107.30051664 89.99559364 0.00000000 0.00000000 15.55588132 -63.36941172 16.40185830 43.26759663 89.99559364 0.00000000 0.00000000
|
||||
1.41666667 0.75030521 9.45496040 -83.60529106 0.00351697 0.96711981 -0.67424134 19.11260167 -2.51019107 -21.20971922 20.97395946 0.36606465 1.04531604 0.91555218 0.00000000 8.71346924 5.13841615 2.10489323 43.39560352 0.75739616 11.51307189 -12.92703399 0.00000000 0.01762615 0.05990017 3.46148927 0.03273353 0.07966722 3.67783235 0.02895800 0.14564126 3.67783235 0.02014493 0.14564126 3.02880311 0.01636764 0.12214842 2.81246004 0.01007158 0.09278536 2.59611696 0.12590184 0.67760266 19.25176490 0.00000000 0.00000000 -10.63658311 2.65722998 -17.93659203 -48.10107277 -39.79352199 -88.19553749 105.83068176 89.99559364 0.00000000 0.00000000 26.69919534 -64.17609950 30.64383543 36.94010520 89.99559364 0.00000000 0.00000000
|
||||
1.43333333 1.72288922 9.06744805 -85.69924850 0.00788787 0.96912753 -0.66054069 17.26106324 -3.58808886 -21.92430534 20.13416639 0.35140750 2.26140921 4.67162931 0.00000000 10.63928104 5.76217650 -0.15829782 46.36296409 0.80918637 10.31697683 -14.56320917 0.00000000 0.02007422 0.26733675 3.63565279 0.03727983 0.35555788 3.86288109 0.03297993 0.65000257 3.86288109 0.02294283 0.65000257 3.18119619 0.01864092 0.54515310 2.95396789 0.01147041 0.41410462 2.72673959 0.14338814 3.02416676 20.22041012 0.00000000 0.00000000 -10.15484326 4.31011728 -17.14021996 -48.53081598 -41.54405469 -87.62695167 104.24941941 89.99559364 0.00000000 0.00000000 33.85839953 -64.84146668 41.28043179 30.86776707 89.99559364 0.00000000 0.00000000
|
||||
1.45000000 2.14794005 9.20123567 -86.35316275 0.01343231 0.97026367 -0.65009167 16.34614511 -4.69673863 -24.09182008 19.87936666 0.34696040 2.98206342 8.17463244 0.00000000 13.59655215 5.94749649 -1.21954742 49.04169036 0.85593897 9.63215750 -16.38259423 0.00000000 0.01722004 0.51013193 3.19152462 0.03197933 0.67847547 3.39099491 0.02829080 1.24033477 3.39099491 0.01968078 1.24033477 2.79258405 0.01599053 1.04026103 2.59311376 0.00983953 0.79019436 2.39364347 0.12300100 5.77071441 17.75030250 0.00000000 0.00000000 -9.57093954 4.61617642 -13.87415359 -46.52306357 -45.14786165 -85.50972404 102.42801917 89.99559364 0.00000000 0.00000000 32.31693857 -67.04367298 39.30644059 28.05555702 89.99559364 0.00000000 0.00000000
|
||||
1.46666667 1.96880075 10.20104502 -85.59395178 0.01970958 0.97025080 -0.64316261 16.73647362 -5.49820371 -26.71532353 20.10190156 0.35084437 3.10450126 9.96845712 0.00000000 17.67536155 5.84671296 -0.95702728 51.00859074 0.89026786 9.99218124 -17.64113264 0.00000000 0.00951025 0.77134231 2.06076948 0.01766149 1.02588528 2.18956757 0.01562440 1.87544170 2.18956757 0.01086927 1.87544170 1.80317329 0.00883122 1.57292125 1.67437520 0.00543416 1.19480924 1.54557711 0.06793080 8.72557853 11.46138162 0.00000000 0.00000000 -8.90967312 5.72047005 -9.23924346 -39.95943372 -50.60339788 -79.62156800 100.23339559 89.99559364 0.00000000 0.00000000 8.35278658 -68.95480913 -1.81135055 33.45542171 89.99559364 0.00000000 0.00000000
|
||||
1.48333333 1.34269894 11.98805332 -83.58624048 0.02634663 0.96858681 -0.63983170 18.34021052 -6.21740123 -29.72814787 20.82519840 0.36346828 3.23017041 10.28223103 0.00000000 22.67592448 6.02360673 0.78518769 52.16979168 0.91053463 11.36576628 -18.22767353 0.00000000 -0.00029105 1.00951949 0.47579221 -0.00054051 1.34266092 0.50552923 -0.00047817 2.45454568 0.50552923 -0.00033264 2.45454568 0.41631819 -0.00027027 2.05861214 0.38658117 -0.00016631 1.56374568 0.35684416 -0.00207894 11.41988633 2.64621355 0.00000000 0.00000000 -8.36004077 5.73943146 -3.33869935 -27.49267527 -55.85978610 -68.32370743 97.17401126 89.99559364 0.00000000 0.00000000 -26.30611349 -66.33446050 -46.28499629 45.51551943 89.99559364 0.00000000 0.00000000
|
||||
1.50000000 0.37706459 13.94445300 -80.56844417 0.03319613 0.96614582 -0.63971831 20.38457226 -6.98384171 -32.92900693 21.84835351 0.38132570 3.47449483 9.14160688 0.00000000 27.91105740 6.81490666 3.77917337 52.61932721 0.91838051 12.99209913 -18.37046860 0.00000000 -0.00670891 1.22822462 -1.08010914 -0.01245912 1.63353875 -1.14761596 -0.01102207 2.98630535 -1.14761596 -0.00766761 2.98630535 -0.94509550 -0.00622989 2.50459566 -0.87758868 -0.00383347 1.90251994 -0.81008186 -0.04792107 13.89392260 -6.00724301 0.00000000 0.00000000 -7.54349991 5.61642069 0.04126808 -13.08079522 -58.24987256 -55.37351512 93.65926213 89.99559364 0.00000000 0.00000000 -47.80742792 -59.26054184 -72.74070331 56.89009012 89.99559364 0.00000000 0.00000000
|
||||
1.51666667 -0.45126561 15.45001149 -77.68532196 0.03884706 0.96414255 -0.64089124 22.16048680 -7.83820331 -35.25973693 23.00531212 0.40151844 3.78025269 6.78040870 0.00000000 32.43181965 8.22070640 7.00913096 52.24983350 0.91193163 14.17872731 -18.16376088 0.00000000 -0.00770998 1.40416000 -2.16973748 -0.01431821 1.86753279 -2.30534608 -0.01266673 3.41407461 -2.30534608 -0.00881174 3.41407461 -1.89852030 -0.00715949 2.86336306 -1.76291171 -0.00440548 2.17504383 -1.62730311 -0.05507162 15.88413871 -12.06742896 0.00000000 0.00000000 -7.27349633 5.47806023 2.55770990 -3.10281153 -58.13780045 -46.59967908 90.59237438 89.99559364 0.00000000 0.00000000 -56.62004874 -54.07450256 -85.26873812 64.67017955 89.99559364 0.00000000 0.00000000
|
||||
1.53333333 -0.86512295 16.16629282 -76.27823540 0.04256220 0.96348269 -0.64057361 23.19538476 -8.56379253 -36.52008670 24.19015615 0.42219787 3.90717025 4.94336305 0.00000000 35.59879943 9.49813007 9.29499883 50.99531245 0.89003611 15.10504410 -17.59639429 0.00000000 -0.00465055 1.54767714 -2.41982766 -0.00863654 2.05841060 -2.57106688 -0.00764039 3.76302221 -2.57106688 -0.00531512 3.76302221 -2.11734920 -0.00431850 3.15602323 -1.96610997 -0.00265733 2.39735190 -1.81487074 -0.03321843 17.50763339 -13.45835547 0.00000000 0.00000000 -7.28515643 5.45151076 2.66872907 -1.86270362 -57.31755607 -46.25550049 89.35406127 89.99559364 0.00000000 0.00000000 -57.44237355 -54.14761669 -88.99173505 69.05050480 89.99559364 0.00000000 0.00000000
|
||||
1.55000000 -0.71344113 16.19530833 -76.04410220 0.04443554 0.96393723 -0.63769527 23.24669548 -9.09688975 -37.00458246 24.93975014 0.43528075 4.13570697 3.46743219 0.00000000 37.38547814 10.56427305 10.76030763 48.73222382 0.85053776 15.35826112 -16.90288000 0.00000000 -0.00230733 1.62789436 -2.42717191 -0.00428493 2.16509950 -2.57887016 -0.00379071 3.95806234 -2.57887016 -0.00263704 3.95806234 -2.12377542 -0.00214258 3.31960218 -1.97207718 -0.00131841 2.52160836 -1.82037894 -0.01648100 18.41506657 -13.49920203 0.00000000 0.00000000 -7.28559283 5.43001820 2.66011506 -1.54412904 -56.68284059 -45.42771299 87.97692101 89.99559364 0.00000000 0.00000000 -56.87255997 -56.60440172 -89.51542976 70.67033926 89.99559364 0.00000000 0.00000000
|
||||
1.56666667 -0.00194419 16.10723925 -76.59927909 0.04401650 0.96450905 -0.63315973 23.45848874 -9.46020298 -34.90887879 25.83553171 0.45091509 3.89346256 -0.81845197 0.00000000 38.47566195 11.68801674 11.96473903 45.64710063 0.79669220 14.88241791 -16.95910629 0.00000000 0.00039738 1.60715433 -2.22235125 0.00073797 2.13751525 -2.36124820 0.00065285 3.90763503 -2.36124820 0.00045416 3.90763503 -1.94455735 0.00036900 3.27730910 -1.80566039 0.00022706 2.48948205 -1.66676344 0.00283842 18.18045116 -12.36005096 0.00000000 0.00000000 -7.69215461 5.34710887 1.70410725 -3.64543478 -55.27469036 -46.59382896 87.74136057 89.99559364 0.00000000 0.00000000 -53.28830540 -60.09266562 -89.56052605 71.68308394 89.99559364 0.00000000 0.00000000
|
||||
1.58333333 0.72521288 16.15433582 -77.51441638 0.04246592 0.96490109 -0.62751152 23.81153181 -9.63568355 -32.38246798 26.64855510 0.46510503 3.48189233 -4.53683617 0.00000000 39.20762097 12.35183919 12.74485505 41.84717955 0.73037107 14.13932013 -16.75118942 0.00000000 0.00127181 1.55815114 -2.03404774 0.00236189 2.07234102 -2.16117573 0.00208946 3.78848869 -2.16117573 0.00145356 3.78848869 -1.77979177 0.00118101 3.17738181 -1.65266379 0.00072672 2.41357612 -1.52553581 0.00908445 17.62611736 -11.31276333 0.00000000 0.00000000 -7.56488116 5.27751238 0.31797457 -5.43810805 -53.81012353 -47.10253063 87.70163505 89.99559364 0.00000000 0.00000000 -50.42247234 -62.70893703 -89.55826566 73.08584726 89.99559364 0.00000000 0.00000000
|
||||
1.60000000 0.87338710 16.33394927 -77.96526575 0.04181128 0.96548952 -0.62039524 23.87029740 -9.63204468 -31.65530205 27.13344887 0.47356802 3.45647797 -5.16752408 0.00000000 39.67215953 12.53565443 13.76504351 37.80882062 0.65988841 13.07251980 -16.04948068 0.00000000 0.00827763 1.57762940 -2.01936992 0.01537238 2.09824710 -2.14558054 0.01359931 3.83584812 -2.14558054 0.00946050 3.83584812 -1.76694868 0.00768660 3.21710187 -1.64073806 0.00472984 2.44374794 -1.51452744 0.05912626 17.84645927 -11.23112967 0.00000000 0.00000000 -7.45320167 5.27023459 0.30998630 -6.75678329 -53.00339466 -46.86577754 88.00742304 89.99559364 0.00000000 0.00000000 -49.32060826 -63.48759011 -89.61400765 75.42731194 89.99559364 0.00000000 0.00000000
|
||||
1.61666667 1.08243028 16.81445058 -79.04397262 0.04000608 0.96605139 -0.61139330 24.58183910 -8.91431556 -27.95776025 27.50132842 0.47998873 2.30139842 -9.19297097 0.00000000 40.22085527 12.35040454 14.17260739 34.08375983 0.59487383 11.52063727 -15.68072533 0.00000000 0.00900138 1.57094512 -1.85419344 0.01671646 2.08935700 -1.97008053 0.01478836 3.81959596 -1.97008053 0.01028767 3.81959596 -1.62241926 0.00835868 3.20347128 -1.50653217 0.00514339 2.43339399 -1.39064508 0.06429593 17.77084534 -10.31246766 0.00000000 0.00000000 -6.84557589 5.21715272 -0.23075426 -9.50269418 -51.70578699 -48.55291159 89.22755607 89.99559364 0.00000000 0.00000000 -47.84049187 -63.61129548 -89.64756945 78.30205090 89.99559364 0.00000000 0.00000000
|
||||
1.63333333 0.81541809 17.42871476 -79.85296854 0.03955651 0.96715040 -0.59970885 24.96731475 -8.19764235 -26.19709336 27.67122165 0.48295393 1.47227144 -9.88489229 0.00000000 40.84533365 11.72857312 14.10749621 31.05588059 0.54202737 10.21748487 -13.77786704 0.00000000 0.01498411 1.62155664 -1.75854360 0.02782700 2.15667034 -1.86845257 0.02461740 3.94265283 -1.86845257 0.01712534 3.94265283 -1.53872565 0.01391425 3.30667831 -1.42881667 0.00856192 2.51179124 -1.31890770 0.10703002 18.34337308 -9.78049192 0.00000000 0.00000000 -6.74564271 5.18548680 -0.39973556 -12.58444588 -50.86028973 -50.57042031 90.47890424 89.99559364 0.00000000 0.00000000 -47.23611098 -62.49254356 -89.71167954 81.91889733 89.99559364 0.00000000 0.00000000
|
||||
1.65000000 0.33618635 18.16198053 -80.43266075 0.03998039 0.96869242 -0.58570259 25.29979132 -7.39905762 -24.72323003 27.78045532 0.48486041 0.17473639 -10.41353256 0.00000000 41.67180032 10.88492705 13.21512514 28.87816081 0.50401899 9.02436579 -10.17450663 0.00000000 0.02032754 1.68181459 -1.66739266 0.03775028 2.23681340 -1.77160471 0.03339612 4.08916398 -1.77160471 0.02323235 4.08916398 -1.45896858 0.01887616 3.42955630 -1.35475654 0.01161516 2.60513079 -1.25054450 0.14519760 19.02502296 -9.27353778 0.00000000 0.00000000 -6.84684703 5.16037500 -1.20241018 -16.37211759 -49.86505953 -53.49845230 91.58435685 89.99559364 0.00000000 0.00000000 -46.47013919 -61.13059933 -89.75887544 85.86678204 89.99559364 0.00000000 0.00000000
|
||||
1.66666667 -0.30029672 18.91539456 -80.65124089 0.04135331 0.97046129 -0.57019874 25.44084128 -6.67968720 -23.97988433 27.81844650 0.48552348 -1.23581005 -10.42951863 0.00000000 42.64348091 10.00479301 11.77046057 27.34137169 0.47719696 7.70454599 -5.33370983 0.00000000 0.02610835 1.74894426 -1.60806275 0.04848582 2.32609586 -1.70856667 0.04289341 4.25238307 -1.70856667 0.02983924 4.25238307 -1.40705491 0.02424422 3.56644713 -1.30655098 0.01491831 2.70911465 -1.20604706 0.18648935 19.78440723 -8.94356259 0.00000000 0.00000000 -7.14888800 5.16154541 -2.88004498 -20.37088164 -48.70998164 -56.79507043 92.27727282 89.99559364 0.00000000 0.00000000 -45.43471119 -59.86988102 -89.79052426 89.93823621 89.99559364 0.00000000 0.00000000
|
@ -1,254 +0,0 @@
|
||||
###############################################################################
|
||||
## PROJECT PARAMETERS ##
|
||||
###############################################################################
|
||||
|
||||
|
||||
# Configure your project parameters here.
|
||||
#
|
||||
# IMPORTANT:
|
||||
# If a parameter is not found here, Pose2Sim will look for its value in the
|
||||
# Config.toml file of the level above. This way, you can set global
|
||||
# instructions for the Session and alter them for specific Participants or Trials.
|
||||
#
|
||||
# If you wish to overwrite a parameter for a specific trial or participant,
|
||||
# edit its Config.toml file by uncommenting its key (e.g., [project])
|
||||
# and editing its value (e.g., frame_range = [10,300]). Or else, uncomment
|
||||
# [filtering.butterworth] and set cut_off_frequency = 10, etc.
|
||||
|
||||
|
||||
# [project]
|
||||
# multi_person = true # If false, only the main person in scene is analyzed.
|
||||
# frame_rate = 60 # fps
|
||||
# frame_range = [] # For example [10,300], or [] for all frames
|
||||
## N.B.: If you want a time range instead, use frame_range = time_range * frame_rate
|
||||
## For example if you want to analyze from 0.1 to 2 seconds with a 60 fps frame rate,
|
||||
## frame_range = [0.1, 2.0]*frame_rate = [6, 120]
|
||||
|
||||
# exclude_from_batch = [] # List of trials to be excluded from batch analysis, ['<participant_dir/trial_dir>', 'etc'].
|
||||
## e.g. ['S00_P00_Participant/S00_P00_T00_StaticTrial', 'S00_P00_Participant/S00_P00_T01_BalancingTrial']
|
||||
|
||||
|
||||
# [pose]
|
||||
# pose_framework = 'openpose' # 'openpose', 'mediapipe', 'alphapose', 'deeplabcut'
|
||||
# pose_model = 'BODY_25B' #With openpose: BODY_25B, BODY_25, BODY_135, COCO, MPII
|
||||
# #With mediapipe: BLAZEPOSE.
|
||||
# #With alphapose: HALPE_26, HALPE_68, HALPE_136, COCO_133.
|
||||
# #With deeplabcut: CUSTOM. See example at the end of the file.
|
||||
# # What follows has not been implemented yet
|
||||
# overwrite_pose = false
|
||||
# openpose_path = '' # only checked if OpenPose is used
|
||||
|
||||
|
||||
# [synchronization]
|
||||
# display_sync_plots = true # true or false (lowercase)
|
||||
# keypoints_to_consider = 'all' # 'all' if all points should be considered (default)
|
||||
# # ['RWrist', 'RElbow'] list of keypoint names if you want to specify the keypoints to consider
|
||||
# approx_time_maxspeed = 'auto' # 'auto' if you want to consider the whole capture (default, slower if long sequences)
|
||||
# # [1.0, 0.2, 0.8, 1.1] list of times in seconds, one value per camera if you want to specify an approximate time where to search for synchronization.
|
||||
# # Best times: only one person is in the scene, who performs a sharp vertical movement (with keypoints_to_consider).
|
||||
# reset_sync = false # Revert to state before synchronization. Won't attempt to synchronize unless set to false.
|
||||
|
||||
|
||||
## Take heart, calibration is not that complicated once you get the hang of it!
|
||||
# [calibration]
|
||||
# calibration_type = 'convert' # 'convert' or 'calculate'
|
||||
|
||||
# [calibration.convert]
|
||||
# convert_from = 'qualisys' # 'qualisys', 'optitrack', vicon', 'opencap', 'easymocap', 'biocv', 'anipose', or 'freemocap'
|
||||
# [calibration.convert.qualisys]
|
||||
# binning_factor = 1 # Usually 1, except when filming in 540p where it usually is 2
|
||||
# [calibration.convert.optitrack] # See readme for instructions
|
||||
# [calibration.convert.vicon] # No parameter needed
|
||||
# [calibration.convert.opencap] # No parameter needed
|
||||
# [calibration.convert.easymocap] # No parameter needed
|
||||
# [calibration.convert.biocv] # No parameter needed
|
||||
# [calibration.convert.anipose] # No parameter needed
|
||||
# [calibration.convert.freemocap] # No parameter needed
|
||||
|
||||
|
||||
# [calibration.calculate]
|
||||
# # Camera properties, theoretically need to be calculated only once in a camera lifetime
|
||||
# [calibration.calculate.intrinsics]
|
||||
# overwrite_intrinsics = false # # set to false if you don't want to recalculate intrinsic parameters
|
||||
# show_detection_intrinsics = true # true or false (lowercase)
|
||||
# intrinsics_extension = 'jpg' # any video or image extension
|
||||
# extract_every_N_sec = 1 # if video, extract frames every N seconds (can be <1 )
|
||||
# intrinsics_corners_nb = [4,7]
|
||||
# intrinsics_square_size = 60 # mm
|
||||
|
||||
# # Camera placements, need to be done before every session
|
||||
# [calibration.calculate.extrinsics]
|
||||
# calculate_extrinsics = true # true or false (lowercase)
|
||||
# extrinsics_method = 'scene' # 'board', 'scene', 'keypoints'
|
||||
# # 'board' should be large enough to be detected when laid on the floor. Not recommended.
|
||||
# # 'scene' involves manually clicking any point of know coordinates on scene. Usually more accurate if points are spread out.
|
||||
# # 'keypoints' uses automatic pose estimation of a person freely walking and waving arms in the scene. Slighlty less accurate, requires synchronized cameras.
|
||||
# moving_cameras = false # Not implemented yet
|
||||
|
||||
# [calibration.calculate.extrinsics.board]
|
||||
# show_reprojection_error = true # true or false (lowercase)
|
||||
# extrinsics_extension = 'png' # any video or image extension
|
||||
# extrinsics_corners_nb = [4,7] # [H,W] rather than [w,h]
|
||||
# extrinsics_square_size = 60 # mm # [h,w] if square is actually a rectangle
|
||||
|
||||
# [calibration.calculate.extrinsics.scene]
|
||||
# show_reprojection_error = true # true or false (lowercase)
|
||||
# extrinsics_extension = 'png' # any video or image extension
|
||||
# # list of 3D coordinates to be manually labelled on images. Can also be a 2 dimensional plane.
|
||||
# # in m -> unlike for intrinsics, NOT in mm!
|
||||
# object_coords_3d = [[-2.0, 0.3, 0.0],
|
||||
# [-2.0 , 0.0, 0.0],
|
||||
# [-2.0, 0.0, 0.05],
|
||||
# [-2.0, -0.3 , 0.0],
|
||||
# [0.0, 0.3, 0.0],
|
||||
# [0.0, 0.0, 0.0],
|
||||
# [0.0, 0.0, 0.05],
|
||||
# [0.0, -0.3, 0.0]]
|
||||
|
||||
# [calibration.calculate.extrinsics.keypoints]
|
||||
# # Coming soon!
|
||||
|
||||
|
||||
# [personAssociation]
|
||||
# likelihood_threshold_association = 0.3
|
||||
|
||||
# [personAssociation.single_person]
|
||||
# reproj_error_threshold_association = 20 # px
|
||||
# tracked_keypoint = 'Neck' # If the neck is not detected by the pose_model, check skeleton.py
|
||||
# # and choose a stable point for tracking the person of interest (e.g., 'right_shoulder' with BLAZEPOSE)
|
||||
|
||||
# [personAssociation.multi_person]
|
||||
# reconstruction_error_threshold = 0.1 # 0.1 = 10 cm
|
||||
# min_affinity = 0.2 # affinity below which a correspondence is ignored
|
||||
|
||||
|
||||
# [triangulation]
|
||||
# reorder_trc = false # only checked if multi_person analysis
|
||||
# reproj_error_threshold_triangulation = 15 # px
|
||||
# likelihood_threshold_triangulation= 0.3
|
||||
# min_cameras_for_triangulation = 2
|
||||
# interpolation = 'cubic' #linear, slinear, quadratic, cubic, or none
|
||||
# # 'none' if you don't want to interpolate missing points
|
||||
# interp_if_gap_smaller_than = 10 # do not interpolate bigger gaps
|
||||
# show_interp_indices = true # true or false (lowercase). For each keypoint, return the frames that need to be interpolated
|
||||
# handle_LR_swap = false # Better if few cameras (eg less than 4) with risk of limb swapping (eg camera facing sagittal plane), otherwise slightly less accurate and slower
|
||||
# undistort_points = false # Better if distorted image (parallel lines curvy on the edge or at least one param > 10^-2), but unnecessary (and slightly slower) if distortions are low
|
||||
# make_c3d = false # save triangulated data in c3d format in addition to trc
|
||||
|
||||
|
||||
# [filtering]
|
||||
# type = 'butterworth' # butterworth, kalman, gaussian, LOESS, median, butterworth_on_speed
|
||||
# display_figures = false # true or false (lowercase)
|
||||
# make_c3d = false # save triangulated data in c3d format in addition to trc
|
||||
|
||||
# [filtering.butterworth]
|
||||
# order = 4
|
||||
# cut_off_frequency = 6 # Hz
|
||||
# [filtering.kalman]
|
||||
# # How much more do you trust triangulation results (measurements), than previous data (process assuming constant acceleration)?
|
||||
# trust_ratio = 100 # = measurement_trust/process_trust ~= process_noise/measurement_noise
|
||||
# smooth = true # should be true, unless you need real-time filtering
|
||||
# [filtering.butterworth_on_speed]
|
||||
# order = 4
|
||||
# cut_off_frequency = 10 # Hz
|
||||
# [filtering.gaussian]
|
||||
# sigma_kernel = 2 #px
|
||||
# [filtering.LOESS]
|
||||
# nb_values_used = 30 # = fraction of data used * nb frames
|
||||
# [filtering.median]
|
||||
# kernel_size = 9
|
||||
|
||||
|
||||
# [markerAugmentation]
|
||||
## Only works on BODY_25 and BODY_25B models
|
||||
# participant_height = 1.72 # m # float if single person, list of float if multi-person (same order as the Static trials)
|
||||
# participant_mass = 70.0 # kg
|
||||
# make_c3d = false # save triangulated data in c3d format in addition to trc
|
||||
|
||||
|
||||
# [opensim]
|
||||
# static_trial = [# static_trial = ['S00_P00_Participant/S00_P00_T00_StaticTrial']
|
||||
# # If this Config.toml file is at the Trial level, set to true or false (lowercase);
|
||||
# # At the Participant level, specify the name of the static trial folder name, e.g. ['S00_P00_T00_StaticTrial'];
|
||||
# # At the Session level, add participant subdirectory, e.g. ['S00_P00_Participant/S00_P00_T00_StaticTrial', 'S00_P01_Participant/S00_P00_T00_StaticTrial']
|
||||
# opensim_bin_path = 'C:\OpenSim 4.4\bin'
|
||||
|
||||
|
||||
|
||||
## CUSTOM skeleton, if you trained your own DeepLabCut model for example.
|
||||
## Make sure the node ids correspond to the column numbers of the 2D pose file, starting from zero.
|
||||
##
|
||||
## If you want to perform inverse kinematics, you will also need to create an OpenSim model
|
||||
## and add to its markerset the location where you expect the triangulated keypoints to be detected.
|
||||
##
|
||||
## In this example, CUSTOM reproduces the BODY_25B skeleton (default skeletons are stored in skeletons.py).
|
||||
## You can create as many custom skeletons as you want, just add them further down and rename them.
|
||||
##
|
||||
## Check your model hierarchy with: for pre, _, node in RenderTree(model):
|
||||
## print(f'{pre}{node.name} id={node.id}')
|
||||
# [pose.CUSTOM]
|
||||
# name = "CHip"
|
||||
# id = "None"
|
||||
# [[pose.CUSTOM.children]]
|
||||
# name = "RHip"
|
||||
# id = 12
|
||||
# [[pose.CUSTOM.children.children]]
|
||||
# name = "RKnee"
|
||||
# id = 14
|
||||
# [[pose.CUSTOM.children.children.children]]
|
||||
# name = "RAnkle"
|
||||
# id = 16
|
||||
# [[pose.CUSTOM.children.children.children.children]]
|
||||
# name = "RBigToe"
|
||||
# id = 22
|
||||
# [[pose.CUSTOM.children.children.children.children.children]]
|
||||
# name = "RSmallToe"
|
||||
# id = 23
|
||||
# [[pose.CUSTOM.children.children.children.children]]
|
||||
# name = "RHeel"
|
||||
# id = 24
|
||||
# [[pose.CUSTOM.children]]
|
||||
# name = "LHip"
|
||||
# id = 11
|
||||
# [[pose.CUSTOM.children.children]]
|
||||
# name = "LKnee"
|
||||
# id = 13
|
||||
# [[pose.CUSTOM.children.children.children]]
|
||||
# name = "LAnkle"
|
||||
# id = 15
|
||||
# [[pose.CUSTOM.children.children.children.children]]
|
||||
# name = "LBigToe"
|
||||
# id = 19
|
||||
# [[pose.CUSTOM.children.children.children.children.children]]
|
||||
# name = "LSmallToe"
|
||||
# id = 20
|
||||
# [[pose.CUSTOM.children.children.children.children]]
|
||||
# name = "LHeel"
|
||||
# id = 21
|
||||
# [[pose.CUSTOM.children]]
|
||||
# name = "Neck"
|
||||
# id = 17
|
||||
# [[pose.CUSTOM.children.children]]
|
||||
# name = "Head"
|
||||
# id = 18
|
||||
# [[pose.CUSTOM.children.children.children]]
|
||||
# name = "Nose"
|
||||
# id = 0
|
||||
# [[pose.CUSTOM.children.children]]
|
||||
# name = "RShoulder"
|
||||
# id = 6
|
||||
# [[pose.CUSTOM.children.children.children]]
|
||||
# name = "RElbow"
|
||||
# id = 8
|
||||
# [[pose.CUSTOM.children.children.children.children]]
|
||||
# name = "RWrist"
|
||||
# id = 10
|
||||
# [[pose.CUSTOM.children.children]]
|
||||
# name = "LShoulder"
|
||||
# id = 5
|
||||
# [[pose.CUSTOM.children.children.children]]
|
||||
# name = "LElbow"
|
||||
# id = 7
|
||||
# [[pose.CUSTOM.children.children.children.children]]
|
||||
# name = "LWrist"
|
||||
# id = 9
|
@ -1 +0,0 @@
|
||||
{"version": 1.3, "people": [{"person_id": [-1], "pose_keypoints_2d": [1021.3256512174645, 602.3711015713403, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 825.917552286083, 673.152771671459, 1.0, 1035.5833583893284, 774.3395267483642, 1.0, 753.5349065342303, 791.4356972268777, 1.0, 1068.8016718578638, 983.779761832728, 1.0, 666.0449646448034, 861.9695584374556, 1.0, 1095.9258869156356, 1163.4832923847428, 1.0, 786.231065316051, 1024.8628135810081, 1.0, 880.1976062513037, 1091.9310659604416, 1.0, 724.5532829849652, 1227.5775894192202, 1.0, 796.2373537399884, 1290.205792638792, 1.0, 664.2223820043956, 1409.0377529832285, 1.0, 735.7633804072557, 1482.841836684363, 1.0, 948.6387949472169, 665.4060224499005, 1.0, 1032.4754623523174, 509.73432205900895, 1.0, 739.3889893581304, 1429.8440586282695, 1.0, 709.2183877925171, 1419.5531634583926, 1.0, 641.9070113137954, 1449.176693756097, 1.0, 795.3557413226708, 1485.5432595467762, 1.0, 796.7023110801829, 1507.7484577153032, 1.0, 705.599001521201, 1517.6386213203577, 1.0], "face_keypoints_2d": [], "hand_left_keypoints_2d": [], "hand_right_keypoints_2d": [], "pose_keypoints_3d": [], "face_keypoints_3d": [], "hand_left_keypoints_3d": [], "hand_right_keypoints_3d": []}]}
|
@ -1 +0,0 @@
|
||||
{"version": 1.3, "people": [{"person_id": [-1], "pose_keypoints_2d": [1021.3256512174645, 602.3711015713403, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 825.917552286083, 673.152771671459, 1.0, 1035.5833583893284, 774.3395267483642, 1.0, 753.5349065342303, 791.4356972268777, 1.0, 1068.8016718578638, 983.779761832728, 1.0, 666.0449646448034, 861.9695584374556, 1.0, 1095.9258869156356, 1163.4832923847428, 1.0, 786.231065316051, 1024.8628135810081, 1.0, 880.1976062513037, 1091.9310659604416, 1.0, 724.5532829849652, 1227.5775894192202, 1.0, 796.2373537399884, 1290.205792638792, 1.0, 664.2223820043956, 1409.0377529832285, 1.0, 735.7633804072557, 1482.841836684363, 1.0, 948.6387949472169, 665.4060224499005, 1.0, 1032.4754623523174, 509.73432205900895, 1.0, 739.3889893581304, 1429.8440586282695, 1.0, 709.2183877925171, 1419.5531634583926, 1.0, 641.9070113137954, 1449.176693756097, 1.0, 795.3557413226708, 1485.5432595467762, 1.0, 796.7023110801829, 1507.7484577153032, 1.0, 705.599001521201, 1517.6386213203577, 1.0], "face_keypoints_2d": [], "hand_left_keypoints_2d": [], "hand_right_keypoints_2d": [], "pose_keypoints_3d": [], "face_keypoints_3d": [], "hand_left_keypoints_3d": [], "hand_right_keypoints_3d": []}]}
|
@ -1 +0,0 @@
|
||||
{"version": 1.3, "people": [{"person_id": [-1], "pose_keypoints_2d": [1021.3256512174645, 602.3711015713403, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 825.917552286083, 673.152771671459, 1.0, 1035.5833583893284, 774.3395267483642, 1.0, 753.5349065342303, 791.4356972268777, 1.0, 1068.8016718578638, 983.779761832728, 1.0, 666.0449646448034, 861.9695584374556, 1.0, 1095.9258869156356, 1163.4832923847428, 1.0, 786.231065316051, 1024.8628135810081, 1.0, 880.1976062513037, 1091.9310659604416, 1.0, 724.5532829849652, 1227.5775894192202, 1.0, 796.2373537399884, 1290.205792638792, 1.0, 664.2223820043956, 1409.0377529832285, 1.0, 735.7633804072557, 1482.841836684363, 1.0, 948.6387949472169, 665.4060224499005, 1.0, 1032.4754623523174, 509.73432205900895, 1.0, 739.3889893581304, 1429.8440586282695, 1.0, 709.2183877925171, 1419.5531634583926, 1.0, 641.9070113137954, 1449.176693756097, 1.0, 795.3557413226708, 1485.5432595467762, 1.0, 796.7023110801829, 1507.7484577153032, 1.0, 705.599001521201, 1517.6386213203577, 1.0], "face_keypoints_2d": [], "hand_left_keypoints_2d": [], "hand_right_keypoints_2d": [], "pose_keypoints_3d": [], "face_keypoints_3d": [], "hand_left_keypoints_3d": [], "hand_right_keypoints_3d": []}]}
|
@ -1 +0,0 @@
|
||||
{"version": 1.3, "people": [{"person_id": [-1], "pose_keypoints_2d": [1021.3256512174645, 602.3711015713403, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 825.917552286083, 673.152771671459, 1.0, 1035.5833583893284, 774.3395267483642, 1.0, 753.5349065342303, 791.4356972268777, 1.0, 1068.8016718578638, 983.779761832728, 1.0, 666.0449646448034, 861.9695584374556, 1.0, 1095.9258869156356, 1163.4832923847428, 1.0, 786.231065316051, 1024.8628135810081, 1.0, 880.1976062513037, 1091.9310659604416, 1.0, 724.5532829849652, 1227.5775894192202, 1.0, 796.2373537399884, 1290.205792638792, 1.0, 664.2223820043956, 1409.0377529832285, 1.0, 735.7633804072557, 1482.841836684363, 1.0, 948.6387949472169, 665.4060224499005, 1.0, 1032.4754623523174, 509.73432205900895, 1.0, 739.3889893581304, 1429.8440586282695, 1.0, 709.2183877925171, 1419.5531634583926, 1.0, 641.9070113137954, 1449.176693756097, 1.0, 795.3557413226708, 1485.5432595467762, 1.0, 796.7023110801829, 1507.7484577153032, 1.0, 705.599001521201, 1517.6386213203577, 1.0], "face_keypoints_2d": [], "hand_left_keypoints_2d": [], "hand_right_keypoints_2d": [], "pose_keypoints_3d": [], "face_keypoints_3d": [], "hand_left_keypoints_3d": [], "hand_right_keypoints_3d": []}]}
|
@ -1 +0,0 @@
|
||||
{"version": 1.3, "people": [{"person_id": [-1], "pose_keypoints_2d": [1021.3256512174645, 602.3711015713403, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 825.917552286083, 673.152771671459, 1.0, 1035.5833583893284, 774.3395267483642, 1.0, 753.5349065342303, 791.4356972268777, 1.0, 1068.8016718578638, 983.779761832728, 1.0, 666.0449646448034, 861.9695584374556, 1.0, 1095.9258869156356, 1163.4832923847428, 1.0, 786.231065316051, 1024.8628135810081, 1.0, 880.1976062513037, 1091.9310659604416, 1.0, 724.5532829849652, 1227.5775894192202, 1.0, 796.2373537399884, 1290.205792638792, 1.0, 664.2223820043956, 1409.0377529832285, 1.0, 735.7633804072557, 1482.841836684363, 1.0, 948.6387949472169, 665.4060224499005, 1.0, 1032.4754623523174, 509.73432205900895, 1.0, 739.3889893581304, 1429.8440586282695, 1.0, 709.2183877925171, 1419.5531634583926, 1.0, 641.9070113137954, 1449.176693756097, 1.0, 795.3557413226708, 1485.5432595467762, 1.0, 796.7023110801829, 1507.7484577153032, 1.0, 705.599001521201, 1517.6386213203577, 1.0], "face_keypoints_2d": [], "hand_left_keypoints_2d": [], "hand_right_keypoints_2d": [], "pose_keypoints_3d": [], "face_keypoints_3d": [], "hand_left_keypoints_3d": [], "hand_right_keypoints_3d": []}]}
|
@ -1 +0,0 @@
|
||||
{"version": 1.3, "people": [{"person_id": [-1], "pose_keypoints_2d": [1021.3256512174645, 602.3711015713403, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 825.917552286083, 673.152771671459, 1.0, 1035.5833583893284, 774.3395267483642, 1.0, 753.5349065342303, 791.4356972268777, 1.0, 1068.8016718578638, 983.779761832728, 1.0, 666.0449646448034, 861.9695584374556, 1.0, 1095.9258869156356, 1163.4832923847428, 1.0, 786.231065316051, 1024.8628135810081, 1.0, 880.1976062513037, 1091.9310659604416, 1.0, 724.5532829849652, 1227.5775894192202, 1.0, 796.2373537399884, 1290.205792638792, 1.0, 664.2223820043956, 1409.0377529832285, 1.0, 735.7633804072557, 1482.841836684363, 1.0, 948.6387949472169, 665.4060224499005, 1.0, 1032.4754623523174, 509.73432205900895, 1.0, 739.3889893581304, 1429.8440586282695, 1.0, 709.2183877925171, 1419.5531634583926, 1.0, 641.9070113137954, 1449.176693756097, 1.0, 795.3557413226708, 1485.5432595467762, 1.0, 796.7023110801829, 1507.7484577153032, 1.0, 705.599001521201, 1517.6386213203577, 1.0], "face_keypoints_2d": [], "hand_left_keypoints_2d": [], "hand_right_keypoints_2d": [], "pose_keypoints_3d": [], "face_keypoints_3d": [], "hand_left_keypoints_3d": [], "hand_right_keypoints_3d": []}]}
|
@ -1 +0,0 @@
|
||||
{"version": 1.3, "people": [{"person_id": [-1], "pose_keypoints_2d": [1021.3256512174645, 602.3711015713403, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 825.917552286083, 673.152771671459, 1.0, 1035.5833583893284, 774.3395267483642, 1.0, 753.5349065342303, 791.4356972268777, 1.0, 1068.8016718578638, 983.779761832728, 1.0, 666.0449646448034, 861.9695584374556, 1.0, 1095.9258869156356, 1163.4832923847428, 1.0, 786.231065316051, 1024.8628135810081, 1.0, 880.1976062513037, 1091.9310659604416, 1.0, 724.5532829849652, 1227.5775894192202, 1.0, 796.2373537399884, 1290.205792638792, 1.0, 664.2223820043956, 1409.0377529832285, 1.0, 735.7633804072557, 1482.841836684363, 1.0, 948.6387949472169, 665.4060224499005, 1.0, 1032.4754623523174, 509.73432205900895, 1.0, 739.3889893581304, 1429.8440586282695, 1.0, 709.2183877925171, 1419.5531634583926, 1.0, 641.9070113137954, 1449.176693756097, 1.0, 795.3557413226708, 1485.5432595467762, 1.0, 796.7023110801829, 1507.7484577153032, 1.0, 705.599001521201, 1517.6386213203577, 1.0], "face_keypoints_2d": [], "hand_left_keypoints_2d": [], "hand_right_keypoints_2d": [], "pose_keypoints_3d": [], "face_keypoints_3d": [], "hand_left_keypoints_3d": [], "hand_right_keypoints_3d": []}]}
|
@ -1 +0,0 @@
|
||||
{"version": 1.3, "people": [{"person_id": [-1], "pose_keypoints_2d": [1021.3256512174645, 602.3711015713403, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 825.917552286083, 673.152771671459, 1.0, 1035.5833583893284, 774.3395267483642, 1.0, 753.5349065342303, 791.4356972268777, 1.0, 1068.8016718578638, 983.779761832728, 1.0, 666.0449646448034, 861.9695584374556, 1.0, 1095.9258869156356, 1163.4832923847428, 1.0, 786.231065316051, 1024.8628135810081, 1.0, 880.1976062513037, 1091.9310659604416, 1.0, 724.5532829849652, 1227.5775894192202, 1.0, 796.2373537399884, 1290.205792638792, 1.0, 664.2223820043956, 1409.0377529832285, 1.0, 735.7633804072557, 1482.841836684363, 1.0, 948.6387949472169, 665.4060224499005, 1.0, 1032.4754623523174, 509.73432205900895, 1.0, 739.3889893581304, 1429.8440586282695, 1.0, 709.2183877925171, 1419.5531634583926, 1.0, 641.9070113137954, 1449.176693756097, 1.0, 795.3557413226708, 1485.5432595467762, 1.0, 796.7023110801829, 1507.7484577153032, 1.0, 705.599001521201, 1517.6386213203577, 1.0], "face_keypoints_2d": [], "hand_left_keypoints_2d": [], "hand_right_keypoints_2d": [], "pose_keypoints_3d": [], "face_keypoints_3d": [], "hand_left_keypoints_3d": [], "hand_right_keypoints_3d": []}]}
|
@ -1 +0,0 @@
|
||||
{"version": 1.3, "people": [{"person_id": [-1], "pose_keypoints_2d": [1021.3256512174645, 602.3711015713403, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 825.917552286083, 673.152771671459, 1.0, 1035.5833583893284, 774.3395267483642, 1.0, 753.5349065342303, 791.4356972268777, 1.0, 1068.8016718578638, 983.779761832728, 1.0, 666.0449646448034, 861.9695584374556, 1.0, 1095.9258869156356, 1163.4832923847428, 1.0, 786.231065316051, 1024.8628135810081, 1.0, 880.1976062513037, 1091.9310659604416, 1.0, 724.5532829849652, 1227.5775894192202, 1.0, 796.2373537399884, 1290.205792638792, 1.0, 664.2223820043956, 1409.0377529832285, 1.0, 735.7633804072557, 1482.841836684363, 1.0, 948.6387949472169, 665.4060224499005, 1.0, 1032.4754623523174, 509.73432205900895, 1.0, 739.3889893581304, 1429.8440586282695, 1.0, 709.2183877925171, 1419.5531634583926, 1.0, 641.9070113137954, 1449.176693756097, 1.0, 795.3557413226708, 1485.5432595467762, 1.0, 796.7023110801829, 1507.7484577153032, 1.0, 705.599001521201, 1517.6386213203577, 1.0], "face_keypoints_2d": [], "hand_left_keypoints_2d": [], "hand_right_keypoints_2d": [], "pose_keypoints_3d": [], "face_keypoints_3d": [], "hand_left_keypoints_3d": [], "hand_right_keypoints_3d": []}]}
|
@ -1 +0,0 @@
|
||||
{"version": 1.3, "people": [{"person_id": [-1], "pose_keypoints_2d": [1021.3256512174645, 602.3711015713403, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 825.917552286083, 673.152771671459, 1.0, 1035.5833583893284, 774.3395267483642, 1.0, 753.5349065342303, 791.4356972268777, 1.0, 1068.8016718578638, 983.779761832728, 1.0, 666.0449646448034, 861.9695584374556, 1.0, 1095.9258869156356, 1163.4832923847428, 1.0, 786.231065316051, 1024.8628135810081, 1.0, 880.1976062513037, 1091.9310659604416, 1.0, 724.5532829849652, 1227.5775894192202, 1.0, 796.2373537399884, 1290.205792638792, 1.0, 664.2223820043956, 1409.0377529832285, 1.0, 735.7633804072557, 1482.841836684363, 1.0, 948.6387949472169, 665.4060224499005, 1.0, 1032.4754623523174, 509.73432205900895, 1.0, 739.3889893581304, 1429.8440586282695, 1.0, 709.2183877925171, 1419.5531634583926, 1.0, 641.9070113137954, 1449.176693756097, 1.0, 795.3557413226708, 1485.5432595467762, 1.0, 796.7023110801829, 1507.7484577153032, 1.0, 705.599001521201, 1517.6386213203577, 1.0], "face_keypoints_2d": [], "hand_left_keypoints_2d": [], "hand_right_keypoints_2d": [], "pose_keypoints_3d": [], "face_keypoints_3d": [], "hand_left_keypoints_3d": [], "hand_right_keypoints_3d": []}]}
|
@ -1 +0,0 @@
|
||||
{"version": 1.3, "people": [{"person_id": [-1], "pose_keypoints_2d": [1021.3256512174645, 602.3711015713403, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 825.917552286083, 673.152771671459, 1.0, 1035.5833583893284, 774.3395267483642, 1.0, 753.5349065342303, 791.4356972268777, 1.0, 1068.8016718578638, 983.779761832728, 1.0, 666.0449646448034, 861.9695584374556, 1.0, 1095.9258869156356, 1163.4832923847428, 1.0, 786.231065316051, 1024.8628135810081, 1.0, 880.1976062513037, 1091.9310659604416, 1.0, 724.5532829849652, 1227.5775894192202, 1.0, 796.2373537399884, 1290.205792638792, 1.0, 664.2223820043956, 1409.0377529832285, 1.0, 735.7633804072557, 1482.841836684363, 1.0, 948.6387949472169, 665.4060224499005, 1.0, 1032.4754623523174, 509.73432205900895, 1.0, 739.3889893581304, 1429.8440586282695, 1.0, 709.2183877925171, 1419.5531634583926, 1.0, 641.9070113137954, 1449.176693756097, 1.0, 795.3557413226708, 1485.5432595467762, 1.0, 796.7023110801829, 1507.7484577153032, 1.0, 705.599001521201, 1517.6386213203577, 1.0], "face_keypoints_2d": [], "hand_left_keypoints_2d": [], "hand_right_keypoints_2d": [], "pose_keypoints_3d": [], "face_keypoints_3d": [], "hand_left_keypoints_3d": [], "hand_right_keypoints_3d": []}]}
|
@ -1 +0,0 @@
|
||||
{"version": 1.3, "people": [{"person_id": [-1], "pose_keypoints_2d": [1021.3256512174645, 602.3711015713403, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 825.917552286083, 673.152771671459, 1.0, 1035.5833583893284, 774.3395267483642, 1.0, 753.5349065342303, 791.4356972268777, 1.0, 1068.8016718578638, 983.779761832728, 1.0, 666.0449646448034, 861.9695584374556, 1.0, 1095.9258869156356, 1163.4832923847428, 1.0, 786.231065316051, 1024.8628135810081, 1.0, 880.1976062513037, 1091.9310659604416, 1.0, 724.5532829849652, 1227.5775894192202, 1.0, 796.2373537399884, 1290.205792638792, 1.0, 664.2223820043956, 1409.0377529832285, 1.0, 735.7633804072557, 1482.841836684363, 1.0, 948.6387949472169, 665.4060224499005, 1.0, 1032.4754623523174, 509.73432205900895, 1.0, 739.3889893581304, 1429.8440586282695, 1.0, 709.2183877925171, 1419.5531634583926, 1.0, 641.9070113137954, 1449.176693756097, 1.0, 795.3557413226708, 1485.5432595467762, 1.0, 796.7023110801829, 1507.7484577153032, 1.0, 705.599001521201, 1517.6386213203577, 1.0], "face_keypoints_2d": [], "hand_left_keypoints_2d": [], "hand_right_keypoints_2d": [], "pose_keypoints_3d": [], "face_keypoints_3d": [], "hand_left_keypoints_3d": [], "hand_right_keypoints_3d": []}]}
|
@ -1 +0,0 @@
|
||||
{"version": 1.3, "people": [{"person_id": [-1], "pose_keypoints_2d": [427.3464900019353, 498.8134856779377, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 395.22335979254365, 596.569436016802, 1.0, 325.05748781202027, 629.0577120017178, 1.0, 454.6593231883056, 718.3762738421328, 1.0, 336.80183729755055, 805.1974595578574, 1.0, 474.1340616974865, 798.4643435027876, 1.0, 302.46706876939027, 953.5960163096411, 1.0, 423.12608210689837, 909.0332532384459, 1.0, 391.6836859327799, 946.0551491450317, 1.0, 426.11381144213703, 1101.6791960738335, 1.0, 401.07100626249667, 1142.0232610932449, 1.0, 441.27481959426376, 1283.5318012466525, 1.0, 415.72724222417844, 1336.7389057741386, 1.0, 366.0850096536165, 561.4665608524349, 1.0, 397.0289423173028, 417.4216091437106, 1.0, 539.4557797040617, 1335.2818831841964, 1.0, 524.7496287328653, 1322.3161872323933, 1.0, 424.8503112223447, 1317.1487315037173, 1.0, 523.8869063737733, 1379.4693652090734, 1.0, 499.041313818877, 1391.3077217638895, 1.0, 401.06963937879897, 1366.6446245390816, 1.0], "face_keypoints_2d": [], "hand_left_keypoints_2d": [], "hand_right_keypoints_2d": [], "pose_keypoints_3d": [], "face_keypoints_3d": [], "hand_left_keypoints_3d": [], "hand_right_keypoints_3d": []}]}
|
@ -1 +0,0 @@
|
||||
{"version": 1.3, "people": [{"person_id": [-1], "pose_keypoints_2d": [427.3464900019353, 498.8134856779377, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 395.22335979254365, 596.569436016802, 1.0, 325.05748781202027, 629.0577120017178, 1.0, 454.6593231883056, 718.3762738421328, 1.0, 336.80183729755055, 805.1974595578574, 1.0, 474.1340616974865, 798.4643435027876, 1.0, 302.46706876939027, 953.5960163096411, 1.0, 423.12608210689837, 909.0332532384459, 1.0, 391.6836859327799, 946.0551491450317, 1.0, 426.11381144213703, 1101.6791960738335, 1.0, 401.07100626249667, 1142.0232610932449, 1.0, 441.27481959426376, 1283.5318012466525, 1.0, 415.72724222417844, 1336.7389057741386, 1.0, 366.0850096536165, 561.4665608524349, 1.0, 397.0289423173028, 417.4216091437106, 1.0, 539.4557797040617, 1335.2818831841964, 1.0, 524.7496287328653, 1322.3161872323933, 1.0, 424.8503112223447, 1317.1487315037173, 1.0, 523.8869063737733, 1379.4693652090734, 1.0, 499.041313818877, 1391.3077217638895, 1.0, 401.06963937879897, 1366.6446245390816, 1.0], "face_keypoints_2d": [], "hand_left_keypoints_2d": [], "hand_right_keypoints_2d": [], "pose_keypoints_3d": [], "face_keypoints_3d": [], "hand_left_keypoints_3d": [], "hand_right_keypoints_3d": []}]}
|
@ -1 +0,0 @@
|
||||
{"version": 1.3, "people": [{"person_id": [-1], "pose_keypoints_2d": [427.3464900019353, 498.8134856779377, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 395.22335979254365, 596.569436016802, 1.0, 325.05748781202027, 629.0577120017178, 1.0, 454.6593231883056, 718.3762738421328, 1.0, 336.80183729755055, 805.1974595578574, 1.0, 474.1340616974865, 798.4643435027876, 1.0, 302.46706876939027, 953.5960163096411, 1.0, 423.12608210689837, 909.0332532384459, 1.0, 391.6836859327799, 946.0551491450317, 1.0, 426.11381144213703, 1101.6791960738335, 1.0, 401.07100626249667, 1142.0232610932449, 1.0, 441.27481959426376, 1283.5318012466525, 1.0, 415.72724222417844, 1336.7389057741386, 1.0, 366.0850096536165, 561.4665608524349, 1.0, 397.0289423173028, 417.4216091437106, 1.0, 539.4557797040617, 1335.2818831841964, 1.0, 524.7496287328653, 1322.3161872323933, 1.0, 424.8503112223447, 1317.1487315037173, 1.0, 523.8869063737733, 1379.4693652090734, 1.0, 499.041313818877, 1391.3077217638895, 1.0, 401.06963937879897, 1366.6446245390816, 1.0], "face_keypoints_2d": [], "hand_left_keypoints_2d": [], "hand_right_keypoints_2d": [], "pose_keypoints_3d": [], "face_keypoints_3d": [], "hand_left_keypoints_3d": [], "hand_right_keypoints_3d": []}]}
|
@ -1 +0,0 @@
|
||||
{"version": 1.3, "people": [{"person_id": [-1], "pose_keypoints_2d": [427.3464900019353, 498.8134856779377, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 395.22335979254365, 596.569436016802, 1.0, 325.05748781202027, 629.0577120017178, 1.0, 454.6593231883056, 718.3762738421328, 1.0, 336.80183729755055, 805.1974595578574, 1.0, 474.1340616974865, 798.4643435027876, 1.0, 302.46706876939027, 953.5960163096411, 1.0, 423.12608210689837, 909.0332532384459, 1.0, 391.6836859327799, 946.0551491450317, 1.0, 426.11381144213703, 1101.6791960738335, 1.0, 401.07100626249667, 1142.0232610932449, 1.0, 441.27481959426376, 1283.5318012466525, 1.0, 415.72724222417844, 1336.7389057741386, 1.0, 366.0850096536165, 561.4665608524349, 1.0, 397.0289423173028, 417.4216091437106, 1.0, 539.4557797040617, 1335.2818831841964, 1.0, 524.7496287328653, 1322.3161872323933, 1.0, 424.8503112223447, 1317.1487315037173, 1.0, 523.8869063737733, 1379.4693652090734, 1.0, 499.041313818877, 1391.3077217638895, 1.0, 401.06963937879897, 1366.6446245390816, 1.0], "face_keypoints_2d": [], "hand_left_keypoints_2d": [], "hand_right_keypoints_2d": [], "pose_keypoints_3d": [], "face_keypoints_3d": [], "hand_left_keypoints_3d": [], "hand_right_keypoints_3d": []}]}
|
@ -1 +0,0 @@
|
||||
{"version": 1.3, "people": [{"person_id": [-1], "pose_keypoints_2d": [427.3464900019353, 498.8134856779377, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 395.22335979254365, 596.569436016802, 1.0, 325.05748781202027, 629.0577120017178, 1.0, 454.6593231883056, 718.3762738421328, 1.0, 336.80183729755055, 805.1974595578574, 1.0, 474.1340616974865, 798.4643435027876, 1.0, 302.46706876939027, 953.5960163096411, 1.0, 423.12608210689837, 909.0332532384459, 1.0, 391.6836859327799, 946.0551491450317, 1.0, 426.11381144213703, 1101.6791960738335, 1.0, 401.07100626249667, 1142.0232610932449, 1.0, 441.27481959426376, 1283.5318012466525, 1.0, 415.72724222417844, 1336.7389057741386, 1.0, 366.0850096536165, 561.4665608524349, 1.0, 397.0289423173028, 417.4216091437106, 1.0, 539.4557797040617, 1335.2818831841964, 1.0, 524.7496287328653, 1322.3161872323933, 1.0, 424.8503112223447, 1317.1487315037173, 1.0, 523.8869063737733, 1379.4693652090734, 1.0, 499.041313818877, 1391.3077217638895, 1.0, 401.06963937879897, 1366.6446245390816, 1.0], "face_keypoints_2d": [], "hand_left_keypoints_2d": [], "hand_right_keypoints_2d": [], "pose_keypoints_3d": [], "face_keypoints_3d": [], "hand_left_keypoints_3d": [], "hand_right_keypoints_3d": []}]}
|
@ -1 +0,0 @@
|
||||
{"version": 1.3, "people": [{"person_id": [-1], "pose_keypoints_2d": [427.3464900019353, 498.8134856779377, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 395.22335979254365, 596.569436016802, 1.0, 325.05748781202027, 629.0577120017178, 1.0, 454.6593231883056, 718.3762738421328, 1.0, 336.80183729755055, 805.1974595578574, 1.0, 474.1340616974865, 798.4643435027876, 1.0, 302.46706876939027, 953.5960163096411, 1.0, 423.12608210689837, 909.0332532384459, 1.0, 391.6836859327799, 946.0551491450317, 1.0, 426.11381144213703, 1101.6791960738335, 1.0, 401.07100626249667, 1142.0232610932449, 1.0, 441.27481959426376, 1283.5318012466525, 1.0, 415.72724222417844, 1336.7389057741386, 1.0, 366.0850096536165, 561.4665608524349, 1.0, 397.0289423173028, 417.4216091437106, 1.0, 539.4557797040617, 1335.2818831841964, 1.0, 524.7496287328653, 1322.3161872323933, 1.0, 424.8503112223447, 1317.1487315037173, 1.0, 523.8869063737733, 1379.4693652090734, 1.0, 499.041313818877, 1391.3077217638895, 1.0, 401.06963937879897, 1366.6446245390816, 1.0], "face_keypoints_2d": [], "hand_left_keypoints_2d": [], "hand_right_keypoints_2d": [], "pose_keypoints_3d": [], "face_keypoints_3d": [], "hand_left_keypoints_3d": [], "hand_right_keypoints_3d": []}]}
|
@ -1 +0,0 @@
|
||||
{"version": 1.3, "people": [{"person_id": [-1], "pose_keypoints_2d": [427.3464900019353, 498.8134856779377, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 395.22335979254365, 596.569436016802, 1.0, 325.05748781202027, 629.0577120017178, 1.0, 454.6593231883056, 718.3762738421328, 1.0, 336.80183729755055, 805.1974595578574, 1.0, 474.1340616974865, 798.4643435027876, 1.0, 302.46706876939027, 953.5960163096411, 1.0, 423.12608210689837, 909.0332532384459, 1.0, 391.6836859327799, 946.0551491450317, 1.0, 426.11381144213703, 1101.6791960738335, 1.0, 401.07100626249667, 1142.0232610932449, 1.0, 441.27481959426376, 1283.5318012466525, 1.0, 415.72724222417844, 1336.7389057741386, 1.0, 366.0850096536165, 561.4665608524349, 1.0, 397.0289423173028, 417.4216091437106, 1.0, 539.4557797040617, 1335.2818831841964, 1.0, 524.7496287328653, 1322.3161872323933, 1.0, 424.8503112223447, 1317.1487315037173, 1.0, 523.8869063737733, 1379.4693652090734, 1.0, 499.041313818877, 1391.3077217638895, 1.0, 401.06963937879897, 1366.6446245390816, 1.0], "face_keypoints_2d": [], "hand_left_keypoints_2d": [], "hand_right_keypoints_2d": [], "pose_keypoints_3d": [], "face_keypoints_3d": [], "hand_left_keypoints_3d": [], "hand_right_keypoints_3d": []}]}
|
@ -1 +0,0 @@
|
||||
{"version": 1.3, "people": [{"person_id": [-1], "pose_keypoints_2d": [427.3464900019353, 498.8134856779377, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 395.22335979254365, 596.569436016802, 1.0, 325.05748781202027, 629.0577120017178, 1.0, 454.6593231883056, 718.3762738421328, 1.0, 336.80183729755055, 805.1974595578574, 1.0, 474.1340616974865, 798.4643435027876, 1.0, 302.46706876939027, 953.5960163096411, 1.0, 423.12608210689837, 909.0332532384459, 1.0, 391.6836859327799, 946.0551491450317, 1.0, 426.11381144213703, 1101.6791960738335, 1.0, 401.07100626249667, 1142.0232610932449, 1.0, 441.27481959426376, 1283.5318012466525, 1.0, 415.72724222417844, 1336.7389057741386, 1.0, 366.0850096536165, 561.4665608524349, 1.0, 397.0289423173028, 417.4216091437106, 1.0, 539.4557797040617, 1335.2818831841964, 1.0, 524.7496287328653, 1322.3161872323933, 1.0, 424.8503112223447, 1317.1487315037173, 1.0, 523.8869063737733, 1379.4693652090734, 1.0, 499.041313818877, 1391.3077217638895, 1.0, 401.06963937879897, 1366.6446245390816, 1.0], "face_keypoints_2d": [], "hand_left_keypoints_2d": [], "hand_right_keypoints_2d": [], "pose_keypoints_3d": [], "face_keypoints_3d": [], "hand_left_keypoints_3d": [], "hand_right_keypoints_3d": []}]}
|
@ -1 +0,0 @@
|
||||
{"version": 1.3, "people": [{"person_id": [-1], "pose_keypoints_2d": [427.3464900019353, 498.8134856779377, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 395.22335979254365, 596.569436016802, 1.0, 325.05748781202027, 629.0577120017178, 1.0, 454.6593231883056, 718.3762738421328, 1.0, 336.80183729755055, 805.1974595578574, 1.0, 474.1340616974865, 798.4643435027876, 1.0, 302.46706876939027, 953.5960163096411, 1.0, 423.12608210689837, 909.0332532384459, 1.0, 391.6836859327799, 946.0551491450317, 1.0, 426.11381144213703, 1101.6791960738335, 1.0, 401.07100626249667, 1142.0232610932449, 1.0, 441.27481959426376, 1283.5318012466525, 1.0, 415.72724222417844, 1336.7389057741386, 1.0, 366.0850096536165, 561.4665608524349, 1.0, 397.0289423173028, 417.4216091437106, 1.0, 539.4557797040617, 1335.2818831841964, 1.0, 524.7496287328653, 1322.3161872323933, 1.0, 424.8503112223447, 1317.1487315037173, 1.0, 523.8869063737733, 1379.4693652090734, 1.0, 499.041313818877, 1391.3077217638895, 1.0, 401.06963937879897, 1366.6446245390816, 1.0], "face_keypoints_2d": [], "hand_left_keypoints_2d": [], "hand_right_keypoints_2d": [], "pose_keypoints_3d": [], "face_keypoints_3d": [], "hand_left_keypoints_3d": [], "hand_right_keypoints_3d": []}]}
|
@ -1 +0,0 @@
|
||||
{"version": 1.3, "people": [{"person_id": [-1], "pose_keypoints_2d": [427.3464900019353, 498.8134856779377, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 395.22335979254365, 596.569436016802, 1.0, 325.05748781202027, 629.0577120017178, 1.0, 454.6593231883056, 718.3762738421328, 1.0, 336.80183729755055, 805.1974595578574, 1.0, 474.1340616974865, 798.4643435027876, 1.0, 302.46706876939027, 953.5960163096411, 1.0, 423.12608210689837, 909.0332532384459, 1.0, 391.6836859327799, 946.0551491450317, 1.0, 426.11381144213703, 1101.6791960738335, 1.0, 401.07100626249667, 1142.0232610932449, 1.0, 441.27481959426376, 1283.5318012466525, 1.0, 415.72724222417844, 1336.7389057741386, 1.0, 366.0850096536165, 561.4665608524349, 1.0, 397.0289423173028, 417.4216091437106, 1.0, 539.4557797040617, 1335.2818831841964, 1.0, 524.7496287328653, 1322.3161872323933, 1.0, 424.8503112223447, 1317.1487315037173, 1.0, 523.8869063737733, 1379.4693652090734, 1.0, 499.041313818877, 1391.3077217638895, 1.0, 401.06963937879897, 1366.6446245390816, 1.0], "face_keypoints_2d": [], "hand_left_keypoints_2d": [], "hand_right_keypoints_2d": [], "pose_keypoints_3d": [], "face_keypoints_3d": [], "hand_left_keypoints_3d": [], "hand_right_keypoints_3d": []}]}
|
@ -1 +0,0 @@
|
||||
{"version": 1.3, "people": [{"person_id": [-1], "pose_keypoints_2d": [427.3464900019353, 498.8134856779377, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 395.22335979254365, 596.569436016802, 1.0, 325.05748781202027, 629.0577120017178, 1.0, 454.6593231883056, 718.3762738421328, 1.0, 336.80183729755055, 805.1974595578574, 1.0, 474.1340616974865, 798.4643435027876, 1.0, 302.46706876939027, 953.5960163096411, 1.0, 423.12608210689837, 909.0332532384459, 1.0, 391.6836859327799, 946.0551491450317, 1.0, 426.11381144213703, 1101.6791960738335, 1.0, 401.07100626249667, 1142.0232610932449, 1.0, 441.27481959426376, 1283.5318012466525, 1.0, 415.72724222417844, 1336.7389057741386, 1.0, 366.0850096536165, 561.4665608524349, 1.0, 397.0289423173028, 417.4216091437106, 1.0, 539.4557797040617, 1335.2818831841964, 1.0, 524.7496287328653, 1322.3161872323933, 1.0, 424.8503112223447, 1317.1487315037173, 1.0, 523.8869063737733, 1379.4693652090734, 1.0, 499.041313818877, 1391.3077217638895, 1.0, 401.06963937879897, 1366.6446245390816, 1.0], "face_keypoints_2d": [], "hand_left_keypoints_2d": [], "hand_right_keypoints_2d": [], "pose_keypoints_3d": [], "face_keypoints_3d": [], "hand_left_keypoints_3d": [], "hand_right_keypoints_3d": []}]}
|
@ -1 +0,0 @@
|
||||
{"version": 1.3, "people": [{"person_id": [-1], "pose_keypoints_2d": [427.3464900019353, 498.8134856779377, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 395.22335979254365, 596.569436016802, 1.0, 325.05748781202027, 629.0577120017178, 1.0, 454.6593231883056, 718.3762738421328, 1.0, 336.80183729755055, 805.1974595578574, 1.0, 474.1340616974865, 798.4643435027876, 1.0, 302.46706876939027, 953.5960163096411, 1.0, 423.12608210689837, 909.0332532384459, 1.0, 391.6836859327799, 946.0551491450317, 1.0, 426.11381144213703, 1101.6791960738335, 1.0, 401.07100626249667, 1142.0232610932449, 1.0, 441.27481959426376, 1283.5318012466525, 1.0, 415.72724222417844, 1336.7389057741386, 1.0, 366.0850096536165, 561.4665608524349, 1.0, 397.0289423173028, 417.4216091437106, 1.0, 539.4557797040617, 1335.2818831841964, 1.0, 524.7496287328653, 1322.3161872323933, 1.0, 424.8503112223447, 1317.1487315037173, 1.0, 523.8869063737733, 1379.4693652090734, 1.0, 499.041313818877, 1391.3077217638895, 1.0, 401.06963937879897, 1366.6446245390816, 1.0], "face_keypoints_2d": [], "hand_left_keypoints_2d": [], "hand_right_keypoints_2d": [], "pose_keypoints_3d": [], "face_keypoints_3d": [], "hand_left_keypoints_3d": [], "hand_right_keypoints_3d": []}]}
|
@ -1 +0,0 @@
|
||||
{"version": 1.3, "people": [{"person_id": [-1], "pose_keypoints_2d": [142.7197029219237, 452.1850126836162, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 253.56962836894903, 534.5794176993556, 1.0, 141.4964137335877, 518.3614698915701, 1.0, 281.81621370938285, 656.4462772426227, 1.0, 107.19082467355277, 618.048372563323, 1.0, 335.6002780312737, 750.0448355444595, 1.0, 89.90781217492507, 682.4635147740469, 1.0, 235.65913975498066, 768.0678267236143, 1.0, 179.53382927927382, 752.5715822002817, 1.0, 250.72325369101992, 910.6968507045593, 1.0, 204.82291643741033, 894.5157636241578, 1.0, 266.5909564886224, 1053.3340509822792, 1.0, 217.6524032292313, 1032.4121322975707, 1.0, 187.43326308113728, 490.56133216881926, 1.0, 151.55484375070824, 390.20692847435157, 1.0, 204.49555648015158, 1110.7022231766205, 1.0, 227.50646521239852, 1110.2191763927642, 1.0, 277.37381187977735, 1072.2422515058363, 1.0, 166.25748165921104, 1092.537551719206, 1.0, 167.58249797428437, 1082.1353190162515, 1.0, 233.14704559016857, 1052.9905981084369, 1.0], "face_keypoints_2d": [], "hand_left_keypoints_2d": [], "hand_right_keypoints_2d": [], "pose_keypoints_3d": [], "face_keypoints_3d": [], "hand_left_keypoints_3d": [], "hand_right_keypoints_3d": []}]}
|