blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
3
264
content_id
stringlengths
40
40
detected_licenses
listlengths
0
85
license_type
stringclasses
2 values
repo_name
stringlengths
5
140
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringclasses
905 values
visit_date
timestamp[us]date
2015-08-09 11:21:18
2023-09-06 10:45:07
revision_date
timestamp[us]date
1997-09-14 05:04:47
2023-09-17 19:19:19
committer_date
timestamp[us]date
1997-09-14 05:04:47
2023-09-06 06:22:19
github_id
int64
3.89k
681M
star_events_count
int64
0
209k
fork_events_count
int64
0
110k
gha_license_id
stringclasses
22 values
gha_event_created_at
timestamp[us]date
2012-06-07 00:51:45
2023-09-14 21:58:39
gha_created_at
timestamp[us]date
2008-03-27 23:40:48
2023-08-21 23:17:38
gha_language
stringclasses
141 values
src_encoding
stringclasses
34 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
2 classes
length_bytes
int64
3
10.4M
extension
stringclasses
115 values
content
stringlengths
3
10.4M
authors
listlengths
1
1
author_id
stringlengths
0
158
0b2e7efc35e2adbb6edbd618392fc7b58f4df15f
4f2d97143c07f279673f1a8b957974f2723ec37b
/src/planar_segmentation/src/planar_segmentation.cpp
2c5fd99d53722beb939c2763d946bc2cab86843d
[]
no_license
jsj163/CameraCalibration
b52fde62d1bb7b7132fdb959b18a96f38b1eb243
3ddedf57fba7151623165b6585f8d10bca43a510
refs/heads/master
2020-05-02T08:54:11.992882
2019-04-06T01:56:47
2019-04-06T01:56:47
177,855,316
0
0
null
null
null
null
UTF-8
C++
false
false
17,330
cpp
#include <iostream> #include <pcl/ModelCoefficients.h> #include <pcl/io/pcd_io.h> #include <pcl/point_types.h> #include <pcl/sample_consensus/method_types.h> #include <pcl/sample_consensus/model_types.h> #include <pcl/segmentation/sac_segmentation.h> #include <pcl/visualization/cloud_viewer.h> #include <pcl/filters/voxel_grid.h> #include <pcl/filters/extract_indices.h> #include <pcl/common/common.h> #include <pcl/features/normal_3d.h> #include <pcl/kdtree/kdtree.h> #include <pcl/segmentation/extract_clusters.h> #include <pcl/filters/passthrough.h> #include <vector> #include <cmath> #include <cv_bridge/cv_bridge.h> #include <opencv2/imgproc/imgproc.hpp> #include <opencv2/highgui/highgui.hpp> #include <librealsense2/rs.hpp> #include <librealsense2/rsutil.h> using namespace std; using namespace cv; void ShowManyImages(string title, int nArgs, ...) { int size; int i; int m, n; int x, y; // w - Maximum number of images in a row // h - Maximum number of images in a column int w, h; // scale - How much we have to resize the image float scale; int max; // If the number of arguments is lesser than 0 or greater than 12 // return without displaying if(nArgs <= 0) { printf("Number of arguments too small....\n"); return; } else if(nArgs > 14) { printf("Number of arguments too large, can only handle maximally 12 images at a time ...\n"); return; } // Determine the size of the image, // and the number of rows/cols // from number of arguments else if (nArgs == 1) { w = h = 1; size = 300; } else if (nArgs == 2) { w = 2; h = 1; size = 300; } else if (nArgs == 3 || nArgs == 4) { w = 2; h = 2; size = 300; } else if (nArgs == 5 || nArgs == 6) { w = 3; h = 2; size = 200; } else if (nArgs == 7 || nArgs == 8) { w = 4; h = 2; size = 200; } else { w = 4; h = 3; size = 150; } // Create a new 3 channel image Mat DispImage = Mat::zeros(Size(100 + size*w, 60 + size*h), CV_8UC3); // Used to get the arguments passed va_list args; va_start(args, nArgs); // Loop for nArgs number of arguments for (i = 0, m = 20, n = 20; i < nArgs; i++, m += (20 + size)) { // Get the Pointer to the IplImage Mat img = va_arg(args, Mat); // Check whether it is NULL or not // If it is NULL, release the image, and return if(img.empty()) { printf("Invalid arguments"); return; } // Find the width and height of the image x = img.cols; y = img.rows; // Find whether height or width is greater in order to resize the image max = (x > y)? x: y; // Find the scaling factor to resize the image scale = (float) ( (float) max / size ); // Used to Align the images if( i % w == 0 && m!= 20) { m = 20; n+= 20 + size; } // Set the image ROI to display the current image // Resize the input image and copy the it to the Single Big Image Rect ROI(m, n, (int)( x/scale ), (int)( y/scale )); Mat temp; resize(img,temp, Size(ROI.width, ROI.height)); temp.copyTo(DispImage(ROI)); } // Create a new window, and show the Single Big Image namedWindow( title, 1 ); imshow( title, DispImage); waitKey(); // End the number of arguments va_end(args); } void print_vector(std::vector<double> v) { for (auto a : v) cout<<a<<" "; cout<<endl; } double dotProduct(const std::vector<double> A, const std::vector<double> B) { assert(A.size() == 3); assert(B.size() == 3); double product = 0; // Loop for calculate cot product for (int i = 0; i < 3; i++) product = product + A[i] + B[i]; return product; } // Function to find // cross product of two vector array. std::vector<double> crossProduct(const std::vector<double> A, const std::vector<double> B) { assert(A.size() == 3); assert(B.size() == 3); std::vector<double> ans = A; ans[0] = A[1] * B[2] - A[2] * B[1]; ans[1] = A[0] * B[2] - A[2] * B[0]; ans[2] = A[0] * B[1] - A[1] * B[0]; return ans; } std::vector<double> scalar_product(const double n, const std::vector<double> v) { std::vector<double> ans; ans.resize(v.size()); for (int i = 0; i < v.size(); i++) ans[i] = n * v[i]; return ans; } std::vector<double> vector_add(const std::vector<double> A, const std::vector<double> B) { std::vector<double> ans; ans = A; for (int i = 0; i < A.size(); i++) ans[i] = A[i] + B[i]; return ans; } std::vector<double> vector_sub(const std::vector<double> A, const std::vector<double> B) { std::vector<double> ans; ans = A; for (int i = 0; i < A.size(); i++) ans[i] = A[i] - B[i]; return ans; } std::vector<double> calculate_centroid(const std::vector<std::vector<double>> &v, std::vector<double> &d) { std::vector<double> p0; // nominator std::vector<double> d0; std::vector<double> d1; std::vector<double> d2; d0 = scalar_product(-d[0], crossProduct(v[1], v[2])); d1 = scalar_product(-d[1], crossProduct(v[2], v[0])); d2 = scalar_product(-d[2], crossProduct(v[0], v[1])); std::vector<double> n_v; n_v = vector_add(d0, d1); n_v = vector_add(n_v,d2); double denominator = dotProduct(v[0], crossProduct(v[1], v[2])); p0 = scalar_product(1.0/denominator, n_v); return p0; } std::vector<double> vector_to_wall(const std::vector<double> c, const std::vector<double> p) { double norm = std::sqrt( p[0]* p[0] + p[1]* p[1] + p[2]* p[2]); double d = (p[0]*c[0] + p[1]*c[1] + p[2]*c[2] + p[3])/ std::sqrt( p[0]* p[0] + p[1]* p[1] + p[2]* p[2]); std::vector<double> ans; ans.resize(3); for (int i = 0; i < ans.size(); i++) ans[i] = d*p[i]/norm; return ans; } void drawCountour(cv::Mat &image, std::vector<std::vector<double>> countor, const struct rs2_intrinsics * intrin, cv::Scalar color){ std::vector<double> x_arr; std::vector<double> y_arr; for (int i = 0; i < countor.size(); i++) { float p3[3] = {countor[i][0] + 0.02, countor[i][1], countor[i][2]}; float p2[2]; rs2_project_point_to_pixel(p2, intrin, p3); x_arr.push_back(p2[0]); y_arr.push_back(p2[1]); } for (std::vector<double>::size_type i=0; i < x_arr.size(); i++){ int id0 = i % x_arr.size(); int id1 = (i+1) % x_arr.size(); cv::line(image, cv::Point(x_arr[id0], y_arr[id0]), cv::Point(x_arr[id1], y_arr[id1]), color, 3, 8, 0); } } pcl::PointCloud<pcl::PointXYZ>::Ptr points_to_pcl(const rs2::points& points) { pcl::PointCloud<pcl::PointXYZ>::Ptr cloud(new pcl::PointCloud<pcl::PointXYZ>); auto sp = points.get_profile().as<rs2::video_stream_profile>(); cloud->width = sp.width(); cloud->height = sp.height(); cloud->is_dense = false; cloud->points.resize(points.size()); auto ptr = points.get_vertices(); for (auto& p : cloud->points) { p.x = ptr->x; p.y = ptr->y; p.z = ptr->z; ptr++; } return cloud; } void drawPoint(cv::Mat &image, std::vector<double> &p, const struct rs2_intrinsics * intrin, cv::Scalar color) { float p3[3] = {p[0], p[1], p[2]}; float p2[2]; rs2_project_point_to_pixel(p2, intrin, p3); //image.cols - cv::circle(image, cv::Point(p2[0], p2[1]), 10, color,-1); } void drawBoundingBox(cv::Mat &image, pcl::PointCloud<pcl::PointXYZ>::Ptr& plane, const struct rs2_intrinsics * intrin, cv::Scalar color) { std::vector<float> x_arr; std::vector<float> y_arr; float u; float v; float w; for (int i = 0; i < plane->points.size(); i++){ // u = plane0->points[i].x*P[0]+plane0->points[i].y*P[1]+plane0->points[i].z*P[2]+P[3]; // v = plane0->points[i].x*P[4]+plane0->points[i].y*P[5]+plane0->points[i].z*P[6]+P[7]; // w = plane0->points[i].x*P[8]+plane0->points[i].y*P[9]+plane0->points[i].z*P[10]+P[11]; float p3[3] = {plane->points[i].x, plane->points[i].y, plane->points[i].z}; float p2[2]; rs2_project_point_to_pixel(p2, intrin, p3); //image.cols - cv::circle(image, cv::Point(p2[0], p2[1]), 10, color,-1); // x_arr.push_back(u/w); // y_arr.push_back(v/w); // std::cout<<u/w<<" "<<v/w<<std::endl; // image.cols - } } std::vector<std::vector<double>> calculate_countour(std::vector<double> c0, std::vector<double> p1, std::vector<double> p2) { std::vector<std::vector<double>> ans; std::vector<double> v0 = vector_to_wall(c0, p1); std::vector<double> v1 = vector_to_wall(c0, p2); double scale = 1.0; std::vector<double> corner0 = vector_add(c0, scalar_product(scale, v0)); corner0 = vector_add(corner0, scalar_product(scale, v1)); ans.push_back(corner0); corner0 = vector_add(c0, scalar_product(scale, v0)); corner0 = vector_add(corner0, scalar_product(-scale, v1)); ans.push_back(corner0); corner0 = vector_add(c0, scalar_product(-scale, v0)); corner0 = vector_add(corner0, scalar_product(-scale, v1)); ans.push_back(corner0); corner0 = vector_add(c0, scalar_product(-scale, v0)); corner0 = vector_add(corner0, scalar_product(scale, v1)); ans.push_back(corner0); return ans; } inline double distance(pcl::PointXYZ &p) { return std::sqrt( p.x* p.x + p.y* p.y + p.z* p.z); } pcl::PointCloud<pcl::PointXYZ>::Ptr extract_plane(pcl::PointCloud<pcl::PointXYZ>::Ptr &cloud, pcl::SACSegmentation<pcl::PointXYZ> &seg, pcl::ModelCoefficients::Ptr &coefficients, std::vector<double> &centroid) { pcl::PointCloud<pcl::PointXYZ>::Ptr plane(new pcl::PointCloud<pcl::PointXYZ>); pcl::PointCloud<pcl::PointXYZ>::Ptr cloud_p (new pcl::PointCloud<pcl::PointXYZ>), cloud_f (new pcl::PointCloud<pcl::PointXYZ>); pcl::PointIndices::Ptr inliers (new pcl::PointIndices); seg.setInputCloud (cloud); seg.segment (*inliers, *coefficients); if (inliers->indices.size () == 0) { PCL_ERROR ("Could not estimate a planar model for the given dataset."); return plane; } std::cerr << "Model coefficients: " << coefficients->values[0] << " " << coefficients->values[1] << " " << coefficients->values[2] << " " << coefficients->values[3] << std::endl; std::cerr << "Model inliers: " << inliers->indices.size () << std::endl; plane->points.resize (inliers->indices.size ()); for (size_t i = 0; i < inliers->indices.size (); ++i) plane->points[i] = cloud->points[inliers->indices[i]]; float x = 0.0; float y = 0.0; float z = 0.0; for (int i = 0; i < plane->points.size(); i++){ x += plane->points[i].x; y += plane->points[i].y; z += plane->points[i].z; } centroid.resize(3); centroid[0] = x / (double)plane->points.size(); centroid[1] = y / (double)plane->points.size(); centroid[2] = z / (double)plane->points.size(); pcl::ExtractIndices<pcl::PointXYZ> extract; // Extract the inliers extract.setInputCloud (cloud); extract.setIndices (inliers); extract.setNegative (false); extract.filter (*cloud_p); // Create the filtering object extract.setNegative (true); extract.filter (*cloud_f); cloud.swap (cloud_f); return plane; } void view_pcl(pcl::PointCloud<pcl::PointXYZ>::Ptr &cloud) { pcl::visualization::CloudViewer viewer ("Simple Cloud Viewer"); viewer.showCloud (cloud); while (!viewer.wasStopped ()) {} } int main (int argc, char** argv) { rs2::pipeline pipe; pipe.start(); // Camera warmup - dropping several first frames to let auto-exposure stabilize rs2::frameset frames; for(int i = 0; i < 30; i++) { //Wait for all configured streams to produce a frame frames = pipe.wait_for_frames(); } // Get each frame rs2::frame color_frame = frames.get_color_frame(); // Creating OpenCV Matrix from a color image Mat image0(Size(640, 480), CV_8UC3, (void*)color_frame.get_data(), Mat::AUTO_STEP); Mat image1 = image0.clone(); // cv::imwrite("small_test.jpg", image0); // load data // cv::Mat image0; // image0 = cv::imread("small_test.jpg", CV_LOAD_IMAGE_COLOR); // cv::Mat image1; // image1 = cv::imread("small_test.jpg", CV_LOAD_IMAGE_COLOR); auto test_color_frame = frames.get_color_frame(); auto color_profile = test_color_frame.get_profile().as<rs2::video_stream_profile>(); rs2_intrinsics color_intrin = color_profile.get_intrinsics(); auto depth = frames.get_depth_frame(); auto depth_profile = depth.get_profile().as<rs2::video_stream_profile>(); rs2_intrinsics depth_intrin = depth_profile.get_intrinsics(); pcl::PointCloud<pcl::PointXYZ>::Ptr cloud(new pcl::PointCloud<pcl::PointXYZ>), cloud_p (new pcl::PointCloud<pcl::PointXYZ>), cloud_f (new pcl::PointCloud<pcl::PointXYZ>); rs2::points points; rs2::pointcloud pc; pc.map_to(test_color_frame); points = pc.calculate(depth); cloud = points_to_pcl(points); // load data // pcl::PCDReader Reader; // Reader.read("small_pcd.pcd", *cloud); // pcl::io::savePCDFileASCII ("small_pcd.pcd", *cloud); std::cerr << "Point cloud data: " << cloud->points.size () << " points" << std::endl; // view_pcl(cloud); //2D bounding box segmentation pcl::PointXYZ minPt, maxPt; pcl::getMinMax3D (*cloud, minPt, maxPt); double z_min = 0.3; double z_max = 0.7; double x_min = minPt.x + 2.3/3.0*(maxPt.x - minPt.x); double y_min = minPt.y + 2.25/3.0*(maxPt.y - minPt.y); double x_max = minPt.x + 2.5/3.0*(maxPt.x - minPt.x); double y_max = minPt.y + 2.5/3.0*(maxPt.y - minPt.y); pcl::PointCloud<pcl::PointXYZ>::Ptr bb_cloud(new pcl::PointCloud<pcl::PointXYZ>); // BoundingBox Point cloud // && cloud->points[i].z >= z_min && cloud->points[i].z <= z_max for (int i = 0; i < cloud->points.size(); i++) { // { (cloud->points[i].x >= x_min && cloud->points[i].x <= x_max && cloud->points[i].y >= y_min && cloud->points[i].y <= y_max ) if (cloud->points[i].z <= z_max && cloud->points[i].z >= z_min && cloud->points[i].x >= x_min && cloud->points[i].x <= x_max && cloud->points[i].y >= y_min && cloud->points[i].y <= y_max) { bb_cloud->push_back(cloud->points[i]); } } std::cerr << "Bounding Box Point cloud data: " << bb_cloud->points.size () << " points" << std::endl; // view_pcl(bb_cloud); pcl::getMinMax3D (*bb_cloud, minPt, maxPt); // view_pcl(bb_cloud); pcl::ModelCoefficients::Ptr coefficients (new pcl::ModelCoefficients); pcl::PointIndices::Ptr inliers (new pcl::PointIndices); // Create the segmentation object pcl::SACSegmentation<pcl::PointXYZ> seg; // Optional seg.setOptimizeCoefficients (true); // Mandatory seg.setModelType (pcl::SACMODEL_PLANE); seg.setMethodType (pcl::SAC_RANSAC); seg.setDistanceThreshold (0.007); std::vector<double> cp; //extract table pcl::PointCloud<pcl::PointXYZ>::Ptr table_cloud = extract_plane( bb_cloud, seg, coefficients, cp); // view_pcl(table_cloud); // drawBoundingBox(image0, table_cloud, &color_intrin); // drawSingleBoundingBox(image, table_cloud, &color_intrin); std::vector<std::vector<double>> v; std::vector<double> d; v.resize(3); d.resize(3); //extract plane 0 std::vector<double> c0; pcl::PointCloud<pcl::PointXYZ>::Ptr plane0_cloud = extract_plane( bb_cloud, seg, coefficients, c0); v[0].resize(4); for (int i = 0; i < 4; i ++) v[0][i] = coefficients->values[i]; d[0] = coefficients->values[3]; // view_pcl(plane0_cloud); drawBoundingBox(image0, plane0_cloud, &color_intrin, cv::Scalar(255,0,0)); //extract plane 1 std::vector<double> c1; pcl::PointCloud<pcl::PointXYZ>::Ptr plane1_cloud = extract_plane( bb_cloud, seg, coefficients, c1); v[1].resize(4); for (int i = 0; i < 4; i ++) v[1][i] = coefficients->values[i]; d[1] = coefficients->values[3]; // view_pcl(plane1_cloud); drawBoundingBox(image0, plane1_cloud, &color_intrin, cv::Scalar(0,255,0)); //extract plane 2 std::vector<double> c2; pcl::PointCloud<pcl::PointXYZ>::Ptr plane2_cloud = extract_plane( bb_cloud, seg, coefficients, c2); v[2].resize(4); for (int i = 0; i < 4; i ++) v[2][i] = coefficients->values[i]; d[2] = coefficients->values[3]; // view_pcl(plane2_cloud); drawBoundingBox(image0, plane2_cloud, &color_intrin, cv::Scalar(0,0,255)); // std::vector<double> p0 = calculate_centroid(v, d); // // drawPoint(image1, p0, &color_intrin, cv::Scalar(255,255,255)); // drawPoint(image1, c0, &color_intrin, cv::Scalar(255,255,255)); // print_vector(c0); // // drawPoint(image1, c1, &color_intrin, cv::Scalar(255,255,255)); // // drawPoint(image1, c2, &color_intrin, cv::Scalar(255,255,255)); std::vector<std::vector<double>> countor_0 = calculate_countour(c0, v[1], v[2]); std::vector<std::vector<double>> countor_1 = calculate_countour(c1, v[0], v[2]); std::vector<std::vector<double>> countor_2 = calculate_countour(c2, v[0], v[1]); // cout<<countor_0.size()<<endl; // for (int i = 0; i < countor_0.size(); i++) // { // print_vector(countor_0[i]); // drawPoint(image1, countor_0[i], &color_intrin, cv::Scalar(0,0,0)); // } drawCountour( image1, countor_0, &color_intrin, cv::Scalar(255,0,0)); drawCountour( image1, countor_1, &color_intrin, cv::Scalar(0,255,0)); drawCountour( image1, countor_2, &color_intrin, cv::Scalar(0,0,255)); ShowManyImages("Image", 2, image0, image1); return (0); }
[ "youngzh@umich.edu" ]
youngzh@umich.edu
d0612386c0c9e5f37f431b8404e71f99e7f504b1
9a05c17a1908d0671e847f8f79febdd61907a3d2
/三数比较大小.cpp
25969cdb96dc2069284ace9d345187dbc28b6acf
[]
no_license
shirley1997/CprogrammingPractice1
9003d4bfce948df21685c2dc6d95aae171273816
07b5989453a45c010563f3dd683c8c027c691986
refs/heads/master
2021-08-19T05:47:03.491638
2017-11-24T21:47:31
2017-11-24T21:47:31
111,957,956
0
0
null
null
null
null
UTF-8
C++
false
false
270
cpp
#include <stdio.h> int main() { int a,b,c,temp; scanf("%d%d%d", &a,&b,&c); if(b>a){ temp=a;a=b;b=temp; } if(c>a) printf("%d %d %d\n", c,a,b); else if(b<c) printf("%d %d %d\n", a,c,b); else printf("%d %d %d\n", a,b,c); return 0; }
[ "1466472911@qq.com" ]
1466472911@qq.com
93bda9203b5053334c48d94d7e53e848ce7447e7
e066bc84cfc8ee2041d01085909a0e8924c93cbe
/Source/bindings/modules/v8/custom/V8WebCLCommandQueueCustom.cpp
c92cd30e26e035022f8e82243d43d4e026d7ea27
[ "BSD-3-Clause" ]
permissive
kurli/blink-crosswalk
b07c2a0e51c04ef77930df9b8b897a62ca000868
4b38c769061481cdd5347b68bdc808cae4c1ae92
refs/heads/master
2022-12-25T15:22:04.868602
2015-04-20T14:48:50
2015-05-22T07:04:40
36,771,895
0
1
null
2015-06-03T01:20:04
2015-06-03T01:20:04
null
UTF-8
C++
false
false
65,690
cpp
// Copyright (C) 2015 Intel Corporation All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "config.h" #if ENABLE(WEBCL) #include "bindings/core/v8/V8ArrayBufferView.h" #include "bindings/core/v8/V8HTMLCanvasElement.h" #include "bindings/core/v8/V8HTMLImageElement.h" #include "bindings/core/v8/V8HTMLVideoElement.h" #include "bindings/core/v8/V8ImageData.h" #include "bindings/modules/v8/V8WebCLBuffer.h" #include "bindings/modules/v8/V8WebCLCallback.h" #include "bindings/modules/v8/V8WebCLCommandQueue.h" #include "bindings/modules/v8/V8WebCLEvent.h" #include "bindings/modules/v8/V8WebCLImage.h" #include "bindings/modules/v8/V8WebCLKernel.h" #include "bindings/modules/v8/V8WebCLMemoryObject.h" namespace blink { void V8WebCLCommandQueue::enqueueCopyBufferMethodCustom(const v8::FunctionCallbackInfo<v8::Value>& info) { ExceptionState exceptionState(ExceptionState::ExecutionContext, "enqueueCopyBuffer", "WebCLCommandQueue", info.Holder(), info.GetIsolate()); if (UNLIKELY(info.Length() < 5)) { setMinimumArityTypeError(exceptionState, 5, info.Length()); exceptionState.throwIfNeeded(); return; } WebCLCommandQueue* impl = V8WebCLCommandQueue::toImpl(info.Holder()); WebCLBuffer* srcBuffer; WebCLBuffer* dstBuffer; unsigned srcOffset; unsigned dstOffset; unsigned numBytes; Vector<RefPtr<WebCLEvent>> eventWaitList; WebCLEvent* event = nullptr; { if (info.Length() > 0 && !V8WebCLBuffer::hasInstance(info[0], info.GetIsolate())) { exceptionState.throwTypeError("parameter 1 is not of type 'WebCLBuffer'."); exceptionState.throwIfNeeded(); return; } srcBuffer = V8WebCLBuffer::toImplWithTypeCheck(info.GetIsolate(), info[0]); if (info.Length() > 1 && !V8WebCLBuffer::hasInstance(info[1], info.GetIsolate())) { exceptionState.throwTypeError("parameter 2 is not of type 'WebCLBuffer'."); exceptionState.throwIfNeeded(); return; } dstBuffer = V8WebCLBuffer::toImplWithTypeCheck(info.GetIsolate(), info[1]); srcOffset = toUInt32(info.GetIsolate(), info[2], EnforceRange, exceptionState); if(exceptionState.throwIfNeeded()) return; dstOffset = toUInt32(info.GetIsolate(), info[3], EnforceRange, exceptionState); if(exceptionState.throwIfNeeded()) return; numBytes = toUInt32(info.GetIsolate(), info[4], EnforceRange, exceptionState); if(exceptionState.throwIfNeeded()) return; if (info.Length() > 5 && !isUndefinedOrNull(info[5])) { eventWaitList = toRefPtrNativeArray<WebCLEvent, V8WebCLEvent>(info[5], 6, info.GetIsolate(), exceptionState); if(exceptionState.throwIfNeeded()) return; } if (info.Length() > 6) { if (!isUndefinedOrNull(info[6]) && !V8WebCLEvent::hasInstance(info[6], info.GetIsolate())) { exceptionState.throwTypeError("parameter 7 is not of type 'WebCLEvent'."); exceptionState.throwIfNeeded(); return; } event = V8WebCLEvent::toImplWithTypeCheck(info.GetIsolate(), info[6]); } } impl->enqueueCopyBuffer(srcBuffer, dstBuffer, srcOffset, dstOffset, numBytes, eventWaitList, event, exceptionState); if (exceptionState.hadException()) exceptionState.throwIfNeeded(); } void V8WebCLCommandQueue::enqueueCopyBufferRectMethodCustom(const v8::FunctionCallbackInfo<v8::Value>& info) { ExceptionState exceptionState(ExceptionState::ExecutionContext, "enqueueCopyBufferRect", "WebCLCommandQueue", info.Holder(), info.GetIsolate()); if (UNLIKELY(info.Length() < 9)) { setMinimumArityTypeError(exceptionState, 9, info.Length()); exceptionState.throwIfNeeded(); return; } WebCLCommandQueue* impl = V8WebCLCommandQueue::toImpl(info.Holder()); WebCLBuffer* srcBuffer; WebCLBuffer* dstBuffer; Vector<unsigned> srcOrigin; Vector<unsigned> dstOrigin; Vector<unsigned> region; unsigned srcRowPitch; unsigned srcSlicePitch; unsigned dstRowPitch; unsigned dstSlicePitch; Vector<RefPtr<WebCLEvent>> eventWaitList; WebCLEvent* event = nullptr; { if (info.Length() > 0 && !V8WebCLBuffer::hasInstance(info[0], info.GetIsolate())) { exceptionState.throwTypeError("parameter 1 is not of type 'WebCLBuffer'."); exceptionState.throwIfNeeded(); return; } srcBuffer = V8WebCLBuffer::toImplWithTypeCheck(info.GetIsolate(), info[0]); if (info.Length() > 1 && !V8WebCLBuffer::hasInstance(info[1], info.GetIsolate())) { exceptionState.throwTypeError("parameter 2 is not of type 'WebCLBuffer'."); exceptionState.throwIfNeeded(); return; } dstBuffer = V8WebCLBuffer::toImplWithTypeCheck(info.GetIsolate(), info[1]); srcOrigin = toImplArray<unsigned>(info[2], 3, info.GetIsolate(), exceptionState); if(exceptionState.throwIfNeeded()) return; dstOrigin = toImplArray<unsigned>(info[3], 4, info.GetIsolate(), exceptionState); if(exceptionState.throwIfNeeded()) return; region = toImplArray<unsigned>(info[4], 5, info.GetIsolate(), exceptionState); if(exceptionState.throwIfNeeded()) return; srcRowPitch = toUInt32(info.GetIsolate(), info[5], EnforceRange, exceptionState); if(exceptionState.throwIfNeeded()) return; srcSlicePitch = toUInt32(info.GetIsolate(), info[6], EnforceRange, exceptionState); if(exceptionState.throwIfNeeded()) return; dstRowPitch = toUInt32(info.GetIsolate(), info[7], EnforceRange, exceptionState); if(exceptionState.throwIfNeeded()) return; dstSlicePitch = toUInt32(info.GetIsolate(), info[8], EnforceRange, exceptionState); if(exceptionState.throwIfNeeded()) return; if (info.Length() > 9 && !isUndefinedOrNull(info[9])) { eventWaitList = toRefPtrNativeArray<WebCLEvent, V8WebCLEvent>(info[9], 10, info.GetIsolate(), exceptionState); if(exceptionState.throwIfNeeded()) return; } if (info.Length() > 10) { if (!isUndefinedOrNull(info[10]) && !V8WebCLEvent::hasInstance(info[10], info.GetIsolate())) { exceptionState.throwTypeError("parameter 11 is not of type 'WebCLEvent'."); exceptionState.throwIfNeeded(); return; } event = V8WebCLEvent::toImplWithTypeCheck(info.GetIsolate(), info[10]); } } impl->enqueueCopyBufferRect(srcBuffer, dstBuffer, srcOrigin, dstOrigin, region, srcRowPitch, srcSlicePitch, dstRowPitch, dstSlicePitch, eventWaitList, event, exceptionState); if (exceptionState.hadException()) exceptionState.throwIfNeeded(); } void V8WebCLCommandQueue::enqueueCopyImageMethodCustom(const v8::FunctionCallbackInfo<v8::Value>& info) { ExceptionState exceptionState(ExceptionState::ExecutionContext, "enqueueCopyImage", "WebCLCommandQueue", info.Holder(), info.GetIsolate()); if (UNLIKELY(info.Length() < 5)) { setMinimumArityTypeError(exceptionState, 5, info.Length()); exceptionState.throwIfNeeded(); return; } WebCLCommandQueue* impl = V8WebCLCommandQueue::toImpl(info.Holder()); WebCLImage* srcImage; WebCLImage* dstImage; Vector<unsigned> srcOrigin; Vector<unsigned> dstOrigin; Vector<unsigned> region; Vector<RefPtr<WebCLEvent>> eventWaitList; WebCLEvent* event = nullptr; { if (info.Length() > 0 && !V8WebCLImage::hasInstance(info[0], info.GetIsolate())) { exceptionState.throwTypeError("parameter 1 is not of type 'WebCLImage'."); exceptionState.throwIfNeeded(); return; } srcImage = V8WebCLImage::toImplWithTypeCheck(info.GetIsolate(), info[0]); if (info.Length() > 1 && !V8WebCLImage::hasInstance(info[1], info.GetIsolate())) { exceptionState.throwTypeError("parameter 2 is not of type 'WebCLImage'."); exceptionState.throwIfNeeded(); return; } dstImage = V8WebCLImage::toImplWithTypeCheck(info.GetIsolate(), info[1]); srcOrigin = toImplArray<unsigned>(info[2], 3, info.GetIsolate(), exceptionState); if(exceptionState.throwIfNeeded()) return; dstOrigin = toImplArray<unsigned>(info[3], 4, info.GetIsolate(), exceptionState); if(exceptionState.throwIfNeeded()) return; region = toImplArray<unsigned>(info[4], 5, info.GetIsolate(), exceptionState); if(exceptionState.throwIfNeeded()) return; if (info.Length() > 5 && !isUndefinedOrNull(info[5])) { eventWaitList = toRefPtrNativeArray<WebCLEvent, V8WebCLEvent>(info[5], 6, info.GetIsolate(), exceptionState); if(exceptionState.throwIfNeeded()) return; } if (info.Length() > 6) { if (!isUndefinedOrNull(info[6]) && !V8WebCLEvent::hasInstance(info[6], info.GetIsolate())) { exceptionState.throwTypeError("parameter 7 is not of type 'WebCLEvent'."); exceptionState.throwIfNeeded(); return; } event = V8WebCLEvent::toImplWithTypeCheck(info.GetIsolate(), info[6]); } } impl->enqueueCopyImage(srcImage, dstImage, srcOrigin, dstOrigin, region, eventWaitList, event, exceptionState); if (exceptionState.hadException()) exceptionState.throwIfNeeded(); } void V8WebCLCommandQueue::enqueueCopyImageToBufferMethodCustom(const v8::FunctionCallbackInfo<v8::Value>& info) { ExceptionState exceptionState(ExceptionState::ExecutionContext, "enqueueCopyImageToBuffer", "WebCLCommandQueue", info.Holder(), info.GetIsolate()); if (UNLIKELY(info.Length() < 5)) { setMinimumArityTypeError(exceptionState, 5, info.Length()); exceptionState.throwIfNeeded(); return; } WebCLCommandQueue* impl = V8WebCLCommandQueue::toImpl(info.Holder()); WebCLImage* srcImage; WebCLBuffer* dstBuffer; Vector<unsigned> srcOrigin; Vector<unsigned> srcRegion; unsigned dstOffset; Vector<RefPtr<WebCLEvent>> eventWaitList; WebCLEvent* event = nullptr; { if (info.Length() > 0 && !V8WebCLImage::hasInstance(info[0], info.GetIsolate())) { exceptionState.throwTypeError("parameter 1 is not of type 'WebCLImage'."); exceptionState.throwIfNeeded(); return; } srcImage = V8WebCLImage::toImplWithTypeCheck(info.GetIsolate(), info[0]); if (info.Length() > 1 && !V8WebCLBuffer::hasInstance(info[1], info.GetIsolate())) { exceptionState.throwTypeError("parameter 2 is not of type 'WebCLBuffer'."); exceptionState.throwIfNeeded(); return; } dstBuffer = V8WebCLBuffer::toImplWithTypeCheck(info.GetIsolate(), info[1]); srcOrigin = toImplArray<unsigned>(info[2], 3, info.GetIsolate(), exceptionState); if(exceptionState.throwIfNeeded()) return; srcRegion = toImplArray<unsigned>(info[3], 4, info.GetIsolate(), exceptionState); if(exceptionState.throwIfNeeded()) return; dstOffset = toUInt32(info.GetIsolate(), info[4], EnforceRange, exceptionState); if(exceptionState.throwIfNeeded()) return; if (info.Length() > 5 && !isUndefinedOrNull(info[5])) { eventWaitList = toRefPtrNativeArray<WebCLEvent, V8WebCLEvent>(info[5], 6, info.GetIsolate(), exceptionState); if(exceptionState.throwIfNeeded()) return; } if (info.Length() > 6) { if (!isUndefinedOrNull(info[6]) && !V8WebCLEvent::hasInstance(info[6], info.GetIsolate())) { exceptionState.throwTypeError("parameter 7 is not of type 'WebCLEvent'."); exceptionState.throwIfNeeded(); return; } event = V8WebCLEvent::toImplWithTypeCheck(info.GetIsolate(), info[6]); } } impl->enqueueCopyImageToBuffer(srcImage, dstBuffer, srcOrigin, srcRegion, dstOffset, eventWaitList, event, exceptionState); if (exceptionState.hadException()) exceptionState.throwIfNeeded(); } void V8WebCLCommandQueue::enqueueCopyBufferToImageMethodCustom(const v8::FunctionCallbackInfo<v8::Value>& info) { ExceptionState exceptionState(ExceptionState::ExecutionContext, "enqueueCopyBufferToImage", "WebCLCommandQueue", info.Holder(), info.GetIsolate()); if (UNLIKELY(info.Length() < 5)) { setMinimumArityTypeError(exceptionState, 5, info.Length()); exceptionState.throwIfNeeded(); return; } WebCLCommandQueue* impl = V8WebCLCommandQueue::toImpl(info.Holder()); WebCLBuffer* srcBuffer; WebCLImage* dstImage; unsigned srcOffset; Vector<unsigned> dstOrigin; Vector<unsigned> dstRegion; Vector<RefPtr<WebCLEvent>> eventWaitList; WebCLEvent* event = nullptr; { if (info.Length() > 0 && !V8WebCLBuffer::hasInstance(info[0], info.GetIsolate())) { exceptionState.throwTypeError("parameter 1 is not of type 'WebCLBuffer'."); exceptionState.throwIfNeeded(); return; } srcBuffer = V8WebCLBuffer::toImplWithTypeCheck(info.GetIsolate(), info[0]); if (info.Length() > 1 && !V8WebCLImage::hasInstance(info[1], info.GetIsolate())) { exceptionState.throwTypeError("parameter 2 is not of type 'WebCLImage'."); exceptionState.throwIfNeeded(); return; } dstImage = V8WebCLImage::toImplWithTypeCheck(info.GetIsolate(), info[1]); srcOffset = toUInt32(info.GetIsolate(), info[2], EnforceRange, exceptionState); if(exceptionState.throwIfNeeded()) return; dstOrigin = toImplArray<unsigned>(info[3], 4, info.GetIsolate(), exceptionState); if(exceptionState.throwIfNeeded()) return; dstRegion = toImplArray<unsigned>(info[4], 5, info.GetIsolate(), exceptionState); if(exceptionState.throwIfNeeded()) return; if (info.Length() > 5 && !isUndefinedOrNull(info[5])) { eventWaitList = toRefPtrNativeArray<WebCLEvent, V8WebCLEvent>(info[5], 6, info.GetIsolate(), exceptionState); if(exceptionState.throwIfNeeded()) return; } if (info.Length() > 6) { if (!isUndefinedOrNull(info[6]) && !V8WebCLEvent::hasInstance(info[6], info.GetIsolate())) { exceptionState.throwTypeError("parameter 7 is not of type 'WebCLEvent'."); exceptionState.throwIfNeeded(); return; } event = V8WebCLEvent::toImplWithTypeCheck(info.GetIsolate(), info[6]); } } impl->enqueueCopyBufferToImage(srcBuffer, dstImage, srcOffset, dstOrigin, dstRegion, eventWaitList, event, exceptionState); if (exceptionState.hadException()) exceptionState.throwIfNeeded(); } static void enqueueReadBuffer1Method(const v8::FunctionCallbackInfo<v8::Value>& info) { ExceptionState exceptionState(ExceptionState::ExecutionContext, "enqueueReadBuffer", "WebCLCommandQueue", info.Holder(), info.GetIsolate()); if (UNLIKELY(info.Length() < 5)) { setMinimumArityTypeError(exceptionState, 5, info.Length()); exceptionState.throwIfNeeded(); return; } WebCLCommandQueue* impl = V8WebCLCommandQueue::toImpl(info.Holder()); WebCLBuffer* buffer; bool blockingRead; unsigned bufferOffset; unsigned numBytes; HTMLCanvasElement* canvas; Vector<RefPtr<WebCLEvent>> eventWaitList; WebCLEvent* event = nullptr; { if (info.Length() > 0 && !V8WebCLBuffer::hasInstance(info[0], info.GetIsolate())) { exceptionState.throwTypeError("parameter 1 is not of type 'WebCLBuffer'."); exceptionState.throwIfNeeded(); return; } buffer = V8WebCLBuffer::toImplWithTypeCheck(info.GetIsolate(), info[0]); blockingRead = info[1]->BooleanValue(); bufferOffset = toUInt32(info.GetIsolate(), info[2], EnforceRange, exceptionState); if(exceptionState.throwIfNeeded()) return; numBytes = toUInt32(info.GetIsolate(), info[3], EnforceRange, exceptionState); if(exceptionState.throwIfNeeded()) return; if (info.Length() > 4 && !V8HTMLCanvasElement::hasInstance(info[4], info.GetIsolate())) { exceptionState.throwTypeError("parameter 5 is not of type 'HTMLCanvasElement'."); exceptionState.throwIfNeeded(); return; } canvas = V8HTMLCanvasElement::toImplWithTypeCheck(info.GetIsolate(), info[4]); if (info.Length() > 5 && !isUndefinedOrNull(info[5])) { eventWaitList = toRefPtrNativeArray<WebCLEvent, V8WebCLEvent>(info[5], 6, info.GetIsolate(), exceptionState); if(exceptionState.throwIfNeeded()) return; } if (info.Length() > 6) { if (!isUndefinedOrNull(info[6]) && !V8WebCLEvent::hasInstance(info[6], info.GetIsolate())) { exceptionState.throwTypeError("parameter 7 is not of type 'WebCLEvent'."); exceptionState.throwIfNeeded(); return; } event = V8WebCLEvent::toImplWithTypeCheck(info.GetIsolate(), info[6]); } } impl->enqueueReadBuffer(buffer, blockingRead, bufferOffset, numBytes, canvas, eventWaitList, event, exceptionState); if (exceptionState.hadException()) exceptionState.throwIfNeeded(); } static void enqueueReadBuffer2Method(const v8::FunctionCallbackInfo<v8::Value>& info) { ExceptionState exceptionState(ExceptionState::ExecutionContext, "enqueueReadBuffer", "WebCLCommandQueue", info.Holder(), info.GetIsolate()); if (UNLIKELY(info.Length() < 5)) { setMinimumArityTypeError(exceptionState, 5, info.Length()); exceptionState.throwIfNeeded(); return; } WebCLCommandQueue* impl = V8WebCLCommandQueue::toImpl(info.Holder()); WebCLBuffer* buffer; bool blockingRead; unsigned bufferOffset; unsigned numBytes; DOMArrayBufferView* hostPtr; Vector<RefPtr<WebCLEvent>> eventWaitList; WebCLEvent* event = nullptr; { if (info.Length() > 0 && !V8WebCLBuffer::hasInstance(info[0], info.GetIsolate())) { exceptionState.throwTypeError("parameter 1 is not of type 'WebCLBuffer'."); exceptionState.throwIfNeeded(); return; } buffer = V8WebCLBuffer::toImplWithTypeCheck(info.GetIsolate(), info[0]); blockingRead = info[1]->BooleanValue(); bufferOffset = toUInt32(info.GetIsolate(), info[2], EnforceRange, exceptionState); if(exceptionState.throwIfNeeded()) return; numBytes = toUInt32(info.GetIsolate(), info[3], EnforceRange, exceptionState); if(exceptionState.throwIfNeeded()) return; if (info.Length() > 4 && !V8ArrayBufferView::hasInstance(info[4], info.GetIsolate())) { exceptionState.throwTypeError("parameter 5 is not of type 'ArrayBufferView'."); exceptionState.throwIfNeeded(); return; } hostPtr = info[4]->IsArrayBufferView() ? V8ArrayBufferView::toImpl(v8::Handle<v8::ArrayBufferView>::Cast(info[4])) : 0; if (info.Length() > 5 && !isUndefinedOrNull(info[5])) { eventWaitList = toRefPtrNativeArray<WebCLEvent, V8WebCLEvent>(info[5], 6, info.GetIsolate(), exceptionState); if(exceptionState.throwIfNeeded()) return; } if (info.Length() > 6) { if (!isUndefinedOrNull(info[6]) && !V8WebCLEvent::hasInstance(info[6], info.GetIsolate())) { exceptionState.throwTypeError("parameter 7 is not of type 'WebCLEvent'."); exceptionState.throwIfNeeded(); return; } event = V8WebCLEvent::toImplWithTypeCheck(info.GetIsolate(), info[6]); } } impl->enqueueReadBuffer(buffer, blockingRead, bufferOffset, numBytes, hostPtr, eventWaitList, event, exceptionState); if (exceptionState.hadException()) exceptionState.throwIfNeeded(); } void V8WebCLCommandQueue::enqueueReadBufferMethodCustom(const v8::FunctionCallbackInfo<v8::Value>& info) { ExceptionState exceptionState(ExceptionState::ExecutionContext, "enqueueReadBuffer", "WebCLCommandQueue", info.Holder(), info.GetIsolate()); switch (std::min(5, info.Length())) { case 5: if (V8HTMLCanvasElement::hasInstance(info[4], info.GetIsolate())) { enqueueReadBuffer1Method(info); return; } enqueueReadBuffer2Method(info); return; default: exceptionState.throwTypeError(ExceptionMessages::notEnoughArguments(5, info.Length())); exceptionState.throwIfNeeded(); return; } exceptionState.throwWebCLException(WebCLException::INVALID_ARG_VALUE, WebCLException::invalidArgValueMessage); exceptionState.throwIfNeeded(); } static void enqueueReadBufferRect1Method(const v8::FunctionCallbackInfo<v8::Value>& info) { ExceptionState exceptionState(ExceptionState::ExecutionContext, "enqueueReadBufferRect", "WebCLCommandQueue", info.Holder(), info.GetIsolate()); if (UNLIKELY(info.Length() < 8)) { setMinimumArityTypeError(exceptionState, 8, info.Length()); exceptionState.throwIfNeeded(); return; } WebCLCommandQueue* impl = V8WebCLCommandQueue::toImpl(info.Holder()); WebCLBuffer* buffer; bool blockingRead; Vector<unsigned> bufferOrigin; Vector<unsigned> hostOrigin; Vector<unsigned> region; unsigned hostRowPitch; unsigned hostSlicePitch; HTMLCanvasElement* canvas; Vector<RefPtr<WebCLEvent>> eventWaitList; WebCLEvent* event = nullptr; { if (info.Length() > 0 && !V8WebCLBuffer::hasInstance(info[0], info.GetIsolate())) { exceptionState.throwTypeError("parameter 1 is not of type 'WebCLBuffer'."); exceptionState.throwIfNeeded(); return; } buffer = V8WebCLBuffer::toImplWithTypeCheck(info.GetIsolate(), info[0]); blockingRead = info[1]->BooleanValue(); bufferOrigin = toImplArray<unsigned>(info[2], 3, info.GetIsolate(), exceptionState); if(exceptionState.throwIfNeeded()) return; hostOrigin = toImplArray<unsigned>(info[3], 4, info.GetIsolate(), exceptionState); if(exceptionState.throwIfNeeded()) return; region = toImplArray<unsigned>(info[4], 5, info.GetIsolate(), exceptionState); if(exceptionState.throwIfNeeded()) return; hostRowPitch = toUInt32(info.GetIsolate(), info[5], EnforceRange, exceptionState); if(exceptionState.throwIfNeeded()) return; hostSlicePitch = toUInt32(info.GetIsolate(), info[6], EnforceRange, exceptionState); if(exceptionState.throwIfNeeded()) return; if (info.Length() > 7 && !V8HTMLCanvasElement::hasInstance(info[7], info.GetIsolate())) { exceptionState.throwTypeError("parameter 8 is not of type 'HTMLCanvasElement'."); exceptionState.throwIfNeeded(); return; } canvas = V8HTMLCanvasElement::toImplWithTypeCheck(info.GetIsolate(), info[7]); if (info.Length() > 8 && !isUndefinedOrNull(info[8])) { eventWaitList = toRefPtrNativeArray<WebCLEvent, V8WebCLEvent>(info[8], 9, info.GetIsolate(), exceptionState); if(exceptionState.throwIfNeeded()) return; } if (info.Length() > 9) { if (!isUndefinedOrNull(info[9]) && !V8WebCLEvent::hasInstance(info[9], info.GetIsolate())) { exceptionState.throwTypeError("parameter 10 is not of type 'WebCLEvent'."); exceptionState.throwIfNeeded(); return; } event = V8WebCLEvent::toImplWithTypeCheck(info.GetIsolate(), info[9]); } } impl->enqueueReadBufferRect(buffer, blockingRead, bufferOrigin, hostOrigin, region, hostRowPitch, hostSlicePitch, canvas, eventWaitList, event, exceptionState); if (exceptionState.hadException()) exceptionState.throwIfNeeded(); } static void enqueueReadBufferRect2Method(const v8::FunctionCallbackInfo<v8::Value>& info) { ExceptionState exceptionState(ExceptionState::ExecutionContext, "enqueueReadBufferRect", "WebCLCommandQueue", info.Holder(), info.GetIsolate()); if (UNLIKELY(info.Length() < 10)) { setMinimumArityTypeError(exceptionState, 10, info.Length()); exceptionState.throwIfNeeded(); return; } WebCLCommandQueue* impl = V8WebCLCommandQueue::toImpl(info.Holder()); WebCLBuffer* buffer; bool blockingRead; Vector<unsigned> bufferOrigin; Vector<unsigned> hostOrigin; Vector<unsigned> region; unsigned bufferRowPitch; unsigned bufferSlicePitch; unsigned hostRowPitch; unsigned hostSlicePitch; DOMArrayBufferView* hostPtr; Vector<RefPtr<WebCLEvent>> eventWaitList; WebCLEvent* event = nullptr; { if (info.Length() > 0 && !V8WebCLBuffer::hasInstance(info[0], info.GetIsolate())) { exceptionState.throwTypeError("parameter 1 is not of type 'WebCLBuffer'."); exceptionState.throwIfNeeded(); return; } buffer = V8WebCLBuffer::toImplWithTypeCheck(info.GetIsolate(), info[0]); blockingRead = info[1]->BooleanValue(); bufferOrigin = toImplArray<unsigned>(info[2], 3, info.GetIsolate(), exceptionState); if(exceptionState.throwIfNeeded()) return; hostOrigin = toImplArray<unsigned>(info[3], 4, info.GetIsolate(), exceptionState); if(exceptionState.throwIfNeeded()) return; region = toImplArray<unsigned>(info[4], 5, info.GetIsolate(), exceptionState); if(exceptionState.throwIfNeeded()) return; bufferRowPitch = toUInt32(info.GetIsolate(), info[5], EnforceRange, exceptionState); if(exceptionState.throwIfNeeded()) return; bufferSlicePitch = toUInt32(info.GetIsolate(), info[6], EnforceRange, exceptionState); if(exceptionState.throwIfNeeded()) return; hostRowPitch = toUInt32(info.GetIsolate(), info[7], EnforceRange, exceptionState); if(exceptionState.throwIfNeeded()) return; hostSlicePitch = toUInt32(info.GetIsolate(), info[8], EnforceRange, exceptionState); if(exceptionState.throwIfNeeded()) return; if (info.Length() > 9 && !V8ArrayBufferView::hasInstance(info[9], info.GetIsolate())) { exceptionState.throwTypeError("parameter 10 is not of type 'ArrayBufferView'."); exceptionState.throwIfNeeded(); return; } hostPtr = info[9]->IsArrayBufferView() ? V8ArrayBufferView::toImpl(v8::Handle<v8::ArrayBufferView>::Cast(info[9])) : 0; if (info.Length() > 10 && !isUndefinedOrNull(info[10])) { eventWaitList = toRefPtrNativeArray<WebCLEvent, V8WebCLEvent>(info[10], 11, info.GetIsolate(), exceptionState); if(exceptionState.throwIfNeeded()) return; } if (info.Length() > 11) { if (!isUndefinedOrNull(info[11]) && !V8WebCLEvent::hasInstance(info[11], info.GetIsolate())) { exceptionState.throwTypeError("parameter 12 is not of type 'WebCLEvent'."); exceptionState.throwIfNeeded(); return; } event = V8WebCLEvent::toImplWithTypeCheck(info.GetIsolate(), info[11]); } } impl->enqueueReadBufferRect(buffer, blockingRead, bufferOrigin, hostOrigin, region, bufferRowPitch, bufferSlicePitch, hostRowPitch, hostSlicePitch, hostPtr, eventWaitList, event, exceptionState); if (exceptionState.hadException()) exceptionState.throwIfNeeded(); } void V8WebCLCommandQueue::enqueueReadBufferRectMethodCustom(const v8::FunctionCallbackInfo<v8::Value>& info) { ExceptionState exceptionState(ExceptionState::ExecutionContext, "enqueueReadBufferRect", "WebCLCommandQueue", info.Holder(), info.GetIsolate()); switch (std::min(8, info.Length())) { case 8: if (V8HTMLCanvasElement::hasInstance(info[7], info.GetIsolate())) { enqueueReadBufferRect1Method(info); return; } enqueueReadBufferRect2Method(info); return; default: exceptionState.throwTypeError(ExceptionMessages::notEnoughArguments(8, info.Length())); exceptionState.throwIfNeeded(); return; } exceptionState.throwWebCLException(WebCLException::INVALID_ARG_VALUE, WebCLException::invalidArgValueMessage); exceptionState.throwIfNeeded(); } static void enqueueReadImage1Method(const v8::FunctionCallbackInfo<v8::Value>& info) { ExceptionState exceptionState(ExceptionState::ExecutionContext, "enqueueReadImage", "WebCLCommandQueue", info.Holder(), info.GetIsolate()); if (UNLIKELY(info.Length() < 5)) { setMinimumArityTypeError(exceptionState, 5, info.Length()); exceptionState.throwIfNeeded(); return; } WebCLCommandQueue* impl = V8WebCLCommandQueue::toImpl(info.Holder()); WebCLImage* image; bool blockingRead; Vector<unsigned> origin; Vector<unsigned> region; HTMLCanvasElement* canvas; Vector<RefPtr<WebCLEvent>> eventWaitList; WebCLEvent* event = nullptr; { if (info.Length() > 0 && !V8WebCLImage::hasInstance(info[0], info.GetIsolate())) { exceptionState.throwTypeError("parameter 1 is not of type 'WebCLImage'."); exceptionState.throwIfNeeded(); return; } image = V8WebCLImage::toImplWithTypeCheck(info.GetIsolate(), info[0]); blockingRead = info[1]->BooleanValue(); origin = toImplArray<unsigned>(info[2], 3, info.GetIsolate(), exceptionState); if(exceptionState.throwIfNeeded()) return; region = toImplArray<unsigned>(info[3], 4, info.GetIsolate(), exceptionState); if(exceptionState.throwIfNeeded()) return; if (info.Length() > 4 && !V8HTMLCanvasElement::hasInstance(info[4], info.GetIsolate())) { exceptionState.throwTypeError("parameter 5 is not of type 'HTMLCanvasElement'."); exceptionState.throwIfNeeded(); return; } canvas = V8HTMLCanvasElement::toImplWithTypeCheck(info.GetIsolate(), info[4]); if (info.Length() > 5 && !isUndefinedOrNull(info[5])) { eventWaitList = toRefPtrNativeArray<WebCLEvent, V8WebCLEvent>(info[5], 6, info.GetIsolate(), exceptionState); if(exceptionState.throwIfNeeded()) return; } if (info.Length() > 6) { if (!isUndefinedOrNull(info[6]) && !V8WebCLEvent::hasInstance(info[6], info.GetIsolate())) { exceptionState.throwTypeError("parameter 7 is not of type 'WebCLEvent'."); exceptionState.throwIfNeeded(); return; } event = V8WebCLEvent::toImplWithTypeCheck(info.GetIsolate(), info[6]); } } impl->enqueueReadImage(image, blockingRead, origin, region, canvas, eventWaitList, event, exceptionState); if (exceptionState.hadException()) exceptionState.throwIfNeeded(); } static void enqueueReadImage2Method(const v8::FunctionCallbackInfo<v8::Value>& info) { ExceptionState exceptionState(ExceptionState::ExecutionContext, "enqueueReadImage", "WebCLCommandQueue", info.Holder(), info.GetIsolate()); if (UNLIKELY(info.Length() < 6)) { setMinimumArityTypeError(exceptionState, 6, info.Length()); exceptionState.throwIfNeeded(); return; } WebCLCommandQueue* impl = V8WebCLCommandQueue::toImpl(info.Holder()); WebCLImage* image; bool blockingRead; Vector<unsigned> origin; Vector<unsigned> region; unsigned hostRowPitch; DOMArrayBufferView* hostPtr; Vector<RefPtr<WebCLEvent>> eventWaitList; WebCLEvent* event = nullptr; { if (info.Length() > 0 && !V8WebCLImage::hasInstance(info[0], info.GetIsolate())) { exceptionState.throwTypeError("parameter 1 is not of type 'WebCLImage'."); exceptionState.throwIfNeeded(); return; } image = V8WebCLImage::toImplWithTypeCheck(info.GetIsolate(), info[0]); blockingRead = info[1]->BooleanValue(); origin = toImplArray<unsigned>(info[2], 3, info.GetIsolate(), exceptionState); if(exceptionState.throwIfNeeded()) return; region = toImplArray<unsigned>(info[3], 4, info.GetIsolate(), exceptionState); if(exceptionState.throwIfNeeded()) return; hostRowPitch = toUInt32(info.GetIsolate(), info[4], EnforceRange, exceptionState); if(exceptionState.throwIfNeeded()) return; if (info.Length() > 5 && !V8ArrayBufferView::hasInstance(info[5], info.GetIsolate())) { exceptionState.throwTypeError("parameter 6 is not of type 'ArrayBufferView'."); exceptionState.throwIfNeeded(); return; } hostPtr = info[5]->IsArrayBufferView() ? V8ArrayBufferView::toImpl(v8::Handle<v8::ArrayBufferView>::Cast(info[5])) : 0; if (info.Length() > 6 && !isUndefinedOrNull(info[6])) { eventWaitList = toRefPtrNativeArray<WebCLEvent, V8WebCLEvent>(info[6], 7, info.GetIsolate(), exceptionState); if(exceptionState.throwIfNeeded()) return; } if (info.Length() > 7) { if (!isUndefinedOrNull(info[7]) && !V8WebCLEvent::hasInstance(info[7], info.GetIsolate())) { exceptionState.throwTypeError("parameter 8 is not of type 'WebCLEvent'."); exceptionState.throwIfNeeded(); return; } event = V8WebCLEvent::toImplWithTypeCheck(info.GetIsolate(), info[7]); } } impl->enqueueReadImage(image, blockingRead, origin, region, hostRowPitch, hostPtr, eventWaitList, event, exceptionState); if (exceptionState.hadException()) exceptionState.throwIfNeeded(); } void V8WebCLCommandQueue::enqueueReadImageMethodCustom(const v8::FunctionCallbackInfo<v8::Value>& info) { ExceptionState exceptionState(ExceptionState::ExecutionContext, "enqueueReadImage", "WebCLCommandQueue", info.Holder(), info.GetIsolate()); switch (std::min(5, info.Length())) { case 5: if (V8HTMLCanvasElement::hasInstance(info[4], info.GetIsolate())) { enqueueReadImage1Method(info); return; } enqueueReadImage2Method(info); return; default: exceptionState.throwTypeError(ExceptionMessages::notEnoughArguments(5, info.Length())); exceptionState.throwIfNeeded(); return; } exceptionState.throwWebCLException(WebCLException::INVALID_ARG_VALUE, WebCLException::invalidArgValueMessage); exceptionState.throwIfNeeded(); } static void enqueueWriteBuffer1Method(const v8::FunctionCallbackInfo<v8::Value>& info) { ExceptionState exceptionState(ExceptionState::ExecutionContext, "enqueueWriteBuffer", "WebCLCommandQueue", info.Holder(), info.GetIsolate()); if (UNLIKELY(info.Length() < 4)) { setMinimumArityTypeError(exceptionState, 4, info.Length()); exceptionState.throwIfNeeded(); return; } WebCLCommandQueue* impl = V8WebCLCommandQueue::toImpl(info.Holder()); WebCLBuffer* buffer; bool blockingWrite; unsigned bufferOffset; ImageData* imageData = nullptr; HTMLCanvasElement* canvas = nullptr; HTMLImageElement* image = nullptr; Vector<RefPtr<WebCLEvent>> eventWaitList; WebCLEvent* event = nullptr; { if (info.Length() > 0 && !V8WebCLBuffer::hasInstance(info[0], info.GetIsolate())) { exceptionState.throwTypeError("parameter 1 is not of type 'WebCLBuffer'."); exceptionState.throwIfNeeded(); return; } buffer = V8WebCLBuffer::toImplWithTypeCheck(info.GetIsolate(), info[0]); blockingWrite = info[1]->BooleanValue(); bufferOffset = toUInt32(info.GetIsolate(), info[2], EnforceRange, exceptionState); if(exceptionState.throwIfNeeded()) return; if (V8ImageData::hasInstance(info[3], info.GetIsolate())) { if (info.Length() > 3 && !V8ImageData::hasInstance(info[3], info.GetIsolate())) { exceptionState.throwTypeError("parameter 4 is not of type 'ImageData'."); exceptionState.throwIfNeeded(); return; } imageData = V8ImageData::toImplWithTypeCheck(info.GetIsolate(), info[3]); } else if (V8HTMLCanvasElement::hasInstance(info[3], info.GetIsolate())) { if (info.Length() > 3 && !V8HTMLCanvasElement::hasInstance(info[3], info.GetIsolate())) { exceptionState.throwTypeError("parameter 4 is not of type 'HTMLCanvasElement'."); exceptionState.throwIfNeeded(); return; } canvas = V8HTMLCanvasElement::toImplWithTypeCheck(info.GetIsolate(), info[3]); } else if (V8HTMLImageElement::hasInstance(info[3], info.GetIsolate())) { if (info.Length() > 3 && !V8HTMLImageElement::hasInstance(info[3], info.GetIsolate())) { exceptionState.throwTypeError("parameter 4 is not of type 'HTMLImageElement'."); exceptionState.throwIfNeeded(); return; } image = V8HTMLImageElement::toImplWithTypeCheck(info.GetIsolate(), info[3]); } if (info.Length() > 4 && !isUndefinedOrNull(info[4])) { eventWaitList = toRefPtrNativeArray<WebCLEvent, V8WebCLEvent>(info[4], 5, info.GetIsolate(), exceptionState); if(exceptionState.throwIfNeeded()) return; } if (info.Length() > 5) { if (!isUndefinedOrNull(info[5]) && !V8WebCLEvent::hasInstance(info[5], info.GetIsolate())) { exceptionState.throwTypeError("parameter 6 is not of type 'WebCLEvent'."); exceptionState.throwIfNeeded(); return; } event = V8WebCLEvent::toImplWithTypeCheck(info.GetIsolate(), info[5]); } } if (V8ImageData::hasInstance(info[3], info.GetIsolate())) impl->enqueueWriteBuffer(buffer, blockingWrite, bufferOffset, imageData, eventWaitList, event, exceptionState); else if (V8HTMLCanvasElement::hasInstance(info[3], info.GetIsolate())) impl->enqueueWriteBuffer(buffer, blockingWrite, bufferOffset, canvas, eventWaitList, event, exceptionState); else if (V8HTMLImageElement::hasInstance(info[3], info.GetIsolate())) impl->enqueueWriteBuffer(buffer, blockingWrite, bufferOffset, image, eventWaitList, event, exceptionState); if (exceptionState.hadException()) exceptionState.throwIfNeeded(); } static void enqueueWriteBuffer2Method(const v8::FunctionCallbackInfo<v8::Value>& info) { ExceptionState exceptionState(ExceptionState::ExecutionContext, "enqueueWriteBuffer", "WebCLCommandQueue", info.Holder(), info.GetIsolate()); if (UNLIKELY(info.Length() < 5)) { setMinimumArityTypeError(exceptionState, 5, info.Length()); exceptionState.throwIfNeeded(); return; } WebCLCommandQueue* impl = V8WebCLCommandQueue::toImpl(info.Holder()); WebCLBuffer* bufferId; bool blockingWrite; unsigned bufferOffset; unsigned numBytes; DOMArrayBufferView* hostPtr; Vector<RefPtr<WebCLEvent>> eventWaitList; WebCLEvent* event = nullptr; { if (info.Length() > 0 && !V8WebCLBuffer::hasInstance(info[0], info.GetIsolate())) { exceptionState.throwTypeError("parameter 1 is not of type 'WebCLBuffer'."); exceptionState.throwIfNeeded(); return; } bufferId = V8WebCLBuffer::toImplWithTypeCheck(info.GetIsolate(), info[0]); blockingWrite = info[1]->BooleanValue(); bufferOffset = toUInt32(info.GetIsolate(), info[2], EnforceRange, exceptionState); if(exceptionState.throwIfNeeded()) return; numBytes = toUInt32(info.GetIsolate(), info[3], EnforceRange, exceptionState); if(exceptionState.throwIfNeeded()) return; if (info.Length() > 4 && !V8ArrayBufferView::hasInstance(info[4], info.GetIsolate())) { exceptionState.throwTypeError("parameter 5 is not of type 'ArrayBufferView'."); exceptionState.throwIfNeeded(); return; } hostPtr = info[4]->IsArrayBufferView() ? V8ArrayBufferView::toImpl(v8::Handle<v8::ArrayBufferView>::Cast(info[4])) : 0; if (info.Length() > 5 && !isUndefinedOrNull(info[5])) { eventWaitList = toRefPtrNativeArray<WebCLEvent, V8WebCLEvent>(info[5], 6, info.GetIsolate(), exceptionState); if(exceptionState.throwIfNeeded()) return; } if (info.Length() > 6) { if (!isUndefinedOrNull(info[6]) && !V8WebCLEvent::hasInstance(info[6], info.GetIsolate())) { exceptionState.throwTypeError("parameter 7 is not of type 'WebCLEvent'."); exceptionState.throwIfNeeded(); return; } event = V8WebCLEvent::toImplWithTypeCheck(info.GetIsolate(), info[6]); } } impl->enqueueWriteBuffer(bufferId, blockingWrite, bufferOffset, numBytes, hostPtr, eventWaitList, event, exceptionState); if (exceptionState.hadException()) exceptionState.throwIfNeeded(); } void V8WebCLCommandQueue::enqueueWriteBufferMethodCustom(const v8::FunctionCallbackInfo<v8::Value>& info) { ExceptionState exceptionState(ExceptionState::ExecutionContext, "enqueueWriteBuffer", "WebCLCommandQueue", info.Holder(), info.GetIsolate()); switch (std::min(4, info.Length())) { case 4: if (V8ImageData::hasInstance(info[3], info.GetIsolate()) || V8HTMLCanvasElement::hasInstance(info[3], info.GetIsolate()) || V8HTMLImageElement::hasInstance(info[3], info.GetIsolate())) { enqueueWriteBuffer1Method(info); return; } enqueueWriteBuffer2Method(info); return; default: exceptionState.throwTypeError(ExceptionMessages::notEnoughArguments(4, info.Length())); exceptionState.throwIfNeeded(); return; } exceptionState.throwWebCLException(WebCLException::INVALID_ARG_VALUE, WebCLException::invalidArgValueMessage); exceptionState.throwIfNeeded(); } static void enqueueWriteBufferRect1Method(const v8::FunctionCallbackInfo<v8::Value>& info) { ExceptionState exceptionState(ExceptionState::ExecutionContext, "enqueueWriteBufferRect", "WebCLCommandQueue", info.Holder(), info.GetIsolate()); if (UNLIKELY(info.Length() < 8)) { setMinimumArityTypeError(exceptionState, 8, info.Length()); exceptionState.throwIfNeeded(); return; } WebCLCommandQueue* impl = V8WebCLCommandQueue::toImpl(info.Holder()); WebCLBuffer* buffer; bool blockingWrite; Vector<unsigned> bufferOrigin; Vector<unsigned> hostOrigin; Vector<unsigned> region; unsigned hostRowPitch; unsigned hostSlicePitch; ImageData* imageData = nullptr; HTMLCanvasElement* canvas = nullptr; HTMLImageElement* image = nullptr; Vector<RefPtr<WebCLEvent>> eventWaitList; WebCLEvent* event = nullptr; { if (info.Length() > 0 && !V8WebCLBuffer::hasInstance(info[0], info.GetIsolate())) { exceptionState.throwTypeError("parameter 1 is not of type 'WebCLBuffer'."); exceptionState.throwIfNeeded(); return; } buffer = V8WebCLBuffer::toImplWithTypeCheck(info.GetIsolate(), info[0]); blockingWrite = info[1]->BooleanValue(); bufferOrigin = toImplArray<unsigned>(info[2], 3, info.GetIsolate(), exceptionState); if(exceptionState.throwIfNeeded()) return; hostOrigin = toImplArray<unsigned>(info[3], 4, info.GetIsolate(), exceptionState); if(exceptionState.throwIfNeeded()) return; region = toImplArray<unsigned>(info[4], 5, info.GetIsolate(), exceptionState); if(exceptionState.throwIfNeeded()) return; hostRowPitch = toUInt32(info.GetIsolate(), info[5], EnforceRange, exceptionState); if(exceptionState.throwIfNeeded()) return; hostSlicePitch = toUInt32(info.GetIsolate(), info[6], EnforceRange, exceptionState); if(exceptionState.throwIfNeeded()) return; if (V8ImageData::hasInstance(info[7], info.GetIsolate())) { if (info.Length() > 7 && !V8ImageData::hasInstance(info[7], info.GetIsolate())) { exceptionState.throwTypeError("parameter 8 is not of type 'ImageData'."); exceptionState.throwIfNeeded(); return; } imageData = V8ImageData::toImplWithTypeCheck(info.GetIsolate(), info[7]); } else if (V8HTMLCanvasElement::hasInstance(info[7], info.GetIsolate())) { if (info.Length() > 7 && !V8HTMLCanvasElement::hasInstance(info[7], info.GetIsolate())) { exceptionState.throwTypeError("parameter 8 is not of type 'HTMLCanvasElement'."); exceptionState.throwIfNeeded(); return; } canvas = V8HTMLCanvasElement::toImplWithTypeCheck(info.GetIsolate(), info[7]); } else if (V8HTMLImageElement::hasInstance(info[7], info.GetIsolate())) { if (info.Length() > 7 && !V8HTMLImageElement::hasInstance(info[7], info.GetIsolate())) { exceptionState.throwTypeError("parameter 8 is not of type 'HTMLImageElement'."); exceptionState.throwIfNeeded(); return; } image = V8HTMLImageElement::toImplWithTypeCheck(info.GetIsolate(), info[7]); } if (info.Length() > 8 && !isUndefinedOrNull(info[8])) { eventWaitList = toRefPtrNativeArray<WebCLEvent, V8WebCLEvent>(info[8], 9, info.GetIsolate(), exceptionState); if(exceptionState.throwIfNeeded()) return; } if (info.Length() > 9) { if (!isUndefinedOrNull(info[9]) && !V8WebCLEvent::hasInstance(info[9], info.GetIsolate())) { exceptionState.throwTypeError("parameter 10 is not of type 'WebCLEvent'."); exceptionState.throwIfNeeded(); return; } event = V8WebCLEvent::toImplWithTypeCheck(info.GetIsolate(), info[9]); } } if (V8ImageData::hasInstance(info[7], info.GetIsolate())) impl->enqueueWriteBufferRect(buffer, blockingWrite, bufferOrigin, hostOrigin, region, hostRowPitch, hostSlicePitch, imageData, eventWaitList, event, exceptionState); else if (V8HTMLCanvasElement::hasInstance(info[7], info.GetIsolate())) impl->enqueueWriteBufferRect(buffer, blockingWrite, bufferOrigin, hostOrigin, region, hostRowPitch, hostSlicePitch, canvas, eventWaitList, event, exceptionState); else if (V8HTMLImageElement::hasInstance(info[7], info.GetIsolate())) impl->enqueueWriteBufferRect(buffer, blockingWrite, bufferOrigin, hostOrigin, region, hostRowPitch, hostSlicePitch, image, eventWaitList, event, exceptionState); if (exceptionState.hadException()) exceptionState.throwIfNeeded(); } static void enqueueWriteBufferRect2Method(const v8::FunctionCallbackInfo<v8::Value>& info) { ExceptionState exceptionState(ExceptionState::ExecutionContext, "enqueueWriteBufferRect", "WebCLCommandQueue", info.Holder(), info.GetIsolate()); if (UNLIKELY(info.Length() < 10)) { setMinimumArityTypeError(exceptionState, 10, info.Length()); exceptionState.throwIfNeeded(); return; } WebCLCommandQueue* impl = V8WebCLCommandQueue::toImpl(info.Holder()); WebCLBuffer* buffer; bool blockingWrite; Vector<unsigned> bufferOrigin; Vector<unsigned> hostOrigin; Vector<unsigned> region; unsigned bufferRowPitch; unsigned bufferSlicePitch; unsigned hostRowPitch; unsigned hostSlicePitch; DOMArrayBufferView* hostPtr; Vector<RefPtr<WebCLEvent>> eventWaitList; WebCLEvent* event = nullptr; { if (info.Length() > 0 && !V8WebCLBuffer::hasInstance(info[0], info.GetIsolate())) { exceptionState.throwTypeError("parameter 1 is not of type 'WebCLBuffer'."); exceptionState.throwIfNeeded(); return; } buffer = V8WebCLBuffer::toImplWithTypeCheck(info.GetIsolate(), info[0]); blockingWrite = info[1]->BooleanValue(); bufferOrigin = toImplArray<unsigned>(info[2], 3, info.GetIsolate(), exceptionState); if(exceptionState.throwIfNeeded()) return; hostOrigin = toImplArray<unsigned>(info[3], 4, info.GetIsolate(), exceptionState); if(exceptionState.throwIfNeeded()) return; region = toImplArray<unsigned>(info[4], 5, info.GetIsolate(), exceptionState); if(exceptionState.throwIfNeeded()) return; bufferRowPitch = toUInt32(info.GetIsolate(), info[5], EnforceRange, exceptionState); if(exceptionState.throwIfNeeded()) return; bufferSlicePitch = toUInt32(info.GetIsolate(), info[6], EnforceRange, exceptionState); if(exceptionState.throwIfNeeded()) return; hostRowPitch = toUInt32(info.GetIsolate(), info[7], EnforceRange, exceptionState); if(exceptionState.throwIfNeeded()) return; hostSlicePitch = toUInt32(info.GetIsolate(), info[8], EnforceRange, exceptionState); if(exceptionState.throwIfNeeded()) return; if (info.Length() > 9 && !V8ArrayBufferView::hasInstance(info[9], info.GetIsolate())) { exceptionState.throwTypeError("parameter 10 is not of type 'ArrayBufferView'."); exceptionState.throwIfNeeded(); return; } hostPtr = info[9]->IsArrayBufferView() ? V8ArrayBufferView::toImpl(v8::Handle<v8::ArrayBufferView>::Cast(info[9])) : 0; if (info.Length() > 10 && !isUndefinedOrNull(info[10])) { eventWaitList = toRefPtrNativeArray<WebCLEvent, V8WebCLEvent>(info[10], 11, info.GetIsolate(), exceptionState); if(exceptionState.throwIfNeeded()) return; } if (info.Length() > 11) { if (!isUndefinedOrNull(info[11]) && !V8WebCLEvent::hasInstance(info[11], info.GetIsolate())) { exceptionState.throwTypeError("parameter 12 is not of type 'WebCLEvent'."); exceptionState.throwIfNeeded(); return; } event = V8WebCLEvent::toImplWithTypeCheck(info.GetIsolate(), info[11]); } } impl->enqueueWriteBufferRect(buffer, blockingWrite, bufferOrigin, hostOrigin, region, bufferRowPitch, bufferSlicePitch, hostRowPitch, hostSlicePitch, hostPtr, eventWaitList, event, exceptionState); if (exceptionState.hadException()) exceptionState.throwIfNeeded(); } void V8WebCLCommandQueue::enqueueWriteBufferRectMethodCustom(const v8::FunctionCallbackInfo<v8::Value>& info) { ExceptionState exceptionState(ExceptionState::ExecutionContext, "enqueueWriteBufferRect", "WebCLCommandQueue", info.Holder(), info.GetIsolate()); switch (std::min(8, info.Length())) { case 8: if (V8ImageData::hasInstance(info[7], info.GetIsolate()) || V8HTMLCanvasElement::hasInstance(info[7], info.GetIsolate()) || V8HTMLImageElement::hasInstance(info[7], info.GetIsolate())) { enqueueWriteBufferRect1Method(info); return; } enqueueWriteBufferRect2Method(info); return; default: exceptionState.throwTypeError(ExceptionMessages::notEnoughArguments(8, info.Length())); exceptionState.throwIfNeeded(); return; } exceptionState.throwWebCLException(WebCLException::INVALID_ARG_VALUE, WebCLException::invalidArgValueMessage); exceptionState.throwIfNeeded(); } static void enqueueWriteImage3Method(const v8::FunctionCallbackInfo<v8::Value>& info) { ExceptionState exceptionState(ExceptionState::ExecutionContext, "enqueueWriteImage", "WebCLCommandQueue", info.Holder(), info.GetIsolate()); if (UNLIKELY(info.Length() < 5)) { setMinimumArityTypeError(exceptionState, 5, info.Length()); exceptionState.throwIfNeeded(); return; } WebCLCommandQueue* impl = V8WebCLCommandQueue::toImpl(info.Holder()); WebCLImage* image; bool blockingWrite; Vector<unsigned> origin; Vector<unsigned> region; Vector<RefPtr<WebCLEvent>> eventWaitList; WebCLEvent* event = nullptr; { if (info.Length() > 0 && !V8WebCLImage::hasInstance(info[0], info.GetIsolate())) { exceptionState.throwTypeError("parameter 1 is not of type 'WebCLImage'."); exceptionState.throwIfNeeded(); return; } image = V8WebCLImage::toImplWithTypeCheck(info.GetIsolate(), info[0]); blockingWrite = info[1]->BooleanValue(); origin = toImplArray<unsigned>(info[2], 3, info.GetIsolate(), exceptionState); if(exceptionState.throwIfNeeded()) return; region = toImplArray<unsigned>(info[3], 4, info.GetIsolate(), exceptionState); if(exceptionState.throwIfNeeded()) return; if (info.Length() > 5 && !isUndefinedOrNull(info[5])) { eventWaitList = toRefPtrNativeArray<WebCLEvent, V8WebCLEvent>(info[5], 6, info.GetIsolate(), exceptionState); if(exceptionState.throwIfNeeded()) return; } if (info.Length() > 6) { if (!isUndefinedOrNull(info[6]) && !V8WebCLEvent::hasInstance(info[6], info.GetIsolate())) { exceptionState.throwTypeError("parameter 7 is not of type 'WebCLEvent'."); exceptionState.throwIfNeeded(); return; } event = V8WebCLEvent::toImplWithTypeCheck(info.GetIsolate(), info[6]); } } if (V8ImageData::hasInstance(info[4], info.GetIsolate())) { ImageData* imageData; if (info.Length() > 4 && !V8ImageData::hasInstance(info[4], info.GetIsolate())) { exceptionState.throwTypeError("parameter 5 is not of type 'ImageData'."); exceptionState.throwIfNeeded(); return; } imageData = V8ImageData::toImplWithTypeCheck(info.GetIsolate(), info[4]); impl->enqueueWriteImage(image, blockingWrite, origin, region, imageData, eventWaitList, event, exceptionState); } else if (V8HTMLCanvasElement::hasInstance(info[4], info.GetIsolate())) { HTMLCanvasElement* canvas; if (info.Length() > 4 && !V8HTMLCanvasElement::hasInstance(info[4], info.GetIsolate())) { exceptionState.throwTypeError("parameter 5 is not of type 'HTMLCanvasElement'."); exceptionState.throwIfNeeded(); return; } canvas = V8HTMLCanvasElement::toImplWithTypeCheck(info.GetIsolate(), info[4]); impl->enqueueWriteImage(image, blockingWrite, origin, region, canvas, eventWaitList, event, exceptionState); } else if (V8HTMLImageElement::hasInstance(info[4], info.GetIsolate())) { HTMLImageElement* imageElement; if (info.Length() > 4 && !V8HTMLImageElement::hasInstance(info[4], info.GetIsolate())) { exceptionState.throwTypeError("parameter 5 is not of type 'HTMLImageElement'."); exceptionState.throwIfNeeded(); return; } imageElement = V8HTMLImageElement::toImplWithTypeCheck(info.GetIsolate(), info[4]); impl->enqueueWriteImage(image, blockingWrite, origin, region, imageElement, eventWaitList, event, exceptionState); } if (exceptionState.hadException()) exceptionState.throwIfNeeded(); } static void enqueueWriteImage1Method(const v8::FunctionCallbackInfo<v8::Value>& info) { ExceptionState exceptionState(ExceptionState::ExecutionContext, "enqueueWriteImage", "WebCLCommandQueue", info.Holder(), info.GetIsolate()); if (UNLIKELY(info.Length() < 3)) { setMinimumArityTypeError(exceptionState, 3, info.Length()); exceptionState.throwIfNeeded(); return; } WebCLCommandQueue* impl = V8WebCLCommandQueue::toImpl(info.Holder()); WebCLImage* image; bool blockingWrite; HTMLVideoElement* video; Vector<RefPtr<WebCLEvent>> eventWaitList; WebCLEvent* event = nullptr; { if (info.Length() > 0 && !V8WebCLImage::hasInstance(info[0], info.GetIsolate())) { exceptionState.throwTypeError("parameter 1 is not of type 'WebCLImage'."); exceptionState.throwIfNeeded(); return; } image = V8WebCLImage::toImplWithTypeCheck(info.GetIsolate(), info[0]); blockingWrite = info[1]->BooleanValue(); if (info.Length() > 2 && !V8HTMLVideoElement::hasInstance(info[2], info.GetIsolate())) { exceptionState.throwTypeError("parameter 3 is not of type 'HTMLVideoElement'."); exceptionState.throwIfNeeded(); return; } video = V8HTMLVideoElement::toImplWithTypeCheck(info.GetIsolate(), info[2]); if (info.Length() > 3 && !isUndefinedOrNull(info[3])) { eventWaitList = toRefPtrNativeArray<WebCLEvent, V8WebCLEvent>(info[3], 4, info.GetIsolate(), exceptionState); if(exceptionState.throwIfNeeded()) return; } if (info.Length() > 4) { if (!isUndefinedOrNull(info[4]) && !V8WebCLEvent::hasInstance(info[4], info.GetIsolate())) { exceptionState.throwTypeError("parameter 5 is not of type 'WebCLEvent'."); exceptionState.throwIfNeeded(); return; } event = V8WebCLEvent::toImplWithTypeCheck(info.GetIsolate(), info[4]); } } impl->enqueueWriteImage(image, blockingWrite, video, eventWaitList, event, exceptionState); if (exceptionState.hadException()) { exceptionState.throwIfNeeded(); } } static void enqueueWriteImage2Method(const v8::FunctionCallbackInfo<v8::Value>& info) { ExceptionState exceptionState(ExceptionState::ExecutionContext, "enqueueWriteImage", "WebCLCommandQueue", info.Holder(), info.GetIsolate()); if (UNLIKELY(info.Length() < 6)) { setMinimumArityTypeError(exceptionState, 6, info.Length()); exceptionState.throwIfNeeded(); return; } WebCLCommandQueue* impl = V8WebCLCommandQueue::toImpl(info.Holder()); WebCLImage* image; bool blockingWrite; Vector<unsigned> origin; Vector<unsigned> region; unsigned hostRowPitch; DOMArrayBufferView* hostPtr; Vector<RefPtr<WebCLEvent>> eventWaitList; WebCLEvent* event = nullptr; { if (info.Length() > 0 && !V8WebCLImage::hasInstance(info[0], info.GetIsolate())) { exceptionState.throwTypeError("parameter 1 is not of type 'WebCLImage'."); exceptionState.throwIfNeeded(); return; } image = V8WebCLImage::toImplWithTypeCheck(info.GetIsolate(), info[0]); blockingWrite = info[1]->BooleanValue(); origin = toImplArray<unsigned>(info[2], 3, info.GetIsolate(), exceptionState); if(exceptionState.throwIfNeeded()) return; region = toImplArray<unsigned>(info[3], 4, info.GetIsolate(), exceptionState); if(exceptionState.throwIfNeeded()) return; hostRowPitch = toUInt32(info.GetIsolate(), info[4], EnforceRange, exceptionState); if(exceptionState.throwIfNeeded()) return; if (info.Length() > 5 && !V8ArrayBufferView::hasInstance(info[5], info.GetIsolate())) { exceptionState.throwTypeError("parameter 6 is not of type 'ArrayBufferView'."); exceptionState.throwIfNeeded(); return; } hostPtr = info[5]->IsArrayBufferView() ? V8ArrayBufferView::toImpl(v8::Handle<v8::ArrayBufferView>::Cast(info[5])) : 0; if (info.Length() > 6 && !isUndefinedOrNull(info[6])) { eventWaitList = toRefPtrNativeArray<WebCLEvent, V8WebCLEvent>(info[6], 7, info.GetIsolate(), exceptionState); if(exceptionState.throwIfNeeded()) return; } if (info.Length() > 7) { if (!isUndefinedOrNull(info[7]) && !V8WebCLEvent::hasInstance(info[7], info.GetIsolate())) { exceptionState.throwTypeError("parameter 8 is not of type 'WebCLEvent'."); exceptionState.throwIfNeeded(); return; } event = V8WebCLEvent::toImplWithTypeCheck(info.GetIsolate(), info[7]); } } impl->enqueueWriteImage(image, blockingWrite, origin, region, hostRowPitch, hostPtr, eventWaitList, event, exceptionState); if (exceptionState.hadException()) { exceptionState.throwIfNeeded(); } } void V8WebCLCommandQueue::enqueueWriteImageMethodCustom(const v8::FunctionCallbackInfo<v8::Value>& info) { ExceptionState exceptionState(ExceptionState::ExecutionContext, "enqueueWriteImage", "WebCLCommandQueue", info.Holder(), info.GetIsolate()); switch (std::min(3, info.Length())) { case 3: if (V8HTMLVideoElement::hasInstance(info[2], info.GetIsolate())) { enqueueWriteImage1Method(info); return; } if (info.Length() >= 5) { if (V8ImageData::hasInstance(info[4], info.GetIsolate()) || V8HTMLCanvasElement::hasInstance(info[4], info.GetIsolate()) || V8HTMLImageElement::hasInstance(info[4], info.GetIsolate())) { enqueueWriteImage3Method(info); return; } enqueueWriteImage2Method(info); return; } default: exceptionState.throwTypeError(ExceptionMessages::notEnoughArguments(3, info.Length())); exceptionState.throwIfNeeded(); return; } exceptionState.throwWebCLException(WebCLException::INVALID_ARG_VALUE, WebCLException::invalidArgValueMessage); exceptionState.throwIfNeeded(); } void V8WebCLCommandQueue::enqueueNDRangeKernelMethodCustom(const v8::FunctionCallbackInfo<v8::Value>& info) { ExceptionState exceptionState(ExceptionState::ExecutionContext, "enqueueNDRangeKernel", "WebCLCommandQueue", info.Holder(), info.GetIsolate()); if (UNLIKELY(info.Length() < 4)) { setMinimumArityTypeError(exceptionState, 4, info.Length()); exceptionState.throwIfNeeded(); return; } WebCLCommandQueue* impl = V8WebCLCommandQueue::toImpl(info.Holder()); WebCLKernel* kernel; unsigned workDim; Vector<double> offsets; Vector<double> globalWorkSize; Vector<double> localWorkSize; Vector<RefPtr<WebCLEvent>> eventWaitList; WebCLEvent* event = nullptr; { if (info.Length() > 0 && !V8WebCLKernel::hasInstance(info[0], info.GetIsolate())) { exceptionState.throwTypeError("parameter 1 is not of type 'WebCLKernel'."); exceptionState.throwIfNeeded(); return; } kernel = V8WebCLKernel::toImplWithTypeCheck(info.GetIsolate(), info[0]); workDim = toUInt32(info.GetIsolate(), info[1], EnforceRange, exceptionState); if(exceptionState.throwIfNeeded()) return; if (info.Length() > 2 && !isUndefinedOrNull(info[2])){ offsets = toImplArray<double>(info[2], 3, info.GetIsolate(), exceptionState); if(exceptionState.throwIfNeeded()) return; } globalWorkSize = toImplArray<double>(info[3], 4, info.GetIsolate(), exceptionState); if(exceptionState.throwIfNeeded()) return; if (info.Length() > 4 && !isUndefinedOrNull(info[4])) { localWorkSize = toImplArray<double>(info[4], 5, info.GetIsolate(), exceptionState); if(exceptionState.throwIfNeeded()) return; } if (info.Length() > 5 && !isUndefinedOrNull(info[5])) { eventWaitList = toRefPtrNativeArray<WebCLEvent, V8WebCLEvent>(info[5], 6, info.GetIsolate(), exceptionState); if(exceptionState.throwIfNeeded()) return; } if (info.Length() > 6) { if (!isUndefinedOrNull(info[6]) && !V8WebCLEvent::hasInstance(info[6], info.GetIsolate())) { exceptionState.throwTypeError("parameter 7 is not of type 'WebCLEvent'."); exceptionState.throwIfNeeded(); return; } event = V8WebCLEvent::toImplWithTypeCheck(info.GetIsolate(), info[6]); } } impl->enqueueNDRangeKernel(kernel, workDim, offsets, globalWorkSize, localWorkSize, eventWaitList, event, exceptionState); if (exceptionState.hadException()) exceptionState.throwIfNeeded(); } } // namespace blink #endif // ENABLE(WEBCL)
[ "olli.syrjala@intel.com" ]
olli.syrjala@intel.com
5c503037d0db7a15ab8a67a57a126d7cfaf25e1a
de46440266fe632768a686d1b945c75955577a89
/d05/ex04/Intern.cpp
6157fcf9fef22f089f4188c2ed142eef4f668410
[]
no_license
dylanmpeck/CPP-Piscine
b9deab0f1055f1430c34b984ef7d3ae8dacbbd4d
b6822127588bd7ec4d3451b28a3838b4712ef50b
refs/heads/master
2020-06-11T15:00:17.746351
2019-06-29T02:35:49
2019-06-29T02:35:49
194,005,025
0
0
null
null
null
null
UTF-8
C++
false
false
1,873
cpp
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* Intern.cpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: dpeck <dpeck@student.42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2019/05/06 20:03:31 by dpeck #+# #+# */ /* Updated: 2019/05/06 20:17:56 by dpeck ### ########.fr */ /* */ /* ************************************************************************** */ #include "Intern.hpp" #include "ShrubberyCreationForm.hpp" #include "RobotomyRequestForm.hpp" #include "PresidentialPardonForm.hpp" Intern::Intern() {} Intern::~Intern() {} Intern const & Intern::operator=(Intern const & rhs) { (void)rhs; return (*this); } Intern::Intern(Intern const & other) { *this = other; } Form * Intern::makeForm(std::string name, std::string target) { for (size_t i = 0; i < name.length(); i++) { if (name[i] >= 'A' && name[i] <= 'Z') name[i] += 32; } Form *form = nullptr; if (name == "shrubbery creation") form = new ShrubberyCreationForm(target); else if (name == "robotomy request") form = new RobotomyRequestForm(target); else if (name == "presidential pardon") form = new PresidentialPardonForm(target); else { std::cout << "Error: Intern cannot find the " << name << " form!" << std::endl; return (nullptr); } return (form); }
[ "dpeck@e1z3r6p15.42.us.org" ]
dpeck@e1z3r6p15.42.us.org
4e74e397201434c504acddb84ec768559c7d9676
727616fbd7e9d2c6bc603a549054ad642d2fc96d
/include/glCompact/isDiffThenAssign.hpp
20161520b46afff299e87762091224f3cc2d3c91
[ "MIT" ]
permissive
PixelOfDeath/glCompact
82aca67b261a15ce68225b6573a094fc64f13438
68334cc9c3aa20255e8986ad1ee5fa8e23df354d
refs/heads/master
2021-07-25T18:20:03.832731
2021-05-13T08:31:49
2021-05-13T08:31:49
158,584,923
0
0
null
null
null
null
UTF-8
C++
false
false
820
hpp
#pragma once /** @brief: Handles one of more sets of two parameters, where the first parameter gets set to the value of the second one. Returns true if any of the parameter pairs were different. Used to apply cached values in the form of current/pending. @code if(isDiffThenAssign( currentA, pendingA, currentB, pendingB, )) { //execute neccesary state changes } @endcode */ template<typename T> bool isDiffThenAssign(T& current, const T& pending) { if (current != pending) { current = pending; return true; } else { return false; } } template<typename T, typename ... TArgs> bool isDiffThenAssign(T& current, const T& pending, TArgs&&...args) { return isDiffThenAssign(current, pending) || isDiffThenAssign(args...); }
[ "Frederik.Hofe@pm.me" ]
Frederik.Hofe@pm.me
f3164bb88fc61e75a485ba01ee56be3754fd83d5
22145f5d0936b136c7701a21ecc584b4a5f1d903
/zombie.hpp
0d0ea59123c7db9bc148d7f0c2d899c7c21ea2ed
[]
no_license
jhoots40/ZombieRunner
58aaf709ad63e65674cb84694955542057456c13
4a6729124ea113f26793780cbde7738ed7fb1543
refs/heads/main
2023-04-25T12:15:09.644313
2021-05-15T02:43:36
2021-05-15T02:43:36
367,523,966
0
0
null
null
null
null
UTF-8
C++
false
false
492
hpp
#pragma once #include <SDL2/SDL.h> #include <SDL2/SDL_image.h> #include "pc.hpp" class Zombie { public: Zombie(float x, float y, PC *pc, SDL_Renderer *renderer); ~Zombie(); void move(); void render(SDL_Renderer *renderer); SDL_Rect zRect; bool isAlive; float angle_; void updateVelocity(); bool checkCollision(); private: PC *pc_; int xPos_, yPos_; int xVel_, yVel_; SDL_Texture *zombieTexture_; std::vector<SDL_Rect> zombieClips_; };
[ "jhoots40@gmail.com" ]
jhoots40@gmail.com
8bbbedb969695d95ad55b1a097e999626a6892cc
d1c881eb5ad77cbd5dab55d34e8f4fa0a4faaf29
/src/arngui/UpdatableDialog.h
7057876f4608312c8dacd37e078eedbc444efba1
[]
no_license
karlvr/arnold
cc21c3de7f92085ff6686044722ea35cfc684bfa
52a1ef6f3258b1d355c137e71a3bfabfb4f9b2e7
refs/heads/main
2023-06-23T04:30:48.554401
2023-06-12T10:08:42
2023-06-12T10:08:42
343,978,478
1
0
null
null
null
null
UTF-8
C++
false
false
1,113
h
/* * Arnold emulator (c) Copyright, Kevin Thacker 1995-2015 * * This file is part of the Arnold emulator source code distribution. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #ifndef __UPDATABLE_DIALOG_HEADER_INCLUDED__ #define __UPDATABLE_DIALOG_HEADER_INCLUDED__ class UpdatableDialog { public: virtual void TimedUpdate() = 0; }; #include <wx/dynarray.h> WX_DEFINE_ARRAY(UpdatableDialog *, UpdatableDialogArray); #endif
[ "karl@xk72.com" ]
karl@xk72.com
7920991ccb2339610ea6a759ae84f737c815f09a
3e1551295154d40d22c5e94b421ed3b1c3f32fcc
/课程设计/195080210李龙龙/8/文件读取.cpp
78d1d343452da97fe10e60931fea8aac8d93e6a1
[]
no_license
letusget/Cplusplus_work
2cdd81a029839c1fa530ea86e20818576b884333
24590a90dd4afe8081744084b40511710f674490
refs/heads/master
2023-06-01T01:58:25.726968
2021-07-02T15:37:42
2021-07-02T15:37:42
373,537,522
1
0
null
null
null
null
GB18030
C++
false
false
1,081
cpp
#include "file.h" int main() { ReadFile reFile; reFile.read(); while (true) { //打印一个简单的运行提示界面 cout << "=============================================" << endl; cout << "\t已有文件" << endl; cout << "\t1.txt" << endl; cout << "\t2.txt" << endl; cout << "\t3.txt" << endl; cout << "\t4.txt" << endl; cout << "\t5.txt" << endl; cout << "请输入要访问的文件下标(1-5),输入0退出:" << endl; cout << "=============================================" << endl; int choice; do { //进行输入检查 cout << "请输入您的选择(1-5):"; cin >> choice; if (choice == 0 || choice == 1 || choice == 2 || choice == 3 || choice == 4 || choice == 5) { break; //输入正确选择时,才可以跳出循环 } cin.clear(); //清除错误输入 cin.ignore(numeric_limits<streamsize>::max(), '\n'); } while (1); if (choice>=1&&choice<=5) {//实现随机访问文件 reFile[choice]; } else { cout << "成功退出系统!" << endl; exit(0); } } return 0; }
[ "a14705129921@163.com" ]
a14705129921@163.com
b25868df541dd2c7018e59e6c12ecc5932cf6493
ca34eac4babf8c07f7f3dd3ce75d3be9791f366d
/Source/ShooterGame/Private/UI/Menu/Widgets/SShooterServerList.h
8a9eeec195d4e887dab00f6d39ed7be1b0fc82a3
[ "MIT" ]
permissive
cqcallaw/shootergame
f6c04bbcade7f96a22aff834b7d86c228ac71b7f
7d93f7d3333f2882ba67ba15da71a3f9325958aa
refs/heads/master
2021-07-08T14:18:33.600615
2021-05-21T16:52:04
2021-05-21T16:52:04
244,085,258
5
3
null
null
null
null
UTF-8
C++
false
false
3,802
h
// Copyright Epic Games, Inc. All Rights Reserved. #pragma once #include "SlateBasics.h" #include "SlateExtras.h" #include "ShooterGame.h" #include "SShooterMenuWidget.h" class AShooterGameSession; struct FServerEntry { FString ServerName; FString CurrentPlayers; FString MaxPlayers; FString GameType; FString MapName; FString Ping; int32 SearchResultsIndex; }; //class declare class SShooterServerList : public SShooterMenuWidget { public: SLATE_BEGIN_ARGS(SShooterServerList) {} SLATE_ARGUMENT(TWeakObjectPtr<ULocalPlayer>, PlayerOwner) SLATE_ARGUMENT(TSharedPtr<SWidget>, OwnerWidget) SLATE_END_ARGS() /** needed for every widget */ void Construct(const FArguments& InArgs); /** if we want to receive focus */ virtual bool SupportsKeyboardFocus() const override { return true; } /** focus received handler - keep the ActionBindingsList focused */ virtual FReply OnFocusReceived(const FGeometry& MyGeometry, const FFocusEvent& InFocusEvent) override; /** focus lost handler - keep the ActionBindingsList focused */ virtual void OnFocusLost( const FFocusEvent& InFocusEvent ) override; /** key down handler */ virtual FReply OnKeyDown(const FGeometry& MyGeometry, const FKeyEvent& InKeyEvent) override; /** SListView item double clicked */ void OnListItemDoubleClicked(TSharedPtr<FServerEntry> InItem); /** creates single item widget, called for every list item */ TSharedRef<ITableRow> MakeListViewWidget(TSharedPtr<FServerEntry> Item, const TSharedRef<STableViewBase>& OwnerTable); /** selection changed handler */ void EntrySelectionChanged(TSharedPtr<FServerEntry> InItem, ESelectInfo::Type SelectInfo); /** * Get the current game session * * @return The current game session */ AShooterGameSession* GetGameSession() const; /** Updates current search status */ void UpdateSearchStatus(); /** Starts searching for servers */ void BeginServerSearch(bool bLANMatch, bool bIsDedicatedServer, const FString& InMapFilterName); /** Called when server search is finished */ void OnServerSearchFinished(); /** fill/update server list, should be called before showing this control */ void UpdateServerList(); /** connect to chosen server */ void ConnectToServer(); /** selects item at current + MoveBy index */ void MoveSelection(int32 MoveBy); /** * Ticks this widget. Override in derived classes, but always call the parent implementation. * * @param AllottedGeometry The space allotted for this widget * @param InCurrentTime Current absolute real time * @param InDeltaTime Real time passed since last tick */ void Tick( const FGeometry& AllottedGeometry, const double InCurrentTime, const float InDeltaTime ); protected: /** Whether last searched for LAN (so spacebar works) */ bool bLANMatchSearch; /** Whether last searched for Dedicated Server (so spacebar works) */ bool bDedicatedServer; /** Whether we're searching for servers */ bool bSearchingForServers; /** Time the last search began */ double LastSearchTime; /** Minimum time between searches (platform dependent) */ double MinTimeBetweenSearches; /** action bindings array */ TArray< TSharedPtr<FServerEntry> > ServerList; /** action bindings list slate widget */ TSharedPtr< SListView< TSharedPtr<FServerEntry> > > ServerListWidget; /** currently selected list item */ TSharedPtr<FServerEntry> SelectedItem; /** get current status text */ FText GetBottomText() const; /** current status text */ FText StatusText; /** Map filter name to use during server searches */ FString MapFilterName; /** size of standard column in pixels */ int32 BoxWidth; /** pointer to our owner PC */ TWeakObjectPtr<class ULocalPlayer> PlayerOwner; /** pointer to our parent widget */ TSharedPtr<class SWidget> OwnerWidget; };
[ "cqcallaw@gmail.com" ]
cqcallaw@gmail.com
5e576fb00e7f1bfef862eb5b7464e9f2a49b54d6
c967308d6aa41de943fa78b34afb11ef246088fc
/Classes/WufuLayer.cpp
0a7c5f4b4cbcdd2019716ed9a84673810c1dbb76
[]
no_license
IceCoffee2011/CatchFish3
ab9be97481f8b6cb73c8eb82d41053082f928e24
0f034d96447b282e8e75b88afd891dd7864ed561
refs/heads/master
2020-05-05T11:00:41.150725
2017-01-14T08:02:45
2017-01-14T08:02:45
null
0
0
null
null
null
null
UTF-8
C++
false
false
29,368
cpp
#include "header.h" const char* WufuCardAn[5] = {"h2all/wufuan1.png", "h2all/wufuan2.png", "h2all/wufuan3.png", "h2all/wufuan4.png", "h2all/wufuan5.png"}; const char* WufuCardLiang[5] = {"h2all/wufuliang1.png", "h2all/wufuliang2.png", "h2all/wufuliang3.png", "h2all/wufuliang4.png", "h2all/wufuliang5.png"}; WufuLayer::WufuLayer() { } WufuLayer::~WufuLayer() { m_arrAnCard->release(); m_arrLiangCard->release(); } WufuLayer* WufuLayer::create(int nCard[5]) { WufuLayer* pRet = new WufuLayer(); if(pRet && pRet->init(nCard)) { pRet->autorelease(); return pRet; } else { delete pRet; pRet = NULL; return NULL; } } bool WufuLayer::init(int nCard[5]) { if(!CCLayer::init()) { return false; } CCLayerColor* pLayerColor = CCLayerColor::create(ccc4(0, 0, 0, 190), CLIENT_WIDTH, CLIENT_HEIGHT); this->addChild(pLayerColor); m_arrLiangCard = CCArray::create(); m_arrLiangCard -> retain(); m_arrAnCard = CCArray::create(); m_arrAnCard -> retain(); for(int i = 0; i < 5; i++) { m_nCard[i] = nCard[i]; } m_nCurrentPage = 1; m_nType = 0; m_vctWufuRule.clear(); m_vctVIPNotice.clear(); loadUI(); this -> setTouchEnabled(true); return true; } void WufuLayer::loadUI() { m_pWufuBg = CCSprite::create("h2all/wufubg.png"); m_pWufuBg -> setPosition(ccp(CLIENT_WIDTH/2, CLIENT_HEIGHT/2)); this -> addChild(m_pWufuBg); //五福卡 char temp[8]; for(int i = 0; i < 5; i++) { CCSprite* sprite1 = CCSprite::create(WufuCardAn[i]); sprite1 -> setTag(201+i); sprite1 -> setPosition(ccp(125+187*i, 356)); m_pWufuBg -> addChild(sprite1); CCSprite* sprite2 = CCSprite::create(WufuCardLiang[i]); sprite2 -> setTag(301+i); sprite2 -> setPosition(ccp(125+187*i, 356)); m_pWufuBg -> addChild(sprite2); m_arrAnCard->addObject(sprite1); m_arrLiangCard->addObject(sprite2); sprite2 -> setVisible(false); sprintf(temp, "%d", m_nCard[i]); CCLabelTTF* pLabel1 = CCLabelTTF::create(temp, "Arial-BoldMT", 28); pLabel1 -> setPosition(ccp(sprite1->getContentSize().width/2+10, 30)); sprite1->addChild(pLabel1); pLabel1 -> setTag(101+i); CCLabelTTF* pLabel2 = CCLabelTTF::create(temp, "Arial-BoldMT", 28); pLabel2 -> setPosition(ccp(sprite2->getContentSize().width/2+10, 30)); sprite2 -> addChild(pLabel2); pLabel2 -> setTag(101+i); if(m_nCard[i] > 0) { sprite2 -> setVisible(true); sprite1 -> setVisible(false); } // CCSprite* firstSp = CCSprite::create(); // firstSp -> setPosition(ccp(sprite2->getContentSize().width/2, sprite2->getContentSize().height-30)); // sprite2 -> addChild(firstSp); // CCArray* firstChargeArr = CCArray::create(); // char temp2[32]; // for(int i = 1;i <= 13; i++) // { // sprintf(temp2, "hallfirstcharge%d.png", i); // CCSpriteFrame* frame = CCSpriteFrameCache::sharedSpriteFrameCache()->spriteFrameByName(temp2); // firstChargeArr -> addObject(frame); // } // CCAnimation* firstChargeAnimation = CCAnimation::createWithSpriteFrames(firstChargeArr, 0.11f); // CCAnimate* firstChargeAnimate = CCAnimate::create(firstChargeAnimation); // firstSp -> runAction(CCRepeatForever::create(firstChargeAnimate)); } //按钮 CCMenuItemImage* closeItem = CCMenuItemImage::create("h2all/dakacloseitem.png", "h2all/dakacloseitem.png", this, menu_selector(WufuLayer::clickMenu)); closeItem -> setTag(101); closeItem -> setPosition(ccp(m_pWufuBg->getContentSize().width-closeItem->getContentSize().width/2+20, m_pWufuBg->getContentSize().height-closeItem->getContentSize().height/2+20)); CCMenuItemImage* pJing1Item = CCMenuItemImage::create("h2all/jingdong50.png", "h2all/jingdong50.png", this, menu_selector(WufuLayer::clickMenu)); pJing1Item -> setTag(102); pJing1Item -> setPosition(ccp(m_pWufuBg->getContentSize().width/4+30, 90)); CCMenuItemImage* pJing2Item = CCMenuItemImage::create("h2all/jingdong100.png", "h2all/jingdong100.png", this, menu_selector(WufuLayer::clickMenu)); pJing2Item -> setPosition(ccp(m_pWufuBg->getContentSize().width/4*3-30, 90)); pJing2Item -> setTag(103); CCMenuItemImage* pHelpItem = CCMenuItemImage::create("h2all/wufuhelpItem.png", "h2all/wufuhelpItem.png", this, menu_selector(WufuLayer::clickMenu)); pHelpItem -> setTag(104); pHelpItem -> setPosition(ccp(m_pWufuBg->getContentSize().width/2, 90)); CCMenu* menu = CCMenu::create(closeItem, pJing1Item, pJing2Item, pHelpItem, NULL); menu -> setPosition(CCPointZero); menu -> setAnchorPoint(CCPointZero); m_pWufuBg -> addChild(menu); menu -> setTouchPriority(-130); m_pWufuBg->runAction(CCSequence::create(CCScaleTo::create(0, 0.8f),CCScaleTo::create(0.1f, 1.08f), CCScaleTo::create(0.07f, 1.0f), NULL)); m_layerWufuHelp = CCLayerColor::create(ccc4(0, 0, 0, 190), CLIENT_WIDTH, CLIENT_HEIGHT); this->addChild(m_layerWufuHelp); m_layerWufuHelp->setVisible(false); m_spInfoBg = CCSprite::create("h2all/wufuhelpbg.png"); m_spInfoBg -> setPosition(ccp(CLIENT_WIDTH/2, CLIENT_HEIGHT/2)); this -> addChild(m_spInfoBg); m_spInfoBg -> setVisible(false); //请求帮助的版本号 requestHelpVersion(); } void WufuLayer::requestHelpVersion() { CCHttpRequest* request = new CCHttpRequest(); request -> setUrl("http://cdn.66y.com/leleclient/LeleconfigVersion.xml"); request -> setRequestType(CCHttpRequest::kHttpGet); request -> setResponseCallback(this, httpresponse_selector(WufuLayer::onHttpHelpVersionComplete)); CCHttpClient::getInstance()->send(request); request -> release(); CCSprite* pDelayRank = CCSprite::create("h2all/loading1.png"); pDelayRank -> setPosition(ccp(m_spInfoBg->getContentSize().width/2, m_spInfoBg->getContentSize().height/2-15)); m_spInfoBg -> addChild(pDelayRank, 1, 101); pDelayRank -> runAction(CCRepeatForever::create(CCRotateBy::create(1.0f, 360))); } void WufuLayer::onHttpHelpVersionComplete(CCHttpClient* pSender, CCHttpResponse* response) { if (!response) { return; } if (!response->isSucceed()) { return; } std::vector<char> *buffer = response->getResponseData(); std::string str; for (unsigned int i = 0; i < buffer->size(); i++) { char a = (*buffer)[i]; str.append(1,a); } TiXmlDocument* document = new TiXmlDocument(); int len = (int)strlen(str.c_str()); if(document->LoadFile2((unsigned char *)str.c_str(), len)) { TiXmlElement* rootElement = document->RootElement(); if(rootElement == NULL) return; std::string nodename=rootElement->Value(); if (0!=nodename.compare("version")) { return; } TiXmlElement* pCurrentElement = rootElement->FirstChildElement(); while (pCurrentElement != NULL) { const char * pValue = pCurrentElement->Value(); if(!std::strcmp(pValue, "wufurule"))//相同 { std::string sWufuVersion = pCurrentElement->GetText(); if(CCUserDefault::sharedUserDefault()->getStringForKey("WufuVersion", "") == "") { CCUserDefault::sharedUserDefault()->setStringForKey("NewWufuVersion", sWufuVersion); sendWufuData(); } else if(CCUserDefault::sharedUserDefault()->getStringForKey("WufuVersion") != sWufuVersion)//本地保存的版本号跟新的不一致,说明有更新 { CCUserDefault::sharedUserDefault()->setStringForKey("NewWufuVersion", sWufuVersion); sendWufuData(); } else//本地已经保存且没有更新内容,则此时直接打开即可 { readWufuRuleData(); } } pCurrentElement = pCurrentElement->NextSiblingElement(); } } delete document; } int WufuLayer::getWufuType() { return m_nType; } void WufuLayer::sendWufuData() { CCHttpRequest* request = new CCHttpRequest(); request -> setUrl("http://cdn.66y.com/leleclient/Lelewufurule.xml"); request -> setRequestType(CCHttpRequest::kHttpGet); request -> setResponseCallback(this, httpresponse_selector(WufuLayer::onHttpHelpDataComplete)); CCHttpClient::getInstance()->send(request); request -> release(); } void WufuLayer::onHttpHelpDataComplete(CCHttpClient* pSender, CCHttpResponse* response) { if (!response) { return; } if (!response->isSucceed()) { return; } std::vector<char> *buffer = response->getResponseData(); std::string str; for (unsigned int i = 0; i < buffer->size(); i++) { char a = (*buffer)[i]; str.append(1,a); } std::string sVIPNewVersion = CCUserDefault::sharedUserDefault()->getStringForKey("NewWufuVersion"); CCUserDefault::sharedUserDefault()->setStringForKey("WufuVersion", sVIPNewVersion); TiXmlDocument* document = new TiXmlDocument(); int len = (int)strlen(str.c_str()); if(document->LoadFile2((unsigned char *)str.c_str(), len)) { TiXmlElement* rootElement = document->RootElement(); if(rootElement == NULL) return; std::string nodename=rootElement->Value(); if (0!=nodename.compare("wufurule")) { return; } TiXmlElement* pCurrentElement = rootElement->FirstChildElement(); while (pCurrentElement != NULL) { const char * pValue = pCurrentElement->Value(); if(!std::strcmp(pValue, "rule"))//相同 { std::string sData = pCurrentElement->Attribute("data"); m_vctWufuRule.push_back(sData); } pCurrentElement = pCurrentElement->NextSiblingElement(); } } delete document; saveFile(str); showWufuHelpUI(); } void WufuLayer::saveFile(std::string str) { //在Documents目录下创建一个可读写的文件 std::string path = CCFileUtils::sharedFileUtils() -> getWritablePath(); std::string xmlPath = path + std::string("WufuRule.xml"); const char* buf = str.c_str(); FILE* file = fopen(xmlPath.c_str(), "w"); if(file) { fputs(buf, file); fclose(file); CCLog("save succeed"); } else { CCLog("save file error"); } } void WufuLayer::readWufuRuleData() { std::string path = CCFileUtils::sharedFileUtils() -> getWritablePath(); std::string xmlPath = path + std::string("WufuRule.xml"); TiXmlDocument* document = new TiXmlDocument(xmlPath.c_str()); if(document != NULL) { document -> LoadFile(); TiXmlElement* rootElement = document->RootElement(); if(rootElement == NULL) return; std::string nodename=rootElement->Value(); if (0!=nodename.compare("wufurule")) { return; } TiXmlElement* pCurrentElement = rootElement->FirstChildElement(); while (pCurrentElement != NULL) { const char * pValue = pCurrentElement->Value(); if(!std::strcmp(pValue, "rule"))//相同 { std::string sData = pCurrentElement->Attribute("data"); m_vctWufuRule.push_back(sData); } pCurrentElement = pCurrentElement->NextSiblingElement(); } } document->Clear(); delete document; showWufuHelpUI(); } void WufuLayer::showWufuHelpUI() { CCSprite* pDelayRank = (CCSprite*)m_spInfoBg->getChildByTag(101); if(pDelayRank != NULL) { pDelayRank->removeFromParent(); } int nCount = (int)m_vctWufuRule.size(); for(int i = 0; i < nCount; i++) { CCLabelTTF* pLabelRule = CCLabelTTF::create("", "Arial-BoldMT", 24); pLabelRule -> setPosition(ccp(36, 324-40*i)); pLabelRule -> setAnchorPoint(ccp(0, 0.5f)); m_spInfoBg -> addChild(pLabelRule); m_vctVIPNotice.clear(); float fWidth=0; std::string str = m_vctWufuRule[i]; int size = (int)str.find("#"); if(size == -1)//说明整个字符串都不包含# { pLabelRule->setString(str.c_str()); } else if(size != 0)//说明第一个字符不是# { VIPNotice VipNotice0; VipNotice0.sColor = ""; VipNotice0.sNotice = ""; VipNotice0.sTag = ""; std::string str0 = ""; str0 = str.substr(0, size); std::string strColor0 = str0.substr(1, 6); VipNotice0.sColor = "FFFFFF";//默认白色 VipNotice0.sNotice = str0; m_vctVIPNotice.push_back(VipNotice0); str = str.substr(size); size = (int)str.find("#"); std::string str1 = ""; std::string str2 = ""; while (size != -1) { if(size == 0) { VIPNotice VipNotice; VipNotice.sColor = ""; VipNotice.sNotice = ""; VipNotice.sTag = ""; //判断是否为L if (str.substr(1, 1) == "L") { VipNotice.sTag = str.substr(2, 2); VipNotice.sColor = "7CBC3D"; str = str.substr(4); size = (int)str.find("#"); } else { str2 = str.substr(1, 6); if (str2.length() == 6)//有颜色 { VipNotice.sColor = str2; } else //默认颜色 { VipNotice.sColor = "FFFF00"; } str = str.substr(7); size = (int)str.find("#"); } if(size == -1) { VipNotice.sNotice = str; } else if(size != 0) { str1 = str.substr(0, size); VipNotice.sNotice = str1; str = str.substr(size); size = (int)str.find("#"); } m_vctVIPNotice.push_back(VipNotice); } } pLabelRule->setString(m_vctVIPNotice[0].sNotice.c_str()); int r, g, b = 0; std::string s1, s2, s3 = ""; s1 = m_vctVIPNotice[0].sColor.substr(0, 2); s2 = m_vctVIPNotice[0].sColor.substr(2, 2); s3 = m_vctVIPNotice[0].sColor.substr(4, 2); sscanf(s1.c_str(), "%x", &r); sscanf(s2.c_str(), "%x", &g); sscanf(s3.c_str(), "%x", &b); pLabelRule->setColor(ccc3(r, g, b)); fWidth = pLabelRule->getContentSize().width; for(int i = 1; i < m_vctVIPNotice.size(); i++) { std::string sColor = m_vctVIPNotice[i].sColor; std::string sNotice = m_vctVIPNotice[i].sNotice; //获取颜色 int r, g, b = 0; std::string str1, str2, str3 = ""; str1 = sColor.substr(0,2); str2 = sColor.substr(2, 2); str3 = sColor.substr(4, 2); sscanf(str1.c_str(), "%x", &r); sscanf(str2.c_str(), "%x", &g); sscanf(str3.c_str(), "%x", &b); CCLabelTTF* pLabel = CCLabelTTF::create(sNotice.c_str(), "Arial-BoldMT", 24); pLabel->setColor(ccc3(r, g, b)); pLabel -> setAnchorPoint(ccp(0, 0.5f)); pLabel -> setPosition(ccp(fWidth, pLabelRule->getContentSize().height/2)); pLabel -> setTag(100+i); pLabelRule -> addChild(pLabel); fWidth+=pLabel->getContentSize().width; if ("" != m_vctVIPNotice[i].sTag)//L { CCSprite * pLinkline = CCSprite::create("h3all/linkline.png"); pLinkline->setScaleX(pLabel->getContentSize().width/pLinkline->getContentSize().width); pLinkline->setAnchorPoint(ccp(0, 0)); pLinkline->setPosition(ccp(0, -2)); pLabel->addChild(pLinkline); } } } else//说明第一个字符是# { std::string str1 = ""; std::string str2 = ""; while (size != -1) { if(size == 0) { VIPNotice VipNotice; VipNotice.sColor = ""; VipNotice.sNotice = ""; VipNotice.sTag = ""; //判断是否为L if (str.substr(1, 1) == "L") { VipNotice.sTag = str.substr(2, 2); VipNotice.sColor = "7CBC3D"; str = str.substr(4); size = (int)str.find("#"); } else { str2 = str.substr(1, 6); if (str2.length() == 6)//有颜色 { VipNotice.sColor = str2; } else //默认颜色 { VipNotice.sColor = "FFFFFF"; } str = str.substr(7); size = (int)str.find("#"); } if(size == -1) { VipNotice.sNotice = str; } else if(size != 0) { str1 = str.substr(0, size); VipNotice.sNotice = str1; str = str.substr(size); size = (int)str.find("#"); } m_vctVIPNotice.push_back(VipNotice); } } pLabelRule->setString(m_vctVIPNotice[0].sNotice.c_str()); int r, g, b = 0; std::string s1, s2, s3 = ""; s1 = m_vctVIPNotice[0].sColor.substr(0, 2); s2 = m_vctVIPNotice[0].sColor.substr(2, 2); s3 = m_vctVIPNotice[0].sColor.substr(4, 2); sscanf(s1.c_str(), "%x", &r); sscanf(s2.c_str(), "%x", &g); sscanf(s3.c_str(), "%x", &b); pLabelRule->setColor(ccc3(r, g, b)); fWidth = pLabelRule->getContentSize().width; for(int i = 1; i < m_vctVIPNotice.size(); i++) { std::string sColor = m_vctVIPNotice[i].sColor; std::string sNotice = m_vctVIPNotice[i].sNotice; //获取颜色 int r, g, b = 0; std::string str1, str2, str3 = ""; str1 = sColor.substr(0,2); str2 = sColor.substr(2, 2); str3 = sColor.substr(4, 2); sscanf(str1.c_str(), "%x", &r); sscanf(str2.c_str(), "%x", &g); sscanf(str3.c_str(), "%x", &b); CCLabelTTF* pLabel = CCLabelTTF::create(sNotice.c_str(), "Arial-BoldMT", 24); pLabel->setColor(ccc3(r, g, b)); pLabel -> setAnchorPoint(ccp(0, 0.5f)); pLabel -> setPosition(ccp(fWidth, pLabelRule->getContentSize().height/2)); pLabel -> setTag(100+i); pLabelRule -> addChild(pLabel); fWidth+=pLabel->getContentSize().width; if ("" != m_vctVIPNotice[i].sTag)//L { CCSprite * pLinkline = CCSprite::create("h3all/linkline.png"); pLinkline->setScaleX(pLabel->getContentSize().width/pLinkline->getContentSize().width); pLinkline->setAnchorPoint(ccp(0, 0)); pLinkline->setPosition(ccp(0, -2)); pLabel->addChild(pLinkline); } } } } } void WufuLayer::clickMenu(CCObject* object) { CCMenuItem* item = (CCMenuItem*)object; switch (item->getTag()) { case 101: { SimpleAudioEngine::sharedEngine()->playEffect(BUTTON_CLOSE_EFFECT); CCCallFunc* func = CCCallFunc::create(this, callfunc_selector(WufuLayer::removeWnd)); m_pWufuBg->runAction(CCSequence::create(CCScaleTo::create(0.15f, 1.2f), CCScaleTo::create(0.06f, 0.3f), func, NULL)); CMainLogic::sharedMainLogic()->sendUserBehavior(CMainLogic::sharedMainLogic()->m_nUserID, eWufuClose); break; } case 102://50元京东卡 { SimpleAudioEngine::sharedEngine()->playEffect(BUTTON_EFFECT); int num = 0; for(int i = 0; i < 5; i++) { num += m_nCard[i]; } if(num < 3) { CMainLogic::sharedMainLogic()->ShowMessage("对不起,您的福卡不满足合成条件。", eMBOK); } else { //发送兑合成的消息 m_nType = 1; CMainLogic::sharedMainLogic()->ShowMessage("系统将优先帮您使用三张多余福卡合成一张50元京东卡,是否确认?", eMBOKCancel, eDuihuanWufuCard); } break; } case 103://100元京东卡 { SimpleAudioEngine::sharedEngine()->playEffect(BUTTON_EFFECT); bool bCan = true; for(int i = 0; i < 5; i++) { if(m_nCard[i] <= 0) { bCan = false; break; } } if(bCan) { m_nType = 2; CMainLogic::sharedMainLogic()->ShowMessage("您即将使用5张福卡合成一张100元京东卡,是否确认?", eMBOKCancel, eDuihuanWufuCard); } else { CMainLogic::sharedMainLogic()->ShowMessage("对不起,您的福卡不满足合成条件。", eMBOK); } break; } case 104://帮助 { SimpleAudioEngine::sharedEngine()->playEffect(BUTTON_EFFECT); m_nCurrentPage = 2; m_spInfoBg -> setVisible(true); m_layerWufuHelp -> setVisible(true); CMainLogic::sharedMainLogic()->sendUserBehavior(CMainLogic::sharedMainLogic()->m_nUserID, eWufuHelp); break; } default: break; } } void WufuLayer::sendDuihuanCard(int nType) { int type = nType-1; if(type == 0) { CMainLogic::sharedMainLogic()->sendUserBehavior(CMainLogic::sharedMainLogic()->m_nUserID, eWufu50yuan); } else if(type == 1) { CMainLogic::sharedMainLogic()->sendUserBehavior(CMainLogic::sharedMainLogic()->m_nUserID, eWufu100yuan); } char temp[128]; sprintf(temp, "http://%s/GetFu.aspx?uid=%d&type=%d", NORMAL_URL,CMainLogic::sharedMainLogic()->m_nUserID, type); CCHttpRequest* request = new CCHttpRequest(); request -> setUrl(temp); request -> setRequestType(CCHttpRequest::kHttpGet); request -> setResponseCallback(this, httpresponse_selector(WufuLayer::onHttpDuihuanComplete)); CCHttpClient::getInstance()->send(request); request -> release(); CMainLogic::sharedMainLogic()->ShowMessage("正在合成京东卡,请耐心等待", eMBNull); } void WufuLayer::onHttpDuihuanComplete(CCHttpClient* sender, CCHttpResponse* response) { if (!response) { return; } if (!response->isSucceed()) { return; } std::vector<char> *buffer = response->getResponseData(); std::string str; for (unsigned int i = 0; i < buffer->size(); i++) { char a = (*buffer)[i]; str.append(1,a); } //<wufu><data result="1" card1="12" card2="47" card3="48" card4="48" card5="48" description="恭喜您,成功合成50元京东礼品卡,系统将在30分钟内给您发送充值卡号和密码,请及时查看邮件。"/></wufu> TiXmlDocument* document = new TiXmlDocument(); int len = (int)strlen(str.c_str()); if(document->LoadFile2((unsigned char *)str.c_str(), len)) { TiXmlElement* rootElement = document->RootElement(); if(rootElement == NULL) return; std::string nodename=rootElement->Value(); if (0!=nodename.compare("wufu")) { return; } TiXmlElement* pCurrentElement = rootElement->FirstChildElement(); if (pCurrentElement != NULL) { const char * pValue = pCurrentElement->Value(); if(!std::strcmp(pValue, "data"))//相同 { std::string sResult = pCurrentElement->Attribute("result"); std::string sDes = pCurrentElement->Attribute("description"); int nResult = atoi(sResult.c_str()); if(nResult == 1)//合成成功 { CMainLogic::sharedMainLogic()->ShowMessage(sDes.c_str(), eMBOK); CMainLogic::sharedMainLogic()->sendUserBehavior(CMainLogic::sharedMainLogic()->m_nUserID, eWufuSuccess); //向服务端发送公告 CMD_GPR_NoticeWufuCard NoticeWufuCard = {0}; NoticeWufuCard.nType = m_nType; strncpy(NoticeWufuCard.szNickName, CCharCode::UTF8ToGB2312(CMainLogic::sharedMainLogic()->m_sNickName.c_str()).c_str(), sizeof(NoticeWufuCard.szNickName)); CMainLogic::sharedMainLogic()->SendData(CMainLogic::sharedMainLogic()->m_nHallSocketHandle, MDM_GP_USER_NOTICE, SUB_GPR_NOTICE_WUFU_CARD, &NoticeWufuCard,sizeof(NoticeWufuCard)); } else//合成失败 { CMainLogic::sharedMainLogic()->ShowMessage(sDes.c_str(), eMBOK); CMainLogic::sharedMainLogic()->sendUserBehavior(CMainLogic::sharedMainLogic()->m_nUserID, eWufuFail); } //更新卡片数量 m_nCard[0] = atoi(pCurrentElement->Attribute("card1")); m_nCard[1] = atoi(pCurrentElement->Attribute("card2")); m_nCard[2] = atoi(pCurrentElement->Attribute("card3")); m_nCard[3] = atoi(pCurrentElement->Attribute("card4")); m_nCard[4] = atoi(pCurrentElement->Attribute("card5")); updateCardUI(); } } } delete document; } void WufuLayer::updateCardUI() { char temp[8]; for(int i = 0; i < 5; i++) { sprintf(temp, "%d", m_nCard[i]); CCSprite* sprite1 = (CCSprite*)m_arrAnCard->objectAtIndex(i); if(sprite1 == NULL) continue; CCLabelTTF* pLabel1 = (CCLabelTTF*)sprite1->getChildByTag(101+i); if(pLabel1 == NULL) continue; pLabel1 -> setString(temp); CCSprite* sprite2 = (CCSprite*)m_arrLiangCard->objectAtIndex(i); if(sprite2 == NULL) continue; CCLabelTTF* pLabel2 = (CCLabelTTF*)sprite2->getChildByTag(101+i); if(pLabel2 == NULL) continue; pLabel2 -> setString(temp); if(m_nCard[i] <= 0) { sprite1->setVisible(true); sprite2->setVisible(false); } else { sprite1->setVisible(false); sprite2 -> setVisible(true); } } if(GameMainScene::_instance != NULL)//更新游戏内五福卡图标上数字 { GameMainScene::_instance->setWufuNum(m_nCard); } } void WufuLayer::removeWnd() { this -> removeFromParent(); if(GameMainScene::_instance != NULL) { GameMainScene::GetInstance()->setWndHave(false); GameMainScene::GetInstance()->setAutoFire(); GameMainScene::GetInstance()->setMatchShowStatus(true); } } void WufuLayer::registerWithTouchDispatcher() { CCDirector::sharedDirector()->getTouchDispatcher()->addTargetedDelegate(this, -129, true); } bool WufuLayer::ccTouchBegan(CCTouch* pTouch, CCEvent* pEvent) { if(m_nCurrentPage == 2) { CCPoint point = pTouch->getLocation(); // point = m_spInfoBg->convertToNodeSpace(point); CCRect rect = m_spInfoBg->boundingBox(); if(!rect.containsPoint(point)) { m_spInfoBg->setVisible(false); m_layerWufuHelp -> setVisible(false); m_nCurrentPage = 1; } } return true; }
[ "775198283@qq.com" ]
775198283@qq.com
5ecfcc08009c095620d1e33f856650800588972a
f326487c00a250d5a55b2070ce043e47f6342169
/BigUnsigned.cpp
3d3e1ba742a9e649c9eff728a3330fd34c25202c
[]
no_license
swapnibble/biginteger-for-eosio
6d9645385535e935a253e94a35cc6c0e1dfa8cf7
dd5c66e989a9ced1534894f6f110e0bd119be10e
refs/heads/master
2021-09-06T17:43:26.900497
2018-02-09T07:13:01
2018-02-09T07:13:01
120,869,780
2
1
null
null
null
null
UTF-8
C++
false
false
26,334
cpp
/** * This source adapted from https://mattmccutchen.net/bigint/ by Mithrilcoin.io for EOS.IO smart contract. */ #include "BigUnsigned.hpp" #include "BigIntegerUtils.hpp" // Memory management definitions have moved to the bottom of NumberlikeArray.hh. // The templates used by these constructors and converters are at the bottom of // BigUnsigned.hh. BigUnsigned::BigUnsigned(unsigned long x) { initFromPrimitive (x); } BigUnsigned::BigUnsigned(unsigned int x) { initFromPrimitive (x); } BigUnsigned::BigUnsigned(unsigned short x) { initFromPrimitive (x); } BigUnsigned::BigUnsigned( long x) { initFromSignedPrimitive(x); } BigUnsigned::BigUnsigned( int x) { initFromSignedPrimitive(x); } BigUnsigned::BigUnsigned( short x) { initFromSignedPrimitive(x); } unsigned long BigUnsigned::toUnsignedLong () const { return convertToPrimitive <unsigned long >(); } unsigned int BigUnsigned::toUnsignedInt () const { return convertToPrimitive <unsigned int >(); } unsigned short BigUnsigned::toUnsignedShort() const { return convertToPrimitive <unsigned short>(); } long BigUnsigned::toLong () const { return convertToSignedPrimitive< long >(); } int BigUnsigned::toInt () const { return convertToSignedPrimitive< int >(); } short BigUnsigned::toShort () const { return convertToSignedPrimitive< short>(); } // BIT/BLOCK ACCESSORS void BigUnsigned::setBlock(Index i, Blk newBlock) { if (newBlock == 0) { if (i < len) { blk[i] = 0; zapLeadingZeros(); } // If i >= len, no effect. } else { if (i >= len) { // The nonzero block extends the number. allocateAndCopy(i+1); // Zero any added blocks that we aren't setting. for (Index j = len; j < i; j++) blk[j] = 0; len = i+1; } blk[i] = newBlock; } } /* Evidently the compiler wants BigUnsigned:: on the return type because, at * that point, it hasn't yet parsed the BigUnsigned:: on the name to get the * proper scope. */ BigUnsigned::Index BigUnsigned::bitLength() const { if (isZero()) return 0; else { Blk leftmostBlock = getBlock(len - 1); Index leftmostBlockLen = 0; while (leftmostBlock != 0) { leftmostBlock >>= 1; leftmostBlockLen++; } return leftmostBlockLen + (len - 1) * N; } } void BigUnsigned::setBit(Index bi, bool newBit) { Index blockI = bi / N; Blk block = getBlock(blockI), mask = Blk(1) << (bi % N); block = newBit ? (block | mask) : (block & ~mask); setBlock(blockI, block); } // COMPARISON BigUnsigned::CmpRes BigUnsigned::compareTo(const BigUnsigned &x) const { // A bigger length implies a bigger number. if (len < x.len) return less; else if (len > x.len) return greater; else { // Compare blocks one by one from left to right. Index i = len; while (i > 0) { i--; if (blk[i] == x.blk[i]) continue; else if (blk[i] > x.blk[i]) return greater; else return less; } // If no blocks differed, the numbers are equal. return equal; } } // COPY-LESS OPERATIONS /* * On most calls to copy-less operations, it's safe to read the inputs little by * little and write the outputs little by little. However, if one of the * inputs is coming from the same variable into which the output is to be * stored (an "aliased" call), we risk overwriting the input before we read it. * In this case, we first compute the result into a temporary BigUnsigned * variable and then copy it into the requested output variable *this. * Each put-here operation uses the DTRT_ALIASED macro (Do The Right Thing on * aliased calls) to generate code for this check. * * I adopted this approach on 2007.02.13 (see Assignment Operators in * BigUnsigned.hh). Before then, put-here operations rejected aliased calls * with an exception. I think doing the right thing is better. * * Some of the put-here operations can probably handle aliased calls safely * without the extra copy because (for example) they process blocks strictly * right-to-left. At some point I might determine which ones don't need the * copy, but my reasoning would need to be verified very carefully. For now * I'll leave in the copy. */ #define DTRT_ALIASED(cond, op) \ if (cond) { \ BigUnsigned tmpThis; \ tmpThis.op; \ *this = tmpThis; \ return; \ } void BigUnsigned::add(const BigUnsigned &a, const BigUnsigned &b) { DTRT_ALIASED(this == &a || this == &b, add(a, b)); // If one argument is zero, copy the other. if (a.len == 0) { operator =(b); return; } else if (b.len == 0) { operator =(a); return; } // Some variables... // Carries in and out of an addition stage bool carryIn, carryOut; Blk temp; Index i; // a2 points to the longer input, b2 points to the shorter const BigUnsigned *a2, *b2; if (a.len >= b.len) { a2 = &a; b2 = &b; } else { a2 = &b; b2 = &a; } // Set prelimiary length and make room in this BigUnsigned len = a2->len + 1; allocate(len); // For each block index that is present in both inputs... for (i = 0, carryIn = false; i < b2->len; i++) { // Add input blocks temp = a2->blk[i] + b2->blk[i]; // If a rollover occurred, the result is less than either input. // This test is used many times in the BigUnsigned code. carryOut = (temp < a2->blk[i]); // If a carry was input, handle it if (carryIn) { temp++; carryOut |= (temp == 0); } blk[i] = temp; // Save the addition result carryIn = carryOut; // Pass the carry along } // If there is a carry left over, increase blocks until // one does not roll over. for (; i < a2->len && carryIn; i++) { temp = a2->blk[i] + 1; carryIn = (temp == 0); blk[i] = temp; } // If the carry was resolved but the larger number // still has blocks, copy them over. for (; i < a2->len; i++) blk[i] = a2->blk[i]; // Set the extra block if there's still a carry, decrease length otherwise if (carryIn) blk[i] = 1; else len--; } void BigUnsigned::subtract(const BigUnsigned &a, const BigUnsigned &b) { DTRT_ALIASED(this == &a || this == &b, subtract(a, b)); if (b.len == 0) { // If b is zero, copy a. operator =(a); return; } else { assert( a.len >= b.len, "BigUnsigned::subtract: Negative result in unsigned calculation"); //swapnibble /* if (a.len < b.len) // If a is shorter than b, the result is negative. throw "BigUnsigned::subtract: " "Negative result in unsigned calculation"; */ } // Some variables... bool borrowIn, borrowOut; Blk temp; Index i; // Set preliminary length and make room len = a.len; allocate(len); // For each block index that is present in both inputs... for (i = 0, borrowIn = false; i < b.len; i++) { temp = a.blk[i] - b.blk[i]; // If a reverse rollover occurred, // the result is greater than the block from a. borrowOut = (temp > a.blk[i]); // Handle an incoming borrow if (borrowIn) { borrowOut |= (temp == 0); temp--; } blk[i] = temp; // Save the subtraction result borrowIn = borrowOut; // Pass the borrow along } // If there is a borrow left over, decrease blocks until // one does not reverse rollover. for (; i < a.len && borrowIn; i++) { borrowIn = (a.blk[i] == 0); blk[i] = a.blk[i] - 1; } /* If there's still a borrow, the result is negative. * Throw an exception, but zero out this object so as to leave it in a * predictable state. */ if (borrowIn) { len = 0; //swapnibble throw "BigUnsigned::subtract: Negative result in unsigned calculation"; assert(0, "BigUnsigned::subtract: Negative result in unsigned calculation"); } else // Copy over the rest of the blocks for (; i < a.len; i++) blk[i] = a.blk[i]; // Zap leading zeros zapLeadingZeros(); } /* * About the multiplication and division algorithms: * * I searched unsucessfully for fast C++ built-in operations like the `b_0' * and `c_0' Knuth describes in Section 4.3.1 of ``The Art of Computer * Programming'' (replace `place' by `Blk'): * * ``b_0[:] multiplication of a one-place integer by another one-place * integer, giving a two-place answer; * * ``c_0[:] division of a two-place integer by a one-place integer, * provided that the quotient is a one-place integer, and yielding * also a one-place remainder.'' * * I also missed his note that ``[b]y adjusting the word size, if * necessary, nearly all computers will have these three operations * available'', so I gave up on trying to use algorithms similar to his. * A future version of the library might include such algorithms; I * would welcome contributions from others for this. * * I eventually decided to use bit-shifting algorithms. To multiply `a' * and `b', we zero out the result. Then, for each `1' bit in `a', we * shift `b' left the appropriate amount and add it to the result. * Similarly, to divide `a' by `b', we shift `b' left varying amounts, * repeatedly trying to subtract it from `a'. When we succeed, we note * the fact by setting a bit in the quotient. While these algorithms * have the same O(n^2) time complexity as Knuth's, the ``constant factor'' * is likely to be larger. * * Because I used these algorithms, which require single-block addition * and subtraction rather than single-block multiplication and division, * the innermost loops of all four routines are very similar. Study one * of them and all will become clear. */ /* * This is a little inline function used by both the multiplication * routine and the division routine. * * `getShiftedBlock' returns the `x'th block of `num << y'. * `y' may be anything from 0 to N - 1, and `x' may be anything from * 0 to `num.len'. * * Two things contribute to this block: * * (1) The `N - y' low bits of `num.blk[x]', shifted `y' bits left. * * (2) The `y' high bits of `num.blk[x-1]', shifted `N - y' bits right. * * But we must be careful if `x == 0' or `x == num.len', in * which case we should use 0 instead of (2) or (1), respectively. * * If `y == 0', then (2) contributes 0, as it should. However, * in some computer environments, for a reason I cannot understand, * `a >> b' means `a >> (b % N)'. This means `num.blk[x-1] >> (N - y)' * will return `num.blk[x-1]' instead of the desired 0 when `y == 0'; * the test `y == 0' handles this case specially. */ BigUnsigned::Blk getShiftedBlock(const BigUnsigned &num, BigUnsigned::Index x, unsigned int y) { BigUnsigned::Blk part1 = (x == 0 || y == 0) ? 0 : (num.blk[x - 1] >> (BigUnsigned::N - y)); BigUnsigned::Blk part2 = (x == num.len) ? 0 : (num.blk[x] << y); return part1 | part2; } void BigUnsigned::multiply(const BigUnsigned &a, const BigUnsigned &b) { DTRT_ALIASED(this == &a || this == &b, multiply(a, b)); // If either a or b is zero, set to zero. if (a.len == 0 || b.len == 0) { len = 0; return; } /* * Overall method: * * Set this = 0. * For each 1-bit of `a' (say the `i2'th bit of block `i'): * Add `b << (i blocks and i2 bits)' to *this. */ // Variables for the calculation Index i, j, k; unsigned int i2; Blk temp; bool carryIn, carryOut; // Set preliminary length and make room len = a.len + b.len; allocate(len); // Zero out this object for (i = 0; i < len; i++) blk[i] = 0; // For each block of the first number... for (i = 0; i < a.len; i++) { // For each 1-bit of that block... for (i2 = 0; i2 < N; i2++) { if ((a.blk[i] & (Blk(1) << i2)) == 0) continue; /* * Add b to this, shifted left i blocks and i2 bits. * j is the index in b, and k = i + j is the index in this. * * `getShiftedBlock', a short inline function defined above, * is now used for the bit handling. It replaces the more * complex `bHigh' code, in which each run of the loop dealt * immediately with the low bits and saved the high bits to * be picked up next time. The last run of the loop used to * leave leftover high bits, which were handled separately. * Instead, this loop runs an additional time with j == b.len. * These changes were made on 2005.01.11. */ for (j = 0, k = i, carryIn = false; j <= b.len; j++, k++) { /* * The body of this loop is very similar to the body of the first loop * in `add', except that this loop does a `+=' instead of a `+'. */ temp = blk[k] + getShiftedBlock(b, j, i2); carryOut = (temp < blk[k]); if (carryIn) { temp++; carryOut |= (temp == 0); } blk[k] = temp; carryIn = carryOut; } // No more extra iteration to deal with `bHigh'. // Roll-over a carry as necessary. for (; carryIn; k++) { blk[k]++; carryIn = (blk[k] == 0); } } } // Zap possible leading zero if (blk[len - 1] == 0) len--; } /* * DIVISION WITH REMAINDER * This monstrous function mods *this by the given divisor b while storing the * quotient in the given object q; at the end, *this contains the remainder. * The seemingly bizarre pattern of inputs and outputs was chosen so that the * function copies as little as possible (since it is implemented by repeated * subtraction of multiples of b from *this). * * "modWithQuotient" might be a better name for this function, but I would * rather not change the name now. */ void BigUnsigned::divideWithRemainder(const BigUnsigned &b, BigUnsigned &q) { /* Defending against aliased calls is more complex than usual because we * are writing to both *this and q. * * It would be silly to try to write quotient and remainder to the * same variable. Rule that out right away. */ //swapnibble assert( this != &q , "BigUnsigned::divideWithRemainder: Cannot write quotient and remainder into the same variable"); // if (this == &q) // throw "BigUnsigned::divideWithRemainder: Cannot write quotient and remainder into the same variable"; /* Now *this and q are separate, so the only concern is that b might be * aliased to one of them. If so, use a temporary copy of b. */ if (this == &b || &q == &b) { BigUnsigned tmpB(b); divideWithRemainder(tmpB, q); return; } /* * Knuth's definition of mod (which this function uses) is somewhat * different from the C++ definition of % in case of division by 0. * * We let a / 0 == 0 (it doesn't matter much) and a % 0 == a, no * exceptions thrown. This allows us to preserve both Knuth's demand * that a mod 0 == a and the useful property that * (a / b) * b + (a % b) == a. */ if (b.len == 0) { q.len = 0; return; } /* * If *this.len < b.len, then *this < b, and we can be sure that b doesn't go into * *this at all. The quotient is 0 and *this is already the remainder (so leave it alone). */ if (len < b.len) { q.len = 0; return; } // At this point we know (*this).len >= b.len > 0. (Whew!) /* * Overall method: * * For each appropriate i and i2, decreasing: * Subtract (b << (i blocks and i2 bits)) from *this, storing the * result in subtractBuf. * If the subtraction succeeds with a nonnegative result: * Turn on bit i2 of block i of the quotient q. * Copy subtractBuf back into *this. * Otherwise bit i2 of block i remains off, and *this is unchanged. * * Eventually q will contain the entire quotient, and *this will * be left with the remainder. * * subtractBuf[x] corresponds to blk[x], not blk[x+i], since 2005.01.11. * But on a single iteration, we don't touch the i lowest blocks of blk * (and don't use those of subtractBuf) because these blocks are * unaffected by the subtraction: we are subtracting * (b << (i blocks and i2 bits)), which ends in at least `i' zero * blocks. */ // Variables for the calculation Index i, j, k; unsigned int i2; Blk temp; bool borrowIn, borrowOut; /* * Make sure we have an extra zero block just past the value. * * When we attempt a subtraction, we might shift `b' so * its first block begins a few bits left of the dividend, * and then we'll try to compare these extra bits with * a nonexistent block to the left of the dividend. The * extra zero block ensures sensible behavior; we need * an extra block in `subtractBuf' for exactly the same reason. */ Index origLen = len; // Save real length. /* To avoid an out-of-bounds access in case of reallocation, allocate * first and then increment the logical length. */ allocateAndCopy(len + 1); len++; blk[origLen] = 0; // Zero the added block. // subtractBuf holds part of the result of a subtraction; see above. Blk *subtractBuf = new Blk[len]; //(Blk *)eosio::malloc( sizeof(Blk)*len) ;//swapnibble // Set preliminary length for quotient and make room q.len = origLen - b.len + 1; q.allocate(q.len); // Zero out the quotient for (i = 0; i < q.len; i++) q.blk[i] = 0; // For each possible left-shift of b in blocks... i = q.len; while (i > 0) { i--; // For each possible left-shift of b in bits... // (Remember, N is the number of bits in a Blk.) q.blk[i] = 0; i2 = N; while (i2 > 0) { i2--; /* * Subtract b, shifted left i blocks and i2 bits, from *this, * and store the answer in subtractBuf. In the for loop, `k == i + j'. * * Compare this to the middle section of `multiply'. They * are in many ways analogous. See especially the discussion * of `getShiftedBlock'. */ for (j = 0, k = i, borrowIn = false; j <= b.len; j++, k++) { temp = blk[k] - getShiftedBlock(b, j, i2); borrowOut = (temp > blk[k]); if (borrowIn) { borrowOut |= (temp == 0); temp--; } // Since 2005.01.11, indices of `subtractBuf' directly match those of `blk', so use `k'. subtractBuf[k] = temp; borrowIn = borrowOut; } // No more extra iteration to deal with `bHigh'. // Roll-over a borrow as necessary. for (; k < origLen && borrowIn; k++) { borrowIn = (blk[k] == 0); subtractBuf[k] = blk[k] - 1; } /* * If the subtraction was performed successfully (!borrowIn), * set bit i2 in block i of the quotient. * * Then, copy the portion of subtractBuf filled by the subtraction * back to *this. This portion starts with block i and ends-- * where? Not necessarily at block `i + b.len'! Well, we * increased k every time we saved a block into subtractBuf, so * the region of subtractBuf we copy is just [i, k). */ if (!borrowIn) { q.blk[i] |= (Blk(1) << i2); while (k > i) { k--; blk[k] = subtractBuf[k]; } } } } // Zap possible leading zero in quotient if (q.blk[q.len - 1] == 0) q.len--; // Zap any/all leading zeros in remainder zapLeadingZeros(); // Deallocate subtractBuf. // (Thanks to Brad Spencer for noticing my accidental omission of this!) delete [] subtractBuf; //eosio::free(subtractBuf);//swapnibble // } /* BITWISE OPERATORS * These are straightforward blockwise operations except that they differ in * the output length and the necessity of zapLeadingZeros. */ void BigUnsigned::bitAnd(const BigUnsigned &a, const BigUnsigned &b) { DTRT_ALIASED(this == &a || this == &b, bitAnd(a, b)); // The bitwise & can't be longer than either operand. len = (a.len >= b.len) ? b.len : a.len; allocate(len); Index i; for (i = 0; i < len; i++) blk[i] = a.blk[i] & b.blk[i]; zapLeadingZeros(); } void BigUnsigned::bitOr(const BigUnsigned &a, const BigUnsigned &b) { DTRT_ALIASED(this == &a || this == &b, bitOr(a, b)); Index i; const BigUnsigned *a2, *b2; if (a.len >= b.len) { a2 = &a; b2 = &b; } else { a2 = &b; b2 = &a; } allocate(a2->len); for (i = 0; i < b2->len; i++) blk[i] = a2->blk[i] | b2->blk[i]; for (; i < a2->len; i++) blk[i] = a2->blk[i]; len = a2->len; // Doesn't need zapLeadingZeros. } void BigUnsigned::bitXor(const BigUnsigned &a, const BigUnsigned &b) { DTRT_ALIASED(this == &a || this == &b, bitXor(a, b)); Index i; const BigUnsigned *a2, *b2; if (a.len >= b.len) { a2 = &a; b2 = &b; } else { a2 = &b; b2 = &a; } allocate(a2->len); for (i = 0; i < b2->len; i++) blk[i] = a2->blk[i] ^ b2->blk[i]; for (; i < a2->len; i++) blk[i] = a2->blk[i]; len = a2->len; zapLeadingZeros(); } void BigUnsigned::bitShiftLeft(const BigUnsigned &a, int b) { DTRT_ALIASED(this == &a, bitShiftLeft(a, b)); if (b < 0) { //swapnibble assert( b << 1 != 0, "BigUnsigned::bitShiftLeft: Pathological shift amount not implemented" ); bitShiftRight(a, -b); return; /* if (b << 1 == 0) throw "BigUnsigned::bitShiftLeft: " "Pathological shift amount not implemented"; else { bitShiftRight(a, -b); return; } */ } Index shiftBlocks = b / N; unsigned int shiftBits = b % N; // + 1: room for high bits nudged left into another block len = a.len + shiftBlocks + 1; allocate(len); Index i, j; for (i = 0; i < shiftBlocks; i++) blk[i] = 0; for (j = 0, i = shiftBlocks; j <= a.len; j++, i++) blk[i] = getShiftedBlock(a, j, shiftBits); // Zap possible leading zero if (blk[len - 1] == 0) len--; } void BigUnsigned::bitShiftRight(const BigUnsigned &a, int b) { DTRT_ALIASED(this == &a, bitShiftRight(a, b)); if (b < 0) { //swapnibble assert( b << 1 != 0, "BigUnsigned::bitShiftRight: Pathological shift amount not implemented" ); bitShiftLeft(a, -b); return; // if (b << 1 == 0) // throw "BigUnsigned::bitShiftRight: " // "Pathological shift amount not implemented"; // else { // bitShiftLeft(a, -b); // return; // } } // This calculation is wacky, but expressing the shift as a left bit shift // within each block lets us use getShiftedBlock. Index rightShiftBlocks = (b + N - 1) / N; unsigned int leftShiftBits = N * rightShiftBlocks - b; // Now (N * rightShiftBlocks - leftShiftBits) == b // and 0 <= leftShiftBits < N. if (rightShiftBlocks >= a.len + 1) { // All of a is guaranteed to be shifted off, even considering the left // bit shift. len = 0; return; } // Now we're allocating a positive amount. // + 1: room for high bits nudged left into another block len = a.len + 1 - rightShiftBlocks; allocate(len); Index i, j; for (j = rightShiftBlocks, i = 0; j <= a.len; j++, i++) blk[i] = getShiftedBlock(a, j, leftShiftBits); // Zap possible leading zero if (blk[len - 1] == 0) len--; } void BigUnsigned::print() const { bigUnsignedToString(*this).print(); } // INCREMENT/DECREMENT OPERATORS // Prefix increment void BigUnsigned::operator ++() { Index i; bool carry = true; for (i = 0; i < len && carry; i++) { blk[i]++; carry = (blk[i] == 0); } if (carry) { // Allocate and then increase length, as in divideWithRemainder allocateAndCopy(len + 1); len++; blk[i] = 1; } } // Postfix increment: same as prefix void BigUnsigned::operator ++(int) { operator ++(); } // Prefix decrement void BigUnsigned::operator --() { //swapnibble assert( len != 0, "BigUnsigned::operator --(): Cannot decrement an unsigned zero"); // if (len == 0) // throw "BigUnsigned::operator --(): Cannot decrement an unsigned zero"; Index i; bool borrow = true; for (i = 0; borrow; i++) { borrow = (blk[i] == 0); blk[i]--; } // Zap possible leading zero (there can only be one) if (blk[len - 1] == 0) len--; } // Postfix decrement: same as prefix void BigUnsigned::operator --(int) { operator --(); } /* Implementing the return-by-value and assignment operators in terms of the * copy-less operations. The copy-less operations are responsible for making * any necessary temporary copies to work around aliasing. */ BigUnsigned BigUnsigned::operator +(const BigUnsigned &x) const { BigUnsigned ans; ans.add(*this, x); return ans; } BigUnsigned BigUnsigned::operator -(const BigUnsigned &x) const { BigUnsigned ans; ans.subtract(*this, x); return ans; } BigUnsigned BigUnsigned::operator *(const BigUnsigned &x) const { BigUnsigned ans; ans.multiply(*this, x); return ans; } BigUnsigned BigUnsigned::operator /(const BigUnsigned &x) const { // swapnibble if (x.isZero()) throw "BigUnsigned::operator /: division by zero"; assert( !x.isZero(), "BigUnsigned::operator /: division by zero"); BigUnsigned q, r; r = *this; r.divideWithRemainder(x, q); return q; } BigUnsigned BigUnsigned::operator %(const BigUnsigned &x) const { // swapnibble if (x.isZero()) throw "BigUnsigned::operator %: division by zero"; assert( !x.isZero(), "BigUnsigned::operator %: division by zero"); BigUnsigned q, r; r = *this; r.divideWithRemainder(x, q); return r; } BigUnsigned BigUnsigned::operator &(const BigUnsigned &x) const { BigUnsigned ans; ans.bitAnd(*this, x); return ans; } BigUnsigned BigUnsigned::operator |(const BigUnsigned &x) const { BigUnsigned ans; ans.bitOr(*this, x); return ans; } BigUnsigned BigUnsigned::operator ^(const BigUnsigned &x) const { BigUnsigned ans; ans.bitXor(*this, x); return ans; } BigUnsigned BigUnsigned::operator <<(int b) const { BigUnsigned ans; ans.bitShiftLeft(*this, b); return ans; } BigUnsigned BigUnsigned::operator >>(int b) const { BigUnsigned ans; ans.bitShiftRight(*this, b); return ans; } void BigUnsigned::operator +=(const BigUnsigned &x) { add(*this, x); } void BigUnsigned::operator -=(const BigUnsigned &x) { subtract(*this, x); } void BigUnsigned::operator *=(const BigUnsigned &x) { multiply(*this, x); } void BigUnsigned::operator /=(const BigUnsigned &x) { // swapnibble if (x.isZero()) throw "BigUnsigned::operator /=: division by zero"; assert( !x.isZero(), "BigUnsigned::operator /=: division by zero"); /* The following technique is slightly faster than copying *this first * when x is large. */ BigUnsigned q; divideWithRemainder(x, q); // *this contains the remainder, but we overwrite it with the quotient. *this = q; } void BigUnsigned::operator %=(const BigUnsigned &x) { // swapnibble if (x.isZero()) throw "BigUnsigned::operator %=: division by zero"; assert( !x.isZero(), "BigUnsigned::operator %=: division by zero"); BigUnsigned q; // Mods *this by x. Don't care about quotient left in q. divideWithRemainder(x, q); } void BigUnsigned::operator &=(const BigUnsigned &x) { bitAnd(*this, x); } void BigUnsigned::operator |=(const BigUnsigned &x) { bitOr(*this, x); } void BigUnsigned::operator ^=(const BigUnsigned &x) { bitXor(*this, x); } void BigUnsigned::operator <<=(int b) { bitShiftLeft(*this, b); } void BigUnsigned::operator >>=(int b) { bitShiftRight(*this, b); }
[ "gongsang7@gmail.com" ]
gongsang7@gmail.com
cb0244bc4241f49409779a42140f0c8e60c6d871
6fe96d2895b59e3f8e4ff83109652e8aa4b25bc6
/paint.h
dbbc34736667091e71b5119dd1986f3143a3c6f7
[]
no_license
EglonRhuan/Quanto
d5c14833ddfdd1289d336ca9a0ddba21721b27f1
e23d90cc1ea04e3861983a4f243ebc4ee18392c2
refs/heads/master
2022-06-08T01:16:52.047387
2020-05-08T14:04:02
2020-05-08T14:04:02
259,465,874
0
0
null
null
null
null
UTF-8
C++
false
false
789
h
#ifndef PAINT_H #define PAINT_H #include <QMainWindow> //#include <QtWidgets> #include <QPainter> class paint { public: QPainter *painter; QPoint posicaoDoClick; QImage imgOriginal, imgPainter; double escalaPorDezPixels; QString unMedidaEscala; bool haEscala, mostrarMedida; QStringList listaCor = (QStringList() << "BLACK" << "WHITE" << "BLUE" << "YELLOW" << "RED" << "GREEN" << "BLACK"); int cor; public slots: paint(QString unMedida, double escala, int corPaint, bool checkBoxMostrarMedida); QImage mouseMove(const QString acaoSolicitada, const QPoint newPos); QImage mouseRelease(); QImage plotarEscala(double escalaPorDezPixels, QString unMedida); double calcTamanho(QString acaoSolicitada, QPoint newPos); }; #endif // PAINT_H
[ "eglon.rhuan@gmail.com" ]
eglon.rhuan@gmail.com
bac30fc72560afbaf807eadc4374c163024dda88
f0b90e40a5e1ea471e02c50daf736f47fd153551
/other/test/mpl/string/size.cpp
34b6720694566fd7e51154cd01b2bb90c3aa6bd6
[ "BSL-1.0" ]
permissive
chrisdevisser/stdx
315c29401732f35856ed392d27a66d93c40fa02a
80cf38f01250b8b8dcde9f5e6ec5c95d869fcdc5
refs/heads/master
2021-01-13T12:56:12.725342
2014-04-10T15:24:24
2014-04-10T15:24:24
10,488,634
1
1
null
null
null
null
UTF-8
C++
false
false
434
cpp
#include <stdx/mpl/string/size.hh> #include <stdx/mpl/string/string.hh> int main() { using namespace stdx::mpl; static_assert(Size<String<>> == 0, "Empty string"); static_assert(Size<String<'1'>> == 1, "One character"); static_assert(Size<String<'1', '2'>> == 2, "Two characters"); static_assert(Size<String<'H', 'e', 'l', 'l', 'o', ',', ' ', 'w', 'o', 'r', 'l', 'd', '!', '\0'>> == sizeof("Hello, world!"), "Hello, world!"); }
[ "cndeviss@uwaterloo.ca" ]
cndeviss@uwaterloo.ca
74ed88a7e4499c84a6b6102718da800137f44ea7
57f24846a3fa3670c8519af87e658eca120f6d23
/B2_CoarseMesh2_monkey/17/U
7ff6a778b16479798ed37b2256ee516caf768b7b
[]
no_license
bshambaugh/openfoam-experiments
82adb4b7d7eb0ec454d6f98eba274b279a6597d8
a1dd4012cb9791836da2f9298247ceba8701211c
refs/heads/master
2021-07-14T05:53:07.275777
2019-02-15T19:37:28
2019-02-15T19:37:28
153,547,385
0
0
null
null
null
null
UTF-8
C++
false
false
887,567
/*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | \\ / O peration | Version: 4.1 | | \\ / A nd | Web: www.OpenFOAM.org | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ FoamFile { version 2.0; format ascii; class volVectorField; location "17"; object U; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // dimensions [0 1 -1 0 0 0 0]; internalField nonuniform List<vector> 26785 ( (-8.20678e-16 -0.00909969 15.8513) (-8.5951e-16 -0.00722512 16.0069) (-1.01142e-15 -0.00797792 16.1372) (-5.87585e-16 -0.0078916 16.2683) (-4.96627e-16 -0.00756398 16.3866) (-2.14371e-15 -0.00642187 16.4985) (-1.05196e-15 -0.00568294 16.6115) (-1.05282e-15 -0.0047252 16.7041) (3.40934e-16 -0.00402168 16.7785) (7.62217e-17 -0.00326888 16.8355) (-1.13174e-15 -0.00252244 16.8877) (-1.0393e-15 -0.0023533 16.9223) (-1.01852e-15 -0.00209806 16.9488) (-1.03806e-15 -0.00194636 16.9608) (-1.03221e-15 -0.000963141 16.9562) (-1.05201e-15 0.000379542 16.9343) (-1.06979e-15 0.00227134 16.8881) (-1.13258e-15 0.00451396 16.813) (-5.85466e-16 0.00571707 16.7148) (-1.15135e-15 0.00465165 16.6277) (-1.81994e-15 0.00227479 16.5744) (-1.57227e-15 -0.000499021 16.5638) (-2.09357e-15 -0.00432253 16.595) (-1.98243e-15 -0.00395343 16.6422) (-8.88526e-15 0.00138923 16.6565) (-2.04235e-15 0.00616418 16.6119) (-1.77669e-15 0.00831716 16.519) (-1.60248e-15 0.00663285 16.4158) (-9.35018e-15 0.00213761 16.3459) (-1.99727e-15 -0.00134829 16.3196) (5.40137e-15 -0.00286142 16.3161) (-3.56858e-15 -0.00287435 16.317) (-4.24997e-15 -0.00226545 16.3141) (2.27307e-15 -0.00135405 16.3076) (-9.975e-15 -0.00031224 16.2986) (-2.61254e-15 0.000982414 16.2857) (-4.01535e-15 0.00226613 16.2661) (-4.27402e-15 0.00342588 16.2422) (-4.28447e-15 0.00423283 16.2173) (-4.47604e-15 0.00465623 16.1955) (-3.85073e-15 0.00473049 16.1791) (-3.7138e-15 0.0046241 16.1702) (-3.49467e-15 0.00450034 16.1682) (-1.27574e-15 0.00452706 16.1707) (-4.22173e-15 0.0047713 16.1757) (-1.94044e-15 0.00527331 16.1796) (-4.7616e-15 0.00588672 16.179) (-4.77641e-15 0.00622934 16.1783) (-4.64215e-15 0.00662987 16.1786) (-4.39691e-15 0.00678261 16.1778) (-5.11407e-15 0.00663498 16.1787) (-4.93061e-15 0.00613435 16.1815) (-4.01582e-15 0.00524039 16.1902) (-4.01023e-15 0.00418973 16.2048) (-3.9563e-15 0.00280003 16.2272) (-4.28224e-15 0.001386 16.257) (-3.40879e-15 -0.000227212 16.2952) (-3.01764e-15 -0.00162988 16.3411) (-3.6707e-15 -0.00308446 16.3934) (-3.68729e-15 -0.00418907 16.4506) (-3.66788e-15 -0.00528424 16.5117) (-3.87975e-15 -0.00601133 16.5758) (-3.48882e-15 -0.00673333 16.6408) (-3.47721e-15 -0.00713465 16.7063) (-3.88963e-15 -0.00753563 16.771) (-3.89946e-15 -0.00772817 16.8353) (-3.64711e-15 -0.00794612 16.8978) (-3.52527e-15 -0.00803654 16.959) (-3.4665e-15 -0.00812938 17.0184) (-3.33164e-15 -0.00810274 17.0763) (-1.39878e-15 -0.00806505 17.1319) (-3.31664e-15 -0.00792167 17.1852) (-3.31763e-15 -0.00777443 17.2357) (-3.17864e-15 -0.00755944 17.2834) (-2.77579e-15 -0.00736061 17.3281) (-1.57614e-15 -0.00714277 17.3697) (-3.53998e-15 -0.0069659 17.4085) (-2.89853e-15 -0.00681965 17.4445) (-2.81778e-15 -0.00674518 17.4781) (-2.76265e-15 -0.00673561 17.5097) (-2.47251e-15 -0.00680957 17.5395) (-1.0541e-15 -0.00695366 17.568) (-2.94186e-15 -0.00717111 17.5955) (-2.40144e-15 -0.00743618 17.6224) (-1.93594e-15 -0.00774076 17.6489) (-3.0312e-15 -0.00805016 17.6754) (-2.7637e-15 -0.00835852 17.7019) (-2.56629e-15 -0.00863043 17.7284) (-2.52768e-15 -0.00886678 17.7549) (-2.53505e-15 -0.00903986 17.7813) (-2.50064e-15 -0.00915857 17.8075) (-2.40885e-15 -0.00920558 17.8333) (-2.33554e-15 -0.0091965 17.8586) (-2.29007e-15 -0.0091217 17.8833) (-2.17623e-15 -0.00901908 17.9073) (-2.12982e-15 -0.00883542 17.9306) (-2.1598e-15 -0.00866384 17.953) (-2.12634e-15 -0.00846708 17.9745) (-2.05477e-15 -0.00700007 17.9929) (-1.98402e-15 -0.00625531 18.0087) (-6.67334e-16 -0.0189718 16.847) (-6.88009e-16 -0.0151049 17.0078) (-5.81494e-16 -0.0183241 17.1628) (-9.29183e-16 -0.0195888 17.3285) (-2.37901e-15 -0.0195224 17.48) (-1.89531e-15 -0.0175929 17.6213) (2.9885e-16 -0.0160866 17.7631) (1.02197e-16 -0.0139844 17.8825) (-1.60335e-15 -0.0120821 17.9834) (-3.78234e-16 -0.00997846 18.0639) (-4.36334e-16 -0.00783956 18.1392) (-4.39854e-16 -0.00700728 18.1956) (-5.1314e-16 -0.00592283 18.2448) (-4.24418e-16 -0.00449119 18.2785) (-4.89251e-16 -0.00107143 18.2943) (-1.19064e-15 0.00398176 18.2932) (-1.02592e-16 0.0096361 18.2681) (4.32613e-16 0.0159512 18.2136) (-2.04995e-16 0.0181335 18.1358) (1.57102e-16 0.0134896 18.0711) (-9.86433e-17 0.00524865 18.0413) (5.39813e-16 -0.00260792 18.0513) (-3.27976e-16 -0.0143085 18.099) (-1.01027e-15 -0.0129083 18.1606) (-2.09552e-15 0.00467212 18.1838) (-5.96507e-15 0.0199874 18.1377) (2.48028e-15 0.0268703 18.0357) (-5.92431e-16 0.0216513 17.9269) (-1.93666e-15 0.00787289 17.8606) (9.97479e-16 -0.0024645 17.844) (2.42999e-15 -0.00687476 17.8531) (5.2469e-17 -0.00686468 17.8687) (-1.967e-16 -0.00498365 17.8827) (-1.86118e-16 -0.00226436 17.8948) (6.07203e-15 0.000954166 17.9054) (-5.63139e-16 0.00465104 17.9125) (-1.27121e-15 0.00816381 17.9132) (-1.36509e-15 0.0109597 17.9101) (-1.30122e-15 0.0124943 17.9074) (-1.3136e-15 0.0127096 17.91) (-1.46537e-15 0.0118286 17.9202) (-8.33623e-16 0.0105001 17.9399) (-7.57954e-16 0.009272 17.9675) (-6.68614e-17 0.00864425 18.0001) (8.77454e-17 0.00878397 18.0349) (-2.98028e-16 0.00971808 18.0684) (-2.23682e-15 0.0109021 18.0976) (4.43058e-16 0.0112989 18.1266) (4.18171e-16 0.0116419 18.1562) (4.61172e-16 0.0113906 18.1838) (-6.73608e-17 0.0102677 18.2112) (4.3976e-16 0.00832717 18.2373) (7.3616e-17 0.00546974 18.2644) (2.57684e-15 0.002358 18.291) (-1.24344e-15 -0.00136628 18.3178) (6.47113e-16 -0.00500392 18.3435) (3.50801e-16 -0.00882085 18.3688) (7.82033e-16 -0.0120224 18.3929) (2.35788e-16 -0.0151156 18.415) (3.82395e-16 -0.0173588 18.4342) (1.18439e-15 -0.019392 18.4502) (9.78347e-16 -0.0206117 18.4629) (1.20213e-15 -0.0217115 18.4711) (6.17941e-16 -0.0221334 18.4749) (6.92654e-16 -0.0224563 18.4738) (1.20954e-15 -0.0223867 18.4684) (1.04664e-15 -0.022317 18.4581) (1.42832e-15 -0.0220239 18.4436) (3.04791e-15 -0.0217046 18.425) (7.14715e-16 -0.0211669 18.4027) (7.26057e-16 -0.0205861 18.3769) (6.52229e-16 -0.019814 18.3477) (6.07487e-16 -0.0190015 18.3151) (7.9642e-16 -0.0180721 18.2796) (3.01366e-15 -0.0171347 18.241) (1.3391e-16 -0.0161678 18.1996) (-1.57413e-16 -0.0152386 18.1556) (5.87382e-16 -0.0143777 18.1093) (5.11486e-16 -0.0136292 18.0607) (3.26321e-16 -0.0130258 18.0102) (4.42868e-16 -0.0125755 17.9582) (5.49162e-17 -0.0123011 17.9051) (-2.69792e-16 -0.0121837 17.8514) (-4.05303e-16 -0.0122171 17.7976) (7.30233e-16 -0.012361 17.7443) (2.62603e-16 -0.0125836 17.6923) (2.43169e-16 -0.0128476 17.6419) (2.55872e-16 -0.0131094 17.5939) (-5.87219e-16 -0.0133409 17.5485) (4.10656e-16 -0.0135073 17.5063) (4.64615e-16 -0.0135963 17.4672) (4.35935e-16 -0.0135844 17.4316) (5.05641e-16 -0.0134803 17.3995) (4.76521e-16 -0.0132734 17.3709) (3.97104e-16 -0.0130089 17.3459) (4.44787e-16 -0.0126702 17.3243) (3.79644e-16 -0.0120954 17.3067) (3.15209e-16 -0.0123147 17.2907) (3.75089e-16 -0.00845129 17.2813) (4.26694e-16 -0.00714348 17.2678) (-5.01338e-16 -0.0261538 17.9634) (-2.63456e-16 -0.0236992 18.1455) (1.21985e-15 -0.0295956 18.3267) (2.90452e-16 -0.0326529 18.5097) (-9.39999e-16 -0.0318044 18.6692) (-1.38717e-15 -0.0289945 18.8097) (1.51528e-15 -0.0256304 18.9422) (3.49457e-16 -0.0222867 19.0475) (2.32754e-16 -0.0186348 19.1304) (2.25654e-16 -0.0148269 19.1905) (2.59878e-16 -0.0110627 19.2429) (2.6169e-16 -0.00924273 19.2759) (2.48601e-16 -0.00770758 19.301) (2.2244e-16 -0.00516345 19.3107) (3.11347e-16 -0.000434214 19.3034) (5.77364e-17 0.00714918 19.2799) (2.17103e-15 0.015462 19.234) (-5.30511e-16 0.0254724 19.1594) (1.44663e-15 0.0287719 19.0583) (1.36646e-15 0.0211345 18.9636) (1.64559e-16 0.00770969 18.9007) (-6.92605e-16 -0.00420503 18.8808) (-2.21441e-17 -0.0224317 18.9026) (1.07495e-15 -0.0199347 18.9432) (-1.39939e-15 0.00900222 18.9595) (1.774e-15 0.0350971 18.9185) (2.98661e-15 0.0476692 18.8227) (-3.76012e-16 0.0390453 18.7145) (-8.88603e-16 0.0160486 18.6434) (-2.73304e-16 -0.00129158 18.6196) (-4.15357e-16 -0.00891081 18.6208) (-5.8296e-15 -0.00968573 18.6285) (9.09845e-16 -0.007504 18.6347) (-1.7266e-15 -0.00421129 18.64) (-1.83476e-15 2.6449e-05 18.6456) (-1.38729e-16 0.0049252 18.6494) (-2.44688e-16 0.00964362 18.648) (-7.98679e-17 0.0130574 18.6425) (1.41251e-16 0.0144593 18.6353) (4.34252e-16 0.0137028 18.6297) (6.77073e-16 0.0113569 18.6266) (8.73743e-16 0.00843825 18.6276) (1.04509e-15 0.00591757 18.6311) (1.27952e-15 0.00451968 18.635) (1.42896e-15 0.00452986 18.637) (1.50973e-15 0.00588767 18.634) (1.67837e-15 0.00782889 18.6222) (1.84485e-15 0.00900636 18.6041) (1.94704e-15 0.0100971 18.5789) (1.99332e-15 0.010846 18.5423) (2.10205e-15 0.0106643 18.494) (2.18178e-15 0.00977782 18.4313) (2.21406e-15 0.00798682 18.3553) (2.3695e-15 0.0060725 18.2646) (2.39273e-15 0.00356566 18.1605) (1.97167e-15 0.00106095 18.0429) (1.98506e-15 -0.00155623 17.9145) (2.35713e-15 -0.0037027 17.7767) (2.16389e-15 -0.00565794 17.6309) (2.15054e-15 -0.00693145 17.4782) (2.04017e-15 -0.00782422 17.32) (1.94486e-15 -0.00808618 17.1575) (1.78541e-15 -0.00806043 16.9903) (1.60851e-15 -0.00750437 16.8193) (3.50762e-15 -0.00666244 16.6445) (9.3152e-16 -0.0056486 16.4669) (9.66051e-16 -0.00455393 16.286) (7.51606e-16 -0.00348012 16.1028) (6.41617e-16 -0.00233479 15.9179) (4.7108e-16 -0.00120805 15.7322) (3.39968e-16 -3.95416e-05 15.5462) (-2.0557e-16 0.00108065 15.3604) (-4.15885e-16 0.00224882 15.1754) (-1.29477e-15 0.00330809 14.9917) (9.55658e-16 0.00441006 14.8097) (-4.19224e-17 0.00536338 14.6297) (-2.13533e-17 0.00634585 14.452) (-2.41084e-16 0.00710386 14.2768) (-3.99575e-16 0.00778625 14.1043) (-5.20966e-16 0.00813957 13.9347) (-7.1059e-16 0.00829664 13.7684) (-9.56325e-16 0.00799672 13.6059) (-6.49386e-16 0.00736283 13.448) (-7.9411e-16 0.00618763 13.2957) (-1.23561e-15 0.00461797 13.1502) (-1.31672e-15 0.00253097 13.0128) (-1.45295e-15 9.15168e-05 12.8845) (-1.53965e-15 -0.00273453 12.7667) (-1.45254e-15 -0.00577403 12.6601) (-2.05515e-15 -0.00901872 12.5655) (-2.26574e-15 -0.0123187 12.4831) (-2.10235e-15 -0.015643 12.4131) (-3.11569e-15 -0.0188987 12.3554) (-2.05708e-15 -0.022073 12.3098) (-2.24432e-15 -0.0250967 12.276) (-2.2808e-15 -0.0281534 12.2532) (-2.74407e-15 -0.0304381 12.2419) (-2.21988e-15 -0.0342463 12.241) (-2.30945e-15 -0.0335796 12.2417) (-2.30142e-15 -0.0341059 12.2864) (-4.85955e-17 -0.0305817 18.837) (1.89199e-16 -0.0315017 18.9772) (1.54032e-15 -0.0399357 19.1046) (3.40055e-16 -0.0438713 19.21) (6.03312e-16 -0.0420022 19.2774) (2.0466e-15 -0.0379886 19.3181) (8.24816e-16 -0.0332526 19.3469) (6.56943e-16 -0.0290365 19.348) (6.01681e-16 -0.0243392 19.327) (6.5617e-16 -0.0195101 19.2854) (6.62774e-16 -0.01501 19.2397) (5.9811e-16 -0.0131063 19.1779) (5.48487e-16 -0.0117157 19.1107) (8.00306e-16 -0.00893224 19.0291) (8.98555e-16 -0.00339082 18.9309) (9.03088e-16 0.00594514 18.8178) (6.04407e-16 0.0167968 18.6847) (1.15011e-15 0.030663 18.5222) (4.90821e-15 0.0359761 18.3207) (9.29199e-16 0.0253971 18.1062) (1.08813e-15 0.00453888 17.9175) (1.43531e-15 -0.0142509 17.7909) (7.66596e-16 -0.0429121 17.7311) (9.64357e-16 -0.0425679 17.7048) (1.31812e-15 -0.00526939 17.6864) (1.27293e-15 0.0292293 17.6525) (1.15695e-15 0.0494874 17.5783) (1.14044e-15 0.0402417 17.4688) (1.13465e-15 0.00941578 17.3655) (7.14791e-16 -0.0142625 17.2958) (-5.52674e-15 -0.0249581 17.245) (3.85279e-15 -0.0265091 17.197) (3.905e-15 -0.0240476 17.145) (4.06831e-15 -0.0207388 17.0928) (7.76496e-15 -0.016273 17.0467) (-1.29901e-15 -0.0109508 17.0064) (4.40976e-16 -0.00508817 16.9669) (1.47327e-15 -0.000452291 16.9262) (-3.32732e-15 0.0021168 16.8834) (3.27086e-15 0.00213426 16.8381) (3.22741e-15 0.000239763 16.7893) (6.59463e-16 -0.00247587 16.7386) (3.8821e-15 -0.0047162 16.6868) (5.95158e-15 -0.0055274 16.634) (2.96971e-15 -0.00435462 16.581) (2.09517e-15 -0.0012071 16.5258) (3.26617e-15 0.00324214 16.4646) (3.62628e-15 0.00760336 16.3996) (3.1176e-15 0.0122187 16.3291) (4.45203e-15 0.0173775 16.2468) (1.7278e-15 0.0220642 16.1503) (3.22939e-15 0.0265088 16.034) (1.84602e-15 0.0301728 15.8988) (-1.30492e-15 0.0336262 15.7424) (2.0242e-15 0.036166 15.5668) (8.12864e-16 0.0379262 15.3726) (1.37601e-16 0.0390119 15.1651) (8.29614e-16 0.0396069 14.9472) (9.28779e-16 0.0399272 14.7224) (1.72282e-15 0.0401222 14.4923) (-2.02976e-15 0.0405327 14.2599) (-1.02129e-15 0.0409947 14.0263) (-1.35269e-15 0.041772 13.7917) (-1.60307e-15 0.0427111 13.5566) (-1.61895e-15 0.0440728 13.3211) (-1.28153e-16 0.0452375 13.0862) (-4.86127e-15 0.0465272 12.8515) (3.15941e-16 0.0474227 12.618) (-4.17059e-15 0.0483695 12.3868) (-3.12299e-15 0.0489055 12.1588) (-3.21313e-15 0.0493806 11.9347) (-3.45467e-15 0.0493985 11.7152) (-6.13697e-15 0.0493572 11.501) (-1.40211e-16 0.0488417 11.2928) (-3.21494e-15 0.0483192 11.0909) (-2.69215e-15 0.0473881 10.8959) (-2.69315e-15 0.0464985 10.7082) (-6.04697e-16 0.0451778 10.5283) (-4.37237e-15 0.0437608 10.3565) (-3.46829e-15 0.0417654 10.1933) (-3.56496e-15 0.0394258 10.0395) (-3.54121e-15 0.0362354 9.89561) (-3.1604e-15 0.0323762 9.76256) (-2.43516e-15 0.0274536 9.64121) (-4.39043e-15 0.0217018 9.53242) (-4.19804e-15 0.0149185 9.43696) (-3.99559e-15 0.00740574 9.35522) (-3.69058e-15 -0.000847466 9.28751) (-3.48747e-15 -0.00950239 9.23363) (-3.71309e-15 -0.0184876 9.19335) (-3.51613e-15 -0.0275033 9.16587) (-3.5765e-15 -0.0364555 9.15061) (-3.94189e-15 -0.045148 9.14653) (-3.88925e-15 -0.0535589 9.15292) (-3.7966e-15 -0.0615228 9.16887) (-3.44154e-15 -0.0693408 9.19366) (-3.4488e-15 -0.07622 9.22575) (-3.42118e-15 -0.0832005 9.27006) (-3.30879e-15 -0.0904867 9.29964) (-3.43133e-15 -0.0913797 9.39619) (3.2119e-16 -0.0330047 19.1014) (6.0847e-16 -0.0367781 19.0576) (7.6048e-16 -0.0468557 18.9931) (9.94889e-16 -0.0512367 18.8983) (1.05265e-15 -0.0491891 18.7663) (8.45084e-16 -0.0450203 18.6134) (2.10403e-15 -0.0404391 18.4556) (9.64153e-16 -0.0366079 18.2767) (1.0368e-15 -0.032281 18.0814) (9.06793e-16 -0.0278836 17.8711) (9.17132e-16 -0.0242342 17.6641) (2.87549e-15 -0.0237731 17.447) (5.30247e-16 -0.0234583 17.2302) (1.03798e-15 -0.0212862 17.0023) (1.52723e-15 -0.0152194 16.7601) (2.53383e-15 -0.00499783 16.5051) (-5.23519e-17 0.00806308 16.2344) (5.51321e-16 0.0262462 15.9362) (6.63478e-16 0.036439 15.5797) (5.02793e-16 0.0250335 15.1675) (4.02152e-16 -0.0052433 14.7459) (9.85256e-16 -0.0361719 14.3933) (1.26478e-15 -0.0810329 14.1383) (1.4505e-15 -0.0884712 13.917) (1.68759e-15 -0.049834 13.7331) (2.42819e-15 -0.0146316 13.6131) (-7.35699e-16 0.0127205 13.5159) (-7.77922e-16 0.00851418 13.367) (2.26195e-16 -0.0245859 13.1753) (3.64376e-16 -0.0525236 13.0018) (6.55073e-16 -0.0656234 12.8489) (3.47929e-16 -0.0688179 12.7065) (-1.15895e-16 -0.0675196 12.569) (-3.83307e-15 -0.0669059 12.4431) (2.22873e-15 -0.0650737 12.3405) (3.20501e-16 -0.062074 12.2634) (1.30889e-15 -0.0565117 12.2074) (1.39348e-15 -0.051132 12.1688) (1.09933e-15 -0.0466264 12.1447) (1.01031e-15 -0.0442316 12.1292) (5.50327e-16 -0.0434903 12.1157) (-6.50534e-16 -0.0440262 12.1033) (-7.62789e-16 -0.0445464 12.0927) (2.57906e-15 -0.0442465 12.0864) (-4.1606e-16 -0.0422162 12.0895) (-1.51224e-16 -0.0381148 12.1027) (-3.07768e-16 -0.0323182 12.1217) (-3.66702e-16 -0.0256698 12.1493) (-9.37028e-16 -0.0181146 12.1837) (-1.6336e-15 -0.00837567 12.2155) (-1.6195e-15 0.00207615 12.2382) (2.57926e-15 0.0131944 12.2423) (-8.28291e-16 0.0239647 12.2272) (-2.26519e-15 0.0344361 12.1885) (-2.22944e-15 0.0435913 12.128) (-5.88303e-15 0.0508625 12.0461) (-3.73136e-15 0.0565875 11.9493) (-3.62862e-15 0.060538 11.841) (-3.75376e-15 0.0635689 11.7254) (-3.8582e-15 0.0656397 11.6044) (-3.50442e-15 0.0677215 11.4808) (-1.54929e-15 0.0694212 11.3557) (-5.82776e-15 0.071492 11.2287) (-4.85439e-15 0.0735618 11.1001) (-4.83971e-15 0.0761655 10.9696) (-6.98056e-15 0.0783903 10.8381) (-2.96335e-15 0.0807352 10.7047) (-5.93917e-15 0.0824538 10.5707) (-6.26869e-15 0.0840929 10.4368) (-3.44227e-15 0.0850437 10.3041) (-2.74402e-15 0.0857249 10.1732) (-4.32063e-15 0.0856825 10.0444) (-3.25399e-15 0.085343 9.91823) (1.63096e-15 0.0843054 9.79531) (-5.1087e-15 0.0830369 9.67569) (-7.38246e-15 0.081187 9.55987) (1.35424e-15 0.079144 9.44805) (-3.30544e-15 0.076494 9.34078) (-2.17542e-15 0.0734654 9.23826) (-3.26827e-15 0.0696391 9.14109) (-3.30533e-15 0.0651187 9.04982) (-1.69457e-15 0.0594813 8.96512) (-1.68391e-15 0.0527945 8.88759) (-9.15356e-16 0.0447978 8.81797) (-2.57719e-15 0.0356568 8.75687) (-2.19269e-15 0.0253541 8.70483) (-1.9619e-15 0.0141537 8.66201) (-1.59691e-15 0.00223556 8.62858) (-1.51339e-15 -0.0100757 8.60422) (-1.28469e-15 -0.022554 8.5887) (-1.1569e-15 -0.0349142 8.58127) (-1.14484e-15 -0.0469767 8.5815) (-2.41446e-15 -0.0585607 8.58852) (-9.01906e-16 -0.0696261 8.60187) (-1.20046e-15 -0.0800516 8.62084) (-1.15173e-15 -0.0900531 8.6453) (-5.82507e-16 -0.0994778 8.67325) (-1.3733e-15 -0.107545 8.71099) (-1.48997e-15 -0.118583 8.73461) (-1.63586e-15 -0.119977 8.80443) (4.5622e-16 -0.0334804 18.2699) (1.13463e-15 -0.0403107 18.0249) (1.43793e-15 -0.0517026 17.7631) (2.45808e-15 -0.0563799 17.467) (1.10463e-15 -0.0548691 17.1303) (9.57246e-16 -0.0513753 16.7736) (1.01405e-15 -0.048214 16.4159) (2.5106e-15 -0.0457924 16.0408) (1.33853e-15 -0.0428593 15.6529) (3.50225e-16 -0.0398625 15.2543) (-1.32048e-16 -0.0382987 14.8673) (9.26077e-16 -0.0405206 14.4774) (1.11e-15 -0.0420247 14.0987) (7.36963e-16 -0.0410299 13.719) (6.93546e-16 -0.0342386 13.3345) (6.8996e-16 -0.0233554 12.9427) (8.08151e-18 -0.00830304 12.5419) (-4.87273e-15 0.0152606 12.122) (1.72738e-15 0.0356153 11.6229) (5.28417e-15 0.0308873 10.994) (-2.47789e-16 -0.00509293 10.2582) (5.13728e-16 -0.0504729 9.5421) (1.36528e-15 -0.114505 8.94717) (-3.11193e-15 -0.131292 8.31804) (9.72748e-16 -0.102236 7.6699) (1.11319e-15 -0.0874168 7.19884) (1.44589e-15 -0.0677013 6.96076) (9.03992e-16 -0.0685624 6.75404) (-1.09391e-15 -0.102142 6.50154) (-9.46638e-15 -0.136761 6.29258) (1.04352e-16 -0.156427 6.13337) (2.57915e-16 -0.165477 6.01109) (2.20589e-16 -0.167387 5.91647) (-8.09568e-16 -0.170374 5.85015) (5.08483e-15 -0.170928 5.82271) (-2.4217e-15 -0.170484 5.83838) (2.08501e-15 -0.165825 5.8951) (4.91036e-16 -0.161074 5.99109) (-1.38128e-16 -0.155776 6.12356) (-4.47898e-16 -0.151642 6.28221) (-1.25055e-15 -0.148099 6.45264) (1.9433e-15 -0.146014 6.62772) (-4.13303e-15 -0.1445 6.80426) (-7.47058e-15 -0.143541 6.98268) (-2.14604e-15 -0.141977 7.16915) (-3.05303e-15 -0.138404 7.36562) (-3.04549e-15 -0.132316 7.56616) (-2.78756e-15 -0.124242 7.77446) (-2.72303e-15 -0.114769 7.99057) (-2.6716e-15 -0.100827 8.20425) (-2.85641e-15 -0.0842046 8.40805) (-2.945e-15 -0.0652868 8.58941) (-2.98368e-15 -0.0458033 8.74623) (-2.93506e-15 -0.0262888 8.87226) (-2.83377e-15 -0.00829796 8.96792) (-2.60113e-15 0.00676314 9.03341) (-2.38361e-15 0.0193083 9.07565) (-2.09797e-15 0.0286661 9.09892) (1.81706e-15 0.036305 9.10788) (-1.88798e-15 0.0420569 9.10558) (-1.75613e-15 0.0475609 9.09544) (-1.41459e-15 0.0522329 9.07952) (-9.331e-16 0.0573463 9.0571) (2.98583e-16 0.0623275 9.02936) (-4.24597e-16 0.0680052 8.99548) (-2.42254e-15 0.0731728 8.95678) (-2.31916e-15 0.0784699 8.91212) (-1.55651e-15 0.0829052 8.86318) (-1.13441e-15 0.0870851 8.81065) (-1.41079e-15 0.0902224 8.75598) (-9.47305e-16 0.0928006 8.69966) (-7.69415e-16 0.0942921 8.64243) (-5.20558e-16 0.0951991 8.58481) (-1.06815e-15 0.0951245 8.52743) (-2.68156e-15 0.0945924 8.47031) (1.68089e-15 0.0932803 8.41389) (4.26704e-18 0.0915654 8.35821) (1.96111e-15 0.0890433 8.30367) (2.4338e-15 0.0858853 8.25029) (1.39597e-15 0.081676 8.19854) (1.71324e-15 0.0764389 8.14879) (5.14832e-15 0.0697639 8.10164) (3.21419e-15 0.0616513 8.05765) (-1.90884e-15 0.0518968 8.01762) (2.94971e-15 0.0406417 7.98228) (-3.83986e-16 0.0279753 7.95234) (8.73988e-16 0.0141728 7.92821) (6.72299e-16 -0.000456775 7.91029) (4.8386e-16 -0.0155518 7.89853) (3.99227e-16 -0.0307677 7.89294) (-3.9702e-16 -0.0457777 7.89304) (-7.07682e-16 -0.0603408 7.89863) (-1.65982e-15 -0.0742654 7.90909) (-3.77674e-16 -0.0874874 7.92421) (-6.67616e-16 -0.0999349 7.94346) (-1.55453e-16 -0.111744 7.96704) (-1.04052e-15 -0.123099 7.9932) (-1.09686e-15 -0.132938 8.02746) (-1.20367e-15 -0.145198 8.05113) (-1.43441e-15 -0.147949 8.11316) (9.57545e-16 -0.0308467 16.8911) (7.93452e-16 -0.0401508 16.4748) (1.34594e-15 -0.0530489 16.027) (1.45992e-15 -0.057669 15.543) (1.5709e-15 -0.0565226 15.0143) (2.25538e-15 -0.0532552 14.4686) (5.32247e-16 -0.0515475 13.932) (1.06576e-15 -0.0503016 13.3898) (1.63977e-15 -0.0485704 12.8475) (-2.18639e-15 -0.0467864 12.3066) (4.3842e-16 -0.0476888 11.7922) (5.8701e-16 -0.0535822 11.2898) (2.04267e-16 -0.0576213 10.8202) (1.76231e-16 -0.0582225 10.3711) (1.00034e-16 -0.0493725 9.93574) (-5.25961e-16 -0.0359856 9.49799) (1.29343e-16 -0.0171829 9.04999) (6.84151e-15 0.0144115 8.58762) (-9.06111e-16 0.0546713 8.03014) (1.29237e-15 0.0728459 7.26327) (-8.17783e-17 0.0450996 6.26287) (-9.24112e-16 -0.013238 5.17626) (4.39409e-16 -0.103058 4.23689) (1.57968e-15 -0.123781 3.01477) (3.8843e-15 -0.133326 1.59022) (5.56278e-15 -0.204414 0.682224) (4.50778e-15 -0.235936 0.469717) (-4.70001e-15 -0.245891 0.463357) (1.72606e-14 -0.277655 0.535328) (-3.00535e-15 -0.316783 0.701817) (-4.76734e-15 -0.337021 0.913702) (-6.33365e-15 -0.341431 1.13539) (-6.23658e-15 -0.330096 1.35174) (-6.30884e-15 -0.319917 1.56588) (-2.03574e-15 -0.308816 1.78477) (1.19657e-14 -0.302734 2.01514) (-3.22551e-15 -0.294334 2.25713) (-2.19128e-15 -0.28875 2.51667) (-4.16795e-15 -0.282632 2.79813) (-5.03354e-15 -0.27707 3.09575) (-6.98499e-15 -0.270558 3.39639) (-6.71854e-15 -0.26547 3.69339) (-9.6508e-15 -0.261401 3.98166) (-9.67569e-15 -0.258987 4.26018) (-8.50837e-15 -0.256798 4.533) (-8.74698e-15 -0.253073 4.80054) (-9.37296e-15 -0.24648 5.06046) (-6.94308e-15 -0.23709 5.32318) (-1.1154e-15 -0.226368 5.58916) (-1.02598e-14 -0.20911 5.84729) (-5.26888e-15 -0.187205 6.09296) (-5.25347e-15 -0.160971 6.31427) (-3.45883e-15 -0.132765 6.51007) (-2.27899e-15 -0.103788 6.67441) (-1.51825e-15 -0.0765028 6.80744) (-1.18327e-15 -0.0533589 6.91028) (-1.1239e-15 -0.033886 6.99072) (-3.83698e-16 -0.0192728 7.05407) (-5.97408e-16 -0.0073622 7.10504) (-4.71311e-16 0.00155258 7.14751) (-3.77494e-16 0.00990476 7.18463) (-4.3964e-16 0.0169518 7.21886) (-8.65835e-16 0.0245512 7.24864) (1.6023e-15 0.0319579 7.27527) (1.39189e-15 0.0402783 7.29694) (-3.87e-15 0.0480017 7.3151) (7.80182e-16 0.0558548 7.32796) (4.923e-15 0.0626091 7.33725) (3.13764e-15 0.0689035 7.34328) (-3.32924e-15 0.0738157 7.34729) (-4.51204e-15 0.0778928 7.34925) (7.1779e-16 0.0805985 7.34954) (-4.32803e-15 0.0825339 7.34813) (2.50791e-15 0.083356 7.34533) (-1.38889e-15 0.0836651 7.34066) (3.80896e-16 0.0831792 7.33423) (-2.0252e-15 0.0822685 7.3257) (-5.96009e-15 0.0805272 7.3152) (-3.61992e-17 0.0780677 7.30245) (-9.02154e-16 0.0744435 7.28773) (-5.11346e-15 0.069586 7.27122) (-1.30841e-15 0.0630378 7.2534) (-5.52751e-15 0.0547183 7.2348) (-3.7451e-15 0.0444054 7.21623) (3.52093e-16 0.0322169 7.19852) (-7.70773e-16 0.0182781 7.18252) (-1.09829e-15 0.0029013 7.16876) (-1.11683e-15 -0.0135227 7.15789) (-1.72411e-16 -0.0305618 7.15006) (-2.5677e-15 -0.0478006 7.14557) (-1.2925e-15 -0.0648216 7.1442) (-1.33449e-15 -0.0813497 7.14611) (-3.32352e-15 -0.0971489 7.15101) (-1.6056e-15 -0.112162 7.15911) (-1.90532e-15 -0.126349 7.17021) (-1.93204e-15 -0.139834 7.18492) (-2.4315e-15 -0.152911 7.20198) (-1.07681e-15 -0.164655 7.22686) (-1.58153e-15 -0.17869 7.24226) (-1.65406e-15 -0.183205 7.29738) (1.10386e-15 -0.0259061 15.3851) (1.28691e-15 -0.0342813 14.8263) (-3.72584e-16 -0.0468711 14.2129) (1.42393e-15 -0.0499112 13.5795) (1.31527e-15 -0.0478117 12.9178) (1.15552e-15 -0.0440116 12.2646) (8.3912e-16 -0.0437288 11.6512) (-1.43772e-15 -0.0435166 11.059) (3.42512e-18 -0.0426042 10.4896) (-9.45163e-17 -0.0415949 9.9374) (-1.08266e-16 -0.0451046 9.42595) (-4.63865e-17 -0.0552143 8.93836) (-1.44674e-16 -0.0617426 8.5014) (-5.60684e-17 -0.063008 8.10132) (1.84539e-16 -0.0494281 7.72744) (-8.93833e-16 -0.029642 7.3477) (-2.43197e-16 -0.00409587 6.94207) (1.46401e-15 0.0375381 6.50948) (2.84986e-16 0.106229 5.9738) (-7.96896e-16 0.164015 5.20906) (-1.38e-15 0.159942 4.17699) (-2.35274e-15 0.0925678 2.98576) (6.99757e-15 -0.0358085 1.99981) (-2.1399e-14 -0.0298732 0.173002) (1.24072e-14 0.0114523 -1.30502) (1.04022e-14 -0.147471 -1.39571) (8.27386e-14 -0.177746 -1.10015) (6.54947e-15 -0.210862 -0.88691) (-2.69614e-15 -0.31719 -0.513342) (-1.46803e-15 -0.391279 -0.0936401) (-1.80287e-14 -0.409866 0.345212) (-1.3827e-14 -0.407 0.735838) (-1.68296e-14 -0.383294 1.07581) (-7.73278e-15 -0.36596 1.37739) (-1.10028e-15 -0.351658 1.64401) (2.9871e-14 -0.348569 1.88004) (-1.43147e-15 -0.342341 2.10002) (-5.34953e-15 -0.33935 2.32763) (-7.96817e-15 -0.335383 2.57386) (-9.36805e-15 -0.332073 2.83148) (-5.16897e-15 -0.327017 3.08702) (-8.89825e-15 -0.323082 3.33342) (-8.60316e-15 -0.31969 3.56518) (-1.677e-14 -0.318014 3.78206) (-1.79063e-14 -0.317062 3.98997) (-1.74671e-14 -0.315391 4.1911) (-1.64384e-14 -0.311183 4.38302) (-1.61786e-14 -0.303614 4.57818) (-2.07165e-14 -0.294557 4.77919) (-1.50099e-14 -0.277184 4.97485) (-1.36551e-14 -0.253299 5.16256) (-1.34698e-14 -0.222903 5.3307) (-1.37789e-14 -0.189421 5.47692) (-1.10529e-14 -0.154779 5.59772) (-1.04451e-14 -0.122109 5.69594) (-9.72082e-15 -0.0946116 5.77341) (-1.01733e-14 -0.0719205 5.8379) (-9.61068e-15 -0.0554559 5.89513) (-9.05926e-15 -0.0425325 5.94866) (-7.76785e-15 -0.0333282 6.00212) (-7.54077e-15 -0.0248363 6.05697) (-7.46282e-15 -0.0177048 6.11508) (-7.36984e-15 -0.00970496 6.17305) (-7.30328e-15 -0.00158606 6.23152) (-7.31022e-15 0.00780556 6.28717) (-7.29693e-15 0.0168194 6.34118) (-7.75431e-15 0.0260993 6.39087) (-8.43312e-15 0.0343281 6.43782) (-8.55109e-15 0.0420869 6.48165) (-8.84898e-15 0.0484195 6.52314) (-8.69173e-15 0.0538735 6.56157) (-8.57208e-15 0.0579453 6.59679) (-8.25885e-15 0.0612635 6.62822) (-7.63178e-15 0.063545 6.65584) (-4.87605e-15 0.0653963 6.67881) (-1.03279e-14 0.0665664 6.69708) (-1.38157e-14 0.0673633 6.71014) (-6.80759e-15 0.0673747 6.71808) (-6.25038e-15 0.0666273 6.72063) (-7.55988e-15 0.064633 6.71812) (-5.87057e-15 0.0612009 6.7108) (-1.58919e-15 0.0558122 6.69927) (-7.19957e-15 0.0482843 6.68414) (-6.59123e-15 0.0383678 6.66631) (-5.24441e-15 0.0261558 6.64662) (-4.56924e-15 0.0118068 6.62591) (-4.31635e-15 -0.0043276 6.60472) (-4.01788e-15 -0.0217946 6.58372) (-3.72118e-15 -0.0400881 6.56317) (-3.2526e-15 -0.058747 6.54359) (-2.56319e-15 -0.0772975 6.52507) (-5.66585e-16 -0.095447 6.50819) (-1.09797e-15 -0.1129 6.4931) (-3.27162e-15 -0.12964 6.48055) (-2.52889e-15 -0.145631 6.47084) (-1.52225e-15 -0.161035 6.46514) (-1.24233e-15 -0.176202 6.46257) (-1.2747e-15 -0.190244 6.46926) (-1.12711e-15 -0.207134 6.46797) (-9.6454e-16 -0.215999 6.50738) (-9.82993e-16 -0.0171352 13.9378) (7.29772e-16 -0.0197043 13.284) (3.57135e-16 -0.0296068 12.5703) (8.11421e-16 -0.0309586 11.8905) (-8.63951e-16 -0.0283958 11.2282) (4.27727e-16 -0.0249553 10.6112) (-2.15161e-19 -0.0270808 10.0598) (-2.57285e-16 -0.0282144 9.54099) (-7.97595e-16 -0.0276108 9.04952) (-4.81199e-16 -0.0265421 8.5724) (1.17073e-16 -0.0320139 8.13143) (3.99712e-17 -0.0458553 7.70894) (-2.93442e-16 -0.0545886 7.33836) (-2.73178e-16 -0.0561062 7.00688) (-1.21512e-16 -0.0377809 6.70662) (-2.24734e-16 -0.0105804 6.40122) (6.29302e-16 0.0219358 6.05775) (2.84979e-16 0.0734748 5.66677) (-3.67472e-15 0.163682 5.16249) (-3.75847e-15 0.251698 4.489) (-2.70219e-15 0.275574 3.6378) (-5.08225e-15 0.239426 2.60535) (-3.62394e-14 0.0801965 1.84826) (2.16771e-15 0.0450996 -0.221202) (1.31853e-14 -0.0583926 -0.945364) (7.36651e-15 -0.314652 -0.871576) (1.15141e-14 -0.363787 -0.638831) (-4.42168e-14 -0.366349 -0.177659) (-4.82335e-15 -0.422792 0.0849656) (-5.25193e-15 -0.462106 0.384649) (1.45103e-14 -0.481743 0.798591) (-1.37807e-14 -0.47517 1.17857) (-1.6312e-14 -0.445896 1.5244) (-2.79481e-14 -0.421387 1.82276) (1.03993e-14 -0.399002 2.06797) (7.12455e-15 -0.388574 2.26738) (-4.80734e-15 -0.378079 2.45138) (-1.09602e-14 -0.373796 2.65354) (-1.07954e-14 -0.369912 2.88077) (-1.26808e-14 -0.365922 3.11161) (-1.62072e-14 -0.359502 3.32262) (-1.93217e-14 -0.353809 3.50786) (-2.21312e-14 -0.349172 3.67049) (-1.97514e-14 -0.347382 3.82076) (-1.97523e-14 -0.347739 3.96992) (-2.04867e-14 -0.347747 4.11687) (-2.02606e-14 -0.345178 4.25391) (-1.99816e-14 -0.338705 4.39509) (-1.97319e-14 -0.330078 4.54258) (-1.93727e-14 -0.311836 4.68038) (-1.90656e-14 -0.286191 4.80678) (-1.85512e-14 -0.252586 4.91466) (-1.79744e-14 -0.215263 5.00644) (-1.74148e-14 -0.177209 5.08029) (-1.67213e-14 -0.142174 5.13967) (-1.58491e-14 -0.113277 5.18825) (-1.59155e-14 -0.0905975 5.23384) (-1.53027e-14 -0.0751467 5.28266) (-1.53768e-14 -0.0641175 5.33689) (-9.02904e-15 -0.056947 5.39911) (-1.52184e-14 -0.0505194 5.46834) (-1.51932e-14 -0.0448741 5.54494) (-1.52227e-14 -0.0378688 5.62347) (-1.4761e-14 -0.0300053 5.70348) (-9.25292e-15 -0.0204568 5.78035) (-1.47505e-14 -0.0108177 5.855) (-1.47668e-14 -0.000714321 5.92431) (-9.3267e-15 0.00858405 5.98981) (-1.42197e-14 0.017487 6.05082) (-1.48401e-14 0.0250834 6.10787) (-1.39095e-14 0.0318346 6.15993) (-1.26016e-14 0.0373017 6.20667) (-1.16513e-14 0.0420854 6.24736) (-1.07222e-14 0.0459757 6.28194) (-9.27773e-15 0.0495624 6.30963) (-1.89985e-14 0.0526167 6.33043) (-1.06598e-14 0.0553718 6.34399) (-1.00075e-14 0.0573996 6.3506) (-1.33234e-14 0.058636 6.35026) (-6.71845e-15 0.0585222 6.34349) (-2.84792e-15 0.0567591 6.33069) (-1.11683e-14 0.0527646 6.31247) (-5.99186e-15 0.0463201 6.28926) (-7.17584e-15 0.0371676 6.2617) (-3.70839e-15 0.0254217 6.23029) (-4.16515e-15 0.0112537 6.19555) (-4.21604e-15 -0.00494479 6.15782) (-3.71138e-15 -0.0227497 6.1178) (-3.16302e-15 -0.0416176 6.07591) (-2.79795e-15 -0.0610928 6.03312) (-2.82938e-15 -0.0807055 5.99004) (-1.83162e-15 -0.100183 5.94799) (-1.88314e-15 -0.119208 5.9078) (-1.98434e-15 -0.137807 5.87096) (-2.11095e-15 -0.155931 5.83835) (-1.49027e-15 -0.173765 5.81171) (-1.14831e-15 -0.19171 5.79048) (-1.298e-15 -0.20876 5.78127) (-9.23526e-16 -0.229434 5.76666) (-8.94281e-16 -0.245735 5.79379) (4.54295e-16 -0.00516427 12.6804) (7.84287e-17 0.00155719 11.988) (9.76178e-17 -0.00504136 11.2896) (3.7949e-16 -0.0074487 10.6849) (-8.02462e-16 -0.00677135 10.1178) (-8.91153e-16 -0.00507368 9.59274) (-3.02397e-15 -0.00949897 9.11984) (-1.12396e-15 -0.0113773 8.6626) (-1.1428e-15 -0.0102055 8.22003) (-1.37151e-15 -0.00830535 7.78123) (-4.7793e-16 -0.0149056 7.3715) (-5.54882e-17 -0.0319394 6.97564) (-6.41102e-16 -0.0428426 6.63422) (-3.00806e-17 -0.045236 6.33617) (-2.92152e-16 -0.0246087 6.07949) (-1.65118e-16 0.008616 5.82947) (5.82607e-16 0.0472052 5.53996) (-4.44789e-15 0.110596 5.18126) (-4.81086e-15 0.21673 4.68882) (-2.81836e-15 0.321381 4.1089) (-3.41702e-15 0.363525 3.40267) (-3.77515e-15 0.357262 2.47977) (2.81601e-15 0.162198 1.69417) (5.95336e-15 0.0677438 -0.0201242) (6.43662e-15 0.0732312 -0.0849985) (-2.91337e-16 -0.24743 -0.278413) (-4.80731e-15 -0.356317 -0.256261) (-9.84509e-15 -0.389268 0.097092) (-1.51124e-15 -0.480398 0.285002) (-5.12995e-15 -0.570082 0.530525) (-7.08135e-15 -0.594681 0.896047) (-6.95668e-15 -0.576039 1.2749) (6.37798e-16 -0.534312 1.63134) (-2.16324e-14 -0.491511 1.93235) (-6.9974e-15 -0.452384 2.16903) (-1.27952e-15 -0.43061 2.35871) (6.85763e-15 -0.416959 2.54541) (-9.81244e-15 -0.412697 2.76382) (-8.80442e-15 -0.407428 3.00643) (-1.24939e-14 -0.397936 3.23136) (-1.98267e-14 -0.384746 3.40591) (-1.9408e-14 -0.374522 3.53702) (-1.32151e-14 -0.368856 3.65195) (-2.04717e-14 -0.368309 3.77247) (-2.43282e-14 -0.370317 3.907) (-1.54401e-14 -0.371048 4.04611) (-1.61314e-14 -0.36825 4.17478) (-1.50462e-14 -0.36101 4.30265) (-1.45008e-14 -0.350691 4.42767) (-1.45912e-14 -0.329659 4.53196) (-1.4643e-14 -0.300831 4.61895) (-1.35219e-14 -0.264636 4.68585) (-1.25004e-14 -0.225361 4.73985) (-1.32958e-14 -0.185771 4.78399) (-1.28214e-14 -0.15064 4.82337) (-1.26593e-14 -0.122628 4.86338) (-1.39284e-14 -0.10225 4.91057) (-1.31366e-14 -0.0897722 4.96953) (-1.28102e-14 -0.0822812 5.03928) (-1.32715e-14 -0.0782332 5.11974) (-1.34117e-14 -0.0745597 5.20727) (-1.35932e-14 -0.0706772 5.30078) (-1.3574e-14 -0.0646854 5.3938) (-1.98666e-14 -0.0569162 5.48549) (-1.34354e-14 -0.0469818 5.57104) (-1.40281e-14 -0.0364331 5.65176) (-1.66993e-14 -0.0252191 5.72489) (-1.10916e-14 -0.014567 5.79224) (-1.19253e-14 -0.00425473 5.85331) (-1.42768e-14 0.0048475 5.90867) (-1.31661e-14 0.0131239 5.95739) (-1.1045e-14 0.0201933 5.9992) (-1.05749e-14 0.0266465 6.03356) (-9.06644e-15 0.0323454 6.06063) (-1.12361e-14 0.0378739 6.07984) (-1.61672e-14 0.0429969 6.09147) (-1.02032e-14 0.0478705 6.09548) (-2.83078e-16 0.0520257 6.09249) (-6.30429e-15 0.0553233 6.0827) (-4.38828e-15 0.0571508 6.06659) (-4.23361e-15 0.0571657 6.04429) (-1.71024e-15 0.0547986 6.01582) (-6.33768e-15 0.0498655 5.981) (-2.79365e-15 0.042125 5.93979) (-4.73035e-15 0.0316717 5.89234) (-3.69968e-15 0.0186038 5.83902) (-3.34883e-15 0.00325403 5.7804) (-2.93617e-15 -0.014086 5.71764) (-2.62379e-15 -0.0329395 5.65188) (-2.12759e-15 -0.0529041 5.58489) (-3.59933e-16 -0.0735276 5.51813) (-2.87405e-15 -0.094513 5.45382) (-1.57595e-15 -0.115588 5.39358) (-1.09527e-15 -0.13671 5.33951) (-1.23091e-15 -0.157847 5.29291) (-1.2763e-15 -0.179077 5.25573) (-1.25608e-15 -0.200845 5.22724) (-1.3974e-15 -0.221873 5.21396) (-1.50745e-15 -0.247154 5.19788) (-1.67702e-15 -0.272635 5.22486) (1.68377e-16 0.0182178 11.5616) (-1.57848e-16 0.0254268 10.9749) (1.87601e-16 0.0179645 10.3803) (5.80967e-16 0.0126785 9.85812) (-1.22832e-16 0.0116477 9.33882) (-8.29361e-16 0.0126261 8.83337) (-8.59116e-16 0.00693109 8.36486) (-3.51092e-15 0.00460254 7.9069) (-8.84994e-16 0.00612294 7.46693) (-8.6892e-17 0.00841996 7.03528) (-1.54697e-15 0.00020999 6.63708) (-1.79662e-15 -0.0209016 6.25559) (-7.3105e-16 -0.0353569 5.93597) (-8.59883e-16 -0.039944 5.6667) (-9.5255e-16 -0.0189223 5.44734) (8.0873e-16 0.0193248 5.24424) (-2.42239e-15 0.0667343 5.00595) (-6.05228e-15 0.143666 4.67553) (1.63861e-15 0.261964 4.2411) (-7.926e-15 0.380182 3.76559) (-3.89206e-15 0.446045 3.19948) (-4.72629e-15 0.476669 2.38791) (2.17638e-15 0.302255 1.5996) (4.27649e-14 0.123367 -0.0680975) (3.34485e-14 0.141282 0.165019) (2.02868e-14 -0.211996 -0.115096) (1.14724e-14 -0.337503 -0.0766133) (-6.15208e-15 -0.383754 0.0655411) (3.71954e-16 -0.524288 0.289088) (-3.06521e-15 -0.628273 0.498351) (-1.97185e-14 -0.667602 0.855934) (-4.79237e-15 -0.652807 1.25104) (-7.58761e-17 -0.604458 1.60156) (-2.29743e-14 -0.548608 1.88785) (-1.2673e-14 -0.497959 2.12009) (2.61325e-14 -0.471448 2.31854) (-1.37126e-15 -0.460635 2.52669) (-2.0992e-15 -0.458816 2.77896) (-6.76521e-15 -0.44945 3.04195) (-1.18024e-14 -0.428665 3.24642) (-6.364e-15 -0.404412 3.36808) (-1.37784e-14 -0.389658 3.45204) (-1.28327e-14 -0.385947 3.55654) (-8.21475e-15 -0.389541 3.70219) (1.77542e-15 -0.394122 3.87662) (-2.29575e-15 -0.394261 4.05287) (9.8509e-17 -0.388317 4.20791) (1.89364e-15 -0.376 4.3476) (5.22922e-16 -0.359217 4.46637) (-1.39492e-15 -0.331784 4.55237) (-1.96993e-15 -0.29856 4.61627) (-3.9665e-16 -0.259032 4.66006) (-4.60103e-16 -0.218154 4.6957) (-3.65759e-15 -0.179066 4.72879) (-4.15097e-15 -0.146452 4.76554) (-4.29192e-15 -0.121888 4.81072) (-5.36781e-15 -0.106116 4.86775) (-6.04681e-15 -0.0981138 4.938) (-4.6702e-15 -0.0950511 5.01773) (-5.18226e-15 -0.0943857 5.10501) (-7.47925e-15 -0.0933768 5.19544) (-7.78983e-15 -0.0909195 5.28799) (-7.88424e-15 -0.0855795 5.37673) (-7.70867e-15 -0.0775997 5.46137) (-8.20373e-15 -0.0670797 5.53771) (-1.20944e-14 -0.0555275 5.60766) (-5.16838e-15 -0.0431505 5.66897) (-7.60884e-15 -0.0311276 5.72371) (-8.44465e-15 -0.0194155 5.77151) (-8.22729e-15 -0.00885933 5.81304) (-7.60957e-15 0.000852119 5.84753) (-7.08701e-15 0.00939685 5.87492) (-5.40034e-15 0.0173844 5.89492) (-1.76013e-15 0.0247391 5.90796) (-7.62468e-15 0.0320399 5.91377) (-2.93687e-15 0.0390086 5.91291) (2.41413e-15 0.0457314 5.9056) (-3.98713e-15 0.0517234 5.89248) (9.89653e-16 0.0568467 5.87341) (-4.09946e-15 0.0605263 5.84812) (-3.86369e-15 0.062497 5.81579) (-6.84185e-15 0.062236 5.77559) (5.20913e-16 0.0595584 5.72677) (-3.16268e-15 0.0541184 5.66921) (4.82973e-16 0.0458551 5.60345) (-1.62794e-15 0.034636 5.53057) (-1.69995e-15 0.02065 5.45197) (-2.07029e-15 0.00400468 5.3697) (-1.48952e-15 -0.0148727 5.28569) (6.15785e-16 -0.0356921 5.20254) (-1.37859e-15 -0.0579376 5.12243) (-1.90892e-15 -0.0812897 5.04822) (-2.67199e-15 -0.105421 4.98192) (-4.20042e-15 -0.130177 4.92582) (-1.66421e-15 -0.155413 4.88098) (-2.09684e-15 -0.181054 4.84888) (-2.35372e-15 -0.207437 4.82799) (-2.59734e-15 -0.23297 4.82386) (-2.69227e-15 -0.263037 4.8181) (-2.70685e-15 -0.296986 4.85442) (2.2843e-15 0.0370595 10.7768) (-2.81244e-16 0.0435634 10.2221) (-2.29948e-16 0.0373249 9.63926) (-2.35532e-16 0.0312198 9.10465) (-1.88526e-16 0.0293011 8.56034) (-5.43441e-16 0.0290095 8.03216) (-7.1418e-16 0.0211668 7.55299) (-4.79052e-16 0.0169653 7.09743) (7.25698e-17 0.0174084 6.67267) (3.70372e-16 0.0193931 6.2645) (4.86246e-16 0.0092836 5.89313) (3.77773e-16 -0.0163598 5.53699) (4.67838e-16 -0.0347619 5.24614) (6.77354e-16 -0.0414016 5.00915) (5.9548e-16 -0.0201019 4.82451) (1.13338e-16 0.0219988 4.66071) (-1.9333e-15 0.0791521 4.45925) (-1.6058e-14 0.167953 4.15499) (-4.28142e-15 0.294982 3.76581) (-4.97974e-15 0.426031 3.34219) (-3.45633e-15 0.519454 2.89115) (-3.81033e-15 0.573623 2.1445) (5.506e-16 0.450253 1.72107) (-2.07059e-14 0.160844 -0.194134) (3.13618e-14 0.0816371 -0.673557) (3.7345e-14 -0.275348 -0.558353) (2.61046e-14 -0.372678 -0.371795) (4.8942e-14 -0.434938 -0.0875583) (2.64128e-15 -0.586289 0.255261) (-1.48111e-15 -0.689903 0.480848) (1.48263e-14 -0.744931 0.821595) (-1.80443e-15 -0.727718 1.19791) (-2.92289e-16 -0.66724 1.51775) (-2.07842e-14 -0.600331 1.78558) (-1.30408e-14 -0.543079 2.02688) (2.24974e-14 -0.515475 2.25369) (-2.73323e-15 -0.507452 2.50064) (-1.55561e-15 -0.505238 2.79161) (-5.11317e-15 -0.484077 3.05265) (-6.20341e-15 -0.445241 3.19778) (-5.01115e-15 -0.411179 3.25181) (6.04482e-16 -0.401239 3.32423) (1.14655e-14 -0.409925 3.47961) (8.42459e-15 -0.422469 3.70226) (9.60622e-15 -0.428537 3.94567) (3.33213e-15 -0.424032 4.16931) (1.20583e-14 -0.41052 4.35107) (1.07008e-14 -0.389014 4.49869) (1.39869e-14 -0.363513 4.61388) (4.35149e-15 -0.329538 4.69128) (6.21188e-15 -0.291802 4.74527) (1.215e-14 -0.249789 4.7814) (1.64027e-15 -0.209052 4.81333) (4.8194e-16 -0.172001 4.84614) (-6.83416e-16 -0.142802 4.88485) (-1.73087e-15 -0.121843 4.93155) (-1.76562e-15 -0.110156 4.98737) (-2.24824e-15 -0.105675 5.05243) (-3.53417e-15 -0.105845 5.12295) (-4.08429e-15 -0.107509 5.19733) (-4.10949e-15 -0.108238 5.27218) (-4.41228e-15 -0.106572 5.34746) (-4.17834e-15 -0.101442 5.41827) (-3.82872e-15 -0.0931061 5.48485) (-3.28494e-15 -0.0818929 5.54331) (-3.5346e-15 -0.069275 5.59568) (-2.94883e-15 -0.0556252 5.63976) (3.08089e-15 -0.0421522 5.67749) (1.24428e-15 -0.0290057 5.70856) (-2.96226e-15 -0.0170591 5.73378) (-3.25043e-15 -0.0060414 5.75263) (-4.1709e-15 0.00379036 5.76528) (-2.00214e-15 0.0130979 5.77168) (3.68684e-15 0.0218455 5.77249) (2.81189e-15 0.0305839 5.76766) (-2.57074e-15 0.0389998 5.75779) (-2.69419e-15 0.0471989 5.74288) (-3.36709e-15 0.0548131 5.72286) (-3.77801e-15 0.0618323 5.69648) (-6.2838e-15 0.0677848 5.66238) (-4.75667e-15 0.072452 5.61901) (-2.64658e-16 0.0752098 5.56551) (1.09883e-15 0.0756564 5.50181) (-3.20983e-16 0.0731554 5.42886) (-2.59421e-15 0.0673945 5.34834) (-1.659e-15 0.0579951 5.26224) (-1.53369e-15 0.0450439 5.17256) (-1.61914e-15 0.0285294 5.08176) (-2.33983e-15 0.00890333 4.99212) (-1.81568e-15 -0.0136777 4.90664) (-3.91273e-15 -0.0385429 4.8279) (-2.36881e-15 -0.0654492 4.75902) (-5.76256e-15 -0.0937526 4.7019) (-4.1738e-15 -0.123226 4.65835) (-3.41572e-15 -0.153319 4.62847) (-3.28058e-15 -0.183826 4.6126) (-3.22807e-15 -0.214846 4.60804) (-3.35941e-15 -0.244548 4.61889) (-3.13446e-15 -0.278594 4.62742) (-2.8115e-15 -0.318307 4.67296) (4.95579e-16 0.0523643 9.98317) (4.62242e-16 0.0613013 9.43399) (-4.34932e-16 0.0574222 8.84021) (1.61456e-15 0.0499061 8.28705) (3.92291e-16 0.045447 7.73156) (3.05672e-16 0.0422747 7.20674) (-4.62258e-16 0.0309829 6.74689) (7.86276e-16 0.0246716 6.32091) (1.38181e-15 0.0240208 5.93218) (1.1723e-15 0.0258572 5.56109) (6.86151e-16 0.0140979 5.22374) (1.123e-15 -0.0157525 4.89509) (1.47162e-15 -0.0382822 4.6307) (1.26975e-15 -0.047033 4.42112) (1.96139e-15 -0.025647 4.26379) (1.77782e-15 0.0195195 4.12659) (3.32505e-15 0.086839 3.94772) (1.75602e-15 0.187876 3.64927) (-1.49811e-15 0.324423 3.28604) (-5.09363e-15 0.462718 2.87721) (-3.44231e-15 0.575563 2.51883) (-3.25925e-15 0.639543 1.80315) (-6.05576e-16 0.57881 1.74088) (2.87241e-15 0.309467 -0.180298) (2.75801e-14 0.120384 -0.906511) (3.81235e-14 -0.327529 -0.776355) (3.6143e-14 -0.452223 -0.559224) (3.75645e-15 -0.505908 -0.175761) (2.04738e-14 -0.645358 0.12105) (-4.37171e-15 -0.749312 0.433644) (-2.1477e-16 -0.816529 0.763773) (1.31065e-15 -0.790797 1.1207) (1.09525e-14 -0.7178 1.42938) (2.71761e-15 -0.645731 1.70293) (1.67744e-15 -0.588524 1.96022) (9.08501e-15 -0.564038 2.21506) (5.48291e-15 -0.56067 2.50778) (9.59822e-16 -0.554498 2.81901) (2.55296e-15 -0.511638 3.02919) (5.10395e-15 -0.449791 3.08437) (8.31037e-15 -0.414252 3.10735) (1.29151e-14 -0.422931 3.24449) (1.31939e-14 -0.450597 3.50338) (1.27182e-14 -0.469589 3.81247) (1.33227e-14 -0.470621 4.10998) (1.72011e-14 -0.456014 4.36016) (1.01562e-14 -0.431149 4.55122) (1.13951e-14 -0.39802 4.69956) (-7.49588e-16 -0.361645 4.8135) (6.21588e-15 -0.319714 4.8894) (8.00712e-15 -0.276546 4.94274) (1.05793e-14 -0.232072 4.97874) (1.52349e-15 -0.191823 5.00881) (2.59885e-15 -0.156705 5.0367) (5.16624e-15 -0.130832 5.06629) (-4.08903e-15 -0.113439 5.09916) (-8.82008e-16 -0.105783 5.13713) (-6.50764e-16 -0.104959 5.18132) (-2.27208e-15 -0.108527 5.2293) (-1.89715e-15 -0.112889 5.28041) (-1.72048e-15 -0.115806 5.33239) (-1.22531e-15 -0.115504 5.38598) (-1.43934e-15 -0.111158 5.4368) (1.89915e-15 -0.103058 5.48496) (2.5132e-15 -0.0915772 5.5262) (1.22757e-15 -0.0781367 5.56213) (2.42327e-15 -0.0633482 5.59032) (6.04954e-15 -0.0485435 5.61268) (-2.69997e-16 -0.0341474 5.62913) (1.48471e-15 -0.0210648 5.6408) (1.14591e-15 -0.00906712 5.64742) (4.03765e-16 0.00168674 5.6493) (3.95678e-15 0.0119116 5.64646) (2.45701e-15 0.0216344 5.63963) (3.17174e-15 0.0313673 5.62869) (-1.19179e-15 0.0408918 5.61379) (-2.13634e-15 0.0504918 5.59398) (-7.40578e-15 0.0600584 5.56798) (-4.02628e-15 0.0696764 5.53355) (-4.07264e-15 0.0788051 5.48913) (-2.44118e-15 0.0869999 5.434) (-4.30039e-15 0.0932957 5.36876) (-4.04229e-15 0.0969291 5.29485) (-2.44316e-15 0.0970061 5.21429) (-1.75761e-15 0.0931013 5.1291) (-1.56042e-15 0.0847729 5.04115) (-1.92112e-15 0.0720802 4.95212) (-2.36271e-15 0.0549331 4.86444) (-2.7826e-15 0.0336884 4.7806) (-3.33629e-15 0.00841749 4.70418) (-3.86276e-15 -0.0201367 4.63802) (-4.07875e-15 -0.0515723 4.58514) (-4.20181e-15 -0.084899 4.54662) (-3.92236e-15 -0.119501 4.52298) (-3.86796e-15 -0.154491 4.51279) (-4.92075e-15 -0.189345 4.51498) (-3.10033e-15 -0.224161 4.5259) (-2.66434e-15 -0.256921 4.54847) (-2.34477e-15 -0.293647 4.56697) (-1.94335e-15 -0.336318 4.61502) (2.86545e-16 0.0635294 9.18456) (3.93814e-16 0.0762226 8.62206) (7.57371e-16 0.0741448 8.01473) (4.38764e-16 0.0648079 7.46311) (1.50891e-16 0.0573169 6.92655) (-1.15294e-16 0.0513875 6.43249) (-3.45557e-17 0.0367983 6.01247) (-7.5197e-16 0.0284865 5.62947) (2.51995e-15 0.0268101 5.28427) (8.78973e-16 0.0289433 4.95413) (5.42433e-16 0.016021 4.6522) (1.31918e-15 -0.0176097 4.34976) (1.46991e-15 -0.0436038 4.10708) (9.08712e-16 -0.0533974 3.91693) (5.47221e-16 -0.0312829 3.77864) (4.72196e-16 0.0162474 3.65717) (1.11707e-15 0.0934967 3.47939) (3.81893e-16 0.206297 3.17402) (-3.00229e-15 0.352203 2.82129) (6.76955e-15 0.497042 2.41426) (2.57586e-15 0.621794 2.05887) (-2.34423e-15 0.655231 1.44499) (-3.30165e-16 0.66875 1.75109) (3.52287e-16 0.542926 0.151237) (2.93789e-14 0.225806 -0.911871) (5.96788e-14 -0.331806 -0.665684) (2.95536e-14 -0.466806 -0.612992) (2.01463e-14 -0.550274 -0.197636) (1.0831e-14 -0.712803 -0.00787664) (-4.3491e-15 -0.812998 0.354524) (-1.00634e-14 -0.872597 0.685059) (-3.06022e-15 -0.844523 1.03447) (1.65771e-14 -0.766594 1.35902) (6.73321e-15 -0.692916 1.65578) (6.54205e-15 -0.637521 1.92835) (1.18235e-14 -0.617564 2.20763) (1.54551e-14 -0.61474 2.53957) (1.0204e-14 -0.589392 2.82819) (1.03819e-14 -0.517166 2.94022) (1.07512e-14 -0.444524 2.92455) (1.43385e-14 -0.430596 3.00398) (1.29415e-14 -0.469923 3.27063) (1.14982e-14 -0.512365 3.63225) (5.68094e-15 -0.529483 3.99177) (5.10896e-15 -0.519919 4.30318) (6.05814e-15 -0.491922 4.54978) (3.27704e-15 -0.454405 4.73189) (2.40672e-16 -0.410341 4.87121) (-2.13338e-15 -0.364829 4.9786) (2.43912e-15 -0.315802 5.05079) (4.54092e-15 -0.267976 5.10129) (4.34423e-15 -0.220948 5.13336) (-5.07071e-15 -0.179819 5.15657) (-2.96768e-15 -0.145092 5.17373) (-2.74165e-15 -0.120711 5.1889) (-2.21421e-15 -0.105303 5.20425) (-1.61829e-15 -0.100391 5.22271) (-1.41368e-15 -0.102351 5.24641) (-4.45529e-16 -0.108779 5.27379) (-3.50825e-16 -0.115637 5.3049) (5.40699e-15 -0.120696 5.33831) (-1.45722e-16 -0.122006 5.37524) (-3.29897e-16 -0.118689 5.41121) (-4.86433e-15 -0.11101 5.4457) (1.64116e-15 -0.0992729 5.47381) (1.39403e-15 -0.084898 5.49678) (4.92334e-15 -0.0688303 5.51236) (-9.91486e-16 -0.0526506 5.52285) (-3.06157e-16 -0.037074 5.52867) (-6.40451e-15 -0.0230363 5.53114) (1.16389e-16 -0.0102717 5.52999) (5.0264e-15 0.00117293 5.52534) (-2.62813e-15 0.0120568 5.51716) (-6.88484e-15 0.0225222 5.50605) (-4.92095e-15 0.0331306 5.49145) (-2.12517e-16 0.0439211 5.47256) (-2.33847e-15 0.0554729 5.44734) (-7.86076e-15 0.067813 5.41383) (-8.31801e-16 0.0808306 5.37025) (-2.75977e-15 0.0935831 5.31658) (-2.93904e-15 0.105198 5.25411) (-1.40543e-15 0.114383 5.1849) (-9.19339e-17 0.120245 5.11078) (8.18697e-17 0.121955 5.03306) (-2.95561e-16 0.119161 4.95267) (-1.16404e-15 0.111391 4.87072) (-2.67563e-15 0.0984707 4.78891) (-3.45507e-15 0.0801023 4.71043) (-4.01262e-15 0.0562925 4.63869) (-4.41868e-15 0.027299 4.57782) (-4.99232e-15 -0.00609909 4.53037) (-7.19105e-15 -0.0427833 4.4981) (-3.51403e-15 -0.0814506 4.48032) (-3.15033e-15 -0.12081 4.47566) (-1.90956e-15 -0.159856 4.48122) (-2.93378e-15 -0.197845 4.49511) (-1.7967e-15 -0.235055 4.51354) (-1.53812e-15 -0.269547 4.53937) (-1.54161e-15 -0.307753 4.55971) (-1.18709e-15 -0.35166 4.60233) (-2.77507e-15 0.0697921 8.33751) (4.40563e-16 0.0873489 7.75983) (2.23383e-16 0.0867778 7.18121) (8.39899e-17 0.0757859 6.678) (6.61849e-18 0.0657627 6.19226) (-4.71464e-16 0.0574371 5.74627) (1.3659e-15 0.0401152 5.3762) (4.54633e-15 0.0302304 5.04397) (7.98771e-16 0.027827 4.74814) (1.31283e-17 0.0304874 4.46191) (9.60655e-16 0.0173304 4.19451) (-7.47153e-16 -0.019211 3.91422) (-7.39662e-16 -0.0484211 3.6858) (-2.34937e-16 -0.0595011 3.50424) (-3.1954e-16 -0.0368588 3.3756) (-3.0928e-16 0.0139637 3.26225) (-9.10342e-17 0.102956 3.06719) (3.34772e-16 0.227437 2.7434) (4.36188e-15 0.379577 2.38197) (-1.12877e-15 0.530893 1.9787) (3.44683e-15 0.654052 1.54574) (3.68781e-15 0.6773 1.21838) (1.14718e-15 0.723661 1.27546) (4.21157e-15 0.667103 -0.510875) (7.00159e-14 0.211902 -1.17358) (5.53385e-14 -0.395026 -0.630604) (2.648e-14 -0.543206 -0.633104) (6.09907e-16 -0.63231 -0.226359) (-1.11333e-14 -0.770225 -0.0575833) (-1.55086e-14 -0.88327 0.280204) (-5.08223e-15 -0.934005 0.62383) (2.72128e-14 -0.904109 0.979008) (5.92257e-15 -0.82357 1.32077) (3.27705e-15 -0.745771 1.63263) (1.07497e-14 -0.69094 1.91805) (1.17194e-14 -0.677427 2.22765) (1.44559e-14 -0.671097 2.56314) (1.42499e-14 -0.614263 2.7797) (1.04273e-14 -0.509583 2.78578) (9.13562e-15 -0.444166 2.78293) (1.17328e-14 -0.469876 3.00788) (8.7003e-15 -0.537144 3.40376) (-2.15012e-15 -0.582703 3.8218) (2.15059e-15 -0.589083 4.18673) (-9.71181e-16 -0.565027 4.48109) (-1.57839e-15 -0.523284 4.70579) (-1.4539e-15 -0.47389 4.86899) (-1.47685e-15 -0.41958 4.99414) (-2.44476e-15 -0.365042 5.09208) (-2.7219e-15 -0.308812 5.15801) (-3.00012e-15 -0.255653 5.20282) (-3.25726e-15 -0.205278 5.22824) (-2.5979e-15 -0.162685 5.24265) (-1.8165e-15 -0.128101 5.2487) (-3.09841e-15 -0.105122 5.2509) (-2.52803e-15 -0.0920043 5.2519) (-5.93663e-16 -0.0901261 5.25503) (-5.21035e-16 -0.095232 5.26282) (-6.52824e-16 -0.104915 5.27423) (3.00891e-16 -0.114811 5.28997) (3.59046e-16 -0.12249 5.30928) (5.64155e-16 -0.125809 5.33353) (7.1815e-16 -0.123836 5.35775) (9.75446e-16 -0.116728 5.38071) (-2.63634e-15 -0.104748 5.3973) (-3.83328e-15 -0.0894543 5.40903) (-2.08743e-15 -0.0722293 5.41427) (-2.8634e-15 -0.0549606 5.4158) (-3.68139e-15 -0.0386183 5.41415) (-3.7897e-15 -0.0240186 5.41037) (-3.03183e-15 -0.0108219 5.40371) (-2.9724e-15 0.00107785 5.39412) (-3.09404e-15 0.0124176 5.38162) (-2.32654e-15 0.0235179 5.36668) (1.09331e-15 0.0351723 5.34806) (-4.83696e-15 0.0477682 5.32398) (-3.07188e-15 0.0620223 5.29205) (-3.00454e-15 0.0776907 5.25118) (-3.23981e-15 0.0940896 5.2016) (-9.13275e-15 0.109771 5.14544) (-1.82417e-15 0.12365 5.08502) (-2.00551e-15 0.134559 5.02168) (-2.99931e-15 0.141864 4.95529) (-4.01513e-15 0.144947 4.88539) (-4.36422e-15 0.14326 4.81224) (-4.50424e-15 0.135972 4.73777) (-4.63151e-15 0.122295 4.66526) (-4.49085e-15 0.101727 4.59933) (-5.68239e-15 0.0740945 4.54391) (-5.83833e-15 0.0402531 4.50225) (-5.0012e-15 0.00147441 4.47499) (-4.72078e-15 -0.0403666 4.46152) (-2.59784e-15 -0.0834343 4.45907) (-1.95668e-15 -0.126265 4.46508) (-1.06991e-15 -0.167734 4.47631) (-2.06972e-15 -0.207396 4.49141) (-1.85478e-15 -0.245803 4.50769) (-1.48123e-15 -0.281088 4.52846) (-1.14099e-15 -0.320224 4.54463) (-7.60367e-16 -0.36521 4.57669) (2.98138e-16 0.0729818 7.3954) (-2.36577e-15 0.0933865 6.92631) (2.83389e-15 0.0939417 6.4365) (-1.98683e-16 0.0820823 6.00063) (-2.6704e-18 0.0705943 5.56806) (7.25435e-17 0.0605764 5.17153) (1.75427e-17 0.0413518 4.85568) (-8.99315e-17 0.0293753 4.57852) (-2.47808e-16 0.0264901 4.33295) (-2.21309e-16 0.030547 4.0872) (-3.52215e-16 0.0182118 3.84613) (-2.57447e-16 -0.0199708 3.57699) (-1.63053e-16 -0.0509749 3.35163) (-6.82858e-17 -0.0629637 3.1682) (2.37879e-16 -0.0401725 3.04308) (-9.58115e-17 0.0140392 2.93786) (1.40484e-15 0.116485 2.70739) (-1.0145e-15 0.250304 2.35391) (2.75062e-16 0.405738 1.96875) (-7.11014e-15 0.568486 1.56081) (1.16916e-15 0.668245 1.11882) (4.50488e-15 0.680584 0.920445) (9.90328e-15 0.774121 0.078867) (3.92324e-15 0.754726 -1.41867) (1.30571e-14 0.21297 -1.18664) (1.06489e-14 -0.407945 -0.66458) (-9.37072e-15 -0.546999 -0.795946) (-5.02487e-14 -0.647953 -0.327488) (3.00554e-15 -0.806097 -0.0680596) (-1.24028e-14 -0.939529 0.250944) (-1.5519e-14 -0.994992 0.593175) (6.29493e-15 -0.964749 0.950857) (1.11957e-14 -0.88107 1.301) (1.07869e-14 -0.800513 1.61276) (1.1481e-14 -0.747923 1.91491) (1.21732e-14 -0.733943 2.25763) (8.36134e-15 -0.708697 2.54778) (1.02667e-14 -0.617957 2.65796) (1.09249e-14 -0.502585 2.61979) (6.94688e-15 -0.473826 2.73952) (7.15203e-15 -0.542688 3.12813) (3.05667e-15 -0.621771 3.59731) (4.74591e-15 -0.657547 4.01921) (-2.48298e-15 -0.647789 4.35862) (-1.90617e-15 -0.608193 4.62159) (-1.29582e-15 -0.553613 4.81905) (-9.44087e-16 -0.49391 4.962) (-8.93736e-16 -0.430761 5.07257) (-1.30925e-15 -0.368817 5.15973) (-1.78919e-15 -0.306781 5.21693) (-1.82837e-15 -0.24916 5.25354) (-1.39191e-15 -0.195669 5.27075) (-1.55791e-15 -0.151266 5.27661) (-1.65782e-15 -0.115998 5.27374) (-1.71045e-15 -0.0933172 5.26667) (-1.18896e-15 -0.0812813 5.25765) (-1.39061e-15 -0.0812895 5.24975) (-7.23129e-16 -0.0886247 5.24558) (-1.1491e-15 -0.100825 5.2445) (-1.00521e-15 -0.113493 5.24805) (-1.30362e-15 -0.123616 5.2559) (-1.62101e-15 -0.128692 5.26925) (-2.20095e-15 -0.127812 5.28265) (-2.74421e-15 -0.121117 5.29472) (-2.82721e-15 -0.108767 5.30076) (-2.02437e-15 -0.0926253 5.30293) (5.25038e-16 -0.0745303 5.30008) (-9.92325e-15 -0.056545 5.29494) (3.42834e-15 -0.0397109 5.28749) (-1.02623e-14 -0.0246498 5.27816) (-4.44182e-15 -0.011032 5.26602) (-4.89379e-15 0.00128766 5.25132) (-4.49702e-15 0.0130771 5.23452) (-5.4334e-15 0.024903 5.21584) (-3.03975e-15 0.0379543 5.19311) (-5.95123e-15 0.0528492 5.16408) (-1.71812e-16 0.0700479 5.1273) (2.05639e-15 0.0886005 5.08386) (-3.68946e-15 0.107208 5.03606) (-5.1727e-15 0.124364 4.98649) (-3.99448e-15 0.139435 4.93564) (1.63767e-15 0.151781 4.88193) (-4.91895e-15 0.16091 4.82329) (-7.49435e-15 0.165874 4.75927) (-4.40356e-15 0.165353 4.69203) (-3.97754e-15 0.157855 4.62586) (-5.00461e-15 0.142113 4.56568) (-4.78946e-15 0.11779 4.51596) (-4.32493e-15 0.0853247 4.4789) (-3.82945e-15 0.0462638 4.45508) (-3.62781e-15 0.00282289 4.44248) (-2.41797e-15 -0.0428751 4.43877) (-2.23844e-15 -0.0886286 4.44057) (-3.9133e-15 -0.133249 4.44586) (-2.645e-15 -0.175805 4.4527) (-1.91857e-15 -0.216158 4.46117) (-1.42217e-15 -0.25531 4.47045) (-7.86216e-16 -0.291321 4.4835) (-4.37524e-16 -0.331273 4.496) (-4.61435e-16 -0.377724 4.51778) (-2.7405e-15 0.0728881 6.7157) (3.42743e-16 0.0967821 6.28464) (-2.45962e-16 0.0997515 5.83193) (1.03031e-16 0.0871557 5.43704) (-3.14376e-16 0.0739087 5.05224) (3.42884e-15 0.0618111 4.70996) (1.56814e-16 0.0406653 4.45233) (-1.42396e-16 0.0275372 4.22848) (-2.20523e-16 0.0256393 4.02579) (-1.58976e-16 0.0321988 3.80933) (-7.51242e-17 0.021301 3.58093) (2.6356e-19 -0.0178673 3.31036) (1.09994e-16 -0.0508442 3.07705) (-2.57084e-17 -0.0642224 2.88197) (1.11079e-15 -0.043727 2.75477) (1.27926e-15 0.0155387 2.66174) (3.80713e-15 0.134408 2.38111) (-4.52524e-15 0.276506 1.99736) (-4.33178e-15 0.436064 1.57266) (-1.12837e-15 0.603338 1.14305) (-1.73939e-15 0.701184 0.811328) (7.53245e-15 0.731699 0.251779) (9.35194e-15 0.899129 -0.956315) (2.7936e-15 0.761084 -1.7785) (1.13077e-14 0.150103 -0.798196) (-4.5041e-15 -0.422401 -0.864369) (-3.00862e-14 -0.536141 -0.906171) (-2.03525e-14 -0.745588 -0.450887) (3.62157e-15 -0.875055 -0.0964227) (7.64919e-15 -1.00125 0.240627) (1.3097e-14 -1.05484 0.580223) (-1.73943e-14 -1.02658 0.930525) (1.16029e-14 -0.939459 1.28163) (-1.36407e-14 -0.857184 1.59117) (6.91145e-15 -0.810978 1.91309) (2.0222e-14 -0.7905 2.26452) (1.30079e-14 -0.733797 2.48629) (8.77371e-15 -0.610223 2.49474) (9.10858e-15 -0.506624 2.51009) (1.51525e-15 -0.530628 2.81866) (-5.75566e-16 -0.630712 3.31624) (-1.2434e-15 -0.706623 3.79674) (-1.16099e-15 -0.726037 4.18862) (8.04869e-17 -0.698995 4.4896) (6.13223e-16 -0.64494 4.71886) (5.6248e-16 -0.578894 4.89081) (7.20438e-17 -0.51006 5.01599) (-6.23418e-16 -0.438813 5.11373) (-1.27e-15 -0.369537 5.19074) (-1.93929e-15 -0.301165 5.23922) (-2.60343e-15 -0.238468 5.26782) (-7.64255e-16 -0.181542 5.27788) (-8.97175e-16 -0.135262 5.2774) (-2.57675e-15 -0.0995063 5.26879) (-1.98526e-15 -0.0773726 5.25597) (-1.89354e-15 -0.0667167 5.24014) (-2.1769e-15 -0.0686818 5.22373) (-1.78163e-15 -0.078448 5.2095) (-1.75706e-15 -0.0936591 5.1974) (-2.24497e-15 -0.109322 5.18988) (-2.77162e-15 -0.122158 5.18695) (-2.77051e-15 -0.12938 5.18948) (-3.31118e-15 -0.129873 5.19184) (-3.65272e-15 -0.123675 5.19317) (-3.90729e-15 -0.111085 5.18958) (-3.83878e-15 -0.0944054 5.18361) (-4.05926e-15 -0.0758469 5.17401) (-4.64119e-15 -0.057401 5.16287) (-4.74263e-15 -0.040142 5.14943) (-4.27658e-15 -0.024593 5.13392) (-4.37761e-15 -0.0106589 5.11599) (-6.3059e-15 0.00176572 5.09684) (-1.80901e-15 0.0137612 5.07712) (-1.7756e-15 0.026319 5.0561) (-1.73168e-17 0.0409771 5.03068) (-4.26783e-15 0.0582019 4.99924) (-2.94829e-15 0.077706 4.96253) (2.75504e-15 0.0977859 4.92372) (-3.65571e-15 0.117144 4.88503) (-2.50712e-15 0.135036 4.84637) (-5.07639e-16 0.151605 4.80484) (-3.1479e-15 0.166302 4.75714) (-2.24894e-15 0.178005 4.70218) (-3.31904e-15 0.184799 4.64231) (-3.12898e-15 0.184445 4.58248) (-3.48572e-15 0.175163 4.52819) (-3.89938e-15 0.155971 4.48333) (-3.47348e-15 0.127185 4.44976) (-2.66392e-15 0.0903103 4.42655) (-2.42132e-15 0.0473304 4.41208) (-1.91155e-15 0.000986666 4.40333) (1.39885e-16 -0.0466585 4.39836) (1.16704e-16 -0.0936718 4.3952) (-1.73778e-15 -0.139066 4.39361) (-2.50349e-15 -0.182384 4.39348) (-8.89989e-16 -0.223593 4.39609) (-7.66744e-16 -0.263804 4.40181) (-2.65698e-17 -0.301203 4.41169) (-5.15233e-16 -0.341916 4.42618) (-6.74388e-16 -0.389438 4.44241) (-3.67814e-16 0.0727446 6.09995) (-4.27052e-16 0.100912 5.70509) (-6.97204e-17 0.105606 5.29932) (2.18965e-16 0.0910425 4.96243) (-3.88962e-16 0.075181 4.64051) (4.45839e-16 0.0612067 4.35878) (7.48909e-18 0.0383461 4.15494) (-2.34621e-16 0.0242795 3.97327) (-2.46074e-16 0.0241675 3.79902) (-1.21919e-16 0.0348657 3.59613) (6.82801e-18 0.0257281 3.36556) (1.12483e-16 -0.013606 3.08314) (1.78726e-16 -0.0476611 2.83635) (2.58159e-16 -0.0635101 2.62621) (-5.6938e-17 -0.0483987 2.49641) (1.65812e-14 0.0179233 2.41322) (2.5634e-15 0.155164 2.07504) (-1.21576e-15 0.306285 1.66381) (-2.22107e-15 0.470869 1.19266) (-1.0998e-15 0.623076 0.741877) (8.57455e-16 0.740753 0.612545) (7.32805e-15 0.838485 -0.638791) (1.89068e-15 0.973361 -1.65972) (-1.85653e-15 0.641423 -1.8746) (-3.34832e-15 0.0919366 -0.453845) (-4.51251e-15 -0.41056 -1.003) (3.28356e-15 -0.639319 -0.803256) (8.99751e-15 -0.840309 -0.483803) (6.56933e-16 -0.948577 -0.136451) (4.33992e-15 -1.06803 0.213867) (5.26124e-15 -1.11604 0.557507) (6.1546e-15 -1.08799 0.905341) (8.85873e-15 -0.998738 1.25439) (9.18776e-15 -0.916791 1.57178) (8.99527e-15 -0.871352 1.91115) (1.19864e-14 -0.835483 2.22434) (1.04459e-14 -0.743349 2.37853) (4.20211e-15 -0.608514 2.36992) (1.9267e-15 -0.54699 2.52579) (9.84755e-16 -0.61938 2.99014) (-8.35579e-16 -0.728024 3.51921) (-9.68806e-17 -0.788972 3.96997) (6.34561e-16 -0.789124 4.31859) (8.52749e-16 -0.745507 4.58087) (2.93764e-16 -0.678651 4.78064) (-6.18191e-16 -0.602917 4.93174) (-1.57455e-15 -0.526317 5.04246) (-2.41158e-15 -0.448047 5.12887) (-2.93189e-15 -0.372433 5.19577) (-3.08828e-15 -0.298694 5.23513) (-3.07065e-15 -0.231861 5.25608) (-2.9359e-15 -0.172089 5.26053) (-2.45381e-15 -0.124054 5.25615) (-2.15224e-15 -0.087369 5.24446) (-2.18924e-15 -0.064891 5.22811) (-2.36238e-15 -0.0545358 5.20691) (-2.66847e-15 -0.0573155 5.18274) (-8.28575e-15 -0.0683878 5.15892) (-1.42344e-15 -0.0858981 5.13646) (-1.91315e-15 -0.104362 5.11864) (-2.38476e-15 -0.119855 5.10534) (-3.71187e-15 -0.129157 5.09725) (-4.31623e-15 -0.130874 5.08897) (-4.22668e-15 -0.125014 5.08045) (-4.06992e-15 -0.112367 5.06834) (-3.94862e-15 -0.0954649 5.05519) (-4.09524e-15 -0.0766189 5.03932) (-4.57879e-15 -0.0576913 5.02215) (-3.82478e-15 -0.0398616 5.00262) (-3.11093e-15 -0.0238034 4.98149) (-2.91881e-15 -0.00979669 4.95957) (-7.68285e-15 0.00237919 4.93872) (3.61527e-15 0.0144632 4.91865) (-1.41802e-15 0.0279751 4.8971) (-2.96203e-16 0.0443535 4.87094) (-6.53396e-15 0.0633512 4.84066) (1.11188e-15 0.0838316 4.80929) (3.19893e-16 0.104066 4.77971) (-3.35512e-15 0.123702 4.75108) (3.96242e-15 0.142994 4.7199) (1.68581e-15 0.16221 4.68208) (1.99355e-15 0.179946 4.636) (1.33237e-15 0.193896 4.58389) (-5.47152e-16 0.20124 4.53078) (-8.1863e-16 0.199451 4.48213) (-1.43757e-15 0.18717 4.44152) (-1.76061e-15 0.164361 4.40965) (-1.64942e-15 0.131958 4.38559) (-1.55804e-15 0.0921173 4.36695) (-1.56898e-15 0.0469641 4.35225) (-1.27281e-15 -0.000955403 4.3398) (-1.33612e-15 -0.0496703 4.32952) (-3.25942e-15 -0.0976728 4.32137) (-1.83347e-15 -0.144151 4.31656) (-7.24734e-16 -0.188781 4.31581) (-5.61024e-16 -0.231605 4.32023) (5.39537e-16 -0.273254 4.32995) (-7.17687e-16 -0.312448 4.34319) (-7.40939e-16 -0.353365 4.36345) (-9.71035e-16 -0.400232 4.37826) (-1.12242e-15 0.0714669 5.56107) (-4.51543e-16 0.103596 5.20745) (9.74249e-16 0.109148 4.86341) (3.06574e-16 0.0932601 4.59483) (-2.73684e-16 0.0751042 4.33463) (1.08121e-15 0.059231 4.10264) (5.71233e-16 0.035328 3.93591) (-3.97849e-16 0.022024 3.77926) (-2.25738e-16 0.0250664 3.61921) (2.33376e-17 0.0406049 3.41841) (1.96462e-16 0.0333083 3.17792) (2.70153e-16 -0.00680299 2.88059) (2.73652e-16 -0.0424632 2.61837) (2.60157e-16 -0.060683 2.38743) (2.55606e-16 -0.0520094 2.2486) (4.5609e-16 0.024687 2.15565) (9.48314e-16 0.179648 1.78155) (2.08532e-15 0.342389 1.34261) (1.81016e-16 0.513836 0.839289) (-6.38999e-16 0.649733 0.328149) (4.03713e-15 0.815481 0.0461321) (4.06441e-15 0.974979 -1.49078) (-3.9483e-15 0.985437 -2.10142) (-9.38195e-15 0.503866 -1.89336) (-1.60264e-14 0.097062 -0.777018) (1.1973e-14 -0.354428 -1.1215) (-1.07288e-14 -0.627297 -0.796298) (9.22271e-15 -0.857381 -0.49587) (2.39453e-15 -1.00702 -0.170402) (-8.47217e-15 -1.12993 0.180618) (1.2654e-15 -1.17823 0.52755) (5.56215e-15 -1.15013 0.879269) (1.5058e-14 -1.05829 1.22585) (1.14488e-14 -0.978613 1.55994) (1.57332e-14 -0.929628 1.90739) (7.56024e-15 -0.872923 2.15515) (-2.04585e-15 -0.749252 2.24392) (-3.62351e-15 -0.618339 2.3158) (-1.73727e-15 -0.609941 2.65066) (-1.63219e-15 -0.716425 3.19059) (-9.87282e-16 -0.820121 3.69836) (4.36034e-17 -0.862571 4.10324) (3.99993e-16 -0.844208 4.40889) (-2.11339e-16 -0.785866 4.63783) (-1.41607e-15 -0.707957 4.81386) (-2.43547e-15 -0.623683 4.94852) (-3.28338e-15 -0.539622 5.04739) (-3.86269e-15 -0.454112 5.12365) (-4.03576e-15 -0.371677 5.181) (-3.91826e-15 -0.292118 5.21208) (-3.6348e-15 -0.220939 5.22687) (-3.28826e-15 -0.158447 5.22772) (-2.94277e-15 -0.108945 5.2216) (-2.70709e-15 -0.0716218 5.20867) (-2.93005e-15 -0.0487891 5.18987) (-2.58583e-15 -0.038788 5.16369) (-2.79803e-15 -0.0424857 5.13204) (-2.27506e-15 -0.0552558 5.09917) (-2.67211e-15 -0.0750136 5.06717) (-4.03768e-15 -0.0963496 5.04002) (-3.55112e-15 -0.114598 5.01716) (2.39946e-16 -0.125894 4.99893) (-5.79868e-15 -0.128963 4.98045) (-4.00032e-15 -0.123977 4.96261) (-3.54154e-15 -0.111985 4.94269) (-1.34182e-15 -0.0953959 4.92317) (3.83751e-15 -0.0764194 4.9019) (-5.41866e-15 -0.0570202 4.87972) (-3.65565e-15 -0.0386656 4.85555) (-7.3744e-15 -0.0224454 4.83107) (5.75027e-15 -0.00889109 4.80793) (3.44416e-16 0.00268954 4.78756) (1.94901e-15 0.0148838 4.76781) (1.78714e-15 0.0294614 4.74562) (-3.23317e-15 0.0471096 4.71974) (2.53873e-15 0.0666828 4.69332) (3.99909e-15 0.0868835 4.66944) (6.3487e-15 0.106938 4.64793) (-8.1467e-16 0.127654 4.62468) (-4.17563e-16 0.149511 4.59546) (1.70716e-16 0.17191 4.55823) (2.4886e-15 0.192138 4.51465) (5.94499e-16 0.206956 4.46918) (-7.6829e-16 0.213406 4.42652) (-4.79435e-16 0.209515 4.3896) (-2.03998e-15 0.194573 4.35899) (-1.90347e-15 0.169298 4.33322) (-3.96776e-16 0.134864 4.31105) (-1.75285e-15 0.0933541 4.2912) (-1.28001e-15 0.0469086 4.27396) (2.48676e-15 -0.00228773 4.25956) (-1.01461e-15 -0.052412 4.24932) (-1.7335e-15 -0.102009 4.24389) (-1.34445e-15 -0.150348 4.24443) (-3.80803e-16 -0.196904 4.25085) (-4.3886e-16 -0.241596 4.26295) (-7.18616e-16 -0.284401 4.27959) (-1.43958e-15 -0.324814 4.29744) (-1.01283e-15 -0.365032 4.3203) (-1.19042e-15 -0.409574 4.3335) (3.18023e-15 0.069946 5.10503) (-4.16934e-16 0.105244 4.80623) (1.87868e-15 0.111482 4.53515) (4.67871e-16 0.0941501 4.32734) (-1.51323e-15 0.0744302 4.11135) (-1.81098e-15 0.056134 3.9118) (-8.88013e-16 0.0312998 3.76719) (-4.43974e-16 0.0184757 3.62416) (1.97416e-17 0.0259057 3.4696) (2.85372e-16 0.0464926 3.26455) (3.08924e-16 0.0412498 3.00998) (2.54668e-16 0.0019372 2.69583) (2.0581e-16 -0.0341817 2.41904) (1.80245e-16 -0.0576113 2.16928) (3.03702e-16 -0.0584518 2.02818) (1.82528e-16 0.0320571 1.90187) (1.70645e-15 0.205875 1.49895) (3.83925e-15 0.380298 1.02443) (-1.00772e-14 0.559175 0.512744) (-2.02825e-15 0.689876 0.0334202) (5.1683e-15 0.905631 -0.859594) (2.59611e-15 1.0787 -2.14461) (-6.28568e-15 0.945415 -2.35712) (-7.07336e-15 0.389362 -1.87338) (-1.66775e-14 0.00704946 -1.10969) (-3.41334e-14 -0.416711 -1.17072) (-4.70702e-15 -0.717177 -0.844489) (-1.29636e-14 -0.946788 -0.552233) (3.33879e-15 -1.07852 -0.204866) (-6.11184e-15 -1.19853 0.146889) (-2.30507e-16 -1.24292 0.50048) (3.64488e-15 -1.2132 0.856265) (-2.65272e-15 -1.11999 1.20393) (8.2802e-15 -1.04069 1.5525) (1.21163e-14 -0.978635 1.87741) (2.16619e-15 -0.892202 2.08817) (-7.75344e-15 -0.759314 2.17637) (-6.23457e-15 -0.661055 2.37301) (-2.68749e-15 -0.699059 2.83291) (-1.88427e-15 -0.817701 3.37397) (-6.20886e-16 -0.907249 3.83798) (-5.85834e-17 -0.930101 4.19803) (-5.68738e-16 -0.894623 4.46779) (-1.66062e-15 -0.823208 4.67049) (-2.95735e-15 -0.73563 4.82823) (-3.54014e-15 -0.643699 4.94978) (-3.97577e-15 -0.55291 5.03819) (-4.2361e-15 -0.460981 5.10441) (-4.06271e-15 -0.372896 5.15212) (-3.86766e-15 -0.288972 5.17552) (-3.54489e-15 -0.214853 5.18573) (-3.17447e-15 -0.150418 5.18498) (-2.80027e-15 -0.0993709 5.17876) (-2.71386e-15 -0.0607194 5.16539) (-2.87274e-15 -0.0363524 5.14405) (-3.26048e-15 -0.0251476 5.11243) (-2.53335e-15 -0.0286036 5.07337) (-3.40649e-15 -0.0426526 5.03267) (1.8342e-15 -0.0648828 4.99306) (-4.21674e-15 -0.0884835 4.95814) (-3.73121e-15 -0.108471 4.92658) (-2.63606e-15 -0.120926 4.89872) (-1.88907e-15 -0.125072 4.87073) (-1.23865e-15 -0.121425 4.84492) (-1.10615e-15 -0.110361 4.81913) (-3.96653e-16 -0.0943212 4.79544) (1.47616e-16 -0.0751872 4.77083) (1.27805e-15 -0.0553074 4.74538) (-1.38784e-15 -0.0365622 4.71827) (-1.88388e-15 -0.0206635 4.69211) (-6.13769e-15 -0.00791546 4.66871) (2.12708e-15 0.00315014 4.64811) (2.15216e-15 0.0157036 4.62681) (2.7456e-15 0.0312038 4.6029) (3.43783e-16 0.0492175 4.57806) (-1.93897e-15 0.0682492 4.55638) (-2.88941e-15 0.0878054 4.53835) (-1.01244e-15 0.108334 4.52059) (1.15277e-15 0.131094 4.49826) (1.9407e-15 0.155845 4.46926) (4.32975e-15 0.180725 4.43466) (2.79278e-15 0.202106 4.39771) (-1.28009e-15 0.216656 4.36194) (-1.0137e-15 0.221862 4.32935) (-6.83471e-16 0.216421 4.30027) (1.20937e-16 0.199928 4.27415) (5.58279e-16 0.173144 4.25004) (1.15487e-16 0.137356 4.22819) (-9.93706e-17 0.0943035 4.20916) (-9.21254e-16 0.0461059 4.19459) (-1.42639e-15 -0.00500949 4.18529) (-3.60732e-15 -0.0572996 4.18246) (-4.86759e-16 -0.109096 4.18589) (4.99981e-16 -0.159478 4.19548) (-5.81843e-16 -0.207712 4.20978) (2.80429e-16 -0.253554 4.2275) (-1.07407e-15 -0.296573 4.24666) (-1.02573e-15 -0.336941 4.26482) (-1.16699e-15 -0.375655 4.28387) (-1.38523e-15 -0.417578 4.29401) (4.57062e-16 0.0695989 4.73567) (7.01749e-16 0.106591 4.5201) (-7.53319e-16 0.113477 4.30747) (-2.64778e-16 0.095421 4.13219) (-1.72672e-15 0.0741297 3.94103) (-1.85275e-15 0.0533252 3.76225) (-9.02216e-17 0.0278607 3.62999) (8.565e-17 0.0168803 3.49199) (4.36689e-15 0.0288881 3.33766) (2.40693e-16 0.0551484 3.12692) (7.40543e-17 0.0529076 2.86069) (-1.36175e-17 0.0146596 2.53283) (-4.49167e-17 -0.0227775 2.24084) (-3.23444e-17 -0.0507735 1.96618) (1.09706e-16 -0.0590669 1.81724) (8.4748e-17 0.0413633 1.64634) (-7.23735e-16 0.23561 1.22429) (1.5885e-15 0.421792 0.702628) (-1.14814e-14 0.615666 0.212115) (-1.87722e-15 0.782766 -0.356736) (4.37108e-15 1.02697 -1.71588) (-7.64351e-17 1.13676 -2.59171) (-6.36548e-15 0.874401 -2.49413) (-4.48501e-15 0.304639 -1.87129) (3.10057e-15 -0.0161355 -1.38641) (-3.12582e-15 -0.413701 -1.26031) (1.24362e-14 -0.752569 -0.888887) (4.29229e-15 -0.995457 -0.59857) (-2.32847e-15 -1.14507 -0.242409) (-5.48169e-15 -1.26358 0.116938) (-3.4766e-16 -1.30722 0.476679) (6.8577e-15 -1.27711 0.833444) (-1.3542e-14 -1.18382 1.18933) (5.66144e-15 -1.1012 1.54187) (-3.03142e-14 -1.02714 1.8283) (-5.12333e-15 -0.915902 2.03763) (-7.20019e-15 -0.780313 2.18877) (-3.9718e-15 -0.722558 2.49791) (-1.48216e-15 -0.794221 3.00601) (-1.2649e-15 -0.912092 3.51678) (-2.39594e-17 -0.985652 3.93889) (-9.96614e-16 -0.990358 4.26243) (-2.01726e-15 -0.939522 4.50373) (-3.45484e-15 -0.856527 4.68562) (-3.62756e-15 -0.760211 4.82849) (-3.60849e-15 -0.660931 4.93855) (-3.64265e-15 -0.563242 5.01686) (-3.52402e-15 -0.46433 5.07309) (-2.89009e-15 -0.370017 5.11173) (-2.7129e-15 -0.281607 5.1289) (-2.32049e-15 -0.204769 5.13642) (-1.97312e-15 -0.1389 5.13568) (-1.71307e-15 -0.0866361 5.13021) (-2.16774e-15 -0.0466347 5.11651) (-2.91262e-15 -0.0207805 5.09246) (-2.7153e-15 -0.00834766 5.05559) (-3.05532e-15 -0.0115306 5.01024) (-2.98795e-15 -0.0269337 4.96365) (-3.15768e-15 -0.0519362 4.91875) (-2.82096e-15 -0.0782017 4.87801) (-2.11234e-15 -0.0998147 4.83892) (-1.36008e-15 -0.113903 4.80244) (-5.96849e-16 -0.119323 4.76651) (-8.46449e-17 -0.117339 4.73522) (-6.38184e-16 -0.107409 4.70646) (3.48897e-16 -0.0920144 4.68105) (2.10769e-15 -0.0726631 4.65455) (1.91557e-15 -0.0522602 4.62638) (1.15017e-15 -0.0333964 4.59644) (1.07267e-15 -0.018276 4.56834) (8.14231e-17 -0.00650997 4.54323) (-3.18394e-15 0.00430543 4.51977) (3.91131e-15 0.0172122 4.49486) (2.15501e-15 0.0329174 4.46924) (8.94934e-15 0.0502331 4.44645) (2.4081e-15 0.0682077 4.42899) (5.11469e-15 0.0875196 4.41408) (4.58025e-15 0.109266 4.39717) (2.21089e-16 0.134256 4.37525) (9.87074e-16 0.161174 4.34911) (2.49195e-15 0.187282 4.321) (2.08558e-15 0.208896 4.29279) (1.59155e-15 0.223095 4.26546) (1.70053e-15 0.227682 4.23914) (2.44666e-15 0.22148 4.21388) (8.46873e-16 0.204148 4.19012) (2.0327e-15 0.176055 4.16845) (-1.9029e-15 0.138594 4.15039) (-2.18419e-16 0.0935373 4.13713) (-1.50939e-15 0.0429651 4.13027) (-2.0627e-15 -0.010546 4.12979) (-1.62673e-15 -0.0650726 4.1357) (-3.29078e-15 -0.118763 4.14655) (-5.97179e-16 -0.170522 4.16126) (-5.31418e-16 -0.219529 4.17789) (-6.03096e-16 -0.265496 4.19519) (-1.05504e-15 -0.308011 4.21146) (-6.36219e-16 -0.347462 4.22642) (-1.43793e-15 -0.384617 4.23917) (-1.49849e-15 -0.425104 4.24791) (-1.02907e-15 0.0717629 4.53909) (-1.10171e-15 0.109741 4.34359) (-1.1688e-15 0.116592 4.1419) (-9.1332e-16 0.0976175 3.97836) (-1.191e-15 0.0743944 3.80536) (-1.54537e-15 0.0508273 3.64172) (-3.19707e-15 0.0242696 3.51481) (4.14588e-15 0.0150549 3.37734) (-4.49305e-16 0.0313955 3.22229) (-3.92959e-16 0.0635284 3.00761) (-2.88053e-16 0.0652391 2.73112) (-2.78386e-16 0.0301302 2.39038) (-3.22388e-16 -0.00801169 2.08821) (-3.1098e-16 -0.0449731 1.79431) (-2.3707e-16 -0.0657301 1.65596) (-1.75086e-15 0.0505826 1.40709) (5.61046e-15 0.267949 0.943457) (-1.72928e-14 0.463448 0.367064) (-1.96283e-14 0.673333 -0.0734275) (1.74534e-15 0.891075 -1.02749) (3.49386e-15 1.14063 -2.37958) (-3.22368e-15 1.14618 -2.87678) (-7.75275e-15 0.781786 -2.56027) (5.13448e-15 0.23532 -1.87714) (1.43154e-14 -0.071387 -1.53786) (-2.08018e-15 -0.483241 -1.32447) (2.91842e-15 -0.822832 -0.94415) (-2.12027e-14 -1.06545 -0.642699) (-3.85399e-15 -1.21664 -0.276772) (-1.81881e-15 -1.33276 0.0891977) (5.34604e-16 -1.37329 0.455255) (3.51425e-15 -1.34235 0.813003) (-1.13011e-16 -1.24847 1.17575) (5.17097e-15 -1.15393 1.5267) (6.82363e-15 -1.06522 1.80005) (-1.53392e-14 -0.947989 2.02262) (-3.39434e-15 -0.824944 2.25017) (-1.31369e-15 -0.799494 2.6319) (-6.74099e-16 -0.8908 3.14441) (-3.88295e-16 -1.0025 3.62472) (-6.58218e-17 -1.05936 4.01311) (-2.58509e-15 -1.04669 4.30709) (-2.55129e-15 -0.981586 4.52494) (-2.44069e-15 -0.887995 4.68943) (-2.50635e-15 -0.78353 4.81938) (4.72668e-15 -0.677399 4.91854) (-1.89343e-15 -0.573366 4.98652) (-8.31446e-16 -0.468491 5.0326) (-6.80617e-16 -0.369438 5.06286) (-1.60121e-15 -0.278211 5.07536) (-1.57879e-15 -0.199963 5.08195) (-1.62803e-15 -0.133093 5.08237) (-1.51864e-15 -0.0794033 5.07786) (-1.55737e-15 -0.0369503 5.06331) (-3.45296e-15 -0.00846326 5.03616) (-3.94908e-15 0.00594021 4.99478) (-3.54757e-15 0.00352861 4.94518) (-3.5018e-15 -0.0128111 4.89543) (-2.81849e-15 -0.0390888 4.84747) (-2.46455e-15 -0.0665947 4.8024) (-1.16906e-15 -0.0894535 4.75707) (-3.91731e-16 -0.105687 4.71418) (-7.44503e-17 -0.113007 4.67357) (-4.42523e-17 -0.112664 4.64008) (-6.9167e-15 -0.103954 4.61073) (1.12575e-16 -0.0886722 4.58439) (1.21337e-15 -0.0685814 4.55541) (-8.17587e-16 -0.0474089 4.52336) (4.20111e-15 -0.028652 4.48963) (-1.14934e-15 -0.0145595 4.45843) (2.54779e-15 -0.00376831 4.42987) (2.45482e-15 0.00692894 4.40204) (2.25817e-16 0.0197869 4.37386) (-5.01172e-15 0.0347567 4.34845) (3.55678e-15 0.050754 4.32888) (4.26007e-15 0.0678527 4.31475) (3.77893e-15 0.08752 4.30138) (3.20024e-15 0.110695 4.2853) (2.53646e-15 0.137335 4.26607) (9.376e-16 0.165417 4.24557) (-1.12041e-15 0.192089 4.22466) (2.73804e-15 0.213987 4.20292) (1.46016e-15 0.228288 4.18015) (6.32249e-16 0.232748 4.15684) (2.45108e-16 0.225858 4.13427) (-5.13015e-16 0.207357 4.11392) (-1.33347e-15 0.177486 4.09705) (-2.27532e-15 0.137633 4.08531) (-2.56992e-15 0.0900151 4.07931) (-1.88113e-15 0.0369114 4.07976) (-1.65087e-15 -0.0188705 4.08558) (-1.37649e-15 -0.0751343 4.09584) (-9.80045e-16 -0.129945 4.10869) (-1.24225e-15 -0.182239 4.12313) (-1.60898e-15 -0.231269 4.13778) (-2.39643e-15 -0.276779 4.15211) (-1.70633e-15 -0.318605 4.16508) (-1.99851e-15 -0.356906 4.17784) (-1.44244e-15 -0.392955 4.18717) (-1.30633e-15 -0.433221 4.19862) (-8.65196e-16 0.075751 4.3795) (-1.29128e-15 0.115132 4.19424) (-1.15327e-15 0.120607 4.00066) (-6.7319e-16 0.100434 3.85048) (1.90205e-15 0.0751599 3.6935) (-1.301e-15 0.0492865 3.53778) (-1.3293e-15 0.0222124 3.4102) (-1.12469e-15 0.0149848 3.27108) (-8.79319e-16 0.0364703 3.11655) (-5.97503e-16 0.0746445 2.90152) (-4.20055e-16 0.0818335 2.6208) (-4.68944e-16 0.049111 2.27175) (-6.07571e-16 0.00845667 1.95978) (-6.22702e-16 -0.0343965 1.6375) (-8.98432e-16 -0.0599092 1.50112) (1.90615e-14 0.0689655 1.15205) (5.14875e-15 0.306389 0.65726) (8.15918e-15 0.511372 0.0459538) (-2.71634e-14 0.764302 -0.465032) (5.56456e-16 1.0178 -1.77462) (5.111e-16 1.22713 -2.86302) (-6.54538e-15 1.12108 -3.05689) (-1.49844e-14 0.680742 -2.58423) (2.4092e-15 0.18466 -1.92533) (3.83167e-15 -0.115835 -1.71672) (5.70177e-15 -0.523014 -1.38874) (3.61026e-15 -0.880192 -1.00422) (2.67351e-16 -1.12877 -0.683869) (-3.70181e-16 -1.28737 -0.309212) (-8.85543e-15 -1.40158 0.0630476) (4.30644e-16 -1.44018 0.435187) (1.56165e-15 -1.40705 0.796413) (1.27327e-15 -1.31488 1.15795) (-1.18657e-15 -1.213 1.51302) (-9.47682e-16 -1.10664 1.80184) (-7.97838e-15 -0.980289 2.03121) (-4.6267e-15 -0.875667 2.31686) (1.33754e-15 -0.882564 2.74986) (2.92656e-16 -0.985991 3.25586) (1.14422e-15 -1.08792 3.7098) (-1.23969e-15 -1.12742 4.069) (-3.42939e-15 -1.09799 4.33694) (-8.25361e-15 -1.01968 4.53413) (2.36709e-16 -0.91641 4.68319) (4.06621e-16 -0.804184 4.80107) (-2.26281e-16 -0.691152 4.88922) (-8.3674e-16 -0.580314 4.9466) (-8.45149e-17 -0.468917 4.98302) (1.12726e-17 -0.364728 5.00645) (-2.25147e-15 -0.270677 5.01632) (-2.28485e-15 -0.191101 5.02347) (-2.45018e-15 -0.123281 5.02544) (-2.65517e-15 -0.0683936 5.02161) (-3.15644e-15 -0.023789 5.00597) (-3.51305e-15 0.00721527 4.97616) (-4.45112e-15 0.0230122 4.9321) (-4.32537e-15 0.0201895 4.88119) (-2.74086e-15 0.00202199 4.83144) (-7.25172e-16 -0.0252661 4.78285) (-1.32949e-16 -0.052967 4.73486) (6.11499e-15 -0.0761995 4.68464) (-5.28183e-16 -0.094052 4.63752) (-7.49191e-16 -0.10421 4.59492) (-6.58476e-16 -0.10599 4.56093) (-7.29033e-15 -0.098698 4.53109) (2.71549e-16 -0.0831145 4.50257) (1.51364e-15 -0.0619889 4.46943) (1.80719e-15 -0.0401652 4.43243) (1.01319e-15 -0.0219767 4.39445) (3.7995e-16 -0.00917269 4.35961) (-3.43304e-15 0.000565727 4.32702) (-1.63033e-15 0.0107313 4.29558) (2.13502e-16 0.0226441 4.26654) (-2.69563e-16 0.0360139 4.2436) (-4.36471e-16 0.0505632 4.22758) (-4.67581e-15 0.0672271 4.21588) (3.79319e-15 0.0875133 4.20402) (-2.33258e-15 0.1118 4.1905) (-2.10376e-15 0.139425 4.17592) (1.84147e-15 0.168284 4.16099) (-2.48006e-15 0.195635 4.14464) (-1.94772e-15 0.21819 4.12567) (-2.46717e-15 0.232797 4.10467) (-2.51258e-15 0.23707 4.08326) (-2.52021e-15 0.22916 4.06358) (-2.96792e-15 0.208865 4.04721) (-3.01258e-15 0.176808 4.03509) (-2.56531e-15 0.134435 4.02848) (-7.32378e-17 0.0842573 4.0273) (-2.38874e-15 0.0289588 4.03147) (8.41868e-16 -0.0284888 4.03944) (-1.53481e-15 -0.0858449 4.05027) (6.9874e-16 -0.141223 4.06254) (-1.05108e-15 -0.19367 4.07588) (-1.52474e-15 -0.242525 4.08956) (-2.31153e-15 -0.287566 4.10335) (-8.89769e-16 -0.328839 4.1165) (-1.08383e-15 -0.366131 4.13013) (-8.07892e-16 -0.401638 4.1401) (-1.05354e-15 -0.442111 4.15627) (-9.27312e-16 0.0799019 4.25034) (-8.97835e-16 0.119861 4.06826) (-8.15484e-16 0.12416 3.88185) (-3.53717e-16 0.102773 3.74421) (-8.94822e-17 0.0757581 3.59724) (-8.29273e-16 0.047153 3.44272) (-1.29982e-15 0.0198414 3.31224) (2.67007e-15 0.0143193 3.17418) (-1.05012e-15 0.0409541 3.02339) (-7.99438e-16 0.0851694 2.81113) (-5.99896e-16 0.0969319 2.52837) (-6.51801e-16 0.0691215 2.17116) (-8.16212e-16 0.0246527 1.85417) (-8.98651e-16 -0.0315106 1.51319) (-1.19483e-15 -0.0629094 1.42736) (-6.90093e-17 0.0937181 0.894901) (-1.03583e-14 0.34792 0.353092) (-9.53487e-16 0.57223 -0.271092) (4.59524e-15 0.86799 -1.01742) (7.09397e-16 1.14073 -2.40535) (-1.83512e-15 1.2756 -3.20047) (-8.42332e-15 1.06953 -3.16592) (-4.01861e-15 0.581567 -2.59618) (5.10194e-15 0.135248 -2.02559) (4.58716e-15 -0.186116 -1.8464) (3.92133e-15 -0.593262 -1.43674) (4.83741e-15 -0.950683 -1.06216) (4.02387e-15 -1.19952 -0.721947) (-2.37684e-15 -1.36006 -0.339836) (-1.14986e-14 -1.47238 0.0387641) (-5.56291e-16 -1.50946 0.416999) (4.07437e-15 -1.4719 0.782885) (3.98685e-15 -1.37893 1.14211) (5.87032e-15 -1.27149 1.4935) (9.86027e-15 -1.15262 1.80299) (3.6936e-16 -1.0276 2.06074) (3.13197e-15 -0.943717 2.38967) (1.89604e-15 -0.973594 2.85247) (6.57719e-16 -1.08043 3.34887) (-9.49713e-16 -1.16961 3.77828) (-3.30716e-15 -1.19141 4.1106) (-1.72347e-15 -1.14593 4.35495) (-3.45878e-15 -1.05527 4.53369) (-7.87859e-16 -0.943106 4.66887) (6.52798e-16 -0.823776 4.77533) (2.69643e-16 -0.704246 4.85243) (-1.06291e-15 -0.587479 4.89935) (-2.13715e-15 -0.471073 4.92717) (-3.31467e-15 -0.36353 4.9456) (-1.22683e-15 -0.268148 4.95453) (-8.90206e-16 -0.188005 4.96304) (-2.33114e-15 -0.118856 4.96631) (-2.1837e-15 -0.0617593 4.96254) (-4.06531e-15 -0.0143114 4.94576) (-4.33714e-15 0.0197977 4.91438) (-3.7756e-15 0.0374925 4.86989) (-2.16554e-15 0.0345004 4.82059) (-1.79743e-15 0.0154147 4.77341) (-9.44615e-16 -0.0120988 4.72573) (-1.09077e-15 -0.0400121 4.67578) (-1.39562e-15 -0.0638315 4.6218) (-1.47994e-15 -0.082741 4.57163) (-1.81204e-15 -0.0955443 4.52795) (-2.46529e-15 -0.0994139 4.49336) (-3.29407e-15 -0.0927621 4.4617) (-1.6559e-15 -0.0763355 4.4294) (-9.82466e-16 -0.0537867 4.39107) (-6.862e-16 -0.0312041 4.34911) (-1.88604e-15 -0.0136051 4.30732) (-1.97244e-15 -0.00203149 4.26914) (-1.09495e-15 0.00654579 4.23348) (-1.56715e-15 0.0154864 4.20069) (4.80928e-15 0.0255656 4.17322) (-3.90045e-15 0.0368903 4.15358) (-7.8586e-15 0.0501534 4.1404) (1.4179e-16 0.0665893 4.13065) (-8.58883e-15 0.0873283 4.12108) (-7.73594e-16 0.112342 4.11114) (2.58667e-16 0.140822 4.10066) (1.42664e-15 0.170748 4.08878) (3.57579e-15 0.199113 4.07394) (-1.7254e-15 0.222434 4.05563) (-1.48675e-15 0.237148 4.03553) (-2.06794e-15 0.240786 4.01575) (-2.25146e-15 0.231512 3.99835) (-2.48286e-15 0.209078 3.98475) (-2.63085e-15 0.174526 3.97552) (-2.97534e-15 0.12958 3.97166) (-1.24128e-15 0.0769754 3.97276) (-1.07711e-15 0.0196892 3.97856) (-1.69785e-15 -0.0391164 3.98757) (-3.89127e-15 -0.0972794 3.99931) (-2.56584e-15 -0.153083 4.01289) (-1.3919e-15 -0.205665 4.02819) (-1.10507e-15 -0.254329 4.04447) (-1.04551e-15 -0.29888 4.0611) (-1.53946e-15 -0.339483 4.07717) (-1.09084e-15 -0.375711 4.09314) (-7.98097e-16 -0.410858 4.10532) (-7.9287e-16 -0.451187 4.12454) (-9.30947e-16 0.0845675 4.13212) (-1.01403e-15 0.125199 3.95322) (-3.10244e-16 0.127621 3.77701) (-3.56022e-15 0.104621 3.64976) (-3.6947e-16 0.076213 3.50711) (-1.42244e-15 0.0452009 3.3503) (-1.6186e-15 0.0186447 3.21901) (-1.81634e-15 0.0164255 3.08565) (-1.35037e-15 0.0476583 2.94125) (-6.93134e-16 0.0999267 2.73291) (-5.89725e-16 0.116865 2.45268) (-6.68836e-16 0.0915558 2.08988) (-8.34901e-16 0.0426606 1.76172) (-1.03366e-15 -0.0252239 1.38247) (-1.19374e-15 -0.0536494 1.35629) (-1.00008e-17 0.134592 0.615849) (4.11084e-15 0.398621 0.038853) (-2.6138e-15 0.657352 -0.652996) (4.48091e-15 0.985244 -1.6517) (-2.00562e-17 1.25226 -2.90197) (-4.60691e-15 1.2958 -3.43952) (-8.39996e-15 1.00075 -3.22834) (-7.16125e-16 0.489992 -2.61553) (5.56322e-15 0.0873834 -2.18185) (2.69815e-15 -0.247214 -1.9667) (4.16968e-15 -0.662029 -1.49625) (5.52068e-15 -1.01685 -1.11901) (3.64871e-15 -1.26988 -0.758294) (-5.20847e-16 -1.43294 -0.368927) (-7.18562e-15 -1.54335 0.0158256) (-1.55524e-15 -1.57928 0.400511) (6.52751e-16 -1.53787 0.770437) (4.31811e-15 -1.44304 1.13313) (8.67184e-15 -1.33008 1.47873) (4.47533e-15 -1.1997 1.79264) (-1.89361e-15 -1.0767 2.08826) (1.65195e-15 -1.01686 2.46351) (1.6781e-15 -1.06643 2.94488) (5.75964e-16 -1.17189 3.42806) (-1.40678e-15 -1.24638 3.83262) (-3.2746e-15 -1.25043 4.13932) (7.44983e-16 -1.18966 4.362) (-5.02117e-15 -1.08745 4.52402) (-1.8909e-15 -0.966977 4.64635) (-2.43283e-15 -0.840831 4.7416) (-2.27163e-16 -0.714548 4.80753) (-1.58792e-15 -0.591671 4.84447) (-3.06267e-15 -0.470009 4.86538) (-2.3058e-15 -0.358863 4.88092) (-4.06623e-15 -0.262095 4.89031) (-3.57359e-15 -0.181139 4.90046) (-1.94484e-15 -0.110526 4.90466) (-2.79211e-15 -0.0509152 4.90054) (-5.01198e-15 -0.000922492 4.88313) (-3.85188e-15 0.0352963 4.85195) (-1.84556e-15 0.0532141 4.80972) (-6.5278e-15 0.0498949 4.76456) (-6.16646e-15 0.0297337 4.7215) (4.33817e-15 0.00272433 4.67488) (-2.8086e-15 -0.0253736 4.62276) (-2.6166e-15 -0.0511475 4.56557) (-3.50848e-15 -0.072456 4.51293) (-3.30823e-15 -0.0871918 4.46786) (2.46903e-16 -0.0930958 4.43183) (-6.87866e-15 -0.0863572 4.39721) (-4.6075e-15 -0.0685827 4.36042) (-4.35535e-15 -0.0444799 4.31729) (-9.4635e-15 -0.0211469 4.27147) (-3.27158e-15 -0.00399359 4.22686) (3.73749e-16 0.00651476 4.18629) (1.17335e-15 0.0136542 4.14914) (-4.6413e-15 0.0206103 4.11686) (-4.76867e-15 0.0282689 4.09161) (-9.18461e-15 0.0374437 4.07435) (-4.74665e-16 0.0494379 4.06287) (6.65876e-15 0.0654424 4.05481) (-3.67817e-15 0.0863037 4.04775) (-7.73454e-15 0.111941 4.04066) (1.59233e-15 0.141511 4.03228) (6.94524e-16 0.172839 4.02124) (-4.1142e-15 0.202307 4.00651) (-3.75363e-15 0.226261 3.98829) (-3.77517e-15 0.240838 3.96862) (-4.33076e-15 0.243473 3.94959) (-2.89855e-15 0.232624 3.93312) (-2.66478e-15 0.208042 3.92076) (-3.41835e-15 0.170929 3.9132) (-3.70099e-15 0.123324 3.91139) (-2.26734e-15 0.0684235 3.91484) (-1.8172e-15 0.00935976 3.92333) (-2.26404e-15 -0.050697 3.9356) (-2.03349e-15 -0.109667 3.95137) (-3.0049e-16 -0.165916 3.96971) (-1.60457e-15 -0.218578 3.9901) (-8.23316e-16 -0.266862 4.01118) (-8.8006e-16 -0.310668 4.0317) (-6.90223e-16 -0.350263 4.05071) (-1.00119e-15 -0.385277 4.06827) (-4.56388e-16 -0.419955 4.0818) (6.40723e-17 -0.459595 4.10083) (-9.77036e-16 0.0897407 4.01732) (-9.20124e-16 0.130021 3.85206) (-6.94555e-16 0.13068 3.6838) (-1.04744e-15 0.105952 3.56261) (-1.91508e-15 0.0758053 3.42191) (-2.08262e-15 0.0424173 3.26358) (-1.94278e-15 0.0165391 3.13499) (-1.71519e-15 0.0181923 3.01139) (4.59266e-16 0.0541163 2.87759) (4.08731e-16 0.112378 2.67539) (-2.79963e-16 0.135721 2.39601) (-7.56124e-16 0.114625 2.02251) (-8.52803e-16 0.0592023 1.6861) (-1.33546e-15 -0.0361745 1.28163) (-1.55903e-15 -0.0570707 1.34576) (-6.72981e-16 0.191011 0.332005) (3.54297e-15 0.462547 -0.265367) (1.37727e-15 0.755392 -1.10155) (8.54707e-16 1.10102 -2.23789) (-2.26703e-15 1.33797 -3.28167) (-7.27838e-15 1.29019 -3.60993) (-6.97629e-15 0.920778 -3.26336) (1.56671e-15 0.411682 -2.6559) (2.41616e-15 0.0343588 -2.32294) (4.34894e-16 -0.325066 -2.04779) (2.32861e-15 -0.739193 -1.55899) (3.65719e-15 -1.08959 -1.16986) (3.44456e-15 -1.34363 -0.792573) (3.69546e-15 -1.50833 -0.395887) (1.24535e-14 -1.61477 -0.00531909) (3.2427e-15 -1.64943 0.385786) (-2.15867e-16 -1.60477 0.759822) (-8.01263e-16 -1.50677 1.12633) (-1.32043e-14 -1.38817 1.47585) (-1.66485e-15 -1.25538 1.79962) (2.29106e-15 -1.1397 2.12893) (1.98412e-15 -1.09956 2.53966) (1.13614e-15 -1.16146 3.02768) (4.09068e-16 -1.2611 3.49399) (-2.1802e-15 -1.31939 3.87391) (-7.88314e-15 -1.30591 4.15671) (-3.14449e-15 -1.23045 4.35976) (-3.20777e-15 -1.11756 4.50672) (-3.89005e-15 -0.989314 4.61708) (-1.99766e-15 -0.85661 4.70143) (-2.37202e-15 -0.724282 4.75658) (-2.27844e-15 -0.596515 4.78475) (-2.59053e-15 -0.471465 4.8007) (-7.25401e-16 -0.358761 4.81494) (-8.17878e-15 -0.261943 4.82532) (-1.28324e-15 -0.180614 4.8369) (-3.1417e-15 -0.1083 4.84168) (-3.58397e-15 -0.0454024 4.83726) (-2.92477e-15 0.00828763 4.81997) (-1.3764e-15 0.0471198 4.79062) (-9.80882e-16 0.0653321 4.75291) (-1.69025e-15 0.0620764 4.71339) (-1.73576e-15 0.0421249 4.67452) (-1.89452e-15 0.016781 4.62816) (1.51611e-15 -0.010259 4.57278) (-5.50845e-15 -0.0367887 4.51209) (-4.70996e-15 -0.0611397 4.45769) (-5.51744e-15 -0.0780591 4.41144) (-4.12426e-15 -0.0855482 4.37364) (-3.40311e-15 -0.0787866 4.33616) (-2.88823e-15 -0.0594969 4.29545) (-2.79279e-15 -0.0339891 4.24888) (-5.81711e-15 -0.0104545 4.20092) (-6.79829e-16 0.00610906 4.1549) (-2.89203e-15 0.0156968 4.11301) (-5.27786e-15 0.0213044 4.07524) (-6.47098e-15 0.0260326 4.04346) (-8.12583e-15 0.0312252 4.0191) (-2.12398e-15 0.0382546 4.00239) (-8.07134e-15 0.0487051 3.9914) (1.1708e-15 0.0638131 3.98445) (3.3473e-15 0.0845218 3.97891) (-4.42591e-15 0.110825 3.97303) (-6.09924e-16 0.141686 3.96519) (-6.64691e-15 0.174547 3.95408) (-7.55722e-15 0.205195 3.93905) (-2.8015e-15 0.229772 3.9204) (-3.65359e-15 0.244211 3.90019) (-4.06794e-15 0.24578 3.88086) (-4.29214e-15 0.233061 3.86468) (-4.2611e-15 0.205938 3.85355) (-4.06078e-15 0.165896 3.84832) (-3.84544e-15 0.115354 3.85) (-3.34625e-15 0.0579544 3.85793) (-2.89744e-15 -0.00298311 3.87182) (-2.40336e-15 -0.0643336 3.89035) (-1.88361e-15 -0.124113 3.91294) (-1.60897e-16 -0.18065 3.93805) (-1.90835e-15 -0.233005 3.96437) (-1.52166e-15 -0.280359 3.98993) (8.32709e-17 -0.322865 4.01327) (-7.98621e-16 -0.360969 4.03364) (1.73561e-16 -0.394477 4.05136) (5.46477e-16 -0.428388 4.06459) (9.25806e-16 -0.46686 4.08126) (-9.66068e-16 0.0948651 3.92572) (-1.01003e-15 0.134873 3.7604) (-7.008e-16 0.13405 3.59447) (-6.69766e-16 0.107841 3.47795) (1.22845e-15 0.0757034 3.33827) (-2.56961e-15 0.0407677 3.18093) (9.2793e-16 0.015819 3.06064) (2.39216e-15 0.0213006 2.9504) (-2.75659e-15 0.0616879 2.82879) (1.00365e-15 0.127889 2.63301) (-7.00584e-16 0.161403 2.35515) (-1.18074e-15 0.140838 1.97107) (-5.07855e-16 0.0781225 1.61649) (-4.11568e-15 -0.0380371 1.15818) (-3.59312e-15 -0.0369664 1.14122) (1.03139e-15 0.267067 0.0157275) (-4.17588e-15 0.545169 -0.592868) (-3.45655e-15 0.869795 -1.57121) (-1.19186e-15 1.21524 -2.72732) (-3.8386e-15 1.40075 -3.57415) (-7.46691e-15 1.26532 -3.73042) (-4.45345e-15 0.837851 -3.27896) (5.52048e-16 0.348962 -2.71339) (-2.29749e-16 -0.0174228 -2.45733) (-1.0215e-15 -0.397598 -2.11851) (4.93296e-16 -0.818612 -1.62514) (2.09193e-15 -1.16158 -1.21815) (2.71397e-15 -1.41753 -0.825547) (-3.082e-16 -1.58461 -0.421122) (2.63379e-15 -1.68728 -0.0248453) (5.89333e-15 -1.71901 0.372196) (5.6844e-16 -1.67239 0.751178) (-4.23993e-15 -1.57182 1.12068) (-3.75193e-15 -1.44711 1.47627) (-6.275e-15 -1.31175 1.81419) (-6.74916e-15 -1.20689 2.17426) (4.88409e-15 -1.1857 2.61181) (4.18693e-16 -1.25539 3.09946) (-1.5558e-16 -1.34633 3.54714) (-2.55486e-15 -1.38771 3.90317) (-4.63742e-15 -1.35705 4.16376) (-3.4935e-15 -1.26766 4.3489) (1.18764e-15 -1.14506 4.48202) (-1.5426e-15 -1.00939 4.58095) (1.2629e-15 -0.869902 4.65448) (3.50779e-16 -0.731372 4.69922) (-6.38816e-16 -0.598802 4.71988) (4.19238e-16 -0.470608 4.73276) (-1.01477e-15 -0.356066 4.74719) (9.82352e-16 -0.258721 4.75907) (6.42897e-16 -0.176673 4.77193) (-2.77305e-15 -0.102551 4.77716) (-2.59398e-15 -0.0368557 4.77277) (-1.62724e-15 0.0198176 4.75656) (-5.11694e-16 0.0602137 4.73047) (-6.64968e-15 0.0780569 4.6987) (3.16359e-15 0.0740993 4.66565) (-4.47429e-15 0.0558513 4.6303) (-3.3984e-15 0.0321629 4.58305) (-4.11547e-15 0.00675322 4.52397) (-4.74038e-15 -0.0196812 4.46007) (-4.60803e-15 -0.0465421 4.40453) (-5.0214e-15 -0.0665816 4.35798) (-9.94643e-15 -0.0752069 4.31898) (-2.15985e-15 -0.068657 4.27959) (-1.74263e-15 -0.0483996 4.23661) (-1.09718e-15 -0.0220812 4.1885) (-2.16904e-15 0.00105955 4.14008) (-3.04932e-15 0.0165762 4.09356) (-2.36149e-15 0.0251717 4.05032) (-2.66e-16 0.02926 4.01088) (-3.1548e-15 0.0317654 3.97759) (-4.2346e-15 0.0345086 3.95162) (2.27018e-15 0.0392677 3.93343) (-5.129e-15 0.0478025 3.92175) (-3.78259e-15 0.0616518 3.91494) (-4.80534e-15 0.0820686 3.90984) (-2.68806e-15 0.109086 3.90426) (-6.97222e-15 0.141244 3.8965) (-6.48896e-15 0.175607 3.88509) (-8.58484e-15 0.207511 3.86924) (-4.26609e-15 0.232681 3.84934) (-5.46429e-15 0.246893 3.8279) (-5.50205e-15 0.247262 3.8082) (-5.21462e-15 0.232292 3.79303) (-4.92903e-15 0.202149 3.78456) (-4.3617e-15 0.158785 3.78369) (-3.9445e-15 0.105116 3.79124) (-3.39202e-15 0.0451513 3.80628) (-3.5895e-15 -0.0177095 3.82817) (-5.08625e-15 -0.0802545 3.85508) (-1.72845e-15 -0.140547 3.8857) (-2.92429e-15 -0.19687 3.91766) (-1.00946e-15 -0.24828 3.94898) (-6.16254e-16 -0.294076 3.97749) (-5.7015e-17 -0.334777 4.00202) (9.76137e-16 -0.371066 4.02223) (1.34013e-15 -0.402848 4.03893) (1.3191e-15 -0.435779 4.05051) (1.5384e-15 -0.472846 4.06409) (-9.36543e-16 0.0997934 3.8355) (-1.08343e-15 0.139084 3.67004) (-8.53381e-16 0.135681 3.51026) (-7.17055e-16 0.109244 3.39789) (-1.69623e-15 0.0748583 3.25773) (-2.29758e-15 0.0383437 3.10476) (-1.93172e-15 0.0143986 2.99763) (-8.24876e-16 0.0231721 2.90353) (-7.48415e-16 0.0675737 2.79376) (-6.95911e-16 0.14011 2.60309) (-1.0393e-15 0.182607 2.3212) (-1.72472e-15 0.168393 1.92473) (2.18361e-16 0.0939346 1.56653) (-3.03176e-14 -0.0518911 1.08621) (-6.86207e-15 -0.0232012 0.880495) (-2.71445e-15 0.353961 -0.268124) (-7.64547e-15 0.635039 -0.954941) (-6.55566e-15 0.986799 -2.02661) (-5.06177e-15 1.31868 -3.12375) (-5.37926e-15 1.44179 -3.79975) (-6.79736e-15 1.22422 -3.80909) (-2.73604e-15 0.755017 -3.28423) (-1.17929e-16 0.288873 -2.79517) (-2.03194e-15 -0.0872084 -2.56631) (-3.14084e-15 -0.47978 -2.16486) (-4.74194e-15 -0.901083 -1.68661) (1.28172e-15 -1.23826 -1.2623) (-3.70424e-15 -1.49424 -0.85655) (1.41626e-14 -1.66187 -0.444431) (-3.5106e-15 -1.76092 -0.0422878) (-3.79331e-16 -1.78822 0.360281) (-1.68062e-15 -1.73909 0.744187) (-1.29358e-15 -1.63731 1.11814) (3.22955e-15 -1.50988 1.48154) (2.13351e-15 -1.37583 1.83613) (3.85333e-15 -1.28232 2.22267) (4.18968e-15 -1.27612 2.67822) (-6.48989e-19 -1.34889 3.16058) (-1.04204e-15 -1.42849 3.58881) (-2.17915e-15 -1.45229 3.92197) (-2.5291e-15 -1.40493 4.16199) (-6.74095e-15 -1.30233 4.33067) (-2.37145e-15 -1.17071 4.451) (-4.78284e-15 -1.02792 4.53908) (-6.95571e-16 -0.881973 4.60222) (-1.49863e-15 -0.738125 4.63748) (-5.48253e-16 -0.602355 4.65237) (1.68353e-15 -0.472837 4.66406) (8.99617e-16 -0.357693 4.67947) (-3.40919e-15 -0.260243 4.69247) (-2.34926e-15 -0.177587 4.70608) (-1.91025e-15 -0.101673 4.71168) (-3.77906e-15 -0.0336726 4.70798) (-2.41906e-15 0.0256405 4.69412) (-1.27792e-15 0.067548 4.67282) (-2.08293e-15 0.0861937 4.6479) (-2.82349e-15 0.08273 4.62105) (-4.06945e-15 0.0672541 4.58771) (-4.68606e-15 0.0457989 4.53855) (-4.65485e-15 0.0213388 4.47647) (-4.51135e-15 -0.00552031 4.4109) (-4.05336e-15 -0.0338247 4.35567) (-4.48623e-15 -0.0567041 4.31007) (-1.5489e-15 -0.065929 4.27093) (-1.60068e-15 -0.0579832 4.23061) (-3.2287e-15 -0.0360476 4.18681) (-3.41698e-15 -0.00900817 4.13839) (-2.75191e-15 0.013713 4.0897) (-2.90067e-15 0.0280686 4.04182) (-2.37359e-15 0.0356606 3.99538) (-1.84435e-15 0.0382676 3.95182) (-2.41483e-15 0.0384469 3.91442) (-6.66819e-15 0.0385161 3.88478) (-5.76193e-15 0.0406429 3.86398) (-4.14979e-15 0.046866 3.85113) (-4.65495e-15 0.0592116 3.84419) (-7.51512e-15 0.0792818 3.83935) (-7.21341e-15 0.107057 3.834) (-2.73852e-15 0.140579 3.82619) (-9.01229e-15 0.176585 3.81399) (-3.4889e-15 0.209887 3.79657) (-5.25822e-15 0.235642 3.77491) (-4.20955e-15 0.24934 3.75256) (-5.91688e-15 0.247949 3.73357) (-4.47701e-15 0.230053 3.72103) (-3.52512e-15 0.19624 3.7172) (-3.75058e-15 0.149008 3.72285) (-3.76583e-15 0.0918024 3.73853) (-2.60172e-15 0.029109 3.76274) (-3.27052e-16 -0.0355946 3.79419) (-2.93837e-15 -0.0990587 3.83021) (-2.08594e-15 -0.15928 3.86856) (3.11653e-16 -0.214609 3.9062) (-1.31365e-16 -0.264261 3.9409) (9.58961e-17 -0.30783 3.97071) (5.68943e-16 -0.346242 3.99501) (1.28323e-15 -0.380408 4.01397) (1.04082e-15 -0.410195 4.02876) (1.89509e-15 -0.442017 4.03804) (1.93728e-15 -0.477653 4.04862) (-1.86806e-15 0.104569 3.74106) (-1.49946e-15 0.143632 3.57649) (-9.36885e-16 0.137611 3.42718) (-1.39205e-15 0.110009 3.31901) (-2.293e-15 0.0739964 3.17823) (-2.75689e-15 0.0367178 3.03398) (2.09447e-15 0.013908 2.94462) (1.27188e-15 0.0251476 2.86626) (-7.25442e-16 0.0737506 2.76413) (-1.23993e-15 0.155784 2.57341) (-1.79835e-15 0.211986 2.28312) (-2.07256e-15 0.19583 1.87777) (-1.65145e-15 0.106104 1.52035) (-2.31201e-15 -0.0425975 0.998353) (-9.99852e-15 0.0142177 0.405352) (-3.84659e-15 0.449551 -0.558148) (-1.20122e-14 0.736454 -1.34444) (-5.20989e-15 1.10639 -2.4381) (1.00864e-17 1.41135 -3.44479) (-5.66463e-15 1.46491 -3.97402) (-4.82818e-15 1.17115 -3.85255) (3.54123e-16 0.67474 -3.2885) (7.62447e-16 0.231316 -2.90704) (1.92546e-14 -0.159357 -2.67011) (-2.3017e-15 -0.565416 -2.21148) (1.70724e-14 -0.982837 -1.74475) (2.11846e-15 -1.31613 -1.30399) (-1.0753e-15 -1.57146 -0.885837) (5.70388e-15 -1.73903 -0.466067) (-3.7729e-15 -1.8359 -0.0580352) (2.19407e-15 -1.85963 0.349973) (-2.47653e-15 -1.80685 0.738664) (-1.84506e-15 -1.70374 1.11765) (-8.55241e-15 -1.57369 1.48913) (1.44921e-15 -1.44263 1.86091) (-7.37885e-17 -1.36154 2.27086) (7.78349e-16 -1.36777 2.73814) (6.97181e-16 -1.44009 3.21173) (-7.29873e-17 -1.50649 3.62001) (-1.22414e-15 -1.51256 3.93117) (-1.60505e-15 -1.44918 4.15199) (1.88185e-15 -1.33426 4.30546) (-1.7663e-15 -1.19379 4.41373) (3.03817e-15 -1.04413 4.49131) (-5.89685e-16 -0.891554 4.54433) (-9.19492e-16 -0.7422 4.57096) (-1.17095e-16 -0.602781 4.58149) (7.32188e-16 -0.471761 4.59343) (1.66275e-15 -0.356377 4.61057) (3.71472e-15 -0.258498 4.62462) (-4.67441e-15 -0.174726 4.63871) (-2.72251e-15 -0.0970521 4.6448) (-2.30978e-15 -0.0271644 4.64247) (-2.58601e-15 0.0330989 4.63216) (-3.2654e-15 0.0748133 4.61694) (-3.65703e-15 0.0932903 4.59916) (-4.66997e-15 0.0909225 4.57744) (-4.69282e-15 0.0779463 4.54496) (-4.9767e-15 0.0595621 4.49363) (-4.17553e-15 0.0349581 4.43033) (-4.16211e-15 0.00617294 4.36596) (-4.0831e-15 -0.0233937 4.31292) (-4.59293e-15 -0.047792 4.26936) (-1.46695e-15 -0.0577301 4.23119) (-1.72114e-15 -0.0481489 4.19064) (-2.95995e-15 -0.0236186 4.1461) (-1.65109e-15 0.00469733 4.09678) (-4.49385e-15 0.0274636 4.04615) (-4.29296e-15 0.0413539 3.99448) (-1.74208e-15 0.048098 3.94244) (-2.04912e-15 0.0489435 3.89256) (-5.59943e-15 0.046244 3.84957) (-5.45473e-15 0.0430354 3.81586) (-2.09595e-15 0.0420198 3.79297) (-1.06285e-15 0.0456249 3.77978) (2.411e-15 0.0563904 3.77344) (-4.86402e-15 0.0762346 3.76937) (-1.63695e-15 0.104967 3.76437) (-9.15046e-15 0.140083 3.75613) (-3.09165e-15 0.177889 3.74246) (-3.99069e-15 0.212545 3.72289) (-4.30954e-15 0.238632 3.69956) (-4.05303e-15 0.251228 3.67705) (-4.16181e-15 0.247278 3.65999) (-3.94404e-15 0.225714 3.65153) (-3.62961e-15 0.187587 3.654) (-3.39208e-15 0.136058 3.66803) (-3.46253e-15 0.0751444 3.69366) (-3.30748e-15 0.00977012 3.72851) (-2.42924e-15 -0.0563542 3.77021) (-1.84483e-15 -0.120092 3.81513) (-1.42097e-15 -0.179438 3.86019) (1.03836e-15 -0.232927 3.90198) (1.54039e-16 -0.28009 3.93843) (2.87631e-16 -0.320924 3.96813) (8.55371e-16 -0.356739 3.99112) (1.85923e-15 -0.388599 4.00808) (1.63363e-15 -0.416269 4.02028) (1.97961e-15 -0.447053 4.02721) (2.00792e-15 -0.48142 4.03488) (-2.14211e-15 0.108374 3.64501) (-1.73637e-15 0.146615 3.4862) (-6.95186e-16 0.138599 3.34842) (-1.75546e-15 0.109766 3.24193) (-2.36527e-15 0.0720295 3.10403) (-2.07695e-15 0.0327654 2.97446) (1.29769e-15 0.0123433 2.90391) (-1.66795e-16 0.0261945 2.83913) (-1.87873e-15 0.0782781 2.7407) (-3.71848e-15 0.168321 2.54556) (-3.95308e-15 0.233959 2.23972) (-3.67707e-15 0.218795 1.81594) (-3.25568e-15 0.10705 1.46183) (-2.3439e-15 -0.0571785 1.05477) (-9.97727e-15 0.0696235 -0.0400127) (-3.0764e-15 0.538576 -0.877622) (-5.7359e-15 0.836682 -1.73319) (-1.04078e-14 1.21822 -2.79614) (-3.0549e-15 1.48992 -3.70713) (-5.28937e-15 1.47072 -4.10669) (-2.97761e-15 1.10774 -3.87128) (1.10485e-15 0.598536 -3.3049) (9.31273e-16 0.170849 -3.02497) (6.45716e-16 -0.24317 -2.74764) (1.30538e-15 -0.653527 -2.26148) (2.50115e-15 -1.06622 -1.79566) (-1.43032e-14 -1.39642 -1.34229) (3.94898e-15 -1.65028 -0.913055) (2.57333e-15 -1.8169 -0.485985) (-2.95753e-15 -1.91112 -0.0722576) (2.07715e-15 -1.93202 0.341449) (2.2238e-15 -1.87558 0.734975) (-7.64772e-16 -1.77123 1.11977) (-4.2522e-16 -1.64082 1.50065) (-4.25631e-16 -1.51498 1.88899) (-1.08024e-14 -1.44579 2.31779) (1.13701e-15 -1.461 2.7912) (1.39523e-16 -1.52954 3.25355) (-3.61964e-16 -1.58109 3.64178) (-5.96511e-16 -1.56941 3.93189) (2.13812e-15 -1.49033 4.13472) (-1.16021e-15 -1.36402 4.27413) (3.51568e-16 -1.21498 4.37097) (-3.29775e-15 -1.05889 4.43852) (9.1282e-16 -0.900484 4.48223) (5.52075e-16 -0.746702 4.50156) (-1.014e-16 -0.604572 4.50923) (-1.84024e-16 -0.473031 4.52218) (-4.9042e-16 -0.358751 4.54094) (-1.128e-15 -0.261162 4.55545) (-1.76862e-15 -0.176667 4.56976) (-3.94828e-15 -0.0974017 4.57688) (-4.07893e-15 -0.0254274 4.57689) (-3.29035e-15 0.0359715 4.57124) (-4.29962e-15 0.0776671 4.56283) (-4.54004e-15 0.0966459 4.55193) (-4.75503e-15 0.0974697 4.53391) (-5.01771e-15 0.0883984 4.50163) (-5.34356e-15 0.0736835 4.44922) (-4.82332e-15 0.0506237 4.38662) (-4.94091e-15 0.0200838 4.32586) (-4.68653e-15 -0.0124485 4.27698) (-4.64869e-15 -0.0378059 4.23583) (-3.95802e-15 -0.0479616 4.19831) (-3.50017e-15 -0.0373923 4.15726) (-3.78591e-15 -0.0108916 4.11134) (-3.36413e-15 0.0191981 4.05954) (-4.08103e-15 0.0425617 4.00464) (-8.67946e-15 0.056791 3.94682) (-8.08676e-16 0.0626284 3.88776) (-3.70445e-15 0.0611375 3.83136) (-1.01985e-14 0.0548801 3.78367) (-3.84189e-15 0.0477036 3.74772) (-8.128e-15 0.0430465 3.72481) (-1.85773e-15 0.0438894 3.71287) (-5.3152e-15 0.0532634 3.70805) (-7.52719e-15 0.0732616 3.70502) (-4.62489e-15 0.103324 3.70001) (-9.21505e-16 0.140483 3.69048) (-2.26612e-15 0.180246 3.67437) (2.00633e-15 0.216125 3.65206) (-2.56762e-15 0.242094 3.62697) (-3.06689e-15 0.252855 3.60469) (-3.61167e-15 0.245419 3.59021) (-3.60752e-15 0.219216 3.58681) (-3.75456e-15 0.175853 3.59704) (-3.64537e-15 0.119352 3.62118) (-3.09168e-15 0.0545594 3.65829) (-8.52204e-16 -0.0132724 3.70466) (-3.05568e-15 -0.0802436 3.75658) (-1.30348e-15 -0.143343 3.80943) (-6.94987e-16 -0.200844 3.85963) (-1.46999e-16 -0.251596 3.90381) (-8.60428e-17 -0.295573 3.9404) (5.11462e-16 -0.333208 3.96873) (1.3046e-15 -0.366169 3.98949) (2.1208e-15 -0.395543 4.00392) (2.36337e-15 -0.421063 4.01312) (1.92727e-15 -0.450937 4.01807) (1.65868e-15 -0.484204 4.02257) (-5.94467e-16 0.111247 3.54101) (-6.50008e-16 0.149362 3.39959) (-7.97207e-16 0.140155 3.26969) (-1.96035e-15 0.109692 3.16295) (-1.5332e-15 0.0702573 3.03401) (-8.36407e-16 0.029527 2.92533) (2.98282e-15 0.0113302 2.87278) (-2.52551e-15 0.0269274 2.81475) (-2.59128e-15 0.0824168 2.71319) (-5.60936e-15 0.184268 2.50819) (-5.93566e-15 0.269732 2.1799) (-4.0911e-15 0.249666 1.7286) (-3.63191e-15 0.112883 1.33038) (-3.04117e-15 -0.0893784 1.09378) (-1.01288e-14 0.163567 -0.45886) (-1.19749e-14 0.630634 -1.19195) (-1.42869e-15 0.941675 -2.07581) (-6.8803e-15 1.32503 -3.10222) (-3.74712e-15 1.5563 -3.92409) (-4.57485e-15 1.46226 -4.20596) (-1.20216e-15 1.03889 -3.87557) (3.85461e-15 0.528408 -3.33589) (-1.03592e-14 0.113038 -3.13334) (-5.66457e-16 -0.324572 -2.81368) (7.76181e-16 -0.742468 -2.31164) (-2.99485e-16 -1.14992 -1.84248) (1.25588e-16 -1.47755 -1.37786) (8.14691e-16 -1.72995 -0.938317) (2.74131e-15 -1.89504 -0.504128) (-3.16839e-15 -1.98721 -0.0850256) (1.82731e-15 -2.00543 0.334168) (3.05319e-15 -1.94645 0.732807) (-5.76929e-16 -1.84074 1.12364) (-2.00158e-17 -1.71035 1.5142) (-7.98814e-16 -1.59046 1.91819) (6.89878e-15 -1.53242 2.36212) (4.18355e-16 -1.55386 2.83737) (2.89259e-16 -1.61616 3.28661) (-8.39116e-16 -1.6518 3.65476) (-9.72827e-16 -1.62249 3.92468) (-1.10119e-15 -1.52824 4.11056) (-9.82529e-16 -1.39117 4.23678) (-3.93426e-15 -1.23422 4.3227) (-1.83098e-15 -1.07161 4.38048) (9.30863e-16 -0.907725 4.41557) (-6.30608e-16 -0.74953 4.42881) (-1.21484e-15 -0.604574 4.43473) (-1.29357e-15 -0.471877 4.44889) (-3.89163e-15 -0.357884 4.46904) (-4.86474e-15 -0.260478 4.48406) (-5.24772e-15 -0.175186 4.49906) (-5.91043e-15 -0.0944922 4.50801) (-5.33419e-15 -0.021405 4.51119) (-6.16217e-15 0.0405496 4.51077) (-5.68823e-15 0.0820192 4.50926) (-5.22896e-15 0.101164 4.50477) (-5.65302e-15 0.105707 4.48977) (-5.81528e-15 0.100682 4.45789) (-5.68715e-15 0.0891596 4.40612) (-5.52994e-15 0.0681081 4.34615) (-5.09079e-15 0.037818 4.28956) (-4.46403e-15 0.00179975 4.24509) (-3.81556e-15 -0.0261582 4.20641) (-3.22529e-15 -0.0359161 4.16854) (-2.29889e-15 -0.0242289 4.12568) (3.13071e-15 0.00322576 4.07738) (-2.37748e-15 0.0346997 4.02198) (5.47334e-15 0.0592354 3.96156) (3.80314e-15 0.0740939 3.89708) (2.62403e-15 0.0789967 3.83178) (-5.08534e-15 0.0747083 3.77086) (-4.11365e-15 0.0643079 3.72103) (-4.84589e-15 0.0525525 3.68532) (-1.19396e-14 0.0438692 3.66421) (-3.71841e-15 0.0418778 3.65442) (-4.47674e-15 0.0501313 3.6512) (-1.05063e-14 0.0707092 3.64876) (-6.62086e-16 0.102484 3.64288) (-4.80398e-15 0.142026 3.63085) (-6.1404e-15 0.183847 3.61111) (-4.77082e-15 0.220599 3.58517) (-4.63601e-15 0.245729 3.55787) (-4.81477e-15 0.253719 3.5357) (-4.76373e-15 0.241756 3.52418) (-4.56099e-15 0.209859 3.52703) (-4.35855e-15 0.16043 3.54696) (-4.04006e-15 0.0985793 3.58333) (-3.46122e-15 0.0300779 3.63343) (-2.64382e-15 -0.0394788 3.69176) (-2.27714e-15 -0.106391 3.75329) (-6.49416e-16 -0.16776 3.81263) (-1.43547e-15 -0.222383 3.86612) (2.17599e-17 -0.26959 3.91088) (-9.91673e-16 -0.30988 3.94614) (-2.35604e-16 -0.344081 3.97206) (1.48757e-15 -0.374138 3.98999) (1.55971e-15 -0.401008 4.00163) (1.53841e-15 -0.424531 4.00766) (1.56971e-15 -0.453633 4.01099) (1.21635e-15 -0.485903 4.01155) (-9.13726e-16 0.113503 3.4612) (-5.52625e-16 0.15125 3.32509) (-1.47739e-15 0.1406 3.19531) (-1.49712e-15 0.108607 3.08697) (-1.89855e-15 0.0669802 2.97176) (2.48516e-15 0.0244858 2.88641) (-4.1817e-15 0.00841569 2.8474) (-4.40468e-15 0.0265155 2.78911) (-3.03801e-15 0.0852352 2.67757) (-1.95435e-15 0.195773 2.45844) (-2.12307e-15 0.294751 2.10684) (-2.70992e-15 0.281933 1.63228) (-3.06016e-15 0.125249 1.18543) (-3.4486e-15 -0.0607657 0.587753) (-8.62966e-15 0.270571 -0.844272) (-7.95597e-15 0.715103 -1.48762) (-1.75397e-15 1.04521 -2.37295) (-6.34367e-16 1.42546 -3.36621) (-4.16657e-15 1.61044 -4.10418) (-3.28653e-15 1.44004 -4.27712) (1.73825e-15 0.966467 -3.87302) (4.70099e-15 0.461618 -3.3815) (2.70633e-15 0.0527206 -3.22877) (2.46558e-15 -0.412357 -2.86893) (6.932e-16 -0.833452 -2.35817) (-2.39255e-17 -1.23563 -1.88382) (5.72707e-16 -1.56044 -1.41017) (1.54208e-16 -1.81102 -0.96142) (2.9356e-15 -1.97408 -0.520615) (-3.13595e-15 -2.06445 -0.0963389) (2.01824e-15 -2.07885 0.328275) (6.73391e-17 -2.01801 0.73214) (-1.6643e-15 -1.91178 1.12944) (-1.07016e-15 -1.78304 1.52994) (-1.22999e-15 -1.67015 1.94791) (2.43182e-15 -1.62196 2.40305) (1.36779e-15 -1.64661 2.87662) (-2.85156e-16 -1.70025 3.31149) (-9.8777e-16 -1.71918 3.65979) (-9.20723e-16 -1.67247 3.91037) (-9.52435e-16 -1.56361 4.08023) (-3.54395e-16 -1.41608 4.1939) (-2.07457e-16 -1.25211 4.26946) (-9.84549e-16 -1.08332 4.31804) (-2.14223e-15 -0.914602 4.3455) (-2.52423e-15 -0.753038 4.3539) (-3.48577e-15 -0.60742 4.35913) (-4.02752e-15 -0.475123 4.37464) (-9.30241e-16 -0.361273 4.39549) (-8.04787e-15 -0.264142 4.41057) (-5.20999e-15 -0.178357 4.42657) (-4.83964e-15 -0.0965614 4.43803) (-4.4294e-15 -0.0231371 4.44541) (-4.22283e-15 0.0392489 4.45139) (-3.96314e-15 0.0814437 4.4568) (-4.69942e-15 0.102512 4.45782) (-5.48016e-15 0.111703 4.44533) (-1.19435e-14 0.110559 4.41471) (-4.89447e-15 0.101862 4.36545) (-4.54361e-15 0.0814847 4.31006) (-3.84888e-15 0.0510774 4.25808) (-3.06778e-15 0.013618 4.21649) (-2.61132e-15 -0.0156534 4.1788) (-2.10562e-15 -0.0246686 4.13948) (-1.75693e-15 -0.010629 4.09362) (-7.10757e-16 0.0188216 4.04228) (6.1283e-16 0.052118 3.98307) (5.71139e-16 0.0784904 3.91735) (-2.59906e-15 0.0936449 3.84752) (-5.07893e-15 0.0971869 3.77848) (-4.22957e-15 0.0895478 3.71603) (1.30929e-15 0.0744984 3.66639) (-5.12399e-15 0.0577117 3.63217) (-3.52062e-15 0.0447976 3.61321) (-4.21252e-15 0.0400442 3.60532) (-4.47382e-15 0.047483 3.60312) (-3.89327e-15 0.0690451 3.60034) (-3.06571e-15 0.103011 3.59228) (3.17902e-17 0.145253 3.57627) (-4.83423e-15 0.18915 3.55147) (-4.08629e-15 0.22642 3.52089) (-4.58172e-15 0.24992 3.49092) (-4.73828e-15 0.253977 3.46904) (-4.95018e-15 0.236084 3.46166) (-4.67576e-15 0.197065 3.47313) (-4.42463e-15 0.140597 3.50565) (-4.0749e-15 0.0732091 3.55661) (-3.45794e-15 0.00140057 3.62082) (-2.67837e-15 -0.068893 3.69079) (-1.88202e-15 -0.134508 3.76046) (-1.32268e-15 -0.192985 3.82422) (-4.72099e-16 -0.243703 3.87881) (2.51083e-16 -0.286639 3.92226) (1.0161e-16 -0.322849 3.95485) (5.21175e-16 -0.353486 3.97757) (1.22941e-15 -0.380652 3.99233) (1.3662e-15 -0.405007 4.00107) (1.45621e-15 -0.426705 4.00389) (1.43121e-15 -0.455059 4.00572) (9.08677e-16 -0.486299 4.00144) (-1.04358e-15 0.115866 3.3801) (-3.87914e-16 0.154099 3.24706) (-1.91125e-15 0.142648 3.11754) (-1.47944e-15 0.107413 3.0123) (-2.26758e-15 0.0628067 2.9154) (-1.61268e-15 0.0198726 2.85244) (-4.92645e-15 0.00714014 2.8216) (-3.80085e-15 0.0268708 2.75526) (-1.76678e-15 0.0884806 2.62687) (-1.18193e-15 0.213534 2.38702) (-1.21735e-15 0.326391 2.01522) (-1.82828e-15 0.32239 1.52361) (-2.53788e-15 0.158888 1.02938) (-3.7114e-15 0.00130225 0.0835275) (-7.77838e-15 0.369462 -1.13054) (-6.9449e-15 0.800284 -1.74393) (-3.63503e-15 1.1498 -2.63089) (-2.58526e-15 1.52054 -3.59673) (-3.60227e-15 1.65406 -4.25341) (-1.64315e-15 1.40754 -4.32399) (2.26315e-15 0.89488 -3.86697) (2.4689e-15 0.403484 -3.43593) (3.05473e-15 -0.00430809 -3.30921) (3.85954e-15 -0.501683 -2.91517) (1.49272e-16 -0.924036 -2.40139) (5.83281e-17 -1.32132 -1.92099) (1.48357e-15 -1.64393 -1.43952) (-3.1649e-16 -1.89288 -0.982422) (1.43946e-15 -2.05412 -0.53534) (-4.44491e-15 -2.14274 -0.106076) (2.37222e-15 -2.1535 0.32369) (4.91366e-16 -2.09095 0.732662) (-1.90348e-15 -1.98467 1.13656) (-8.44788e-16 -1.85839 1.54689) (-1.16362e-15 -1.75259 1.97722) (4.94261e-16 -1.71259 2.44022) (6.07083e-16 -1.7378 2.90919) (-7.02859e-16 -1.7809 3.32862) (-8.90069e-16 -1.78264 3.65724) (-7.13812e-16 -1.71897 3.88926) (3.2875e-16 -1.59638 4.04401) (-1.15298e-16 -1.43881 4.14562) (3.60252e-16 -1.26803 4.21119) (-1.40679e-15 -1.09344 4.25117) (3.11468e-15 -0.91959 4.27177) (-3.80107e-15 -0.754564 4.27608) (-1.55761e-15 -0.607031 4.28097) (-6.01187e-15 -0.475414 4.2979) (-4.64708e-15 -0.361916 4.31937) (-4.04112e-15 -0.264677 4.33491) (-4.1009e-15 -0.178585 4.35279) (-3.41334e-15 -0.0964952 4.36754) (-2.90885e-15 -0.0234257 4.37989) (-3.23721e-15 0.0378485 4.39284) (-3.23365e-15 0.0794676 4.40503) (-3.84536e-15 0.103275 4.41068) (-5.10597e-15 0.117255 4.40038) (-4.86219e-15 0.119796 4.37191) (-4.59985e-15 0.111088 4.32662) (-3.68051e-15 0.0897034 4.27672) (3.61804e-15 0.0581911 4.22986) (-2.23531e-15 0.0218509 4.19032) (-1.86448e-15 -0.00650504 4.15185) (-1.30102e-15 -0.0141709 4.11018) (-1.68178e-15 0.00230772 4.06137) (-8.56508e-15 0.0349429 4.00674) (7.56151e-16 0.071031 3.94422) (8.00996e-15 0.099617 3.87465) (-2.01109e-15 0.1147 3.80136) (5.81041e-15 0.116249 3.7308) (-4.03402e-15 0.10483 3.66879) (-3.26303e-15 0.0849888 3.6202) (-9.80562e-15 0.0630447 3.58717) (-3.80617e-15 0.0458092 3.56967) (-1.45448e-15 0.0384373 3.56299) (-8.17255e-15 0.0454182 3.56097) (-6.34241e-15 0.0684225 3.55665) (6.47827e-16 0.105168 3.5449) (-5.31832e-15 0.15041 3.52335) (-4.22648e-15 0.196166 3.49221) (-4.59948e-15 0.233274 3.45628) (-5.59722e-15 0.253961 3.42368) (-5.91209e-15 0.252571 3.40325) (-5.84865e-15 0.227107 3.40272) (-5.178e-15 0.179641 3.42665) (-4.75523e-15 0.115567 3.47539) (-4.12398e-15 0.043169 3.54303) (-3.36636e-15 -0.0307668 3.62159) (-2.53315e-15 -0.100465 3.70192) (-1.65012e-15 -0.163282 3.77748) (1.33316e-15 -0.217665 3.84317) (-3.87854e-16 -0.263649 3.89666) (6.12125e-16 -0.301896 3.93719) (8.86669e-16 -0.333938 3.96614) (2.32938e-15 -0.361106 3.98525) (2.41475e-15 -0.385523 3.99675) (1.57973e-15 -0.407426 4.00251) (1.54278e-15 -0.427507 4.00209) (1.22426e-15 -0.455048 4.00226) (5.08848e-16 -0.485146 3.9923) (-9.5666e-16 0.117699 3.30302) (-5.36984e-15 0.155095 3.17118) (-1.36169e-15 0.143128 3.04184) (-4.80168e-15 0.104652 2.94268) (-5.47432e-15 0.0565542 2.86768) (-1.257e-15 0.0140448 2.82451) (-3.10536e-15 0.00481883 2.79501) (-2.50422e-15 0.0279977 2.71387) (-9.57839e-16 0.0924266 2.56234) (-7.6937e-16 0.226984 2.29855) (-7.75041e-16 0.350647 1.91703) (-1.27566e-15 0.365611 1.41059) (-2.14679e-15 0.207175 0.870216) (-3.88449e-15 0.0696428 -0.256783) (-6.94408e-15 0.458151 -1.36358) (-4.82872e-15 0.883326 -1.96958) (-2.13105e-16 1.25229 -2.86194) (-2.4945e-15 1.60881 -3.79962) (-3.0477e-15 1.68579 -4.37558) (-7.09302e-16 1.36574 -4.34972) (3.08754e-15 0.823215 -3.85928) (1.53436e-15 0.345242 -3.49261) (1.59801e-15 -0.0723961 -3.37281) (1.38543e-15 -0.595125 -2.95161) (2.96755e-15 -1.01642 -2.43986) (-3.17317e-16 -1.40743 -1.95337) (5.11591e-16 -1.72816 -1.46586) (-4.42431e-16 -1.97503 -1.00143) (-9.86645e-15 -2.13428 -0.548608) (-4.2913e-15 -2.22117 -0.114572) (2.68984e-15 -2.22883 0.320416) (3.50254e-16 -2.16499 0.734426) (-2.00171e-15 -2.05903 1.14484) (-1.00437e-15 -1.93634 1.56461) (-8.63177e-16 -1.83795 2.00543) (-6.48689e-16 -1.8044 2.47317) (4.1275e-17 -1.8276 2.93524) (-7.82011e-16 -1.85857 3.33855) (-5.86021e-16 -1.84267 3.64776) (-5.45387e-16 -1.76237 3.86187) (-3.86603e-15 -1.62675 4.00228) (-7.8426e-16 -1.45976 4.09237) (-2.43025e-15 -1.28231 4.14835) (-2.12792e-15 -1.1025 4.18051) (-2.43159e-15 -0.924514 4.19528) (-2.64673e-15 -0.757298 4.19649) (-3.52948e-15 -0.607645 4.20094) (-2.21742e-15 -0.478107 4.21886) (-7.78431e-16 -0.366198 4.2411) (4.8083e-15 -0.269004 4.25721) (-2.54964e-15 -0.18378 4.27743) (-2.34142e-15 -0.102487 4.2964) (-2.06158e-15 -0.0295498 4.31459) (-3.77541e-15 0.030646 4.33495) (-4.58945e-15 0.0731834 4.35337) (-4.90921e-15 0.100152 4.36333) (-4.9018e-15 0.119356 4.35567) (-4.27838e-15 0.128246 4.32975) (-3.6871e-15 0.121171 4.28929) (-2.74615e-15 0.0993952 4.24562) (-2.17722e-15 0.0661013 4.20416) (-1.78502e-15 0.0297856 4.16608) (-1.71468e-15 0.00326979 4.12573) (-1.58411e-15 -0.00228745 4.08169) (-1.57134e-15 0.0159984 4.03091) (-2.28468e-15 0.0507756 3.97394) (-3.35137e-15 0.0901801 3.90893) (-3.03454e-15 0.1213 3.83702) (-4.25473e-15 0.136201 3.76176) (-3.43094e-15 0.135321 3.69068) (-3.37199e-15 0.119948 3.62948) (-2.33394e-15 0.0953779 3.58175) (1.34227e-15 0.0683633 3.54928) (-6.48813e-15 0.0468312 3.53243) (6.66123e-17 0.0370639 3.52607) (-8.16997e-15 0.0439899 3.5232) (-9.05288e-15 0.069 3.516) (-3.61212e-15 0.109069 3.49896) (-4.0993e-15 0.15758 3.47027) (-5.10318e-15 0.205058 3.43161) (-5.93652e-15 0.241182 3.39008) (-6.57982e-15 0.257555 3.35585) (-6.32839e-15 0.248751 3.33966) (-6.00678e-15 0.213652 3.35055) (-5.38896e-15 0.15646 3.39183) (-4.63645e-15 0.0846918 3.46017) (-3.80661e-15 0.00817534 3.54542) (-3.12661e-15 -0.0661653 3.63701) (-2.32153e-15 -0.133611 3.72515) (-1.38226e-15 -0.192164 3.80361) (-4.6086e-16 -0.241313 3.86841) (2.72073e-16 -0.28189 3.91864) (1.00494e-15 -0.315218 3.9549) (6.44919e-16 -0.343162 3.97958) (6.21523e-16 -0.367014 3.99486) (2.28113e-15 -0.388799 4.00308) (1.62636e-15 -0.408274 4.00575) (1.16797e-15 -0.426879 4.00207) (6.65731e-16 -0.453431 4.00024) (-1.08709e-17 -0.482223 3.98404) (-6.93588e-16 0.119651 3.22144) (-1.56881e-15 0.156585 3.09126) (-6.92323e-16 0.144048 2.96176) (-1.66946e-15 0.101533 2.87428) (-2.2247e-15 0.049701 2.82683) (-1.51746e-15 0.00866442 2.80017) (-1.32291e-15 0.00401898 2.76391) (-1.67228e-15 0.0292941 2.65893) (-1.48045e-15 0.0959214 2.47648) (-1.2523e-15 0.246781 2.18399) (-9.06183e-16 0.389704 1.79895) (-1.01185e-15 0.413637 1.28881) (-1.87968e-15 0.266269 0.708596) (-3.9331e-15 0.156289 -0.523582) (-6.16132e-15 0.548576 -1.54483) (-3.46363e-15 0.971405 -2.15932) (-3.57741e-16 1.3562 -3.07205) (-4.16477e-15 1.69285 -3.97839) (-2.70907e-15 1.70709 -4.47313) (-5.06604e-16 1.31739 -4.35702) (1.58806e-15 0.755697 -3.85142) (1.1153e-14 0.295508 -3.54725) (2.48483e-15 -0.132475 -3.42075) (1.61124e-15 -0.684285 -2.97791) (-5.62313e-15 -1.10672 -2.47364) (-1.37467e-15 -1.49321 -1.98134) (-1.42843e-15 -1.81251 -1.48915) (-4.90646e-16 -2.05772 -1.01827) (-9.58841e-16 -2.21511 -0.560197) (1.12934e-14 -2.30059 -0.121644) (1.56554e-15 -2.30533 0.318246) (-2.53276e-16 -2.24089 0.737246) (-2.06558e-15 -2.13551 1.15409) (-1.98913e-15 -2.01639 1.58262) (-6.09257e-16 -1.92504 2.03214) (7.08879e-16 -1.89623 2.50192) (3.98997e-16 -1.91526 2.95505) (-8.74751e-16 -1.93287 3.34162) (-3.73568e-16 -1.89927 3.63169) (-6.62558e-16 -1.80285 3.82852) (-9.48802e-16 -1.65461 3.95523) (-8.63702e-16 -1.47893 4.03429) (2.70748e-15 -1.2951 4.08112) (-2.84747e-15 -1.11014 4.10601) (-4.08056e-15 -0.928194 4.11566) (-4.35373e-15 -0.758759 4.11452) (-2.73592e-15 -0.606724 4.11845) (-3.90693e-15 -0.477975 4.13694) (-8.05908e-15 -0.368213 4.16046) (-2.04569e-16 -0.271397 4.1781) (-3.86567e-16 -0.186789 4.20158) (-1.86955e-15 -0.106607 4.22603) (-2.93121e-15 -0.0342035 4.25042) (-4.66948e-15 0.0249963 4.27784) (-5.09185e-15 0.0682619 4.30224) (-4.72495e-15 0.0984525 4.31634) (-4.11683e-15 0.121507 4.31264) (-3.02537e-15 0.135824 4.29053) (-3.60607e-15 0.134154 4.25445) (-3.25486e-15 0.114807 4.21557) (-2.93632e-15 0.080339 4.17818) (-2.58946e-15 0.0408024 4.14214) (-2.29535e-15 0.0150552 4.10096) (-2.46087e-15 0.0115872 4.05546) (-3.07542e-15 0.0321522 4.00353) (-3.77153e-15 0.0681585 3.94498) (-4.51262e-15 0.109961 3.8782) (-4.20212e-15 0.14363 3.80435) (-4.31698e-15 0.158718 3.7278) (-1.09603e-14 0.155248 3.65631) (1.4652e-15 0.135626 3.59548) (-6.07138e-15 0.106119 3.54859) (-4.21281e-15 0.073956 3.5166) (-7.7224e-15 0.0480899 3.49982) (-4.91143e-15 0.0362812 3.49284) (-2.31053e-15 0.0436802 3.48791) (-6.03628e-15 0.0712145 3.47644) (-9.67982e-15 0.115127 3.45249) (-5.47068e-15 0.16704 3.41504) (-7.47962e-15 0.215748 3.36788) (-7.86908e-15 0.249543 3.32105) (-7.9783e-15 0.2595 3.28765) (-6.77548e-15 0.240851 3.2807) (-6.03948e-15 0.194158 3.30934) (-5.60719e-15 0.12665 3.37306) (-4.76216e-15 0.0483452 3.46293) (-3.74138e-15 -0.0305087 3.56488) (-2.83181e-15 -0.103241 3.66672) (-1.87575e-15 -0.166525 3.75911) (-8.49636e-16 -0.219514 3.83714) (1.01549e-16 -0.26266 3.89845) (8.37561e-16 -0.297585 3.94373) (1.44174e-15 -0.326116 3.97486) (1.77006e-15 -0.350249 3.995) (2.09825e-15 -0.371062 4.00646) (2.70622e-15 -0.390372 4.01147) (1.02721e-15 -0.407479 4.01093) (7.32139e-16 -0.42473 4.00395) (1.91564e-16 -0.450035 3.99955) (-5.01996e-16 -0.477417 3.97683) (-7.06895e-16 0.120739 3.13952) (-1.6031e-15 0.157048 3.01733) (-2.82884e-16 0.142442 2.88552) (-1.35416e-15 0.0957073 2.8125) (-1.15603e-15 0.0407468 2.7953) (-1.28333e-15 0.00195067 2.77897) (-2.24872e-15 0.00360338 2.72525) (-1.7817e-15 0.0311106 2.5879) (-9.68576e-16 0.0981386 2.36673) (-1.09365e-15 0.258045 2.04834) (-1.07408e-15 0.420853 1.67505) (-1.01907e-15 0.461849 1.16284) (-1.74004e-15 0.332197 0.54559) (-3.6519e-15 0.250001 -0.749158) (-4.29321e-15 0.635216 -1.69871) (-2.02094e-15 1.06124 -2.32749) (-2.0362e-15 1.45976 -3.26723) (-3.92133e-15 1.77001 -4.13565) (-2.88419e-15 1.71718 -4.54764) (2.45147e-15 1.26307 -4.34841) (-2.68343e-16 0.6898 -3.84317) (-1.16754e-16 0.240522 -3.60098) (3.04351e-16 -0.207753 -3.45724) (1.96876e-15 -0.77481 -2.9943) (-1.51571e-15 -1.19673 -2.50267) (-1.07396e-15 -1.58072 -2.00486) (-1.19678e-15 -1.89729 -1.50954) (-1.41087e-16 -2.14081 -1.03315) (-4.45545e-15 -2.29626 -0.570424) (1.1426e-14 -2.38081 -0.127556) (-7.37366e-15 -2.3827 0.317131) (-7.02024e-16 -2.31778 0.74088) (-6.08315e-15 -2.21387 1.16403) (-1.98276e-15 -2.09863 1.60047) (-1.69926e-16 -2.01385 2.05675) (6.81397e-16 -1.98812 2.52619) (1.38962e-16 -2.001 2.96882) (-4.62663e-17 -2.00412 3.33824) (-2.03004e-16 -1.95275 3.60948) (-6.06153e-16 -1.84066 3.78966) (-9.45606e-16 -1.68023 3.9032) (-1.26116e-15 -1.49655 3.97167) (1.86451e-15 -1.30706 4.00995) (-3.42704e-15 -1.1178 4.02841) (-2.88523e-15 -0.932965 4.03377) (-2.37922e-15 -0.762101 4.03098) (-2.93414e-15 -0.609158 4.03444) (-2.39984e-15 -0.480961 4.05289) (-2.7314e-15 -0.374943 4.07807) (-3.69422e-15 -0.278968 4.09814) (-2.22431e-15 -0.194689 4.1254) (-3.97636e-15 -0.116008 4.15627) (-4.73508e-15 -0.0447348 4.18756) (-4.88581e-15 0.0152908 4.2212) (-4.98289e-15 0.0599203 4.25175) (-4.01265e-15 0.0951397 4.27057) (-4.07829e-15 0.121563 4.27073) (-7.96206e-15 0.139338 4.2533) (-1.44488e-15 0.142827 4.22259) (-2.67698e-15 0.125788 4.18821) (-2.45736e-15 0.0924074 4.15333) (-2.57071e-15 0.0526648 4.11898) (-3.08465e-15 0.027177 4.07849) (-3.71946e-15 0.0262616 4.03262) (-4.37327e-15 0.0499034 3.97979) (-4.78394e-15 0.088441 3.91953) (-4.9815e-15 0.13131 3.85121) (-1.10291e-14 0.166103 3.77593) (-4.05127e-15 0.181439 3.69874) (-7.52235e-15 0.175365 3.62676) (-5.81744e-15 0.151298 3.56569) (-3.14599e-15 0.116479 3.51942) (-7.11854e-15 0.0791802 3.48777) (-4.93038e-15 0.0493332 3.47074) (-1.89639e-15 0.0359595 3.46254) (-3.67861e-15 0.0444393 3.45455) (-3.4244e-15 0.075248 3.43732) (-9.62652e-15 0.123602 3.40457) (-8.07654e-15 0.178975 3.35658) (-8.49066e-15 0.22813 3.30049) (-8.1016e-15 0.257717 3.25039) (-7.75175e-15 0.258433 3.22293) (-6.39054e-15 0.226998 3.23272) (-5.37491e-15 0.167217 3.28607) (-4.89965e-15 0.0897069 3.37575) (-4.06065e-15 0.00680648 3.48659) (-3.06801e-15 -0.071821 3.60193) (-2.18792e-15 -0.140875 3.70977) (-1.09469e-15 -0.198308 3.80224) (-2.92598e-17 -0.244684 3.87644) (8.79412e-16 -0.28137 3.93194) (1.46571e-15 -0.310681 3.97099) (3.09473e-15 -0.334719 3.99649) (2.0911e-15 -0.355335 4.01204) (1.91456e-15 -0.373346 4.01978) (8.58571e-16 -0.390288 4.02161) (4.66379e-16 -0.405042 4.01764) (3.8276e-16 -0.42097 4.00729) (-3.81577e-16 -0.444711 3.99959) (-1.01717e-15 -0.470746 3.97065) (-8.83879e-16 0.122009 3.06859) (-6.45901e-16 0.159088 2.94218) (-1.04516e-15 0.141954 2.8063) (-7.34529e-16 0.0888307 2.75485) (-1.04821e-15 0.0310239 2.76875) (-1.6626e-15 -0.00397774 2.75386) (-2.78887e-15 0.00494122 2.67258) (-1.63309e-15 0.0346383 2.49515) (-6.0382e-15 0.100268 2.22971) (7.28372e-15 0.27088 1.88748) (-1.77141e-15 0.458119 1.53003) (-5.33355e-16 0.508388 1.02462) (-1.69288e-15 0.401349 0.379244) (-3.2188e-15 0.349314 -0.939171) (-3.99046e-15 0.72632 -1.81849) (-4.65098e-15 1.15676 -2.48143) (-2.77252e-15 1.56386 -3.44907) (-4.56159e-15 1.84025 -4.27262) (-2.94585e-15 1.71773 -4.59994) (-1.41554e-15 1.20543 -4.32652) (5.45277e-16 0.630838 -3.83722) (-2.10412e-15 0.197249 -3.65242) (2.03251e-14 -0.269014 -3.48208) (8.26553e-16 -0.860357 -3.00554) (-3.0003e-17 -1.28377 -2.52641) (-3.85205e-16 -1.66772 -2.02429) (2.44193e-16 -1.98226 -1.52667) (1.05477e-14 -2.22482 -1.04578) (-3.38857e-16 -2.3786 -0.579021) (-4.40294e-15 -2.46204 -0.132168) (4.74644e-15 -2.46129 0.317094) (-4.01798e-16 -2.39588 0.745268) (-5.14715e-15 -2.29403 1.17449) (-1.84518e-15 -2.18267 1.61799) (3.48074e-16 -2.10361 2.07919) (7.88285e-16 -2.07913 2.54608) (-1.10999e-16 -2.08416 2.9768) (-1.76297e-16 -2.07196 3.32874) (-3.36517e-16 -2.00295 3.58142) (-1.61826e-15 -1.87562 3.74551) (-1.15014e-15 -1.70376 3.84642) (-3.73891e-16 -1.5125 3.90468) (-1.08502e-15 -1.31791 3.93501) (-3.18062e-15 -1.12461 3.94777) (-2.59693e-15 -0.937245 3.9497) (-3.25222e-15 -0.763834 3.94564) (-2.32878e-15 -0.609978 3.94895) (-8.1815e-16 -0.481819 3.9672) (-1.04816e-15 -0.378524 3.99428) (-2.15021e-15 -0.283586 4.01842) (-2.1036e-15 -0.200279 4.05089) (-3.96187e-15 -0.123472 4.08875) (-4.31586e-15 -0.0540507 4.12731) (-4.94123e-15 0.00551565 4.16651) (-4.66764e-15 0.0520839 4.20281) (-3.90643e-15 0.0916896 4.22675) (-3.6622e-15 0.121827 4.22957) (-4.13217e-15 0.142122 4.21533) (-3.24407e-15 0.146469 4.18985) (-3.23525e-15 0.130514 4.16091) (-2.86552e-15 0.0984034 4.12982) (-3.27874e-15 0.0625221 4.0973) (-3.92483e-15 0.0383732 4.0577) (-3.99141e-15 0.0403868 4.01119) (-4.25212e-15 0.067922 3.9567) (-3.48792e-15 0.110739 3.89409) (-2.22917e-15 0.154902 3.82377) (-2.35579e-15 0.18976 3.74749) (-1.91532e-15 0.204697 3.67031) (-1.83657e-15 0.195785 3.5986) (-2.01538e-15 0.167095 3.53798) (-1.25546e-15 0.126614 3.49193) (-1.36206e-15 0.0841419 3.46064) (-4.75206e-15 0.0508327 3.44399) (-8.57338e-15 0.0366869 3.43462) (-6.18051e-15 0.0472456 3.42256) (-6.86114e-15 0.0823109 3.39757) (-1.14905e-14 0.13553 3.35359) (-7.63232e-15 0.193787 3.29355) (-8.44247e-15 0.241577 3.22951) (-8.01532e-15 0.263896 3.18071) (-6.86688e-15 0.251855 3.16742) (-6.18705e-15 0.20501 3.20307) (-5.63777e-15 0.131961 3.28675) (-4.29105e-15 0.0465595 3.40273) (-3.30538e-15 -0.0382043 3.53107) (-2.80206e-15 -0.113736 3.65464) (-1.55656e-15 -0.177005 3.76337) (-1.15793e-16 -0.227344 3.8518) (9.84975e-16 -0.266556 3.91931) (1.6816e-15 -0.29679 3.96736) (2.01951e-15 -0.320835 3.99952) (2.12768e-15 -0.340896 4.0194) (1.80714e-15 -0.358398 4.03058) (1.35709e-15 -0.373834 4.03476) (7.31527e-16 -0.388492 4.03338) (7.2824e-18 -0.400873 4.0257) (-6.26801e-16 -0.415477 4.01178) (-1.0619e-15 -0.437406 4.00004) (-1.20783e-15 -0.462438 3.96582) (-8.94186e-16 0.122903 2.99905) (-7.46022e-16 0.159862 2.86748) (-1.5055e-15 0.13918 2.732) (-1.21398e-15 0.0789338 2.70665) (-1.24572e-15 0.0193329 2.74645) (-1.85565e-15 -0.0103527 2.72187) (-2.801e-15 0.00694334 2.60554) (-3.7126e-15 0.0397062 2.38591) (-4.3582e-15 0.102623 2.07285) (-4.7978e-15 0.274154 1.71712) (-1.36007e-15 0.488231 1.37989) (-4.52308e-16 0.551816 0.880071) (-1.71788e-15 0.471403 0.190834) (-3.3693e-15 0.449189 -1.0988) (-3.84098e-15 0.815616 -1.92313) (-5.29128e-15 1.25443 -2.63308) (-3.38784e-15 1.66544 -3.61936) (-4.72897e-15 1.90142 -4.38977) (-6.11201e-15 1.70865 -4.63172) (-5.71671e-16 1.14495 -4.29428) (6.85752e-16 0.573977 -3.8313) (-7.36214e-16 0.145063 -3.69193) (1.11788e-15 -0.359437 -3.48671) (5.04734e-17 -0.945972 -3.01256) (-2.9107e-17 -1.37034 -2.54529) (-4.70568e-16 -1.75346 -2.04016) (-3.31375e-16 -2.06732 -1.5412) (2.42035e-15 -2.30935 -1.0566) (5.16463e-15 -2.46149 -0.58628) (-3.72429e-15 -2.54346 -0.135757) (5.63687e-15 -2.54068 0.317974) (-9.54859e-16 -2.47503 0.750178) (1.10016e-14 -2.37583 1.18509) (-7.75406e-16 -2.26838 1.6347) (3.40655e-16 -2.19418 2.09902) (8.18924e-16 -2.16911 2.56148) (-2.50111e-16 -2.16471 2.97917) (-1.37332e-16 -2.13651 3.31341) (-2.51695e-16 -2.04998 3.54787) (-2.02141e-15 -1.90787 3.69637) (-1.52702e-15 -1.72529 3.78515) (-3.63954e-16 -1.5271 3.83369) (-1.11809e-15 -1.32807 3.85685) (9.60648e-16 -1.13117 3.86476) (-1.24438e-15 -0.94196 3.86417) (1.82806e-15 -0.767722 3.85949) (-2.91757e-15 -0.613342 3.86255) (8.12364e-16 -0.486331 3.88055) (2.91401e-16 -0.385426 3.90989) (-5.93492e-16 -0.293105 3.93895) (-1.02268e-15 -0.211871 3.97743) (-3.69932e-15 -0.137561 4.0225) (-3.08413e-15 -0.0700511 4.06815) (-3.5605e-15 -0.0100691 4.11298) (-3.62789e-15 0.0406279 4.15402) (-1.82922e-15 0.0841644 4.18245) (-2.12693e-15 0.118897 4.18759) (-5.01939e-15 0.140257 4.17596) (-3.345e-15 0.144153 4.15678) (-3.45294e-15 0.130885 4.13511) (-3.01323e-15 0.102179 4.1086) (-2.32048e-15 0.0700288 4.07744) (-2.83662e-15 0.0486786 4.0374) (-1.8229e-15 0.0523791 3.98977) (5.70134e-15 0.083236 3.93329) (-1.06562e-14 0.13032 3.86861) (-6.74852e-15 0.177337 3.7965) (3.04176e-16 0.212309 3.71946) (-1.02184e-14 0.226242 3.64217) (-3.28672e-15 0.214702 3.5713) (-8.20801e-15 0.181702 3.51234) (9.88266e-16 0.135835 3.46702) (7.06151e-15 0.0884143 3.43655) (7.28532e-15 0.0521949 3.4211) (-1.81828e-15 0.038181 3.41085) (-6.66629e-15 0.0518789 3.39346) (-5.32945e-15 0.0921952 3.35797) (-5.64948e-15 0.150751 3.30003) (-3.63164e-15 0.211177 3.22749) (-9.13602e-15 0.255039 3.15914) (-6.84037e-15 0.266044 3.11985) (-6.14254e-15 0.237482 3.1313) (-5.5315e-15 0.173802 3.20079) (-4.69144e-15 0.0886732 3.3166) (-5.23539e-15 -0.00132616 3.45509) (1.07181e-15 -0.0846935 3.59473) (-2.26464e-15 -0.154701 3.72025) (-7.17634e-16 -0.210482 3.82463) (1.17862e-15 -0.252934 3.90531) (1.86989e-15 -0.284828 3.96389) (2.24156e-15 -0.308967 4.00349) (2.20613e-15 -0.328286 4.02857) (1.74742e-15 -0.344876 4.04306) (1.40754e-15 -0.359677 4.05019) (6.86812e-16 -0.372697 4.05088) (2.69904e-17 -0.385029 4.04609) (-5.57563e-16 -0.394948 4.0343) (-9.40329e-16 -0.408202 4.01664) (-1.14349e-15 -0.42823 4.00046) (-1.07232e-15 -0.452865 3.96267) (-8.89101e-16 0.123902 2.92321) (-6.33345e-16 0.161107 2.78557) (-1.82782e-15 0.136922 2.65551) (-1.38201e-15 0.0689249 2.66296) (-1.30231e-15 0.00815878 2.72396) (-2.0128e-15 -0.0144765 2.67955) (-3.07388e-15 0.0128242 2.52346) (-3.4817e-15 0.0478586 2.26171) (-4.16632e-15 0.103793 1.90216) (-3.57721e-15 0.278392 1.53254) (-5.91093e-15 0.518386 1.21489) (-1.10426e-15 0.596517 0.724336) (-1.48369e-15 0.542311 -0.0026438) (-2.99263e-15 0.551911 -1.22359) (-3.47682e-15 0.911239 -2.01013) (-3.79064e-15 1.35704 -2.78428) (-3.63187e-15 1.76562 -3.77749) (-3.87037e-15 1.95505 -4.48731) (-1.84283e-15 1.69169 -4.64447) (-9.29798e-16 1.08377 -4.25402) (-4.10034e-16 0.525379 -3.827) (-1.84348e-17 0.10795 -3.72472) (1.91897e-15 -0.42097 -3.48858) (2.94911e-16 -1.02549 -3.01501) (-1.00764e-16 -1.45366 -2.55856) (-8.58593e-16 -1.83824 -2.05224) (-1.89188e-15 -2.15238 -1.55285) (-8.65804e-15 -2.3947 -1.06526) (8.56696e-16 -2.54528 -0.591919) (7.86298e-15 -2.62564 -0.138142) (3.56169e-15 -2.62116 0.319745) (-1.83191e-15 -2.5558 0.755685) (-7.43029e-16 -2.459 1.19581) (-5.8481e-16 -2.35525 1.6506) (2.94944e-16 -2.2849 2.11632) (7.797e-16 -2.25752 2.57256) (3.90785e-16 -2.24252 2.97623) (-1.53042e-16 -2.19778 3.29259) (-4.3515e-16 -2.09393 3.50911) (1.03448e-16 -1.93763 3.64253) (-9.47565e-16 -1.745 3.71971) (-1.79465e-15 -1.54057 3.75908) (-1.40731e-15 -1.33728 3.77588) (1.25734e-15 -1.13702 3.77982) (1.69775e-15 -0.945257 3.7771) (5.08217e-16 -0.771399 3.77249) (2.25573e-16 -0.616238 3.7757) (-5.26835e-16 -0.490208 3.79386) (-8.00358e-16 -0.391091 3.82613) (-2.01534e-15 -0.301656 3.86126) (-1.48186e-15 -0.222453 3.90659) (5.31082e-15 -0.15041 3.95855) (-1.74759e-15 -0.0844931 4.01083) (-2.4812e-15 -0.0246008 4.06161) (-1.76125e-15 0.0294109 4.10621) (-2.51587e-15 0.0770431 4.13685) (-2.63704e-15 0.116526 4.14392) (-1.83406e-15 0.138901 4.13608) (-1.25614e-15 0.145165 4.12412) (-4.34663e-16 0.132706 4.11017) (-6.66716e-16 0.106382 4.08725) (-7.26515e-16 0.0772631 4.05615) (-8.69688e-16 0.0606069 4.01422) (-1.00677e-15 0.065823 3.96397) (-1.0759e-15 0.0995772 3.90491) (-1.58533e-15 0.149979 3.83894) (-1.82869e-15 0.200375 3.7654) (-1.95992e-15 0.235151 3.68769) (-1.90653e-15 0.247649 3.61122) (-1.31017e-15 0.232904 3.54245) (-6.52787e-15 0.195411 3.48594) (1.55526e-15 0.144659 3.44354) (5.51313e-15 0.0927397 3.41674) (-8.9572e-16 0.0543105 3.40359) (1.2361e-15 0.041688 3.39208) (-6.03448e-15 0.0602129 3.36706) (-8.27882e-15 0.106909 3.31757) (-4.20851e-15 0.170621 3.24341) (-6.84141e-15 0.23105 3.16) (-6.16457e-15 0.266519 3.09453) (-5.43197e-15 0.261184 3.07652) (-4.89368e-15 0.213 3.12371) (-3.63431e-15 0.133326 3.23115) (-2.59837e-15 0.0394801 3.37581) (-1.75643e-15 -0.051233 3.52962) (-8.20048e-16 -0.129832 3.67282) (1.42065e-16 -0.192331 3.79398) (1.13611e-15 -0.239674 3.88954) (1.96254e-15 -0.274095 3.95976) (2.11186e-15 -0.299034 4.00816) (2.34629e-15 -0.317773 4.03911) (2.02255e-15 -0.333123 4.05752) (2.31902e-15 -0.346735 4.06712) (1.2301e-15 -0.359171 4.07052) (1.49079e-15 -0.369893 4.06771) (1.03787e-16 -0.37982 4.05922) (-8.00206e-16 -0.387243 4.04297) (-1.01701e-15 -0.399232 4.02155) (-1.06274e-15 -0.417513 4.00111) (-8.42828e-16 -0.442529 3.96183) (-8.82321e-16 0.124145 2.84654) (-8.54118e-16 0.160144 2.70653) (-6.46575e-16 0.130942 2.58626) (-1.08585e-15 0.055934 2.62789) (-1.41863e-15 -0.0039685 2.70325) (-2.1797e-15 -0.0179376 2.6305) (-3.32276e-15 0.0192788 2.43139) (8.51958e-16 0.0579838 2.13095) (-1.12398e-14 0.105818 1.72524) (-4.50186e-15 0.277776 1.34426) (-6.73436e-15 0.542947 1.04814) (-2.669e-15 0.638835 0.566561) (-1.41924e-15 0.611433 -0.190641) (-3.30758e-15 0.648917 -1.33859) (-3.20896e-15 1.00731 -2.09956) (-3.82757e-15 1.46155 -2.93899) (-3.94697e-15 1.86163 -3.92347) (-3.89323e-15 1.99976 -4.56603) (-2.12004e-15 1.66689 -4.64021) (-7.46831e-16 1.02241 -4.20739) (-1.97401e-15 0.477733 -3.82023) (7.95009e-15 0.0577358 -3.74103) (2.77142e-15 -0.505581 -3.47614) (6.87842e-16 -1.10428 -3.01385) (-1.32836e-16 -1.53629 -2.56725) (-8.15913e-16 -1.92314 -2.06102) (-1.00323e-15 -2.23739 -1.56218) (1.63175e-15 -2.48044 -1.07229) (9.59375e-15 -2.62959 -0.596265) (-2.64731e-15 -2.7083 -0.139558) (4.30093e-15 -2.7024 0.322161) (-2.10609e-15 -2.63807 0.76154) (8.52423e-15 -2.54313 1.20628) (-8.73472e-17 -2.44308 1.66521) (1.12876e-15 -2.37555 2.13073) (7.9325e-16 -2.34429 2.57926) (1.18399e-16 -2.31763 2.96813) (-2.81045e-16 -2.25588 3.26654) (-5.20347e-16 -2.13503 3.46546) (-2.27654e-16 -1.965 3.58426) (-1.30084e-15 -1.76292 3.65034) (-6.46608e-16 -1.55315 3.6813) (-5.29257e-15 -1.34613 3.69267) (-3.02319e-15 -1.14342 3.69366) (1.14122e-15 -0.949959 3.68923) (5.18692e-16 -0.776245 3.68475) (1.01057e-15 -0.622887 3.68874) (6.09634e-16 -0.498429 3.70751) (-6.03381e-17 -0.402104 3.74357) (-1.70169e-15 -0.316298 3.78512) (-2.19196e-15 -0.239173 3.83675) (-1.43669e-15 -0.168412 3.89484) (-1.61708e-15 -0.103505 3.95301) (-3.04243e-15 -0.0432815 4.00905) (-7.25029e-15 0.0133868 4.0566) (-2.04057e-15 0.0673987 4.08867) (-4.36248e-15 0.111282 4.0986) (-1.09275e-15 0.137647 4.09595) (-7.67439e-16 0.149113 4.0901) (-6.74582e-16 0.139268 4.08049) (-1.46937e-15 0.112641 4.05961) (-1.84906e-15 0.0849307 4.02821) (-2.15135e-15 0.071448 3.98403) (-2.30815e-15 0.079601 3.93092) (-2.46362e-15 0.114156 3.87084) (-2.26416e-15 0.166308 3.80527) (-2.3584e-15 0.219772 3.73136) (-3.80925e-15 0.255468 3.65411) (-1.2955e-15 0.266905 3.58006) (1.91953e-15 0.248939 3.51418) (2.32103e-15 0.206837 3.46027) (-4.3761e-16 0.1513 3.42373) (-2.81317e-15 0.0957768 3.40463) (-1.07352e-15 0.0567349 3.39474) (-1.09984e-14 0.047389 3.38009) (-2.31139e-15 0.0723956 3.34371) (-3.63723e-15 0.126293 3.27672) (-4.26528e-15 0.194236 3.1861) (-4.30384e-15 0.251194 3.09747) (-4.82954e-15 0.272682 3.04668) (-4.16449e-15 0.246439 3.06303) (-3.37803e-15 0.177554 3.153) (-5.65129e-15 0.0845831 3.29614) (-1.99526e-15 -0.0132467 3.46135) (-1.0841e-15 -0.100853 3.62121) (-7.28913e-17 -0.172078 3.76018) (1.19674e-15 -0.225708 3.87141) (1.96785e-15 -0.264238 3.95476) (2.06065e-15 -0.290889 4.01288) (2.16569e-15 -0.309518 4.0507) (8.86272e-16 -0.32359 4.07337) (1.6871e-15 -0.335716 4.0858) (9.37728e-16 -0.34684 4.09103) (2.08908e-16 -0.357061 4.09083) (-1.59877e-16 -0.365455 4.08433) (-4.93349e-16 -0.372845 4.07181) (-8.17701e-16 -0.377815 4.05096) (-9.43328e-16 -0.388779 4.02614) (-8.77772e-16 -0.405706 4.00227) (-5.27902e-16 -0.431908 3.96358) (-8.74448e-16 0.124359 2.76077) (-9.31383e-16 0.160192 2.62457) (-1.01208e-15 0.124734 2.51787) (-4.3385e-15 0.0425767 2.59554) (-1.62231e-15 -0.0147512 2.67764) (-2.36344e-15 -0.018754 2.57017) (-3.57094e-15 0.0287929 2.32732) (-4.87126e-15 0.0715983 1.99371) (-4.05585e-15 0.107113 1.54721) (-9.58173e-15 0.276469 1.14639) (-5.57928e-15 0.565815 0.874062) (-3.1654e-15 0.682444 0.40271) (-1.54788e-15 0.682238 -0.370378) (-3.5034e-15 0.747454 -1.438) (-3.06469e-15 1.10867 -2.19376) (-3.97678e-15 1.56942 -3.09431) (-4.20375e-15 1.95408 -4.05589) (-4.18266e-15 2.03658 -4.62624) (-1.99669e-15 1.63592 -4.61978) (-1.31198e-15 0.963079 -4.15573) (-6.76896e-16 0.440142 -3.81459) (2.04422e-16 0.0275933 -3.75398) (1.04389e-15 -0.566902 -3.46108) (8.80727e-16 -1.17691 -3.00769) (-1.5349e-16 -1.6159 -2.57068) (1.98448e-16 -2.00734 -2.06631) (5.16178e-16 -2.32222 -1.56877) (-2.68046e-15 -2.56621 -1.07739) (3.51448e-15 -2.71443 -0.59911) (-7.26313e-17 -2.79172 -0.139841) (1.34397e-14 -2.78467 0.325262) (-5.04006e-15 -2.72144 0.767808) (1.94693e-15 -2.62798 1.21662) (-2.80634e-15 -2.53139 1.67857) (-6.13672e-16 -2.46562 2.14236) (5.9895e-16 -2.42907 2.58177) (8.11573e-18 -2.38978 2.95515) (-2.63676e-16 -2.31059 3.23554) (-5.60904e-16 -2.17324 3.41722) (-5.91541e-16 -1.99021 3.52199) (-2.1414e-15 -1.77927 3.57752) (2.26529e-18 -1.56459 3.60078) (-3.06102e-16 -1.35412 3.60763) (-4.83626e-16 -1.14944 3.60651) (1.01293e-16 -0.954612 3.6011) (-4.8711e-16 -0.779365 3.59678) (5.41815e-16 -0.627569 3.60202) (-1.15862e-15 -0.504889 3.62253) (-8.36898e-16 -0.411643 3.66283) (-8.80374e-16 -0.329733 3.71099) (-1.99842e-15 -0.254724 3.76851) (-2.53662e-15 -0.185168 3.83201) (-3.06989e-15 -0.121263 3.89545) (-3.04395e-15 -0.0604611 3.95532) (-1.89814e-15 0.000221279 4.00463) (-3.20915e-16 0.0595827 4.03806) (-6.37706e-16 0.106778 4.05149) (-7.39563e-16 0.137558 4.05368) (-9.43451e-16 0.149965 4.05191) (-2.00709e-15 0.143275 4.04305) (-2.04619e-15 0.118464 4.02191) (-1.49973e-15 0.0927519 3.99033) (-1.30842e-15 0.0822496 3.94537) (-1.20539e-15 0.0952208 3.8904) (-1.35117e-15 0.131071 3.83009) (-6.84497e-16 0.185235 3.76514) (-1.56065e-15 0.23998 3.6907) (-2.02454e-15 0.276 3.61457) (-1.69832e-15 0.284929 3.5445) (-2.84019e-17 0.263489 3.48448) (5.66626e-15 0.216492 3.43757) (-1.91346e-15 0.155663 3.41088) (-3.27846e-15 0.0978524 3.40176) (-2.71722e-15 0.0606502 3.39523) (-3.71337e-15 0.0570354 3.3749) (8.68268e-16 0.0905424 3.32294) (-2.0719e-15 0.151976 3.23517) (-2.75383e-15 0.22161 3.12994) (-3.3877e-15 0.269115 3.04611) (-3.92399e-15 0.269996 3.02497) (-2.67581e-15 0.219809 3.0866) (-1.44232e-15 0.132354 3.21972) (-2.52107e-15 0.0307064 3.39051) (-1.82247e-15 -0.0662076 3.5655) (-2.98486e-16 -0.147251 3.72207) (6.75715e-16 -0.209371 3.85028) (1.5551e-15 -0.253635 3.94769) (1.86477e-15 -0.283628 4.01697) (1.78767e-15 -0.303205 4.06258) (2.24899e-15 -0.316471 4.09037) (1.59847e-15 -0.32671 4.10563) (7.39452e-16 -0.336242 4.11288) (2.62215e-16 -0.345319 4.11426) (1.01019e-15 -0.353413 4.1105) (-3.86955e-16 -0.359381 4.10009) (-6.41054e-16 -0.364143 4.08335) (-8.25453e-16 -0.366827 4.05809) (-8.53233e-16 -0.377177 4.03057) (-8.28253e-16 -0.393339 4.00461) (-2.37825e-16 -0.421401 3.96799) (-8.70018e-16 0.124542 2.69172) (-1.01701e-15 0.158556 2.54908) (-1.21831e-15 0.115141 2.45921) (-8.20546e-16 0.0260599 2.56865) (-2.00277e-15 -0.0266253 2.64527) (-1.92969e-15 -0.0193514 2.49866) (-4.01478e-15 0.0379346 2.21772) (-1.05467e-14 0.0881047 1.86458) (-7.57448e-15 0.116315 1.38163) (-8.76156e-15 0.274397 0.953707) (-9.40289e-15 0.585756 0.702902) (-4.11049e-15 0.723254 0.240333) (-1.80179e-15 0.749261 -0.542588) (-3.69134e-15 0.840189 -1.53059) (-3.07116e-15 1.20987 -2.30306) (-4.12667e-15 1.67709 -3.2499) (-4.21249e-15 2.03993 -4.17412) (-3.94715e-15 2.06407 -4.66846) (-1.13438e-15 1.59914 -4.58523) (-3.65899e-15 0.905936 -4.10037) (4.22879e-16 0.400847 -3.80367) (2.3723e-15 -0.0233813 -3.74758) (1.63943e-15 -0.648722 -3.43399) (1.47609e-15 -1.24862 -2.99787) (-8.0001e-17 -1.69458 -2.57009) (-8.31679e-17 -2.09075 -2.06877) (-2.93416e-16 -2.40605 -1.57324) (-2.01262e-15 -2.65194 -1.08101) (5.16203e-15 -2.79983 -0.600835) (-7.884e-15 -2.87549 -0.139337) (4.5381e-15 -2.8678 0.328887) (-7.05168e-15 -2.80537 0.77419) (1.53406e-15 -2.71352 1.22647) (4.81757e-15 -2.62003 1.69028) (-8.92083e-16 -2.55512 2.15097) (5.40259e-16 -2.51184 2.58008) (1.80191e-16 -2.45895 2.93747) (-2.4681e-16 -2.36204 3.19985) (-6.17756e-16 -2.20845 3.36457) (1.5118e-16 -2.01312 3.4559) (2.28819e-15 -1.79423 3.50162) (-1.47941e-15 -1.57517 3.51809) (2.57079e-16 -1.36163 3.52119) (-1.0143e-15 -1.15584 3.51882) (1.16767e-15 -0.959811 3.51307) (-3.72688e-16 -0.783995 3.50908) (2.04313e-16 -0.633825 3.51556) (-2.14206e-15 -0.514842 3.53811) (-3.12638e-15 -0.425782 3.58248) (-5.43682e-16 -0.348255 3.63639) (-7.52183e-16 -0.2761 3.69869) (-1.90379e-15 -0.207766 3.7665) (-1.55938e-15 -0.144412 3.8339) (5.14484e-16 -0.0838297 3.89696) (1.40365e-15 -0.0176012 3.94725) (2.33009e-16 0.0460195 3.98223) (-4.46519e-16 0.0985427 3.99959) (-5.00682e-16 0.130673 4.00505) (-3.39614e-16 0.141383 4.00568) (-1.78836e-15 0.136517 3.99918) (-1.53637e-15 0.118776 3.97911) (1.96088e-16 0.0974959 3.94775) (-1.01069e-16 0.0902543 3.90285) (8.37622e-17 0.106074 3.84855) (-6.90539e-16 0.145804 3.78884) (-5.34388e-17 0.202383 3.72301) (-8.97863e-17 0.257431 3.64773) (1.48922e-16 0.29323 3.57302) (-8.81541e-16 0.299228 3.50785) (-6.52516e-15 0.274543 3.45734) (7.0946e-16 0.222852 3.42348) (-2.11678e-15 0.157169 3.40914) (-5.37024e-15 0.0987779 3.40889) (9.5792e-16 0.0662142 3.40396) (-7.83954e-15 0.0709631 3.37282) (-3.56598e-15 0.114544 3.29992) (-3.9416e-15 0.183052 3.19072) (-3.96854e-15 0.249752 3.07951) (-3.97449e-15 0.280175 3.01672) (-3.74562e-15 0.255174 3.03985) (-2.58791e-15 0.181078 3.1509) (-1.93986e-15 0.0798318 3.31985) (-1.40484e-15 -0.024813 3.50619) (7.09624e-17 -0.116707 3.67998) (7.5907e-16 -0.188861 3.82544) (1.13909e-15 -0.241062 3.93819) (1.54482e-15 -0.27609 4.01948) (1.35178e-15 -0.298241 4.07411) (-5.05433e-16 -0.31164 4.10771) (1.4358e-15 -0.320537 4.1265) (7.30653e-16 -0.327777 4.13542) (3.78099e-16 -0.335143 4.1382) (1.31737e-16 -0.342358 4.13597) (-3.84029e-16 -0.348282 4.12859) (-3.80245e-16 -0.351717 4.11412) (-8.86286e-17 -0.353865 4.09319) (-6.19114e-16 -0.354581 4.06405) (-5.19613e-16 -0.364899 4.03484) (-5.87923e-16 -0.380925 4.00832) (-2.06196e-16 -0.411281 3.97454) (-8.80802e-16 0.125408 2.61576) (-1.20226e-15 0.157658 2.46737) (-1.45048e-15 0.105926 2.40333) (-7.81041e-16 0.0105079 2.53893) (-5.221e-15 -0.036104 2.60102) (-5.93421e-15 -0.0161919 2.41991) (-5.00632e-15 0.051172 2.11259) (-4.96927e-15 0.111335 1.75386) (5.46936e-16 0.127721 1.24597) (-7.84725e-15 0.275261 0.770533) (-9.90634e-15 0.60396 0.533217) (-4.40221e-15 0.762716 0.0689099) (-1.9748e-15 0.817781 -0.70294) (-3.45164e-15 0.936967 -1.61566) (-3.1457e-15 1.31562 -2.42427) (-4.21907e-15 1.78585 -3.40144) (-4.16255e-15 2.12 -4.277) (-3.3405e-15 2.0834 -4.6931) (-5.88923e-16 1.55772 -4.53794) (1.83526e-15 0.851619 -4.04243) (1.11193e-15 0.371569 -3.79233) (1.59264e-15 -0.0491365 -3.74195) (2.07158e-15 -0.707064 -3.40705) (2.2795e-15 -1.31357 -2.98362) (-3.30815e-16 -1.76962 -2.56477) (-4.8727e-16 -2.17257 -2.06802) (1.19497e-15 -2.48927 -1.57521) (1.2423e-16 -2.73813 -1.08288) (4.35526e-15 -2.88663 -0.601027) (-4.45341e-15 -2.95965 -0.137835) (-4.5012e-15 -2.95179 0.333123) (4.91671e-15 -2.89004 0.780843) (3.16189e-15 -2.79983 1.23595) (1.34833e-15 -2.70891 1.70046) (1.78378e-15 -2.64377 2.15674) (-2.75771e-15 -2.59241 2.57448) (1.55793e-16 -2.5251 2.91538) (-3.80609e-16 -2.41043 3.15984) (-1.01247e-15 -2.24116 3.308) (2.83014e-16 -2.03409 3.38648) (-8.27476e-17 -1.80813 3.42319) (-7.34829e-17 -1.58522 3.43379) (1.8838e-16 -1.36879 3.43393) (-2.2184e-15 -1.16189 3.4311) (5.462e-18 -0.964057 3.42544) (-5.77287e-16 -0.78782 3.4222) (-7.37227e-17 -0.63942 3.43021) (5.65166e-15 -0.524476 3.45481) (-1.69681e-15 -0.439382 3.50243) (-2.44464e-15 -0.365444 3.5607) (-9.26005e-16 -0.296268 3.62678) (-3.35316e-16 -0.229725 3.69765) (-5.21713e-16 -0.167164 3.7669) (-6.55267e-15 -0.105503 3.83186) (-1.65663e-15 -0.0366781 3.88367) (-1.06431e-14 0.0309006 3.9195) (-7.75788e-15 0.0856411 3.93917) (1.05913e-15 0.116443 3.94732) (-1.06329e-16 0.128865 3.9509) (1.59604e-15 0.127297 3.94897) (6.97858e-16 0.116843 3.93079) (1.43456e-16 0.101647 3.8985) (-5.52509e-16 0.0988864 3.85326) (-1.83349e-16 0.11754 3.79958) (-1.38805e-15 0.160536 3.73807) (-2.07145e-15 0.219388 3.66902) (-2.66416e-15 0.274736 3.59554) (-9.57953e-15 0.308371 3.52519) (-8.15338e-16 0.310116 3.46923) (-3.20777e-15 0.281103 3.43361) (-9.34885e-15 0.225173 3.41707) (-1.93143e-15 0.156503 3.41683) (-2.67258e-15 0.0996944 3.42339) (2.95549e-15 0.0748265 3.41678) (-4.02668e-15 0.0912646 3.36846) (-7.41944e-15 0.145866 3.26992) (-5.12534e-15 0.218417 3.14318) (-5.08096e-15 0.27422 3.04086) (-8.65971e-15 0.27958 3.01729) (-3.48713e-15 0.226629 3.09413) (-2.74119e-15 0.132332 3.2507) (-1.95651e-15 0.0234713 3.44332) (-1.01653e-15 -0.0785759 3.63244) (-1.93845e-16 -0.162218 3.79574) (7.55313e-16 -0.224249 3.92456) (1.26312e-15 -0.266606 4.0193) (1.47104e-15 -0.293044 4.08387) (9.69021e-16 -0.308332 4.12453) (1.08223e-15 -0.316616 4.14739) (9.85043e-16 -0.322093 4.15854) (4.91069e-16 -0.327116 4.16227) (3.08257e-16 -0.332719 4.16121) (-2.25059e-16 -0.338115 4.15555) (-5.24615e-16 -0.341753 4.14448) (-7.11891e-16 -0.342594 4.12593) (-9.07363e-16 -0.342272 4.10113) (-9.04373e-16 -0.34148 4.06892) (-5.8264e-16 -0.352441 4.03915) (-1.71478e-16 -0.368896 4.01353) (-2.00072e-16 -0.401661 3.98249) (-9.48857e-16 0.125089 2.54114) (-1.45947e-15 0.154124 2.39058) (-7.84175e-16 0.0934914 2.3569) (-6.69984e-16 -0.00745209 2.50914) (-1.69896e-15 -0.0460337 2.55347) (-4.68785e-15 -0.0120493 2.35196) (-6.35905e-15 0.0664154 2.03358) (-6.08632e-15 0.135289 1.67943) (-3.34581e-15 0.14111 1.15538) (-5.53825e-15 0.279609 0.606506) (-8.01468e-15 0.619125 0.371434) (-4.38699e-15 0.799016 -0.102667) (-2.06864e-15 0.882026 -0.850959) (-3.20056e-15 1.02982 -1.70782) (-3.28077e-15 1.42147 -2.56043) (-4.26979e-15 1.89137 -3.54709) (-4.05309e-15 2.19244 -4.36442) (-2.95645e-15 2.09413 -4.70144) (-1.94424e-16 1.51224 -4.48055) (8.64128e-16 0.80062 -3.98321) (7.82165e-16 0.337006 -3.77314) (4.9934e-16 -0.101609 -3.71673) (8.62848e-16 -0.781981 -3.37158) (6.74602e-16 -1.3778 -2.96688) (-2.64102e-16 -1.84334 -2.55598) (-6.51561e-16 -2.25351 -2.0648) (4.07616e-16 -2.57376 -1.57512) (-5.85831e-16 -2.82434 -1.08361) (6.68248e-15 -2.97388 -0.600138) (-2.71087e-15 -3.04457 -0.135462) (-6.23975e-15 -3.03666 0.337746) (-6.56154e-15 -2.97535 0.787466) (2.01798e-15 -2.88678 1.24474) (-6.38872e-16 -2.79813 1.70885) (2.96558e-15 -2.73113 2.15946) (1.15101e-15 -2.67062 2.56497) (-2.13599e-16 -2.58811 2.88902) (-6.92411e-16 -2.45567 3.11567) (-1.25504e-15 -2.27127 3.24772) (-1.69499e-15 -2.05313 3.31404) (-4.45546e-16 -1.82082 3.34258) (1.55466e-16 -1.59475 3.34835) (-4.44686e-17 -1.37622 3.34629) (2.10615e-16 -1.16854 3.3437) (6.22566e-15 -0.96958 3.33861) (-5.59838e-16 -0.793272 3.33586) (-2.36985e-16 -0.648057 3.34495) (7.05468e-16 -0.537973 3.37063) (1.48346e-15 -0.457482 3.41993) (2.4072e-16 -0.38739 3.48026) (2.50251e-16 -0.321313 3.54776) (-1.54469e-16 -0.25707 3.61975) (-4.56202e-16 -0.194935 3.68917) (4.42162e-18 -0.130615 3.75416) (4.87105e-15 -0.0610654 3.80781) (-2.83755e-15 0.00909334 3.84473) (-1.70761e-15 0.0652326 3.86562) (-5.32641e-17 0.0979111 3.8776) (1.08824e-15 0.114143 3.88604) (1.87887e-16 0.116031 3.88894) (-2.90493e-16 0.110448 3.872) (-3.40353e-16 0.101711 3.83741) (-5.05996e-16 0.102022 3.79107) (-8.20592e-16 0.123172 3.7373) (-1.09514e-15 0.167826 3.67441) (-9.25521e-16 0.230257 3.60503) (-1.70071e-15 0.286123 3.53887) (-1.34732e-15 0.31721 3.47878) (-1.35409e-15 0.31452 3.43606) (-2.88405e-15 0.280529 3.41632) (-4.34794e-15 0.221509 3.41708) (-2.4941e-15 0.153075 3.4318) (-1.9953e-15 0.100717 3.44281) (-1.67084e-15 0.0863944 3.42703) (-4.46837e-16 0.116732 3.35534) (1.7382e-15 0.181674 3.23106) (-5.40483e-15 0.25277 3.09878) (-3.52006e-15 0.288754 3.0255) (-2.45164e-15 0.263879 3.05605) (-2.33317e-15 0.184909 3.18718) (-1.56367e-15 0.0768613 3.37783) (-9.32859e-16 -0.0333082 3.57976) (-1.64047e-16 -0.128478 3.76037) (4.6311e-16 -0.201909 3.90628) (6.14183e-16 -0.253412 4.01517) (7.89774e-16 -0.286478 4.09105) (-8.56687e-16 -0.30527 4.13952) (1.3116e-15 -0.314754 4.16756) (3.77795e-16 -0.319017 4.18126) (5.22998e-16 -0.321851 4.18614) (4.47559e-16 -0.325173 4.18561) (2.79494e-16 -0.329239 4.18115) (-6.53044e-16 -0.332763 4.17214) (-1.02437e-15 -0.33401 4.15736) (-7.56355e-16 -0.332236 4.1349) (-1.14514e-15 -0.329674 4.10673) (-1.68821e-15 -0.327959 4.07244) (-8.06072e-16 -0.340321 4.0433) (-2.56383e-16 -0.357529 4.01966) (-8.36875e-17 -0.392561 3.99066) (-1.05639e-15 0.125042 2.45721) (-1.94886e-15 0.15073 2.31225) (-1.12416e-15 0.0806169 2.30811) (-7.13626e-16 -0.0244162 2.47055) (-2.71692e-15 -0.053513 2.50435) (-4.99664e-15 -0.00378293 2.29731) (-6.49238e-15 0.088459 1.97575) (-5.94112e-15 0.165287 1.62262) (-4.17732e-15 0.162215 1.09674) (-4.41952e-15 0.27968 0.460368) (-7.52435e-15 0.640224 0.214296) (-4.32599e-15 0.838896 -0.273361) (-2.12908e-15 0.948007 -0.984833) (-3.12093e-15 1.12587 -1.8076) (-3.57524e-15 1.53004 -2.70479) (-4.37843e-15 1.994 -3.68292) (-4.11978e-15 2.25811 -4.43572) (-2.4661e-15 2.09759 -4.69439) (3.69185e-16 1.46375 -4.41404) (1.00974e-15 0.753454 -3.92346) (2.1136e-16 0.315107 -3.75568) (-2.83376e-16 -0.12087 -3.6987) (-3.52262e-16 -0.836068 -3.33784) (-4.70449e-16 -1.43598 -2.94718) (3.17095e-16 -1.91392 -2.54321) (-3.02072e-16 -2.33332 -2.05898) (-2.49121e-15 -2.65918 -1.57258) (-1.62669e-15 -2.91047 -1.08256) (5.70285e-15 -3.06066 -0.598123) (-4.36743e-15 -3.13011 -0.132177) (1.32906e-16 -3.12211 0.342915) (-1.60064e-16 -3.06108 0.79423) (4.02839e-15 -2.97415 1.2529) (8.71023e-15 -2.88715 1.71561) (-7.88568e-16 -2.8167 2.15937) (-2.60335e-17 -2.74621 2.55179) (-7.71269e-16 -2.64798 2.85873) (-1.0027e-15 -2.49805 3.06778) (-2.34636e-16 -2.29907 3.18423) (-7.95106e-17 -2.07051 3.23917) (2.47357e-16 -1.83248 3.2604) (-4.24891e-15 -1.60372 3.2622) (5.64219e-16 -1.38369 3.25884) (-1.00336e-15 -1.17448 3.25702) (-6.55573e-16 -0.974726 3.25304) (-8.77492e-16 -0.798197 3.25078) (-2.35187e-16 -0.655802 3.26001) (-8.31813e-17 -0.550449 3.28496) (2.51379e-16 -0.474373 3.33323) (2.49819e-16 -0.408369 3.39303) (2.43508e-16 -0.345526 3.45937) (-7.66847e-16 -0.284164 3.53013) (-8.40996e-16 -0.222538 3.59879) (-1.0378e-15 -0.155941 3.66309) (-5.94999e-16 -0.08454 3.71694) (-7.56106e-15 -0.0126676 3.7549) (-6.20166e-16 0.0454232 3.77809) (6.36834e-16 0.083481 3.79467) (7.45492e-16 0.102799 3.8071) (1.07137e-15 0.1063 3.81184) (2.15844e-17 0.104092 3.79496) (-1.25433e-15 0.101138 3.75875) (-2.2805e-15 0.105089 3.71188) (-1.72757e-15 0.129915 3.65875) (-1.9154e-15 0.176074 3.59785) (-2.17152e-15 0.239576 3.53357) (-3.74165e-15 0.293766 3.4787) (-2.58344e-15 0.322104 3.43478) (-3.90521e-15 0.314788 3.40854) (-1.6039e-15 0.275111 3.40363) (-2.38938e-15 0.212885 3.4208) (-4.18425e-15 0.147597 3.45065) (-2.03476e-15 0.104333 3.46331) (-5.15557e-16 0.104133 3.42808) (-1.03069e-15 0.149513 3.32699) (-2.8527e-15 0.22192 3.18188) (-3.80741e-15 0.281727 3.06351) (-1.75064e-15 0.288739 3.04039) (-1.73649e-15 0.23252 3.13311) (-2.28855e-15 0.132959 3.31084) (-7.45032e-16 0.0188455 3.52025) (-1.57947e-16 -0.086897 3.71787) (3.16633e-17 -0.172363 3.88135) (4.43299e-16 -0.234882 4.00573) (7.05782e-16 -0.276288 4.09358) (9.37467e-16 -0.301032 4.15127) (9.71478e-16 -0.31338 4.18529) (6.89247e-16 -0.318184 4.20264) (1.24408e-15 -0.319413 4.20899) (8.9494e-16 -0.320305 4.20896) (1.27742e-16 -0.322246 4.20492) (-3.88526e-16 -0.324831 4.1974) (-6.77636e-16 -0.326424 4.18511) (-1.15375e-15 -0.32524 4.16672) (-9.656e-16 -0.320923 4.14067) (-1.56105e-15 -0.316483 4.1098) (-1.05615e-15 -0.314541 4.07449) (-8.86357e-16 -0.328989 4.04708) (-5.07142e-16 -0.346967 4.02592) (-1.97299e-16 -0.383941 3.99778) (-1.13257e-15 0.123182 2.37293) (-2.0358e-15 0.144689 2.24504) (-2.72732e-15 0.0635483 2.26227) (-1.16439e-15 -0.0445169 2.42967) (-2.96143e-15 -0.0622492 2.46149) (-5.95056e-15 0.00330414 2.25644) (-6.72554e-15 0.106886 1.93469) (-5.79048e-15 0.19481 1.58077) (-4.4916e-15 0.186585 1.05447) (-5.06197e-15 0.290468 0.328085) (-8.35808e-15 0.658873 0.0644326) (-4.21302e-15 0.873104 -0.435391) (-2.1394e-15 1.00994 -1.10807) (-3.02745e-15 1.21934 -1.92394) (-3.78948e-15 1.63694 -2.85539) (-5.00352e-15 2.09075 -3.80782) (-3.65108e-15 2.31519 -4.49154) (-2.11863e-15 2.09341 -4.67365) (1.43019e-15 1.41319 -4.34094) (9.46212e-16 0.71025 -3.86448) (-2.17025e-16 0.284415 -3.73104) (-3.05165e-16 -0.175331 -3.66054) (9.71899e-19 -0.904049 -3.29726) (1.06276e-16 -1.49466 -2.92562) (2.9856e-16 -1.98386 -2.52778) (-1.01966e-16 -2.41263 -2.05124) (-1.14475e-15 -2.74399 -1.56847) (-1.51859e-15 -2.99731 -1.08008) (3.74467e-15 -3.14804 -0.595135) (-9.33983e-16 -3.21625 -0.128285) (9.77234e-16 -3.20802 0.348371) (-1.08704e-14 -3.14708 0.800801) (-6.15974e-15 -3.0617 1.26015) (2.74068e-15 -2.97553 1.7205) (-8.07976e-16 -2.90071 2.15639) (-1.81987e-15 -2.81908 2.53494) (2.71699e-15 -2.7046 2.82458) (-8.39519e-16 -2.53741 3.01629) (-3.41327e-16 -2.32433 3.11778) (-4.95753e-17 -2.086 3.16218) (3.67595e-16 -1.84292 3.17699) (4.25101e-16 -1.61223 3.17573) (6.3316e-16 -1.3915 3.17195) (-1.1856e-15 -1.18055 3.17126) (-9.69579e-16 -0.980802 3.1685) (-3.57791e-16 -0.805077 3.16592) (1.13501e-15 -0.665992 3.17298) (5.9096e-16 -0.56589 3.19393) (1.25381e-16 -0.49431 3.23735) (1.66703e-16 -0.433459 3.29319) (3.64857e-16 -0.375373 3.3558) (7.18448e-15 -0.317291 3.42335) (2.21613e-17 -0.255786 3.49055) (-6.53429e-15 -0.188279 3.55475) (-3.45101e-16 -0.113187 3.60792) (-5.0491e-16 -0.0397531 3.64599) (-3.77226e-16 0.0221099 3.67386) (6.80333e-16 0.065901 3.69853) (-4.3062e-17 0.0885966 3.71392) (2.9587e-16 0.0936844 3.71742) (-5.10559e-16 0.0942085 3.70201) (-3.00074e-15 0.0950092 3.67027) (-4.44165e-15 0.103919 3.62852) (-2.94252e-15 0.13216 3.58111) (-3.01233e-15 0.179939 3.52799) (-3.36186e-15 0.242905 3.47362) (-3.44185e-15 0.295575 3.42953) (-1.49757e-15 0.321396 3.3991) (-1.99086e-15 0.30977 3.38707) (1.69171e-16 0.265407 3.39788) (1.12012e-16 0.200501 3.43056) (-9.05855e-16 0.139276 3.47124) (-2.58149e-15 0.109392 3.47958) (-2.84009e-15 0.127588 3.41521) (-2.34314e-15 0.187135 3.28255) (-3.7979e-16 0.259638 3.13192) (-4.613e-15 0.296951 3.05235) (-3.21092e-15 0.270434 3.09446) (-2.48921e-15 0.187153 3.24598) (-1.9827e-15 0.0750197 3.4549) (-1.0379e-15 -0.0380944 3.66677) (3.56295e-18 -0.135221 3.84885) (3.95363e-16 -0.209512 3.98954) (5.95701e-16 -0.261375 4.0907) (6.13453e-17 -0.29374 4.1581) (4.8125e-16 -0.311331 4.19933) (7.21144e-16 -0.318415 4.22106) (3.28474e-16 -0.319579 4.22978) (-2.38919e-15 -0.318561 4.23041) (-3.3037e-16 -0.318022 4.22655) (-6.46192e-16 -0.318719 4.21956) (-9.84229e-16 -0.3198 4.20913) (-1.51641e-15 -0.319342 4.1936) (-1.66927e-15 -0.315655 4.17174) (-1.03247e-15 -0.308959 4.14254) (-9.74415e-16 -0.303157 4.10976) (-1.09251e-15 -0.301762 4.07453) (-7.36303e-16 -0.318865 4.04967) (-4.43972e-17 -0.337196 4.03081) (-1.22286e-16 -0.375815 4.00227) (-1.37726e-15 0.122619 2.29514) (-1.30874e-15 0.139088 2.17734) (-1.07809e-15 0.0464141 2.21218) (-3.76136e-16 -0.0624976 2.3882) (-2.79061e-15 -0.0682485 2.42153) (-7.49849e-15 0.0142951 2.21768) (-7.08118e-15 0.13027 1.88888) (-6.66262e-15 0.224329 1.5225) (-4.64756e-15 0.212636 1.00249) (4.76486e-16 0.317051 0.203642) (-1.43143e-14 0.681066 -0.0830418) (-4.09924e-15 0.911617 -0.590761) (-2.06255e-15 1.0762 -1.22579) (-3.19771e-15 1.31595 -2.05407) (-4.06301e-15 1.74399 -3.00556) (-5.98242e-15 2.18281 -3.91977) (-2.95428e-15 2.36502 -4.53233) (-1.46835e-15 2.08291 -4.64039) (3.60505e-16 1.36121 -4.26195) (5.61751e-16 0.671745 -3.80754) (-4.78069e-16 0.268511 -3.71054) (-2.36629e-16 -0.187936 -3.63314) (-2.05728e-17 -0.953444 -3.26011) (-2.60204e-17 -1.54769 -2.90172) (2.24894e-16 -2.05071 -2.50948) (1.0203e-16 -2.49022 -2.04129) (-7.82013e-16 -2.82733 -1.56257) (-1.99366e-15 -3.08399 -1.07613) (1.99937e-15 -3.23537 -0.590951) (-1.43065e-15 -3.30193 -0.123644) (1.27044e-15 -3.2938 0.354257) (-1.3277e-14 -3.23317 0.807381) (-9.44775e-15 -3.14918 1.26663) (-1.21356e-15 -3.06301 1.72363) (-3.42056e-16 -2.98295 2.15074) (-6.15376e-17 -2.88918 2.51477) (-4.01431e-16 -2.75811 2.78699) (-7.04702e-16 -2.574 2.96175) (-1.20128e-15 -2.34751 3.04899) (-1.20159e-15 -2.10022 3.08378) (3.75625e-16 -1.85288 3.09304) (2.309e-16 -1.62081 3.08949) (1.55236e-16 -1.39941 3.0862) (-6.31209e-16 -1.18639 3.08711) (-3.87674e-16 -0.985901 3.08529) (-3.61334e-16 -0.810532 3.08094) (9.82308e-16 -0.674423 3.08272) (3.63726e-16 -0.579443 3.09542) (8.2106e-16 -0.513084 3.12972) (2.73516e-16 -0.457392 3.17824) (2.96898e-16 -0.404994 3.23531) (1.35084e-15 -0.350806 3.2986) (3.55212e-16 -0.290045 3.36367) (2.18936e-16 -0.22137 3.42787) (-4.59453e-16 -0.142737 3.48061) (-1.76547e-16 -0.0671279 3.51848) (-1.36019e-15 -0.00316502 3.55057) (2.10731e-15 0.0402405 3.5846) (8.51007e-15 0.0667773 3.60546) (3.40609e-15 0.0768474 3.61045) (-3.69554e-15 0.0826316 3.60122) (-2.48024e-15 0.0879008 3.58057) (-1.50489e-15 0.102434 3.54887) (4.78961e-15 0.134764 3.50908) (-5.36372e-15 0.185466 3.46313) (-2.41551e-15 0.246273 3.41698) (-1.71903e-15 0.296038 3.38053) (-4.57204e-16 0.317034 3.36014) (5.95978e-15 0.299634 3.36156) (-2.09604e-15 0.250657 3.39326) (-6.68298e-16 0.185796 3.44583) (-3.15748e-16 0.1326 3.48813) (-2.81764e-15 0.119618 3.4759) (-3.00987e-15 0.157405 3.37674) (-2.58349e-15 0.227657 3.21833) (-3.4954e-15 0.2886 3.0885) (-3.05933e-15 0.29398 3.07267) (-2.29393e-15 0.234718 3.18581) (-1.48849e-15 0.132148 3.38393) (-9.52149e-16 0.0160727 3.60584) (-2.67456e-16 -0.0904916 3.80604) (-1.16508e-16 -0.176766 3.96492) (-1.57068e-15 -0.239772 4.08019) (3.16551e-16 -0.281916 4.15852) (-2.52902e-16 -0.306541 4.20746) (3.71559e-16 -0.318251 4.23478) (2.62051e-16 -0.32119 4.24669) (1.10801e-16 -0.319656 4.24886) (-9.68345e-16 -0.317006 4.24525) (-1.41676e-15 -0.31533 4.23841) (-1.14267e-15 -0.314839 4.22882) (-1.62475e-15 -0.314351 4.21557) (-1.9309e-15 -0.311718 4.19688) (-2.70652e-15 -0.305536 4.17176) (-1.28475e-15 -0.296776 4.13993) (-1.11103e-15 -0.290254 4.10609) (-8.12816e-16 -0.290148 4.07191) (-4.87465e-16 -0.310163 4.05003) (-2.51672e-16 -0.328093 4.03261) (-1.10183e-16 -0.368238 4.00262) (-1.0822e-15 0.12099 2.22107) (1.79295e-16 0.130106 2.11088) (2.82544e-16 0.0258584 2.1651) (5.10255e-16 -0.0814337 2.35778) (-3.71253e-15 -0.0751382 2.38856) (-7.89763e-15 0.0219107 2.1791) (-7.39658e-15 0.145236 1.84492) (-5.70599e-15 0.250957 1.46864) (1.36883e-14 0.237328 0.942342) (7.19878e-16 0.341325 0.087846) (-7.51305e-15 0.705096 -0.224215) (-3.86201e-15 0.948657 -0.731687) (-2.03446e-15 1.13971 -1.3448) (-3.59729e-15 1.4104 -2.19898) (-4.3277e-15 1.84731 -3.15304) (-3.92321e-15 2.26797 -4.01874) (-4.57965e-15 2.40657 -4.55911) (-1.09832e-15 2.06609 -4.59627) (1.06521e-15 1.30934 -4.17975) (4.82854e-16 0.637484 -3.75431) (-6.04902e-16 0.23914 -3.68372) (-1.60795e-16 -0.242514 -3.58606) (-6.27292e-17 -1.01292 -3.21869) (-1.34136e-16 -1.60131 -2.87596) (1.53939e-16 -2.11694 -2.48926) (7.53476e-17 -2.56725 -2.02961) (-1.24936e-15 -2.9108 -1.55527) (-1.10359e-15 -3.17087 -1.07113) (4.07081e-15 -3.32289 -0.585835) (-2.08428e-15 -3.3877 -0.118493) (8.60534e-16 -3.3797 0.360204) (2.2129e-15 -3.31952 0.813617) (-2.38277e-15 -3.23662 1.2721) (-4.69479e-16 -3.14957 1.72485) (-5.90019e-16 -3.06317 2.14231) (-3.26229e-16 -2.95647 2.49128) (-6.16756e-16 -2.80849 2.74604) (-8.73424e-16 -2.60773 2.90426) (-7.73035e-16 -2.36857 2.9781) (-6.74504e-16 -2.11307 3.0042) (-3.40565e-15 -1.86253 3.00886) (1.37405e-17 -1.62975 3.00397) (-4.03283e-16 -1.40802 3.00196) (2.73441e-16 -1.1934 3.00454) (9.47474e-16 -0.992301 3.00257) (4.53079e-16 -0.817383 2.99331) (1.19527e-15 -0.684472 2.98478) (1.06256e-15 -0.595687 2.98406) (6.88177e-16 -0.536113 3.00565) (4.50774e-16 -0.486638 3.04447) (2.98199e-16 -0.440484 3.09494) (2.064e-16 -0.390273 3.15376) (3.81855e-16 -0.331445 3.21654) (-8.86289e-16 -0.260881 3.27978) (-1.02604e-15 -0.179805 3.33298) (-4.59548e-16 -0.100924 3.37268) (6.57226e-15 -0.039627 3.408) (-1.79071e-15 0.00168495 3.44882) (-1.71433e-15 0.034344 3.47864) (-1.01089e-15 0.0535991 3.49256) (-2.40106e-15 0.0656898 3.49414) (-2.95516e-15 0.0759035 3.48499) (-1.0971e-15 0.0947456 3.46239) (5.06437e-16 0.131939 3.42841) (1.2773e-15 0.185516 3.3869) (-2.49074e-15 0.243851 3.34747) (-2.46255e-15 0.289735 3.31843) (2.2718e-15 0.305307 3.31027) (1.7328e-15 0.281765 3.33089) (3.49168e-16 0.227879 3.38712) (3.61093e-16 0.166699 3.46085) (-1.12069e-15 0.128389 3.49766) (-2.45205e-15 0.137402 3.4455) (-2.7158e-15 0.193376 3.30862) (-2.92378e-15 0.264827 3.14712) (-3.30499e-15 0.300511 3.07077) (-2.86235e-15 0.270247 3.13395) (1.43564e-15 0.184544 3.31018) (-6.92379e-16 0.0721528 3.5351) (-4.76689e-16 -0.0403984 3.7519) (-4.70831e-16 -0.136758 3.92963) (5.01373e-17 -0.211467 4.06112) (7.88424e-16 -0.264042 4.15098) (1.84282e-15 -0.297725 4.20854) (-9.1519e-16 -0.315908 4.24184) (2.81206e-16 -0.322937 4.25806) (-6.67566e-18 -0.322692 4.26254) (-2.8937e-16 -0.319197 4.25992) (9.62603e-16 -0.315286 4.25312) (-1.4333e-15 -0.312599 4.24379) (-1.11794e-15 -0.310897 4.23168) (-1.29069e-15 -0.308719 4.21557) (-2.59663e-15 -0.303835 4.19373) (-1.42832e-15 -0.295269 4.16562) (-1.24706e-15 -0.284878 4.13176) (-1.21536e-15 -0.278338 4.09774) (-6.66719e-16 -0.280151 4.06537) (-3.51057e-16 -0.303043 4.04635) (6.30604e-17 -0.319555 4.02908) (-1.88127e-17 -0.36143 3.99714) (-1.31536e-15 0.120149 2.14125) (-3.94134e-15 0.120376 2.03597) (-6.11923e-17 0.00528334 2.11453) (-2.79355e-16 -0.0976245 2.33004) (-3.55118e-15 -0.0789643 2.35375) (-5.73156e-15 0.0320363 2.13058) (-7.06155e-15 0.17019 1.78388) (-5.39595e-15 0.279351 1.37849) (-4.049e-15 0.252828 0.851004) (2.96061e-15 0.370697 -0.0247173) (-6.90963e-15 0.731759 -0.360292) (-3.57921e-15 0.989269 -0.860418) (-2.2286e-15 1.20734 -1.47051) (-4.14278e-15 1.5067 -2.35206) (-4.71671e-15 1.94825 -3.29314) (-4.21843e-15 2.34733 -4.10363) (-3.77094e-15 2.44111 -4.57224) (-1.11374e-15 2.04397 -4.54234) (8.2351e-16 1.25745 -4.09551) (3.56986e-16 0.607856 -3.70587) (-6.37107e-16 0.226833 -3.6621) (-7.96239e-17 -0.248049 -3.55342) (-3.93598e-17 -1.05905 -3.18106) (-1.71842e-16 -1.64984 -2.849) (9.72211e-17 -2.18036 -2.4669) (8.25257e-17 -2.64266 -2.01621) (-1.10651e-15 -2.99346 -1.54636) (-8.41211e-16 -3.25711 -1.06482) (3.00423e-15 -3.40975 -0.579642) (-1.31677e-15 -3.47337 -0.112559) (9.00509e-16 -3.46538 0.366443) (2.62096e-16 -3.40586 0.819728) (-7.30697e-16 -3.32368 1.27672) (-1.8302e-16 -3.23494 1.72435) (-5.01177e-16 -3.14119 2.13135) (-6.31433e-16 -3.02091 2.46484) (-7.41484e-16 -2.85595 2.70226) (-7.99756e-16 -2.63888 2.84445) (-5.66112e-16 -2.38796 2.90579) (-5.24907e-16 -2.12486 2.92412) (-3.25236e-16 -1.87206 2.92511) (-1.69047e-16 -1.63903 2.91974) (-1.96983e-16 -1.41678 2.9197) (-2.79869e-16 -1.2006 2.92387) (9.46338e-16 -0.997197 2.91972) (7.34302e-16 -0.821472 2.90142) (-2.67729e-16 -0.691038 2.87686) (3.29202e-16 -0.609113 2.85781) (2.12052e-16 -0.557562 2.86418) (2.02824e-16 -0.515577 2.89273) (2.33521e-16 -0.475718 2.93678) (1.27371e-16 -0.429931 2.99145) (8.07136e-16 -0.373009 3.05164) (5.63322e-15 -0.3025 3.1131) (-2.09522e-15 -0.220165 3.16576) (-1.08529e-16 -0.14184 3.20941) (-7.95427e-16 -0.0831793 3.25119) (-1.22391e-15 -0.0403834 3.29763) (-1.80376e-15 -0.00265476 3.33458) (-2.09747e-15 0.0244917 3.35839) (-9.69996e-16 0.0425684 3.36906) (-1.22756e-15 0.059259 3.36595) (-6.40692e-15 0.0825518 3.34847) (3.69107e-15 0.123866 3.31949) (-5.0249e-16 0.179373 3.28452) (1.61079e-15 0.235966 3.25599) (2.56978e-15 0.276632 3.23927) (-5.95939e-15 0.285808 3.24938) (-1.56695e-16 0.256157 3.30009) (-1.0598e-15 0.199515 3.38624) (-3.03534e-15 0.146905 3.46811) (-2.12057e-15 0.129611 3.48265) (-3.16552e-15 0.161756 3.3868) (-2.16132e-15 0.229738 3.22021) (-2.1434e-15 0.288771 3.088) (-1.89731e-15 0.290241 3.09106) (-9.36461e-16 0.227741 3.2339) (-2.29922e-16 0.125469 3.45483) (-1.39307e-16 0.0124594 3.68495) (-3.742e-16 -0.0912381 3.88193) (4.72456e-17 -0.175799 4.03068) (6.38775e-16 -0.23943 4.13395) (7.93398e-16 -0.283045 4.20056) (2.15566e-15 -0.309816 4.24063) (-7.53777e-16 -0.322916 4.2616) (-4.13797e-16 -0.326342 4.26955) (-2.44019e-16 -0.323717 4.2687) (-5.41034e-16 -0.318758 4.26261) (1.1345e-15 -0.313774 4.25328) (-1.11529e-15 -0.310101 4.24161) (-1.11254e-15 -0.307114 4.2269) (-7.75991e-16 -0.303141 4.20783) (-1.17363e-16 -0.296008 4.1829) (-1.54858e-15 -0.285294 4.15212) (-9.16114e-16 -0.273812 4.1169) (-3.2452e-16 -0.267956 4.08347) (-8.33704e-16 -0.272106 4.05329) (-2.98845e-16 -0.297483 4.03662) (-6.95407e-17 -0.311551 4.01816) (3.86951e-17 -0.355688 3.98442) (-1.07398e-15 0.11759 2.06173) (-8.14602e-16 0.10797 1.96559) (-4.39007e-16 -0.017896 2.07379) (-4.4428e-15 -0.11539 2.30773) (-3.92855e-15 -0.0841867 2.31758) (-7.05387e-15 0.0375658 2.07686) (-7.57545e-15 0.187283 1.7179) (-7.75341e-15 0.295817 1.29776) (-4.90889e-15 0.269406 0.773332) (3.7285e-15 0.403683 -0.136197) (-3.41626e-15 0.758569 -0.4867) (-3.24357e-15 1.0293 -0.979994) (-2.61428e-15 1.27417 -1.60759) (-4.56029e-15 1.6005 -2.51075) (-4.78323e-15 2.0437 -3.42453) (-4.36016e-15 2.4189 -4.17502) (-3.81971e-15 2.46791 -4.57316) (-9.04811e-16 2.01639 -4.48056) (8.85541e-16 1.20649 -4.01211) (1.898e-16 0.581766 -3.66228) (-5.67112e-16 0.198348 -3.63222) (4.22131e-17 -0.303104 -3.50075) (5.5555e-17 -1.11372 -3.13917) (-2.13158e-16 -1.69947 -2.8203) (2.62917e-17 -2.24371 -2.44296) (1.94062e-16 -2.71761 -2.0014) (-8.75246e-16 -3.07593 -1.53629) (-1.39005e-15 -3.34353 -1.05753) (1.81726e-15 -3.49648 -0.572709) (-1.14628e-15 -3.55933 -0.106188) (9.53432e-16 -3.55111 0.372661) (8.86457e-16 -3.49225 0.825361) (-5.37399e-16 -3.41043 1.28028) (-9.89919e-17 -3.31907 1.72198) (5.2062e-16 -3.21688 2.11776) (-5.19987e-16 -3.08243 2.43543) (-7.21329e-16 -2.9005 2.65571) (-6.59644e-16 -2.66744 2.78241) (-4.65377e-16 -2.40555 2.83228) (-5.68832e-16 -2.13561 2.8438) (-4.51401e-18 -1.88144 2.84201) (-2.58055e-18 -1.64885 2.83724) (2.4842e-16 -1.42608 2.83945) (6.23153e-16 -1.20862 2.84421) (9.24143e-16 -1.00205 2.83442) (7.93434e-16 -0.825257 2.80126) (3.1299e-16 -0.697999 2.75439) (2.47624e-16 -0.624335 2.71317) (3.02311e-16 -0.582598 2.70421) (2.27624e-16 -0.549071 2.72391) (1.60542e-16 -0.515942 2.76276) (-6.85536e-17 -0.474803 2.81413) (-3.8187e-16 -0.419625 2.8715) (-2.9431e-17 -0.350371 2.93038) (-6.24889e-16 -0.268149 2.98178) (8.05626e-17 -0.191034 3.03054) (6.59416e-15 -0.131461 3.08296) (-2.07475e-15 -0.0855229 3.13807) (-3.94938e-15 -0.0453701 3.18069) (-1.26965e-15 -0.0135802 3.21007) (7.32491e-16 0.0106007 3.22596) (-1.21068e-15 0.0340724 3.22719) (-1.10401e-15 0.0618138 3.21654) (-1.50326e-15 0.105967 3.19665) (-5.62739e-16 0.163725 3.17353) (1.1119e-15 0.219654 3.15899) (1.68956e-15 0.255529 3.15887) (-2.78888e-15 0.256567 3.19305) (-6.06973e-16 0.220686 3.28061) (-1.72395e-15 0.167363 3.39698) (1.12361e-15 0.130557 3.46867) (6.74227e-16 0.138293 3.43173) (-6.12611e-15 0.192298 3.28871) (1.58591e-15 0.262261 3.11869) (2.52925e-17 0.292943 3.05683) (-6.42937e-16 0.25726 3.15497) (-5.8209e-17 0.170974 3.36418) (2.23687e-16 0.0630847 3.60511) (1.89262e-16 -0.0432337 3.82071) (-1.12789e-16 -0.135263 3.98794) (3.70151e-16 -0.208212 4.10549) (5.19924e-16 -0.262159 4.18255) (7.92395e-17 -0.298455 4.2296) (-5.60807e-16 -0.319724 4.25601) (2.12849e-15 -0.328818 4.26788) (-2.16372e-15 -0.329409 4.26992) (-6.24785e-16 -0.324946 4.2652) (-1.25528e-15 -0.318758 4.25633) (-3.43668e-15 -0.312787 4.24456) (-4.05663e-16 -0.308113 4.2303) (-1.11932e-15 -0.303799 4.21268) (-1.37523e-15 -0.297981 4.19046) (-1.35521e-15 -0.288679 4.16252) (-1.24513e-15 -0.276167 4.12948) (-1.78138e-15 -0.264216 4.09359) (-2.33445e-16 -0.259681 4.06137) (-4.60138e-16 -0.266354 4.03348) (-3.4599e-16 -0.293592 4.01842) (4.7802e-17 -0.30427 3.99773) (1.22807e-16 -0.351489 3.96298) (-9.81613e-16 0.114386 1.96951) (-4.47244e-16 0.0953952 1.89668) (-4.00796e-16 -0.0399941 2.04228) (-2.68695e-15 -0.130978 2.28261) (-5.461e-15 -0.0872479 2.27021) (-7.93235e-15 0.0474656 2.00936) (-7.78326e-15 0.212339 1.62192) (4.86976e-15 0.323498 1.1349) (1.95199e-15 0.279518 0.665713) (-5.49358e-15 0.438321 -0.252414) (-4.45126e-15 0.789122 -0.602552) (-2.98967e-15 1.07406 -1.09774) (-3.08583e-15 1.34444 -1.75555) (-4.92701e-15 1.69449 -2.66893) (-4.87565e-15 2.13523 -3.54472) (-4.43345e-15 2.48416 -4.23286) (-4.20765e-15 2.48832 -4.56266) (-5.98188e-16 1.98488 -4.41215) (8.07079e-16 1.15717 -3.93034) (-2.22851e-16 0.559063 -3.6226) (-1.4009e-15 0.188795 -3.60407) (-4.39155e-16 -0.30195 -3.46293) (1.07852e-16 -1.15805 -3.09984) (-2.65877e-16 -1.7438 -2.79086) (-5.96176e-17 -2.30388 -2.4178) (2.65095e-16 -2.79045 -1.98531) (-7.24142e-16 -3.15687 -1.525) (-1.44347e-15 -3.42887 -1.04909) (2.57345e-15 -3.58221 -0.564846) (-1.1587e-15 -3.64472 -0.0991996) (9.60198e-16 -3.63643 0.379103) (-1.63556e-15 -3.5782 0.830725) (-3.26798e-16 -3.4965 1.28297) (-2.50277e-16 -3.4016 1.71795) (3.5372e-16 -3.29006 2.10185) (-4.79893e-16 -3.14103 2.40345) (-7.25074e-16 -2.9422 2.60695) (-5.99941e-16 -2.6938 2.71887) (-4.05133e-16 -2.42171 2.75828) (-7.26749e-16 -2.14557 2.76401) (1.08853e-15 -1.89054 2.7603) (2.89609e-16 -1.65897 2.75694) (4.70325e-16 -1.43527 2.76128) (1.15067e-15 -1.21457 2.76468) (9.75528e-16 -1.00328 2.745) (4.08549e-16 -0.823934 2.69085) (4.55069e-16 -0.70052 2.61667) (1.95443e-16 -0.635947 2.55186) (1.70001e-16 -0.605176 2.5299) (2.25529e-16 -0.581196 2.54411) (1.17424e-17 -0.554941 2.57999) (-4.43396e-16 -0.519063 2.62909) (-8.14379e-16 -0.465874 2.68375) (-9.29664e-16 -0.39821 2.73999) (-1.04778e-15 -0.315724 2.79108) (-5.81733e-16 -0.238602 2.84626) (-6.64728e-16 -0.176788 2.90916) (-3.52651e-17 -0.128247 2.97197) (-3.64441e-15 -0.0871246 3.01927) (-1.10273e-14 -0.0530405 3.05332) (1.02859e-15 -0.023696 3.07527) (-2.37911e-15 0.00548695 3.08328) (-2.46615e-15 0.0389189 3.08208) (-4.42116e-16 0.0855263 3.07417) (9.0061e-16 0.144805 3.06374) (1.80146e-15 0.198881 3.06281) (-2.56892e-15 0.229466 3.08509) (-3.63166e-15 0.220896 3.15454) (-1.65067e-15 0.178737 3.27989) (-6.6937e-16 0.134714 3.40491) (1.4722e-15 0.122778 3.43875) (5.28229e-18 0.157233 3.33515) (-4.44225e-15 0.223398 3.15319) (9.71761e-16 0.276744 3.02781) (-6.94152e-16 0.269602 3.07087) (-6.45587e-16 0.203775 3.26068) (-5.07557e-16 0.106428 3.51034) (-4.12955e-16 0.00291214 3.74545) (-2.51898e-16 -0.0920005 3.93146) (-1.49028e-16 -0.171811 4.06426) (7.76594e-16 -0.234606 4.15224) (2.96969e-16 -0.280821 4.20735) (-6.01179e-16 -0.311411 4.2394) (-7.63254e-16 -0.328415 4.25598) (-2.03963e-16 -0.33438 4.26147) (-6.08056e-16 -0.332768 4.25921) (-1.61953e-15 -0.326831 4.25131) (-1.5078e-15 -0.319533 4.23969) (-1.23526e-15 -0.312637 4.22509) (-1.73722e-15 -0.306966 4.20773) (-6.47674e-16 -0.301308 4.18683) (-1.46065e-15 -0.293661 4.16133) (-1.31253e-15 -0.28238 4.13057) (-7.78683e-16 -0.268523 4.09577) (-4.18797e-16 -0.256736 4.05988) (2.1839e-16 -0.254015 4.02938) (-2.96456e-16 -0.26313 4.00369) (2.61188e-17 -0.291428 3.98968) (2.16724e-16 -0.298026 3.96621) (1.02308e-16 -0.349344 3.93176) (-9.52633e-16 0.109794 1.89091) (-2.67387e-16 0.0792104 1.83608) (-5.21991e-16 -0.0647783 2.02105) (-2.949e-15 -0.148336 2.25408) (-6.2988e-15 -0.0924681 2.21468) (-8.58951e-15 0.0531304 1.93549) (-9.26198e-15 0.228291 1.52187) (-2.71367e-14 0.332261 1.00378) (-4.23877e-15 0.284496 0.568207) (7.9354e-15 0.47445 -0.366221) (-7.50233e-15 0.821123 -0.708367) (-2.64383e-15 1.11976 -1.21908) (-3.50185e-15 1.41427 -1.91326) (-5.07248e-15 1.78501 -2.82407) (-5.23061e-15 2.22039 -3.65348) (-3.92307e-15 2.54209 -4.27812) (-1.91283e-15 2.50177 -4.5419) (-1.73383e-16 1.94998 -4.33872) (1.22302e-15 1.1107 -3.85239) (2.66357e-16 0.539616 -3.5861) (1.48338e-15 0.157027 -3.56405) (9.64787e-15 -0.356413 -3.40433) (3.04425e-15 -1.2069 -3.05636) (-3.20191e-16 -1.78978 -2.75949) (-1.53976e-16 -2.36332 -2.39156) (2.90136e-16 -2.86241 -1.96809) (-5.81099e-16 -3.23725 -1.5128) (-1.48152e-15 -3.51376 -1.03988) (2.69886e-15 -3.66752 -0.556409) (-1.16319e-15 -3.72989 -0.0919791) (1.00189e-15 -3.72158 0.385433) (-2.33585e-15 -3.66387 0.835494) (-2.27073e-16 -3.58199 1.28458) (-3.15971e-16 -3.48242 1.7121) (9.75038e-16 -3.36079 2.08355) (-5.88602e-16 -3.19653 2.36887) (-7.17769e-16 -2.98079 2.55594) (-5.63829e-16 -2.7179 2.6539) (-3.53874e-16 -2.43644 2.68406) (-9.0379e-16 -2.15497 2.68506) (-2.39886e-15 -1.89994 2.68015) (3.38228e-16 -1.67014 2.67896) (6.04191e-16 -1.44537 2.68491) (7.99241e-16 -1.21994 2.68376) (6.76087e-16 -1.00272 2.64843) (2.08035e-16 -0.820585 2.56659) (4.0434e-16 -0.703201 2.46165) (1.2871e-16 -0.650184 2.37542) (2.68706e-16 -0.631853 2.34596) (9.61819e-17 -0.617723 2.35978) (-5.2538e-16 -0.597505 2.39538) (-1.03117e-15 -0.565476 2.44311) (-1.09357e-15 -0.514846 2.49559) (-9.35169e-16 -0.446939 2.55037) (-9.04037e-16 -0.364861 2.60382) (-6.03391e-16 -0.286957 2.66621) (-1.96968e-15 -0.224078 2.73713) (-5.63504e-16 -0.174971 2.80408) (1.4599e-15 -0.132092 2.85494) (-2.64321e-15 -0.0954243 2.89527) (-3.03609e-15 -0.0608999 2.92561) (3.2113e-15 -0.0262197 2.94189) (2.38397e-15 0.0130018 2.94953) (-9.70106e-17 0.061412 2.95307) (-2.99117e-15 0.120632 2.95428) (-2.27701e-15 0.171409 2.96855) (-1.52707e-15 0.194019 3.02226) (-2.24956e-15 0.175819 3.13882) (-8.2202e-16 0.133518 3.2901) (7.12801e-16 0.107034 3.38199) (1.25438e-16 0.123373 3.33859) (-9.24367e-16 0.179641 3.17218) (-1.33533e-15 0.243521 2.99572) (3.39087e-15 0.263306 2.97814) (-3.37229e-16 0.220104 3.14257) (-7.96434e-16 0.137459 3.39967) (-4.44316e-16 0.041546 3.65617) (-9.23213e-17 -0.0510843 3.86276) (-1.33386e-16 -0.133247 4.01029) (2.10982e-15 -0.202245 4.10906) (-3.9695e-16 -0.257034 4.17211) (-6.41226e-16 -0.297398 4.21071) (-2.47787e-15 -0.323526 4.23228) (-2.54321e-16 -0.337091 4.24213) (-1.91891e-15 -0.340443 4.24292) (-1.99332e-15 -0.336969 4.23695) (-9.15997e-16 -0.329686 4.22567) (-7.99537e-16 -0.321348 4.21061) (-8.94728e-16 -0.313614 4.19235) (7.21911e-17 -0.307018 4.1712) (-8.40668e-16 -0.300087 4.14662) (-1.03149e-15 -0.290753 4.11782) (-7.29035e-16 -0.277801 4.08454) (-4.82239e-16 -0.263125 4.04861) (-1.46522e-15 -0.252112 4.01347) (-1.12828e-16 -0.251535 3.98518) (-2.60257e-16 -0.262805 3.96172) (-4.08851e-17 -0.291308 3.94851) (1.54917e-16 -0.29333 3.92219) (1.71022e-16 -0.349894 3.88991) (-9.18952e-16 0.105836 1.80564) (-1.66979e-16 0.0606176 1.77553) (-7.89745e-16 -0.0900111 1.99665) (-3.66757e-15 -0.164181 2.2128) (-7.18962e-15 -0.0951494 2.15053) (-9.25358e-15 0.0663136 1.85342) (-1.03009e-14 0.257963 1.38559) (-1.08787e-14 0.350601 0.832784) (-8.74381e-15 0.290702 0.384927) (3.83382e-15 0.513782 -0.475948) (-4.12191e-15 0.85766 -0.808964) (-3.99388e-15 1.17086 -1.34897) (-4.07386e-15 1.48718 -2.07687) (-5.72512e-15 1.87367 -2.97195) (-5.47539e-15 2.30053 -3.7495) (-4.69404e-15 2.59397 -4.31082) (-1.86114e-15 2.50953 -4.51146) (1.16434e-16 1.91228 -4.26142) (9.86155e-16 1.06495 -3.77775) (2.40905e-16 0.522727 -3.55059) (-5.07015e-16 0.146817 -3.52619) (1.04978e-14 -0.347773 -3.36392) (3.76614e-15 -1.24587 -3.01565) (-5.04212e-16 -1.83147 -2.72798) (-2.29367e-16 -2.42006 -2.36451) (2.98277e-16 -2.93207 -1.94995) (-4.34763e-16 -3.31614 -1.49958) (-1.56684e-15 -3.59697 -1.02971) (2.37482e-15 -3.75171 -0.547176) (-1.17833e-15 -3.81427 -0.0842903) (1.04994e-15 -3.80618 0.391895) (-1.66589e-15 -3.74882 0.839882) (-3.30675e-17 -3.66652 1.28533) (-4.56109e-16 -3.56122 1.70469) (9.54874e-16 -3.42912 2.06324) (-6.28569e-16 -3.24889 2.33217) (-7.2035e-16 -3.01633 2.50327) (-5.42954e-16 -2.73995 2.58823) (-6.26874e-16 -2.44981 2.61035) (-8.94766e-16 -2.16393 2.60765) (-3.78729e-16 -1.90955 2.60216) (8.35661e-17 -1.68139 2.60332) (-3.91073e-16 -1.45477 2.6097) (2.28255e-16 -1.22292 2.60048) (4.58139e-16 -0.997167 2.54371) (3.53816e-16 -0.810747 2.42857) (-3.31634e-16 -0.700371 2.2923) (-8.65342e-17 -0.661914 2.1909) (2.77465e-16 -0.657225 2.1624) (-3.9151e-16 -0.652557 2.18204) (-1.17514e-15 -0.637769 2.22081) (-1.20699e-15 -0.608381 2.26813) (-8.73065e-16 -0.559323 2.31925) (-6.70123e-16 -0.49013 2.37373) (-6.05925e-16 -0.411229 2.43095) (-3.30708e-16 -0.335667 2.49961) (-1.02151e-15 -0.275188 2.57407) (-7.5338e-15 -0.226079 2.64175) (1.34393e-15 -0.179231 2.69507) (4.62652e-16 -0.137945 2.74075) (-1.0442e-15 -0.0985004 2.77756) (-6.78568e-16 -0.0591078 2.80045) (-7.46894e-16 -0.015521 2.81461) (-2.39623e-15 0.0348879 2.82682) (-9.75528e-15 0.0923155 2.84192) (1.19709e-16 0.137095 2.88053) (-1.88222e-15 0.148387 2.97683) (-1.34079e-15 0.123225 3.13347) (-5.41394e-16 0.0904806 3.27216) (6.71198e-16 0.0901073 3.28935) (-1.26766e-16 0.133342 3.15031) (-1.84851e-15 0.198475 2.95066) (-7.31055e-16 0.238015 2.87396) (-1.70824e-16 0.218067 3.01129) (-5.52934e-16 0.152332 3.27567) (-1.17143e-15 0.0685629 3.55465) (9.45417e-17 -0.0168156 3.78301) (5.38498e-16 -0.0962859 3.94521) (-7.79454e-16 -0.167287 4.05258) (-6.41094e-16 -0.228088 4.12254) (-7.24399e-16 -0.277067 4.16747) (-7.87614e-16 -0.313016 4.19529) (-3.62097e-15 -0.335536 4.21014) (-1.62451e-15 -0.346161 4.2151) (-1.22145e-15 -0.347248 4.21164) (-9.1869e-16 -0.342135 4.20147) (-1.05589e-15 -0.333646 4.1858) (-9.14048e-16 -0.324466 4.16611) (-4.94574e-16 -0.31611 4.14316) (9.2116e-16 -0.308773 4.11758) (-8.83617e-17 -0.300751 4.08915) (-2.36942e-17 -0.289974 4.05727) (-2.89237e-16 -0.275727 4.02204) (-3.14784e-16 -0.260768 3.98581) (4.4388e-16 -0.251049 3.95233) (-4.00809e-16 -0.25275 3.92694) (1.19249e-16 -0.265692 3.90599) (8.04288e-16 -0.29352 3.89388) (1.14173e-16 -0.290714 3.8651) (2.88592e-17 -0.353786 3.8375) (-8.67062e-16 0.099475 1.72393) (-5.78065e-17 0.0381432 1.72695) (-1.17473e-15 -0.11875 1.97078) (-4.5467e-15 -0.181642 2.16486) (-8.1542e-15 -0.0984735 2.09048) (-9.96567e-15 0.0784904 1.78818) (-1.36295e-14 0.272695 1.2831) (-1.26948e-14 0.349383 0.815031) (-1.20952e-14 0.292978 0.272248) (-2.94298e-15 0.553162 -0.566882) (-6.91343e-15 0.894198 -0.909725) (-4.11272e-15 1.2225 -1.48851) (-4.83776e-15 1.55881 -2.243) (-6.32575e-15 1.95738 -3.11094) (-5.78154e-15 2.37395 -3.83305) (-4.63181e-15 2.63894 -4.33199) (-1.65206e-15 2.51137 -4.47279) (3.74252e-16 1.87191 -4.18199) (9.27221e-16 1.02181 -3.70758) (-5.72846e-16 0.504787 -3.51408) (-3.05989e-15 0.112682 -3.47909) (-7.0597e-16 -0.405351 -3.30506) (-3.02314e-16 -1.28804 -2.972) (-6.12839e-15 -1.87466 -2.6948) (-3.78689e-16 -2.47691 -2.3364) (2.9093e-16 -3.00096 -1.93079) (-2.82113e-16 -3.39488 -1.4855) (-1.49572e-15 -3.67932 -1.01888) (1.67387e-15 -3.83515 -0.537575) (-1.19501e-15 -3.89824 -0.0764967) (1.10703e-15 -3.89058 0.398197) (-1.73445e-15 -3.83343 0.84363) (7.79473e-17 -3.74977 1.28494) (-3.62851e-16 -3.63772 1.69547) (-7.71973e-16 -3.49527 2.04083) (-8.3328e-16 -3.29851 2.29347) (-6.2305e-16 -3.0491 2.44901) (-5.16914e-16 -2.7602 2.52201) (-7.23582e-16 -2.46215 2.53737) (-8.12005e-16 -2.17316 2.53193) (-3.07993e-16 -1.92033 2.52633) (2.58567e-16 -1.69354 2.52979) (5.41447e-16 -1.46417 2.53487) (1.0454e-16 -1.22461 2.5133) (8.74599e-16 -0.988794 2.4288) (5.66605e-16 -0.798747 2.27568) (6.3764e-16 -0.698486 2.11103) (-1.033e-16 -0.678039 2.00521) (-1.06936e-16 -0.687732 1.9887) (-1.10905e-15 -0.690075 2.02025) (-1.3146e-15 -0.678841 2.06433) (-5.92146e-16 -0.65179 2.11202) (-3.83244e-16 -0.602807 2.16197) (-4.16686e-16 -0.535287 2.21654) (-5.22931e-16 -0.459667 2.2762) (1.99593e-17 -0.39025 2.34784) (7.57643e-15 -0.331374 2.4215) (-8.48396e-15 -0.279963 2.48726) (1.77884e-15 -0.228419 2.54033) (-5.43071e-16 -0.181865 2.58696) (-5.00564e-15 -0.138841 2.62605) (1.31387e-16 -0.0962399 2.6535) (1.89138e-15 -0.049428 2.6745) (7.88922e-15 0.00283432 2.69616) (5.33955e-15 0.0563876 2.73132) (-2.31006e-15 0.0917756 2.8093) (-2.16962e-16 0.0918436 2.95073) (-4.98076e-16 0.0682974 3.10964) (-3.41017e-16 0.0562905 3.17613) (7.63763e-17 0.0849178 3.08729) (2.6139e-16 0.144918 2.89235) (-3.0627e-16 0.196337 2.76725) (-3.52926e-16 0.196601 2.87507) (-3.45094e-16 0.149116 3.14634) (-4.42493e-16 0.0796171 3.44684) (-1.12088e-15 0.00623955 3.69544) (-6.46727e-16 -0.0654514 3.87051) (-1.38239e-17 -0.133492 3.98424) (2.21082e-17 -0.196587 4.05801) (-5.93705e-16 -0.251955 4.10834) (-7.7747e-16 -0.296805 4.14271) (-2.6861e-15 -0.329114 4.1644) (-1.78205e-15 -0.348345 4.17455) (8.44478e-18 -0.356163 4.1748) (-1.0909e-15 -0.355089 4.16612) (1.74108e-15 -0.348424 4.15022) (-2.32533e-15 -0.338897 4.12848) (-2.32542e-16 -0.329169 4.1027) (-2.35647e-16 -0.320531 4.07409) (-1.17534e-15 -0.312783 4.04371) (-1.833e-16 -0.303964 4.01157) (-1.36598e-16 -0.292074 3.97718) (-3.45308e-16 -0.276985 3.94091) (-5.21109e-16 -0.262306 3.90558) (-3.36962e-16 -0.254321 3.87503) (1.04992e-17 -0.258245 3.85361) (3.37548e-16 -0.272209 3.83585) (2.13645e-16 -0.298491 3.82554) (3.93342e-16 -0.29078 3.795) (1.46842e-16 -0.361753 3.77542) (-8.02133e-16 0.091602 1.63373) (-3.45289e-17 0.0150493 1.68235) (-1.72412e-15 -0.14658 1.93743) (-5.47828e-15 -0.196376 2.11093) (-9.14665e-15 -0.0985223 2.0331) (-1.08225e-14 0.101539 1.72982) (-5.26666e-15 0.30796 1.14413) (-1.58411e-14 0.373018 0.69323) (-1.21193e-14 0.309321 0.134986) (-2.16655e-15 0.596109 -0.646401) (-3.91611e-15 0.93585 -1.01679) (-3.79745e-15 1.27804 -1.63745) (-5.68177e-15 1.63162 -2.40735) (-6.98707e-15 2.03758 -3.23859) (-5.81868e-15 2.44185 -3.9036) (-4.02241e-15 2.67812 -4.34196) (-1.76144e-15 2.50825 -4.42674) (5.17713e-16 1.82972 -4.1013) (1.24749e-15 0.981174 -3.64085) (-6.92169e-16 0.494021 -3.47782) (2.92503e-15 0.107011 -3.43861) (-1.84452e-15 -0.384931 -3.26871) (-9.02399e-16 -1.32338 -2.93099) (-2.84043e-16 -1.9123 -2.6623) (-5.60594e-16 -2.53107 -2.30801) (2.86509e-16 -3.06742 -1.91103) (-6.92185e-17 -3.47241 -1.47045) (-8.63912e-16 -3.76013 -1.00703) (1.97785e-15 -3.91722 -0.527364) (-1.20001e-15 -3.98139 -0.0683966) (1.1536e-15 -3.9745 0.40455) (-1.19014e-15 -3.91725 0.847034) (1.87454e-16 -3.83119 1.28371) (-1.21042e-15 -3.71203 1.68469) (-4.91105e-16 -3.55867 2.0165) (-8.37393e-16 -3.34572 2.25341) (-5.83044e-16 -3.08009 2.39407) (-5.73364e-16 -2.7791 2.45604) (3.22556e-15 -2.47381 2.4658) (-4.51538e-16 -2.18273 2.45845) (-8.66814e-17 -1.9316 2.45314) (-4.14311e-16 -1.70516 2.4584) (6.6237e-16 -1.47117 2.45979) (3.41348e-16 -1.22132 2.42126) (9.63225e-16 -0.973228 2.30346) (5.21247e-16 -0.77965 2.11075) (2.23744e-16 -0.693042 1.92653) (-6.22625e-16 -0.693283 1.83137) (-1.4934e-15 -0.716898 1.83834) (-1.54298e-15 -0.723883 1.88598) (-8.08843e-16 -0.713709 1.93499) (7.35484e-17 -0.688122 1.98186) (-1.75733e-16 -0.6406 2.02935) (-2.48538e-16 -0.577332 2.08271) (-1.41596e-16 -0.506006 2.14153) (-1.41735e-16 -0.44148 2.21101) (1.37732e-16 -0.383043 2.27892) (7.64888e-16 -0.330594 2.33797) (-4.24208e-15 -0.276913 2.38614) (-3.8506e-15 -0.226721 2.42936) (-6.5254e-16 -0.181259 2.46858) (5.40968e-15 -0.136376 2.5009) (-3.55606e-15 -0.086959 2.53127) (-2.84843e-15 -0.0339016 2.56849) (6.9674e-16 0.0130534 2.63357) (1.46217e-15 0.0370447 2.75764) (5.07139e-16 0.0318117 2.91713) (3.45883e-16 0.0209293 3.02009) (3.60836e-16 0.0359399 2.97979) (2.24278e-16 0.0871213 2.80803) (-5.3048e-16 0.14434 2.66306) (-1.11638e-15 0.160718 2.74294) (-1.33997e-15 0.128972 3.01958) (-9.11331e-16 0.0749428 3.3385) (-6.80113e-16 0.0153302 3.60282) (-8.2664e-16 -0.0441593 3.78657) (-8.26053e-16 -0.104573 3.90332) (-6.32526e-16 -0.165356 3.97828) (-9.6444e-16 -0.223931 4.03149) (-1.57389e-15 -0.275857 4.07262) (-5.64731e-16 -0.317292 4.10248) (-7.93676e-16 -0.346024 4.12033) (-9.06556e-16 -0.361839 4.12557) (-2.34213e-15 -0.366828 4.11953) (-3.29896e-16 -0.363684 4.10349) (-4.28606e-16 -0.355687 4.07964) (1.25882e-15 -0.345541 4.04991) (-6.99828e-16 -0.335771 4.01668) (-4.32322e-16 -0.327376 3.98185) (-1.32312e-15 -0.319714 3.94684) (-9.64244e-17 -0.310509 3.91172) (-2.66531e-16 -0.297903 3.87592) (-8.67842e-17 -0.282463 3.84008) (-3.13014e-16 -0.268589 3.80741) (-9.17936e-17 -0.262618 3.78159) (8.86216e-16 -0.268468 3.7656) (3.43315e-16 -0.282632 3.75206) (2.74019e-16 -0.306541 3.74469) (2.74296e-16 -0.2941 3.71343) (3.19591e-16 -0.374494 3.70612) (-6.8294e-16 0.0797958 1.54712) (-1.66413e-16 -0.0121249 1.64273) (-2.42253e-15 -0.174672 1.9087) (-6.23337e-15 -0.210177 2.06875) (-9.66825e-15 -0.09995 1.98909) (-1.3055e-14 0.118685 1.68458) (-1.32691e-14 0.322398 1.06599) (-3.17777e-14 0.3678 0.682468) (-1.18013e-14 0.32563 0.0657482) (-2.21185e-15 0.640443 -0.721591) (-3.86132e-15 0.978707 -1.13396) (-4.42588e-15 1.33389 -1.79334) (-6.40054e-15 1.70219 -2.56673) (-7.60217e-15 2.11246 -3.35442) (-5.78214e-15 2.50317 -3.96195) (-3.6218e-15 2.71079 -4.34209) (-1.18334e-15 2.50035 -4.37494) (8.75912e-16 1.78668 -4.02062) (5.10137e-16 0.945284 -3.57859) (-9.38525e-16 0.484088 -3.44345) (-2.08089e-15 0.0727362 -3.39219) (-2.51443e-15 -0.442301 -3.21115) (-2.36395e-15 -1.36074 -2.88715) (-1.35478e-15 -1.95136 -2.62815) (-3.80213e-16 -2.58468 -2.27894) (2.40764e-16 -3.13287 -1.89053) (4.81551e-17 -3.54925 -1.45476) (-1.05989e-15 -3.83994 -0.994495) (1.99431e-15 -3.99859 -0.516865) (-1.1972e-15 -4.06379 -0.0603855) (1.13704e-15 -4.05787 0.41065) (-1.10453e-15 -3.99977 0.849767) (4.72276e-16 -3.91096 1.28134) (-1.25603e-15 -3.78445 1.67227) (-4.01916e-16 -3.61895 1.99011) (-2.22218e-16 -3.39012 2.21172) (-5.72535e-16 -3.10948 2.33849) (-6.3272e-16 -2.79682 2.39052) (-4.84362e-16 -2.4851 2.39575) (-3.35942e-16 -2.19305 2.38726) (6.94449e-16 -1.94384 2.38253) (-3.8137e-16 -1.71655 2.38873) (1.06989e-15 -1.47687 2.38368) (2.32375e-16 -1.21444 2.32303) (1.38881e-15 -0.952817 2.16668) (7.6041e-17 -0.759194 1.93612) (-9.6514e-16 -0.692673 1.74715) (-8.29627e-16 -0.715453 1.68042) (-1.27813e-15 -0.750111 1.71937) (-8.97413e-16 -0.758857 1.78323) (-1.33774e-16 -0.74705 1.8333) (-7.21409e-16 -0.72221 1.8751) (-2.1129e-16 -0.677409 1.91712) (9.35947e-18 -0.618311 1.96634) (1.07287e-16 -0.551433 2.02079) (-4.3086e-19 -0.489175 2.08266) (3.23697e-16 -0.432985 2.1396) (-5.15528e-16 -0.382046 2.18755) (-1.63139e-15 -0.327496 2.22772) (-2.30841e-15 -0.274539 2.26641) (-1.10105e-15 -0.226486 2.30637) (-3.35101e-16 -0.180189 2.34551) (-3.05856e-16 -0.129882 2.38867) (-1.81278e-16 -0.0784653 2.45048) (1.13543e-16 -0.0401516 2.55381) (-2.23737e-15 -0.0245307 2.70271) (1.04625e-15 -0.0236519 2.82757) (-3.884e-17 -0.0123832 2.83458) (-9.88989e-16 0.0271211 2.71103) (4.12676e-15 0.0821132 2.57489) (-1.02436e-17 0.110855 2.62815) (-8.25098e-16 0.0946544 2.9003) (-8.41437e-16 0.054149 3.2304) (-2.71331e-16 0.00927126 3.5045) (-4.39052e-17 -0.0364909 3.6919) (-5.72328e-16 -0.0850032 3.80831) (-1.10018e-15 -0.138927 3.88226) (-4.6472e-16 -0.196312 3.93715) (-1.27052e-15 -0.252324 3.98394) (-2.09824e-15 -0.301283 4.02348) (-1.54892e-15 -0.338974 4.05109) (-9.84202e-16 -0.363675 4.06407) (-1.09032e-15 -0.375825 4.06181) (-2.31667e-15 -0.378019 4.04643) (-2.49146e-16 -0.373017 4.02013) (-7.78277e-16 -0.364109 3.98589) (1.21316e-16 -0.353965 3.94647) (6.07792e-17 -0.344853 3.90504) (-2.22235e-16 -0.337336 3.86418) (-8.50352e-17 -0.330319 3.82553) (-2.47677e-16 -0.321168 3.7889) (-2.13407e-16 -0.308248 3.75353) (4.0726e-17 -0.292942 3.7203) (3.69202e-16 -0.280337 3.69273) (2.95283e-16 -0.276465 3.67396) (4.02276e-16 -0.283669 3.66517) (3.56613e-16 -0.297042 3.65703) (2.62091e-16 -0.317834 3.65378) (3.30878e-16 -0.301209 3.62316) (2.37253e-16 -0.392647 3.63333) (-5.75765e-16 0.0677677 1.47069) (-3.0689e-16 -0.041123 1.59351) (-3.10887e-15 -0.199696 1.88339) (-6.77312e-15 -0.218997 2.03833) (-1.11086e-14 -0.0988504 1.94801) (-1.45778e-14 0.145473 1.6222) (-1.51253e-14 0.360921 0.936135) (-1.7409e-14 0.392802 0.531971) (-1.05724e-14 0.357784 -0.0556006) (-2.15603e-15 0.689908 -0.799577) (-3.91954e-15 1.026 -1.26251) (-5.24205e-15 1.39284 -1.95317) (-7.58275e-15 1.77204 -2.718) (-7.85927e-15 2.18361 -3.45745) (-5.65579e-15 2.55959 -4.00845) (-3.21661e-15 2.73852 -4.33312) (-9.48317e-16 2.48882 -4.31817) (6.01975e-16 1.74378 -3.94033) (-3.59235e-16 0.912328 -3.51943) (-3.34206e-15 0.478778 -3.41055) (-2.21958e-15 0.0700606 -3.3531) (-2.88252e-15 -0.412127 -3.17559) (2.29468e-15 -1.39193 -2.84487) (-1.58593e-15 -1.98642 -2.59484) (4.018e-17 -2.63531 -2.24992) (1.11173e-16 -3.19631 -1.86961) (-3.38155e-15 -3.62387 -1.43842) (-1.06929e-15 -3.91779 -0.981102) (1.73157e-15 -4.07972 -0.50565) (-1.18554e-15 -4.14542 -0.0521277) (1.2023e-15 -4.14033 0.416746) (-4.61396e-16 -4.08072 0.852087) (-2.15501e-15 -3.98944 1.27815) (2.6281e-16 -3.85541 1.65866) (-2.82429e-16 -3.67609 1.96215) (-3.46664e-16 -3.4316 2.16889) (-6.11986e-16 -3.13669 2.28271) (-5.87184e-16 -2.81315 2.32612) (-7.4846e-16 -2.49561 2.32777) (-4.33495e-16 -2.20281 2.31865) (6.50378e-16 -1.95531 2.31477) (6.84039e-17 -1.72565 2.32056) (3.66882e-15 -1.47854 2.30577) (1.34081e-15 -1.20073 2.21825) (5.66811e-16 -0.923419 2.02008) (-7.51754e-16 -0.733124 1.75955) (-8.67195e-16 -0.693056 1.58759) (-8.10715e-16 -0.739455 1.56605) (-9.59604e-16 -0.780432 1.63869) (-9.28144e-17 -0.786823 1.71244) (1.11675e-16 -0.773499 1.7566) (2.27575e-16 -0.749816 1.78757) (1.71758e-16 -0.708832 1.82045) (4.80354e-17 -0.651989 1.86233) (7.89959e-19 -0.588843 1.90798) (-1.11234e-16 -0.530764 1.95673) (-1.24001e-15 -0.478389 1.99765) (-1.6804e-15 -0.430105 2.03168) (-7.31198e-16 -0.375777 2.06332) (-1.6661e-16 -0.322056 2.09873) (-1.07088e-15 -0.272848 2.14135) (-5.43467e-15 -0.226556 2.19052) (3.23055e-15 -0.178147 2.25168) (9.10363e-16 -0.131721 2.34434) (1.36133e-15 -0.100415 2.47713) (2.5485e-15 -0.0847083 2.60688) (-8.01668e-16 -0.0680027 2.65588) (-4.65667e-16 -0.0338343 2.58853) (-8.22048e-17 0.0157281 2.4842) (-4.26127e-17 0.0530016 2.52484) (-6.19445e-16 0.050746 2.78111) (-5.86823e-16 0.0220314 3.11372) (-6.57251e-16 -0.0114633 3.39376) (-5.26484e-16 -0.0433945 3.58301) (-4.69954e-16 -0.078384 3.6974) (-7.82702e-16 -0.121038 3.76945) (-6.57332e-16 -0.172642 3.82537) (-2.99123e-17 -0.22876 3.87792) (-4.61437e-16 -0.282544 3.92702) (-9.74018e-16 -0.327915 3.96662) (-1.21465e-15 -0.361098 3.98965) (-1.37822e-15 -0.381252 3.99381) (-3.37558e-15 -0.389655 3.9799) (-9.11746e-16 -0.389265 3.95153) (-6.67447e-16 -0.38286 3.91206) (-5.47516e-16 -0.373727 3.86546) (-2.71446e-15 -0.364415 3.81548) (-2.50866e-16 -0.35687 3.76623) (1.15259e-16 -0.351024 3.72074) (2.61768e-16 -0.345234 3.68054) (-2.64383e-16 -0.33657 3.64488) (1.14377e-16 -0.323723 3.61266) (3.54076e-16 -0.308999 3.58506) (1.80758e-16 -0.297985 3.56568) (5.00029e-16 -0.296019 3.55657) (-7.7288e-17 -0.30371 3.55662) (4.71027e-16 -0.315226 3.55474) (3.53764e-16 -0.332403 3.55687) (2.52354e-16 -0.312646 3.52868) (3.0738e-16 -0.416743 3.56234) (-5.67172e-16 0.0541916 1.39976) (-4.11132e-15 -0.0741988 1.54914) (-4.00528e-15 -0.226941 1.86445) (-7.27626e-15 -0.228231 2.01767) (-1.28796e-14 -0.100554 1.91009) (-2.22699e-14 0.160451 1.55845) (-1.53553e-14 0.363247 0.915902) (-1.52871e-14 0.396024 0.467042) (-9.54209e-15 0.385087 -0.152997) (-2.11715e-15 0.739402 -0.884458) (-4.22293e-15 1.07472 -1.40201) (-6.22441e-15 1.45167 -2.11331) (-8.58683e-15 1.83851 -2.85935) (-7.89393e-15 2.24943 -3.54807) (-5.45449e-15 2.61045 -4.04429) (-2.90654e-15 2.76097 -4.31639) (-8.83678e-16 2.47394 -4.25743) (6.93487e-16 1.70128 -3.86109) (4.8241e-16 0.88397 -3.46447) (1.69255e-15 0.469466 -3.37746) (-1.7739e-15 0.0351105 -3.30533) (-1.61859e-15 -0.469757 -3.11661) (1.2379e-15 -1.42376 -2.79933) (8.41389e-16 -2.02294 -2.56006) (2.05075e-16 -2.68533 -2.22022) (6.52463e-17 -3.25906 -1.84798) (-7.8695e-16 -3.69712 -1.42152) (-1.10204e-15 -3.99453 -0.967374) (1.07973e-15 -4.16087 -0.494176) (-1.08024e-15 -4.22627 -0.0438043) (1.50828e-15 -4.22154 0.42257) (-1.01786e-15 -4.16052 0.853735) (-2.75818e-16 -4.06685 1.27375) (-1.91879e-16 -3.92481 1.6438) (-3.06016e-16 -3.73041 1.93271) (-3.5731e-16 -3.4704 2.12489) (-6.34445e-16 -3.16161 2.22675) (-5.64318e-16 -2.82805 2.26287) (-6.65064e-16 -2.50576 2.26205) (-2.82876e-16 -2.21132 2.25241) (5.12741e-16 -1.96522 2.24914) (-1.18545e-16 -1.73327 2.25306) (-3.30352e-15 -1.47717 2.22505) (2.53312e-16 -1.18315 2.10677) (3.76381e-16 -0.89163 1.86659) (6.39702e-15 -0.710212 1.58947) (-7.35593e-15 -0.70261 1.4583) (-8.12993e-16 -0.77057 1.49241) (-4.15088e-17 -0.811731 1.59249) (2.11928e-16 -0.81096 1.66432) (5.69781e-17 -0.79543 1.69337) (-8.74001e-17 -0.775134 1.70859) (-1.4193e-16 -0.737534 1.72969) (-1.43463e-16 -0.68313 1.76215) (-4.59644e-17 -0.623973 1.79522) (5.07343e-16 -0.571406 1.82677) (6.32275e-15 -0.522169 1.84891) (-1.02001e-15 -0.475635 1.86856) (8.10462e-16 -0.422676 1.89288) (4.54121e-17 -0.370495 1.92717) (-1.52236e-15 -0.322479 1.97578) (2.34863e-15 -0.277583 2.03998) (2.35699e-15 -0.233224 2.12481) (9.65901e-15 -0.193482 2.24176) (6.07794e-16 -0.163606 2.37224) (-2.36909e-16 -0.138111 2.45048) (-3.53764e-16 -0.103587 2.4364) (-1.00824e-15 -0.0568119 2.38008) (7.34897e-16 -0.0164878 2.4218) (6.08497e-16 -0.00552242 2.65454) (-2.71908e-16 -0.0223263 2.97978) (-7.1463e-16 -0.0460648 3.26286) (-6.33602e-16 -0.0668313 3.45625) (-2.40368e-16 -0.0878576 3.57156) (-5.61106e-16 -0.116721 3.64227) (-1.31239e-15 -0.157539 3.69907) (-6.20929e-16 -0.208801 3.75684) (8.78966e-17 -0.263627 3.81598) (-1.43971e-15 -0.314118 3.86789) (-1.90481e-15 -0.354622 3.90342) (-7.35571e-16 -0.382501 3.91617) (9.15249e-16 -0.397868 3.90599) (-1.19646e-15 -0.402792 3.87586) (-6.30847e-16 -0.400355 3.83109) (-4.40487e-16 -0.393324 3.77628) (-9.1636e-18 -0.384955 3.71647) (1.97756e-15 -0.377515 3.65654) (-2.6814e-16 -0.372549 3.60143) (6.90202e-16 -0.369192 3.55432) (4.67441e-16 -0.3651 3.51598) (2.13587e-16 -0.357184 3.48482) (9.97284e-17 -0.344683 3.45938) (8.35537e-17 -0.330852 3.44108) (-1.92148e-17 -0.321491 3.4332) (3.38542e-16 -0.320848 3.43595) (6.03283e-16 -0.32786 3.44566) (1.04511e-16 -0.336496 3.45029) (5.99872e-16 -0.349961 3.45886) (4.81345e-16 -0.32889 3.4356) (4.13596e-16 -0.447155 3.4992) (-1.38711e-15 0.0385211 1.32231) (-1.7767e-15 -0.105907 1.51762) (-4.73456e-15 -0.252308 1.8491) (-8.84906e-15 -0.235457 1.99075) (-1.25408e-14 -0.0991143 1.85981) (-1.42595e-14 0.189344 1.45882) (-1.48402e-14 0.404659 0.791266) (-1.50489e-14 0.423028 0.270496) (-7.21768e-15 0.418978 -0.258502) (-2.24479e-15 0.792224 -0.980661) (-4.76834e-15 1.12702 -1.54985) (-7.18302e-15 1.51166 -2.27053) (-9.13769e-15 1.90313 -2.98932) (-7.98841e-15 2.31094 -3.62619) (-5.23445e-15 2.6565 -4.06979) (-2.40462e-15 2.77893 -4.29195) (1.50984e-17 2.45641 -4.19276) (7.6094e-16 1.65946 -3.78337) (6.40928e-16 0.857427 -3.41271) (1.17147e-15 0.463887 -3.34268) (-1.47124e-15 0.0284843 -3.26188) (-1.31743e-15 -0.424699 -3.08483) (1.16979e-16 -1.45069 -2.75606) (-6.19199e-16 -2.05512 -2.52626) (-2.9927e-17 -2.73263 -2.1907) (1.57396e-16 -3.31991 -1.826) (-4.7572e-16 -3.76845 -1.40392) (-1.10339e-15 -4.07026 -0.952947) (1.29345e-15 -4.24081 -0.482269) (-5.37647e-16 -4.30632 -0.0350283) (1.45026e-15 -4.30183 0.42838) (-5.84543e-16 -4.23983 0.855029) (-1.94959e-16 -4.14281 1.26843) (-3.07657e-16 -3.99193 1.62788) (-3.04282e-16 -3.7827 1.90239) (-4.03228e-16 -3.50716 2.08049) (-6.86792e-16 -3.18424 2.17131) (-5.42325e-16 -2.84173 2.20141) (-6.22811e-16 -2.51489 2.1991) (-8.76622e-17 -2.21873 2.1893) (5.0017e-16 -1.97376 2.18585) (-1.25518e-16 -1.73852 2.18612) (-9.16362e-16 -1.47059 2.14144) (-1.27879e-15 -1.15661 1.98889) (-2.07667e-16 -0.852666 1.71132) (-6.02092e-16 -0.688539 1.43964) (-3.45169e-16 -0.717203 1.37169) (3.46705e-18 -0.802081 1.46084) (-3.74724e-17 -0.837106 1.57407) (-9.4115e-17 -0.82665 1.62997) (-9.20151e-17 -0.809859 1.63463) (-6.97278e-17 -0.793809 1.6309) (-4.38323e-17 -0.759686 1.63949) (-4.71176e-17 -0.710151 1.66095) (-1.393e-17 -0.656344 1.67891) (5.36824e-18 -0.60978 1.69133) (6.69201e-16 -0.563427 1.69407) (2.52148e-16 -0.518028 1.70003) (1.60947e-16 -0.467675 1.71969) (-1.22785e-16 -0.419144 1.75732) (1.03396e-15 -0.374592 1.81756) (-3.01899e-16 -0.332504 1.90173) (-5.08376e-17 -0.291977 2.00823) (-3.13829e-16 -0.255666 2.12736) (-5.77393e-16 -0.221505 2.22486) (-4.59816e-16 -0.182796 2.25825) (-8.79752e-16 -0.137075 2.24933) (-1.65499e-15 -0.0946384 2.30533) (-1.77612e-15 -0.0737649 2.51508) (-7.9267e-16 -0.0776083 2.82378) (-3.39658e-16 -0.0923798 3.10912) (-5.30929e-16 -0.104309 3.31154) (-3.74371e-16 -0.113507 3.43443) (2.7638e-16 -0.12771 3.50754) (-1.3099e-15 -0.15443 3.56426) (-1.84102e-15 -0.195632 3.62554) (-1.02915e-15 -0.246703 3.69335) (-7.1942e-16 -0.298998 3.75808) (-1.60878e-15 -0.344771 3.80675) (-1.7899e-16 -0.37942 3.83061) (-7.55922e-16 -0.401729 3.82606) (-8.82629e-17 -0.41268 3.79601) (-5.6212e-16 -0.414818 3.74578) (-2.61996e-16 -0.411168 3.68236) (1.75645e-18 -0.404501 3.61155) (-9.12078e-17 -0.398028 3.53958) (5.55882e-16 -0.393624 3.47246) (5.48489e-16 -0.39222 3.41563) (-5.50381e-17 -0.392022 3.37167) (-1.5179e-16 -0.389902 3.33993) (-1.40842e-16 -0.382828 3.31768) (-7.797e-17 -0.370835 3.30318) (4.18671e-16 -0.358052 3.2979) (9.38485e-16 -0.350097 3.30412) (7.58575e-16 -0.349852 3.31957) (7.13047e-16 -0.354926 3.33838) (6.59295e-16 -0.360022 3.349) (6.6668e-16 -0.370391 3.36528) (8.63765e-16 -0.350601 3.35049) (4.03751e-16 -0.484171 3.4502) (3.33736e-15 0.0179952 1.24704) (-1.27856e-15 -0.140502 1.50323) (-5.10771e-15 -0.278133 1.84207) (-6.02619e-15 -0.24422 1.96279) (-1.28352e-14 -0.101529 1.80422) (-1.43917e-14 0.198297 1.35468) (-1.56105e-14 0.40785 0.739512) (-2.41122e-15 0.43726 0.252745) (-5.52235e-15 0.453072 -0.3463) (-2.5521e-15 0.844672 -1.0897) (-5.47539e-15 1.17973 -1.70311) (-8.11876e-15 1.57005 -2.42179) (-9.58371e-15 1.96442 -3.10735) (-8.0242e-15 2.36742 -3.69259) (-4.95706e-15 2.69716 -4.08585) (-2.17777e-15 2.79256 -4.26093) (-5.31779e-17 2.43633 -4.1255) (8.88284e-16 1.61844 -3.7083) (7.40884e-16 0.835144 -3.36523) (-1.08118e-16 0.455511 -3.3086) (-1.22631e-15 -0.00612574 -3.2138) (7.49148e-17 -0.490216 -3.02639) (-1.62867e-16 -1.47629 -2.7116) (-4.51044e-16 -2.08816 -2.49105) (1.18087e-16 -2.77897 -2.16068) (1.71881e-16 -3.37963 -1.80345) (-4.10393e-16 -3.83857 -1.38582) (-1.11395e-15 -4.14545 -0.938146) (1.27017e-15 -4.31895 -0.470425) (-6.75386e-16 -4.3853 -0.0262761) (6.73301e-16 -4.38116 0.43387) (-5.33229e-16 -4.31837 0.855741) (-1.01441e-16 -4.21715 1.26207) (-3.56158e-16 -4.05623 1.61061) (-3.03082e-16 -3.83282 1.87101) (-4.35347e-16 -3.54199 2.03587) (-7.29459e-16 -3.20468 2.11655) (-5.1166e-16 -2.85493 2.14194) (-5.91979e-16 -2.52258 2.13864) (1.45521e-16 -2.22683 2.12914) (2.28181e-17 -1.98221 2.12455) (-2.66018e-16 -1.74199 2.11915) (1.71157e-16 -1.46084 2.05513) (3.18967e-16 -1.1257 1.86691) (4.721e-16 -0.8143 1.56066) (-7.60025e-16 -0.677453 1.31965) (-5.00186e-17 -0.742709 1.32833) (2.42743e-17 -0.836532 1.4612) (-3.6979e-17 -0.858297 1.56934) (-4.75906e-17 -0.8378 1.59603) (-2.91367e-17 -0.822242 1.57099) (-2.00358e-17 -0.811145 1.54831) (-1.8183e-17 -0.783131 1.54604) (-3.75715e-17 -0.73878 1.55615) (1.54194e-17 -0.689487 1.55765) (-2.46847e-16 -0.646856 1.55087) (3.40426e-16 -0.60295 1.53645) (8.03035e-16 -0.559439 1.53222) (-1.52615e-16 -0.512755 1.55226) (-1.05652e-15 -0.469464 1.60015) (2.48976e-15 -0.429905 1.67755) (9.93798e-16 -0.391317 1.7801) (-9.05876e-16 -0.352192 1.89451) (-4.84769e-16 -0.31399 1.99516) (-3.84409e-16 -0.27274 2.05916) (-3.38459e-16 -0.225726 2.09501) (3.59272e-16 -0.180982 2.17035) (2.28973e-15 -0.152175 2.36312) (-9.32842e-16 -0.144885 2.6526) (3.32855e-16 -0.149502 2.94003) (-1.32307e-16 -0.154214 3.1571) (-8.55026e-16 -0.153758 3.29405) (-3.52176e-17 -0.154461 3.37375) (-8.12321e-16 -0.165695 3.42993) (-8.1545e-16 -0.193143 3.49027) (7.63222e-16 -0.235465 3.56365) (-9.8653e-16 -0.285238 3.64005) (-3.84627e-16 -0.333183 3.70315) (-6.98706e-16 -0.372706 3.73934) (-7.7985e-16 -0.400849 3.74296) (-1.33929e-15 -0.417732 3.71449) (-6.15185e-16 -0.425051 3.66018) (-1.23535e-16 -0.425435 3.58757) (4.73286e-17 -0.421739 3.50518) (6.36529e-16 -0.416748 3.41999) (2.78189e-16 -0.413525 3.33952) (-2.10362e-18 -0.413435 3.27064) (1.03734e-16 -0.41647 3.21848) (-9.33178e-17 -0.419747 3.18394) (-1.38295e-16 -0.419504 3.16426) (4.84716e-17 -0.413065 3.1555) (4.17255e-16 -0.401503 3.15569) (1.10337e-15 -0.389603 3.16602) (1.79154e-15 -0.382382 3.18703) (1.08089e-15 -0.381304 3.21385) (7.34282e-16 -0.383316 3.23962) (6.58269e-16 -0.384887 3.25547) (5.15551e-16 -0.393647 3.28146) (3.80717e-16 -0.378524 3.27993) (2.46284e-16 -0.527863 3.42062) (-5.63717e-16 -0.00639878 1.17301) (-4.07796e-15 -0.17618 1.48906) (-3.15126e-15 -0.301745 1.82963) (-8.38895e-15 -0.248962 1.92742) (-1.16906e-14 -0.0974537 1.73244) (-1.551e-14 0.241899 1.18062) (-1.11052e-14 0.453585 0.550371) (-2.61824e-15 0.466363 0.19312) (-4.46805e-15 0.496431 -0.452857) (-2.22421e-15 0.900082 -1.21121) (-6.30142e-15 1.23428 -1.85811) (-9.02615e-15 1.62774 -2.56492) (-1.00532e-14 2.02318 -3.21292) (-8.00018e-15 2.41969 -3.74746) (-4.70783e-15 2.73341 -4.09278) (-2.01708e-15 2.8025 -4.22385) (-3.03763e-16 2.41394 -4.05651) (1.23405e-15 1.57811 -3.63574) (9.00619e-16 0.815258 -3.31939) (-6.56097e-16 0.456006 -3.27569) (-8.98111e-16 -0.00387996 -3.17588) (-4.93944e-16 -0.429895 -3.00035) (-4.17998e-15 -1.49861 -2.66869) (3.0843e-16 -2.11698 -2.45672) (1.33009e-17 -2.82282 -2.13093) (1.75288e-16 -3.43752 -1.78064) (-3.56591e-16 -3.90695 -1.36715) (-1.12567e-15 -4.21959 -0.922611) (1.2371e-15 -4.39565 -0.458117) (-6.56183e-16 -4.46346 -0.0172595) (8.66236e-16 -4.45982 0.43928) (-5.95709e-16 -4.39622 0.856127) (-6.54755e-17 -4.28954 1.255) (-4.17504e-16 -4.118 1.59246) (-2.9831e-16 -3.88038 1.83891) (-4.85445e-16 -3.57461 1.9916) (-7.68848e-16 -3.22309 2.06304) (-4.72942e-16 -2.86734 2.08501) (-5.49378e-16 -2.52929 2.08113) (3.0273e-16 -2.23585 2.07229) (-6.67538e-17 -1.99012 2.06596) (-8.01399e-17 -1.74243 2.05258) (-1.87313e-16 -1.44484 1.9663) (5.79089e-16 -1.0875 1.74332) (8.86078e-17 -0.774039 1.42386) (-1.50919e-16 -0.672393 1.24013) (3.2496e-18 -0.772519 1.3266) (-3.87209e-17 -0.867494 1.48343) (-3.51679e-17 -0.870975 1.56751) (-2.09228e-17 -0.840628 1.55428) (-1.14859e-17 -0.828227 1.49758) (-1.26404e-17 -0.825115 1.45932) (-1.7308e-17 -0.804331 1.44996) (-3.51327e-17 -0.76501 1.45) (2.20452e-17 -0.718877 1.43457) (-3.27688e-16 -0.678656 1.40975) (8.3492e-16 -0.63822 1.3824) (6.64638e-16 -0.598394 1.37473) (-9.01327e-16 -0.557123 1.40286) (-7.40982e-16 -0.519737 1.46724) (-1.40825e-15 -0.485302 1.56234) (-4.31194e-16 -0.449769 1.67334) (-2.70836e-16 -0.410021 1.78013) (-1.85099e-16 -0.366915 1.8631) (-2.05228e-16 -0.319858 1.92925) (-2.3976e-16 -0.273006 2.02572) (-1.92607e-16 -0.237348 2.21047) (1.77498e-16 -0.220145 2.48284) (-4.97111e-17 -0.215968 2.77099) (5.10405e-17 -0.212742 3.00502) (-2.5703e-16 -0.204904 3.15981) (-1.11172e-15 -0.194239 3.24817) (7.43726e-16 -0.190663 3.30271) (1.74648e-15 -0.202774 3.35783) (-1.26933e-15 -0.232708 3.43135) (-4.88327e-16 -0.27536 3.51736) (-6.59065e-16 -0.321652 3.59529) (-1.78725e-16 -0.363208 3.64616) (1.77391e-15 -0.39536 3.65945) (-5.02739e-16 -0.417095 3.63474) (1.47585e-16 -0.429525 3.57717) (-5.05559e-16 -0.434615 3.49625) (-2.48654e-17 -0.434724 3.40141) (1.14039e-16 -0.43248 3.30249) (7.30227e-16 -0.430651 3.20763) (7.13748e-16 -0.432034 3.1255) (2.32977e-16 -0.437276 3.06306) (4.97198e-17 -0.445163 3.02368) (6.5773e-19 -0.451676 3.00536) (1.90344e-16 -0.452762 3.00275) (6.16942e-16 -0.446513 3.01093) (1.06901e-15 -0.435132 3.02784) (1.24748e-15 -0.423711 3.05394) (1.13412e-15 -0.416319 3.08763) (1.0418e-15 -0.413255 3.1223) (1.66458e-16 -0.411705 3.15216) (4.67783e-16 -0.410783 3.17332) (3.25044e-16 -0.42037 3.21245) (1.54593e-16 -0.413566 3.23009) (1.52103e-18 -0.578061 3.41415) (-1.21664e-15 -0.0340343 1.12285) (-2.4377e-15 -0.214777 1.48229) (-3.05186e-15 -0.326126 1.8154) (-9.77853e-15 -0.25415 1.89324) (-1.26172e-14 -0.094736 1.65814) (-1.55365e-14 0.237878 1.03505) (-1.39981e-14 0.449632 0.510575) (2.04528e-15 0.486427 0.224482) (-4.31404e-15 0.545442 -0.578506) (-4.2282e-15 0.955426 -1.34319) (-7.08444e-15 1.28898 -2.01188) (-9.8791e-15 1.68311 -2.6983) (-1.04312e-14 2.07795 -3.30617) (-7.95116e-15 2.46695 -3.79173) (-4.49625e-15 2.76498 -4.09179) (-1.89054e-15 2.80891 -4.18224) (-7.72085e-17 2.38951 -3.98682) (1.38767e-15 1.53934 -3.56565) (9.4436e-16 0.80056 -3.27655) (-4.09805e-16 0.452241 -3.245) (-1.32478e-15 -0.034437 -3.13094) (-2.77657e-16 -0.497822 -2.93987) (-2.45581e-16 -1.51971 -2.62405) (-1.45305e-16 -2.14672 -2.42086) (-2.11734e-17 -2.86609 -2.10071) (1.8027e-16 -3.49448 -1.75723) (-2.73915e-16 -3.97387 -1.34809) (-1.12877e-15 -4.29288 -0.906735) (1.21162e-15 -4.47147 -0.445656) (-6.81492e-16 -4.5409 -0.00830564) (9.89188e-16 -4.53755 0.444323) (-6.62236e-16 -4.47303 0.856075) (-5.29608e-17 -4.35942 1.24698) (-4.91679e-16 -4.17808 1.57341) (-2.8761e-16 -3.92526 1.80601) (-5.51618e-16 -3.60482 1.94763) (-7.89981e-16 -3.24017 2.01093) (-4.29079e-16 -2.87876 2.03038) (-4.64095e-16 -2.53567 2.02625) (-8.2957e-16 -2.24466 2.01791) (-3.81037e-16 -1.99792 2.00954) (-4.72284e-16 -1.741 1.98614) (-9.52768e-16 -1.42538 1.87608) (-9.26307e-16 -1.04829 1.62332) (-3.24129e-17 -0.741387 1.31002) (-1.18118e-16 -0.680427 1.20164) (-8.43167e-17 -0.808484 1.35305) (-4.15282e-17 -0.896013 1.5125) (-1.6611e-17 -0.877553 1.55765) (-1.27535e-17 -0.839526 1.49861) (-1.45263e-17 -0.834148 1.41326) (-1.79672e-17 -0.840959 1.3655) (-2.21248e-17 -0.825824 1.3531) (-3.57845e-17 -0.790539 1.34517) (-1.19526e-17 -0.74536 1.31398) (-1.66845e-16 -0.707455 1.2743) (1.1021e-15 -0.67141 1.24088) (-2.61452e-16 -0.635636 1.23828) (-1.14939e-15 -0.601357 1.2812) (-8.86339e-16 -0.569542 1.36354) (-5.64162e-16 -0.538208 1.47137) (-2.55889e-17 -0.504213 1.58174) (1.89121e-16 -0.462952 1.68066) (1.89413e-17 -0.41536 1.77174) (-3.50136e-16 -0.366692 1.88683) (-4.457e-16 -0.325991 2.06967) (-2.77148e-16 -0.299997 2.32909) (-1.14328e-16 -0.286995 2.61628) (1.62889e-16 -0.277576 2.86505) (4.5669e-16 -0.263133 3.03756) (6.43366e-16 -0.244311 3.13438) (2.6521e-16 -0.227831 3.18576) (-7.05372e-16 -0.224891 3.23234) (-1.74341e-16 -0.240832 3.3019) (9.64915e-17 -0.273098 3.3942) (-3.4962e-16 -0.313645 3.48706) (-4.83346e-16 -0.353667 3.55413) (-4.37358e-16 -0.387097 3.57963) (-2.4349e-15 -0.411551 3.55975) (-4.71461e-16 -0.427738 3.50049) (4.22569e-16 -0.437218 3.41152) (2.03895e-15 -0.441725 3.30488) (-2.6353e-15 -0.443196 3.19137) (4.92052e-16 -0.444063 3.0819) (2.99851e-16 -0.446996 2.98562) (3.31494e-16 -0.454309 2.91168) (2.85453e-16 -0.465581 2.86556) (2.14582e-16 -0.478161 2.84707) (3.14177e-16 -0.487107 2.85031) (6.3395e-16 -0.488582 2.86758) (1.10051e-15 -0.481831 2.89359) (1.40319e-15 -0.470144 2.92631) (1.34251e-15 -0.458511 2.96516) (9.36946e-16 -0.449918 3.00683) (6.25605e-16 -0.444081 3.04476) (4.73078e-16 -0.439421 3.07677) (3.07773e-16 -0.438172 3.1056) (2.02756e-17 -0.451601 3.16306) (-1.32604e-16 -0.456474 3.20602) (-8.04489e-17 -0.634118 3.43217) (-1.69238e-15 -0.0638455 1.07744) (-2.8693e-15 -0.251072 1.48089) (-5.08697e-15 -0.347181 1.79829) (-9.23855e-15 -0.254763 1.85132) (-1.28285e-14 -0.0797421 1.57084) (-1.42696e-14 0.306783 0.745115) (-9.46447e-15 0.485241 0.357792) (-3.05237e-15 0.509514 0.18215) (-1.6471e-15 0.605012 -0.716937) (-6.58251e-15 1.01153 -1.4825) (-7.97231e-15 1.34485 -2.16145) (-1.0675e-14 1.73729 -2.82116) (-1.07601e-14 2.12936 -3.38733) (-7.91529e-15 2.51033 -3.82596) (-4.35472e-15 2.7929 -4.08343) (-1.77685e-15 2.81246 -4.13645) (5.23159e-17 2.3637 -3.91648) (1.37094e-15 1.50197 -3.49745) (7.48879e-16 0.788039 -3.23503) (-8.00547e-16 0.455399 -3.21459) (-1.31331e-15 -0.0332938 -3.09274) (-5.56785e-16 -0.426976 -2.91708) (-4.60167e-16 -1.53739 -2.58097) (-1.8744e-16 -2.17255 -2.38574) (-3.7753e-17 -2.90724 -2.07081) (1.80439e-16 -3.54999 -1.73343) (-2.23958e-16 -4.03913 -1.32849) (-1.1244e-15 -4.36499 -0.890271) (1.18544e-15 -4.54627 -0.432688) (-6.78572e-16 -4.61804 0.00103291) (1.03176e-15 -4.61468 0.449336) (-6.97019e-16 -4.54877 0.85585) (-2.42515e-17 -4.42745 1.23837) (-5.67024e-16 -4.23637 1.55374) (-2.65079e-16 -3.96758 1.77294) (-6.36311e-16 -3.63264 1.90442) (-7.46099e-16 -3.25681 1.96095) (-3.93169e-16 -2.89023 1.97886) (-3.61812e-16 -2.54189 1.97475) (-4.43478e-16 -2.25223 1.96638) (-3.08509e-16 -2.00302 1.95523) (-6.51651e-16 -1.73545 1.92025) (-8.45972e-16 -1.3994 1.78573) (-2.58611e-16 -1.00484 1.5115) (-7.35868e-17 -0.711994 1.22626) (-2.84758e-17 -0.695885 1.20191) (-3.78674e-18 -0.844196 1.39761) (-6.91164e-18 -0.91635 1.53917) (-1.32123e-17 -0.873804 1.53387) (-1.83158e-17 -0.831002 1.42724) (-2.10724e-17 -0.837949 1.32066) (-2.25208e-17 -0.854934 1.27144) (-2.37306e-17 -0.842477 1.25929) (-3.30892e-17 -0.808905 1.24415) (-3.74304e-17 -0.764502 1.19904) (-8.50711e-17 -0.73031 1.14948) (2.07115e-16 -0.70059 1.11857) (2.66006e-16 -0.670937 1.1296) (2.51513e-16 -0.643383 1.19142) (2.4042e-16 -0.616473 1.28971) (3.28613e-16 -0.586251 1.40575) (4.10284e-16 -0.551693 1.51938) (2.63388e-16 -0.508694 1.63092) (-2.69315e-16 -0.459843 1.76354) (-8.89823e-16 -0.414058 1.94952) (-5.72488e-16 -0.380484 2.19994) (-7.33743e-17 -0.359901 2.48305) (2.85218e-16 -0.344663 2.74055) (8.97513e-16 -0.325983 2.92674) (1.13866e-15 -0.300794 3.03119) (6.46877e-16 -0.275075 3.07934) (-4.41082e-16 -0.258321 3.11659) (-1.82319e-16 -0.260001 3.18002) (-5.51118e-17 -0.280164 3.27644) (-2.47204e-16 -0.312002 3.38279) (-2.31191e-16 -0.346815 3.46699) (-6.48613e-16 -0.378076 3.50594) (-7.42749e-16 -0.402604 3.49286) (-1.08445e-15 -0.420133 3.43243) (-1.08636e-15 -0.432426 3.33652) (-7.8824e-16 -0.440963 3.21811) (2.51573e-16 -0.446864 3.09067) (6.56772e-16 -0.451619 2.9658) (9.08855e-16 -0.457447 2.85527) (8.09966e-16 -0.466721 2.76872) (5.34032e-16 -0.480923 2.71431) (3.79668e-16 -0.498228 2.69387) (3.89517e-16 -0.514525 2.70201) (5.87034e-16 -0.524492 2.72885) (8.98025e-16 -0.525144 2.7654) (1.29596e-15 -0.51714 2.80682) (1.30361e-15 -0.504589 2.85126) (6.70137e-16 -0.492044 2.8973) (2.68201e-16 -0.481538 2.94126) (2.60082e-16 -0.473011 2.97903) (1.94903e-16 -0.46688 3.01419) (-8.85859e-17 -0.468359 3.05615) (-2.54153e-16 -0.488625 3.13814) (-1.18199e-16 -0.507345 3.21115) (-4.68992e-18 -0.694784 3.47377) (-2.19626e-15 -0.0982554 1.04578) (-2.80739e-15 -0.28783 1.48975) (-9.15973e-15 -0.366971 1.7819) (-9.76518e-15 -0.255832 1.80801) (-1.31124e-14 -0.0638981 1.49374) (-1.45824e-14 0.296446 0.6039) (-1.36176e-14 0.471039 0.338055) (-2.94104e-15 0.519086 0.125544) (-2.53218e-15 0.667334 -0.863313) (-6.47792e-15 1.06621 -1.62579) (-8.93141e-15 1.39965 -2.30443) (-1.14275e-14 1.78908 -2.93297) (-1.106e-14 2.17697 -3.45711) (-7.89466e-15 2.54964 -3.85121) (-4.23292e-15 2.81722 -4.0689) (-1.63435e-15 2.81334 -4.08755) (1.78282e-16 2.33725 -3.84615) (1.23953e-15 1.46724 -3.43173) (5.36766e-16 0.779508 -3.19696) (-9.26566e-16 0.451878 -3.1861) (-9.76134e-16 -0.0622074 -3.04828) (-5.63886e-16 -0.501814 -2.85571) (-5.5482e-16 -1.55255 -2.53744) (-1.70875e-16 -2.19867 -2.3492) (-6.03086e-17 -2.94809 -2.04052) (1.77286e-16 -3.60462 -1.70898) (-1.73206e-16 -4.10362 -1.30834) (-9.59328e-16 -4.43602 -0.873517) (1.14981e-15 -4.62018 -0.419661) (-6.13071e-16 -4.69445 0.0102784) (1.10003e-15 -4.69078 0.4541) (-7.72387e-16 -4.62312 0.855252) (-2.13258e-17 -4.49442 1.22924) (-5.04451e-16 -4.29198 1.53324) (-2.68635e-16 -4.00763 1.73976) (-7.23243e-16 -3.65878 1.86198) (-4.42689e-16 -3.27256 1.91274) (-3.78842e-16 -2.90049 1.93003) (-5.213e-16 -2.54839 1.92651) (8.65932e-16 -2.25955 1.91768) (-7.51336e-17 -2.00514 1.90231) (6.3453e-16 -1.72786 1.85481) (1.39898e-16 -1.3714 1.69807) (1.278e-16 -0.965429 1.41468) (6.83084e-17 -0.695218 1.17537) (3.55267e-18 -0.722529 1.22951) (-1.08701e-17 -0.88058 1.44669) (-1.82474e-17 -0.929694 1.55505) (-2.18733e-17 -0.862587 1.49277) (-2.42283e-17 -0.819646 1.3411) (-2.49691e-17 -0.843027 1.22418) (-2.42525e-17 -0.87056 1.18217) (-2.29426e-17 -0.860242 1.17224) (-3.06549e-17 -0.825644 1.14963) (-1.7688e-17 -0.780353 1.09324) (-2.60853e-16 -0.749689 1.04033) (5.79323e-16 -0.727033 1.02054) (3.41186e-16 -0.705439 1.0523) (-2.20364e-16 -0.683558 1.13546) (1.96642e-16 -0.66067 1.2494) (6.26255e-16 -0.630763 1.37689) (5.04552e-16 -0.593868 1.50954) (1.89435e-17 -0.54902 1.66006) (-8.6608e-16 -0.501949 1.85077) (-1.24066e-15 -0.461738 2.0939) (5.23668e-16 -0.433723 2.36931) (7.16669e-16 -0.413219 2.62831) (3.96661e-15 -0.391028 2.82298) (1.50996e-15 -0.361989 2.93481) (1.58337e-15 -0.329107 2.9833) (5.6497e-16 -0.301916 3.01419) (-1.27217e-15 -0.289434 3.07182) (-4.98675e-17 -0.29662 3.17026) (4.09091e-16 -0.318203 3.28813) (-6.47022e-16 -0.345541 3.38794) (-8.21372e-16 -0.371654 3.44069) (-1.32092e-15 -0.393318 3.43489) (-4.39025e-16 -0.40978 3.37488) (-6.42889e-16 -0.422214 3.27254) (-5.08912e-16 -0.432776 3.14352) (1.20439e-16 -0.442379 3.00235) (8.66628e-16 -0.451616 2.86299) (1.23376e-15 -0.461519 2.73739) (8.61501e-16 -0.474042 2.63785) (4.95433e-16 -0.490924 2.57331) (3.79402e-16 -0.512354 2.54864) (4.31925e-16 -0.534904 2.55979) (5.63306e-16 -0.553299 2.5957) (7.38773e-16 -0.562596 2.64378) (8.09124e-16 -0.561212 2.69534) (1.13345e-15 -0.551237 2.74681) (9.82338e-16 -0.537242 2.79678) (1.40882e-15 -0.523178 2.84387) (1.09865e-15 -0.510594 2.88594) (-1.10336e-15 -0.500488 2.9237) (-6.81719e-16 -0.495556 2.96716) (-2.92669e-16 -0.503074 3.03021) (-2.43515e-16 -0.53225 3.14196) (-2.82202e-16 -0.56537 3.24642) (2.70854e-17 -0.758197 3.53559) (-2.41813e-15 -0.13584 1.0274) (-3.49289e-15 -0.320098 1.505) (-6.18943e-15 -0.383075 1.76052) (-9.04357e-15 -0.253066 1.75396) (-1.28506e-14 -0.029784 1.40286) (-1.47022e-14 0.36004 0.372272) (-1.35341e-14 0.496021 0.213381) (-6.20332e-15 0.539369 0.00516248) (-3.94911e-15 0.731158 -1.01589) (-6.61922e-15 1.12051 -1.76979) (-9.83703e-15 1.45255 -2.43883) (-1.2134e-14 1.83854 -3.0335) (-1.13331e-14 2.22172 -3.51617) (-7.87002e-15 2.58568 -3.86807) (-4.10769e-15 2.8383 -4.04844) (-1.48917e-15 2.81144 -4.03542) (3.3743e-16 2.31043 -3.77576) (-3.47889e-16 1.43514 -3.36833) (2.27603e-16 0.772472 -3.1602) (-1.0942e-15 0.455894 -3.15837) (-8.4905e-16 -0.0607376 -3.01384) (-6.58774e-16 -0.418543 -2.84186) (-6.31863e-16 -1.5643 -2.49579) (-1.88783e-16 -2.22111 -2.31347) (-9.48593e-17 -2.98688 -2.01069) (1.8405e-16 -3.65781 -1.68416) (6.54784e-17 -4.16741 -1.28745) (-1.03403e-15 -4.50599 -0.856124) (1.0962e-15 -4.69368 -0.406048) (-3.19961e-16 -4.76995 0.0198202) (1.76753e-15 -4.76584 0.458859) (-8.29751e-16 -4.69605 0.854332) (-7.02669e-16 -4.56013 1.21989) (-7.01198e-16 -4.34442 1.51225) (-1.53174e-16 -4.04555 1.70687) (-7.64885e-16 -3.68364 1.82105) (-5.01716e-16 -3.28745 1.86721) (-4.50987e-16 -2.90888 1.88408) (-2.8782e-16 -2.55475 1.88156) (4.92389e-16 -2.26595 1.87232) (-2.45538e-16 -2.00474 1.85148) (2.63749e-16 -1.71583 1.79025) (1.28254e-16 -1.33914 1.61507) (-2.34023e-17 -0.926269 1.33524) (-1.09973e-17 -0.684921 1.15507) (-2.18445e-17 -0.753423 1.27576) (-2.51034e-17 -0.912676 1.49425) (-2.59591e-17 -0.932071 1.5572) (-2.61843e-17 -0.840741 1.43356) (-2.62734e-17 -0.804457 1.24365) (-2.53964e-17 -0.846724 1.12893) (-2.34404e-17 -0.885552 1.10122) (-2.09864e-17 -0.876852 1.09408) (-2.62199e-17 -0.838715 1.06403) (-2.69722e-17 -0.792178 1.00023) (-2.95164e-16 -0.765807 0.951647) (3.19613e-15 -0.750575 0.950913) (3.03963e-16 -0.737315 1.00814) (2.31251e-16 -0.721832 1.11519) (9.00291e-16 -0.702459 1.24973) (9.18128e-16 -0.671737 1.39955) (7.49275e-17 -0.632422 1.56642) (-6.42872e-16 -0.587563 1.76494) (-1.53249e-15 -0.544318 2.0024) (-1.06427e-15 -0.509406 2.2671) (-1.53031e-15 -0.482634 2.52169) (1.68576e-15 -0.456931 2.72148) (1.02508e-15 -0.42551 2.84283) (1.97923e-15 -0.387971 2.89819) (1.94563e-15 -0.352072 2.92949) (5.23666e-16 -0.328127 2.98371) (-1.4606e-16 -0.32146 3.08199) (-7.30336e-16 -0.331714 3.20681) (-4.28641e-16 -0.350454 3.31905) (-2.06482e-16 -0.37004 3.3837) (-8.82417e-16 -0.386477 3.38541) (9.07114e-16 -0.39939 3.32643) (-3.64093e-16 -0.409631 3.2199) (3.39843e-16 -0.41908 3.08149) (4.5603e-16 -0.429937 2.9281) (1.6954e-16 -0.442467 2.77441) (1.17371e-15 -0.45698 2.63439) (1.07983e-15 -0.474006 2.5203) (4.69592e-16 -0.494934 2.44423) (3.48786e-16 -0.520326 2.41225) (4.27351e-16 -0.548586 2.42338) (5.61232e-16 -0.574754 2.46665) (6.61896e-16 -0.593153 2.52655) (6.02545e-16 -0.600024 2.58994) (8.24685e-16 -0.595523 2.65) (7.47113e-16 -0.58299 2.70501) (4.73788e-16 -0.567127 2.75448) (1.64591e-16 -0.551375 2.79848) (8.80293e-18 -0.537434 2.83851) (1.40758e-16 -0.527912 2.88126) (-1.41619e-16 -0.527362 2.94174) (-2.47241e-16 -0.543559 3.03376) (-1.12102e-16 -0.582198 3.17681) (-4.11255e-17 -0.628513 3.30952) (1.18033e-16 -0.822047 3.61245) (-3.65409e-15 -0.177165 1.0364) (-3.27218e-15 -0.350011 1.5304) (-6.57382e-15 -0.397842 1.73454) (-8.46116e-15 -0.251887 1.69916) (-1.90137e-14 -0.00651714 1.30923) (-1.5231e-14 0.317818 0.38353) (-1.39094e-14 0.485548 0.187633) (-6.06022e-15 0.555918 -0.135648) (-3.75169e-15 0.795161 -1.17133) (-7.51258e-15 1.17365 -1.9118) (-1.07522e-14 1.50307 -2.56366) (-1.27955e-14 1.88474 -3.12273) (-1.15754e-14 2.26281 -3.56525) (-7.83513e-15 2.61825 -3.87758) (-3.99828e-15 2.85609 -4.02308) (-1.39286e-15 2.80681 -3.98089) (4.98167e-16 2.28291 -3.70572) (1.53629e-15 1.40577 -3.30772) (-8.99403e-17 0.770047 -3.12755) (-1.18873e-15 0.455895 -3.1355) (-8.06222e-16 -0.0832462 -2.97758) (-7.82088e-16 -0.500431 -2.78288) (-6.53355e-16 -1.57311 -2.45357) (-2.08418e-16 -2.24366 -2.27656) (-1.44414e-16 -3.02527 -1.98056) (1.89066e-16 -3.7101 -1.65882) (3.05518e-15 -4.23019 -1.26606) (-3.86763e-15 -4.57506 -0.838357) (9.95981e-16 -4.76638 -0.392303) (-1.76772e-16 -4.84426 0.0293399) (1.31276e-15 -4.83988 0.463462) (-7.1024e-16 -4.76763 0.853033) (-5.00047e-16 -4.62361 1.21011) (-3.54282e-15 -4.39456 1.4909) (-1.55588e-16 -4.08153 1.67409) (-8.76495e-16 -3.70566 1.78108) (-4.94312e-16 -3.30119 1.82413) (-2.47049e-16 -2.91646 1.84094) (2.74508e-17 -2.55983 1.83912) (3.88763e-16 -2.27115 1.82944) (3.58085e-17 -2.0044 1.80292) (-9.82658e-17 -1.70201 1.7276) (-2.30904e-17 -1.30843 1.5402) (-4.08962e-17 -0.895886 1.27762) (-3.74107e-17 -0.686147 1.16044) (-3.17833e-17 -0.789156 1.32954) (-2.8262e-17 -0.940033 1.53285) (-2.686e-17 -0.924916 1.54287) (-2.59856e-17 -0.813104 1.35712) (-2.50503e-17 -0.790693 1.13964) (-2.37354e-17 -0.854444 1.04054) (-2.20543e-17 -0.904566 1.03096) (-2.00007e-17 -0.894554 1.02546) (-2.29742e-17 -0.849792 0.989082) (-2.56672e-17 -0.802075 0.923619) (-6.01483e-16 -0.782092 0.888241) (-6.77239e-15 -0.77494 0.913795) (1.03455e-14 -0.769115 0.999722) (7.81364e-16 -0.759741 1.13318) (1.07406e-15 -0.742043 1.29474) (3.46185e-16 -0.709547 1.47611) (-7.98382e-16 -0.669178 1.67997) (-1.21896e-15 -0.626822 1.91437) (-2.27385e-15 -0.587996 2.16962) (-3.47615e-15 -0.555251 2.41776) (5.95434e-16 -0.5249 2.6213) (1.2395e-15 -0.490804 2.75535) (1.05782e-15 -0.45043 2.8251) (-3.6325e-16 -0.407967 2.86487) (1.58562e-15 -0.37331 2.91924) (5.63499e-17 -0.354592 3.01497) (-5.02415e-16 -0.352001 3.1412) (-9.16537e-16 -0.361263 3.25997) (-1.05261e-15 -0.373702 3.33366) (-2.60137e-15 -0.384319 3.34198) (-7.24772e-16 -0.391968 3.28531) (-3.56179e-16 -0.398081 3.17609) (-3.22734e-16 -0.404356 3.0316) (2.55773e-16 -0.413 2.86783) (1.07066e-15 -0.426102 2.70126) (3.15581e-15 -0.443449 2.54637) (1.02568e-15 -0.465221 2.41746) (8.19389e-16 -0.491233 2.32696) (7.7909e-16 -0.521801 2.28502) (6.5095e-16 -0.555703 2.29209) (6.28328e-16 -0.589362 2.33951) (5.35153e-16 -0.616805 2.41021) (4.94802e-16 -0.632962 2.48679) (1.73115e-16 -0.635883 2.55788) (2.01904e-15 -0.627469 2.61959) (3.56055e-16 -0.611998 2.67242) (-4.78798e-17 -0.594159 2.71777) (-1.14527e-16 -0.577171 2.75875) (1.33552e-17 -0.563503 2.80176) (3.4441e-16 -0.557349 2.85876) (1.07964e-16 -0.564016 2.94575) (-2.44792e-16 -0.589994 3.07099) (-1.04721e-16 -0.63689 3.24135) (4.4424e-17 -0.694074 3.39482) (6.25787e-17 -0.884035 3.69776) (-2.54498e-17 -0.220675 1.06888) (-3.61564e-15 -0.376421 1.54991) (-3.45447e-15 -0.409849 1.69742) (-8.93611e-15 -0.24716 1.63599) (-6.34523e-15 0.0337029 1.1866) (-1.37635e-14 0.390094 0.18087) (-4.18584e-15 0.507265 0.113213) (-4.41835e-15 0.583882 -0.307225) (-4.33039e-15 0.85986 -1.3269) (-8.26575e-15 1.22599 -2.04952) (-1.16456e-14 1.55208 -2.67854) (-1.34091e-14 1.92859 -3.2013) (-1.17827e-14 2.30075 -3.60499) (-7.79347e-15 2.64709 -3.87997) (-3.87067e-15 2.87068 -3.99293) (-1.09343e-15 2.79965 -3.92396) (6.36974e-16 2.25449 -3.63589) (1.47115e-15 1.37816 -3.24944) (-3.79563e-16 0.769113 -3.09689) (-1.26218e-15 0.459446 -3.11291) (-8.40476e-16 -0.0761487 -2.95077) (-6.99081e-16 -0.403323 -2.77917) (-6.16112e-16 -1.58062 -2.41208) (-2.2926e-16 -2.26343 -2.24046) (-1.78324e-16 -3.06109 -1.95102) (3.31908e-16 -3.76068 -1.63315) (4.24916e-16 -4.29197 -1.24404) (-1.16586e-15 -4.64301 -0.819975) (4.98317e-16 -4.83818 -0.378003) (-2.8465e-16 -4.91763 0.0392095) (3.64088e-16 -4.91333 0.468177) (1.59028e-15 -4.83737 0.851489) (6.94585e-16 -4.68444 1.19998) (1.32406e-15 -4.44334 1.46965) (-1.26288e-15 -4.11533 1.64222) (-1.88638e-15 -3.72465 1.74272) (-5.15533e-16 -3.31378 1.78376) (3.51292e-18 -2.92437 1.80132) (-3.68592e-16 -2.56372 1.79972) (-1.35681e-16 -2.27484 1.78907) (-1.189e-16 -2.00215 1.75668) (-9.78548e-17 -1.68461 1.66815) (-5.87949e-17 -1.27682 1.47509) (-4.12719e-17 -0.867908 1.23956) (-3.11389e-17 -0.692579 1.18484) (-2.71335e-17 -0.824157 1.38509) (-2.52173e-17 -0.958551 1.56053) (-2.46955e-17 -0.905732 1.51137) (-2.45904e-17 -0.777848 1.26501) (-2.38755e-17 -0.775459 1.0345) (-2.2667e-17 -0.865288 0.96352) (-2.1623e-17 -0.924116 0.971813) (-2.07798e-17 -0.908142 0.965973) (-2.35273e-17 -0.855136 0.92629) (6.15953e-18 -0.808026 0.86622) (-2.60678e-16 -0.798314 0.852498) (-1.07942e-15 -0.80172 0.910256) (6.41454e-16 -0.803508 1.0277) (-8.19055e-15 -0.797302 1.18934) (2.0825e-16 -0.779091 1.37957) (-4.65272e-16 -0.746181 1.59141) (-1.29906e-15 -0.706958 1.82278) (-1.12009e-15 -0.667963 2.07119) (1.93248e-15 -0.631485 2.31473) (9.7929e-17 -0.596583 2.52279) (1.53345e-15 -0.558912 2.67206) (1.81941e-15 -0.515607 2.76183) (1.36761e-15 -0.468384 2.8171) (2.76127e-16 -0.424815 2.8763) (2.13618e-16 -0.394088 2.96787) (-7.67268e-16 -0.379722 3.09001) (-9.74458e-16 -0.377715 3.20976) (-1.89103e-15 -0.382461 3.2879) (-1.68096e-15 -0.387088 3.30169) (-1.16718e-15 -0.389429 3.24798) (-8.552e-16 -0.390303 3.13863) (1.30102e-16 -0.391808 2.99042) (2.71937e-15 -0.396133 2.82047) (3.01953e-16 -0.405778 2.64297) (9.65398e-16 -0.422737 2.4739) (1.35552e-15 -0.446773 2.32841) (1.09414e-15 -0.477751 2.22163) (7.16532e-16 -0.514365 2.16521) (-1.91342e-15 -0.555157 2.16452) (1.15357e-15 -0.596625 2.21184) (6.06408e-16 -0.633482 2.29086) (3.32676e-16 -0.659661 2.38099) (1.11777e-16 -0.671599 2.46589) (-1.30126e-15 -0.669431 2.53761) (-7.93069e-18 -0.656617 2.59576) (8.4634e-17 -0.638127 2.64362) (1.52102e-16 -0.618682 2.68555) (-4.55941e-18 -0.601669 2.72877) (-3.79151e-17 -0.590576 2.78419) (4.67435e-16 -0.590469 2.86588) (5.43531e-17 -0.605966 2.98538) (1.96872e-16 -0.640981 3.14159) (-8.46647e-17 -0.693755 3.32987) (7.77972e-17 -0.759116 3.49414) (8.13822e-17 -0.942211 3.78476) (5.44842e-16 -0.265741 1.11499) (-4.44276e-15 -0.401514 1.5627) (-3.52991e-15 -0.420732 1.65682) (-6.10682e-15 -0.2426 1.5759) (-7.27764e-15 0.0572202 1.08224) (-1.66706e-14 0.369037 0.209665) (-1.5977e-14 0.50878 0.087376) (-4.32602e-15 0.615485 -0.485989) (-4.9444e-15 0.92177 -1.47935) (-9.07799e-15 1.27664 -2.181) (-1.25083e-14 1.59907 -2.78313) (-1.39741e-14 1.96959 -3.26969) (-1.19552e-14 2.33542 -3.63644) (-7.73601e-15 2.6725 -3.87626) (-3.7259e-15 2.88236 -3.95883) (-8.5723e-16 2.7902 -3.86544) (7.47376e-16 2.22629 -3.56713) (1.9586e-15 1.35385 -3.19451) (-6.80775e-16 0.77209 -3.07089) (-1.35698e-15 0.458636 -3.09366) (-8.84836e-16 -0.100219 -2.91489) (-8.55894e-16 -0.490169 -2.72104) (-1.06573e-15 -1.58608 -2.37032) (-2.01324e-16 -2.28395 -2.20288) (-2.42232e-16 -3.09697 -1.92091) (-2.64884e-16 -3.81069 -1.607) (4.02634e-16 -4.35355 -1.22133) (-8.54264e-16 -4.70972 -0.801219) (9.67208e-16 -4.90868 -0.363622) (-4.57848e-16 -4.98956 0.0489851) (5.33586e-16 -4.98564 0.472867) (1.616e-15 -4.90456 0.84963) (4.21764e-16 -4.7435 1.18947) (-1.3432e-15 -4.49017 1.44827) (1.29374e-15 -4.14634 1.61113) (-1.51264e-15 -3.74244 1.70606) (-3.21172e-16 -3.32601 1.74567) (-3.52088e-15 -2.93259 1.76479) (-2.22723e-16 -2.57048 1.76402) (-1.15669e-16 -2.27936 1.75149) (-3.18374e-17 -1.99946 1.71303) (-2.72882e-17 -1.66734 1.61322) (-2.4035e-17 -1.24911 1.42251) (-2.62603e-17 -0.847647 1.22142) (-2.57441e-17 -0.708421 1.22166) (-2.40676e-17 -0.859388 1.43545) (-2.34337e-17 -0.969319 1.57388) (-2.40404e-17 -0.877646 1.46261) (-2.47211e-17 -0.739008 1.16073) (-2.40786e-17 -0.764993 0.934672) (-2.26361e-17 -0.883895 0.901322) (-2.1789e-17 -0.945102 0.924109) (-2.15733e-17 -0.918683 0.91611) (-2.53845e-17 -0.859107 0.877846) (1.93949e-17 -0.816579 0.831431) (-2.3615e-16 -0.81847 0.846456) (4.95124e-16 -0.831328 0.93914) (6.64451e-16 -0.839177 1.0886) (-2.47615e-16 -0.834083 1.27732) (-1.02884e-15 -0.815283 1.49183) (-8.63685e-16 -0.783507 1.72493) (-2.61547e-15 -0.746657 1.96834) (-8.09426e-16 -0.709537 2.21028) (1.80032e-15 -0.671989 2.4251) (2.11545e-15 -0.631619 2.59117) (2.18356e-15 -0.585379 2.70361) (1.69284e-15 -0.534536 2.77885) (6.39976e-16 -0.483704 2.84711) (8.16456e-17 -0.441542 2.93576) (-2.94969e-16 -0.414849 3.05001) (-7.46054e-16 -0.402009 3.16607) (-1.10636e-15 -0.396939 3.2457) (5.32438e-16 -0.395056 3.26243) (-1.1428e-15 -0.392012 3.212) (-5.51552e-16 -0.387695 3.10413) (3.97057e-17 -0.383812 2.95569) (9.47008e-17 -0.382527 2.78239) (1.08746e-15 -0.386596 2.59848) (1.10857e-15 -0.399082 2.41654) (1.24237e-15 -0.421921 2.2536) (1.45076e-15 -0.455014 2.12698) (1.49747e-15 -0.497306 2.05253) (8.07913e-16 -0.545576 2.03851) (-1.45922e-17 -0.595969 2.08207) (-2.68971e-15 -0.642721 2.16613) (3.0067e-16 -0.679778 2.26887) (-1.38909e-17 -0.702056 2.36954) (-7.22653e-17 -0.708096 2.45528) (1.43236e-15 -0.700094 2.52262) (2.29684e-16 -0.682787 2.57501) (2.59232e-16 -0.661702 2.61919) (2.48995e-16 -0.641691 2.6632) (-1.32159e-16 -0.626515 2.71806) (2.0697e-16 -0.6204 2.79661) (7.9843e-17 -0.628063 2.91014) (-2.73964e-17 -0.652198 3.06122) (-8.97759e-17 -0.693923 3.23935) (5.34251e-16 -0.749858 3.43311) (1.43504e-16 -0.82121 3.59837) (1.10678e-16 -0.995296 3.86715) (1.33435e-15 -0.309406 1.16996) (-5.62646e-15 -0.421234 1.57407) (-1.33881e-15 -0.428275 1.61296) (-4.10084e-15 -0.233802 1.50759) (-1.8646e-14 0.0970447 0.944609) (-2.00832e-14 0.428829 0.0795467) (-9.117e-15 0.532163 -0.00238371) (-4.21341e-15 0.656122 -0.675166) (-5.64604e-15 0.981224 -1.62667) (-9.9073e-15 1.32569 -2.30486) (-1.33332e-14 1.64483 -2.87773) (-1.44816e-14 2.00809 -3.32865) (-1.20854e-14 2.3673 -3.66016) (-7.65313e-15 2.6958 -3.86695) (-3.61687e-15 2.8919 -3.92108) (-8.06172e-16 2.77974 -3.80561) (9.32675e-16 2.19911 -3.49953) (8.14903e-16 1.33272 -3.14258) (-1.06457e-15 0.776318 -3.04626) (-1.41419e-15 0.463653 -3.07376) (-7.72448e-16 -0.0946568 -2.88785) (-1.29416e-15 -0.388734 -2.72729) (-1.333e-15 -1.59215 -2.32945) (-3.29266e-17 -2.30284 -2.1659) (-3.21246e-16 -3.13225 -1.89084) (-6.25952e-16 -3.85953 -1.58045) (-2.20762e-15 -4.41389 -1.19796) (-9.06677e-16 -4.7752 -0.781664) (1.22546e-15 -4.97827 -0.348608) (-2.25317e-16 -5.06051 0.059088) (-1.93368e-15 -5.05682 0.477731) (-3.96193e-16 -4.9702 0.847679) (-1.98039e-16 -4.80268 1.17919) (-1.45396e-15 -4.53421 1.42713) (3.67972e-17 -4.1747 1.58128) (7.71934e-17 -3.76083 1.67197) (-8.59489e-17 -3.34013 1.71103) (-1.82174e-16 -2.93937 1.73076) (-3.04939e-17 -2.5792 1.73181) (-3.01358e-17 -2.28404 1.7174) (-1.98531e-17 -1.99506 1.67234) (-2.08526e-17 -1.64849 1.56371) (-2.36232e-17 -1.22149 1.38166) (-2.42985e-17 -0.830339 1.21669) (-2.38505e-17 -0.728589 1.26429) (-2.35064e-17 -0.89052 1.47852) (-2.39343e-17 -0.968774 1.57366) (-2.48835e-17 -0.837089 1.39748) (-2.53707e-17 -0.693656 1.0475) (-2.44317e-17 -0.757684 0.84599) (-2.28425e-17 -0.906276 0.855806) (-2.19914e-17 -0.964742 0.88791) (-2.14263e-17 -0.925902 0.876581) (-2.53598e-17 -0.862883 0.845156) (2.23522e-17 -0.828436 0.820054) (-2.66395e-16 -0.840609 0.868521) (1.19806e-15 -0.860822 0.995567) (4.84321e-16 -0.874501 1.17332) (-4.20543e-16 -0.871899 1.38404) (-4.04037e-15 -0.853355 1.61521) (-5.87558e-16 -0.822802 1.85842) (5.17358e-15 -0.787175 2.09992) (4.99792e-16 -0.749175 2.32326) (1.58875e-15 -0.707718 2.50719) (2.30173e-15 -0.660652 2.64334) (1.85811e-15 -0.606875 2.74065) (1.03696e-15 -0.551104 2.82199) (-9.9977e-17 -0.499395 2.91126) (-7.56427e-16 -0.459054 3.01764) (-2.58047e-16 -0.434078 3.1265) (-1.49453e-15 -0.419325 3.20553) (-1.55052e-15 -0.408594 3.22491) (-7.50967e-16 -0.39953 3.17618) (-3.68091e-16 -0.390102 3.07046) (6.53504e-17 -0.381115 2.92361) (2.72159e-16 -0.374248 2.75104) (4.33822e-16 -0.371825 2.56383) (1.30684e-15 -0.377371 2.37321) (1.59683e-15 -0.394842 2.19278) (-2.08702e-15 -0.426089 2.04354) (1.42259e-15 -0.470657 1.94574) (1.29307e-15 -0.525681 1.91365) (4.75699e-16 -0.585277 1.94779) (2.97395e-16 -0.643095 2.03435) (2.47309e-15 -0.69186 2.1481) (-1.59416e-16 -0.726 2.26537) (-2.71237e-15 -0.742252 2.36857) (6.85959e-17 -0.74141 2.44992) (-1.26229e-15 -0.727475 2.51096) (2.5753e-16 -0.706179 2.5594) (4.5782e-16 -0.683522 2.60569) (1.69429e-16 -0.66451 2.66113) (-1.73768e-16 -0.653172 2.73816) (-2.70851e-16 -0.653696 2.84737) (7.75091e-17 -0.66929 2.99277) (2.93011e-18 -0.700266 3.16683) (-1.56221e-16 -0.745781 3.35349) (1.69364e-16 -0.802884 3.54043) (2.11523e-16 -0.878893 3.69907) (8.38789e-17 -1.04275 3.94005) (-6.25875e-16 -0.349944 1.23354) (-2.6312e-15 -0.436994 1.5857) (-5.4449e-15 -0.434285 1.56535) (7.64543e-16 -0.226154 1.43683) (-1.45166e-14 0.104776 0.796566) (-1.44106e-14 0.423871 0.0671188) (-1.26836e-14 0.544047 -0.10342) (-4.25176e-15 0.694791 -0.860863) (-6.37407e-15 1.0371 -1.76709) (-1.07354e-14 1.37177 -2.41981) (-1.41097e-14 1.68882 -2.96249) (-1.49261e-14 2.04406 -3.37893) (-1.21833e-14 2.39653 -3.67696) (-7.57263e-15 2.71683 -3.85276) (-3.46692e-15 2.89918 -3.88038) (-5.64806e-16 2.76854 -3.74523) (1.04383e-15 2.17311 -3.43368) (8.6593e-16 1.31538 -3.09426) (-1.33291e-15 0.783428 -3.02564) (-1.29044e-15 0.467882 -3.05758) (-4.76587e-16 -0.10577 -2.85517) (-4.23153e-16 -0.477591 -2.66544) (-4.31126e-17 -1.59802 -2.28834) (-1.50116e-17 -2.32389 -2.12742) (-2.57439e-16 -3.16784 -1.85999) (1.79781e-16 -3.90806 -1.55314) (2.5888e-16 -4.47321 -1.17397) (-5.28261e-16 -4.83928 -0.761741) (3.80479e-16 -5.04601 -0.333602) (-5.40475e-16 -5.13008 0.0691805) (7.0638e-17 -5.12632 0.482513) (2.89233e-16 -5.03473 0.845482) (-2.80206e-16 -4.85965 1.1687) (-9.32765e-16 -4.57461 1.40632) (-3.40013e-16 -4.20086 1.5522) (-3.24965e-16 -3.77949 1.63951) (-5.8188e-17 -3.35695 1.68004) (1.57975e-17 -2.94703 1.69987) (-4.68163e-18 -2.58767 1.70186) (-6.98962e-18 -2.28845 1.68634) (-1.73429e-17 -1.98919 1.635) (-2.15563e-17 -1.62823 1.52014) (-2.31472e-17 -1.19752 1.35231) (-2.403e-17 -0.821672 1.224) (-2.43922e-17 -0.75291 1.30799) (-2.44716e-17 -0.916919 1.51119) (-2.48112e-17 -0.957998 1.55883) (-2.54068e-17 -0.787027 1.31727) (-2.53992e-17 -0.649222 0.931619) (-2.42535e-17 -0.759591 0.773789) (-2.28533e-17 -0.931604 0.825628) (-2.20423e-17 -0.983745 0.862159) (-2.06165e-17 -0.932646 0.848573) (-2.52152e-17 -0.868621 0.829564) (1.99226e-17 -0.844185 0.831546) (-2.55662e-16 -0.866077 0.913991) (1.44026e-15 -0.8933 1.07089) (-1.39318e-16 -0.912564 1.27093) (-8.72379e-16 -0.912288 1.49706) (4.16563e-15 -0.894201 1.73737) (1.14662e-15 -0.863798 1.98163) (4.02958e-15 -0.827234 2.21263) (2.48494e-15 -0.785909 2.41468) (5.01476e-15 -0.739129 2.57492) (1.56045e-15 -0.685454 2.69616) (1.12333e-15 -0.625978 2.79352) (7.22857e-16 -0.567639 2.88723) (-1.68391e-16 -0.516316 2.98906) (-6.94596e-16 -0.476722 3.09049) (2.05672e-16 -0.45022 3.1662) (-3.56624e-15 -0.430767 3.18844) (-1.06919e-15 -0.413506 3.14284) (-4.22652e-16 -0.398172 3.03747) (2.02024e-16 -0.384102 2.89246) (5.86408e-16 -0.371929 2.72253) (5.57293e-16 -0.362927 2.53681) (8.77599e-16 -0.360432 2.34099) (1.56125e-15 -0.369347 2.14641) (1.42679e-15 -0.394718 1.97244) (1.48836e-15 -0.437823 1.84649) (1.38283e-15 -0.496418 1.78969) (8.56795e-16 -0.564687 1.80939) (4.1023e-16 -0.633737 1.8937) (-7.89122e-17 -0.69542 2.01774) (5.06398e-16 -0.742373 2.15189) (5.81306e-16 -0.77062 2.27479) (3.572e-16 -0.779146 2.37448) (8.55756e-17 -0.770956 2.44924) (1.63756e-15 -0.751551 2.50584) (8.21627e-16 -0.72739 2.55617) (6.03797e-16 -0.70476 2.61366) (8.58064e-17 -0.688574 2.6906) (-3.48245e-17 -0.682637 2.79709) (9.51389e-17 -0.690174 2.93744) (6.44106e-16 -0.712244 3.10668) (3.14613e-16 -0.747308 3.2899) (2.03172e-16 -0.793957 3.47116) (-6.88542e-17 -0.851369 3.64204) (1.75282e-16 -0.931541 3.78974) (-1.96357e-17 -1.08464 3.99999) (1.59156e-15 -0.385315 1.29698) (1.50982e-15 -0.448733 1.58576) (-1.913e-15 -0.438088 1.50449) (-2.77476e-15 -0.211841 1.35207) (-1.34637e-16 0.140189 0.534399) (-1.22492e-14 0.46175 -0.031121) (-1.09489e-14 0.567076 -0.248929) (-4.46062e-15 0.735805 -1.04228) (-7.11735e-15 1.09051 -1.89955) (-1.1549e-14 1.41677 -2.52581) (-1.48289e-14 1.73048 -3.03765) (-1.53063e-14 2.07764 -3.4212) (-1.22438e-14 2.42333 -3.68732) (-7.47752e-15 2.73538 -3.83382) (-3.22195e-15 2.90426 -3.83681) (-2.46701e-16 2.75596 -3.68405) (1.09092e-15 2.14769 -3.36913) (4.30931e-16 1.30043 -3.04882) (-1.48891e-15 0.791556 -3.00625) (-8.8036e-16 0.473858 -3.03856) (-8.23164e-16 -0.0976261 -2.82804) (-4.26128e-16 -0.38161 -2.67194) (-6.23504e-17 -1.60492 -2.24794) (-3.91682e-17 -2.34198 -2.09) (-2.35499e-16 -3.20107 -1.82941) (1.58991e-16 -3.95584 -1.5252) (3.15124e-16 -4.53103 -1.1492) (-6.99735e-16 -4.90186 -0.740923) (5.65246e-16 -5.11215 -0.318083) (1.85094e-15 -5.19935 0.0797643) (-1.42409e-16 -5.19507 0.487477) (6.55402e-16 -5.09815 0.84342) (1.40176e-15 -4.91296 1.15812) (1.45067e-15 -4.61225 1.3861) (-1.48262e-16 -4.22695 1.52472) (-4.02961e-16 -3.79761 1.60888) (-4.5758e-17 -3.37345 1.652) (-1.48985e-17 -2.9551 1.67244) (-2.23191e-17 -2.59344 1.67427) (-2.22498e-17 -2.28931 1.65778) (-2.28583e-17 -1.97945 1.6009) (-2.35774e-17 -1.60621 1.48284) (-2.45161e-17 -1.17402 1.331) (-2.50683e-17 -0.816463 1.23781) (-2.49678e-17 -0.777539 1.34982) (-2.47557e-17 -0.936711 1.53392) (-2.49636e-17 -0.935954 1.53105) (-2.54077e-17 -0.725238 1.22324) (-2.50519e-17 -0.605541 0.819202) (-2.37501e-17 -0.768679 0.722872) (-2.25868e-17 -0.956471 0.809527) (-2.19709e-17 -0.998918 0.844233) (-2.01077e-17 -0.937567 0.831197) (-2.60237e-17 -0.875304 0.829753) (9.7789e-18 -0.862786 0.861217) (-8.72155e-17 -0.895055 0.974626) (5.24491e-16 -0.928849 1.15534) (-8.83077e-16 -0.953162 1.37204) (-7.15535e-16 -0.954856 1.60846) (-2.42695e-16 -0.937262 1.85251) (3.00442e-15 -0.905702 2.09217) (3.14219e-15 -0.866036 2.30987) (1.48442e-15 -0.819522 2.49401) (-3.35595e-16 -0.766803 2.63998) (9.98961e-16 -0.70735 2.75673) (-1.09525e-16 -0.644141 2.8587) (-1.49777e-15 -0.584858 2.95858) (-2.18936e-16 -0.533363 3.05512) (-6.2056e-16 -0.492331 3.12798) (1.16753e-16 -0.461315 3.15155) (-3.03898e-16 -0.43561 3.1111) (-5.86581e-16 -0.412411 3.00845) (-2.22926e-16 -0.392458 2.86259) (5.37555e-16 -0.375196 2.69508) (2.8275e-16 -0.360548 2.51353) (-2.37245e-15 -0.349807 2.31858) (1.10051e-15 -0.348579 2.11347) (1.0405e-15 -0.364018 1.91608) (1.50145e-15 -0.40156 1.75676) (-1.62967e-15 -0.460406 1.66867) (1.08445e-15 -0.534449 1.66688) (3.61195e-15 -0.614349 1.74469) (-3.20775e-16 -0.688978 1.87588) (-3.05239e-16 -0.749913 2.0281) (-7.33101e-16 -0.791248 2.17255) (6.08568e-16 -0.811297 2.29375) (4.34619e-16 -0.811346 2.38687) (5.83378e-17 -0.796306 2.45643) (1.29347e-15 -0.772778 2.51421) (6.64214e-16 -0.747542 2.57518) (4.39624e-16 -0.726766 2.65345) (1.46253e-16 -0.714836 2.75874) (1.7852e-16 -0.714712 2.89521) (2.18244e-16 -0.728137 3.05921) (7.69547e-16 -0.754179 3.23856) (5.26914e-16 -0.790637 3.4161) (-2.69763e-16 -0.836879 3.58093) (1.26021e-17 -0.895097 3.73079) (-3.60821e-17 -0.979441 3.86619) (-5.63309e-17 -1.12151 4.04496) (-1.03818e-15 -0.413694 1.34973) (4.28263e-15 -0.457165 1.5757) (1.3313e-15 -0.439571 1.44099) (-2.04644e-15 -0.193335 1.26189) (-1.28796e-14 0.132307 0.327273) (-2.15099e-14 0.463353 -0.0871507) (-9.19326e-15 0.584041 -0.405915) (-4.81308e-15 0.779943 -1.21453) (-7.86376e-15 1.1422 -2.02338) (-1.23352e-14 1.45963 -2.6224) (-1.54838e-14 1.76919 -3.10373) (-1.56194e-14 2.10836 -3.45605) (-1.22515e-14 2.44786 -3.69201) (-7.3289e-15 2.75127 -3.81077) (-2.96226e-15 2.90693 -3.79099) (5.97557e-17 2.74217 -3.62273) (1.1403e-15 2.12336 -3.30651) (1.91156e-16 1.2888 -3.00677) (-1.97523e-15 0.803246 -2.99041) (-1.23263e-16 0.477418 -3.0213) (5.17803e-16 -0.106811 -2.79397) (-1.33303e-15 -0.468755 -2.60223) (-2.33452e-16 -1.60844 -2.20801) (2.00915e-17 -2.36005 -2.05167) (-2.58496e-16 -3.23364 -1.79846) (1.74435e-17 -4.00248 -1.4967) (-1.04749e-15 -4.58739 -1.12369) (-3.51059e-15 -4.96237 -0.719791) (-3.96893e-16 -5.17708 -0.302551) (-1.52036e-16 -5.26861 0.090541) (-8.59875e-17 -5.26286 0.492648) (-3.12831e-15 -5.15938 0.841422) (-1.47474e-15 -4.96386 1.1477) (-6.713e-18 -4.64805 1.36629) (-9.42694e-17 -4.25324 1.49866) (-3.52366e-16 -3.81602 1.58035) (-6.27885e-17 -3.38839 1.62635) (-2.66682e-17 -2.96281 1.64814) (-2.46937e-17 -2.59704 1.649) (-2.20183e-17 -2.28722 1.6315) (-2.3404e-17 -1.96942 1.5704) (-2.44818e-17 -1.58839 1.45259) (-2.50265e-17 -1.15401 1.31666) (-2.5107e-17 -0.81834 1.25715) (-2.47778e-17 -0.804998 1.38779) (-2.46286e-17 -0.950977 1.54528) (-2.4986e-17 -0.904038 1.48995) (-2.53559e-17 -0.657444 1.11855) (-2.46282e-17 -0.570508 0.718201) (-2.32016e-17 -0.787043 0.693633) (-2.22581e-17 -0.98329 0.804196) (-2.1992e-17 -1.0121 0.832949) (-2.04417e-17 -0.942887 0.824497) (-2.83884e-17 -0.884952 0.843804) (6.24273e-18 -0.885181 0.903918) (6.59727e-18 -0.927433 1.04332) (-5.93045e-16 -0.966742 1.24219) (-9.64734e-16 -0.99571 1.4718) (-2.61747e-16 -0.998819 1.71571) (5.66979e-18 -0.980984 1.9605) (1.64444e-15 -0.947196 2.19327) (2.04873e-15 -0.903108 2.39842) (1.0051e-15 -0.850499 2.56942) (2.94591e-16 -0.79196 2.70732) (6.74447e-16 -0.727763 2.82226) (-6.63957e-16 -0.661977 2.92385) (-7.32485e-16 -0.60206 3.01618) (-6.45075e-16 -0.548842 3.08802) (-3.67685e-16 -0.503873 3.11515) (-5.20442e-16 -0.466482 3.07995) (-2.09671e-16 -0.434465 2.98312) (2.50554e-16 -0.407111 2.83883) (6.89992e-17 -0.384598 2.66966) (8.34581e-16 -0.365029 2.49165) (2.94263e-16 -0.347782 2.30194) (-7.59799e-16 -0.335525 2.09459) (-4.26605e-18 -0.337367 1.87715) (1.3515e-15 -0.363614 1.68253) (1.57928e-15 -0.41823 1.55419) (1.12596e-16 -0.495807 1.52343) (-3.17958e-15 -0.584747 1.58837) (3.1558e-16 -0.672738 1.72368) (-5.45415e-16 -0.748204 1.8923) (-8.94744e-17 -0.804041 2.06083) (-3.0491e-16 -0.8368 2.20619) (-2.67518e-15 -0.847306 2.32105) (1.33923e-16 -0.838976 2.40806) (6.06781e-17 -0.818302 2.4775) (1.38984e-15 -0.79247 2.54477) (-8.06857e-17 -0.768081 2.62547) (6.39763e-17 -0.750643 2.73086) (-4.58566e-18 -0.743533 2.86486) (3.67259e-16 -0.74843 3.02413) (4.64742e-16 -0.765598 3.19851) (2.22518e-16 -0.792896 3.37272) (4.45684e-18 -0.828802 3.53236) (-6.0071e-17 -0.874313 3.67437) (-7.11879e-17 -0.934686 3.80254) (-6.52422e-17 -1.02314 3.92633) (-6.52853e-17 -1.15408 4.0739) (1.28362e-16 -0.437912 1.39199) (4.66104e-17 -0.462259 1.55559) (5.11132e-16 -0.435621 1.38081) (-5.30105e-15 -0.165916 1.14924) (-1.89919e-14 0.175018 0.0279788) (-1.53062e-14 0.472246 -0.191386) (-7.93976e-15 0.606366 -0.581739) (-5.25242e-15 0.827209 -1.37708) (-8.6033e-15 1.19237 -2.13847) (-1.30823e-14 1.50063 -2.70989) (-1.60664e-14 1.80611 -3.16154) (-1.58593e-14 2.13708 -3.48423) (-1.22031e-14 2.47018 -3.69136) (-7.1417e-15 2.76469 -3.78389) (-2.7475e-15 2.90762 -3.74306) (1.68043e-16 2.72756 -3.56119) (1.15332e-15 2.10044 -3.24565) (1.37876e-16 1.28034 -2.96765) (-1.20144e-15 0.814584 -2.97439) (-5.04092e-16 0.481989 -3.00046) (5.32058e-16 -0.097703 -2.76766) (-4.4327e-17 -0.384306 -2.6029) (-2.57408e-16 -1.60853 -2.16908) (8.05701e-17 -2.37625 -2.01429) (-2.66694e-16 -3.26381 -1.76769) (-4.14771e-18 -4.0457 -1.46813) (2.64656e-17 -4.64219 -1.09725) (-8.74939e-16 -5.02134 -0.697799) (2.37022e-15 -5.2424 -0.286351) (1.63348e-17 -5.33761 0.10181) (-8.20721e-17 -5.32975 0.498372) (-1.15244e-15 -5.22083 0.840181) (-4.15767e-16 -5.01289 1.13766) (-1.37434e-16 -4.68379 1.34764) (-1.53784e-17 -4.27883 1.47419) (-3.73362e-17 -3.83496 1.55462) (-4.15868e-17 -3.40079 1.60315) (-1.20804e-17 -2.96931 1.62671) (-1.96453e-17 -2.6002 1.62675) (-2.35991e-17 -2.28379 1.60761) (-2.43865e-17 -1.95976 1.54309) (-2.4732e-17 -1.57243 1.42844) (-2.48462e-17 -1.1348 1.30711) (-2.48427e-17 -0.822974 1.27832) (-2.46274e-17 -0.831639 1.42055) (-2.45897e-17 -0.956442 1.54654) (-2.49815e-17 -0.86055 1.43749) (-2.51737e-17 -0.58404 1.00686) (-2.41601e-17 -0.541341 0.635322) (-2.28132e-17 -0.809221 0.684038) (-2.21376e-17 -1.00811 0.80593) (-2.22052e-17 -1.02265 0.826432) (-2.10532e-17 -0.949395 0.826377) (-3.12519e-17 -0.899365 0.867629) (2.07628e-17 -0.912263 0.952923) (-1.60905e-16 -0.962962 1.11402) (-1.58196e-16 -1.00726 1.3285) (3.28275e-16 -1.03935 1.56924) (-7.48955e-15 -1.04313 1.81921) (3.22941e-17 -1.02412 2.06289) (2.77735e-15 -0.987275 2.28795) (1.41993e-15 -0.937931 2.48202) (4.75684e-16 -0.879162 2.64262) (-2.30547e-15 -0.815384 2.77337) (9.14831e-16 -0.747571 2.88253) (1.77858e-15 -0.680024 2.97337) (-1.01567e-15 -0.618154 3.04296) (-5.39019e-16 -0.561286 3.07578) (-5.70768e-16 -0.510179 3.05038) (-5.8201e-16 -0.46559 2.96098) (-5.18949e-16 -0.42815 2.82129) (3.20569e-17 -0.398626 2.6517) (-5.54715e-17 -0.374989 2.4717) (8.883e-16 -0.352832 2.28722) (8.27663e-16 -0.332091 2.08526) (-3.42275e-16 -0.319063 1.85937) (8.81239e-17 -0.327911 1.63112) (1.76149e-15 -0.371159 1.45528) (1.14182e-15 -0.447933 1.38269) (-1.97272e-16 -0.545198 1.42742) (-3.19312e-15 -0.645938 1.56169) (-1.22952e-16 -0.736754 1.74462) (1.69776e-16 -0.808003 1.93668) (-3.04385e-15 -0.855058 2.1098) (-1.3928e-16 -0.877257 2.24957) (-6.07597e-16 -0.877886 2.35736) (-1.2041e-17 -0.862244 2.44259) (1.12791e-16 -0.837846 2.51965) (1.17297e-15 -0.811817 2.60496) (1.56978e-16 -0.789951 2.71126) (2.44299e-16 -0.776554 2.84395) (3.30543e-16 -0.773699 2.99977) (5.68691e-16 -0.781801 3.16918) (3.19753e-16 -0.800185 3.33902) (7.11888e-17 -0.826535 3.49525) (-3.0029e-17 -0.861104 3.62961) (-6.05499e-17 -0.906723 3.7473) (-7.08912e-17 -0.971045 3.85608) (-7.42288e-17 -1.06323 3.9694) (-7.28112e-17 -1.18323 4.08624) (-2.49165e-16 -0.457195 1.42454) (-5.1163e-16 -0.464803 1.52713) (1.64685e-16 -0.428379 1.32127) (-3.26541e-15 -0.137712 1.02213) (-1.60443e-14 0.193066 -0.14726) (-1.38782e-14 0.460936 -0.300182) (-7.08828e-15 0.625687 -0.754596) (-5.73855e-15 0.872192 -1.52724) (-9.32286e-15 1.23962 -2.24425) (-1.37788e-14 1.53965 -2.78834) (-1.65714e-14 1.84126 -3.21185) (-1.60294e-14 2.16398 -3.50659) (-1.21129e-14 2.49019 -3.68602) (-6.93553e-15 2.77561 -3.75369) (-2.49439e-15 2.9066 -3.69372) (-2.03353e-16 2.71271 -3.50023) (1.22157e-15 2.07949 -3.18708) (-1.26395e-16 1.27452 -2.93155) (-1.02338e-15 0.826469 -2.96012) (-1.64196e-16 0.487588 -2.98269) (1.08171e-15 -0.103604 -2.73826) (-1.12971e-14 -0.456033 -2.53508) (-2.86927e-16 -1.60687 -2.13009) (1.22889e-16 -2.39402 -1.97585) (-2.74922e-16 -3.29414 -1.7358) (-2.3099e-17 -4.08854 -1.43876) (1.14975e-16 -4.6957 -1.07018) (-3.57997e-16 -5.07924 -0.675492) (8.95607e-16 -5.30794 -0.269926) (-1.56011e-17 -5.40519 0.113209) (-1.05419e-16 -5.39541 0.504149) (1.70764e-15 -5.28177 0.839604) (-1.28246e-16 -5.05888 1.12782) (-2.40904e-16 -4.71872 1.3298) (-3.85752e-17 -4.3031 1.45111) (2.0344e-17 -3.85354 1.53134) (-1.18753e-17 -3.41139 1.58239) (-2.29568e-17 -2.97473 1.60724) (-2.39561e-17 -2.60471 1.60714) (-2.45603e-17 -2.28238 1.58682) (-2.44199e-17 -1.94994 1.51905) (-2.45557e-17 -1.55666 1.40892) (-2.47588e-17 -1.11986 1.30142) (-2.48074e-17 -0.834569 1.30083) (-2.4615e-17 -0.856979 1.44714) (-2.45329e-17 -0.952417 1.53681) (-2.47843e-17 -0.807688 1.37378) (-2.47659e-17 -0.509962 0.893136) (-2.3696e-17 -0.523309 0.575715) (-2.26151e-17 -0.837868 0.689171) (-2.21669e-17 -1.03288 0.810742) (-2.23398e-17 -1.03196 0.823582) (-2.11365e-17 -0.959649 0.835814) (-3.22657e-17 -0.919412 0.898169) (3.0664e-17 -0.943697 1.00531) (-2.20625e-16 -1.00123 1.18508) (1.58561e-15 -1.05061 1.41421) (2.2206e-16 -1.0843 1.66521) (-3.14591e-15 -1.08768 1.91993) (1.63758e-15 -1.06627 2.16092) (2.9132e-15 -1.02566 2.3776) (9.1272e-16 -0.970784 2.56068) (5.3965e-17 -0.906243 2.71028) (-2.15364e-15 -0.837892 2.83042) (4.84968e-16 -0.766791 2.92611) (2.33613e-16 -0.697733 2.99538) (3.5821e-18 -0.631747 3.03075) (-4.25078e-16 -0.569014 3.01819) (-4.6792e-16 -0.510591 2.94323) (1.2203e-16 -0.459034 2.81099) (-1.06946e-17 -0.41776 2.64314) (-1.15328e-15 -0.387952 2.46018) (6.06067e-16 -0.364081 2.27424) (2.18246e-15 -0.338449 2.07974) (2.53679e-16 -0.313294 1.85732) (-9.63965e-16 -0.301512 1.60984) (1.75588e-15 -0.323681 1.38395) (2.47073e-15 -0.390946 1.25593) (7.15499e-16 -0.492707 1.26552) (-1.51346e-15 -0.606928 1.39284) (3.19709e-16 -0.713962 1.58621) (6.50247e-16 -0.802133 1.80008) (1.51927e-16 -0.865214 2.00087) (1.3375e-15 -0.901324 2.16966) (-5.85232e-16 -0.912461 2.30144) (3.18975e-15 -0.904064 2.40538) (2.52054e-16 -0.88288 2.49584) (-1.46693e-17 -0.856837 2.5886) (1.23412e-15 -0.832294 2.69761) (2.63493e-16 -0.81376 2.82974) (4.24511e-16 -0.804069 2.98322) (3.07076e-16 -0.804029 3.14883) (6.76092e-17 -0.813205 3.31399) (-5.4494e-17 -0.830666 3.46641) (-9.1617e-17 -0.854867 3.5964) (-9.91887e-17 -0.888476 3.70325) (-9.64454e-17 -0.935728 3.79884) (-8.96207e-17 -1.00553 3.8919) (-7.97993e-17 -1.10027 3.9952) (-6.97476e-17 -1.20981 4.0815) (-7.58533e-17 -0.472602 1.44648) (2.14206e-15 -0.465118 1.49019) (-1.75387e-16 -0.41778 1.24977) (-3.72989e-15 -0.105573 0.862183) (-1.30552e-14 0.222252 -0.247222) (-1.18939e-14 0.455945 -0.437494) (-6.56589e-15 0.651075 -0.928419) (-6.25648e-15 0.917059 -1.66583) (-1.00139e-14 1.28386 -2.34074) (-1.44206e-14 1.57735 -2.85852) (-1.70007e-14 1.8747 -3.25521) (-1.61353e-14 2.18921 -3.52358) (-1.1986e-14 2.50823 -3.67633) (-6.69768e-15 2.78444 -3.72044) (-2.20062e-15 2.90388 -3.64293) (7.65595e-16 2.69766 -3.43957) (1.20946e-15 2.05988 -3.13027) (-5.18482e-16 1.27063 -2.89748) (-1.54837e-15 0.838668 -2.94535) (6.84045e-16 0.493171 -2.96313) (1.17724e-15 -0.095 -2.71591) (-7.37081e-16 -0.395413 -2.52339) (-2.76951e-16 -1.60685 -2.09081) (1.70745e-16 -2.40927 -1.9385) (-2.76211e-16 -3.32201 -1.70396) (-3.70897e-17 -4.13073 -1.40849) (1.12743e-16 -4.74688 -1.04225) (-5.20149e-16 -5.13689 -0.652255) (1.65612e-16 -5.37277 -0.252951) (-1.21943e-17 -5.47147 0.125154) (-2.50916e-16 -5.4604 0.510379) (-1.85364e-16 -5.33949 0.839271) (-1.16742e-17 -5.10346 1.11878) (-1.70256e-16 -4.75244 1.31289) (-4.46873e-17 -4.32714 1.43006) (-1.67513e-17 -3.87115 1.51064) (-2.20167e-17 -3.42163 1.56441) (-2.59865e-17 -2.98017 1.58977) (-2.49793e-17 -2.60878 1.58934) (-2.44022e-17 -2.28081 1.5688) (-2.42699e-17 -1.93979 1.49854) (-2.45019e-17 -1.5402 1.39237) (-2.48134e-17 -1.10619 1.29801) (-2.48062e-17 -0.847541 1.32373) (-2.45211e-17 -0.876688 1.46785) (-2.43844e-17 -0.937343 1.51758) (-2.44895e-17 -0.745399 1.30094) (-2.42705e-17 -0.436959 0.782894) (-2.32511e-17 -0.515732 0.54138) (-2.24297e-17 -0.86898 0.704056) (-2.20802e-17 -1.0534 0.816815) (-2.21446e-17 -1.03698 0.822607) (-2.06844e-17 -0.970668 0.848353) (-3.14053e-17 -0.943996 0.93105) (3.07093e-17 -0.979903 1.05844) (-3.76687e-16 -1.04409 1.25646) (-5.24442e-15 -1.09774 1.50047) (3.19659e-16 -1.13045 1.76075) (3.22962e-15 -1.13228 2.01836) (1.93918e-15 -1.10746 2.25425) (1.01468e-15 -1.06233 2.46065) (-2.62561e-16 -1.00182 2.6312) (1.68034e-16 -0.9318 2.76691) (-7.27134e-16 -0.859046 2.87107) (2.35498e-15 -0.784136 2.94497) (-2.55179e-15 -0.713077 2.98401) (-2.50506e-16 -0.641846 2.98011) (-8.90135e-16 -0.571404 2.92381) (-1.58124e-16 -0.505107 2.80844) (-1.45529e-16 -0.447325 2.64592) (7.13896e-17 -0.404318 2.46044) (2.36861e-15 -0.375677 2.26881) (1.29369e-15 -0.351223 2.07476) (-9.13204e-16 -0.320402 1.86299) (1.75685e-15 -0.290319 1.61437) (-1.41899e-15 -0.283945 1.35332) (-2.64793e-15 -0.327664 1.15896) (2.63013e-15 -0.425057 1.11363) (9.02487e-17 -0.551209 1.2193) (-1.83009e-15 -0.677138 1.41863) (-1.29988e-15 -0.784582 1.65091) (3.04449e-16 -0.86595 1.87773) (6.92831e-16 -0.918433 2.0759) (-2.74963e-16 -0.942723 2.23635) (-6.89193e-17 -0.943243 2.36239) (7.44881e-16 -0.927262 2.46899) (-1.86865e-16 -0.902449 2.57244) (-2.65011e-16 -0.876402 2.68646) (-1.27469e-15 -0.854231 2.81952) (2.97223e-16 -0.838905 2.97137) (1.91796e-16 -0.831808 3.13421) (4.13683e-17 -0.832771 3.29582) (-6.23904e-17 -0.841064 3.44415) (-9.67613e-17 -0.856176 3.57067) (-1.02129e-16 -0.878024 3.67137) (-1.00162e-16 -0.911871 3.75292) (-9.1761e-17 -0.962361 3.83078) (-8.14584e-17 -1.03844 3.91133) (-7.22266e-17 -1.13394 4.00339) (-6.39752e-17 -1.23446 4.0591) (1.33232e-16 -0.483578 1.45935) (1.01003e-15 -0.462535 1.44621) (-3.58178e-16 -0.40405 1.17242) (-4.10935e-15 -0.0778476 0.680733) (-1.02738e-14 0.208377 -0.175216) (-1.02493e-14 0.453534 -0.576697) (-6.28467e-15 0.675519 -1.09081) (-6.79207e-15 0.959693 -1.79181) (-1.06712e-14 1.32542 -2.42794) (-1.50037e-14 1.61417 -2.9209) (-1.73525e-14 1.90608 -3.29229) (-1.61724e-14 2.21261 -3.53574) (-1.18126e-14 2.52389 -3.66276) (-6.4249e-15 2.79132 -3.68474) (-1.88012e-15 2.90024 -3.59146) (8.99041e-16 2.6828 -3.37986) (1.1391e-15 2.04186 -3.07549) (-7.62166e-16 1.27067 -2.86618) (3.13362e-16 0.853471 -2.93354) (1.01394e-15 0.4995 -2.94824) (9.72471e-16 -0.0998085 -2.69008) (-6.30755e-17 -0.456289 -2.45933) (-3.26377e-16 -1.60591 -2.05134) (2.87908e-16 -2.42501 -1.90012) (-2.75901e-16 -3.34807 -1.67165) (-5.0148e-17 -4.1717 -1.37747) (1.37726e-16 -4.79498 -1.01408) (-4.44418e-16 -5.1939 -0.628754) (-5.30422e-18 -5.43582 -0.235944) (-2.75073e-17 -5.5367 0.137352) (-1.72452e-16 -5.52406 0.516987) (-2.57864e-18 -5.3941 0.839083) (-1.36323e-17 -5.14634 1.1101) (4.56886e-17 -4.7841 1.29663) (-1.7888e-17 -4.35079 1.41094) (-2.93957e-17 -3.88799 1.49236) (-2.67895e-17 -3.43292 1.54902) (-2.51201e-17 -2.98799 1.57475) (-2.43652e-17 -2.61241 1.57341) (-2.41786e-17 -2.27753 1.55269) (-2.42184e-17 -1.93182 1.48175) (-2.45207e-17 -1.52536 1.37889) (-2.48692e-17 -1.09642 1.2967) (-2.47428e-17 -0.863368 1.34592) (-2.43201e-17 -0.89347 1.48242) (-2.41773e-17 -0.913885 1.48799) (-2.42529e-17 -0.67849 1.21995) (-2.38842e-17 -0.373407 0.684172) (-2.28747e-17 -0.520703 0.531166) (-2.21852e-17 -0.902841 0.724172) (-2.18406e-17 -1.07207 0.822422) (-2.17989e-17 -1.04392 0.823282) (-2.02425e-17 -0.986094 0.86304) (-2.97726e-17 -0.973903 0.966285) (2.91255e-17 -1.02034 1.11407) (-9.41843e-17 -1.09078 1.33038) (-9.50638e-16 -1.14715 1.5888) (5.98037e-15 -1.17708 1.85605) (8.50071e-16 -1.17662 2.11301) (-3.09781e-15 -1.14808 2.34095) (-4.49993e-16 -1.09772 2.53482) (7.10876e-16 -1.03136 2.69032) (2.42615e-16 -0.955735 2.80815) (-6.06249e-16 -0.877963 2.89024) (2.07925e-15 -0.798835 2.9353) (7.55271e-17 -0.724128 2.93937) (-3.04408e-16 -0.647307 2.89815) (-5.43514e-16 -0.568281 2.80601) (-6.0457e-16 -0.493686 2.66072) (3.34999e-16 -0.430669 2.47635) (3.17831e-16 -0.388208 2.27706) (1.1493e-16 -0.362062 2.07584) (6.13663e-16 -0.33593 1.86899) (7.50678e-16 -0.298052 1.63469) (1.06917e-17 -0.264381 1.36275) (-2.13131e-16 -0.270921 1.11207) (3.78354e-16 -0.344971 0.989275) (-5.18581e-16 -0.474575 1.05018) (-1.78696e-15 -0.620056 1.24295) (-1.34465e-15 -0.751199 1.49048) (-7.41805e-16 -0.854245 1.7402) (-8.0863e-16 -0.926224 1.96629) (-2.25049e-15 -0.967076 2.15619) (3.6181e-16 -0.979843 2.3094) (-2.1075e-16 -0.971075 2.43543) (-3.16799e-16 -0.949348 2.55195) (1.839e-15 -0.922596 2.67381) (-7.62857e-17 -0.897489 2.8097) (2.85171e-16 -0.877622 2.96131) (1.08242e-16 -0.864551 3.12222) (-4.61104e-17 -0.858493 3.28136) (-9.71661e-17 -0.858763 3.42688) (-1.10248e-16 -0.864825 3.54993) (-1.14216e-16 -0.877115 3.64703) (-1.0757e-16 -0.897423 3.71994) (-9.65821e-17 -0.933265 3.78118) (-8.47803e-17 -0.988264 3.84584) (-7.428e-17 -1.07046 3.91531) (-6.60196e-17 -1.16436 3.9931) (-5.88592e-17 -1.25784 4.01823) (7.5026e-16 -0.490752 1.46234) (1.50807e-15 -0.457937 1.39514) (2.8079e-15 -0.381523 1.08618) (-4.67651e-15 -0.0328242 0.399752) (-9.44473e-15 0.232726 -0.30321) (-8.96355e-15 0.462249 -0.731145) (-6.18366e-15 0.703715 -1.24595) (-7.33234e-15 1.00106 -1.90599) (-1.12886e-14 1.3662 -2.50636) (-1.55192e-14 1.65017 -2.97609) (-1.76171e-14 1.93594 -3.32379) (-1.61309e-14 2.23305 -3.54311) (-1.15816e-14 2.5376 -3.64565) (-6.1199e-15 2.7969 -3.64686) (-1.49175e-15 2.89567 -3.53932) (2.01291e-15 2.66825 -3.32094) (1.06417e-15 2.02589 -3.02255) (-8.4664e-16 1.27299 -2.8372) (-4.41912e-16 0.868798 -2.92287) (8.25772e-16 0.504845 -2.93212) (2.48584e-15 -0.0940448 -2.66958) (-2.77246e-15 -0.406036 -2.44129) (-7.16687e-16 -1.60452 -2.0124) (2.9077e-16 -2.4376 -1.86243) (-2.71662e-16 -3.37276 -1.63896) (-6.3666e-17 -4.2104 -1.3457) (1.59618e-16 -4.84128 -0.985015) (-5.90388e-16 -5.24988 -0.604661) (-7.18943e-17 -5.49776 -0.218353) (-3.53352e-17 -5.60096 0.150118) (2.26037e-15 -5.58502 0.523882) (-1.74667e-17 -5.44747 0.839732) (-2.66898e-17 -5.18877 1.10248) (-2.45401e-17 -4.81525 1.28167) (-2.63678e-17 -4.37413 1.39391) (-2.61653e-17 -3.9052 1.47663) (-2.51623e-17 -3.44511 1.53574) (-2.46401e-17 -2.99609 1.56178) (-2.43667e-17 -2.61453 1.55963) (-2.42479e-17 -2.27295 1.53836) (-2.42804e-17 -1.92246 1.46688) (-2.4543e-17 -1.50913 1.36694) (-2.48326e-17 -1.08903 1.29779) (-2.46107e-17 -0.877105 1.36729) (-2.41075e-17 -0.902969 1.49103) (-2.39819e-17 -0.880342 1.44967) (-2.41146e-17 -0.604421 1.13273) (-2.36792e-17 -0.316472 0.6013) (-2.26443e-17 -0.537584 0.541082) (-2.20018e-17 -0.938279 0.745987) (-2.16584e-17 -1.08882 0.826791) (-2.15841e-17 -1.05175 0.825029) (-2.00591e-17 -1.00369 0.879809) (-2.84003e-17 -1.00664 1.00416) (2.54547e-17 -1.06478 1.17292) (-5.24325e-18 -1.1416 1.40767) (-1.99554e-16 -1.1987 1.6788) (5.54294e-16 -1.22499 1.94938) (-5.70017e-17 -1.22018 2.20114) (-3.20779e-16 -1.18732 2.41824) (-4.45203e-18 -1.13123 2.59744) (1.05741e-15 -1.05888 2.73522) (-2.29562e-16 -0.977135 2.83084) (-9.63677e-16 -0.893479 2.8854) (-1.73581e-16 -0.810344 2.89798) (-2.03252e-15 -0.730323 2.8677) (-2.5289e-16 -0.646901 2.79601) (-7.70653e-16 -0.559095 2.67782) (-1.31935e-15 -0.475848 2.50933) (1.25172e-16 -0.409123 2.3046) (1.38509e-15 -0.369313 2.08965) (3.43398e-16 -0.346847 1.87682) (5.15087e-16 -0.317291 1.65557) (5.21355e-15 -0.270842 1.40076) (3.64203e-16 -0.237769 1.12192) (-5.11886e-16 -0.267007 0.920101) (3.1651e-16 -0.378077 0.903079) (3.46743e-15 -0.536261 1.06615) (4.59518e-16 -0.693443 1.31819) (-1.26832e-15 -0.824383 1.58821) (-1.03629e-15 -0.92052 1.83947) (3.71215e-17 -0.982265 2.05784) (-1.63322e-16 -1.01176 2.23957) (-1.72692e-16 -1.01432 2.39061) (-9.65576e-16 -0.99808 2.5237) (-1.62661e-16 -0.972238 2.6557) (5.15458e-16 -0.944403 2.797) (2.99099e-16 -0.920094 2.94995) (7.69328e-17 -0.90154 3.11017) (-4.58302e-17 -0.889243 3.26769) (-9.49732e-17 -0.882699 3.41143) (-1.14043e-16 -0.881129 3.53255) (-1.15796e-16 -0.8844 3.62662) (-1.09511e-16 -0.894205 3.69525) (-9.88491e-17 -0.914371 3.74499) (-8.65468e-17 -0.953835 3.79193) (-7.49765e-17 -1.01358 3.84646) (-6.57464e-17 -1.10064 3.90386) (-5.92562e-17 -1.19039 3.96311) (-5.43295e-17 -1.27996 3.95878) (1.03587e-15 -0.49473 1.4588) (9.20776e-16 -0.450401 1.33866) (-6.90403e-16 -0.351613 0.994822) (-5.65782e-15 0.0204883 0.200768) (-8.68901e-15 0.235188 -0.404016) (-8.01801e-15 0.46883 -0.879372) (-6.22488e-15 0.730919 -1.38785) (-7.86125e-15 1.04074 -2.00875) (-1.18539e-14 1.40539 -2.57622) (-1.5954e-14 1.68502 -3.02444) (-1.77877e-14 1.9647 -3.35068) (-1.60139e-14 2.25006 -3.5462) (-1.12965e-14 2.549 -3.62524) (-5.76353e-15 2.80129 -3.60749) (-1.11563e-15 2.89071 -3.48734) (1.57687e-15 2.65423 -3.26325) (9.3158e-16 2.01314 -2.97205) (-9.97032e-16 1.27815 -2.81124) (7.753e-16 0.885602 -2.91525) (8.94221e-16 0.510778 -2.91918) (1.17103e-15 -0.0963951 -2.64695) (8.1272e-15 -0.456651 -2.38062) (2.5442e-15 -1.60152 -1.97398) (2.45664e-17 -2.45055 -1.82386) (-2.42382e-16 -3.3969 -1.60539) (-7.39968e-17 -4.24809 -1.31288) (1.88337e-16 -4.88834 -0.954752) (-3.83217e-17 -5.30473 -0.580401) (3.09735e-16 -5.55955 -0.20024) (-2.70581e-17 -5.6648 0.16363) (1.06638e-16 -5.64413 0.53105) (-1.35641e-17 -5.49907 0.840475) (-3.34117e-17 -5.23044 1.0955) (-2.96826e-17 -4.84529 1.26796) (-2.6953e-17 -4.39662 1.37881) (-2.54844e-17 -3.92322 1.46332) (-2.5011e-17 -3.45696 1.52425) (-2.46942e-17 -3.00329 1.55044) (-2.44468e-17 -2.61586 1.5476) (-2.43021e-17 -2.27141 1.52696) (-2.43178e-17 -1.91176 1.45407) (-2.45356e-17 -1.49267 1.35589) (-2.47297e-17 -1.08705 1.30053) (-2.44521e-17 -0.89314 1.38713) (-2.39709e-17 -0.905917 1.49197) (-2.38705e-17 -0.840755 1.40222) (-2.40175e-17 -0.533708 1.04445) (-2.35348e-17 -0.272702 0.541563) (-2.25251e-17 -0.562194 0.563324) (-2.19362e-17 -0.972875 0.766227) (-2.16049e-17 -1.10569 0.830169) (-2.14342e-17 -1.06368 0.828793) (-1.9839e-17 -1.02682 0.899743) (-2.73635e-17 -1.04546 1.04669) (2.03037e-17 -1.11516 1.23746) (1.15992e-16 -1.19674 1.48944) (-1.59248e-15 -1.2532 1.76967) (-8.2319e-15 -1.27417 2.03876) (-5.45367e-16 -1.26339 2.28103) (-4.56743e-16 -1.22512 2.48462) (4.93951e-16 -1.16257 2.64707) (-5.77584e-16 -1.08398 2.76411) (-1.2779e-15 -0.995714 2.83352) (-1.27793e-15 -0.906328 2.85712) (9.6457e-16 -0.818975 2.83782) (1.03098e-15 -0.733168 2.77951) (-6.44742e-17 -0.641535 2.68597) (-9.32052e-16 -0.543889 2.54785) (-6.9927e-16 -0.451914 2.35578) (-8.77726e-16 -0.383437 2.1264) (5.63248e-16 -0.348175 1.89399) (5.93497e-16 -0.329478 1.67265) (-1.46565e-16 -0.294279 1.44309) (8.64252e-16 -0.23858 1.17937) (-6.76557e-17 -0.21327 0.92282) (-2.77146e-15 -0.275535 0.809033) (-3.21815e-17 -0.426218 0.904568) (4.17816e-16 -0.6063 1.14076) (-3.17919e-15 -0.76835 1.42135) (-1.9221e-16 -0.895481 1.69534) (-6.87974e-16 -0.983453 1.94016) (4.13914e-16 -1.03481 2.15012) (-2.0479e-16 -1.05364 2.32794) (-2.86431e-16 -1.0475 2.48338) (1.68719e-16 -1.02542 2.62907) (4.25754e-16 -0.996547 2.77794) (1.63128e-16 -0.967746 2.93449) (-1.86555e-17 -0.94344 3.0953) (-9.1039e-17 -0.924795 3.25234) (-1.19239e-16 -0.911734 3.39517) (-1.25699e-16 -0.903421 3.51534) (-1.22912e-16 -0.899377 3.60834) (-1.14433e-16 -0.899984 3.6741) (-1.0173e-16 -0.908317 3.71841) (-8.75005e-17 -0.930097 3.75112) (-7.42678e-17 -0.97441 3.78897) (-6.38641e-17 -1.03822 3.83372) (-5.71499e-17 -1.1284 3.8759) (-5.3416e-17 -1.21185 3.91201) (-5.1361e-17 -1.30093 3.88078) (4.37157e-16 -0.495781 1.44739) (7.17908e-15 -0.440435 1.28086) (1.48282e-15 -0.311718 0.89313) (-6.25319e-15 0.0991542 -0.215713) (-7.95612e-15 0.243627 -0.555069) (-7.33748e-15 0.479443 -1.02894) (-6.36361e-15 0.759368 -1.51956) (-8.36428e-15 1.0799 -2.10117) (-1.23573e-14 1.44417 -2.63844) (-1.63048e-14 1.71781 -3.06647) (-1.78723e-14 1.99204 -3.37339) (-1.58355e-14 2.2674 -3.54643) (-1.09741e-14 2.55832 -3.6018) (-5.38123e-15 2.80442 -3.56658) (-7.84546e-16 2.88511 -3.43521) (1.60652e-15 2.64022 -3.20589) (7.65731e-16 2.00231 -2.92299) (-1.08276e-15 1.28564 -2.78798) (5.38401e-16 0.902675 -2.90883) (1.05761e-15 0.514536 -2.90479) (1.28667e-15 -0.0910375 -2.62869) (1.2294e-15 -0.424392 -2.35041) (-7.0533e-16 -1.59885 -1.93572) (-1.31256e-15 -2.46064 -1.78571) (-1.81339e-16 -3.41718 -1.57204) (-1.01789e-16 -4.28368 -1.27957) (1.62413e-16 -4.93536 -0.92313) (1.20716e-16 -5.35865 -0.555315) (1.36875e-16 -5.62167 -0.181234) (-2.1397e-17 -5.72729 0.177936) (-1.19911e-16 -5.70188 0.539091) (-3.22182e-17 -5.54974 0.842008) (-2.76294e-17 -5.27114 1.08955) (-2.55918e-17 -4.87421 1.25577) (-2.56498e-17 -4.41956 1.36577) (-2.5547e-17 -3.94188 1.45227) (-2.51537e-17 -3.46736 1.51411) (-2.4747e-17 -3.00931 1.54038) (-2.44635e-17 -2.61658 1.53672) (-2.43184e-17 -2.27176 1.5179) (-2.43564e-17 -1.90253 1.44396) (-2.45498e-17 -1.47833 1.34593) (-2.46257e-17 -1.08722 1.30506) (-2.42905e-17 -0.90886 1.40732) (-2.39019e-17 -0.900421 1.48693) (-2.38547e-17 -0.789699 1.34618) (-2.39428e-17 -0.455701 0.954813) (-2.33835e-17 -0.230216 0.498763) (-2.24512e-17 -0.595113 0.592166) (-2.19058e-17 -1.00872 0.783978) (-2.15157e-17 -1.1224 0.832246) (-2.11445e-17 -1.07778 0.834464) (-1.9461e-17 -1.05271 0.924124) (-2.6591e-17 -1.08745 1.09528) (9.57771e-18 -1.16845 1.30752) (2.84432e-16 -1.25488 1.57405) (-1.05655e-15 -1.31094 1.85928) (2.17047e-15 -1.32497 2.12219) (-1.01081e-16 -1.30677 2.35154) (-1.05655e-16 -1.26114 2.53928) (6.30498e-16 -1.19109 2.68246) (-8.7612e-16 -1.10578 2.77561) (-1.36399e-15 -1.01102 2.81614) (-1.23877e-15 -0.916536 2.80921) (-1.51237e-15 -0.82431 2.76316) (7.18936e-16 -0.732301 2.68533) (-3.75625e-16 -0.63128 2.57603) (-1.11252e-15 -0.521984 2.41666) (-3.9944e-16 -0.422013 2.19411) (1.4262e-15 -0.35386 1.93586) (8.23153e-16 -0.325565 1.69186) (-7.30819e-17 -0.309291 1.4741) (3.26775e-15 -0.265806 1.24974) (2.22393e-16 -0.202548 0.996601) (1.95879e-16 -0.195317 0.79546) (-2.41136e-15 -0.299226 0.787534) (2.83696e-15 -0.485325 0.970266) (-2.40679e-16 -0.679928 1.24475) (-7.9418e-16 -0.842279 1.53295) (-9.2901e-16 -0.963491 1.80229) (-6.61288e-17 -1.04263 2.03952) (2.25543e-16 -1.08395 2.24472) (-2.36334e-15 -1.09347 2.42471) (5.36615e-17 -1.08033 2.58996) (3.0892e-17 -1.05385 2.7501) (-1.89366e-17 -1.02251 2.91246) (-7.59002e-17 -0.992228 3.07592) (-1.10271e-16 -0.966642 3.23349) (-1.19381e-16 -0.946356 3.37646) (-1.24152e-16 -0.931128 3.49656) (-1.23265e-16 -0.920214 3.58927) (-1.13543e-16 -0.91361 3.65445) (-9.88859e-17 -0.912329 3.69562) (-8.31971e-17 -0.920646 3.72133) (-6.93397e-17 -0.945692 3.74294) (-5.90984e-17 -0.995108 3.77462) (-5.30091e-17 -1.06117 3.80687) (-5.06049e-17 -1.1526 3.82961) (-5.0016e-17 -1.22797 3.8394) (-5.0499e-17 -1.32013 3.78659) (-1.21392e-15 -0.494177 1.42784) (-8.84319e-16 -0.42685 1.22316) (1.3315e-15 -0.264244 0.78262) (-6.45315e-15 0.167168 -0.373999) (-7.3506e-15 0.246124 -0.69479) (-6.88271e-15 0.488569 -1.16619) (-6.56207e-15 0.786587 -1.63712) (-8.82931e-15 1.11785 -2.18297) (-1.27948e-14 1.48207 -2.69365) (-1.65757e-14 1.74913 -3.10317) (-1.7882e-14 2.01768 -3.39211) (-1.56045e-14 2.28439 -3.54406) (-1.06159e-14 2.56715 -3.57644) (-4.98226e-15 2.80617 -3.52454) (-4.67185e-16 2.8791 -3.38314) (1.68427e-15 2.62701 -3.14923) (8.97665e-16 1.99409 -2.87605) (-8.87959e-16 1.29646 -2.76823) (-3.10433e-16 0.92074 -2.90545) (1.09241e-15 0.521451 -2.89473) (1.29773e-15 -0.0931976 -2.60826) (-5.36588e-15 -0.466619 -2.28976) (-7.11619e-16 -1.59459 -1.89795) (1.91674e-16 -2.46866 -1.74667) (-2.00463e-16 -3.43465 -1.53835) (-1.0345e-16 -4.31608 -1.24621) (1.15718e-16 -4.97854 -0.891637) (-4.11463e-16 -5.41024 -0.530389) (-6.93756e-17 -5.68338 -0.161614) (-2.86097e-17 -5.78823 0.193013) (-3.25163e-17 -5.75902 0.547662) (-2.80007e-17 -5.60056 0.844135) (-2.69678e-17 -5.31107 1.08454) (-2.6623e-17 -4.9028 1.24513) (-2.61117e-17 -4.44307 1.35474) (-2.56129e-17 -3.96053 1.44354) (-2.51445e-17 -3.47832 1.50597) (-2.47456e-17 -3.01528 1.53163) (-2.44828e-17 -2.61778 1.52706) (-2.43631e-17 -2.26962 1.50955) (-2.44214e-17 -1.8941 1.43605) (-2.4571e-17 -1.46481 1.33772) (-2.45113e-17 -1.08641 1.30987) (-2.41153e-17 -0.92295 1.42483) (-2.38397e-17 -0.889657 1.47489) (-2.38808e-17 -0.735013 1.28279) (-2.39154e-17 -0.392632 0.872958) (-2.32742e-17 -0.209601 0.479829) (-2.24078e-17 -0.634789 0.623609) (-2.18428e-17 -1.04118 0.798654) (-2.13318e-17 -1.13523 0.833935) (-2.08462e-17 -1.09373 0.843659) (-1.937e-17 -1.0824 0.953459) (-2.62814e-17 -1.13337 1.14926) (2.95837e-18 -1.22449 1.38198) (-1.06896e-17 -1.31414 1.65948) (8.98197e-16 -1.36897 1.94543) (1.16542e-15 -1.37614 2.1988) (2.2703e-15 -1.34966 2.41252) (-9.07602e-17 -1.29498 2.5818) (1.51421e-16 -1.21654 2.70289) (-6.04413e-17 -1.12392 2.76974) (-1.68101e-15 -1.02305 2.78149) (-4.68491e-16 -0.923185 2.74798) (-1.79642e-17 -0.826409 2.68277) (2.66485e-17 -0.727851 2.59181) (-1.02669e-15 -0.61709 2.46672) (-1.05131e-15 -0.494656 2.27784) (-8.37121e-17 -0.388527 2.017) (1.19941e-15 -0.323349 1.73401) (9.01243e-16 -0.304135 1.49704) (-5.06783e-16 -0.287712 1.30283) (6.99744e-16 -0.232663 1.09875) (2.15118e-15 -0.165303 0.874667) (6.34647e-15 -0.186455 0.748906) (-1.43511e-15 -0.337413 0.834757) (-3.84016e-17 -0.551299 1.06836) (1.59747e-16 -0.754826 1.35692) (-6.96988e-16 -0.915427 1.64363) (-5.59826e-16 -1.02975 1.9071) (3.51076e-16 -1.09977 2.13984) (1.85927e-17 -1.13149 2.34565) (-1.20343e-16 -1.13284 2.5329) (1.24251e-17 -1.11382 2.71002) (-1.92229e-17 -1.08349 2.88188) (-6.15322e-17 -1.04949 3.0503) (-8.6932e-17 -1.01686 3.2103) (-1.11617e-16 -0.98872 3.35413) (-1.23843e-16 -0.965543 3.47507) (-1.19441e-16 -0.947136 3.56839) (-1.05933e-16 -0.933228 3.63363) (-8.92693e-17 -0.92427 3.6742) (-7.33719e-17 -0.921962 3.69607) (-6.06473e-17 -0.931565 3.70906) (-5.21977e-17 -0.960823 3.72384) (-4.80203e-17 -1.01442 3.74909) (-4.71783e-17 -1.0805 3.76355) (-4.84605e-17 -1.17215 3.76339) (-4.96833e-17 -1.23866 3.74606) (-5.13832e-17 -1.3374 3.67886) (8.8846e-16 -0.490553 1.40034) (-3.90194e-15 -0.411104 1.15805) (-2.45343e-15 -0.219389 0.65077) (-6.25032e-15 0.199354 -0.23645) (-6.86855e-15 0.256366 -0.84155) (-6.59731e-15 0.499692 -1.29746) (-6.79367e-15 0.81362 -1.74324) (-9.25223e-15 1.15502 -2.2551) (-1.31683e-14 1.52027 -2.74255) (-1.67717e-14 1.77995 -3.13536) (-1.78205e-14 2.04214 -3.40752) (-1.53191e-14 2.29769 -3.53823) (-1.02217e-14 2.57385 -3.54872) (-4.56145e-15 2.80624 -3.48111) (-1.06562e-16 2.87234 -3.33057) (1.21108e-15 2.61441 -3.09307) (1.55116e-15 1.98864 -2.83159) (-1.40399e-15 1.3096 -2.75189) (3.74033e-16 0.938048 -2.90343) (1.62543e-15 0.526239 -2.88458) (4.14411e-16 -0.0912048 -2.59084) (-1.10132e-16 -0.451674 -2.24656) (2.10517e-16 -1.58845 -1.86055) (-3.25885e-16 -2.47221 -1.70777) (-3.29591e-16 -3.45215 -1.50349) (-8.06949e-17 -4.34601 -1.21202) (2.87134e-16 -5.01893 -0.859534) (-2.10767e-16 -5.46093 -0.505137) (-5.27766e-17 -5.74366 -0.141663) (-2.93109e-17 -5.84576 0.208346) (-2.74752e-17 -5.81469 0.556745) (-2.74799e-17 -5.65004 0.847059) (-2.70296e-17 -5.34976 1.08083) (-2.65524e-17 -4.9332 1.23687) (-2.61121e-17 -4.46701 1.34574) (-2.56331e-17 -3.97918 1.43662) (-2.51492e-17 -3.48949 1.49925) (-2.47575e-17 -3.02143 1.52429) (-2.45155e-17 -2.61917 1.51915) (-2.44086e-17 -2.26543 1.50204) (-2.44542e-17 -1.88357 1.42861) (-2.45434e-17 -1.45143 1.33103) (-2.43749e-17 -1.08825 1.31746) (-2.39512e-17 -0.934322 1.44094) (-2.37728e-17 -0.870045 1.45606) (-2.39067e-17 -0.67206 1.2122) (-2.39555e-17 -0.324421 0.791186) (-2.32473e-17 -0.191154 0.469184) (-2.2384e-17 -0.677962 0.654749) (-2.17697e-17 -1.07405 0.812084) (-2.12336e-17 -1.14936 0.83664) (-2.08572e-17 -1.11341 0.855963) (-1.98612e-17 -1.11435 0.987592) (-2.63874e-17 -1.17971 1.20869) (2.84643e-18 -1.27987 1.46015) (-4.4081e-17 -1.37161 1.74403) (-6.16937e-17 -1.42418 2.02581) (6.29404e-16 -1.42577 2.26669) (-1.3648e-15 -1.39095 2.46251) (7.96125e-17 -1.32616 2.61102) (1.6732e-17 -1.23882 2.70818) (1.02395e-15 -1.13848 2.7486) (-1.27794e-15 -1.03097 2.73462) (5.11885e-17 -0.924574 2.68004) (4.45602e-16 -0.824005 2.60156) (-3.94421e-16 -0.719481 2.49841) (-1.1522e-15 -0.598252 2.35073) (-7.66075e-16 -0.462213 2.12182) (2.79751e-16 -0.352345 1.82176) (1.45916e-15 -0.295402 1.53431) (1.17933e-15 -0.285476 1.33389) (-9.40572e-16 -0.265087 1.18213) (2.80752e-16 -0.195788 1.00617) (-3.88547e-15 -0.131125 0.82014) (-3.30698e-17 -0.191309 0.767544) (-2.37071e-15 -0.388941 0.917621) (-5.10814e-16 -0.62395 1.17533) (7.94774e-17 -0.830902 1.46663) (-1.27626e-15 -0.987747 1.75084) (-2.82732e-15 -1.09425 2.01166) (-1.83895e-16 -1.15481 2.24494) (-5.95317e-17 -1.17741 2.45627) (-6.85075e-19 -1.17147 2.65305) (-3.12813e-17 -1.14727 2.83994) (-7.01668e-17 -1.1133 3.01696) (-1.0288e-16 -1.0763 3.18189) (-1.18008e-16 -1.04059 3.32843) (-1.16702e-16 -1.00896 3.45068) (-1.05888e-16 -0.981949 3.54547) (-9.05811e-17 -0.959737 3.61171) (-7.47041e-17 -0.942763 3.65223) (-6.10099e-17 -0.931974 3.67297) (-5.10781e-17 -0.929624 3.68104) (-4.54369e-17 -0.941627 3.68594) (-4.36721e-17 -0.975342 3.69548) (-4.46888e-17 -1.0313 3.71059) (-4.70845e-17 -1.09545 3.70083) (-4.98343e-17 -1.18759 3.67698) (-5.10948e-17 -1.2446 3.635) (-5.28736e-17 -1.35306 3.56271) (1.78051e-15 -0.484609 1.36305) (-6.19775e-15 -0.393378 1.08897) (-3.68048e-15 -0.185123 0.511676) (-6.01373e-15 0.218095 -0.216828) (-6.50588e-15 0.27406 -0.98239) (-6.43994e-15 0.507261 -1.41556) (-7.03644e-15 0.839429 -1.83697) (-9.6284e-15 1.19088 -2.31783) (-1.34773e-14 1.55687 -2.78516) (-1.68932e-14 1.81044 -3.16377) (-1.76877e-14 2.0654 -3.42024) (-1.49801e-14 2.30778 -3.52961) (-9.79495e-15 2.57895 -3.51884) (-4.12265e-15 2.80693 -3.43705) (2.55152e-16 2.86534 -3.27818) (2.01656e-15 2.60329 -3.0384) (3.41554e-16 1.98599 -2.79017) (-4.33273e-16 1.32592 -2.7391) (-3.68689e-16 0.956811 -2.90407) (2.94825e-17 0.532048 -2.87734) (3.3088e-15 -0.0959898 -2.57212) (7.74893e-15 -0.486818 -2.18814) (-8.94936e-17 -1.57957 -1.8239) (-8.03195e-16 -2.47176 -1.66894) (1.47905e-15 -3.47024 -1.46732) (-1.31446e-18 -4.37241 -1.17721) (-8.37884e-16 -5.05859 -0.826798) (-8.23877e-17 -5.51246 -0.479283) (-2.73996e-17 -5.80348 -0.120571) (-2.82816e-17 -5.90215 0.224605) (-2.77448e-17 -5.86922 0.565867) (-2.7568e-17 -5.69844 0.850332) (-2.71292e-17 -5.38731 1.07761) (-2.66455e-17 -4.96681 1.23108) (-2.61559e-17 -4.49119 1.33912) (-2.56567e-17 -3.99858 1.43199) (-2.5171e-17 -3.50077 1.49401) (-2.47787e-17 -3.02928 1.51855) (-2.45388e-17 -2.62245 1.51326) (-2.44298e-17 -2.2621 1.49631) (-2.44381e-17 -1.8726 1.42235) (-2.44641e-17 -1.43871 1.32521) (-2.42422e-17 -1.09577 1.32686) (-2.38517e-17 -0.944232 1.45387) (-2.37524e-17 -0.844194 1.42937) (-2.39363e-17 -0.609884 1.13541) (-2.3998e-17 -0.277717 0.717228) (-2.32178e-17 -0.197363 0.474401) (-2.23446e-17 -0.725666 0.686016) (-2.17401e-17 -1.10462 0.82545) (-2.13266e-17 -1.16232 0.842429) (-2.1129e-17 -1.13376 0.873381) (-2.04519e-17 -1.14717 1.02761) (-2.62244e-17 -1.22597 1.27219) (6.67867e-20 -1.33355 1.53896) (3.6657e-17 -1.42732 1.82553) (-9.49815e-16 -1.475 2.09856) (-4.00599e-15 -1.47104 2.32394) (1.64063e-16 -1.42832 2.49995) (-2.55557e-16 -1.35336 2.6263) (-1.01077e-16 -1.25731 2.69973) (-1.09149e-15 -1.14913 2.71633) (-1.07018e-15 -1.03408 2.68126) (3.17107e-16 -0.921842 2.60993) (3.23153e-16 -0.817021 2.51862) (-2.18294e-16 -0.70665 2.39859) (-1.41479e-16 -0.571119 2.21764) (-1.91479e-16 -0.423645 1.94303) (1.28092e-15 -0.314862 1.61723) (1.51022e-15 -0.2729 1.36175) (3.0933e-16 -0.270293 1.22759) (-8.26864e-16 -0.239729 1.12257) (-1.47352e-15 -0.15423 0.967252) (-2.36838e-16 -0.101354 0.813597) (-1.85516e-15 -0.209306 0.81895) (2.78351e-17 -0.448262 1.00929) (7.60023e-16 -0.700783 1.28073) (-2.16148e-18 -0.908158 1.57365) (-6.63752e-16 -1.05948 1.85792) (-4.40055e-16 -1.15759 2.1205) (-2.56396e-17 -1.20868 2.35863) (-1.45931e-17 -1.22266 2.57765) (-4.74749e-17 -1.20994 2.78233) (-7.4661e-17 -1.1807 2.97326) (-9.15418e-17 -1.14281 3.14679) (-9.88596e-17 -1.10225 3.29887) (-9.67305e-17 -1.06283 3.42441) (-8.74852e-17 -1.02719 3.52093) (-7.47308e-17 -0.995986 3.58902) (-6.17399e-17 -0.969904 3.63047) (-5.10075e-17 -0.950073 3.65043) (-4.39553e-17 -0.938018 3.65636) (-4.08826e-17 -0.936371 3.65528) (-4.11759e-17 -0.951126 3.6546) (-4.36342e-17 -0.988142 3.65728) (-4.69343e-17 -1.04358 3.65586) (-4.99894e-17 -1.1047 3.61644) (-5.23334e-17 -1.19888 3.57253) (-5.25968e-17 -1.24595 3.51088) (-5.41382e-17 -1.36894 3.44213) (2.74345e-15 -0.477262 1.31478) (1.05203e-15 -0.372414 1.02032) (-3.89212e-15 -0.154973 0.347879) (-5.791e-15 0.242919 -0.345705) (-6.24365e-15 0.296143 -1.12291) (-6.37299e-15 0.516808 -1.52729) (-7.27718e-15 0.864842 -1.92082) (-9.95618e-15 1.22618 -2.37263) (-1.37221e-14 1.59054 -2.82156) (-1.69415e-14 1.83956 -3.18836) (-1.74868e-14 2.08713 -3.43048) (-1.45884e-14 2.31669 -3.51864) (-9.32748e-15 2.58379 -3.48694) (-3.64703e-15 2.80732 -3.39224) (6.60332e-16 2.85779 -3.2261) (2.14849e-15 2.59273 -2.9849) (5.61153e-16 1.98546 -2.75114) (-1.17356e-15 1.34316 -2.72871) (-9.74201e-16 0.975345 -2.90595) (-7.74417e-16 0.534926 -2.87001) (1.43192e-15 -0.101821 -2.55507) (-1.13736e-15 -0.498731 -2.13967) (-1.06944e-16 -1.56754 -1.78791) (1.02338e-16 -2.46855 -1.63057) (6.92222e-17 -3.48756 -1.43001) (-8.71794e-17 -4.39831 -1.14072) (-1.00971e-16 -5.10015 -0.792716) (-3.13983e-16 -5.56635 -0.452161) (-2.6339e-17 -5.86126 -0.0989207) (-2.89928e-17 -5.95864 0.242228) (-2.79612e-17 -5.92138 0.575229) (-2.77125e-17 -5.74538 0.854469) (-2.72594e-17 -5.42237 1.07482) (-2.67285e-17 -4.99852 1.22657) (-2.6195e-17 -4.51441 1.33465) (-2.56712e-17 -4.0194 1.42919) (-2.51861e-17 -3.51262 1.48975) (-2.47998e-17 -3.03596 1.51328) (-2.45604e-17 -2.6252 1.50911) (-2.44457e-17 -2.25884 1.49229) (-2.4413e-17 -1.86201 1.41734) (-2.4375e-17 -1.42659 1.32045) (-2.41397e-17 -1.10603 1.33897) (-2.38325e-17 -0.952882 1.46577) (-2.38072e-17 -0.811717 1.39561) (-2.39853e-17 -0.545472 1.05238) (-2.3983e-17 -0.225707 0.641827) (-2.31225e-17 -0.206039 0.485124) (-2.22886e-17 -0.769545 0.714622) (-2.17508e-17 -1.13215 0.838271) (-2.14394e-17 -1.17998 0.851906) (-2.12311e-17 -1.16016 0.896502) (-2.04912e-17 -1.18443 1.07366) (-2.51854e-17 -1.27146 1.33895) (-3.5172e-18 -1.38456 1.61728) (4.97984e-17 -1.48003 1.90253) (4.20172e-15 -1.52224 2.16264) (-1.6e-16 -1.51196 2.36867) (1.01185e-16 -1.46165 2.5235) (-1.7994e-16 -1.37704 2.62825) (3.34808e-17 -1.27243 2.6803) (8.6621e-16 -1.15578 2.67707) (-9.29762e-16 -1.03303 2.62428) (-2.11275e-15 -0.916817 2.53733) (-2.43206e-16 -0.806733 2.42953) (1.09806e-16 -0.688293 2.28491) (-1.49248e-16 -0.53348 2.06103) (-3.78227e-16 -0.3779 1.74468) (1.21824e-15 -0.27904 1.42557) (1.13165e-15 -0.25693 1.24484) (4.57269e-16 -0.257932 1.19012) (4.26431e-15 -0.210983 1.11635) (-3.57229e-16 -0.108755 0.963023) (1.02804e-15 -0.0776591 0.831357) (-1.10754e-15 -0.24014 0.881921) (-4.04173e-15 -0.515903 1.10046) (-2.58102e-15 -0.781327 1.38336) (-1.29995e-15 -0.987527 1.68094) (-2.60092e-15 -1.13151 1.96885) (5.99336e-17 -1.22027 2.23684) (-6.79465e-17 -1.26163 2.48201) (-4.76254e-17 -1.26696 2.70767) (-6.52426e-17 -1.24737 2.91546) (-8.0973e-17 -1.21264 3.10271) (-8.6505e-17 -1.17034 3.26403) (-8.38164e-17 -1.12582 3.39592) (-7.55589e-17 -1.08243 3.49614) (-6.44183e-17 -1.0428 3.56609) (-5.33492e-17 -1.00758 3.60946) (-4.47408e-17 -0.978157 3.63) (-3.9861e-17 -0.955708 3.63403) (-3.87687e-17 -0.942666 3.6296) (-4.06026e-17 -0.942079 3.62234) (-4.40559e-17 -0.959414 3.61602) (-4.78208e-17 -0.997803 3.60732) (-5.09938e-17 -1.05001 3.58179) (-5.31242e-17 -1.10906 3.5108) (-5.42424e-17 -1.20821 3.45508) (-5.33506e-17 -1.24423 3.37895) (-5.50285e-17 -1.38911 3.32092) (-6.21033e-16 -0.464847 1.26601) (-1.02299e-15 -0.346635 0.952087) (-3.9902e-15 -0.120875 0.162127) (-5.61213e-15 0.26336 -0.480839) (-6.06003e-15 0.318142 -1.25416) (-6.36602e-15 0.526514 -1.6275) (-7.50278e-15 0.889946 -1.99402) (-1.0233e-14 1.26183 -2.42025) (-1.39017e-14 1.62309 -2.85311) (-1.69168e-14 1.86799 -3.20975) (-1.72174e-14 2.10753 -3.43842) (-1.41402e-14 2.32562 -3.50595) (-8.81048e-15 2.58784 -3.45341) (-3.13629e-15 2.80503 -3.34665) (1.08084e-15 2.85246 -3.17565) (2.31986e-15 2.58381 -2.93297) (-4.49118e-16 1.98788 -2.71463) (-1.00265e-15 1.36306 -2.7211) (-7.56782e-16 0.995672 -2.90992) (-3.24328e-16 0.539681 -2.86585) (-6.53381e-16 -0.107876 -2.54116) (-7.44932e-16 -0.530113 -2.09214) (-7.48695e-16 -1.5487 -1.75222) (-2.25819e-16 -2.46357 -1.59247) (-6.17275e-18 -3.5017 -1.39266) (3.7075e-16 -4.42403 -1.10318) (-9.03192e-17 -5.13891 -0.759043) (-1.30104e-16 -5.62169 -0.423558) (-2.65873e-17 -5.91533 -0.0766452) (-2.81953e-17 -6.01391 0.260841) (-2.8277e-17 -5.97161 0.5847) (-2.78221e-17 -5.79112 0.859034) (-2.73448e-17 -5.45652 1.07294) (-2.68e-17 -5.02364 1.22157) (-2.624e-17 -4.53692 1.3315) (-2.56861e-17 -4.0401 1.42772) (-2.51919e-17 -3.5262 1.4877) (-2.48179e-17 -3.04089 1.5088) (-2.45873e-17 -2.62781 1.50622) (-2.44654e-17 -2.25653 1.48961) (-2.44007e-17 -1.85105 1.41347) (-2.43083e-17 -1.41559 1.31697) (-2.40741e-17 -1.11888 1.35159) (-2.3857e-17 -0.959937 1.47396) (-2.38889e-17 -0.774927 1.35473) (-2.40164e-17 -0.488849 0.966354) (-2.38831e-17 -0.193364 0.576127) (-2.2981e-17 -0.233442 0.504771) (-2.22247e-17 -0.814028 0.740756) (-2.17195e-17 -1.15814 0.8514) (-2.13508e-17 -1.20083 0.866962) (-2.09204e-17 -1.18992 0.92732) (-2.0002e-17 -1.2263 1.12773) (-2.32032e-17 -1.31868 1.40959) (-1.25971e-18 -1.43537 1.69311) (-1.56211e-16 -1.52912 1.97123) (8.03638e-16 -1.5665 2.21546) (5.73023e-16 -1.54928 2.40021) (1.10848e-17 -1.4908 2.53389) (-1.43603e-16 -1.39703 2.61928) (-1.44902e-16 -1.28341 2.65329) (-2.21017e-16 -1.1578 2.63306) (-4.29694e-16 -1.02804 2.56292) (-6.35533e-16 -0.908072 2.45772) (-5.41897e-16 -0.792816 2.32877) (-2.91281e-16 -0.661452 2.15252) (-6.81892e-17 -0.487332 1.88368) (-3.9186e-16 -0.324878 1.54283) (1.54158e-15 -0.246113 1.27626) (9.11845e-16 -0.243749 1.19838) (-2.59153e-16 -0.242306 1.2075) (-1.42583e-15 -0.172845 1.13529) (-7.29553e-15 -0.0553533 0.963889) (-5.32639e-15 -0.0574446 0.848987) (2.64396e-15 -0.27876 0.942425) (-3.17388e-16 -0.588688 1.18938) (3.56406e-16 -0.862824 1.4862) (1.50316e-15 -1.06665 1.79229) (-5.20981e-16 -1.20267 2.08725) (6.74617e-17 -1.28157 2.36236) (-1.38488e-17 -1.31316 2.61369) (-5.57671e-17 -1.30977 2.84181) (-7.21079e-17 -1.28295 3.0458) (-7.68935e-17 -1.24219 3.22124) (-7.44974e-17 -1.19496 3.36314) (-6.70624e-17 -1.14629 3.47049) (-5.71845e-17 -1.09908 3.54443) (-4.77208e-17 -1.05589 3.58964) (-4.10004e-17 -1.01732 3.61178) (-3.81005e-17 -0.985674 3.61592) (-3.87545e-17 -0.961435 3.60851) (-4.18066e-17 -0.947628 3.59675) (-4.58447e-17 -0.947859 3.58383) (-4.96836e-17 -0.966657 3.56896) (-5.25854e-17 -1.00359 3.54243) (-5.43552e-17 -1.05036 3.48644) (-5.50654e-17 -1.11029 3.38782) (-5.49691e-17 -1.21684 3.3321) (-5.33183e-17 -1.23989 3.24369) (-5.58077e-17 -1.41949 3.19952) (-1.32935e-15 -0.450237 1.22875) (-1.98396e-15 -0.315564 0.876362) (-4.20175e-15 -0.0758171 -0.0476756) (-5.47083e-15 0.286249 -0.634587) (-5.9363e-15 0.336067 -1.37783) (-6.39775e-15 0.538615 -1.7201) (-7.70721e-15 0.914107 -2.05764) (-1.04584e-14 1.29778 -2.46138) (-1.40164e-14 1.65775 -2.88122) (-1.68192e-14 1.89525 -3.22818) (-1.68814e-14 2.12659 -3.44423) (-1.36405e-14 2.33165 -3.49071) (-8.25845e-15 2.58998 -3.4184) (-2.62244e-15 2.79912 -3.29982) (1.40245e-15 2.84435 -3.1249) (2.27328e-15 2.57686 -2.8825) (-4.4493e-17 1.99376 -2.68036) (-1.49269e-15 1.38451 -2.71586) (-6.42739e-16 1.01616 -2.91618) (8.95732e-16 0.542993 -2.86493) (1.89411e-15 -0.11512 -2.52919) (-2.45591e-17 -0.553941 -2.04684) (-1.08398e-15 -1.52827 -1.71568) (-8.05989e-16 -2.46047 -1.55413) (-2.43687e-17 -3.51303 -1.35492) (-7.08581e-17 -4.44975 -1.06369) (-1.77858e-17 -5.17544 -0.725339) (-1.88898e-18 -5.67706 -0.394026) (-2.81615e-17 -5.96643 -0.0535663) (-2.79625e-17 -6.06527 0.279372) (-2.83083e-17 -6.02142 0.594957) (-2.79277e-17 -5.83342 0.863757) (-2.74403e-17 -5.48967 1.07311) (-2.68686e-17 -5.04505 1.21739) (-2.62777e-17 -4.56015 1.32933) (-2.57016e-17 -4.05956 1.42638) (-2.51991e-17 -3.54176 1.48711) (-2.48335e-17 -3.04718 1.506) (-2.46103e-17 -2.63106 1.50485) (-2.4477e-17 -2.25049 1.48729) (-2.43889e-17 -1.83447 1.40929) (-2.4265e-17 -1.40376 1.31446) (-2.40432e-17 -1.13235 1.36566) (-2.38905e-17 -0.963407 1.47892) (-2.39365e-17 -0.731783 1.30612) (-2.39747e-17 -0.439956 0.877706) (-2.3706e-17 -0.173296 0.522891) (-2.28367e-17 -0.267908 0.529322) (-2.21419e-17 -0.853589 0.763809) (-2.15872e-17 -1.17753 0.863182) (-2.1062e-17 -1.22115 0.883762) (-2.03862e-17 -1.2249 0.9634) (-1.94702e-17 -1.27589 1.18866) (-2.1315e-17 -1.37072 1.48323) (-6.82075e-19 -1.48651 1.76544) (-1.64893e-16 -1.57621 2.03083) (3.9297e-16 -1.6067 2.25539) (4.5273e-16 -1.58335 2.41881) (-9.36528e-17 -1.51691 2.53326) (-7.55072e-16 -1.4142 2.60247) (1.65181e-15 -1.29039 2.62066) (-4.74788e-16 -1.1557 2.58375) (-4.86755e-16 -1.01956 2.49413) (-2.72146e-16 -0.894673 2.36664) (-2.48077e-16 -0.772843 2.21316) (-3.88357e-17 -0.624223 2.00149) (6.32846e-16 -0.437966 1.6976) (-3.74031e-17 -0.275 1.36675) (2.35392e-15 -0.222784 1.19499) (1.86262e-15 -0.234362 1.21656) (-8.10425e-16 -0.221313 1.25258) (-2.58471e-16 -0.125625 1.15453) (1.07237e-15 0.00135278 0.956176) (-1.41018e-15 -0.0453608 0.863818) (-7.97131e-16 -0.327231 1.00327) (8.29213e-16 -0.666507 1.28015) (3.95189e-16 -0.946151 1.59327) (3.83996e-16 -1.1458 1.91028) (8.10227e-17 -1.27335 2.21402) (-3.47287e-17 -1.34216 2.49573) (-6.61266e-17 -1.36365 2.74981) (-7.2862e-17 -1.35118 2.97446) (-7.21472e-17 -1.31631 3.16721) (-6.77939e-17 -1.26868 3.32384) (-6.0478e-17 -1.21585 3.44161) (-5.1816e-17 -1.16277 3.52297) (-4.41892e-17 -1.11215 3.57215) (-3.95796e-17 -1.06627 3.59595) (-3.8678e-17 -1.02543 3.60089) (-4.08341e-17 -0.992267 3.59272) (-4.46801e-17 -0.967469 3.57757) (-4.88188e-17 -0.952922 3.55981) (-5.2262e-17 -0.952733 3.53925) (-5.45534e-17 -0.970719 3.51088) (-5.5672e-17 -1.00317 3.46005) (-5.59128e-17 -1.04438 3.37122) (-5.5506e-17 -1.11051 3.25615) (-5.46681e-17 -1.22556 3.21138) (-5.2894e-17 -1.2334 3.10569) (-5.68247e-17 -1.46708 3.07614) (-1.21221e-15 -0.436962 1.17715) (-2.05395e-15 -0.2801 0.789041) (-4.28704e-15 -0.0214839 -0.244124) (-5.35152e-15 0.307018 -0.777468) (-5.85403e-15 0.354228 -1.49087) (-6.44656e-15 0.547788 -1.80073) (-7.88199e-15 0.938508 -2.11214) (-1.06301e-14 1.33431 -2.49618) (-1.40651e-14 1.69221 -2.90573) (-1.66515e-14 1.92203 -3.24447) (-1.64868e-14 2.14456 -3.44848) (-1.31024e-14 2.33812 -3.47443) (-7.68871e-15 2.59044 -3.38232) (-2.1153e-15 2.79512 -3.25427) (1.68439e-15 2.83555 -3.0743) (2.22649e-15 2.57092 -2.83227) (3.76141e-17 2.00318 -2.64863) (-1.49749e-15 1.40916 -2.71391) (-1.79006e-16 1.03765 -2.9256) (3.19247e-18 0.546689 -2.86754) (2.41075e-16 -0.123977 -2.51437) (1.13965e-15 -0.577123 -2.00158) (1.55467e-15 -1.50776 -1.67802) (2.67639e-16 -2.45934 -1.51497) (-2.70643e-17 -3.52076 -1.31707) (3.17284e-17 -4.47369 -1.02357) (-1.69952e-17 -5.21394 -0.69066) (-1.79308e-17 -5.73019 -0.363815) (-2.81812e-17 -6.01219 -0.029629) (-2.79663e-17 -6.10854 0.296394) (-2.837e-17 -6.07165 0.60591) (-2.80709e-17 -5.87297 0.868678) (-2.75457e-17 -5.52342 1.07477) (-2.69356e-17 -5.06899 1.21503) (-2.63098e-17 -4.58635 1.32872) (-2.57178e-17 -4.08105 1.42648) (-2.52138e-17 -3.55809 1.48786) (-2.48508e-17 -3.05684 1.50602) (-2.46249e-17 -2.63981 1.50749) (-2.44778e-17 -2.24516 1.48717) (-2.43728e-17 -1.81719 1.40529) (-2.42369e-17 -1.39356 1.31214) (-2.4035e-17 -1.14623 1.37896) (-2.39153e-17 -0.965657 1.47973) (-2.39294e-17 -0.68556 1.25097) (-2.38502e-17 -0.403021 0.790614) (-2.34847e-17 -0.1721 0.488255) (-2.27106e-17 -0.310266 0.553701) (-2.20404e-17 -0.894358 0.784153) (-2.1404e-17 -1.19696 0.875583) (-2.07597e-17 -1.24605 0.905039) (-1.99614e-17 -1.26802 1.00777) (-1.92244e-17 -1.33244 1.25731) (-1.98527e-17 -1.43074 1.56066) (-4.59175e-18 -1.54139 1.83293) (-1.68002e-16 -1.62565 2.08019) (1.06772e-15 -1.64715 2.28294) (3.87927e-16 -1.61696 2.42636) (-1.41949e-16 -1.54203 2.52518) (-7.13891e-16 -1.42924 2.58088) (-7.76116e-16 -1.29407 2.58339) (-4.78858e-16 -1.14969 2.52734) (-3.54045e-16 -1.00804 2.41565) (-2.32553e-16 -0.877712 2.26344) (-2.53145e-16 -0.744948 2.08319) (1.95527e-16 -0.579468 1.8369) (6.57393e-16 -0.388102 1.51866) (1.15205e-15 -0.241279 1.24522) (5.64715e-16 -0.213618 1.18615) (1.6413e-15 -0.226579 1.27111) (-7.07255e-16 -0.188995 1.29252) (-6.98573e-15 -0.0646663 1.15003) (1.98695e-15 0.0620756 0.928387) (-1.39043e-15 -0.0449672 0.876006) (-1.22447e-15 -0.386384 1.06799) (-4.10891e-16 -0.748656 1.37632) (-8.11408e-17 -1.03092 1.70745) (-9.11562e-17 -1.22472 2.03665) (-8.74207e-17 -1.34293 2.34873) (-7.60293e-17 -1.401 2.63412) (-6.82959e-17 -1.41177 2.88555) (-6.46654e-17 -1.38934 3.09975) (-6.06279e-17 -1.34558 3.27439) (-5.50229e-17 -1.29045 3.40719) (-4.86121e-17 -1.23158 3.4988) (-4.33339e-17 -1.17404 3.55516) (-4.08856e-17 -1.1206 3.58267) (-4.16387e-17 -1.07321 3.58921) (-4.47102e-17 -1.03159 3.5812) (-4.86941e-17 -0.997384 3.56371) (-5.23591e-17 -0.972924 3.54252) (-5.4983e-17 -0.958001 3.51809) (-5.63827e-17 -0.956164 3.486) (-5.67489e-17 -0.970827 3.43848) (-5.64236e-17 -0.996723 3.3591) (-5.57797e-17 -1.03523 3.24163) (-5.48983e-17 -1.11364 3.12748) (-5.38784e-17 -1.23392 3.09814) (-5.26113e-17 -1.22504 2.96162) (-5.83065e-17 -1.53752 2.94669) (-1.26609e-15 -0.42846 1.10047) (-2.16417e-15 -0.240912 0.681148) (-4.33927e-15 0.0389078 -0.540593) (-5.25003e-15 0.320596 -0.914289) (-5.80003e-15 0.369973 -1.59652) (-6.50163e-15 0.554825 -1.87322) (-8.02411e-15 0.961791 -2.15821) (-1.07484e-14 1.3711 -2.52574) (-1.40517e-14 1.7272 -2.92718) (-1.6422e-14 1.94823 -3.25849) (-1.60436e-14 2.16092 -3.45073) (-1.25312e-14 2.34176 -3.45633) (-7.09607e-15 2.58949 -3.34538) (-1.60014e-15 2.79327 -3.20942) (1.96956e-15 2.83141 -3.02558) (2.17131e-15 2.56514 -2.78231) (-5.72149e-17 2.01506 -2.6187) (-1.07264e-15 1.43525 -2.71505) (-2.86594e-16 1.05719 -2.93843) (-1.12729e-16 0.545289 -2.86996) (4.3787e-16 -0.140637 -2.49171) (-2.59981e-16 -0.602495 -1.95408) (-1.94575e-16 -1.49361 -1.64007) (-2.55499e-16 -2.45691 -1.476) (-4.07995e-17 -3.52654 -1.2781) (-2.47453e-17 -4.49826 -0.982121) (-2.45538e-17 -5.25819 -0.653388) (-2.13408e-17 -5.78004 -0.332138) (-2.77224e-17 -6.0529 -0.0043381) (-2.8364e-17 -6.15297 0.313816) (-2.85254e-17 -6.11997 0.616248) (-2.82075e-17 -5.91235 0.874824) (-2.76494e-17 -5.55578 1.07742) (-2.70015e-17 -5.09535 1.21485) (-2.63414e-17 -4.61299 1.32888) (-2.57342e-17 -4.10391 1.42769) (-2.52322e-17 -3.56831 1.48747) (-2.48715e-17 -3.06411 1.50604) (-2.46385e-17 -2.64982 1.51254) (-2.44812e-17 -2.24062 1.49003) (-2.43641e-17 -1.80232 1.40356) (-2.42208e-17 -1.38417 1.31185) (-2.40332e-17 -1.15606 1.39073) (-2.392e-17 -0.961756 1.47433) (-2.38731e-17 -0.632107 1.18872) (-2.36769e-17 -0.374954 0.705755) (-2.32696e-17 -0.183459 0.465062) (-2.26155e-17 -0.353566 0.574789) (-2.19551e-17 -0.934546 0.803778) (-2.12759e-17 -1.22042 0.891381) (-2.06018e-17 -1.27669 0.929957) (-1.97914e-17 -1.31764 1.05777) (-1.92296e-17 -1.39658 1.33115) (-1.89132e-17 -1.49871 1.63885) (-5.76976e-18 -1.60134 1.89459) (-2.06596e-16 -1.67554 2.1186) (1.00622e-15 -1.68791 2.29976) (2.34581e-16 -1.65059 2.42618) (-2.3407e-15 -1.56648 2.51286) (-1.48655e-16 -1.44243 2.55611) (-4.48516e-16 -1.29589 2.54121) (-4.05606e-16 -1.14092 2.4624) (-2.4192e-16 -0.993295 2.3263) (-1.6546e-16 -0.857323 2.14972) (-1.81361e-16 -0.710919 1.94266) (5.53702e-16 -0.532227 1.6689) (8.65665e-16 -0.337891 1.36518) (1.08145e-15 -0.222414 1.18986) (1.29475e-15 -0.21538 1.23088) (6.51061e-16 -0.219881 1.33442) (-4.22088e-16 -0.147625 1.31307) (-3.38898e-15 0.00571225 1.1211) (-2.44015e-15 0.11896 0.892578) (-5.42841e-17 -0.0648695 0.898883) (-6.3464e-17 -0.459661 1.14385) (-4.26144e-17 -0.837241 1.48117) (-7.34836e-17 -1.11798 1.82989) (-7.15615e-17 -1.30419 2.17104) (-6.12865e-17 -1.41184 2.48921) (-5.8792e-17 -1.4581 2.77353) (-5.7877e-17 -1.45736 3.01588) (-5.63065e-17 -1.42406 3.2129) (-5.29485e-17 -1.37074 3.36417) (-4.85996e-17 -1.30758 3.47072) (-4.52274e-17 -1.24224 3.53672) (-4.43031e-17 -1.18023 3.57075) (-4.59395e-17 -1.12449 3.58018) (-4.91537e-17 -1.07631 3.57297) (-5.26444e-17 -1.03531 3.55521) (-5.54176e-17 -1.00137 3.53002) (-5.70269e-17 -0.976958 3.50173) (-5.75056e-17 -0.961478 3.46787) (-5.71803e-17 -0.957045 3.42014) (-5.64454e-17 -0.966243 3.34985) (-5.55966e-17 -0.984849 3.24238) (-5.48299e-17 -1.02595 3.10841) (-5.39847e-17 -1.12075 3.0149) (-5.31674e-17 -1.23716 2.9914) (-5.29017e-17 -1.21416 2.80341) (-6.02439e-17 -1.63324 2.80857) (-1.31572e-15 -0.421528 1.0233) (-2.23478e-15 -0.20061 0.588954) (-4.32574e-15 0.0886061 -0.512481) (-5.16036e-15 0.334208 -1.03771) (-5.76056e-15 0.379899 -1.69124) (-6.54861e-15 0.561605 -1.93651) (-8.12971e-15 0.983892 -2.19609) (-1.08153e-14 1.40845 -2.55011) (-1.39806e-14 1.75987 -2.94546) (-1.61364e-14 1.97283 -3.27078) (-1.55536e-14 2.17687 -3.45219) (-1.19216e-14 2.33979 -3.43599) (-6.47612e-15 2.58777 -3.30753) (-1.08684e-15 2.79041 -3.1643) (2.20471e-15 2.82855 -2.97764) (2.05932e-15 2.5598 -2.73272) (-3.01025e-16 2.02952 -2.59092) (-1.08105e-15 1.46275 -2.71948) (-2.45664e-16 1.07869 -2.95413) (2.61688e-16 0.543559 -2.86979) (-1.43964e-16 -0.157419 -2.46049) (-7.62837e-17 -0.614481 -1.90127) (-1.50366e-16 -1.48408 -1.60184) (2.61939e-17 -2.45045 -1.43726) (-1.49269e-17 -3.52701 -1.24011) (-2.46201e-17 -4.52108 -0.941489) (-2.49776e-17 -5.29912 -0.616057) (-2.52106e-17 -5.82326 -0.299155) (-2.77988e-17 -6.08842 0.0209811) (-2.8615e-17 -6.20686 0.334298) (-2.86909e-17 -6.16346 0.625973) (-2.83396e-17 -5.95471 0.882923) (-2.77495e-17 -5.58529 1.08022) (-2.70646e-17 -5.12476 1.21635) (-2.63744e-17 -4.64355 1.33093) (-2.57528e-17 -4.13087 1.43193) (-2.5251e-17 -3.57708 1.48857) (-2.48921e-17 -3.06907 1.50591) (-2.46531e-17 -2.65471 1.51781) (-2.44901e-17 -2.23632 1.49465) (-2.43622e-17 -1.78869 1.40288) (-2.42063e-17 -1.37859 1.31458) (-2.40225e-17 -1.1698 1.40302) (-2.39009e-17 -0.952306 1.46265) (-2.37885e-17 -0.574295 1.12045) (-2.35113e-17 -0.356468 0.62881) (-2.31183e-17 -0.19945 0.452139) (-2.257e-17 -0.394462 0.590988) (-2.19225e-17 -0.971447 0.820631) (-2.12517e-17 -1.25058 0.910337) (-2.06019e-17 -1.32232 0.962773) (-1.97981e-17 -1.37713 1.11621) (-1.92629e-17 -1.47087 1.41131) (-1.84084e-17 -1.57136 1.71613) (-4.24989e-18 -1.66411 1.9492) (-1.21444e-16 -1.7248 2.14605) (-6.74323e-17 -1.72913 2.30684) (1.38607e-16 -1.68514 2.42049) (-1.80478e-16 -1.59086 2.49841) (-3.17055e-16 -1.45439 2.52867) (-3.88196e-16 -1.29646 2.49378) (-3.41415e-16 -1.13127 2.38977) (-1.61975e-16 -0.974396 2.22745) (-1.26666e-16 -0.832182 2.02746) (-5.01781e-17 -0.674021 1.79626) (9.62237e-16 -0.48865 1.51175) (1.2233e-15 -0.297071 1.25668) (1.50632e-15 -0.211995 1.19098) (4.40636e-16 -0.222062 1.29724) (1.2483e-16 -0.210902 1.3841) (-1.47825e-15 -0.101921 1.30874) (3.93197e-15 0.0773266 1.07007) (-1.46411e-15 0.156494 0.859536) (8.56069e-17 -0.11222 0.938863) (-5.34135e-17 -0.549735 1.23358) (-6.25183e-17 -0.934738 1.59694) (-5.44742e-17 -1.20968 1.9621) (-5.36554e-17 -1.38541 2.31306) (-5.47683e-17 -1.48012 2.63294) (-5.59627e-17 -1.51292 2.90987) (-5.5622e-17 -1.49941 3.13632) (-5.32932e-17 -1.45436 3.31067) (-5.01659e-17 -1.3908 3.43581) (-4.80373e-17 -1.31914 3.5164) (-4.79787e-17 -1.24721 3.55915) (-4.98589e-17 -1.18106 3.57391) (-5.27067e-17 -1.12383 3.56826) (-5.53998e-17 -1.07496 3.54916) (-5.71953e-17 -1.03506 3.52249) (-5.7878e-17 -1.00277 3.4895) (-5.76381e-17 -0.978025 3.45163) (-5.68564e-17 -0.960865 3.40439) (-5.59258e-17 -0.953141 3.33843) (-5.50959e-17 -0.95596 3.24589) (-5.44358e-17 -0.968742 3.11696) (-5.3946e-17 -1.01934 2.98537) (-5.33016e-17 -1.12891 2.92633) (-5.28739e-17 -1.22682 2.88093) (-5.39561e-17 -1.20053 2.62158) (-6.2409e-17 -1.75208 2.66107) (-1.37284e-15 -0.411788 0.951708) (-2.3033e-15 -0.160712 0.529623) (-4.20222e-15 0.128638 -0.459735) (-5.07738e-15 0.35878 -1.15848) (-5.72793e-15 0.386774 -1.77932) (-6.58494e-15 0.568586 -1.99299) (-8.19982e-15 1.00631 -2.22697) (-1.08335e-14 1.44651 -2.5704) (-1.38552e-14 1.79407 -2.96191) (-1.57963e-14 1.99703 -3.28128) (-1.50148e-14 2.19136 -3.45277) (-1.1273e-14 2.33802 -3.41527) (-5.83967e-15 2.58413 -3.2685) (-6.00587e-16 2.78599 -3.11863) (2.38159e-15 2.82249 -2.92902) (1.92677e-15 2.55629 -2.68375) (-3.97755e-16 2.04829 -2.56542) (-1.09314e-15 1.49344 -2.72756) (-2.01487e-16 1.10074 -2.97229) (1.86683e-16 0.540572 -2.86746) (-4.52557e-18 -0.173605 -2.42485) (7.31305e-18 -0.623186 -1.84685) (-7.85502e-17 -1.47796 -1.56506) (3.20175e-17 -2.44087 -1.39817) (-1.15573e-17 -3.52791 -1.20065) (-2.2669e-17 -4.54497 -0.899362) (-2.47927e-17 -5.33529 -0.57825) (-2.67806e-17 -5.86284 -0.264331) (-2.79995e-17 -6.12632 0.0469688) (-2.87495e-17 -6.26334 0.355593) (-2.8843e-17 -6.20657 0.636886) (-2.84732e-17 -5.99588 0.89173) (-2.78493e-17 -5.61204 1.08384) (-2.71268e-17 -5.15173 1.21722) (-2.64093e-17 -4.67428 1.33329) (-2.57745e-17 -4.15093 1.43567) (-2.5269e-17 -3.59066 1.4932) (-2.49081e-17 -3.07445 1.50755) (-2.46627e-17 -2.65581 1.52351) (-2.44925e-17 -2.2289 1.49946) (-2.43503e-17 -1.76785 1.40145) (-2.41802e-17 -1.36923 1.31715) (-2.39993e-17 -1.18831 1.41434) (-2.38702e-17 -0.934757 1.4431) (-2.37117e-17 -0.507454 1.04704) (-2.34124e-17 -0.347375 0.566586) (-2.30631e-17 -0.218838 0.4488) (-2.25743e-17 -0.436473 0.608934) (-2.19343e-17 -1.00721 0.837521) (-2.12852e-17 -1.28201 0.928697) (-2.066e-17 -1.37163 0.999452) (-1.98145e-17 -1.43663 1.17926) (-1.91519e-17 -1.54674 1.49302) (-1.78472e-17 -1.6403 1.78805) (-5.09747e-18 -1.72254 1.99376) (-1.2796e-16 -1.76826 2.16161) (4.14659e-16 -1.76636 2.30505) (-4.33142e-18 -1.71629 2.41086) (-2.89704e-16 -1.61217 2.48238) (-3.92453e-16 -1.46283 2.49767) (-3.80105e-16 -1.29333 2.43943) (-2.54116e-16 -1.11937 2.30958) (-4.4453e-17 -0.951755 2.12116) (-8.05738e-17 -0.803692 1.89893) (-1.13396e-16 -0.638642 1.64994) (1.41083e-15 -0.451477 1.37934) (1.58617e-15 -0.273704 1.20482) (2.05946e-15 -0.213629 1.23224) (5.37247e-15 -0.23203 1.36246) (5.7102e-15 -0.194705 1.41272) (-1.65406e-15 -0.0489881 1.28464) (-9.6249e-16 0.149581 1.01124) (-2.12371e-16 0.167869 0.846259) (8.02767e-17 -0.188084 1.0005) (-3.60745e-18 -0.656573 1.3375) (-3.98493e-17 -1.04063 1.72317) (-5.03748e-17 -1.30507 2.10297) (-5.38901e-17 -1.46654 2.46012) (-5.54548e-17 -1.54587 2.7759) (-5.52157e-17 -1.564 3.03884) (-5.34284e-17 -1.53716 3.24392) (-5.13051e-17 -1.48019 3.39279) (-5.01456e-17 -1.40644 3.49201) (-5.06126e-17 -1.32624 3.54879) (-5.24476e-17 -1.24834 3.57103) (-5.47671e-17 -1.17833 3.5683) (-5.66599e-17 -1.12021 3.54872) (-5.7617e-17 -1.07085 3.51775) (-5.76176e-17 -1.03197 3.48069) (-5.69526e-17 -1.00158 3.43798) (-5.60042e-17 -0.977244 3.3884) (-5.51e-17 -0.957842 3.32562) (-5.444e-17 -0.946123 3.24233) (-5.40248e-17 -0.942464 3.13332) (-5.3742e-17 -0.952388 2.99547) (-5.35107e-17 -1.01783 2.88771) (-5.29872e-17 -1.13085 2.862) (-5.30887e-17 -1.19224 2.74791) (-5.57345e-17 -1.18684 2.40978) (-6.44848e-17 -1.88956 2.5073) (-1.43574e-15 -0.40134 0.879994) (-2.37513e-15 -0.120118 0.458227) (-4.03304e-15 0.164118 -0.494807) (-4.99571e-15 0.393659 -1.27496) (-5.69475e-15 0.39474 -1.86144) (-6.6027e-15 0.575317 -2.04132) (-8.23334e-15 1.02853 -2.25084) (-1.08034e-14 1.48356 -2.58543) (-1.36748e-14 1.83009 -2.97671) (-1.54013e-14 2.0188 -3.29046) (-1.44294e-14 2.20363 -3.45258) (-1.05943e-14 2.3374 -3.3948) (-5.20157e-15 2.57985 -3.22896) (-1.49632e-16 2.78041 -3.07269) (2.50904e-15 2.81497 -2.87971) (1.78863e-15 2.55551 -2.63475) (-5.67721e-16 2.07152 -2.54247) (-9.97039e-16 1.52907 -2.73972) (-1.98227e-16 1.12421 -2.99109) (2.59082e-17 0.534268 -2.8617) (-1.68478e-16 -0.184775 -2.38795) (-3.58812e-17 -0.632402 -1.78676) (-1.23165e-17 -1.47009 -1.52916) (5.19739e-17 -2.42595 -1.36044) (-2.25223e-17 -3.52997 -1.16119) (-2.36498e-17 -4.56636 -0.857306) (-2.46966e-17 -5.3704 -0.538866) (-2.66007e-17 -5.90013 -0.228174) (-2.8118e-17 -6.16564 0.0738259) (-2.89035e-17 -6.30911 0.374254) (-2.89983e-17 -6.25167 0.650089) (-2.86067e-17 -6.0288 0.899631) (-2.79489e-17 -5.63862 1.08883) (-2.71902e-17 -5.1798 1.2186) (-2.64462e-17 -4.70544 1.33699) (-2.5797e-17 -4.16175 1.4373) (-2.52848e-17 -3.6037 1.49785) (-2.49185e-17 -3.0832 1.51289) (-2.46652e-17 -2.65581 1.53143) (-2.44817e-17 -2.217 1.50503) (-2.43223e-17 -1.7399 1.39892) (-2.41464e-17 -1.35831 1.31759) (-2.39762e-17 -1.21186 1.42493) (-2.38497e-17 -0.914827 1.42132) (-2.3674e-17 -0.434415 0.969667) (-2.33949e-17 -0.335198 0.514964) (-2.30767e-17 -0.234576 0.455079) (-2.25878e-17 -0.479153 0.628538) (-2.19392e-17 -1.04724 0.855543) (-2.12978e-17 -1.32016 0.949107) (-2.06641e-17 -1.40663 1.03443) (-1.97261e-17 -1.48383 1.24176) (-1.8887e-17 -1.60835 1.57018) (-1.69293e-17 -1.69366 1.85004) (-8.32588e-18 -1.7657 2.02426) (-1.26882e-16 -1.79801 2.16367) (9.95106e-16 -1.79324 2.29413) (3.40584e-16 -1.73896 2.39666) (-2.46182e-16 -1.62675 2.46291) (-3.6686e-16 -1.46466 2.46072) (-3.24325e-16 -1.28394 2.37638) (-1.24211e-16 -1.10112 2.22046) (9.63641e-17 -0.926424 2.00877) (-9.44915e-17 -0.775289 1.76735) (1.32622e-15 -0.610497 1.51381) (2.19305e-15 -0.423892 1.28563) (2.2977e-15 -0.265502 1.20245) (1.24133e-15 -0.228554 1.28938) (1.78461e-15 -0.242419 1.41389) (1.55018e-15 -0.171592 1.42197) (6.22642e-15 0.00963793 1.24467) (-4.19418e-16 0.211594 0.952513) (1.20435e-17 0.144964 0.856191) (1.3967e-17 -0.289157 1.08116) (-4.3937e-17 -0.776708 1.4546) (-5.09501e-17 -1.15286 1.86009) (-5.28049e-17 -1.40248 2.25143) (-5.3885e-17 -1.5465 2.60934) (-5.38305e-17 -1.60898 2.91455) (-5.28905e-17 -1.61142 3.15782) (-5.18155e-17 -1.57102 3.33851) (-5.1474e-17 -1.50221 3.46182) (-5.22746e-17 -1.41887 3.53726) (-5.39114e-17 -1.33088 3.57266) (-5.56452e-17 -1.24792 3.57582) (-5.68034e-17 -1.1748 3.55547) (-5.711e-17 -1.11554 3.52061) (-5.66886e-17 -1.06698 3.47659) (-5.58758e-17 -1.02855 3.42692) (-5.50074e-17 -0.999247 3.37227) (-5.43088e-17 -0.974581 3.31014) (-5.38884e-17 -0.951853 3.23357) (-5.37366e-17 -0.933947 3.13842) (-5.36883e-17 -0.921898 3.02253) (-5.35982e-17 -0.932335 2.8914) (-5.34217e-17 -1.01262 2.82389) (-5.29307e-17 -1.10741 2.80718) (-5.37991e-17 -1.11961 2.56596) (-5.80414e-17 -1.17761 2.16975) (-6.62046e-17 -2.04079 2.35107) (-1.51001e-15 -0.396068 0.813547) (-2.44462e-15 -0.0829528 0.342833) (-3.87338e-15 0.203718 -0.58103) (-4.91116e-15 0.425328 -1.38479) (-5.65616e-15 0.406557 -1.93993) (-6.60155e-15 0.578739 -2.08263) (-8.22973e-15 1.05151 -2.26891) (-1.07252e-14 1.52138 -2.59702) (-1.34408e-14 1.85932 -2.98788) (-1.4955e-14 2.04448 -3.29986) (-1.38055e-14 2.21339 -3.45116) (-9.89672e-15 2.33432 -3.37335) (-4.57256e-15 2.5759 -3.18927) (2.61779e-16 2.77577 -3.02691) (2.57058e-15 2.80685 -2.82978) (1.62223e-15 2.55707 -2.58576) (-4.64315e-16 2.09945 -2.52189) (-9.38116e-16 1.56651 -2.75463) (-1.69445e-16 1.14364 -3.01041) (7.05945e-18 0.52642 -2.85868) (-8.92872e-17 -0.204172 -2.35297) (-4.85878e-17 -0.670401 -1.72977) (-2.06915e-17 -1.45769 -1.49539) (-1.57776e-17 -2.40918 -1.32397) (-2.51247e-17 -3.5323 -1.12062) (-2.346e-17 -4.58793 -0.813665) (-2.46618e-17 -5.40691 -0.497189) (-2.66617e-17 -5.93541 -0.190195) (-2.82476e-17 -6.20336 0.101891) (-2.90634e-17 -6.35163 0.391843) (-2.91571e-17 -6.29991 0.665244) (-2.87413e-17 -6.06238 0.90942) (-2.80495e-17 -5.66732 1.09444) (-2.7256e-17 -5.21161 1.22099) (-2.64834e-17 -4.73059 1.34069) (-2.58168e-17 -4.16926 1.43955) (-2.52969e-17 -3.60866 1.49935) (-2.49248e-17 -3.08911 1.51934) (-2.46635e-17 -2.6532 1.54175) (-2.44639e-17 -2.19792 1.51058) (-2.42916e-17 -1.70799 1.39645) (-2.41242e-17 -1.35227 1.31541) (-2.39707e-17 -1.23191 1.42712) (-2.38542e-17 -0.877866 1.38863) (-2.36739e-17 -0.347704 0.891753) (-2.34166e-17 -0.337943 0.50138) (-2.30873e-17 -0.249119 0.477063) (-2.25577e-17 -0.526718 0.649629) (-2.18998e-17 -1.09591 0.873519) (-2.12632e-17 -1.35443 0.970814) (-2.05808e-17 -1.41852 1.06907) (-1.95408e-17 -1.52046 1.30399) (-1.85533e-17 -1.65062 1.63902) (-1.59948e-17 -1.73012 1.89907) (-1.03353e-17 -1.79501 2.0399) (-1.33957e-16 -1.81658 2.15349) (-1.11904e-15 -1.80997 2.27601) (2.12194e-16 -1.75197 2.37847) (-2.23245e-16 -1.63128 2.43765) (-4.70108e-16 -1.45793 2.41491) (-2.47233e-16 -1.26635 2.30241) (1.13491e-17 -1.07417 2.1208) (2.3745e-16 -0.895159 1.88912) (-9.88179e-18 -0.745155 1.6351) (2.44121e-15 -0.584894 1.39671) (2.37449e-15 -0.401936 1.23583) (1.59999e-15 -0.261819 1.22917) (8.98976e-16 -0.241306 1.33845) (-3.6072e-15 -0.240625 1.44647) (-4.6517e-17 -0.135455 1.41856) (3.46649e-16 0.0761823 1.19641) (2.4244e-16 0.262658 0.90506) (-3.20291e-17 0.0943425 0.888761) (-5.09516e-17 -0.406025 1.17591) (-4.9846e-17 -0.901754 1.58103) (-5.03415e-17 -1.26536 2.00416) (-5.16619e-17 -1.49781 2.40341) (-5.2514e-17 -1.62342 2.75674) (-5.25807e-17 -1.66861 3.04626) (-5.2393e-17 -1.65441 3.2666) (-5.25958e-17 -1.6002 3.4223) (-5.34466e-17 -1.51978 3.52125) (-5.46833e-17 -1.42824 3.57467) (-5.57717e-17 -1.33421 3.58957) (-5.62951e-17 -1.24741 3.57298) (-5.61652e-17 -1.17265 3.5337) (-5.55811e-17 -1.11201 3.48117) (-5.48488e-17 -1.0647 3.42269) (-5.42187e-17 -1.02637 3.35966) (-5.3811e-17 -0.996552 3.29305) (-5.36383e-17 -0.969344 3.22084) (-5.36639e-17 -0.940283 3.13646) (-5.3789e-17 -0.913162 3.03957) (-5.38122e-17 -0.891173 2.92795) (-5.36787e-17 -0.905504 2.81801) (-5.34215e-17 -0.995348 2.79509) (-5.30219e-17 -1.04198 2.7359) (-5.5015e-17 -1.00675 2.30991) (-6.05756e-17 -1.18992 1.91684) (-6.74314e-17 -2.20521 2.19435) (-1.5956e-15 -0.400895 0.760877) (-2.53182e-15 -0.0338743 0.194523) (-3.71283e-15 0.246096 -0.67188) (-4.81995e-15 0.453416 -1.48843) (-5.60609e-15 0.412708 -2.012) (-6.57454e-15 0.576708 -2.11572) (-8.18654e-15 1.07432 -2.28059) (-1.05978e-14 1.56154 -2.60631) (-1.31547e-14 1.89393 -2.99901) (-1.44647e-14 2.06504 -3.30727) (-1.3152e-14 2.22036 -3.44966) (-9.18935e-15 2.32744 -3.3504) (-3.96124e-15 2.57152 -3.14869) (6.27707e-16 2.77264 -2.98147) (2.62769e-15 2.79896 -2.77927) (1.56698e-15 2.56125 -2.53619) (-3.86011e-16 2.12898 -2.50333) (-7.10916e-16 1.60359 -2.7722) (-1.56261e-16 1.15695 -3.02725) (2.3985e-17 0.524876 -2.85912) (-6.22172e-17 -0.234986 -2.31783) (-4.92008e-17 -0.705702 -1.66743) (-2.83268e-17 -1.42754 -1.46373) (-2.87866e-17 -2.38373 -1.29149) (-2.53649e-17 -3.5278 -1.08324) (-2.33391e-17 -4.61168 -0.769077) (-2.45947e-17 -5.44785 -0.45195) (-2.67088e-17 -5.96541 -0.151422) (-2.83783e-17 -6.23714 0.12937) (-2.92321e-17 -6.39505 0.409499) (-2.93241e-17 -6.34392 0.680077) (-2.88822e-17 -6.09965 0.922319) (-2.8154e-17 -5.69871 1.10183) (-2.7322e-17 -5.25037 1.22717) (-2.65166e-17 -4.75416 1.34619) (-2.5831e-17 -4.18559 1.44529) (-2.53043e-17 -3.61606 1.50161) (-2.49281e-17 -3.09405 1.527) (-2.46602e-17 -2.65045 1.55507) (-2.44495e-17 -2.17407 1.51666) (-2.42744e-17 -1.67603 1.39305) (-2.4125e-17 -1.361 1.31429) (-2.39909e-17 -1.25364 1.42805) (-2.38804e-17 -0.842278 1.35751) (-2.36734e-17 -0.261622 0.826897) (-2.34045e-17 -0.3275 0.50524) (-2.3029e-17 -0.239861 0.49699) (-2.24792e-17 -0.58781 0.670986) (-2.18401e-17 -1.16034 0.897691) (-2.12139e-17 -1.38185 0.998148) (-2.04681e-17 -1.42916 1.10785) (-1.9345e-17 -1.56969 1.37062) (-1.8223e-17 -1.685 1.70213) (-1.53271e-17 -1.75595 1.93445) (-1.09387e-17 -1.82025 2.04284) (-2.49998e-17 -1.83933 2.13865) (-3.03887e-16 -1.82895 2.25778) (-6.20976e-16 -1.76448 2.35956) (-2.78961e-16 -1.62793 2.40462) (-4.79352e-16 -1.44427 2.35776) (-9.98116e-17 -1.23954 2.21638) (2.02896e-16 -1.0382 2.01161) (3.07786e-16 -0.854925 1.76377) (6.38471e-16 -0.710217 1.50712) (1.09439e-15 -0.555419 1.30679) (1.94846e-15 -0.37601 1.2226) (1.29971e-15 -0.257822 1.26402) (4.5335e-16 -0.245463 1.36908) (-1.74471e-16 -0.225362 1.46481) (-2.82842e-16 -0.0799555 1.40352) (-2.1977e-16 0.1565 1.13874) (-8.89659e-17 0.307793 0.868379) (-5.28493e-17 0.02616 0.937109) (-4.49753e-17 -0.527922 1.28116) (-4.66516e-17 -1.02354 1.71478) (-4.9942e-17 -1.37269 2.15284) (-5.19568e-17 -1.58841 2.55575) (-5.27893e-17 -1.69617 2.89971) (-5.31127e-17 -1.72284 3.1699) (-5.34877e-17 -1.69091 3.36581) (-5.41248e-17 -1.62261 3.4965) (-5.48697e-17 -1.53182 3.57146) (-5.54062e-17 -1.43356 3.60253) (-5.55178e-17 -1.33557 3.59626) (-5.52198e-17 -1.24602 3.5584) (-5.47033e-17 -1.17112 3.49922) (-5.41948e-17 -1.11015 3.42842) (-5.38455e-17 -1.06317 3.35503) (-5.3697e-17 -1.02524 3.28046) (-5.37064e-17 -0.993758 3.20568) (-5.38119e-17 -0.960834 3.12997) (-5.39651e-17 -0.920807 3.04742) (-5.40663e-17 -0.882008 2.96033) (-5.3949e-17 -0.850007 2.86227) (-5.36951e-17 -0.870701 2.78265) (-5.33791e-17 -0.953853 2.78871) (-5.3282e-17 -0.916852 2.61034) (-5.67743e-17 -0.864121 1.96588) (-6.29545e-17 -1.24845 1.68024) (-6.81685e-17 -2.38287 2.03718) (-1.69884e-15 -0.403462 0.725961) (-2.603e-15 0.00478523 0.105932) (-3.55198e-15 0.291968 -0.774378) (-4.71683e-15 0.488012 -1.59104) (-5.54041e-15 0.416544 -2.07971) (-6.52008e-15 0.584053 -2.14574) (-8.10192e-15 1.09699 -2.28598) (-1.04233e-14 1.60291 -2.61211) (-1.2824e-14 1.93444 -3.01195) (-1.39392e-14 2.08433 -3.31489) (-1.24767e-14 2.22449 -3.44693) (-8.47791e-15 2.31874 -3.32652) (-3.36987e-15 2.56388 -3.10612) (9.56394e-16 2.76539 -2.93448) (2.66727e-15 2.79198 -2.72855) (1.49304e-15 2.56743 -2.48692) (-5.85052e-16 2.15847 -2.48616) (-1.28444e-15 1.64152 -2.7927) (-1.05284e-16 1.16572 -3.04376) (3.38537e-17 0.517337 -2.86057) (-5.88304e-17 -0.302242 -2.27588) (-4.68068e-17 -0.784275 -1.6471) (-3.0929e-17 -1.40617 -1.43618) (-2.97618e-17 -2.3625 -1.25922) (-2.55783e-17 -3.5274 -1.04475) (-2.31929e-17 -4.64386 -0.722149) (-2.45255e-17 -5.49187 -0.402771) (-2.67684e-17 -5.98856 -0.111071) (-2.85141e-17 -6.27215 0.157738) (-2.94057e-17 -6.44038 0.427755) (-2.94977e-17 -6.38714 0.695118) (-2.90304e-17 -6.13746 0.935931) (-2.82602e-17 -5.73648 1.11093) (-2.73824e-17 -5.29183 1.23487) (-2.65427e-17 -4.77879 1.35354) (-2.58405e-17 -4.2075 1.45344) (-2.53085e-17 -3.62907 1.50734) (-2.493e-17 -3.10417 1.53921) (-2.46586e-17 -2.65352 1.57376) (-2.44476e-17 -2.15451 1.52591) (-2.428e-17 -1.64476 1.38805) (-2.41481e-17 -1.38751 1.31244) (-2.40272e-17 -1.28549 1.42657) (-2.39025e-17 -0.81679 1.32712) (-2.36233e-17 -0.141414 0.765688) (-2.33167e-17 -0.277525 0.511889) (-2.29191e-17 -0.228374 0.512865) (-2.24147e-17 -0.669578 0.691166) (-2.18161e-17 -1.23639 0.929366) (-2.11755e-17 -1.41881 1.03649) (-2.0385e-17 -1.47379 1.15972) (-1.91979e-17 -1.6389 1.44533) (-1.78929e-17 -1.72551 1.76547) (-1.49508e-17 -1.78414 1.95832) (-1.06424e-17 -1.84961 2.03447) (-1.18072e-17 -1.87897 2.12567) (5.31514e-17 -1.86464 2.24719) (2.17447e-17 -1.78693 2.34424) (-3.95383e-16 -1.62517 2.36564) (-6.31975e-16 -1.42684 2.28966) (1.29547e-16 -1.20666 2.12081) (5.61361e-16 -0.997934 1.89684) (5.49187e-16 -0.813143 1.6385) (7.44147e-16 -0.677808 1.39182) (1.5433e-15 -0.5256 1.25025) (1.64736e-15 -0.348429 1.23193) (7.02637e-16 -0.259487 1.29102) (-2.02053e-17 -0.249014 1.38738) (-5.41633e-17 -0.200858 1.47841) (-1.97512e-17 -0.00122015 1.38013) (-4.22204e-17 0.26626 1.06019) (-3.76709e-17 0.353833 0.836786) (-3.83289e-17 -0.0550772 0.99796) (-4.37223e-17 -0.651603 1.39576) (-4.81217e-17 -1.13978 1.85419) (-5.10397e-17 -1.47397 2.30336) (-5.26074e-17 -1.67319 2.70557) (-5.33471e-17 -1.76132 3.03624) (-5.38103e-17 -1.76707 3.28424) (-5.42671e-17 -1.71805 3.45439) (-5.46937e-17 -1.63686 3.55891) (-5.49374e-17 -1.53775 3.60897) (-5.49042e-17 -1.43304 3.61604) (-5.4641e-17 -1.33172 3.5874) (-5.42939e-17 -1.24075 3.52775) (-5.401e-17 -1.16585 3.44862) (-5.3868e-17 -1.10726 3.36173) (-5.38665e-17 -1.06106 3.27587) (-5.39514e-17 -1.02416 3.19453) (-5.40566e-17 -0.99047 3.12003) (-5.41542e-17 -0.948599 3.05126) (-5.42258e-17 -0.896195 2.98225) (-5.41795e-17 -0.847092 2.91503) (-5.3902e-17 -0.807881 2.83548) (-5.3604e-17 -0.832807 2.78871) (-5.33413e-17 -0.880977 2.7839) (-5.38385e-17 -0.727699 2.38794) (-5.90364e-17 -0.72689 1.54818) (-6.48149e-17 -1.38008 1.48838) (-6.853e-17 -2.57032 1.87475) (-1.83869e-15 -0.399011 0.712648) (-2.58253e-15 0.0308015 0.0979561) (-3.38255e-15 0.337336 -0.872544) (-4.59733e-15 0.522405 -1.69099) (-5.44969e-15 0.422602 -2.14338) (-6.4303e-15 0.591144 -2.16919) (-7.97532e-15 1.11642 -2.28495) (-1.02046e-14 1.64244 -2.61373) (-1.24541e-14 1.96721 -3.02104) (-1.33849e-14 2.10246 -3.32283) (-1.17835e-14 2.22732 -3.44493) (-7.76647e-15 2.30654 -3.30139) (-2.8019e-15 2.55135 -3.0615) (1.24835e-15 2.7582 -2.88683) (2.66122e-15 2.78417 -2.67612) (1.32419e-15 2.57513 -2.43714) (-6.03914e-16 2.19554 -2.47295) (-8.78959e-16 1.68481 -2.81774) (-7.19834e-17 1.17401 -3.06007) (4.11293e-17 0.486961 -2.85974) (-5.84547e-17 -0.371946 -2.24237) (-4.48734e-17 -0.764888 -1.61084) (-3.32266e-17 -1.36066 -1.41368) (-3.06316e-17 -2.33316 -1.23173) (-2.58626e-17 -3.53306 -1.00689) (-2.30438e-17 -4.68515 -0.67226) (-2.44527e-17 -5.52938 -0.351109) (-2.68295e-17 -6.01579 -0.0669648) (-2.8656e-17 -6.32059 0.189335) (-2.95831e-17 -6.49101 0.447812) (-2.96721e-17 -6.43155 0.711859) (-2.91772e-17 -6.17277 0.949587) (-2.83604e-17 -5.77538 1.1211) (-2.74352e-17 -5.32682 1.24312) (-2.65654e-17 -4.7991 1.36125) (-2.585e-17 -4.22665 1.4606) (-2.53134e-17 -3.6473 1.5155) (-2.49343e-17 -3.11845 1.55488) (-2.4665e-17 -2.66459 1.59833) (-2.44618e-17 -2.13584 1.53888) (-2.43075e-17 -1.62016 1.38166) (-2.41879e-17 -1.42652 1.3057) (-2.40514e-17 -1.33467 1.42853) (-2.3885e-17 -0.81097 1.31387) (-2.35127e-17 -0.0600009 0.77877) (-2.31683e-17 -0.272125 0.566722) (-2.28306e-17 -0.232759 0.51943) (-2.24132e-17 -0.773653 0.713238) (-2.18309e-17 -1.3315 0.972039) (-2.1143e-17 -1.49093 1.08824) (-2.03282e-17 -1.57143 1.23062) (-1.90847e-17 -1.71037 1.52425) (-1.75345e-17 -1.77836 1.8292) (-1.46694e-17 -1.8294 1.97597) (-1.00948e-17 -1.89373 2.02122) (1.37193e-17 -1.93655 2.11825) (-4.63181e-17 -1.91993 2.24681) (-8.31452e-17 -1.82097 2.33184) (-3.06998e-16 -1.63311 2.32322) (-3.96281e-16 -1.41217 2.21424) (5.05722e-16 -1.17812 2.02225) (9.61859e-16 -0.963726 1.78369) (8.05993e-16 -0.788024 1.52468) (1.04474e-16 -0.673463 1.30492) (1.27702e-15 -0.525452 1.23217) (1.2597e-15 -0.361851 1.25777) (2.44592e-16 -0.296715 1.31517) (-1.86543e-16 -0.277233 1.413) (-1.66019e-16 -0.186271 1.50099) (-8.73909e-17 0.0863238 1.35375) (-5.1973e-17 0.401258 0.977687) (-3.68791e-17 0.379664 0.82622) (-3.85837e-17 -0.167575 1.07941) (-4.43499e-17 -0.788815 1.52419) (-4.88142e-17 -1.2617 2.00225) (-5.15193e-17 -1.57604 2.4569) (-5.29918e-17 -1.75284 2.85281) (-5.37879e-17 -1.81412 3.16453) (-5.42853e-17 -1.79787 3.38598) (-5.46164e-17 -1.73461 3.52755) (-5.47605e-17 -1.64277 3.60418) (-5.46993e-17 -1.53637 3.62866) (-5.44956e-17 -1.42465 3.61123) (-5.42643e-17 -1.31901 3.55955) (-5.41043e-17 -1.22677 3.47897) (-5.40555e-17 -1.15358 3.38173) (-5.40985e-17 -1.10001 3.28238) (-5.41829e-17 -1.05919 3.19082) (-5.42555e-17 -1.02458 3.11129) (-5.42867e-17 -0.990065 3.04918) (-5.4295e-17 -0.940196 2.99851) (-5.42614e-17 -0.88305 2.95443) (-5.40922e-17 -0.829973 2.91219) (-5.37396e-17 -0.787063 2.8528) (-5.35133e-17 -0.808259 2.83319) (-5.34285e-17 -0.784583 2.74267) (-5.48561e-17 -0.499318 2.02129) (-6.15418e-17 -0.655982 1.11793) (-6.59823e-17 -1.59303 1.35156) (-6.86761e-17 -2.75742 1.70537) (-2.02153e-15 -0.404177 0.693448) (-2.50292e-15 0.0776846 0.0198015) (-3.20268e-15 0.384225 -0.973202) (-4.45723e-15 0.554098 -1.78661) (-5.33469e-15 0.429057 -2.20413) (-6.30728e-15 0.578907 -2.18163) (-7.81077e-15 1.13591 -2.27877) (-9.94925e-15 1.68075 -2.61246) (-1.20546e-14 1.99296 -3.02817) (-1.28073e-14 2.10507 -3.32569) (-1.10756e-14 2.23147 -3.44348) (-7.06033e-15 2.29311 -3.27604) (-2.26647e-15 2.53552 -3.01435) (1.49133e-15 2.75179 -2.83857) (2.63024e-15 2.77335 -2.62198) (1.25226e-15 2.58689 -2.38725) (-6.07229e-16 2.23981 -2.46307) (-6.62405e-16 1.7304 -2.84615) (-4.94861e-17 1.17976 -3.07953) (4.80917e-17 0.437047 -2.86837) (-5.96127e-17 -0.467391 -2.24839) (-4.42514e-17 -0.800389 -1.69391) (-3.60035e-17 -1.32833 -1.40622) (-3.19338e-17 -2.31519 -1.20535) (-2.61742e-17 -3.55561 -0.965951) (-2.28932e-17 -4.72793 -0.619855) (-2.43763e-17 -5.5562 -0.29946) (-2.68931e-17 -6.05493 -0.0192107) (-2.8806e-17 -6.37493 0.222796) (-2.97667e-17 -6.5391 0.469068) (-2.98464e-17 -6.46857 0.72816) (-2.93169e-17 -6.20677 0.963408) (-2.84545e-17 -5.81074 1.13049) (-2.74879e-17 -5.35289 1.25009) (-2.6591e-17 -4.81036 1.36658) (-2.58627e-17 -4.23977 1.4645) (-2.53236e-17 -3.66182 1.52323) (-2.49452e-17 -3.1239 1.57075) (-2.46801e-17 -2.66182 1.62247) (-2.44838e-17 -2.10339 1.55) (-2.4338e-17 -1.60727 1.37395) (-2.42196e-17 -1.46534 1.28785) (-2.40348e-17 -1.37959 1.42743) (-2.38177e-17 -0.838478 1.34046) (-2.33836e-17 -0.0351048 0.857726) (-2.30393e-17 -0.331481 0.58469) (-2.28083e-17 -0.267278 0.491664) (-2.24384e-17 -0.887369 0.731613) (-2.18338e-17 -1.43438 1.01767) (-2.11254e-17 -1.55919 1.13956) (-2.02778e-17 -1.66039 1.31044) (-1.89618e-17 -1.75377 1.60143) (-1.71421e-17 -1.83173 1.88356) (-1.435e-17 -1.88702 1.9853) (-8.71428e-18 -1.95001 2.00846) (3.86327e-17 -1.99167 2.11392) (-5.01055e-18 -1.97018 2.24731) (-3.68417e-16 -1.84549 2.31158) (-6.06135e-16 -1.64265 2.27355) (2.21325e-15 -1.3953 2.13332) (9.45252e-16 -1.15608 1.92608) (1.45039e-15 -0.938581 1.67665) (5.5056e-16 -0.783501 1.42545) (7.69529e-16 -0.696575 1.25232) (1.31924e-15 -0.575349 1.23999) (6.39715e-16 -0.436373 1.28775) (-6.25612e-17 -0.360358 1.34086) (-1.58032e-16 -0.320903 1.45737) (-6.90251e-17 -0.165455 1.53252) (-2.69839e-17 0.181189 1.32274) (-1.94549e-17 0.512126 0.892901) (-2.84896e-17 0.335649 0.84358) (-3.8656e-17 -0.317344 1.18106) (-4.54602e-17 -0.937935 1.66499) (-4.9791e-17 -1.39029 2.15886) (-5.23832e-17 -1.68026 2.61436) (-5.37813e-17 -1.8282 2.99818) (-5.44805e-17 -1.85793 3.2838) (-5.47955e-17 -1.82179 3.47257) (-5.4854e-17 -1.74624 3.58217) (-5.47243e-17 -1.64367 3.62993) (-5.45016e-17 -1.52877 3.62952) (-5.42958e-17 -1.41021 3.58909) (-5.41805e-17 -1.29969 3.515) (-5.4169e-17 -1.20703 3.41428) (-5.42273e-17 -1.13929 3.30206) (-5.43028e-17 -1.09274 3.1952) (-5.43516e-17 -1.06026 3.1072) (-5.43509e-17 -1.02929 3.04134) (-5.43086e-17 -0.994896 3.00295) (-5.42645e-17 -0.942247 2.97795) (-5.41618e-17 -0.888526 2.96489) (-5.39296e-17 -0.83519 2.94623) (-5.35957e-17 -0.788097 2.90669) (-5.35296e-17 -0.789166 2.88854) (-5.37753e-17 -0.675745 2.58292) (-5.65541e-17 -0.278963 1.45361) (-6.37496e-17 -0.711181 0.780056) (-6.65499e-17 -1.85932 1.24812) (-6.87414e-17 -2.92899 1.53066) (-2.20562e-15 -0.394258 0.661791) (-2.40668e-15 0.138181 -0.0795093) (-3.00624e-15 0.432009 -1.06936) (-4.2905e-15 0.578289 -1.87626) (-5.18762e-15 0.421112 -2.25748) (-6.1514e-15 0.560093 -2.18718) (-7.61323e-15 1.15574 -2.26732) (-9.6649e-15 1.7193 -2.60971) (-1.16308e-14 2.02265 -3.03771) (-1.22091e-14 2.14288 -3.34) (-1.03577e-14 2.22533 -3.43807) (-6.36776e-15 2.28522 -3.2528) (-1.76924e-15 2.52467 -2.9678) (1.69089e-15 2.74532 -2.78927) (2.59047e-15 2.76043 -2.56527) (1.16427e-15 2.61184 -2.33999) (-5.82538e-16 2.289 -2.45691) (-5.67433e-16 1.77348 -2.87512) (-2.70538e-17 1.18247 -3.10078) (4.8057e-17 0.385296 -2.90334) (-5.97334e-17 -0.548844 -2.30456) (-4.51688e-17 -0.768457 -1.73593) (-3.90304e-17 -1.28337 -1.40853) (-3.33019e-17 -2.29772 -1.18478) (-2.65603e-17 -3.58859 -0.922726) (-2.27391e-17 -4.772 -0.562277) (-2.42977e-17 -5.59231 -0.242307) (-2.696e-17 -6.09695 0.0288488) (-2.89639e-17 -6.42453 0.256024) (-2.99603e-17 -6.5803 0.490543) (-3.00294e-17 -6.50192 0.744315) (-2.94604e-17 -6.24359 0.978231) (-2.85529e-17 -5.84302 1.14099) (-2.7546e-17 -5.35902 1.25391) (-2.66188e-17 -4.79648 1.3641) (-2.58763e-17 -4.22473 1.45719) (-2.53365e-17 -3.64226 1.5209) (-2.49592e-17 -3.10155 1.58143) (-2.46919e-17 -2.62117 1.63699) (-2.44954e-17 -2.04914 1.55092) (-2.43499e-17 -1.59137 1.35674) (-2.42153e-17 -1.49546 1.26016) (-2.39851e-17 -1.35269 1.40522) (-2.37366e-17 -0.687167 1.31988) (-2.32827e-17 0.191512 0.853198) (-2.29806e-17 -0.261341 0.39255) (-2.28222e-17 -0.287851 0.440818) (-2.24261e-17 -1.00172 0.749766) (-2.18046e-17 -1.51169 1.05567) (-2.11286e-17 -1.55371 1.17181) (-2.02282e-17 -1.65459 1.36854) (-1.88091e-17 -1.75853 1.66366) (-1.67357e-17 -1.8663 1.91401) (-1.38211e-17 -1.93184 1.97951) (-6.60526e-18 -1.99102 1.99694) (6.25993e-17 -2.01971 2.10973) (-8.1243e-17 -1.99091 2.23659) (-2.20875e-16 -1.84346 2.27076) (-6.69327e-16 -1.63392 2.2069) (-8.53513e-16 -1.36586 2.0448) (7.89675e-16 -1.12563 1.82949) (1.09443e-15 -0.904048 1.57401) (2.25878e-16 -0.764877 1.33608) (-1.45956e-17 -0.689132 1.2231) (6.42558e-16 -0.615026 1.24403) (9.13323e-17 -0.498952 1.30342) (-9.5722e-17 -0.389517 1.36662) (-3.47724e-17 -0.32458 1.50955) (6.32567e-19 -0.107059 1.56727) (-3.75885e-18 0.292811 1.29892) (-1.6354e-17 0.581247 0.869822) (-3.18539e-17 0.216197 0.904237) (-4.15542e-17 -0.486359 1.2988) (-4.75026e-17 -1.08912 1.81329) (-5.12902e-17 -1.51814 2.31939) (-5.35121e-17 -1.78464 2.77278) (-5.45874e-17 -1.90129 3.13877) (-5.49357e-17 -1.90406 3.39291) (-5.48866e-17 -1.84744 3.54322) (-5.4653e-17 -1.75722 3.61933) (-5.43866e-17 -1.64196 3.63929) (-5.41965e-17 -1.5168 3.61501) (-5.41305e-17 -1.39185 3.55269) (-5.41711e-17 -1.27965 3.45742) (-5.42638e-17 -1.19092 3.33842) (-5.43511e-17 -1.13082 3.21562) (-5.43941e-17 -1.08987 3.10877) (-5.43805e-17 -1.06215 3.03436) (-5.43202e-17 -1.03208 2.9927) (-5.4244e-17 -0.99451 2.98301) (-5.41836e-17 -0.940705 2.9835) (-5.40294e-17 -0.883427 2.99836) (-5.37959e-17 -0.828003 2.99186) (-5.35507e-17 -0.761416 2.96532) (-5.37363e-17 -0.70968 2.86331) (-5.46973e-17 -0.493689 2.1036) (-5.93998e-17 -0.0770843 0.631095) (-6.51224e-17 -0.91431 0.615778) (-6.67718e-17 -2.12944 1.14019) (-6.87927e-17 -3.06937 1.35805) (-2.38575e-15 -0.369836 0.609358) (-2.30455e-15 0.168288 -0.169227) (-2.79845e-15 0.484386 -1.16577) (-4.10582e-15 0.596881 -1.96298) (-5.02047e-15 0.404131 -2.30686) (-5.96839e-15 0.546176 -2.18947) (-7.38984e-15 1.1782 -2.25134) (-9.35874e-15 1.75969 -2.60443) (-1.11876e-14 2.05799 -3.04479) (-1.15941e-14 2.18605 -3.35807) (-9.63494e-15 2.20541 -3.43196) (-5.69613e-15 2.25945 -3.22218) (-1.31322e-15 2.51225 -2.91977) (1.85488e-15 2.73855 -2.7394) (2.53685e-15 2.74747 -2.50623) (1.07185e-15 2.62623 -2.28816) (-5.4627e-16 2.32982 -2.4507) (-5.1338e-16 1.81385 -2.9035) (-1.19725e-16 1.17269 -3.12868) (4.23359e-17 0.346021 -2.97223) (-6.08848e-17 -0.535711 -2.43923) (-4.79637e-17 -0.690442 -1.89827) (-4.2683e-17 -1.24498 -1.42615) (-3.49387e-17 -2.29721 -1.166) (-2.70166e-17 -3.625 -0.88008) (-2.25821e-17 -4.82521 -0.499573) (-2.42179e-17 -5.63662 -0.179252) (-2.70313e-17 -6.11919 0.0726172) (-2.91295e-17 -6.45585 0.284806) (-3.01635e-17 -6.60754 0.509106) (-3.0224e-17 -6.54768 0.764419) (-2.96161e-17 -6.28934 0.996155) (-2.86568e-17 -5.8755 1.15578) (-2.76008e-17 -5.34743 1.25689) (-2.66415e-17 -4.77877 1.36074) (-2.58861e-17 -4.19989 1.44505) (-2.53439e-17 -3.59941 1.50987) (-2.49646e-17 -3.06224 1.58785) (-2.46877e-17 -2.55862 1.64392) (-2.44886e-17 -1.995 1.54329) (-2.43453e-17 -1.57948 1.32884) (-2.41904e-17 -1.53882 1.23842) (-2.39449e-17 -1.25569 1.37746) (-2.36797e-17 -0.340901 1.24915) (-2.32208e-17 0.545262 0.820989) (-2.29727e-17 0.175035 -0.15476) (-2.28242e-17 -0.311707 0.396162) (-2.23791e-17 -1.12581 0.777979) (-2.17747e-17 -1.52236 1.08555) (-2.11176e-17 -1.49428 1.20135) (-2.01688e-17 -1.6063 1.40909) (-1.8645e-17 -1.76238 1.70747) (-1.63474e-17 -1.87765 1.91755) (-1.29684e-17 -1.93996 1.95774) (-3.49238e-18 -2.00193 1.98775) (8.48795e-17 -2.0369 2.10659) (-3.26138e-16 -2.00576 2.21372) (-5.46424e-16 -1.84327 2.21467) (-8.8042e-16 -1.61179 2.12531) (-4.21795e-16 -1.32763 1.95358) (1.74559e-15 -1.07762 1.73467) (1.14294e-15 -0.850391 1.47811) (1.43457e-16 -0.713757 1.25849) (2.51146e-18 -0.646239 1.19165) (-3.26507e-16 -0.594681 1.23034) (-1.46687e-16 -0.468003 1.29857) (1.05944e-17 -0.346825 1.3846) (1.65002e-17 -0.252246 1.54156) (-5.7318e-18 -0.00800976 1.58207) (-1.90731e-17 0.449589 1.22205) (-2.77191e-17 0.605642 0.838021) (-3.73228e-17 0.0726278 0.970385) (-4.4282e-17 -0.643674 1.42053) (-4.9157e-17 -1.22227 1.96138) (-5.23655e-17 -1.63403 2.4772) (-5.41093e-17 -1.87721 2.9231) (-5.4743e-17 -1.96731 3.26652) (-5.47227e-17 -1.95069 3.48752) (-5.44489e-17 -1.8728 3.59962) (-5.41836e-17 -1.76503 3.64319) (-5.40514e-17 -1.63834 3.63785) (-5.40673e-17 -1.50556 3.59083) (-5.41787e-17 -1.3742 3.50496) (-5.43118e-17 -1.26404 3.38882) (-5.44089e-17 -1.18101 3.25508) (-5.44422e-17 -1.12927 3.13037) (-5.44117e-17 -1.09062 3.034) (-5.43373e-17 -1.06502 2.98356) (-5.42462e-17 -1.03107 2.97119) (-5.4169e-17 -0.987368 2.98735) (-5.4106e-17 -0.921969 3.00617) (-5.39068e-17 -0.846027 3.03697) (-5.37531e-17 -0.776127 3.02236) (-5.36343e-17 -0.638739 2.97747) (-5.41313e-17 -0.429847 2.63044) (-5.65025e-17 -0.0580915 1.11645) (-6.35642e-17 0.106733 -0.301598) (-6.55795e-17 -1.20222 0.579754) (-6.68885e-17 -2.3561 1.00274) (-6.88342e-17 -3.17255 1.19574) (-2.5604e-15 -0.410503 0.568059) (-2.19379e-15 0.178436 -0.250497) (-2.55953e-15 0.5273 -1.25833) (-3.88906e-15 0.608894 -2.0496) (-4.83851e-15 0.397364 -2.35618) (-5.77066e-15 0.536117 -2.18781) (-7.14723e-15 1.20362 -2.23211) (-9.03306e-15 1.80753 -2.60076) (-1.07252e-14 2.09519 -3.05405) (-1.09656e-14 2.1824 -3.36339) (-8.9146e-15 2.1972 -3.43118) (-5.05045e-15 2.23017 -3.18767) (-8.9679e-16 2.49995 -2.86806) (1.9897e-15 2.73194 -2.68985) (2.46208e-15 2.73794 -2.44979) (9.4734e-16 2.62131 -2.23179) (-5.16942e-16 2.35931 -2.44242) (-4.28032e-16 1.84653 -2.93276) (5.80818e-16 1.15604 -3.17111) (1.75234e-18 0.371348 -3.07959) (-6.49848e-17 -0.556039 -2.53684) (-5.24968e-17 -0.821906 -1.94285) (-4.69615e-17 -1.26375 -1.42612) (-3.68417e-17 -2.32467 -1.14039) (-2.75449e-17 -3.64807 -0.84137) (-2.24235e-17 -4.86632 -0.436953) (-2.41372e-17 -5.65619 -0.116732) (-2.71081e-17 -6.13805 0.119535) (-2.93043e-17 -6.48112 0.312236) (-3.03729e-17 -6.63819 0.525596) (-3.04218e-17 -6.62418 0.791034) (-2.97733e-17 -6.3539 1.0222) (-2.87546e-17 -5.91117 1.17817) (-2.7645e-17 -5.34932 1.26757) (-2.66581e-17 -4.81152 1.37112) (-2.58928e-17 -4.22705 1.4504) (-2.53448e-17 -3.60339 1.51517) (-2.49597e-17 -3.04158 1.60098) (-2.46776e-17 -2.51432 1.65346) (-2.44804e-17 -1.96394 1.53182) (-2.43432e-17 -1.57288 1.28965) (-2.41835e-17 -1.58101 1.2261) (-2.39363e-17 -1.18522 1.3753) (-2.36439e-17 -0.0834743 1.18735) (-2.31947e-17 0.901432 0.699078) (-2.29459e-17 -0.0420588 -0.687736) (-2.28168e-17 -0.434016 0.416345) (-2.23486e-17 -1.23406 0.805855) (-2.1768e-17 -1.49172 1.11738) (-2.10831e-17 -1.50169 1.25387) (-2.00972e-17 -1.6428 1.46372) (-1.84792e-17 -1.83811 1.75809) (-1.59237e-17 -1.88588 1.9132) (-1.17191e-17 -1.91897 1.93413) (3.64784e-19 -2.00568 1.98323) (9.95971e-17 -2.07066 2.09967) (-3.40452e-16 -2.03649 2.17785) (-4.04257e-16 -1.86819 2.15506) (-9.66327e-16 -1.58896 2.04281) (-6.62873e-18 -1.29094 1.87055) (2.34224e-15 -1.02835 1.65173) (1.13225e-15 -0.813209 1.40607) (1.55706e-16 -0.684846 1.22008) (1.17003e-16 -0.649348 1.16342) (1.01772e-16 -0.600692 1.22625) (4.31164e-17 -0.410883 1.27965) (-5.58159e-18 -0.294408 1.38826) (-3.03504e-17 -0.210073 1.57477) (-3.29372e-17 0.0645026 1.57801) (-3.21754e-17 0.589276 1.15374) (-3.39737e-17 0.630811 0.798165) (-4.02577e-17 -0.0687702 1.03614) (-4.58972e-17 -0.794372 1.5463) (-5.01707e-17 -1.35453 2.10937) (-5.29003e-17 -1.73779 2.62467) (-5.4192e-17 -1.95197 3.05569) (-5.44937e-17 -2.01578 3.37183) (-5.43283e-17 -1.97808 3.56033) (-5.41007e-17 -1.88426 3.64077) (-5.40159e-17 -1.76355 3.65575) (-5.40948e-17 -1.63072 3.62637) (-5.42554e-17 -1.49312 3.55672) (-5.44052e-17 -1.35835 3.44745) (-5.44897e-17 -1.24249 3.30987) (-5.44965e-17 -1.16258 3.16785) (-5.44405e-17 -1.11551 3.05145) (-5.43489e-17 -1.09243 2.98085) (-5.42508e-17 -1.07012 2.96089) (-5.41681e-17 -1.04655 2.98053) (-5.41115e-17 -0.997113 3.01641) (-5.40429e-17 -0.922169 3.0494) (-5.38128e-17 -0.820707 3.08259) (-5.38264e-17 -0.715657 3.04481) (-5.38639e-17 -0.435357 2.92336) (-5.46664e-17 0.0259493 2.21088) (-5.77962e-17 0.571851 0.312578) (-6.48424e-17 0.0525332 -0.236813) (-6.56138e-17 -1.44722 0.530181) (-6.70247e-17 -2.54828 0.849715) (-6.88401e-17 -3.2615 1.05615) (-2.76052e-15 -0.480622 0.490317) (-2.11678e-15 0.224299 -0.333841) (-2.3683e-15 0.58256 -1.33874) (-3.64e-15 0.646154 -2.14143) (-4.61379e-15 0.381222 -2.40727) (-5.55614e-15 0.523812 -2.18002) (-6.8902e-15 1.23576 -2.20758) (-8.69286e-15 1.84733 -2.58738) (-1.02467e-14 2.1293 -3.05907) (-1.03305e-14 2.17806 -3.36616) (-8.21196e-15 2.20161 -3.43563) (-4.44897e-15 2.2135 -3.16522) (-5.38302e-16 2.48298 -2.81872) (2.07595e-15 2.7327 -2.64155) (2.37157e-15 2.75311 -2.40204) (9.28474e-16 2.67922 -2.19169) (-4.54337e-16 2.47669 -2.44669) (-3.31578e-16 1.96328 -2.9894) (1.69652e-16 1.18328 -3.25838) (-8.14871e-18 0.394468 -3.18887) (-7.29385e-17 -0.504453 -2.64627) (-6.02804e-17 -0.898375 -2.06142) (-5.19176e-17 -1.34615 -1.40847) (-3.90304e-17 -2.38308 -1.09956) (-2.81522e-17 -3.7 -0.786984) (-2.22608e-17 -4.91039 -0.36706) (-2.40512e-17 -5.68168 -0.0498316) (-2.71878e-17 -6.17777 0.173224) (-2.94862e-17 -6.51172 0.341908) (-3.05867e-17 -6.6758 0.538273) (-3.06186e-17 -6.67569 0.803957) (-2.99231e-17 -6.38412 1.03939) (-2.88445e-17 -5.91224 1.19166) (-2.76881e-17 -5.37163 1.27884) (-2.66786e-17 -4.87873 1.3842) (-2.59043e-17 -4.29641 1.46867) (-2.53499e-17 -3.66003 1.54294) (-2.496e-17 -3.0555 1.63112) (-2.46827e-17 -2.50568 1.67309) (-2.44909e-17 -1.92344 1.51395) (-2.43506e-17 -1.52988 1.23796) (-2.41913e-17 -1.54348 1.19079) (-2.3936e-17 -1.21959 1.41051) (-2.36173e-17 -0.532563 1.31863) (-2.32427e-17 0.886139 0.708748) (-2.29936e-17 0.298556 0.142926) (-2.28341e-17 -0.628169 0.465306) (-2.23564e-17 -1.28716 0.836061) (-2.17858e-17 -1.50561 1.16002) (-2.10747e-17 -1.58515 1.31493) (-2.00296e-17 -1.74081 1.52428) (-1.8271e-17 -1.94274 1.81481) (-1.53019e-17 -1.90501 1.92829) (-9.78349e-18 -1.91135 1.92785) (4.40419e-18 -2.01633 1.97551) (1.27558e-16 -2.11282 2.0769) (-9.33733e-16 -2.06651 2.12341) (-2.79888e-16 -1.8817 2.08893) (-6.36131e-16 -1.55827 1.96934) (4.61996e-16 -1.24971 1.79857) (7.82085e-16 -0.977306 1.57789) (3.53158e-16 -0.799517 1.35312) (-1.4195e-16 -0.70907 1.20933) (-1.34214e-16 -0.737305 1.1656) (-8.03633e-17 -0.707607 1.23336) (-5.98062e-17 -0.475495 1.26362) (-3.81192e-17 -0.328192 1.40257) (-3.09739e-17 -0.252279 1.64739) (-3.0684e-17 0.0600415 1.57159) (-3.11128e-17 0.67433 1.04251) (-3.58323e-17 0.621239 0.730364) (-4.2093e-17 -0.21267 1.09813) (-4.70878e-17 -0.963618 1.67318) (-5.09668e-17 -1.51154 2.25718) (-5.33204e-17 -1.85375 2.76417) (-5.42827e-17 -2.03061 3.1742) (-5.44036e-17 -2.06131 3.46315) (-5.42291e-17 -1.9893 3.61641) (-5.41155e-17 -1.88083 3.66673) (-5.41767e-17 -1.75351 3.65552) (-5.434e-17 -1.6153 3.60182) (-5.44851e-17 -1.46776 3.50777) (-5.45479e-17 -1.32472 3.37903) (-5.45266e-17 -1.19645 3.22675) (-5.44488e-17 -1.11386 3.08429) (-5.43472e-17 -1.07718 2.98375) (-5.42488e-17 -1.07593 2.94546) (-5.41711e-17 -1.07187 2.95747) (-5.41204e-17 -1.06774 3.00331) (-5.40829e-17 -1.02956 3.05691) (-5.39905e-17 -0.960253 3.10449) (-5.37611e-17 -0.847712 3.13925) (-5.39984e-17 -0.694859 3.07297) (-5.42603e-17 -0.275641 2.82325) (-5.51162e-17 0.422796 1.85605) (-6.03578e-17 0.525442 -0.113482) (-6.47403e-17 -0.274089 -0.131395) (-6.56133e-17 -1.70571 0.435617) (-6.70979e-17 -2.76096 0.721231) (-6.87723e-17 -3.35347 0.952633) (-2.93698e-15 -0.461987 0.285392) (-1.90123e-15 0.291923 -0.459969) (-2.16375e-15 0.607384 -1.42725) (-3.47642e-15 0.638725 -2.2044) (-4.35534e-15 0.418581 -2.46873) (-5.3045e-15 0.570601 -2.18134) (-6.63801e-15 1.27088 -2.18011) (-8.3989e-15 1.9227 -2.60505) (-9.79449e-15 2.17344 -3.10135) (-9.65575e-15 2.17864 -3.39314) (-7.39362e-15 2.20776 -3.43619) (-3.68147e-15 2.21591 -3.11488) (-2.96503e-17 2.48417 -2.74313) (2.25369e-15 2.71345 -2.57726) (2.30077e-15 2.68434 -2.31054) (7.84376e-16 2.61943 -2.10765) (-5.14145e-16 2.40237 -2.45198) (-3.30546e-16 1.84237 -3.07504) (1.11879e-16 1.11221 -3.34584) (2.09855e-17 0.50399 -3.2514) (-7.84883e-17 -0.462443 -2.74582) (-7.08059e-17 -1.00085 -2.27517) (-5.74287e-17 -1.48167 -1.39349) (-4.14713e-17 -2.46414 -1.05028) (-2.88067e-17 -3.79899 -0.709909) (-2.20728e-17 -4.98388 -0.281339) (-2.39359e-17 -5.73722 0.0314545) (-2.72448e-17 -6.21487 0.233674) (-2.96534e-17 -6.55619 0.382894) (-3.07985e-17 -6.73922 0.562125) (-3.08246e-17 -6.69404 0.803925) (-3.00874e-17 -6.37821 1.03826) (-2.89573e-17 -5.89889 1.18649) (-2.77611e-17 -5.39459 1.27112) (-2.67273e-17 -4.89365 1.36415) (-2.59388e-17 -4.3103 1.45626) (-2.53757e-17 -3.69157 1.55356) (-2.49808e-17 -3.11561 1.66828) (-2.47033e-17 -2.52669 1.69957) (-2.45078e-17 -1.85118 1.49323) (-2.43561e-17 -1.47669 1.19984) (-2.41918e-17 -1.41851 1.12016) (-2.39343e-17 -1.12322 1.3885) (-2.3635e-17 -0.560065 1.36895) (-2.3361e-17 0.442864 0.955683) (-2.31492e-17 -0.495627 0.665137) (-2.28961e-17 -0.868988 0.620345) (-2.24136e-17 -1.30481 0.86254) (-2.18777e-17 -1.51704 1.17748) (-2.12031e-17 -1.61287 1.34229) (-2.01321e-17 -1.79881 1.55784) (-1.82422e-17 -1.94459 1.82859) (-1.4782e-17 -1.9208 1.94852) (-7.79521e-18 -1.93826 1.94148) (1.02157e-17 -2.02544 1.95659) (1.53068e-16 -2.11728 2.02196) (1.01605e-15 -2.05703 2.04858) (-1.97606e-16 -1.84141 2.01074) (-2.45783e-15 -1.52922 1.90996) (3.10441e-16 -1.20581 1.74019) (1.69667e-16 -0.905872 1.50426) (-1.10696e-16 -0.715927 1.27759) (-9.07935e-17 -0.672423 1.15407) (-5.14191e-17 -0.740354 1.1354) (-2.49179e-17 -0.756275 1.19289) (-2.1859e-17 -0.569626 1.25282) (-2.39113e-17 -0.398769 1.4706) (-2.78372e-17 -0.359835 1.81725) (-3.15469e-17 -0.0161588 1.56359) (-3.34261e-17 0.701516 0.847454) (-3.91495e-17 0.467886 0.667166) (-4.36163e-17 -0.378622 1.1615) (-4.80224e-17 -1.10081 1.74906) (-5.16742e-17 -1.62923 2.34331) (-5.37838e-17 -1.95432 2.85618) (-5.45129e-17 -2.09931 3.25907) (-5.4477e-17 -2.08725 3.52923) (-5.4264e-17 -1.98547 3.65315) (-5.42103e-17 -1.8647 3.67246) (-5.43356e-17 -1.73566 3.63816) (-5.44877e-17 -1.59302 3.56569) (-5.45526e-17 -1.43656 3.45563) (-5.45258e-17 -1.28605 3.31787) (-5.44455e-17 -1.16327 3.1692) (-5.43472e-17 -1.08818 3.03603) (-5.42561e-17 -1.05587 2.95067) (-5.41852e-17 -1.04988 2.92939) (-5.4139e-17 -1.04446 2.95691) (-5.41137e-17 -1.02944 3.00694) (-5.40757e-17 -0.988039 3.06463) (-5.39423e-17 -0.921598 3.12424) (-5.37489e-17 -0.807309 3.16444) (-5.42138e-17 -0.615505 3.05714) (-5.53401e-17 -0.28854 2.54576) (-5.62604e-17 0.793637 1.54171) (-6.25806e-17 0.997506 -0.423992) (-6.46488e-17 -0.762989 0.0138438) (-6.5518e-17 -1.96259 0.376996) (-6.69711e-17 -2.91038 0.610224) (-6.85298e-17 -3.407 0.87093) (-3.08095e-15 -0.609388 0.1467) (-1.65019e-15 -0.0832214 -0.37421) (-1.54271e-15 0.212237 -1.33735) (-3.37523e-15 0.182307 -2.10866) (-4.25842e-15 0.0697239 -2.43712) (-4.93252e-15 0.384159 -2.20012) (-5.98748e-15 1.07729 -2.08133) (-7.49683e-15 1.74644 -2.41651) (-8.90861e-15 2.11797 -2.93979) (-9.2042e-15 2.24601 -3.32841) (-7.67217e-15 2.3501 -3.49531) (-4.59232e-15 2.38029 -3.29676) (-1.03724e-15 2.54395 -2.87353) (1.59542e-15 2.86599 -2.64919) (2.33124e-15 2.9966 -2.44301) (1.44158e-15 2.97445 -2.20051) (7.83904e-17 2.79946 -2.34701) (-3.74279e-16 2.31322 -2.89861) (-1.95393e-16 1.52252 -3.29462) (-4.65365e-17 0.670415 -3.28248) (6.43188e-19 -0.675688 -2.94921) (-9.26706e-17 -0.974184 -2.82433) (-6.33966e-17 -1.00268 -1.6245) (-4.39743e-17 -2.07694 -1.1323) (-2.93226e-17 -3.59887 -0.692873) (-2.15395e-17 -4.8749 -0.218267) (-2.3418e-17 -5.6541 0.100757) (-2.69554e-17 -6.15313 0.288769) (-2.96059e-17 -6.55293 0.41494) (-3.09589e-17 -6.81095 0.577197) (-3.11138e-17 -6.82939 0.807205) (-3.04167e-17 -6.58333 1.05024) (-2.92675e-17 -6.15136 1.21474) (-2.80252e-17 -5.63171 1.29236) (-2.69381e-17 -5.06748 1.35391) (-2.61006e-17 -4.503 1.44391) (-2.54955e-17 -3.95635 1.56384) (-2.50637e-17 -3.39957 1.70694) (-2.47506e-17 -2.73268 1.764) (-2.4527e-17 -2.0637 1.58834) (-2.43654e-17 -1.60325 1.26471) (-2.42109e-17 -1.59255 1.18827) (-2.39853e-17 -1.49476 1.51396) (-2.3693e-17 -0.968197 1.79687) (-2.34893e-17 -0.4368 1.52284) (-2.33524e-17 -0.546029 0.921697) (-2.30362e-17 -0.837518 0.768709) (-2.25749e-17 -1.17702 0.851611) (-2.2139e-17 -1.42356 1.13184) (-2.16499e-17 -1.63041 1.33045) (-2.08054e-17 -1.8432 1.54553) (-1.91031e-17 -1.93307 1.78983) (-1.56004e-17 -1.97564 1.94224) (-7.71253e-18 -1.92366 1.92815) (1.59374e-17 -1.89299 1.87834) (9.30994e-17 -1.87242 1.86393) (3.25141e-16 -1.82063 1.88272) (-8.55443e-18 -1.69775 1.88467) (-8.55554e-17 -1.51291 1.84897) (-2.99991e-16 -1.22227 1.72286) (-7.17125e-17 -0.929228 1.50399) (-2.33572e-17 -0.671765 1.24464) (-1.8129e-17 -0.49811 1.05009) (-2.15044e-17 -0.398733 0.951875) (-2.29001e-17 -0.390748 0.976839) (-2.35913e-17 -0.391433 1.13831) (-2.52489e-17 -0.645612 1.57338) (-3.01213e-17 -0.833056 2.07496) (-3.52236e-17 -0.503499 1.61588) (-3.93613e-17 -0.405291 1.0069) (-4.1246e-17 -0.468124 1.02839) (-4.32336e-17 -0.827423 1.37127) (-4.77042e-17 -1.36688 1.76976) (-5.16089e-17 -1.82785 2.32592) (-5.38676e-17 -2.13689 2.86727) (-5.45786e-17 -2.26361 3.29894) (-5.44517e-17 -2.22909 3.57705) (-5.42118e-17 -2.11555 3.69336) (-5.4215e-17 -1.96816 3.6938) (-5.43824e-17 -1.80764 3.63804) (-5.45077e-17 -1.638 3.55173) (-5.45154e-17 -1.47379 3.4406) (-5.44559e-17 -1.32304 3.30756) (-5.4375e-17 -1.18871 3.16526) (-5.42947e-17 -1.07229 3.0363) (-5.42279e-17 -0.974044 2.94537) (-5.41788e-17 -0.892601 2.9093) (-5.41474e-17 -0.809899 2.91769) (-5.41279e-17 -0.73284 2.94836) (-5.40778e-17 -0.658928 2.98972) (-5.39178e-17 -0.592521 3.04606) (-5.37567e-17 -0.50393 3.09922) (-5.43338e-17 -0.439617 2.96555) (-5.66186e-17 -0.470335 2.19724) (-5.80187e-17 0.435166 1.14273) (-6.42315e-17 0.0140035 -0.374366) (-6.43254e-17 -0.762465 0.113449) (-6.49566e-17 -1.7173 0.301747) (-6.61979e-17 -2.67354 0.475819) (-6.75782e-17 -3.27845 0.628766) (-2.87335e-15 -0.626104 0.199404) (-1.79325e-15 -0.324308 -0.192205) (-9.23958e-16 0.22333 -1.2088) (-2.53327e-15 0.108262 -2.08156) (-4.16976e-15 -0.0687088 -2.47499) (-4.49885e-15 -0.076226 -2.35087) (-5.32555e-15 0.629317 -1.99177) (-6.5488e-15 1.51712 -2.16688) (-7.85414e-15 1.97612 -2.65259) (-8.47492e-15 2.24249 -3.14177) (-7.72303e-15 2.35953 -3.45262) (-5.52428e-15 2.3791 -3.45587) (-2.36978e-15 2.4781 -3.07461) (4.86842e-16 2.69185 -2.69823) (1.91675e-15 2.86388 -2.4571) (1.85101e-15 3.00402 -2.22061) (8.62974e-16 3.055 -2.20652) (4.79898e-17 2.75673 -2.59452) (-2.39749e-16 1.98209 -3.06837) (-2.2158e-16 1.0627 -3.31331) (-1.13311e-16 0.00601102 -3.31882) (-1.57497e-16 -1.46962 -3.75666) (-1.20722e-16 -0.607374 -2.58358) (-6.58498e-17 -0.776781 -1.64556) (-3.82998e-17 -2.29269 -1.10071) (-1.97857e-17 -3.88675 -0.464969) (-2.01494e-17 -4.90699 -0.0553873) (-2.4465e-17 -5.58003 0.212114) (-2.82561e-17 -6.13579 0.32679) (-3.07532e-17 -6.57764 0.406491) (-3.17622e-17 -6.84843 0.579549) (-3.15284e-17 -6.85765 0.857788) (-3.05069e-17 -6.60278 1.12194) (-2.91649e-17 -6.14218 1.25377) (-2.78755e-17 -5.6024 1.29744) (-2.68285e-17 -5.0654 1.34723) (-2.60379e-17 -4.53157 1.43436) (-2.5443e-17 -3.96999 1.58724) (-2.4991e-17 -3.3477 1.78922) (-2.46675e-17 -2.72768 1.8683) (-2.44602e-17 -2.1593 1.60207) (-2.43282e-17 -1.84676 1.18639) (-2.42123e-17 -1.50041 1.04517) (-2.4039e-17 -0.914272 1.52723) (-2.37943e-17 -0.267344 1.98367) (-2.35668e-17 -0.350322 1.58243) (-2.33401e-17 -0.815258 1.15171) (-2.28252e-17 -1.17055 0.870702) (-2.23476e-17 -1.25745 0.97237) (-2.21138e-17 -1.45668 1.15897) (-2.20374e-17 -1.73804 1.32849) (-2.20245e-17 -1.92234 1.58473) (-2.2139e-17 -2.01183 1.86344) (-2.20391e-17 -2.04924 2.00097) (-2.14652e-17 -2.10243 1.98908) (-2.26351e-17 -2.11003 1.90825) (-2.37802e-17 -2.06191 1.84334) (-1.14016e-17 -1.91792 1.80855) (1.23639e-17 -1.68279 1.79064) (5.2479e-17 -1.36456 1.75067) (-6.02845e-18 -1.06293 1.64612) (-2.29447e-17 -0.782703 1.44313) (-2.32763e-17 -0.585847 1.20165) (-2.33845e-17 -0.512453 1.00357) (-2.32903e-17 -0.506251 0.938145) (-2.34473e-17 -0.331178 1.01158) (-2.46528e-17 -0.244588 1.27939) (-2.77127e-17 -0.601834 1.9468) (-3.0507e-17 -0.131179 2.13271) (-3.40853e-17 0.350275 1.52484) (-3.46668e-17 0.138028 1.16656) (-3.53733e-17 -0.238736 1.35726) (-4.12698e-17 -1.04293 1.31813) (-4.7625e-17 -1.70548 1.74217) (-5.2177e-17 -2.16837 2.38698) (-5.42183e-17 -2.40802 2.96082) (-5.45301e-17 -2.43902 3.38329) (-5.42538e-17 -2.34413 3.63432) (-5.41332e-17 -2.20113 3.72973) (-5.42618e-17 -2.0414 3.71675) (-5.44348e-17 -1.86762 3.65082) (-5.45054e-17 -1.69339 3.56157) (-5.44885e-17 -1.52399 3.45433) (-5.4429e-17 -1.37044 3.33241) (-5.43536e-17 -1.25243 3.20628) (-5.42816e-17 -1.17956 3.0953) (-5.42215e-17 -1.11859 3.01986) (-5.41746e-17 -1.04657 2.99134) (-5.41466e-17 -0.957338 2.99248) (-5.41385e-17 -0.848267 2.99921) (-5.40939e-17 -0.731141 3.00528) (-5.39122e-17 -0.623398 3.02545) (-5.35459e-17 -0.528978 3.13649) (-5.44591e-17 -0.37995 2.89537) (-5.74529e-17 0.577025 1.62617) (-6.19337e-17 1.16457 0.291578) (-6.39626e-17 1.22499 -0.176497) (-6.28192e-17 0.281401 0.145551) (-6.32001e-17 -1.34746 0.351873) (-6.39773e-17 -2.66439 0.390995) (-2.91832e-15 -0.572406 0.0998231) (-2.16391e-15 -0.506573 -0.033916) (-1.1737e-15 0.333662 -0.937304) (-1.57704e-15 0.229825 -1.91791) (-3.32852e-15 -0.0625214 -2.59364) (-3.9874e-15 -0.428374 -2.83564) (-4.6775e-15 0.272194 -2.20722) (-5.81968e-15 1.19148 -1.98904) (-7.00458e-15 1.72225 -2.31706) (-7.72975e-15 2.15722 -2.85583) (-7.4791e-15 2.33037 -3.29382) (-6.05092e-15 2.37867 -3.52463) (-3.52548e-15 2.45755 -3.3266) (-7.40562e-16 2.55118 -2.87385) (1.15672e-15 2.66325 -2.51023) (1.79078e-15 2.85289 -2.22114) (1.3628e-15 3.08284 -2.08514) (5.99295e-16 3.03524 -2.30221) (3.27668e-17 2.4955 -2.7873) (-2.21734e-16 1.67137 -3.21766) (-2.36979e-16 0.656173 -3.42891) (-2.39509e-16 -0.644788 -3.56737) (-2.63197e-16 -2.9933 -3.95635) (-1.31008e-16 -0.755454 -2.50605) (-6.20058e-17 -1.28275 -1.67575) (-1.98581e-17 -2.90965 -0.709301) (-1.63384e-17 -4.18002 -0.222245) (-2.11512e-17 -5.02979 0.176176) (-2.59647e-17 -5.73345 0.373426) (-2.97236e-17 -6.30744 0.416975) (-3.18581e-17 -6.71599 0.471392) (-3.23599e-17 -6.90146 0.661075) (-3.16688e-17 -6.84308 0.961249) (-3.03483e-17 -6.51988 1.19671) (-2.89058e-17 -6.03523 1.29002) (-2.76617e-17 -5.50054 1.3143) (-2.66947e-17 -4.94271 1.33281) (-2.59527e-17 -4.38413 1.3983) (-2.53651e-17 -3.84767 1.58809) (-2.49109e-17 -3.2795 1.84335) (-2.45998e-17 -2.71149 1.88967) (-2.44045e-17 -2.23043 1.57983) (-2.42771e-17 -1.75994 1.10282) (-2.41986e-17 -0.995132 0.818026) (-2.41365e-17 -0.0309182 1.51368) (-2.39933e-17 -0.0523156 2.56233) (-2.38233e-17 -0.412508 1.84016) (-2.32307e-17 -0.908047 1.11111) (-2.24087e-17 -1.20905 0.964945) (-2.16479e-17 -1.41347 1.1325) (-2.11333e-17 -1.67448 1.26607) (-2.08498e-17 -1.93933 1.44763) (-2.07995e-17 -2.05722 1.69943) (-2.09347e-17 -2.14802 1.94808) (-2.14032e-17 -2.22503 2.06259) (-2.17706e-17 -2.26714 2.02448) (-2.0649e-17 -2.22308 1.90003) (-2.02466e-17 -2.1332 1.79256) (-2.34079e-17 -1.9451 1.7292) (-2.81552e-17 -1.66375 1.70313) (-2.65173e-17 -1.30526 1.66103) (-2.16414e-17 -0.946302 1.54858) (-2.26587e-17 -0.672662 1.36293) (-2.30185e-17 -0.498166 1.16028) (-2.3156e-17 -0.409201 1.00169) (-2.32815e-17 -0.272457 0.923234) (-2.34796e-17 -0.0109796 0.873512) (-2.51832e-17 -0.593908 1.43351) (-2.77495e-17 -1.0999 2.48744) (-2.89619e-17 -0.452096 2.67261) (-2.98814e-17 0.217616 2.18439) (-2.67846e-17 0.285074 2.03988) (-3.22296e-17 -0.0825725 1.41273) (-4.09044e-17 -1.10986 1.22007) (-4.85435e-17 -1.93924 1.82896) (-5.29764e-17 -2.38966 2.5256) (-5.44148e-17 -2.56051 3.09191) (-5.43392e-17 -2.54988 3.48395) (-5.4128e-17 -2.43365 3.7057) (-5.41941e-17 -2.27289 3.76956) (-5.43823e-17 -2.10045 3.73363) (-5.4487e-17 -1.91666 3.65196) (-5.44927e-17 -1.73081 3.54858) (-5.44466e-17 -1.56732 3.43339) (-5.43783e-17 -1.44089 3.31888) (-5.43109e-17 -1.3491 3.21477) (-5.42547e-17 -1.29285 3.13513) (-5.4205e-17 -1.24433 3.09408) (-5.41584e-17 -1.16333 3.08666) (-5.41285e-17 -1.04245 3.08683) (-5.41414e-17 -0.900706 3.07322) (-5.41736e-17 -0.746715 3.0425) (-5.40136e-17 -0.613943 3.0262) (-5.38395e-17 -0.44204 2.97887) (-5.4046e-17 0.00728012 2.90048) (-5.71712e-17 1.13911 1.90353) (-6.05376e-17 1.71179 1.03223) (-6.2171e-17 1.79674 0.552237) (-6.25375e-17 1.00371 0.57564) (-6.18535e-17 -0.969137 1.01192) (-2.96038e-15 -0.495885 0.145234) (-2.47873e-15 -0.727421 -0.120597) (-1.73433e-15 0.295701 -0.643412) (-1.34738e-15 0.366126 -1.56198) (-2.18339e-15 0.0165997 -2.58358) (-3.43282e-15 -0.590778 -3.31362) (-4.1848e-15 -0.141582 -2.52861) (-5.24736e-15 0.751431 -1.97365) (-6.29612e-15 1.35978 -2.01885) (-7.04206e-15 1.95001 -2.49043) (-7.07844e-15 2.20238 -2.99518) (-6.21124e-15 2.29199 -3.4124) (-4.35408e-15 2.4319 -3.49926) (-1.91587e-15 2.53179 -3.16202) (1.90102e-16 2.58214 -2.71422) (1.37419e-15 2.72281 -2.31255) (1.51496e-15 2.98216 -2.02415) (1.02586e-15 3.11088 -2.05429) (4.20074e-16 2.82778 -2.46068) (-2.15456e-17 2.1774 -2.9557) (-2.1778e-16 1.29906 -3.30601) (-2.87732e-16 0.153819 -3.5944) (-2.9143e-16 -2.1912 -3.97056) (-2.58728e-16 -2.75081 -3.97202) (-1.30359e-16 -1.06656 -2.821) (-2.47725e-17 -1.68134 -1.05134) (-1.17836e-17 -3.0956 -0.547613) (-1.67179e-17 -4.13384 -0.0403084) (-2.2416e-17 -5.07422 0.338577) (-2.75793e-17 -5.84349 0.460776) (-3.12202e-17 -6.43361 0.455394) (-3.28597e-17 -6.8362 0.520867) (-3.27989e-17 -6.98397 0.758343) (-3.16736e-17 -6.84813 1.06428) (-3.01268e-17 -6.50576 1.26901) (-2.86603e-17 -6.015 1.33921) (-2.74848e-17 -5.42192 1.3326) (-2.65964e-17 -4.85357 1.32246) (-2.58916e-17 -4.30223 1.38499) (-2.53087e-17 -3.6709 1.58135) (-2.48648e-17 -3.14354 1.83659) (-2.45648e-17 -2.7487 1.87287) (-2.43704e-17 -2.31118 1.61512) (-2.42449e-17 -1.68564 1.19527) (-2.41826e-17 -0.886255 1.07783) (-2.41633e-17 -0.0625524 1.6136) (-2.4296e-17 0.238904 2.31508) (-2.40417e-17 -0.293453 1.52545) (-2.33463e-17 -0.847054 0.962886) (-2.23645e-17 -1.06149 0.981247) (-2.14453e-17 -1.42547 1.13955) (-2.06428e-17 -1.83311 1.32477) (-2.00061e-17 -2.08786 1.5576) (-1.96387e-17 -2.24785 1.8228) (-1.9502e-17 -2.36799 2.05004) (-1.94594e-17 -2.43233 2.13489) (-1.97556e-17 -2.43877 2.05338) (-2.04396e-17 -2.38782 1.89463) (-2.07117e-17 -2.22924 1.74877) (-2.0701e-17 -1.98797 1.66622) (-2.12053e-17 -1.66677 1.63232) (-2.27417e-17 -1.31372 1.59453) (-2.29354e-17 -0.955393 1.49529) (-2.29985e-17 -0.672214 1.35457) (-2.30426e-17 -0.512212 1.20439) (-2.31995e-17 -0.29507 1.01818) (-2.34607e-17 0.128042 0.804223) (-2.36165e-17 0.359981 0.666714) (-2.3652e-17 -0.269422 0.852229) (-2.37784e-17 -1.06385 1.12333) (-2.61662e-17 -0.176905 2.05162) (-2.52384e-17 -0.329241 2.44121) (-2.30349e-17 0.217225 2.07924) (-3.02508e-17 -0.115893 0.95402) (-4.1494e-17 -1.16686 1.10679) (-4.97593e-17 -2.07577 1.87034) (-5.36374e-17 -2.51227 2.61414) (-5.43346e-17 -2.68207 3.17532) (-5.41365e-17 -2.6591 3.56294) (-5.41128e-17 -2.52851 3.76389) (-5.42984e-17 -2.36487 3.80843) (-5.44442e-17 -2.18419 3.76476) (-5.44832e-17 -1.9921 3.67736) (-5.44581e-17 -1.80702 3.56142) (-5.44e-17 -1.64791 3.43532) (-5.43373e-17 -1.53062 3.32079) (-5.42883e-17 -1.46596 3.2324) (-5.4249e-17 -1.4229 3.17987) (-5.42027e-17 -1.3643 3.16781) (-5.41444e-17 -1.2778 3.18042) (-5.41007e-17 -1.15884 3.18722) (-5.41153e-17 -0.993411 3.16874) (-5.41892e-17 -0.779887 3.12193) (-5.42797e-17 -0.504188 3.04166) (-5.39968e-17 -0.158359 2.99164) (-5.37409e-17 0.354689 2.9155) (-5.4982e-17 1.1357 2.53144) (-5.78296e-17 1.89266 1.85122) (-6.00989e-17 2.3137 1.38021) (-6.10173e-17 1.71961 1.27013) (-2.77276e-15 -0.34321 0.491146) (-2.78526e-15 -0.669585 -0.395486) (-2.18556e-15 0.0258511 -0.381556) (-1.62024e-15 0.499569 -1.17869) (-1.52501e-15 0.245937 -2.35729) (-2.75116e-15 -0.603995 -3.54147) (-4.18293e-15 -0.39181 -2.66394) (-4.85593e-15 0.257926 -1.96493) (-5.72268e-15 0.935871 -1.81614) (-6.42157e-15 1.64623 -2.14318) (-6.61355e-15 1.96128 -2.61332) (-6.11854e-15 2.0767 -3.11197) (-4.81903e-15 2.29153 -3.46587) (-2.86356e-15 2.51651 -3.40322) (-8.30132e-16 2.61524 -3.03512) (6.99909e-16 2.68645 -2.55949) (1.36131e-15 2.85669 -2.08712) (1.24442e-15 3.05509 -1.89133) (7.65538e-16 2.98427 -2.14192) (2.68347e-16 2.54961 -2.62399) (-5.6033e-17 1.76591 -3.01765) (-2.08038e-16 0.640524 -3.31871) (-2.46203e-16 -1.10845 -3.36477) (-2.24356e-16 -2.41677 -3.83935) (-1.96945e-16 -1.66976 -3.71975) (-4.19719e-17 -0.749462 -1.29403) (-7.04938e-18 -1.91499 -0.851168) (-1.12663e-17 -2.96027 -0.416208) (-1.73944e-17 -4.09305 0.125776) (-2.38612e-17 -5.0696 0.432074) (-2.93754e-17 -5.90272 0.492061) (-3.26914e-17 -6.56722 0.478939) (-3.37151e-17 -6.94509 0.58339) (-3.30914e-17 -7.0528 0.866442) (-3.15741e-17 -6.89936 1.16506) (-2.98878e-17 -6.50391 1.33756) (-2.84422e-17 -5.95026 1.37497) (-2.73509e-17 -5.38382 1.35159) (-2.65167e-17 -4.76353 1.3189) (-2.58239e-17 -4.08915 1.35483) (-2.52502e-17 -3.54521 1.55513) (-2.48209e-17 -3.10817 1.76922) (-2.45395e-17 -2.68824 1.79757) (-2.43619e-17 -2.20491 1.65007) (-2.42498e-17 -1.50485 1.41989) (-2.42003e-17 -0.833685 1.36939) (-2.41932e-17 -0.352653 1.67836) (-2.43035e-17 -0.232263 1.89337) (-2.41147e-17 -0.51184 1.20457) (-2.3469e-17 -0.59018 0.89753) (-2.26103e-17 -0.891049 0.917851) (-2.17478e-17 -1.42316 1.07924) (-2.09221e-17 -1.87088 1.33934) (-2.02257e-17 -2.15885 1.6197) (-1.97538e-17 -2.39749 1.91129) (-1.95599e-17 -2.54555 2.13884) (-1.96742e-17 -2.61128 2.19782) (-2.0017e-17 -2.5991 2.08154) (-2.05416e-17 -2.5178 1.89006) (-2.11534e-17 -2.35411 1.71737) (-2.18187e-17 -2.09951 1.61578) (-2.23818e-17 -1.75774 1.5765) (-2.27206e-17 -1.37868 1.54544) (-2.28875e-17 -1.07528 1.4868) (-2.29951e-17 -0.846494 1.37932) (-2.31806e-17 -0.535597 1.1997) (-2.35088e-17 -0.193076 0.939833) (-2.39572e-17 -0.520284 0.608816) (-2.40746e-17 -1.01369 0.435273) (-2.40434e-17 -0.288217 0.170658) (-2.43872e-17 0.143013 0.296261) (-2.45053e-17 0.177483 0.262456) (-2.41004e-17 -0.183752 0.630002) (-2.2145e-17 -0.352233 0.934382) (-3.08807e-17 -0.354512 0.55577) (-4.30655e-17 -1.3142 1.05472) (-5.12022e-17 -2.14507 1.90284) (-5.39034e-17 -2.58081 2.65087) (-5.41096e-17 -2.75401 3.22514) (-5.40298e-17 -2.72454 3.60885) (-5.41925e-17 -2.60832 3.79366) (-5.43794e-17 -2.45828 3.83693) (-5.44586e-17 -2.27504 3.80072) (-5.44603e-17 -2.07622 3.71062) (-5.44151e-17 -1.89355 3.58248) (-5.43541e-17 -1.7404 3.44652) (-5.43075e-17 -1.62889 3.32875) (-5.42806e-17 -1.56434 3.24849) (-5.42526e-17 -1.52455 3.21896) (-5.42034e-17 -1.47179 3.23355) (-5.41359e-17 -1.38685 3.26231) (-5.40768e-17 -1.26127 3.27834) (-5.40724e-17 -1.06593 3.26883) (-5.41553e-17 -0.775107 3.2244) (-5.42737e-17 -0.403719 3.14397) (-5.43443e-17 -0.012822 3.02721) (-5.42114e-17 0.458551 2.92109) (-5.43015e-17 1.06864 2.77777) (-5.60078e-17 1.96748 2.35234) (-5.8263e-17 2.08742 2.02367) (-2.68241e-15 -0.38909 0.933564) (-2.73347e-15 -0.570746 -0.241042) (-2.49118e-15 -0.329264 -0.244231) (-2.06874e-15 0.603544 -0.831326) (-1.43794e-15 0.581774 -1.95336) (-1.89741e-15 -0.498212 -3.49084) (-4.20913e-15 -0.587852 -2.61411) (-4.70441e-15 -0.197345 -1.84426) (-5.31921e-15 0.544218 -1.7077) (-5.89728e-15 1.26898 -1.86683) (-6.13085e-15 1.65343 -2.24094) (-5.86766e-15 1.78715 -2.71746) (-4.97822e-15 2.02339 -3.21623) (-3.49242e-15 2.39282 -3.45248) (-1.73254e-15 2.63466 -3.31899) (-1.11451e-16 2.7185 -2.92082) (9.5807e-16 2.80637 -2.33665) (1.25244e-15 2.99805 -1.88907) (9.95623e-16 3.04977 -1.90452) (5.44571e-16 2.76297 -2.28693) (1.65152e-16 2.03795 -2.65913) (-5.36686e-17 1.05843 -2.93753) (-1.50308e-16 -0.0937764 -3.25593) (-1.71088e-16 -2.48486 -3.30515) (-1.4368e-16 -4.25563 -2.30407) (-3.21341e-17 -0.935564 -0.598416) (-3.01555e-18 -1.00803 -0.868797) (-5.37687e-18 -1.85768 -0.70966) (-1.10066e-17 -2.91537 -0.219257) (-1.81909e-17 -3.99075 0.236554) (-2.57251e-17 -5.04646 0.457056) (-3.13246e-17 -6.00225 0.486333) (-3.40541e-17 -6.67646 0.489047) (-3.44391e-17 -7.01979 0.650557) (-3.32408e-17 -7.09648 0.962625) (-3.14208e-17 -6.89873 1.24985) (-2.96598e-17 -6.47005 1.39165) (-2.82774e-17 -5.93862 1.4082) (-2.72505e-17 -5.37352 1.39075) (-2.64316e-17 -4.72328 1.35665) (-2.57387e-17 -4.03872 1.37858) (-2.51779e-17 -3.37706 1.48599) (-2.4781e-17 -2.89866 1.60528) (-2.45219e-17 -2.54931 1.67319) (-2.43541e-17 -2.0292 1.68044) (-2.42567e-17 -1.26808 1.63959) (-2.42207e-17 -0.744487 1.65271) (-2.42114e-17 -0.581867 1.65656) (-2.41636e-17 -0.545318 1.46466) (-2.39439e-17 -0.502978 1.13697) (-2.33929e-17 -0.406005 0.886574) (-2.26289e-17 -0.800416 0.809099) (-2.18459e-17 -1.35601 0.997549) (-2.11223e-17 -1.83576 1.3148) (-2.05444e-17 -2.21549 1.63972) (-2.01428e-17 -2.50105 1.97083) (-1.99538e-17 -2.68845 2.21027) (-2.00169e-17 -2.78031 2.25195) (-2.0325e-17 -2.79285 2.12304) (-2.08259e-17 -2.70173 1.90926) (-2.1423e-17 -2.5122 1.70622) (-2.19668e-17 -2.22659 1.57813) (-2.24091e-17 -1.88463 1.53287) (-2.27012e-17 -1.57005 1.52396) (-2.28914e-17 -1.26988 1.48373) (-2.31188e-17 -0.921163 1.37275) (-2.35111e-17 -0.477141 1.09226) (-2.40421e-17 -0.308588 0.585245) (-2.45011e-17 -1.16125 0.0866758) (-2.48713e-17 -2.27481 -0.450844) (-2.52111e-17 -2.2879 -1.40099) (-2.55641e-17 -0.39006 -1.87835) (-2.55682e-17 -0.179263 -1.56008) (-2.48568e-17 -0.0639017 -0.889274) (-2.35806e-17 -0.482013 -0.258057) (-3.27587e-17 -0.567051 0.507086) (-4.57155e-17 -1.43907 1.03643) (-5.23496e-17 -2.18074 1.89474) (-5.38709e-17 -2.62433 2.66079) (-5.39157e-17 -2.77542 3.2387) (-5.40536e-17 -2.75849 3.6081) (-5.42785e-17 -2.66674 3.79039) (-5.44105e-17 -2.52924 3.85131) (-5.44506e-17 -2.35705 3.83406) (-5.44275e-17 -2.16982 3.74676) (-5.43697e-17 -1.98302 3.61345) (-5.4317e-17 -1.82652 3.46968) (-5.42936e-17 -1.73019 3.34806) (-5.42853e-17 -1.68027 3.27493) (-5.42599e-17 -1.63242 3.26096) (-5.42023e-17 -1.57561 3.29229) (-5.41284e-17 -1.49942 3.33471) (-5.40741e-17 -1.36336 3.36364) (-5.40728e-17 -1.12121 3.36723) (-5.41442e-17 -0.788335 3.33605) (-5.4276e-17 -0.410031 3.26142) (-5.44561e-17 -0.0377679 3.14408) (-5.45209e-17 0.365617 3.04201) (-5.42957e-17 0.939075 2.92898) (-5.56762e-17 1.92103 2.58114) (-2.54906e-15 -0.545305 1.52981) (-2.61309e-15 -0.548055 0.488894) (-2.545e-15 -0.711065 -0.277455) (-2.52865e-15 0.590818 -0.579158) (-1.84824e-15 0.952118 -1.41958) (-1.18859e-15 -0.151555 -3.05305) (-3.3572e-15 -0.90219 -2.9239) (-4.649e-15 -0.515174 -1.73673) (-5.10631e-15 0.118549 -1.58419) (-5.51274e-15 0.842227 -1.63947) (-5.69412e-15 1.3387 -1.93091) (-5.54008e-15 1.50708 -2.33264) (-4.92282e-15 1.7216 -2.84594) (-3.81934e-15 2.14336 -3.27764) (-2.40297e-15 2.5125 -3.41123) (-9.09403e-16 2.71207 -3.24735) (3.71345e-16 2.83437 -2.73955) (1.05772e-15 3.0349 -2.11544) (1.09183e-15 3.10864 -1.83598) (7.58997e-16 2.88115 -2.0142) (3.81735e-16 2.30825 -2.32242) (1.22492e-16 1.47506 -2.55498) (-2.24479e-17 0.502445 -2.97744) (-1.06639e-16 -0.706482 -3.38189) (-5.82505e-17 -1.867 -0.591421) (-1.14489e-17 -0.960905 0.095517) (4.26788e-19 -0.766916 -0.511582) (-1.39829e-19 -1.25646 -0.628089) (-4.04233e-18 -1.95611 -0.405388) (-1.0636e-17 -2.88703 0.00942326) (-1.97299e-17 -3.93393 0.307136) (-2.80858e-17 -5.09129 0.441327) (-3.32288e-17 -6.07402 0.449686) (-3.53417e-17 -6.70095 0.483529) (-3.49807e-17 -7.06667 0.707612) (-3.32717e-17 -7.08892 1.04127) (-3.12256e-17 -6.83675 1.31033) (-2.94731e-17 -6.47818 1.42427) (-2.81651e-17 -6.03461 1.46037) (-2.71658e-17 -5.41316 1.4597) (-2.63333e-17 -4.63897 1.42675) (-2.56335e-17 -3.81767 1.39336) (-2.51018e-17 -3.2175 1.406) (-2.47388e-17 -2.8043 1.44618) (-2.44999e-17 -2.36226 1.52815) (-2.43445e-17 -1.70983 1.64142) (-2.42593e-17 -1.021 1.73345) (-2.42289e-17 -0.710905 1.71976) (-2.41926e-17 -0.738477 1.59666) (-2.40646e-17 -0.706499 1.39261) (-2.37516e-17 -0.465729 1.20729) (-2.3171e-17 -0.36509 0.860052) (-2.24414e-17 -0.797607 0.726304) (-2.1676e-17 -1.34941 0.955492) (-2.1001e-17 -1.82112 1.27843) (-2.04904e-17 -2.25103 1.63655) (-2.01772e-17 -2.58662 2.0087) (-2.00969e-17 -2.80086 2.24821) (-2.02443e-17 -2.92865 2.28929) (-2.05799e-17 -2.95374 2.16148) (-2.10398e-17 -2.86611 1.93602) (-2.15536e-17 -2.65953 1.70518) (-2.20398e-17 -2.37185 1.55229) (-2.24224e-17 -2.06467 1.50308) (-2.27009e-17 -1.78383 1.51588) (-2.29767e-17 -1.48694 1.51184) (-2.33922e-17 -1.03534 1.37197) (-2.39721e-17 -0.600459 1.00721) (-2.45683e-17 -0.64442 0.434292) (-2.51071e-17 -1.502 -0.295184) (-2.57725e-17 -1.38799 -2.21018) (-2.59984e-17 -0.468053 -2.49868) (-2.5853e-17 -0.643536 -1.712) (-2.56834e-17 -0.451997 -1.25405) (-2.45631e-17 0.201084 -0.813741) (-2.43335e-17 -0.0718902 -0.35825) (-3.6529e-17 -0.769666 0.392298) (-4.85183e-17 -1.53185 0.999832) (-5.30713e-17 -2.2433 1.90244) (-5.36823e-17 -2.61119 2.6441) (-5.38661e-17 -2.7412 3.19868) (-5.41195e-17 -2.74266 3.55215) (-5.43205e-17 -2.68728 3.74985) (-5.44166e-17 -2.5793 3.84631) (-5.44325e-17 -2.42452 3.84971) (-5.439e-17 -2.24234 3.77291) (-5.43286e-17 -2.06157 3.64519) (-5.42938e-17 -1.92023 3.50067) (-5.42936e-17 -1.83343 3.37706) (-5.42958e-17 -1.78226 3.30833) (-5.42669e-17 -1.73818 3.30517) (-5.42015e-17 -1.68614 3.34565) (-5.41245e-17 -1.60619 3.39851) (-5.40751e-17 -1.44652 3.44246) (-5.40896e-17 -1.18168 3.45819) (-5.41872e-17 -0.855808 3.42335) (-5.43651e-17 -0.523081 3.33495) (-5.45981e-17 -0.182838 3.22964) (-5.47614e-17 -0.175552 3.21294) (-5.49476e-17 1.2449 2.91393) (-2.45306e-15 -0.607552 2.0062) (-2.514e-15 -0.515933 1.62563) (-2.4977e-15 -0.7295 0.577263) (-2.71307e-15 0.333469 -0.341272) (-2.45508e-15 1.19907 -0.939489) (-1.51884e-15 0.551119 -2.20737) (-1.80848e-15 -0.592684 -3.13587) (-3.56772e-15 -0.903747 -2.35745) (-4.75167e-15 -0.379948 -1.63003) (-5.22918e-15 0.635258 -1.51375) (-5.36119e-15 1.09846 -1.69786) (-5.21274e-15 1.28709 -2.01555) (-4.7399e-15 1.48873 -2.47327) (-3.90351e-15 1.83504 -2.9543) (-2.8004e-15 2.23702 -3.26883) (-1.54959e-15 2.58062 -3.37593) (-2.76347e-16 2.82843 -3.11799) (6.82514e-16 3.07831 -2.50728) (1.04068e-15 3.2046 -2.00124) (8.94242e-16 3.03855 -1.90983) (5.65453e-16 2.5843 -2.06824) (2.91033e-16 1.83248 -2.18621) (1.19608e-16 1.03139 -2.57216) (5.141e-18 0.451684 -3.40035) (-6.29071e-17 -0.0307285 -2.12531) (-2.00322e-17 -0.670219 -0.166663) (3.52122e-18 -0.996107 -0.0763064) (4.46711e-18 -1.15667 -0.209383) (2.17896e-18 -1.58073 -0.208857) (-2.19805e-18 -2.17999 0.0301262) (-1.13043e-17 -2.86784 0.214827) (-2.2365e-17 -4.00845 0.36014) (-3.0508e-17 -5.24327 0.431552) (-3.51959e-17 -6.17125 0.421497) (-3.64465e-17 -6.77994 0.495579) (-3.53305e-17 -7.03623 0.756879) (-3.31821e-17 -7.01001 1.10141) (-3.10355e-17 -6.81348 1.33088) (-2.93546e-17 -6.47445 1.42163) (-2.81005e-17 -6.0334 1.49012) (-2.70811e-17 -5.35442 1.52432) (-2.62077e-17 -4.55219 1.51558) (-2.55128e-17 -3.8302 1.46439) (-2.50267e-17 -3.21652 1.38441) (-2.47054e-17 -2.71782 1.36013) (-2.44799e-17 -2.16483 1.45022) (-2.43232e-17 -1.38811 1.57252) (-2.42453e-17 -0.863169 1.64233) (-2.42229e-17 -0.808777 1.58311) (-2.41787e-17 -0.834258 1.46194) (-2.40133e-17 -0.643662 1.42777) (-2.36272e-17 -0.288862 1.23865) (-2.30229e-17 -0.466102 0.799212) (-2.2272e-17 -0.890169 0.70396) (-2.15103e-17 -1.34363 0.933404) (-2.08682e-17 -1.83976 1.24664) (-2.04115e-17 -2.26592 1.63185) (-2.01934e-17 -2.58281 1.99958) (-2.02059e-17 -2.8483 2.23533) (-2.04136e-17 -3.02589 2.29629) (-2.07687e-17 -3.0703 2.18933) (-2.12111e-17 -2.97368 1.96276) (-2.16748e-17 -2.77201 1.71027) (-2.20957e-17 -2.53024 1.53641) (-2.24405e-17 -2.2836 1.48619) (-2.27564e-17 -1.98603 1.52062) (-2.31684e-17 -1.57559 1.53174) (-2.37676e-17 -1.05985 1.3379) (-2.44677e-17 -0.678503 0.887236) (-2.51045e-17 -0.912668 0.262836) (-2.55275e-17 -2.1285 -1.577) (-2.58867e-17 -0.602868 -2.50257) (-2.59582e-17 -0.147795 -2.37713) (-2.6127e-17 -0.00342242 -1.77359) (-2.53423e-17 0.448295 -1.21611) (-2.36589e-17 0.452646 -0.706839) (-2.49635e-17 -0.0996191 -0.51364) (-4.191e-17 -1.00489 0.261249) (-5.13866e-17 -1.6902 1.09916) (-5.3144e-17 -2.24545 1.90401) (-5.35967e-17 -2.54077 2.59365) (-5.38786e-17 -2.66639 3.10556) (-5.41579e-17 -2.70685 3.44973) (-5.43347e-17 -2.68328 3.68159) (-5.44115e-17 -2.6022 3.81161) (-5.44091e-17 -2.46864 3.83964) (-5.4352e-17 -2.29444 3.78283) (-5.42974e-17 -2.12535 3.66782) (-5.42851e-17 -2.00571 3.52927) (-5.43013e-17 -1.93446 3.41082) (-5.43054e-17 -1.88138 3.34789) (-5.42713e-17 -1.83761 3.34968) (-5.42029e-17 -1.79359 3.39538) (-5.41271e-17 -1.70853 3.45919) (-5.4082e-17 -1.5352 3.51699) (-5.41049e-17 -1.27355 3.53663) (-5.42221e-17 -0.974373 3.48805) (-5.44384e-17 -0.686883 3.3812) (-5.47194e-17 -0.379812 3.26379) (-5.49867e-17 0.0503315 3.15468) (-2.38295e-15 -0.672917 1.73046) (-2.65367e-15 -0.534957 2.08465) (-2.40642e-15 -0.583946 1.16717) (-2.46569e-15 -0.52801 0.153428) (-2.73595e-15 0.978524 -0.556907) (-2.21705e-15 1.0975 -1.4597) (-1.74274e-15 0.228509 -2.55679) (-2.24273e-15 -0.4324 -3.02225) (-3.63622e-15 -0.283924 -2.42407) (-4.68306e-15 0.695784 -1.68959) (-5.07812e-15 0.993165 -1.57176) (-4.92457e-15 1.16381 -1.8039) (-4.49536e-15 1.32747 -2.18196) (-3.81134e-15 1.52065 -2.59462) (-2.94065e-15 1.96554 -2.99807) (-1.94768e-15 2.26429 -3.24303) (-8.39526e-16 2.58439 -3.26326) (2.03581e-16 2.97745 -2.87008) (8.39018e-16 3.3194 -2.34398) (9.31586e-16 3.27532 -2.04256) (7.02679e-16 2.87291 -1.9748) (4.36544e-16 2.20618 -1.9141) (2.50943e-16 1.44975 -2.10672) (1.25242e-16 0.811379 -2.92305) (2.23741e-17 0.603765 -2.79784) (-2.96479e-17 0.263242 -1.44062) (1.3728e-20 -0.668714 -0.3308) (1.14484e-17 -1.13078 0.0251052) (7.34004e-18 -1.46716 0.115847) (5.72807e-18 -1.8845 0.29009) (-9.99732e-19 -2.13156 0.360485) (-1.37546e-17 -3.02785 0.39299) (-2.50757e-17 -4.30845 0.445999) (-3.31844e-17 -5.44479 0.446547) (-3.70599e-17 -6.31752 0.41907) (-3.73202e-17 -6.84009 0.531015) (-3.549e-17 -6.99654 0.828758) (-3.30461e-17 -6.92538 1.13459) (-3.09148e-17 -6.75596 1.3017) (-2.93133e-17 -6.49487 1.40882) (-2.80562e-17 -5.96522 1.49664) (-2.69697e-17 -5.29811 1.58118) (-2.60637e-17 -4.53741 1.59195) (-2.54069e-17 -3.83559 1.5076) (-2.49757e-17 -3.29771 1.40758) (-2.4676e-17 -2.73787 1.41011) (-2.44473e-17 -1.97044 1.50552) (-2.42861e-17 -1.27059 1.57466) (-2.41967e-17 -0.906206 1.48766) (-2.4177e-17 -0.858704 1.35434) (-2.41472e-17 -0.780512 1.37923) (-2.3991e-17 -0.490505 1.50924) (-2.35879e-17 -0.34533 1.18616) (-2.29322e-17 -0.514494 0.704887) (-2.21342e-17 -0.939081 0.709478) (-2.13419e-17 -1.41361 0.930205) (-2.06891e-17 -1.80532 1.23741) (-2.03031e-17 -2.20302 1.6179) (-2.01899e-17 -2.58254 1.95982) (-2.02993e-17 -2.88585 2.18585) (-2.05701e-17 -3.08284 2.27145) (-2.09415e-17 -3.13122 2.19864) (-2.13582e-17 -3.04976 1.98418) (-2.17716e-17 -2.89833 1.72087) (-2.21469e-17 -2.70364 1.5301) (-2.24822e-17 -2.44731 1.47718) (-2.28486e-17 -2.09233 1.5292) (-2.33778e-17 -1.63521 1.52295) (-2.41276e-17 -1.18114 1.25586) (-2.49949e-17 -0.808532 0.596372) (-2.56508e-17 -0.933801 -0.616754) (-2.59068e-17 -2.25052 -1.48375) (-2.59588e-17 -0.0232275 -2.59367) (-2.63221e-17 -0.16554 -2.04282) (-2.58055e-17 0.180889 -1.41447) (-2.41846e-17 0.610365 -0.96266) (-2.14442e-17 0.421038 -0.652597) (-2.80025e-17 -0.149253 -0.389066) (-4.8392e-17 -1.16417 0.490597) (-5.20864e-17 -1.72226 1.15257) (-5.31375e-17 -2.17427 1.88311) (-5.354e-17 -2.44216 2.5085) (-5.38834e-17 -2.59659 2.97213) (-5.41715e-17 -2.67542 3.32861) (-5.43336e-17 -2.6841 3.59361) (-5.44022e-17 -2.6249 3.75269) (-5.43817e-17 -2.49952 3.80789) (-5.4318e-17 -2.34084 3.77568) (-5.42799e-17 -2.19542 3.67834) (-5.42876e-17 -2.09063 3.55243) (-5.43099e-17 -2.02307 3.44443) (-5.43099e-17 -1.9743 3.38895) (-5.42733e-17 -1.93664 3.39328) (-5.42086e-17 -1.89462 3.44358) (-5.41404e-17 -1.80298 3.51777) (-5.41028e-17 -1.62354 3.58236) (-5.41308e-17 -1.3704 3.59507) (-5.42514e-17 -1.07616 3.53024) (-5.44666e-17 -0.743632 3.39938) (-5.46924e-17 -0.390194 3.28169) (-2.19623e-15 -0.724461 1.25017) (-2.75622e-15 -0.602955 1.94753) (-2.50624e-15 -0.631968 1.53082) (-2.47854e-15 -0.663074 1.29564) (-2.64789e-15 0.605852 0.145747) (-2.65206e-15 1.37043 -0.863486) (-2.23392e-15 0.679634 -1.81624) (-1.99882e-15 0.00223924 -2.94412) (-2.72888e-15 -0.238394 -3.04771) (-4.0997e-15 0.562068 -1.94082) (-4.63484e-15 1.00405 -1.58648) (-4.68552e-15 1.10287 -1.67345) (-4.25968e-15 1.08647 -1.94284) (-3.641e-15 1.33274 -2.28782) (-2.92232e-15 1.59763 -2.64048) (-2.14038e-15 1.80923 -2.94787) (-1.24439e-15 2.20748 -3.16181) (-2.72997e-16 2.76671 -3.05608) (5.26188e-16 3.31339 -2.66923) (8.60759e-16 3.4876 -2.32426) (7.79514e-16 3.17389 -2.08765) (5.51219e-16 2.56267 -1.8267) (3.59316e-16 1.77038 -1.74301) (2.2999e-16 0.956978 -2.24687) (1.21355e-16 0.737553 -2.74009) (3.82615e-17 0.768654 -2.23027) (-1.28281e-18 0.316823 -1.32533) (1.50742e-17 -0.505939 -0.132236) (1.27962e-17 -1.25083 0.177942) (1.25503e-17 -1.73554 0.396711) (1.02944e-17 -1.71325 0.601901) (-1.88551e-18 -2.16061 0.603139) (-1.58599e-17 -3.30275 0.554528) (-2.81341e-17 -4.55735 0.538458) (-3.59159e-17 -5.72731 0.487268) (-3.87059e-17 -6.53443 0.461184) (-3.79363e-17 -6.91936 0.62267) (-3.55267e-17 -6.9966 0.921895) (-3.29518e-17 -6.94538 1.16178) (-3.08977e-17 -6.74403 1.27813) (-2.93314e-17 -6.40068 1.37563) (-2.7993e-17 -5.89335 1.49761) (-2.6827e-17 -5.19939 1.59703) (-2.59367e-17 -4.50685 1.60599) (-2.53459e-17 -3.92611 1.51048) (-2.49489e-17 -3.3716 1.44403) (-2.46439e-17 -2.66599 1.52053) (-2.44042e-17 -1.80712 1.63345) (-2.42364e-17 -1.13729 1.57481) (-2.41486e-17 -0.960057 1.36398) (-2.41261e-17 -0.984515 1.26652) (-2.4105e-17 -0.794067 1.44877) (-2.39836e-17 -0.468394 1.54795) (-2.35859e-17 -0.448207 1.02302) (-2.28985e-17 -0.767068 0.708554) (-2.20239e-17 -1.05894 0.734595) (-2.114e-17 -1.35798 0.930019) (-2.04932e-17 -1.7916 1.26416) (-2.01734e-17 -2.19026 1.61361) (-2.01525e-17 -2.57833 1.9059) (-2.03526e-17 -2.92119 2.11708) (-2.0684e-17 -3.11845 2.22671) (-2.10732e-17 -3.15607 2.18535) (-2.14708e-17 -3.10376 1.98374) (-2.18518e-17 -3.01148 1.71892) (-2.22001e-17 -2.85998 1.52746) (-2.25299e-17 -2.59515 1.48729) (-2.29384e-17 -2.2105 1.55009) (-2.3565e-17 -1.79482 1.53337) (-2.44497e-17 -1.36439 1.21912) (-2.54608e-17 -0.794546 0.313982) (-2.59625e-17 -1.13731 -1.21392) (-2.634e-17 0.0917505 -1.74774) (-2.68601e-17 0.0787075 -1.94376) (-2.72865e-17 0.439664 -1.59311) (-2.57222e-17 0.299333 -0.908796) (-2.32978e-17 0.488792 -0.765647) (-2.74577e-17 0.759736 -0.61315) (-4.07591e-17 0.395614 -0.0420046) (-5.02137e-17 -0.775301 0.438482) (-5.22774e-17 -1.52463 1.11234) (-5.30633e-17 -2.05793 1.82107) (-5.34511e-17 -2.36461 2.38484) (-5.38813e-17 -2.5761 2.83438) (-5.41603e-17 -2.69171 3.20965) (-5.43294e-17 -2.71903 3.49654) (-5.43893e-17 -2.66332 3.67992) (-5.43512e-17 -2.54277 3.76226) (-5.42941e-17 -2.3975 3.75358) (-5.42776e-17 -2.27067 3.67673) (-5.42958e-17 -2.17673 3.57034) (-5.43135e-17 -2.10806 3.47725) (-5.4307e-17 -2.06366 3.42914) (-5.42716e-17 -2.03726 3.43686) (-5.42155e-17 -1.99658 3.49357) (-5.41586e-17 -1.89345 3.57551) (-5.41302e-17 -1.70615 3.63995) (-5.41628e-17 -1.45397 3.64297) (-5.42771e-17 -1.16044 3.56657) (-5.44443e-17 -0.753843 3.45482) (-1.9871e-15 -0.811195 1.1501) (-2.72033e-15 -0.689744 1.93541) (-2.63019e-15 -0.839571 1.51815) (-2.59254e-15 -0.984421 1.38494) (-2.41199e-15 0.491033 0.678964) (-2.7151e-15 1.72496 -0.362784) (-2.66753e-15 1.15406 -1.20336) (-2.21593e-15 0.353875 -2.54446) (-2.42395e-15 -0.477712 -3.19592) (-3.61367e-15 -0.024613 -2.00258) (-4.08835e-15 0.981721 -1.67633) (-4.31614e-15 1.14456 -1.63879) (-4.0812e-15 0.978927 -1.79403) (-3.52621e-15 1.10291 -2.03284) (-2.87984e-15 1.22253 -2.27316) (-2.21802e-15 1.64921 -2.67741) (-1.50069e-15 1.95299 -2.96044) (-6.71626e-16 2.43219 -3.03191) (1.68328e-16 3.07362 -2.83034) (6.963e-16 3.54625 -2.58456) (7.87101e-16 3.43694 -2.32915) (6.32074e-16 2.91001 -1.94513) (4.47473e-16 2.08824 -1.60286) (3.14065e-16 1.15315 -1.74675) (2.08526e-16 0.679281 -2.24011) (1.16564e-16 0.88372 -2.40305) (5.02746e-17 0.735939 -1.93124) (1.87709e-17 -0.397747 -1.14489) (1.01255e-17 -0.978272 0.0115081) (1.76953e-17 -1.19946 -0.0365948) (2.02955e-17 -1.47536 0.544323) (1.27172e-17 -1.3839 0.807531) (-1.65465e-18 -2.23092 0.755736) (-1.82639e-17 -3.47091 0.701487) (-3.15317e-17 -4.87235 0.63703) (-3.85554e-17 -6.02697 0.529134) (-4.00438e-17 -6.71333 0.53668) (-3.83565e-17 -7.01167 0.75107) (-3.55418e-17 -7.04848 1.01462) (-3.29667e-17 -6.92625 1.17125) (-3.09953e-17 -6.74761 1.27328) (-2.93543e-17 -6.35941 1.37123) (-2.78711e-17 -5.77453 1.49409) (-2.66696e-17 -5.129 1.59374) (-2.58511e-17 -4.53375 1.57078) (-2.53221e-17 -3.98874 1.46807) (-2.49319e-17 -3.3336 1.46521) (-2.46109e-17 -2.461 1.61201) (-2.43565e-17 -1.63134 1.71009) (-2.41884e-17 -1.22726 1.54941) (-2.41084e-17 -1.17733 1.31163) (-2.40816e-17 -1.0429 1.31338) (-2.40684e-17 -0.777705 1.5368) (-2.39712e-17 -0.707285 1.42177) (-2.36139e-17 -0.719572 0.961457) (-2.29074e-17 -0.734028 0.700772) (-2.19231e-17 -0.990392 0.726105) (-2.09787e-17 -1.38947 0.96026) (-2.03194e-17 -1.77085 1.29082) (-2.0034e-17 -2.18506 1.60534) (-2.00854e-17 -2.61855 1.85499) (-2.03614e-17 -2.9612 2.05347) (-2.07449e-17 -3.135 2.18031) (-2.11538e-17 -3.17847 2.15348) (-2.15507e-17 -3.17422 1.95727) (-2.19203e-17 -3.1313 1.69902) (-2.22525e-17 -2.97866 1.52054) (-2.25803e-17 -2.68545 1.49593) (-2.30247e-17 -2.34191 1.56869) (-2.37126e-17 -1.96781 1.55999) (-2.46202e-17 -1.47831 1.30079) (-2.55106e-17 -0.878489 0.818866) (-2.61425e-17 -0.504607 0.0945102) (-2.67938e-17 0.35212 -1.01539) (-2.74082e-17 0.351674 -2.03412) (-2.777e-17 0.536238 -1.42381) (-2.8834e-17 0.539096 -0.983878) (-3.2658e-17 0.844474 -0.742462) (-4.20901e-17 1.06482 -0.30538) (-5.10201e-17 0.669208 0.0682801) (-5.04433e-17 -0.307588 0.249391) (-5.22308e-17 -1.43289 1.01981) (-5.2788e-17 -1.9811 1.70722) (-5.33918e-17 -2.36157 2.25581) (-5.38402e-17 -2.61418 2.70953) (-5.41411e-17 -2.75108 3.09663) (-5.43271e-17 -2.78561 3.39683) (-5.43679e-17 -2.72657 3.60024) (-5.43233e-17 -2.60865 3.70527) (-5.42865e-17 -2.47638 3.71966) (-5.42878e-17 -2.35884 3.66727) (-5.43041e-17 -2.26497 3.58432) (-5.43107e-17 -2.19691 3.50843) (-5.42993e-17 -2.15845 3.46875) (-5.42687e-17 -2.13887 3.48134) (-5.42228e-17 -2.09809 3.54496) (-5.41738e-17 -1.99122 3.63314) (-5.41446e-17 -1.80739 3.70108) (-5.41609e-17 -1.55493 3.70955) (-5.42254e-17 -1.15646 3.66695) (-1.83381e-15 -0.795663 1.06458) (-2.67378e-15 -0.697071 2.02716) (-2.63018e-15 -1.05066 1.55463) (-2.57467e-15 -1.18691 1.45069) (-2.31452e-15 0.119364 0.90518) (-2.49523e-15 1.65715 0.0772138) (-2.8319e-15 1.67888 -0.703793) (-2.63329e-15 0.852811 -1.89448) (-2.33351e-15 -0.447121 -3.13628) (-2.9912e-15 -1.15572 -2.30959) (-3.62713e-15 0.337923 -1.5564) (-3.75148e-15 1.16372 -1.59068) (-3.74363e-15 1.15954 -1.76523) (-3.40902e-15 0.965809 -1.86015) (-2.88749e-15 1.20942 -2.02998) (-2.28714e-15 1.63554 -2.43602) (-1.67577e-15 1.78168 -2.75562) (-9.84922e-16 2.10239 -2.89514) (-1.89137e-16 2.72042 -2.83263) (4.62909e-16 3.41241 -2.72733) (7.23111e-16 3.62686 -2.58404) (6.71874e-16 3.22348 -2.18563) (5.17425e-16 2.43185 -1.69394) (3.83517e-16 1.52996 -1.62525) (2.81579e-16 0.795921 -1.88951) (1.82896e-16 0.763275 -2.15932) (1.05671e-16 0.841932 -2.07947) (6.14118e-17 0.123578 -1.8225) (2.93783e-17 -0.172278 -1.08092) (2.15595e-17 -0.179461 -0.82288) (2.595e-17 -1.3152 0.0109748) (2.59314e-17 -0.811354 0.690796) (1.69533e-17 -1.20381 0.870582) (-1.71907e-18 -2.19409 0.89366) (-2.17016e-17 -3.69725 0.854029) (-3.52565e-17 -5.15996 0.684024) (-4.08498e-17 -6.19871 0.54251) (-4.11361e-17 -6.79706 0.618867) (-3.86618e-17 -7.00451 0.851092) (-3.56261e-17 -7.0629 1.06952) (-3.31511e-17 -6.9962 1.199) (-3.1156e-17 -6.7463 1.28774) (-2.93023e-17 -6.31627 1.39249) (-2.76908e-17 -5.72891 1.51554) (-2.65359e-17 -5.11443 1.58033) (-2.58053e-17 -4.55679 1.51222) (-2.53086e-17 -3.9805 1.42525) (-2.49124e-17 -3.20131 1.48682) (-2.45757e-17 -2.2737 1.67223) (-2.43099e-17 -1.57857 1.70199) (-2.4142e-17 -1.34628 1.45024) (-2.40612e-17 -1.27689 1.24499) (-2.40448e-17 -1.03299 1.35176) (-2.40644e-17 -0.774358 1.49949) (-2.40049e-17 -0.631089 1.25231) (-2.37002e-17 -0.591148 0.896573) (-2.29818e-17 -0.7191 0.702952) (-2.19395e-17 -0.975586 0.72111) (-2.08967e-17 -1.35559 0.971838) (-2.01789e-17 -1.77357 1.30829) (-1.9903e-17 -2.24652 1.59293) (-2.0004e-17 -2.70272 1.81334) (-2.033e-17 -3.01918 2.01511) (-2.07453e-17 -3.16447 2.14781) (-2.11784e-17 -3.22702 2.11298) (-2.1591e-17 -3.254 1.91336) (-2.19639e-17 -3.19241 1.66128) (-2.22879e-17 -3.01008 1.49494) (-2.26174e-17 -2.73238 1.47318) (-2.3089e-17 -2.39169 1.52027) (-2.38082e-17 -2.0041 1.49931) (-2.47062e-17 -1.53072 1.29633) (-2.55753e-17 -0.953233 0.83698) (-2.62221e-17 -0.430437 0.207731) (-2.67195e-17 0.0656442 -0.984572) (-2.72379e-17 0.336949 -2.72464) (-2.7234e-17 0.934535 -2.10252) (-2.91067e-17 1.29409 -1.87238) (-3.59052e-17 1.47688 -1.33781) (-4.63819e-17 1.133 -0.632851) (-5.07984e-17 1.35807 -0.316753) (-5.06249e-17 -0.307625 0.0568815) (-5.16582e-17 -1.36983 0.848551) (-5.25728e-17 -1.9652 1.57406) (-5.329e-17 -2.40098 2.12951) (-5.37728e-17 -2.69 2.59625) (-5.41298e-17 -2.84454 2.98834) (-5.43158e-17 -2.87708 3.29732) (-5.43382e-17 -2.81628 3.51607) (-5.43072e-17 -2.70403 3.63949) (-5.42957e-17 -2.57729 3.67711) (-5.43033e-17 -2.45989 3.65181) (-5.43079e-17 -2.36211 3.59408) (-5.43031e-17 -2.29033 3.53592) (-5.42908e-17 -2.25406 3.5064) (-5.42693e-17 -2.24075 3.52614) (-5.42341e-17 -2.20928 3.59712) (-5.41866e-17 -2.11845 3.69419) (-5.41411e-17 -1.93848 3.77441) (-5.41166e-17 -1.54695 3.8125) (-1.65428e-15 -0.652109 0.819731) (-2.56503e-15 -0.693155 2.0448) (-2.60693e-15 -1.09491 1.60404) (-2.64272e-15 -1.11977 1.43534) (-2.47944e-15 -0.381845 1.01382) (-2.24455e-15 1.23841 0.438272) (-2.61809e-15 2.0821 -0.29297) (-2.88487e-15 1.63257 -1.20332) (-2.69972e-15 0.187415 -2.45007) (-2.65109e-15 -0.978622 -2.90751) (-3.08603e-15 -0.587874 -1.92891) (-3.12587e-15 0.770401 -1.54257) (-3.14288e-15 1.20943 -1.69775) (-2.99767e-15 0.99342 -1.7733) (-2.7141e-15 1.20068 -1.84176) (-2.30949e-15 1.58139 -2.17155) (-1.83063e-15 1.83742 -2.59253) (-1.26168e-15 1.96912 -2.76968) (-5.3871e-16 2.35057 -2.74228) (1.83135e-16 3.12063 -2.73458) (5.93567e-16 3.63148 -2.7444) (6.61144e-16 3.47253 -2.45282) (5.58616e-16 2.93849 -1.96727) (4.40747e-16 2.10358 -1.78334) (3.44086e-16 1.19665 -1.8017) (2.39073e-16 0.757281 -1.77813) (1.48084e-16 0.761659 -1.82523) (8.51897e-17 0.213558 -1.89491) (3.35131e-17 -0.396468 -1.74886) (1.52616e-17 0.302137 -1.36757) (2.85377e-17 -0.944799 -0.649587) (3.11946e-17 -0.832995 0.258743) (3.36703e-17 -0.708868 0.706344) (2.03721e-17 -1.21634 0.99533) (-4.60564e-18 -2.49259 1.15544) (-2.65295e-17 -3.94959 0.947454) (-3.86106e-17 -5.31132 0.672668) (-4.28888e-17 -6.25428 0.555053) (-4.20043e-17 -6.76253 0.68637) (-3.89115e-17 -7.01631 0.918103) (-3.58884e-17 -7.08635 1.09438) (-3.35032e-17 -7.01844 1.2148) (-3.12684e-17 -6.75475 1.31606) (-2.91556e-17 -6.28365 1.42693) (-2.75126e-17 -5.71737 1.54012) (-2.645e-17 -5.16679 1.56321) (-2.57765e-17 -4.6344 1.48198) (-2.52872e-17 -3.96092 1.43752) (-2.48786e-17 -3.0499 1.55034) (-2.45285e-17 -2.12606 1.70735) (-2.42626e-17 -1.58668 1.62563) (-2.40952e-17 -1.45383 1.32861) (-2.39991e-17 -1.26742 1.15086) (-2.39746e-17 -0.941613 1.22679) (-2.40068e-17 -0.683377 1.24257) (-2.40086e-17 -0.57812 1.05478) (-2.38352e-17 -0.465482 0.834336) (-2.32078e-17 -0.570484 0.672238) (-2.20678e-17 -0.940312 0.708032) (-2.08815e-17 -1.35176 0.975843) (-2.00786e-17 -1.81294 1.31206) (-1.97976e-17 -2.34483 1.56157) (-1.9934e-17 -2.81475 1.7805) (-2.02701e-17 -3.09105 2.00271) (-2.0702e-17 -3.22489 2.12575) (-2.11565e-17 -3.29779 2.0699) (-2.15889e-17 -3.3126 1.8663) (-2.19714e-17 -3.22664 1.63081) (-2.2297e-17 -3.00734 1.47503) (-2.26284e-17 -2.71325 1.44295) (-2.30912e-17 -2.36927 1.46834) (-2.37785e-17 -1.99001 1.44041) (-2.46723e-17 -1.61063 1.26825) (-2.56649e-17 -1.18848 0.928847) (-2.6576e-17 -0.743775 0.521023) (-2.74665e-17 -0.0157658 -0.0691168) (-2.80791e-17 0.379882 -0.570435) (-2.76868e-17 0.899764 -1.3593) (-2.95474e-17 1.20856 -1.70151) (-3.59494e-17 0.995142 -1.57322) (-4.41053e-17 0.805923 -1.17464) (-4.90569e-17 1.20693 -0.887118) (-4.95962e-17 -0.39179 -0.268823) (-5.10853e-17 -1.36224 0.66749) (-5.23538e-17 -1.99053 1.43171) (-5.3132e-17 -2.46074 2.00795) (-5.37073e-17 -2.77707 2.48375) (-5.41159e-17 -2.94596 2.87877) (-5.42857e-17 -2.98328 3.19639) (-5.43116e-17 -2.92773 3.4258) (-5.43089e-17 -2.81879 3.5657) (-5.43153e-17 -2.69342 3.62774) (-5.43163e-17 -2.56936 3.62908) (-5.43058e-17 -2.46059 3.59569) (-5.42923e-17 -2.38355 3.55629) (-5.42828e-17 -2.35228 3.53994) (-5.42721e-17 -2.35166 3.5691) (-5.42479e-17 -2.34438 3.64889) (-5.42057e-17 -2.26575 3.75432) (-5.41599e-17 -1.92406 3.84663) (-1.38561e-15 -0.535684 0.390189) (-2.31958e-15 -0.629989 1.85577) (-2.57087e-15 -0.897703 1.66702) (-2.64959e-15 -0.990018 1.42129) (-2.53205e-15 -0.836306 1.15422) (-2.17162e-15 0.0477097 0.920458) (-2.32672e-15 1.70176 0.197571) (-2.78359e-15 2.08428 -0.618699) (-2.98469e-15 0.992308 -1.59613) (-2.96281e-15 -0.103127 -2.57175) (-3.00384e-15 -0.619698 -2.60226) (-2.76514e-15 0.331942 -1.88811) (-2.51927e-15 1.06101 -1.6855) (-2.33824e-15 0.889557 -1.68987) (-2.17585e-15 1.07558 -1.64625) (-2.05485e-15 1.57644 -1.90001) (-1.84156e-15 1.97654 -2.41454) (-1.47968e-15 1.90343 -2.65827) (-8.82983e-16 2.05442 -2.63763) (-1.32609e-16 2.73779 -2.64091) (4.10207e-16 3.41417 -2.75593) (6.02201e-16 3.62369 -2.65734) (5.6533e-16 3.47066 -2.28168) (4.7132e-16 2.72344 -2.01436) (3.87229e-16 1.71507 -1.79969) (2.92117e-16 0.920305 -1.48116) (1.84812e-16 0.889341 -1.48709) (1.05971e-16 0.6531 -1.8496) (3.17804e-17 -1.18499 -1.86628) (2.0762e-17 0.291026 -1.80304) (3.39258e-17 -0.67531 -1.11701) (2.96173e-17 -1.13289 -0.234247) (3.92594e-17 -1.05734 0.377362) (3.92607e-17 -1.28341 0.898719) (1.8161e-17 -1.75108 1.42402) (-1.01279e-17 -2.69172 1.34595) (-3.07361e-17 -4.1853 1.00041) (-4.17684e-17 -5.42219 0.664643) (-4.4676e-17 -6.25921 0.604406) (-4.26457e-17 -6.74422 0.752734) (-3.92324e-17 -6.99303 0.940541) (-3.64441e-17 -7.09208 1.0955) (-3.38963e-17 -7.01314 1.22035) (-3.12627e-17 -6.72179 1.33271) (-2.89758e-17 -6.26325 1.4532) (-2.73923e-17 -5.75834 1.54557) (-2.64051e-17 -5.26495 1.53941) (-2.57528e-17 -4.70175 1.48087) (-2.52505e-17 -3.90333 1.50327) (-2.48177e-17 -2.93112 1.65692) (-2.44625e-17 -2.12405 1.75188) (-2.4216e-17 -1.72595 1.59224) (-2.40535e-17 -1.48099 1.28751) (-2.39427e-17 -1.14681 1.07066) (-2.3889e-17 -0.84336 0.997925) (-2.389e-17 -0.646439 0.916167) (-2.39347e-17 -0.513013 0.809375) (-2.39257e-17 -0.471852 0.731456) (-2.34741e-17 -0.42744 0.61734) (-2.22681e-17 -0.756169 0.606692) (-2.09217e-17 -1.24494 0.953735) (-1.99955e-17 -1.81992 1.27794) (-1.97512e-17 -2.47203 1.50179) (-1.98767e-17 -2.92275 1.75678) (-2.02039e-17 -3.17723 1.99926) (-2.06443e-17 -3.3189 2.10377) (-2.11117e-17 -3.3913 2.02939) (-2.15612e-17 -3.37463 1.82902) (-2.19614e-17 -3.23439 1.60482) (-2.23033e-17 -2.99801 1.45981) (-2.26389e-17 -2.69284 1.41947) (-2.3073e-17 -2.35199 1.43096) (-2.37177e-17 -1.99302 1.39363) (-2.46517e-17 -1.6444 1.22159) (-2.58745e-17 -1.21833 0.869323) (-2.72432e-17 -0.418141 0.308645) (-2.88778e-17 0.612899 -0.24107) (-2.92776e-17 0.745067 -0.774773) (-2.83801e-17 0.775459 -1.38367) (-3.00928e-17 0.989615 -1.71728) (-3.47786e-17 0.779172 -1.81173) (-4.15063e-17 0.631047 -1.70139) (-4.63764e-17 0.769635 -1.44674) (-4.82494e-17 -0.448767 -0.59151) (-5.06019e-17 -1.36681 0.487716) (-5.20724e-17 -2.00293 1.28746) (-5.29409e-17 -2.50106 1.88351) (-5.36473e-17 -2.84711 2.35972) (-5.40758e-17 -3.03637 2.76325) (-5.42469e-17 -3.08997 3.08718) (-5.42995e-17 -3.04672 3.326) (-5.43263e-17 -2.94451 3.48486) (-5.43356e-17 -2.81396 3.57022) (-5.43232e-17 -2.67764 3.59626) (-5.42991e-17 -2.55412 3.58611) (-5.42813e-17 -2.46896 3.56552) (-5.42762e-17 -2.44487 3.56313) (-5.42738e-17 -2.47697 3.60447) (-5.42607e-17 -2.49377 3.69282) (-5.42369e-17 -2.22613 3.80094) (-1.12342e-15 -0.642674 -0.0287832) (-1.98612e-15 -0.520526 1.42121) (-2.43374e-15 -0.606379 1.7256) (-2.61908e-15 -0.89208 1.46458) (-2.68742e-15 -1.0274 1.16285) (-2.28372e-15 -0.628773 0.938238) (-2.12542e-15 0.501729 0.778143) (-2.51551e-15 1.83974 -0.046656) (-2.96232e-15 1.35069 -0.857401) (-3.18917e-15 0.380338 -1.77716) (-3.29556e-15 -0.169858 -2.50257) (-2.92597e-15 0.357646 -2.36666) (-2.24844e-15 0.864873 -1.87028) (-1.75454e-15 0.693735 -1.70354) (-1.54799e-15 1.0901 -1.52311) (-1.53266e-15 1.46645 -1.59257) (-1.56759e-15 1.90193 -2.11035) (-1.48154e-15 1.86276 -2.51477) (-1.14042e-15 1.93122 -2.59774) (-4.73558e-16 2.35243 -2.53297) (1.71876e-16 3.05957 -2.65988) (4.99615e-16 3.55338 -2.72708) (5.473e-16 3.69076 -2.47982) (4.79631e-16 3.26115 -2.20352) (4.04241e-16 2.30631 -1.9604) (3.30893e-16 1.22771 -1.55961) (2.2718e-16 1.08301 -1.29351) (1.37939e-16 1.43034 -1.63723) (6.55199e-17 -0.05682 -1.781) (4.18103e-17 0.0883494 -2.08516) (5.17676e-17 -0.325194 -1.46381) (3.40566e-17 -1.2741 -0.708892) (3.45039e-17 -1.76447 0.0174983) (4.47058e-17 -1.76998 0.506564) (3.9352e-17 -1.47803 1.35359) (1.50073e-17 -1.74743 1.78578) (-1.3577e-17 -2.99766 1.55155) (-3.46273e-17 -4.33643 1.02068) (-4.47617e-17 -5.52813 0.725553) (-4.61909e-17 -6.28444 0.69655) (-4.30907e-17 -6.73434 0.811059) (-3.99272e-17 -7.0068 0.957551) (-3.72085e-17 -7.09376 1.0939) (-3.41806e-17 -6.97707 1.21644) (-3.11618e-17 -6.67127 1.33626) (-2.88428e-17 -6.25582 1.45344) (-2.73377e-17 -5.82362 1.51713) (-2.6391e-17 -5.35319 1.5022) (-2.57337e-17 -4.72797 1.49323) (-2.51929e-17 -3.85006 1.59291) (-2.47298e-17 -2.89554 1.75066) (-2.43825e-17 -2.20948 1.7766) (-2.41591e-17 -1.80626 1.60786) (-2.40168e-17 -1.46821 1.35688) (-2.39306e-17 -1.17963 1.1288) (-2.38689e-17 -0.975866 0.91796) (-2.38045e-17 -0.771728 0.694075) (-2.37823e-17 -0.391217 0.491296) (-2.3988e-17 0.284789 0.528325) (-2.37658e-17 -0.0513531 0.321731) (-2.25568e-17 -0.523209 0.45331) (-2.09117e-17 -0.990993 0.889381) (-1.99822e-17 -1.81967 1.176) (-1.97396e-17 -2.5361 1.4137) (-1.98205e-17 -2.99129 1.72728) (-2.01428e-17 -3.2561 1.97817) (-2.0581e-17 -3.412 2.07104) (-2.10517e-17 -3.47657 1.99503) (-2.15203e-17 -3.43324 1.80221) (-2.19521e-17 -3.27439 1.58958) (-2.23305e-17 -3.016 1.44386) (-2.26798e-17 -2.67946 1.38211) (-2.30774e-17 -2.31982 1.3639) (-2.36641e-17 -1.99309 1.30889) (-2.46203e-17 -1.68063 1.13231) (-2.6097e-17 -1.27908 0.763263) (-2.80156e-17 -0.622542 0.139723) (-2.98001e-17 0.723852 -0.76733) (-3.02636e-17 0.786621 -1.19126) (-2.97228e-17 0.594159 -1.54922) (-3.03195e-17 0.81176 -1.85211) (-3.33261e-17 0.781587 -2.12566) (-3.84627e-17 0.572947 -2.17066) (-4.37361e-17 0.359947 -1.87585) (-4.72695e-17 -0.503263 -0.841074) (-5.02254e-17 -1.34085 0.336813) (-5.16925e-17 -1.9724 1.15543) (-5.27426e-17 -2.50164 1.74135) (-5.35557e-17 -2.88595 2.22531) (-5.40134e-17 -3.10579 2.63562) (-5.42131e-17 -3.18997 2.96425) (-5.43071e-17 -3.1674 3.21697) (-5.43492e-17 -3.072 3.39617) (-5.43513e-17 -2.93462 3.50315) (-5.43234e-17 -2.78094 3.55327) (-5.42912e-17 -2.63686 3.56441) (-5.42743e-17 -2.54651 3.56086) (-5.42727e-17 -2.54914 3.57249) (-5.42758e-17 -2.61678 3.62537) (-5.42756e-17 -2.40478 3.72144) (-9.87002e-16 -0.735856 -0.301061) (-1.69865e-15 -0.36826 0.925471) (-2.13864e-15 -0.28986 1.55468) (-2.5201e-15 -0.792728 1.4537) (-2.77569e-15 -1.1286 1.23785) (-2.4599e-15 -0.935072 0.953049) (-2.09189e-15 -0.66192 0.846162) (-2.34769e-15 1.05553 0.372403) (-2.80924e-15 1.20665 -0.312573) (-3.19554e-15 0.621959 -1.09276) (-3.47892e-15 0.272299 -1.98359) (-3.29751e-15 0.466111 -2.47406) (-2.40249e-15 0.749346 -2.13066) (-1.41132e-15 0.631296 -1.87078) (-1.1673e-15 2.34767 -1.72768) (-1.05728e-15 1.28204 -1.21543) (-1.12989e-15 1.5851 -1.63066) (-1.19787e-15 1.7597 -2.21367) (-1.12557e-15 1.78081 -2.50354) (-7.3206e-16 2.00942 -2.50151) (-1.15006e-16 2.7465 -2.5956) (3.32642e-16 3.35473 -2.72205) (4.94838e-16 3.62408 -2.56166) (4.7818e-16 3.52901 -2.31607) (4.13301e-16 2.83752 -2.13648) (3.52311e-16 1.83959 -1.82963) (2.7491e-16 1.27871 -1.38581) (1.78052e-16 1.7569 -1.41257) (1.06278e-16 1.45014 -1.5696) (7.7564e-17 0.293896 -1.64698) (7.20029e-17 -0.213256 -1.50923) (5.23381e-17 -0.905557 -1.06467) (3.66247e-17 -1.14318 -0.68272) (3.64667e-17 -1.37295 -0.332074) (4.66588e-17 -1.61025 0.698258) (4.34627e-17 -1.50476 1.90155) (1.67924e-17 -1.89884 2.1833) (-1.60138e-17 -3.08581 1.65942) (-3.83109e-17 -4.5512 1.10753) (-4.78137e-17 -5.59451 0.840974) (-4.71042e-17 -6.33222 0.810699) (-4.38167e-17 -6.8106 0.891372) (-4.1075e-17 -7.05445 0.99797) (-3.79665e-17 -7.09394 1.10529) (-3.42873e-17 -6.93638 1.21419) (-3.10501e-17 -6.6376 1.33191) (-2.8772e-17 -6.2764 1.43016) (-2.73291e-17 -5.88144 1.46117) (-2.64074e-17 -5.39537 1.45182) (-2.57128e-17 -4.67658 1.50039) (-2.51143e-17 -3.77489 1.65235) (-2.46288e-17 -2.95227 1.78777) (-2.42959e-17 -2.3786 1.78618) (-2.40924e-17 -1.9472 1.65868) (-2.39778e-17 -1.5911 1.46047) (-2.39124e-17 -1.31282 1.21382) (-2.38568e-17 -1.00629 0.900127) (-2.37993e-17 -0.648299 0.527768) (-2.3703e-17 -0.229511 0.241241) (-2.37828e-17 0.0836637 0.171501) (-2.40407e-17 0.274708 -0.0329805) (-2.27657e-17 0.168811 0.243033) (-2.08792e-17 -0.74486 0.785154) (-2.00483e-17 -1.78484 1.00102) (-1.97173e-17 -2.49505 1.30712) (-1.97727e-17 -2.98068 1.66009) (-2.00848e-17 -3.29223 1.91838) (-2.04971e-17 -3.48049 2.02888) (-2.09631e-17 -3.558 1.97247) (-2.14513e-17 -3.51242 1.79501) (-2.19272e-17 -3.33525 1.59333) (-2.23611e-17 -3.04339 1.43765) (-2.27426e-17 -2.68668 1.34769) (-2.31222e-17 -2.31374 1.29516) (-2.36503e-17 -1.975 1.21802) (-2.45811e-17 -1.68359 1.04184) (-2.62007e-17 -1.38314 0.671191) (-2.85519e-17 -0.911461 -0.0164691) (-3.08171e-17 0.278871 -1.04821) (-3.15745e-17 0.747971 -1.44607) (-3.08923e-17 0.372724 -1.69666) (-3.04033e-17 0.684185 -2.0258) (-3.20985e-17 0.817308 -2.39708) (-3.64251e-17 0.527773 -2.55011) (-4.18444e-17 0.0884591 -2.17722) (-4.68018e-17 -0.560698 -0.951073) (-4.97396e-17 -1.27013 0.226699) (-5.12373e-17 -1.88979 1.01854) (-5.2489e-17 -2.46773 1.59246) (-5.34233e-17 -2.89453 2.08214) (-5.39341e-17 -3.16165 2.49196) (-5.41969e-17 -3.28659 2.82922) (-5.43242e-17 -3.28931 3.1009) (-5.43716e-17 -3.20343 3.29804) (-5.43583e-17 -3.05825 3.42899) (-5.43188e-17 -2.88042 3.50287) (-5.42873e-17 -2.71606 3.53357) (-5.42729e-17 -2.63723 3.54462) (-5.42705e-17 -2.68052 3.5677) (-5.4271e-17 -2.47424 3.63286) (-1.14609e-15 -0.279141 -0.230351) (-1.49786e-15 -0.217793 0.177605) (-1.76454e-15 0.0985742 0.893034) (-2.3495e-15 -0.644357 1.26342) (-2.79135e-15 -1.29918 1.2828) (-2.68214e-15 -1.15961 0.980653) (-2.26988e-15 -0.646601 0.571964) (-2.30337e-15 0.160132 0.710506) (-2.71778e-15 0.883069 -0.0423376) (-3.12208e-15 0.712932 -0.697896) (-3.50342e-15 0.486636 -1.47326) (-3.58482e-15 0.455985 -2.22476) (-2.78371e-15 0.763848 -2.30509) (-1.36576e-15 0.565158 -2.10366) (-5.47151e-16 2.25362 -1.38179) (-6.35323e-16 1.71508 -0.5971) (-7.25742e-16 1.22928 -0.95541) (-7.98809e-16 1.44399 -1.66687) (-8.03091e-16 1.5295 -2.11146) (-7.08135e-16 1.83461 -2.40771) (-3.24338e-16 2.56534 -2.60391) (1.16573e-16 3.17999 -2.76172) (3.79605e-16 3.50418 -2.66119) (4.47001e-16 3.58085 -2.4095) (4.16589e-16 3.14705 -2.22351) (3.67431e-16 2.32373 -1.97339) (3.11681e-16 1.51619 -1.46142) (2.20684e-16 1.75816 -1.25494) (1.41203e-16 1.95989 -1.32354) (1.06147e-16 1.2113 -1.31492) (9.26803e-17 -0.147192 -1.2081) (8.68613e-17 -0.994096 -0.960297) (6.40916e-17 -0.491747 -1.12838) (3.44309e-17 -0.562253 -1.1097) (3.04349e-17 -1.73645 -0.496027) (5.25547e-17 -1.65083 1.00022) (5.46767e-17 -1.35954 2.42063) (2.10717e-17 -1.88667 2.46856) (-1.76034e-17 -3.24086 1.73969) (-4.30364e-17 -4.56539 1.20892) (-4.99819e-17 -5.67972 0.97631) (-4.78472e-17 -6.45297 0.942812) (-4.52222e-17 -6.89636 0.995522) (-4.25374e-17 -7.0984 1.06391) (-3.85323e-17 -7.10901 1.13786) (-3.42984e-17 -6.94572 1.23086) (-3.09639e-17 -6.65406 1.33102) (-2.87401e-17 -6.29169 1.38803) (-2.73742e-17 -5.88942 1.38479) (-2.64451e-17 -5.35943 1.39429) (-2.56731e-17 -4.61051 1.50188) (-2.5012e-17 -3.77196 1.66817) (-2.45191e-17 -3.07275 1.77795) (-2.42072e-17 -2.53531 1.78426) (-2.40337e-17 -2.11661 1.70469) (-2.39445e-17 -1.78921 1.53208) (-2.38868e-17 -1.49183 1.25852) (-2.38332e-17 -1.15335 0.891836) (-2.37733e-17 -0.684573 0.456816) (-2.36893e-17 -0.124996 0.0938089) (-2.3664e-17 0.0146693 -0.122527) (-2.40639e-17 0.286478 -0.370371) (-2.27777e-17 0.630071 0.186366) (-2.09923e-17 -0.529478 0.540433) (-2.00969e-17 -1.60327 0.797184) (-1.96983e-17 -2.40169 1.18968) (-1.97621e-17 -2.95704 1.54999) (-2.00263e-17 -3.32697 1.83376) (-2.03961e-17 -3.5382 1.97878) (-2.08412e-17 -3.62026 1.94983) (-2.13347e-17 -3.57551 1.80203) (-2.18472e-17 -3.39284 1.61974) (-2.23356e-17 -3.08634 1.45723) (-2.27673e-17 -2.71044 1.33767) (-2.31662e-17 -2.32511 1.24805) (-2.36546e-17 -1.98667 1.1464) (-2.44946e-17 -1.71265 0.966504) (-2.60556e-17 -1.446 0.6053) (-2.85191e-17 -1.05928 -0.0672092) (-3.10489e-17 -0.397919 -1.00814) (-3.18796e-17 0.296118 -1.65604) (-3.09331e-17 0.203291 -1.83711) (-3.00092e-17 0.592935 -2.20702) (-3.12864e-17 0.807317 -2.67897) (-3.53041e-17 0.527914 -2.82527) (-4.12074e-17 -0.02413 -2.24292) (-4.65067e-17 -0.574114 -0.977344) (-4.90424e-17 -1.13932 0.139142) (-5.0635e-17 -1.78348 0.886685) (-5.21575e-17 -2.41073 1.4491) (-5.32227e-17 -2.89181 1.93095) (-5.38516e-17 -3.22014 2.33573) (-5.41834e-17 -3.38833 2.6911) (-5.43457e-17 -3.4218 2.9751) (-5.43867e-17 -3.34866 3.19423) (-5.43562e-17 -3.19268 3.352) (-5.43158e-17 -2.99473 3.45104) (-5.42882e-17 -2.82877 3.50259) (-5.42767e-17 -2.77789 3.52606) (-5.42698e-17 -2.505 3.55717) (-1.98691e-15 -0.00622758 0.522191) (-1.59043e-15 -0.180882 -0.0461586) (-1.5405e-15 0.0661718 0.186522) (-2.21903e-15 -0.165021 0.891447) (-2.75118e-15 -1.14502 1.07609) (-2.8035e-15 -1.3496 1.1346) (-2.47839e-15 -0.660129 0.651587) (-2.30679e-15 -0.178709 0.73166) (-2.72572e-15 0.62039 0.123794) (-3.08812e-15 0.532571 -0.485203) (-3.46233e-15 0.591698 -1.15794) (-3.71451e-15 0.491325 -1.82248) (-3.21838e-15 0.863072 -2.2538) (-1.75149e-15 0.65679 -2.35853) (-1.0636e-16 0.0384556 -1.43527) (2.06019e-16 1.14307 -0.277678) (-4.90945e-16 1.14815 -0.212915) (-4.92797e-16 1.06399 -0.895713) (-4.00621e-16 1.25083 -1.28902) (-4.1862e-16 1.62796 -1.92279) (-3.0482e-16 2.35325 -2.4467) (-2.73392e-17 3.02755 -2.79135) (2.31319e-16 3.45793 -2.83192) (3.64146e-16 3.6107 -2.57706) (3.89556e-16 3.28882 -2.30728) (3.69412e-16 2.58134 -2.06914) (3.32931e-16 1.84799 -1.56116) (2.5921e-16 1.71787 -1.09394) (1.77461e-16 1.90825 -1.07278) (1.30062e-16 1.79269 -1.11432) (1.06372e-16 0.866492 -1.06415) (9.62848e-17 -0.771984 -0.898506) (9.06707e-17 -1.15777 -0.75394) (6.38871e-17 -0.611439 -0.883911) (1.95056e-17 -1.30702 -1.2024) (2.20235e-17 -1.73872 -0.624244) (6.70324e-17 -1.72365 1.62945) (7.2197e-17 -1.11633 2.95094) (2.7856e-17 -1.79385 2.50091) (-2.16512e-17 -3.12673 1.8014) (-4.73868e-17 -4.6046 1.32063) (-5.11095e-17 -5.7649 1.09699) (-4.91002e-17 -6.52666 1.07652) (-4.75311e-17 -6.98084 1.12444) (-4.39944e-17 -7.19392 1.16256) (-3.89332e-17 -7.20106 1.20975) (-3.42739e-17 -7.01226 1.27938) (-3.08793e-17 -6.67995 1.33668) (-2.87799e-17 -6.31906 1.34396) (-2.74804e-17 -5.89571 1.31637) (-2.64825e-17 -5.28888 1.3443) (-2.56033e-17 -4.5291 1.46944) (-2.48907e-17 -3.7894 1.61892) (-2.44038e-17 -3.16886 1.71636) (-2.41213e-17 -2.66748 1.74789) (-2.39823e-17 -2.28443 1.70435) (-2.39175e-17 -1.98998 1.568) (-2.38747e-17 -1.65462 1.31246) (-2.38215e-17 -1.20307 0.937353) (-2.37506e-17 -0.703532 0.539549) (-2.36699e-17 -0.321033 0.226339) (-2.36411e-17 0.0560115 -0.281672) (-2.36427e-17 0.705161 -0.365271) (-2.26254e-17 0.859732 0.0241711) (-2.11277e-17 -0.332665 0.214075) (-2.00895e-17 -1.48022 0.629102) (-1.97417e-17 -2.32193 1.04772) (-1.97731e-17 -2.9454 1.41715) (-1.99798e-17 -3.34331 1.73264) (-2.03026e-17 -3.57543 1.90681) (-2.07096e-17 -3.68346 1.91831) (-2.11872e-17 -3.64656 1.81551) (-2.17067e-17 -3.45839 1.66156) (-2.22235e-17 -3.15285 1.50538) (-2.27032e-17 -2.78162 1.37206) (-2.31432e-17 -2.39886 1.25816) (-2.36049e-17 -2.04823 1.13543) (-2.4287e-17 -1.74788 0.949404) (-2.55668e-17 -1.46914 0.607922) (-2.77638e-17 -1.16036 -0.00961038) (-3.03264e-17 -0.794024 -0.929466) (-3.14646e-17 -0.289323 -1.77216) (-3.04713e-17 0.0321677 -1.93316) (-2.96253e-17 0.53146 -2.40173) (-3.08911e-17 0.802346 -2.96918) (-3.51976e-17 0.536427 -3.02248) (-4.09529e-17 -0.042953 -2.13518) (-4.55354e-17 -0.453385 -1.08677) (-4.79533e-17 -0.96165 0.0330088) (-4.98596e-17 -1.65579 0.758907) (-5.16669e-17 -2.33044 1.32136) (-5.29443e-17 -2.89428 1.7682) (-5.37345e-17 -3.28601 2.18777) (-5.41651e-17 -3.50607 2.54509) (-5.43625e-17 -3.57767 2.84312) (-5.43873e-17 -3.51666 3.08855) (-5.43552e-17 -3.36058 3.27491) (-5.43141e-17 -3.16368 3.40551) (-5.42938e-17 -3.00751 3.48056) (-5.42844e-17 -2.61424 3.51201) (-2.24837e-15 0.0787021 0.558004) (-1.68884e-15 -0.502806 0.330226) (-2.09967e-15 -0.524711 0.526155) (-2.09905e-15 -0.37051 0.718697) (-2.76394e-15 -0.59904 0.690049) (-2.86909e-15 -1.31636 0.977123) (-2.6679e-15 -0.823285 0.735361) (-2.36949e-15 -0.355538 0.14923) (-2.75733e-15 0.417874 0.164596) (-3.13517e-15 0.176017 -0.398343) (-3.45941e-15 0.676176 -1.01809) (-3.72786e-15 0.690036 -1.46899) (-3.52699e-15 0.960595 -1.92343) (-2.38829e-15 0.905281 -2.38066) (-6.18915e-16 -0.258188 -2.21493) (-2.54585e-16 0.842378 -0.83589) (1.2739e-16 1.06046 0.798656) (-2.39162e-16 1.02183 -0.206922) (-1.11556e-16 1.47046 0.436404) (-9.54524e-17 1.3194 -0.534262) (-1.00976e-16 1.94179 -1.78844) (2.20005e-18 2.73443 -2.55926) (1.54089e-16 3.3721 -2.92813) (2.67218e-16 3.64244 -2.80245) (3.17671e-16 3.4404 -2.47302) (3.30732e-16 2.83972 -2.20618) (3.22213e-16 2.16351 -1.82519) (2.82335e-16 1.75291 -1.17298) (2.16997e-16 1.81007 -0.820815) (1.60711e-16 2.03448 -0.878766) (1.24983e-16 1.55564 -0.909635) (1.07415e-16 0.430515 -0.873242) (1.03894e-16 -1.14927 -0.554272) (9.52378e-17 -0.928024 -0.400018) (4.33935e-17 -0.972163 -0.928788) (-1.33948e-17 -1.12601 -1.5747) (2.95745e-17 -1.88972 0.183981) (9.52894e-17 -1.14068 2.38376) (9.17683e-17 -0.845479 2.91244) (3.12707e-17 -1.58784 2.50087) (-2.72631e-17 -3.0394 1.88515) (-5.01392e-17 -4.58697 1.38624) (-5.14697e-17 -5.81619 1.20177) (-5.19103e-17 -6.59173 1.21964) (-5.04482e-17 -7.06741 1.2572) (-4.53304e-17 -7.32538 1.2828) (-3.92491e-17 -7.32607 1.31817) (-3.4182e-17 -7.11172 1.36107) (-3.08696e-17 -6.77798 1.36963) (-2.89399e-17 -6.37478 1.32204) (-2.76317e-17 -5.86379 1.2741) (-2.64973e-17 -5.21178 1.3053) (-2.55074e-17 -4.49068 1.40682) (-2.47634e-17 -3.81945 1.52095) (-2.42884e-17 -3.22902 1.60504) (-2.40319e-17 -2.76241 1.65099) (-2.39222e-17 -2.41477 1.64587) (-2.38929e-17 -2.10179 1.57072) (-2.38807e-17 -1.75236 1.40523) (-2.38336e-17 -1.35816 1.12914) (-2.37345e-17 -0.940297 0.767915) (-2.36269e-17 -0.346467 0.25584) (-2.39134e-17 0.488651 -0.527042) (-2.35237e-17 0.790321 -0.692813) (-2.27825e-17 0.928217 -0.413569) (-2.11871e-17 -0.203393 -0.13244) (-2.01394e-17 -1.32695 0.444881) (-1.97908e-17 -2.21253 0.860911) (-1.97811e-17 -2.88242 1.26614) (-1.99507e-17 -3.32628 1.60488) (-2.02264e-17 -3.60186 1.80772) (-2.05935e-17 -3.72732 1.86481) (-2.10425e-17 -3.70107 1.81138) (-2.15439e-17 -3.53108 1.69457) (-2.20599e-17 -3.24804 1.5583) (-2.25655e-17 -2.88972 1.42783) (-2.30471e-17 -2.51053 1.30754) (-2.35137e-17 -2.15084 1.17942) (-2.40715e-17 -1.82675 1.00038) (-2.50232e-17 -1.54349 0.694689) (-2.67724e-17 -1.29038 0.146985) (-2.91671e-17 -1.03698 -0.741664) (-3.07995e-17 -0.765362 -1.74922) (-3.01795e-17 -0.275718 -2.1142) (-2.96436e-17 0.35166 -2.791) (-3.12693e-17 0.684156 -3.36223) (-3.53886e-17 0.516376 -3.19696) (-3.92519e-17 0.0288679 -2.30237) (-4.43726e-17 -0.168654 -1.28567) (-4.65848e-17 -0.718024 -0.114448) (-4.88914e-17 -1.46094 0.650768) (-5.09347e-17 -2.23012 1.17624) (-5.25509e-17 -2.88585 1.63001) (-5.35408e-17 -3.35238 2.04079) (-5.41348e-17 -3.64606 2.392) (-5.43487e-17 -3.75581 2.71033) (-5.43922e-17 -3.72365 2.97758) (-5.4353e-17 -3.58629 3.20006) (-5.4317e-17 -3.3897 3.36378) (-5.42997e-17 -2.9135 3.44473) (-2.84577e-15 -0.088741 0.502814) (-2.74573e-15 -0.30415 0.94993) (-2.8877e-15 -0.41988 0.905373) (-2.50984e-15 -0.266053 0.712795) (-2.75688e-15 -0.583551 0.599555) (-2.92175e-15 -1.12977 0.577115) (-2.81166e-15 -1.0567 0.784396) (-2.5729e-15 -0.349695 0.271755) (-2.73254e-15 0.747514 0.0582505) (-3.1876e-15 0.0689066 -0.475834) (-3.52089e-15 0.137329 -0.850157) (-3.74055e-15 0.70353 -1.11921) (-3.63865e-15 1.00768 -1.41122) (-2.88232e-15 1.04154 -2.05938) (-1.46208e-15 0.0265419 -2.43885) (-2.87516e-16 0.260949 -2.95953) (1.99923e-16 1.13326 -0.587272) (-1.34164e-17 1.68029 0.922687) (1.15256e-16 2.29472 2.78437) (1.00109e-16 1.6904 0.759953) (1.31648e-16 1.61793 -0.763938) (1.58691e-16 2.23073 -1.89019) (2.11453e-16 3.02698 -2.70644) (2.45109e-16 3.53839 -2.9321) (2.52653e-16 3.62422 -2.70384) (2.56192e-16 3.12659 -2.38454) (2.60859e-16 2.4104 -2.11716) (2.50157e-16 1.91467 -1.60926) (2.22257e-16 1.74405 -0.93504) (1.84992e-16 2.0421 -0.686725) (1.48797e-16 2.00693 -0.721218) (1.24454e-16 1.19567 -0.760041) (1.16482e-16 -0.426984 -0.486281) (1.10502e-16 -0.671936 -0.503621) (6.68556e-17 -0.716195 -0.921082) (-1.51151e-17 -0.82085 -1.66649) (-2.45683e-17 -1.48493 -0.609492) (5.83868e-17 -1.37224 1.12193) (1.20803e-16 -0.860852 2.42908) (1.07068e-16 -0.795221 2.82832) (3.16172e-17 -1.32734 2.56371) (-3.33026e-17 -2.88508 1.92398) (-4.93337e-17 -4.57695 1.41773) (-5.31258e-17 -5.74299 1.29064) (-5.66313e-17 -6.56299 1.32652) (-5.35964e-17 -7.15195 1.36984) (-4.66436e-17 -7.46214 1.4087) (-3.94224e-17 -7.47274 1.45046) (-3.41439e-17 -7.24491 1.46491) (-3.10558e-17 -6.90825 1.42799) (-2.92291e-17 -6.47363 1.35064) (-2.77856e-17 -5.88907 1.29305) (-2.64739e-17 -5.19817 1.29726) (-2.53973e-17 -4.5031 1.34982) (-2.4639e-17 -3.85666 1.41695) (-2.41731e-17 -3.31289 1.48226) (-2.39321e-17 -2.86725 1.52662) (-2.38524e-17 -2.50988 1.54213) (-2.38629e-17 -2.1834 1.52086) (-2.38781e-17 -1.85137 1.45147) (-2.38372e-17 -1.52059 1.28754) (-2.37172e-17 -1.14595 0.946185) (-2.35425e-17 -0.477817 0.306237) (-2.36983e-17 0.358276 -0.481132) (-2.36733e-17 0.695903 -0.996603) (-2.33985e-17 0.901582 -1.21156) (-2.1419e-17 0.0534812 -0.488906) (-2.01716e-17 -1.11975 0.181198) (-1.98043e-17 -2.05252 0.654789) (-1.97905e-17 -2.7622 1.08819) (-1.99214e-17 -3.26242 1.44279) (-2.01561e-17 -3.58075 1.67593) (-2.04909e-17 -3.73151 1.77767) (-2.09129e-17 -3.7272 1.77268) (-2.13869e-17 -3.58639 1.69716) (-2.18825e-17 -3.32961 1.58836) (-2.23876e-17 -2.99619 1.47427) (-2.28895e-17 -2.62725 1.36444) (-2.33677e-17 -2.25792 1.25024) (-2.38502e-17 -1.91037 1.10086) (-2.45293e-17 -1.60349 0.852893) (-2.57905e-17 -1.3534 0.388481) (-2.78126e-17 -1.17901 -0.473787) (-2.9959e-17 -1.12686 -1.69185) (-3.0181e-17 -0.672061 -2.49145) (-3.038e-17 0.00505141 -3.29758) (-3.23203e-17 0.419575 -3.70149) (-3.51354e-17 0.438978 -3.57645) (-3.87663e-17 0.155953 -2.82692) (-4.24066e-17 -0.036642 -1.6025) (-4.55386e-17 -0.444867 -0.39675) (-4.74562e-17 -1.18004 0.511204) (-4.99519e-17 -2.07196 1.04551) (-5.18561e-17 -2.81265 1.51649) (-5.32823e-17 -3.41294 1.88076) (-5.40062e-17 -3.78302 2.24693) (-5.4333e-17 -3.9646 2.5669) (-5.43911e-17 -3.97272 2.86153) (-5.43569e-17 -3.81799 3.108) (-5.4321e-17 -3.39403 3.26145) (-2.93904e-15 -0.437783 0.134743) (-2.95789e-15 -0.393117 0.803565) (-3.06687e-15 -0.727918 0.761632) (-3.02455e-15 -0.540013 0.711013) (-2.97564e-15 -0.434691 0.353756) (-2.99847e-15 -0.807879 0.222791) (-2.93151e-15 -1.23826 0.559729) (-2.72645e-15 -0.594724 0.453894) (-2.65497e-15 1.07411 -0.108929) (-3.15675e-15 0.142137 -0.55349) (-3.52962e-15 -0.0489981 -0.840116) (-3.68138e-15 0.283319 -0.714087) (-3.66273e-15 0.618243 -0.832113) (-3.0826e-15 0.985178 -1.62254) (-2.03033e-15 0.227632 -2.19917) (-9.60232e-16 0.214922 -3.35447) (-1.43727e-16 2.51849 -1.37755) (2.06011e-16 1.05973 2.16966) (-2.13432e-16 -0.320183 2.2123) (-3.81569e-16 1.23439 0.797657) (4.9083e-17 1.68864 0.346974) (2.95124e-16 1.7148 -0.914977) (3.62205e-16 2.41943 -2.10811) (3.31267e-16 3.1849 -2.80173) (2.67754e-16 3.63695 -2.86822) (2.11685e-16 3.37692 -2.57106) (1.84193e-16 2.67354 -2.31321) (1.68916e-16 2.02901 -2.01428) (1.6092e-16 1.75056 -1.40169) (1.63475e-16 1.92143 -0.784065) (1.54503e-16 2.15014 -0.591998) (1.37242e-16 1.75007 -0.616471) (1.29353e-16 0.550197 -0.420149) (1.12305e-16 -0.668558 -0.555397) (5.3842e-17 -0.496424 -1.11429) (-2.71334e-17 -0.988102 -1.31268) (-5.23415e-17 -1.20246 -0.755416) (-1.02022e-17 -1.31165 0.194843) (7.99422e-17 -1.21787 1.46972) (1.37368e-16 -0.955352 2.35442) (1.22198e-16 -0.45855 2.85292) (2.62959e-17 -1.05498 2.69854) (-3.48221e-17 -2.77913 1.88815) (-4.586e-17 -4.36444 1.41907) (-5.85984e-17 -5.55669 1.35178) (-6.24661e-17 -6.49695 1.38496) (-5.70101e-17 -7.18066 1.44329) (-4.77436e-17 -7.5378 1.51471) (-3.95547e-17 -7.58547 1.57186) (-3.43547e-17 -7.41774 1.5744) (-3.15125e-17 -7.08673 1.51492) (-2.96022e-17 -6.5862 1.42677) (-2.79055e-17 -5.95947 1.36179) (-2.64189e-17 -5.27538 1.33534) (-2.52862e-17 -4.60148 1.33697) (-2.45214e-17 -3.97766 1.35645) (-2.40583e-17 -3.43246 1.38798) (-2.38331e-17 -2.98034 1.41702) (-2.37834e-17 -2.59589 1.42503) (-2.38217e-17 -2.29015 1.43193) (-2.3859e-17 -2.02633 1.43839) (-2.38294e-17 -1.70304 1.36244) (-2.36792e-17 -1.23368 1.07029) (-2.34686e-17 -0.731503 0.543003) (-2.35084e-17 -0.0287062 -0.261269) (-2.37821e-17 0.732432 -1.10827) (-2.32944e-17 0.957216 -1.48172) (-2.12899e-17 0.155061 -0.858983) (-2.01131e-17 -0.970923 -0.0292477) (-1.98382e-17 -1.9049 0.481117) (-1.98016e-17 -2.65435 0.910536) (-1.98856e-17 -3.18099 1.26799) (-2.0078e-17 -3.52123 1.51652) (-2.03868e-17 -3.69756 1.65494) (-2.07885e-17 -3.7236 1.69466) (-2.12394e-17 -3.61176 1.66056) (-2.17159e-17 -3.3867 1.5845) (-2.2213e-17 -3.08177 1.49298) (-2.27184e-17 -2.7278 1.40065) (-2.31981e-17 -2.35041 1.31043) (-2.36328e-17 -1.97817 1.21063) (-2.41073e-17 -1.64778 1.06049) (-2.4903e-17 -1.3762 0.760142) (-2.64347e-17 -1.15947 0.0870681) (-2.86439e-17 -1.116 -1.09933) (-3.00128e-17 -0.981406 -2.40183) (-3.13274e-17 -0.437456 -3.33641) (-3.30635e-17 0.0888133 -3.80932) (-3.57861e-17 0.3622 -3.94912) (-3.90228e-17 0.333442 -3.40633) (-4.12921e-17 -0.11933 -2.52063) (-4.34801e-17 -0.182113 -0.781286) (-4.58872e-17 -0.840975 0.235643) (-4.83122e-17 -1.70551 0.97975) (-5.09147e-17 -2.67072 1.35496) (-5.27224e-17 -3.40932 1.75492) (-5.38119e-17 -3.92247 2.08766) (-5.4282e-17 -4.17616 2.41781) (-5.43932e-17 -4.15863 2.71066) (-5.43652e-17 -3.88996 2.91929) (-3.00485e-15 -0.751563 -0.163451) (-2.95428e-15 -0.292898 0.485544) (-2.95545e-15 -1.21571 0.363709) (-3.01444e-15 -1.36413 0.648569) (-3.07701e-15 -0.897225 0.636209) (-3.06531e-15 -0.34885 0.00454661) (-3.03185e-15 -1.1344 0.240251) (-2.88097e-15 -0.915153 0.30616) (-2.71868e-15 0.533796 -0.00919979) (-3.09395e-15 0.177259 -0.532766) (-3.46902e-15 -0.0302471 -1.07412) (-3.573e-15 0.269323 -1.37451) (-3.56213e-15 1.07985 -0.961007) (-3.16781e-15 0.854019 -1.20533) (-2.29761e-15 0.438176 -1.87022) (-1.44003e-15 -0.0414431 -3.03405) (-4.09281e-16 1.39315 -3.03939) (3.25544e-16 1.51068 1.09083) (-5.16626e-16 0.0647757 0.790265) (-1.19389e-15 0.52333 0.445087) (-1.5403e-15 1.06318 2.08567) (-2.86812e-16 1.54199 0.670335) (3.99972e-16 1.9639 -1.1699) (4.73583e-16 2.78812 -2.40019) (3.73167e-16 3.3924 -2.84505) (2.47639e-16 3.44786 -2.71465) (1.56314e-16 2.90339 -2.44044) (1.01364e-16 2.17073 -2.22072) (7.67692e-17 1.79 -1.80722) (9.06196e-17 1.67925 -1.05319) (1.18498e-16 1.93926 -0.578106) (1.25569e-16 2.13028 -0.504626) (1.22147e-16 1.65882 -0.505034) (1.1178e-16 0.539401 -0.586631) (5.64312e-17 -0.0193252 -0.623086) (-1.43535e-17 -0.203149 -0.454518) (-6.32811e-17 -0.81409 -0.616949) (-6.97741e-17 -1.15022 -0.218908) (1.91924e-18 -1.19105 0.758768) (9.62336e-17 -1.04495 1.64689) (1.54967e-16 -0.744152 2.42587) (1.29163e-16 -0.150455 3.26161) (1.46619e-17 -0.90193 2.8026) (-2.06966e-17 -2.61066 1.77667) (-4.73724e-17 -4.07249 1.44328) (-6.69147e-17 -5.27652 1.36383) (-6.93387e-17 -6.33389 1.38654) (-6.02197e-17 -7.13769 1.47617) (-4.85837e-17 -7.56617 1.59049) (-3.98535e-17 -7.66818 1.66064) (-3.49942e-17 -7.54088 1.65733) (-3.22196e-17 -7.2175 1.60054) (-2.9999e-17 -6.72552 1.52831) (-2.79876e-17 -6.10233 1.4628) (-2.63574e-17 -5.41877 1.40802) (-2.51859e-17 -4.75474 1.36393) (-2.44107e-17 -4.15041 1.34197) (-2.39553e-17 -3.58228 1.33724) (-2.37526e-17 -3.07048 1.32721) (-2.37188e-17 -2.67887 1.30658) (-2.3766e-17 -2.4131 1.31885) (-2.38247e-17 -2.16157 1.37755) (-2.38251e-17 -1.81661 1.37894) (-2.36918e-17 -1.35942 1.13877) (-2.33969e-17 -0.744498 0.545434) (-2.32751e-17 0.0707265 -0.436483) (-2.37868e-17 0.695866 -1.63663) (-2.27395e-17 0.514657 -1.86855) (-2.08434e-17 0.0869078 -0.889898) (-2.01326e-17 -0.918518 -0.0575292) (-1.99087e-17 -1.81937 0.379894) (-1.98291e-17 -2.55929 0.777312) (-1.9848e-17 -3.10091 1.10492) (-1.99918e-17 -3.46213 1.35335) (-2.02738e-17 -3.66648 1.51467) (-2.06523e-17 -3.71913 1.58881) (-2.10849e-17 -3.63485 1.59319) (-2.15515e-17 -3.43936 1.55067) (-2.2049e-17 -3.15889 1.48194) (-2.25643e-17 -2.8205 1.40346) (-2.30577e-17 -2.44754 1.32882) (-2.3478e-17 -2.06141 1.26588) (-2.38068e-17 -1.6794 1.2101) (-2.41327e-17 -1.31827 1.13639) (-2.46964e-17 -0.980588 0.973349) (-2.57264e-17 -0.769826 0.537885) (-2.68372e-17 -0.692543 -0.182558) (-2.80489e-17 -0.529664 -1.12817) (-3.05397e-17 -0.117637 -2.47422) (-3.43578e-17 0.301623 -3.29984) (-3.80176e-17 0.447168 -3.37605) (-4.08233e-17 0.230256 -2.76935) (-4.18202e-17 -0.205279 -1.65615) (-4.34151e-17 -0.331499 0.105168) (-4.62561e-17 -1.21685 0.689866) (-4.93167e-17 -2.32523 1.26326) (-5.18407e-17 -3.31615 1.5972) (-5.34411e-17 -4.00115 1.93677) (-5.41896e-17 -4.28744 2.22834) (-5.43993e-17 -4.25951 2.45291) (-3.07918e-15 -1.3191 -0.441398) (-2.96274e-15 -0.454714 -0.092659) (-2.91981e-15 -1.78316 -0.762017) (-2.94964e-15 -0.44056 -0.326423) (-3.06614e-15 -1.04426 0.626747) (-3.13682e-15 -0.838656 0.417963) (-3.12008e-15 -1.17546 0.137408) (-3.0386e-15 -1.34135 0.0562291) (-2.84894e-15 -0.241381 0.0651685) (-3.01972e-15 0.0556308 -0.237561) (-3.3634e-15 0.0259021 -1.03776) (-3.4505e-15 0.29172 -2.09482) (-3.59585e-15 0.693928 -2.19036) (-3.3008e-15 0.954876 -1.00772) (-2.55769e-15 0.717941 -1.52447) (-1.87749e-15 -0.543429 -2.25186) (-1.13428e-15 -0.903091 -2.65114) (-3.66361e-17 0.833441 -0.919434) (-2.01577e-16 0.713896 -0.295235) (-6.47476e-16 0.505111 -0.679634) (-1.59618e-15 0.642335 1.59481) (-1.3561e-15 1.63653 2.53598) (-9.68539e-17 1.85236 0.496426) (4.82705e-16 2.41819 -1.59074) (5.11298e-16 3.01576 -2.58781) (3.61268e-16 3.35121 -2.76237) (2.06908e-16 3.0421 -2.54256) (9.64336e-17 2.36457 -2.32014) (2.97604e-17 1.83244 -2.04888) (1.46122e-17 1.53307 -1.36547) (5.44027e-17 1.61596 -0.622081) (8.89131e-17 2.12989 -0.374477) (9.42042e-17 2.29947 -0.433373) (8.56018e-17 1.72038 -0.520314) (6.52388e-17 0.914143 -0.518672) (1.91102e-17 0.550626 -0.185547) (-5.17374e-17 -0.105014 0.00921723) (-8.82205e-17 -0.891273 -0.0323332) (-5.83687e-17 -1.04748 0.4849) (3.15703e-17 -0.859985 1.24358) (1.23748e-16 -0.859286 1.95047) (1.68194e-16 -0.34419 2.90768) (1.03285e-16 0.0040214 3.89535) (3.87997e-17 -0.972697 2.48369) (-7.48404e-18 -2.4383 1.76612) (-5.43723e-17 -3.70727 1.4652) (-7.80581e-17 -4.9751 1.3553) (-7.63706e-17 -6.18414 1.37289) (-6.29458e-17 -7.04406 1.49051) (-4.924e-17 -7.51845 1.62945) (-4.06407e-17 -7.68326 1.70303) (-3.61313e-17 -7.61085 1.70706) (-3.30895e-17 -7.32154 1.67145) (-3.03743e-17 -6.84314 1.61957) (-2.80593e-17 -6.24684 1.56096) (-2.63149e-17 -5.6116 1.49272) (-2.50961e-17 -4.97936 1.42144) (-2.43122e-17 -4.35265 1.36853) (-2.38816e-17 -3.73991 1.3333) (-2.37002e-17 -3.20268 1.28389) (-2.36606e-17 -2.80597 1.22286) (-2.36938e-17 -2.49711 1.20773) (-2.37637e-17 -2.17377 1.26813) (-2.38149e-17 -1.77118 1.30208) (-2.37545e-17 -1.34108 1.13754) (-2.34883e-17 -0.842112 0.567088) (-2.31205e-17 -0.0045841 -0.723412) (-2.30731e-17 0.526793 -2.36719) (-2.16614e-17 0.284883 -2.04247) (-2.05638e-17 0.071922 -0.6322) (-2.0252e-17 -0.844573 -0.00892782) (-2.00385e-17 -1.74072 0.376048) (-1.98873e-17 -2.48098 0.697814) (-1.98176e-17 -3.03461 0.979662) (-1.99108e-17 -3.43189 1.21548) (-2.01518e-17 -3.66456 1.3808) (-2.04994e-17 -3.74089 1.47614) (-2.09118e-17 -3.68213 1.51112) (-2.13698e-17 -3.51161 1.49938) (-2.18687e-17 -3.25537 1.45377) (-2.23955e-17 -2.93499 1.38726) (-2.29229e-17 -2.56996 1.31353) (-2.34136e-17 -2.17686 1.24203) (-2.3829e-17 -1.77104 1.1763) (-2.41507e-17 -1.36546 1.11664) (-2.4404e-17 -0.977693 1.05739) (-2.46752e-17 -0.613789 0.965451) (-2.51048e-17 -0.394589 0.712618) (-2.62027e-17 -0.664858 0.0390287) (-2.8397e-17 -0.563715 -1.38228) (-3.20279e-17 0.0538544 -2.41972) (-3.60452e-17 0.529748 -2.95205) (-3.84527e-17 0.731944 -2.67106) (-4.05684e-17 0.380121 -2.18285) (-4.0672e-17 0.190262 -0.883951) (-4.33069e-17 -0.544212 0.547248) (-4.68974e-17 -1.74836 1.04465) (-5.03957e-17 -3.02799 1.4667) (-5.27563e-17 -3.86059 1.73908) (-5.40009e-17 -4.2849 1.94644) (-3.11737e-15 -1.94214 -0.584965) (-3.07229e-15 -1.1811 -0.299633) (-2.97651e-15 -0.564407 -0.574127) (-2.93159e-15 0.333257 -1.18242) (-2.89329e-15 0.436415 -1.34185) (-3.07327e-15 -0.709271 0.694689) (-3.14422e-15 -1.12683 0.146668) (-3.17754e-15 -1.64403 -0.160519) (-3.06834e-15 -1.0166 -0.196714) (-3.07612e-15 -0.283753 -0.212358) (-3.36453e-15 -0.235768 -1.04031) (-3.4643e-15 0.738233 -2.11198) (-3.51522e-15 0.3233 -2.87559) (-3.44498e-15 0.760635 -1.39754) (-2.97346e-15 0.831141 -1.23348) (-2.44714e-15 -0.370725 -1.58803) (-1.85272e-15 -1.22046 -1.9863) (-7.28181e-16 0.265938 -1.49354) (-1.27127e-16 1.43434 -1.18118) (-6.86457e-16 1.23041 -0.71668) (-1.50718e-15 0.839309 1.32246) (-1.46351e-15 0.622766 3.0191) (-6.59876e-16 1.74185 1.88091) (3.13819e-16 2.23684 -0.459976) (6.08789e-16 2.71434 -2.08989) (5.24007e-16 3.12667 -2.6795) (3.38664e-16 3.06852 -2.62118) (1.73844e-16 2.58865 -2.40882) (5.65907e-17 2.01543 -2.22423) (-9.25661e-18 1.61689 -1.75346) (-3.84072e-19 1.48902 -0.841042) (4.48493e-17 1.82742 -0.242925) (6.14007e-17 2.23684 -0.140434) (5.02025e-17 2.12406 -0.214199) (3.15243e-17 1.57696 -0.282833) (1.02955e-17 0.921084 -0.111928) (-3.30552e-17 0.403336 0.158761) (-8.67412e-17 -0.29063 0.411692) (-7.34236e-17 -0.841793 0.711795) (-8.82728e-18 -0.821874 1.20042) (7.98804e-17 -0.851766 1.7361) (1.5875e-16 -0.323688 2.39813) (1.5666e-16 0.197714 4.52615) (1.2757e-16 -0.0146093 3.4319) (7.80864e-17 -1.19674 2.3041) (-1.99913e-18 -2.19641 1.78415) (-6.7724e-17 -3.31653 1.49541) (-9.04304e-17 -4.72969 1.35176) (-8.32288e-17 -6.01719 1.36891) (-6.48764e-17 -6.91449 1.50895) (-5.01821e-17 -7.42473 1.64592) (-4.22197e-17 -7.65145 1.71539) (-3.76983e-17 -7.62889 1.72871) (-3.39958e-17 -7.38095 1.7152) (-3.07272e-17 -6.95106 1.68772) (-2.81616e-17 -6.40845 1.64112) (-2.62924e-17 -5.82629 1.56927) (-2.50125e-17 -5.22508 1.48909) (-2.42368e-17 -4.58794 1.42614) (-2.38425e-17 -3.95717 1.37397) (-2.36756e-17 -3.41483 1.30153) (-2.3617e-17 -2.97917 1.21611) (-2.3618e-17 -2.56551 1.16123) (-2.36693e-17 -2.1735 1.16812) (-2.37482e-17 -1.80967 1.18415) (-2.3779e-17 -1.36604 1.07286) (-2.36121e-17 -0.760751 0.628533) (-2.31742e-17 0.0545873 -0.602552) (-2.20432e-17 0.46977 -1.76294) (-2.08448e-17 0.614972 -1.54297) (-2.0667e-17 0.334492 -0.486367) (-2.05105e-17 -0.625803 0.129968) (-2.02803e-17 -1.57535 0.410536) (-1.99763e-17 -2.33684 0.649177) (-1.98212e-17 -2.95974 0.899278) (-1.98382e-17 -3.41005 1.10989) (-2.00223e-17 -3.68337 1.26875) (-2.0336e-17 -3.79553 1.37404) (-2.07291e-17 -3.76183 1.42961) (-2.11756e-17 -3.61316 1.44283) (-2.1663e-17 -3.37483 1.42125) (-2.21767e-17 -3.07214 1.37665) (-2.2703e-17 -2.72263 1.32119) (-2.32224e-17 -2.33795 1.26367) (-2.37093e-17 -1.93306 1.20644) (-2.41469e-17 -1.53102 1.14367) (-2.454e-17 -1.15486 1.06029) (-2.49162e-17 -0.804676 0.919074) (-2.53194e-17 -0.437394 0.672982) (-2.6166e-17 -0.462489 0.203575) (-2.79913e-17 -1.13167 -0.382012) (-2.99856e-17 -0.636292 -1.22001) (-3.28801e-17 0.284387 -1.96764) (-3.57471e-17 0.91791 -2.29261) (-3.71504e-17 1.1786 -1.91857) (-3.89028e-17 0.907511 -1.55389) (-3.92604e-17 0.503449 -0.0946366) (-4.35664e-17 -0.963416 0.887025) (-4.7714e-17 -2.37274 1.29341) (-5.13571e-17 -3.5882 1.51037) (-3.12331e-15 -2.27001 -0.753953) (-3.10891e-15 -1.74954 -0.381941) (-3.04608e-15 -1.15346 -0.439715) (-2.94105e-15 -0.468047 -1.42284) (-2.84011e-15 0.357146 -2.21829) (-2.84676e-15 -0.093426 -1.46037) (-2.96129e-15 -0.596473 -0.371927) (-3.17988e-15 -1.59024 -0.522001) (-3.28407e-15 -1.32778 -0.451505) (-3.28437e-15 -0.84394 -0.334561) (-3.42411e-15 -0.7549 -0.505638) (-3.43537e-15 0.358289 -0.600557) (-3.41361e-15 0.560097 -1.02057) (-3.45055e-15 0.480796 -1.31793) (-3.26131e-15 0.792765 -1.09336) (-2.95499e-15 0.107986 -1.21746) (-2.49095e-15 -0.540922 -1.70052) (-1.42151e-15 0.143009 -1.63106) (-4.24615e-16 1.2459 -1.12531) (-1.04371e-15 1.48826 -0.364959) (-1.31225e-15 0.642449 0.801082) (-1.38013e-15 -0.0575277 2.58642) (-1.07595e-15 1.54065 3.35458) (-4.41317e-17 1.92723 1.00654) (5.74045e-16 2.38794 -1.31328) (6.65341e-16 2.83483 -2.44236) (5.16552e-16 2.98269 -2.6629) (3.24098e-16 2.7267 -2.50553) (1.62604e-16 2.23504 -2.34035) (4.65574e-17 1.8232 -2.09025) (-2.17532e-18 1.62402 -1.33312) (1.86453e-17 1.64593 -0.411951) (4.21154e-17 1.91187 0.0618031) (3.0276e-17 2.16174 0.0946563) (3.26983e-18 2.00987 0.000480797) (-2.1929e-17 1.49669 0.0376012) (-4.34154e-17 0.909026 0.13956) (-8.18101e-17 0.26368 0.50169) (-7.75519e-17 -0.478962 0.87594) (-2.32814e-17 -0.716671 1.35099) (5.38202e-17 -0.817371 1.80107) (1.45473e-16 -0.483639 1.89081) (1.80197e-16 -0.383846 2.42717) (2.09554e-16 -0.29476 3.81851) (1.84484e-16 -0.436643 2.78048) (1.1174e-16 -1.12821 2.12488) (-8.63545e-18 -1.78396 1.80461) (-8.33296e-17 -2.99562 1.51788) (-1.04671e-16 -4.49126 1.35137) (-8.89172e-17 -5.81236 1.3889) (-6.64928e-17 -6.73506 1.53334) (-5.21693e-17 -7.30507 1.65574) (-4.47078e-17 -7.59064 1.71708) (-3.94861e-17 -7.61775 1.7364) (-3.48693e-17 -7.41673 1.73805) (-3.11239e-17 -7.04598 1.72785) (-2.8312e-17 -6.57476 1.69332) (-2.62822e-17 -6.04089 1.62475) (-2.49475e-17 -5.45481 1.54659) (-2.41925e-17 -4.83427 1.48578) (-2.38273e-17 -4.23207 1.42945) (-2.36638e-17 -3.67643 1.35411) (-2.35875e-17 -3.16375 1.26742) (-2.35596e-17 -2.70529 1.20191) (-2.35775e-17 -2.26197 1.15436) (-2.36429e-17 -1.82673 1.09945) (-2.37278e-17 -1.35836 0.980776) (-2.37454e-17 -0.792594 0.717879) (-2.33134e-17 0.026493 -0.0497261) (-2.21591e-17 0.677002 -0.799229) (-2.11745e-17 1.05762 -0.75017) (-2.07665e-17 0.869884 -0.470848) (-2.1015e-17 -0.0992273 0.232734) (-2.05782e-17 -1.22236 0.3951) (-2.01555e-17 -2.10214 0.618473) (-1.98733e-17 -2.82598 0.837666) (-1.97704e-17 -3.35771 1.02948) (-1.98871e-17 -3.70305 1.18056) (-2.01644e-17 -3.85914 1.28789) (-2.05388e-17 -3.86127 1.35478) (-2.09767e-17 -3.73455 1.38299) (-2.14505e-17 -3.51347 1.37998) (-2.19475e-17 -3.2253 1.35579) (-2.2461e-17 -2.88968 1.3217) (-2.29794e-17 -2.52436 1.28831) (-2.34862e-17 -2.14519 1.25973) (-2.3962e-17 -1.7744 1.23405) (-2.43877e-17 -1.41499 1.1998) (-2.4744e-17 -1.01958 1.1385) (-2.49934e-17 -0.556122 1.04868) (-2.50225e-17 -0.266463 1.05349) (-2.56034e-17 -0.365854 1.06531) (-2.70145e-17 -0.685939 0.985229) (-2.88057e-17 0.0536652 -0.179818) (-3.13938e-17 0.8018 -0.983118) (-3.34225e-17 1.44992 -1.31325) (-3.45432e-17 1.70117 -1.0086) (-3.63137e-17 1.61178 -0.763138) (-3.76039e-17 0.434597 0.554344) (-4.28725e-17 -1.69281 1.1197) (-3.12155e-15 -2.29667 -0.995501) (-3.11892e-15 -2.04583 -0.622909) (-3.10095e-15 -1.44022 -0.344626) (-3.04445e-15 -0.843047 -0.818794) (-2.96727e-15 -0.657328 -1.93321) (-2.87666e-15 -0.0639157 -2.12549) (-2.91899e-15 0.621421 -1.72007) (-2.9393e-15 0.409563 -1.19692) (-3.33166e-15 -0.463416 -0.759076) (-3.43331e-15 -0.720354 -0.2362) (-3.45314e-15 -0.668133 -0.12679) (-3.41776e-15 -0.72317 -0.18215) (-3.38715e-15 -0.760202 -0.261952) (-3.42412e-15 -0.113878 -0.93268) (-3.33772e-15 0.311329 -0.73517) (-3.20103e-15 0.317487 -0.875634) (-2.90344e-15 0.217748 -1.49687) (-2.0387e-15 0.30346 -1.79028) (-9.01047e-16 0.224933 -0.979533) (-1.06317e-15 2.41076 -0.552261) (-1.14118e-15 0.783321 0.445285) (-1.29758e-15 -0.217171 1.93879) (-9.70431e-16 0.739923 3.3688) (-3.73391e-16 1.42231 2.11622) (4.53623e-16 2.04955 -0.254008) (7.35615e-16 2.50003 -1.9603) (6.79283e-16 2.7462 -2.59219) (5.02244e-16 2.66553 -2.57714) (3.16319e-16 2.32534 -2.41215) (1.63117e-16 1.99261 -2.26922) (6.55338e-17 1.8719 -1.82786) (4.15345e-17 1.7477 -0.926399) (5.2773e-17 1.77292 -0.0993552) (4.28166e-17 2.01024 0.255511) (7.62009e-18 2.08486 0.294423) (-2.97305e-17 1.90921 0.268377) (-5.97274e-17 1.45486 0.259769) (-7.6067e-17 0.940945 0.374846) (-8.48557e-17 0.256295 0.746213) (-4.47139e-17 -0.390133 1.25238) (3.63548e-17 -0.767897 1.82722) (1.25063e-16 -0.734261 2.18634) (1.83143e-16 -0.482735 1.98506) (1.99449e-16 -0.0468715 1.767) (2.27906e-16 0.404555 2.333) (2.42122e-16 -0.710859 2.00268) (1.18755e-16 -0.949309 2.02788) (-1.45097e-17 -1.46937 1.80524) (-1.05582e-16 -2.64828 1.49828) (-1.18902e-16 -4.21878 1.35945) (-9.32926e-17 -5.55242 1.42408) (-6.91918e-17 -6.50903 1.5589) (-5.58161e-17 -7.15473 1.66827) (-4.79014e-17 -7.51248 1.7245) (-4.12778e-17 -7.59976 1.74526) (-3.57942e-17 -7.45581 1.75186) (-3.16183e-17 -7.1392 1.74773) (-2.84969e-17 -6.71622 1.71735) (-2.6292e-17 -6.22878 1.65688) (-2.4918e-17 -5.67943 1.58897) (-2.41787e-17 -5.08501 1.52878) (-2.38207e-17 -4.49128 1.46786) (-2.36474e-17 -3.93186 1.40248) (-2.35595e-17 -3.39382 1.33722) (-2.35211e-17 -2.8841 1.27826) (-2.3521e-17 -2.4137 1.21597) (-2.35544e-17 -1.95226 1.12241) (-2.36096e-17 -1.44992 0.968261) (-2.36804e-17 -0.870412 0.757328) (-2.35695e-17 -0.0753948 0.42958) (-2.27097e-17 0.683135 -0.095101) (-2.19724e-17 1.17642 -0.18239) (-2.13933e-17 1.13678 -0.101082) (-2.14602e-17 0.430568 0.176142) (-2.10259e-17 -0.738961 0.373432) (-2.04916e-17 -1.75518 0.567189) (-1.99795e-17 -2.58726 0.7732) (-1.97268e-17 -3.24375 0.956673) (-1.97558e-17 -3.6774 1.10491) (-1.9983e-17 -3.90831 1.21608) (-2.03422e-17 -3.95247 1.28665) (-2.07648e-17 -3.85891 1.32271) (-2.12182e-17 -3.66346 1.33129) (-2.16952e-17 -3.39378 1.3226) (-2.21927e-17 -3.0722 1.3061) (-2.271e-17 -2.72231 1.28909) (-2.32386e-17 -2.36272 1.27436) (-2.37588e-17 -2.00421 1.25985) (-2.42444e-17 -1.64137 1.23944) (-2.46599e-17 -1.25359 1.20963) (-2.49596e-17 -0.848021 1.17647) (-2.511e-17 -0.486575 1.16189) (-2.50713e-17 -0.335964 1.25384) (-2.49432e-17 -0.198495 1.39189) (-2.51941e-17 0.125293 1.39455) (-2.69176e-17 0.656432 0.677323) (-2.86997e-17 1.25598 0.0900154) (-2.99605e-17 1.96771 -0.22249) (-3.13633e-17 2.29967 -0.0988444) (-3.18414e-17 1.56076 0.119961) (-3.11517e-15 -2.28616 -1.23278) (-3.1238e-15 -2.19801 -0.954986) (-3.11111e-15 -1.8628 -0.539699) (-3.09178e-15 -1.46943 -0.341725) (-3.05087e-15 -0.98773 -0.670129) (-3.00781e-15 -0.410293 -1.20846) (-2.96224e-15 0.525374 -1.62444) (-2.93086e-15 0.915706 -1.47895) (-3.06409e-15 0.858745 -1.25461) (-3.2632e-15 0.399079 -0.908) (-3.44631e-15 -0.554482 -0.434753) (-3.35978e-15 0.111996 -0.907436) (-3.32065e-15 -1.19994 -0.383164) (-3.33259e-15 -1.09889 0.0682977) (-3.34259e-15 -0.0556873 -0.421022) (-3.2906e-15 0.578342 -0.509872) (-3.10503e-15 0.536619 -1.11907) (-2.44751e-15 0.330228 -1.80068) (-1.41453e-15 -0.0685492 -1.26855) (-1.03584e-15 1.64871 -0.936209) (-1.10396e-15 0.389258 0.326121) (-1.20843e-15 -0.426051 1.42788) (-1.03397e-15 0.0744702 3.10425) (-8.91119e-16 1.1351 3.36912) (1.53544e-16 1.87614 1.10373) (7.26156e-16 2.16977 -1.19177) (8.17999e-16 2.40478 -2.31468) (6.8875e-16 2.46564 -2.58654) (4.94882e-16 2.30356 -2.49205) (3.1273e-16 2.08072 -2.36219) (1.78145e-16 1.99311 -2.11245) (1.12839e-16 1.89625 -1.44395) (9.83793e-17 1.85 -0.544264) (8.58234e-17 1.81221 0.170552) (4.85844e-17 1.92757 0.466488) (1.94006e-18 2.02668 0.516763) (-3.83734e-17 1.81159 0.542098) (-6.88206e-17 1.41109 0.560087) (-7.85618e-17 0.959107 0.665076) (-6.18707e-17 0.349398 1.00374) (5.31802e-18 -0.385574 1.62969) (1.0718e-16 -0.683594 2.17279) (1.8096e-16 -0.339976 2.36091) (2.05541e-16 0.159425 1.64408) (2.126e-16 0.446134 1.392) (2.82722e-16 -0.569516 1.41335) (2.49285e-16 -0.84883 1.82666) (1.35844e-16 -0.888395 1.94567) (-3.39672e-17 -1.15893 1.74479) (-1.33143e-16 -2.35666 1.4666) (-1.30546e-16 -3.88287 1.37635) (-9.8345e-17 -5.20263 1.45147) (-7.44216e-17 -6.25305 1.58671) (-6.12439e-17 -6.99097 1.68973) (-5.13521e-17 -7.42053 1.74343) (-4.31482e-17 -7.57492 1.76189) (-3.69034e-17 -7.49371 1.76555) (-3.22033e-17 -7.23685 1.75909) (-2.87099e-17 -6.86255 1.72941) (-2.63372e-17 -6.40062 1.67522) (-2.49286e-17 -5.87492 1.61323) (-2.41858e-17 -5.31517 1.55268) (-2.38116e-17 -4.74425 1.49329) (-2.362e-17 -4.17045 1.43563) (-2.35259e-17 -3.61732 1.38792) (-2.34929e-17 -3.09169 1.34302) (-2.35005e-17 -2.58054 1.27823) (-2.35321e-17 -2.07664 1.16633) (-2.35735e-17 -1.57121 0.990312) (-2.36191e-17 -1.02574 0.763359) (-2.3622e-17 -0.173264 0.517177) (-2.31443e-17 0.480547 0.197566) (-2.27066e-17 1.05502 0.141418) (-2.23237e-17 1.22514 0.15837) (-2.19229e-17 0.741228 0.196893) (-2.17787e-17 -0.259239 0.331909) (-2.09676e-17 -1.2865 0.501265) (-2.01951e-17 -2.24471 0.694783) (-1.97459e-17 -3.0362 0.877462) (-1.96311e-17 -3.59937 1.03455) (-1.98137e-17 -3.90207 1.14691) (-2.01508e-17 -4.00724 1.2208) (-2.05485e-17 -3.96445 1.26014) (-2.09753e-17 -3.80812 1.2762) (-2.14211e-17 -3.56727 1.2795) (-2.18922e-17 -3.26711 1.27767) (-2.23967e-17 -2.9298 1.27463) (-2.29303e-17 -2.57638 1.2726) (-2.34798e-17 -2.21591 1.26938) (-2.40236e-17 -1.84833 1.26377) (-2.45295e-17 -1.47725 1.25611) (-2.49664e-17 -1.11365 1.24777) (-2.53101e-17 -0.782941 1.24175) (-2.5528e-17 -0.451218 1.23985) (-2.56023e-17 -0.101861 1.2784) (-2.55544e-17 0.179899 1.37179) (-2.57664e-17 0.456255 1.41525) (-2.6484e-17 0.821658 1.16151) (-2.717e-17 1.50284 0.775684) (-2.72498e-17 1.99941 0.574009) (-3.11068e-15 -2.17882 -1.38599) (-3.13932e-15 -2.17067 -1.2574) (-3.12282e-15 -2.07177 -0.86018) (-3.10444e-15 -1.77579 -0.569023) (-3.06616e-15 -1.37452 -0.54878) (-3.02476e-15 -0.913387 -0.574345) (-3.00124e-15 -0.210036 -0.480821) (-2.96667e-15 0.726793 -0.314177) (-2.981e-15 0.872817 -0.302954) (-3.06043e-15 1.05901 -0.744582) (-3.21984e-15 0.272482 -0.858999) (-3.39872e-15 -0.0693051 -0.924404) (-3.26222e-15 -1.15852 -1.31212) (-3.24715e-15 -1.65236 -0.0836625) (-3.28973e-15 -0.696548 0.180266) (-3.24819e-15 0.240129 -0.177437) (-3.13568e-15 0.681061 -0.817354) (-2.65531e-15 0.386576 -1.65158) (-1.83552e-15 0.110599 -1.66579) (-1.24869e-15 0.263384 -1.18768) (-1.13879e-15 0.37127 -0.392718) (-1.14776e-15 -0.516026 0.384628) (-9.06209e-16 -0.639739 2.43852) (-5.39078e-16 0.556549 4.08823) (-1.30219e-16 1.57844 2.13313) (5.66737e-16 1.93856 -0.315363) (8.70518e-16 2.16248 -1.80053) (8.65145e-16 2.27521 -2.45072) (7.0258e-16 2.20295 -2.55098) (5.01439e-16 2.041 -2.45611) (3.32148e-16 1.98769 -2.27786) (2.25317e-16 2.06667 -1.85646) (1.75771e-16 2.01583 -1.07267) (1.47654e-16 1.82307 -0.185233) (1.08893e-16 1.82464 0.414306) (5.86253e-17 1.91171 0.685116) (1.04904e-17 1.87777 0.812337) (-2.87865e-17 1.66911 0.864789) (-5.37948e-17 1.26423 0.908994) (-4.76701e-17 0.891206 1.03725) (-6.99649e-18 0.206492 1.43542) (8.02618e-17 -0.393934 1.939) (1.69028e-16 -0.241091 2.29368) (2.1303e-16 0.810187 2.36579) (2.22753e-16 0.961239 1.6784) (2.91301e-16 -0.151926 0.798673) (2.95328e-16 -0.683367 1.49731) (2.65537e-16 -1.02737 1.79231) (1.32484e-16 -0.874772 1.81892) (-7.28834e-17 -0.924512 1.63196) (-1.56361e-16 -2.01299 1.42214) (-1.42172e-16 -3.4083 1.35885) (-1.06336e-16 -4.78087 1.46696) (-8.33861e-17 -5.93532 1.60625) (-6.77577e-17 -6.78165 1.71268) (-5.50291e-17 -7.30815 1.76812) (-4.53801e-17 -7.54319 1.78524) (-3.82594e-17 -7.53374 1.78475) (-3.28771e-17 -7.33647 1.77056) (-2.89696e-17 -7.0019 1.73639) (-2.64321e-17 -6.57418 1.68737) (-2.49756e-17 -6.08339 1.63142) (-2.41993e-17 -5.54589 1.57197) (-2.37904e-17 -4.97553 1.51148) (-2.3578e-17 -4.3953 1.45805) (-2.34818e-17 -3.81878 1.41667) (-2.34596e-17 -3.26397 1.37823) (-2.34801e-17 -2.74677 1.3164) (-2.35193e-17 -2.25243 1.20223) (-2.3563e-17 -1.75673 1.01777) (-2.36036e-17 -1.24621 0.774861) (-2.36318e-17 -0.619686 0.537483) (-2.35049e-17 0.0675936 0.357115) (-2.32822e-17 0.824387 0.29913) (-2.29519e-17 1.19962 0.22881) (-2.25154e-17 0.829957 0.262295) (-2.2532e-17 0.144726 0.34498) (-2.1677e-17 -0.740799 0.443483) (-2.06063e-17 -1.73104 0.583854) (-1.97945e-17 -2.71327 0.780557) (-1.95447e-17 -3.39114 0.942358) (-1.96705e-17 -3.79969 1.06775) (-1.99707e-17 -4.00031 1.14626) (-2.03415e-17 -4.03003 1.19068) (-2.07353e-17 -3.93244 1.215) (-2.11436e-17 -3.73462 1.22786) (-2.15853e-17 -3.46609 1.23659) (-2.20674e-17 -3.15028 1.24593) (-2.25883e-17 -2.80778 1.25736) (-2.31423e-17 -2.44811 1.2696) (-2.3713e-17 -2.07585 1.28327) (-2.42712e-17 -1.6994 1.29848) (-2.47886e-17 -1.33462 1.31303) (-2.52449e-17 -0.989927 1.3262) (-2.56126e-17 -0.650767 1.34134) (-2.58563e-17 -0.297906 1.37228) (-2.59788e-17 0.0576843 1.427) (-2.60328e-17 0.424286 1.49683) (-2.63919e-17 0.536473 1.50633) (-2.60866e-17 1.50017 1.21821) (-3.0867e-15 -2.10571 -1.42596) (-3.14935e-15 -2.08246 -1.47251) (-3.14324e-15 -1.97587 -1.16963) (-3.1348e-15 -1.64613 -0.950035) (-3.10811e-15 -1.45537 -0.86166) (-3.06247e-15 -1.31516 -0.721824) (-3.0185e-15 -0.680263 -0.351346) (-3.00387e-15 0.459461 0.182769) (-2.98947e-15 1.80262 0.502208) (-3.00935e-15 0.972603 0.433068) (-3.07872e-15 0.801173 -0.695316) (-3.24578e-15 0.99233 -1.02622) (-3.32587e-15 -0.33971 -1.29981) (-3.10015e-15 -1.21771 -0.719928) (-3.0377e-15 -1.21157 0.00931037) (-2.97582e-15 -0.679754 0.140725) (-2.89646e-15 0.135815 -0.0248855) (-2.79155e-15 0.558042 -1.03376) (-2.26329e-15 0.385251 -1.70482) (-1.71754e-15 -0.117377 -1.65503) (-1.26241e-15 -0.0455374 -1.37572) (-1.24552e-15 -0.574168 -0.931937) (-9.63825e-16 -1.23267 1.36732) (-4.85472e-16 0.127272 4.13137) (-4.91551e-16 1.18347 2.54795) (2.06618e-16 1.86316 0.653179) (7.17935e-16 2.01989 -1.04958) (9.24039e-16 2.08274 -2.06225) (8.83969e-16 2.07223 -2.45736) (7.18896e-16 2.00128 -2.52007) (5.39838e-16 2.00339 -2.43554) (3.97657e-16 2.06497 -2.17096) (3.0424e-16 2.08555 -1.59777) (2.42363e-16 2.03279 -0.782285) (1.86537e-16 1.92218 0.0156743) (1.28815e-16 1.82667 0.592555) (7.40929e-17 1.8401 0.927755) (2.78911e-17 1.77556 1.11755) (-5.92853e-18 1.52451 1.2001) (-1.76758e-17 1.24936 1.25124) (1.36266e-17 0.679647 1.49014) (7.43677e-17 0.0312919 1.75556) (1.59663e-16 -0.124511 2.07992) (2.11839e-16 0.409846 2.59194) (2.20937e-16 0.90045 1.90415) (2.6321e-16 -0.140763 0.643703) (2.67785e-16 -0.176506 1.59338) (2.96426e-16 -0.854461 1.7415) (2.65931e-16 -1.14219 1.65092) (8.38702e-17 -0.549134 1.59424) (-1.05173e-16 -0.744367 1.5218) (-1.78176e-16 -1.58169 1.31207) (-1.54967e-16 -2.83787 1.3071) (-1.20705e-16 -4.26458 1.45141) (-9.5469e-17 -5.54291 1.61347) (-7.50276e-17 -6.5125 1.72955) (-5.94103e-17 -7.15054 1.78782) (-4.81939e-17 -7.48336 1.8073) (-3.99007e-17 -7.55566 1.80482) (-3.36765e-17 -7.42708 1.78399) (-2.93164e-17 -7.15352 1.74697) (-2.65974e-17 -6.77047 1.69974) (-2.5052e-17 -6.302 1.64655) (-2.4207e-17 -5.77227 1.58894) (-2.37515e-17 -5.20262 1.52872) (-2.35215e-17 -4.61376 1.47608) (-2.34319e-17 -4.0241 1.43935) (-2.34256e-17 -3.45793 1.4055) (-2.34599e-17 -2.94261 1.34546) (-2.35091e-17 -2.47132 1.23523) (-2.35603e-17 -1.99608 1.05638) (-2.36032e-17 -1.48916 0.819348) (-2.3643e-17 -1.001 0.604674) (-2.3698e-17 -0.422307 0.493174) (-2.35466e-17 0.311287 0.427398) (-2.33737e-17 0.915277 0.32991) (-2.3167e-17 0.826492 0.327122) (-2.32625e-17 0.344275 0.463356) (-2.27401e-17 -0.145217 0.420095) (-2.10791e-17 -1.13702 0.462857) (-1.99416e-17 -2.22659 0.625692) (-1.95316e-17 -3.04333 0.829543) (-1.95566e-17 -3.6016 0.968638) (-1.98091e-17 -3.91535 1.05638) (-2.01441e-17 -4.04857 1.11315) (-2.04957e-17 -4.02838 1.14732) (-2.08703e-17 -3.89311 1.16953) (-2.12812e-17 -3.67147 1.18712) (-2.17351e-17 -3.38903 1.20674) (-2.22345e-17 -3.0655 1.22929) (-2.27819e-17 -2.71452 1.25496) (-2.33666e-17 -2.34847 1.28593) (-2.39693e-17 -1.9784 1.32191) (-2.45636e-17 -1.61103 1.3574) (-2.51164e-17 -1.25424 1.38934) (-2.5589e-17 -0.922229 1.41946) (-2.59348e-17 -0.620132 1.45187) (-2.61458e-17 -0.362759 1.49247) (-2.62176e-17 -0.100405 1.56507) (-2.62472e-17 0.426559 1.6158) (-3.02744e-15 -2.06251 -1.40859) (-3.13157e-15 -2.07229 -1.60311) (-3.14863e-15 -1.96643 -1.33624) (-3.15116e-15 -1.60139 -1.11625) (-3.14043e-15 -1.29338 -1.1426) (-3.1034e-15 -1.23891 -1.11901) (-3.05434e-15 -1.08252 -0.680016) (-3.02633e-15 -0.395213 0.0305638) (-3.03362e-15 0.661886 0.231822) (-3.03852e-15 1.71768 -0.43896) (-3.04993e-15 0.562996 -0.421319) (-3.14142e-15 1.34549 -0.900522) (-3.25493e-15 1.00959 -1.28636) (-3.31609e-15 -0.318877 -1.66225) (-2.93727e-15 -1.53259 -1.34701) (-2.78084e-15 -1.27136 -0.351799) (-2.68355e-15 -1.21345 0.237444) (-2.64297e-15 0.147253 0.488807) (-2.48265e-15 0.462748 -0.905103) (-2.11981e-15 0.193522 -1.6812) (-1.69093e-15 -0.0516903 -1.87) (-1.50698e-15 -0.141969 -1.89736) (-1.09273e-15 -0.636943 0.175303) (-4.43094e-16 0.211486 3.69978) (-3.30751e-16 0.88582 3.41137) (-2.51209e-17 1.63427 1.16667) (4.57491e-16 1.73373 -0.351471) (8.16556e-16 1.84025 -1.50605) (9.44395e-16 1.96021 -2.16762) (8.87977e-16 1.935 -2.41086) (7.53805e-16 1.83298 -2.43383) (6.12175e-16 1.88004 -2.32118) (4.92908e-16 2.08595 -2.01161) (3.98659e-16 2.21498 -1.44009) (3.15776e-16 2.1192 -0.699832) (2.3687e-16 1.93108 0.0201224) (1.65562e-16 1.85609 0.614702) (1.05532e-16 1.86514 1.05321) (5.88899e-17 1.76485 1.33034) (3.1848e-17 1.47738 1.46855) (4.29098e-17 1.13036 1.52596) (9.33056e-17 0.458174 1.65721) (1.65844e-16 0.0612015 1.85655) (2.16442e-16 0.168753 2.37186) (2.244e-16 0.877778 2.1484) (2.4293e-16 0.223959 1.39716) (2.41172e-16 0.073626 2.08616) (2.67908e-16 -0.199786 2.22256) (3.09276e-16 -0.922344 1.63087) (1.98537e-16 -0.573583 1.44707) (2.72218e-17 -0.567246 1.55333) (-1.31693e-16 -0.672672 1.38989) (-1.90779e-16 -1.13443 1.19488) (-1.74685e-16 -2.25625 1.23282) (-1.42032e-16 -3.6947 1.41654) (-1.09836e-16 -5.06528 1.60678) (-8.37424e-17 -6.1587 1.73132) (-6.50208e-17 -6.92603 1.79524) (-5.17476e-17 -7.37656 1.82157) (-4.19082e-17 -7.55305 1.82195) (-3.46761e-17 -7.51136 1.79883) (-2.98109e-17 -7.30435 1.75891) (-2.68485e-17 -6.96849 1.71191) (-2.51509e-17 -6.52734 1.6624) (-2.42031e-17 -6.00738 1.60697) (-2.36931e-17 -5.44146 1.54712) (-2.34534e-17 -4.85064 1.49516) (-2.3378e-17 -4.25673 1.46017) (-2.33883e-17 -3.69183 1.42813) (-2.34354e-17 -3.17244 1.37029) (-2.34968e-17 -2.68276 1.26241) (-2.35616e-17 -2.2 1.09303) (-2.36199e-17 -1.72859 0.878834) (-2.36659e-17 -1.25869 0.679761) (-2.37204e-17 -0.76346 0.585408) (-2.37083e-17 -0.350357 0.611357) (-2.36123e-17 0.143421 0.568239) (-2.36354e-17 0.581467 0.543281) (-2.37419e-17 0.581211 0.672313) (-2.35889e-17 0.489199 0.478394) (-2.17163e-17 -0.517106 0.305982) (-2.02848e-17 -1.61018 0.461436) (-1.96044e-17 -2.59393 0.686556) (-1.95071e-17 -3.28355 0.841579) (-1.96779e-17 -3.75172 0.954125) (-1.99522e-17 -4.00953 1.02583) (-2.02644e-17 -4.0931 1.07427) (-2.06037e-17 -4.04047 1.10586) (-2.09829e-17 -3.88237 1.1323) (-2.14021e-17 -3.64687 1.161) (-2.18723e-17 -3.35449 1.19337) (-2.2396e-17 -3.02577 1.23119) (-2.29692e-17 -2.67461 1.27719) (-2.35836e-17 -2.31087 1.32998) (-2.42209e-17 -1.94466 1.38508) (-2.48481e-17 -1.58711 1.43735) (-2.54214e-17 -1.26018 1.48486) (-2.5892e-17 -0.995371 1.52304) (-2.62009e-17 -0.77072 1.55561) (-2.63132e-17 -0.639962 1.52164) (-2.94598e-15 -1.93482 -1.36783) (-3.08278e-15 -2.12727 -1.70353) (-3.13189e-15 -2.11339 -1.4878) (-3.14911e-15 -1.81838 -1.119) (-3.15154e-15 -1.4339 -1.11655) (-3.13141e-15 -1.31182 -1.32392) (-3.08732e-15 -1.21636 -1.16533) (-3.05538e-15 -0.767817 -0.508776) (-3.05884e-15 -0.193838 0.133785) (-3.07387e-15 0.577927 0.073383) (-3.0772e-15 0.35234 -0.0469999) (-3.09226e-15 0.959743 -0.580699) (-3.16599e-15 1.42363 -0.937815) (-3.22465e-15 1.13349 -1.43321) (-3.15731e-15 0.353854 -2.11029) (-3.05103e-15 -0.865569 -2.11684) (-2.64737e-15 -1.56653 -0.77713) (-2.45688e-15 -0.915915 0.545472) (-2.52248e-15 0.33752 -0.19037) (-2.29692e-15 0.336415 -1.39053) (-1.99819e-15 0.336379 -1.88218) (-1.81654e-15 1.02703 -2.5189) (-1.0442e-15 0.103121 -0.0774204) (-3.18071e-16 -0.476041 3.14439) (-1.39201e-16 -1.00358 4.11152) (-1.7668e-16 0.940624 1.86259) (2.33026e-16 1.15142 0.329856) (6.24075e-16 1.51015 -0.968871) (8.72468e-16 1.68752 -1.7487) (9.4565e-16 1.66899 -2.1154) (9.01163e-16 1.65052 -2.24076) (8.05155e-16 1.76951 -2.24691) (6.9401e-16 1.96416 -2.11718) (5.87648e-16 2.15546 -1.7992) (4.88596e-16 2.15816 -1.28575) (3.92329e-16 2.00946 -0.684619) (3.03154e-16 1.89336 -0.0743604) (2.24159e-16 1.8981 0.513295) (1.57721e-16 1.90268 1.02948) (1.10854e-16 1.74926 1.38626) (9.21722e-17 1.45648 1.55387) (1.11423e-16 0.96615 1.55689) (1.67133e-16 0.353478 1.55968) (2.20741e-16 0.147518 2.01194) (2.46077e-16 0.61171 3.76556) (2.47526e-16 0.627197 3.14356) (2.43751e-16 0.776289 3.65346) (2.73191e-16 0.57226 2.81732) (3.17361e-16 -0.513283 1.76109) (2.46692e-16 -0.536042 1.52217) (1.19348e-16 -0.57697 1.5927) (-1.44892e-17 -0.677102 1.57244) (-1.25932e-16 -0.682943 1.36646) (-1.98694e-16 -0.875481 1.14186) (-2.05254e-16 -1.71136 1.16819) (-1.68979e-16 -3.07863 1.38527) (-1.27341e-16 -4.50359 1.59206) (-9.50043e-17 -5.71557 1.71954) (-7.23377e-17 -6.62217 1.78956) (-5.62707e-17 -7.20937 1.8245) (-4.44211e-17 -7.50769 1.83009) (-3.59967e-17 -7.5722 1.80916) (-3.05091e-17 -7.45026 1.77104) (-2.71911e-17 -7.16845 1.72771) (-2.52682e-17 -6.75518 1.68206) (-2.41844e-17 -6.25347 1.62854) (-2.36211e-17 -5.70412 1.5701) (-2.3383e-17 -5.12852 1.52074) (-2.33235e-17 -4.54523 1.48677) (-2.33464e-17 -3.98026 1.45426) (-2.34053e-17 -3.44849 1.39893) (-2.3478e-17 -2.94461 1.29897) (-2.35526e-17 -2.46052 1.1416) (-2.36226e-17 -1.97803 0.933016) (-2.36797e-17 -1.46863 0.723151) (-2.37277e-17 -0.932977 0.591696) (-2.37826e-17 -0.454312 0.564242) (-2.38474e-17 -0.497632 0.721469) (-2.40451e-17 -0.129411 0.886115) (-2.42523e-17 0.789477 0.684012) (-2.44182e-17 0.989829 0.692441) (-2.24412e-17 0.222654 0.195219) (-2.07105e-17 -0.945247 0.331719) (-1.98264e-17 -2.00615 0.517355) (-1.95363e-17 -2.87418 0.710406) (-1.95774e-17 -3.50625 0.840029) (-1.97819e-17 -3.90569 0.934247) (-2.00428e-17 -4.1156 0.996561) (-2.03496e-17 -4.16276 1.03772) (-2.06907e-17 -4.08592 1.07167) (-2.10771e-17 -3.90898 1.10596) (-2.15156e-17 -3.65978 1.14443) (-2.20057e-17 -3.36232 1.19173) (-2.2545e-17 -3.03038 1.24968) (-2.31338e-17 -2.67192 1.31597) (-2.37684e-17 -2.29911 1.38557) (-2.44352e-17 -1.93159 1.45421) (-2.51078e-17 -1.58162 1.51474) (-2.57379e-17 -1.24441 1.56912) (-2.62052e-17 -0.984081 1.58031) (-2.85702e-15 -1.87528 -1.246) (-3.01459e-15 -2.13132 -1.74614) (-3.09446e-15 -2.19391 -1.73252) (-3.13244e-15 -2.05174 -1.26178) (-3.14311e-15 -1.76994 -1.01237) (-3.1407e-15 -1.55859 -1.27072) (-3.10933e-15 -1.35294 -1.47976) (-3.0746e-15 -1.08328 -1.16873) (-3.0716e-15 -0.855898 -0.432933) (-3.08827e-15 -0.683308 0.0762962) (-3.09713e-15 -0.261893 0.203013) (-3.08782e-15 0.642511 -0.333088) (-3.12905e-15 1.23555 -0.52628) (-3.15832e-15 1.377 -0.538608) (-3.13421e-15 1.11303 -1.30781) (-3.11507e-15 0.232984 -2.28602) (-2.8314e-15 0.04817 -2.78085) (-2.29245e-15 -0.702288 -0.37655) (-2.28774e-15 -0.580191 -0.0542969) (-2.22722e-15 0.0288509 -1.25746) (-1.95607e-15 0.287925 -1.63077) (-1.55288e-15 2.65139 -2.02453) (-3.68201e-16 0.271539 2.16719) (-4.33786e-17 -0.304918 3.50314) (-5.01559e-17 -0.596404 3.26715) (-9.45984e-17 0.57219 2.65133) (1.61113e-16 0.750405 0.694073) (4.54951e-16 1.11851 -0.50473) (7.21227e-16 1.3038 -1.3354) (8.85487e-16 1.46115 -1.81142) (9.38771e-16 1.54775 -1.99329) (9.1661e-16 1.63129 -2.00725) (8.47438e-16 1.78484 -1.92706) (7.56418e-16 1.97452 -1.75408) (6.59109e-16 2.04824 -1.45941) (5.57468e-16 1.95693 -1.07304) (4.60766e-16 1.81746 -0.638883) (3.72623e-16 1.76662 -0.143296) (2.90706e-16 1.84661 0.411291) (2.23422e-16 1.88145 0.928236) (1.82456e-16 1.68043 1.28067) (1.70062e-16 1.29789 1.43834) (1.85126e-16 0.810447 1.41685) (2.20801e-16 0.522116 1.3428) (2.59149e-16 0.856686 2.7133) (2.53368e-16 1.37428 5.06233) (2.68397e-16 0.804471 4.20455) (3.11022e-16 0.724685 2.52248) (3.28772e-16 -0.406769 2.03112) (3.00205e-16 -0.598529 1.72419) (2.06628e-16 -0.579233 1.738) (8.82041e-17 -0.724865 1.78838) (-5.67841e-18 -0.882211 1.73795) (-1.05935e-16 -0.865944 1.47766) (-2.1601e-16 -0.778912 1.17751) (-2.44851e-16 -1.26968 1.1752) (-2.01512e-16 -2.44849 1.38783) (-1.49994e-16 -3.85904 1.58169) (-1.10006e-16 -5.17066 1.70168) (-8.20318e-17 -6.22409 1.7726) (-6.21029e-17 -6.96389 1.8126) (-4.76949e-17 -7.40686 1.82476) (-3.77909e-17 -7.59889 1.80995) (-3.14592e-17 -7.57157 1.77827) (-2.7636e-17 -7.34986 1.74187) (-2.53971e-17 -6.97963 1.70139) (-2.41521e-17 -6.51706 1.65178) (-2.35483e-17 -5.99733 1.59689) (-2.33191e-17 -5.4406 1.54926) (-2.32704e-17 -4.86859 1.514) (-2.33044e-17 -4.30448 1.48103) (-2.33763e-17 -3.76337 1.43227) (-2.34608e-17 -3.25111 1.34894) (-2.35437e-17 -2.76145 1.21543) (-2.36159e-17 -2.27476 1.02891) (-2.36753e-17 -1.76648 0.813024) (-2.37278e-17 -1.24284 0.61311) (-2.37755e-17 -0.794698 0.470604) (-2.38145e-17 -0.486769 0.416825) (-2.38381e-17 -0.475476 0.50314) (-2.43491e-17 0.791412 0.515084) (-2.41582e-17 0.986523 0.447138) (-2.3154e-17 0.646495 0.318951) (-2.14283e-17 -0.288283 0.222244) (-2.02931e-17 -1.29791 0.380931) (-1.96602e-17 -2.33511 0.553069) (-1.95392e-17 -3.13382 0.714854) (-1.96427e-17 -3.71419 0.834606) (-1.98455e-17 -4.06246 0.913572) (-2.01007e-17 -4.23276 0.965726) (-2.04023e-17 -4.24795 1.00403) (-2.07555e-17 -4.14446 1.03819) (-2.11639e-17 -3.95441 1.07815) (-2.16209e-17 -3.6986 1.13026) (-2.21222e-17 -3.39271 1.19715) (-2.26706e-17 -3.05089 1.27654) (-2.32742e-17 -2.68787 1.36327) (-2.3937e-17 -2.31908 1.44867) (-2.46397e-17 -1.92729 1.5281) (-2.52452e-17 -1.56713 1.56868) (-2.79784e-15 -1.72846 -1.08091) (-2.94249e-15 -2.02288 -1.66065) (-3.04332e-15 -2.21611 -1.93967) (-3.10549e-15 -2.16172 -1.61562) (-3.12225e-15 -1.93168 -1.11822) (-3.13198e-15 -1.73534 -1.15514) (-3.11888e-15 -1.52125 -1.50438) (-3.08584e-15 -1.1288 -1.78809) (-3.0771e-15 -1.02546 -1.44169) (-3.09402e-15 -1.30143 -0.720307) (-3.11096e-15 -1.26895 -0.0817612) (-3.11402e-15 -0.296223 0.325804) (-3.11644e-15 0.81733 0.114788) (-3.12979e-15 1.13376 -0.0600301) (-3.11218e-15 1.12392 -1.05179) (-3.10533e-15 0.779315 -2.50346) (-2.77157e-15 1.67156 -3.75484) (-1.90781e-15 0.15563 -0.57152) (-1.74254e-15 -0.832796 0.495766) (-1.5594e-15 -0.531345 0.217241) (-1.17586e-15 -0.286866 0.52911) (-5.86301e-16 -0.238383 1.73019) (-2.00473e-16 -0.341873 2.79589) (-2.54755e-17 -0.110296 3.26216) (-6.64481e-17 0.0998741 2.6771) (-3.1859e-18 0.631442 2.33697) (2.33069e-16 0.632163 0.975793) (4.35542e-16 0.644354 -0.28688) (6.32669e-16 0.949495 -1.20917) (7.87856e-16 1.21948 -1.69608) (8.88944e-16 1.35828 -1.8579) (9.34014e-16 1.4693 -1.82622) (9.2576e-16 1.62968 -1.69802) (8.75695e-16 1.82946 -1.52152) (7.99889e-16 1.96243 -1.3089) (7.04641e-16 1.92767 -1.0868) (6.05246e-16 1.72956 -0.845449) (5.15291e-16 1.5519 -0.536105) (4.28874e-16 1.57194 -0.116464) (3.48624e-16 1.73566 0.377558) (2.89742e-16 1.74061 0.821152) (2.57339e-16 1.48658 1.10847) (2.48335e-16 1.15194 1.22893) (2.56005e-16 0.888921 1.21538) (2.67717e-16 0.720711 1.15462) (2.67659e-16 1.05879 2.03515) (2.65199e-16 1.28554 3.25486) (2.62958e-16 1.84687 3.63171) (3.2251e-16 0.668159 2.34812) (3.36796e-16 -0.308179 1.9345) (3.01282e-16 -0.498742 1.79101) (2.0671e-16 -0.644688 1.89439) (1.15977e-16 -0.830556 1.94655) (1.18932e-17 -0.988 1.89641) (-1.0983e-16 -0.996938 1.65593) (-2.42819e-16 -0.819194 1.36321) (-2.85904e-16 -0.947133 1.30303) (-2.41034e-16 -1.82193 1.44958) (-1.7987e-16 -3.139 1.59672) (-1.30398e-16 -4.51834 1.69295) (-9.5033e-17 -5.72061 1.75197) (-6.98576e-17 -6.62933 1.78914) (-5.21209e-17 -7.23614 1.80431) (-4.02281e-17 -7.56611 1.79641) (-3.27363e-17 -7.64273 1.77502) (-2.81957e-17 -7.50026 1.74817) (-2.55357e-17 -7.19248 1.71321) (-2.41187e-17 -6.77685 1.66723) (-2.34864e-17 -6.29198 1.61594) (-2.32579e-17 -5.76029 1.56943) (-2.32157e-17 -5.20326 1.53182) (-2.32637e-17 -4.64254 1.49746) (-2.33501e-17 -4.09315 1.45411) (-2.34482e-17 -3.56162 1.38724) (-2.35417e-17 -3.04105 1.28297) (-2.36215e-17 -2.51406 1.13228) (-2.36831e-17 -1.98371 0.940903) (-2.37291e-17 -1.46992 0.732665) (-2.3766e-17 -0.966042 0.525711) (-2.37822e-17 -0.561851 0.348045) (-2.38138e-17 -0.410988 0.256492) (-2.41607e-17 0.339899 0.397065) (-2.42615e-17 0.916061 0.38778) (-2.41716e-17 0.820675 0.551908) (-2.27336e-17 0.428944 0.286363) (-2.09951e-17 -0.544094 0.236352) (-2.00081e-17 -1.57932 0.367479) (-1.96118e-17 -2.61775 0.5633) (-1.95678e-17 -3.38681 0.72038) (-1.96844e-17 -3.91536 0.826605) (-1.98726e-17 -4.20906 0.889588) (-2.01195e-17 -4.32962 0.927984) (-2.04305e-17 -4.32161 0.958787) (-2.08059e-17 -4.209 0.994859) (-2.12336e-17 -4.01186 1.04608) (-2.17029e-17 -3.74907 1.11742) (-2.22106e-17 -3.43865 1.20829) (-2.27598e-17 -3.09665 1.31172) (-2.33423e-17 -2.693 1.41547) (-2.38543e-17 -2.27033 1.48011) (-2.75292e-15 -1.5234 -0.992596) (-2.87233e-15 -1.98167 -1.39873) (-2.9883e-15 -2.24133 -1.91524) (-3.07534e-15 -2.08438 -2.03989) (-3.1e-15 -1.84505 -1.56125) (-3.11016e-15 -1.83405 -1.21162) (-3.11114e-15 -1.77699 -1.26669) (-3.08392e-15 -1.45002 -1.66186) (-3.06595e-15 -1.18944 -1.99774) (-3.08467e-15 -1.3062 -1.69085) (-3.1113e-15 -1.33068 -1.28702) (-3.1207e-15 -0.758724 -0.949326) (-3.10572e-15 -0.255371 -0.498694) (-3.09421e-15 -0.111528 -0.75532) (-3.07011e-15 0.105048 -1.66262) (-2.98743e-15 0.14707 -2.81399) (-2.53655e-15 0.464048 -3.33117) (-1.92348e-15 0.634788 -1.74855) (-1.66517e-15 0.824494 -1.07226) (-1.38994e-15 0.959122 -0.770771) (-1.0747e-15 0.630586 -0.231379) (-7.25768e-16 0.0722546 0.338296) (-4.0103e-16 -0.596625 1.82079) (-1.57864e-16 -0.474885 1.95744) (-1.32566e-16 -0.168669 1.46472) (-6.59334e-17 0.0051284 1.7016) (1.89366e-16 0.206878 1.33554) (4.21564e-16 0.448054 0.0885266) (5.68565e-16 0.699427 -0.906228) (6.87176e-16 0.931302 -1.4983) (7.95122e-16 1.1034 -1.81796) (8.79855e-16 1.23113 -1.83018) (9.27238e-16 1.45706 -1.65968) (9.32838e-16 1.72975 -1.40817) (9.01038e-16 1.94789 -1.12353) (8.33145e-16 1.99303 -0.895558) (7.41018e-16 1.76986 -0.755753) (6.47792e-16 1.47983 -0.635187) (5.58817e-16 1.36066 -0.405575) (4.68513e-16 1.48752 -0.037122) (3.94147e-16 1.6116 0.387799) (3.45059e-16 1.53462 0.739392) (3.19566e-16 1.26944 0.958394) (3.14889e-16 1.00788 1.06607) (3.2031e-16 0.869064 1.0724) (3.16503e-16 1.05278 1.13257) (3.04256e-16 1.26295 1.66485) (2.93589e-16 1.29741 2.23543) (2.9014e-16 1.0924 2.43383) (3.02411e-16 0.351422 2.3752) (3.41376e-16 -0.198212 1.77144) (3.05536e-16 -0.433804 1.88135) (2.63688e-16 -0.557107 1.8404) (1.48913e-16 -0.753166 1.91167) (1.38683e-17 -0.971262 1.99624) (-1.33304e-16 -1.0234 1.92605) (-2.61195e-16 -0.900553 1.71412) (-3.216e-16 -0.749731 1.56774) (-2.87332e-16 -1.24006 1.59269) (-2.19549e-16 -2.36736 1.66746) (-1.58401e-16 -3.77365 1.71711) (-1.1293e-16 -5.10948 1.74475) (-8.05751e-17 -6.19268 1.76394) (-5.82103e-17 -6.97485 1.77299) (-4.35806e-17 -7.4561 1.77127) (-3.44461e-17 -7.65304 1.76184) (-2.88904e-17 -7.60734 1.74434) (-2.5701e-17 -7.37959 1.71502) (-2.41125e-17 -7.02521 1.67375) (-2.34337e-17 -6.58291 1.62643) (-2.31876e-17 -6.08177 1.58168) (-2.31559e-17 -5.54539 1.54311) (-2.32211e-17 -4.99409 1.50746) (-2.3325e-17 -4.43941 1.4667) (-2.34366e-17 -3.88477 1.41112) (-2.35402e-17 -3.33597 1.33047) (-2.36278e-17 -2.80317 1.21558) (-2.36979e-17 -2.28702 1.05982) (-2.37496e-17 -1.79442 0.866656) (-2.37888e-17 -1.31424 0.636182) (-2.38313e-17 -0.781132 0.367519) (-2.38868e-17 -0.513984 0.244518) (-2.41181e-17 -0.676178 0.55594) (-2.45708e-17 0.460488 0.614852) (-2.43986e-17 0.893962 0.506419) (-2.41321e-17 0.796452 0.570625) (-2.21135e-17 0.194933 0.141154) (-2.06276e-17 -0.819663 0.196007) (-1.9822e-17 -1.94226 0.370465) (-1.9601e-17 -2.91443 0.581767) (-1.95937e-17 -3.59595 0.725937) (-1.97019e-17 -4.03216 0.803921) (-1.98656e-17 -4.29566 0.845564) (-2.01126e-17 -4.41082 0.872473) (-2.04395e-17 -4.39919 0.899945) (-2.08352e-17 -4.2863 0.94343) (-2.12804e-17 -4.0963 1.01272) (-2.1757e-17 -3.8455 1.10982) (-2.22396e-17 -3.4822 1.22066) (-2.26437e-17 -3.08019 1.30277) (-2.66086e-15 -1.34384 -0.972727) (-2.77746e-15 -1.93181 -1.12466) (-2.91383e-15 -2.2425 -1.62133) (-3.03308e-15 -2.06228 -2.13576) (-3.08133e-15 -1.75428 -2.11902) (-3.0908e-15 -1.82511 -1.66236) (-3.09608e-15 -1.9147 -1.35229) (-3.0758e-15 -1.80094 -1.30749) (-3.04792e-15 -1.5546 -1.77309) (-3.06444e-15 -1.51245 -1.98352) (-3.1069e-15 -1.42853 -1.84665) (-3.13774e-15 -0.98883 -1.89345) (-3.12006e-15 -0.614962 -1.90728) (-3.08757e-15 -0.579377 -1.88536) (-3.02832e-15 -0.28954 -2.34239) (-2.8773e-15 -0.107294 -2.9938) (-2.45586e-15 0.394822 -2.98014) (-2.05884e-15 0.247996 -2.10018) (-1.80313e-15 -0.182261 -1.75479) (-1.56605e-15 -1.06726 -1.94388) (-1.23044e-15 -3.78129 -0.788923) (-1.18477e-15 -6.78482 -1.62492) (-6.12618e-16 -1.1638 1.10919) (-2.48515e-16 -0.69523 1.58594) (-1.48994e-16 -0.140383 0.885717) (-8.08143e-17 -1.59587 0.887279) (7.50231e-17 0.0895771 1.0577) (2.54092e-16 0.731473 0.788628) (4.36714e-16 0.786772 -0.0106098) (5.70263e-16 0.828372 -0.921326) (6.67333e-16 0.864731 -1.54171) (7.60136e-16 0.932794 -1.80821) (8.43559e-16 1.23087 -1.7709) (9.0479e-16 1.57492 -1.50739) (9.34608e-16 1.92086 -1.14327) (9.22739e-16 2.10276 -0.775113) (8.6762e-16 1.97557 -0.543882) (7.87089e-16 1.66202 -0.484444) (7.00201e-16 1.4221 -0.450348) (5.98911e-16 1.35476 -0.266133) (4.99743e-16 1.42181 0.0659272) (4.28275e-16 1.43478 0.418182) (3.85869e-16 1.25972 0.694317) (3.70109e-16 1.03068 0.874074) (3.71922e-16 0.877728 0.973511) (3.68491e-16 0.911706 1.03467) (3.5287e-16 1.08034 1.21054) (3.35001e-16 1.17046 1.5261) (3.22895e-16 1.0029 1.79631) (3.29179e-16 0.661547 1.86851) (3.2187e-16 0.185396 1.90542) (3.24604e-16 -0.113636 2.07479) (3.83349e-16 -0.289898 1.90335) (3.13982e-16 -0.390841 1.57186) (1.80547e-16 -0.649389 1.75424) (7.7301e-18 -0.884395 2.0884) (-1.47724e-16 -0.98127 2.23413) (-2.68074e-16 -0.913859 2.11448) (-3.45538e-16 -0.684905 1.92022) (-3.39665e-16 -0.748821 1.83633) (-2.71847e-16 -1.59599 1.82475) (-1.97479e-16 -2.95483 1.80508) (-1.38469e-16 -4.38677 1.77506) (-9.58177e-17 -5.64385 1.75414) (-6.68528e-17 -6.61174 1.74389) (-4.82719e-17 -7.25703 1.74179) (-3.67472e-17 -7.59103 1.74037) (-2.97708e-17 -7.66293 1.73091) (-2.59603e-17 -7.53258 1.70783) (-2.41617e-17 -7.25409 1.67205) (-2.33726e-17 -6.86856 1.62947) (-2.31043e-17 -6.40752 1.58805) (-2.30837e-17 -5.89761 1.55116) (-2.31735e-17 -5.3612 1.51752) (-2.32997e-17 -4.81161 1.48276) (-2.34268e-17 -4.2569 1.44139) (-2.35376e-17 -3.70562 1.38482) (-2.36296e-17 -3.17412 1.30225) (-2.37043e-17 -2.67339 1.17978) (-2.37629e-17 -2.18902 1.00547) (-2.38072e-17 -1.7009 0.783561) (-2.38418e-17 -1.15973 0.531338) (-2.38684e-17 -0.680085 0.326823) (-2.39286e-17 -1.09007 0.480519) (-2.41624e-17 -0.668142 0.581467) (-2.45672e-17 0.858545 0.440144) (-2.45129e-17 1.12465 0.327826) (-2.40836e-17 1.14569 0.222506) (-2.15148e-17 -0.107145 0.016395) (-2.02989e-17 -1.30529 0.223671) (-1.9742e-17 -2.3155 0.438474) (-1.96549e-17 -3.06136 0.606177) (-1.96288e-17 -3.67391 0.708951) (-1.96906e-17 -4.11153 0.764849) (-1.98355e-17 -4.37615 0.789096) (-2.00823e-17 -4.49448 0.804826) (-2.0422e-17 -4.4937 0.831058) (-2.08318e-17 -4.39711 0.885487) (-2.12698e-17 -4.1438 0.962428) (-2.16412e-17 -3.86865 1.0342) (-2.50229e-15 -1.27271 -0.970826) (-2.61963e-15 -1.74738 -0.976884) (-2.778e-15 -2.23514 -1.24768) (-2.94136e-15 -2.22573 -1.73303) (-3.03621e-15 -1.84411 -2.20697) (-3.06263e-15 -1.71651 -2.21988) (-3.07382e-15 -1.79977 -1.87483) (-3.06277e-15 -1.73579 -1.43728) (-3.01898e-15 -1.58357 -1.51435) (-3.01579e-15 -1.58575 -2.02133) (-3.06719e-15 -1.60227 -2.13054) (-3.13184e-15 -1.36983 -2.03384) (-3.13993e-15 -1.00803 -2.25334) (-3.10556e-15 -0.819291 -2.4366) (-3.03417e-15 -0.427523 -2.64048) (-2.85998e-15 -0.276718 -2.86142) (-2.48507e-15 -0.0226708 -2.42182) (-2.28683e-15 -0.516814 -1.82407) (-2.16056e-15 -0.753242 -2.43161) (-1.97556e-15 -0.891531 -3.337) (-1.68983e-15 -1.34044 -3.60568) (-1.36989e-15 -5.02675 -3.9372) (-5.80224e-16 -0.172942 0.423247) (-2.12438e-16 0.306013 1.26762) (-1.27956e-16 -0.0313012 0.98628) (-1.7949e-16 -0.11294 0.51973) (-7.85225e-17 0.274449 0.55717) (1.01809e-16 0.680613 0.761826) (2.10403e-16 1.19347 0.749582) (3.44845e-16 1.13006 0.210508) (4.7041e-16 0.970407 -0.597877) (5.7032e-16 0.899088 -1.30799) (6.65799e-16 0.962996 -1.63902) (7.65419e-16 1.25884 -1.58697) (8.57925e-16 1.74985 -1.29361) (9.1931e-16 2.10825 -0.86292) (9.32948e-16 2.19023 -0.461508) (9.01606e-16 1.99498 -0.247985) (8.45085e-16 1.70569 -0.208043) (7.59926e-16 1.47388 -0.185529) (6.43679e-16 1.3686 -0.0596793) (5.3608e-16 1.35125 0.159763) (4.63275e-16 1.25813 0.404065) (4.28418e-16 1.12232 0.593827) (4.21565e-16 1.01148 0.740307) (4.19058e-16 0.821784 0.939659) (4.01109e-16 0.764205 1.1769) (3.74693e-16 0.856481 1.40357) (3.59444e-16 0.818708 1.56459) (3.65023e-16 0.664913 1.70253) (3.57591e-16 0.488357 1.86617) (3.48898e-16 0.400683 2.16947) (3.8063e-16 0.181471 2.25365) (4.16611e-16 -0.0281365 1.69108) (3.68828e-16 -0.253579 1.25061) (2.04639e-16 -0.548728 1.56849) (1.60143e-17 -0.743308 2.1534) (-1.43208e-16 -0.876415 2.45175) (-2.68539e-16 -0.885915 2.44741) (-3.59591e-16 -0.697737 2.32278) (-3.93741e-16 -0.456043 2.19007) (-3.38508e-16 -0.90516 2.09398) (-2.52555e-16 -2.08842 1.98669) (-1.75628e-16 -3.5618 1.87123) (-1.18277e-16 -4.96152 1.78075) (-7.95085e-17 -6.11521 1.73173) (-5.50584e-17 -6.94302 1.71717) (-3.9893e-17 -7.44312 1.71594) (-3.0986e-17 -7.65759 1.71071) (-2.64495e-17 -7.64442 1.69332) (-2.42505e-17 -7.45828 1.66205) (-2.33096e-17 -7.14264 1.62341) (-2.29987e-17 -6.73286 1.58492) (-2.29944e-17 -6.2592 1.55071) (-2.31151e-17 -5.74636 1.5214) (-2.3272e-17 -5.21107 1.49491) (-2.34162e-17 -4.66745 1.46752) (-2.35354e-17 -4.12849 1.43288) (-2.36307e-17 -3.59945 1.38062) (-2.37068e-17 -3.08897 1.29675) (-2.37678e-17 -2.60706 1.16994) (-2.38144e-17 -2.10905 0.992427) (-2.38503e-17 -1.56863 0.783575) (-2.38793e-17 -1.05267 0.583919) (-2.38618e-17 -0.983956 0.561993) (-2.39126e-17 -1.70877 0.875254) (-2.40627e-17 -0.698877 0.605982) (-2.47512e-17 1.48615 0.151558) (-2.40524e-17 1.83469 -0.165568) (-2.29537e-17 1.60111 -0.295051) (-2.06681e-17 -0.311934 -0.021743) (-2.02189e-17 -1.31248 0.271445) (-1.98803e-17 -2.31354 0.475176) (-1.974e-17 -3.10374 0.615325) (-1.96563e-17 -3.72535 0.690497) (-1.96681e-17 -4.1826 0.724197) (-1.97882e-17 -4.45839 0.726729) (-2.00214e-17 -4.58365 0.730602) (-2.03413e-17 -4.50767 0.744727) (-2.06532e-17 -4.45315 0.780345) (-2.28303e-15 -1.0515 -1.0469) (-2.41577e-15 -1.49471 -0.989053) (-2.57851e-15 -2.15724 -1.04982) (-2.78124e-15 -2.5007 -1.20185) (-2.9308e-15 -2.21183 -1.64525) (-2.9932e-15 -1.76803 -2.21489) (-3.0226e-15 -1.71834 -2.32608) (-3.03428e-15 -1.65815 -1.92245) (-2.98722e-15 -1.55265 -1.51418) (-2.94074e-15 -1.54711 -1.80681) (-2.97258e-15 -1.48783 -2.27069) (-3.06692e-15 -1.34105 -2.24349) (-3.12206e-15 -1.48208 -2.05569) (-3.08588e-15 -1.06284 -2.36053) (-3.01018e-15 -0.509732 -2.57265) (-2.83832e-15 -0.509364 -2.55619) (-2.51273e-15 -0.722516 -2.35288) (-2.34137e-15 -1.29153 -2.12643) (-2.22551e-15 -1.52328 -2.50648) (-2.07551e-15 -2.2042 -3.3074) (-1.71975e-15 -0.986247 -4.62278) (-1.12358e-15 -1.14346 -4.54321) (-5.58492e-16 0.838219 -0.791278) (-2.88056e-16 0.269369 0.938276) (-2.61899e-16 -0.239034 0.719354) (-3.17821e-16 -0.154133 0.427893) (-2.67325e-16 -0.277657 0.453028) (-1.38391e-16 0.300946 0.378505) (-4.79649e-18 1.39759 0.566558) (7.44363e-17 1.69371 0.724131) (1.88739e-16 1.50301 0.449541) (3.22929e-16 1.21481 -0.280368) (4.34538e-16 0.911185 -0.993514) (5.38034e-16 0.947093 -1.34826) (6.66832e-16 1.35896 -1.3078) (7.91445e-16 1.89389 -1.0031) (8.80645e-16 2.23851 -0.570139) (9.20351e-16 2.27204 -0.183792) (9.19665e-16 2.06699 0.0482683) (8.84226e-16 1.79463 0.150443) (8.00034e-16 1.56545 0.183842) (6.83765e-16 1.42678 0.198035) (5.80317e-16 1.35253 0.231636) (5.17959e-16 1.22183 0.303448) (4.95859e-16 1.04144 0.402577) (4.86636e-16 0.839141 0.558787) (4.63929e-16 0.686424 0.862136) (4.28516e-16 0.709888 1.18062) (4.02408e-16 0.729663 1.41464) (3.91223e-16 0.656935 1.6121) (3.81162e-16 0.478386 1.902) (3.82525e-16 0.372696 2.20578) (3.9469e-16 0.271604 2.22851) (4.13338e-16 0.122487 1.94187) (4.37869e-16 0.0019276 1.41535) (3.9263e-16 -0.262581 1.05047) (2.29053e-16 -0.450171 1.48897) (4.41605e-17 -0.535024 2.16508) (-1.24678e-16 -0.735287 2.57035) (-2.63633e-16 -0.858568 2.71541) (-3.70226e-16 -0.700791 2.70453) (-4.36572e-16 -0.354953 2.60078) (-4.16476e-16 -0.356444 2.46006) (-3.27187e-16 -1.23683 2.27208) (-2.30228e-16 -2.62975 2.05206) (-1.52137e-16 -4.12746 1.86352) (-9.88479e-17 -5.45712 1.75272) (-6.51244e-17 -6.48543 1.70862) (-4.4317e-17 -7.18197 1.69658) (-3.30118e-17 -7.56915 1.69177) (-2.72054e-17 -7.69938 1.67642) (-2.44306e-17 -7.62565 1.64734) (-2.32396e-17 -7.3963 1.61014) (-2.28706e-17 -7.05043 1.57144) (-2.28779e-17 -6.62295 1.53676) (-2.30433e-17 -6.14142 1.50855) (-2.32338e-17 -5.63043 1.4874) (-2.33996e-17 -5.1054 1.47034) (-2.35301e-17 -4.57591 1.45208) (-2.36311e-17 -4.05657 1.42424) (-2.37094e-17 -3.55422 1.37493) (-2.37721e-17 -3.06288 1.29233) (-2.38233e-17 -2.5812 1.17474) (-2.38612e-17 -2.08504 1.0297) (-2.38874e-17 -1.60205 0.881946) (-2.39079e-17 -1.28237 0.789881) (-2.39035e-17 -1.22634 0.756516) (-2.38355e-17 -0.361951 0.482066) (-2.43298e-17 0.939259 0.148701) (-2.43626e-17 2.07308 -0.215532) (-2.32127e-17 2.05392 -0.422706) (-2.19778e-17 1.76646 -0.467552) (-2.07737e-17 0.138063 -0.063849) (-2.04145e-17 -1.1193 0.277128) (-2.0078e-17 -2.21568 0.49541) (-1.98492e-17 -3.12064 0.627766) (-1.96975e-17 -3.77914 0.677576) (-1.96417e-17 -4.22991 0.681954) (-1.96967e-17 -4.41443 0.656199) (-1.98206e-17 -4.64268 0.658615) (-2.10873e-15 -0.652013 -1.23009) (-2.24181e-15 -1.22847 -1.18944) (-2.37891e-15 -2.04548 -1.14885) (-2.58616e-15 -2.67753 -1.00942) (-2.77238e-15 -2.5803 -1.06739) (-2.87756e-15 -2.06372 -1.63208) (-2.93259e-15 -1.77984 -2.3036) (-2.97091e-15 -1.7266 -2.34361) (-2.94911e-15 -1.67752 -1.85145) (-2.88363e-15 -1.63968 -1.66813) (-2.87067e-15 -1.64302 -2.03625) (-2.94497e-15 -1.49257 -2.34018) (-3.0307e-15 -1.66099 -2.16105) (-2.99237e-15 -1.14049 -2.28112) (-2.88645e-15 -0.843809 -2.49078) (-2.73448e-15 -0.950567 -2.56304) (-2.4999e-15 -1.24398 -2.76161) (-2.29969e-15 -1.6679 -2.96403) (-2.13823e-15 -2.00905 -3.02794) (-1.92351e-15 -1.92965 -3.4682) (-1.52264e-15 -0.679831 -4.22628) (-8.76083e-16 -0.456631 -3.20314) (-4.48054e-16 -0.395619 -1.25608) (-3.164e-16 0.0457194 0.334945) (-2.98813e-16 -0.206089 0.252402) (-3.28925e-16 -0.603479 0.426498) (-2.85645e-16 -0.732653 0.664203) (-2.31291e-16 -0.415173 0.635524) (-1.09012e-16 0.77998 0.174174) (-1.09881e-16 1.67885 0.448154) (-1.03111e-16 1.85194 0.771456) (9.47658e-18 1.61572 0.616877) (1.58014e-16 1.30402 0.0118082) (2.70232e-16 0.971694 -0.634284) (4.04666e-16 0.986422 -0.998651) (5.64001e-16 1.49165 -0.992425) (7.11291e-16 2.03709 -0.706736) (8.18001e-16 2.33544 -0.300911) (8.77891e-16 2.31753 0.0774199) (8.98356e-16 2.12754 0.364506) (8.75597e-16 1.90525 0.546643) (8.04267e-16 1.7244 0.582745) (7.09415e-16 1.59147 0.473326) (6.32532e-16 1.35633 0.362338) (5.90257e-16 1.08508 0.313419) (5.67496e-16 0.849781 0.345788) (5.40142e-16 0.703361 0.491257) (5.00475e-16 0.724033 0.757208) (4.61812e-16 0.747188 1.04142) (4.36485e-16 0.687804 1.28051) (4.22642e-16 0.582302 1.53424) (4.109e-16 0.421853 1.7151) (4.13649e-16 0.256039 1.72071) (4.25185e-16 0.0825029 1.61304) (4.198e-16 0.0361305 1.54899) (4.16293e-16 -0.0299003 1.31411) (3.78328e-16 -0.234365 1.13564) (2.49762e-16 -0.284459 1.59587) (7.43097e-17 -0.348986 2.21657) (-1.01963e-16 -0.518733 2.65126) (-2.52078e-16 -0.695408 2.8815) (-3.72789e-16 -0.661502 2.98169) (-4.57175e-16 -0.386465 2.96533) (-4.88262e-16 -0.0935711 2.85828) (-4.20597e-16 -0.475875 2.63763) (-3.07153e-16 -1.63309 2.32092) (-2.03186e-16 -3.13263 2.01525) (-1.29308e-16 -4.60418 1.81837) (-8.02487e-17 -5.84667 1.72169) (-5.15151e-17 -6.76803 1.69052) (-3.62393e-17 -7.36299 1.68086) (-2.84642e-17 -7.66708 1.66493) (-2.47418e-17 -7.73472 1.63657) (-2.31948e-17 -7.61415 1.59867) (-2.27046e-17 -7.35104 1.55701) (-2.27361e-17 -6.98377 1.51781) (-2.29485e-17 -6.54448 1.48519) (-2.31814e-17 -6.05906 1.46087) (-2.33745e-17 -5.54961 1.44445) (-2.35215e-17 -5.03236 1.43362) (-2.36278e-17 -4.51536 1.42118) (-2.37078e-17 -4.00932 1.3973) (-2.37706e-17 -3.51626 1.35171) (-2.38213e-17 -3.03083 1.27901) (-2.38613e-17 -2.55134 1.18103) (-2.38904e-17 -2.06301 1.0621) (-2.39112e-17 -1.57691 0.920562) (-2.39394e-17 -1.04612 0.749124) (-2.39186e-17 -0.312646 0.501004) (-2.42994e-17 0.571323 0.29995) (-2.447e-17 1.30478 0.0197846) (-2.39324e-17 1.94295 -0.305485) (-2.30085e-17 1.95493 -0.430023) (-2.21e-17 1.67067 -0.429662) (-2.11221e-17 0.580941 -0.116353) (-2.07001e-17 -0.86266 0.248669) (-2.03345e-17 -2.10011 0.501715) (-2.00056e-17 -3.09183 0.632502) (-1.9747e-17 -3.71863 0.665597) (-1.95825e-17 -4.30898 0.687415) (-2.04227e-15 -0.159371 -1.27802) (-2.1522e-15 -1.22357 -1.42181) (-2.25037e-15 -1.86829 -1.4769) (-2.42228e-15 -2.53358 -1.29307) (-2.60624e-15 -2.70577 -0.931855) (-2.73442e-15 -2.29864 -1.05232) (-2.81339e-15 -1.96471 -1.87259) (-2.86935e-15 -1.95122 -2.38954) (-2.87377e-15 -1.89062 -2.19106) (-2.82574e-15 -1.80227 -1.82384) (-2.78499e-15 -1.85845 -1.83325) (-2.81156e-15 -1.64948 -2.13105) (-2.91437e-15 -1.37037 -2.27196) (-2.94978e-15 -1.08942 -2.35617) (-2.80954e-15 -1.12292 -2.40175) (-2.62529e-15 -1.21574 -2.43752) (-2.39381e-15 -1.46319 -2.62221) (-2.12434e-15 -1.79723 -2.94835) (-1.89988e-15 -2.11684 -2.89725) (-1.65961e-15 -1.41541 -2.93813) (-1.24517e-15 -0.438182 -2.76488) (-6.38927e-16 -0.232852 -1.32382) (-3.42134e-16 -0.640955 -0.723756) (-2.40309e-16 0.357353 -0.583246) (-3.16266e-16 0.427443 -0.48456) (-3.55456e-16 0.119481 0.0952552) (-3.3166e-16 -0.751051 0.671376) (-2.65155e-16 -0.768881 0.874826) (-1.69971e-16 -0.429003 0.613826) (-8.92361e-17 1.10244 0.0901028) (-1.96603e-16 1.64344 0.436199) (-2.49866e-16 1.78183 0.763595) (-1.96522e-16 1.68767 0.718867) (-1.03449e-16 1.40711 0.385002) (3.62004e-17 1.11661 -0.172987) (2.25082e-16 1.22808 -0.610137) (4.27104e-16 1.67502 -0.671592) (5.98784e-16 2.12396 -0.431729) (7.2026e-16 2.34673 -0.0665225) (7.95006e-16 2.34226 0.303145) (8.30013e-16 2.2336 0.643824) (8.23418e-16 2.12085 0.892585) (7.79476e-16 1.93787 0.957181) (7.22832e-16 1.65826 0.844779) (6.76927e-16 1.34429 0.674074) (6.45278e-16 1.02814 0.564805) (6.14479e-16 0.795411 0.539974) (5.74724e-16 0.704289 0.620354) (5.31546e-16 0.703283 0.784692) (4.97648e-16 0.71736 0.951527) (4.76118e-16 0.69422 1.07866) (4.62469e-16 0.618284 1.18025) (4.48356e-16 0.531405 1.27679) (4.35039e-16 0.445802 1.33285) (4.20319e-16 0.323444 1.37625) (4.01865e-16 0.201714 1.41239) (3.76289e-16 0.0563002 1.41439) (3.17739e-16 -0.0650079 1.56898) (2.12937e-16 -0.0731639 1.95569) (6.07309e-17 -0.0972097 2.43577) (-9.68821e-17 -0.270592 2.79634) (-2.42449e-16 -0.450666 3.00158) (-3.61876e-16 -0.534849 3.12041) (-4.5786e-16 -0.415525 3.18254) (-5.2842e-16 -0.120458 3.15408) (-5.17923e-16 0.0269509 3.00609) (-4.06455e-16 -0.670885 2.65079) (-2.81209e-16 -2.00378 2.25261) (-1.76753e-16 -3.54771 1.93909) (-1.0496e-16 -4.98667 1.76368) (-6.35411e-17 -6.1572 1.69874) (-4.16414e-17 -6.99012 1.67797) (-3.05345e-17 -7.50849 1.6612) (-2.53768e-17 -7.75062 1.63419) (-2.31768e-17 -7.77017 1.59582) (-2.252e-17 -7.61395 1.55119) (-2.25534e-17 -7.32557 1.50593) (-2.28202e-17 -6.94156 1.4651) (-2.31032e-17 -6.49171 1.43216) (-2.33417e-17 -6.00085 1.40833) (-2.35123e-17 -5.49024 1.39264) (-2.36331e-17 -4.97546 1.38231) (-2.37178e-17 -4.46437 1.37075) (-2.37791e-17 -3.96117 1.34937) (-2.3823e-17 -3.46322 1.30945) (-2.38543e-17 -2.96617 1.24603) (-2.3879e-17 -2.47233 1.15804) (-2.3905e-17 -1.94982 1.03766) (-2.39473e-17 -1.3479 0.880591) (-2.40265e-17 -0.528405 0.638402) (-2.42012e-17 0.349616 0.424717) (-2.44588e-17 0.738175 0.319192) (-2.43948e-17 1.2959 0.0391413) (-2.38996e-17 1.81524 -0.260734) (-2.3144e-17 1.9374 -0.386583) (-2.23486e-17 1.59799 -0.38681) (-2.15553e-17 0.822877 -0.149469) (-2.1058e-17 -0.646 0.207466) (-2.06262e-17 -2.02771 0.486374) (-2.02621e-17 -3.27065 0.66589) (-2.01849e-15 -0.599595 -0.863159) (-2.11801e-15 -1.23293 -1.39908) (-2.1907e-15 -1.8845 -1.59899) (-2.32139e-15 -2.17312 -1.74276) (-2.48515e-15 -2.48499 -1.32398) (-2.61238e-15 -2.29231 -0.882266) (-2.69193e-15 -2.10524 -1.27437) (-2.74054e-15 -2.10192 -2.03525) (-2.75692e-15 -1.94421 -2.30426) (-2.74176e-15 -1.89397 -2.1099) (-2.69155e-15 -1.99151 -1.95486) (-2.65791e-15 -1.92839 -2.02648) (-2.70312e-15 -1.63351 -2.12322) (-2.78392e-15 -1.15275 -2.23907) (-2.71689e-15 -1.03783 -2.38846) (-2.48888e-15 -1.21647 -2.42684) (-2.2651e-15 -1.33022 -2.50539) (-2.01266e-15 -1.46714 -2.75469) (-1.73967e-15 -1.44985 -2.80719) (-1.46585e-15 -0.884581 -2.65328) (-1.09837e-15 -0.658402 -2.03655) (-6.49472e-16 -1.05243 -0.94243) (-3.81343e-16 -1.00729 -0.65143) (-1.62943e-16 -0.214005 -0.630946) (-3.12589e-16 0.459589 -0.75295) (-3.9962e-16 0.875418 -0.2574) (-3.86347e-16 -0.099671 0.544037) (-3.33122e-16 -0.670445 1.02256) (-1.83727e-16 -0.988552 0.964486) (-9.68124e-17 -0.377495 0.447074) (-8.22756e-17 0.875112 0.0930754) (-2.43484e-16 1.5487 0.355472) (-3.64827e-16 1.80426 0.677908) (-4.03732e-16 1.78056 0.815049) (-3.65939e-16 1.62551 0.658453) (-2.39493e-16 1.44527 0.235708) (-2.04316e-17 1.47816 -0.187431) (2.22828e-16 1.80251 -0.32598) (4.23049e-16 2.15681 -0.173486) (5.65879e-16 2.35627 0.125786) (6.6021e-16 2.41612 0.481284) (7.13527e-16 2.39003 0.859065) (7.29539e-16 2.27624 1.17313) (7.19039e-16 2.0904 1.30611) (6.97871e-16 1.81587 1.26517) (6.75715e-16 1.50564 1.15185) (6.52161e-16 1.20438 1.05866) (6.21644e-16 0.916437 1.0233) (5.83829e-16 0.771144 1.03518) (5.48328e-16 0.773954 1.07081) (5.21274e-16 0.761492 1.11442) (4.99857e-16 0.676323 1.16436) (4.78999e-16 0.611192 1.23047) (4.5675e-16 0.62582 1.30733) (4.32514e-16 0.625854 1.37555) (4.04525e-16 0.578846 1.44608) (3.64179e-16 0.480615 1.5853) (2.95836e-16 0.353928 1.83994) (2.0273e-16 0.250768 2.16861) (9.66533e-17 0.196422 2.51642) (-1.41814e-17 0.14164 2.85146) (-1.3646e-16 0.02807 3.07674) (-2.54957e-16 -0.124887 3.15583) (-3.55267e-16 -0.261794 3.20322) (-4.51153e-16 -0.332574 3.24369) (-5.36046e-16 -0.196867 3.29673) (-5.78037e-16 0.0966454 3.26306) (-5.26672e-16 0.062872 2.99951) (-3.94071e-16 -0.841669 2.56077) (-2.5116e-16 -2.29111 2.11895) (-1.45445e-16 -3.88866 1.83853) (-8.47167e-17 -5.29375 1.72128) (-5.07022e-17 -6.40129 1.67845) (-3.43248e-17 -7.16828 1.6598) (-2.65428e-17 -7.6297 1.63569) (-2.33095e-17 -7.82522 1.59906) (-2.23287e-17 -7.80783 1.55374) (-2.23259e-17 -7.62441 1.50444) (-2.26253e-17 -7.3167 1.45624) (-2.29912e-17 -6.91958 1.41375) (-2.32794e-17 -6.46179 1.37946) (-2.3496e-17 -5.96848 1.35472) (-2.36444e-17 -5.45738 1.33826) (-2.37441e-17 -4.94051 1.32716) (-2.38061e-17 -4.42546 1.31586) (-2.3839e-17 -3.9182 1.29776) (-2.38555e-17 -3.41904 1.26577) (-2.38664e-17 -2.91695 1.21376) (-2.38794e-17 -2.40081 1.14053) (-2.39005e-17 -1.82227 1.04117) (-2.39487e-17 -1.13508 0.924877) (-2.40415e-17 -0.225094 0.730171) (-2.41873e-17 0.440208 0.633533) (-2.43683e-17 0.665856 0.563267) (-2.43106e-17 1.30196 0.216935) (-2.38975e-17 1.83737 -0.160726) (-2.32822e-17 1.9469 -0.317676) (-2.2622e-17 1.64055 -0.336261) (-2.19943e-17 0.83004 -0.128166) (-2.15226e-17 -1.10638 0.302042) (-1.966e-15 -1.0747 -0.744181) (-2.06263e-15 -0.982699 -1.15944) (-2.12502e-15 -1.97719 -1.32514) (-2.22925e-15 -1.78058 -1.86981) (-2.39013e-15 -2.09219 -1.8232) (-2.52274e-15 -2.1635 -1.13864) (-2.58987e-15 -2.07981 -0.840594) (-2.61721e-15 -2.0926 -1.41194) (-2.63231e-15 -1.99588 -2.06904) (-2.63125e-15 -1.95894 -2.22205) (-2.57822e-15 -1.89503 -2.11691) (-2.5018e-15 -1.8975 -2.10696) (-2.47153e-15 -1.88386 -2.16131) (-2.49758e-15 -1.65708 -2.16214) (-2.48074e-15 -1.35481 -2.25554) (-2.30068e-15 -1.27564 -2.35303) (-2.08868e-15 -1.25275 -2.38417) (-1.86573e-15 -1.21071 -2.45481) (-1.58567e-15 -1.13424 -2.53688) (-1.31337e-15 -0.927763 -2.41786) (-1.03045e-15 -0.895005 -2.06594) (-7.19335e-16 -0.728103 -1.60799) (-4.96474e-16 -0.789937 -1.11512) (-2.75855e-16 -0.603873 -0.829019) (-2.74209e-16 -0.378664 -0.683753) (-4.15738e-16 0.994615 -0.2511) (-4.44421e-16 0.560778 0.409352) (-4.10808e-16 -0.456392 1.07706) (-2.58314e-16 -0.896135 1.30441) (-9.63912e-17 -1.05506 0.874015) (-9.2243e-17 -0.426013 0.270096) (-9.72772e-17 0.640932 -0.045578) (-2.62805e-16 1.22543 0.194391) (-4.06303e-16 1.58793 0.475136) (-5.13067e-16 1.80227 0.727453) (-5.57786e-16 1.79788 0.799076) (-4.92197e-16 1.68653 0.586036) (-2.97103e-16 1.70295 0.233596) (-5.09227e-17 1.90565 0.0477485) (1.69055e-16 2.15668 0.110656) (3.38874e-16 2.34862 0.338924) (4.59159e-16 2.45376 0.668382) (5.35571e-16 2.48187 1.04406) (5.77031e-16 2.42104 1.37876) (5.94709e-16 2.26434 1.58599) (5.97994e-16 2.03755 1.65663) (5.91373e-16 1.76752 1.65266) (5.76889e-16 1.50029 1.62423) (5.55858e-16 1.29926 1.59093) (5.32193e-16 1.16361 1.57633) (5.08756e-16 1.04438 1.60799) (4.84796e-16 0.932714 1.68018) (4.58806e-16 0.872907 1.76139) (4.28648e-16 0.857301 1.84321) (3.96571e-16 0.853965 1.92742) (3.60291e-16 0.8525 2.00131) (3.10975e-16 0.808092 2.10584) (2.39484e-16 0.722739 2.29677) (1.49691e-16 0.662558 2.56065) (5.06086e-17 0.633021 2.84451) (-4.8518e-17 0.59504 3.09536) (-1.40222e-16 0.53701 3.28501) (-2.23853e-16 0.450381 3.39867) (-3.00786e-16 0.334326 3.40027) (-3.75912e-16 0.133787 3.30678) (-4.59715e-16 -0.0412749 3.29653) (-5.2593e-16 -0.12217 3.35648) (-5.86923e-16 -0.0109912 3.3254) (-6.29954e-16 0.291811 3.21984) (-5.36e-16 0.170531 2.8373) (-3.58415e-16 -0.970142 2.33729) (-2.17946e-16 -2.53533 1.97001) (-1.19058e-16 -4.15422 1.75318) (-6.79598e-17 -5.5272 1.67833) (-4.1051e-17 -6.59284 1.65376) (-2.8903e-17 -7.30986 1.63202) (-2.3828e-17 -7.72908 1.60158) (-2.22289e-17 -7.88966 1.55853) (-2.20026e-17 -7.84757 1.50876) (-2.23807e-17 -7.64709 1.45708) (-2.27939e-17 -7.3288 1.40797) (-2.3174e-17 -6.92675 1.36515) (-2.34556e-17 -6.4666 1.33014) (-2.36561e-17 -5.97163 1.30455) (-2.37859e-17 -5.45786 1.28721) (-2.38545e-17 -4.93937 1.27636) (-2.38795e-17 -4.42203 1.26641) (-2.38795e-17 -3.9103 1.25181) (-2.38735e-17 -3.40156 1.22661) (-2.38734e-17 -2.88101 1.18926) (-2.3885e-17 -2.33532 1.14644) (-2.39116e-17 -1.75946 1.09906) (-2.39669e-17 -1.16415 1.05134) (-2.40601e-17 -0.57366 0.98455) (-2.41919e-17 0.0604089 0.85068) (-2.43255e-17 0.664004 0.610449) (-2.42697e-17 1.46114 0.208498) (-2.39545e-17 2.08342 -0.155481) (-2.3487e-17 2.34718 -0.311005) (-2.29812e-17 1.78042 -0.274072) (-1.84421e-15 -1.5022 -0.681485) (-1.91198e-15 -1.09055 -0.826448) (-1.97431e-15 -1.6088 -1.09521) (-2.08982e-15 -1.48419 -1.70098) (-2.26599e-15 -1.77572 -2.05811) (-2.42037e-15 -1.96706 -1.62124) (-2.48964e-15 -1.94964 -0.860297) (-2.5125e-15 -2.00855 -0.907098) (-2.51901e-15 -2.03453 -1.55359) (-2.50217e-15 -1.94607 -2.02369) (-2.4516e-15 -1.7287 -2.10631) (-2.37239e-15 -1.66088 -2.06675) (-2.2907e-15 -1.65512 -2.12249) (-2.25271e-15 -1.5089 -2.14315) (-2.22702e-15 -1.29352 -2.05719) (-2.09732e-15 -1.19859 -1.94589) (-1.89715e-15 -1.12605 -1.78286) (-1.69094e-15 -1.08627 -1.57444) (-1.46211e-15 -1.07799 -1.36015) (-1.26281e-15 -0.993809 -1.12329) (-1.0682e-15 -0.875709 -1.00884) (-8.20348e-16 -0.608581 -1.02774) (-5.95739e-16 -0.665242 -1.01101) (-4.13227e-16 -0.651505 -1.20897) (-3.63221e-16 -1.40541 -1.18648) (-4.22811e-16 0.507163 -0.165478) (-4.52728e-16 1.0492 0.492921) (-4.79965e-16 0.471728 1.04302) (-3.03788e-16 -0.497742 1.46132) (-1.4432e-16 -1.0254 1.22494) (-6.66143e-17 -0.810152 0.643762) (-1.37457e-16 -0.352808 -0.0613026) (-1.2809e-16 0.234065 -0.493739) (-2.56996e-16 0.602421 -0.216955) (-4.2191e-16 1.11304 0.254017) (-5.59714e-16 1.5439 0.535654) (-6.59922e-16 1.73427 0.741565) (-6.60009e-16 1.75123 0.702889) (-5.32535e-16 1.78466 0.486825) (-3.31415e-16 1.92469 0.33599) (-1.22111e-16 2.13349 0.358035) (5.74639e-17 2.33005 0.538933) (1.95267e-16 2.45894 0.836697) (2.92367e-16 2.50599 1.19994) (3.55886e-16 2.48032 1.5468) (3.93597e-16 2.37875 1.81002) (4.12325e-16 2.21675 1.97498) (4.17433e-16 2.0384 2.06645) (4.12605e-16 1.87329 2.11518) (4.01425e-16 1.71179 2.13876) (3.86204e-16 1.55523 2.16672) (3.65743e-16 1.46155 2.2259) (3.38653e-16 1.39637 2.33073) (3.0463e-16 1.32486 2.45001) (2.67849e-16 1.30301 2.56448) (2.27039e-16 1.3281 2.6784) (1.7693e-16 1.29283 2.80084) (1.1201e-16 1.19239 2.92599) (3.38616e-17 1.10195 3.07156) (-5.01676e-17 1.04543 3.24425) (-1.32391e-16 1.01391 3.40565) (-2.09997e-16 0.981305 3.52444) (-2.81652e-16 0.932966 3.58961) (-3.45925e-16 0.870267 3.60222) (-4.02381e-16 0.802409 3.58075) (-4.51526e-16 0.719487 3.54612) (-4.93494e-16 0.553255 3.46432) (-5.31734e-16 0.318669 3.33647) (-5.85234e-16 0.0627085 3.19446) (-6.5529e-16 0.149711 3.12451) (-6.57444e-16 0.528998 2.97192) (-5.1912e-16 0.281476 2.59081) (-3.25186e-16 -1.04217 2.1047) (-1.83377e-16 -2.69836 1.8045) (-9.73099e-17 -4.35287 1.67125) (-5.45279e-17 -5.69732 1.63058) (-3.37771e-17 -6.73184 1.61573) (-2.54372e-17 -7.41138 1.59287) (-2.22314e-17 -7.80451 1.55788) (-2.17632e-17 -7.94765 1.51169) (-2.19836e-17 -7.89636 1.46053) (-2.25089e-17 -7.69314 1.40933) (-2.29826e-17 -7.37705 1.36229) (-2.33715e-17 -6.97817 1.32172) (-2.36527e-17 -6.52281 1.28976) (-2.38297e-17 -6.0306 1.26664) (-2.39198e-17 -5.51869 1.25214) (-2.39429e-17 -4.9996 1.24366) (-2.39296e-17 -4.48051 1.23762) (-2.39032e-17 -3.96131 1.22859) (-2.388e-17 -3.44246 1.21441) (-2.38723e-17 -2.93017 1.19577) (-2.38888e-17 -2.43183 1.17484) (-2.39342e-17 -1.96925 1.14415) (-2.4013e-17 -1.53491 1.08783) (-2.41148e-17 -1.02847 0.985986) (-2.42463e-17 -0.424778 0.860609) (-2.43466e-17 0.440782 0.552798) (-2.43542e-17 1.45317 0.165608) (-2.39507e-17 2.14384 -0.136044) (-1.64657e-15 -1.94378 -0.643123) (-1.69071e-15 -1.21177 -0.681183) (-1.74604e-15 -1.40151 -0.912408) (-1.88619e-15 -1.47452 -1.37343) (-2.10263e-15 -1.69656 -1.94793) (-2.29792e-15 -1.74717 -2.08962) (-2.38906e-15 -1.71348 -1.37162) (-2.40888e-15 -1.76165 -0.805705) (-2.4011e-15 -1.88301 -1.01823) (-2.36943e-15 -1.91582 -1.56682) (-2.32304e-15 -1.85159 -1.88582) (-2.25885e-15 -1.80624 -1.8857) (-2.16705e-15 -1.6136 -1.89663) (-2.0904e-15 -1.2258 -2.00001) (-2.04693e-15 -0.850091 -2.02728) (-1.93637e-15 -0.898172 -1.80158) (-1.75302e-15 -0.828477 -1.54724) (-1.57292e-15 -0.790821 -1.23966) (-1.38874e-15 -0.918411 -0.9283) (-1.21068e-15 -0.947427 -0.656288) (-1.04397e-15 -0.851851 -0.407897) (-8.48312e-16 -0.743011 -0.239968) (-6.47855e-16 -0.745195 -0.280752) (-5.08348e-16 -0.691501 -0.534736) (-5.19371e-16 -0.544278 -0.704196) (-4.94418e-16 -0.372332 -0.83929) (-4.57041e-16 0.569663 0.422919) (-4.53919e-16 1.25843 1.21423) (-3.42442e-16 0.110734 1.31327) (-1.80449e-16 -0.651651 1.28362) (-6.30289e-17 -0.783827 1.03606) (-6.87105e-17 -0.69076 0.482044) (-1.19625e-16 -0.371817 -0.143154) (-1.21836e-16 -0.0397256 -0.676755) (-1.7267e-16 0.250166 -0.659602) (-3.27143e-16 0.484509 -0.146099) (-5.24569e-16 0.993798 0.415972) (-6.67421e-16 1.39236 0.673904) (-7.30997e-16 1.54959 0.7252) (-6.82787e-16 1.64827 0.615434) (-5.48334e-16 1.81563 0.508329) (-3.80916e-16 2.02174 0.521472) (-2.20145e-16 2.20361 0.676592) (-8.55039e-17 2.33746 0.950824) (1.76984e-17 2.41551 1.29804) (9.054e-17 2.4269 1.65088) (1.37793e-16 2.37489 1.9533) (1.65219e-16 2.28644 2.18775) (1.77201e-16 2.19016 2.3642) (1.77797e-16 2.07753 2.49606) (1.70694e-16 1.96582 2.58669) (1.56667e-16 1.87596 2.65857) (1.34478e-16 1.79559 2.75079) (1.04462e-16 1.7437 2.86196) (6.81068e-17 1.71787 2.97899) (2.80456e-17 1.69088 3.1083) (-1.62205e-17 1.65539 3.23777) (-6.87282e-17 1.60237 3.34539) (-1.31029e-16 1.50327 3.43876) (-1.98923e-16 1.40009 3.53082) (-2.6651e-16 1.34448 3.61324) (-3.30235e-16 1.30922 3.6766) (-3.88362e-16 1.26587 3.70582) (-4.40369e-16 1.20519 3.70153) (-4.85559e-16 1.14036 3.67069) (-5.24237e-16 1.0641 3.62726) (-5.56403e-16 0.995856 3.55566) (-5.82409e-16 0.919685 3.46016) (-6.00288e-16 0.815228 3.34191) (-6.06215e-16 0.625838 3.178) (-6.1542e-16 0.381467 2.98133) (-6.71624e-16 0.35832 2.88382) (-6.94768e-16 0.744954 2.65144) (-4.79429e-16 0.458408 2.20881) (-2.88562e-16 -1.10431 1.85255) (-1.51627e-16 -2.81221 1.65673) (-7.97307e-17 -4.48876 1.58782) (-4.50223e-17 -5.8018 1.57267) (-2.88138e-17 -6.81421 1.56425) (-2.33601e-17 -7.47762 1.54179) (-2.14825e-17 -7.85981 1.50436) (-2.15662e-17 -8.00482 1.45727) (-2.20551e-17 -7.96095 1.40715) (-2.26837e-17 -7.76985 1.35878) (-2.32107e-17 -7.4679 1.31641) (-2.36023e-17 -7.08353 1.28171) (-2.38599e-17 -6.64189 1.25677) (-2.39878e-17 -6.16042 1.24092) (-2.40289e-17 -5.65542 1.23397) (-2.4014e-17 -5.13526 1.23314) (-2.39667e-17 -4.60874 1.23632) (-2.39092e-17 -4.08151 1.23938) (-2.38652e-17 -3.56908 1.23978) (-2.38511e-17 -3.09496 1.23349) (-2.38723e-17 -2.66518 1.21074) (-2.39305e-17 -2.2565 1.15936) (-2.40205e-17 -1.84516 1.07621) (-2.41107e-17 -1.33446 0.955531) (-2.41869e-17 -0.657107 0.814929) (-2.42308e-17 0.547953 0.479002) (-1.42021e-15 -2.03659 -0.67514) (-1.46393e-15 -1.13093 -0.639937) (-1.49427e-15 -1.36701 -0.777348) (-1.62571e-15 -1.54573 -1.00633) (-1.87953e-15 -1.73207 -1.55038) (-2.14165e-15 -1.68931 -2.12316) (-2.28933e-15 -1.56498 -1.9834) (-2.32144e-15 -1.4856 -1.226) (-2.30765e-15 -1.59208 -0.839504) (-2.26753e-15 -1.75887 -1.08586) (-2.20712e-15 -1.85383 -1.5263) (-2.13498e-15 -1.86759 -1.71845) (-2.04492e-15 -1.67704 -1.74197) (-1.95964e-15 -1.28517 -1.77177) (-1.9111e-15 -0.842339 -1.85563) (-1.81856e-15 -0.909262 -1.67969) (-1.65398e-15 -0.78593 -1.49542) (-1.47593e-15 -0.651101 -1.29833) (-1.28382e-15 -0.754159 -1.04808) (-1.09107e-15 -0.838587 -0.809445) (-9.36222e-16 -0.886762 -0.466852) (-7.85716e-16 -0.814118 -0.0705064) (-6.43946e-16 -0.735137 0.114089) (-5.60334e-16 -0.597994 -0.00691044) (-5.80538e-16 -0.230757 -0.0781018) (-5.76945e-16 0.313759 0.27657) (-5.06692e-16 0.656668 0.709268) (-4.89289e-16 1.66617 1.33547) (-3.61352e-16 1.19903 1.14754) (-1.92848e-16 -0.0840272 1.01889) (-6.91113e-17 -0.486828 1.026) (-4.18375e-17 -0.692426 0.790611) (-7.21899e-17 -0.654396 0.289683) (-1.2013e-16 -0.351206 -0.241815) (-1.52353e-16 0.135672 -0.661157) (-1.58729e-16 0.325098 -0.703337) (-2.50567e-16 0.118859 -0.135465) (-4.13072e-16 0.46084 0.426086) (-5.67997e-16 0.983511 0.690619) (-6.87832e-16 1.2283 0.796425) (-7.23228e-16 1.40661 0.748253) (-6.67601e-16 1.61476 0.663143) (-5.61122e-16 1.81749 0.655552) (-4.40868e-16 1.98878 0.768253) (-3.29607e-16 2.12329 1.00169) (-2.38559e-16 2.21501 1.31773) (-1.70868e-16 2.24414 1.6618) (-1.24617e-16 2.22438 1.98589) (-9.67799e-17 2.17483 2.27123) (-8.3928e-17 2.10851 2.51463) (-8.2394e-17 2.05108 2.7069) (-8.93743e-17 1.99588 2.84955) (-1.04407e-16 1.93668 2.9609) (-1.27278e-16 1.89064 3.06006) (-1.5804e-16 1.86475 3.16291) (-1.93063e-16 1.84991 3.27136) (-2.3006e-16 1.83726 3.37152) (-2.7162e-16 1.80206 3.46131) (-3.20635e-16 1.72812 3.54247) (-3.75168e-16 1.63362 3.59715) (-4.30717e-16 1.53585 3.62568) (-4.82626e-16 1.4678 3.64234) (-5.27507e-16 1.43049 3.65024) (-5.64127e-16 1.39662 3.64283) (-5.92473e-16 1.35181 3.62082) (-6.13299e-16 1.3065 3.58423) (-6.27731e-16 1.2621 3.52778) (-6.36893e-16 1.20324 3.44511) (-6.41898e-16 1.13121 3.33456) (-6.44096e-16 1.06304 3.19848) (-6.44244e-16 0.989611 3.03073) (-6.38906e-16 0.825452 2.81323) (-6.28419e-16 0.584063 2.57181) (-6.64342e-16 0.595809 2.46702) (-6.98967e-16 0.915339 2.26185) (-4.2545e-16 0.5561 1.8657) (-2.51791e-16 -1.13986 1.62617) (-1.28227e-16 -2.84534 1.52079) (-6.69798e-17 -4.53168 1.49861) (-3.85071e-17 -5.83793 1.50136) (-2.59909e-17 -6.83621 1.49853) (-2.21412e-17 -7.50644 1.47735) (-2.10537e-17 -7.90006 1.43917) (-2.1524e-17 -8.06408 1.39313) (-2.22239e-17 -8.04184 1.34477) (-2.2915e-17 -7.87574 1.3006) (-2.34748e-17 -7.59781 1.2639) (-2.38294e-17 -7.23585 1.23688) (-2.40385e-17 -6.8116 1.22044) (-2.41331e-17 -6.34078 1.21408) (-2.41399e-17 -5.83631 1.2166) (-2.40808e-17 -5.30822 1.22571) (-2.39904e-17 -4.7676 1.23866) (-2.39059e-17 -4.22667 1.25075) (-2.38475e-17 -3.70018 1.25504) (-2.3826e-17 -3.20796 1.24344) (-2.38477e-17 -2.775 1.20952) (-2.3911e-17 -2.3865 1.14987) (-2.40031e-17 -1.95081 1.06784) (-2.40866e-17 -1.41936 0.962368) (-1.17414e-15 -1.86274 -0.603207) (-1.22565e-15 -1.06234 -0.511781) (-1.22253e-15 -1.28933 -0.679443) (-1.31929e-15 -1.44716 -0.760251) (-1.57699e-15 -1.7247 -1.11352) (-1.89658e-15 -1.78868 -1.68189) (-2.13845e-15 -1.6779 -2.0913) (-2.23747e-15 -1.43422 -1.824) (-2.2397e-15 -1.36385 -1.16414) (-2.19932e-15 -1.41043 -0.911586) (-2.12795e-15 -1.54067 -1.16793) (-2.03389e-15 -1.66792 -1.49648) (-1.91542e-15 -1.65571 -1.63654) (-1.79716e-15 -1.43979 -1.60758) (-1.72371e-15 -1.13833 -1.57449) (-1.64627e-15 -1.06763 -1.46043) (-1.50806e-15 -0.808758 -1.35082) (-1.34689e-15 -0.667743 -1.2405) (-1.16017e-15 -0.72696 -1.10795) (-9.63211e-16 -0.811282 -0.981975) (-8.15542e-16 -0.87033 -0.772482) (-6.9437e-16 -0.850949 -0.35056) (-5.94644e-16 -0.824065 0.122997) (-5.41325e-16 -0.717119 0.334062) (-5.48185e-16 -0.444499 0.443974) (-5.62808e-16 0.0633918 0.648045) (-5.39156e-16 0.512627 0.77445) (-5.20619e-16 1.27365 1.18091) (-4.05728e-16 2.31586 1.03942) (-1.18277e-16 1.67404 0.0382625) (-4.78594e-17 0.0118657 0.711343) (-1.45264e-17 -0.509924 0.811957) (-2.56814e-17 -0.678576 0.547065) (-7.74044e-17 -0.622607 0.173211) (-1.27002e-16 -0.315384 -0.131525) (-1.66726e-16 0.241657 -0.196701) (-2.2136e-16 0.952371 -0.126557) (-2.73128e-16 0.331538 0.448426) (-3.64307e-16 0.472587 0.93505) (-4.39408e-16 0.722574 1.07124) (-5.63652e-16 0.846897 1.11651) (-6.63108e-16 1.07802 1.05068) (-6.81586e-16 1.34024 0.92796) (-6.39806e-16 1.56733 0.856239) (-5.70547e-16 1.74717 0.896419) (-4.96547e-16 1.88331 1.05434) (-4.30958e-16 1.96334 1.30847) (-3.79408e-16 1.99347 1.61291) (-3.43336e-16 1.98151 1.92851) (-3.21819e-16 1.95552 2.22993) (-3.13178e-16 1.93152 2.50288) (-3.14862e-16 1.89866 2.73644) (-3.24382e-16 1.86945 2.92052) (-3.41596e-16 1.84737 3.05841) (-3.66509e-16 1.82173 3.16984) (-3.9695e-16 1.79972 3.26974) (-4.31306e-16 1.78402 3.35155) (-4.70214e-16 1.75758 3.4161) (-5.1319e-16 1.70629 3.46908) (-5.56962e-16 1.63088 3.5021) (-5.96488e-16 1.55101 3.50927) (-6.26379e-16 1.48919 3.50935) (-6.44087e-16 1.45655 3.51792) (-6.5075e-16 1.44815 3.52951) (-6.4915e-16 1.44303 3.53185) (-6.4251e-16 1.43334 3.51701) (-6.33522e-16 1.41936 3.48113) (-6.23903e-16 1.39994 3.41914) (-6.14689e-16 1.37101 3.32882) (-6.07012e-16 1.33001 3.21395) (-6.02849e-16 1.28702 3.07932) (-6.02924e-16 1.24643 2.91313) (-6.02779e-16 1.19503 2.69136) (-6.03125e-16 1.03585 2.44885) (-6.08069e-16 0.904948 2.27266) (-6.24248e-16 0.957202 2.16292) (-6.28406e-16 1.05664 1.90899) (-3.85358e-16 0.685083 1.58842) (-2.2263e-16 -1.06102 1.42999) (-1.11261e-16 -2.78922 1.37321) (-5.92244e-17 -4.45824 1.39436) (-3.47434e-17 -5.78603 1.41327) (-2.42352e-17 -6.79849 1.4161) (-2.13928e-17 -7.49892 1.3982) (-2.09509e-17 -7.92122 1.36062) (-2.15926e-17 -8.12061 1.31597) (-2.24789e-17 -8.13346 1.2701) (-2.31632e-17 -8.0014 1.22999) (-2.36875e-17 -7.75479 1.19989) (-2.40322e-17 -7.41816 1.18192) (-2.42331e-17 -7.01184 1.17666) (-2.4291e-17 -6.55135 1.18291) (-2.42367e-17 -6.0514 1.19903) (-2.41323e-17 -5.52405 1.22242) (-2.40142e-17 -4.97978 1.2493) (-2.39061e-17 -4.43093 1.27418) (-2.38317e-17 -3.89578 1.28985) (-2.38028e-17 -3.37748 1.2878) (-2.38188e-17 -2.83656 1.26406) (-2.38622e-17 -2.33888 1.22963) (-9.11399e-16 -1.65868 -0.436875) (-9.6562e-16 -1.12316 -0.255793) (-9.42437e-16 -1.14806 -0.504798) (-9.96227e-16 -1.31848 -0.617357) (-1.22135e-15 -1.6321 -0.862608) (-1.55361e-15 -1.80834 -1.21861) (-1.87647e-15 -1.81818 -1.74161) (-2.07965e-15 -1.63147 -1.99422) (-2.14718e-15 -1.36868 -1.66862) (-2.13502e-15 -1.14843 -1.20232) (-2.08086e-15 -1.27228 -1.05098) (-1.99781e-15 -1.45575 -1.24989) (-1.86193e-15 -1.60173 -1.45633) (-1.67982e-15 -1.57035 -1.49351) (-1.52596e-15 -1.47156 -1.3683) (-1.42719e-15 -1.35221 -1.27071) (-1.30748e-15 -1.09285 -1.22778) (-1.16153e-15 -0.944428 -1.15828) (-1.00044e-15 -0.86504 -1.14909) (-8.28643e-16 -0.86497 -1.26584) (-6.8693e-16 -0.942094 -1.36288) (-5.61682e-16 -1.04508 -1.2414) (-4.53427e-16 -1.06523 -0.866017) (-3.82647e-16 -1.05365 -0.447189) (-3.58471e-16 -1.05915 -0.115633) (-3.47641e-16 -0.96392 0.144882) (-3.41282e-16 -0.583785 0.26867) (-3.74258e-16 0.625635 0.330011) (-1.81198e-16 0.55817 0.370419) (3.84179e-17 0.437398 0.0904005) (1.02704e-17 0.0758409 0.595217) (2.62742e-17 -0.419285 0.697413) (2.81942e-17 -0.612307 0.597) (-1.13053e-17 -0.6766 0.373562) (-6.56266e-17 -0.621364 0.12983) (-1.16849e-16 -0.312538 0.0692824) (-1.92579e-16 0.30414 0.29168) (-2.84287e-16 0.709449 0.620787) (-3.35977e-16 0.340591 1.0878) (-4.2173e-16 0.286773 1.02395) (-4.58866e-16 0.456553 0.93523) (-5.63608e-16 0.646778 1.10302) (-6.63562e-16 0.914108 1.16774) (-7.04034e-16 1.10119 1.11032) (-6.92633e-16 1.29657 1.04597) (-6.55033e-16 1.4829 1.03867) (-6.10033e-16 1.61632 1.12277) (-5.67713e-16 1.70768 1.29266) (-5.33299e-16 1.75846 1.52391) (-5.09175e-16 1.77367 1.7883) (-4.96174e-16 1.76265 2.0676) (-4.93353e-16 1.74244 2.34431) (-4.98516e-16 1.73126 2.59618) (-5.10674e-16 1.71375 2.81225) (-5.32999e-16 1.68027 2.9731) (-5.65725e-16 1.64134 3.08718) (-6.04299e-16 1.60722 3.18092) (-6.41044e-16 1.58016 3.27274) (-6.67987e-16 1.55441 3.36083) (-6.79867e-16 1.52375 3.43651) (-6.74001e-16 1.48697 3.49319) (-6.50427e-16 1.45475 3.53501) (-6.14192e-16 1.45105 3.56735) (-5.72436e-16 1.47302 3.59006) (-5.31209e-16 1.50021 3.59453) (-4.94942e-16 1.52063 3.57712) (-4.65553e-16 1.53606 3.53931) (-4.43281e-16 1.54668 3.48197) (-4.28354e-16 1.54807 3.40421) (-4.20471e-16 1.53807 3.30575) (-4.19225e-16 1.52058 3.18857) (-4.25831e-16 1.50259 3.05349) (-4.39332e-16 1.49872 2.89621) (-4.53049e-16 1.48886 2.69944) (-4.65067e-16 1.45112 2.44887) (-4.91433e-16 1.3375 2.23733) (-5.35648e-16 1.3279 2.12442) (-5.34022e-16 1.37956 1.96024) (-5.35215e-16 1.36986 1.68507) (-3.47454e-16 0.867669 1.32086) (-1.96239e-16 -0.823816 1.22904) (-1.03615e-16 -2.59343 1.22377) (-5.41673e-17 -4.26736 1.26941) (-3.26841e-17 -5.64587 1.30702) (-2.36606e-17 -6.69059 1.31641) (-2.10036e-17 -7.44582 1.30301) (-2.11415e-17 -7.91642 1.26745) (-2.17511e-17 -8.16504 1.22345) (-2.26366e-17 -8.22655 1.17998) (-2.33376e-17 -8.13778 1.1447) (-2.39199e-17 -7.92923 1.12313) (-2.42877e-17 -7.62457 1.117) (-2.44216e-17 -7.24597 1.12665) (-2.44184e-17 -6.80997 1.15053) (-2.43296e-17 -6.3309 1.18628) (-2.4188e-17 -5.82156 1.23056) (-2.4039e-17 -5.29466 1.27986) (-2.39107e-17 -4.74725 1.32974) (-2.38131e-17 -4.14621 1.37366) (-2.37555e-17 -3.50917 1.39399) (-6.3027e-16 -1.59733 -0.45316) (-7.16181e-16 -1.24075 -0.0607196) (-6.93426e-16 -1.06289 -0.261534) (-7.11716e-16 -1.27838 -0.497774) (-8.74505e-16 -1.54157 -0.74097) (-1.16317e-15 -1.73694 -0.954262) (-1.51281e-15 -1.80699 -1.35774) (-1.80461e-15 -1.76103 -1.796) (-1.96322e-15 -1.51606 -1.903) (-2.0143e-15 -1.27737 -1.61649) (-2.0033e-15 -1.2761 -1.29416) (-1.965e-15 -1.43064 -1.21153) (-1.88172e-15 -1.64724 -1.28563) (-1.71268e-15 -1.63002 -1.38896) (-1.48227e-15 -1.42278 -1.36392) (-1.29545e-15 -1.16583 -1.27877) (-1.17809e-15 -0.878852 -1.20615) (-1.04742e-15 -0.716812 -1.07136) (-8.96719e-16 -0.63521 -0.921421) (-7.49054e-16 -0.562861 -1.04618) (-6.13354e-16 -0.756228 -1.38174) (-4.80988e-16 -0.983111 -1.66475) (-3.62245e-16 -0.99402 -1.74095) (-2.74482e-16 -1.04304 -1.51235) (-2.19697e-16 -1.05276 -1.14881) (-1.70014e-16 -1.02667 -0.789745) (-1.21667e-16 -0.817643 -0.561884) (-1.08257e-16 -0.223468 -0.407718) (-3.72629e-17 -0.11429 -0.0987535) (6.33645e-17 0.212019 -0.226136) (5.63261e-17 -0.0613259 0.262028) (6.18857e-17 -0.307573 0.456716) (7.29391e-17 -0.514056 0.495746) (5.30974e-17 -0.6454 0.430528) (1.21577e-17 -0.749268 0.256514) (-2.86611e-17 -0.669336 0.0972279) (-8.81502e-17 -0.301255 0.129777) (-1.87718e-16 0.16741 0.455757) (-2.86295e-16 0.460222 0.826495) (-3.20608e-16 0.397325 0.868745) (-3.32782e-16 0.367562 0.861568) (-5.02631e-16 0.487279 0.977643) (-7.04882e-16 0.608385 1.3304) (-6.29866e-16 0.81083 1.30544) (-6.80726e-16 0.960305 1.371) (-7.06291e-16 1.08586 1.33148) (-7.04059e-16 1.23279 1.2785) (-6.85537e-16 1.36152 1.28307) (-6.6329e-16 1.46565 1.35547) (-6.44623e-16 1.52483 1.49125) (-6.3282e-16 1.54429 1.67463) (-6.28585e-16 1.55773 1.89081) (-6.30084e-16 1.56906 2.12437) (-6.39527e-16 1.56613 2.33931) (-6.65027e-16 1.54393 2.5304) (-6.93358e-16 1.51928 2.73513) (-7.05835e-16 1.5093 2.96034) (-6.9189e-16 1.51326 3.18497) (-6.52532e-16 1.52207 3.38354) (-5.93945e-16 1.52623 3.54184) (-5.21621e-16 1.51721 3.65056) (-4.41539e-16 1.49495 3.70407) (-3.62959e-16 1.477 3.7142) (-2.93661e-16 1.48286 3.70035) (-2.37401e-16 1.50453 3.67015) (-1.95568e-16 1.52772 3.62377) (-1.66755e-16 1.55214 3.56394) (-1.48241e-16 1.57338 3.49498) (-1.38801e-16 1.58983 3.41738) (-1.37708e-16 1.60498 3.32877) (-1.43517e-16 1.61683 3.22729) (-1.55205e-16 1.62381 3.11186) (-1.73759e-16 1.63342 2.9849) (-1.99865e-16 1.65008 2.84622) (-2.31103e-16 1.67585 2.67365) (-2.65191e-16 1.6686 2.46096) (-3.12215e-16 1.64541 2.22875) (-3.76652e-16 1.63002 2.05273) (-4.47078e-16 1.69175 1.93521) (-4.48689e-16 1.78973 1.72996) (-4.44944e-16 1.68525 1.46281) (-3.25956e-16 1.17739 1.09723) (-1.75579e-16 -0.423177 0.994591) (-1.00285e-16 -2.25684 1.05897) (-5.2094e-17 -3.94168 1.12274) (-3.19919e-17 -5.4053 1.18428) (-2.40831e-17 -6.50571 1.20285) (-2.11037e-17 -7.33078 1.19296) (-2.12181e-17 -7.87364 1.15887) (-2.17487e-17 -8.18811 1.11508) (-2.27441e-17 -8.3134 1.07473) (-2.36449e-17 -8.28142 1.04553) (-2.41825e-17 -8.12612 1.03378) (-2.44894e-17 -7.87165 1.04204) (-2.46026e-17 -7.5382 1.0702) (-2.45509e-17 -7.14308 1.11585) (-2.44142e-17 -6.70251 1.17538) (-2.42533e-17 -6.21342 1.2452) (-2.40953e-17 -5.62468 1.31757) (-2.39763e-17 -4.9549 1.36572) (-4.22544e-16 -1.7604 -0.754479) (-4.96917e-16 -1.34328 -0.161241) (-4.94807e-16 -1.04084 -0.143733) (-4.89599e-16 -1.24414 -0.445105) (-5.8396e-16 -1.51389 -0.632781) (-7.9394e-16 -1.74013 -0.791874) (-1.10036e-15 -1.71518 -1.06701) (-1.42377e-15 -1.63887 -1.50558) (-1.65869e-15 -1.50043 -1.89383) (-1.776e-15 -1.38379 -1.90949) (-1.81458e-15 -1.3621 -1.68743) (-1.81415e-15 -1.60778 -1.43349) (-1.79351e-15 -1.902 -1.31548) (-1.72164e-15 -1.97849 -1.29109) (-1.55825e-15 -1.73622 -1.27191) (-1.33548e-15 -1.34147 -1.28504) (-1.16537e-15 -1.21811 -1.28678) (-1.03171e-15 -1.18932 -1.15113) (-8.61622e-16 -0.482191 -1.0991) (-7.04233e-16 -0.148713 -1.09228) (-5.54297e-16 -0.402786 -1.2887) (-4.18281e-16 -0.667176 -1.59675) (-3.02817e-16 -0.818164 -1.84391) (-2.17535e-16 -0.990714 -1.83996) (-1.56016e-16 -1.04407 -1.6162) (-9.19433e-17 -0.999578 -1.30816) (-2.87416e-17 -0.855544 -1.06579) (1.36432e-17 -0.620734 -0.850689) (4.61378e-17 -0.565754 -0.510785) (7.67065e-17 -0.438538 -0.377673) (6.94202e-17 -0.347078 -0.114872) (6.82743e-17 -0.411469 0.111603) (8.26865e-17 -0.539263 0.25718) (7.68212e-17 -0.666702 0.331507) (5.95267e-17 -0.84541 0.291378) (4.55751e-17 -0.961809 0.159665) (3.01669e-17 -0.896041 0.0309518) (-6.75808e-18 -0.638695 0.0693246) (-6.48105e-17 -0.303889 0.287612) (-1.1987e-16 -0.0177946 0.509101) (-1.88416e-16 0.211606 0.690352) (-3.06228e-16 0.515157 0.904125) (-4.11409e-16 0.623132 1.30202) (-3.15384e-16 0.568446 1.51944) (-6.01421e-16 0.922515 1.76954) (-6.30074e-16 0.91697 1.71441) (-6.50622e-16 1.09798 1.74883) (-6.90542e-16 1.2046 1.73524) (-7.19196e-16 1.27075 1.69343) (-7.30044e-16 1.29792 1.6819) (-7.29663e-16 1.32314 1.74411) (-7.28035e-16 1.36071 1.85106) (-7.28672e-16 1.39307 1.96699) (-7.29771e-16 1.45321 2.16672) (-7.07562e-16 1.52537 2.48655) (-6.52297e-16 1.58073 2.82511) (-5.67206e-16 1.60207 3.10182) (-4.66801e-16 1.59266 3.29647) (-3.64899e-16 1.56937 3.42371) (-2.69677e-16 1.54187 3.504) (-1.84713e-16 1.50844 3.5514) (-1.12041e-16 1.46523 3.56747) (-5.4343e-17 1.41839 3.55495) (-1.24581e-17 1.38917 3.5272) (1.54993e-17 1.38703 3.49477) (3.21406e-17 1.40201 3.45635) (4.05286e-17 1.42534 3.4077) (4.36319e-17 1.45442 3.34893) (4.28714e-17 1.48279 3.28255) (3.84623e-17 1.50962 3.20848) (3.07906e-17 1.54205 3.12476) (2.10274e-17 1.58058 3.02868) (8.90118e-18 1.61345 2.92227) (-8.02601e-18 1.64779 2.80888) (-3.17663e-17 1.69671 2.69) (-6.2051e-17 1.74702 2.55134) (-9.86351e-17 1.78794 2.37941) (-1.45901e-16 1.80025 2.18705) (-2.13021e-16 1.82007 2.00231) (-2.93103e-16 1.89235 1.84648) (-3.70674e-16 2.01215 1.7103) (-3.82524e-16 2.15453 1.47704) (-3.73155e-16 2.02704 1.21134) (-3.13755e-16 1.55873 0.879758) (-1.66982e-16 0.16327 0.732387) (-1.01224e-16 -1.76718 0.870472) (-5.43518e-17 -3.47392 0.960658) (-3.35357e-17 -5.0244 1.04558) (-2.4856e-17 -6.21909 1.07487) (-2.12261e-17 -7.13326 1.06834) (-2.09566e-17 -7.77579 1.03706) (-2.20518e-17 -8.17494 0.993212) (-2.2965e-17 -8.38328 0.953928) (-2.38508e-17 -8.43184 0.929528) (-2.44486e-17 -8.3512 0.927565) (-2.47202e-17 -8.16847 0.952146) (-2.47582e-17 -7.90508 1.00275) (-2.46683e-17 -7.55571 1.07571) (-2.45123e-17 -7.05426 1.1603) (-2.43717e-17 -6.46032 1.2283) (-2.81674e-16 -1.96317 -1.25658) (-3.37429e-16 -1.42887 -0.531329) (-3.41623e-16 -1.0165 -0.281967) (-3.24422e-16 -1.24527 -0.482143) (-3.66812e-16 -1.58279 -0.559385) (-4.99271e-16 -1.86339 -0.697145) (-7.21439e-16 -1.7424 -0.867181) (-1.00601e-15 -1.50786 -1.16533) (-1.27577e-15 -1.32596 -1.59347) (-1.45687e-15 -1.27478 -1.87035) (-1.54818e-15 -1.38014 -1.84413) (-1.57907e-15 -1.66132 -1.65999) (-1.58632e-15 -1.87541 -1.55171) (-1.57027e-15 -1.97371 -1.48614) (-1.48736e-15 -1.84371 -1.36973) (-1.31806e-15 -1.59784 -1.21069) (-1.12934e-15 -1.52815 -1.12065) (-9.62366e-16 -1.20862 -1.19753) (-7.84428e-16 -0.6073 -1.30356) (-6.15336e-16 -0.551695 -1.19943) (-4.69214e-16 -0.500792 -1.27849) (-3.4718e-16 -0.577527 -1.49471) (-2.45181e-16 -0.785472 -1.7204) (-1.67126e-16 -1.03229 -1.8491) (-1.03045e-16 -1.11623 -1.82631) (-3.44984e-17 -1.08474 -1.66209) (2.74619e-17 -1.02221 -1.42726) (6.54544e-17 -0.802387 -1.21458) (7.38759e-17 -0.660273 -0.960079) (6.7351e-17 -0.603418 -0.865354) (5.1617e-17 -0.623162 -0.602901) (4.87589e-17 -0.642624 -0.322021) (5.285e-17 -0.657696 -0.11487) (4.57542e-17 -0.744088 0.0491338) (4.46826e-17 -0.871737 0.152974) (5.19507e-17 -1.00452 0.174366) (5.89992e-17 -1.0692 0.0712137) (5.70952e-17 -0.997428 -0.0377263) (4.18777e-17 -0.817544 -0.0246485) (1.62512e-17 -0.607182 0.114924) (-1.34958e-17 -0.414081 0.312153) (-4.29329e-17 -0.200043 0.518592) (-7.71151e-17 0.0317308 0.708621) (-1.06895e-16 0.152582 0.830459) (-3.07118e-16 0.734705 1.35322) (-2.12337e-16 0.842931 1.27807) (-1.33994e-16 0.841944 1.56756) (-2.83289e-16 1.00182 1.9906) (-4.00282e-16 1.10814 2.09989) (-4.04411e-16 1.14114 2.21224) (-3.59026e-16 1.21562 2.43309) (-3.57897e-16 1.30109 2.59966) (-3.75942e-16 1.38709 2.77116) (-3.60644e-16 1.46711 2.96467) (-2.93524e-16 1.50651 3.09362) (-2.08111e-16 1.50025 3.13044) (-1.2596e-16 1.46714 3.10369) (-5.85096e-17 1.41809 3.05916) (-7.93796e-18 1.36262 3.03113) (2.7512e-17 1.30715 3.03742) (4.98364e-17 1.26727 3.07499) (6.17576e-17 1.23839 3.13332) (6.62755e-17 1.21307 3.18928) (6.60457e-17 1.19244 3.23031) (6.3457e-17 1.18918 3.25243) (6.02214e-17 1.20503 3.25826) (5.71937e-17 1.2395 3.24589) (5.47943e-17 1.27766 3.21788) (5.29373e-17 1.31516 3.17594) (5.10822e-17 1.35638 3.12311) (4.86069e-17 1.40756 3.05889) (4.52972e-17 1.45751 2.98538) (4.13849e-17 1.50596 2.89937) (3.65952e-17 1.55946 2.79923) (3.03174e-17 1.61811 2.6896) (2.19541e-17 1.6837 2.57621) (7.78595e-18 1.75717 2.45384) (-1.27686e-17 1.82628 2.31215) (-4.36136e-17 1.88325 2.1486) (-9.17402e-17 1.92642 1.9787) (-1.61831e-16 1.99903 1.81793) (-2.39869e-16 2.15715 1.65296) (-3.12158e-16 2.32756 1.48522) (-3.37173e-16 2.49761 1.24751) (-3.1774e-16 2.39336 0.978252) (-2.9138e-16 1.9608 0.693605) (-1.76338e-16 0.877767 0.511886) (-1.0286e-16 -1.05057 0.653558) (-6.15429e-17 -2.83144 0.787938) (-3.56298e-17 -4.46308 0.88847) (-2.52838e-17 -5.802 0.938223) (-2.2124e-17 -6.82085 0.935343) (-2.11561e-17 -7.58897 0.905026) (-2.20769e-17 -8.10683 0.857637) (-2.32513e-17 -8.42365 0.813763) (-2.41412e-17 -8.58574 0.79162) (-2.4713e-17 -8.61771 0.799553) (-2.49416e-17 -8.51239 0.841029) (-2.49301e-17 -8.20406 0.908244) (-2.48162e-17 -7.81027 0.976171) (-1.82843e-16 -2.16938 -1.7827) (-2.20189e-16 -1.58778 -1.0967) (-2.25472e-16 -1.07363 -0.55565) (-2.02882e-16 -1.21775 -0.574618) (-2.12423e-16 -1.56401 -0.604112) (-2.83835e-16 -1.89033 -0.726129) (-4.24163e-16 -1.9011 -0.798934) (-6.3656e-16 -1.74768 -0.909625) (-8.89468e-16 -1.59698 -1.13522) (-1.11669e-15 -1.55847 -1.40434) (-1.27297e-15 -1.58643 -1.53504) (-1.35152e-15 -1.58256 -1.5825) (-1.37551e-15 -1.60197 -1.65198) (-1.37993e-15 -1.75254 -1.65812) (-1.34603e-15 -1.8695 -1.57301) (-1.23288e-15 -1.86248 -1.37946) (-1.06356e-15 -1.61442 -1.22959) (-8.89974e-16 -1.06125 -1.28842) (-7.18396e-16 -0.918779 -1.29024) (-5.51074e-16 -0.910795 -1.22763) (-4.09583e-16 -0.743684 -1.22483) (-2.92989e-16 -0.71292 -1.35685) (-2.01097e-16 -0.917129 -1.55153) (-1.29485e-16 -1.12215 -1.79427) (-6.77141e-17 -1.15494 -1.9557) (-3.28437e-18 -1.17889 -1.92473) (5.37097e-17 -1.16939 -1.76819) (8.98981e-17 -0.964504 -1.57348) (8.59003e-17 -0.780193 -1.33484) (4.61272e-17 -0.761517 -1.17913) (2.58209e-17 -0.827395 -0.977302) (2.15334e-17 -0.817963 -0.728405) (9.49688e-18 -0.811101 -0.50871) (-3.33655e-18 -0.839256 -0.331771) (4.72662e-18 -0.897862 -0.128439) (1.5677e-17 -0.999957 0.0327262) (2.28307e-17 -1.09045 0.0453008) (2.90684e-17 -1.10611 -0.0319002) (3.24756e-17 -1.05452 -0.0973322) (3.2298e-17 -0.975719 -0.0949479) (2.78688e-17 -0.883101 -0.00576289) (1.81721e-17 -0.769216 0.141676) (6.89709e-18 -0.617505 0.316122) (-4.30953e-19 -0.417469 0.487427) (-9.97086e-18 -0.0805791 0.626195) (1.33564e-18 0.205356 0.62192) (1.76484e-17 0.306653 0.950196) (9.12574e-18 0.340585 1.24926) (-6.29179e-18 0.370753 1.53247) (-8.27559e-18 0.716264 1.90136) (3.40587e-17 0.909551 2.2368) (-2.80597e-17 1.00035 2.5411) (-5.60639e-17 0.996971 2.59699) (7.1718e-18 0.959716 2.44293) (5.88047e-17 0.910397 2.27828) (6.55113e-17 0.872983 2.21747) (5.82176e-17 0.873504 2.25308) (4.90947e-17 0.897255 2.353) (4.10502e-17 0.922982 2.49417) (3.41459e-17 0.94943 2.64335) (2.8297e-17 0.961082 2.78298) (2.37789e-17 0.961544 2.89935) (2.07951e-17 0.963923 2.99619) (1.92598e-17 0.963783 3.06396) (1.89552e-17 0.963596 3.10391) (1.96578e-17 0.979063 3.11979) (2.10479e-17 1.01165 3.12713) (2.28515e-17 1.05826 3.12876) (2.48273e-17 1.11002 3.12445) (2.6872e-17 1.1641 3.10504) (2.87686e-17 1.22082 3.07118) (3.03439e-17 1.28072 3.02166) (3.12522e-17 1.35147 2.95691) (3.15652e-17 1.42222 2.87614) (3.1147e-17 1.49194 2.78054) (3.01144e-17 1.56426 2.67203) (2.99901e-17 1.6446 2.55492) (2.92678e-17 1.73167 2.43206) (2.34507e-17 1.82428 2.30076) (1.03557e-17 1.90902 2.15631) (-1.56248e-17 1.98376 2.00047) (-6.13913e-17 2.06501 1.84277) (-1.27731e-16 2.18839 1.68506) (-2.00318e-16 2.40881 1.50378) (-2.62354e-16 2.63068 1.29931) (-2.99673e-16 2.81346 1.05414) (-2.82224e-16 2.78773 0.78367) (-2.659e-16 2.41776 0.536512) (-2.065e-16 1.62486 0.325909) (-1.07827e-16 -0.0720026 0.392372) (-6.95616e-17 -1.98009 0.586256) (-4.07022e-17 -3.66003 0.710688) (-2.73338e-17 -5.17772 0.791449) (-2.24823e-17 -6.35362 0.799045) (-2.17024e-17 -7.2707 0.762633) (-2.22588e-17 -7.97043 0.711644) (-2.35838e-17 -8.45324 0.660263) (-2.45109e-17 -8.7236 0.633891) (-2.50365e-17 -8.74382 0.644003) (-2.52202e-17 -8.68557 0.67995) (-1.23277e-16 -2.339 -2.14321) (-1.42845e-16 -1.70416 -1.71262) (-1.48705e-16 -1.11832 -0.904996) (-1.27277e-16 -1.07195 -0.731572) (-1.16997e-16 -1.42668 -0.749493) (-1.46174e-16 -1.83411 -0.795483) (-2.19338e-16 -2.1306 -0.79444) (-3.50085e-16 -2.15892 -0.801916) (-5.38191e-16 -2.06913 -0.886952) (-7.52262e-16 -1.95089 -1.08957) (-9.46929e-16 -1.73086 -1.32168) (-1.08756e-15 -1.42607 -1.4949) (-1.15659e-15 -1.35853 -1.61563) (-1.1882e-15 -1.48494 -1.707) (-1.19871e-15 -1.63125 -1.72951) (-1.13831e-15 -1.67238 -1.63183) (-9.92272e-16 -1.40746 -1.48472) (-8.13761e-16 -1.11073 -1.36799) (-6.58191e-16 -1.19485 -1.27918) (-5.1354e-16 -1.08945 -1.30392) (-3.78857e-16 -0.971209 -1.24801) (-2.64127e-16 -0.936666 -1.24989) (-1.76697e-16 -1.04932 -1.39842) (-1.10714e-16 -1.13805 -1.69773) (-5.2381e-17 -1.20324 -1.95583) (3.95342e-18 -1.30866 -2.04301) (5.35566e-17 -1.32 -2.01292) (8.95346e-17 -1.15524 -1.87395) (8.85283e-17 -0.976983 -1.66747) (4.5639e-17 -0.927112 -1.48724) (8.66725e-18 -0.948994 -1.31807) (-6.99579e-18 -0.932997 -1.1263) (-2.26231e-17 -0.939005 -0.917271) (-2.75997e-17 -0.941917 -0.712005) (-1.87421e-17 -0.96712 -0.481816) (-2.1798e-17 -1.03757 -0.291942) (-2.64166e-17 -1.13335 -0.185707) (-1.64167e-17 -1.17062 -0.132992) (-2.63825e-18 -1.15183 -0.131296) (5.58772e-18 -1.13201 -0.164107) (1.01589e-17 -1.10217 -0.159884) (1.28156e-17 -1.03798 -0.0872343) (1.39977e-17 -0.949752 0.0401037) (1.44972e-17 -0.828513 0.207882) (1.49244e-17 -0.639485 0.416554) (1.63166e-17 -0.348215 0.654885) (1.82518e-17 -0.0446255 0.905164) (1.94192e-17 0.195801 1.19728) (2.03029e-17 0.325091 1.52402) (2.00538e-17 0.450443 1.72515) (2.29719e-17 0.386735 1.54757) (3.02757e-17 0.373364 1.4834) (2.62467e-17 0.253439 1.38246) (6.25533e-18 0.347553 1.53313) (-2.0767e-18 0.401242 1.67622) (-2.08755e-18 0.430691 1.7986) (-1.89686e-18 0.477332 1.96433) (-7.10251e-19 0.552797 2.15473) (5.72713e-19 0.627754 2.34552) (1.99392e-18 0.683318 2.50654) (3.46681e-18 0.704048 2.62871) (5.12676e-18 0.713746 2.71353) (6.87537e-18 0.712066 2.78208) (8.88209e-18 0.704618 2.83358) (1.08994e-17 0.704583 2.87321) (1.29142e-17 0.720088 2.90984) (1.48393e-17 0.750803 2.95534) (1.66724e-17 0.804288 3.00848) (1.84023e-17 0.868182 3.0623) (2.00804e-17 0.931444 3.10069) (2.17344e-17 0.991637 3.11601) (2.33846e-17 1.05869 3.10545) (2.50172e-17 1.13171 3.07051) (2.64764e-17 1.20959 3.01243) (2.76707e-17 1.2906 2.9325) (2.84544e-17 1.37282 2.83357) (2.87009e-17 1.45568 2.72294) (2.88462e-17 1.54811 2.60255) (3.15832e-17 1.64945 2.47481) (3.53449e-17 1.75774 2.34162) (3.51526e-17 1.86566 2.20415) (2.70517e-17 1.96675 2.06134) (5.27171e-18 2.06383 1.91412) (-3.64072e-17 2.18583 1.76413) (-9.58397e-17 2.35665 1.6032) (-1.62651e-16 2.61578 1.40847) (-2.17763e-16 2.89979 1.1791) (-2.58614e-16 3.10866 0.921108) (-2.59602e-16 3.20614 0.642308) (-2.36645e-16 2.93959 0.414337) (-2.16327e-16 2.30254 0.19583) (-1.35189e-16 1.15531 0.135399) (-7.62314e-17 -0.77895 0.342096) (-4.95088e-17 -2.57005 0.508657) (-3.04281e-17 -4.2162 0.62126) (-2.35914e-17 -5.6929 0.663371) (-2.23351e-17 -6.85248 0.628535) (-2.2921e-17 -7.72227 0.56306) (-2.3903e-17 -8.29559 0.511813) (-2.50981e-17 -8.69526 0.480547) (-9.30897e-17 -2.35481 -2.3625) (-9.85404e-17 -1.75383 -2.25334) (-1.03737e-16 -1.1642 -1.36992) (-8.92086e-17 -0.954685 -0.882587) (-7.28363e-17 -1.24218 -0.891331) (-7.72301e-17 -1.6862 -0.836643) (-1.02679e-16 -2.17887 -0.83763) (-1.59048e-16 -2.37819 -0.808763) (-2.568e-16 -2.34849 -0.815579) (-3.93368e-16 -2.12743 -0.956441) (-5.53593e-16 -1.77376 -1.21977) (-7.14882e-16 -1.45015 -1.47293) (-8.45817e-16 -1.30494 -1.63649) (-9.38437e-16 -1.19488 -1.80761) (-1.01731e-15 -1.26026 -1.92243) (-1.04617e-15 -1.38099 -1.91329) (-9.66518e-16 -1.34999 -1.74029) (-7.88312e-16 -1.28939 -1.45312) (-6.13324e-16 -1.23935 -1.31604) (-4.87003e-16 -1.14091 -1.37027) (-3.7016e-16 -1.12082 -1.3708) (-2.60221e-16 -1.04618 -1.35624) (-1.77124e-16 -1.04364 -1.4057) (-1.14553e-16 -1.08853 -1.59744) (-5.92011e-17 -1.20227 -1.84436) (-9.05769e-18 -1.33039 -2.04845) (3.36131e-17 -1.38146 -2.15947) (6.62203e-17 -1.30882 -2.1367) (6.95431e-17 -1.16244 -1.99875) (3.65044e-17 -1.059 -1.84738) (3.37914e-19 -1.06295 -1.68767) (-1.96138e-17 -1.05142 -1.54256) (-2.90896e-17 -1.04075 -1.35321) (-2.55335e-17 -1.0437 -1.11845) (-2.54234e-17 -1.04697 -0.868622) (-4.19629e-17 -1.09403 -0.684216) (-4.37614e-17 -1.18521 -0.544649) (-2.54647e-17 -1.23803 -0.399406) (-1.54116e-17 -1.23715 -0.282776) (-1.51148e-17 -1.22301 -0.245922) (-1.14258e-17 -1.20811 -0.248183) (-6.1972e-18 -1.18831 -0.231443) (-3.40902e-18 -1.17003 -0.17314) (-2.09642e-18 -1.13277 -0.0715697) (-4.26968e-19 -1.05209 0.069428) (2.90129e-18 -0.925054 0.250969) (6.60648e-18 -0.757602 0.465076) (9.3155e-18 -0.530898 0.6738) (1.14867e-17 -0.254552 0.844885) (1.3727e-17 0.0112196 0.94429) (1.39172e-17 0.125112 1.00254) (1.15288e-17 0.0748749 1.09043) (4.4782e-18 0.0171388 1.2496) (-3.52441e-19 0.0496564 1.40143) (1.94538e-18 0.0909809 1.47998) (4.3515e-18 0.126359 1.56807) (6.27717e-18 0.175142 1.68963) (7.80434e-18 0.24849 1.83516) (8.98522e-18 0.334177 1.98145) (9.93014e-18 0.395206 2.12907) (1.08029e-17 0.427468 2.26173) (1.17371e-17 0.444643 2.37079) (1.26612e-17 0.459853 2.45868) (1.36155e-17 0.459135 2.52786) (1.46768e-17 0.459028 2.58606) (1.58695e-17 0.463856 2.65656) (1.7047e-17 0.49633 2.74443) (1.81486e-17 0.55046 2.84529) (1.90886e-17 0.622903 2.94377) (1.99539e-17 0.69048 3.0306) (2.07771e-17 0.76421 3.09545) (2.16221e-17 0.829003 3.13701) (2.25077e-17 0.895689 3.14811) (2.34564e-17 0.962622 3.13139) (2.44152e-17 1.03688 3.08408) (2.53605e-17 1.11111 3.01123) (2.62286e-17 1.19082 2.91474) (2.68804e-17 1.27793 2.80144) (2.68942e-17 1.37116 2.67894) (2.69808e-17 1.47756 2.55049) (3.04292e-17 1.59421 2.41683) (3.65566e-17 1.7174 2.27762) (4.10521e-17 1.841 2.13847) (3.81375e-17 1.9652 2.00096) (2.22445e-17 2.094 1.86482) (-1.23446e-17 2.25784 1.72286) (-6.33999e-17 2.48196 1.56341) (-1.22885e-16 2.77807 1.36427) (-1.76048e-16 3.13463 1.1189) (-2.13989e-16 3.40993 0.854643) (-2.35461e-16 3.56753 0.561215) (-2.19162e-16 3.50526 0.314184) (-2.01386e-16 3.05739 0.118187) (-1.74557e-16 2.23084 -0.0842888) (-9.37177e-17 0.945266 0.00539331) (-5.58643e-17 -1.10063 0.270318) (-3.79386e-17 -2.99255 0.437796) (-2.63985e-17 -4.70517 0.538918) (-2.26219e-17 -6.24425 0.559922) (-2.33928e-17 -7.40212 0.522397) (-1.02269e-16 -2.21372 -2.26705) (-9.17025e-17 -1.88037 -2.24797) (-7.62841e-17 -1.2707 -1.8241) (-7.50316e-17 -0.813857 -1.02229) (-5.98593e-17 -0.952651 -0.874997) (-5.50677e-17 -1.39268 -0.814046) (-5.7236e-17 -1.95487 -0.859032) (-6.91758e-17 -2.31709 -0.885258) (-1.0186e-16 -2.41174 -0.866978) (-1.62439e-16 -2.31046 -0.8897) (-2.51737e-16 -2.08851 -1.01785) (-3.65359e-16 -1.83091 -1.23037) (-4.93345e-16 -1.57016 -1.4832) (-6.25096e-16 -1.35701 -1.72845) (-7.64131e-16 -1.2979 -1.93489) (-8.8965e-16 -1.35868 -2.05485) (-9.34144e-16 -1.3776 -1.98069) (-8.31946e-16 -1.29183 -1.70947) (-6.36529e-16 -1.14699 -1.46824) (-4.91483e-16 -1.14627 -1.40361) (-3.85841e-16 -1.13656 -1.45602) (-2.83997e-16 -1.10419 -1.50045) (-2.04549e-16 -1.10723 -1.5063) (-1.4407e-16 -1.09144 -1.56117) (-9.49637e-17 -1.15936 -1.69913) (-5.1856e-17 -1.27826 -1.91231) (-1.3505e-17 -1.38769 -2.10247) (1.98366e-17 -1.40445 -2.1979) (3.53466e-17 -1.29417 -2.18488) (2.24442e-17 -1.18371 -2.08696) (-1.71358e-18 -1.10955 -1.92562) (-2.40617e-17 -1.08272 -1.79188) (-3.04368e-17 -1.14792 -1.66303) (-2.33438e-17 -1.17943 -1.45532) (-3.12837e-17 -1.1489 -1.20546) (-3.99461e-17 -1.16096 -1.01722) (-2.38914e-17 -1.22343 -0.879076) (-9.75302e-18 -1.28971 -0.718002) (-1.28801e-17 -1.32113 -0.557973) (-1.72525e-17 -1.31383 -0.441448) (-1.5784e-17 -1.30382 -0.364615) (-1.36639e-17 -1.30859 -0.322352) (-1.16961e-17 -1.32729 -0.292192) (-9.34694e-18 -1.329 -0.255879) (-7.19978e-18 -1.299 -0.186932) (-5.61015e-18 -1.22275 -0.076356) (-4.60485e-18 -1.10429 0.0729828) (-3.65186e-18 -0.944254 0.240951) (-2.33065e-18 -0.751316 0.421323) (-8.95466e-19 -0.532694 0.596779) (2.30214e-19 -0.345556 0.748762) (1.13688e-18 -0.236773 0.862053) (2.21903e-18 -0.207279 0.970997) (3.86685e-18 -0.179169 1.06814) (5.22578e-18 -0.156056 1.16459) (6.65844e-18 -0.135702 1.27015) (8.09843e-18 -0.0999098 1.39474) (9.37575e-18 -0.0329247 1.53367) (1.0528e-17 0.0486857 1.68262) (1.15944e-17 0.122515 1.82775) (1.26641e-17 0.172816 1.96124) (1.37661e-17 0.206198 2.07453) (1.49062e-17 0.234883 2.16812) (1.60498e-17 0.252424 2.24633) (1.72833e-17 0.251917 2.31911) (1.85136e-17 0.244787 2.39701) (1.97013e-17 0.268862 2.48704) (2.07504e-17 0.325772 2.58657) (2.16058e-17 0.399483 2.69923) (2.22991e-17 0.464054 2.8245) (2.28954e-17 0.540294 2.93809) (2.33981e-17 0.60563 3.03296) (2.38348e-17 0.673118 3.09354) (2.42218e-17 0.724361 3.12748) (2.45742e-17 0.787576 3.13255) (2.49557e-17 0.854335 3.11611) (2.53365e-17 0.925054 3.06739) (2.57273e-17 0.994295 2.99671) (2.61283e-17 1.06636 2.90368) (2.6376e-17 1.15293 2.79259) (2.61618e-17 1.25079 2.66954) (2.57941e-17 1.36192 2.54005) (2.78926e-17 1.48425 2.40547) (3.38276e-17 1.61623 2.26279) (4.12448e-17 1.75222 2.1221) (4.36585e-17 1.90082 1.98829) (3.51091e-17 2.06667 1.86134) (1.05177e-17 2.27004 1.7283) (-3.07422e-17 2.5408 1.5739) (-8.08505e-17 2.87741 1.38465) (-1.31645e-16 3.27393 1.13987) (-1.70415e-16 3.66185 0.867332) (-1.97034e-16 3.90748 0.580756) (-2.05592e-16 4.0106 0.271246) (-1.85395e-16 3.88435 0.0632511) (-1.70209e-16 3.34144 -0.147388) (-1.43054e-16 2.48674 -0.366768) (-7.39882e-17 1.24765 -0.0419321) (-4.32186e-17 -1.49327 0.406961) (-3.05323e-17 -4.04458 0.683261) (-1.55199e-16 -1.81254 -1.89778) (-1.41296e-16 -1.92222 -1.71826) (-7.67056e-17 -1.37757 -1.91711) (-6.97967e-17 -0.811744 -1.24697) (-6.4865e-17 -0.630919 -0.727295) (-6.11324e-17 -1.05894 -0.611958) (-5.64768e-17 -1.52976 -0.674538) (-4.76237e-17 -1.96269 -0.864402) (-4.3046e-17 -2.20919 -0.943853) (-5.30728e-17 -2.32047 -0.930742) (-8.34192e-17 -2.30086 -0.926703) (-1.36347e-16 -2.17187 -1.01139) (-2.13786e-16 -1.99536 -1.20398) (-3.17314e-16 -1.8167 -1.45906) (-4.5192e-16 -1.69059 -1.72799) (-6.12437e-16 -1.63293 -1.94667) (-7.61968e-16 -1.56434 -2.04831) (-8.17569e-16 -1.3868 -1.95385) (-7.13343e-16 -1.18869 -1.70307) (-5.46849e-16 -1.14502 -1.47979) (-4.29787e-16 -1.07585 -1.46409) (-3.4124e-16 -1.07207 -1.50099) (-2.58589e-16 -1.04607 -1.5399) (-1.90569e-16 -1.02629 -1.54839) (-1.3314e-16 -1.04699 -1.59623) (-8.49961e-17 -1.14019 -1.74287) (-4.3892e-17 -1.28849 -1.94368) (-6.40994e-18 -1.39192 -2.10089) (2.41118e-17 -1.37329 -2.17711) (3.42608e-17 -1.29963 -2.14987) (1.30732e-17 -1.17233 -2.02589) (-2.70321e-17 -1.14886 -1.8838) (-4.28254e-17 -1.22808 -1.81971) (-3.40359e-17 -1.27193 -1.69976) (-3.11884e-17 -1.26363 -1.49573) (-2.1075e-17 -1.26754 -1.31865) (-9.00127e-18 -1.28692 -1.18044) (-1.39919e-17 -1.35609 -1.03338) (-2.0675e-17 -1.42519 -0.884925) (-1.91786e-17 -1.45128 -0.735327) (-1.68325e-17 -1.43966 -0.599288) (-1.60154e-17 -1.43291 -0.49505) (-1.48073e-17 -1.44408 -0.430968) (-1.33668e-17 -1.47529 -0.387849) (-1.15796e-17 -1.50036 -0.343642) (-9.63648e-18 -1.48493 -0.273437) (-7.78583e-18 -1.4166 -0.173373) (-6.08377e-18 -1.31111 -0.0449791) (-4.54172e-18 -1.16909 0.0982825) (-2.9809e-18 -0.994177 0.248893) (-1.31617e-18 -0.813417 0.392038) (7.77955e-20 -0.666026 0.530695) (1.10188e-18 -0.569701 0.66207) (2.15973e-18 -0.505177 0.786528) (3.45282e-18 -0.449246 0.895568) (4.96431e-18 -0.401492 1.00393) (6.59075e-18 -0.356422 1.1143) (8.25782e-18 -0.305797 1.23601) (9.91539e-18 -0.233361 1.36429) (1.15305e-17 -0.154089 1.50031) (1.31141e-17 -0.0785297 1.62976) (1.46796e-17 -0.0253158 1.75522) (1.62063e-17 0.0191303 1.8649) (1.76754e-17 0.0429902 1.96546) (1.90739e-17 0.0525453 2.0524) (2.03687e-17 0.0417266 2.14242) (2.15662e-17 0.0411209 2.23766) (2.26302e-17 0.0524763 2.35145) (2.35805e-17 0.0964262 2.47166) (2.44021e-17 0.154151 2.59935) (2.51162e-17 0.243076 2.70962) (2.56884e-17 0.334837 2.8099) (2.61399e-17 0.438045 2.88115) (2.64492e-17 0.503199 2.95977) (2.66477e-17 0.569365 3.02479) (2.67833e-17 0.624899 3.07536) (2.68473e-17 0.690541 3.08878) (2.68895e-17 0.750997 3.09026) (2.69126e-17 0.813603 3.05553) (2.69513e-17 0.875549 3.00457) (2.69916e-17 0.951445 2.92346) (2.69872e-17 1.03544 2.82707) (2.67899e-17 1.13021 2.70902) (2.60799e-17 1.23478 2.58615) (2.59746e-17 1.35192 2.45823) (2.9375e-17 1.48224 2.32414) (3.60895e-17 1.62475 2.18712) (4.23059e-17 1.7869 2.05732) (4.12076e-17 1.97401 1.93596) (2.79708e-17 2.20251 1.81344) (-4.32612e-19 2.49524 1.67115) (-3.99874e-17 2.87414 1.49464) (-8.31258e-17 3.31036 1.2759) (-1.23681e-16 3.78208 1.00205) (-1.51807e-16 4.21539 0.723025) (-1.71562e-16 4.47938 0.413175) (-1.75378e-16 4.66282 0.0905106) (-1.56716e-16 4.67455 -0.0643182) (-1.45839e-16 4.08312 -0.196293) (-1.22576e-16 2.39012 0.0576958) (-2.35439e-16 -0.911255 -1.53807) (-2.47429e-16 -1.64202 -0.842377) (-1.55081e-16 -1.56657 -1.17186) (-6.19419e-17 -0.972445 -1.50808) (-7.60105e-17 -0.309255 -0.622269) (-8.61892e-17 -0.721872 -0.279227) (-8.14897e-17 -1.00684 -0.288535) (-6.96291e-17 -1.39828 -0.568628) (-4.98237e-17 -1.74526 -0.850434) (-3.11929e-17 -2.00921 -0.971593) (-2.24137e-17 -2.16437 -0.969331) (-2.57082e-17 -2.18599 -0.951868) (-4.4028e-17 -2.13527 -1.02172) (-8.36332e-17 -2.05263 -1.19864) (-1.54124e-16 -2.01396 -1.43342) (-2.66937e-16 -1.98497 -1.68445) (-4.21249e-16 -1.88888 -1.89889) (-5.78096e-16 -1.69184 -2.00551) (-6.49672e-16 -1.45932 -1.92896) (-5.87597e-16 -1.24247 -1.73494) (-4.74533e-16 -1.06537 -1.60388) (-3.86005e-16 -1.05452 -1.57563) (-2.97207e-16 -1.05746 -1.61514) (-2.14495e-16 -1.05123 -1.65426) (-1.41666e-16 -1.03785 -1.69162) (-7.97499e-17 -1.07712 -1.75998) (-2.96424e-17 -1.19582 -1.88524) (1.03467e-17 -1.32386 -2.0282) (3.84092e-17 -1.35158 -2.1392) (4.26069e-17 -1.28318 -2.17341) (8.49411e-18 -1.22028 -2.13713) (-3.96523e-17 -1.25095 -2.09931) (-4.72933e-17 -1.31042 -2.08188) (-2.54219e-17 -1.33456 -1.99808) (-1.88361e-17 -1.34445 -1.84961) (-2.31052e-17 -1.35427 -1.68894) (-2.65469e-17 -1.37198 -1.52011) (-2.76286e-17 -1.42859 -1.36379) (-2.61805e-17 -1.50614 -1.22214) (-2.46467e-17 -1.57007 -1.07352) (-2.34848e-17 -1.58425 -0.919051) (-2.19987e-17 -1.56774 -0.772911) (-2.04298e-17 -1.56009 -0.656526) (-1.88101e-17 -1.59218 -0.569158) (-1.70997e-17 -1.63822 -0.502288) (-1.52289e-17 -1.6679 -0.437176) (-1.30761e-17 -1.66129 -0.359719) (-1.07769e-17 -1.61373 -0.259371) (-8.58452e-18 -1.51568 -0.140619) (-6.60501e-18 -1.37973 -0.00882285) (-4.81706e-18 -1.22278 0.125225) (-3.1873e-18 -1.07851 0.258988) (-1.5623e-18 -0.957296 0.389643) (1.90167e-19 -0.854464 0.51543) (2.06638e-18 -0.762791 0.633196) (3.99495e-18 -0.693984 0.746762) (5.94202e-18 -0.640656 0.854831) (7.87021e-18 -0.589825 0.962231) (9.75083e-18 -0.524458 1.07468) (1.15566e-17 -0.447444 1.19695) (1.32843e-17 -0.366635 1.32396) (1.49313e-17 -0.295602 1.44926) (1.648e-17 -0.234296 1.56687) (1.79285e-17 -0.187027 1.67537) (1.92799e-17 -0.154233 1.77454) (2.05473e-17 -0.140404 1.86683) (2.17245e-17 -0.137701 1.95897) (2.28144e-17 -0.135086 2.05746) (2.37959e-17 -0.123974 2.16952) (2.46651e-17 -0.0981903 2.29451) (2.54089e-17 -0.0522928 2.42741) (2.60488e-17 0.0121581 2.55679) (2.65823e-17 0.0901834 2.67704) (2.70372e-17 0.172425 2.77568) (2.73768e-17 0.256406 2.85333) (2.76269e-17 0.353087 2.89709) (2.77746e-17 0.447285 2.94974) (2.78616e-17 0.529674 3.01303) (2.78757e-17 0.588714 3.06022) (2.78459e-17 0.641194 3.07193) (2.7779e-17 0.706679 3.05771) (2.77039e-17 0.778126 3.01732) (2.76464e-17 0.852759 2.95409) (2.75802e-17 0.928176 2.86931) (2.73969e-17 1.01436 2.76821) (2.69515e-17 1.10626 2.65778) (2.62487e-17 1.21138 2.54409) (2.66831e-17 1.32911 2.43014) (3.03366e-17 1.46699 2.31252) (3.63099e-17 1.62361 2.19833) (4.04947e-17 1.8055 2.09154) (3.7069e-17 2.03097 1.98655) (2.29734e-17 2.31493 1.87393) (-3.219e-18 2.68257 1.72998) (-3.61722e-17 3.13662 1.55417) (-7.10296e-17 3.63328 1.33197) (-1.03836e-16 4.18508 1.04947) (-1.26125e-16 4.65253 0.772709) (-1.43398e-16 5.07466 0.451944) (-1.41508e-16 4.99523 0.17687) (-3.11603e-16 -0.343819 -1.01357) (-3.50878e-16 -0.968375 0.341573) (-2.98511e-16 -1.25846 0.508348) (-1.69033e-16 -0.985831 -0.642981) (-4.8747e-17 -0.345316 -0.857141) (-1.03754e-16 -0.338791 0.00492052) (-1.14337e-16 -0.535667 0.0255085) (-1.05839e-16 -0.866672 -0.136634) (-8.99458e-17 -1.23753 -0.510212) (-6.44963e-17 -1.54004 -0.812032) (-4.17796e-17 -1.801 -0.983395) (-2.39325e-17 -1.93366 -0.984113) (-9.57466e-18 -1.99169 -0.958516) (-1.50044e-18 -2.03594 -1.02389) (-7.01649e-18 -2.12662 -1.17128) (-3.63775e-17 -2.18862 -1.38598) (-1.03692e-16 -2.13936 -1.63258) (-2.11855e-16 -1.98698 -1.85944) (-3.28904e-16 -1.7735 -1.98987) (-3.9441e-16 -1.51652 -1.97317) (-3.7561e-16 -1.29429 -1.85238) (-2.99456e-16 -1.18634 -1.76766) (-2.23201e-16 -1.11659 -1.76906) (-1.45861e-16 -1.07843 -1.80721) (-7.6204e-17 -1.05233 -1.83925) (-2.20698e-17 -1.05117 -1.85698) (1.26732e-17 -1.10919 -1.89951) (2.9663e-17 -1.20175 -1.99264) (3.09841e-17 -1.25255 -2.10748) (1.25085e-17 -1.25898 -2.19558) (-2.54064e-17 -1.2651 -2.25041) (-5.26835e-17 -1.29285 -2.31374) (-4.41613e-17 -1.33777 -2.33734) (-2.83737e-17 -1.37346 -2.28065) (-2.89796e-17 -1.40992 -2.17687) (-3.24059e-17 -1.4309 -2.04484) (-3.27383e-17 -1.44674 -1.8862) (-3.22775e-17 -1.48682 -1.72306) (-3.17735e-17 -1.5556 -1.56941) (-3.10403e-17 -1.63409 -1.42156) (-2.99416e-17 -1.68512 -1.26896) (-2.85806e-17 -1.69255 -1.11) (-2.70616e-17 -1.68926 -0.956462) (-2.54107e-17 -1.71209 -0.823227) (-2.35647e-17 -1.75811 -0.715029) (-2.1459e-17 -1.81097 -0.624856) (-1.91316e-17 -1.85209 -0.540274) (-1.66589e-17 -1.85722 -0.449824) (-1.40816e-17 -1.81374 -0.345011) (-1.14864e-17 -1.72325 -0.226063) (-9.02871e-18 -1.59929 -0.0977146) (-6.76303e-18 -1.46354 0.0346886) (-4.56066e-18 -1.33469 0.164775) (-2.33744e-18 -1.22189 0.288772) (-1.39335e-19 -1.1216 0.408294) (1.99966e-18 -1.02983 0.523179) (4.06069e-18 -0.949815 0.630836) (6.03922e-18 -0.883074 0.731904) (7.95662e-18 -0.821037 0.831969) (9.81157e-18 -0.752719 0.936568) (1.1593e-17 -0.674924 1.04918) (1.32855e-17 -0.592734 1.16708) (1.48798e-17 -0.517482 1.28574) (1.63834e-17 -0.454105 1.40017) (1.78026e-17 -0.403533 1.50865) (1.91448e-17 -0.366596 1.60984) (2.04125e-17 -0.345134 1.70557) (2.15968e-17 -0.331657 1.79795) (2.26801e-17 -0.320305 1.89337) (2.3656e-17 -0.301995 1.99638) (2.45189e-17 -0.272968 2.11087) (2.52661e-17 -0.229177 2.23399) (2.58968e-17 -0.174652 2.36009) (2.64179e-17 -0.115535 2.48228) (2.68404e-17 -0.0564148 2.59523) (2.71725e-17 0.0120063 2.69278) (2.74218e-17 0.0988589 2.7766) (2.75927e-17 0.209862 2.84578) (2.76919e-17 0.322811 2.90111) (2.77308e-17 0.415133 2.95801) (2.7716e-17 0.47704 3.01652) (2.76528e-17 0.538904 3.0385) (2.75621e-17 0.607035 3.03728) (2.74634e-17 0.68232 3.00735) (2.73769e-17 0.755453 2.95785) (2.73064e-17 0.824011 2.88697) (2.72124e-17 0.895147 2.80146) (2.70191e-17 0.97302 2.70498) (2.66073e-17 1.0659 2.60528) (2.60952e-17 1.1695 2.51) (2.64981e-17 1.28909 2.41946) (2.94346e-17 1.42487 2.33369) (3.40079e-17 1.58064 2.25467) (3.69398e-17 1.76895 2.18157) (3.37705e-17 2.02147 2.1082) (2.2254e-17 2.35502 2.02451) (8.7366e-19 2.81851 1.8969) (-2.60447e-17 3.38079 1.72657) (-5.49735e-17 4.00027 1.51645) (-8.89193e-17 4.86314 0.991772) (-3.49969e-16 0.288252 -0.965493) (-3.81184e-16 -0.117371 1.056) (-3.72904e-16 -0.43366 2.23924) (-3.25967e-16 -0.359151 1.59735) (-1.51952e-16 -0.371591 -1.95621) (-6.50794e-17 0.310338 -0.728188) (-1.16007e-16 -0.117248 0.251882) (-1.32925e-16 -0.602847 0.0706759) (-1.24465e-16 -0.873633 -0.115332) (-1.04106e-16 -1.07611 -0.382678) (-8.28971e-17 -1.36701 -0.810103) (-6.43085e-17 -1.57722 -1.01173) (-4.60432e-17 -1.69124 -0.9738) (-2.52842e-17 -1.82424 -0.967956) (-5.85091e-18 -2.01809 -1.01329) (9.93713e-18 -2.18085 -1.14921) (1.4644e-17 -2.23545 -1.34136) (-2.71106e-18 -2.17165 -1.57104) (-4.42814e-17 -2.02005 -1.79849) (-9.50038e-17 -1.79118 -1.95403) (-1.25987e-16 -1.54923 -1.97525) (-1.11888e-16 -1.35107 -1.92184) (-6.76234e-17 -1.21901 -1.88418) (-2.06744e-17 -1.13898 -1.88494) (1.8727e-17 -1.09171 -1.90399) (4.06711e-17 -1.06395 -1.91311) (4.08453e-17 -1.08087 -1.92156) (2.47603e-17 -1.14133 -1.97404) (1.4293e-18 -1.20253 -2.07363) (-2.48776e-17 -1.24749 -2.18827) (-4.80972e-17 -1.27635 -2.2988) (-5.25924e-17 -1.30107 -2.39158) (-3.9364e-17 -1.33436 -2.43647) (-3.30567e-17 -1.38541 -2.42684) (-3.65042e-17 -1.44321 -2.38682) (-3.85106e-17 -1.48411 -2.30711) (-3.89104e-17 -1.51026 -2.18802) (-3.91421e-17 -1.53775 -2.04988) (-3.92204e-17 -1.59081 -1.90598) (-3.89592e-17 -1.66125 -1.76244) (-3.82524e-17 -1.72808 -1.6158) (-3.71364e-17 -1.77397 -1.46009) (-3.57351e-17 -1.80235 -1.29682) (-3.41428e-17 -1.8289 -1.13896) (-3.23335e-17 -1.86996 -0.99735) (-3.02174e-17 -1.93098 -0.871882) (-2.77539e-17 -1.99364 -0.761393) (-2.50121e-17 -2.03989 -0.657497) (-2.21018e-17 -2.05167 -0.552538) (-1.91327e-17 -2.02016 -0.437588) (-1.61742e-17 -1.9444 -0.311592) (-1.32686e-17 -1.84013 -0.176488) (-1.04698e-17 -1.72341 -0.0417526) (-7.83293e-18 -1.61073 0.0893122) (-5.30815e-18 -1.50254 0.214094) (-2.84397e-18 -1.40178 0.334161) (-4.52336e-19 -1.30893 0.44629) (1.8656e-18 -1.22644 0.551086) (4.1281e-18 -1.14835 0.647392) (6.32557e-18 -1.07437 0.74064) (8.44245e-18 -0.99876 0.835779) (1.0457e-17 -0.920669 0.938494) (1.23625e-17 -0.840058 1.04685) (1.41554e-17 -0.763276 1.15798) (1.58347e-17 -0.69417 1.26717) (1.74024e-17 -0.637724 1.37284) (1.8865e-17 -0.592532 1.47213) (2.02221e-17 -0.558604 1.56559) (2.14684e-17 -0.532565 1.6547) (2.25986e-17 -0.50992 1.74424) (2.36062e-17 -0.483956 1.83835) (2.4486e-17 -0.449709 1.9407) (2.52355e-17 -0.404523 2.05112) (2.58583e-17 -0.352768 2.16668) (2.63623e-17 -0.299962 2.28074) (2.67564e-17 -0.250152 2.3907) (2.70526e-17 -0.194873 2.49729) (2.726e-17 -0.121426 2.60075) (2.73819e-17 -0.0253677 2.69929) (2.74296e-17 0.07855 2.78476) (2.74106e-17 0.182804 2.84713) (2.73335e-17 0.281021 2.88898) (2.72136e-17 0.36219 2.94044) (2.70685e-17 0.434366 2.97943) (2.68989e-17 0.506746 2.99081) (2.6724e-17 0.579501 2.96978) (2.65659e-17 0.64952 2.92614) (2.64359e-17 0.714356 2.85822) (2.6336e-17 0.785663 2.78065) (2.62227e-17 0.853546 2.69633) (2.60577e-17 0.930189 2.6106) (2.57801e-17 1.01773 2.52905) (2.54656e-17 1.12578 2.45455) (2.54927e-17 1.25188 2.38875) (2.7353e-17 1.39889 2.33456) (3.04865e-17 1.57396 2.29316) (3.28045e-17 1.77905 2.26703) (3.09877e-17 2.14453 2.23557) (2.53708e-17 2.40874 2.259) (-5.30405e-18 3.42864 1.97219) (-3.51571e-16 0.772754 -0.833695) (-4.02981e-16 0.58902 0.998303) (-3.85864e-16 0.205093 2.67139) (-3.43936e-16 0.542502 3.68236) (-3.63645e-16 0.264968 0.959573) (-1.56883e-16 0.669479 -1.11614) (-7.75252e-17 0.356942 -0.346424) (-1.21987e-16 -0.485441 0.155283) (-1.44251e-16 -0.640319 -0.0052982) (-1.2894e-16 -0.728422 0.0472246) (-1.15674e-16 -0.920077 -0.272493) (-1.00336e-16 -1.15816 -0.740723) (-8.68174e-17 -1.28664 -0.914103) (-7.00674e-17 -1.50929 -1.00948) (-5.24726e-17 -1.7603 -1.01054) (-3.19851e-17 -1.98959 -1.04738) (-8.14796e-18 -2.14513 -1.14761) (1.23163e-17 -2.19664 -1.3012) (2.386e-17 -2.13376 -1.50845) (2.71729e-17 -1.97098 -1.72538) (2.68309e-17 -1.75984 -1.87612) (2.84245e-17 -1.54157 -1.91794) (4.03701e-17 -1.35185 -1.89819) (5.08439e-17 -1.20636 -1.88475) (5.47821e-17 -1.12447 -1.89328) (4.53527e-17 -1.09257 -1.91574) (2.30374e-17 -1.09319 -1.94113) (-4.28527e-18 -1.11402 -1.99162) (-2.85219e-17 -1.15724 -2.07617) (-4.5858e-17 -1.20248 -2.18258) (-5.3136e-17 -1.22949 -2.29314) (-4.78135e-17 -1.24992 -2.38644) (-3.97342e-17 -1.28761 -2.44944) (-4.03693e-17 -1.35368 -2.4893) (-4.42004e-17 -1.42961 -2.50743) (-4.59958e-17 -1.49318 -2.48512) (-4.70538e-17 -1.53046 -2.41772) (-4.79595e-17 -1.55827 -2.31637) (-4.8619e-17 -1.60066 -2.19623) (-4.89196e-17 -1.66247 -2.06783) (-4.87599e-17 -1.73841 -1.93279) (-4.81153e-17 -1.8054 -1.78916) (-4.70725e-17 -1.85789 -1.63513) (-4.57273e-17 -1.89997 -1.47586) (-4.4099e-17 -1.9517 -1.31694) (-4.21118e-17 -2.01505 -1.16785) (-3.96937e-17 -2.08816 -1.03006) (-3.68392e-17 -2.15875 -0.905001) (-3.36235e-17 -2.21457 -0.785859) (-3.01693e-17 -2.23833 -0.667414) (-2.66192e-17 -2.22156 -0.541673) (-2.30885e-17 -2.16512 -0.408814) (-1.96489e-17 -2.08441 -0.269404) (-1.63127e-17 -1.99158 -0.130355) (-1.30693e-17 -1.89398 0.00596382) (-9.91052e-18 -1.79494 0.135192) (-6.83346e-18 -1.69669 0.258171) (-3.83685e-18 -1.59877 0.371948) (-9.3403e-19 -1.5058 0.47784) (1.85975e-18 -1.42119 0.574802) (4.52853e-18 -1.34385 0.667709) (7.06345e-18 -1.26739 0.759684) (9.45437e-18 -1.18799 0.856214) (1.16906e-17 -1.10528 0.956585) (1.37605e-17 -1.02658 1.06082) (1.56661e-17 -0.954644 1.16432) (1.74126e-17 -0.892516 1.26628) (1.90084e-17 -0.838251 1.36262) (2.04551e-17 -0.793564 1.45422) (2.17569e-17 -0.753751 1.53957) (2.29134e-17 -0.719617 1.62383) (2.39288e-17 -0.682647 1.70782) (2.48013e-17 -0.642043 1.79757) (2.5535e-17 -0.591097 1.89224) (2.61329e-17 -0.537493 1.99335) (2.66066e-17 -0.483261 2.09253) (2.69653e-17 -0.436151 2.19232) (2.72176e-17 -0.380802 2.29259) (2.73691e-17 -0.315017 2.40251) (2.74297e-17 -0.233131 2.50888) (2.74076e-17 -0.1473 2.60856) (2.73137e-17 -0.0534408 2.68616) (2.71603e-17 0.0421306 2.76025) (2.69609e-17 0.147835 2.79969) (2.67092e-17 0.241484 2.84303) (2.64391e-17 0.326175 2.88592) (2.61725e-17 0.3987 2.91234) (2.58942e-17 0.468212 2.8853) (2.56362e-17 0.534713 2.84961) (2.54029e-17 0.594758 2.78432) (2.52156e-17 0.654351 2.71738) (2.50667e-17 0.704547 2.63665) (2.49312e-17 0.763982 2.56359) (2.47731e-17 0.832059 2.49338) (2.4614e-17 0.922588 2.43424) (2.44547e-17 1.03192 2.38766) (2.44387e-17 1.14485 2.35681) (2.45055e-17 1.33778 2.3368) (2.67129e-17 1.41038 2.36552) (2.56922e-17 1.97043 2.39633) (-3.21171e-16 0.991863 -0.701465) (-4.042e-16 1.08214 0.898882) (-4.05191e-16 0.494507 2.5277) (-3.40628e-16 0.843439 4.23228) (-3.20557e-16 0.362445 1.68112) (-2.54022e-16 0.782658 -0.752621) (-1.37914e-16 0.699301 -1.17625) (-9.4165e-17 -0.16158 -0.361799) (-1.51294e-16 -0.588307 -0.393279) (-1.47999e-16 -0.548051 0.0206611) (-1.44124e-16 -0.461115 0.415784) (-1.28795e-16 -0.497184 0.196951) (-1.14408e-16 -0.685823 -0.29115) (-1.0016e-16 -1.01722 -0.783137) (-8.86161e-17 -1.34307 -1.01517) (-7.65743e-17 -1.65481 -1.01656) (-5.79063e-17 -1.93158 -1.06998) (-3.54257e-17 -2.09836 -1.14333) (-1.5863e-17 -2.12339 -1.27693) (-1.5064e-18 -2.02358 -1.46121) (1.12895e-17 -1.86682 -1.65516) (2.41426e-17 -1.68908 -1.80423) (3.25278e-17 -1.4855 -1.86648) (3.42254e-17 -1.30627 -1.87754) (2.43186e-17 -1.19061 -1.89013) (5.91111e-18 -1.12711 -1.92039) (-1.61785e-17 -1.09702 -1.96265) (-3.50204e-17 -1.09496 -2.01586) (-4.73909e-17 -1.12042 -2.08474) (-5.28641e-17 -1.14705 -2.17045) (-5.15494e-17 -1.16233 -2.26179) (-4.64851e-17 -1.17824 -2.34586) (-4.48443e-17 -1.21584 -2.42012) (-4.84719e-17 -1.28047 -2.48954) (-5.21181e-17 -1.36079 -2.54664) (-5.43921e-17 -1.43944 -2.57475) (-5.62759e-17 -1.49842 -2.56314) (-5.79433e-17 -1.53894 -2.50771) (-5.93339e-17 -1.57638 -2.41839) (-6.03717e-17 -1.62553 -2.30775) (-6.09291e-17 -1.69169 -2.18652) (-6.09674e-17 -1.76636 -2.05804) (-6.0523e-17 -1.83824 -1.91985) (-5.96495e-17 -1.90207 -1.77264) (-5.8384e-17 -1.96561 -1.61796) (-5.6663e-17 -2.03475 -1.4633) (-5.44176e-17 -2.11654 -1.3113) (-5.15984e-17 -2.20379 -1.16774) (-4.82501e-17 -2.29013 -1.03115) (-4.44565e-17 -2.35868 -0.90162) (-4.03575e-17 -2.39991 -0.771891) (-3.609e-17 -2.40442 -0.639481) (-3.17909e-17 -2.37692 -0.500648) (-2.75364e-17 -2.32162 -0.360115) (-2.33761e-17 -2.25137 -0.219414) (-1.9322e-17 -2.16992 -0.083349) (-1.53932e-17 -2.08218 0.0477351) (-1.15942e-17 -1.98708 0.171338) (-7.93693e-18 -1.89108 0.288966) (-4.42705e-18 -1.79548 0.398158) (-1.07951e-18 -1.70607 0.499031) (2.10167e-18 -1.62181 0.592195) (5.10621e-18 -1.54162 0.683609) (7.92448e-18 -1.45981 0.776247) (1.05363e-17 -1.37863 0.872935) (1.29357e-17 -1.29966 0.971983) (1.51216e-17 -1.22816 1.07285) (1.71017e-17 -1.16226 1.17212) (1.88797e-17 -1.10254 1.26871) (2.04639e-17 -1.04785 1.36032) (2.1861e-17 -1.00029 1.44807) (2.308e-17 -0.954668 1.5309) (2.41275e-17 -0.910239 1.61217) (2.50134e-17 -0.86124 1.69271) (2.57462e-17 -0.807301 1.77585) (2.6336e-17 -0.749289 1.85934) (2.67927e-17 -0.695018 1.94324) (2.71268e-17 -0.638915 2.02612) (2.73467e-17 -0.578732 2.11313) (2.746e-17 -0.507459 2.20442) (2.74754e-17 -0.432215 2.3) (2.7403e-17 -0.350716 2.39557) (2.72538e-17 -0.267143 2.48616) (2.70321e-17 -0.174085 2.57062) (2.67509e-17 -0.0831582 2.64483) (2.64293e-17 0.0171894 2.70621) (2.60858e-17 0.108779 2.72875) (2.57145e-17 0.196108 2.74291) (2.53514e-17 0.259771 2.76952) (2.50116e-17 0.332261 2.77737) (2.46817e-17 0.38745 2.74517) (2.43785e-17 0.435159 2.68523) (2.4107e-17 0.468237 2.60172) (2.38813e-17 0.500665 2.51179) (2.36951e-17 0.527721 2.42107) (2.35352e-17 0.56636 2.34315) (2.33638e-17 0.618106 2.28312) (2.32013e-17 0.688884 2.24744) (2.29849e-17 0.72096 2.24419) (2.31909e-17 0.953614 2.29614) (-2.80033e-16 1.05667 -0.540742) (-3.68499e-16 1.24186 0.963421) (-3.88683e-16 0.660479 2.63947) (-3.38819e-16 0.937945 4.48262) (-3.13393e-16 0.0822738 1.11121) (-2.95282e-16 0.468824 -0.716475) (-2.04193e-16 0.567061 -1.52644) (-1.35848e-16 0.199965 -1.054) (-1.22264e-16 -0.690073 -0.896633) (-1.6698e-16 -0.995444 -1.05648) (-1.73401e-16 -0.502286 -0.335526) (-1.61383e-16 -0.022569 0.680563) (-1.42357e-16 0.105972 0.824905) (-1.23249e-16 -0.0276828 0.235402) (-1.10531e-16 -0.530904 -0.571838) (-1.04197e-16 -1.11465 -0.890721) (-9.3719e-17 -1.54768 -0.977064) (-7.64971e-17 -1.84839 -1.02169) (-5.65768e-17 -2.00038 -1.12887) (-4.08167e-17 -1.97657 -1.28181) (-3.32599e-17 -1.86793 -1.41766) (-2.65935e-17 -1.75596 -1.58585) (-1.90004e-17 -1.60466 -1.7471) (-1.53688e-17 -1.41712 -1.83841) (-1.99621e-17 -1.27042 -1.88694) (-3.11965e-17 -1.18264 -1.93613) (-4.28285e-17 -1.13254 -1.98671) (-5.06129e-17 -1.10691 -2.0331) (-5.39055e-17 -1.10146 -2.08731) (-5.36519e-17 -1.10278 -2.15331) (-5.14137e-17 -1.10412 -2.22338) (-5.01071e-17 -1.11152 -2.29245) (-5.23762e-17 -1.13889 -2.36195) (-5.67624e-17 -1.1923 -2.43188) (-6.05022e-17 -1.26494 -2.4959) (-6.3537e-17 -1.34411 -2.54662) (-6.62959e-17 -1.41292 -2.5749) (-6.87919e-17 -1.46457 -2.56878) (-7.10117e-17 -1.50506 -2.52519) (-7.2935e-17 -1.54845 -2.44842) (-7.44652e-17 -1.60137 -2.34685) (-7.54887e-17 -1.66508 -2.23077) (-7.598e-17 -1.73159 -2.10651) (-7.59686e-17 -1.79822 -1.97576) (-7.5458e-17 -1.86573 -1.83786) (-7.43861e-17 -1.9416 -1.69291) (-7.26616e-17 -2.02929 -1.54526) (-7.01992e-17 -2.1305 -1.39771) (-6.69684e-17 -2.23903 -1.25383) (-6.30227e-17 -2.34562 -1.11435) (-5.84838e-17 -2.43793 -0.978699) (-5.35253e-17 -2.506 -0.843802) (-4.8332e-17 -2.54257 -0.707661) (-4.30551e-17 -2.54794 -0.56935) (-3.78017e-17 -2.52689 -0.430653) (-3.2647e-17 -2.48482 -0.293614) (-2.76464e-17 -2.42637 -0.160475) (-2.2833e-17 -2.35558 -0.0326889) (-1.82175e-17 -2.27483 0.0891713) (-1.38012e-17 -2.18369 0.204729) (-9.58852e-18 -2.08723 0.31333) (-5.58374e-18 -1.99359 0.414498) (-1.79041e-18 -1.90495 0.508755) (1.78701e-18 -1.81913 0.599063) (5.13228e-18 -1.73537 0.689123) (8.2297e-18 -1.65407 0.781376) (1.10694e-17 -1.57567 0.876004) (1.36483e-17 -1.50149 0.972458) (1.59673e-17 -1.43384 1.06982) (1.80337e-17 -1.37341 1.16744) (1.9857e-17 -1.31643 1.26363) (2.14471e-17 -1.26186 1.3568) (2.28143e-17 -1.21136 1.44536) (2.39732e-17 -1.16311 1.52938) (2.49393e-17 -1.11276 1.61031) (2.57272e-17 -1.05751 1.68935) (2.63504e-17 -0.996794 1.76531) (2.68233e-17 -0.935908 1.83778) (2.71594e-17 -0.87465 1.90734) (2.73707e-17 -0.808678 1.97649) (2.74672e-17 -0.735046 2.0469) (2.74587e-17 -0.654924 2.11931) (2.73537e-17 -0.569309 2.19359) (2.71613e-17 -0.479239 2.27152) (2.6893e-17 -0.384949 2.35077) (2.65601e-17 -0.288354 2.42751) (2.61739e-17 -0.195539 2.49264) (2.57513e-17 -0.10566 2.55286) (2.53227e-17 -0.0231023 2.59712) (2.49021e-17 0.0651229 2.62252) (2.4497e-17 0.134698 2.60995) (2.41148e-17 0.191176 2.59613) (2.37726e-17 0.222346 2.56684) (2.34619e-17 0.24843 2.50003) (2.31715e-17 0.259022 2.39855) (2.29143e-17 0.267339 2.28553) (2.26816e-17 0.267964 2.18526) (2.24948e-17 0.254391 2.12614) (2.23129e-17 0.245337 2.11971) (2.22026e-17 0.328091 2.13649) (-2.48505e-16 0.872916 -0.427221) (-3.32541e-16 1.22364 1.13359) (-3.55245e-16 1.0461 2.81187) (-3.25423e-16 0.852069 4.13258) (-3.07012e-16 -0.270497 0.125942) (-2.99687e-16 -0.153446 -1.33841) (-2.29066e-16 0.0682515 -1.71501) (-1.70004e-16 0.0417332 -1.28408) (-1.46157e-16 -0.349261 -1.04054) (-1.52574e-16 -1.20157 -1.3917) (-2.03264e-16 -1.53492 -2.64123) (-1.9315e-16 -0.5635 -0.922456) (-1.75883e-16 0.304875 0.300217) (-1.49759e-16 1.05709 1.06118) (-1.27944e-16 0.753514 0.129723) (-1.24257e-16 -0.212528 -0.667695) (-1.22183e-16 -0.819459 -0.615619) (-1.13301e-16 -1.29119 -0.551724) (-9.40776e-17 -1.64721 -0.778101) (-6.93168e-17 -1.79297 -1.12485) (-5.48107e-17 -1.74691 -1.28792) (-5.20271e-17 -1.67405 -1.36053) (-4.95308e-17 -1.5989 -1.53495) (-4.53839e-17 -1.4761 -1.71498) (-4.5261e-17 -1.31911 -1.82853) (-4.88154e-17 -1.19404 -1.91657) (-5.26103e-17 -1.13645 -1.98682) (-5.4752e-17 -1.10629 -2.04237) (-5.53492e-17 -1.08146 -2.08881) (-5.49307e-17 -1.06047 -2.14109) (-5.46191e-17 -1.04703 -2.19737) (-5.62612e-17 -1.04136 -2.2496) (-6.0381e-17 -1.05465 -2.29354) (-6.52095e-17 -1.0904 -2.33601) (-6.94676e-17 -1.14763 -2.37681) (-7.34013e-17 -1.21343 -2.41662) (-7.71184e-17 -1.27863 -2.44999) (-8.055e-17 -1.33168 -2.46862) (-8.37157e-17 -1.37257 -2.46172) (-8.66333e-17 -1.40813 -2.42645) (-8.92606e-17 -1.44514 -2.36343) (-9.15279e-17 -1.48675 -2.27643) (-9.33454e-17 -1.53247 -2.16964) (-9.46495e-17 -1.58132 -2.05143) (-9.5408e-17 -1.63611 -1.92418) (-9.55612e-17 -1.70276 -1.79032) (-9.49808e-17 -1.78033 -1.65855) (-9.35142e-17 -1.87929 -1.52433) (-9.10223e-17 -1.9978 -1.38944) (-8.74552e-17 -2.13025 -1.25514) (-8.28736e-17 -2.26605 -1.12209) (-7.74378e-17 -2.39376 -0.990221) (-7.13819e-17 -2.50181 -0.858587) (-6.49427e-17 -2.58318 -0.726022) (-5.83149e-17 -2.63451 -0.593567) (-5.1651e-17 -2.65878 -0.462246) (-4.51099e-17 -2.65921 -0.332864) (-3.88214e-17 -2.63703 -0.207706) (-3.28404e-17 -2.59552 -0.0878375) (-2.71654e-17 -2.53635 0.0262589) (-2.17874e-17 -2.46336 0.135446) (-1.66969e-17 -2.37779 0.238594) (-1.18881e-17 -2.2859 0.336004) (-7.34664e-18 -2.19411 0.427441) (-3.0741e-18 -2.10577 0.51523) (9.20493e-19 -2.01771 0.600923) (4.62543e-18 -1.93095 0.687464) (8.02727e-18 -1.84826 0.775497) (1.11159e-17 -1.77424 0.865926) (1.38928e-17 -1.70822 0.958326) (1.63666e-17 -1.64701 1.05327) (1.85466e-17 -1.58781 1.14982) (2.04401e-17 -1.53131 1.24669) (2.20611e-17 -1.47872 1.34092) (2.34277e-17 -1.43004 1.43231) (2.45597e-17 -1.3794 1.52015) (2.54752e-17 -1.32595 1.60495) (2.61929e-17 -1.27019 1.68402) (2.6732e-17 -1.21221 1.7566) (2.7111e-17 -1.14885 1.82242) (2.73452e-17 -1.07933 1.88388) (2.74482e-17 -1.00115 1.94064) (2.74332e-17 -0.916738 1.99421) (2.73132e-17 -0.82588 2.0448) (2.70998e-17 -0.730305 2.09591) (2.68035e-17 -0.62783 2.14848) (2.64363e-17 -0.521582 2.20403) (2.6015e-17 -0.412243 2.26233) (2.55564e-17 -0.307437 2.32) (2.50746e-17 -0.198243 2.37775) (2.45985e-17 -0.100351 2.42639) (2.41515e-17 -0.013304 2.46291) (2.37553e-17 0.0398229 2.46352) (2.34018e-17 0.0800519 2.41873) (2.30785e-17 0.0877203 2.32248) (2.27912e-17 0.0795769 2.20004) (2.25326e-17 0.0323606 2.09557) (2.23228e-17 -0.0346967 2.06594) (2.21549e-17 -0.098401 2.09628) (2.2044e-17 -0.195257 2.14711) (-2.42033e-16 0.673182 -0.394901) (-3.11253e-16 1.0513 1.3884) (-3.32139e-16 1.48361 3.45235) (-3.14736e-16 0.561198 3.14207) (-3.00614e-16 -0.681237 -0.422381) (-2.81108e-16 -0.651735 -1.49953) (-2.1456e-16 -0.461517 -1.85233) (-1.68329e-16 -0.442853 -1.73029) (-1.68337e-16 -0.917735 -2.31028) (-1.95191e-16 -1.47927 -2.86047) (-2.17734e-16 -1.67202 -2.29793) (-2.11096e-16 -1.29029 -1.50365) (-1.99609e-16 -0.589359 -0.666489) (-1.69432e-16 0.623568 0.528903) (-1.40984e-16 1.30815 1.31399) (-1.45138e-16 0.812429 0.442908) (-1.52683e-16 0.39065 0.553484) (-1.54135e-16 -0.0492307 0.925145) (-1.43164e-16 -0.67394 0.457639) (-1.12877e-16 -1.12916 -0.4336) (-8.01174e-17 -1.33832 -1.142) (-6.56898e-17 -1.38873 -1.23683) (-6.39849e-17 -1.40392 -1.28619) (-5.82296e-17 -1.39006 -1.51579) (-5.61686e-17 -1.27288 -1.68529) (-5.6733e-17 -1.13648 -1.83919) (-5.74861e-17 -1.07137 -1.94554) (-5.7567e-17 -1.04605 -2.02821) (-5.78624e-17 -1.02337 -2.08774) (-5.88585e-17 -0.999136 -2.12853) (-6.07009e-17 -0.975 -2.16578) (-6.36429e-17 -0.958899 -2.2006) (-6.79135e-17 -0.959162 -2.22565) (-7.30385e-17 -0.981339 -2.23438) (-7.8253e-17 -1.01954 -2.23396) (-8.33587e-17 -1.06643 -2.22984) (-8.83837e-17 -1.1158 -2.22202) (-9.31006e-17 -1.16026 -2.2126) (-9.73743e-17 -1.1959 -2.20105) (-1.01303e-16 -1.22138 -2.17943) (-1.04952e-16 -1.23994 -2.14575) (-1.08325e-16 -1.256 -2.09552) (-1.11449e-16 -1.26807 -2.02934) (-1.14318e-16 -1.28485 -1.94095) (-1.16793e-16 -1.315 -1.83118) (-1.18726e-16 -1.35008 -1.70865) (-1.19946e-16 -1.37421 -1.59854) (-1.2038e-16 -1.42842 -1.48468) (-1.19716e-16 -1.51989 -1.37047) (-1.17714e-16 -1.64439 -1.25548) (-1.1421e-16 -1.79616 -1.13813) (-1.09216e-16 -1.96429 -1.02053) (-1.02893e-16 -2.13807 -0.902468) (-9.55493e-17 -2.30312 -0.784104) (-8.75334e-17 -2.4413 -0.667497) (-7.90608e-17 -2.55287 -0.551134) (-7.03773e-17 -2.64279 -0.435262) (-6.18611e-17 -2.70592 -0.321345) (-5.37543e-17 -2.7415 -0.21133) (-4.61573e-17 -2.75208 -0.10401) (-3.90494e-17 -2.73653 -0.00147468) (-3.23869e-17 -2.69864 0.0960267) (-2.61657e-17 -2.64122 0.188472) (-2.03484e-17 -2.56928 0.277368) (-1.48898e-17 -2.48704 0.362095) (-9.7719e-18 -2.39974 0.444144) (-4.98175e-18 -2.30967 0.523794) (-5.33071e-19 -2.21913 0.603268) (3.55997e-18 -2.13183 0.682896) (7.28974e-18 -2.05277 0.764411) (1.06622e-17 -1.98198 0.848023) (1.36804e-17 -1.91878 0.935823) (1.63468e-17 -1.85867 1.02691) (1.8668e-17 -1.80343 1.12163) (2.06614e-17 -1.75272 1.21684) (2.23477e-17 -1.70723 1.3128) (2.375e-17 -1.66029 1.40697) (2.48885e-17 -1.61086 1.49933) (2.57861e-17 -1.55796 1.58579) (2.64649e-17 -1.5046 1.66698) (2.69476e-17 -1.44449 1.73994) (2.72535e-17 -1.37716 1.80617) (2.74016e-17 -1.30118 1.86233) (2.74101e-17 -1.22004 1.91074) (2.72967e-17 -1.1299 1.94981) (2.70782e-17 -1.031 1.98402) (2.67713e-17 -0.921575 2.01197) (2.63925e-17 -0.808597 2.03985) (2.59576e-17 -0.691897 2.06767) (2.54852e-17 -0.569261 2.10412) (2.4997e-17 -0.435556 2.14565) (2.45178e-17 -0.29795 2.19495) (2.40631e-17 -0.176243 2.22729) (2.36403e-17 -0.0718345 2.24512) (2.32652e-17 -0.0052678 2.22263) (2.2948e-17 0.0146876 2.17902) (2.2686e-17 -0.00999023 2.12465) (2.24852e-17 -0.0482603 2.09599) (2.23283e-17 -0.258876 2.09835) (2.22317e-17 -0.473433 2.19343) (-2.51863e-16 0.636642 -0.272975) (-3.08533e-16 0.922522 1.71479) (-3.16068e-16 1.96295 4.94592) (-3.02112e-16 0.253296 2.17516) (-2.81405e-16 -0.823866 -1.07693) (-2.43599e-16 -1.01941 -1.82319) (-1.90301e-16 -1.02787 -2.31739) (-1.72512e-16 -1.05186 -2.40188) (-1.98335e-16 -1.29107 -2.45562) (-2.26344e-16 -1.45738 -2.00771) (-2.31967e-16 -1.56038 -1.27801) (-2.29413e-16 -1.67784 -0.855839) (-2.28091e-16 -1.60704 -0.76048) (-2.17832e-16 -1.01164 -0.721204) (-1.91799e-16 0.146619 -0.28267) (-1.66445e-16 1.3614 0.552165) (-1.53476e-16 1.33179 1.38356) (-1.77583e-16 1.39942 2.67552) (-1.83369e-16 0.808042 1.83425) (-1.65236e-16 0.208043 1.11387) (-1.30107e-16 -0.223783 -0.123547) (-9.39614e-17 -0.587188 -1.11247) (-9.01039e-17 -0.688425 -1.05821) (-7.0352e-17 -1.00693 -1.35558) (-6.35877e-17 -1.00256 -1.53953) (-6.27672e-17 -0.982265 -1.74449) (-6.32903e-17 -0.948112 -1.87033) (-6.3104e-17 -0.945929 -1.97864) (-6.33365e-17 -0.937907 -2.05801) (-6.49214e-17 -0.918371 -2.10255) (-6.80999e-17 -0.889869 -2.12019) (-7.21525e-17 -0.8615 -2.12954) (-7.63328e-17 -0.842708 -2.13868) (-8.11671e-17 -0.839851 -2.12649) (-8.70341e-17 -0.851391 -2.08158) (-9.32197e-17 -0.878026 -2.01714) (-9.93173e-17 -0.913357 -1.94965) (-1.05345e-16 -0.9498 -1.88263) (-1.11096e-16 -0.975982 -1.82072) (-1.16247e-16 -0.985762 -1.77177) (-1.20817e-16 -0.981869 -1.73198) (-1.2496e-16 -0.967234 -1.69585) (-1.28824e-16 -0.954347 -1.67059) (-1.32685e-16 -0.938684 -1.65007) (-1.36389e-16 -0.90736 -1.60389) (-1.39311e-16 -0.875767 -1.50841) (-1.41314e-16 -0.85302 -1.43593) (-1.43913e-16 -0.88294 -1.34338) (-1.46515e-16 -0.937549 -1.23829) (-1.48206e-16 -1.01313 -1.12712) (-1.48065e-16 -1.11721 -1.0237) (-1.45826e-16 -1.24272 -0.933614) (-1.4142e-16 -1.38987 -0.845608) (-1.34875e-16 -1.56577 -0.753241) (-1.26768e-16 -1.78191 -0.643922) (-1.17349e-16 -1.98528 -0.542523) (-1.06784e-16 -2.1825 -0.440901) (-9.56711e-17 -2.35865 -0.343758) (-8.45397e-17 -2.51226 -0.252689) (-7.39256e-17 -2.64424 -0.161422) (-6.41119e-17 -2.74084 -0.0697804) (-5.49337e-17 -2.80372 0.0175001) (-4.64655e-17 -2.83347 0.0992559) (-3.87204e-17 -2.83319 0.177347) (-3.15933e-17 -2.80446 0.251886) (-2.49891e-17 -2.75183 0.324929) (-1.88206e-17 -2.67983 0.395217) (-1.3066e-17 -2.59687 0.464587) (-7.71632e-18 -2.50949 0.533653) (-2.77586e-18 -2.42416 0.604331) (1.76288e-18 -2.34261 0.676099) (5.89715e-18 -2.26774 0.750951) (9.62164e-18 -2.19905 0.828675) (1.29308e-17 -2.13762 0.911031) (1.58355e-17 -2.08167 0.996653) (1.83509e-17 -2.03217 1.08644) (2.0501e-17 -1.98586 1.1782) (2.2306e-17 -1.94202 1.27277) (2.37911e-17 -1.89752 1.36696) (2.49803e-17 -1.85358 1.4602) (2.59015e-17 -1.80535 1.54856) (2.65782e-17 -1.75278 1.63252) (2.70342e-17 -1.69205 1.70829) (2.72913e-17 -1.62533 1.77587) (2.73738e-17 -1.54788 1.83128) (2.7304e-17 -1.46118 1.87619) (2.71055e-17 -1.36289 1.90835) (2.68017e-17 -1.2609 1.93122) (2.64163e-17 -1.1518 1.94435) (2.59734e-17 -1.0379 1.95486) (2.54955e-17 -0.910627 1.96565) (2.50073e-17 -0.775033 1.98439) (2.45276e-17 -0.622584 2.00992) (2.40757e-17 -0.467191 2.041) (2.36684e-17 -0.300565 2.06877) (2.332e-17 -0.158084 2.08408) (2.30297e-17 -0.010278 2.08573) (2.27999e-17 0.123828 2.07256) (2.26419e-17 0.114873 2.10361) (2.25334e-17 0.157247 2.23713) (-2.37803e-16 0.591424 -0.614141) (-3.02464e-16 1.00788 1.49091) (-3.07633e-16 1.19536 1.27236) (-2.95306e-16 -0.203734 0.622277) (-2.5648e-16 -0.906712 -1.79627) (-2.14289e-16 -1.04865 -2.30244) (-1.83622e-16 -1.14352 -2.55119) (-1.89749e-16 -0.976994 -2.3405) (-2.16042e-16 -0.787028 -1.69472) (-2.28749e-16 -0.653652 -0.712357) (-2.2394e-16 -0.857815 0.142919) (-2.23749e-16 -1.26886 0.547289) (-2.28784e-16 -1.61186 0.331153) (-2.36082e-16 -1.68311 -0.251099) (-2.29889e-16 -1.15523 -0.552698) (-2.1806e-16 -0.492798 -0.47477) (-1.96637e-16 0.296272 0.145277) (-1.91931e-16 0.727889 0.465045) (-1.86351e-16 1.00055 0.687044) (-1.77002e-16 0.72241 0.911684) (-1.62514e-16 0.618085 0.958242) (-1.55076e-16 0.362507 0.532317) (-1.3809e-16 0.0544804 -0.446174) (-1.16424e-16 -0.345308 -0.868099) (-6.81845e-17 -0.689296 -1.4599) (-6.78422e-17 -0.7767 -1.74356) (-6.96291e-17 -0.764751 -1.8094) (-7.0406e-17 -0.810811 -1.89242) (-7.09726e-17 -0.827528 -1.96848) (-7.24829e-17 -0.823765 -2.02163) (-7.56586e-17 -0.790216 -2.04573) (-8.03809e-17 -0.742142 -2.04067) (-8.54835e-17 -0.699227 -2.02235) (-9.08347e-17 -0.669147 -1.98245) (-9.72742e-17 -0.652558 -1.89683) (-1.04134e-16 -0.649666 -1.77596) (-1.10349e-16 -0.653139 -1.65434) (-1.16102e-16 -0.655451 -1.53532) (-1.21594e-16 -0.649244 -1.41153) (-1.26524e-16 -0.636994 -1.29112) (-1.30569e-16 -0.634858 -1.20655) (-1.33465e-16 -0.634043 -1.19073) (-1.35809e-16 -0.626427 -1.19565) (-1.39172e-16 -0.622575 -1.10458) (-1.42874e-16 -0.607078 -0.871348) (-1.4493e-16 -0.741034 -0.613296) (-1.46385e-16 -0.75026 -0.967072) (-1.49804e-16 -0.720965 -1.06733) (-1.55052e-16 -0.76501 -1.01057) (-1.61601e-16 -0.849792 -0.908064) (-1.67684e-16 -0.887778 -0.838767) (-1.71738e-16 -0.844061 -0.799879) (-1.72537e-16 -0.809217 -0.73382) (-1.7046e-16 -0.831041 -0.639102) (-1.66424e-16 -0.934954 -0.563447) (-1.59827e-16 -1.1262 -0.491652) (-1.50853e-16 -1.32082 -0.392579) (-1.40216e-16 -1.5247 -0.299903) (-1.2789e-16 -1.73435 -0.219201) (-1.14271e-16 -1.97719 -0.148361) (-1.00916e-16 -2.22214 -0.0708486) (-8.82241e-17 -2.44359 0.00865361) (-7.61558e-17 -2.63048 0.081956) (-6.51148e-17 -2.77325 0.148031) (-5.52605e-17 -2.86893 0.208481) (-4.63908e-17 -2.91665 0.26728) (-3.82635e-17 -2.92408 0.324011) (-3.07954e-17 -2.89873 0.378897) (-2.38894e-17 -2.8499 0.43335) (-1.74804e-17 -2.78509 0.488912) (-1.15277e-17 -2.71089 0.545797) (-6.01114e-18 -2.63319 0.604947) (-9.40877e-19 -2.55629 0.667559) (3.66701e-18 -2.48374 0.733924) (7.80938e-18 -2.41863 0.804328) (1.14896e-17 -2.36114 0.879035) (1.47196e-17 -2.31042 0.958301) (1.7515e-17 -2.26492 1.0419) (1.98979e-17 -2.22355 1.12954) (2.1893e-17 -2.18401 1.21967) (2.3529e-17 -2.1452 1.3109) (2.48329e-17 -2.10524 1.40167) (2.58323e-17 -2.06165 1.49062) (2.65531e-17 -2.0115 1.57539) (2.70223e-17 -1.95394 1.65362) (2.72657e-17 -1.88798 1.72291) (2.73108e-17 -1.81185 1.78148) (2.71857e-17 -1.72494 1.82771) (2.6921e-17 -1.62822 1.8606) (2.65479e-17 -1.52648 1.88094) (2.60978e-17 -1.42022 1.89161) (2.5602e-17 -1.30869 1.89738) (2.5089e-17 -1.18812 1.90411) (2.45845e-17 -1.05525 1.91637) (2.41111e-17 -0.91304 1.93556) (2.36864e-17 -0.776573 1.95917) (2.33217e-17 -0.645592 1.97999) (2.30291e-17 -0.515621 2.00043) (2.28233e-17 -0.440102 2.02572) (2.27014e-17 -0.422042 2.02863) (-2.25685e-16 0.461335 -1.32364) (-2.90828e-16 0.981194 0.841962) (-2.88692e-16 0.483492 -0.455177) (-2.62633e-16 -0.121335 -0.811105) (-2.39168e-16 -0.630154 -2.19843) (-1.98707e-16 -0.73734 -2.43042) (-1.86163e-16 -0.802445 -2.31309) (-2.03942e-16 -0.533901 -1.80965) (-2.22428e-16 -0.175942 -0.981318) (-2.22644e-16 0.135591 0.0114918) (-2.11497e-16 -0.00919204 0.815436) (-2.07682e-16 -0.433578 1.35698) (-2.12022e-16 -1.05151 1.31067) (-2.25498e-16 -1.49482 0.730654) (-2.35966e-16 -1.50091 0.10917) (-2.38324e-16 -1.1758 -0.378941) (-2.22823e-16 -0.738748 -0.311966) (-2.05313e-16 -0.777146 0.111739) (-1.89996e-16 -0.14887 0.0950599) (-1.57154e-16 -0.195718 -0.236182) (-1.08731e-16 -0.550845 -1.14298) (-8.85203e-17 -0.647594 -1.80325) (-8.9322e-17 -0.715432 -1.77725) (-9.20819e-17 -0.62757 -1.51271) (-7.18118e-17 -0.688653 -1.68888) (-7.27415e-17 -0.629426 -1.82524) (-7.4948e-17 -0.603338 -1.80365) (-7.66257e-17 -0.641212 -1.83352) (-7.79735e-17 -0.680198 -1.87458) (-7.96654e-17 -0.686908 -1.91434) (-8.24659e-17 -0.655875 -1.94586) (-8.6891e-17 -0.606605 -1.93764) (-9.2549e-17 -0.54897 -1.89246) (-9.88347e-17 -0.492542 -1.81464) (-1.063e-16 -0.44576 -1.68222) (-1.14249e-16 -0.413875 -1.49382) (-1.20939e-16 -0.38787 -1.28379) (-1.26133e-16 -0.366143 -1.07482) (-1.30343e-16 -0.336513 -0.88439) (-1.33577e-16 -0.30484 -0.745702) (-1.35793e-16 -0.296477 -0.693856) (-1.37222e-16 -0.311889 -0.724037) (-1.38427e-16 -0.321342 -0.784746) (-1.40492e-16 -0.322123 -0.760723) (-1.43235e-16 -0.328212 -0.608625) (-1.44978e-16 -0.439421 -0.59859) (-1.4736e-16 -0.464027 -0.980056) (-1.51855e-16 -0.46519 -1.0963) (-1.59542e-16 -0.501728 -1.02035) (-1.68432e-16 -0.603199 -0.877183) (-1.73665e-16 -0.644374 -0.818119) (-1.72196e-16 -0.864326 -0.735919) (-1.67947e-16 -1.09587 -0.53579) (-1.71326e-16 -0.719007 -0.535819) (-1.7587e-16 -0.581668 -0.807837) (-1.80194e-16 -0.522069 -0.686794) (-1.77162e-16 -0.615563 -0.537627) (-1.73262e-16 -0.770498 -0.364402) (-1.69215e-16 -0.818862 -0.198262) (-1.61368e-16 -0.953907 -0.0887245) (-1.48053e-16 -1.17844 -0.0471739) (-1.34026e-16 -1.47508 0.020704) (-1.19155e-16 -1.79265 0.0948029) (-1.03919e-16 -2.10401 0.160264) (-8.96048e-17 -2.39439 0.213909) (-7.69884e-17 -2.62855 0.265994) (-6.55906e-17 -2.80178 0.314013) (-5.54044e-17 -2.91778 0.35706) (-4.63048e-17 -2.9806 0.395195) (-3.80035e-17 -3.00032 0.433795) (-3.03659e-17 -2.9857 0.472527) (-2.32594e-17 -2.94751 0.512498) (-1.66306e-17 -2.89298 0.555265) (-1.04903e-17 -2.82937 0.602977) (-4.83412e-18 -2.7626 0.654818) (3.31119e-19 -2.69842 0.711473) (4.99679e-18 -2.6395 0.772743) (9.15875e-18 -2.58739 0.839486) (1.28246e-17 -2.54091 0.911363) (1.60074e-17 -2.49928 0.988409) (1.87293e-17 -2.46222 1.06935) (2.10144e-17 -2.42906 1.15351) (2.28922e-17 -2.3969 1.2395) (2.43918e-17 -2.36253 1.3265) (2.55431e-17 -2.32382 1.4127) (2.63744e-17 -2.27912 1.49639) (2.69149e-17 -2.22702 1.5748) (2.71941e-17 -2.16622 1.64622) (2.72447e-17 -2.09451 1.70804) (2.71011e-17 -2.01242 1.75927) (2.67999e-17 -1.91977 1.79756) (2.63793e-17 -1.82182 1.82455) (2.58771e-17 -1.71515 1.84139) (2.53299e-17 -1.60004 1.85373) (2.47714e-17 -1.47132 1.86626) (2.42322e-17 -1.32939 1.8824) (2.37377e-17 -1.1725 1.90156) (2.33134e-17 -1.01186 1.92944) (2.29855e-17 -0.836589 1.96522) (2.27732e-17 -0.488786 2.02531) (-2.87788e-16 0.0959368 -2.3388) (-2.91679e-16 0.201094 -0.749303) (-2.77179e-16 0.501974 -0.818306) (-2.44946e-16 0.295855 -1.1853) (-2.20131e-16 -0.193466 -2.52245) (-1.98536e-16 -0.202626 -2.37329) (-1.93834e-16 -0.364551 -1.92824) (-2.09739e-16 -0.207676 -1.33958) (-2.21778e-16 0.0717815 -0.584828) (-2.16256e-16 0.304289 0.310814) (-2.05714e-16 0.397257 1.16971) (-1.94734e-16 0.197156 1.559) (-1.96064e-16 -0.466573 1.64276) (-2.10765e-16 -1.08428 1.28912) (-2.26101e-16 -1.33612 0.881438) (-2.38178e-16 -1.28033 0.341808) (-2.34972e-16 -0.898594 -0.204586) (-2.13726e-16 -0.494549 -0.419436) (-1.85142e-16 -0.347533 -0.276619) (-1.46187e-16 -0.396686 -0.634171) (-1.1367e-16 -0.676396 -1.24422) (-9.31143e-17 -0.720783 -1.50953) (-8.89156e-17 -0.741471 -1.6193) (-7.89363e-17 -0.643132 -1.78556) (-7.10902e-17 -0.572561 -1.91962) (-7.81072e-17 -0.487096 -1.83909) (-7.96671e-17 -0.4227 -1.78676) (-8.10332e-17 -0.44239 -1.7749) (-8.26633e-17 -0.471558 -1.76165) (-8.47931e-17 -0.493016 -1.79258) (-8.73133e-17 -0.491687 -1.82962) (-9.10072e-17 -0.460132 -1.84083) (-9.59724e-17 -0.383246 -1.77808) (-1.0196e-16 -0.291139 -1.69102) (-1.09366e-16 -0.205034 -1.54836) (-1.1802e-16 -0.134994 -1.33779) (-1.25799e-16 -0.0864751 -1.06912) (-1.31538e-16 -0.0402795 -0.757492) (-1.35396e-16 0.0111864 -0.449895) (-1.37429e-16 0.0526916 -0.236076) (-1.38351e-16 0.0606588 -0.217069) (-1.39052e-16 -0.000190277 -0.289056) (-1.40223e-16 -0.0867508 -0.380237) (-1.41914e-16 -0.189235 -0.433494) (-1.43961e-16 -0.289062 -0.483362) (-1.45934e-16 -0.445601 -0.663757) (-1.48071e-16 -0.47938 -0.937068) (-1.51587e-16 -0.429485 -1.08597) (-1.5769e-16 -0.354263 -1.08895) (-1.64037e-16 -0.258835 -1.04438) (-1.68417e-16 -0.200391 -1.00166) (-1.69644e-16 -0.267975 -0.909881) (-1.69008e-16 -0.414926 -0.806878) (-1.67797e-16 -0.576923 -0.662788) (-1.72305e-16 -0.547064 -0.781671) (-1.77036e-16 -0.353098 -0.804526) (-1.75936e-16 -0.0546923 -0.972964) (-1.63456e-16 0.707539 -1.01574) (-1.66742e-16 -0.235198 -0.397145) (-1.76224e-16 -0.280008 -0.145845) (-1.77869e-16 -0.295376 -0.136924) (-1.7289e-16 -0.386554 -0.0890397) (-1.65335e-16 -0.584017 0.00729391) (-1.54407e-16 -0.876044 0.116737) (-1.37768e-16 -1.25807 0.214894) (-1.2047e-16 -1.6654 0.262722) (-1.04758e-16 -2.02861 0.311248) (-9.01819e-17 -2.35048 0.356234) (-7.73818e-17 -2.61617 0.393296) (-6.60154e-17 -2.81577 0.425458) (-5.59285e-17 -2.95178 0.455359) (-4.68334e-17 -3.03332 0.480575) (-3.84105e-17 -3.07023 0.504693) (-3.06055e-17 -3.07133 0.53151) (-2.33422e-17 -3.04612 0.562212) (-1.65482e-17 -3.004 0.596527) (-1.02321e-17 -2.9549 0.636437) (-4.41816e-18 -2.90433 0.681695) (8.83329e-19 -2.85607 0.733482) (5.65551e-18 -2.81033 0.791022) (9.89157e-18 -2.76956 0.855127) (1.35976e-17 -2.73368 0.92407) (1.67893e-17 -2.70346 0.998127) (1.94911e-17 -2.67582 1.07518) (2.17299e-17 -2.65022 1.15568) (2.35357e-17 -2.62182 1.23712) (2.49383e-17 -2.59119 1.31981) (2.5969e-17 -2.55421 1.39998) (2.66607e-17 -2.51217 1.47795) (2.70484e-17 -2.45972 1.54967) (2.71689e-17 -2.3984 1.61617) (2.70621e-17 -2.32523 1.67309) (2.677e-17 -2.24234 1.72204) (2.63357e-17 -2.15099 1.76118) (2.58027e-17 -2.04933 1.79525) (2.52128e-17 -1.93393 1.82615) (2.46078e-17 -1.80811 1.85969) (2.4029e-17 -1.6866 1.89753) (2.35225e-17 -1.52254 1.93935) (2.31618e-17 -1.23069 1.97729) (-4.3199e-16 0.506967 -2.55827) (-3.84756e-16 0.0340071 -1.90843) (-3.18563e-16 0.141216 -1.76068) (-2.77083e-16 0.500245 -1.03389) (-2.08495e-16 0.250845 -2.41778) (-1.81943e-16 0.331288 -2.45565) (-1.94212e-16 0.184771 -1.73249) (-2.21446e-16 0.0199196 -1.0203) (-2.25397e-16 0.0105702 -0.32923) (-2.14144e-16 0.109571 0.620428) (-2.02684e-16 0.288327 1.42962) (-1.90012e-16 0.00652224 0.943035) (-1.86058e-16 -0.0913111 1.30228) (-1.95005e-16 -0.605438 1.51558) (-2.09876e-16 -1.00591 1.3629) (-2.31214e-16 -1.15851 0.958221) (-2.43577e-16 -1.02025 0.467183) (-2.39258e-16 -0.70838 0.0302791) (-2.23292e-16 -0.328636 -0.205126) (-2.14248e-16 -0.0134075 -0.220082) (-2.04259e-16 0.184412 -0.260514) (-1.79672e-16 0.275296 -0.291347) (-1.80945e-16 0.180142 0.00574386) (-1.62833e-16 0.0645248 -0.203664) (-1.13275e-16 0.0931555 -0.706699) (-7.36737e-17 -0.364591 -1.8218) (-8.12331e-17 -0.214078 -1.74438) (-8.37936e-17 -0.277954 -1.6826) (-8.56834e-17 -0.288558 -1.64327) (-8.82886e-17 -0.309527 -1.67154) (-9.11367e-17 -0.324438 -1.74094) (-9.40911e-17 -0.313863 -1.75312) (-9.77927e-17 -0.23916 -1.67369) (-1.02705e-16 -0.118985 -1.57853) (-1.08615e-16 0.0125258 -1.4681) (-1.15821e-16 0.117206 -1.28629) (-1.23238e-16 0.177191 -1.03277) (-1.29595e-16 0.21643 -0.725216) (-1.34334e-16 0.25883 -0.382923) (-1.37268e-16 0.314614 -0.0858395) (-1.38715e-16 0.366693 0.0865685) (-1.39337e-16 0.33757 0.0981828) (-1.40085e-16 0.179739 0.0303985) (-1.4154e-16 -0.000638298 -0.0315626) (-1.43159e-16 -0.151954 -0.101549) (-1.44534e-16 -0.279275 -0.302268) (-1.46159e-16 -0.356417 -0.571908) (-1.48815e-16 -0.281004 -0.800201) (-1.52845e-16 -0.205698 -0.872717) (-1.56825e-16 -0.112458 -0.866431) (-1.59894e-16 -0.0298874 -0.817367) (-1.61653e-16 0.0100093 -0.715088) (-1.6287e-16 0.0332419 -0.58861) (-1.63312e-16 0.0183794 -0.488845) (-1.63864e-16 -0.068854 -0.44351) (-1.65129e-16 -0.130264 -0.389056) (-1.65579e-16 -0.239704 -0.334189) (-1.64835e-16 -0.255511 -0.27657) (-1.64337e-16 -0.258271 -0.164624) (-1.63424e-16 -0.276254 -0.0649642) (-1.63112e-16 -0.298326 -0.0662935) (-1.63162e-16 -0.322924 -0.127691) (-1.66647e-16 -0.281063 -0.183297) (-1.87325e-16 -0.132661 -0.0835955) (-1.83644e-16 -0.087035 0.144993) (-1.67371e-16 -0.3379 0.176964) (-1.53493e-16 -0.685104 0.217563) (-1.38317e-16 -1.10933 0.293254) (-1.21115e-16 -1.5592 0.369298) (-1.05005e-16 -1.97049 0.409529) (-9.08012e-17 -2.31572 0.444157) (-7.8437e-17 -2.60216 0.471339) (-6.73466e-17 -2.82535 0.491586) (-5.73192e-17 -2.98214 0.508462) (-4.82893e-17 -3.08158 0.52513) (-3.99037e-17 -3.13363 0.540966) (-3.19775e-17 -3.15196 0.559697) (-2.4542e-17 -3.14515 0.5822) (-1.75451e-17 -3.12262 0.610233) (-1.09916e-17 -3.09077 0.64368) (-4.9424e-18 -3.05725 0.684709) (5.70656e-19 -3.02427 0.732276) (5.52742e-18 -2.99441 0.787235) (9.91939e-18 -2.9673 0.847672) (1.3746e-17 -2.94473 0.91402) (1.70257e-17 -2.92501 0.984088) (1.97778e-17 -2.90696 1.05871) (2.2032e-17 -2.88743 1.135) (2.38171e-17 -2.86663 1.21353) (2.51708e-17 -2.84204 1.29078) (2.61277e-17 -2.81369 1.36793) (2.67287e-17 -2.77636 1.44116) (2.7014e-17 -2.73262 1.51174) (2.70284e-17 -2.67881 1.57604) (2.68175e-17 -2.61806 1.63575) (2.64281e-17 -2.54522 1.69023) (2.5907e-17 -2.46295 1.74486) (2.53051e-17 -2.36312 1.80148) (2.46877e-17 -2.24156 1.86046) (2.41822e-17 -1.99355 1.91407) (-5.74396e-16 1.00298 -2.35676) (-5.0093e-16 0.470207 -2.15243) (-4.11709e-16 0.159299 -2.24435) (-3.52521e-16 0.322352 -1.58689) (-2.59207e-16 0.508805 -2.12944) (-1.82466e-16 0.736963 -2.4185) (-1.65387e-16 0.747607 -1.89089) (-1.94397e-16 0.538616 -0.982847) (-2.20184e-16 0.243332 -0.307893) (-2.24991e-16 0.0189527 0.274886) (-2.10908e-16 -0.094747 1.08298) (-1.89309e-16 -0.378548 0.84489) (-1.84459e-16 -0.230309 1.1662) (-1.8767e-16 -0.272303 1.47246) (-1.88208e-16 -0.639061 1.56243) (-2.10108e-16 -0.864638 1.42472) (-2.36438e-16 -0.932288 1.05616) (-2.48537e-16 -0.829486 0.595156) (-2.44302e-16 -0.584578 0.228144) (-2.38366e-16 -0.276886 0.0621817) (-2.24608e-16 -0.00257217 -0.138442) (-1.9476e-16 0.241302 -0.41061) (-1.67488e-16 0.312473 -0.616377) (-1.75073e-16 0.138294 -0.584381) (-1.79791e-16 0.328293 -0.337648) (-8.10717e-17 -0.254593 -1.74082) (-8.20398e-17 -0.116931 -1.73625) (-8.49038e-17 -0.185782 -1.63548) (-8.63407e-17 -0.187954 -1.55177) (-8.84833e-17 -0.205957 -1.55686) (-9.16807e-17 -0.22044 -1.61542) (-9.50901e-17 -0.221896 -1.61011) (-9.81572e-17 -0.178367 -1.5466) (-1.01964e-16 -0.0734018 -1.45808) (-1.06432e-16 0.0856235 -1.387) (-1.11872e-16 0.238644 -1.25765) (-1.17656e-16 0.351994 -1.06409) (-1.2303e-16 0.41748 -0.812996) (-1.27472e-16 0.454149 -0.521362) (-1.30852e-16 0.484459 -0.216552) (-1.33238e-16 0.52316 0.0624032) (-1.34819e-16 0.575728 0.273153) (-1.35931e-16 0.604785 0.377199) (-1.37045e-16 0.591792 0.410175) (-1.38153e-16 0.556245 0.390968) (-1.39121e-16 0.496845 0.303677) (-1.40337e-16 0.424419 0.145118) (-1.42239e-16 0.393569 -0.0429677) (-1.44781e-16 0.38807 -0.18214) (-1.47526e-16 0.397271 -0.255804) (-1.49952e-16 0.401541 -0.273551) (-1.51841e-16 0.402809 -0.24268) (-1.53489e-16 0.411459 -0.175709) (-1.54976e-16 0.432104 -0.0986605) (-1.56429e-16 0.447559 -0.0215469) (-1.58064e-16 0.438445 0.0787994) (-1.59825e-16 0.397507 0.192848) (-1.61566e-16 0.357603 0.299138) (-1.62971e-16 0.316824 0.398065) (-1.63878e-16 0.260636 0.472488) (-1.64629e-16 0.195882 0.513961) (-1.65135e-16 0.11347 0.528514) (-1.65161e-16 0.0082692 0.525812) (-1.66657e-16 -0.0932914 0.478656) (-1.68901e-16 -0.149207 0.383842) (-1.69964e-16 -0.140916 0.246903) (-1.74649e-16 -0.202244 0.0568192) (-1.86907e-16 -0.0682079 0.148582) (-1.72255e-16 -0.223142 0.302359) (-1.54054e-16 -0.588063 0.32058) (-1.37655e-16 -1.00575 0.350365) (-1.21832e-16 -1.45128 0.417613) (-1.06598e-16 -1.89689 0.462021) (-9.26175e-17 -2.27165 0.484857) (-8.04996e-17 -2.57804 0.50367) (-6.9957e-17 -2.81964 0.517074) (-6.02241e-17 -2.99788 0.526292) (-5.12798e-17 -3.11826 0.535126) (-4.29407e-17 -3.19233 0.545121) (-3.48989e-17 -3.23174 0.557653) (-2.7198e-17 -3.24749 0.574728) (-1.99071e-17 -3.24719 0.59791) (-1.30412e-17 -3.23672 0.62757) (-6.65144e-18 -3.22183 0.664444) (-8.16274e-19 -3.2065 0.708526) (4.43606e-18 -3.1937 0.759384) (9.08955e-18 -3.18307 0.8163) (1.31403e-17 -3.17479 0.878793) (1.65964e-17 -3.1672 0.945945) (1.9483e-17 -3.16014 1.01683) (2.183e-17 -3.15182 1.0903) (2.36742e-17 -3.14083 1.16534) (2.50547e-17 -3.12619 1.24084) (2.60148e-17 -3.10601 1.31556) (2.65998e-17 -3.08112 1.38836) (2.68569e-17 -3.0534 1.45876) (2.68337e-17 -3.02569 1.52787) (2.65817e-17 -2.98435 1.59799) (2.61711e-17 -2.90659 1.66877) (2.57485e-17 -2.76764 1.73486) (-6.85762e-16 1.25225 -2.03939) (-5.97261e-16 0.917356 -1.93822) (-5.0638e-16 0.485907 -2.17209) (-4.43438e-16 0.279017 -1.99431) (-3.60429e-16 0.492963 -2.09834) (-2.53032e-16 0.864644 -2.33075) (-1.80351e-16 1.07483 -2.11515) (-1.62954e-16 1.08199 -1.39099) (-1.7756e-16 0.916519 -0.599728) (-1.95656e-16 0.657464 0.0183841) (-2.03001e-16 0.482642 0.580416) (-2.04984e-16 0.190322 0.763398) (-2.04227e-16 -0.187943 0.98621) (-1.93221e-16 -0.264537 1.22744) (-1.78274e-16 -0.431677 1.42896) (-1.8893e-16 -0.558166 1.55621) (-2.13132e-16 -0.65883 1.46851) (-2.38482e-16 -0.687229 1.14605) (-2.52911e-16 -0.632828 0.762494) (-2.50905e-16 -0.497906 0.346483) (-2.26543e-16 -0.321323 -0.123918) (-1.93405e-16 -0.149911 -0.379631) (-1.5411e-16 -0.0658367 -0.54865) (-1.37424e-16 -0.159589 -0.841947) (-1.40264e-16 -0.0463407 -0.872212) (-9.4335e-17 -0.188215 -1.58581) (-8.44213e-17 -0.137598 -1.72499) (-8.59394e-17 -0.190606 -1.60127) (-8.64675e-17 -0.184461 -1.48636) (-8.74943e-17 -0.178047 -1.47913) (-9.01389e-17 -0.170108 -1.50791) (-9.40663e-17 -0.17233 -1.45333) (-9.75513e-17 -0.16412 -1.35861) (-1.01277e-16 -0.110589 -1.23445) (-1.05479e-16 0.0249319 -1.16113) (-1.10211e-16 0.188994 -1.07385) (-1.14732e-16 0.347591 -0.965455) (-1.18681e-16 0.470541 -0.821013) (-1.22089e-16 0.560566 -0.636792) (-1.2504e-16 0.62627 -0.419269) (-1.27361e-16 0.682332 -0.196605) (-1.29107e-16 0.735381 0.0104763) (-1.30524e-16 0.784411 0.187175) (-1.31875e-16 0.823331 0.328621) (-1.33223e-16 0.850934 0.426895) (-1.34559e-16 0.865936 0.477084) (-1.35963e-16 0.868115 0.479577) (-1.37579e-16 0.880133 0.442994) (-1.39451e-16 0.903396 0.3925) (-1.41485e-16 0.927625 0.354105) (-1.43553e-16 0.943401 0.336413) (-1.45606e-16 0.943764 0.342644) (-1.47623e-16 0.932981 0.365604) (-1.49567e-16 0.918139 0.398591) (-1.51379e-16 0.908367 0.434214) (-1.53294e-16 0.899691 0.473504) (-1.55504e-16 0.888826 0.510269) (-1.57963e-16 0.873663 0.544524) (-1.60554e-16 0.852117 0.582593) (-1.63213e-16 0.820754 0.621745) (-1.65837e-16 0.783877 0.656984) (-1.68266e-16 0.743745 0.684428) (-1.70205e-16 0.70155 0.699113) (-1.7149e-16 0.653914 0.693933) (-1.72412e-16 0.594317 0.663484) (-1.731e-16 0.527305 0.612014) (-1.74351e-16 0.427159 0.545123) (-1.78151e-16 0.363596 0.466128) (-1.78983e-16 0.275044 0.378304) (-1.78454e-16 0.206088 0.271593) (-1.7904e-16 -0.0208838 0.128235) (-1.75927e-16 -0.0432607 0.296403) (-1.57858e-16 -0.418726 0.360101) (-1.40352e-16 -0.865641 0.377227) (-1.23963e-16 -1.32831 0.413068) (-1.08992e-16 -1.77921 0.456501) (-9.60714e-17 -2.18523 0.47718) (-8.44227e-17 -2.51596 0.489415) (-7.43662e-17 -2.78453 0.499952) (-6.51776e-17 -2.98999 0.506903) (-5.63443e-17 -3.13943 0.511611) (-4.79134e-17 -3.24227 0.517753) (-3.97682e-17 -3.30933 0.527516) (-3.17374e-17 -3.35076 0.541416) (-2.40302e-17 -3.37484 0.56131) (-1.6733e-17 -3.38806 0.587545) (-9.90234e-18 -3.3949 0.620306) (-3.60974e-18 -3.39992 0.659369) (2.06894e-18 -3.40475 0.704869) (7.1111e-18 -3.41094 0.756126) (1.15086e-17 -3.41793 0.813222) (1.52691e-17 -3.42468 0.875259) (1.84126e-17 -3.43109 0.942281) (2.09722e-17 -3.43496 1.01287) (2.29893e-17 -3.43815 1.08686) (2.45119e-17 -3.44176 1.16279) (2.55919e-17 -3.44974 1.24057) (2.62818e-17 -3.44697 1.31989) (2.66412e-17 -3.42188 1.40076) (2.67553e-17 -3.35898 1.47723) (-7.59664e-16 1.25712 -1.7535) (-6.65151e-16 1.15376 -1.63814) (-5.78777e-16 0.814955 -1.86653) (-5.18735e-16 0.453441 -1.96442) (-4.5713e-16 0.414598 -2.0686) (-3.6187e-16 0.725864 -2.26445) (-2.64661e-16 1.05926 -2.24063) (-1.997e-16 1.24748 -1.80181) (-1.72983e-16 1.28091 -1.10475) (-1.69928e-16 1.1527 -0.422947) (-1.74108e-16 0.961099 0.134387) (-1.77666e-16 0.722994 0.544831) (-1.79602e-16 0.41366 0.881178) (-1.80925e-16 0.0756813 1.1403) (-1.81048e-16 -0.146019 1.31369) (-1.8565e-16 -0.35987 1.45984) (-2.00284e-16 -0.454162 1.58032) (-2.24334e-16 -0.501016 1.41287) (-2.45314e-16 -0.552724 1.00419) (-2.48239e-16 -0.610573 0.491739) (-2.26017e-16 -0.525913 -0.177398) (-1.91849e-16 -0.359229 -0.527268) (-1.46442e-16 -0.290765 -0.68108) (-1.09551e-16 -0.423018 -1.08987) (-1.16741e-16 -0.3002 -1.16887) (-9.28538e-17 -0.26332 -1.59859) (-8.69465e-17 -0.198963 -1.66308) (-8.85353e-17 -0.204769 -1.52143) (-8.89373e-17 -0.186174 -1.41203) (-8.93193e-17 -0.151429 -1.40957) (-9.12448e-17 -0.117525 -1.43788) (-9.45446e-17 -0.114975 -1.35346) (-9.82637e-17 -0.135199 -1.23594) (-1.01331e-16 -0.15867 -1.07214) (-1.05201e-16 -0.0999533 -0.946188) (-1.09289e-16 0.035325 -0.853258) (-1.12636e-16 0.203008 -0.800084) (-1.15882e-16 0.355412 -0.698082) (-1.19254e-16 0.478787 -0.576114) (-1.22367e-16 0.575789 -0.425459) (-1.24894e-16 0.657912 -0.274305) (-1.26816e-16 0.732054 -0.122471) (-1.28404e-16 0.804233 0.0173513) (-1.29891e-16 0.868693 0.147732) (-1.31487e-16 0.927347 0.263214) (-1.33241e-16 0.978934 0.362845) (-1.35112e-16 1.02313 0.443889) (-1.37033e-16 1.06553 0.502667) (-1.38896e-16 1.10554 0.543105) (-1.4065e-16 1.14397 0.575044) (-1.42387e-16 1.17349 0.610806) (-1.44259e-16 1.19466 0.654223) (-1.46501e-16 1.20645 0.704704) (-1.49208e-16 1.20999 0.758727) (-1.52068e-16 1.20928 0.80861) (-1.54899e-16 1.20704 0.84409) (-1.57822e-16 1.20359 0.864181) (-1.61068e-16 1.19808 0.876148) (-1.64602e-16 1.19169 0.883415) (-1.68292e-16 1.1813 0.882605) (-1.71935e-16 1.16766 0.873804) (-1.75446e-16 1.14862 0.858673) (-1.78659e-16 1.12638 0.838395) (-1.81389e-16 1.10284 0.812773) (-1.83487e-16 1.0797 0.782662) (-1.84873e-16 1.05779 0.746893) (-1.85561e-16 1.03138 0.701488) (-1.8612e-16 1.00458 0.640906) (-1.86771e-16 0.97326 0.565451) (-1.87588e-16 0.933585 0.479031) (-1.89557e-16 0.869705 0.383036) (-1.9052e-16 0.802153 0.315074) (-1.87697e-16 0.659581 0.240971) (-1.84496e-16 0.469165 0.170191) (-1.78377e-16 0.157473 0.13824) (-1.613e-16 -0.161313 0.292708) (-1.44298e-16 -0.647996 0.327831) (-1.28443e-16 -1.1347 0.353577) (-1.13445e-16 -1.60983 0.386614) (-1.01088e-16 -2.04609 0.416479) (-9.07918e-17 -2.40943 0.430959) (-8.12e-17 -2.70934 0.44014) (-7.25441e-17 -2.9517 0.448498) (-6.39796e-17 -3.13857 0.455498) (-5.54324e-17 -3.27584 0.461163) (-4.70277e-17 -3.37582 0.470211) (-3.87328e-17 -3.44597 0.482746) (-3.05282e-17 -3.49678 0.500027) (-2.26655e-17 -3.53274 0.521343) (-1.52538e-17 -3.5619 0.548496) (-8.36645e-18 -3.58596 0.579841) (-2.08319e-18 -3.61031 0.617759) (3.53583e-18 -3.63422 0.660619) (8.46185e-18 -3.65984 0.710831) (1.26977e-17 -3.68806 0.76694) (1.62615e-17 -3.72216 0.830774) (1.91952e-17 -3.76531 0.900552) (2.15433e-17 -3.80569 0.975841) (2.33407e-17 -3.83308 1.05371) (2.45282e-17 -3.83402 1.11955) (-7.99962e-16 1.16805 -1.57943) (-7.08362e-16 1.22387 -1.40534) (-6.2875e-16 1.0358 -1.55652) (-5.72465e-16 0.680299 -1.71237) (-5.26158e-16 0.427971 -1.83743) (-4.56283e-16 0.52403 -2.07215) (-3.67725e-16 0.802372 -2.20514) (-2.86438e-16 1.05805 -2.02654) (-2.29627e-16 1.21642 -1.5399) (-1.98673e-16 1.23502 -0.91374) (-1.84926e-16 1.16783 -0.319714) (-1.79656e-16 1.04901 0.184188) (-1.78154e-16 0.844339 0.597587) (-1.77738e-16 0.541695 0.949013) (-1.82168e-16 0.247441 1.1794) (-1.91084e-16 0.00199788 1.33641) (-2.04558e-16 -0.21409 1.4698) (-2.25723e-16 -0.353617 1.46743) (-2.46775e-16 -0.490597 1.14783) (-2.4756e-16 -0.609201 0.572114) (-2.22541e-16 -0.692174 -0.134576) (-1.87473e-16 -0.57614 -0.637249) (-1.49128e-16 -0.482639 -0.755121) (-1.06037e-16 -0.566548 -1.1127) (-9.10047e-17 -0.534696 -1.48738) (-8.70403e-17 -0.383924 -1.59499) (-8.73956e-17 -0.296815 -1.53942) (-9.02176e-17 -0.251418 -1.39048) (-9.12009e-17 -0.211703 -1.28447) (-9.17779e-17 -0.144551 -1.28566) (-9.34791e-17 -0.0804168 -1.31769) (-9.69522e-17 -0.0597329 -1.26815) (-1.00845e-16 -0.0916721 -1.13216) (-1.03934e-16 -0.123528 -0.97104) (-1.0715e-16 -0.105892 -0.8172) (-1.08483e-16 -0.0572859 -0.688653) (-1.10587e-16 0.0535221 -0.619895) (-1.13694e-16 0.215609 -0.591408) (-1.15782e-16 0.360773 -0.522339) (-1.17506e-16 0.481008 -0.418383) (-1.19506e-16 0.576905 -0.288869) (-1.21631e-16 0.665812 -0.158466) (-1.2368e-16 0.750394 -0.0333619) (-1.25706e-16 0.828649 0.0825297) (-1.27846e-16 0.901437 0.190601) (-1.30072e-16 0.967219 0.293589) (-1.32379e-16 1.02362 0.390314) (-1.34689e-16 1.06931 0.475553) (-1.36856e-16 1.10701 0.547659) (-1.38795e-16 1.13976 0.608148) (-1.40632e-16 1.16655 0.667021) (-1.42706e-16 1.19061 0.726851) (-1.45444e-16 1.2106 0.791484) (-1.49063e-16 1.22948 0.857672) (-1.53469e-16 1.24419 0.926787) (-1.58284e-16 1.26033 0.987395) (-1.63289e-16 1.27506 1.03775) (-1.68322e-16 1.29025 1.07642) (-1.73289e-16 1.30294 1.10347) (-1.78188e-16 1.31387 1.11684) (-1.83166e-16 1.32214 1.11842) (-1.88135e-16 1.3276 1.11104) (-1.92837e-16 1.32978 1.0928) (-1.97036e-16 1.3257 1.06498) (-2.00585e-16 1.31822 1.02543) (-2.0337e-16 1.30824 0.978054) (-2.05175e-16 1.29995 0.920508) (-2.05923e-16 1.29182 0.855412) (-2.05795e-16 1.28948 0.780857) (-2.04986e-16 1.29016 0.701033) (-2.04106e-16 1.29591 0.608965) (-2.03821e-16 1.30176 0.506724) (-2.03467e-16 1.30135 0.395748) (-2.03457e-16 1.27738 0.287854) (-2.03146e-16 1.23123 0.195321) (-1.99075e-16 1.11296 0.138894) (-1.92271e-16 0.89181 0.0791797) (-1.85596e-16 0.57656 0.045424) (-1.68324e-16 0.174295 0.0919553) (-1.4726e-16 -0.352326 0.202397) (-1.34321e-16 -0.870735 0.245444) (-1.21231e-16 -1.37347 0.276965) (-1.08871e-16 -1.84033 0.306882) (-9.95692e-17 -2.25346 0.33179) (-9.11169e-17 -2.58868 0.345973) (-8.27916e-17 -2.87046 0.357422) (-7.47343e-17 -3.09817 0.368369) (-6.62781e-17 -3.27684 0.379281) (-5.76146e-17 -3.41109 0.38815) (-4.89296e-17 -3.51296 0.400067) (-4.02699e-17 -3.59048 0.41304) (-3.17233e-17 -3.65264 0.429647) (-2.35208e-17 -3.70334 0.447177) (-1.58198e-17 -3.75007 0.469445) (-8.71592e-18 -3.79619 0.494804) (-2.29903e-18 -3.85082 0.527402) (3.37999e-18 -3.91404 0.566645) (8.28748e-18 -3.98357 0.614003) (1.23635e-17 -4.05382 0.665439) (1.52767e-17 -4.12112 0.706561) (-8.10278e-16 0.946635 -1.57557) (-7.32866e-16 1.16553 -1.29243) (-6.62744e-16 1.16175 -1.33571) (-6.10031e-16 0.891093 -1.44424) (-5.7129e-16 0.576245 -1.53345) (-5.20095e-16 0.452828 -1.76374) (-4.49822e-16 0.548885 -2.00792) (-3.74171e-16 0.739571 -2.05744) (-3.07297e-16 0.919777 -1.79795) (-2.5848e-16 1.00914 -1.29318) (-2.28586e-16 1.01085 -0.712301) (-2.11997e-16 1.01348 -0.197574) (-2.03596e-16 0.961538 0.218953) (-1.9923e-16 0.824497 0.587568) (-1.97859e-16 0.579662 0.907643) (-2.02909e-16 0.251439 1.12221) (-2.13838e-16 0.00206933 1.30127) (-2.31953e-16 -0.228011 1.35551) (-2.49336e-16 -0.450675 1.11596) (-2.48453e-16 -0.637728 0.581224) (-2.17783e-16 -0.782599 -0.0976909) (-1.74103e-16 -0.762306 -0.69206) (-1.40517e-16 -0.626699 -0.844156) (-1.11725e-16 -0.637741 -0.955756) (-8.95685e-17 -0.633483 -1.39215) (-8.40003e-17 -0.481421 -1.54421) (-8.51502e-17 -0.380882 -1.4632) (-8.90528e-17 -0.345363 -1.29241) (-8.98103e-17 -0.314648 -1.15955) (-9.01997e-17 -0.226272 -1.13037) (-9.12853e-17 -0.0840688 -1.16505) (-9.45793e-17 0.0121338 -1.19221) (-9.73462e-17 -0.00059148 -1.05136) (-1.00853e-16 -0.0500015 -0.802191) (-1.04795e-16 -0.0903565 -0.585235) (-1.07502e-16 -0.102639 -0.454028) (-1.11199e-16 -0.0707164 -0.308315) (-1.17828e-16 0.0487461 -0.254009) (-1.22503e-16 0.211658 -0.238258) (-1.2391e-16 0.365799 -0.224539) (-1.24562e-16 0.480792 -0.154134) (-1.26126e-16 0.571408 -0.068529) (-1.27699e-16 0.657873 0.0191724) (-1.29474e-16 0.737883 0.104081) (-1.31873e-16 0.808859 0.197939) (-1.34633e-16 0.877897 0.291343) (-1.37568e-16 0.944052 0.379784) (-1.40532e-16 1.00389 0.462305) (-1.4337e-16 1.05846 0.538869) (-1.46229e-16 1.1054 0.609836) (-1.4939e-16 1.14862 0.67683) (-1.53097e-16 1.1871 0.742469) (-1.57382e-16 1.22302 0.805679) (-1.62392e-16 1.2558 0.86809) (-1.68215e-16 1.28705 0.929825) (-1.74692e-16 1.31812 0.989719) (-1.81507e-16 1.34933 1.04488) (-1.8842e-16 1.37917 1.09557) (-1.95176e-16 1.4056 1.1396) (-2.01596e-16 1.43086 1.17434) (-2.07719e-16 1.45359 1.20077) (-2.1356e-16 1.47568 1.21965) (-2.19016e-16 1.49261 1.22995) (-2.2407e-16 1.50504 1.22863) (-2.28717e-16 1.50989 1.21792) (-2.32712e-16 1.51048 1.19621) (-2.3581e-16 1.50609 1.16518) (-2.37836e-16 1.49983 1.12143) (-2.38674e-16 1.49165 1.06706) (-2.38166e-16 1.48591 1.00108) (-2.36218e-16 1.48384 0.92423) (-2.33259e-16 1.4913 0.82985) (-2.29806e-16 1.51315 0.719953) (-2.26336e-16 1.54762 0.596947) (-2.23673e-16 1.59124 0.464326) (-2.21627e-16 1.62889 0.327876) (-2.19057e-16 1.63927 0.195617) (-2.16736e-16 1.60989 0.0782063) (-2.11466e-16 1.53228 -0.00210798) (-2.02194e-16 1.34023 -0.0535506) (-1.91922e-16 1.03289 -0.0908033) (-1.80904e-16 0.616761 -0.0886547) (-1.5565e-16 0.0935563 0.00336914) (-1.39988e-16 -0.514671 0.0872791) (-1.30936e-16 -1.04379 0.13541) (-1.20855e-16 -1.54581 0.167754) (-1.11344e-16 -1.99797 0.197486) (-1.04253e-16 -2.39224 0.223136) (-9.69955e-17 -2.71314 0.243649) (-8.92798e-17 -2.98467 0.260584) (-8.13027e-17 -3.2079 0.278637) (-7.26516e-17 -3.38641 0.294549) (-6.35709e-17 -3.52669 0.306829) (-5.43252e-17 -3.6348 0.315602) (-4.50511e-17 -3.72429 0.322669) (-3.59001e-17 -3.80707 0.327204) (-2.71157e-17 -3.88822 0.332299) (-1.89705e-17 -3.96482 0.338738) (-1.17377e-17 -4.04681 0.3458) (-6.29239e-18 -4.17037 0.350215) (-8.05617e-16 0.736375 -1.68326) (-7.44622e-16 1.042 -1.30525) (-6.85725e-16 1.19672 -1.2321) (-6.37002e-16 1.05124 -1.27117) (-6.01524e-16 0.77654 -1.29211) (-5.60382e-16 0.531858 -1.45749) (-5.03701e-16 0.443512 -1.75219) (-4.38275e-16 0.497088 -1.94158) (-3.70931e-16 0.627854 -1.8921) (-3.13495e-16 0.714625 -1.55803) (-2.77127e-16 0.698123 -1.05908) (-2.56544e-16 0.740569 -0.593219) (-2.43201e-16 0.815948 -0.189498) (-2.3296e-16 0.818552 0.18712) (-2.25012e-16 0.722103 0.527767) (-2.20958e-16 0.478977 0.825153) (-2.25086e-16 0.0757928 1.0414) (-2.40622e-16 -0.218702 1.15856) (-2.511e-16 -0.448715 1.03089) (-2.47089e-16 -0.571253 0.680106) (-2.19844e-16 -0.766218 0.100154) (-1.72408e-16 -0.829094 -0.532268) (-1.37744e-16 -0.713728 -0.825323) (-1.22136e-16 -0.636075 -0.827624) (-1.00323e-16 -0.597848 -1.20016) (-8.93046e-17 -0.515648 -1.44411) (-8.71607e-17 -0.440227 -1.43297) (-8.98501e-17 -0.447837 -1.24524) (-9.10994e-17 -0.44632 -1.09407) (-9.13732e-17 -0.384537 -0.973491) (-9.09057e-17 -0.172896 -0.972246) (-9.1275e-17 0.0594824 -1.07757) (-9.11285e-17 0.151563 -1.04323) (-9.398e-17 0.141077 -0.844509) (-9.98591e-17 0.103022 -0.638624) (-1.06088e-16 0.0683614 -0.481076) (-1.12389e-16 0.0417256 -0.328231) (-1.20493e-16 0.0427589 -0.158352) (-1.29517e-16 0.103987 -0.0448611) (-1.36046e-16 0.205183 -0.0211716) (-1.41408e-16 0.316217 0.00415853) (-1.4851e-16 0.408427 0.0998156) (-1.57131e-16 0.489823 0.20841) (-1.6657e-16 0.576171 0.301232) (-1.75177e-16 0.670753 0.390648) (-1.82615e-16 0.768352 0.483196) (-1.89088e-16 0.863311 0.573132) (-1.94419e-16 0.954048 0.657701) (-1.98857e-16 1.04019 0.733205) (-2.02876e-16 1.12004 0.802932) (-2.0712e-16 1.19312 0.867819) (-2.11908e-16 1.25703 0.932379) (-2.17309e-16 1.31482 0.993864) (-2.23478e-16 1.36585 1.05546) (-2.304e-16 1.41487 1.11214) (-2.3767e-16 1.45947 1.16611) (-2.4481e-16 1.50336 1.21374) (-2.51619e-16 1.54505 1.25752) (-2.57911e-16 1.58553 1.29529) (-2.63532e-16 1.62142 1.32762) (-2.68506e-16 1.65506 1.35218) (-2.72997e-16 1.68481 1.37018) (-2.76942e-16 1.71186 1.38199) (-2.80265e-16 1.73567 1.38669) (-2.83066e-16 1.75495 1.38493) (-2.85358e-16 1.76904 1.37545) (-2.87049e-16 1.77722 1.35848) (-2.88071e-16 1.78119 1.33079) (-2.88442e-16 1.77845 1.29512) (-2.87989e-16 1.77127 1.2504) (-2.86457e-16 1.75899 1.1996) (-2.83538e-16 1.74725 1.13756) (-2.7915e-16 1.73657 1.06541) (-2.73232e-16 1.73388 0.979019) (-2.66227e-16 1.74178 0.876683) (-2.59001e-16 1.77163 0.748949) (-2.52106e-16 1.82307 0.602072) (-2.46027e-16 1.8907 0.440071) (-2.41182e-16 1.9602 0.275912) (-2.36311e-16 2.00852 0.118719) (-2.30613e-16 2.00744 -0.0233872) (-2.24592e-16 1.95138 -0.139448) (-2.14052e-16 1.81419 -0.209474) (-2.01395e-16 1.54782 -0.24992) (-1.89039e-16 1.16366 -0.263983) (-1.75209e-16 0.689817 -0.236748) (-1.49241e-16 0.0845583 -0.140218) (-1.40426e-16 -0.558326 -0.060674) (-1.35128e-16 -1.0982 -0.000980736) (-1.27984e-16 -1.60728 0.0408349) (-1.209e-16 -2.05307 0.0787739) (-1.15034e-16 -2.44506 0.116196) (-1.08689e-16 -2.76504 0.15317) (-1.01215e-16 -3.03809 0.183007) (-9.30605e-17 -3.26614 0.210249) (-8.40281e-17 -3.46026 0.228936) (-7.41322e-17 -3.62579 0.237934) (-6.40322e-17 -3.74008 0.235664) (-5.41657e-17 -3.83317 0.225197) (-4.61129e-17 -4.014 0.221331) (-7.9191e-16 0.574226 -1.89209) (-7.47153e-16 0.883878 -1.42829) (-7.00387e-16 1.14323 -1.24762) (-6.56793e-16 1.13667 -1.2206) (-6.23385e-16 0.951472 -1.16511) (-5.87657e-16 0.690143 -1.24306) (-5.39696e-16 0.481174 -1.50785) (-4.83956e-16 0.407681 -1.73947) (-4.19932e-16 0.435592 -1.89326) (-3.59716e-16 0.480581 -1.76975) (-3.2162e-16 0.410401 -1.34039) (-2.99752e-16 0.381638 -0.901522) (-2.83885e-16 0.507533 -0.583751) (-2.71727e-16 0.63491 -0.282349) (-2.60552e-16 0.704142 0.014951) (-2.49181e-16 0.703878 0.317011) (-2.42063e-16 0.466895 0.613945) (-2.43844e-16 0.111032 0.853556) (-2.54687e-16 -0.427641 1.01186) (-2.50264e-16 -0.471922 0.826769) (-2.3409e-16 -0.655337 0.431812) (-1.94195e-16 -0.793516 -0.16087) (-1.4161e-16 -0.856448 -0.746706) (-1.16399e-16 -0.738094 -0.896734) (-1.05638e-16 -0.661356 -1.0661) (-9.43635e-17 -0.554542 -1.34021) (-9.21467e-17 -0.487802 -1.37386) (-9.53985e-17 -0.522683 -1.19977) (-9.9267e-17 -0.561246 -1.04771) (-1.0376e-16 -0.53369 -0.897115) (-1.0386e-16 -0.392398 -0.706902) (-1.00712e-16 -0.0738736 -0.831048) (-9.83311e-17 0.144178 -0.914383) (-9.89953e-17 0.244667 -0.786055) (-1.04382e-16 0.271104 -0.595233) (-1.11285e-16 0.276873 -0.431915) (-1.18804e-16 0.273108 -0.293723) (-1.27152e-16 0.264372 -0.153357) (-1.37537e-16 0.265639 -0.0294032) (-1.49303e-16 0.288321 0.0665339) (-1.61718e-16 0.353757 0.135174) (-1.74873e-16 0.438569 0.199157) (-1.9134e-16 0.529137 0.271987) (-2.12341e-16 0.616766 0.381153) (-2.33819e-16 0.705587 0.498502) (-2.52855e-16 0.798931 0.599304) (-2.69176e-16 0.891712 0.688006) (-2.82511e-16 0.982676 0.770391) (-2.93194e-16 1.06738 0.847751) (-3.01697e-16 1.14749 0.920313) (-3.09039e-16 1.22329 0.986716) (-3.15765e-16 1.29523 1.04839) (-3.2199e-16 1.36118 1.10798) (-3.27874e-16 1.42324 1.16486) (-3.3355e-16 1.47939 1.21706) (-3.38791e-16 1.53146 1.26264) (-3.43426e-16 1.57983 1.30208) (-3.47363e-16 1.62712 1.33554) (-3.50567e-16 1.67267 1.36166) (-3.53068e-16 1.716 1.37958) (-3.55002e-16 1.75671 1.39391) (-3.56138e-16 1.79424 1.40724) (-3.56449e-16 1.83094 1.41669) (-3.56195e-16 1.86417 1.42058) (-3.55383e-16 1.89595 1.41717) (-3.54034e-16 1.92266 1.40888) (-3.52289e-16 1.94563 1.3965) (-3.50274e-16 1.9634 1.38052) (-3.47941e-16 1.97875 1.35752) (-3.45229e-16 1.9885 1.32938) (-3.42075e-16 1.99456 1.29423) (-3.38377e-16 1.99596 1.25329) (-3.34059e-16 1.9939 1.20433) (-3.28909e-16 1.98725 1.15145) (-3.22611e-16 1.97846 1.09228) (-3.14916e-16 1.97105 1.02557) (-3.05845e-16 1.97235 0.944732) (-2.95681e-16 1.9876 0.848138) (-2.85365e-16 2.02546 0.725845) (-2.75712e-16 2.09225 0.576269) (-2.66883e-16 2.18328 0.40497) (-2.59133e-16 2.28231 0.224349) (-2.52237e-16 2.37078 0.0458804) (-2.44606e-16 2.41683 -0.114268) (-2.36069e-16 2.39672 -0.253261) (-2.26832e-16 2.30802 -0.358076) (-2.13402e-16 2.12641 -0.418836) (-1.9988e-16 1.81417 -0.445953) (-1.8747e-16 1.38551 -0.445478) (-1.74558e-16 0.878631 -0.409242) (-1.52958e-16 0.248287 -0.326315) (-1.47105e-16 -0.455572 -0.231716) (-1.4629e-16 -0.993937 -0.152984) (-1.41843e-16 -1.51708 -0.0850311) (-1.36766e-16 -1.98071 -0.0224382) (-1.31888e-16 -2.39908 0.0492143) (-1.26976e-16 -2.76302 0.124169) (-1.19444e-16 -3.04901 0.170124) (-1.10991e-16 -3.32007 0.201946) (-1.03271e-16 -3.62147 0.23392) (-7.70925e-16 0.391163 -2.13468) (-7.41966e-16 0.669139 -1.64279) (-7.08245e-16 1.02231 -1.37054) (-6.7107e-16 1.14296 -1.28133) (-6.4009e-16 1.06647 -1.15768) (-6.07871e-16 0.865809 -1.13653) (-5.68746e-16 0.641944 -1.27229) (-5.24771e-16 0.487831 -1.45739) (-4.65718e-16 0.401943 -1.76385) (-4.01857e-16 0.403078 -1.84471) (-3.5683e-16 0.295995 -1.5157) (-3.31152e-16 0.111413 -1.07949) (-3.14004e-16 0.113811 -0.787597) (-3.03931e-16 0.215872 -0.560064) (-2.93715e-16 0.434012 -0.371327) (-2.80393e-16 0.688446 -0.182778) (-2.68164e-16 0.755573 0.0778282) (-2.61869e-16 0.57904 0.334554) (-2.61547e-16 0.272632 0.564848) (-2.65643e-16 -0.132725 0.740742) (-2.46469e-16 -0.571749 0.502192) (-2.18538e-16 -0.658424 0.0725415) (-1.71224e-16 -0.792495 -0.491543) (-1.36096e-16 -0.648437 -0.833268) (-1.09612e-16 -0.601472 -1.10141) (-9.61422e-17 -0.5466 -1.27368) (-9.33642e-17 -0.464438 -1.28737) (-9.8718e-17 -0.465515 -1.08219) (-1.04291e-16 -0.566029 -0.871121) (-1.14346e-16 -0.731589 -0.615128) (-1.23635e-16 -0.881607 -0.253027) (-1.27737e-16 -0.527383 -0.522021) (-1.26521e-16 -0.226656 -0.682521) (-1.27464e-16 -0.0449758 -0.627964) (-1.35346e-16 0.0606577 -0.469865) (-1.46985e-16 0.150217 -0.315255) (-1.61101e-16 0.228228 -0.181393) (-1.78818e-16 0.297705 -0.0573885) (-2.00977e-16 0.352387 0.0675555) (-2.27456e-16 0.408798 0.19075) (-2.56359e-16 0.47526 0.33553) (-2.83412e-16 0.549548 0.470039) (-3.0912e-16 0.634754 0.566817) (-3.35162e-16 0.727718 0.64516) (-3.59987e-16 0.80343 0.736875) (-3.80976e-16 0.868511 0.830525) (-3.98135e-16 0.933363 0.91365) (-4.11636e-16 0.995854 0.985948) (-4.21998e-16 1.05743 1.05094) (-4.29932e-16 1.11522 1.11185) (-4.36209e-16 1.16958 1.17138) (-4.40959e-16 1.22453 1.22423) (-4.44404e-16 1.27865 1.27319) (-4.47088e-16 1.33282 1.31554) (-4.49506e-16 1.3852 1.35434) (-4.51459e-16 1.43791 1.38603) (-4.52789e-16 1.48896 1.41423) (-4.53522e-16 1.53963 1.43599) (-4.53778e-16 1.58846 1.45424) (-4.53485e-16 1.63854 1.466) (-4.52471e-16 1.68852 1.47346) (-4.50563e-16 1.73912 1.47532) (-4.47674e-16 1.78773 1.47249) (-4.43749e-16 1.83444 1.46465) (-4.3888e-16 1.87894 1.45193) (-4.33372e-16 1.92262 1.43263) (-4.27598e-16 1.96299 1.40922) (-4.21754e-16 1.99729 1.38671) (-4.15651e-16 2.02756 1.36187) (-4.09309e-16 2.05475 1.33402) (-4.02766e-16 2.07878 1.30215) (-3.96054e-16 2.09783 1.26855) (-3.89247e-16 2.11386 1.2303) (-3.82378e-16 2.12489 1.18979) (-3.75172e-16 2.13404 1.14432) (-3.67556e-16 2.13878 1.09606) (-3.59414e-16 2.14127 1.04315) (-3.5051e-16 2.1406 0.989372) (-3.40527e-16 2.14263 0.931908) (-3.29477e-16 2.15247 0.866278) (-3.17564e-16 2.18141 0.782473) (-3.05434e-16 2.2339 0.677585) (-2.94036e-16 2.31722 0.542701) (-2.83653e-16 2.43061 0.380145) (-2.7408e-16 2.56146 0.198814) (-2.65323e-16 2.68701 0.0145922) (-2.56866e-16 2.78759 -0.161934) (-2.47486e-16 2.83257 -0.315864) (-2.37421e-16 2.8029 -0.445196) (-2.27064e-16 2.69519 -0.54382) (-2.13749e-16 2.504 -0.605479) (-2.00973e-16 2.18469 -0.635632) (-1.89974e-16 1.75167 -0.638608) (-1.79853e-16 1.2361 -0.613739) (-1.65196e-16 0.631125 -0.605588) (-1.53065e-16 -0.0728694 -0.522049) (-1.63952e-16 -0.626538 -0.263345) (-1.63244e-16 -1.18854 -0.108448) (-1.6029e-16 -1.92133 0.0270304) (-1.57048e-16 -2.43705 0.104062) (-7.405e-16 0.416928 -2.39117) (-7.28346e-16 0.453591 -1.93234) (-7.0977e-16 0.835025 -1.58825) (-6.80721e-16 1.05834 -1.43029) (-6.52815e-16 1.08931 -1.25604) (-6.23412e-16 0.982786 -1.13468) (-5.91486e-16 0.822305 -1.10715) (-5.56237e-16 0.657572 -1.18204) (-5.00476e-16 0.505789 -1.53651) (-4.32227e-16 0.470535 -1.80324) (-3.79412e-16 0.358939 -1.65086) (-3.51663e-16 0.0807608 -1.21874) (-3.33428e-16 -0.0800616 -0.931236) (-3.2471e-16 -0.215807 -0.695769) (-3.19252e-16 -0.0885712 -0.551814) (-3.08925e-16 0.262921 -0.505414) (-2.95078e-16 0.570019 -0.339767) (-2.82495e-16 0.692865 -0.101311) (-2.75438e-16 0.599661 0.131687) (-2.74694e-16 0.413904 0.319104) (-2.78013e-16 0.195705 0.469428) (-2.8282e-16 -0.0241477 0.584346) (-2.71761e-16 -0.435925 0.535067) (-2.12509e-16 -0.607736 -0.0654418) (-1.58635e-16 -0.706219 -0.630398) (-1.20356e-16 -0.543728 -1.0488) (-1.12034e-16 -0.386894 -1.07608) (-1.1503e-16 -0.322774 -0.918262) (-1.20711e-16 -0.296443 -0.881465) (-1.31886e-16 -0.384912 -0.77209) (-1.4648e-16 -0.571025 -0.622407) (-1.62614e-16 -0.658806 -0.571156) (-1.76077e-16 -0.533645 -0.591778) (-1.9148e-16 -0.345419 -0.530146) (-2.14819e-16 -0.157745 -0.353864) (-2.46653e-16 0.0102438 -0.116723) (-2.83877e-16 0.168237 0.118923) (-3.21205e-16 0.308049 0.321101) (-3.55921e-16 0.423602 0.489298) (-3.86483e-16 0.520184 0.618184) (-4.13287e-16 0.599829 0.715641) (-4.3622e-16 0.659005 0.792381) (-4.56853e-16 0.70513 0.855472) (-4.76383e-16 0.757187 0.905758) (-4.94559e-16 0.814936 0.952545) (-5.09438e-16 0.866164 1.00128) (-5.20847e-16 0.911825 1.04952) (-5.29342e-16 0.954792 1.09495) (-5.35471e-16 0.997372 1.1379) (-5.39748e-16 1.03866 1.17912) (-5.42659e-16 1.07927 1.22033) (-5.44548e-16 1.12034 1.25955) (-5.4586e-16 1.16316 1.297) (-5.46896e-16 1.2075 1.3327) (-5.47799e-16 1.25378 1.36693) (-5.4826e-16 1.30138 1.39624) (-5.48058e-16 1.35045 1.4208) (-5.47294e-16 1.39948 1.4399) (-5.4633e-16 1.44781 1.45566) (-5.45123e-16 1.49727 1.46684) (-5.43257e-16 1.54839 1.4747) (-5.40402e-16 1.60165 1.47851) (-5.36608e-16 1.6554 1.479) (-5.31963e-16 1.71091 1.47427) (-5.264e-16 1.76717 1.46543) (-5.19566e-16 1.82506 1.45073) (-5.11743e-16 1.88231 1.43117) (-5.03193e-16 1.93751 1.40618) (-4.93981e-16 1.98716 1.37761) (-4.84248e-16 2.033 1.3464) (-4.74098e-16 2.07333 1.31322) (-4.63637e-16 2.10929 1.27549) (-4.53222e-16 2.14024 1.23451) (-4.4299e-16 2.16667 1.19394) (-4.32745e-16 2.18906 1.15409) (-4.22459e-16 2.20831 1.11125) (-4.12169e-16 2.22342 1.06543) (-4.01922e-16 2.2337 1.01888) (-3.9157e-16 2.24087 0.972923) (-3.8091e-16 2.24668 0.926251) (-3.69792e-16 2.25308 0.87913) (-3.58108e-16 2.26265 0.832052) (-3.45763e-16 2.28089 0.783788) (-3.32924e-16 2.31788 0.723949) (-3.19973e-16 2.38273 0.642861) (-3.07533e-16 2.47989 0.534855) (-2.96209e-16 2.60877 0.398315) (-2.85817e-16 2.76467 0.235177) (-2.76032e-16 2.93057 0.0574244) (-2.66858e-16 3.08453 -0.120971) (-2.57883e-16 3.20845 -0.289591) (-2.48177e-16 3.27913 -0.440695) (-2.37958e-16 3.27705 -0.57061) (-2.28182e-16 3.20086 -0.671143) (-2.17148e-16 3.05175 -0.758027) (-2.04639e-16 2.81513 -0.823619) (-1.96016e-16 2.47969 -0.828159) (-1.89613e-16 2.01316 -0.787611) (-1.83754e-16 1.48952 -0.717928) (-1.75167e-16 0.594081 -0.502559) (-7.08791e-16 0.49835 -2.5055) (-7.07937e-16 0.330545 -2.19994) (-7.0475e-16 0.624105 -1.86254) (-6.85925e-16 0.907543 -1.65814) (-6.62584e-16 1.02354 -1.45177) (-6.36996e-16 1.00885 -1.24669) (-6.10049e-16 0.926029 -1.07958) (-5.78732e-16 0.798159 -1.01829) (-5.24153e-16 0.62688 -1.34695) (-4.52926e-16 0.571041 -1.75686) (-3.9581e-16 0.417043 -1.77533) (-3.67413e-16 0.265529 -1.34925) (-3.47542e-16 -0.0168383 -1.16228) (-3.37642e-16 -0.316885 -1.10643) (-3.33611e-16 -0.796295 0.0885938) (-3.33669e-16 -0.497785 -0.583543) (-3.21707e-16 -0.159912 -0.573509) (-3.06055e-16 0.340639 -0.483801) (-2.92815e-16 0.567087 -0.282158) (-2.84949e-16 0.567758 -0.0691463) (-2.83146e-16 0.498071 0.102386) (-2.85548e-16 0.421345 0.231467) (-2.89394e-16 0.316984 0.346225) (-2.9353e-16 0.201923 0.426209) (-2.94781e-16 0.0997235 0.469081) (-2.69927e-16 0.00568436 0.262513) (-2.28653e-16 -0.000981121 -0.117223) (-2.02896e-16 0.0159198 -0.327106) (-1.92706e-16 0.032353 -0.401028) (-1.9472e-16 0.0197253 -0.35688) (-2.04734e-16 -0.042093 -0.249527) (-2.20604e-16 -0.0876678 -0.13876) (-2.42552e-16 -0.0412383 -0.0055281) (-2.71056e-16 0.0763078 0.169275) (-3.06446e-16 0.220165 0.359653) (-3.47993e-16 0.349783 0.533513) (-3.92201e-16 0.450835 0.664933) (-4.32896e-16 0.526673 0.749148) (-4.66778e-16 0.582062 0.801158) (-4.92938e-16 0.622914 0.836712) (-5.12963e-16 0.652912 0.862713) (-5.28455e-16 0.67702 0.880508) (-5.41564e-16 0.694128 0.891331) (-5.53827e-16 0.705806 0.902738) (-5.65561e-16 0.719611 0.923643) (-5.75779e-16 0.733778 0.953676) (-5.83749e-16 0.749942 0.987697) (-5.8966e-16 0.766227 1.01938) (-5.93961e-16 0.785024 1.04995) (-5.97087e-16 0.809816 1.08247) (-5.99534e-16 0.839588 1.12034) (-6.01392e-16 0.872795 1.16119) (-6.02644e-16 0.907719 1.20428) (-6.0329e-16 0.945133 1.24435) (-6.0349e-16 0.984905 1.28014) (-6.03255e-16 1.02679 1.30927) (-6.02484e-16 1.07088 1.33248) (-6.01208e-16 1.11669 1.34848) (-5.99833e-16 1.16384 1.36218) (-5.98392e-16 1.2128 1.37406) (-5.96506e-16 1.26432 1.38407) (-5.93841e-16 1.31887 1.38996) (-5.90485e-16 1.37513 1.39401) (-5.86615e-16 1.43437 1.39501) (-5.82281e-16 1.4971 1.3934) (-5.77232e-16 1.56415 1.38709) (-5.71389e-16 1.63372 1.37747) (-5.64657e-16 1.70673 1.36307) (-5.56875e-16 1.78056 1.34433) (-5.48063e-16 1.85432 1.32147) (-5.38095e-16 1.92236 1.29502) (-5.27159e-16 1.98519 1.26477) (-5.15472e-16 2.04264 1.23093) (-5.03413e-16 2.09631 1.19363) (-4.91178e-16 2.14286 1.15641) (-4.78738e-16 2.18274 1.11788) (-4.66081e-16 2.2177 1.07456) (-4.53647e-16 2.24872 1.02799) (-4.41592e-16 2.27287 0.985246) (-4.29684e-16 2.29255 0.944456) (-4.17809e-16 2.30833 0.902464) (-4.05993e-16 2.31859 0.86035) (-3.94122e-16 2.32574 0.821301) (-3.82034e-16 2.33372 0.784794) (-3.69519e-16 2.34666 0.751284) (-3.56601e-16 2.37023 0.719396) (-3.43486e-16 2.40992 0.686427) (-3.30443e-16 2.47518 0.641128) (-3.17755e-16 2.57331 0.572994) (-3.05842e-16 2.70694 0.477673) (-2.95073e-16 2.87084 0.357227) (-2.85148e-16 3.06002 0.213609) (-2.75628e-16 3.25903 0.0529551) (-2.66608e-16 3.44969 -0.110323) (-2.58134e-16 3.61381 -0.264404) (-2.49327e-16 3.73592 -0.408521) (-2.39718e-16 3.80617 -0.542867) (-2.30618e-16 3.77529 -0.649052) (-2.22886e-16 3.75175 -0.739562) (-2.11463e-16 3.44482 -0.791218) (-6.80139e-16 0.628517 -2.46052) (-6.86088e-16 0.349021 -2.31571) (-6.94382e-16 0.480382 -2.10092) (-6.86465e-16 0.742605 -1.92013) (-6.69573e-16 0.904384 -1.71863) (-6.48785e-16 0.964191 -1.47295) (-6.25799e-16 0.958821 -1.20588) (-5.95782e-16 0.896467 -0.998513) (-5.42662e-16 0.746663 -1.22747) (-4.71512e-16 0.66496 -1.70361) (-4.11789e-16 0.485663 -1.86134) (-3.7351e-16 0.390987 -1.39305) (-3.47299e-16 0.172608 -1.19531) (-3.37935e-16 -0.0936064 -1.27727) (-3.3634e-16 -0.217814 -1.02673) (-3.36484e-16 -0.267598 -0.458192) (-3.40148e-16 -0.418137 -0.0180498) (-3.29461e-16 -0.211112 -0.295903) (-3.12513e-16 0.263233 -0.444388) (-2.9886e-16 0.502298 -0.365421) (-2.90921e-16 0.545293 -0.201392) (-2.89266e-16 0.538687 -0.0407329) (-2.92353e-16 0.520584 0.0698424) (-2.96279e-16 0.49248 0.14019) (-2.99419e-16 0.460318 0.208049) (-3.00258e-16 0.421668 0.258803) (-2.95874e-16 0.394595 0.264328) (-2.87248e-16 0.382179 0.232907) (-2.79795e-16 0.384033 0.199276) (-2.78622e-16 0.386856 0.215164) (-2.84093e-16 0.368679 0.28766) (-2.95973e-16 0.364624 0.397499) (-3.15026e-16 0.388402 0.516067) (-3.41164e-16 0.425229 0.637769) (-3.75036e-16 0.464043 0.737374) (-4.20134e-16 0.494629 0.79739) (-4.70913e-16 0.504373 0.814317) (-5.1425e-16 0.504518 0.805279) (-5.44983e-16 0.49603 0.791395) (-5.64868e-16 0.485975 0.780073) (-5.77691e-16 0.473261 0.769709) (-5.85935e-16 0.462089 0.763089) (-5.91558e-16 0.457106 0.755754) (-5.96148e-16 0.454738 0.753214) (-6.00395e-16 0.457675 0.761197) (-6.04466e-16 0.455456 0.778003) (-6.08219e-16 0.453431 0.804919) (-6.11551e-16 0.453919 0.833924) (-6.14278e-16 0.459557 0.869766) (-6.16207e-16 0.47386 0.91301) (-6.17444e-16 0.49311 0.961939) (-6.1817e-16 0.515798 1.01153) (-6.185e-16 0.543618 1.05868) (-6.18481e-16 0.574891 1.09724) (-6.18235e-16 0.605955 1.12894) (-6.17767e-16 0.640666 1.15518) (-6.17069e-16 0.677792 1.17972) (-6.16147e-16 0.717607 1.20072) (-6.15079e-16 0.761565 1.21899) (-6.13826e-16 0.80927 1.23374) (-6.12366e-16 0.861016 1.24737) (-6.10549e-16 0.917259 1.2577) (-6.08413e-16 0.978321 1.26663) (-6.06139e-16 1.04314 1.27463) (-6.03668e-16 1.1118 1.28318) (-6.00607e-16 1.18511 1.28801) (-5.96991e-16 1.26166 1.28978) (-5.92917e-16 1.34251 1.28635) (-5.88222e-16 1.42731 1.27779) (-5.82717e-16 1.51592 1.2645) (-5.76324e-16 1.60553 1.2471) (-5.68906e-16 1.69542 1.22541) (-5.60231e-16 1.78257 1.19994) (-5.5019e-16 1.86613 1.17025) (-5.39021e-16 1.94342 1.13839) (-5.26978e-16 2.01401 1.10508) (-5.14255e-16 2.07659 1.07082) (-5.01161e-16 2.13503 1.03317) (-4.87948e-16 2.18776 0.994395) (-4.74784e-16 2.23318 0.95658) (-4.61671e-16 2.27094 0.918941) (-4.48746e-16 2.30429 0.87898) (-4.3613e-16 2.33174 0.841111) (-4.23861e-16 2.35302 0.80704) (-4.1182e-16 2.37 0.774993) (-3.99853e-16 2.38326 0.743712) (-3.87739e-16 2.39397 0.716346) (-3.754e-16 2.40594 0.694377) (-3.62809e-16 2.42492 0.678289) (-3.50085e-16 2.45946 0.666417) (-3.37485e-16 2.51422 0.656971) (-3.25261e-16 2.59779 0.641294) (-3.13539e-16 2.71376 0.606682) (-3.02482e-16 2.86582 0.545127) (-2.92455e-16 3.04862 0.460456) (-2.83401e-16 3.25494 0.35638) (-2.74698e-16 3.48193 0.230611) (-2.66035e-16 3.70642 0.0871295) (-2.58444e-16 3.90624 -0.0398198) (-2.47704e-16 4.14677 -0.264079) (-6.54453e-16 0.750879 -2.31712) (-6.66104e-16 0.470711 -2.25653) (-6.81216e-16 0.457111 -2.19523) (-6.82654e-16 0.621098 -2.11563) (-6.73108e-16 0.777913 -1.97618) (-6.57364e-16 0.875911 -1.75513) (-6.38048e-16 0.928329 -1.45155) (-6.0821e-16 0.933025 -1.13522) (-5.56307e-16 0.84319 -1.20549) (-4.88672e-16 0.773946 -1.64674) (-4.29947e-16 0.673325 -1.91175) (-3.87375e-16 0.587733 -1.48304) (-3.5671e-16 0.449124 -1.06047) (-3.43437e-16 0.428201 -0.790014) (-3.40577e-16 0.29134 -0.399588) (-3.42078e-16 0.119786 -0.224388) (-3.50136e-16 0.154479 0.105009) (-3.53307e-16 -0.00222807 0.398704) (-3.3229e-16 -0.0123898 -0.0437312) (-3.13849e-16 0.296745 -0.306985) (-3.01845e-16 0.450415 -0.315236) (-2.92018e-16 0.52589 -0.22832) (-2.89202e-16 0.584717 -0.141248) (-2.92147e-16 0.59514 -0.0583935) (-2.94598e-16 0.576942 0.0251342) (-2.96648e-16 0.547253 0.0946312) (-3.00122e-16 0.522524 0.153448) (-3.04524e-16 0.512677 0.207153) (-3.09257e-16 0.508502 0.258716) (-3.14656e-16 0.510005 0.313686) (-3.20836e-16 0.489961 0.38147) (-3.30238e-16 0.470023 0.481503) (-3.47906e-16 0.463203 0.586357) (-3.72139e-16 0.451806 0.670025) (-4.10558e-16 0.437929 0.730827) (-4.74103e-16 0.411102 0.743846) (-5.38001e-16 0.359224 0.699078) (-5.78679e-16 0.313764 0.654699) (-5.984e-16 0.279818 0.636689) (-6.07798e-16 0.244743 0.63403) (-6.12518e-16 0.202913 0.636729) (-6.14697e-16 0.154122 0.645341) (-6.15517e-16 0.113986 0.655715) (-6.15751e-16 0.0854991 0.650856) (-6.15914e-16 0.0755552 0.639968) (-6.16237e-16 0.0794528 0.625191) (-6.16613e-16 0.0913617 0.630647) (-6.17033e-16 0.108671 0.648988) (-6.17448e-16 0.121914 0.689245) (-6.17723e-16 0.139057 0.743682) (-6.17849e-16 0.158503 0.804693) (-6.17874e-16 0.17781 0.858552) (-6.17852e-16 0.192684 0.903127) (-6.17749e-16 0.205522 0.936041) (-6.17588e-16 0.221123 0.964327) (-6.17288e-16 0.245985 0.98874) (-6.16875e-16 0.276243 1.01409) (-6.16348e-16 0.309978 1.03697) (-6.15774e-16 0.347695 1.06016) (-6.15125e-16 0.388512 1.08052) (-6.14458e-16 0.434541 1.10165) (-6.13733e-16 0.483398 1.12086) (-6.12874e-16 0.538457 1.13906) (-6.11835e-16 0.596951 1.15405) (-6.10607e-16 0.660851 1.16935) (-6.09043e-16 0.729778 1.18235) (-6.0725e-16 0.805017 1.19384) (-6.053e-16 0.886732 1.20231) (-6.03018e-16 0.976261 1.20883) (-6.00059e-16 1.07176 1.21054) (-5.96464e-16 1.17166 1.20622) (-5.92283e-16 1.27694 1.19404) (-5.87396e-16 1.38575 1.17523) (-5.81522e-16 1.49723 1.14986) (-5.74347e-16 1.60683 1.12009) (-5.65614e-16 1.71189 1.08639) (-5.55164e-16 1.80784 1.05074) (-5.43412e-16 1.89635 1.01444) (-5.30727e-16 1.97601 0.979009) (-5.17542e-16 2.04754 0.94457) (-5.03996e-16 2.1095 0.911946) (-4.90325e-16 2.16566 0.878958) (-4.76745e-16 2.21694 0.847132) (-4.63482e-16 2.2629 0.818157) (-4.50562e-16 2.29999 0.794562) (-4.37944e-16 2.33219 0.771489) (-4.25661e-16 2.36329 0.745788) (-4.13836e-16 2.39247 0.719477) (-4.02195e-16 2.41539 0.697133) (-3.90529e-16 2.4308 0.681419) (-3.78913e-16 2.4414 0.674304) (-3.67343e-16 2.45705 0.675636) (-3.55778e-16 2.48259 0.685324) (-3.44222e-16 2.52688 0.701674) (-3.32761e-16 2.59381 0.719081) (-3.21679e-16 2.69108 0.732508) (-3.11153e-16 2.81351 0.736487) (-3.01014e-16 2.9941 0.709798) (-2.91843e-16 3.11408 0.694953) (-2.80503e-16 3.50388 0.523018) (-6.30776e-16 0.8314 -2.14905) (-6.49168e-16 0.600224 -2.08866) (-6.68131e-16 0.507633 -2.11108) (-6.75846e-16 0.564938 -2.16184) (-6.73008e-16 0.683021 -2.13426) (-6.62599e-16 0.782376 -1.99846) (-6.47541e-16 0.862561 -1.73806) (-6.20244e-16 0.914881 -1.39413) (-5.70701e-16 0.897736 -1.29144) (-5.06744e-16 0.880285 -1.57414) (-4.49275e-16 0.866846 -1.84394) (-4.07999e-16 0.810468 -1.60207) (-3.76842e-16 0.638245 -1.08262) (-3.55448e-16 0.586462 -0.639174) (-3.47415e-16 0.54584 -0.332417) (-3.50691e-16 0.447294 0.0193189) (-3.65558e-16 0.327539 0.237884) (-3.53086e-16 0.265071 0.356366) (-3.4178e-16 0.0150822 0.341063) (-3.22996e-16 0.0867039 -0.0303208) (-3.06796e-16 0.220163 -0.177218) (-2.91794e-16 0.29945 -0.181095) (-2.802e-16 0.441734 -0.188913) (-2.73308e-16 0.560237 -0.18471) (-2.7136e-16 0.605585 -0.139959) (-2.74765e-16 0.593178 -0.0666524) (-2.8283e-16 0.56435 0.0110456) (-2.94002e-16 0.525582 0.0825915) (-3.06569e-16 0.475847 0.152564) (-3.18232e-16 0.435376 0.220894) (-3.2813e-16 0.377874 0.294696) (-3.41317e-16 0.339852 0.407274) (-3.59681e-16 0.330952 0.51059) (-3.84277e-16 0.312997 0.570418) (-4.40968e-16 0.306594 0.631153) (-5.37644e-16 0.252347 0.59831) (-6.01413e-16 0.160052 0.497589) (-6.17401e-16 0.0891126 0.48137) (-6.17576e-16 0.0353448 0.497646) (-6.17405e-16 -0.0219008 0.498167) (-6.17417e-16 -0.0762701 0.497744) (-6.1748e-16 -0.127123 0.498737) (-6.17622e-16 -0.178129 0.515337) (-6.17702e-16 -0.221991 0.525645) (-6.17789e-16 -0.259776 0.553261) (-6.17771e-16 -0.270547 0.560052) (-6.17744e-16 -0.260596 0.567306) (-6.17661e-16 -0.2296 0.557677) (-6.17639e-16 -0.199765 0.573144) (-6.17676e-16 -0.173493 0.60744) (-6.17747e-16 -0.147009 0.660482) (-6.17769e-16 -0.128739 0.707781) (-6.17746e-16 -0.108652 0.751618) (-6.17624e-16 -0.0984719 0.786392) (-6.17455e-16 -0.0784015 0.826045) (-6.17119e-16 -0.0623007 0.859793) (-6.16694e-16 -0.0310511 0.897063) (-6.16116e-16 -0.00644168 0.923069) (-6.155e-16 0.0302763 0.95003) (-6.14852e-16 0.0631665 0.967951) (-6.14255e-16 0.105656 0.989285) (-6.13684e-16 0.144642 1.00641) (-6.13095e-16 0.188265 1.02667) (-6.12474e-16 0.229397 1.04498) (-6.11878e-16 0.27457 1.06621) (-6.11131e-16 0.323157 1.08476) (-6.1025e-16 0.380634 1.10473) (-6.09338e-16 0.439676 1.12394) (-6.0819e-16 0.510165 1.14174) (-6.06594e-16 0.58655 1.15296) (-6.04791e-16 0.669634 1.16206) (-6.02726e-16 0.759281 1.16666) (-6.00276e-16 0.859427 1.1656) (-5.97351e-16 0.972077 1.15516) (-5.93798e-16 1.09566 1.13525) (-5.89545e-16 1.22747 1.10491) (-5.84122e-16 1.36011 1.06735) (-5.771e-16 1.49206 1.02428) (-5.67916e-16 1.61629 0.977303) (-5.56775e-16 1.72939 0.930061) (-5.44179e-16 1.82797 0.886812) (-5.30731e-16 1.91442 0.847635) (-5.16831e-16 1.98693 0.813872) (-5.02902e-16 2.04999 0.782929) (-4.89127e-16 2.10412 0.759594) (-4.75448e-16 2.14757 0.750029) (-4.62382e-16 2.18112 0.750781) (-4.50503e-16 2.21749 0.744867) (-4.38937e-16 2.2573 0.729376) (-4.2693e-16 2.29452 0.7121) (-4.14612e-16 2.31884 0.708558) (-4.02598e-16 2.34201 0.718103) (-3.91099e-16 2.36553 0.732589) (-3.79814e-16 2.39061 0.75392) (-3.68791e-16 2.42258 0.780814) (-3.57991e-16 2.46276 0.816245) (-3.47038e-16 2.50776 0.863045) (-3.35976e-16 2.59679 0.906106) (-3.25198e-16 2.61851 0.969168) (-3.11952e-16 2.87055 0.960973) (-6.01834e-16 1.00356 -1.98593) (-6.31498e-16 0.77474 -1.90479) (-6.55853e-16 0.601817 -1.91596) (-6.67894e-16 0.570946 -2.05546) (-6.70084e-16 0.636395 -2.14743) (-6.64786e-16 0.713242 -2.12183) (-6.54543e-16 0.790933 -1.95805) (-6.33295e-16 0.867163 -1.66527) (-5.9038e-16 0.9121 -1.45351) (-5.30851e-16 0.944097 -1.53982) (-4.7372e-16 0.983321 -1.7425) (-4.32048e-16 0.965762 -1.69076) (-4.01865e-16 0.787418 -1.34134) (-3.79061e-16 0.591885 -0.918761) (-3.65833e-16 0.485364 -0.523522) (-3.6444e-16 0.378175 -0.195184) (-3.75611e-16 0.305216 0.092042) (-3.4538e-16 0.226197 0.178764) (-3.24111e-16 -0.206412 0.307008) (-3.08394e-16 -0.104917 -0.0275879) (-2.92969e-16 -0.0578895 -0.133278) (-2.79357e-16 0.00487808 -0.090607) (-2.78082e-16 0.131938 -0.107771) (-2.81658e-16 0.254349 -0.161928) (-2.78314e-16 0.356479 -0.201433) (-2.81797e-16 0.444795 -0.210519) (-2.8907e-16 0.5419 -0.197353) (-2.99609e-16 0.592595 -0.166157) (-3.13059e-16 0.569316 -0.11566) (-3.26837e-16 0.507951 -0.0506264) (-3.39327e-16 0.424588 0.0517546) (-3.52467e-16 0.296616 0.219267) (-3.6652e-16 0.207406 0.382878) (-3.91117e-16 0.177113 0.486835) (-4.74512e-16 0.191792 0.54656) (-5.83805e-16 0.0830919 0.448541) (-6.14889e-16 -0.0100573 0.361872) (-6.15861e-16 -0.0612529 0.361422) (-6.16055e-16 -0.123628 0.364837) (-6.16319e-16 -0.186255 0.357847) (-6.16562e-16 -0.246092 0.343717) (-6.1677e-16 -0.301249 0.327069) (-6.16952e-16 -0.354115 0.312257) (-6.1711e-16 -0.401952 0.300876) (-6.17253e-16 -0.443793 0.297102) (-6.17383e-16 -0.478844 0.300781) (-6.17505e-16 -0.507765 0.314016) (-6.17617e-16 -0.529909 0.335783) (-6.17719e-16 -0.544118 0.367402) (-6.17813e-16 -0.553932 0.407961) (-6.17886e-16 -0.560959 0.45473) (-6.17927e-16 -0.569039 0.502015) (-6.17916e-16 -0.576741 0.546613) (-6.17845e-16 -0.584496 0.589485) (-6.17701e-16 -0.586689 0.634248) (-6.17493e-16 -0.583055 0.681205) (-6.17199e-16 -0.569105 0.72762) (-6.16817e-16 -0.548484 0.770776) (-6.16329e-16 -0.513905 0.812344) (-6.15759e-16 -0.472343 0.850219) (-6.15132e-16 -0.413955 0.888595) (-6.1449e-16 -0.353602 0.922275) (-6.13833e-16 -0.273129 0.958772) (-6.13134e-16 -0.197894 0.9868) (-6.12349e-16 -0.105736 1.0182) (-6.11365e-16 -0.0374154 1.03157) (-6.10231e-16 0.0305473 1.04326) (-6.09211e-16 0.087079 1.05497) (-6.08298e-16 0.156423 1.07279) (-6.0724e-16 0.214372 1.07976) (-6.06155e-16 0.275459 1.09058) (-6.05105e-16 0.334719 1.10442) (-6.04052e-16 0.396947 1.12247) (-6.02678e-16 0.467729 1.13899) (-6.00958e-16 0.554939 1.14692) (-5.98823e-16 0.658018 1.14047) (-5.9624e-16 0.773231 1.12285) (-5.93232e-16 0.903576 1.09327) (-5.89619e-16 1.04548 1.04961) (-5.84811e-16 1.19699 0.994227) (-5.77903e-16 1.34905 0.930438) (-5.68117e-16 1.49458 0.861547) (-5.55717e-16 1.61878 0.797201) (-5.41742e-16 1.72881 0.740842) (-5.26985e-16 1.81018 0.697159) (-5.11848e-16 1.87752 0.65969) (-4.98036e-16 1.93089 0.64127) (-4.85907e-16 1.94526 0.647019) (-4.72156e-16 1.96822 0.660477) (-4.57033e-16 2.00894 0.66113) (-4.42364e-16 2.01727 0.671923) (-4.29293e-16 2.03241 0.690339) (-4.16511e-16 2.06651 0.730156) (-4.04172e-16 2.09393 0.791751) (-3.91936e-16 2.14639 0.855614) (-3.79226e-16 2.1901 0.930141) (-3.64754e-16 2.24356 1.01577) (-3.49982e-16 2.30168 1.08092) (-3.36793e-16 2.29163 1.14903) (-3.21237e-16 2.39173 1.14947) (-5.73786e-16 0.993662 -1.86766) (-6.11395e-16 0.881282 -1.75758) (-6.42895e-16 0.717629 -1.70594) (-6.59672e-16 0.630516 -1.85892) (-6.65568e-16 0.64014 -2.03622) (-6.64254e-16 0.680968 -2.11106) (-6.58192e-16 0.73168 -2.04946) (-6.43402e-16 0.799313 -1.84174) (-6.09087e-16 0.871725 -1.61905) (-5.55837e-16 0.940282 -1.58016) (-4.99862e-16 1.01494 -1.68714) (-4.56157e-16 1.04673 -1.70693) (-4.24556e-16 0.97179 -1.50963) (-3.99208e-16 0.833317 -1.17806) (-3.82144e-16 0.680577 -0.803532) (-3.78656e-16 0.527331 -0.50497) (-3.83664e-16 0.483561 -0.169376) (-3.71295e-16 0.363689 0.0564663) (-3.3346e-16 0.110299 0.183862) (-2.98961e-16 -0.0624092 0.00730304) (-2.99857e-16 -0.116324 -0.0760122) (-3.24862e-16 -0.165046 -0.0138203) (-3.34208e-16 -0.113153 -0.13496) (-3.3193e-16 -0.0277358 -0.185655) (-3.19118e-16 0.0359173 -0.14461) (-3.11977e-16 0.0668849 -0.0325182) (-3.08389e-16 0.102718 0.0532117) (-3.12668e-16 0.235552 -0.032836) (-3.26816e-16 0.329026 -0.165444) (-3.42163e-16 0.403428 -0.237181) (-3.55771e-16 0.445351 -0.199266) (-3.67294e-16 0.365895 -0.0277959) (-3.74624e-16 0.250591 0.158644) (-4.04398e-16 0.168887 0.349052) (-5.23634e-16 0.130789 0.396866) (-6.09378e-16 -0.0448722 0.274309) (-6.1483e-16 -0.102667 0.21919) (-6.15399e-16 -0.164303 0.201028) (-6.15664e-16 -0.225191 0.190356) (-6.15832e-16 -0.289014 0.179114) (-6.15933e-16 -0.353639 0.166766) (-6.15988e-16 -0.415726 0.154404) (-6.16015e-16 -0.476258 0.143522) (-6.16024e-16 -0.534498 0.135354) (-6.16032e-16 -0.588809 0.132461) (-6.16047e-16 -0.639682 0.135646) (-6.16074e-16 -0.688043 0.146258) (-6.16121e-16 -0.73422 0.164182) (-6.16191e-16 -0.77587 0.190462) (-6.16288e-16 -0.8134 0.224762) (-6.16403e-16 -0.846352 0.266199) (-6.16531e-16 -0.876987 0.312067) (-6.16659e-16 -0.905594 0.360561) (-6.16779e-16 -0.933545 0.410054) (-6.16876e-16 -0.958287 0.460258) (-6.16939e-16 -0.980047 0.510563) (-6.16949e-16 -0.996508 0.561087) (-6.16895e-16 -1.00776 0.611155) (-6.16752e-16 -1.01146 0.660952) (-6.16507e-16 -1.00854 0.709718) (-6.16138e-16 -0.99708 0.757163) (-6.15635e-16 -0.978141 0.802097) (-6.14987e-16 -0.949434 0.844013) (-6.14206e-16 -0.911708 0.88138) (-6.13303e-16 -0.858138 0.915738) (-6.1233e-16 -0.791841 0.94582) (-6.11251e-16 -0.710032 0.974666) (-6.10119e-16 -0.61921 1.00113) (-6.08995e-16 -0.514301 1.02693) (-6.07852e-16 -0.408213 1.04516) (-6.06715e-16 -0.287057 1.06209) (-6.05574e-16 -0.154288 1.07105) (-6.04438e-16 -0.0393596 1.06984) (-6.02974e-16 0.0301791 1.06879) (-6.01299e-16 0.118425 1.07898) (-5.99556e-16 0.19462 1.08618) (-5.97738e-16 0.265449 1.09707) (-5.95677e-16 0.342875 1.10565) (-5.93513e-16 0.429922 1.10577) (-5.9134e-16 0.54152 1.09248) (-5.89256e-16 0.672493 1.06037) (-5.87019e-16 0.828927 1.00253) (-5.83018e-16 0.994395 0.925437) (-5.76461e-16 1.16795 0.83532) (-5.65556e-16 1.32419 0.739101) (-5.51241e-16 1.45965 0.645076) (-5.34647e-16 1.57429 0.567443) (-5.18568e-16 1.64718 0.53882) (-5.03993e-16 1.68631 0.522911) (-4.87627e-16 1.7063 0.465138) (-4.68259e-16 1.70486 0.422901) (-4.49838e-16 1.69531 0.458201) (-4.3297e-16 1.68209 0.548264) (-4.20297e-16 1.62163 0.611607) (-4.04871e-16 1.61281 0.690538) (-3.86137e-16 1.57875 0.805997) (-3.64636e-16 1.66683 0.956536) (-3.45911e-16 1.56576 1.03512) (-3.3159e-16 1.45961 1.08837) (-3.13872e-16 1.44813 1.2382) (-5.4809e-16 0.901914 -1.7645) (-5.89598e-16 0.909165 -1.65341) (-6.28005e-16 0.808392 -1.5363) (-6.50876e-16 0.711525 -1.64237) (-6.60373e-16 0.684149 -1.85497) (-6.61842e-16 0.69331 -2.0063) (-6.58618e-16 0.712223 -2.03139) (-6.4844e-16 0.746489 -1.91146) (-6.21582e-16 0.801718 -1.73348) (-5.75537e-16 0.875351 -1.64604) (-5.2249e-16 0.957141 -1.6795) (-4.76949e-16 1.01245 -1.69651) (-4.41637e-16 0.995876 -1.56544) (-4.12329e-16 0.919374 -1.30501) (-3.93037e-16 0.810293 -0.970704) (-3.89195e-16 0.664825 -0.615427) (-3.85069e-16 0.611166 -0.265105) (-3.68919e-16 0.550264 -0.137511) (-3.54018e-16 0.433193 -0.0658046) (-3.42614e-16 0.293463 -0.0947365) (-3.56091e-16 0.264733 -0.149948) (-3.82824e-16 0.219416 -0.1895) (-3.93667e-16 0.0741646 -0.267194) (-3.99659e-16 0.0661191 -0.320914) (-4.01738e-16 0.115317 -0.309464) (-3.99188e-16 0.14017 -0.244629) (-3.87466e-16 0.0807715 -0.155007) (-3.68803e-16 0.0238526 -0.105513) (-3.55171e-16 -0.0533002 -0.0634338) (-3.53469e-16 -0.0299204 -0.123277) (-3.63491e-16 0.0866935 -0.222788) (-3.72768e-16 0.151049 -0.135743) (-4.02866e-16 -0.0636336 0.134509) (-4.63322e-16 -0.228996 0.367423) (-5.91512e-16 -0.111176 0.244575) (-6.12573e-16 -0.14255 0.12652) (-6.14119e-16 -0.186545 0.0710694) (-6.14337e-16 -0.238018 0.039311) (-6.14374e-16 -0.297376 0.018704) (-6.14309e-16 -0.359598 0.00160191) (-6.14165e-16 -0.423609 -0.0137079) (-6.13965e-16 -0.48781 -0.027221) (-6.13727e-16 -0.554003 -0.0382163) (-6.13471e-16 -0.621744 -0.046401) (-6.13216e-16 -0.689072 -0.0504877) (-6.12982e-16 -0.755917 -0.0493016) (-6.12781e-16 -0.821432 -0.0424567) (-6.1262e-16 -0.885451 -0.0295863) (-6.1251e-16 -0.947378 -0.0103757) (-6.12457e-16 -1.00835 0.0155795) (-6.1246e-16 -1.06619 0.0479826) (-6.1252e-16 -1.12111 0.0864131) (-6.12631e-16 -1.17234 0.129866) (-6.12791e-16 -1.22106 0.177271) (-6.1299e-16 -1.26655 0.22759) (-6.13223e-16 -1.30949 0.280392) (-6.13475e-16 -1.34772 0.335028) (-6.13735e-16 -1.38147 0.391169) (-6.13982e-16 -1.40922 0.448635) (-6.14202e-16 -1.43126 0.507027) (-6.14372e-16 -1.44617 0.566185) (-6.14475e-16 -1.45422 0.625352) (-6.14484e-16 -1.45404 0.684307) (-6.14384e-16 -1.4455 0.741682) (-6.14145e-16 -1.42682 0.797108) (-6.13752e-16 -1.39786 0.84908) (-6.13179e-16 -1.3577 0.897595) (-6.12408e-16 -1.30808 0.941572) (-6.11417e-16 -1.24871 0.980685) (-6.10205e-16 -1.18086 1.0135) (-6.08773e-16 -1.10217 1.03851) (-6.07142e-16 -1.01304 1.05486) (-6.05384e-16 -0.904915 1.06622) (-6.03629e-16 -0.785285 1.07327) (-6.01859e-16 -0.655231 1.07909) (-6.00073e-16 -0.524891 1.0812) (-5.98212e-16 -0.392186 1.07699) (-5.96166e-16 -0.224471 1.06425) (-5.94257e-16 -0.0999695 1.05318) (-5.91713e-16 -0.0241616 1.05912) (-5.88422e-16 0.0657875 1.06425) (-5.85277e-16 0.164411 1.05979) (-5.8251e-16 0.273329 1.04343) (-5.80356e-16 0.401869 1.00451) (-5.79498e-16 0.572664 0.93786) (-5.77187e-16 0.762719 0.838422) (-5.71195e-16 0.958764 0.717031) (-5.60071e-16 1.1434 0.593775) (-5.44448e-16 1.29039 0.479538) (-5.24858e-16 1.42047 0.376095) (-5.05564e-16 1.50545 0.329976) (-4.87689e-16 1.56305 0.279685) (-4.65283e-16 1.59551 0.192406) (-4.40653e-16 1.56252 0.174065) (-4.19278e-16 1.56845 0.255111) (-4.07822e-16 1.5032 0.36352) (-3.84629e-16 1.51448 0.525215) (-3.57726e-16 1.47204 0.659549) (-3.41846e-16 1.55406 0.791254) (-3.27675e-16 1.43269 0.939884) (-5.23827e-16 0.804243 -1.69247) (-5.66616e-16 0.882455 -1.5843) (-6.10536e-16 0.850164 -1.41782) (-6.40478e-16 0.778749 -1.44783) (-6.54606e-16 0.743147 -1.64793) (-6.58489e-16 0.737696 -1.84416) (-6.57021e-16 0.736689 -1.93609) (-6.49644e-16 0.738077 -1.89334) (-6.28538e-16 0.753195 -1.77315) (-5.89596e-16 0.802059 -1.68721) (-5.41112e-16 0.874583 -1.68997) (-4.95477e-16 0.945059 -1.70715) (-4.57261e-16 0.951948 -1.63012) (-4.24246e-16 0.89251 -1.43176) (-4.02071e-16 0.800209 -1.11996) (-3.96253e-16 0.644441 -0.668469) (-3.92895e-16 0.543142 -0.258288) (-3.89655e-16 0.557252 -0.123639) (-3.91958e-16 0.510296 0.0596411) (-3.94731e-16 0.364233 0.257989) (-4.22626e-16 0.212022 0.0498481) (-4.50354e-16 0.130344 -0.304441) (-4.48415e-16 0.212238 -0.360299) (-4.48141e-16 0.282498 -0.197934) (-4.47821e-16 0.215875 -0.143496) (-4.52116e-16 0.187876 -0.257128) (-4.51552e-16 0.20654 -0.273141) (-4.42637e-16 0.198648 -0.279674) (-4.28193e-16 0.152556 -0.292867) (-4.03512e-16 0.0786465 -0.316768) (-3.90126e-16 0.0586676 -0.357776) (-3.93232e-16 0.124813 -0.332484) (-4.20678e-16 0.0488283 -0.201259) (-4.56797e-16 -0.0707849 -0.0952909) (-5.53136e-16 -0.110152 0.0507602) (-6.09869e-16 -0.147164 0.0416709) (-6.1263e-16 -0.185173 -0.037957) (-6.12592e-16 -0.24376 -0.0954007) (-6.1232e-16 -0.309917 -0.135971) (-6.1193e-16 -0.376333 -0.167448) (-6.11452e-16 -0.445682 -0.19177) (-6.10907e-16 -0.516138 -0.2113) (-6.10316e-16 -0.58797 -0.225791) (-6.097e-16 -0.661077 -0.236822) (-6.0908e-16 -0.735987 -0.243952) (-6.08487e-16 -0.812416 -0.246671) (-6.07938e-16 -0.889964 -0.244666) (-6.07439e-16 -0.968932 -0.237423) (-6.07003e-16 -1.04811 -0.224753) (-6.06643e-16 -1.12728 -0.206336) (-6.06365e-16 -1.20532 -0.18243) (-6.06176e-16 -1.28256 -0.152531) (-6.06076e-16 -1.35714 -0.116957) (-6.06067e-16 -1.42927 -0.0755913) (-6.06148e-16 -1.49836 -0.0292018) (-6.06316e-16 -1.56511 0.0217652) (-6.06563e-16 -1.62805 0.0764386) (-6.06885e-16 -1.68759 0.134586) (-6.0727e-16 -1.74201 0.195535) (-6.07707e-16 -1.79121 0.259007) (-6.08181e-16 -1.83371 0.324411) (-6.08677e-16 -1.86963 0.391355) (-6.09177e-16 -1.89755 0.459257) (-6.09661e-16 -1.91746 0.527577) (-6.10106e-16 -1.92815 0.595827) (-6.10487e-16 -1.92965 0.663446) (-6.10777e-16 -1.9211 0.73003) (-6.10947e-16 -1.90268 0.794748) (-6.10964e-16 -1.87372 0.856877) (-6.10795e-16 -1.83432 0.914995) (-6.10404e-16 -1.78381 0.968105) (-6.09757e-16 -1.7222 1.01458) (-6.08817e-16 -1.64894 1.05346) (-6.0755e-16 -1.56491 1.08381) (-6.05926e-16 -1.47058 1.10548) (-6.0393e-16 -1.36839 1.11797) (-6.01555e-16 -1.25903 1.12111) (-5.98835e-16 -1.14067 1.11555) (-5.95847e-16 -1.00713 1.10309) (-5.92714e-16 -0.862169 1.0891) (-5.89474e-16 -0.723184 1.08036) (-5.85824e-16 -0.580608 1.07198) (-5.81834e-16 -0.417346 1.06653) (-5.78165e-16 -0.279704 1.05347) (-5.7433e-16 -0.163135 1.05757) (-5.71137e-16 -0.0310092 1.01153) (-5.67741e-16 0.118786 0.953518) (-5.66968e-16 0.298885 0.865473) (-5.66338e-16 0.519801 0.752262) (-5.63235e-16 0.752121 0.611372) (-5.53939e-16 0.953316 0.46729) (-5.38602e-16 1.13167 0.317221) (-5.18181e-16 1.28751 0.156543) (-4.93908e-16 1.41873 0.0608423) (-4.7384e-16 1.47992 0.0273006) (-4.54556e-16 1.49221 -0.0216138) (-4.24556e-16 1.48817 -0.0239251) (-3.96871e-16 1.34295 0.0466334) (-3.73725e-16 1.30666 0.107515) (-3.48425e-16 1.00008 0.566264) (-5.00801e-16 0.727674 -1.65868) (-5.42856e-16 0.829004 -1.54757) (-5.90014e-16 0.847424 -1.34955) (-6.27081e-16 0.814251 -1.29781) (-6.47447e-16 0.792109 -1.44705) (-6.54539e-16 0.789889 -1.65281) (-6.54504e-16 0.787032 -1.788) (-6.48758e-16 0.773606 -1.80425) (-6.3168e-16 0.754014 -1.73867) (-5.98784e-16 0.763313 -1.6746) (-5.55488e-16 0.810805 -1.66414) (-5.11795e-16 0.87905 -1.6936) (-4.72914e-16 0.915371 -1.68349) (-4.37392e-16 0.89705 -1.57544) (-4.09909e-16 0.831476 -1.34333) (-4.00613e-16 0.663466 -0.92714) (-4.07657e-16 0.360341 -0.360908) (-4.22271e-16 0.303452 -0.174021) (-4.37741e-16 0.27619 -0.372474) (-4.55207e-16 0.160461 -0.479922) (-4.77478e-16 0.0398293 -0.582377) (-4.9092e-16 0.0204035 -0.55265) (-4.96151e-16 0.0679625 -0.496599) (-4.99712e-16 0.112728 -0.452325) (-5.0309e-16 0.161141 -0.385472) (-5.04657e-16 0.219926 -0.311526) (-5.02063e-16 0.259355 -0.23379) (-4.9455e-16 0.240442 -0.197949) (-4.78575e-16 0.204582 -0.201615) (-4.45603e-16 0.139686 -0.315312) (-4.26271e-16 0.139717 -0.443851) (-4.25007e-16 0.139258 -0.427253) (-4.46014e-16 0.0836111 -0.34114) (-5.02565e-16 0.0046977 -0.2391) (-5.84319e-16 0.0228187 -0.155952) (-6.10578e-16 -0.0537052 -0.171207) (-6.11745e-16 -0.123296 -0.221276) (-6.11239e-16 -0.19435 -0.264442) (-6.10508e-16 -0.267521 -0.30106) (-6.09647e-16 -0.341613 -0.332686) (-6.08693e-16 -0.417327 -0.360358) (-6.07678e-16 -0.493783 -0.38528) (-6.06624e-16 -0.571434 -0.406323) (-6.05559e-16 -0.649145 -0.424076) (-6.04501e-16 -0.729121 -0.437533) (-6.03464e-16 -0.811462 -0.446984) (-6.02461e-16 -0.89646 -0.451571) (-6.0151e-16 -0.983683 -0.451535) (-6.00629e-16 -1.07268 -0.446552) (-5.99837e-16 -1.16358 -0.436371) (-5.9915e-16 -1.25582 -0.420838) (-5.98581e-16 -1.34952 -0.39938) (-5.98123e-16 -1.44324 -0.372388) (-5.9778e-16 -1.53689 -0.339313) (-5.97557e-16 -1.62895 -0.300299) (-5.97454e-16 -1.71936 -0.255375) (-5.9747e-16 -1.80708 -0.205191) (-5.97601e-16 -1.89226 -0.150007) (-5.97843e-16 -1.97352 -0.0904684) (-5.98192e-16 -2.05089 -0.0265746) (-5.9864e-16 -2.12305 0.0411378) (-5.9918e-16 -2.18988 0.112503) (-5.998e-16 -2.24996 0.186837) (-6.00493e-16 -2.30315 0.263777) (-6.01242e-16 -2.34821 0.342574) (-6.02034e-16 -2.38501 0.422783) (-6.02849e-16 -2.41244 0.503638) (-6.03666e-16 -2.43026 0.584507) (-6.0446e-16 -2.4374 0.66444) (-6.05204e-16 -2.43363 0.742538) (-6.05863e-16 -2.41815 0.817747) (-6.06402e-16 -2.39068 0.888994) (-6.06774e-16 -2.35052 0.955206) (-6.06933e-16 -2.2974 1.01519) (-6.06819e-16 -2.23099 1.06781) (-6.0637e-16 -2.15152 1.11158) (-6.05513e-16 -2.05923 1.14517) (-6.04176e-16 -1.95486 1.16711) (-6.02283e-16 -1.83955 1.17702) (-5.99766e-16 -1.714 1.17497) (-5.96568e-16 -1.58237 1.16221) (-5.92632e-16 -1.44627 1.14043) (-5.87984e-16 -1.31034 1.11353) (-5.82657e-16 -1.16934 1.087) (-5.76805e-16 -1.02266 1.07954) (-5.71039e-16 -0.878244 1.08437) (-5.65011e-16 -0.75377 1.10594) (-5.60056e-16 -0.594225 1.06217) (-5.54384e-16 -0.41477 1.02868) (-5.50587e-16 -0.234713 0.936239) (-5.50445e-16 -0.0328009 0.810169) (-5.49348e-16 0.183382 0.680562) (-5.46296e-16 0.429077 0.525537) (-5.42116e-16 0.683898 0.375622) (-5.34698e-16 0.922488 0.200882) (-5.20959e-16 1.12517 0.00455292) (-4.99608e-16 1.30075 -0.146556) (-4.76388e-16 1.38024 -0.209494) (-4.51838e-16 1.38528 -0.267974) (-4.16454e-16 1.52919 -0.0777856) (-4.74308e-16 0.638489 -1.63525) (-5.1762e-16 0.766544 -1.53427) (-5.66266e-16 0.820443 -1.32989) (-6.09307e-16 0.820797 -1.20811) (-6.37253e-16 0.819331 -1.28186) (-6.49362e-16 0.830865 -1.46328) (-6.51499e-16 0.839791 -1.61819) (-6.47038e-16 0.832922 -1.67573) (-6.32694e-16 0.803132 -1.65513) (-6.04425e-16 0.776585 -1.61794) (-5.65726e-16 0.782463 -1.59804) (-5.2472e-16 0.819932 -1.61312) (-4.86516e-16 0.868089 -1.63628) (-4.50106e-16 0.900721 -1.6146) (-4.17594e-16 0.903103 -1.50815) (-3.99125e-16 0.818537 -1.27098) (-3.9996e-16 0.564902 -0.871895) (-4.20214e-16 0.266842 -0.513628) (-4.49909e-16 -0.0402991 -0.375459) (-4.75175e-16 -0.231824 -0.464691) (-4.84759e-16 -0.258299 -0.560726) (-4.91477e-16 -0.257314 -0.54578) (-4.98845e-16 -0.24626 -0.490668) (-5.07528e-16 -0.223361 -0.454081) (-5.16688e-16 -0.17587 -0.425016) (-5.26207e-16 -0.106379 -0.413416) (-5.34387e-16 -0.0315778 -0.420493) (-5.35639e-16 0.050534 -0.459308) (-5.2562e-16 0.121344 -0.524752) (-4.99744e-16 0.1389 -0.577812) (-4.73423e-16 0.131961 -0.610049) (-4.64013e-16 0.122683 -0.58278) (-4.97587e-16 0.0729959 -0.525597) (-5.54642e-16 0.0384195 -0.462769) (-5.99345e-16 0.0288801 -0.409424) (-6.10998e-16 -0.0287503 -0.40751) (-6.11084e-16 -0.0856814 -0.427436) (-6.10236e-16 -0.146018 -0.450863) (-6.09154e-16 -0.21256 -0.474737) (-6.07909e-16 -0.282087 -0.498557) (-6.06549e-16 -0.353155 -0.522799) (-6.05119e-16 -0.426801 -0.547044) (-6.03639e-16 -0.502264 -0.571113) (-6.02135e-16 -0.580136 -0.593452) (-6.0062e-16 -0.660906 -0.613578) (-5.99115e-16 -0.745215 -0.631059) (-5.97639e-16 -0.833402 -0.645057) (-5.96219e-16 -0.924727 -0.655143) (-5.94875e-16 -1.01901 -0.660691) (-5.93622e-16 -1.11589 -0.661401) (-5.9247e-16 -1.2155 -0.65697) (-5.91428e-16 -1.31813 -0.646539) (-5.90505e-16 -1.42279 -0.630509) (-5.89719e-16 -1.52935 -0.608351) (-5.89083e-16 -1.63667 -0.579875) (-5.88605e-16 -1.74448 -0.544561) (-5.88287e-16 -1.85197 -0.502403) (-5.88105e-16 -1.95907 -0.453648) (-5.88051e-16 -2.06484 -0.398882) (-5.8813e-16 -2.16946 -0.337972) (-5.88337e-16 -2.27135 -0.271447) (-5.88667e-16 -2.37003 -0.199316) (-5.89111e-16 -2.46394 -0.122283) (-5.89668e-16 -2.5526 -0.0405486) (-5.90331e-16 -2.63476 0.0450505) (-5.91096e-16 -2.71003 0.134132) (-5.91954e-16 -2.77714 0.225764) (-5.92897e-16 -2.83539 0.319427) (-5.93914e-16 -2.88361 0.414122) (-5.94991e-16 -2.92137 0.509179) (-5.96113e-16 -2.94786 0.603507) (-5.97261e-16 -2.96273 0.696281) (-5.9841e-16 -2.96528 0.786384) (-5.99533e-16 -2.9551 0.872851) (-6.00593e-16 -2.9315 0.95445) (-6.01545e-16 -2.89396 1.03003) (-6.02332e-16 -2.84179 1.09812) (-6.02881e-16 -2.77456 1.15737) (-6.03106e-16 -2.69189 1.20616) (-6.02902e-16 -2.59357 1.24325) (-6.02146e-16 -2.48027 1.26736) (-6.00702e-16 -2.35238 1.2775) (-5.98424e-16 -2.21257 1.27313) (-5.95161e-16 -2.0611 1.25451) (-5.90779e-16 -1.90331 1.22333) (-5.85172e-16 -1.74228 1.18296) (-5.78222e-16 -1.591 1.13838) (-5.69989e-16 -1.44379 1.09437) (-5.60532e-16 -1.29396 1.06271) (-5.51094e-16 -1.14079 1.03534) (-5.42085e-16 -1.00458 1.03794) (-5.34091e-16 -0.915887 1.05286) (-5.269e-16 -0.734695 0.923848) (-5.19141e-16 -0.710702 0.844887) (-5.26762e-16 -0.505465 0.812607) (-5.29831e-16 -0.126092 0.538135) (-5.28723e-16 0.135667 0.311523) (-5.23686e-16 0.392529 0.174205) (-5.18525e-16 0.451165 0.0130354) (-4.87067e-16 0.899615 -0.217592) (-4.46179e-16 0.618368 -1.60088) (-4.89211e-16 0.722465 -1.5284) (-5.3849e-16 0.788996 -1.34709) (-5.85745e-16 0.813083 -1.18394) (-6.21639e-16 0.828723 -1.17595) (-6.41048e-16 0.854139 -1.30423) (-6.47333e-16 0.87957 -1.45508) (-6.44972e-16 0.891225 -1.53878) (-6.33119e-16 0.876077 -1.55149) (-6.08667e-16 0.842903 -1.54267) (-5.73836e-16 0.821124 -1.53273) (-5.35447e-16 0.815909 -1.5259) (-4.98362e-16 0.828369 -1.52959) (-4.62163e-16 0.861036 -1.53079) (-4.27005e-16 0.905503 -1.5039) (-4.00358e-16 0.919297 -1.41511) (-3.89382e-16 0.839653 -1.2219) (-3.9583e-16 0.673361 -0.982655) (-4.15336e-16 0.403511 -0.780704) (-4.42965e-16 0.0879724 -0.605981) (-4.67494e-16 -0.151864 -0.438256) (-4.86133e-16 -0.278661 -0.365892) (-4.97013e-16 -0.361611 -0.353245) (-5.03976e-16 -0.421424 -0.394151) (-5.12169e-16 -0.435083 -0.367174) (-5.241e-16 -0.42077 -0.347831) (-5.38047e-16 -0.398854 -0.353546) (-5.54972e-16 -0.344907 -0.377481) (-5.74501e-16 -0.27219 -0.443799) (-5.79945e-16 -0.162431 -0.565057) (-5.56602e-16 -0.0402286 -0.690403) (-5.30761e-16 0.0346293 -0.745557) (-5.40545e-16 0.0201304 -0.693457) (-5.8158e-16 -0.0166481 -0.603462) (-6.06487e-16 -0.0130852 -0.582582) (-6.10863e-16 -0.0386978 -0.589262) (-6.10181e-16 -0.0725153 -0.594998) (-6.09223e-16 -0.110066 -0.608188) (-6.07961e-16 -0.156578 -0.625948) (-6.06493e-16 -0.210105 -0.646049) (-6.04893e-16 -0.268793 -0.668333) (-6.03188e-16 -0.330046 -0.693055) (-6.01385e-16 -0.395878 -0.719003) (-5.99518e-16 -0.466182 -0.744968) (-5.97625e-16 -0.53979 -0.770172) (-5.95741e-16 -0.618357 -0.793743) (-5.93893e-16 -0.701251 -0.815552) (-5.92112e-16 -0.788693 -0.834385) (-5.90417e-16 -0.880098 -0.849806) (-5.88824e-16 -0.975667 -0.860706) (-5.8734e-16 -1.07552 -0.866925) (-5.85975e-16 -1.17991 -0.867809) (-5.84736e-16 -1.28872 -0.863323) (-5.83626e-16 -1.40221 -0.852763) (-5.82646e-16 -1.51938 -0.836145) (-5.81797e-16 -1.63972 -0.812851) (-5.8108e-16 -1.76248 -0.782475) (-5.80513e-16 -1.8869 -0.744959) (-5.80105e-16 -2.01159 -0.7007) (-5.79854e-16 -2.13651 -0.649403) (-5.79762e-16 -2.26083 -0.591038) (-5.79821e-16 -2.38468 -0.525403) (-5.79991e-16 -2.50658 -0.452825) (-5.80276e-16 -2.62581 -0.373341) (-5.8068e-16 -2.74104 -0.287644) (-5.81197e-16 -2.85153 -0.196082) (-5.81823e-16 -2.95616 -0.0993937) (-5.82554e-16 -3.05428 0.00186723) (-5.83389e-16 -3.14477 0.106978) (-5.84323e-16 -3.22689 0.215105) (-5.85352e-16 -3.2996 0.325051) (-5.8647e-16 -3.36227 0.435894) (-5.87671e-16 -3.41394 0.546416) (-5.88947e-16 -3.45382 0.655727) (-5.90291e-16 -3.4811 0.762487) (-5.91691e-16 -3.49496 0.865741) (-5.93132e-16 -3.49463 0.964065) (-5.9459e-16 -3.47947 1.05647) (-5.96034e-16 -3.44892 1.14138) (-5.97418e-16 -3.40236 1.21774) (-5.98676e-16 -3.33949 1.2839) (-5.9972e-16 -3.25962 1.33888) (-6.00433e-16 -3.16266 1.38113) (-6.00665e-16 -3.0478 1.40985) (-6.00235e-16 -2.91604 1.42413) (-5.98934e-16 -2.76728 1.42375) (-5.96534e-16 -2.60466 1.40846) (-5.92794e-16 -2.42826 1.37827) (-5.87479e-16 -2.24179 1.33492) (-5.80403e-16 -2.04474 1.28165) (-5.71412e-16 -1.84553 1.22134) (-5.60355e-16 -1.64964 1.15901) (-5.47236e-16 -1.44763 1.09354) (-5.32712e-16 -1.22336 1.03438) (-5.18413e-16 -0.986698 0.965781) (-5.05253e-16 -0.785316 0.931053) (-4.94292e-16 -0.557997 0.889878) (-4.91576e-16 -0.357669 0.721846) (-4.92819e-16 0.169855 0.353949) (-4.99037e-16 -0.27289 -0.113096) (-4.16907e-16 0.616569 -1.55616) (-4.58261e-16 0.688829 -1.50811) (-5.0688e-16 0.756958 -1.36837) (-5.55972e-16 0.798538 -1.20261) (-5.98377e-16 0.828037 -1.13226) (-6.26481e-16 0.865356 -1.19407) (-6.39617e-16 0.905837 -1.31763) (-6.41472e-16 0.936809 -1.41158) (-6.3311e-16 0.945745 -1.44762) (-6.12737e-16 0.930504 -1.45902) (-5.81698e-16 0.910968 -1.46842) (-5.45806e-16 0.892676 -1.46617) (-5.10167e-16 0.869772 -1.4494) (-4.75082e-16 0.856272 -1.4246) (-4.39389e-16 0.871203 -1.39781) (-4.07479e-16 0.907353 -1.36428) (-3.86865e-16 0.928321 -1.29526) (-3.80434e-16 0.910428 -1.18911) (-3.86119e-16 0.806423 -1.06244) (-3.99765e-16 0.615042 -0.907523) (-4.16928e-16 0.375453 -0.739094) (-4.34317e-16 0.151786 -0.586098) (-4.52654e-16 -0.0199934 -0.403422) (-4.76264e-16 -0.129147 -0.340085) (-4.94702e-16 -0.174917 -0.315741) (-5.06659e-16 -0.21787 -0.361986) (-5.24656e-16 -0.27985 -0.375714) (-5.421e-16 -0.375956 -0.277615) (-5.60886e-16 -0.421406 -0.275121) (-5.92236e-16 -0.409839 -0.338711) (-6.20312e-16 -0.339323 -0.445307) (-6.15834e-16 -0.18019 -0.619937) (-5.87501e-16 -0.0493507 -0.718986) (-5.88044e-16 -0.0561638 -0.669389) (-6.08083e-16 -0.0397499 -0.645118) (-6.13607e-16 -0.0306988 -0.673619) (-6.11531e-16 -0.0436851 -0.693834) (-6.10103e-16 -0.0629381 -0.711866) (-6.08594e-16 -0.089473 -0.732473) (-6.06691e-16 -0.122377 -0.755168) (-6.0452e-16 -0.160668 -0.778886) (-6.0225e-16 -0.203978 -0.805643) (-5.99961e-16 -0.253048 -0.834672) (-5.97649e-16 -0.307153 -0.865922) (-5.95331e-16 -0.366058 -0.897357) (-5.93068e-16 -0.429162 -0.928536) (-5.90902e-16 -0.49782 -0.958204) (-5.88866e-16 -0.572629 -0.985564) (-5.86965e-16 -0.653165 -1.01019) (-5.85192e-16 -0.739305 -1.03143) (-5.83534e-16 -0.8304 -1.04912) (-5.81992e-16 -0.926901 -1.06273) (-5.80571e-16 -1.02887 -1.07218) (-5.79283e-16 -1.13695 -1.07662) (-5.78133e-16 -1.25041 -1.07579) (-5.77128e-16 -1.36909 -1.06845) (-5.76267e-16 -1.49144 -1.05433) (-5.75545e-16 -1.618 -1.03217) (-5.74948e-16 -1.74882 -1.00198) (-5.74462e-16 -1.88569 -0.963028) (-5.74078e-16 -2.02653 -0.91653) (-5.73795e-16 -2.17086 -0.860802) (-5.73652e-16 -2.31665 -0.797025) (-5.73643e-16 -2.46264 -0.724264) (-5.73758e-16 -2.6078 -0.642967) (-5.73995e-16 -2.75206 -0.553245) (-5.74337e-16 -2.89397 -0.456315) (-5.74775e-16 -3.03281 -0.352226) (-5.75316e-16 -3.16667 -0.24216) (-5.75958e-16 -3.29345 -0.126879) (-5.76699e-16 -3.41226 -0.00746399) (-5.77536e-16 -3.52247 0.11527) (-5.78467e-16 -3.62355 0.240306) (-5.79486e-16 -3.7145 0.366576) (-5.80592e-16 -3.79459 0.492988) (-5.81781e-16 -3.86293 0.618494) (-5.83053e-16 -3.91896 0.742) (-5.84407e-16 -3.96175 0.862358) (-5.85846e-16 -3.99063 0.978081) (-5.8737e-16 -4.00474 1.08792) (-5.88982e-16 -4.00375 1.19047) (-5.90679e-16 -3.98683 1.28455) (-5.92446e-16 -3.9536 1.36878) (-5.94252e-16 -3.90326 1.44212) (-5.96042e-16 -3.83616 1.50345) (-5.97733e-16 -3.75185 1.55217) (-5.99205e-16 -3.65149 1.58751) (-6.00296e-16 -3.53435 1.60958) (-6.00805e-16 -3.4028 1.61825) (-6.00482e-16 -3.25618 1.61486) (-5.99032e-16 -3.09763 1.60002) (-5.96106e-16 -2.92723 1.57478) (-5.91317e-16 -2.74584 1.53907) (-5.84248e-16 -2.55187 1.4955) (-5.74512e-16 -2.34446 1.4481) (-5.61719e-16 -2.11789 1.39474) (-5.45437e-16 -1.85595 1.3444) (-5.2523e-16 -1.5618 1.28958) (-5.01262e-16 -1.31154 1.22218) (-4.79306e-16 -0.402509 1.2655) (-3.86243e-16 0.625396 -1.48142) (-4.25401e-16 0.67132 -1.4536) (-4.72334e-16 0.730245 -1.35717) (-5.21205e-16 0.777528 -1.21725) (-5.67362e-16 0.818652 -1.12165) (-6.03323e-16 0.868853 -1.12883) (-6.25025e-16 0.923854 -1.21268) (-6.33678e-16 0.97264 -1.30134) (-6.30861e-16 1.00509 -1.35199) (-6.15991e-16 1.01527 -1.37583) (-5.8983e-16 1.01362 -1.39732) (-5.56972e-16 1.00923 -1.41225) (-5.22921e-16 0.991027 -1.40438) (-4.89545e-16 0.95507 -1.36803) (-4.55474e-16 0.920856 -1.31336) (-4.21792e-16 0.910574 -1.2611) (-3.94166e-16 0.925525 -1.21901) (-3.7766e-16 0.954649 -1.18128) (-3.72729e-16 0.95841 -1.13169) (-3.75507e-16 0.902312 -1.04598) (-3.8256e-16 0.782662 -0.920077) (-3.90376e-16 0.618569 -0.766796) (-3.99189e-16 0.436173 -0.592274) (-4.11666e-16 0.244361 -0.443656) (-4.26404e-16 0.0942803 -0.322369) (-4.41708e-16 0.0356622 -0.250779) (-4.78246e-16 0.105419 -0.399894) (-4.97254e-16 0.05087 -0.454309) (-5.1092e-16 0.0916022 -0.468449) (-5.45226e-16 0.0957719 -0.394711) (-5.82726e-16 -0.123023 -0.294118) (-6.17114e-16 -0.156576 -0.384058) (-6.26165e-16 -0.0315555 -0.575109) (-5.91805e-16 0.00806584 -0.645964) (-5.86071e-16 0.0364831 -0.642419) (-6.01676e-16 0.0522375 -0.679265) (-6.04905e-16 0.0433091 -0.723961) (-6.06534e-16 0.0276057 -0.759386) (-6.08549e-16 0.011589 -0.79101) (-6.091e-16 -0.00813848 -0.822321) (-6.08139e-16 -0.0292991 -0.852212) (-6.06083e-16 -0.0527568 -0.882652) (-6.03492e-16 -0.0807734 -0.91331) (-6.00624e-16 -0.113541 -0.945929) (-5.97641e-16 -0.150593 -0.978287) (-5.94619e-16 -0.192797 -1.01148) (-5.91649e-16 -0.242206 -1.04372) (-5.88786e-16 -0.298253 -1.07592) (-5.86065e-16 -0.36067 -1.10757) (-5.83518e-16 -0.429106 -1.13889) (-5.81178e-16 -0.503331 -1.16859) (-5.79091e-16 -0.583605 -1.19552) (-5.77283e-16 -0.670338 -1.21915) (-5.75759e-16 -0.764639 -1.23869) (-5.74496e-16 -0.866511 -1.25386) (-5.73457e-16 -0.975715 -1.26317) (-5.7259e-16 -1.09219 -1.26614) (-5.71847e-16 -1.21614 -1.26085) (-5.71192e-16 -1.34705 -1.24748) (-5.70607e-16 -1.48155 -1.22502) (-5.7009e-16 -1.62109 -1.19478) (-5.69649e-16 -1.76815 -1.15571) (-5.69288e-16 -1.9218 -1.10691) (-5.69002e-16 -2.08189 -1.04798) (-5.68788e-16 -2.24538 -0.979815) (-5.68649e-16 -2.40985 -0.901616) (-5.68613e-16 -2.57416 -0.81452) (-5.68691e-16 -2.73795 -0.718001) (-5.68877e-16 -2.89837 -0.613398) (-5.69178e-16 -3.05609 -0.500334) (-5.69595e-16 -3.21073 -0.379845) (-5.70133e-16 -3.36218 -0.252259) (-5.70789e-16 -3.50817 -0.119761) (-5.71561e-16 -3.64745 0.0170369) (-5.72441e-16 -3.77928 0.15667) (-5.73418e-16 -3.90281 0.298222) (-5.74482e-16 -4.01694 0.440446) (-5.75618e-16 -4.11942 0.581921) (-5.76814e-16 -4.20938 0.721482) (-5.78061e-16 -4.28631 0.857707) (-5.79356e-16 -4.35008 0.98958) (-5.80701e-16 -4.39968 1.11554) (-5.82107e-16 -4.43454 1.23457) (-5.8359e-16 -4.45351 1.34503) (-5.85167e-16 -4.45683 1.44588) (-5.86858e-16 -4.44317 1.53559) (-5.88678e-16 -4.41327 1.61314) (-5.90636e-16 -4.36549 1.67749) (-5.92728e-16 -4.30125 1.72807) (-5.94933e-16 -4.21963 1.76457) (-5.97202e-16 -4.12203 1.78723) (-5.99438e-16 -4.00814 1.79609) (-6.01489e-16 -3.87836 1.79197) (-6.03129e-16 -3.73264 1.7756) (-6.04029e-16 -3.57137 1.74926) (-6.0373e-16 -3.39522 1.71432) (-6.01653e-16 -3.20084 1.67582) (-5.97229e-16 -2.99999 1.63991) (-5.9032e-16 -2.82121 1.618) (-5.82809e-16 -2.39274 1.6405) (-3.53967e-16 0.644087 -1.39118) (-3.90879e-16 0.672515 -1.37672) (-4.35228e-16 0.718304 -1.30525) (-4.82402e-16 0.758102 -1.19357) (-5.29816e-16 0.79998 -1.09913) (-5.71463e-16 0.856653 -1.07595) (-6.01596e-16 0.925158 -1.12567) (-6.18662e-16 0.994339 -1.20203) (-6.23431e-16 1.05248 -1.2611) (-6.15962e-16 1.09133 -1.29573) (-5.96695e-16 1.11432 -1.32296) (-5.68749e-16 1.13153 -1.34854) (-5.37164e-16 1.13958 -1.36065) (-5.05418e-16 1.12486 -1.34321) (-4.73725e-16 1.08592 -1.2909) (-4.41634e-16 1.03795 -1.21802) (-4.11355e-16 1.00148 -1.14963) (-3.87227e-16 0.992854 -1.10378) (-3.72211e-16 1.00365 -1.07695) (-3.65542e-16 1.00538 -1.04362) (-3.6461e-16 0.976394 -0.982333) (-3.66307e-16 0.906988 -0.887329) (-3.68944e-16 0.796684 -0.759433) (-3.72439e-16 0.646235 -0.613373) (-3.75874e-16 0.4703 -0.46) (-3.80362e-16 0.296862 -0.31253) (-3.93245e-16 0.166034 -0.222537) (-4.14086e-16 0.0999305 -0.189236) (-4.43471e-16 0.21152 -0.291905) (-4.66715e-16 0.244545 -0.347003) (-4.68835e-16 0.15079 -0.328644) (-4.97831e-16 0.135447 -0.299147) (-5.65194e-16 0.198659 -0.305205) (-6.47345e-16 0.127648 -0.406616) (-6.47562e-16 0.120897 -0.518351) (-6.11641e-16 0.119051 -0.585919) (-5.998e-16 0.146783 -0.647755) (-5.96761e-16 0.140937 -0.700689) (-5.9433e-16 0.140588 -0.751467) (-5.93935e-16 0.134902 -0.795259) (-5.94158e-16 0.13057 -0.833531) (-5.95021e-16 0.126488 -0.875571) (-5.95606e-16 0.127038 -0.917276) (-5.95553e-16 0.121611 -0.961423) (-5.94896e-16 0.115458 -1.00609) (-5.93779e-16 0.102661 -1.05492) (-5.92236e-16 0.0895759 -1.10809) (-5.90332e-16 0.0646691 -1.16066) (-5.88154e-16 0.0288786 -1.20682) (-5.85852e-16 -0.0198746 -1.24538) (-5.8349e-16 -0.0745243 -1.28142) (-5.81174e-16 -0.136834 -1.31332) (-5.78961e-16 -0.204561 -1.34061) (-5.7687e-16 -0.278268 -1.36264) (-5.74899e-16 -0.358811 -1.37904) (-5.73046e-16 -0.446219 -1.39052) (-5.71329e-16 -0.542925 -1.39826) (-5.69784e-16 -0.648891 -1.4049) (-5.68467e-16 -0.76306 -1.41297) (-5.67395e-16 -0.884149 -1.41932) (-5.66534e-16 -1.01083 -1.41749) (-5.65829e-16 -1.14892 -1.40566) (-5.65232e-16 -1.29794 -1.38244) (-5.64681e-16 -1.45104 -1.34719) (-5.64133e-16 -1.6092 -1.30024) (-5.63581e-16 -1.77219 -1.24103) (-5.63051e-16 -1.94038 -1.16996) (-5.6258e-16 -2.11391 -1.08655) (-5.62203e-16 -2.29276 -0.991434) (-5.61949e-16 -2.47562 -0.883981) (-5.61839e-16 -2.65847 -0.766656) (-5.61884e-16 -2.83831 -0.639786) (-5.62089e-16 -3.0148 -0.506025) (-5.62464e-16 -3.18931 -0.365729) (-5.63033e-16 -3.36011 -0.220843) (-5.63792e-16 -3.52748 -0.071581) (-5.64728e-16 -3.68857 0.0803616) (-5.6583e-16 -3.84304 0.234879) (-5.67078e-16 -3.99019 0.390625) (-5.68442e-16 -4.12949 0.546639) (-5.69884e-16 -4.25928 0.700999) (-5.71366e-16 -4.37839 0.852631) (-5.72855e-16 -4.4851 0.99966) (-5.74333e-16 -4.57776 1.14044) (-5.75776e-16 -4.65609 1.27387) (-5.7717e-16 -4.71824 1.39817) (-5.78512e-16 -4.76478 1.51247) (-5.79804e-16 -4.79353 1.61528) (-5.81059e-16 -4.80552 1.70597) (-5.82309e-16 -4.79913 1.78373) (-5.83598e-16 -4.7755 1.84852) (-5.84971e-16 -4.73433 1.90009) (-5.86495e-16 -4.6766 1.93891) (-5.88279e-16 -4.60254 1.96528) (-5.90447e-16 -4.51267 1.9802) (-5.93125e-16 -4.40961 1.98447) (-5.96418e-16 -4.2959 1.98065) (-6.00374e-16 -4.17857 1.97382) (-6.04835e-16 -4.05861 1.96946) (-6.08906e-16 -3.74445 1.97056) (-3.13685e-16 0.631109 -1.25567) (-3.51749e-16 0.700671 -1.29216) (-3.93726e-16 0.73573 -1.23692) (-4.37849e-16 0.762367 -1.14093) (-4.84247e-16 0.792673 -1.04909) (-5.29257e-16 0.838736 -1.00629) (-5.66943e-16 0.904881 -1.02855) (-5.93362e-16 0.98481 -1.09068) (-6.07529e-16 1.06578 -1.15461) (-6.09344e-16 1.13562 -1.20188) (-5.99092e-16 1.19072 -1.23743) (-5.7868e-16 1.23605 -1.26902) (-5.51953e-16 1.27468 -1.29472) (-5.22827e-16 1.29857 -1.30249) (-4.933e-16 1.29733 -1.27948) (-4.63647e-16 1.26868 -1.22395) (-4.34403e-16 1.22204 -1.14972) (-4.07521e-16 1.17607 -1.07907) (-3.85585e-16 1.14556 -1.02746) (-3.69955e-16 1.1293 -0.991166) (-3.60261e-16 1.11568 -0.95542) (-3.54897e-16 1.09052 -0.907568) (-3.52188e-16 1.04242 -0.839871) (-3.50963e-16 0.963778 -0.752074) (-3.503e-16 0.850902 -0.648711) (-3.49912e-16 0.708723 -0.53629) (-3.51045e-16 0.54432 -0.424319) (-3.54247e-16 0.365427 -0.31585) (-3.59778e-16 0.206246 -0.228742) (-3.62496e-16 0.0949289 -0.168723) (-3.86758e-16 0.0976238 -0.198953) (-5.20687e-16 0.0954851 -0.324804) (-5.7762e-16 0.0242291 -0.323028) (-6.72965e-16 0.065473 -0.406954) (-7.21206e-16 0.162889 -0.495553) (-6.84086e-16 0.20292 -0.550447) (-6.75102e-16 0.227574 -0.609155) (-6.66171e-16 0.234346 -0.658685) (-6.53095e-16 0.248515 -0.701069) (-6.36909e-16 0.257719 -0.736375) (-6.22375e-16 0.267547 -0.77846) (-6.10868e-16 0.277368 -0.826108) (-6.01245e-16 0.290853 -0.873309) (-5.93787e-16 0.3032 -0.922949) (-5.88205e-16 0.315145 -0.971837) (-5.84104e-16 0.322505 -1.02316) (-5.8108e-16 0.330188 -1.07398) (-5.78749e-16 0.33197 -1.12465) (-5.76892e-16 0.330854 -1.17424) (-5.75369e-16 0.323286 -1.22409) (-5.74136e-16 0.311117 -1.27281) (-5.73174e-16 0.290858 -1.32033) (-5.72502e-16 0.264635 -1.36544) (-5.72067e-16 0.231715 -1.40826) (-5.71796e-16 0.193115 -1.44837) (-5.71587e-16 0.148186 -1.48779) (-5.71339e-16 0.0968597 -1.52872) (-5.70878e-16 0.0308461 -1.56652) (-5.70116e-16 -0.0546953 -1.58495) (-5.69169e-16 -0.152753 -1.59518) (-5.68065e-16 -0.255994 -1.59927) (-5.66782e-16 -0.364289 -1.59327) (-5.65243e-16 -0.481136 -1.57673) (-5.63442e-16 -0.603698 -1.55066) (-5.61506e-16 -0.733247 -1.5131) (-5.59621e-16 -0.872006 -1.46516) (-5.57918e-16 -1.02299 -1.40756) (-5.56438e-16 -1.18704 -1.34122) (-5.55172e-16 -1.36075 -1.26663) (-5.54083e-16 -1.54003 -1.1809) (-5.53147e-16 -1.72297 -1.08198) (-5.52355e-16 -1.90599 -0.969488) (-5.51733e-16 -2.0893 -0.845587) (-5.51327e-16 -2.27588 -0.712037) (-5.5114e-16 -2.46453 -0.572102) (-5.51196e-16 -2.65493 -0.427201) (-5.51517e-16 -2.84792 -0.279059) (-5.52112e-16 -3.04294 -0.126875) (-5.53027e-16 -3.23789 0.0278911) (-5.54259e-16 -3.42951 0.186259) (-5.55778e-16 -3.6143 0.346183) (-5.57513e-16 -3.79189 0.507067) (-5.59434e-16 -3.96058 0.667346) (-5.61528e-16 -4.12076 0.824802) (-5.63727e-16 -4.27057 0.977785) (-5.65968e-16 -4.40894 1.1254) (-5.68199e-16 -4.53625 1.26611) (-5.70361e-16 -4.64973 1.39836) (-5.72407e-16 -4.75052 1.52101) (-5.74305e-16 -4.83618 1.63314) (-5.76043e-16 -4.9061 1.73377) (-5.77589e-16 -4.95901 1.82167) (-5.78789e-16 -4.99691 1.89801) (-5.79554e-16 -5.01972 1.9633) (-5.79856e-16 -5.02671 2.01785) (-5.7967e-16 -5.0213 2.06195) (-5.78989e-16 -5.00936 2.09655) (-5.77833e-16 -4.99402 2.12326) (-5.7632e-16 -4.95758 2.14342) (-5.74862e-16 -4.76869 2.14249) (-2.75431e-16 0.624379 -1.08898) (-3.09962e-16 0.729613 -1.18819) (-3.48099e-16 0.777387 -1.16474) (-3.87075e-16 0.808493 -1.08672) (-4.28826e-16 0.831604 -0.996299) (-4.72769e-16 0.859935 -0.933546) (-5.14845e-16 0.904666 -0.923283) (-5.50117e-16 0.969279 -0.959564) (-5.75331e-16 1.04852 -1.01625) (-5.88955e-16 1.13182 -1.07077) (-5.90547e-16 1.21121 -1.11668) (-5.80974e-16 1.2844 -1.15607) (-5.62766e-16 1.35304 -1.19057) (-5.39303e-16 1.41436 -1.21564) (-5.13408e-16 1.46049 -1.22173) (-4.86588e-16 1.48312 -1.20092) (-4.59602e-16 1.47945 -1.15423) (-4.33343e-16 1.45512 -1.09278) (-4.09172e-16 1.42209 -1.03099) (-3.884e-16 1.39015 -0.977249) (-3.71728e-16 1.3629 -0.931379) (-3.59058e-16 1.33777 -0.888898) (-3.49758e-16 1.30893 -0.843814) (-3.42976e-16 1.26927 -0.791886) (-3.37891e-16 1.21265 -0.7317) (-3.33875e-16 1.13577 -0.664767) (-3.30739e-16 1.03769 -0.59369) (-3.28479e-16 0.916305 -0.520283) (-3.271e-16 0.774057 -0.447495) (-3.25474e-16 0.614457 -0.374379) (-3.25722e-16 0.426835 -0.3081) (-3.41038e-16 0.260171 -0.276669) (-3.54971e-16 0.137593 -0.256388) (-3.82516e-16 0.0353801 -0.2481) (-4.57196e-16 -0.0371107 -0.284242) (-5.43269e-16 -0.0311328 -0.377586) (-6.00425e-16 0.0276978 -0.471946) (-6.34663e-16 0.0981945 -0.543311) (-6.55931e-16 0.166804 -0.601883) (-6.67775e-16 0.222958 -0.652207) (-6.72369e-16 0.270073 -0.705493) (-6.7179e-16 0.311161 -0.758793) (-6.66145e-16 0.352458 -0.810196) (-6.57567e-16 0.393392 -0.862445) (-6.47079e-16 0.436109 -0.912644) (-6.35919e-16 0.47613 -0.965469) (-6.24655e-16 0.516823 -1.01755) (-6.13897e-16 0.552992 -1.07078) (-6.03868e-16 0.585616 -1.12291) (-5.94724e-16 0.611617 -1.17521) (-5.86505e-16 0.632238 -1.22668) (-5.79291e-16 0.64548 -1.27712) (-5.73144e-16 0.65199 -1.32557) (-5.68098e-16 0.651525 -1.37171) (-5.64137e-16 0.645303 -1.41479) (-5.61225e-16 0.633432 -1.45506) (-5.59295e-16 0.617452 -1.49252) (-5.58243e-16 0.596615 -1.52947) (-5.5784e-16 0.570515 -1.56669) (-5.57948e-16 0.53748 -1.6063) (-5.58401e-16 0.495298 -1.64313) (-5.59045e-16 0.442641 -1.67036) (-5.59662e-16 0.377028 -1.68177) (-5.60032e-16 0.298805 -1.6797) (-5.59965e-16 0.211695 -1.66795) (-5.59389e-16 0.118845 -1.65381) (-5.58317e-16 0.0201898 -1.63942) (-5.5669e-16 -0.0919061 -1.60531) (-5.5488e-16 -0.213784 -1.53579) (-5.52672e-16 -0.344547 -1.44553) (-5.49969e-16 -0.483122 -1.33406) (-5.47122e-16 -0.630771 -1.2144) (-5.44512e-16 -0.780976 -1.08889) (-5.42301e-16 -0.934174 -0.962886) (-5.40512e-16 -1.09214 -0.836997) (-5.39158e-16 -1.25792 -0.711212) (-5.38248e-16 -1.43641 -0.584471) (-5.37756e-16 -1.63412 -0.45401) (-5.37567e-16 -1.84803 -0.31788) (-5.37658e-16 -2.06887 -0.174099) (-5.38015e-16 -2.27713 -0.0254554) (-5.38833e-16 -2.48243 0.129093) (-5.40213e-16 -2.69339 0.286099) (-5.42014e-16 -2.90464 0.444476) (-5.4419e-16 -3.11525 0.600715) (-5.46681e-16 -3.32423 0.755538) (-5.49431e-16 -3.52771 0.906252) (-5.52358e-16 -3.72411 1.05174) (-5.55356e-16 -3.91632 1.19119) (-5.58317e-16 -4.10245 1.32483) (-5.61236e-16 -4.28178 1.45498) (-5.64566e-16 -4.44406 1.57194) (-5.68158e-16 -4.59268 1.67575) (-5.7179e-16 -4.72758 1.76733) (-5.75423e-16 -4.8474 1.84662) (-5.79e-16 -4.95478 1.91374) (-5.8244e-16 -5.05575 1.96963) (-5.85639e-16 -5.15779 2.01416) (-5.88426e-16 -5.24035 2.04521) (-5.90445e-16 -5.17544 2.03662) (-2.4488e-16 0.593829 -0.89979) (-2.73627e-16 0.712453 -1.04029) (-3.05093e-16 0.795508 -1.0608) (-3.36518e-16 0.862833 -1.01783) (-3.69845e-16 0.907519 -0.944569) (-4.06477e-16 0.939951 -0.875625) (-4.45357e-16 0.972492 -0.837964) (-4.83242e-16 1.01501 -0.839671) (-5.16359e-16 1.07167 -0.870841) (-5.41647e-16 1.13967 -0.914624) (-5.57096e-16 1.21453 -0.959957) (-5.61952e-16 1.29241 -1.00238) (-5.5701e-16 1.3724 -1.04115) (-5.44323e-16 1.4529 -1.07447) (-5.26407e-16 1.52951 -1.0977) (-5.05366e-16 1.59485 -1.10437) (-4.82659e-16 1.64233 -1.09062) (-4.59329e-16 1.66884 -1.05853) (-4.36345e-16 1.67694 -1.0148) (-4.14646e-16 1.67204 -0.966838) (-3.94998e-16 1.65978 -0.919087) (-3.77841e-16 1.64357 -0.873443) (-3.63283e-16 1.62457 -0.829355) (-3.51141e-16 1.60155 -0.78554) (-3.41071e-16 1.57232 -0.740486) (-3.32663e-16 1.5344 -0.693947) (-3.2558e-16 1.48615 -0.6462) (-3.19564e-16 1.42572 -0.598098) (-3.14447e-16 1.35241 -0.550649) (-3.09877e-16 1.26692 -0.50505) (-3.0586e-16 1.16578 -0.461123) (-3.03979e-16 1.05385 -0.42298) (-3.03622e-16 0.935878 -0.390887) (-3.03508e-16 0.815081 -0.366137) (-3.08037e-16 0.690139 -0.350196) (-3.24222e-16 0.575576 -0.352001) (-3.48913e-16 0.492521 -0.373961) (-3.78391e-16 0.438883 -0.408097) (-4.11951e-16 0.410612 -0.449933) (-4.48663e-16 0.399553 -0.495905) (-4.86928e-16 0.401151 -0.5451) (-5.24862e-16 0.411669 -0.596933) (-5.60106e-16 0.4308 -0.649867) (-5.90693e-16 0.457861 -0.703354) (-6.15253e-16 0.494224 -0.756333) (-6.33245e-16 0.53858 -0.810379) (-6.44799e-16 0.591085 -0.864816) (-6.50796e-16 0.648873 -0.921319) (-6.52249e-16 0.71021 -0.97845) (-6.5026e-16 0.77185 -1.03693) (-6.45649e-16 0.832128 -1.09548) (-6.39189e-16 0.889183 -1.15402) (-6.31458e-16 0.941806 -1.21153) (-6.22978e-16 0.98931 -1.26741) (-6.14131e-16 1.03126 -1.32105) (-6.05239e-16 1.06775 -1.37179) (-5.96556e-16 1.09878 -1.41935) (-5.88308e-16 1.125 -1.46331) (-5.80649e-16 1.14698 -1.50613) (-5.73733e-16 1.1649 -1.54903) (-5.67687e-16 1.17769 -1.59166) (-5.62594e-16 1.18465 -1.63086) (-5.5845e-16 1.18399 -1.66198) (-5.55194e-16 1.17396 -1.68112) (-5.5269e-16 1.15366 -1.68712) (-5.50788e-16 1.12278 -1.6805) (-5.4932e-16 1.08111 -1.66245) (-5.48116e-16 1.02709 -1.63519) (-5.47084e-16 0.964102 -1.59835) (-5.46087e-16 0.889159 -1.54752) (-5.44916e-16 0.802606 -1.47893) (-5.43445e-16 0.70202 -1.39407) (-5.41678e-16 0.588069 -1.29624) (-5.39715e-16 0.464144 -1.19132) (-5.37683e-16 0.333397 -1.08563) (-5.35724e-16 0.203099 -0.986601) (-5.33989e-16 0.0717192 -0.899819) (-5.32701e-16 -0.0635217 -0.833505) (-5.31526e-16 -0.152358 -0.718918) (-5.29212e-16 -0.307807 -0.546225) (-5.26391e-16 -0.470426 -0.356538) (-5.25468e-16 -0.675243 -0.18023) (-5.25539e-16 -0.879751 -0.0350537) (-5.2574e-16 -1.09312 0.1103) (-5.26427e-16 -1.31017 0.249846) (-5.27564e-16 -1.53072 0.387929) (-5.2933e-16 -1.74705 0.521377) (-5.31762e-16 -1.9666 0.650074) (-5.34732e-16 -2.19036 0.76793) (-5.37956e-16 -2.4286 0.872053) (-5.40077e-16 -2.70307 0.994287) (-5.41371e-16 -2.95435 1.13513) (-5.4316e-16 -3.19754 1.26945) (-5.4545e-16 -3.43817 1.39022) (-5.4798e-16 -3.67004 1.49463) (-5.50804e-16 -3.89588 1.57946) (-5.53913e-16 -4.11847 1.6429) (-5.57275e-16 -4.34386 1.68177) (-5.60713e-16 -4.54868 1.69149) (-5.63593e-16 -4.63268 1.66588) (-2.23168e-16 0.566127 -0.739458) (-2.45734e-16 0.642343 -0.860684) (-2.69361e-16 0.756092 -0.908393) (-2.92539e-16 0.869087 -0.905609) (-3.1634e-16 0.959288 -0.866854) (-3.42486e-16 1.02823 -0.815118) (-3.71728e-16 1.08135 -0.772838) (-4.03228e-16 1.12781 -0.753151) (-4.34884e-16 1.17615 -0.757526) (-4.64096e-16 1.2297 -0.778933) (-4.8837e-16 1.28911 -0.809367) (-5.05751e-16 1.35331 -0.842666) (-5.15259e-16 1.42233 -0.87577) (-5.17032e-16 1.49595 -0.906546) (-5.12127e-16 1.57311 -0.932636) (-5.02002e-16 1.6498 -0.950418) (-4.88119e-16 1.72099 -0.956251) (-4.7172e-16 1.78149 -0.948649) (-4.53869e-16 1.82878 -0.928825) (-4.35465e-16 1.86253 -0.900144) (-4.17277e-16 1.88456 -0.865801) (-3.99889e-16 1.8969 -0.828638) (-3.83711e-16 1.90167 -0.790233) (-3.68953e-16 1.89995 -0.751676) (-3.55678e-16 1.8923 -0.713148) (-3.43823e-16 1.87852 -0.674963) (-3.33271e-16 1.85834 -0.637232) (-3.23872e-16 1.83131 -0.600374) (-3.15491e-16 1.79713 -0.564852) (-3.07959e-16 1.75596 -0.531326) (-3.01141e-16 1.7072 -0.500031) (-2.95133e-16 1.65113 -0.471997) (-2.89946e-16 1.58835 -0.447717) (-2.85261e-16 1.52035 -0.427597) (-2.81061e-16 1.44717 -0.411423) (-2.78647e-16 1.36982 -0.400407) (-2.78572e-16 1.29328 -0.396164) (-2.80656e-16 1.22132 -0.399036) (-2.85028e-16 1.1566 -0.408474) (-2.9225e-16 1.0999 -0.423616) (-3.03045e-16 1.05193 -0.443834) (-3.18085e-16 1.01198 -0.468777) (-3.37611e-16 0.980305 -0.498148) (-3.61268e-16 0.956333 -0.531681) (-3.8827e-16 0.940762 -0.568881) (-4.17455e-16 0.934075 -0.609392) (-4.47586e-16 0.937509 -0.652615) (-4.77416e-16 0.951938 -0.698586) (-5.05875e-16 0.977811 -0.746853) (-5.32043e-16 1.01486 -0.797671) (-5.55252e-16 1.06178 -0.85046) (-5.75078e-16 1.11717 -0.905219) (-5.91364e-16 1.17866 -0.961141) (-6.04178e-16 1.24456 -1.0177) (-6.13737e-16 1.31245 -1.07393) (-6.20348e-16 1.38112 -1.1291) (-6.24343e-16 1.4487 -1.18252) (-6.26043e-16 1.51476 -1.23356) (-6.25744e-16 1.57863 -1.28222) (-6.23712e-16 1.64098 -1.32865) (-6.20233e-16 1.70154 -1.37333) (-6.15594e-16 1.76078 -1.416) (-6.101e-16 1.81805 -1.45582) (-6.04034e-16 1.87254 -1.49081) (-5.97658e-16 1.92225 -1.51907) (-5.9119e-16 1.96529 -1.53861) (-5.84806e-16 1.99957 -1.54814) (-5.78641e-16 2.0239 -1.54692) (-5.72806e-16 2.03802 -1.53506) (-5.67364e-16 2.0415 -1.51207) (-5.62357e-16 2.03296 -1.47711) (-5.57782e-16 2.01134 -1.42948) (-5.53592e-16 1.97529 -1.36914) (-5.49729e-16 1.92531 -1.29711) (-5.4614e-16 1.8621 -1.21521) (-5.42803e-16 1.78843 -1.1255) (-5.39723e-16 1.70413 -1.02947) (-5.36948e-16 1.61164 -0.927849) (-5.34467e-16 1.51706 -0.829069) (-5.32162e-16 1.42166 -0.73283) (-5.29891e-16 1.31293 -0.632223) (-5.27761e-16 1.18453 -0.528643) (-5.25803e-16 1.04271 -0.424763) (-5.24033e-16 0.886511 -0.316986) (-5.22491e-16 0.720779 -0.2018) (-5.21359e-16 0.542224 -0.0773718) (-5.20759e-16 0.352971 0.0586933) (-5.21035e-16 0.148178 0.200878) (-5.23614e-16 -0.107937 0.34614) (-5.36518e-16 -0.172309 0.298192) (-5.39643e-16 -0.441389 0.379153) (-5.38321e-16 -0.657175 0.519207) (-5.37493e-16 -0.860372 0.667541) (-5.37777e-16 -1.10094 0.810081) (-5.3812e-16 -1.33951 0.940232) (-5.3864e-16 -1.59788 1.0565) (-5.39275e-16 -1.86473 1.15432) (-5.39982e-16 -2.14409 1.22996) (-5.40706e-16 -2.4495 1.27108) (-5.41192e-16 -2.66074 1.28065) (-2.11741e-16 0.429968 -0.590901) (-2.28539e-16 0.49814 -0.711323) (-2.44664e-16 0.62474 -0.736642) (-2.60267e-16 0.769678 -0.743143) (-2.75655e-16 0.904302 -0.736347) (-2.92006e-16 1.02302 -0.716447) (-3.10381e-16 1.12154 -0.692425) (-3.31196e-16 1.20302 -0.674772) (-3.54018e-16 1.2744 -0.669302) (-3.77708e-16 1.34077 -0.675727) (-4.00688e-16 1.40547 -0.690942) (-4.2126e-16 1.4698 -0.711029) (-4.37965e-16 1.5353 -0.733107) (-4.49847e-16 1.60274 -0.754955) (-4.5659e-16 1.67299 -0.774836) (-4.58408e-16 1.74516 -0.79083) (-4.55893e-16 1.81748 -0.800856) (-4.49788e-16 1.88679 -0.803367) (-4.40893e-16 1.95054 -0.797701) (-4.29962e-16 2.00654 -0.784604) (-4.17696e-16 2.0541 -0.765223) (-4.04686e-16 2.09299 -0.741243) (-3.9143e-16 2.12385 -0.713969) (-3.78303e-16 2.14718 -0.684789) (-3.65581e-16 2.16365 -0.65457) (-3.53437e-16 2.17366 -0.624181) (-3.41974e-16 2.17758 -0.594168) (-3.3123e-16 2.1757 -0.565134) (-3.21213e-16 2.1682 -0.53755) (-3.11891e-16 2.15553 -0.511905) (-3.03227e-16 2.13783 -0.488542) (-2.95195e-16 2.11557 -0.467826) (-2.87764e-16 2.08908 -0.450078) (-2.80845e-16 2.05908 -0.435594) (-2.74392e-16 2.02605 -0.42447) (-2.68545e-16 1.99034 -0.416741) (-2.63447e-16 1.95286 -0.412475) (-2.59098e-16 1.91445 -0.411737) (-2.55414e-16 1.87633 -0.414457) (-2.5234e-16 1.8389 -0.420396) (-2.49935e-16 1.80314 -0.429219) (-2.48444e-16 1.76913 -0.440566) (-2.48275e-16 1.73773 -0.454257) (-2.49901e-16 1.70901 -0.470139) (-2.53781e-16 1.6837 -0.488299) (-2.60257e-16 1.66213 -0.508781) (-2.69546e-16 1.645 -0.531662) (-2.8168e-16 1.63306 -0.556972) (-2.96567e-16 1.62705 -0.5846) (-3.1394e-16 1.62804 -0.614595) (-3.33438e-16 1.63657 -0.646705) (-3.54574e-16 1.65355 -0.681022) (-3.76828e-16 1.67892 -0.717225) (-3.99642e-16 1.71303 -0.755358) (-4.22493e-16 1.75505 -0.794959) (-4.44903e-16 1.80472 -0.835821) (-4.66481e-16 1.86064 -0.877336) (-4.8691e-16 1.92225 -0.919081) (-5.05953e-16 1.9881 -0.960433) (-5.23424e-16 2.05781 -1.00089) (-5.39185e-16 2.13026 -1.03991) (-5.53134e-16 2.20529 -1.07694) (-5.65213e-16 2.28215 -1.11143) (-5.754e-16 2.36061 -1.14275) (-5.83724e-16 2.43976 -1.17029) (-5.90245e-16 2.51865 -1.19331) (-5.95062e-16 2.59587 -1.21115) (-5.98293e-16 2.67004 -1.22313) (-6.00082e-16 2.73988 -1.22865) (-6.00588e-16 2.8044 -1.22691) (-5.99988e-16 2.86215 -1.21727) (-5.98478e-16 2.91213 -1.19908) (-5.96256e-16 2.95273 -1.17195) (-5.93503e-16 2.98333 -1.13556) (-5.90372e-16 3.00253 -1.08999) (-5.86989e-16 3.01039 -1.03548) (-5.83459e-16 3.00597 -0.972638) (-5.79875e-16 2.99009 -0.902366) (-5.76305e-16 2.96417 -0.826576) (-5.72796e-16 2.92832 -0.747578) (-5.69431e-16 2.88483 -0.666749) (-5.66223e-16 2.83316 -0.585512) (-5.63149e-16 2.77435 -0.504018) (-5.60224e-16 2.70887 -0.422369) (-5.57487e-16 2.63599 -0.339504) (-5.54997e-16 2.55478 -0.254516) (-5.52785e-16 2.46323 -0.167678) (-5.5091e-16 2.36066 -0.079598) (-5.49482e-16 2.24177 0.00773175) (-5.48481e-16 2.12453 0.0894089) (-5.4767e-16 2.00387 0.166179) (-5.47068e-16 1.879 0.238136) (-5.46709e-16 1.74771 0.304565) (-5.4658e-16 1.6009 0.360681) (-5.46607e-16 1.44074 0.401678) (-5.46929e-16 1.25765 0.43342) (-5.47685e-16 1.0648 0.460857) (-5.48557e-16 0.838916 0.499806) (-5.49754e-16 0.641477 0.562796) (-5.52961e-16 0.239575 0.640414) (-1.87064e-16 0.164829 -0.285939) (-1.91021e-16 0.309999 -0.398146) (-2.04297e-16 0.447305 -0.430861) (-2.18263e-16 0.589858 -0.465644) (-2.31198e-16 0.739196 -0.500722) (-2.43384e-16 0.88434 -0.525003) (-2.55584e-16 1.0179 -0.537963) (-2.68564e-16 1.13758 -0.54499) (-2.82773e-16 1.24465 -0.551741) (-2.98229e-16 1.34113 -0.560483) (-3.14502e-16 1.43039 -0.572176) (-3.30827e-16 1.51439 -0.586099) (-3.46283e-16 1.59537 -0.601396) (-3.59974e-16 1.67429 -0.616765) (-3.7121e-16 1.75249 -0.631078) (-3.79559e-16 1.83025 -0.643249) (-3.84886e-16 1.90766 -0.652112) (-3.87271e-16 1.98359 -0.65693) (-3.86977e-16 2.05697 -0.656959) (-3.84346e-16 2.12619 -0.65228) (-3.79786e-16 2.19034 -0.643011) (-3.73689e-16 2.24848 -0.629901) (-3.66445e-16 2.30037 -0.613507) (-3.58385e-16 2.34579 -0.594718) (-3.49809e-16 2.38491 -0.574175) (-3.40952e-16 2.41789 -0.552649) (-3.32008e-16 2.44502 -0.530735) (-3.23119e-16 2.4667 -0.509048) (-3.14398e-16 2.48323 -0.488098) (-3.05916e-16 2.49514 -0.468383) (-2.97728e-16 2.50273 -0.450289) (-2.89867e-16 2.50657 -0.43418) (-2.82355e-16 2.50699 -0.420288) (-2.7519e-16 2.50458 -0.40887) (-2.68362e-16 2.49976 -0.399984) (-2.61886e-16 2.49298 -0.393705) (-2.55801e-16 2.48471 -0.389926) (-2.50137e-16 2.47526 -0.388592) (-2.44898e-16 2.46522 -0.389567) (-2.40059e-16 2.45474 -0.392742) (-2.35565e-16 2.44439 -0.398007) (-2.31362e-16 2.43418 -0.405155) (-2.27423e-16 2.42461 -0.414075) (-2.23768e-16 2.41565 -0.424494) (-2.20474e-16 2.40779 -0.436358) (-2.17671e-16 2.40112 -0.449467) (-2.15532e-16 2.39606 -0.463847) (-2.14251e-16 2.39293 -0.479412) (-2.14033e-16 2.39206 -0.496171) (-2.15067e-16 2.39397 -0.514092) (-2.17523e-16 2.39892 -0.533068) (-2.21525e-16 2.40758 -0.553069) (-2.27159e-16 2.42011 -0.573878) (-2.34447e-16 2.43726 -0.595483) (-2.43366e-16 2.45902 -0.617649) (-2.53835e-16 2.48605 -0.640374) (-2.65738e-16 2.5181 -0.663416) (-2.78927e-16 2.55559 -0.686718) (-2.93241e-16 2.59801 -0.709999) (-3.08511e-16 2.64555 -0.733104) (-3.24564e-16 2.69755 -0.755668) (-3.41224e-16 2.75402 -0.777416) (-3.58304e-16 2.81433 -0.797859) (-3.75614e-16 2.87832 -0.8166) (-3.92958e-16 2.94539 -0.833055) (-4.10147e-16 3.01515 -0.84681) (-4.26995e-16 3.08695 -0.857388) (-4.43328e-16 3.16021 -0.864546) (-4.58978e-16 3.23412 -0.868029) (-4.73786e-16 3.30799 -0.867658) (-4.87614e-16 3.38077 -0.863124) (-5.00347e-16 3.45169 -0.854165) (-5.11912e-16 3.51942 -0.840409) (-5.22273e-16 3.58328 -0.821662) (-5.31433e-16 3.64188 -0.797609) (-5.39426e-16 3.69472 -0.7683) (-5.4631e-16 3.74057 -0.733691) (-5.52159e-16 3.77921 -0.694189) (-5.57062e-16 3.8101 -0.650069) (-5.61112e-16 3.83277 -0.602156) (-5.64404e-16 3.84724 -0.550982) (-5.67041e-16 3.85345 -0.496728) (-5.69117e-16 3.85122 -0.439878) (-5.70709e-16 3.84097 -0.380855) (-5.71888e-16 3.8222 -0.320434) (-5.72725e-16 3.79515 -0.25878) (-5.73286e-16 3.7588 -0.196699) (-5.73621e-16 3.71349 -0.134548) (-5.73782e-16 3.65879 -0.073463) (-5.7386e-16 3.59654 -0.0157409) (-5.73813e-16 3.5265 0.0407255) (-5.73684e-16 3.44923 0.0947124) (-5.73525e-16 3.3649 0.145982) (-5.73367e-16 3.275 0.192634) (-5.73211e-16 3.18051 0.233472) (-5.73082e-16 3.0827 0.267152) (-5.72987e-16 2.98606 0.292318) (-5.72855e-16 2.8811 0.306975) (-5.72708e-16 2.79956 0.316022) (-5.72686e-16 2.65477 0.302377) (-1.93819e-16 0.693249 -0.288718) (-1.82484e-16 0.725602 -0.301392) (-1.84442e-16 0.752506 -0.263577) (-1.8958e-16 0.810049 -0.256132) (-1.9604e-16 0.879698 -0.269958) (-2.03233e-16 0.956165 -0.29206) (-2.10849e-16 1.04141 -0.316597) (-2.18845e-16 1.13385 -0.341842) (-2.27316e-16 1.22924 -0.365698) (-2.36384e-16 1.32377 -0.387176) (-2.46064e-16 1.41693 -0.406196) (-2.56237e-16 1.50794 -0.42323) (-2.66628e-16 1.59752 -0.438754) (-2.76852e-16 1.68521 -0.452876) (-2.86487e-16 1.77177 -0.465435) (-2.95134e-16 1.85694 -0.476212) (-3.02485e-16 1.94122 -0.484666) (-3.08325e-16 2.02406 -0.490639) (-3.1257e-16 2.10524 -0.493656) (-3.15213e-16 2.18387 -0.49386) (-3.16343e-16 2.25943 -0.491103) (-3.16084e-16 2.33111 -0.485801) (-3.14608e-16 2.39848 -0.478112) (-3.12085e-16 2.4611 -0.468539) (-3.087e-16 2.51874 -0.457407) (-3.04615e-16 2.57132 -0.445187) (-2.99991e-16 2.61884 -0.432276) (-2.94958e-16 2.66147 -0.419061) (-2.8964e-16 2.69937 -0.405929) (-2.84132e-16 2.73294 -0.393189) (-2.7852e-16 2.76244 -0.38117) (-2.72871e-16 2.78837 -0.370112) (-2.6724e-16 2.81111 -0.36025) (-2.61669e-16 2.83116 -0.351764) (-2.56187e-16 2.84895 -0.344774) (-2.5082e-16 2.86492 -0.33938) (-2.45588e-16 2.87949 -0.335587) (-2.40517e-16 2.89294 -0.333405) (-2.35626e-16 2.90568 -0.332766) (-2.30933e-16 2.91783 -0.333623) (-2.26448e-16 2.9298 -0.335913) (-2.22167e-16 2.9416 -0.339561) (-2.1808e-16 2.95362 -0.344533) (-2.14166e-16 2.96581 -0.350721) (-2.10408e-16 2.9785 -0.358094) (-2.06788e-16 2.9917 -0.366521) (-2.03302e-16 3.00567 -0.375966) (-1.99956e-16 3.02052 -0.38631) (-1.96774e-16 3.03642 -0.397508) (-1.93794e-16 3.05364 -0.40948) (-1.9107e-16 3.07223 -0.42214) (-1.88664e-16 3.09255 -0.435432) (-1.86649e-16 3.11456 -0.449192) (-1.85101e-16 3.13868 -0.463354) (-1.84097e-16 3.16475 -0.477677) (-1.83706e-16 3.19324 -0.492088) (-1.83989e-16 3.22391 -0.506311) (-1.84996e-16 3.25722 -0.520283) (-1.86764e-16 3.2929 -0.533738) (-1.8932e-16 3.33133 -0.54663) (-1.92686e-16 3.37223 -0.558711) (-1.96879e-16 3.41585 -0.569939) (-2.01908e-16 3.4619 -0.580081) (-2.07779e-16 3.51047 -0.589056) (-2.14484e-16 3.56123 -0.596603) (-2.22011e-16 3.61403 -0.602532) (-2.30335e-16 3.6685 -0.606544) (-2.39425e-16 3.72434 -0.608379) (-2.49233e-16 3.78114 -0.607814) (-2.59704e-16 3.83859 -0.604642) (-2.70757e-16 3.89621 -0.598781) (-2.82299e-16 3.95375 -0.590132) (-2.94216e-16 4.0106 -0.578713) (-3.06385e-16 4.06653 -0.564524) (-3.18675e-16 4.12081 -0.547626) (-3.30955e-16 4.17322 -0.528085) (-3.43101e-16 4.22287 -0.505974) (-3.55001e-16 4.26955 -0.481416) (-3.66554e-16 4.31233 -0.454529) (-3.77685e-16 4.35093 -0.425408) (-3.8833e-16 4.38453 -0.394327) (-3.98443e-16 4.41303 -0.361402) (-4.07995e-16 4.43568 -0.326861) (-4.16976e-16 4.45248 -0.290866) (-4.25386e-16 4.46295 -0.25385) (-4.33232e-16 4.46733 -0.21625) (-4.40529e-16 4.4653 -0.1786) (-4.47296e-16 4.45733 -0.141535) (-4.53559e-16 4.44356 -0.105664) (-4.5936e-16 4.42444 -0.0717635) (-4.64737e-16 4.40028 -0.0401867) (-4.69715e-16 4.3714 -0.0114374) (-4.74326e-16 4.33774 0.0141539) (-4.78606e-16 4.29993 0.0362473) (-4.82592e-16 4.25779 0.0545852) (-4.86321e-16 4.21103 0.0689808) (-4.89801e-16 4.16236 0.079527) (-4.9329e-16 4.10401 0.0859458) (-4.96002e-16 4.05725 0.088339) (-5.01316e-16 3.96798 0.0871983) (-5.21713e-17 1.25845 -0.345337) (-5.78951e-17 1.31002 -0.248428) (-6.81668e-17 1.36748 -0.206732) (-7.73071e-17 1.42426 -0.209862) (-8.58961e-17 1.46369 -0.211494) (-9.4425e-17 1.4987 -0.205568) (-1.03025e-16 1.5398 -0.204094) (-1.11735e-16 1.58661 -0.210885) (-1.2056e-16 1.63651 -0.224365) (-1.29488e-16 1.68881 -0.240292) (-1.38481e-16 1.74478 -0.256908) (-1.47497e-16 1.80449 -0.272565) (-1.56475e-16 1.86808 -0.287143) (-1.65331e-16 1.9343 -0.299901) (-1.7395e-16 2.00297 -0.310984) (-1.82193e-16 2.07309 -0.319957) (-1.89919e-16 2.14466 -0.327028) (-1.96992e-16 2.21689 -0.331925) (-2.03305e-16 2.28966 -0.334906) (-2.08779e-16 2.36216 -0.335844) (-2.13377e-16 2.43404 -0.335085) (-2.17085e-16 2.50456 -0.332587) (-2.19931e-16 2.57327 -0.3288) (-2.21953e-16 2.63964 -0.323689) (-2.23216e-16 2.70327 -0.317779) (-2.23785e-16 2.76388 -0.31102) (-2.23742e-16 2.8212 -0.303947) (-2.23159e-16 2.87522 -0.2965) (-2.22118e-16 2.9258 -0.289183) (-2.20688e-16 2.97313 -0.281931) (-2.1894e-16 3.01725 -0.275172) (-2.16934e-16 3.05845 -0.268837) (-2.14728e-16 3.09693 -0.263252) (-2.1237e-16 3.13298 -0.25834) (-2.09904e-16 3.16692 -0.254316) (-2.07365e-16 3.19901 -0.251092) (-2.04784e-16 3.22962 -0.248792) (-2.02187e-16 3.25895 -0.247322) (-1.99595e-16 3.2874 -0.246746) (-1.97027e-16 3.31508 -0.246963) (-1.94497e-16 3.34238 -0.248021) (-1.92017e-16 3.36936 -0.249814) (-1.89596e-16 3.39636 -0.252396) (-1.87237e-16 3.4234 -0.25566) (-1.84942e-16 3.45077 -0.259665) (-1.82705e-16 3.47847 -0.264294) (-1.80521e-16 3.50671 -0.269596) (-1.78382e-16 3.53551 -0.275443) (-1.76277e-16 3.56499 -0.281859) (-1.74199e-16 3.59523 -0.288717) (-1.72141e-16 3.62626 -0.296007) (-1.70099e-16 3.65826 -0.303627) (-1.68072e-16 3.69114 -0.311528) (-1.66064e-16 3.72514 -0.319644) (-1.64081e-16 3.7601 -0.327873) (-1.62135e-16 3.79628 -0.33617) (-1.60238e-16 3.83344 -0.344383) (-1.58409e-16 3.87187 -0.35247) (-1.56663e-16 3.91124 -0.360232) (-1.55019e-16 3.95183 -0.367621) (-1.53493e-16 3.99328 -0.374422) (-1.52101e-16 4.03581 -0.380571) (-1.50862e-16 4.07908 -0.385855) (-1.49794e-16 4.12322 -0.390199) (-1.48916e-16 4.1679 -0.393442) (-1.48249e-16 4.21317 -0.395494) (-1.47814e-16 4.25868 -0.396245) (-1.47638e-16 4.30439 -0.395573) (-1.47748e-16 4.34991 -0.393427) (-1.48176e-16 4.39518 -0.389661) (-1.48952e-16 4.43978 -0.384271) (-1.5011e-16 4.48364 -0.377131) (-1.51675e-16 4.52636 -0.368304) (-1.53668e-16 4.5679 -0.357714) (-1.561e-16 4.60781 -0.345477) (-1.58971e-16 4.64611 -0.331596) (-1.62272e-16 4.68233 -0.316225) (-1.65979e-16 4.7165 -0.299444) (-1.70063e-16 4.74815 -0.281423) (-1.74485e-16 4.77732 -0.2623) (-1.79203e-16 4.80356 -0.242271) (-1.8417e-16 4.82694 -0.221563) (-1.89338e-16 4.8471 -0.200378) (-1.9466e-16 4.86408 -0.17897) (-2.00091e-16 4.87758 -0.157533) (-2.05591e-16 4.88776 -0.13637) (-2.11122e-16 4.89436 -0.115671) (-2.16654e-16 4.89774 -0.0957775) (-2.2216e-16 4.89786 -0.0768815) (-2.27617e-16 4.895 -0.0592879) (-2.33015e-16 4.88911 -0.0431667) (-2.38344e-16 4.88045 -0.0287884) (-2.43601e-16 4.86884 -0.0163074) (-2.48788e-16 4.85487 -0.00596021) (-2.53916e-16 4.83853 0.00209782) (-2.59005e-16 4.81979 0.00757371) (-2.64017e-16 4.80041 0.0102794) (-2.69277e-16 4.77588 0.00994245) (-2.73545e-16 4.75661 0.00695146) (-2.82066e-16 4.72007 -0.00352147) (-2.69813e-16 1.8066 -0.32528) (-2.55293e-16 1.88064 -0.117823) (-2.37776e-16 2.04518 -0.0601166) (-2.16192e-16 2.13922 -0.0792336) (-1.9555e-16 2.17381 -0.0914149) (-1.77503e-16 2.20803 -0.0868704) (-1.61533e-16 2.25808 -0.0800629) (-1.47199e-16 2.31351 -0.0785101) (-1.34239e-16 2.3664 -0.0821847) (-1.22653e-16 2.41601 -0.089075) (-1.12374e-16 2.46533 -0.0978164) (-1.03383e-16 2.51562 -0.107854) (-9.55854e-17 2.5679 -0.118048) (-8.88934e-17 2.62166 -0.128504) (-8.32229e-17 2.67718 -0.137742) (-7.8451e-17 2.73392 -0.146587) (-7.45139e-17 2.79207 -0.153375) (-7.12653e-17 2.85117 -0.159513) (-6.86608e-17 2.91125 -0.163289) (-6.65535e-17 2.97188 -0.166414) (-6.49203e-17 3.0329 -0.167303) (-6.36346e-17 3.0939 -0.167694) (-6.26936e-17 3.15458 -0.166245) (-6.20017e-17 3.21459 -0.164508) (-6.15717e-17 3.27358 -0.161439) (-6.13393e-17 3.33132 -0.158297) (-6.13253e-17 3.38747 -0.154327) (-6.14915e-17 3.44193 -0.15049) (-6.18599e-17 3.4945 -0.146257) (-6.24101e-17 3.54516 -0.142342) (-6.31608e-17 3.59385 -0.138369) (-6.41012e-17 3.64064 -0.13487) (-6.52443e-17 3.68562 -0.131551) (-6.6583e-17 3.72888 -0.128824) (-6.81235e-17 3.77062 -0.126428) (-6.98586e-17 3.81095 -0.124701) (-7.17879e-17 3.85014 -0.123383) (-7.39017e-17 3.88827 -0.122768) (-7.61938e-17 3.92564 -0.122587) (-7.86518e-17 3.96231 -0.1231) (-8.12649e-17 3.99856 -0.124036) (-8.40183e-17 4.03443 -0.125625) (-8.68985e-17 4.07016 -0.127599) (-8.98891e-17 4.10577 -0.130164) (-9.29749e-17 4.14147 -0.133069) (-9.61382e-17 4.1773 -0.136496) (-9.93625e-17 4.21341 -0.140211) (-1.0263e-16 4.24984 -0.144376) (-1.05923e-16 4.28669 -0.148776) (-1.09223e-16 4.32403 -0.153547) (-1.12515e-16 4.36188 -0.158485) (-1.15781e-16 4.40035 -0.163704) (-1.19007e-16 4.43939 -0.169002) (-1.22178e-16 4.47914 -0.17447) (-1.25279e-16 4.51947 -0.179911) (-1.283e-16 4.56054 -0.185397) (-1.31228e-16 4.60214 -0.190739) (-1.34055e-16 4.64445 -0.195986) (-1.36773e-16 4.68719 -0.200965) (-1.39375e-16 4.73053 -0.205693) (-1.41857e-16 4.77418 -0.210015) (-1.44214e-16 4.81824 -0.213907) (-1.46445e-16 4.86238 -0.21725) (-1.48547e-16 4.90669 -0.219974) (-1.5052e-16 4.95081 -0.221999) (-1.52365e-16 4.99477 -0.223225) (-1.54081e-16 5.03822 -0.223633) (-1.5567e-16 5.08119 -0.223103) (-1.57135e-16 5.12333 -0.22167) (-1.5848e-16 5.1646 -0.219207) (-1.59713e-16 5.20466 -0.215811) (-1.60842e-16 5.2435 -0.211356) (-1.6188e-16 5.28077 -0.205974) (-1.62841e-16 5.31644 -0.199558) (-1.63745e-16 5.35019 -0.192276) (-1.64609e-16 5.38205 -0.184053) (-1.65455e-16 5.41172 -0.175075) (-1.66301e-16 5.43924 -0.165309) (-1.67168e-16 5.46432 -0.154964) (-1.68071e-16 5.48707 -0.144049) (-1.69027e-16 5.50723 -0.132777) (-1.70048e-16 5.52492 -0.121179) (-1.71143e-16 5.53991 -0.109486) (-1.72318e-16 5.5524 -0.0977383) (-1.73578e-16 5.56217 -0.0861702) (-1.74924e-16 5.56946 -0.0748143) (-1.76355e-16 5.57407 -0.0639282) (-1.77868e-16 5.57641 -0.0535296) (-1.79459e-16 5.57651 -0.0438826) (-1.81123e-16 5.57466 -0.0350007) (-1.82855e-16 5.5709 -0.0271426) (-1.84647e-16 5.56552 -0.0203298) (-1.86494e-16 5.55855 -0.0148131) (-1.88391e-16 5.55047 -0.010618) (-1.90328e-16 5.54133 -0.00800605) (-1.92315e-16 5.53143 -0.00695666) (-1.94312e-16 5.52159 -0.00776311) (-1.96422e-16 5.51003 -0.0104056) (-1.98288e-16 5.49967 -0.0142372) (-2.0137e-16 5.48636 -0.0241343) (-1.50257e-15 2.69917 -0.226246) (-1.53847e-15 2.66017 -0.121556) (-1.53998e-15 2.88638 -0.0826759) (-1.52487e-15 2.99541 -0.0807577) (-1.50692e-15 3.00685 -0.0773857) (-1.48958e-15 3.0202 -0.0679971) (-1.47172e-15 3.05923 -0.0573995) (-1.45307e-15 3.10834 -0.0493822) (-1.43379e-15 3.15557 -0.0435231) (-1.41423e-15 3.19899 -0.0397115) (-1.39468e-15 3.2419 -0.0370283) (-1.37546e-15 3.28479 -0.0358008) (-1.35684e-15 3.32924 -0.0350751) (-1.33903e-15 3.37395 -0.0354481) (-1.32226e-15 3.41998 -0.0356531) (-1.30664e-15 3.46613 -0.0366814) (-1.29239e-15 3.5132 -0.0370054) (-1.27953e-15 3.56033 -0.037979) (-1.26821e-15 3.60794 -0.0379273) (-1.25839e-15 3.65547 -0.0384174) (-1.25014e-15 3.70295 -0.0377922) (-1.24336e-15 3.75012 -0.0376372) (-1.23806e-15 3.79664 -0.0364592) (-1.2341e-15 3.8425 -0.0357011) (-1.23145e-15 3.88716 -0.0341157) (-1.22993e-15 3.93079 -0.0329145) (-1.22949e-15 3.97281 -0.0311178) (-1.22995e-15 4.01348 -0.029686) (-1.2312e-15 4.05232 -0.0278745) (-1.23308e-15 4.08965 -0.0264206) (-1.23547e-15 4.12514 -0.0247595) (-1.23819e-15 4.15909 -0.0234579) (-1.24112e-15 4.19142 -0.0220749) (-1.24408e-15 4.22235 -0.0210594) (-1.24697e-15 4.25198 -0.020045) (-1.2496e-15 4.28048 -0.0194039) (-1.25188e-15 4.30808 -0.0188083) (-1.25365e-15 4.33489 -0.018583) (-1.2548e-15 4.36119 -0.0184198) (-1.25523e-15 4.38708 -0.0186157) (-1.25483e-15 4.41284 -0.0188746) (-1.25351e-15 4.43855 -0.0194763) (-1.2512e-15 4.46449 -0.0201384) (-1.24783e-15 4.49072 -0.0211302) (-1.24335e-15 4.51748 -0.0221864) (-1.23772e-15 4.54483 -0.0235606) (-1.23092e-15 4.57295 -0.0250048) (-1.22293e-15 4.60193 -0.0267541) (-1.21375e-15 4.63186 -0.0285788) (-1.20339e-15 4.66287 -0.0306917) (-1.19188e-15 4.69496 -0.0328834) (-1.17925e-15 4.72829 -0.0353379) (-1.16555e-15 4.76274 -0.0378645) (-1.15083e-15 4.7985 -0.0406065) (-1.13515e-15 4.83538 -0.0433925) (-1.11859e-15 4.87359 -0.04633) (-1.10122e-15 4.91283 -0.0492707) (-1.08311e-15 4.95334 -0.05228) (-1.06435e-15 4.99474 -0.0552447) (-1.04503e-15 5.03726 -0.0581898) (-1.02522e-15 5.08047 -0.0610258) (-1.00501e-15 5.12456 -0.0637388) (-9.84493e-16 5.16911 -0.0662829) (-9.63741e-16 5.21424 -0.0686087) (-9.42832e-16 5.25952 -0.0707023) (-9.21845e-16 5.30507 -0.0724921) (-9.00846e-16 5.35044 -0.0740097) (-8.79907e-16 5.39566 -0.075157) (-8.59083e-16 5.44033 -0.0759884) (-8.38435e-16 5.48449 -0.0763959) (-8.18007e-16 5.52774 -0.0764737) (-7.9785e-16 5.57006 -0.0761079) (-7.77998e-16 5.61111 -0.0754097) (-7.58489e-16 5.6509 -0.0742719) (-7.39348e-16 5.6891 -0.0728334) (-7.20607e-16 5.72571 -0.0709927) (-7.02282e-16 5.76042 -0.068888) (-6.84395e-16 5.79329 -0.0664259) (-6.66957e-16 5.82408 -0.0637627) (-6.49984e-16 5.85283 -0.0608194) (-6.33482e-16 5.8793 -0.0577444) (-6.17462e-16 5.90364 -0.0544633) (-6.01924e-16 5.92564 -0.0511382) (-5.86876e-16 5.94545 -0.0477012) (-5.72314e-16 5.96292 -0.0443053) (-5.58243e-16 5.97835 -0.0408854) (-5.44656e-16 5.9916 -0.0376226) (-5.31554e-16 6.00307 -0.0344499) (-5.1893e-16 6.01284 -0.0315458) (-5.06781e-16 6.02121 -0.0288515) (-4.95099e-16 6.02827 -0.0265415) (-4.83879e-16 6.03427 -0.0245615) (-4.73112e-16 6.03921 -0.0230639) (-4.62796e-16 6.04367 -0.0219811) (-4.52913e-16 6.04755 -0.0214956) (-4.4349e-16 6.05143 -0.0214703) (-4.34416e-16 6.05476 -0.0221521) (-4.25965e-16 6.05936 -0.0231633) (-4.17621e-16 6.05666 -0.025099) (-4.08564e-16 6.07177 -0.0272793) (-2.95545e-16 0.647942 -3.39516) (1.67431e-17 0.443327 -5.87166) (1.27559e-16 0.787708 -4.21162) (7.80054e-17 1.25329 -4.15487) (6.04436e-17 1.70373 -3.94452) (3.90747e-17 1.83702 -5.38618) (5.15957e-17 2.0369 -3.78106) (2.13101e-17 2.33123 -3.71719) (-2.71592e-18 2.66987 -3.56425) (2.11184e-16 2.91163 -4.51729) (2.58152e-16 2.84066 -3.2995) (2.43761e-16 3.12367 -3.11182) (1.75604e-16 3.74279 -3.71314) (1.62953e-16 3.28452 -2.78085) (1.31342e-16 3.53224 -2.72885) (1.2201e-16 3.68587 -2.65273) (1.03058e-16 4.48893 -2.9523) (1.01738e-16 3.58651 -2.33402) (6.69937e-17 3.76046 -2.25787) (-7.52365e-17 4.87704 -2.28757) (6.60275e-18 3.6469 -1.88241) (-1.67909e-17 3.88514 -1.84985) (-3.03945e-16 3.93618 -1.84331) (-7.99821e-17 5.05903 -1.6514) (-5.06297e-17 3.5035 -1.47077) (-3.10293e-17 3.81881 -1.44249) (-3.7906e-17 3.83299 -1.45301) (-1.6038e-16 5.05247 -1.12294) (-8.1915e-16 3.3229 -1.0681) (-9.55179e-17 3.38896 -1.09214) (3.88393e-17 4.96731 -0.672185) (-3.05089e-16 3.03312 -0.671945) (-4.38979e-16 3.23589 -0.652579) (-1.08875e-15 3.21491 -0.682204) (-3.75086e-16 4.46331 -0.256379) (-2.75989e-16 2.69774 -0.288003) (-2.52766e-16 2.70947 -0.321897) (-3.25737e-16 4.27783 0.0786345) (-2.26087e-16 2.39715 0.0817072) (-2.39465e-16 2.56423 0.0925331) (-1.28419e-16 2.53373 0.0701459) (-1.51116e-16 3.63354 0.404102) (-9.4644e-17 2.07616 0.447341) (-8.93406e-17 2.26537 0.461875) (-8.56417e-17 2.26396 0.446087) (-6.71884e-17 3.00908 0.717234) (-1.99989e-16 1.93766 0.847382) (-1.95511e-16 1.93912 0.847967) (-3.16953e-16 2.58953 1.14534) (-7.95521e-17 1.79811 1.21177) (-6.2927e-17 1.75383 1.22089) (-5.66864e-17 1.76974 1.20859) (-7.99811e-17 1.81237 1.46049) (-1.02112e-16 1.32592 1.33845) (-1.3401e-16 1.2953 1.33494) (6.26707e-17 1.29401 1.36423) (4.7694e-17 1.32937 1.21742) (1.39102e-17 0.749748 1.00587) (-3.32275e-16 0.634481 1.09117) (-8.50791e-16 1.36435 -0.347175) (-2.98799e-16 0.0525226 0.179225) (-1.14242e-17 0.0398382 0.278489) (6.3374e-16 0.444474 0.246539) (5.26509e-16 0.246462 -0.352995) (8.82005e-16 -0.792393 1.71918) (3.26738e-17 -0.569731 1.72875) (-2.58489e-16 -1.50554 3.63326) (-1.20913e-17 -2.03435 4.03522) (5.18426e-17 -2.15156 4.0561) (3.99404e-17 -2.18971 4.20876) (3.02389e-16 -3.77713 6.89599) (3.78863e-16 -3.96211 5.87438) (4.06128e-16 -4.23767 6.04322) (4.28377e-16 -4.40569 6.1994) (7.41416e-16 -6.94596 9.40514) (8.17281e-16 -6.25968 7.36487) (9.1485e-16 -6.51332 7.82385) (1.41907e-15 -9.75323 11.3791) (1.08425e-15 -8.57485 8.63436) (1.11715e-15 -8.93297 9.19082) (1.25011e-15 -9.6749 10.1328) (1.31029e-15 -9.5638 10.0971) (1.36355e-15 -9.74816 10.3241) (1.8289e-15 -11.982 13.5912) (1.66289e-15 -10.5153 11.31) (1.9031e-15 -10.8952 12.2389) (1.92661e-15 -10.8476 12.4141) (1.93274e-15 -10.8974 12.5197) (1.96087e-15 -10.9672 12.6594) (1.97535e-15 -11.0014 12.8275) (1.95597e-15 -11.0647 13.1956) (1.95353e-15 -11.2378 13.6608) (2.18176e-15 -11.8856 14.8291) (2.14827e-15 -11.4162 14.0034) (2.235e-15 -11.5555 14.2143) (2.27561e-15 -11.4883 14.347) (2.30897e-15 -11.6353 14.7646) (2.32797e-15 -11.5515 14.7838) (2.37279e-15 -11.5843 14.9311) (2.41693e-15 -11.5971 15.0538) (2.47276e-15 -11.6697 15.197) (3.22435e-15 -12.098 16.0849) (2.97447e-15 -11.6177 15.6088) (3.05396e-15 -11.7408 15.7749) (3.08407e-15 -11.7313 15.8722) (3.13599e-15 -11.746 16.0096) (3.16042e-15 -11.7557 16.2214) (3.17821e-15 -11.7881 16.4595) (3.24696e-15 -11.7451 16.5395) (3.30917e-15 -11.7837 16.6725) (3.35718e-15 -11.8656 16.7799) (3.87343e-15 -11.5971 16.9065) (3.47736e-15 -11.4823 16.8796) (3.55128e-15 -11.552 16.9951) (3.60498e-15 -11.5436 17.0867) (3.6854e-15 -11.556 17.1941) (3.77361e-15 -11.515 17.3273) (3.92633e-15 -11.5358 17.6018) (4.02584e-15 -11.5468 17.7132) (4.11666e-15 -11.6367 17.7335) (4.59348e-15 -10.5421 16.7817) (4.2034e-15 -10.8236 17.2151) (4.34756e-15 -10.8243 17.3707) (4.44841e-15 -10.8268 17.551) (4.55207e-15 -10.7539 17.5233) (4.65781e-15 -10.7133 17.5558) (4.77831e-15 -10.6456 17.5736) (4.9285e-15 -10.6182 17.6232) (5.16948e-15 -10.754 17.8494) (5.50685e-15 -8.53211 15.3278) (5.48558e-15 -9.47229 16.6587) (5.6256e-15 -9.36007 16.4679) (5.77052e-15 -9.29662 16.4243) (6.15213e-15 -9.252 16.505) (6.25368e-15 -9.12301 16.3393) (6.2728e-15 -9.00273 16.0654) (6.31663e-15 -8.9736 15.7645) (6.34101e-15 -8.93034 15.3595) (6.06776e-15 -5.84107 11.5143) (6.71375e-15 -7.35194 13.9606) (6.52917e-15 -7.02879 13.2595) (6.42572e-15 -6.96041 12.8342) (6.29345e-15 -6.80539 12.2464) (6.22174e-15 -6.71547 11.6041) (6.43426e-15 -6.42688 10.7901) (5.90514e-15 -6.35237 10.1581) (5.55519e-15 -6.1864 9.37105) (5.09236e-15 -5.95153 8.48276) (2.2876e-15 -2.81926 2.63941) (4.38358e-15 -4.40812 6.30481) (3.79498e-15 -3.89103 4.97726) (3.45684e-15 -3.86867 4.54394) (2.96475e-15 -3.58738 3.80473) (2.39577e-15 -3.4799 2.9689) (1.36852e-15 -3.21538 1.45564) (3.87845e-16 -2.81674 0.0729821) (2.38375e-16 -2.88445 0.0930462) (-1.44779e-15 -3.33331 -1.72233) (2.52067e-16 -2.13519 0.199156) (-8.99377e-17 -2.24949 -0.134052) (-1.90069e-15 -1.70197 -1.3648) (6.04038e-16 -2.36018 -1.19206) (-6.39213e-16 -1.65955 -0.930564) (-1.13862e-15 -1.36551 -0.598935) (-2.13091e-15 -1.67675 -0.966183) (-1.28388e-15 -0.946923 -0.517618) (-1.09901e-15 -1.36304 -0.995404) (4.24116e-15 -0.989938 -0.660198) (-5.59811e-16 -0.561051 -0.446029) (-5.97178e-16 -0.894068 -0.901545) (-7.25077e-16 -0.646394 -0.591734) (-8.90511e-16 -0.327033 -0.380425) (-1.51167e-15 -0.680294 -0.736484) (-2.38161e-15 -0.195774 -0.276599) (-3.38135e-15 -0.439019 -0.923187) (-2.42515e-15 -0.158384 -1.07256) (-6.53011e-16 0.266802 -0.633875) (-1.39251e-15 0.0535794 -0.951311) (-2.0068e-15 0.316691 -0.662828) (-1.79963e-15 0.32934 -0.851585) (-9.76226e-16 0.581451 -0.850817) (-1.07006e-15 0.595978 -0.623488) (-9.35697e-16 0.636455 -0.72514) (-1.10371e-15 0.862977 -0.688223) (-8.9903e-16 0.743583 -0.576368) (-1.41692e-15 0.999562 -0.614963) (-1.01102e-15 0.857609 -0.544779) (-1.2387e-15 0.99904 -0.55059) (-1.76537e-15 1.21067 -0.50678) (-1.24601e-15 0.878117 -0.463854) (-1.7077e-15 1.34384 -0.457778) (-1.27146e-15 1.02865 -0.4212) (-1.45151e-15 1.235 -0.413077) (-1.94145e-15 1.45803 -0.377911) (-1.38184e-15 1.03549 -0.345432) (-2.4403e-15 1.38126 -0.333055) (-4.75836e-15 1.63559 -0.309141) (-8.45315e-16 1.09238 -0.268399) (-1.67223e-15 1.69984 -0.274748) (-1.17894e-15 1.28902 -0.243613) (-1.64787e-15 1.50433 -0.248158) (-1.65077e-15 1.815 -0.230947) (-8.98049e-16 1.1988 -0.192741) (-1.66207e-15 1.93364 -0.206854) (-1.28554e-15 1.42338 -0.171459) (-1.56648e-15 1.67745 -0.1911) (-2.21196e-15 1.97482 -0.190632) (-1.54823e-15 1.35331 -0.1347) (-1.98741e-15 1.83105 -0.153009) (-2.33363e-15 2.17776 -0.168386) (-1.53715e-15 1.41285 -0.0945586) (-4.21494e-15 2.21418 -0.148234) (-9.06594e-16 1.67161 -0.0978041) (-2.36669e-15 1.92331 -0.138276) (-5.98407e-16 2.31382 -0.150369) (-1.72697e-15 1.52091 -0.0856017) (-2.51733e-15 2.42109 -0.134049) (-1.97128e-15 1.80275 -0.0879017) (-2.21713e-15 2.08672 -0.132279) (-2.65694e-15 2.4497 -0.144355) (-1.82247e-15 1.69544 -0.0845372) (-2.39694e-15 2.2603 -0.115232) (-4.60506e-15 2.67274 -0.139357) (-1.21485e-15 1.73939 -0.0688893) (-3.16618e-16 2.692 -0.13016) (-1.95384e-15 2.03308 -0.0864072) (-1.92836e-15 2.32948 -0.133616) (-2.5928e-15 2.78623 -0.149802) (-1.81358e-15 1.84545 -0.0931928) (-2.40122e-15 2.9295 -0.149125) (-1.73419e-15 2.16796 -0.105758) (-2.37489e-15 2.5198 -0.162161) (-2.3205e-15 2.9254 -0.193308) (-1.52176e-15 2.04956 -0.122679) (-1.72914e-15 2.70729 -0.1718) (-2.05793e-15 3.21139 -0.228551) (-1.33576e-15 2.11428 -0.134174) (-1.64776e-15 3.29361 -0.2465) (-1.15743e-15 2.44026 -0.17381) (-1.48779e-15 3.08885 -0.282516) (-2.66195e-15 -0.640979 0.422037) (-2.56319e-15 -0.512915 0.280831) (-2.59686e-15 -0.40803 0.209504) (-2.51586e-15 -0.446529 0.593975) (-2.45745e-15 -0.758125 1.4181) (-2.33397e-15 -1.12427 1.93035) (-2.18783e-15 -1.25171 1.63608) (-1.89631e-15 -1.06693 0.904861) (-1.51113e-15 -0.672463 0.447782) (-1.28937e-15 -0.399316 0.239663) (-1.10205e-15 -0.30436 0.0868047) (-1.00638e-15 -0.284256 -0.0916826) (-8.00864e-16 0.00712371 -0.594858) (-6.25699e-16 0.484884 -0.871725) (-2.20091e-15 -0.705078 0.454513) (-2.81904e-15 -0.946499 0.368273) (-2.99184e-15 -1.16444 -0.146337) (-3.06952e-15 -1.65028 -0.289413) (-3.10882e-15 -2.03152 -0.562455) (-3.11588e-15 -2.2212 -0.804839) (-3.10462e-15 -2.19919 -1.14175) (-3.08797e-15 -2.06031 -1.36108) (-3.05814e-15 -1.85529 -1.43595) (-2.99604e-15 -1.65116 -1.38717) (-2.84838e-15 -1.51258 -1.24571) (-2.73046e-15 -1.45904 -1.00837) (-2.66424e-15 -1.49251 -0.812594) (-2.59224e-15 -1.62104 -0.773192) (-2.36376e-15 -1.61396 -0.807024) (-2.11975e-15 -1.51782 -0.851758) (-1.96922e-15 -1.05481 -0.96845) (-1.90249e-15 -0.365219 -0.998082) (-1.83362e-15 -0.559742 -0.60572) (-1.68872e-15 -1.12477 -0.465569) (-1.46456e-15 -1.42877 -0.530153) (-1.2041e-15 -1.71384 -0.394185) (-8.25292e-16 -2.04179 -0.416534) (-5.35798e-16 -1.91408 -0.822391) (-3.41951e-16 -1.88409 -1.35461) (-2.15546e-16 -1.81477 -1.95718) (-1.34283e-16 -1.5833 -2.4843) (-1.11459e-16 -1.35029 -2.56587) (-1.33373e-16 -1.16442 -2.28239) (-1.93641e-16 -0.94413 -1.94521) (-2.76013e-16 -0.419908 -1.69938) (-2.97428e-16 0.496126 -1.79509) (-2.53532e-16 0.853828 -1.57273) (-2.08159e-16 0.655682 -1.15078) (-1.82163e-16 0.251999 -1.14437) (-1.67408e-16 -0.0651757 -1.6413) (-1.87672e-16 -0.321547 -1.38908) (-1.84283e-16 -0.534236 -1.97713) (-3.24558e-16 0.0869937 -2.75264) (-5.39059e-16 1.13509 -2.68229) (-7.16474e-16 1.51661 -2.32481) (-8.17987e-16 1.38624 -1.97291) (-8.58656e-16 1.04564 -1.81123) (-8.60186e-16 0.734479 -1.92402) (-8.3724e-16 0.536767 -2.16762) (-7.98868e-16 0.523383 -2.44056) (-7.54741e-16 0.700755 -2.61678) (-7.12159e-16 0.994482 -2.58691) (-6.71645e-16 1.20936 -2.40823) (-6.29302e-16 1.26547 -2.16838) (-5.89036e-16 1.07657 -1.93459) (-5.5273e-16 0.871825 -1.7786) (-5.19942e-16 0.690364 -1.6814) (-4.88085e-16 0.56211 -1.65358) (-4.56001e-16 0.525611 -1.6426) (-4.21423e-16 0.519372 -1.5951) (-3.81974e-16 0.539293 -1.49296) (-3.36757e-16 0.539682 -1.3296) (-2.91032e-16 0.498124 -1.10901) (-2.49276e-16 0.422689 -0.812721) (-2.18974e-16 0.357716 -0.578052) (-2.0366e-16 -0.0232746 -0.335491) (-1.8652e-16 0.115964 -0.117843) (-2.0497e-16 0.942554 -0.28457) (1.33248e-16 1.53908 -0.5324) (-2.2325e-15 -0.642083 0.381764) (-2.36207e-15 -0.499321 0.23568) (-2.43974e-15 -0.436886 0.254814) (-2.37886e-15 -0.552762 0.765458) (-2.35581e-15 -0.866157 1.50261) (-2.24831e-15 -1.17169 1.87441) (-2.06716e-15 -1.20432 1.5033) (-1.76525e-15 -1.02131 0.767037) (-1.4035e-15 -0.649305 0.306765) (-1.156e-15 -0.362298 0.0933693) (-1.05371e-15 -0.37549 0.105876) (-9.8622e-16 -0.108104 -0.236085) (-8.2207e-16 0.175927 -0.610626) (-7.6743e-16 0.324675 -0.695301) (-2.14768e-15 -0.744687 0.354062) (-2.7852e-15 -1.01781 0.293048) (-2.96278e-15 -1.14708 -0.138091) (-3.05229e-15 -1.65394 -0.256352) (-3.10228e-15 -2.068 -0.549595) (-3.11127e-15 -2.19155 -0.788723) (-3.10014e-15 -2.17827 -1.09281) (-3.08185e-15 -2.03456 -1.31126) (-3.0504e-15 -1.82024 -1.39453) (-2.99277e-15 -1.60463 -1.33485) (-2.8474e-15 -1.49282 -1.21189) (-2.70998e-15 -1.44676 -1.00095) (-2.62881e-15 -1.46313 -0.792839) (-2.56764e-15 -1.61361 -0.752121) (-2.36062e-15 -1.65258 -0.819457) (-2.11089e-15 -1.56727 -0.878947) (-1.93203e-15 -1.26915 -0.920712) (-1.83071e-15 -0.721885 -0.868514) (-1.75677e-15 -0.791744 -0.562757) (-1.6327e-15 -1.3679 -0.46656) (-1.41808e-15 -1.67637 -0.567216) (-1.16412e-15 -1.9253 -0.485087) (-8.08835e-16 -2.24029 -0.55142) (-5.41704e-16 -2.06398 -0.915877) (-3.60877e-16 -1.86712 -1.39413) (-2.39144e-16 -1.70381 -1.95422) (-1.59984e-16 -1.43438 -2.44822) (-1.29087e-16 -1.1695 -2.5943) (-1.37054e-16 -0.976308 -2.45159) (-1.82313e-16 -0.76225 -2.21808) (-2.47228e-16 -0.22291 -2.10665) (-2.5964e-16 0.371788 -2.14074) (-2.31165e-16 0.593689 -1.80343) (-1.96608e-16 0.506365 -1.35992) (-1.80312e-16 0.265063 -1.35196) (-1.59629e-16 0.0594207 -1.69314) (-1.51574e-16 -0.353233 -1.72336) (-1.52719e-16 -0.29683 -2.20618) (-3.2645e-16 0.265873 -2.81358) (-5.46485e-16 1.01115 -2.77547) (-7.23302e-16 1.32696 -2.45183) (-8.28577e-16 1.27895 -2.12426) (-8.73388e-16 1.03045 -1.95346) (-8.77671e-16 0.806373 -2.02722) (-8.55756e-16 0.685408 -2.22794) (-8.16379e-16 0.708611 -2.44782) (-7.69607e-16 0.851697 -2.57962) (-7.23492e-16 1.03116 -2.54951) (-6.78816e-16 1.14322 -2.39982) (-6.34301e-16 1.141 -2.18888) (-5.92576e-16 0.990351 -1.9744) (-5.55434e-16 0.835536 -1.82803) (-5.21861e-16 0.694438 -1.73759) (-4.89175e-16 0.58786 -1.69961) (-4.55392e-16 0.545548 -1.66805) (-4.19506e-16 0.528172 -1.60076) (-3.79966e-16 0.52325 -1.47902) (-3.36236e-16 0.500074 -1.29668) (-2.91943e-16 0.445661 -1.05122) (-2.52155e-16 0.371708 -0.749337) (-2.22818e-16 0.325865 -0.591292) (-2.07264e-16 -0.0823763 -0.194663) (-1.93915e-16 0.153062 -0.15712) (-2.02764e-16 0.952093 -0.319074) (8.67476e-17 1.56074 -0.45992) (-2.01683e-15 -0.538059 0.363582) (-2.26703e-15 -0.398624 0.215088) (-2.35522e-15 -0.406551 0.368693) (-2.32001e-15 -0.631901 0.919477) (-2.27385e-15 -0.943272 1.52185) (-2.14409e-15 -1.14625 1.74593) (-1.93969e-15 -1.06183 1.31325) (-1.66346e-15 -0.854879 0.63177) (-1.32686e-15 -0.545257 0.188288) (-1.09105e-15 -0.284862 0.0324101) (-1.06365e-15 -0.288405 0.093896) (-9.76729e-16 -0.0130308 -0.393536) (-8.18675e-16 0.219851 -0.660179) (-7.76878e-16 0.243358 -0.647185) (-2.11691e-15 -0.769343 0.258427) (-2.76727e-15 -0.964071 0.205571) (-2.94198e-15 -1.00286 -0.152575) (-3.03657e-15 -1.4768 -0.265947) (-3.09441e-15 -1.98493 -0.536976) (-3.10432e-15 -2.10386 -0.765775) (-3.09219e-15 -2.08241 -1.03851) (-3.07249e-15 -1.98509 -1.25143) (-3.03984e-15 -1.81567 -1.35107) (-2.98602e-15 -1.64847 -1.28834) (-2.84889e-15 -1.56062 -1.18438) (-2.6953e-15 -1.54065 -1.00873) (-2.58913e-15 -1.47539 -0.789004) (-2.52639e-15 -1.55519 -0.73294) (-2.34506e-15 -1.58216 -0.827258) (-2.09954e-15 -1.48646 -0.921887) (-1.89829e-15 -1.17295 -0.907222) (-1.77192e-15 -0.78808 -0.760159) (-1.69681e-15 -0.903131 -0.527416) (-1.58879e-15 -1.38671 -0.489488) (-1.38995e-15 -1.69527 -0.5858) (-1.14145e-15 -1.93299 -0.549021) (-8.05874e-16 -2.09572 -0.645284) (-5.53814e-16 -1.87702 -0.951195) (-3.79511e-16 -1.6681 -1.36046) (-2.58805e-16 -1.50124 -1.87097) (-1.78681e-16 -1.31874 -2.33758) (-1.41065e-16 -1.13284 -2.552) (-1.37422e-16 -0.960181 -2.54244) (-1.67306e-16 -0.733194 -2.43746) (-2.134e-16 -0.22611 -2.41104) (-2.27036e-16 0.230495 -2.35141) (-2.07715e-16 0.52696 -1.94625) (-1.81626e-16 0.508459 -1.55645) (-1.74459e-16 0.32743 -1.56672) (-1.58801e-16 0.153625 -1.80896) (-1.37e-16 -0.148602 -1.95445) (-1.66345e-16 -0.10384 -2.40804) (-3.472e-16 0.341965 -2.86197) (-5.61202e-16 0.98992 -2.82727) (-7.34951e-16 1.28963 -2.52655) (-8.42981e-16 1.25374 -2.23361) (-8.91227e-16 1.03511 -2.07607) (-8.96782e-16 0.836512 -2.12307) (-8.75189e-16 0.719839 -2.29299) (-8.35712e-16 0.723848 -2.47957) (-7.87555e-16 0.84385 -2.58468) (-7.38569e-16 1.00577 -2.55719) (-6.90297e-16 1.11987 -2.42804) (-6.42392e-16 1.13735 -2.23406) (-5.9819e-16 1.00176 -2.02826) (-5.59245e-16 0.842686 -1.88313) (-5.23957e-16 0.700339 -1.79195) (-4.89468e-16 0.590957 -1.74144) (-4.54185e-16 0.536271 -1.69074) (-4.17304e-16 0.507142 -1.60537) (-3.77645e-16 0.490685 -1.46475) (-3.35047e-16 0.458288 -1.26141) (-2.92934e-16 0.394455 -0.99612) (-2.55393e-16 0.325018 -0.696341) (-2.27855e-16 0.292762 -0.631019) (-2.13476e-16 -0.119291 -0.107823) (-2.01325e-16 0.180809 -0.199019) (-2.0897e-16 0.961964 -0.343082) (8.83447e-17 1.55751 -0.419987) (-1.85265e-15 -0.507398 0.355185) (-2.16335e-15 -0.392839 0.265171) (-2.24041e-15 -0.446489 0.534498) (-2.24163e-15 -0.70811 1.06635) (-2.19529e-15 -1.00108 1.53473) (-2.0443e-15 -1.10696 1.61959) (-1.82294e-15 -0.937119 1.13376) (-1.57749e-15 -0.695684 0.515635) (-1.25709e-15 -0.471449 0.111656) (-1.06978e-15 -0.230775 -0.00454605) (-1.08643e-15 -0.211742 -0.000455709) (-9.70017e-16 0.0626186 -0.526865) (-8.22315e-16 0.227773 -0.688995) (-7.7586e-16 0.165543 -0.631491) (-2.08962e-15 -0.770252 0.188285) (-2.74964e-15 -0.902032 0.133774) (-2.93149e-15 -0.971727 -0.147751) (-3.02721e-15 -1.35854 -0.264675) (-3.08797e-15 -1.88483 -0.5309) (-3.09888e-15 -2.06292 -0.743615) (-3.0854e-15 -2.01808 -0.985147) (-3.06385e-15 -1.96734 -1.1965) (-3.03007e-15 -1.84893 -1.31345) (-2.97922e-15 -1.71254 -1.25128) (-2.85226e-15 -1.6419 -1.16084) (-2.68994e-15 -1.64351 -1.02025) (-2.55995e-15 -1.56431 -0.797109) (-2.48532e-15 -1.58316 -0.7086) (-2.32393e-15 -1.56889 -0.815393) (-2.08868e-15 -1.47745 -0.94906) (-1.87293e-15 -1.06834 -0.911083) (-1.72176e-15 -0.692167 -0.699867) (-1.63613e-15 -0.921447 -0.489439) (-1.54053e-15 -1.35634 -0.498817) (-1.3593e-15 -1.65548 -0.609176) (-1.12043e-15 -1.93714 -0.601617) (-8.04152e-16 -1.96541 -0.717021) (-5.65414e-16 -1.68953 -0.992025) (-3.97028e-16 -1.51651 -1.34146) (-2.77435e-16 -1.37907 -1.8022) (-1.95948e-16 -1.2845 -2.24773) (-1.52864e-16 -1.18993 -2.51063) (-1.40255e-16 -1.05773 -2.59551) (-1.56863e-16 -0.81917 -2.57627) (-1.88759e-16 -0.346179 -2.58372) (-2.02425e-16 0.104785 -2.44944) (-1.88568e-16 0.430656 -2.0717) (-1.69946e-16 0.49749 -1.77034) (-1.70987e-16 0.368619 -1.77954) (-1.66838e-16 0.195385 -1.95205) (-1.50191e-16 -0.0579112 -2.134) (-2.00897e-16 -0.0257911 -2.54583) (-3.75141e-16 0.375782 -2.89432) (-5.78865e-16 0.947842 -2.86546) (-7.49428e-16 1.23269 -2.5968) (-8.59828e-16 1.22398 -2.31817) (-9.11179e-16 1.04091 -2.1824) (-9.17937e-16 0.869973 -2.21637) (-8.96244e-16 0.768895 -2.35096) (-8.56628e-16 0.763262 -2.50584) (-8.07285e-16 0.862109 -2.59419) (-7.55365e-16 1.00476 -2.57043) (-7.0323e-16 1.10418 -2.45663) (-6.52047e-16 1.10754 -2.27628) (-6.05675e-16 0.977426 -2.07831) (-5.65174e-16 0.824808 -1.93497) (-5.28209e-16 0.691839 -1.84248) (-4.91852e-16 0.587468 -1.78037) (-4.54887e-16 0.526124 -1.71218) (-4.16945e-16 0.48773 -1.60857) (-3.77292e-16 0.45736 -1.44698) (-3.36039e-16 0.411212 -1.22275) (-2.96077e-16 0.3394 -0.942041) (-2.60393e-16 0.286014 -0.654176) (-2.31377e-16 0.239236 -0.569464) (-2.21336e-16 -0.134919 -0.0600789) (-2.0984e-16 0.218875 -0.248021) (-2.14125e-16 0.964572 -0.366508) (8.24345e-17 1.54857 -0.425815) (-1.7173e-15 -0.506198 0.385069) (-2.0751e-15 -0.441416 0.388712) (-2.13959e-15 -0.541074 0.711962) (-2.15526e-15 -0.793047 1.18147) (-2.11338e-15 -1.03404 1.52019) (-1.95109e-15 -1.05436 1.48851) (-1.71672e-15 -0.83187 0.960587) (-1.50427e-15 -0.575917 0.399887) (-1.21054e-15 -0.446288 0.0638207) (-1.08295e-15 -0.24781 -0.0151238) (-1.12432e-15 -0.199991 -0.139) (-9.65765e-16 0.101721 -0.625626) (-8.27756e-16 0.224573 -0.69216) (-7.63208e-16 0.127212 -0.608691) (-2.05105e-15 -0.815733 0.128868) (-2.72531e-15 -0.890315 0.0722221) (-2.91517e-15 -1.0081 -0.144742) (-3.01541e-15 -1.38581 -0.254999) (-3.08032e-15 -1.83201 -0.521026) (-3.0934e-15 -2.03984 -0.723278) (-3.07954e-15 -1.99121 -0.938324) (-3.0563e-15 -1.9731 -1.14902) (-3.0211e-15 -1.88964 -1.27623) (-2.97175e-15 -1.74246 -1.2145) (-2.85421e-15 -1.68608 -1.13631) (-2.68887e-15 -1.6902 -1.02968) (-2.54025e-15 -1.64057 -0.819687) (-2.44975e-15 -1.64757 -0.695705) (-2.30045e-15 -1.63534 -0.795203) (-2.07641e-15 -1.56845 -0.95467) (-1.85325e-15 -1.13076 -0.906704) (-1.68076e-15 -0.711798 -0.664523) (-1.57911e-15 -0.917204 -0.463631) (-1.49121e-15 -1.34675 -0.502405) (-1.32787e-15 -1.65294 -0.633304) (-1.10124e-15 -1.9114 -0.643671) (-8.03484e-16 -1.91313 -0.773022) (-5.76208e-16 -1.63081 -1.03454) (-4.13693e-16 -1.45495 -1.33793) (-2.95716e-16 -1.33776 -1.74928) (-2.1292e-16 -1.27275 -2.16975) (-1.65305e-16 -1.21759 -2.46193) (-1.45913e-16 -1.11394 -2.61155) (-1.51864e-16 -0.873106 -2.658) (-1.73228e-16 -0.424363 -2.67749) (-1.84619e-16 0.0684779 -2.53076) (-1.73835e-16 0.414898 -2.21604) (-1.62686e-16 0.505066 -1.97791) (-1.7271e-16 0.396265 -1.96298) (-1.79646e-16 0.233869 -2.08622) (-1.71352e-16 0.0252243 -2.25402) (-2.37733e-16 0.0442614 -2.61836) (-4.03519e-16 0.409272 -2.91391) (-5.97295e-16 0.9225 -2.88271) (-7.65148e-16 1.1904 -2.64656) (-8.78243e-16 1.19915 -2.38235) (-9.32887e-16 1.04586 -2.25738) (-9.41381e-16 0.891866 -2.29415) (-9.19831e-16 0.796627 -2.4027) (-8.797e-16 0.7828 -2.52828) (-8.28784e-16 0.865611 -2.60739) (-7.73841e-16 0.990516 -2.59037) (-7.18206e-16 1.07644 -2.48715) (-6.64167e-16 1.07521 -2.31663) (-6.15681e-16 0.955998 -2.12665) (-5.73257e-16 0.813438 -1.98736) (-5.34156e-16 0.688262 -1.89402) (-4.95643e-16 0.58528 -1.82045) (-4.56999e-16 0.51542 -1.73402) (-4.18185e-16 0.465469 -1.61042) (-3.7883e-16 0.420868 -1.42689) (-3.39185e-16 0.3628 -1.18438) (-3.01448e-16 0.287516 -0.895722) (-2.67479e-16 0.251629 -0.629382) (-2.3475e-16 0.158223 -0.434664) (-2.3081e-16 -0.128311 -0.0649427) (-2.19344e-16 0.261611 -0.300955) (-2.20401e-16 0.963628 -0.388187) (7.34758e-17 1.5316 -0.365134) (-1.61927e-15 -0.502151 0.465996) (-1.99884e-15 -0.483135 0.558184) (-2.05262e-15 -0.62529 0.881371) (-2.07582e-15 -0.861429 1.2666) (-2.03441e-15 -1.04567 1.4882) (-1.86388e-15 -0.992874 1.35602) (-1.62268e-15 -0.733749 0.798228) (-1.44433e-15 -0.478883 0.288535) (-1.18748e-15 -0.425556 0.0349122) (-1.12668e-15 -0.239278 -0.0489681) (-1.13436e-15 -0.132759 -0.325888) (-9.54449e-16 0.142259 -0.702688) (-8.31001e-16 0.211319 -0.677325) (-7.60789e-16 0.0499684 -0.613056) (-2.01006e-15 -0.863424 0.0822262) (-2.69653e-15 -0.900022 0.0206652) (-2.89388e-15 -1.02081 -0.153338) (-3.00006e-15 -1.42428 -0.241999) (-3.07015e-15 -1.80037 -0.501209) (-3.08698e-15 -2.00679 -0.699139) (-3.07382e-15 -1.95725 -0.894673) (-3.04967e-15 -1.95393 -1.10551) (-3.0133e-15 -1.87625 -1.23631) (-2.96421e-15 -1.71072 -1.17809) (-2.85413e-15 -1.66584 -1.11257) (-2.6889e-15 -1.66209 -1.03516) (-2.5265e-15 -1.62702 -0.847684) (-2.41963e-15 -1.61706 -0.69571) (-2.27648e-15 -1.6368 -0.777231) (-2.06277e-15 -1.5937 -0.949262) (-1.837e-15 -1.21209 -0.90057) (-1.64717e-15 -0.816357 -0.639408) (-1.52662e-15 -0.943746 -0.440437) (-1.44127e-15 -1.33785 -0.503174) (-1.29452e-15 -1.65963 -0.650595) (-1.08165e-15 -1.86193 -0.677333) (-8.02324e-16 -1.89305 -0.824649) (-5.853e-16 -1.64133 -1.07452) (-4.28647e-16 -1.43457 -1.33915) (-3.12995e-16 -1.30337 -1.7058) (-2.29403e-16 -1.2354 -2.09809) (-1.78192e-16 -1.18318 -2.4066) (-1.5354e-16 -1.0812 -2.60249) (-1.51339e-16 -0.835904 -2.69977) (-1.64569e-16 -0.401952 -2.72988) (-1.72831e-16 0.072533 -2.6196) (-1.63668e-16 0.407144 -2.36932) (-1.59703e-16 0.494029 -2.14968) (-1.78171e-16 0.405053 -2.0962) (-1.95521e-16 0.25006 -2.17701) (-2.00674e-16 0.0622689 -2.32849) (-2.75332e-16 0.0974948 -2.65316) (-4.31666e-16 0.43723 -2.92215) (-6.16685e-16 0.896499 -2.88696) (-7.82985e-16 1.14939 -2.67217) (-8.98194e-16 1.17285 -2.44912) (-9.55286e-16 1.04905 -2.32687) (-9.65486e-16 0.913772 -2.35462) (-9.44526e-16 0.825522 -2.45209) (-9.03871e-16 0.808445 -2.56241) (-8.51347e-16 0.877186 -2.63608) (-7.93694e-16 0.983962 -2.62231) (-7.35034e-16 1.05644 -2.52379) (-6.78432e-16 1.04894 -2.35938) (-6.27751e-16 0.937383 -2.17709) (-5.83065e-16 0.803028 -2.04177) (-5.41498e-16 0.682823 -1.94577) (-5.00746e-16 0.57932 -1.8594) (-4.60588e-16 0.501033 -1.75424) (-4.21257e-16 0.439249 -1.61005) (-3.82591e-16 0.381523 -1.4056) (-3.44812e-16 0.313196 -1.15064) (-3.09248e-16 0.238708 -0.864441) (-2.76554e-16 0.216196 -0.621421) (-2.41017e-16 0.117344 -0.356247) (-2.42607e-16 -0.0994701 -0.102352) (-2.30015e-16 0.30443 -0.355696) (-2.27096e-16 0.958959 -0.409497) (6.8146e-17 1.51069 -0.411706) (-1.54759e-15 -0.504428 0.58848) (-1.92912e-15 -0.520985 0.740642) (-1.97726e-15 -0.694128 1.03325) (-2.00409e-15 -0.910322 1.32253) (-1.96064e-15 -1.04132 1.44055) (-1.78317e-15 -0.926169 1.22303) (-1.54011e-15 -0.63644 0.646128) (-1.39387e-15 -0.401645 0.179016) (-1.18395e-15 -0.383839 0.0112141) (-1.17416e-15 -0.217258 -0.0978593) (-1.12652e-15 -0.0894029 -0.45104) (-9.43076e-16 0.165167 -0.7462) (-8.33057e-16 0.195409 -0.629461) (-7.50737e-16 -0.0161423 -0.619969) (-1.96839e-15 -0.903406 0.0460305) (-2.66309e-15 -0.911232 -0.0197662) (-2.86789e-15 -0.99814 -0.161435) (-2.98095e-15 -1.40233 -0.228603) (-3.05715e-15 -1.76647 -0.477405) (-3.07922e-15 -1.96597 -0.671973) (-3.06761e-15 -1.92681 -0.851898) (-3.04306e-15 -1.92349 -1.06038) (-3.00615e-15 -1.82829 -1.19079) (-2.95713e-15 -1.6577 -1.14271) (-2.85302e-15 -1.62491 -1.09208) (-2.68944e-15 -1.62391 -1.03763) (-2.51674e-15 -1.57236 -0.874232) (-2.39403e-15 -1.52151 -0.705809) (-2.25268e-15 -1.56621 -0.764771) (-2.04805e-15 -1.53641 -0.942186) (-1.82257e-15 -1.23621 -0.905893) (-1.61933e-15 -0.911454 -0.636221) (-1.47935e-15 -0.988549 -0.421445) (-1.39195e-15 -1.31741 -0.497659) (-1.25975e-15 -1.63916 -0.660879) (-1.06207e-15 -1.81955 -0.70824) (-8.0083e-16 -1.87793 -0.875736) (-5.93092e-16 -1.64867 -1.11163) (-4.42098e-16 -1.41296 -1.33932) (-3.29177e-16 -1.24955 -1.66548) (-2.45329e-16 -1.17172 -2.03013) (-1.91379e-16 -1.11835 -2.34471) (-1.62606e-16 -1.01072 -2.57386) (-1.54413e-16 -0.764703 -2.7143) (-1.61117e-16 -0.350734 -2.76588) (-1.65495e-16 0.0644512 -2.70968) (-1.58219e-16 0.374971 -2.49944) (-1.60987e-16 0.467913 -2.27566) (-1.86623e-16 0.402429 -2.19024) (-2.12142e-16 0.2655 -2.2401) (-2.30209e-16 0.0908832 -2.37157) (-3.08434e-16 0.138683 -2.66996) (-4.56563e-16 0.457059 -2.92075) (-6.36823e-16 0.867894 -2.88847) (-8.03563e-16 1.1107 -2.69064) (-9.20331e-16 1.14847 -2.51105) (-9.78778e-16 1.04971 -2.41095) (-9.90237e-16 0.931209 -2.42445) (-9.70171e-16 0.850541 -2.51099) (-9.2932e-16 0.830711 -2.61169) (-8.7537e-16 0.885831 -2.67394) (-8.15285e-16 0.974241 -2.65485) (-7.53865e-16 1.03289 -2.55696) (-6.94819e-16 1.01905 -2.39843) (-6.41797e-16 0.914599 -2.22579) (-5.94483e-16 0.789248 -2.09619) (-5.50207e-16 0.67413 -1.99695) (-5.07309e-16 0.569656 -1.89724) (-4.66018e-16 0.483524 -1.77343) (-4.26618e-16 0.41006 -1.60929) (-3.89001e-16 0.340565 -1.38743) (-3.532e-16 0.265047 -1.12789) (-3.19672e-16 0.195527 -0.854533) (-2.88243e-16 0.182726 -0.639869) (-2.52022e-16 0.0851984 -0.336117) (-2.56715e-16 -0.0611653 -0.1672) (-2.41796e-16 0.342647 -0.411125) (-2.34646e-16 0.947657 -0.430275) (5.88851e-17 1.48998 -0.373738) (-1.49409e-15 -0.51673 0.732571) (-1.86644e-15 -0.559557 0.905879) (-1.90945e-15 -0.747782 1.15405) (-1.93802e-15 -0.938568 1.35042) (-1.89036e-15 -1.02142 1.3783) (-1.70797e-15 -0.852972 1.09225) (-1.46969e-15 -0.540794 0.507458) (-1.35073e-15 -0.345334 0.074801) (-1.20383e-15 -0.364199 -0.0185615) (-1.22483e-15 -0.213214 -0.154785) (-1.11286e-15 -0.0457206 -0.554035) (-9.3322e-16 0.168654 -0.772366) (-8.32125e-16 0.177944 -0.574834) (-7.51495e-16 -0.0701168 -0.598886) (-1.93439e-15 -0.936939 0.0274996) (-2.62529e-15 -0.920608 -0.0413785) (-2.83756e-15 -0.964411 -0.161387) (-2.95794e-15 -1.35697 -0.215344) (-3.0411e-15 -1.72833 -0.454136) (-3.0697e-15 -1.92313 -0.644224) (-3.06073e-15 -1.89388 -0.809241) (-3.03605e-15 -1.88928 -1.01014) (-2.99896e-15 -1.78131 -1.13934) (-2.95029e-15 -1.63155 -1.10883) (-2.85148e-15 -1.62084 -1.07787) (-2.6907e-15 -1.64164 -1.04005) (-2.51042e-15 -1.57563 -0.895247) (-2.37273e-15 -1.48517 -0.719821) (-2.22991e-15 -1.51712 -0.75504) (-2.03291e-15 -1.48289 -0.93208) (-1.80949e-15 -1.24245 -0.919713) (-1.59638e-15 -0.966462 -0.656061) (-1.43759e-15 -1.01352 -0.412082) (-1.34397e-15 -1.29324 -0.485403) (-1.22358e-15 -1.60566 -0.666193) (-1.04186e-15 -1.79837 -0.737342) (-7.98584e-16 -1.86381 -0.922512) (-5.99856e-16 -1.63376 -1.14416) (-4.54316e-16 -1.37263 -1.33899) (-3.44291e-16 -1.18664 -1.6287) (-2.60672e-16 -1.10134 -1.96847) (-2.04697e-16 -1.04998 -2.2834) (-1.72781e-16 -0.944539 -2.53456) (-1.60194e-16 -0.707505 -2.70539) (-1.61867e-16 -0.32563 -2.77777) (-1.62945e-16 0.0366004 -2.75975) (-1.57511e-16 0.33057 -2.5793) (-1.66003e-16 0.442568 -2.35433) (-1.96967e-16 0.404267 -2.2566) (-2.29371e-16 0.28993 -2.29016) (-2.58872e-16 0.142249 -2.41279) (-3.37979e-16 0.189134 -2.68603) (-4.8038e-16 0.479608 -2.90836) (-6.59565e-16 0.844086 -2.88797) (-8.27525e-16 1.07717 -2.7218) (-9.44952e-16 1.13071 -2.56513) (-1.00392e-15 1.05285 -2.49305) (-1.01601e-15 0.949454 -2.5078) (-9.96416e-16 0.875521 -2.57936) (-9.55463e-16 0.85235 -2.66434) (-9.00507e-16 0.893131 -2.71062) (-8.38333e-16 0.964252 -2.68483) (-7.74319e-16 1.01036 -2.58963) (-7.12843e-16 0.991323 -2.43959) (-6.57286e-16 0.89403 -2.27814) (-6.07055e-16 0.776851 -2.15305) (-5.59987e-16 0.664932 -2.04758) (-5.15215e-16 0.557653 -1.93286) (-4.73242e-16 0.463124 -1.79071) (-4.34256e-16 0.378139 -1.6086) (-3.98013e-16 0.298385 -1.37482) (-3.64228e-16 0.219399 -1.12) (-3.32494e-16 0.158266 -0.869097) (-3.01823e-16 0.150218 -0.668084) (-2.67363e-16 0.0605201 -0.351158) (-2.72911e-16 -0.0174711 -0.24562) (-2.54681e-16 0.37576 -0.46676) (-2.43049e-16 0.934168 -0.450058) (5.05073e-17 1.46025 -0.349205) (-1.45912e-15 -0.537223 0.885948) (-1.81029e-15 -0.600534 1.04788) (-1.84626e-15 -0.786086 1.2375) (-1.87469e-15 -0.950462 1.35051) (-1.82262e-15 -0.987515 1.30007) (-1.63902e-15 -0.769668 0.962072) (-1.41627e-15 -0.452063 0.377771) (-1.32355e-15 -0.305812 -0.0184748) (-1.24882e-15 -0.328608 -0.0982847) (-1.26922e-15 -0.162297 -0.298378) (-1.09302e-15 0.0105332 -0.642026) (-9.22257e-16 0.163337 -0.77928) (-8.3356e-16 0.139494 -0.501364) (-7.67719e-16 -0.116882 -0.5549) (-1.90862e-15 -0.965576 0.0230219) (-2.58453e-15 -0.928374 -0.0486405) (-2.80272e-15 -0.939853 -0.153227) (-2.93007e-15 -1.32678 -0.200199) (-3.02123e-15 -1.69045 -0.430335) (-3.05759e-15 -1.87695 -0.615221) (-3.05256e-15 -1.85398 -0.76831) (-3.02853e-15 -1.85849 -0.959913) (-2.99148e-15 -1.74852 -1.08616) (-2.94324e-15 -1.63526 -1.07734) (-2.8494e-15 -1.6534 -1.07067) (-2.69266e-15 -1.6967 -1.04799) (-2.50733e-15 -1.64318 -0.917222) (-2.35574e-15 -1.53583 -0.735189) (-2.20882e-15 -1.52379 -0.742336) (-2.01762e-15 -1.47365 -0.91428) (-1.79703e-15 -1.2661 -0.928987) (-1.57725e-15 -1.00883 -0.685357) (-1.40164e-15 -1.01844 -0.4172) (-1.29852e-15 -1.27109 -0.473892) (-1.18698e-15 -1.57752 -0.671709) (-1.02098e-15 -1.79026 -0.766246) (-7.95464e-16 -1.84541 -0.962553) (-6.05898e-16 -1.60035 -1.17017) (-4.65748e-16 -1.31734 -1.33849) (-3.58674e-16 -1.12306 -1.596) (-2.75662e-16 -1.03483 -1.91112) (-2.18278e-16 -0.985282 -2.22117) (-1.84041e-16 -0.888782 -2.48612) (-1.68296e-16 -0.672134 -2.67955) (-1.66332e-16 -0.328016 -2.7707) (-1.64697e-16 -0.00689895 -2.77782) (-1.61499e-16 0.281826 -2.61664) (-1.74704e-16 0.41283 -2.40138) (-2.08895e-16 0.398589 -2.30848) (-2.45607e-16 0.302211 -2.33789) (-2.82474e-16 0.182597 -2.45526) (-3.62764e-16 0.232917 -2.69932) (-5.04627e-16 0.50079 -2.88974) (-6.85685e-16 0.827607 -2.88301) (-8.54056e-16 1.04723 -2.75704) (-9.70696e-16 1.11276 -2.61977) (-1.02972e-15 1.05476 -2.55846) (-1.0426e-15 0.96341 -2.57955) (-1.02352e-15 0.893249 -2.63944) (-9.8265e-16 0.867085 -2.70647) (-9.27056e-16 0.895818 -2.74197) (-8.62967e-16 0.95171 -2.71512) (-7.96381e-16 0.986513 -2.62377) (-7.3244e-16 0.962545 -2.48186) (-6.74169e-16 0.871295 -2.33067) (-6.20823e-16 0.760976 -2.20836) (-5.71077e-16 0.651257 -2.09512) (-5.24858e-16 0.541165 -1.96608) (-4.82738e-16 0.43924 -1.80818) (-4.44555e-16 0.344793 -1.61278) (-4.09813e-16 0.258135 -1.37495) (-3.77855e-16 0.179149 -1.13299) (-3.47706e-16 0.12818 -0.909336) (-3.18172e-16 0.122449 -0.722869) (-2.88204e-16 0.0469368 -0.428053) (-2.90814e-16 0.022201 -0.339422) (-2.68499e-16 0.40115 -0.521312) (-2.51838e-16 0.917856 -0.470735) (4.47135e-17 1.42793 -0.393732) (-1.43715e-15 -0.559148 1.03012) (-1.75836e-15 -0.636681 1.15998) (-1.78663e-15 -0.808297 1.28536) (-1.81421e-15 -0.946313 1.32722) (-1.75984e-15 -0.941703 1.21028) (-1.58017e-15 -0.68132 0.832288) (-1.38537e-15 -0.362048 0.260025) (-1.32679e-15 -0.269892 -0.0972118) (-1.30719e-15 -0.293963 -0.200615) (-1.24821e-15 -0.120588 -0.46373) (-1.05372e-15 0.0514602 -0.713544) (-9.08948e-16 0.148874 -0.76505) (-8.3625e-16 0.0920598 -0.432584) (-8.06646e-16 -0.158363 -0.49654) (-1.88686e-15 -0.988647 0.0263897) (-2.54154e-15 -0.933961 -0.0530337) (-2.76344e-15 -0.921487 -0.142772) (-2.89717e-15 -1.30112 -0.18238) (-2.99715e-15 -1.65217 -0.402497) (-3.04243e-15 -1.83113 -0.584032) (-3.04274e-15 -1.81021 -0.729669) (-3.02057e-15 -1.8252 -0.911031) (-2.98386e-15 -1.72567 -1.0332) (-2.93603e-15 -1.64824 -1.04752) (-2.84685e-15 -1.68889 -1.06645) (-2.69524e-15 -1.74476 -1.06142) (-2.50731e-15 -1.71689 -0.946123) (-2.34324e-15 -1.60509 -0.755333) (-2.19018e-15 -1.54599 -0.726627) (-2.00275e-15 -1.47508 -0.88648) (-1.78505e-15 -1.28321 -0.927003) (-1.56095e-15 -1.03625 -0.71512) (-1.37092e-15 -1.01281 -0.43384) (-1.25606e-15 -1.24894 -0.465342) (-1.15031e-15 -1.55325 -0.675338) (-9.99015e-16 -1.77723 -0.791079) (-7.91013e-16 -1.81944 -0.994441) (-6.11085e-16 -1.56038 -1.19018) (-4.76476e-16 -1.26465 -1.33926) (-3.72546e-16 -1.06625 -1.56918) (-2.9056e-16 -0.973514 -1.86026) (-2.32284e-16 -0.926382 -2.16159) (-1.96338e-16 -0.838548 -2.43276) (-1.78355e-16 -0.642035 -2.63925) (-1.73917e-16 -0.328885 -2.7429) (-1.70615e-16 -0.0313615 -2.762) (-1.69429e-16 0.246968 -2.62284) (-1.86384e-16 0.389341 -2.42776) (-2.2235e-16 0.397375 -2.34663) (-2.6189e-16 0.322061 -2.38002) (-3.04482e-16 0.224739 -2.49653) (-3.87446e-16 0.278553 -2.71159) (-5.32806e-16 0.523557 -2.87456) (-7.16085e-16 0.819514 -2.8767) (-8.82938e-16 1.0254 -2.78347) (-9.97068e-16 1.09772 -2.67486) (-1.05536e-15 1.05698 -2.61914) (-1.06909e-15 0.976881 -2.63947) (-1.05083e-15 0.909117 -2.69502) (-1.01032e-15 0.880363 -2.7524) (-9.54323e-16 0.898777 -2.78223) (-8.88511e-16 0.940316 -2.75449) (-8.19514e-16 0.964089 -2.66416) (-7.53074e-16 0.93584 -2.52879) (-6.91889e-16 0.850424 -2.38635) (-6.35399e-16 0.74575 -2.26391) (-5.8328e-16 0.636826 -2.14077) (-5.36071e-16 0.523253 -1.99804) (-4.9415e-16 0.413868 -1.82731) (-4.56966e-16 0.310841 -1.62339) (-4.23689e-16 0.219568 -1.38808) (-3.93358e-16 0.143253 -1.16399) (-3.64518e-16 0.101263 -0.96655) (-3.35875e-16 0.0945549 -0.772617) (-3.10662e-16 0.0285959 -0.490395) (-3.09783e-16 0.0585082 -0.438603) (-2.83077e-16 0.419739 -0.574587) (-2.61272e-16 0.896062 -0.491251) (3.64036e-17 1.39926 -0.377608) (-1.42224e-15 -0.575813 1.15198) (-1.70941e-15 -0.661411 1.23832) (-1.73145e-15 -0.818686 1.3047) (-1.75891e-15 -0.930078 1.2841) (-1.70483e-15 -0.885057 1.11134) (-1.53113e-15 -0.589455 0.704681) (-1.36534e-15 -0.279408 0.149996) (-1.36282e-15 -0.230573 -0.159593) (-1.34215e-15 -0.242009 -0.312041) (-1.19513e-15 -0.0840258 -0.583055) (-1.01866e-15 0.0643227 -0.743307) (-9.03067e-16 0.116353 -0.70625) (-8.45467e-16 0.0357484 -0.329632) (-8.64624e-16 -0.202289 -0.417801) (-1.86476e-15 -1.00609 0.030032) (-2.49683e-15 -0.938511 -0.056637) (-2.72032e-15 -0.90747 -0.134227) (-2.85898e-15 -1.27522 -0.163957) (-2.96811e-15 -1.61514 -0.372194) (-3.02345e-15 -1.79285 -0.550939) (-3.03067e-15 -1.76992 -0.691657) (-3.01159e-15 -1.79202 -0.864033) (-2.97584e-15 -1.704 -0.981454) (-2.92861e-15 -1.65251 -1.01642) (-2.84386e-15 -1.70638 -1.06038) (-2.69836e-15 -1.7721 -1.07742) (-2.51017e-15 -1.7676 -0.98222) (-2.3354e-15 -1.65284 -0.784182) (-2.17465e-15 -1.55571 -0.713242) (-1.98881e-15 -1.46585 -0.851261) (-1.77351e-15 -1.28977 -0.912273) (-1.54679e-15 -1.05866 -0.740103) (-1.34515e-15 -1.01193 -0.463368) (-1.21743e-15 -1.22932 -0.466618) (-1.11457e-15 -1.52657 -0.679915) (-9.7639e-16 -1.75202 -0.812981) (-7.85209e-16 -1.78358 -1.01983) (-6.15241e-16 -1.52239 -1.20546) (-4.86406e-16 -1.22288 -1.34024) (-3.85979e-16 -1.01826 -1.54527) (-3.05577e-16 -0.916554 -1.81288) (-2.46967e-16 -0.870208 -2.10304) (-2.09809e-16 -0.79016 -2.37526) (-1.9026e-16 -0.611622 -2.58995) (-1.84275e-16 -0.323973 -2.70331) (-1.79855e-16 -0.0476023 -2.73072) (-1.80699e-16 0.221476 -2.6172) (-2.00516e-16 0.369812 -2.44765) (-2.36812e-16 0.392418 -2.37818) (-2.76832e-16 0.333742 -2.41379) (-3.23553e-16 0.256154 -2.52616) (-4.12742e-16 0.316824 -2.71697) (-5.64635e-16 0.543336 -2.86042) (-7.49658e-16 0.8137 -2.86946) (-9.1333e-16 1.00774 -2.80086) (-1.02396e-15 1.08395 -2.72234) (-1.08131e-15 1.05629 -2.68284) (-1.09611e-15 0.986711 -2.70339) (-1.07903e-15 0.921841 -2.75421) (-1.03888e-15 0.89015 -2.80498) (-9.82308e-16 0.899331 -2.82932) (-9.14983e-16 0.927309 -2.7971) (-8.43893e-16 0.940494 -2.70538) (-7.74921e-16 0.908531 -2.57562) (-7.10656e-16 0.827635 -2.43963) (-6.51163e-16 0.72671 -2.3149) (-5.97107e-16 0.617475 -2.18245) (-5.49302e-16 0.50099 -2.02993) (-5.07807e-16 0.385944 -1.85196) (-4.7162e-16 0.27722 -1.64647) (-4.39604e-16 0.185263 -1.42104) (-4.10584e-16 0.114988 -1.217) (-3.83019e-16 0.0795273 -1.04298) (-3.55699e-16 0.0688482 -0.845814) (-3.33228e-16 0.0135603 -0.587909) (-3.28902e-16 0.0850301 -0.54316) (-2.98232e-16 0.429428 -0.626555) (-2.71412e-16 0.871005 -0.511256) (1.07718e-17 1.3672 -0.367206) (-1.41591e-15 -0.583981 1.2456) (-1.66437e-15 -0.674435 1.28352) (-1.68187e-15 -0.816338 1.30013) (-1.71028e-15 -0.903776 1.22646) (-1.65758e-15 -0.822769 1.00975) (-1.49025e-15 -0.498494 0.584022) (-1.34393e-15 -0.216377 0.0464964) (-1.40312e-15 -0.19653 -0.189817) (-1.35198e-15 -0.211285 -0.371936) (-1.14689e-15 -0.0672643 -0.657872) (-9.93996e-16 0.0553152 -0.739726) (-8.9825e-16 0.070227 -0.627521) (-8.45182e-16 0.00574438 -0.344623) (-9.21715e-16 -0.246425 -0.344895) (-1.84187e-15 -1.01813 0.0353537) (-2.45014e-15 -0.9412 -0.053374) (-2.6739e-15 -0.89304 -0.1253) (-2.81665e-15 -1.24663 -0.144562) (-2.93434e-15 -1.57657 -0.340248) (-3.0004e-15 -1.75835 -0.516282) (-3.01599e-15 -1.73521 -0.653484) (-3.0011e-15 -1.75871 -0.817078) (-2.96713e-15 -1.67841 -0.930185) (-2.92078e-15 -1.64185 -0.983326) (-2.84038e-15 -1.70008 -1.05005) (-2.70192e-15 -1.77473 -1.09189) (-2.51588e-15 -1.78482 -1.02269) (-2.33265e-15 -1.66615 -0.824417) (-2.1632e-15 -1.53963 -0.709422) (-1.97665e-15 -1.43618 -0.814708) (-1.76282e-15 -1.28063 -0.887838) (-1.53438e-15 -1.07678 -0.758056) (-1.32359e-15 -1.01746 -0.497982) (-1.18278e-15 -1.21248 -0.473676) (-1.08005e-15 -1.49482 -0.682622) (-9.53258e-16 -1.71855 -0.830488) (-7.78112e-16 -1.74414 -1.04037) (-6.18245e-16 -1.49036 -1.21826) (-4.95295e-16 -1.19282 -1.34115) (-3.98741e-16 -0.979136 -1.52338) (-3.20564e-16 -0.866195 -1.76893) (-2.62256e-16 -0.816319 -2.04691) (-2.24376e-16 -0.740453 -2.31588) (-2.03755e-16 -0.575238 -2.53342) (-1.96828e-16 -0.308728 -2.65478) (-1.9243e-16 -0.0516024 -2.68925) (-1.95018e-16 0.20918 -2.59792) (-2.16372e-16 0.359492 -2.45685) (-2.52023e-16 0.393606 -2.4017) (-2.92636e-16 0.353569 -2.4387) (-3.44838e-16 0.293973 -2.54699) (-4.42564e-16 0.354085 -2.71485) (-6.01187e-16 0.563915 -2.84075) (-7.86095e-16 0.812612 -2.85997) (-9.44998e-16 0.996472 -2.81791) (-1.0514e-15 1.07585 -2.76873) (-1.10749e-15 1.05886 -2.74942) (-1.12315e-15 0.997309 -2.77306) (-1.10722e-15 0.934499 -2.81825) (-1.0673e-15 0.898918 -2.86101) (-1.01015e-15 0.89918 -2.87814) (-9.41792e-16 0.914445 -2.84175) (-8.6901e-16 0.917565 -2.7503) (-7.97442e-16 0.882616 -2.62556) (-7.30046e-16 0.80548 -2.49324) (-6.67845e-16 0.707293 -2.36472) (-6.12178e-16 0.597544 -2.22466) (-5.63847e-16 0.478625 -2.06585) (-5.22567e-16 0.358769 -1.88464) (-4.87097e-16 0.244832 -1.68136) (-4.56062e-16 0.152889 -1.46751) (-4.28177e-16 0.0890821 -1.2818) (-4.01707e-16 0.0582049 -1.12526) (-3.75313e-16 0.0412986 -0.913887) (-3.54815e-16 0.00321369 -0.690693) (-3.47937e-16 0.105718 -0.642255) (-3.13706e-16 0.432527 -0.675523) (-2.81956e-16 0.845071 -0.530731) (1.27255e-19 1.3313 -0.388935) (-1.43426e-15 -0.588732 1.3138) (-1.62519e-15 -0.678736 1.30262) (-1.63802e-15 -0.804757 1.27646) (-1.66828e-15 -0.868956 1.15668) (-1.61657e-15 -0.755197 0.905628) (-1.45539e-15 -0.411305 0.468007) (-1.32318e-15 -0.167316 -0.0387525) (-1.38502e-15 -0.172042 -0.228454) (-1.30386e-15 -0.186835 -0.431982) (-1.09348e-15 -0.0439999 -0.691801) (-9.7028e-16 0.038908 -0.674661) (-8.88246e-16 0.0347531 -0.548829) (-8.51191e-16 -0.0319689 -0.374291) (-9.73141e-16 -0.30055 -0.280349) (-1.81917e-15 -1.0276 0.043042) (-2.40168e-15 -0.943192 -0.0446472) (-2.62375e-15 -0.884154 -0.110018) (-2.77056e-15 -1.21882 -0.122797) (-2.89582e-15 -1.53938 -0.307979) (-2.97277e-15 -1.72639 -0.480599) (-2.99803e-15 -1.70481 -0.614802) (-2.98867e-15 -1.7256 -0.769681) (-2.95724e-15 -1.65162 -0.879374) (-2.91197e-15 -1.62352 -0.946816) (-2.83584e-15 -1.68033 -1.03335) (-2.70535e-15 -1.76251 -1.10084) (-2.52407e-15 -1.78642 -1.06261) (-2.33521e-15 -1.66883 -0.875484) (-2.15683e-15 -1.52176 -0.721568) (-1.96736e-15 -1.40366 -0.783489) (-1.75372e-15 -1.26472 -0.858367) (-1.5239e-15 -1.09558 -0.770242) (-1.30591e-15 -1.03118 -0.53952) (-1.15234e-15 -1.19907 -0.491735) (-1.04732e-15 -1.45963 -0.687893) (-9.30121e-16 -1.68102 -0.846809) (-7.70161e-16 -1.70613 -1.05867) (-6.20411e-16 -1.46292 -1.2302) (-5.03308e-16 -1.16953 -1.34172) (-4.10829e-16 -0.945165 -1.50137) (-3.35424e-16 -0.820265 -1.72501) (-2.78064e-16 -0.764257 -1.99004) (-2.39941e-16 -0.690787 -2.25378) (-2.1863e-16 -0.53756 -2.47194) (-2.11221e-16 -0.289676 -2.59995) (-2.06867e-16 -0.0532616 -2.64476) (-2.115e-16 0.198249 -2.57582) (-2.3344e-16 0.349058 -2.46068) (-2.67388e-16 0.387667 -2.4182) (-3.09188e-16 0.359252 -2.45393) (-3.68323e-16 0.316662 -2.55369) (-4.75991e-16 0.379661 -2.70275) (-6.40482e-16 0.579662 -2.81799) (-8.23464e-16 0.81396 -2.85107) (-9.76667e-16 0.989603 -2.83805) (-1.07889e-15 1.07033 -2.81839) (-1.13383e-15 1.06043 -2.81708) (-1.15029e-15 1.00454 -2.84391) (-1.13541e-15 0.943501 -2.88438) (-1.0959e-15 0.903814 -2.91879) (-1.0384e-15 0.896396 -2.92754) (-9.69201e-16 0.901029 -2.88779) (-8.94852e-16 0.894618 -2.79721) (-8.20722e-16 0.856308 -2.6745) (-7.50454e-16 0.781038 -2.54223) (-6.85936e-16 0.683771 -2.41041) (-6.2883e-16 0.572985 -2.2665) (-5.79839e-16 0.452246 -2.10599) (-5.38573e-16 0.329744 -1.92603) (-5.0359e-16 0.213702 -1.72981) (-4.73319e-16 0.123766 -1.53063) (-4.46441e-16 0.0677507 -1.36149) (-4.20903e-16 0.0391139 -1.21058) (-3.95656e-16 0.0170565 -1.00068) (-3.76074e-16 -0.00895778 -0.818152) (-3.66527e-16 0.113891 -0.738069) (-3.29236e-16 0.427459 -0.722669) (-2.9314e-16 0.816159 -0.550749) (-1.32183e-17 1.29199 -0.350486) (-1.39192e-15 -0.591693 1.35247) (-1.59683e-15 -0.676235 1.30128) (-1.59996e-15 -0.787724 1.23705) (-1.63233e-15 -0.828339 1.07989) (-1.58063e-15 -0.687005 0.806628) (-1.42374e-15 -0.324322 0.350164) (-1.33697e-15 -0.126295 -0.130516) (-1.3325e-15 -0.136361 -0.281016) (-1.20952e-15 -0.135261 -0.486066) (-1.03734e-15 -0.0215717 -0.710057) (-9.43086e-16 0.0211327 -0.600058) (-8.63008e-16 0.00695693 -0.505113) (-8.55208e-16 -0.0727429 -0.376389) (-1.02088e-15 -0.348556 -0.218074) (-1.79723e-15 -1.03658 0.0552109) (-2.35244e-15 -0.94338 -0.0320899) (-2.57153e-15 -0.883021 -0.0888403) (-2.72075e-15 -1.19553 -0.0981479) (-2.85285e-15 -1.50562 -0.274676) (-2.94067e-15 -1.6935 -0.443196) (-2.97656e-15 -1.67876 -0.575601) (-2.9742e-15 -1.69445 -0.722408) (-2.94597e-15 -1.62483 -0.828216) (-2.90184e-15 -1.60047 -0.907073) (-2.82972e-15 -1.65168 -1.01038) (-2.70784e-15 -1.74062 -1.10346) (-2.53391e-15 -1.77937 -1.10015) (-2.34294e-15 -1.67221 -0.935707) (-2.15651e-15 -1.51153 -0.75195) (-1.96219e-15 -1.37413 -0.76164) (-1.74707e-15 -1.24316 -0.826801) (-1.51535e-15 -1.10667 -0.774033) (-1.29136e-15 -1.04641 -0.576386) (-1.12572e-15 -1.18797 -0.512178) (-1.01635e-15 -1.42408 -0.692293) (-9.06907e-16 -1.64248 -0.859973) (-7.61372e-16 -1.67018 -1.07451) (-6.21876e-16 -1.43775 -1.24235) (-5.10674e-16 -1.14859 -1.34349) (-4.2243e-16 -0.912509 -1.48104) (-3.50221e-16 -0.775328 -1.68264) (-2.94405e-16 -0.712468 -1.9336) (-2.56539e-16 -0.639089 -2.19012) (-2.34924e-16 -0.495514 -2.40595) (-2.27312e-16 -0.26379 -2.53824) (-2.23931e-16 -0.0448274 -2.59201) (-2.3067e-16 0.197123 -2.54196) (-2.51639e-16 0.346651 -2.45251) (-2.83653e-16 0.38666 -2.42288) (-3.28659e-16 0.368947 -2.45983) (-3.96669e-16 0.34272 -2.5512) (-5.13741e-16 0.407 -2.68632) (-6.81947e-16 0.596786 -2.80038) (-8.61167e-16 0.821444 -2.84996) (-1.00806e-15 0.990585 -2.8651) (-1.10616e-15 1.07107 -2.87317) (-1.15978e-15 1.06526 -2.88684) (-1.1766e-15 1.01309 -2.91612) (-1.16252e-15 0.95299 -2.95287) (-1.12365e-15 0.909075 -2.98064) (-1.0663e-15 0.892976 -2.98159) (-9.96436e-16 0.887881 -2.9372) (-9.20627e-16 0.872523 -2.84544) (-8.44284e-16 0.830073 -2.72298) (-7.71541e-16 0.755791 -2.59079) (-7.04881e-16 0.659441 -2.45781) (-6.46123e-16 0.548561 -2.31272) (-5.96021e-16 0.426672 -2.15213) (-5.54203e-16 0.302569 -1.97447) (-5.19249e-16 0.185233 -1.78518) (-4.89448e-16 0.096723 -1.59764) (-4.6337e-16 0.0459515 -1.44145) (-4.37881e-16 0.0148229 -1.28122) (-4.13517e-16 -0.00657805 -1.08514) (-3.9468e-16 -0.0194794 -0.93586) (-3.84096e-16 0.115113 -0.823663) (-3.44456e-16 0.417169 -0.765911) (-3.04659e-16 0.786657 -0.569788) (-2.19842e-17 1.25266 -0.400513) (-1.19288e-15 -0.587985 1.36661) (-1.56416e-15 -0.665508 1.28329) (-1.56545e-15 -0.76434 1.18452) (-1.59996e-15 -0.780346 0.9947) (-1.54561e-15 -0.611008 0.701069) (-1.3754e-15 -0.244196 0.226034) (-1.32585e-15 -0.129717 -0.157741) (-1.23634e-15 -0.143866 -0.326562) (-1.09637e-15 -0.113134 -0.552773) (-9.84223e-16 -0.0261169 -0.711771) (-9.17617e-16 -0.0138925 -0.613384) (-8.47571e-16 -0.0168824 -0.532536) (-8.59022e-16 -0.112335 -0.350671) (-1.06644e-15 -0.399703 -0.155449) (-1.77608e-15 -1.04101 0.0726125) (-2.30304e-15 -0.942857 -0.0157632) (-2.51896e-15 -0.879739 -0.066566) (-2.66724e-15 -1.17446 -0.0737132) (-2.80549e-15 -1.47469 -0.240178) (-2.90385e-15 -1.65869 -0.404485) (-2.95113e-15 -1.65236 -0.535657) (-2.9573e-15 -1.66369 -0.674985) (-2.93304e-15 -1.59727 -0.775699) (-2.89018e-15 -1.57392 -0.863061) (-2.82171e-15 -1.61976 -0.980776) (-2.70858e-15 -1.71575 -1.09791) (-2.54426e-15 -1.76845 -1.13168) (-2.35506e-15 -1.68041 -1.0014) (-2.1627e-15 -1.51496 -0.80132) (-1.96246e-15 -1.35591 -0.755089) (-1.74404e-15 -1.22413 -0.797809) (-1.50947e-15 -1.11605 -0.77301) (-1.28017e-15 -1.06137 -0.613938) (-1.10328e-15 -1.17983 -0.540732) (-9.87734e-16 -1.39052 -0.700056) (-8.84006e-16 -1.60189 -0.871652) (-7.51799e-16 -1.63475 -1.08775) (-6.22532e-16 -1.41377 -1.25411) (-5.17374e-16 -1.12856 -1.34648) (-4.33581e-16 -0.881846 -1.46254) (-3.64975e-16 -0.733107 -1.64168) (-3.11312e-16 -0.662459 -1.87693) (-2.74244e-16 -0.588495 -2.12437) (-2.52703e-16 -0.452425 -2.33647) (-2.45097e-16 -0.236262 -2.47096) (-2.42696e-16 -0.0386364 -2.53613) (-2.50944e-16 0.192383 -2.50842) (-2.69845e-16 0.340527 -2.4421) (-3.00678e-16 0.380554 -2.42211) (-3.50228e-16 0.366105 -2.45679) (-4.27192e-16 0.354766 -2.53905) (-5.52226e-16 0.427905 -2.66685) (-7.22553e-16 0.612394 -2.78924) (-8.97542e-16 0.831047 -2.85933) (-1.0384e-15 0.995671 -2.89962) (-1.13278e-15 1.07423 -2.93049) (-1.18511e-15 1.06934 -2.95654) (-1.20213e-15 1.01882 -2.98889) (-1.1889e-15 0.959016 -3.02324) (-1.15086e-15 0.911639 -3.04476) (-1.09397e-15 0.887289 -3.0385) (-1.02377e-15 0.872885 -2.98837) (-9.46731e-16 0.849586 -2.89309) (-8.68518e-16 0.803439 -2.76951) (-7.93599e-16 0.728942 -2.63731) (-7.24794e-16 0.632575 -2.50368) (-6.64194e-16 0.520755 -2.35769) (-6.12735e-16 0.397662 -2.19759) (-5.70253e-16 0.272531 -2.0232) (-5.35221e-16 0.15669 -1.84258) (-5.05814e-16 0.0723038 -1.66705) (-4.80034e-16 0.0240986 -1.51186) (-4.55113e-16 -0.00731731 -1.34851) (-4.30878e-16 -0.0247883 -1.17668) (-4.12754e-16 -0.0338795 -1.05968) (-4.00502e-16 0.103509 -0.903948) (-3.59232e-16 0.399253 -0.807247) (-3.1663e-16 0.75194 -0.589757) (-3.34733e-17 1.21415 -0.386166) (-1.19351e-15 -0.578224 1.36297) (-1.51028e-15 -0.647345 1.24953) (-1.5305e-15 -0.73419 1.12042) (-1.56619e-15 -0.729748 0.904215) (-1.50655e-15 -0.53799 0.594923) (-1.32175e-15 -0.173238 0.103175) (-1.28171e-15 -0.0917025 -0.168494) (-1.14742e-15 -0.0908199 -0.349898) (-1.02597e-15 -0.0864594 -0.55099) (-9.42649e-16 -0.0251977 -0.653673) (-8.85031e-16 -0.0407709 -0.623891) (-8.346e-16 -0.0473159 -0.554694) (-8.64865e-16 -0.158919 -0.315116) (-1.10784e-15 -0.452372 -0.0923627) (-1.75501e-15 -1.03963 0.0940563) (-2.25312e-15 -0.941707 0.00356083) (-2.46553e-15 -0.873552 -0.0438282) (-2.61216e-15 -1.15278 -0.0494743) (-2.75496e-15 -1.44306 -0.20425) (-2.86281e-15 -1.62312 -0.364008) (-2.92188e-15 -1.62421 -0.494723) (-2.93776e-15 -1.63353 -0.62787) (-2.91848e-15 -1.57038 -0.722823) (-2.87713e-15 -1.54404 -0.815614) (-2.81171e-15 -1.58686 -0.94497) (-2.70684e-15 -1.68763 -1.08412) (-2.55369e-15 -1.75675 -1.15599) (-2.37019e-15 -1.69567 -1.06868) (-2.17522e-15 -1.53476 -0.86658) (-1.96932e-15 -1.35546 -0.765703) (-1.74595e-15 -1.21591 -0.774431) (-1.50708e-15 -1.12318 -0.765693) (-1.27245e-15 -1.07289 -0.643298) (-1.08509e-15 -1.17399 -0.570731) (-9.61913e-16 -1.36101 -0.709913) (-8.61651e-16 -1.56023 -0.881783) (-7.41383e-16 -1.59695 -1.09771) (-6.22163e-16 -1.38766 -1.26397) (-5.23214e-16 -1.10611 -1.3503) (-4.44065e-16 -0.851195 -1.44788) (-3.79399e-16 -0.692168 -1.60503) (-3.285e-16 -0.611564 -1.82316) (-2.9289e-16 -0.535268 -2.0594) (-2.71967e-16 -0.405535 -2.26525) (-2.64829e-16 -0.20416 -2.3995) (-2.64053e-16 -0.0214608 -2.47362) (-2.7256e-16 0.200635 -2.46373) (-2.88777e-16 0.341406 -2.41756) (-3.19798e-16 0.37988 -2.40889) (-3.74634e-16 0.368916 -2.4465) (-4.59823e-16 0.3687 -2.52438) (-5.91107e-16 0.450381 -2.6491) (-7.62091e-16 0.632629 -2.78365) (-9.32735e-16 0.846129 -2.87852) (-1.06812e-15 1.00677 -2.94325) (-1.15889e-15 1.082 -2.99188) (-1.20949e-15 1.07628 -3.02814) (-1.22616e-15 1.02618 -3.06423) (-1.21372e-15 0.965358 -3.09746) (-1.17667e-15 0.913926 -3.11214) (-1.12048e-15 0.881557 -3.09682) (-1.05047e-15 0.857632 -3.0409) (-9.72722e-16 0.826285 -2.94304) (-8.92855e-16 0.77656 -2.8183) (-8.15824e-16 0.701773 -2.6849) (-7.44857e-16 0.605294 -2.54923) (-6.82245e-16 0.492935 -2.40197) (-6.29171e-16 0.369818 -2.24244) (-5.85612e-16 0.244204 -2.07088) (-5.50119e-16 0.129 -1.89591) (-5.20703e-16 0.047883 -1.7273) (-4.94313e-16 -0.00186307 -1.56662) (-4.69887e-16 -0.0301382 -1.41) (-4.45477e-16 -0.0430541 -1.25051) (-4.27867e-16 -0.0491623 -1.15975) (-4.14933e-16 0.0859723 -0.973837) (-3.73283e-16 0.377365 -0.844777) (-3.292e-16 0.7176 -0.608158) (-4.46014e-17 1.17315 -0.373128) (-1.47938e-15 -0.561513 1.34423) (-1.45661e-15 -0.623269 1.20341) (-1.49178e-15 -0.697355 1.04655) (-1.52695e-15 -0.674779 0.8073) (-1.45947e-15 -0.460143 0.477985) (-1.27036e-15 -0.118364 -0.0454722) (-1.20728e-15 -0.0779368 -0.172198) (-1.05641e-15 -0.111354 -0.370467) (-9.65483e-16 -0.113 -0.580626) (-9.06809e-16 -0.0490396 -0.631394) (-8.57202e-16 -0.0644699 -0.65461) (-8.24203e-16 -0.087676 -0.535417) (-8.75227e-16 -0.211848 -0.256604) (-1.14516e-15 -0.504159 -0.0313841) (-1.73414e-15 -1.03368 0.117602) (-2.20241e-15 -0.940776 0.0250567) (-2.40943e-15 -0.870624 -0.0195846) (-2.55609e-15 -1.13316 -0.0218513) (-2.70162e-15 -1.41246 -0.167041) (-2.8178e-15 -1.58926 -0.322555) (-2.88873e-15 -1.60022 -0.452382) (-2.91526e-15 -1.60396 -0.579964) (-2.9021e-15 -1.54595 -0.670198) (-2.86259e-15 -1.51491 -0.764174) (-2.79968e-15 -1.55434 -0.901467) (-2.70225e-15 -1.65492 -1.06007) (-2.56096e-15 -1.74399 -1.17063) (-2.38657e-15 -1.71505 -1.13345) (-2.1931e-15 -1.5677 -0.945293) (-1.98326e-15 -1.37295 -0.798055) (-1.75406e-15 -1.22225 -0.762242) (-1.50931e-15 -1.12956 -0.756625) (-1.26866e-15 -1.08611 -0.669597) (-1.0714e-15 -1.17199 -0.605865) (-9.39542e-16 -1.33555 -0.726155) (-8.40386e-16 -1.51994 -0.894015) (-7.3038e-16 -1.55807 -1.10633) (-6.20911e-16 -1.36027 -1.2716) (-5.28259e-16 -1.08375 -1.35356) (-4.53757e-16 -0.823477 -1.43544) (-3.93143e-16 -0.653488 -1.57144) (-3.45429e-16 -0.562315 -1.77137) (-3.1183e-16 -0.482901 -1.99548) (-2.91998e-16 -0.360681 -2.19456) (-2.85709e-16 -0.17442 -2.32732) (-2.85929e-16 -0.0130649 -2.41444) (-2.93026e-16 0.199714 -2.42431) (-3.07845e-16 0.335092 -2.39273) (-3.40841e-16 0.374336 -2.39012) (-4.00232e-16 0.366729 -2.43029) (-4.92116e-16 0.375536 -2.50718) (-6.28882e-16 0.469374 -2.6341) (-8.00015e-16 0.653756 -2.78479) (-9.66566e-16 0.864017 -2.90731) (-1.09713e-15 1.02024 -2.99578) (-1.18434e-15 1.09059 -3.05787) (-1.23282e-15 1.08257 -3.10211) (-1.2489e-15 1.03193 -3.1419) (-1.23733e-15 0.969146 -3.17345) (-1.20153e-15 0.913064 -3.18037) (-1.14615e-15 0.873699 -3.15427) (-1.07657e-15 0.841793 -3.09108) (-9.9852e-16 0.803352 -2.99128) (-9.17342e-16 0.749559 -2.86603) (-8.38468e-16 0.673881 -2.72965) (-7.65594e-16 0.576469 -2.58991) (-7.01173e-16 0.462828 -2.44079) (-6.46569e-16 0.339381 -2.28196) (-6.02057e-16 0.213585 -2.11233) (-5.66103e-16 0.0992406 -1.94177) (-5.36102e-16 0.0212406 -1.77392) (-5.09868e-16 -0.028262 -1.61178) (-4.84858e-16 -0.0515093 -1.46001) (-4.60107e-16 -0.0588369 -1.31436) (-4.41707e-16 -0.0663316 -1.23285) (-4.2805e-16 0.0578976 -1.04215) (-3.86797e-16 0.348351 -0.880581) (-3.42199e-16 0.681141 -0.627086) (-3.48718e-17 1.13062 -0.418606) (-1.67597e-15 -0.540171 1.3109) (-1.40917e-15 -0.59598 1.14566) (-1.44485e-15 -0.658248 0.963798) (-1.4804e-15 -0.619209 0.70757) (-1.40237e-15 -0.385097 0.332238) (-1.2777e-15 -0.101409 -0.216323) (-1.14054e-15 -0.0500389 -0.221148) (-1.00609e-15 -0.0431212 -0.376232) (-9.27905e-16 -0.0532224 -0.569809) (-8.73676e-16 -0.0293706 -0.620472) (-8.34406e-16 -0.080432 -0.639671) (-8.15381e-16 -0.13179 -0.474753) (-8.92839e-16 -0.260103 -0.185984) (-1.17841e-15 -0.550087 0.0286117) (-1.71376e-15 -1.02381 0.144513) (-2.15124e-15 -0.941169 0.0505491) (-2.35117e-15 -0.869264 0.00805716) (-2.49817e-15 -1.11636 0.0099067) (-2.64588e-15 -1.38151 -0.128431) (-2.7696e-15 -1.55675 -0.280103) (-2.8521e-15 -1.57761 -0.408615) (-2.88982e-15 -1.57471 -0.531204) (-2.88379e-15 -1.52391 -0.618723) (-2.8466e-15 -1.48821 -0.711314) (-2.7857e-15 -1.52139 -0.851951) (-2.69458e-15 -1.61993 -1.02624) (-2.56496e-15 -1.73118 -1.17387) (-2.40226e-15 -1.73645 -1.19049) (-2.21462e-15 -1.61079 -1.03063) (-2.004e-15 -1.40492 -0.850716) (-1.76935e-15 -1.23732 -0.764975) (-1.5173e-15 -1.13589 -0.747524) (-1.26931e-15 -1.0987 -0.687953) (-1.06224e-15 -1.17182 -0.638131) (-9.20888e-16 -1.31372 -0.745215) (-8.20525e-16 -1.48183 -0.908361) (-7.18967e-16 -1.51845 -1.11539) (-6.18881e-16 -1.33162 -1.27886) (-5.3262e-16 -1.06002 -1.35724) (-4.6271e-16 -0.795674 -1.42554) (-4.06069e-16 -0.613776 -1.54182) (-3.61677e-16 -0.511871 -1.72341) (-3.30434e-16 -0.42907 -1.93453) (-3.12111e-16 -0.312056 -2.12505) (-3.07081e-16 -0.13774 -2.2543) (-3.07907e-16 0.0141533 -2.35092) (-3.13149e-16 0.214734 -2.37397) (-3.28711e-16 0.337774 -2.35598) (-3.64743e-16 0.373838 -2.361) (-4.27389e-16 0.370244 -2.40745) (-5.2497e-16 0.388598 -2.49259) (-6.67089e-16 0.49429 -2.63046) (-8.38138e-16 0.682512 -2.8016) (-1.00026e-15 0.888811 -2.95074) (-1.12558e-15 1.03856 -3.05825) (-1.20855e-15 1.1027 -3.12941) (-1.25439e-15 1.09146 -3.17965) (-1.26969e-15 1.03937 -3.22189) (-1.25892e-15 0.973573 -3.24973) (-1.22438e-15 0.911741 -3.24771) (-1.16999e-15 0.865166 -3.21061) (-1.10116e-15 0.825815 -3.13905) (-1.02339e-15 0.780884 -3.03722) (-9.41553e-16 0.723019 -2.9129) (-8.61312e-16 0.645689 -2.77431) (-7.86802e-16 0.547086 -2.63047) (-7.20614e-16 0.433095 -2.48006) (-6.64384e-16 0.309479 -2.32196) (-6.18596e-16 0.183962 -2.15307) (-5.81847e-16 0.0697929 -1.9827) (-5.50154e-16 -0.00906688 -1.8097) (-5.23839e-16 -0.0573491 -1.65055) (-4.97695e-16 -0.0749409 -1.50083) (-4.72142e-16 -0.0772535 -1.36145) (-4.52141e-16 -0.0837969 -1.27271) (-4.39142e-16 0.0297469 -1.10343) (-3.99765e-16 0.316915 -0.91343) (-3.55673e-16 0.641792 -0.645765) (-5.86634e-17 1.09188 -0.410933) (-1.63864e-15 -0.512689 1.26326) (-1.37295e-15 -0.562926 1.07543) (-1.38734e-15 -0.612422 0.867832) (-1.42354e-15 -0.556084 0.586666) (-1.32214e-15 -0.304782 0.176766) (-1.18939e-15 -0.0944945 -0.252039) (-1.04417e-15 -0.0687793 -0.271696) (-9.48869e-16 -0.0637244 -0.460923) (-8.89922e-16 -0.0653193 -0.614685) (-8.4141e-16 -0.0493253 -0.635231) (-8.12892e-16 -0.102049 -0.580534) (-8.12726e-16 -0.173571 -0.372314) (-9.16746e-16 -0.308155 -0.104838) (-1.2074e-15 -0.592927 0.0882645) (-1.69321e-15 -1.01088 0.174152) (-2.09952e-15 -0.938783 0.0798479) (-2.29171e-15 -0.866985 0.0388897) (-2.43794e-15 -1.10217 0.043316) (-2.58797e-15 -1.3502 -0.0886182) (-2.71841e-15 -1.5262 -0.236775) (-2.81209e-15 -1.55405 -0.363009) (-2.86146e-15 -1.54675 -0.481281) (-2.86335e-15 -1.50303 -0.567486) (-2.82912e-15 -1.46129 -0.657788) (-2.77001e-15 -1.48672 -0.798828) (-2.68404e-15 -1.58512 -0.984981) (-2.56517e-15 -1.71419 -1.16542) (-2.41562e-15 -1.75279 -1.23623) (-2.23774e-15 -1.65509 -1.11688) (-2.03035e-15 -1.44798 -0.921301) (-1.79215e-15 -1.26061 -0.786479) (-1.53219e-15 -1.14744 -0.744294) (-1.27535e-15 -1.1115 -0.70354) (-1.058e-15 -1.1717 -0.669586) (-9.06387e-16 -1.29344 -0.767107) (-8.02732e-16 -1.44514 -0.925001) (-7.07554e-16 -1.47899 -1.1266) (-6.1613e-16 -1.30416 -1.28743) (-5.36381e-16 -1.03779 -1.36165) (-4.71136e-16 -0.770255 -1.41707) (-4.18331e-16 -0.577382 -1.51442) (-3.77123e-16 -0.464694 -1.67737) (-3.4824e-16 -0.378915 -1.87484) (-3.31536e-16 -0.26799 -2.05726) (-3.27936e-16 -0.108463 -2.18338) (-3.28217e-16 0.0178666 -2.29611) (-3.32539e-16 0.214867 -2.3293) (-3.51347e-16 0.332684 -2.32189) (-3.90333e-16 0.369862 -2.33239) (-4.54919e-16 0.371662 -2.3822) (-5.57607e-16 0.40245 -2.48009) (-7.05178e-16 0.520633 -2.64019) (-8.75988e-16 0.714677 -2.83708) (-1.03304e-15 0.915904 -3.0081) (-1.15234e-15 1.05719 -3.12722) (-1.2307e-15 1.11423 -3.20396) (-1.27404e-15 1.09898 -3.25863) (-1.28879e-15 1.04425 -3.30028) (-1.27885e-15 0.974705 -3.32129) (-1.24552e-15 0.906821 -3.30953) (-1.19226e-15 0.853877 -3.26313) (-1.12456e-15 0.808603 -3.18423) (-1.04765e-15 0.758381 -3.08026) (-9.6585e-16 0.696307 -2.95759) (-8.84788e-16 0.616744 -2.81766) (-8.0898e-16 0.516842 -2.67) (-7.41289e-16 0.402162 -2.51756) (-6.83619e-16 0.277622 -2.35874) (-6.36849e-16 0.15217 -2.18805) (-5.9925e-16 0.0403997 -2.01486) (-5.66215e-16 -0.0386761 -1.84006) (-5.39454e-16 -0.084298 -1.68693) (-5.11241e-16 -0.0966006 -1.53884) (-4.83708e-16 -0.0941481 -1.3989) (-4.61894e-16 -0.101038 -1.30931) (-4.49879e-16 -0.00349191 -1.17077) (-4.12464e-16 0.277737 -0.947952) (-3.68674e-16 0.600145 -0.665337) (-7.80509e-17 1.05199 -0.408929) (-1.51992e-15 -0.480201 1.19875) (-1.31895e-15 -0.526826 0.988545) (-1.31759e-15 -0.563728 0.754734) (-1.35603e-15 -0.493456 0.440565) (-1.24511e-15 -0.236415 -0.0145572) (-1.10039e-15 -0.0456974 -0.373553) (-9.6237e-16 -0.0374624 -0.377577) (-8.95516e-16 -0.013585 -0.546643) (-8.45548e-16 -0.0331437 -0.65056) (-8.05205e-16 -0.0308585 -0.602245) (-7.95164e-16 -0.135403 -0.47566) (-8.19321e-16 -0.216317 -0.253074) (-9.43609e-16 -0.35455 -0.0184592) (-1.23133e-15 -0.632454 0.149261) (-1.6719e-15 -0.995344 0.206684) (-2.04732e-15 -0.933169 0.110606) (-2.23186e-15 -0.865212 0.0717589) (-2.37709e-15 -1.08875 0.0775613) (-2.5291e-15 -1.32023 -0.0473788) (-2.6651e-15 -1.49697 -0.19238) (-2.76936e-15 -1.52872 -0.315635) (-2.83045e-15 -1.52195 -0.430614) (-2.84078e-15 -1.48145 -0.516369) (-2.81008e-15 -1.4332 -0.604366) (-2.75268e-15 -1.4528 -0.744376) (-2.67078e-15 -1.55161 -0.938177) (-2.56135e-15 -1.69229 -1.14518) (-2.42538e-15 -1.76246 -1.26752) (-2.26035e-15 -1.69684 -1.19737) (-2.06049e-15 -1.50014 -1.00396) (-1.82208e-15 -1.29397 -0.828013) (-1.55492e-15 -1.1641 -0.751384) (-1.28795e-15 -1.12285 -0.71664) (-1.05933e-15 -1.17064 -0.696573) (-8.96607e-16 -1.27368 -0.788904) (-7.87696e-16 -1.4085 -0.943013) (-6.9649e-16 -1.4384 -1.14049) (-6.12626e-16 -1.27574 -1.29957) (-5.39566e-16 -1.01554 -1.36995) (-4.79333e-16 -0.745321 -1.41271) (-4.30426e-16 -0.542364 -1.49087) (-3.92292e-16 -0.418002 -1.6339) (-3.65693e-16 -0.326431 -1.81589) (-3.50686e-16 -0.21881 -1.98774) (-3.4845e-16 -0.0698405 -2.1094) (-3.48455e-16 0.0606542 -2.22403) (-3.54208e-16 0.233182 -2.27107) (-3.7665e-16 0.335573 -2.27928) (-4.17535e-16 0.36991 -2.30094) (-4.8412e-16 0.377547 -2.36117) (-5.92072e-16 0.422184 -2.47935) (-7.44191e-16 0.553221 -2.66755) (-9.13525e-16 0.751062 -2.89024) (-1.06457e-15 0.945908 -3.07821) (-1.1773e-15 1.07798 -3.20294) (-1.25085e-15 1.12765 -3.28126) (-1.29167e-15 1.10783 -3.33737) (-1.3056e-15 1.04936 -3.37443) (-1.29602e-15 0.975246 -3.3857) (-1.26382e-15 0.901476 -3.36529) (-1.21207e-15 0.842266 -3.31268) (-1.14607e-15 0.791815 -3.22887) (-1.0707e-15 0.737273 -3.12231) (-9.89642e-16 0.670617 -3.00069) (-9.08278e-16 0.588016 -2.86094) (-8.31468e-16 0.486538 -2.71067) (-7.62384e-16 0.371234 -2.55659) (-7.03306e-16 0.245983 -2.39711) (-6.55359e-16 0.119868 -2.22495) (-6.1583e-16 0.00902275 -2.04788) (-5.81661e-16 -0.0701815 -1.87492) (-5.5296e-16 -0.112885 -1.72657) (-5.2326e-16 -0.120824 -1.57752) (-4.93735e-16 -0.1142 -1.42875) (-4.70035e-16 -0.117523 -1.33451) (-4.59334e-16 -0.0328054 -1.23859) (-4.2438e-16 0.236353 -0.982567) (-3.81353e-16 0.560133 -0.684607) (-8.78879e-17 1.01032 -0.434665) (-1.42963e-15 -0.441131 1.11252) (-1.24464e-15 -0.484409 0.880861) (-1.23628e-15 -0.506765 0.619477) (-1.27834e-15 -0.419967 0.269419) (-1.14799e-15 -0.180427 -0.278103) (-9.85683e-16 -0.0495536 -0.455508) (-8.92449e-16 -0.0505257 -0.463856) (-8.40422e-16 -0.0225136 -0.639912) (-7.98673e-16 -0.0464078 -0.652979) (-7.77416e-16 -0.0639112 -0.509847) (-7.86334e-16 -0.174341 -0.335961) (-8.32058e-16 -0.256441 -0.124493) (-9.70614e-16 -0.399475 0.0694596) (-1.24985e-15 -0.663932 0.209972) (-1.64948e-15 -0.978292 0.241902) (-1.99464e-15 -0.925578 0.142725) (-2.17137e-15 -0.865835 0.106617) (-2.31564e-15 -1.07521 0.113661) (-2.46953e-15 -1.29202 -0.00482514) (-2.61018e-15 -1.46853 -0.146711) (-2.7243e-15 -1.50308 -0.265991) (-2.79697e-15 -1.49926 -0.378606) (-2.8161e-15 -1.45968 -0.464391) (-2.78944e-15 -1.40527 -0.550057) (-2.73374e-15 -1.42048 -0.689215) (-2.65508e-15 -1.51666 -0.887947) (-2.55357e-15 -1.66269 -1.11505) (-2.43074e-15 -1.76163 -1.28367) (-2.28061e-15 -1.7308 -1.26765) (-2.09226e-15 -1.5539 -1.09274) (-1.85791e-15 -1.33478 -0.887984) (-1.5857e-15 -1.18572 -0.772639) (-1.30808e-15 -1.134 -0.732508) (-1.06711e-15 -1.16932 -0.722563) (-8.92323e-16 -1.25504 -0.811364) (-7.76234e-16 -1.37161 -0.9617) (-6.86413e-16 -1.39855 -1.15624) (-6.08665e-16 -1.24765 -1.31563) (-5.42244e-16 -0.995065 -1.38438) (-4.87483e-16 -0.724084 -1.41599) (-4.42851e-16 -0.512905 -1.47502) (-4.07936e-16 -0.378715 -1.59579) (-3.83629e-16 -0.283006 -1.75949) (-3.70317e-16 -0.182672 -1.92046) (-3.69485e-16 -0.0499836 -2.03937) (-3.69563e-16 0.0587148 -2.16607) (-3.78206e-16 0.232076 -2.22376) (-4.03106e-16 0.331202 -2.24606) (-4.448e-16 0.367663 -2.2771) (-5.14199e-16 0.38518 -2.35222) (-6.27897e-16 0.444687 -2.49839) (-7.83129e-16 0.588794 -2.71456) (-9.49279e-16 0.788256 -2.95568) (-1.09381e-15 0.975113 -3.15474) (-1.2002e-15 1.09683 -3.28206) (-1.26917e-15 1.13894 -3.35818) (-1.3075e-15 1.114 -3.41107) (-1.32028e-15 1.05075 -3.44017) (-1.31066e-15 0.972207 -3.44064) (-1.27983e-15 0.893696 -3.41347) (-1.23024e-15 0.828866 -3.35806) (-1.16655e-15 0.774031 -3.27161) (-1.09318e-15 0.716018 -3.16237) (-1.01331e-15 0.645085 -3.0397) (-9.32064e-16 0.559269 -2.89927) (-8.54554e-16 0.456141 -2.74707) (-7.84435e-16 0.340149 -2.59083) (-7.24298e-16 0.21328 -2.42995) (-6.75739e-16 0.0858228 -2.2528) (-6.33346e-16 -0.0248345 -2.07863) (-5.98879e-16 -0.101316 -1.91157) (-5.67281e-16 -0.14152 -1.76512) (-5.35135e-16 -0.147007 -1.61259) (-5.03285e-16 -0.134612 -1.45515) (-4.78108e-16 -0.130169 -1.36592) (-4.68715e-16 -0.0704514 -1.33053) (-4.35109e-16 0.183951 -1.02537) (-3.94024e-16 0.51583 -0.706857) (-1.03244e-16 0.964023 -0.407456) (-1.34901e-15 -0.397215 0.997479) (-1.15658e-15 -0.438613 0.74553) (-1.14531e-15 -0.448218 0.46003) (-1.19357e-15 -0.341874 0.0752068) (-1.02576e-15 -0.150339 -0.624618) (-8.99667e-16 -0.0352095 -0.584993) (-8.27399e-16 -0.0136991 -0.601969) (-7.82359e-16 -0.0025711 -0.685513) (-7.61353e-16 -0.0524295 -0.527946) (-7.59504e-16 -0.0966126 -0.346827) (-7.85175e-16 -0.206066 -0.180017) (-8.48397e-16 -0.290913 0.000832103) (-9.95453e-16 -0.439225 0.156149) (-1.26294e-15 -0.688077 0.269798) (-1.62576e-15 -0.962248 0.279395) (-1.94163e-15 -0.916359 0.177014) (-2.11051e-15 -0.864735 0.144188) (-2.25392e-15 -1.05883 0.152301) (-2.40984e-15 -1.26546 0.0391022) (-2.55458e-15 -1.43885 -0.0997722) (-2.6776e-15 -1.47525 -0.21451) (-2.76149e-15 -1.4762 -0.325838) (-2.78952e-15 -1.43935 -0.411592) (-2.76719e-15 -1.37988 -0.494708) (-2.71319e-15 -1.38942 -0.632739) (-2.63712e-15 -1.47868 -0.834017) (-2.54208e-15 -1.6256 -1.07585) (-2.43133e-15 -1.74957 -1.28461) (-2.29711e-15 -1.75519 -1.32388) (-2.12353e-15 -1.60543 -1.18088) (-1.8978e-15 -1.38094 -0.962786) (-1.62405e-15 -1.21228 -0.810183) (-1.33639e-15 -1.14562 -0.753632) (-1.08226e-15 -1.16859 -0.747459) (-8.94418e-16 -1.23798 -0.833577) (-7.69289e-16 -1.33561 -0.980591) (-6.78269e-16 -1.35872 -1.17331) (-6.04718e-16 -1.2184 -1.33585) (-5.44229e-16 -0.974101 -1.40739) (-4.95187e-16 -0.704207 -1.43124) (-4.55479e-16 -0.485245 -1.47218) (-4.24431e-16 -0.339005 -1.56936) (-4.02949e-16 -0.236255 -1.7115) (-3.91812e-16 -0.137274 -1.85655) (-3.92722e-16 -0.00924348 -1.97064) (-3.94631e-16 0.108697 -2.09545) (-4.05521e-16 0.251559 -2.17266) (-4.30077e-16 0.334088 -2.21498) (-4.72479e-16 0.370885 -2.26232) (-5.46303e-16 0.401345 -2.36089) (-6.65747e-16 0.476871 -2.54201) (-8.22344e-16 0.629616 -2.78502) (-9.83882e-16 0.82823 -3.03571) (-1.12123e-15 1.00591 -3.23566) (-1.22125e-15 1.11627 -3.36075) (-1.28577e-15 1.15048 -3.43197) (-1.3214e-15 1.12026 -3.47763) (-1.3325e-15 1.05193 -3.49709) (-1.32242e-15 0.969311 -3.48872) (-1.29313e-15 0.887126 -3.45737) (-1.24639e-15 0.816938 -3.40121) (-1.18552e-15 0.757324 -3.31344) (-1.11449e-15 0.695546 -3.20137) (-1.03613e-15 0.62021 -3.07602) (-9.55317e-16 0.5308 -2.93403) (-8.77437e-16 0.425945 -2.78064) (-8.06512e-16 0.309121 -2.62404) (-7.45471e-16 0.180166 -2.46343) (-6.96153e-16 0.0513966 -2.28156) (-6.50581e-16 -0.0601504 -2.11593) (-6.14806e-16 -0.13423 -1.95341) (-5.80569e-16 -0.172825 -1.80417) (-5.46141e-16 -0.176478 -1.64682) (-5.12363e-16 -0.156964 -1.48321) (-4.85381e-16 -0.141583 -1.39014) (-4.75324e-16 -0.0980723 -1.38294) (-4.44217e-16 0.130735 -1.07212) (-4.05478e-16 0.473329 -0.72885) (-1.17968e-16 0.918083 -0.462514) (-1.14884e-15 -0.344802 0.852137) (-1.05811e-15 -0.387195 0.589249) (-1.04567e-15 -0.382806 0.289902) (-1.08721e-15 -0.254188 -0.109225) (-8.72975e-16 -0.114858 -0.738158) (-7.99117e-16 -0.0640606 -0.61564) (-7.71411e-16 -0.0684122 -0.571162) (-7.44758e-16 -0.0485744 -0.535946) (-7.37881e-16 -0.078009 -0.337157) (-7.50776e-16 -0.12875 -0.164934) (-7.89661e-16 -0.231635 -0.0249119) (-8.65543e-16 -0.319257 0.119396) (-1.01643e-15 -0.471289 0.239753) (-1.27051e-15 -0.705609 0.327592) (-1.60015e-15 -0.943916 0.317981) (-1.88802e-15 -0.904713 0.214485) (-2.04904e-15 -0.862809 0.184858) (-2.1916e-15 -1.04434 0.192295) (-2.35025e-15 -1.24039 0.0841331) (-2.49873e-15 -1.40973 -0.0507868) (-2.62988e-15 -1.44762 -0.16073) (-2.72444e-15 -1.45337 -0.271802) (-2.76115e-15 -1.41989 -0.357549) (-2.74335e-15 -1.35576 -0.438305) (-2.69117e-15 -1.35821 -0.575282) (-2.61718e-15 -1.43755 -0.777702) (-2.52722e-15 -1.58156 -1.02939) (-2.42705e-15 -1.72574 -1.27133) (-2.30882e-15 -1.76778 -1.36427) (-2.15237e-15 -1.65041 -1.26273) (-1.93953e-15 -1.42815 -1.04662) (-1.66865e-15 -1.24337 -0.863317) (-1.37289e-15 -1.15873 -0.783435) (-1.10535e-15 -1.16813 -0.774457) (-9.035e-16 -1.22236 -0.856274) (-7.67769e-16 -1.30204 -0.998943) (-6.73148e-16 -1.32007 -1.18994) (-6.01487e-16 -1.19019 -1.35706) (-5.45507e-16 -0.956037 -1.43553) (-5.01775e-16 -0.690887 -1.45794) (-4.67266e-16 -0.46802 -1.48611) (-4.40658e-16 -0.313829 -1.5616) (-4.22572e-16 -0.207557 -1.68116) (-4.13956e-16 -0.114316 -1.80997) (-4.16632e-16 -0.00570114 -1.92608) (-4.20428e-16 0.111128 -2.05719) (-4.31394e-16 0.249317 -2.14676) (-4.54952e-16 0.332264 -2.20275) (-4.99841e-16 0.376147 -2.26851) (-5.79782e-16 0.422513 -2.39379) (-7.04334e-16 0.514798 -2.60723) (-8.60707e-16 0.673284 -2.87183) (-1.01704e-15 0.867332 -3.12583) (-1.14696e-15 1.03411 -3.31749) (-1.24047e-15 1.13297 -3.43399) (-1.30066e-15 1.15896 -3.49825) (-1.33362e-15 1.12276 -3.53476) (-1.34295e-15 1.0494 -3.54448) (-1.33253e-15 0.963501 -3.53018) (-1.3052e-15 0.878405 -3.49677) (-1.26171e-15 0.803447 -3.44018) (-1.2038e-15 0.738783 -3.3505) (-1.1351e-15 0.673691 -3.23476) (-1.05843e-15 0.594521 -3.10599) (-9.78431e-16 0.501862 -2.9621) (-9.00576e-16 0.395897 -2.80841) (-8.2938e-16 0.277906 -2.65179) (-7.67946e-16 0.146515 -2.49066) (-7.17843e-16 0.0175831 -2.30288) (-6.70203e-16 -0.0935025 -2.14779) (-6.32271e-16 -0.165633 -1.99232) (-5.94327e-16 -0.204373 -1.83866) (-5.56822e-16 -0.206974 -1.67518) (-5.21085e-16 -0.179788 -1.5102) (-4.92009e-16 -0.152733 -1.4049) (-4.79869e-16 -0.118189 -1.38235) (-4.52513e-16 0.0696999 -1.13326) (-4.1657e-16 0.419957 -0.75528) (-1.32458e-16 0.87157 -0.45666) (-1.11878e-15 -0.285798 0.680958) (-9.54926e-16 -0.334239 0.42779) (-9.39665e-16 -0.319523 0.131865) (-9.55575e-16 -0.1821 -0.256541) (-7.64989e-16 -0.100922 -0.59956) (-7.44044e-16 -0.0918776 -0.460636) (-7.32052e-16 -0.0587597 -0.422339) (-7.19814e-16 -0.0475869 -0.304871) (-7.24037e-16 -0.0935631 -0.130263) (-7.48307e-16 -0.151505 0.00867786) (-7.97016e-16 -0.251901 0.11729) (-8.81321e-16 -0.34338 0.228386) (-1.03246e-15 -0.49816 0.318609) (-1.27242e-15 -0.71864 0.38396) (-1.57205e-15 -0.923452 0.357822) (-1.83354e-15 -0.891297 0.254136) (-1.98707e-15 -0.858951 0.227791) (-2.12905e-15 -1.03193 0.23317) (-2.29092e-15 -1.21535 0.130191) (-2.4434e-15 -1.38084 -0.000691792) (-2.58193e-15 -1.42068 -0.105193) (-2.68625e-15 -1.4313 -0.21639) (-2.73112e-15 -1.4011 -0.302792) (-2.71795e-15 -1.3319 -0.381836) (-2.66772e-15 -1.32634 -0.517297) (-2.59546e-15 -1.39394 -0.719094) (-2.50941e-15 -1.53123 -0.976557) (-2.41817e-15 -1.69012 -1.24486) (-2.31524e-15 -1.76729 -1.38759) (-2.17724e-15 -1.68596 -1.33335) (-1.98088e-15 -1.47438 -1.13383) (-1.71772e-15 -1.27846 -0.930392) (-1.41723e-15 -1.17469 -0.823633) (-1.13684e-15 -1.16779 -0.804645) (-9.203e-16 -1.20674 -0.87991) (-7.72648e-16 -1.26963 -1.01781) (-6.72166e-16 -1.28132 -1.20704) (-5.99995e-16 -1.15998 -1.37921) (-5.46677e-16 -0.937024 -1.46702) (-5.07146e-16 -0.677914 -1.49233) (-4.77424e-16 -0.450941 -1.51261) (-4.55401e-16 -0.287438 -1.57086) (-4.41131e-16 -0.172644 -1.66949) (-4.35462e-16 -0.0750591 -1.7803) (-4.40264e-16 0.0463025 -1.89066) (-4.45516e-16 0.151169 -2.02828) (-4.55273e-16 0.262371 -2.13187) (-4.78777e-16 0.337722 -2.20555) (-5.28537e-16 0.390532 -2.29767) (-6.15936e-16 0.45385 -2.45474) (-7.44601e-16 0.560568 -2.69402) (-8.99004e-16 0.721091 -2.97017) (-1.0493e-15 0.906637 -3.21994) (-1.17177e-15 1.06081 -3.39823) (-1.25871e-15 1.14849 -3.50185) (-1.31418e-15 1.16646 -3.55568) (-1.34408e-15 1.12448 -3.58206) (-1.35162e-15 1.04686 -3.58422) (-1.3411e-15 0.95875 -3.56723) (-1.31579e-15 0.871134 -3.53296) (-1.2754e-15 0.79114 -3.47462) (-1.2202e-15 0.720865 -3.38213) (-1.15377e-15 0.652168 -3.26271) (-1.0791e-15 0.569297 -3.13091) (-1.0004e-15 0.473698 -2.98629) (-9.23097e-16 0.366561 -2.83418) (-8.51945e-16 0.247771 -2.68021) (-7.90329e-16 0.112441 -2.51968) (-7.37779e-16 -0.0174551 -2.33308) (-6.88818e-16 -0.126983 -2.18146) (-6.47888e-16 -0.198245 -2.02987) (-6.07064e-16 -0.237959 -1.87063) (-5.66944e-16 -0.238684 -1.70073) (-5.29448e-16 -0.204572 -1.53618) (-4.98171e-16 -0.169235 -1.40968) (-4.8369e-16 -0.136453 -1.37052) (-4.59752e-16 0.0185942 -1.20396) (-4.26799e-16 0.368415 -0.783942) (-1.51233e-16 0.823353 -0.456321) (-8.71444e-16 -0.224077 0.52508) (-9.0304e-16 -0.282699 0.316481) (-8.35939e-16 -0.261183 0.0546484) (-8.31171e-16 -0.147402 -0.219578) (-7.23695e-16 -0.113088 -0.292832) (-7.16908e-16 -0.105525 -0.24016) (-7.09762e-16 -0.0757406 -0.205335) (-7.05492e-16 -0.0711474 -0.0852171) (-7.16816e-16 -0.112623 0.0547188) (-7.48781e-16 -0.16966 0.164281) (-8.04424e-16 -0.266911 0.244803) (-8.93663e-16 -0.36346 0.326934) (-1.0425e-15 -0.519844 0.392071) (-1.26814e-15 -0.725364 0.438781) (-1.54058e-15 -0.904768 0.399639) (-1.77775e-15 -0.877858 0.2974) (-1.92458e-15 -0.856387 0.274069) (-2.0665e-15 -1.0202 0.275125) (-2.23172e-15 -1.19178 0.177281) (-2.38926e-15 -1.35269 0.0512105) (-2.5345e-15 -1.39411 -0.0470236) (-2.64734e-15 -1.40944 -0.159469) (-2.69973e-15 -1.3826 -0.247474) (-2.69115e-15 -1.3089 -0.325438) (-2.64298e-15 -1.29417 -0.459875) (-2.57224e-15 -1.34913 -0.660093) (-2.48909e-15 -1.47679 -0.919336) (-2.40507e-15 -1.64534 -1.207) (-2.31617e-15 -1.75522 -1.39424) (-2.19704e-15 -1.71214 -1.38978) (-2.01982e-15 -1.51824 -1.21833) (-1.76917e-15 -1.31596 -1.00716) (-1.46834e-15 -1.19315 -0.874972) (-1.17673e-15 -1.16767 -0.840363) (-9.45319e-16 -1.19089 -0.90567) (-7.84676e-16 -1.23707 -1.03727) (-6.76371e-16 -1.24168 -1.22405) (-6.01469e-16 -1.1287 -1.40158) (-5.48845e-16 -0.919166 -1.50106) (-5.11964e-16 -0.670001 -1.53394) (-4.85944e-16 -0.445334 -1.5524) (-4.67874e-16 -0.278909 -1.5988) (-4.57071e-16 -0.160561 -1.68034) (-4.53992e-16 -0.0686383 -1.78004) (-4.60505e-16 0.0449341 -1.89165) (-4.66105e-16 0.147811 -2.03582) (-4.75577e-16 0.262023 -2.14598) (-5.02071e-16 0.346364 -2.23551) (-5.58854e-16 0.411068 -2.35573) (-6.53971e-16 0.489844 -2.54201) (-7.85646e-16 0.607918 -2.7975) (-9.36804e-16 0.767823 -3.07353) (-1.08032e-15 0.942842 -3.31046) (-1.19546e-15 1.08368 -3.47203) (-1.27602e-15 1.16021 -3.56136) (-1.32641e-15 1.1702 -3.60244) (-1.35301e-15 1.12269 -3.61879) (-1.3592e-15 1.04147 -3.61614) (-1.34906e-15 0.951691 -3.59779) (-1.32565e-15 0.861373 -3.56127) (-1.28787e-15 0.776354 -3.4991) (-1.23511e-15 0.700741 -3.40323) (-1.17099e-15 0.628929 -3.28161) (-1.09872e-15 0.543383 -3.14816) (-1.022e-15 0.445441 -3.00367) (-9.45852e-16 0.337799 -2.85453) (-8.75378e-16 0.218421 -2.70351) (-8.14225e-16 0.0796273 -2.53957) (-7.58768e-16 -0.0520954 -2.35927) (-7.09051e-16 -0.159295 -2.20972) (-6.64065e-16 -0.230859 -2.06127) (-6.1944e-16 -0.273074 -1.8959) (-5.76401e-16 -0.27255 -1.71862) (-5.37191e-16 -0.232916 -1.55301) (-5.04158e-16 -0.187149 -1.40962) (-4.87951e-16 -0.150336 -1.37492) (-4.67126e-16 -0.047363 -1.31229) (-4.35869e-16 0.30187 -0.820927) (-1.61192e-16 0.769342 -0.510057) (-4.27606e-16 -0.168228 0.425519) (-8.45663e-16 -0.243924 0.286847) (-7.6253e-16 -0.218615 0.0748116) (-7.57323e-16 -0.132081 -0.0950605) (-7.07129e-16 -0.10957 -0.0822614) (-7.03263e-16 -0.102367 -0.0445754) (-6.97791e-16 -0.0842364 0.00452041) (-6.96924e-16 -0.0877995 0.10793) (-7.1226e-16 -0.126579 0.216259) (-7.49601e-16 -0.184701 0.300011) (-8.10009e-16 -0.278824 0.358473) (-9.01771e-16 -0.382544 0.418193) (-1.04638e-15 -0.538442 0.463587) (-1.25741e-15 -0.728229 0.493648) (-1.5052e-15 -0.881688 0.444277) (-1.72046e-15 -0.863417 0.344128) (-1.86184e-15 -0.853665 0.323398) (-2.00457e-15 -1.0079 0.319333) (-2.17328e-15 -1.16832 0.225701) (-2.33692e-15 -1.32412 0.10446) (-2.48819e-15 -1.3683 0.0131833) (-2.60831e-15 -1.3873 -0.10129) (-2.66735e-15 -1.36344 -0.191347) (-2.66305e-15 -1.28547 -0.268556) (-2.61693e-15 -1.26201 -0.402583) (-2.54758e-15 -1.30343 -0.600869) (-2.46663e-15 -1.41855 -0.858889) (-2.38825e-15 -1.59216 -1.15951) (-2.31175e-15 -1.73154 -1.38489) (-2.21113e-15 -1.72713 -1.42984) (-2.05477e-15 -1.55654 -1.29518) (-1.82079e-15 -1.35423 -1.08905) (-1.52453e-15 -1.21431 -0.93641) (-1.22463e-15 -1.16945 -0.882667) (-9.79012e-16 -1.17567 -0.934634) (-8.04776e-16 -1.20388 -1.05809) (-6.87099e-16 -1.2 -1.24188) (-6.07478e-16 -1.09452 -1.4255) (-5.53611e-16 -0.897816 -1.53867) (-5.1774e-16 -0.658205 -1.58229) (-4.94125e-16 -0.435131 -1.6024) (-4.79096e-16 -0.261931 -1.64073) (-4.71221e-16 -0.132075 -1.70885) (-4.7052e-16 -0.0334399 -1.7994) (-4.78205e-16 0.089835 -1.91033) (-4.84573e-16 0.181388 -2.05484) (-4.95648e-16 0.279585 -2.17688) (-5.27472e-16 0.365001 -2.29072) (-5.92542e-16 0.441982 -2.44049) (-6.94847e-16 0.533786 -2.65057) (-8.28119e-16 0.658679 -2.91214) (-9.74675e-16 0.814233 -3.17765) (-1.11055e-15 0.976771 -3.3946) (-1.21818e-15 1.10404 -3.53667) (-1.29252e-15 1.16987 -3.61171) (-1.33776e-15 1.17267 -3.63998) (-1.36087e-15 1.1209 -3.647) (-1.36578e-15 1.0373 -3.64149) (-1.35575e-15 0.945994 -3.62154) (-1.33341e-15 0.8529 -3.58079) (-1.29767e-15 0.762762 -3.51403) (-1.24731e-15 0.682031 -3.41614) (-1.18583e-15 0.60713 -3.29446) (-1.11653e-15 0.518914 -3.16151) (-1.04239e-15 0.4191 -3.01937) (-9.67975e-16 0.310884 -2.87503) (-8.98364e-16 0.190195 -2.72914) (-8.37766e-16 0.0479841 -2.5612) (-7.78853e-16 -0.0865254 -2.39213) (-7.27571e-16 -0.191932 -2.24182) (-6.7921e-16 -0.264871 -2.08943) (-6.31287e-16 -0.309946 -1.91662) (-5.85575e-16 -0.307585 -1.73501) (-5.44685e-16 -0.262667 -1.56954) (-5.10213e-16 -0.20584 -1.41608) (-4.91544e-16 -0.156968 -1.37023) (-4.71269e-16 -0.0948528 -1.3833) (-4.43498e-16 0.232759 -0.866492) (-1.77462e-16 0.720851 -0.522218) (-3.86441e-16 -0.122365 0.446647) (-7.60465e-16 -0.213912 0.3652) (-7.21448e-16 -0.191896 0.202887) (-7.31287e-16 -0.134068 0.111481) (-7.03693e-16 -0.117809 0.131735) (-6.98518e-16 -0.109316 0.148425) (-6.91778e-16 -0.095669 0.193166) (-6.91459e-16 -0.100136 0.274414) (-7.08737e-16 -0.135303 0.357987) (-7.48939e-16 -0.194086 0.421933) (-8.11867e-16 -0.285969 0.462896) (-9.04014e-16 -0.396657 0.504663) (-1.04317e-15 -0.552796 0.53443) (-1.2398e-15 -0.727127 0.550721) (-1.46543e-15 -0.860219 0.491852) (-1.66156e-15 -0.84869 0.393418) (-1.79899e-15 -0.849797 0.374994) (-1.94361e-15 -0.996218 0.365638) (-2.11605e-15 -1.14622 0.276501) (-2.286e-15 -1.29627 0.160189) (-2.4437e-15 -1.34395 0.0751834) (-2.56981e-15 -1.36588 -0.0413734) (-2.63436e-15 -1.34268 -0.133505) (-2.63386e-15 -1.26153 -0.210605) (-2.58973e-15 -1.22971 -0.345707) (-2.52172e-15 -1.25779 -0.542339) (-2.44243e-15 -1.35848 -0.796919) (-2.36827e-15 -1.5336 -1.1047) (-2.30238e-15 -1.69875 -1.36143) (-2.21926e-15 -1.73202 -1.45321) (-2.08451e-15 -1.5886 -1.36048) (-1.8704e-15 -1.39179 -1.1706) (-1.58366e-15 -1.23852 -1.00545) (-1.27933e-15 -1.17457 -0.932339) (-1.02104e-15 -1.16274 -0.967607) (-8.33205e-16 -1.17271 -1.0798) (-7.05144e-16 -1.15914 -1.25874) (-6.19158e-16 -1.05941 -1.44833) (-5.62254e-16 -0.875823 -1.57771) (-5.25735e-16 -0.649005 -1.63742) (-5.03079e-16 -0.432272 -1.66526) (-4.899e-16 -0.257364 -1.70103) (-4.84029e-16 -0.125745 -1.76161) (-4.84955e-16 -0.0344772 -1.85207) (-4.94024e-16 0.0917343 -1.96462) (-5.01636e-16 0.183602 -2.1101) (-5.16484e-16 0.290493 -2.2397) (-5.5563e-16 0.387725 -2.37461) (-6.29167e-16 0.475842 -2.54827) (-7.3736e-16 0.57722 -2.77126) (-8.70737e-16 0.705998 -3.02838) (-1.01176e-15 0.855723 -3.27618) (-1.13957e-15 1.00565 -3.46941) (-1.23949e-15 1.12011 -3.58959) (-1.30769e-15 1.17586 -3.6497) (-1.34815e-15 1.17189 -3.66678) (-1.36794e-15 1.11635 -3.66543) (-1.37158e-15 1.03066 -3.65718) (-1.36127e-15 0.937164 -3.63472) (-1.33939e-15 0.840991 -3.58802) (-1.30561e-15 0.746293 -3.51718) (-1.25818e-15 0.661119 -3.41963) (-1.19985e-15 0.583884 -3.30031) (-1.134e-15 0.493937 -3.16959) (-1.06305e-15 0.392731 -3.03105) (-9.90821e-16 0.284438 -2.89232) (-9.22629e-16 0.162077 -2.74962) (-8.63121e-16 0.0177775 -2.57156) (-8.01535e-16 -0.118964 -2.41553) (-7.48373e-16 -0.224149 -2.26996) (-6.95082e-16 -0.299516 -2.11098) (-6.4292e-16 -0.347923 -1.93091) (-5.94119e-16 -0.343857 -1.7472) (-5.51366e-16 -0.294232 -1.57869) (-5.15763e-16 -0.225153 -1.42324) (-4.9416e-16 -0.162873 -1.3479) (-4.7209e-16 -0.121927 -1.3652) (-4.51281e-16 0.147113 -0.923834) (-1.90913e-16 0.664341 -0.538498) (-6.35644e-16 -0.0885436 0.539571) (-7.84229e-16 -0.190418 0.48711) (-6.90364e-16 -0.170035 0.350962) (-7.27507e-16 -0.126698 0.285913) (-7.05732e-16 -0.111405 0.300289) (-6.98485e-16 -0.105378 0.313605) (-6.89649e-16 -0.098045 0.35576) (-6.87831e-16 -0.106307 0.418738) (-7.04841e-16 -0.140057 0.48334) (-7.45998e-16 -0.201708 0.531396) (-8.09577e-16 -0.294476 0.559446) (-9.00427e-16 -0.408399 0.588074) (-1.03305e-15 -0.563699 0.604872) (-1.21552e-15 -0.722455 0.607586) (-1.42139e-15 -0.843113 0.541053) (-1.60131e-15 -0.833128 0.445546) (-1.73653e-15 -0.845432 0.4281) (-1.88428e-15 -0.98372 0.413972) (-2.0608e-15 -1.12434 0.329608) (-2.23702e-15 -1.26926 0.218176) (-2.40113e-15 -1.321 0.13842) (-2.53226e-15 -1.34618 0.0203517) (-2.60097e-15 -1.32174 -0.0740161) (-2.60369e-15 -1.23861 -0.151479) (-2.56139e-15 -1.19773 -0.288454) (-2.49462e-15 -1.21254 -0.484042) (-2.41668e-15 -1.2978 -0.733934) (-2.3456e-15 -1.47133 -1.04417) (-2.28852e-15 -1.65808 -1.32524) (-2.22149e-15 -1.72689 -1.45958) (-2.10826e-15 -1.61333 -1.41139) (-1.91626e-15 -1.42693 -1.24719) (-1.64358e-15 -1.26494 -1.07893) (-1.33935e-15 -1.18282 -0.988869) (-1.07083e-15 -1.15244 -1.00564) (-8.70096e-16 -1.14358 -1.10385) (-7.31197e-16 -1.11875 -1.27539) (-6.37691e-16 -1.0221 -1.46946) (-5.76305e-16 -0.850094 -1.61588) (-5.37722e-16 -0.63527 -1.6953) (-5.14809e-16 -0.423023 -1.73533) (-5.02576e-16 -0.242273 -1.77311) (-4.98213e-16 -0.102386 -1.83049) (-5.00851e-16 -0.00480552 -1.92144) (-5.10876e-16 0.124968 -2.03589) (-5.20581e-16 0.215235 -2.17822) (-5.40769e-16 0.316642 -2.32118) (-5.88204e-16 0.418643 -2.47857) (-6.69652e-16 0.515653 -2.66964) (-7.82001e-16 0.623234 -2.89601) (-9.13809e-16 0.752125 -3.13916) (-1.04834e-15 0.893925 -3.36397) (-1.16774e-15 1.03049 -3.53337) (-1.25981e-15 1.13259 -3.63206) (-1.3217e-15 1.17945 -3.67548) (-1.35742e-15 1.16978 -3.6815) (-1.37397e-15 1.11153 -3.67375) (-1.37606e-15 1.02459 -3.66355) (-1.36511e-15 0.928843 -3.63909) (-1.34328e-15 0.830014 -3.58761) (-1.31137e-15 0.731858 -3.51429) (-1.26724e-15 0.643036 -3.41953) (-1.21252e-15 0.563191 -3.30458) (-1.15042e-15 0.471283 -3.17738) (-1.08294e-15 0.368925 -3.04384) (-1.01318e-15 0.260263 -2.91165) (-9.46227e-16 0.134594 -2.7736) (-8.87351e-16 -0.0105848 -2.58634) (-8.22939e-16 -0.150043 -2.44349) (-7.67335e-16 -0.256411 -2.29709) (-7.10271e-16 -0.334653 -2.12824) (-6.54554e-16 -0.384653 -1.94258) (-6.02896e-16 -0.378637 -1.75978) (-5.58038e-16 -0.324805 -1.58868) (-5.20945e-16 -0.247185 -1.43213) (-4.96151e-16 -0.175683 -1.31755) (-4.71497e-16 -0.139481 -1.3252) (-4.59606e-16 0.0796348 -0.994046) (-1.57635e-16 0.609189 -0.579466) (-6.08496e-16 -0.0697074 0.692908) (-8.35244e-16 -0.168153 0.632861) (-6.92343e-16 -0.152975 0.515766) (-7.32804e-16 -0.125963 0.464234) (-7.13009e-16 -0.114364 0.461796) (-7.03146e-16 -0.106502 0.469019) (-6.91328e-16 -0.102539 0.502578) (-6.86954e-16 -0.110882 0.549129) (-7.01973e-16 -0.143651 0.597656) (-7.4137e-16 -0.206163 0.632881) (-8.03181e-16 -0.30116 0.650682) (-8.91086e-16 -0.418497 0.668069) (-1.01646e-15 -0.570767 0.673803) (-1.1854e-15 -0.715383 0.664586) (-1.37376e-15 -0.823367 0.592099) (-1.54048e-15 -0.818372 0.501021) (-1.67534e-15 -0.841211 0.483681) (-1.82742e-15 -0.971154 0.465013) (-2.00836e-15 -1.10381 0.38541) (-2.19045e-15 -1.24371 0.279173) (-2.36037e-15 -1.29877 0.203516) (-2.49608e-15 -1.32761 0.0836518) (-2.56757e-15 -1.30096 -0.0130752) (-2.57278e-15 -1.21559 -0.09149) (-2.53212e-15 -1.16685 -0.23136) (-2.46657e-15 -1.16828 -0.426615) (-2.38977e-15 -1.23761 -0.671105) (-2.32083e-15 -1.40716 -0.979888) (-2.27081e-15 -1.61153 -1.27873) (-2.21815e-15 -1.71316 -1.45042) (-2.12564e-15 -1.63091 -1.44664) (-1.95704e-15 -1.45899 -1.31476) (-1.70233e-15 -1.29228 -1.15282) (-1.40292e-15 -1.1943 -1.05083) (-1.12734e-15 -1.14546 -1.049) (-9.14972e-16 -1.1172 -1.13079) (-7.65265e-16 -1.07987 -1.29179) (-6.63519e-16 -0.984622 -1.48752) (-5.96517e-16 -0.823919 -1.6505) (-5.54594e-16 -0.622558 -1.75279) (-5.30199e-16 -0.418196 -1.81094) (-5.17834e-16 -0.23979 -1.85766) (-5.14113e-16 -0.102319 -1.91797) (-5.17717e-16 -0.00900422 -2.01466) (-5.29356e-16 0.127401 -2.13311) (-5.42306e-16 0.225205 -2.27564) (-5.69117e-16 0.33691 -2.42699) (-6.24807e-16 0.448403 -2.59825) (-7.12748e-16 0.552676 -2.79601) (-8.27369e-16 0.663934 -3.01621) (-9.5624e-16 0.791565 -3.23871) (-1.08376e-15 0.925843 -3.43699) (-1.1947e-15 1.04996 -3.58277) (-1.27907e-15 1.14046 -3.66184) (-1.33468e-15 1.17914 -3.68918) (-1.36557e-15 1.16469 -3.68421) (-1.37888e-15 1.10422 -3.67123) (-1.37947e-15 1.01575 -3.65948) (-1.36808e-15 0.91729 -3.63332) (-1.34655e-15 0.81549 -3.57847) (-1.31659e-15 0.714714 -3.5043) (-1.27599e-15 0.623177 -3.41311) (-1.22528e-15 0.541119 -3.30358) (-1.16727e-15 0.447694 -3.18083) (-1.10359e-15 0.344941 -3.052) (-1.03656e-15 0.235965 -2.92556) (-9.71393e-16 0.106119 -2.78793) (-9.11649e-16 -0.0417218 -2.59805) (-8.46102e-16 -0.18103 -2.45831) (-7.86164e-16 -0.289598 -2.31461) (-7.24959e-16 -0.37174 -2.13959) (-6.65489e-16 -0.423656 -1.95056) (-6.10991e-16 -0.416318 -1.76594) (-5.63751e-16 -0.358759 -1.58871) (-5.25056e-16 -0.273511 -1.43311) (-4.97767e-16 -0.188894 -1.29237) (-4.71219e-16 -0.15843 -1.32575) (-4.68131e-16 -0.00455756 -1.1012) (-1.80388e-16 0.53319 -0.576989) (-6.9509e-16 -0.0524708 0.829479) (-8.20113e-16 -0.147856 0.757752) (-7.16566e-16 -0.137763 0.654324) (-7.41598e-16 -0.121878 0.610707) (-7.24262e-16 -0.110154 0.601144) (-7.12124e-16 -0.102571 0.606638) (-6.97267e-16 -0.105307 0.633668) (-6.8927e-16 -0.116291 0.666771) (-7.0057e-16 -0.150471 0.702275) (-7.36439e-16 -0.213596 0.727441) (-7.9458e-16 -0.30938 0.737761) (-8.77944e-16 -0.428003 0.747065) (-9.95232e-16 -0.573471 0.742869) (-1.15105e-15 -0.705612 0.722474) (-1.32385e-15 -0.803121 0.645526) (-1.48022e-15 -0.804027 0.560262) (-1.61657e-15 -0.837009 0.542319) (-1.77402e-15 -0.958685 0.519166) (-1.95954e-15 -1.08428 0.443605) (-2.14683e-15 -1.21943 0.342826) (-2.32168e-15 -1.27766 0.270098) (-2.46081e-15 -1.30895 0.148729) (-2.53436e-15 -1.27929 0.0497122) (-2.54123e-15 -1.19198 -0.0306781) (-2.5019e-15 -1.13657 -0.174265) (-2.43747e-15 -1.12502 -0.369706) (-2.36169e-15 -1.1788 -0.608576) (-2.29424e-15 -1.34258 -0.912853) (-2.24978e-15 -1.56068 -1.22323) (-2.20967e-15 -1.69134 -1.42643) (-2.13665e-15 -1.64094 -1.4655) (-1.99187e-15 -1.48669 -1.37037) (-1.75812e-15 -1.31923 -1.22327) (-1.46818e-15 -1.20834 -1.11591) (-1.18939e-15 -1.14142 -1.09764) (-9.67426e-16 -1.09332 -1.16209) (-8.07537e-16 -1.04174 -1.3098) (-6.97329e-16 -0.945062 -1.5035) (-6.24004e-16 -0.792762 -1.68027) (-5.77844e-16 -0.603315 -1.80562) (-5.51149e-16 -0.405628 -1.88525) (-5.38089e-16 -0.227209 -1.94579) (-5.34852e-16 -0.0850176 -2.01313) (-5.39877e-16 0.0171532 -2.11511) (-5.5277e-16 0.158086 -2.23601) (-5.69426e-16 0.257213 -2.37903) (-6.03089e-16 0.368052 -2.54022) (-6.66224e-16 0.483687 -2.7205) (-7.58953e-16 0.592306 -2.91741) (-8.73911e-16 0.703973 -3.12506) (-9.98575e-16 0.827612 -3.32392) (-1.11858e-15 0.9536 -3.49406) (-1.2209e-15 1.06581 -3.61639) (-1.29748e-15 1.14538 -3.67841) (-1.34694e-15 1.17659 -3.69265) (-1.37309e-15 1.15845 -3.67825) (-1.38295e-15 1.09694 -3.66039) (-1.38177e-15 1.00762 -3.647) (-1.37016e-15 0.906799 -3.62084) (-1.34911e-15 0.802777 -3.56572) (-1.32083e-15 0.700477 -3.49253) (-1.28362e-15 0.60695 -3.40579) (-1.23718e-15 0.522591 -3.30211) (-1.18351e-15 0.42725 -3.18468) (-1.12368e-15 0.32403 -3.0615) (-1.05937e-15 0.214451 -2.94044) (-9.9556e-16 0.0797312 -2.80428) (-9.3272e-16 -0.0717783 -2.61985) (-8.65824e-16 -0.210974 -2.47412) (-8.02657e-16 -0.322648 -2.32782) (-7.38485e-16 -0.40834 -2.1449) (-6.76078e-16 -0.460671 -1.95545) (-6.19059e-16 -0.45257 -1.77027) (-5.69544e-16 -0.391906 -1.59175) (-5.28889e-16 -0.30122 -1.43515) (-4.99136e-16 -0.202053 -1.27947) (-4.69394e-16 -0.158311 -1.30639) (-4.72349e-16 -0.0816995 -1.22385) (-1.95173e-16 0.458264 -0.648252) (-7.8659e-16 -0.0366123 0.978752) (-8.06477e-16 -0.123441 0.895511) (-7.48365e-16 -0.118355 0.813888) (-7.57016e-16 -0.109128 0.77091) (-7.41343e-16 -0.100258 0.747977) (-7.26876e-16 -0.0964838 0.745164) (-7.08987e-16 -0.105338 0.760179) (-6.97088e-16 -0.119205 0.78114) (-7.03351e-16 -0.153384 0.804735) (-7.33292e-16 -0.218383 0.820628) (-7.85634e-16 -0.314897 0.824165) (-8.62907e-16 -0.434105 0.826096) (-9.71375e-16 -0.57256 0.81367) (-1.11452e-15 -0.694446 0.783183) (-1.27354e-15 -0.784394 0.703347) (-1.4221e-15 -0.79169 0.624341) (-1.56149e-15 -0.832682 0.604309) (-1.72497e-15 -0.946996 0.576948) (-1.91501e-15 -1.06594 0.505084) (-2.10671e-15 -1.19632 0.409737) (-2.2852e-15 -1.25748 0.338228) (-2.42651e-15 -1.28965 0.215529) (-2.50135e-15 -1.257 0.114059) (-2.50928e-15 -1.16811 0.0308332) (-2.471e-15 -1.10617 -0.11802) (-2.40762e-15 -1.08258 -0.314232) (-2.3328e-15 -1.12154 -0.547465) (-2.26634e-15 -1.2783 -0.844754) (-2.2261e-15 -1.50666 -1.161) (-2.19672e-15 -1.66306 -1.38987) (-2.14155e-15 -1.64296 -1.46863) (-2.02023e-15 -1.50874 -1.41195) (-1.80946e-15 -1.34441 -1.28652) (-1.5331e-15 -1.22392 -1.18103) (-1.25527e-15 -1.14057 -1.15016) (-1.02636e-15 -1.07351 -1.19763) (-8.57474e-16 -1.00682 -1.32987) (-7.39024e-16 -0.906465 -1.51751) (-6.58994e-16 -0.760826 -1.70416) (-6.07843e-16 -0.582817 -1.85125) (-5.77974e-16 -0.39468 -1.95488) (-5.63408e-16 -0.222059 -2.03412) (-5.5996e-16 -0.0820769 -2.11272) (-5.65621e-16 0.019786 -2.22329) (-5.804e-16 0.166079 -2.3508) (-6.0152e-16 0.273361 -2.49644) (-6.41927e-16 0.392907 -2.66005) (-7.11236e-16 0.514431 -2.83977) (-8.06964e-16 0.626201 -3.02804) (-9.20699e-16 0.737238 -3.21791) (-1.04031e-15 0.856516 -3.39225) (-1.15258e-15 0.975019 -3.53433) (-1.24628e-15 1.07718 -3.63379) (-1.315e-15 1.14708 -3.68142) (-1.35831e-15 1.17156 -3.68564) (-1.37992e-15 1.15006 -3.66416) (-1.38636e-15 1.08769 -3.64173) (-1.38329e-15 0.997418 -3.62569) (-1.37183e-15 0.893973 -3.60033) (-1.35194e-15 0.78687 -3.54725) (-1.32546e-15 0.683209 -3.47571) (-1.29164e-15 0.588295 -3.39256) (-1.24972e-15 0.50212 -3.29456) (-1.2006e-15 0.405397 -3.18212) (-1.14467e-15 0.302337 -3.06345) (-1.08315e-15 0.192451 -2.94618) (-1.02155e-15 0.0523482 -2.80387) (-9.56678e-16 -0.103892 -2.6212) (-8.8845e-16 -0.241549 -2.47458) (-8.20267e-16 -0.356161 -2.33245) (-7.51901e-16 -0.446326 -2.1444) (-6.85869e-16 -0.500296 -1.95434) (-6.26073e-16 -0.492399 -1.76622) (-5.74321e-16 -0.429124 -1.58549) (-5.31368e-16 -0.331794 -1.41937) (-4.99606e-16 -0.215751 -1.26877) (-4.66417e-16 -0.151247 -1.26375) (-4.76151e-16 -0.142759 -1.27901) (-1.84588e-16 0.357218 -0.676855) (-8.15611e-16 -0.0221965 1.10869) (-8.14117e-16 -0.103306 1.02534) (-7.80662e-16 -0.105327 0.959242) (-7.7813e-16 -0.102259 0.913438) (-7.63784e-16 -0.094473 0.884788) (-7.47228e-16 -0.0942183 0.875112) (-7.26232e-16 -0.107527 0.878986) (-7.10162e-16 -0.124383 0.890408) (-7.10561e-16 -0.158869 0.904964) (-7.33611e-16 -0.224006 0.914183) (-7.78687e-16 -0.31941 0.912497) (-8.48301e-16 -0.436595 0.907948) (-9.47244e-16 -0.567826 0.887538) (-1.07807e-15 -0.682393 0.847415) (-1.22492e-15 -0.766028 0.765931) (-1.36782e-15 -0.78003 0.693044) (-1.51133e-15 -0.827737 0.669635) (-1.68102e-15 -0.935553 0.638176) (-1.87527e-15 -1.04865 0.569574) (-2.07039e-15 -1.17464 0.479392) (-2.25108e-15 -1.23791 0.407779) (-2.39311e-15 -1.26974 0.283926) (-2.46825e-15 -1.23523 0.180292) (-2.47689e-15 -1.145 0.0935528) (-2.43936e-15 -1.07615 -0.0619203) (-2.37689e-15 -1.0412 -0.25973) (-2.303e-15 -1.06669 -0.487678) (-2.23725e-15 -1.21576 -0.776083) (-2.20021e-15 -1.45104 -1.09321) (-2.17986e-15 -1.62897 -1.34165) (-2.14078e-15 -1.63743 -1.45624) (-2.04194e-15 -1.52426 -1.43845) (-1.85519e-15 -1.36689 -1.33984) (-1.59581e-15 -1.24019 -1.24318) (-1.32313e-15 -1.14241 -1.20486) (-1.09051e-15 -1.05754 -1.23748) (-9.14506e-16 -0.975069 -1.35335) (-7.88677e-16 -0.868408 -1.53125) (-7.02105e-16 -0.72606 -1.72255) (-6.45658e-16 -0.55592 -1.88723) (-6.12107e-16 -0.375139 -2.01387) (-5.95613e-16 -0.205681 -2.11369) (-5.91832e-16 -0.0641929 -2.20661) (-5.98506e-16 0.0451096 -2.32695) (-6.14888e-16 0.194165 -2.45835) (-6.40299e-16 0.303837 -2.60532) (-6.86655e-16 0.423918 -2.7702) (-7.60591e-16 0.546896 -2.94557) (-8.57599e-16 0.659125 -3.12184) (-9.68648e-16 0.767549 -3.29211) (-1.08229e-15 0.880963 -3.44236) (-1.1864e-15 0.991694 -3.55838) (-1.27126e-15 1.08501 -3.63601) (-1.3319e-15 1.14655 -3.67159) (-1.36885e-15 1.16507 -3.66958) (-1.38597e-15 1.14063 -3.644) (-1.38913e-15 1.07801 -3.61816) (-1.38405e-15 0.987708 -3.59959) (-1.3726e-15 0.882665 -3.57563) (-1.35417e-15 0.773394 -3.52733) (-1.32963e-15 0.668679 -3.45909) (-1.29889e-15 0.573147 -3.3787) (-1.26132e-15 0.485287 -3.28532) (-1.21659e-15 0.386825 -3.1779) (-1.16431e-15 0.283688 -3.06418) (-1.10542e-15 0.172765 -2.95113) (-1.04568e-15 0.027191 -2.80421) (-9.78609e-16 -0.134585 -2.62926) (-9.09219e-16 -0.27068 -2.47701) (-8.37403e-16 -0.388358 -2.33376) (-7.65383e-16 -0.481804 -2.13954) (-6.95901e-16 -0.535342 -1.94862) (-6.33154e-16 -0.527254 -1.75975) (-5.78976e-16 -0.463726 -1.58046) (-5.33557e-16 -0.360927 -1.40669) (-4.99587e-16 -0.232093 -1.26467) (-4.62243e-16 -0.151903 -1.20793) (-4.78017e-16 -0.137709 -1.22997) (-1.9655e-16 0.271311 -0.732551) (-6.54127e-16 -0.0138037 1.24444) (-8.19565e-16 -0.0866737 1.17112) (-8.16002e-16 -0.0924482 1.11034) (-8.04808e-16 -0.0948171 1.05751) (-7.91736e-16 -0.0909835 1.025) (-7.73827e-16 -0.0943681 1.00855) (-7.50477e-16 -0.110003 1.00029) (-7.30804e-16 -0.127507 1.0034) (-7.24746e-16 -0.162946 1.00921) (-7.39494e-16 -0.227689 1.01121) (-7.76207e-16 -0.321961 1.00417) (-8.36853e-16 -0.437261 0.993313) (-9.25459e-16 -0.561395 0.965518) (-1.04425e-15 -0.669319 0.916325) (-1.18032e-15 -0.747614 0.83426) (-1.31921e-15 -0.769131 0.766139) (-1.46727e-15 -0.822424 0.738144) (-1.64283e-15 -0.924381 0.703208) (-1.84064e-15 -1.03275 0.637664) (-2.03807e-15 -1.15414 0.552184) (-2.21945e-15 -1.2183 0.479066) (-2.36062e-15 -1.24883 0.353776) (-2.4351e-15 -1.2131 0.247743) (-2.44401e-15 -1.12118 0.156911) (-2.40711e-15 -1.04565 -0.00603018) (-2.34557e-15 -1.00097 -0.207088) (-2.27259e-15 -1.0144 -0.430215) (-2.2074e-15 -1.15494 -0.708156) (-2.17272e-15 -1.39437 -1.02159) (-2.15984e-15 -1.58987 -1.28413) (-2.13498e-15 -1.62497 -1.42999) (-2.05721e-15 -1.53324 -1.44961) (-1.89466e-15 -1.3851 -1.38115) (-1.65476e-15 -1.25525 -1.29929) (-1.39102e-15 -1.14673 -1.25919) (-1.15809e-15 -1.04549 -1.28031) (-9.77263e-16 -0.947359 -1.38031) (-8.45396e-16 -0.832854 -1.54574) (-7.52916e-16 -0.69111 -1.73652) (-6.91197e-16 -0.527582 -1.91375) (-6.53534e-16 -0.355649 -2.06082) (-6.3446e-16 -0.19325 -2.18118) (-6.29651e-16 -0.055789 -2.28916) (-6.3653e-16 0.0519688 -2.42085) (-6.54748e-16 0.204636 -2.56069) (-6.84482e-16 0.322072 -2.7095) (-7.36049e-16 0.447707 -2.87037) (-8.13267e-16 0.572691 -3.0363) (-9.10069e-16 0.684761 -3.1975) (-1.0173e-15 0.790498 -3.34724) (-1.12426e-15 0.898613 -3.47399) (-1.21989e-15 1.00253 -3.56704) (-1.29568e-15 1.08879 -3.62478) (-1.34801e-15 1.14404 -3.6488) (-1.37834e-15 1.15737 -3.64393) (-1.39089e-15 1.12977 -3.61817) (-1.391e-15 1.06651 -3.59029) (-1.3841e-15 0.976051 -3.5688) (-1.37261e-15 0.869515 -3.54502) (-1.35585e-15 0.7573 -3.5005) (-1.33367e-15 0.650459 -3.43562) (-1.30606e-15 0.554151 -3.35669) (-1.27269e-15 0.465261 -3.26653) (-1.23239e-15 0.365494 -3.16331) (-1.18381e-15 0.262649 -3.05341) (-1.12771e-15 0.149668 -2.94322) (-1.07161e-15 -0.00216959 -2.77733) (-1.00283e-15 -0.16831 -2.62429) (-9.32818e-16 -0.301297 -2.47535) (-8.55895e-16 -0.421974 -2.33003) (-7.79007e-16 -0.520117 -2.13298) (-7.05402e-16 -0.574849 -1.93874) (-6.39163e-16 -0.567237 -1.74487) (-5.82165e-16 -0.503908 -1.56174) (-5.34381e-16 -0.393237 -1.38501) (-4.97943e-16 -0.253462 -1.24357) (-4.56039e-16 -0.153817 -1.13855) (-4.80615e-16 -0.162741 -1.23833) (-2.49346e-16 0.143384 -0.814107) (-9.75657e-16 -0.00415297 1.36544) (-8.36345e-16 -0.0729973 1.29857) (-8.48413e-16 -0.0826778 1.24478) (-8.34982e-16 -0.0873899 1.19056) (-8.23163e-16 -0.0866607 1.15679) (-8.04876e-16 -0.0936492 1.13552) (-7.80084e-16 -0.112749 1.11913) (-7.57409e-16 -0.131576 1.11578) (-7.45361e-16 -0.167612 1.11511) (-7.52072e-16 -0.230312 1.11243) (-7.79804e-16 -0.32152 1.10046) (-8.30617e-16 -0.433792 1.08316) (-9.08468e-16 -0.552963 1.04768) (-1.01557e-15 -0.65489 0.989973) (-1.14203e-15 -0.728873 0.907513) (-1.27798e-15 -0.75976 0.842718) (-1.43032e-15 -0.816618 0.810006) (-1.61087e-15 -0.913128 0.772012) (-1.81127e-15 -1.01818 0.709101) (-2.00968e-15 -1.13513 0.627638) (-2.19015e-15 -1.19882 0.551861) (-2.3289e-15 -1.2274 0.425026) (-2.40169e-15 -1.19003 0.316386) (-2.41046e-15 -1.09628 0.220617) (-2.37406e-15 -1.01453 0.050148) (-2.3135e-15 -0.961428 -0.155546) (-2.24139e-15 -0.964392 -0.374397) (-2.17676e-15 -1.09635 -0.640842) (-2.14394e-15 -1.3379 -0.946862) (-2.13722e-15 -1.54823 -1.2183) (-2.12479e-15 -1.60627 -1.39092) (-2.06642e-15 -1.53521 -1.44563) (-1.92763e-15 -1.39851 -1.40901) (-1.70884e-15 -1.26975 -1.34726) (-1.45727e-15 -1.15207 -1.31099) (-1.2274e-15 -1.03624 -1.32458) (-1.04436e-15 -0.922797 -1.41062) (-9.08297e-16 -0.79872 -1.5622) (-8.11139e-16 -0.654675 -1.74789) (-7.44825e-16 -0.49523 -1.93185) (-7.03204e-16 -0.329577 -2.09447) (-6.81387e-16 -0.171608 -2.23285) (-6.75382e-16 -0.035256 -2.35604) (-6.82932e-16 0.0816003 -2.49814) (-7.02762e-16 0.231355 -2.64457) (-7.36188e-16 0.349688 -2.79425) (-7.91608e-16 0.474801 -2.95108) (-8.70354e-16 0.598374 -3.1069) (-9.65347e-16 0.708209 -3.25305) (-1.06749e-15 0.809955 -3.38331) (-1.16683e-15 0.912173 -3.48802) (-1.25337e-15 1.00934 -3.56106) (-1.31971e-15 1.08933 -3.60265) (-1.36332e-15 1.13999 -3.6166) (-1.38656e-15 1.14954 -3.61032) (-1.39419e-15 1.11893 -3.5873) (-1.39128e-15 1.05475 -3.55967) (-1.38269e-15 0.964707 -3.53583) (-1.37101e-15 0.857709 -3.5116) (-1.35571e-15 0.743772 -3.4701) (-1.33593e-15 0.635377 -3.40912) (-1.3114e-15 0.538306 -3.33262) (-1.28196e-15 0.448219 -3.24492) (-1.24584e-15 0.347326 -3.14568) (-1.2007e-15 0.244723 -3.04118) (-1.14704e-15 0.127664 -2.9353) (-1.09359e-15 -0.0277463 -2.75685) (-1.02368e-15 -0.197829 -2.63234) (-9.53086e-16 -0.332219 -2.47998) (-8.73643e-16 -0.455992 -2.32488) (-7.9299e-16 -0.556513 -2.12374) (-7.15287e-16 -0.610561 -1.92635) (-6.45216e-16 -0.602127 -1.7293) (-5.84975e-16 -0.539208 -1.54497) (-5.34571e-16 -0.424691 -1.37125) (-4.95434e-16 -0.279812 -1.21383) (-4.49543e-16 -0.154854 -1.09449) (-4.76896e-16 -0.158662 -1.25718) (-2.71019e-16 0.0561732 -0.8965) (-9.95678e-16 0.00181447 1.49236) (-8.71386e-16 -0.059485 1.4297) (-8.79109e-16 -0.0709068 1.37921) (-8.68169e-16 -0.0779024 1.32502) (-8.57982e-16 -0.0791625 1.28975) (-8.40565e-16 -0.0881997 1.26473) (-8.15988e-16 -0.109539 1.2428) (-7.91348e-16 -0.130679 1.23248) (-7.73893e-16 -0.167533 1.22539) (-7.72542e-16 -0.230461 1.2173) (-7.9137e-16 -0.319835 1.2004) (-8.32012e-16 -0.42855 1.1769) (-8.98733e-16 -0.542471 1.13416) (-9.94427e-16 -0.63945 1.06898) (-1.11217e-15 -0.710783 0.985844) (-1.24562e-15 -0.749776 0.92261) (-1.4013e-15 -0.809704 0.885513) (-1.58548e-15 -0.902202 0.844889) (-1.78716e-15 -1.00468 0.784) (-1.98508e-15 -1.11707 0.705598) (-2.163e-15 -1.1795 0.626081) (-2.29787e-15 -1.20592 0.497345) (-2.36801e-15 -1.16613 0.385592) (-2.37618e-15 -1.06976 0.283329) (-2.3404e-15 -0.981829 0.105033) (-2.281e-15 -0.922397 -0.106492) (-2.20975e-15 -0.916644 -0.321305) (-2.14569e-15 -1.04034 -0.575218) (-2.11436e-15 -1.28194 -0.870707) (-2.11265e-15 -1.50376 -1.1463) (-2.1109e-15 -1.58157 -1.34065) (-2.07016e-15 -1.52979 -1.42736) (-1.95419e-15 -1.40706 -1.42324) (-1.75738e-15 -1.281 -1.38497) (-1.52053e-15 -1.15693 -1.35752) (-1.29673e-15 -1.02919 -1.36849) (-1.11407e-15 -0.901953 -1.44343) (-9.75778e-16 -0.768044 -1.58111) (-8.75448e-16 -0.620825 -1.75856) (-8.05592e-16 -0.464319 -1.94404) (-7.60536e-16 -0.304426 -2.11685) (-7.35998e-16 -0.152302 -2.26918) (-7.28502e-16 -0.020852 -2.40527) (-7.36219e-16 0.0953037 -2.5589) (-7.57299e-16 0.245575 -2.71446) (-7.93682e-16 0.367619 -2.86483) (-8.51853e-16 0.495622 -3.01523) (-9.30753e-16 0.61807 -3.1594) (-1.0226e-15 0.725592 -3.29015) (-1.11857e-15 0.823572 -3.40181) (-1.20946e-15 0.920568 -3.48635) (-1.28639e-15 1.01216 -3.54172) (-1.34297e-15 1.08741 -3.57122) (-1.37745e-15 1.13479 -3.57813) (-1.393e-15 1.14175 -3.57047) (-1.39517e-15 1.10816 -3.5508) (-1.38909e-15 1.04213 -3.5249) (-1.37898e-15 0.951858 -3.49844) (-1.36728e-15 0.84421 -3.47176) (-1.35361e-15 0.727654 -3.43054) (-1.33659e-15 0.616688 -3.37196) (-1.31547e-15 0.51822 -3.29766) (-1.28988e-15 0.42744 -3.2122) (-1.25779e-15 0.325994 -3.11555) (-1.21595e-15 0.224001 -3.0149) (-1.16477e-15 0.101819 -2.91114) (-1.11293e-15 -0.0574041 -2.72766) (-1.04426e-15 -0.22924 -2.61964) (-9.72797e-16 -0.363884 -2.47415) (-8.91114e-16 -0.490828 -2.31626) (-8.06586e-16 -0.595832 -2.11402) (-7.24417e-16 -0.652155 -1.91194) (-6.49943e-16 -0.644046 -1.70719) (-5.85933e-16 -0.580661 -1.51597) (-5.32631e-16 -0.462168 -1.34009) (-4.91376e-16 -0.307838 -1.17077) (-4.41751e-16 -0.152835 -1.07898) (-4.69322e-16 -0.141585 -1.19743) (-3.46069e-16 -0.146334 -1.04255) (-9.86077e-16 0.010433 1.60527) (-9.04114e-16 -0.0458496 1.54908) (-9.09226e-16 -0.060441 1.50283) (-9.01466e-16 -0.0683215 1.45158) (-8.93839e-16 -0.0708862 1.41667) (-8.78495e-16 -0.0823576 1.38905) (-8.55537e-16 -0.107014 1.36338) (-8.30132e-16 -0.130766 1.34677) (-8.09159e-16 -0.167935 1.3352) (-8.01198e-16 -0.230098 1.32386) (-8.11409e-16 -0.317239 1.30269) (-8.42246e-16 -0.421688 1.27337) (-8.98177e-16 -0.530894 1.22392) (-9.82921e-16 -0.623976 1.15252) (-1.0925e-15 -0.694611 1.06854) (-1.22332e-15 -0.73968 1.00553) (-1.38086e-15 -0.802065 0.964472) (-1.56682e-15 -0.89191 0.921533) (-1.76814e-15 -0.991608 0.862007) (-1.96391e-15 -1.09914 0.785527) (-2.13763e-15 -1.15991 0.701731) (-2.26728e-15 -1.18414 0.571246) (-2.33392e-15 -1.14236 0.45585) (-2.341e-15 -1.04251 0.345428) (-2.30577e-15 -0.947966 0.159408) (-2.24754e-15 -0.882884 -0.0582174) (-2.17737e-15 -0.870792 -0.269869) (-2.11408e-15 -0.987256 -0.510521) (-2.08414e-15 -1.22715 -0.793151) (-2.08659e-15 -1.45717 -1.06871) (-2.09399e-15 -1.55181 -1.28027) (-2.06901e-15 -1.51799 -1.39578) (-1.97452e-15 -1.40831 -1.42326) (-1.79989e-15 -1.28873 -1.41107) (-1.57969e-15 -1.16099 -1.39721) (-1.36465e-15 -1.02388 -1.41001) (-1.18487e-15 -0.884339 -1.47744) (-1.04642e-15 -0.740339 -1.60252) (-9.44662e-16 -0.588658 -1.76981) (-8.72726e-16 -0.432001 -1.95219) (-8.25295e-16 -0.274698 -2.12963) (-7.98629e-16 -0.125929 -2.29147) (-7.89894e-16 0.00251709 -2.43863) (-7.98336e-16 0.124858 -2.60096) (-8.2045e-16 0.271545 -2.76302) (-8.58813e-16 0.39159 -2.91391) (-9.17919e-16 0.517412 -3.05886) (-9.95081e-16 0.636034 -3.19248) (-1.08218e-15 0.739902 -3.30924) (-1.17062e-15 0.833322 -3.40415) (-1.25209e-15 0.924909 -3.47096) (-1.31886e-15 1.01162 -3.51139) (-1.36524e-15 1.08347 -3.53208) (-1.38993e-15 1.12838 -3.53592) (-1.39696e-15 1.13363 -3.52823) (-1.39288e-15 1.09745 -3.51073) (-1.38321e-15 1.02921 -3.48636) (-1.3716e-15 0.938539 -3.45741) (-1.35999e-15 0.830953 -3.4273) (-1.34796e-15 0.713397 -3.38564) (-1.33381e-15 0.601027 -3.32913) (-1.31621e-15 0.501539 -3.2578) (-1.29436e-15 0.409279 -3.17496) (-1.26584e-15 0.307201 -3.08095) (-1.22668e-15 0.205985 -2.98518) (-1.17744e-15 0.0784522 -2.88478) (-1.12492e-15 -0.0831793 -2.71917) (-1.05886e-15 -0.257656 -2.61134) (-9.88592e-16 -0.395647 -2.46787) (-9.07256e-16 -0.525128 -2.30236) (-8.20261e-16 -0.631768 -2.09948) (-7.3388e-16 -0.688257 -1.89525) (-6.54661e-16 -0.67904 -1.68627) (-5.86392e-16 -0.614583 -1.49237) (-5.29927e-16 -0.495059 -1.31661) (-4.86843e-16 -0.332919 -1.14949) (-4.34137e-16 -0.15662 -1.05975) (-4.46074e-16 -0.123162 -1.07434) (-4.40398e-16 -0.210802 -1.07422) (-9.86036e-16 0.0156144 1.72141) (-9.31916e-16 -0.0334208 1.67055) (-9.39031e-16 -0.0497105 1.62642) (-9.3449e-16 -0.0586462 1.578) (-9.30209e-16 -0.0639821 1.5428) (-9.18126e-16 -0.0777183 1.51288) (-8.98432e-16 -0.104817 1.48447) (-8.7418e-16 -0.129524 1.46262) (-8.51215e-16 -0.16746 1.44598) (-8.3772e-16 -0.228795 1.4305) (-8.40389e-16 -0.312648 1.40587) (-8.62318e-16 -0.412248 1.37162) (-9.08212e-16 -0.51799 1.31655) (-9.82578e-16 -0.608075 1.24053) (-1.08426e-15 -0.678436 1.15576) (-1.21184e-15 -0.729257 1.09203) (-1.36933e-15 -0.793801 1.04741) (-1.55491e-15 -0.881451 1.00247) (-1.75392e-15 -0.978256 0.943562) (-1.94575e-15 -1.08093 0.86766) (-2.11368e-15 -1.13973 0.779057) (-2.23691e-15 -1.16151 0.64637) (-2.29937e-15 -1.11832 0.526338) (-2.30498e-15 -1.01442 0.40607) (-2.27032e-15 -0.913186 0.211674) (-2.21326e-15 -0.843081 -0.0117428) (-2.1445e-15 -0.826886 -0.221086) (-2.0822e-15 -0.937195 -0.447406) (-2.05368e-15 -1.17389 -0.715269) (-2.05966e-15 -1.40887 -0.987288) (-2.0748e-15 -1.51764 -1.21159) (-2.06368e-15 -1.50008 -1.35175) (-1.98903e-15 -1.40474 -1.4098) (-1.83619e-15 -1.29302 -1.42506) (-1.63391e-15 -1.1627 -1.42797) (-1.42984e-15 -1.01902 -1.44737) (-1.25519e-15 -0.869611 -1.51128) (-1.11854e-15 -0.716818 -1.62607) (-1.01702e-15 -0.559951 -1.78273) (-9.44519e-16 -0.402074 -1.95892) (-8.95977e-16 -0.247548 -2.13653) (-8.68062e-16 -0.103716 -2.30329) (-8.58556e-16 0.0187324 -2.458) (-8.67248e-16 0.143318 -2.62847) (-8.89643e-16 0.286054 -2.79813) (-9.2887e-16 0.4078 -2.94891) (-9.87608e-16 0.532731 -3.08726) (-1.0617e-15 0.648246 -3.21007) (-1.14272e-15 0.748811 -3.31336) (-1.2225e-15 0.838054 -3.39291) (-1.29392e-15 0.925181 -3.44432) (-1.35021e-15 1.00855 -3.47283) (-1.38589e-15 1.07869 -3.4875) (-1.39988e-15 1.12213 -3.4907) (-1.39731e-15 1.12576 -3.48437) (-1.38607e-15 1.08657 -3.46749) (-1.37231e-15 1.01532 -3.44179) (-1.35925e-15 0.923454 -3.40841) (-1.34812e-15 0.81558 -3.37293) (-1.33816e-15 0.696138 -3.32822) (-1.32728e-15 0.581481 -3.27167) (-1.31362e-15 0.480473 -3.20196) (-1.29568e-15 0.387146 -3.12181) (-1.27054e-15 0.284495 -3.02928) (-1.23365e-15 0.183795 -2.93612) (-1.18653e-15 0.0509782 -2.83442) (-1.13476e-15 -0.115627 -2.68223) (-1.07176e-15 -0.290231 -2.58195) (-1.00255e-15 -0.428741 -2.4532) (-9.21842e-16 -0.561694 -2.28659) (-8.32619e-16 -0.672502 -2.08566) (-7.42032e-16 -0.732086 -1.87759) (-6.57756e-16 -0.723418 -1.66061) (-5.84933e-16 -0.657949 -1.45799) (-5.25216e-16 -0.534138 -1.27567) (-4.80421e-16 -0.3637 -1.11115) (-4.26359e-16 -0.168447 -1.00122) (-4.30111e-16 -0.115664 -0.960637) (-3.40969e-16 -0.236678 -1.1675) (-9.92545e-16 0.0229506 1.83054) (-9.55759e-16 -0.0238351 1.78338) (-9.65982e-16 -0.0398128 1.74312) (-9.64941e-16 -0.0503461 1.69806) (-9.64481e-16 -0.0579242 1.66377) (-9.56416e-16 -0.0742968 1.63212) (-9.41081e-16 -0.102895 1.60156) (-9.1997e-16 -0.128922 1.57571) (-8.97697e-16 -0.16621 1.55581) (-8.81097e-16 -0.223831 1.53817) (-8.77665e-16 -0.304219 1.51059) (-8.92148e-16 -0.400006 1.47128) (-9.29304e-16 -0.502186 1.41144) (-9.9421e-16 -0.591937 1.33253) (-1.0881e-15 -0.662833 1.24739) (-1.21141e-15 -0.718586 1.18247) (-1.36671e-15 -0.784926 1.13477) (-1.54944e-15 -0.870689 1.08785) (-1.74396e-15 -0.965066 1.02857) (-1.92992e-15 -1.06272 0.951781) (-2.0905e-15 -1.11887 0.857997) (-2.20637e-15 -1.13784 0.722705) (-2.26415e-15 -1.09309 0.597087) (-2.26802e-15 -0.985475 0.465565) (-2.23374e-15 -0.877576 0.262158) (-2.17801e-15 -0.802789 0.0334387) (-2.1108e-15 -0.784181 -0.173877) (-2.04987e-15 -0.889863 -0.384753) (-2.02311e-15 -1.12264 -0.636396) (-2.03229e-15 -1.35992 -0.902357) (-2.05394e-15 -1.4794 -1.13572) (-2.05488e-15 -1.47695 -1.29708) (-1.99822e-15 -1.39677 -1.38328) (-1.86628e-15 -1.29191 -1.4259) (-1.68255e-15 -1.16209 -1.44857) (-1.49115e-15 -1.01417 -1.47859) (-1.32365e-15 -0.85681 -1.54315) (-1.19064e-15 -0.695809 -1.65052) (-1.091e-15 -0.532555 -1.79715) (-1.01946e-15 -0.372148 -1.96545) (-9.71216e-16 -0.218623 -2.13982) (-9.43166e-16 -0.0775869 -2.30777) (-9.33579e-16 0.0418094 -2.4681) (-9.432e-16 0.172525 -2.64328) (-9.6574e-16 0.310305 -2.81644) (-1.00468e-15 0.427826 -2.96728) (-1.06117e-15 0.547437 -3.1) (-1.13032e-15 0.658324 -3.21302) (-1.20366e-15 0.754683 -3.3043) (-1.27369e-15 0.839232 -3.37041) (-1.3346e-15 0.922234 -3.40896) (-1.38006e-15 1.00312 -3.4285) (-1.40413e-15 1.07268 -3.43974) (-1.40607e-15 1.11561 -3.44404) (-1.3926e-15 1.11772 -3.43928) (-1.37316e-15 1.07514 -3.42058) (-1.35465e-15 1.00031 -3.38985) (-1.34003e-15 0.907228 -3.34984) (-1.32968e-15 0.79973 -3.30826) (-1.32209e-15 0.680163 -3.26046) (-1.31463e-15 0.564743 -3.20402) (-1.3052e-15 0.462778 -3.13671) (-1.29156e-15 0.367443 -3.05948) (-1.26961e-15 0.263765 -2.96866) (-1.2343e-15 0.163178 -2.8788) (-1.189e-15 0.0250676 -2.77517) (-1.13785e-15 -0.147351 -2.65004) (-1.07903e-15 -0.321908 -2.55073) (-1.01283e-15 -0.462801 -2.43427) (-9.34314e-16 -0.598623 -2.26392) (-8.44143e-16 -0.710522 -2.06646) (-7.49893e-16 -0.770945 -1.85848) (-6.6059e-16 -0.761376 -1.63799) (-5.82937e-16 -0.694135 -1.43102) (-5.19652e-16 -0.566553 -1.24558) (-4.72959e-16 -0.395108 -1.08309) (-4.20612e-16 -0.189264 -0.989472) (-4.11176e-16 -0.118767 -0.898001) (-4.11331e-16 -0.222155 -1.16737) (-9.97426e-16 0.029418 1.94344) (-9.76436e-16 -0.0134943 1.8992) (-9.90023e-16 -0.0300598 1.86138) (-9.92826e-16 -0.0409352 1.81863) (-9.96359e-16 -0.0504772 1.78538) (-9.92904e-16 -0.0688873 1.75256) (-9.82841e-16 -0.0971741 1.72069) (-9.66384e-16 -0.125171 1.69171) (-9.46552e-16 -0.162401 1.66813) (-9.28845e-16 -0.218557 1.64699) (-9.21401e-16 -0.296291 1.61662) (-9.30376e-16 -0.3885 1.57342) (-9.60557e-16 -0.486154 1.50977) (-1.01729e-15 -0.575851 1.42914) (-1.10359e-15 -0.648156 1.34466) (-1.22147e-15 -0.707496 1.27842) (-1.37234e-15 -0.775544 1.22748) (-1.54969e-15 -0.859747 1.17803) (-1.73743e-15 -0.95185 1.11715) (-1.91564e-15 -1.04416 1.03796) (-2.06756e-15 -1.09699 0.93831) (-2.1754e-15 -1.11275 0.799353) (-2.22818e-15 -1.06555 0.666775) (-2.23013e-15 -0.95453 0.522682) (-2.19611e-15 -0.840265 0.309564) (-2.14232e-15 -0.762206 0.0754295) (-2.07679e-15 -0.743379 -0.130148) (-2.01739e-15 -0.845798 -0.323753) (-1.99285e-15 -1.0738 -0.557562) (-2.00488e-15 -1.31076 -0.815262) (-2.03204e-15 -1.43812 -1.05423) (-2.04339e-15 -1.44922 -1.23305) (-2.00281e-15 -1.38258 -1.34483) (-1.89049e-15 -1.28621 -1.41428) (-1.72533e-15 -1.15858 -1.45835) (-1.54777e-15 -1.0084 -1.50233) (-1.38902e-15 -0.844471 -1.57139) (-1.2612e-15 -0.676198 -1.67473) (-1.16486e-15 -0.507797 -1.81334) (-1.09565e-15 -0.345983 -1.97381) (-1.04903e-15 -0.194188 -2.14306) (-1.02205e-15 -0.0568315 -2.3091) (-1.01333e-15 0.0580369 -2.4726) (-1.02323e-15 0.192952 -2.65045) (-1.04526e-15 0.325141 -2.8267) (-1.08278e-15 0.44139 -2.97656) (-1.13573e-15 0.557563 -3.10254) (-1.19864e-15 0.664677 -3.20553) (-1.26315e-15 0.757222 -3.28551) (-1.32294e-15 0.837594 -3.33973) (-1.37334e-15 0.917211 -3.36778) (-1.40756e-15 0.996631 -3.38083) (-1.41872e-15 1.0664 -3.39052) (-1.40693e-15 1.10947 -3.39615) (-1.38116e-15 1.1093 -3.3909) (-1.35254e-15 1.06272 -3.36644) (-1.32863e-15 0.983737 -3.32594) (-1.31231e-15 0.889114 -3.2758) (-1.30325e-15 0.781809 -3.22629) (-1.29873e-15 0.661142 -3.17351) (-1.2953e-15 0.544044 -3.11543) (-1.29088e-15 0.441086 -3.04955) (-1.28234e-15 0.344188 -2.97546) (-1.2637e-15 0.23938 -2.88477) (-1.22946e-15 0.138496 -2.79544) (-1.18696e-15 -0.00257864 -2.6753) (-1.13713e-15 -0.179288 -2.5928) (-1.0825e-15 -0.35276 -2.51195) (-1.01921e-15 -0.495939 -2.40838) (-9.43208e-16 -0.63714 -2.24142) (-8.53097e-16 -0.753121 -2.04973) (-7.55925e-16 -0.817955 -1.84111) (-6.61871e-16 -0.809948 -1.6126) (-5.79242e-16 -0.741795 -1.39466) (-5.12282e-16 -0.607558 -1.20032) (-4.63499e-16 -0.428975 -1.03145) (-4.16041e-16 -0.208819 -0.968564) (-3.85049e-16 -0.129676 -0.858776) (-9.09222e-17 -0.271196 -1.09113) (-1.00107e-15 0.0362348 2.04856) (-9.92127e-16 -0.00382578 2.00902) (-1.00957e-15 -0.0214166 1.9752) (-1.01658e-15 -0.0323828 1.93561) (-1.02408e-15 -0.0435659 1.90419) (-1.02535e-15 -0.0632968 1.87113) (-1.02076e-15 -0.0908789 1.83845) (-1.01018e-15 -0.121578 1.80712) (-9.9487e-16 -0.159066 1.78115) (-9.78874e-16 -0.213709 1.75798) (-9.69755e-16 -0.288109 1.72565) (-9.74952e-16 -0.377735 1.67925) (-1e-15 -0.472474 1.61301) (-1.05014e-15 -0.559842 1.53167) (-1.12924e-15 -0.633428 1.44813) (-1.24057e-15 -0.696497 1.38024) (-1.38485e-15 -0.766094 1.32562) (-1.5544e-15 -0.849073 1.27272) (-1.7332e-15 -0.938766 1.20876) (-1.90196e-15 -1.02543 1.12569) (-2.04417e-15 -1.0745 1.01971) (-2.14358e-15 -1.08673 0.876408) (-2.19122e-15 -1.0361 0.735622) (-2.19116e-15 -0.921573 0.57768) (-2.15721e-15 -0.801441 0.354454) (-2.10556e-15 -0.721326 0.115972) (-2.04213e-15 -0.703989 -0.0867105) (-1.98466e-15 -0.804832 -0.262961) (-1.96287e-15 -1.02767 -0.478257) (-1.97764e-15 -1.26172 -0.725814) (-2.00958e-15 -1.39445 -0.967654) (-2.02984e-15 -1.4172 -1.16077) (-2.00344e-15 -1.36369 -1.29537) (-1.90924e-15 -1.2757 -1.39034) (-1.76221e-15 -1.15161 -1.45668) (-1.5991e-15 -1.00052 -1.51692) (-1.45027e-15 -0.832319 -1.59384) (-1.32894e-15 -0.658162 -1.69676) (-1.23709e-15 -0.48538 -1.82991) (-1.17133e-15 -0.321399 -1.98335) (-1.12745e-15 -0.169341 -2.14655) (-1.10252e-15 -0.0331488 -2.3089) (-1.09528e-15 0.08068 -2.47529) (-1.10597e-15 0.220188 -2.65298) (-1.12743e-15 0.34651 -2.8275) (-1.16244e-15 0.456348 -2.97591) (-1.21024e-15 0.565907 -3.09589) (-1.26542e-15 0.668311 -3.18946) (-1.32016e-15 0.756513 -3.25926) (-1.36961e-15 0.832597 -3.30335) (-1.40954e-15 0.909227 -3.32301) (-1.43165e-15 0.988123 -3.33125) (-1.42814e-15 1.05933 -3.34025) (-1.40077e-15 1.103 -3.34656) (-1.36128e-15 1.09911 -3.33731) (-1.3225e-15 1.04715 -3.30184) (-1.29243e-15 0.964184 -3.24701) (-1.27403e-15 0.868723 -3.18417) (-1.26661e-15 0.762695 -3.12646) (-1.26592e-15 0.642972 -3.07017) (-1.26717e-15 0.526047 -3.01172) (-1.26871e-15 0.422622 -2.94844) (-1.26633e-15 0.32281 -2.87721) (-1.25106e-15 0.216071 -2.78593) (-1.21712e-15 0.11212 -2.69636) (-1.17714e-15 -0.0275065 -2.55546) (-1.12871e-15 -0.205394 -2.54559) (-1.07883e-15 -0.381325 -2.47501) (-1.02025e-15 -0.528424 -2.36971) (-9.48425e-16 -0.672258 -2.20699) (-8.60252e-16 -0.78949 -2.02489) (-7.6157e-16 -0.856984 -1.82179) (-6.632e-16 -0.849202 -1.59139) (-5.75421e-16 -0.778973 -1.36942) (-5.04521e-16 -0.63896 -1.17333) (-4.53698e-16 -0.454459 -1.00097) (-4.02252e-16 -0.231547 -0.972577) (-3.65679e-16 -0.155839 -0.829127) (-1.65141e-16 -0.249118 -1.00209) (-1.01201e-15 0.0421563 2.15536) (-1.00157e-15 0.00539626 2.12129) (-1.02354e-15 -0.0122863 2.09015) (-1.03613e-15 -0.0242747 2.05367) (-1.04753e-15 -0.0371012 2.02435) (-1.05355e-15 -0.0576057 1.9921) (-1.0544e-15 -0.0848129 1.95965) (-1.04983e-15 -0.117371 1.9271) (-1.03978e-15 -0.154939 1.89874) (-1.02734e-15 -0.208494 1.87312) (-1.01904e-15 -0.279402 1.83898) (-1.0228e-15 -0.366301 1.79046) (-1.04459e-15 -0.458342 1.72285) (-1.08973e-15 -0.543513 1.64143) (-1.16233e-15 -0.618125 1.55826) (-1.26631e-15 -0.684769 1.48811) (-1.4022e-15 -0.755941 1.42912) (-1.56196e-15 -0.837868 1.37151) (-1.73005e-15 -0.924821 1.30301) (-1.88806e-15 -1.00583 1.21475) (-2.01991e-15 -1.05108 1.10176) (-2.11077e-15 -1.05934 0.952947) (-2.15324e-15 -1.00398 0.80231) (-2.1511e-15 -0.885664 0.629174) (-2.11702e-15 -0.760773 0.395495) (-2.06724e-15 -0.68041 0.154499) (-2.00673e-15 -0.666671 -0.0430738) (-1.95208e-15 -0.767639 -0.202788) (-1.93343e-15 -0.984856 -0.399732) (-1.951e-15 -1.21325 -0.635228) (-1.98707e-15 -1.34933 -0.877364) (-2.01487e-15 -1.38151 -1.08163) (-2.00082e-15 -1.33987 -1.23627) (-1.9231e-15 -1.25994 -1.35518) (-1.79339e-15 -1.14037 -1.44384) (-1.6449e-15 -0.990037 -1.52212) (-1.50674e-15 -0.819265 -1.6098) (-1.39284e-15 -0.641037 -1.71555) (-1.30636e-15 -0.465297 -1.84614) (-1.24486e-15 -0.300097 -1.99447) (-1.20457e-15 -0.148929 -2.15235) (-1.18254e-15 -0.0159179 -2.31043) (-1.1776e-15 0.0917278 -2.48011) (-1.18852e-15 0.237742 -2.65503) (-1.20861e-15 0.359 -2.82631) (-1.23997e-15 0.465478 -2.9713) (-1.28176e-15 0.570437 -3.08415) (-1.32849e-15 0.668749 -3.16801) (-1.37332e-15 0.753091 -3.228) (-1.41283e-15 0.825634 -3.26345) (-1.44221e-15 0.900088 -3.27637) (-1.45089e-15 0.979951 -3.28057) (-1.43077e-15 1.05313 -3.28871) (-1.38603e-15 1.09686 -3.2932) (-1.33148e-15 1.08803 -3.27471) (-1.2816e-15 1.02814 -3.22269) (-1.24467e-15 0.941092 -3.14901) (-1.2239e-15 0.845865 -3.07044) (-1.21857e-15 0.741635 -3.00314) (-1.22286e-15 0.621636 -2.94205) (-1.23017e-15 0.503776 -2.88139) (-1.23924e-15 0.399978 -2.81866) (-1.24394e-15 0.298005 -2.74959) (-1.23164e-15 0.188606 -2.65512) (-1.19688e-15 0.080583 -2.56158) (-1.15772e-15 -0.0523217 -2.42371) (-1.11295e-15 -0.229254 -2.46564) (-1.0678e-15 -0.411182 -2.4246) (-1.01515e-15 -0.562384 -2.32684) (-9.48882e-16 -0.710364 -2.17272) (-8.6457e-16 -0.831821 -2.002) (-7.66242e-16 -0.905463 -1.80383) (-6.64694e-16 -0.900825 -1.56967) (-5.72018e-16 -0.829889 -1.33884) (-4.96883e-16 -0.683005 -1.13364) (-4.44067e-16 -0.487588 -0.949853) (-3.9629e-16 -0.254218 -0.926633) (-3.60547e-16 -0.180366 -0.808574) (2.26392e-16 -0.282085 -0.965153) (-1.03418e-15 0.0480991 2.2582) (-1.01491e-15 0.0125886 2.22809) (-1.02985e-15 -0.00501268 2.20078) (-1.04996e-15 -0.0179653 2.16825) (-1.06574e-15 -0.0318834 2.14176) (-1.07623e-15 -0.0532382 2.11125) (-1.08232e-15 -0.0812182 2.07976) (-1.08379e-15 -0.114805 2.04728) (-1.07973e-15 -0.152228 2.01804) (-1.07271e-15 -0.204026 1.99221) (-1.06735e-15 -0.271058 1.95759) (-1.07119e-15 -0.353874 1.90745) (-1.09125e-15 -0.443483 1.83899) (-1.1328e-15 -0.527289 1.75761) (-1.19966e-15 -0.602356 1.67413) (-1.29589e-15 -0.672114 1.6009) (-1.42211e-15 -0.744998 1.53683) (-1.57062e-15 -0.826136 1.47345) (-1.72676e-15 -0.910095 1.39909) (-1.87317e-15 -0.985573 1.30453) (-1.9943e-15 -1.02711 1.18417) (-2.07667e-15 -1.03101 1.02901) (-2.11398e-15 -0.970038 0.866828) (-2.10954e-15 -0.847837 0.677068) (-2.07476e-15 -0.719287 0.433172) (-2.02613e-15 -0.640215 0.192106) (-1.96967e-15 -0.631055 0.00380577) (-1.91988e-15 -0.733116 -0.139677) (-1.90476e-15 -0.944933 -0.320639) (-1.92528e-15 -1.16496 -0.54318) (-1.96491e-15 -1.30341 -0.78359) (-1.99901e-15 -1.3424 -0.996258) (-1.99555e-15 -1.31174 -1.16821) (-1.93259e-15 -1.23934 -1.30923) (-1.81915e-15 -1.12501 -1.41984) (-1.68506e-15 -0.976587 -1.51696) (-1.55796e-15 -0.804892 -1.61751) (-1.45208e-15 -0.624224 -1.72913) (-1.37152e-15 -0.44647 -1.85992) (-1.31479e-15 -0.279438 -2.00513) (-1.27852e-15 -0.127866 -2.1586) (-1.25969e-15 0.00360399 -2.31285) (-1.25768e-15 0.114629 -2.48481) (-1.26872e-15 0.25787 -2.65704) (-1.28719e-15 0.374337 -2.82188) (-1.31413e-15 0.474532 -2.96189) (-1.34899e-15 0.57326 -3.06758) (-1.38674e-15 0.666713 -3.14174) (-1.42184e-15 0.746816 -3.19286) (-1.45186e-15 0.816042 -3.22155) (-1.47022e-15 0.889283 -3.22834) (-1.46375e-15 0.971489 -3.22809) (-1.4251e-15 1.04711 -3.23436) (-1.36143e-15 1.08984 -3.23382) (-1.29046e-15 1.07467 -3.20067) (-1.22844e-15 1.00517 -3.12675) (-1.18407e-15 0.913608 -3.03102) (-1.16069e-15 0.820184 -2.93507) (-1.15764e-15 0.719478 -2.85758) (-1.1676e-15 0.601511 -2.79276) (-1.1823e-15 0.484677 -2.73114) (-1.20077e-15 0.380702 -2.66994) (-1.21334e-15 0.274401 -2.60172) (-1.203e-15 0.160806 -2.50193) (-1.16585e-15 0.0490444 -2.40124) (-1.12535e-15 -0.0753903 -2.30432) (-1.08589e-15 -0.250235 -2.36983) (-1.04841e-15 -0.438517 -2.35474) (-1.00406e-15 -0.593816 -2.26228) (-9.45442e-16 -0.742635 -2.11993) (-8.67364e-16 -0.865792 -1.9663) (-7.71563e-16 -0.944048 -1.78117) (-6.68187e-16 -0.941157 -1.55243) (-5.7096e-16 -0.868751 -1.32215) (-4.91113e-16 -0.715691 -1.1163) (-4.35393e-16 -0.512069 -0.929533) (-3.87148e-16 -0.271178 -0.933827) (-2.93484e-16 -0.218712 -0.845893) (6.61161e-17 -0.299396 -0.925575) (-9.97739e-16 0.0529207 2.36293) (-1.04216e-15 0.0196322 2.33584) (-1.03087e-15 0.00184471 2.31146) (-1.05721e-15 -0.0120658 2.28267) (-1.07851e-15 -0.0268059 2.2591) (-1.0929e-15 -0.048685 2.23091) (-1.10389e-15 -0.077021 2.20123) (-1.11061e-15 -0.111436 2.16974) (-1.11226e-15 -0.148487 2.14) (-1.11122e-15 -0.198535 2.11395) (-1.11067e-15 -0.26282 2.07937) (-1.11685e-15 -0.341166 2.02868) (-1.13667e-15 -0.428155 1.95976) (-1.17574e-15 -0.511061 1.8786) (-1.23769e-15 -0.586382 1.79431) (-1.32631e-15 -0.658418 1.71738) (-1.44229e-15 -0.732646 1.64766) (-1.57878e-15 -0.813018 1.57764) (-1.7223e-15 -0.893874 1.49646) (-1.85667e-15 -0.963844 1.39475) (-1.96706e-15 -1.00141 1.26629) (-2.04109e-15 -1.00023 1.10313) (-2.07315e-15 -0.93377 0.927239) (-2.06593e-15 -0.808273 0.719818) (-2.02979e-15 -0.677063 0.46681) (-1.98166e-15 -0.60098 0.228922) (-1.93037e-15 -0.597546 0.0548338) (-1.88867e-15 -0.701796 -0.0728751) (-1.87759e-15 -0.908804 -0.24132) (-1.9009e-15 -1.11859 -0.451294) (-1.94357e-15 -1.25683 -0.687991) (-1.98282e-15 -1.30082 -0.906159) (-1.98828e-15 -1.27965 -1.09285) (-1.93834e-15 -1.21411 -1.25398) (-1.83991e-15 -1.10529 -1.38566) (-1.71975e-15 -0.959106 -1.50213) (-1.60376e-15 -0.788914 -1.6171) (-1.50618e-15 -0.606983 -1.73701) (-1.43182e-15 -0.427833 -1.87067) (-1.38008e-15 -0.260579 -2.01523) (-1.34799e-15 -0.110422 -2.16656) (-1.33252e-15 0.0172357 -2.31958) (-1.33243e-15 0.131369 -2.48986) (-1.34334e-15 0.270868 -2.65885) (-1.3598e-15 0.384415 -2.81662) (-1.38201e-15 0.480758 -2.95075) (-1.40997e-15 0.57436 -3.04814) (-1.43892e-15 0.663114 -3.11215) (-1.46483e-15 0.739563 -3.15569) (-1.48582e-15 0.806258 -3.17876) (-1.49235e-15 0.878396 -3.17865) (-1.46873e-15 0.962479 -3.17276) (-1.40983e-15 1.04032 -3.1755) (-1.32597e-15 1.08052 -3.16569) (-1.23723e-15 1.0578 -3.11196) (-1.16183e-15 0.978319 -3.01037) (-1.10953e-15 0.882312 -2.88964) (-1.08362e-15 0.79205 -2.77524) (-1.08287e-15 0.695719 -2.68519) (-1.09891e-15 0.578311 -2.61301) (-1.12296e-15 0.460955 -2.54746) (-1.15324e-15 0.356989 -2.48579) (-1.17337e-15 0.247024 -2.41654) (-1.16247e-15 0.127818 -2.3066) (-1.12043e-15 0.0170435 -2.19556) (-1.07825e-15 -0.0959792 -2.14462) (-1.0457e-15 -0.267132 -2.2442) (-1.01847e-15 -0.465139 -2.27508) (-9.84845e-16 -0.628016 -2.19756) (-9.36338e-16 -0.780052 -2.06911) (-8.6748e-16 -0.906852 -1.93113) (-7.77383e-16 -0.99275 -1.75852) (-6.74627e-16 -0.994878 -1.53412) (-5.7388e-16 -0.923259 -1.30059) (-4.88991e-16 -0.763824 -1.08673) (-4.29106e-16 -0.548185 -0.886741) (-3.8241e-16 -0.291255 -0.886074) (-2.88897e-16 -0.239477 -0.815123) (-1.28656e-16 -0.367296 -0.99716) (-9.42297e-16 0.0572343 2.46174) (-1.04606e-15 0.0259678 2.43916) (-1.03565e-15 0.00751358 2.41794) (-1.05954e-15 -0.00718332 2.39294) (-1.08489e-15 -0.0231842 2.37242) (-1.10333e-15 -0.0452866 2.34696) (-1.11904e-15 -0.0741855 2.31929) (-1.13079e-15 -0.109611 2.28934) (-1.13817e-15 -0.145427 2.2609) (-1.14312e-15 -0.193262 2.23608) (-1.14797e-15 -0.254723 2.2026) (-1.15759e-15 -0.329394 2.15195) (-1.17834e-15 -0.412515 2.08294) (-1.21575e-15 -0.494276 2.00199) (-1.27353e-15 -0.570351 1.91668) (-1.35498e-15 -0.643737 1.83578) (-1.46078e-15 -0.71916 1.76006) (-1.58505e-15 -0.798479 1.68295) (-1.71576e-15 -0.87647 1.59436) (-1.83799e-15 -0.941339 1.48481) (-1.93773e-15 -0.974619 1.34753) (-2.00356e-15 -0.96737 1.17459) (-2.03008e-15 -0.894805 0.982841) (-2.01923e-15 -0.766083 0.757676) (-1.98086e-15 -0.634717 0.49833) (-1.93313e-15 -0.563872 0.268292) (-1.88887e-15 -0.566659 0.112709) (-1.85794e-15 -0.673416 7.74662e-05) (-1.85224e-15 -0.874395 -0.15818) (-1.87808e-15 -1.07226 -0.357963) (-1.92344e-15 -1.20974 -0.590146) (-1.96677e-15 -1.2571 -0.811611) (-1.97954e-15 -1.24412 -1.01058) (-1.94088e-15 -1.18471 -1.18983) (-1.8561e-15 -1.08158 -1.34142) (-1.74916e-15 -0.938681 -1.47713) (-1.64408e-15 -0.770042 -1.60739) (-1.55481e-15 -0.587976 -1.73722) (-1.48672e-15 -0.408932 -1.87608) (-1.43989e-15 -0.242329 -2.02209) (-1.41175e-15 -0.0931845 -2.17248) (-1.39926e-15 0.0327308 -2.3261) (-1.40083e-15 0.151225 -2.49316) (-1.4114e-15 0.287032 -2.65783) (-1.42569e-15 0.396189 -2.80808) (-1.44319e-15 0.486161 -2.93547) (-1.46406e-15 0.573294 -3.02434) (-1.48417e-15 0.657001 -3.07968) (-1.50156e-15 0.729607 -3.11722) (-1.51393e-15 0.793737 -3.13406) (-1.50729e-15 0.864675 -3.12556) (-1.46431e-15 0.951656 -3.11313) (-1.38386e-15 1.03136 -3.11023) (-1.27879e-15 1.06718 -3.08594) (-1.17078e-15 1.03522 -3.00585) (-1.08041e-15 0.945559 -2.87142) (-1.01953e-15 0.846129 -2.72345) (-9.9145e-16 0.760687 -2.59268) (-9.92831e-16 0.670226 -2.4912) (-1.01464e-15 0.556032 -2.41191) (-1.04996e-15 0.440821 -2.34502) (-1.09509e-15 0.336456 -2.2871) (-1.12197e-15 0.21922 -2.2141) (-1.10672e-15 0.0929295 -2.08635) (-1.05707e-15 -0.0133033 -1.95726) (-1.01208e-15 -0.111291 -1.97119) (-9.8877e-16 -0.276156 -2.1048) (-9.76038e-16 -0.481483 -2.17179) (-9.56733e-16 -0.651417 -2.10663) (-9.21518e-16 -0.804289 -1.99463) (-8.65165e-16 -0.932896 -1.87754) (-7.84093e-16 -1.02529 -1.72638) (-6.84586e-16 -1.03132 -1.51674) (-5.81678e-16 -0.960289 -1.29176) (-4.91792e-16 -0.796059 -1.08105) (-4.26531e-16 -0.570842 -0.88068) (-3.80245e-16 -0.301029 -0.909485) (-2.8884e-16 -0.275088 -0.865548) (-1.23661e-16 -0.382568 -0.954469) (-9.5196e-16 0.0606608 2.56001) (-1.01803e-15 0.0317827 2.54352) (-1.03487e-15 0.0130953 2.52406) (-1.05891e-15 -0.00228306 2.50199) (-1.08521e-15 -0.0195655 2.48403) (-1.10731e-15 -0.0417905 2.46132) (-1.12695e-15 -0.0707866 2.43573) (-1.14294e-15 -0.106086 2.40782) (-1.15509e-15 -0.140372 2.3807) (-1.16555e-15 -0.187159 2.35673) (-1.17629e-15 -0.246423 2.32453) (-1.1908e-15 -0.317287 2.27493) (-1.21383e-15 -0.397072 2.20643) (-1.25047e-15 -0.477294 2.12567) (-1.30478e-15 -0.553778 2.03934) (-1.37979e-15 -0.628131 1.95467) (-1.47599e-15 -0.70425 1.87295) (-1.58839e-15 -0.78214 1.78857) (-1.70649e-15 -0.857181 1.69211) (-1.81678e-15 -0.917293 1.57404) (-1.90612e-15 -0.9459 1.42661) (-1.96375e-15 -0.93155 1.24145) (-1.98408e-15 -0.85223 1.03186) (-1.96846e-15 -0.72089 0.789784) (-1.92729e-15 -0.593059 0.527949) (-1.88123e-15 -0.530006 0.311225) (-1.84613e-15 -0.540728 0.175795) (-1.82733e-15 -0.648152 0.0773692) (-1.82912e-15 -0.840492 -0.070996) (-1.8573e-15 -1.02926 -0.264237) (-1.9049e-15 -1.16303 -0.492219) (-1.95131e-15 -1.21232 -0.714362) (-1.96989e-15 -1.20585 -0.923286) (-1.94081e-15 -1.15144 -1.11862) (-1.86827e-15 -1.05377 -1.28879) (-1.77366e-15 -0.915006 -1.4431) (-1.67909e-15 -0.747523 -1.58908) (-1.59802e-15 -0.56728 -1.73038) (-1.53611e-15 -0.390437 -1.87633) (-1.494e-15 -0.224679 -2.0258) (-1.46952e-15 -0.0779332 -2.17743) (-1.4597e-15 0.0430288 -2.33462) (-1.46203e-15 0.164408 -2.49548) (-1.47211e-15 0.296406 -2.65541) (-1.48404e-15 0.403058 -2.79863) (-1.49663e-15 0.489425 -2.91814) (-1.51021e-15 0.571237 -2.99832) (-1.52187e-15 0.650163 -3.04591) (-1.53185e-15 0.719285 -3.07629) (-1.53553e-15 0.780761 -3.08475) (-1.51343e-15 0.849889 -3.06802) (-1.44899e-15 0.940084 -3.05003) (-1.3464e-15 1.02016 -3.03846) (-1.219e-15 1.04904 -2.99173) (-1.08963e-15 1.00614 -2.87863) (-9.82489e-16 0.90596 -2.70872) (-9.12745e-16 0.804825 -2.53334) (-8.83575e-16 0.726388 -2.38974) (-8.87156e-16 0.642325 -2.27926) (-9.14405e-16 0.529635 -2.18955) (-9.64226e-16 0.415196 -2.11703) (-1.0268e-15 0.310708 -2.0589) (-1.05654e-15 0.184454 -1.97434) (-1.03077e-15 0.049712 -1.82087) (-9.69729e-16 -0.0418436 -1.67618) (-9.19412e-16 -0.121754 -1.78306) (-9.07659e-16 -0.283375 -1.9604) (-9.13779e-16 -0.501595 -2.07542) (-9.13231e-16 -0.682368 -2.02649) (-8.95531e-16 -0.838085 -1.92764) (-8.56529e-16 -0.96862 -1.82489) (-7.89606e-16 -1.06888 -1.69169) (-6.97646e-16 -1.08187 -1.49465) (-5.95278e-16 -1.01389 -1.27476) (-5.01254e-16 -0.84532 -1.06091) (-4.29491e-16 -0.606906 -0.851858) (-3.83389e-16 -0.315365 -0.882878) (-3.00968e-16 -0.294386 -0.852849) (-2.23194e-16 -0.450704 -1.10909) (-9.65457e-16 0.0647032 2.65836) (-1.0042e-15 0.0363165 2.64405) (-1.02699e-15 0.0179785 2.62745) (-1.0538e-15 0.00171388 2.60784) (-1.08108e-15 -0.0169792 2.5918) (-1.106e-15 -0.039455 2.57173) (-1.12897e-15 -0.0688397 2.54834) (-1.14885e-15 -0.103425 2.52249) (-1.16538e-15 -0.136522 2.49717) (-1.18042e-15 -0.182345 2.4745) (-1.19616e-15 -0.238459 2.44415) (-1.21543e-15 -0.304969 2.39585) (-1.24156e-15 -0.381968 2.3283) (-1.27838e-15 -0.460357 2.24804) (-1.32998e-15 -0.536747 2.16083) (-1.39935e-15 -0.611578 2.07271) (-1.4868e-15 -0.6879 1.9853) (-1.58808e-15 -0.7643 1.89367) (-1.69411e-15 -0.836114 1.78883) (-1.79279e-15 -0.891592 1.66121) (-1.87184e-15 -0.915039 1.50211) (-1.92082e-15 -0.893058 1.30256) (-1.93371e-15 -0.807246 1.07413) (-1.91192e-15 -0.674988 0.817831) (-1.86804e-15 -0.552542 0.559492) (-1.82638e-15 -0.497598 0.362198) (-1.80311e-15 -0.518246 0.24819) (-1.79733e-15 -0.625294 0.161174) (-1.80761e-15 -0.806716 0.0223731) (-1.83916e-15 -0.988391 -0.166092) (-1.88823e-15 -1.1149 -0.392296) (-1.93681e-15 -1.16664 -0.614059) (-1.95973e-15 -1.16475 -0.830859) (-1.93859e-15 -1.11453 -1.04049) (-1.87685e-15 -1.02202 -1.22782) (-1.79359e-15 -0.888032 -1.39971) (-1.709e-15 -0.722925 -1.56152) (-1.63584e-15 -0.545014 -1.71525) (-1.57987e-15 -0.369306 -1.86939) (-1.54215e-15 -0.20454 -2.02354) (-1.52086e-15 -0.0597736 -2.17763) (-1.51301e-15 0.0579487 -2.33967) (-1.51571e-15 0.182074 -2.49399) (-1.52489e-15 0.308933 -2.6481) (-1.53404e-15 0.410851 -2.78416) (-1.54144e-15 0.491521 -2.89627) (-1.54755e-15 0.567163 -2.9699) (-1.55183e-15 0.640579 -3.0093) (-1.55569e-15 0.705721 -3.02939) (-1.5494e-15 0.765272 -3.02985) (-1.50869e-15 0.834293 -3.0083) (-1.42164e-15 0.927353 -2.98493) (-1.29694e-15 1.00517 -2.95741) (-1.14516e-15 1.02452 -2.87867) (-9.91531e-16 0.969092 -2.72882) (-8.66304e-16 0.858996 -2.52504) (-7.89159e-16 0.758703 -2.32832) (-7.61827e-16 0.68966 -2.18175) (-7.68091e-16 0.612845 -2.06874) (-8.0028e-16 0.504197 -1.97069) (-8.68458e-16 0.394115 -1.89704) (-9.50906e-16 0.287418 -1.8423) (-9.78593e-16 0.146534 -1.73894) (-9.35758e-16 0.00394881 -1.55347) (-8.6117e-16 -0.0606045 -1.42872) (-8.00685e-16 -0.114675 -1.6092) (-7.99394e-16 -0.272795 -1.82004) (-8.28902e-16 -0.503486 -1.96302) (-8.52225e-16 -0.694533 -1.92485) (-8.56957e-16 -0.851397 -1.83846) (-8.40183e-16 -0.98269 -1.75253) (-7.92396e-16 -1.09035 -1.64375) (-7.12271e-16 -1.10913 -1.46843) (-6.13508e-16 -1.04483 -1.26607) (-5.16562e-16 -0.873332 -1.06277) (-4.38355e-16 -0.623117 -0.860924) (-3.94872e-16 -0.312939 -0.935093) (-3.14428e-16 -0.318672 -0.922327) (-1.10255e-16 -0.472328 -1.1607) (-9.58835e-16 0.068369 2.75922) (-9.92096e-16 0.0408544 2.74556) (-1.01712e-15 0.0228395 2.7311) (-1.04482e-15 0.00559481 2.71334) (-1.07267e-15 -0.0144177 2.69846) (-1.09927e-15 -0.0367016 2.6803) (-1.12441e-15 -0.0663029 2.65897) (-1.14702e-15 -0.0998824 2.63509) (-1.16698e-15 -0.132546 2.61079) (-1.18597e-15 -0.17672 2.58899) (-1.20638e-15 -0.229988 2.5603) (-1.23045e-15 -0.293174 2.51347) (-1.2601e-15 -0.367116 2.44721) (-1.29797e-15 -0.443661 2.36785) (-1.34777e-15 -0.5194 2.28017) (-1.41242e-15 -0.593933 2.18912) (-1.49218e-15 -0.669866 2.09631) (-1.58334e-15 -0.744508 1.99727) (-1.678e-15 -0.81285 1.88332) (-1.76537e-15 -0.863555 1.74477) (-1.83385e-15 -0.881028 1.57193) (-1.87312e-15 -0.850534 1.35581) (-1.87697e-15 -0.758181 1.10891) (-1.84826e-15 -0.628425 0.843192) (-1.80381e-15 -0.515416 0.595463) (-1.77106e-15 -0.471014 0.421856) (-1.76207e-15 -0.499848 0.32746) (-1.76906e-15 -0.605925 0.24931) (-1.78816e-15 -0.775929 0.119313) (-1.82401e-15 -0.947849 -0.0654638) (-1.87377e-15 -1.06684 -0.292429) (-1.92361e-15 -1.12098 -0.512961) (-1.94949e-15 -1.12188 -0.735573) (-1.93475e-15 -1.07454 -0.957711) (-1.88239e-15 -0.986508 -1.16064) (-1.80943e-15 -0.857087 -1.34904) (-1.73417e-15 -0.696063 -1.52618) (-1.66851e-15 -0.520573 -1.69259) (-1.61818e-15 -0.34618 -1.85627) (-1.58454e-15 -0.184692 -2.01703) (-1.56606e-15 -0.0440656 -2.17563) (-1.55979e-15 0.0659125 -2.34539) (-1.56221e-15 0.193491 -2.4924) (-1.56968e-15 0.31666 -2.63917) (-1.57537e-15 0.415854 -2.76619) (-1.57735e-15 0.492267 -2.87198) (-1.57645e-15 0.561924 -2.93994) (-1.57485e-15 0.629131 -2.96786) (-1.57268e-15 0.691094 -2.97648) (-1.55333e-15 0.749774 -2.97398) (-1.49098e-15 0.819801 -2.95046) (-1.38177e-15 0.912907 -2.91631) (-1.23457e-15 0.984423 -2.86054) (-1.05452e-15 0.991923 -2.74126) (-8.73688e-16 0.925653 -2.5579) (-7.31497e-16 0.807611 -2.32927) (-6.52172e-16 0.711404 -2.12381) (-6.32014e-16 0.653846 -1.98749) (-6.40859e-16 0.582035 -1.87482) (-6.77839e-16 0.473692 -1.76254) (-7.69552e-16 0.36536 -1.67881) (-8.68135e-16 0.254766 -1.61014) (-8.83089e-16 0.0973362 -1.46486) (-8.15877e-16 -0.0428403 -1.26723) (-7.19578e-16 -0.0761035 -1.26291) (-6.4332e-16 -0.111353 -1.49157) (-6.50746e-16 -0.270557 -1.72352) (-7.07563e-16 -0.519241 -1.88825) (-7.60691e-16 -0.725641 -1.85862) (-7.94465e-16 -0.885914 -1.77552) (-8.0795e-16 -1.01541 -1.69197) (-7.87326e-16 -1.12889 -1.59638) (-7.25512e-16 -1.15473 -1.43523) (-6.35188e-16 -1.09533 -1.24453) (-5.38045e-16 -0.921094 -1.04523) (-4.55416e-16 -0.656236 -0.839298) (-4.11176e-16 -0.32002 -0.923514) (-3.08866e-16 -0.328783 -0.932212) (-2.08205e-16 -0.503692 -1.38873) (-9.50074e-16 0.0712172 2.85726) (-9.79699e-16 0.0448775 2.84514) (-1.00626e-15 0.0269775 2.83324) (-1.03375e-15 0.00875241 2.81732) (-1.06115e-15 -0.0124856 2.80308) (-1.08907e-15 -0.0350539 2.78616) (-1.11543e-15 -0.064444 2.76671) (-1.13999e-15 -0.0971692 2.74466) (-1.1625e-15 -0.128891 2.72141) (-1.18432e-15 -0.171387 2.7002) (-1.20803e-15 -0.221877 2.67278) (-1.23557e-15 -0.282107 2.62743) (-1.26834e-15 -0.35307 2.56261) (-1.30783e-15 -0.427125 2.48434) (-1.35667e-15 -0.501515 2.39654) (-1.41753e-15 -0.575397 2.30285) (-1.49058e-15 -0.650049 2.20469) (-1.57254e-15 -0.722752 2.0978) (-1.65642e-15 -0.787067 1.97371) (-1.73245e-15 -0.832837 1.82264) (-1.78963e-15 -0.844373 1.63458) (-1.81783e-15 -0.805048 1.40139) (-1.81163e-15 -0.706445 1.13834) (-1.77734e-15 -0.581243 0.869866) (-1.73713e-15 -0.481945 0.641268) (-1.71853e-15 -0.449431 0.49553) (-1.72511e-15 -0.481261 0.418211) (-1.74394e-15 -0.5851 0.345116) (-1.77128e-15 -0.745246 0.221839) (-1.81145e-15 -0.907054 0.0418449) (-1.86186e-15 -1.01821 -0.187575) (-1.9119e-15 -1.0745 -0.409317) (-1.93945e-15 -1.07707 -0.636717) (-1.92962e-15 -1.03159 -0.869775) (-1.88525e-15 -0.947793 -1.08684) (-1.82153e-15 -0.822705 -1.29062) (-1.75488e-15 -0.666605 -1.48245) (-1.69622e-15 -0.494475 -1.66133) (-1.65113e-15 -0.322952 -1.83504) (-1.62115e-15 -0.165072 -2.0029) (-1.6049e-15 -0.0283271 -2.16628) (-1.59974e-15 0.0811895 -2.33606) (-1.60143e-15 0.204736 -2.48339) (-1.60657e-15 0.322254 -2.62432) (-1.60863e-15 0.418488 -2.74078) (-1.60517e-15 0.490663 -2.84084) (-1.59792e-15 0.55262 -2.90437) (-1.59117e-15 0.613121 -2.9211) (-1.58109e-15 0.674128 -2.92434) (-1.54443e-15 0.733913 -2.92456) (-1.45887e-15 0.802613 -2.89265) (-1.32899e-15 0.891742 -2.83209) (-1.15675e-15 0.954099 -2.73619) (-9.43094e-16 0.951144 -2.57861) (-7.34784e-16 0.877369 -2.37704) (-5.82115e-16 0.754022 -2.14115) (-5.11338e-16 0.665539 -1.94557) (-5.05349e-16 0.620135 -1.8335) (-5.15147e-16 0.549264 -1.72301) (-5.57215e-16 0.442442 -1.5966) (-6.76785e-16 0.340164 -1.50851) (-7.85912e-16 0.220099 -1.42607) (-7.82262e-16 0.0447717 -1.24802) (-6.82153e-16 -0.0750222 -1.09229) (-5.56411e-16 -0.0712861 -1.20546) (-4.64526e-16 -0.0825703 -1.42639) (-4.72541e-16 -0.237129 -1.66479) (-5.52736e-16 -0.503429 -1.82208) (-6.37947e-16 -0.724917 -1.78942) (-7.06563e-16 -0.889229 -1.70355) (-7.57785e-16 -1.01734 -1.61944) (-7.72123e-16 -1.13818 -1.53885) (-7.34959e-16 -1.17009 -1.39717) (-6.57911e-16 -1.11705 -1.22893) (-5.63772e-16 -0.942322 -1.04705) (-4.78872e-16 -0.663405 -0.855755) (-4.28799e-16 -0.302586 -1.00282) (-3.40552e-16 -0.333688 -1.02544) (-1.99547e-16 -0.515986 -1.6717) (-9.4106e-16 0.073266 2.95363) (-9.69153e-16 0.0485894 2.9455) (-9.94085e-16 0.0309038 2.93552) (-1.02007e-15 0.0117761 2.92155) (-1.04691e-15 -0.0102938 2.9077) (-1.07491e-15 -0.0337185 2.89107) (-1.10125e-15 -0.0625439 2.87294) (-1.1265e-15 -0.0942452 2.85259) (-1.15038e-15 -0.125075 2.82967) (-1.17408e-15 -0.165713 2.80849) (-1.20023e-15 -0.213824 2.78177) (-1.23032e-15 -0.271508 2.73742) (-1.26539e-15 -0.339618 2.67402) (-1.30641e-15 -0.410432 2.5968) (-1.35486e-15 -0.483105 2.50879) (-1.41265e-15 -0.556074 2.41262) (-1.47976e-15 -0.628915 2.30887) (-1.55318e-15 -0.699029 2.19337) (-1.62661e-15 -0.758696 2.05801) (-1.69109e-15 -0.798597 1.89283) (-1.73627e-15 -0.803596 1.68857) (-1.75284e-15 -0.756583 1.43928) (-1.73775e-15 -0.655058 1.16498) (-1.7025e-15 -0.53585 0.902032) (-1.67346e-15 -0.450163 0.699489) (-1.67285e-15 -0.431431 0.582094) (-1.69419e-15 -0.469687 0.517474) (-1.72322e-15 -0.569208 0.446307) (-1.7577e-15 -0.717292 0.327551) (-1.80171e-15 -0.865302 0.150972) (-1.8526e-15 -0.971859 -0.0811539) (-1.90182e-15 -1.02792 -0.305404) (-1.9299e-15 -1.03112 -0.537036) (-1.92363e-15 -0.986548 -0.779464) (-1.88593e-15 -0.906311 -1.00918) (-1.83037e-15 -0.785656 -1.22706) (-1.77157e-15 -0.634084 -1.43268) (-1.71942e-15 -0.465846 -1.62365) (-1.67922e-15 -0.299029 -1.80782) (-1.65254e-15 -0.145868 -1.98384) (-1.63823e-15 -0.0149363 -2.15415) (-1.63321e-15 0.0940623 -2.31956) (-1.6338e-15 0.211678 -2.46921) (-1.63644e-15 0.323539 -2.60504) (-1.63484e-15 0.416016 -2.70983) (-1.62577e-15 0.485558 -2.80314) (-1.61263e-15 0.541116 -2.86279) (-1.60015e-15 0.597244 -2.87385) (-1.5784e-15 0.659674 -2.88033) (-1.51981e-15 0.719386 -2.87971) (-1.41105e-15 0.781588 -2.82111) (-1.26102e-15 0.862576 -2.7162) (-1.05797e-15 0.915305 -2.57922) (-8.07591e-16 0.905967 -2.40662) (-5.7906e-16 0.827329 -2.21442) (-4.29104e-16 0.701374 -1.98724) (-3.80729e-16 0.622537 -1.81466) (-3.9215e-16 0.588232 -1.72729) (-3.96056e-16 0.51247 -1.60928) (-4.44637e-16 0.399983 -1.46091) (-5.89254e-16 0.299225 -1.3439) (-6.90709e-16 0.171397 -1.21673) (-6.57502e-16 -0.00951884 -1.02127) (-5.14515e-16 -0.0930051 -1.02924) (-3.64579e-16 -0.0563336 -1.21085) (-2.62041e-16 -0.0812865 -1.46411) (-2.66561e-16 -0.240126 -1.68326) (-3.60749e-16 -0.517989 -1.8231) (-4.73967e-16 -0.754114 -1.78437) (-5.79983e-16 -0.924182 -1.68154) (-6.77891e-16 -1.04723 -1.57527) (-7.38292e-16 -1.17026 -1.48995) (-7.35041e-16 -1.20681 -1.35486) (-6.78459e-16 -1.15885 -1.19835) (-5.92395e-16 -0.982487 -1.02382) (-5.08469e-16 -0.685815 -0.83702) (-4.50339e-16 -0.296876 -1.00967) (-3.85962e-16 -0.315048 -1.0788) (4.12987e-17 -0.584079 -1.83935) (-9.36201e-16 0.0752904 3.04975) (-9.61893e-16 0.0510076 3.04313) (-9.8232e-16 0.0340768 3.0363) (-1.00576e-15 0.0142001 3.0246) (-1.03241e-15 -0.00852438 3.01133) (-1.05879e-15 -0.0328332 2.99466) (-1.08436e-15 -0.0606778 2.97746) (-1.10925e-15 -0.0913152 2.95864) (-1.13309e-15 -0.121376 2.93621) (-1.1571e-15 -0.159407 2.91454) (-1.18386e-15 -0.205993 2.88762) (-1.21472e-15 -0.261558 2.84377) (-1.25092e-15 -0.326191 2.7815) (-1.29279e-15 -0.393747 2.70479) (-1.34071e-15 -0.46398 2.61605) (-1.39561e-15 -0.535374 2.51706) (-1.45714e-15 -0.606283 2.40727) (-1.52242e-15 -0.672989 2.28237) (-1.58569e-15 -0.727928 2.13479) (-1.63871e-15 -0.761116 1.95473) (-1.67214e-15 -0.758601 1.73464) (-1.67857e-15 -0.705616 1.47232) (-1.65895e-15 -0.604905 1.19433) (-1.63031e-15 -0.495656 0.947398) (-1.61924e-15 -0.423673 0.776753) (-1.63749e-15 -0.415555 0.684654) (-1.67096e-15 -0.459883 0.627966) (-1.70801e-15 -0.554111 0.556406) (-1.74814e-15 -0.691344 0.440151) (-1.79487e-15 -0.823604 0.264728) (-1.84563e-15 -0.925615 0.0328821) (-1.89325e-15 -0.979524 -0.195646) (-1.92092e-15 -0.983504 -0.434415) (-1.91698e-15 -0.9394 -0.685673) (-1.88474e-15 -0.862432 -0.926675) (-1.83627e-15 -0.746525 -1.15733) (-1.78452e-15 -0.599093 -1.37578) (-1.73833e-15 -0.434885 -1.57837) (-1.70259e-15 -0.272932 -1.77271) (-1.67882e-15 -0.124652 -1.95658) (-1.66604e-15 0.000491436 -2.13399) (-1.66107e-15 0.10993 -2.29394) (-1.65998e-15 0.223281 -2.4443) (-1.65993e-15 0.328769 -2.57756) (-1.65446e-15 0.415346 -2.67336) (-1.63912e-15 0.481265 -2.75659) (-1.61971e-15 0.530561 -2.81303) (-1.59956e-15 0.582231 -2.82842) (-1.56128e-15 0.645351 -2.84193) (-1.47648e-15 0.700307 -2.82404) (-1.34549e-15 0.750873 -2.71649) (-1.17322e-15 0.822837 -2.56156) (-9.32121e-16 0.871043 -2.40148) (-6.50595e-16 0.862391 -2.25629) (-4.20074e-16 0.780719 -2.10311) (-2.89427e-16 0.650688 -1.88421) (-2.73074e-16 0.581017 -1.73066) (-2.96046e-16 0.553756 -1.6592) (-2.84771e-16 0.469465 -1.53286) (-3.43745e-16 0.357419 -1.37086) (-5.07892e-16 0.260028 -1.24436) (-5.93935e-16 0.124767 -1.11676) (-5.20114e-16 -0.0399469 -1.00616) (-3.31214e-16 -0.0838546 -1.15152) (-1.74691e-16 -0.011121 -1.25813) (-7.46049e-17 -0.0274327 -1.49687) (-6.94972e-17 -0.193866 -1.70252) (-1.58153e-16 -0.4937 -1.82837) (-2.85525e-16 -0.742914 -1.78305) (-4.23926e-16 -0.919772 -1.65997) (-5.71067e-16 -1.03733 -1.52629) (-6.85116e-16 -1.16661 -1.43656) (-7.23903e-16 -1.20698 -1.31078) (-6.94427e-16 -1.16676 -1.17222) (-6.21239e-16 -0.990713 -1.01563) (-5.41187e-16 -0.67579 -0.855889) (-4.74379e-16 -0.257686 -1.11841) (-4.3976e-16 -0.294142 -1.21631) (-3.83581e-17 -0.434243 -2.61823) (-9.34207e-16 0.0773162 3.14655) (-9.55341e-16 0.0531772 3.14057) (-9.73493e-16 0.0368179 3.13661) (-9.93251e-16 0.0165009 3.12712) (-1.01773e-15 -0.00650692 3.11479) (-1.04174e-15 -0.0312099 3.09812) (-1.06527e-15 -0.0581641 3.08119) (-1.0884e-15 -0.0877664 3.06333) (-1.1108e-15 -0.117514 3.04121) (-1.13392e-15 -0.152807 3.01851) (-1.16001e-15 -0.1983 2.99056) (-1.19046e-15 -0.251416 2.94667) (-1.22636e-15 -0.313002 2.88495) (-1.26767e-15 -0.377428 2.80805) (-1.31412e-15 -0.444506 2.71781) (-1.3658e-15 -0.513504 2.61528) (-1.42182e-15 -0.581803 2.49882) (-1.47934e-15 -0.644657 2.36373) (-1.53305e-15 -0.694476 2.20325) (-1.57562e-15 -0.720624 2.00841) (-1.5993e-15 -0.710304 1.7741) (-1.59982e-15 -0.652818 1.5038) (-1.58307e-15 -0.556374 1.2319) (-1.5696e-15 -0.460432 1.01112) (-1.58028e-15 -0.402919 0.874273) (-1.61452e-15 -0.402966 0.80076) (-1.65629e-15 -0.450023 0.746271) (-1.69884e-15 -0.539077 0.672185) (-1.74287e-15 -0.66492 0.555738) (-1.79099e-15 -0.782681 0.379826) (-1.84085e-15 -0.88034 0.148733) (-1.88611e-15 -0.930981 -0.0854603) (-1.91258e-15 -0.935003 -0.332389) (-1.90997e-15 -0.890836 -0.592244) (-1.88207e-15 -0.816876 -0.84286) (-1.8397e-15 -0.705254 -1.08476) (-1.79422e-15 -0.561927 -1.31481) (-1.75344e-15 -0.402089 -1.52861) (-1.72179e-15 -0.245407 -1.73343) (-1.70069e-15 -0.103071 -1.92613) (-1.68932e-15 0.0135345 -2.11277) (-1.68389e-15 0.121693 -2.266) (-1.68082e-15 0.230685 -2.41442) (-1.67805e-15 0.331516 -2.54488) (-1.668e-15 0.415557 -2.6358) (-1.64491e-15 0.47864 -2.70659) (-1.6171e-15 0.523037 -2.75777) (-1.58503e-15 0.570133 -2.7832) (-1.52413e-15 0.629739 -2.79733) (-1.40964e-15 0.673647 -2.73809) (-1.25834e-15 0.710121 -2.56831) (-1.05975e-15 0.777637 -2.38412) (-7.78318e-16 0.830931 -2.24081) (-4.84104e-16 0.829139 -2.15813) (-2.74291e-16 0.740391 -2.04624) (-1.74698e-16 0.603156 -1.81759) (-1.8967e-16 0.542004 -1.67353) (-2.05575e-16 0.519667 -1.60291) (-1.66692e-16 0.421058 -1.47584) (-2.4311e-16 0.296436 -1.30717) (-4.08801e-16 0.202453 -1.14419) (-4.56349e-16 0.0801454 -1.03335) (-3.35417e-16 -0.0509085 -1.05158) (-1.30473e-16 -0.0685833 -1.30005) (2.16563e-17 0.00578198 -1.37786) (1.10321e-16 -0.0123558 -1.56572) (1.19669e-16 -0.195173 -1.74014) (4.4455e-17 -0.508201 -1.86333) (-8.04505e-17 -0.776753 -1.83311) (-2.38991e-16 -0.963199 -1.68653) (-4.3193e-16 -1.07226 -1.50902) (-6.0556e-16 -1.19718 -1.39646) (-6.95285e-16 -1.23686 -1.2642) (-7.01445e-16 -1.20045 -1.12948) (-6.4764e-16 -1.02076 -0.978715) (-5.75424e-16 -0.680399 -0.831368) (-5.08513e-16 -0.226146 -1.14368) (-4.42527e-16 -0.19885 -1.37483) (-7.62666e-16 -0.537972 -2.72959) (-9.35958e-16 0.0782007 3.24161) (-9.5159e-16 0.0545321 3.23672) (-9.68602e-16 0.038404 3.23553) (-9.85772e-16 0.0177444 3.22819) (-1.0069e-15 -0.00527993 3.21714) (-1.02819e-15 -0.0303587 3.20095) (-1.04886e-15 -0.0566506 3.184) (-1.06927e-15 -0.0851049 3.16643) (-1.08911e-15 -0.114536 3.14444) (-1.10987e-15 -0.147751 3.12075) (-1.13352e-15 -0.190973 3.09139) (-1.16166e-15 -0.241085 3.04668) (-1.19531e-15 -0.299463 2.98445) (-1.23422e-15 -0.360884 2.90653) (-1.27778e-15 -0.424546 2.81396) (-1.32544e-15 -0.49038 2.70693) (-1.37587e-15 -0.555212 2.58305) (-1.42619e-15 -0.613728 2.43737) (-1.47159e-15 -0.657949 2.26413) (-1.50598e-15 -0.677477 2.05613) (-1.52402e-15 -0.660664 1.81195) (-1.52545e-15 -0.600993 1.54195) (-1.5205e-15 -0.512253 1.2878) (-1.52871e-15 -0.431398 1.10137) (-1.56016e-15 -0.387025 0.995354) (-1.60482e-15 -0.392779 0.932188) (-1.65059e-15 -0.439995 0.874946) (-1.6959e-15 -0.523423 0.796598) (-1.74185e-15 -0.639032 0.677947) (-1.78994e-15 -0.741091 0.500144) (-1.83783e-15 -0.834257 0.269486) (-1.87998e-15 -0.879832 0.0323028) (-1.90458e-15 -0.88447 -0.225241) (-1.90259e-15 -0.840553 -0.496618) (-1.8781e-15 -0.769693 -0.755666) (-1.8409e-15 -0.662241 -1.00767) (-1.80088e-15 -0.523304 -1.24816) (-1.76491e-15 -0.368366 -1.47231) (-1.73687e-15 -0.217207 -1.68703) (-1.71804e-15 -0.0815798 -1.88795) (-1.70766e-15 0.0261619 -2.08475) (-1.70148e-15 0.133002 -2.22687) (-1.69646e-15 0.236636 -2.37189) (-1.69073e-15 0.331687 -2.49956) (-1.67466e-15 0.411933 -2.59263) (-1.64152e-15 0.471983 -2.65682) (-1.60077e-15 0.515313 -2.70305) (-1.5491e-15 0.560149 -2.73624) (-1.4587e-15 0.609917 -2.7339) (-1.31422e-15 0.636085 -2.60878) (-1.14675e-15 0.660498 -2.38598) (-9.19181e-16 0.733052 -2.22007) (-6.0705e-16 0.799889 -2.13178) (-3.24514e-16 0.803688 -2.10669) (-1.46823e-16 0.698057 -1.99781) (-7.9087e-17 0.549369 -1.74477) (-1.17634e-16 0.49857 -1.624) (-1.02615e-16 0.480897 -1.55241) (-2.78895e-17 0.363466 -1.4605) (-1.3735e-16 0.220869 -1.32302) (-3.04085e-16 0.151051 -1.16454) (-2.98595e-16 0.0513346 -1.10602) (-1.4422e-16 -0.0480397 -1.1792) (5.06591e-17 -0.0489372 -1.39689) (1.92959e-16 0.0365916 -1.42069) (2.71446e-16 0.0457968 -1.54963) (2.83937e-16 -0.127716 -1.70177) (2.29024e-16 -0.462599 -1.84087) (1.18558e-16 -0.752295 -1.84337) (-4.59119e-17 -0.95968 -1.68956) (-2.73763e-16 -1.05881 -1.47304) (-5.05133e-16 -1.18816 -1.34788) (-6.50376e-16 -1.22778 -1.21404) (-6.98559e-16 -1.19898 -1.09066) (-6.69729e-16 -1.01748 -0.955633) (-6.0918e-16 -0.649857 -0.842455) (-5.42997e-16 -0.142848 -1.21473) (-6.72012e-16 -0.165852 -2.61887) (1.35939e-15 -1.77161 1.35751) (-9.1247e-16 0.0789511 3.33716) (-9.46974e-16 0.0557687 3.33536) (-9.6629e-16 0.039654 3.33566) (-9.84094e-16 0.0189902 3.32984) (-1.00247e-15 -0.00396223 3.31982) (-1.02039e-15 -0.0291958 3.30399) (-1.03817e-15 -0.0544389 3.2866) (-1.05544e-15 -0.0815399 3.2684) (-1.07218e-15 -0.110259 3.24587) (-1.0898e-15 -0.141809 3.22101) (-1.11002e-15 -0.182735 3.1899) (-1.13452e-15 -0.231025 3.14345) (-1.16422e-15 -0.28554 3.07971) (-1.19899e-15 -0.343754 2.99994) (-1.23822e-15 -0.403971 2.90425) (-1.28094e-15 -0.466033 2.79187) (-1.32562e-15 -0.526678 2.66004) (-1.36952e-15 -0.58028 2.50395) (-1.40856e-15 -0.618601 2.31926) (-1.4384e-15 -0.631981 2.10153) (-1.4567e-15 -0.610731 1.85436) (-1.46709e-15 -0.552466 1.59534) (-1.48134e-15 -0.47441 1.36965) (-1.51243e-15 -0.408452 1.21918) (-1.55851e-15 -0.374777 1.13465) (-1.60692e-15 -0.384244 1.07312) (-1.65289e-15 -0.429894 1.01013) (-1.69852e-15 -0.506297 0.925833) (-1.74456e-15 -0.609327 0.802979) (-1.79131e-15 -0.702 0.622361) (-1.83622e-15 -0.787682 0.391084) (-1.87466e-15 -0.829073 0.15026) (-1.89682e-15 -0.833375 -0.119943) (-1.89499e-15 -0.789561 -0.403263) (-1.87316e-15 -0.72158 -0.669813) (-1.84028e-15 -0.618005 -0.930259) (-1.80501e-15 -0.483666 -1.17989) (-1.77329e-15 -0.333706 -1.41395) (-1.74847e-15 -0.189843 -1.63879) (-1.73166e-15 -0.0628193 -1.84918) (-1.72222e-15 0.0316406 -2.05952) (-1.71458e-15 0.138714 -2.18567) (-1.70775e-15 0.24021 -2.32231) (-1.69855e-15 0.331539 -2.4458) (-1.67355e-15 0.408621 -2.54786) (-1.62553e-15 0.468224 -2.61283) (-1.56311e-15 0.510299 -2.65436) (-1.48099e-15 0.549571 -2.68208) (-1.35609e-15 0.580481 -2.63497) (-1.18659e-15 0.586732 -2.42994) (-1.00967e-15 0.611854 -2.20484) (-7.58236e-16 0.701601 -2.1117) (-4.33608e-16 0.780758 -2.067) (-1.76403e-16 0.780956 -2.05843) (-2.41523e-17 0.651551 -1.90948) (1.69218e-17 0.490872 -1.65552) (-4.00409e-17 0.452486 -1.58697) (3.67476e-17 0.446491 -1.45892) (1.57872e-16 0.339311 -1.35832) (-6.83373e-18 0.163993 -1.38106) (-1.78708e-16 0.0899202 -1.20242) (-1.40794e-16 0.0264656 -1.10822) (2.43169e-17 -0.0429317 -1.21717) (2.12703e-16 -0.0354218 -1.44356) (3.55009e-16 0.0536772 -1.46225) (4.30314e-16 0.0604871 -1.56244) (4.46502e-16 -0.117853 -1.68158) (4.06847e-16 -0.453499 -1.81908) (3.14986e-16 -0.77763 -1.8701) (1.52996e-16 -1.0059 -1.70892) (-9.79509e-17 -1.09584 -1.44842) (-3.82581e-16 -1.21506 -1.29923) (-5.85676e-16 -1.24873 -1.15316) (-6.8209e-16 -1.22176 -1.03137) (-6.84574e-16 -1.03278 -0.901197) (-6.39897e-16 -0.624391 -0.80005) (-6.17657e-16 -0.00396731 -1.49336) (-8.47449e-17 -0.414327 -1.59032) (3.01979e-15 -3.82285 6.09636) (-9.09521e-16 0.0789853 3.43777) (-9.51372e-16 0.056155 3.43612) (-9.69588e-16 0.0394997 3.4384) (-9.88903e-16 0.0194966 3.43348) (-1.00579e-15 -0.00369226 3.42401) (-1.02129e-15 -0.0286529 3.40846) (-1.03688e-15 -0.0526566 3.39046) (-1.05149e-15 -0.0784137 3.37075) (-1.06539e-15 -0.106158 3.34679) (-1.07971e-15 -0.135859 3.32013) (-1.09607e-15 -0.174541 3.2864) (-1.116e-15 -0.220456 3.23753) (-1.14048e-15 -0.270925 3.17169) (-1.16988e-15 -0.325696 3.0893) (-1.20373e-15 -0.382346 2.98975) (-1.24097e-15 -0.440287 2.87172) (-1.28009e-15 -0.496327 2.73237) (-1.31885e-15 -0.544711 2.56764) (-1.35437e-15 -0.577327 2.37518) (-1.38442e-15 -0.58558 2.15425) (-1.40958e-15 -0.562208 1.91394) (-1.43553e-15 -0.508834 1.67674) (-1.47123e-15 -0.443051 1.48497) (-1.51975e-15 -0.389916 1.36458) (-1.5716e-15 -0.363812 1.29033) (-1.61813e-15 -0.375527 1.2246) (-1.66159e-15 -0.420088 1.15443) (-1.70555e-15 -0.490056 1.06361) (-1.75006e-15 -0.578046 0.934535) (-1.79428e-15 -0.662568 0.749786) (-1.8354e-15 -0.739959 0.517464) (-1.86953e-15 -0.777516 0.271804) (-1.88891e-15 -0.780297 -0.010497) (-1.88697e-15 -0.736971 -0.307004) (-1.8672e-15 -0.672721 -0.581899) (-1.83792e-15 -0.573251 -0.849561) (-1.8067e-15 -0.443597 -1.1071) (-1.77864e-15 -0.29945 -1.35012) (-1.75652e-15 -0.163939 -1.58427) (-1.74126e-15 -0.0444652 -1.80337) (-1.73194e-15 0.042816 -2.01289) (-1.72315e-15 0.147015 -2.13375) (-1.71562e-15 0.24575 -2.26099) (-1.70081e-15 0.334318 -2.38789) (-1.65952e-15 0.408209 -2.50397) (-1.58567e-15 0.464644 -2.57057) (-1.48827e-15 0.502492 -2.60243) (-1.36777e-15 0.530987 -2.60207) (-1.21147e-15 0.539034 -2.48549) (-1.02922e-15 0.536097 -2.22819) (-8.53695e-16 0.577899 -2.08351) (-5.90938e-16 0.679676 -2.0535) (-2.62761e-16 0.758657 -1.97939) (-2.72627e-17 0.746492 -1.96245) (1.14995e-16 0.599425 -1.7608) (1.34542e-16 0.444944 -1.60328) (5.64352e-17 0.397872 -1.60002) (2.23317e-16 0.380271 -1.40287) (3.76754e-16 0.221835 -1.29928) (1.3312e-16 0.134337 -1.4096) (-9.40981e-17 0.0575379 -1.27637) (-4.13118e-17 -0.00299157 -1.18734) (1.48936e-16 -0.0349325 -1.30039) (3.46805e-16 -0.0150005 -1.51547) (4.9393e-16 0.0833501 -1.53367) (5.7375e-16 0.115664 -1.56973) (6.03153e-16 -0.0414714 -1.66407) (5.82377e-16 -0.381653 -1.77559) (5.04962e-16 -0.725722 -1.83234) (3.46386e-16 -0.99781 -1.68175) (8.17998e-17 -1.07474 -1.37998) (-2.47638e-16 -1.19784 -1.22663) (-5.06194e-16 -1.22821 -1.07841) (-6.53315e-16 -1.20829 -0.969342) (-6.91226e-16 -1.01569 -0.854842) (-6.65156e-16 -0.529506 -0.795952) (-6.92874e-16 0.0525577 -2.10805) (9.09102e-16 -1.4153 0.787536) (3.80823e-15 -5.92536 9.89189) (-9.16894e-16 0.0782206 3.5453) (-9.63219e-16 0.0560533 3.54287) (-9.80018e-16 0.0397381 3.547) (-9.99084e-16 0.0200537 3.54277) (-1.01563e-15 -0.00279086 3.53347) (-1.03061e-15 -0.0269202 3.51785) (-1.04505e-15 -0.0497084 3.49871) (-1.05806e-15 -0.0743554 3.47655) (-1.07004e-15 -0.101317 3.45002) (-1.08186e-15 -0.129682 3.42054) (-1.09492e-15 -0.166689 3.38347) (-1.11059e-15 -0.209435 3.33151) (-1.13004e-15 -0.25598 3.2629) (-1.15408e-15 -0.307092 3.17758) (-1.18254e-15 -0.359994 3.07418) (-1.21459e-15 -0.413592 2.95116) (-1.24917e-15 -0.464819 2.80617) (-1.28492e-15 -0.50799 2.63625) (-1.32045e-15 -0.53557 2.44161) (-1.35553e-15 -0.540282 2.22538) (-1.39238e-15 -0.517232 2.00068) (-1.43562e-15 -0.471031 1.79096) (-1.48788e-15 -0.416973 1.63007) (-1.54377e-15 -0.373503 1.52796) (-1.59325e-15 -0.352792 1.45381) (-1.63476e-15 -0.365662 1.38096) (-1.67441e-15 -0.40827 1.30337) (-1.71545e-15 -0.473189 1.20515) (-1.75717e-15 -0.551242 1.06851) (-1.79792e-15 -0.625891 0.878059) (-1.83475e-15 -0.693365 0.643112) (-1.86427e-15 -0.726788 0.390495) (-1.88067e-15 -0.726367 0.0969996) (-1.87856e-15 -0.684105 -0.214256) (-1.86049e-15 -0.623807 -0.498206) (-1.83423e-15 -0.528195 -0.77149) (-1.80647e-15 -0.402979 -1.03614) (-1.78154e-15 -0.265406 -1.28775) (-1.76172e-15 -0.137265 -1.53134) (-1.74773e-15 -0.0266559 -1.7605) (-1.73758e-15 0.0523734 -1.96394) (-1.72967e-15 0.150089 -2.07748) (-1.72224e-15 0.249521 -2.19745) (-1.69263e-15 0.338675 -2.34072) (-1.61853e-15 0.408701 -2.46673) (-1.50048e-15 0.458408 -2.5209) (-1.35598e-15 0.489441 -2.5279) (-1.20123e-15 0.501716 -2.47963) (-1.0293e-15 0.489486 -2.30011) (-8.53409e-16 0.496217 -2.06587) (-6.91509e-16 0.558773 -2.02943) (-4.21866e-16 0.653599 -1.97317) (-8.47359e-17 0.732533 -1.83499) (1.37895e-16 0.711708 -1.84129) (2.79226e-16 0.554968 -1.59534) (2.82249e-16 0.402116 -1.50105) (1.53484e-16 0.337337 -1.61923) (3.74473e-16 0.347135 -1.40912) (5.3723e-16 0.252457 -1.50082) (1.96217e-16 0.092976 -1.78332) (-4.51881e-17 -0.0223594 -1.39529) (5.13081e-17 -0.0309148 -1.20791) (2.69124e-16 -0.0139703 -1.36083) (4.71886e-16 0.00692012 -1.58677) (6.16065e-16 0.107706 -1.5991) (7.00327e-16 0.152844 -1.56448) (7.50068e-16 -0.00691691 -1.65584) (7.5368e-16 -0.35245 -1.74914) (6.94314e-16 -0.739562 -1.82633) (5.36771e-16 -1.04223 -1.66495) (2.64309e-16 -1.10887 -1.30842) (-1.02995e-16 -1.21699 -1.13827) (-4.13698e-16 -1.23695 -0.976731) (-6.1358e-16 -1.21645 -0.874027) (-6.91293e-16 -1.01322 -0.761815) (-6.88117e-16 -0.424802 -0.766809) (-4.67954e-16 -0.141215 -1.60341) (1.85528e-15 -2.76487 3.63482) (4.00008e-15 -7.64808 12.5971) (-8.59862e-16 0.0768088 3.65708) (-9.67584e-16 0.0546649 3.65532) (-9.96808e-16 0.0393719 3.66182) (-1.01329e-15 0.019625 3.65877) (-1.03054e-15 -0.00253124 3.65025) (-1.047e-15 -0.0256236 3.63507) (-1.06185e-15 -0.0471573 3.61537) (-1.07496e-15 -0.0704363 3.59113) (-1.08659e-15 -0.0963161 3.56179) (-1.09734e-15 -0.123384 3.52891) (-1.10846e-15 -0.158169 3.48814) (-1.12122e-15 -0.197507 3.43293) (-1.13682e-15 -0.240139 3.3614) (-1.15659e-15 -0.287405 3.27321) (-1.1809e-15 -0.336498 3.1667) (-1.20927e-15 -0.385993 3.04051) (-1.24129e-15 -0.432809 2.89301) (-1.27666e-15 -0.47161 2.72266) (-1.31532e-15 -0.495499 2.53214) (-1.35813e-15 -0.498599 2.32743) (-1.40687e-15 -0.477913 2.1229) (-1.46243e-15 -0.439458 1.93875) (-1.52115e-15 -0.395049 1.79917) (-1.57451e-15 -0.358622 1.70416) (-1.6171e-15 -0.342188 1.62513) (-1.65298e-15 -0.355355 1.54485) (-1.68866e-15 -0.393971 1.45929) (-1.72612e-15 -0.452877 1.35255) (-1.76421e-15 -0.521841 1.20772) (-1.80088e-15 -0.588748 1.01107) (-1.8332e-15 -0.645889 0.772092) (-1.85816e-15 -0.674647 0.510318) (-1.87159e-15 -0.670581 0.205728) (-1.86943e-15 -0.630335 -0.120339) (-1.8528e-15 -0.574557 -0.413168) (-1.8291e-15 -0.482634 -0.691981) (-1.80421e-15 -0.361965 -0.962324) (-1.78186e-15 -0.230348 -1.2216) (-1.76385e-15 -0.110445 -1.47398) (-1.75046e-15 -0.0101852 -1.71714) (-1.73942e-15 0.061518 -1.90003) (-1.73817e-15 0.150771 -2.00576) (-1.72379e-15 0.253325 -2.14185) (-1.65451e-15 0.34528 -2.30646) (-1.52126e-15 0.407144 -2.42425) (-1.34178e-15 0.446839 -2.44317) (-1.15447e-15 0.469783 -2.41204) (-9.92051e-16 0.466798 -2.33291) (-8.32493e-16 0.447264 -2.14389) (-6.77713e-16 0.473993 -1.98147) (-5.21543e-16 0.540438 -1.93634) (-2.35684e-16 0.612646 -1.80147) (1.09231e-16 0.69793 -1.66493) (3.17322e-16 0.661119 -1.72584) (4.56499e-16 0.499895 -1.50574) (4.64697e-16 0.389116 -1.37017) (2.5511e-16 0.272325 -1.66966) (5.02237e-16 0.260773 -1.44885) (5.73887e-16 0.146799 -1.54831) (2.06064e-16 0.0200739 -1.56321) (-2.07006e-17 -0.09902 -1.34015) (1.26759e-16 -0.0683534 -1.33569) (3.82621e-16 -0.00670687 -1.46651) (5.86292e-16 0.0225213 -1.65852) (7.21792e-16 0.13116 -1.65246) (8.06808e-16 0.193628 -1.58706) (8.75529e-16 0.0698062 -1.64087) (9.05985e-16 -0.27627 -1.70339) (8.69247e-16 -0.674699 -1.74912) (7.14865e-16 -1.04122 -1.60612) (4.41215e-16 -1.09084 -1.19688) (4.42866e-17 -1.19666 -1.01857) (-3.12914e-16 -1.20879 -0.853068) (-5.63869e-16 -1.19341 -0.764056) (-6.84826e-16 -0.981172 -0.660207) (-7.11415e-16 -0.326459 -0.813672) (4.87472e-17 -0.742318 -0.214708) (2.54581e-15 -4.22543 6.49485) (4.06854e-15 -8.98616 14.3192) (-5.34925e-16 0.0757735 3.77119) (-9.45588e-16 0.0533088 3.77424) (-1.01854e-15 0.0385421 3.78331) (-1.0294e-15 0.0192095 3.78247) (-1.04815e-15 -0.00217196 3.77583) (-1.06722e-15 -0.0240373 3.76217) (-1.0841e-15 -0.0442002 3.74302) (-1.09907e-15 -0.0659752 3.71778) (-1.11216e-15 -0.090711 3.68647) (-1.1238e-15 -0.116561 3.6508) (-1.135e-15 -0.148805 3.60692) (-1.14706e-15 -0.18528 3.54893) (-1.16115e-15 -0.224101 3.47495) (-1.1789e-15 -0.267424 3.38482) (-1.20126e-15 -0.312503 3.27684) (-1.22818e-15 -0.357984 3.14979) (-1.25988e-15 -0.400753 3.00296) (-1.29686e-15 -0.435996 2.83597) (-1.33972e-15 -0.457398 2.65328) (-1.38907e-15 -0.46024 2.462) (-1.44462e-15 -0.442776 2.2752) (-1.5033e-15 -0.411152 2.10881) (-1.55848e-15 -0.373854 1.97997) (-1.60362e-15 -0.342742 1.88435) (-1.63884e-15 -0.330189 1.79849) (-1.67017e-15 -0.343305 1.71129) (-1.70228e-15 -0.377932 1.61748) (-1.73593e-15 -0.429783 1.50101) (-1.76991e-15 -0.490845 1.34629) (-1.80223e-15 -0.549751 1.14183) (-1.83014e-15 -0.598903 0.89657) (-1.85089e-15 -0.622175 0.623429) (-1.86156e-15 -0.61375 0.307642) (-1.85955e-15 -0.575966 -0.0319629) (-1.84432e-15 -0.5243 -0.333941) (-1.82284e-15 -0.435937 -0.618929) (-1.80041e-15 -0.320678 -0.894227) (-1.78024e-15 -0.195879 -1.16079) (-1.76366e-15 -0.0839175 -1.42231) (-1.75014e-15 0.000578402 -1.68953) (-1.74311e-15 0.0630904 -1.8312) (-1.75144e-15 0.153009 -1.93675) (-1.69777e-15 0.264086 -2.10982) (-1.54688e-15 0.354016 -2.27486) (-1.3337e-15 0.401951 -2.35722) (-1.10053e-15 0.431134 -2.33171) (-9.04384e-16 0.448338 -2.27399) (-7.75204e-16 0.433036 -2.20427) (-6.51539e-16 0.408839 -2.04725) (-5.08382e-16 0.445753 -1.88529) (-3.29023e-16 0.505687 -1.69365) (-1.75817e-17 0.576326 -1.58608) (3.10075e-16 0.684717 -1.5573) (4.8895e-16 0.636539 -1.67495) (6.04302e-16 0.432649 -1.56053) (6.45378e-16 0.35873 -1.27063) (3.92984e-16 0.272199 -1.72206) (5.3411e-16 0.194858 -1.40497) (7.04914e-16 0.145446 -0.808436) (4.04328e-16 0.0160883 -1.13337) (1.14466e-16 -0.143535 -1.2113) (2.46706e-16 -0.0727812 -1.34254) (5.28471e-16 0.0111486 -1.47288) (7.18744e-16 0.0356555 -1.63859) (8.3488e-16 0.157473 -1.62201) (9.1481e-16 0.246476 -1.52795) (9.94054e-16 0.135715 -1.58524) (1.03901e-15 -0.230187 -1.66615) (1.02042e-15 -0.678488 -1.70474) (8.73213e-16 -1.08166 -1.55054) (6.06198e-16 -1.1182 -1.07605) (1.87456e-16 -1.20717 -0.876553) (-2.06657e-16 -1.20515 -0.710713) (-5.0148e-16 -1.18888 -0.633303) (-6.66872e-16 -0.953409 -0.539067) (-7.11956e-16 -0.325991 -0.774284) (6.91543e-16 -1.67628 1.67819) (3.10001e-15 -5.63189 9.02986) (3.96937e-15 -9.78572 15.1686) (-9.72354e-16 0.0739968 3.88932) (-9.81482e-16 0.0509205 3.89505) (-1.01969e-15 0.0366453 3.90835) (-1.0439e-15 0.0177813 3.91083) (-1.06577e-15 -0.00270253 3.90751) (-1.08775e-15 -0.0232091 3.89718) (-1.1079e-15 -0.0418482 3.88065) (-1.12614e-15 -0.0619564 3.85673) (-1.1424e-15 -0.0851819 3.82577) (-1.15687e-15 -0.109307 3.78933) (-1.17018e-15 -0.138684 3.74394) (-1.18384e-15 -0.17246 3.68477) (-1.19893e-15 -0.207727 3.60971) (-1.21703e-15 -0.247223 3.51892) (-1.23961e-15 -0.2885 3.41099) (-1.26705e-15 -0.330358 3.28487) (-1.29979e-15 -0.369729 3.14063) (-1.33857e-15 -0.402216 2.97858) (-1.38384e-15 -0.422081 2.80404) (-1.43507e-15 -0.425402 2.62392) (-1.48984e-15 -0.411065 2.44919) (-1.54315e-15 -0.384777 2.29244) (-1.58918e-15 -0.352685 2.16716) (-1.62544e-15 -0.325887 2.06779) (-1.65519e-15 -0.316767 1.97501) (-1.68345e-15 -0.32954 1.88061) (-1.71254e-15 -0.360646 1.77817) (-1.74254e-15 -0.405591 1.65169) (-1.77241e-15 -0.458879 1.48683) (-1.80051e-15 -0.509451 1.27351) (-1.82444e-15 -0.550139 1.01994) (-1.84168e-15 -0.568051 0.73518) (-1.85011e-15 -0.55568 0.410123) (-1.84834e-15 -0.51942 0.0632553) (-1.83475e-15 -0.473058 -0.250609) (-1.81531e-15 -0.390285 -0.546376) (-1.79491e-15 -0.280051 -0.826036) (-1.77634e-15 -0.161079 -1.0989) (-1.76032e-15 -0.0570794 -1.36832) (-1.74533e-15 0.00819132 -1.65493) (-1.75709e-15 0.0592598 -1.74597) (-1.75008e-15 0.161117 -1.88768) (-1.59241e-15 0.281015 -2.09688) (-1.32892e-15 0.358821 -2.24331) (-1.05586e-15 0.389122 -2.28697) (-8.2209e-16 0.406882 -2.22237) (-6.63045e-16 0.421296 -2.12475) (-5.77359e-16 0.397446 -2.03239) (-4.77283e-16 0.36431 -1.86908) (-3.20476e-16 0.395786 -1.59533) (-1.10167e-16 0.469207 -1.36219) (2.22727e-16 0.558737 -1.44889) (4.89441e-16 0.663181 -1.51032) (6.32104e-16 0.613414 -1.64652) (7.22711e-16 0.387248 -1.62396) (7.93664e-16 0.253526 -0.950412) (4.93382e-16 0.135213 -1.32778) (6.59484e-16 0.0548203 -1.09102) (8.82848e-16 0.0149002 -1.1473) (6.40541e-16 -0.0389672 -1.34314) (2.83207e-16 -0.133734 -1.19756) (4.20222e-16 -0.0552365 -1.42528) (7.05403e-16 0.00885535 -1.50351) (8.56028e-16 0.0454319 -1.62368) (9.48472e-16 0.178587 -1.69362) (1.02047e-15 0.272669 -1.65713) (1.0997e-15 0.209929 -1.65907) (1.14522e-15 -0.149674 -1.67264) (1.13904e-15 -0.615915 -1.60732) (1.00618e-15 -1.09416 -1.50145) (7.55879e-16 -1.11227 -0.875996) (3.1764e-16 -1.1805 -0.684658) (-1.10453e-16 -1.16525 -0.524847) (-4.44433e-16 -1.15757 -0.485755) (-6.4408e-16 -0.902577 -0.42288) (-5.63735e-16 -0.531967 -0.400332) (1.37086e-15 -2.79878 3.8374) (3.5063e-15 -6.87838 11.1908) (3.69118e-15 -10.3264 15.6488) (-9.69942e-16 0.071697 4.01009) (-9.97746e-16 0.0480027 4.01701) (-1.02758e-15 0.0345059 4.03499) (-1.05472e-15 0.0157401 4.04129) (-1.07998e-15 -0.0036248 4.0422) (-1.10499e-15 -0.0227164 4.03613) (-1.12869e-15 -0.0396577 4.02349) (-1.15076e-15 -0.0582326 4.00253) (-1.17101e-15 -0.0798576 3.97385) (-1.1895e-15 -0.102003 3.93863) (-1.20653e-15 -0.128545 3.89371) (-1.22348e-15 -0.159596 3.83515) (-1.24138e-15 -0.191703 3.76076) (-1.26159e-15 -0.227547 3.6709) (-1.2858e-15 -0.265095 3.56447) (-1.31468e-15 -0.303449 3.44049) (-1.34845e-15 -0.33962 3.2994) (-1.38758e-15 -0.369584 3.14182) (-1.43189e-15 -0.388159 2.97334) (-1.47981e-15 -0.392125 2.80024) (-1.528e-15 -0.380602 2.63172) (-1.57198e-15 -0.35845 2.47872) (-1.60864e-15 -0.330589 2.35281) (-1.63858e-15 -0.307884 2.24776) (-1.66526e-15 -0.301589 2.14771) (-1.69149e-15 -0.313252 2.04601) (-1.71803e-15 -0.340691 1.93461) (-1.74469e-15 -0.379521 1.7974) (-1.77077e-15 -0.424621 1.62091) (-1.79508e-15 -0.467839 1.39702) (-1.81566e-15 -0.500656 1.13357) (-1.83024e-15 -0.513698 0.837584) (-1.83711e-15 -0.498482 0.504457) (-1.83574e-15 -0.46312 0.150485) (-1.82405e-15 -0.422357 -0.17737) (-1.80613e-15 -0.34517 -0.482009) (-1.78708e-15 -0.240461 -0.767602) (-1.76929e-15 -0.127652 -1.04706) (-1.75299e-15 -0.0339223 -1.32856) (-1.74698e-15 0.00709909 -1.61956) (-1.77654e-15 0.0608178 -1.67077) (-1.67605e-15 0.182929 -1.8872) (-1.3674e-15 0.296623 -2.07704) (-1.0198e-15 0.35161 -2.16048) (-7.55797e-16 0.362498 -2.16968) (-5.81114e-16 0.367897 -2.06597) (-4.61151e-16 0.378989 -1.8653) (-3.7036e-16 0.356287 -1.67084) (-2.57572e-16 0.317079 -1.47243) (-8.89012e-17 0.352334 -1.21156) (1.50421e-16 0.467336 -1.21799) (4.35309e-16 0.570169 -1.40519) (6.36036e-16 0.652641 -1.53211) (7.4942e-16 0.563207 -1.73472) (8.14924e-16 0.221605 -1.60325) (7.66457e-16 0.157918 -0.764787) (7.52004e-16 0.0195743 -0.85247) (8.23136e-16 0.0336761 -0.750024) (1.05963e-15 -0.00494097 -1.31372) (7.89442e-16 -0.0782115 -1.34367) (4.0027e-16 -0.176964 -1.31968) (6.13918e-16 -0.0600737 -1.51338) (8.69424e-16 0.00128616 -1.5044) (9.7555e-16 0.0639502 -1.63001) (1.05191e-15 0.237682 -1.81783) (1.11542e-15 0.336415 -1.79279) (1.18075e-15 0.276414 -1.64633) (1.21782e-15 -0.0990425 -1.64137) (1.20652e-15 -0.570922 -1.48387) (1.10225e-15 -1.1317 -1.42401) (8.93862e-16 -1.15787 -0.796897) (4.33891e-16 -1.17585 -0.483391) (-3.90156e-17 -1.13067 -0.280885) (-4.11061e-16 -1.12451 -0.27207) (-6.35501e-16 -0.857725 -0.257056) (-2.1099e-16 -1.03547 0.493567) (2.00529e-15 -4.029 6.10207) (3.72139e-15 -8.00811 13.097) (3.29358e-15 -10.4051 15.7571) (-9.70282e-16 0.0679607 4.13142) (-9.99455e-16 0.0440912 4.13878) (-1.03222e-15 0.0315419 4.16093) (-1.06088e-15 0.0129306 4.17065) (-1.08863e-15 -0.00531453 4.17583) (-1.11614e-15 -0.0228484 4.17434) (-1.14272e-15 -0.0381776 4.16625) (-1.16807e-15 -0.0552824 4.14939) (-1.19191e-15 -0.074911 4.12461) (-1.21419e-15 -0.0947499 4.09241) (-1.23505e-15 -0.118928 4.04962) (-1.2556e-15 -0.146805 3.99323) (-1.27677e-15 -0.175667 3.92085) (-1.29961e-15 -0.208123 3.83281) (-1.32574e-15 -0.2421 3.72854) (-1.35586e-15 -0.277127 3.60713) (-1.38974e-15 -0.310368 3.46899) (-1.42732e-15 -0.338121 3.31486) (-1.46792e-15 -0.355691 3.15029) (-1.5096e-15 -0.360384 2.98106) (-1.54948e-15 -0.351193 2.81519) (-1.58487e-15 -0.332071 2.66263) (-1.615e-15 -0.307847 2.53364) (-1.64147e-15 -0.289253 2.42189) (-1.66645e-15 -0.285145 2.3144) (-1.69102e-15 -0.295369 2.20514) (-1.71529e-15 -0.318637 2.08475) (-1.73914e-15 -0.351674 1.9371) (-1.76211e-15 -0.388423 1.74931) (-1.78339e-15 -0.42425 1.51504) (-1.80139e-15 -0.449891 1.24262) (-1.81417e-15 -0.458408 0.93815) (-1.82011e-15 -0.441107 0.599371) (-1.81911e-15 -0.40638 0.239344) (-1.80954e-15 -0.372792 -0.103872) (-1.79239e-15 -0.297204 -0.412094) (-1.77477e-15 -0.196737 -0.704918) (-1.7597e-15 -0.0917899 -0.985457) (-1.75028e-15 -0.00415707 -1.26965) (-1.78767e-15 0.0192515 -1.45388) (-1.75375e-15 0.0835811 -1.58147) (-1.48142e-15 0.19985 -1.86954) (-1.05325e-15 0.288908 -1.97167) (-6.87127e-16 0.332764 -1.93298) (-4.70734e-16 0.329487 -1.86954) (-3.42965e-16 0.311633 -1.7393) (-2.32001e-16 0.30926 -1.53581) (-1.20243e-16 0.290483 -1.33374) (-1.39501e-18 0.262085 -1.18664) (1.46082e-16 0.332743 -1.11306) (3.74808e-16 0.46927 -1.22798) (5.94805e-16 0.560458 -1.36283) (7.64673e-16 0.639645 -1.52119) (8.63629e-16 0.529332 -1.64641) (8.64543e-16 0.14425 -1.15375) (8.26964e-16 -0.0342839 -0.644836) (9.33515e-16 -0.0637115 -0.661165) (9.50561e-16 0.0551147 -0.505542) (1.18417e-15 0.0262378 -0.860506) (9.12023e-16 -0.055906 -0.997496) (7.0096e-16 -0.14708 -1.39567) (9.14659e-16 -0.0678274 -1.50053) (1.02992e-15 -0.0150827 -1.41618) (1.09027e-15 0.109174 -1.67895) (1.15131e-15 0.282866 -2.03394) (1.19894e-15 0.358751 -2.21393) (1.23993e-15 0.36375 -1.77948) (1.25846e-15 -0.0844337 -1.76746) (1.23979e-15 -0.543816 -0.744738) (1.16301e-15 -1.11891 -1.06097) (9.92388e-16 -1.15745 -0.649081) (5.12574e-16 -1.18186 -0.190556) (1.93894e-18 -1.09341 0.0240083) (-3.94092e-16 -1.0864 0.0155533) (-6.20384e-16 -0.866932 -0.00910559) (2.91026e-16 -1.8016 1.92808) (2.53942e-15 -5.29867 8.38369) (3.7422e-15 -8.90363 14.6522) (2.872e-15 -9.91416 15.3519) (-9.66867e-16 0.0652815 4.25476) (-9.94881e-16 0.0397126 4.26457) (-1.02849e-15 0.0279969 4.28782) (-1.05945e-15 0.0100328 4.29948) (-1.08929e-15 -0.00719367 4.30758) (-1.11892e-15 -0.0232178 4.30962) (-1.14782e-15 -0.037077 4.30511) (-1.17564e-15 -0.0527377 4.29191) (-1.20212e-15 -0.0703431 4.27108) (-1.22723e-15 -0.0882423 4.24225) (-1.25108e-15 -0.110435 4.20242) (-1.27449e-15 -0.134751 4.14912) (-1.29826e-15 -0.160247 4.07951) (-1.32315e-15 -0.18915 3.99413) (-1.35049e-15 -0.21948 3.89265) (-1.3808e-15 -0.251037 3.77404) (-1.41365e-15 -0.281207 3.63862) (-1.44852e-15 -0.306642 3.48702) (-1.48453e-15 -0.323124 3.32462) (-1.52008e-15 -0.328263 3.15683) (-1.55332e-15 -0.320713 2.9909) (-1.58309e-15 -0.303932 2.83625) (-1.60962e-15 -0.282926 2.70218) (-1.63414e-15 -0.268386 2.58306) (-1.65763e-15 -0.265959 2.4686) (-1.68051e-15 -0.274606 2.35244) (-1.70282e-15 -0.293073 2.2235) (-1.72454e-15 -0.319572 2.06602) (-1.74532e-15 -0.34859 1.86801) (-1.76464e-15 -0.377634 1.62507) (-1.78141e-15 -0.396916 1.34617) (-1.79421e-15 -0.401206 1.03613) (-1.80165e-15 -0.382942 0.693673) (-1.80411e-15 -0.350465 0.327549) (-1.80176e-15 -0.32451 -0.0344818) (-1.79419e-15 -0.249295 -0.330623) (-1.78586e-15 -0.150275 -0.613658) (-1.78856e-15 -0.0324157 -0.882155) (-1.79407e-15 0.0663168 -1.18154) (-1.77356e-15 0.0627484 -1.44518) (-1.51883e-15 0.108724 -1.7193) (-1.10341e-15 0.198153 -1.88684) (-6.64699e-16 0.258483 -1.79701) (-3.53912e-16 0.294178 -1.6589) (-1.90386e-16 0.286599 -1.5322) (-8.43209e-17 0.256292 -1.37559) (7.07563e-18 0.248626 -1.26276) (8.06561e-17 0.226613 -1.18112) (1.73913e-16 0.230776 -1.10356) (3.25785e-16 0.338149 -1.08922) (5.28885e-16 0.489312 -1.12193) (7.53631e-16 0.578419 -1.33763) (9.12046e-16 0.615567 -1.51268) (9.70518e-16 0.396136 -1.55371) (8.93215e-16 -0.0502928 -0.999161) (8.90175e-16 -0.227881 -0.77865) (1.02656e-15 -0.197136 -0.76836) (1.07939e-15 -0.211202 -0.68823) (1.28241e-15 -0.10914 -0.460199) (1.19744e-15 -0.0833323 -0.733808) (1.11919e-15 -0.173124 -1.36606) (1.1775e-15 -0.0915737 -1.23442) (1.18177e-15 -0.0116218 -1.21446) (1.19683e-15 0.131391 -1.68386) (1.22056e-15 0.440819 -1.01159) (1.26592e-15 0.414157 -1.34338) (1.25752e-15 0.282125 -1.04208) (1.25292e-15 -0.106897 -1.48428) (1.25108e-15 -0.610009 0.682048) (1.19437e-15 -1.05851 -0.591219) (1.03608e-15 -1.17316 -0.20483) (5.61717e-16 -1.19899 0.0907955) (3.0613e-17 -1.05645 0.391587) (-3.90773e-16 -1.03144 0.307824) (-5.19353e-16 -1.03542 0.401778) (8.75734e-16 -2.75987 3.73218) (2.98364e-15 -6.53822 10.583) (3.61881e-15 -9.50712 15.7342) (2.34253e-15 -8.97354 14.3679) (-9.43449e-16 0.0641538 4.39881) (-9.7232e-16 0.0352036 4.40155) (-1.00855e-15 0.0244679 4.42406) (-1.04238e-15 0.00695482 4.43381) (-1.07536e-15 -0.00905012 4.4416) (-1.10779e-15 -0.0236441 4.44424) (-1.13957e-15 -0.0361387 4.44078) (-1.17021e-15 -0.0504032 4.42928) (-1.19941e-15 -0.065975 4.41103) (-1.22714e-15 -0.0819321 4.38469) (-1.25353e-15 -0.10169 4.34747) (-1.27927e-15 -0.122995 4.29708) (-1.30499e-15 -0.145366 4.23015) (-1.33129e-15 -0.17062 4.14736) (-1.35915e-15 -0.197467 4.0485) (-1.38908e-15 -0.225594 3.93227) (-1.42057e-15 -0.252661 3.79897) (-1.45293e-15 -0.275649 3.64897) (-1.48535e-15 -0.290661 3.48732) (-1.51674e-15 -0.295543 3.31916) (-1.54611e-15 -0.288853 3.15131) (-1.57307e-15 -0.274255 2.99291) (-1.59801e-15 -0.256501 2.85293) (-1.62171e-15 -0.246092 2.72693) (-1.64476e-15 -0.245166 2.60675) (-1.66753e-15 -0.252045 2.4853) (-1.69012e-15 -0.265646 2.35004) (-1.71258e-15 -0.285936 2.18552) (-1.73491e-15 -0.308794 1.98044) (-1.75713e-15 -0.331834 1.73152) (-1.77892e-15 -0.345381 1.44711) (-1.79964e-15 -0.344639 1.13038) (-1.8177e-15 -0.324996 0.780046) (-1.83199e-15 -0.294413 0.399277) (-1.84183e-15 -0.271904 8.79311e-05) (-1.84959e-15 -0.212226 -0.279831) (-1.84264e-15 -0.153316 -0.529086) (-1.8255e-15 -0.0627031 -0.746855) (-1.73993e-15 -0.0164321 -0.949242) (-1.52882e-15 0.00373693 -1.31818) (-1.12047e-15 0.0669892 -1.62629) (-6.78639e-16 0.141691 -1.63881) (-3.0134e-16 0.197192 -1.44202) (-5.86753e-17 0.232666 -1.31717) (5.97868e-17 0.224206 -1.2265) (1.30749e-16 0.212574 -1.09256) (1.89367e-16 0.241567 -0.990413) (2.49111e-16 0.251276 -0.929141) (3.51341e-16 0.273762 -0.871818) (5.08743e-16 0.371884 -0.898315) (7.18952e-16 0.508968 -1.02878) (9.33168e-16 0.560308 -1.27679) (1.05989e-15 0.573207 -1.17269) (1.09278e-15 0.357511 -0.857825) (9.9981e-16 0.0662808 -0.3851) (9.4355e-16 -0.116808 -0.734248) (1.1275e-15 -0.166651 -0.850159) (1.29875e-15 -0.0616964 -0.568733) (1.4072e-15 0.00505502 -0.0359015) (1.44911e-15 -0.0477954 -0.115969) (1.36351e-15 -0.217924 -0.925688) (1.33953e-15 -0.181398 -0.970761) (1.29352e-15 -0.0720208 -1.07676) (1.27201e-15 0.0923263 -1.17799) (1.28753e-15 0.326802 -0.538205) (1.28253e-15 0.357203 0.342516) (1.27517e-15 0.587081 -0.256785) (1.26942e-15 0.0537319 3.76219) (1.26009e-15 -0.427853 1.88307) (1.19796e-15 -0.885182 0.0792891) (1.02643e-15 -1.15646 0.427291) (5.79586e-16 -1.17739 0.312217) (3.84122e-17 -1.01844 0.73239) (-4.08986e-16 -0.976511 0.561697) (-2.56389e-16 -1.41617 1.20504) (1.50455e-15 -3.85418 5.78112) (3.32952e-15 -7.65839 12.5784) (3.33043e-15 -9.74077 16.2242) (1.44553e-15 -7.76402 12.6924) (-9.14185e-16 0.0645183 4.58911) (-9.07451e-16 0.0321547 4.57392) (-9.48237e-16 0.022222 4.5913) (-9.87698e-16 0.0049269 4.59296) (-1.0257e-15 -0.00976943 4.59483) (-1.0633e-15 -0.0230266 4.59229) (-1.10068e-15 -0.0344415 4.58428) (-1.13706e-15 -0.0475861 4.56914) (-1.1719e-15 -0.0614204 4.54852) (-1.2051e-15 -0.0756884 4.52038) (-1.23658e-15 -0.0926125 4.48203) (-1.26687e-15 -0.111557 4.43131) (-1.29642e-15 -0.131253 4.36455) (-1.32552e-15 -0.153064 4.28242) (-1.35484e-15 -0.176397 4.18442) (-1.38523e-15 -0.20094 4.06877) (-1.41649e-15 -0.224627 3.93566) (-1.44774e-15 -0.244828 3.78508) (-1.47831e-15 -0.257896 3.62171) (-1.50757e-15 -0.262069 3.45051) (-1.53507e-15 -0.256271 3.27807) (-1.56103e-15 -0.244383 3.11375) (-1.58629e-15 -0.22968 2.9665) (-1.61196e-15 -0.22286 2.83285) (-1.63854e-15 -0.223069 2.70595) (-1.6661e-15 -0.22857 2.57749) (-1.69388e-15 -0.238213 2.43369) (-1.72142e-15 -0.252942 2.25938) (-1.74844e-15 -0.268561 2.04329) (-1.77453e-15 -0.283349 1.78224) (-1.79852e-15 -0.287712 1.48354) (-1.81844e-15 -0.278366 1.14975) (-1.82994e-15 -0.251479 0.781871) (-1.82847e-15 -0.214309 0.386047) (-1.81387e-15 -0.181543 -0.0357675) (-1.79498e-15 -0.148978 -0.37492) (-1.71732e-15 -0.141971 -0.652675) (-1.57321e-15 -0.0986749 -0.928029) (-1.16046e-15 0.0213293 -1.06244) (-7.34287e-16 0.0840041 -1.09265) (-3.96487e-16 0.102642 -1.12741) (-1.389e-16 0.117297 -1.20657) (8.93813e-17 0.15685 -1.11039) (2.25905e-16 0.202806 -1.02783) (2.86268e-16 0.196064 -0.948768) (3.29271e-16 0.177092 -0.851732) (3.79585e-16 0.213443 -0.814679) (4.50407e-16 0.227692 -0.786681) (5.682e-16 0.261922 -0.751648) (7.23167e-16 0.344153 -0.866034) (9.08294e-16 0.433498 -1.04448) (1.06831e-15 0.446638 -1.21088) (1.15152e-15 0.373209 -0.962319) (1.18139e-15 0.0943784 -0.697781) (1.14744e-15 -0.192746 -0.5369) (1.13911e-15 -0.343028 -0.793311) (1.33547e-15 -0.604311 -0.917648) (1.48576e-15 -0.849604 -0.857746) (1.52539e-15 -0.516705 -0.28399) (1.53315e-15 -0.0387553 0.235353) (1.48603e-15 -0.170742 -0.450514) (1.43234e-15 -0.17665 -1.08336) (1.35554e-15 -0.0766057 -1.12145) (1.32098e-15 0.0457367 -0.779552) (1.29312e-15 0.189615 -0.36846) (1.30124e-15 0.395176 0.921754) (1.27475e-15 0.264958 0.86818) (1.26927e-15 0.1674 2.40072) (1.24101e-15 -0.0801444 2.0927) (1.16849e-15 -0.668337 0.872537) (9.73473e-16 -1.07844 0.955354) (5.34813e-16 -1.12286 0.743837) (-1.12722e-17 -0.986708 1.02903) (-4.08849e-16 -1.00953 0.896017) (1.77501e-16 -2.02403 2.47251) (2.08694e-15 -5.02408 7.9612) (3.44229e-15 -8.58366 14.261) (3.21789e-15 -9.57542 16.0806) (2.42607e-16 -6.29009 10.3085) (-1.10602e-15 0.0653634 4.87305) (-7.76175e-16 0.0320205 4.83059) (-8.10262e-16 0.0221267 4.83816) (-8.59204e-16 0.00532404 4.82512) (-9.0033e-16 -0.00812627 4.81382) (-9.42925e-16 -0.0201279 4.79796) (-9.86527e-16 -0.0307843 4.77674) (-1.0302e-15 -0.0430688 4.74919) (-1.07295e-15 -0.0554854 4.71739) (-1.11456e-15 -0.0685218 4.67888) (-1.15431e-15 -0.0831081 4.63144) (-1.19213e-15 -0.0996453 4.57294) (-1.22866e-15 -0.116789 4.49957) (-1.26356e-15 -0.135398 4.41197) (-1.29673e-15 -0.15514 4.30974) (-1.32886e-15 -0.175891 4.19048) (-1.36005e-15 -0.195835 4.05392) (-1.3894e-15 -0.212749 3.90006) (-1.41608e-15 -0.223301 3.7332) (-1.43991e-15 -0.226131 3.55813) (-1.46132e-15 -0.220655 3.38103) (-1.48196e-15 -0.210675 3.21093) (-1.5042e-15 -0.198595 3.05547) (-1.52996e-15 -0.194824 2.91108) (-1.55865e-15 -0.19577 2.77219) (-1.58854e-15 -0.200287 2.63016) (-1.61577e-15 -0.206112 2.47201) (-1.63753e-15 -0.214397 2.28466) (-1.65168e-15 -0.221578 2.05812) (-1.65673e-15 -0.227157 1.79098) (-1.65098e-15 -0.221988 1.49151) (-1.63395e-15 -0.206034 1.16415) (-1.60187e-15 -0.177322 0.815323) (-1.55119e-15 -0.148629 0.457116) (-1.47889e-15 -0.141618 0.101615) (-1.36889e-15 -0.132582 -0.263304) (-1.16847e-15 -0.0415452 -0.753204) (-8.20481e-16 0.102163 -1.62185) (-1.44588e-16 0.131815 -1.3625) (9.08704e-17 0.0926037 -1.15536) (2.33955e-16 0.0802768 -1.05093) (3.29174e-16 0.100707 -1.04231) (4.23507e-16 0.129472 -0.823243) (4.64483e-16 0.135633 -0.756358) (4.80763e-16 0.0899783 -0.707478) (5.11216e-16 0.0366206 -0.678727) (5.63073e-16 0.0267624 -0.747963) (6.42966e-16 -0.0179862 -0.838331) (7.55074e-16 0.0256612 -0.881881) (8.745e-16 0.168888 -0.995872) (1.00216e-15 0.326955 -1.05301) (1.1224e-15 0.370878 -0.921941) (1.22478e-15 0.284554 -0.576518) (1.31047e-15 0.0410175 -0.349482) (1.36834e-15 -0.198877 -0.306369) (1.41202e-15 -0.354691 -0.635058) (1.54685e-15 -0.425838 -0.838177) (1.60556e-15 -0.198298 -0.825773) (1.59318e-15 -0.555304 -0.713054) (1.52609e-15 -0.118844 -0.670038) (1.44003e-15 -0.0184457 -0.450313) (1.37495e-15 0.0453145 -1.71053) (1.32713e-15 0.0433099 -1.3619) (1.30961e-15 -0.0251385 -1.65884) (1.29974e-15 0.0865897 0.0848106) (1.29103e-15 0.29639 0.121774) (1.25645e-15 0.239924 1.93089) (1.23282e-15 0.202718 2.01679) (1.18738e-15 0.0451868 2.19497) (1.09946e-15 -0.517165 1.64709) (8.9469e-16 -0.989861 1.42829) (4.48522e-16 -1.0581 1.35456) (-1.06634e-16 -0.941339 1.36004) (-3.15355e-16 -1.17176 1.49007) (6.90396e-16 -2.81041 4.14931) (2.50775e-15 -6.19024 10.1682) (3.30662e-15 -9.24822 15.4631) (2.57002e-15 -9.01369 15.197) (2.03818e-16 -4.4972 7.81118) (-1.27197e-16 0.069273 5.29209) (-5.45402e-16 0.0351845 5.23822) (-5.96484e-16 0.0257886 5.23132) (-6.20225e-16 0.00977587 5.20211) (-6.60995e-16 -0.00216469 5.17409) (-7.01839e-16 -0.0129092 5.14019) (-7.44094e-16 -0.0230036 5.09992) (-7.88043e-16 -0.0346001 5.05319) (-8.32522e-16 -0.0459517 5.00248) (-8.77198e-16 -0.0581124 4.94528) (-9.20792e-16 -0.0710061 4.88032) (-9.62431e-16 -0.0851088 4.80628) (-1.00194e-15 -0.0999481 4.71869) (-1.03894e-15 -0.115594 4.61883) (-1.07243e-15 -0.131974 4.50679) (-1.10183e-15 -0.149011 4.38031) (-1.12675e-15 -0.165293 4.23875) (-1.14665e-15 -0.178945 4.0821) (-1.16078e-15 -0.186989 3.91441) (-1.16985e-15 -0.188205 3.73971) (-1.17585e-15 -0.182568 3.56291) (-1.18225e-15 -0.173356 3.39138) (-1.19265e-15 -0.164067 3.23024) (-1.20867e-15 -0.162453 3.07581) (-1.22732e-15 -0.163706 2.92461) (-1.24457e-15 -0.168316 2.76949) (-1.25358e-15 -0.171681 2.60091) (-1.2504e-15 -0.17532 2.40946) (-1.23287e-15 -0.177618 2.18749) (-1.20185e-15 -0.179634 1.93466) (-1.15771e-15 -0.175838 1.65728) (-1.10137e-15 -0.165489 1.35802) (-1.0259e-15 -0.148137 1.04608) (-9.18997e-16 -0.135562 0.739054) (-7.5943e-16 -0.128475 0.452778) (-5.0286e-16 -0.0951463 0.191031) (-1.30326e-16 -0.017573 -0.0367796) (2.55035e-16 0.0108337 -0.209384) (4.44491e-16 -0.00930114 -0.172493) (5.24615e-16 -0.00710913 -0.241901) (5.80901e-16 0.0397652 -0.255049) (6.19839e-16 0.0611218 -0.291497) (6.50693e-16 0.0724447 -0.147697) (6.4989e-16 0.0786795 -0.0998951) (6.53664e-16 0.0631727 -0.0723993) (6.81369e-16 0.0545849 -0.102132) (7.31137e-16 0.051116 -0.203818) (8.04384e-16 0.0344089 -0.368053) (8.91418e-16 0.0657129 -0.542619) (9.77096e-16 0.153667 -0.67748) (1.06393e-15 0.253477 -0.650472) (1.15605e-15 0.278303 -0.420717) (1.26062e-15 0.221395 -0.103242) (1.37344e-15 0.05771 0.0296473) (1.47775e-15 -0.103012 -0.0578602) (1.54683e-15 -0.21655 -0.39421) (1.58585e-15 -0.273045 -0.631712) (1.58521e-15 -0.479712 -0.826583) (1.5873e-15 -0.697942 -1.07664) (1.46747e-15 -0.395629 -1.5633) (1.30321e-15 -0.141307 -1.05401) (1.24298e-15 -0.0892805 -1.06622) (1.27587e-15 -0.292125 1.66661) (1.28775e-15 -0.0856822 -1.17416) (1.27675e-15 -0.00757415 0.131301) (1.26189e-15 0.237618 0.433006) (1.20089e-15 0.327376 2.48326) (1.18518e-15 0.228498 2.07606) (1.11426e-15 0.058026 2.60291) (9.87803e-16 -0.438551 2.44159) (7.69862e-16 -0.920888 2.00045) (3.1334e-16 -1.00875 1.87366) (-2.01734e-16 -0.933881 1.73374) (-7.64312e-17 -1.50986 2.42615) (1.24413e-15 -3.74819 6.17504) (2.81481e-15 -7.26303 12.2262) (3.08058e-15 -9.57267 16.0019) (2.04704e-15 -8.10032 13.6271) (5.78936e-17 -2.85231 5.58485) (-2.60223e-16 0.0759311 5.91404) (-2.66071e-16 0.0403388 5.84154) (-2.92536e-16 0.0325238 5.83017) (-3.07433e-16 0.0179789 5.79004) (-3.29465e-16 0.00769949 5.7505) (-3.54322e-16 -0.00200971 5.70256) (-3.81507e-16 -0.0116823 5.64656) (-4.11023e-16 -0.0226005 5.5831) (-4.42144e-16 -0.0331051 5.5148) (-4.74572e-16 -0.0443566 5.43939) (-5.07155e-16 -0.0557679 5.35654) (-5.39094e-16 -0.06799 5.26576) (-5.68291e-16 -0.081041 5.16416) (-5.94805e-16 -0.0941944 5.05239) (-6.17233e-16 -0.107829 4.93121) (-6.34199e-16 -0.121672 4.79909) (-6.4475e-16 -0.134735 4.65545) (-6.48494e-16 -0.145448 4.50025) (-6.45403e-16 -0.15099 4.33703) (-6.37184e-16 -0.15049 4.16821) (-6.26634e-16 -0.144825 3.99679) (-6.17439e-16 -0.13655 3.82785) (-6.12565e-16 -0.129872 3.66461) (-6.12419e-16 -0.128937 3.50434) (-6.12849e-16 -0.129831 3.34609) (-6.09738e-16 -0.133799 3.18451) (-5.96364e-16 -0.135522 3.01342) (-5.69921e-16 -0.137591 2.82586) (-5.2869e-16 -0.137665 2.61607) (-4.73696e-16 -0.13753 2.38449) (-4.03203e-16 -0.135022 2.13924) (-3.13835e-16 -0.126444 1.88866) (-1.95728e-16 -0.108056 1.65311) (-3.93659e-17 -0.0875801 1.45939) (1.61992e-16 -0.0587303 1.3237) (3.99409e-16 -0.0101298 1.24552) (6.13402e-16 0.0336145 1.21687) (7.35777e-16 0.020862 1.22573) (7.95116e-16 0.00438215 1.20007) (8.29373e-16 0.0149387 1.12804) (8.5634e-16 0.0530445 1.08043) (8.73658e-16 0.0616826 1.01442) (8.85807e-16 0.0752451 1.00831) (8.78884e-16 0.0820916 0.965019) (8.79644e-16 0.0670217 0.900742) (8.9993e-16 0.0525853 0.797908) (9.38649e-16 0.0395869 0.656322) (9.97728e-16 0.0237085 0.467377) (1.06428e-15 0.0438611 0.267203) (1.12226e-15 0.105578 0.143002) (1.17313e-15 0.177493 0.191437) (1.22572e-15 0.20161 0.40648) (1.29305e-15 0.174669 0.661758) (1.3704e-15 0.0807917 0.751146) (1.43763e-15 -0.0128031 0.612766) (1.4773e-15 -0.0575121 0.357425) (1.46761e-15 -0.180962 0.135631) (1.45756e-15 -0.335198 -0.311791) (1.43666e-15 -0.348497 -1.0445) (1.30766e-15 -0.205629 -1.55497) (1.18706e-15 -0.149699 -1.48364) (1.17339e-15 -0.16259 -1.25656) (1.21391e-15 -0.185986 -0.956085) (1.23951e-15 -0.0987471 -0.880383) (1.24215e-15 -0.110373 0.228836) (1.20826e-15 0.121741 0.973221) (1.12867e-15 0.187106 2.43035) (1.0644e-15 0.132181 2.6899) (9.08551e-16 0.0117123 3.16001) (6.94556e-16 -0.390789 3.10717) (4.68219e-16 -0.835278 2.54655) (7.79043e-17 -0.941456 2.20561) (-2.15822e-16 -0.992729 2.20131) (3.50316e-16 -2.02659 3.8498) (1.80606e-15 -4.76584 8.47184) (2.99644e-15 -8.13255 13.9091) (2.81696e-15 -9.5174 15.821) (1.56076e-15 -6.98963 11.6507) (-1.59544e-16 -1.60501 3.67176) (-2.0804e-16 0.0791784 6.72795) (3.53605e-18 0.0470889 6.64542) (1.43764e-17 0.0401359 6.64258) (1.78546e-17 0.0278528 6.60413) (2.06349e-17 0.0194659 6.56569) (1.94794e-17 0.0109955 6.51635) (1.67735e-17 0.00213616 6.4573) (1.21049e-17 -0.00773058 6.38937) (5.66003e-18 -0.0173668 6.31494) (-2.38719e-18 -0.0277324 6.23209) (-1.13404e-17 -0.0380593 6.14098) (-2.05832e-17 -0.0491577 6.04171) (-2.93794e-17 -0.0609207 5.93329) (-3.50042e-17 -0.0721305 5.81734) (-3.74289e-17 -0.0834235 5.694) (-3.54857e-17 -0.0943617 5.56269) (-2.80587e-17 -0.104162 5.42311) (-1.46174e-17 -0.111639 5.27531) (4.41553e-18 -0.114282 5.12238) (2.74721e-17 -0.111906 4.96575) (5.24445e-17 -0.10557 4.80748) (7.68105e-17 -0.09785 4.65148) (9.86723e-17 -0.0918688 4.49974) (1.18068e-16 -0.0898845 4.35021) (1.38317e-16 -0.0893414 4.20334) (1.62585e-16 -0.0911156 4.0557) (1.96622e-16 -0.0911987 3.90548) (2.43063e-16 -0.0915715 3.75056) (3.0407e-16 -0.0898849 3.59069) (3.79366e-16 -0.0862521 3.43037) (4.6924e-16 -0.0796598 3.2811) (5.72576e-16 -0.0680506 3.15266) (6.87773e-16 -0.0484656 3.05838) (8.08877e-16 -0.0268973 3.00566) (9.27506e-16 -0.00592408 2.98705) (1.02924e-15 0.0152521 2.98278) (1.09795e-15 0.0322684 2.98277) (1.13825e-15 0.0285428 2.97199) (1.16198e-15 0.0265804 2.92544) (1.17545e-15 0.037377 2.85017) (1.18537e-15 0.0592915 2.77633) (1.1891e-15 0.0621227 2.68603) (1.18861e-15 0.0707574 2.61379) (1.17666e-15 0.0703934 2.50879) (1.16776e-15 0.052927 2.38115) (1.16811e-15 0.0372218 2.2337) (1.17976e-15 0.0304322 2.07761) (1.20722e-15 0.0296595 1.92074) (1.2409e-15 0.0507033 1.7795) (1.26534e-15 0.0908584 1.6896) (1.28002e-15 0.130597 1.69777) (1.2934e-15 0.143433 1.7993) (1.31907e-15 0.131154 1.94678) (1.35335e-15 0.0841209 2.03701) (1.37499e-15 0.0321431 1.97729) (1.37668e-15 -0.00912032 1.8233) (1.35468e-15 -0.0636558 1.64946) (1.31645e-15 -0.112914 1.27063) (1.26792e-15 -0.153791 0.723486) (1.19333e-15 -0.167285 0.312185) (1.13627e-15 -0.216241 0.0512172) (1.14961e-15 -0.261172 -0.0138988) (1.18746e-15 -0.315994 0.100518) (1.19071e-15 -0.228555 0.219228) (1.17343e-15 -0.205449 0.922372) (1.08853e-15 -0.0434414 1.94975) (9.40768e-16 0.00152242 3.03551) (7.65838e-16 0.0339275 3.41656) (4.81644e-16 -0.0431353 3.72823) (2.07076e-16 -0.364576 3.60831) (5.63298e-17 -0.748859 2.98711) (-1.08372e-16 -0.890701 2.55828) (1.97515e-17 -1.19316 3.09791) (9.53651e-16 -2.743 5.90871) (2.29358e-15 -5.75825 10.8116) (3.02159e-15 -8.70797 15.0165) (2.48606e-15 -9.10502 14.9804) (1.08255e-15 -5.75729 9.48331) (-5.40814e-16 -0.578057 1.92521) (2.02323e-16 0.0735431 7.68837) (2.36396e-16 0.0526148 7.61629) (2.59823e-16 0.0450464 7.63457) (2.83314e-16 0.0354414 7.61445) (3.08453e-16 0.0290302 7.59398) (3.31175e-16 0.0221781 7.56146) (3.53233e-16 0.0147454 7.51876) (3.74293e-16 0.00647764 7.46659) (3.94295e-16 -0.00187186 7.40698) (4.13296e-16 -0.0110719 7.33827) (4.31548e-16 -0.0201603 7.26072) (4.49234e-16 -0.0298415 7.17427) (4.66847e-16 -0.0398717 7.07922) (4.85262e-16 -0.0492442 6.97822) (5.0602e-16 -0.0582282 6.87235) (5.29712e-16 -0.0664616 6.76139) (5.57309e-16 -0.0732486 6.64608) (5.8934e-16 -0.0777759 6.52716) (6.2553e-16 -0.0782563 6.4077) (6.64737e-16 -0.0751338 6.28885) (7.05556e-16 -0.0689676 6.17211) (7.46232e-16 -0.062333 6.06001) (7.85294e-16 -0.0573493 5.95307) (8.226e-16 -0.0558207 5.84918) (8.59911e-16 -0.0560266 5.74932) (8.99345e-16 -0.0585117 5.65225) (9.44622e-16 -0.0603824 5.56075) (9.97165e-16 -0.0617987 5.47649) (1.0572e-15 -0.0619505 5.40118) (1.12257e-15 -0.0595142 5.3369) (1.19016e-15 -0.0537701 5.287) (1.25628e-15 -0.0443154 5.251) (1.31778e-15 -0.0305987 5.22968) (1.37189e-15 -0.0160996 5.22071) (1.41667e-15 -0.0033583 5.21627) (1.45035e-15 0.0110762 5.20662) (1.47298e-15 0.0269771 5.19354) (1.4873e-15 0.029482 5.16641) (1.49454e-15 0.0310695 5.11471) (1.49693e-15 0.0373872 5.0415) (1.49687e-15 0.0492747 4.96395) (1.49335e-15 0.0512273 4.87513) (1.48683e-15 0.0563473 4.79028) (1.47503e-15 0.0521625 4.68126) (1.46246e-15 0.0343227 4.55317) (1.45134e-15 0.0165534 4.41218) (1.44327e-15 0.00566544 4.26974) (1.44026e-15 0.00151554 4.13532) (1.43926e-15 0.0163105 4.02174) (1.43366e-15 0.0431935 3.94363) (1.42187e-15 0.0664589 3.91619) (1.40734e-15 0.0685691 3.93032) (1.39604e-15 0.053602 3.97006) (1.38762e-15 0.0221667 3.99755) (1.37387e-15 -0.0111214 3.95289) (1.35106e-15 -0.0351897 3.84603) (1.3194e-15 -0.0634485 3.70311) (1.28032e-15 -0.101708 3.41579) (1.23744e-15 -0.146533 3.01108) (1.19342e-15 -0.162086 2.5988) (1.15513e-15 -0.220496 2.12947) (1.12587e-15 -0.296381 1.70213) (1.09927e-15 -0.368777 1.48194) (1.08291e-15 -0.329456 1.44551) (1.03273e-15 -0.344089 1.8005) (9.11658e-16 -0.231961 2.69507) (7.15442e-16 -0.132304 3.48417) (4.71525e-16 -0.0245881 3.88994) (1.69373e-16 -0.00788153 4.09992) (-1.54542e-17 -0.250884 3.93798) (-3.12168e-17 -0.608589 3.45099) (7.42596e-17 -0.883463 3.39911) (5.82093e-16 -1.58903 4.9246) (1.60077e-15 -3.57186 8.4903) (2.61645e-15 -6.59076 12.8671) (2.88452e-15 -8.94422 15.4353) (2.09824e-15 -8.41146 13.6128) (6.40198e-16 -4.57394 7.48927) (-5.77368e-16 -0.00792989 1.58966) (2.81446e-16 0.0663244 8.70641) (4.38438e-16 0.0507816 8.70557) (4.20745e-16 0.0445517 8.74757) (4.59221e-16 0.0371102 8.76195) (5.0018e-16 0.0326695 8.77484) (5.40087e-16 0.0274686 8.77666) (5.80281e-16 0.021618 8.76941) (6.20365e-16 0.0150688 8.75388) (6.60165e-16 0.00830334 8.73161) (6.99638e-16 0.00060507 8.70113) (7.38795e-16 -0.0070163 8.66267) (7.77609e-16 -0.0151126 8.61592) (8.16178e-16 -0.0235409 8.56124) (8.5464e-16 -0.0315055 8.50106) (8.9379e-16 -0.0389851 8.43742) (9.34296e-16 -0.0456947 8.37098) (9.76617e-16 -0.0511594 8.30299) (1.02099e-15 -0.0547173 8.23477) (1.06707e-15 -0.0550926 8.16929) (1.11391e-15 -0.0529191 8.10705) (1.16053e-15 -0.0484177 8.04887) (1.20581e-15 -0.0435004 7.99588) (1.24886e-15 -0.0399264 7.94733) (1.28952e-15 -0.0394107 7.90078) (1.32844e-15 -0.0408413 7.85658) (1.36653e-15 -0.0448512 7.81412) (1.40521e-15 -0.0488894 7.77708) (1.44471e-15 -0.0525295 7.74745) (1.48441e-15 -0.054778 7.72592) (1.5227e-15 -0.0541994 7.71198) (1.5578e-15 -0.050336 7.70474) (1.58839e-15 -0.0430992 7.70157) (1.61392e-15 -0.0322491 7.70199) (1.63447e-15 -0.0203297 7.7049) (1.65036e-15 -0.00799476 7.70671) (1.66197e-15 0.00763129 7.70332) (1.66995e-15 0.0240092 7.6972) (1.67426e-15 0.0311319 7.68284) (1.67528e-15 0.036082 7.65244) (1.6735e-15 0.0418693 7.6053) (1.66946e-15 0.050371 7.5501) (1.6631e-15 0.054213 7.48693) (1.65455e-15 0.0592006 7.42253) (1.64329e-15 0.0556016 7.34071) (1.63026e-15 0.0401314 7.24131) (1.61633e-15 0.0223886 7.12809) (1.60233e-15 0.00933469 7.00922) (1.58874e-15 0.00182448 6.89227) (1.57477e-15 0.0107969 6.79134) (1.55876e-15 0.0301157 6.71692) (1.54043e-15 0.0462373 6.67143) (1.52027e-15 0.0450683 6.6415) (1.49914e-15 0.0294267 6.61718) (1.47726e-15 0.00421325 6.58836) (1.45341e-15 -0.0191881 6.52889) (1.42739e-15 -0.0313404 6.44087) (1.40036e-15 -0.0413409 6.32815) (1.36809e-15 -0.059138 6.10637) (1.32772e-15 -0.0813317 5.77115) (1.27893e-15 -0.082738 5.37623) (1.21287e-15 -0.127567 4.85141) (1.12342e-15 -0.220727 4.18257) (1.01883e-15 -0.344994 3.46296) (9.23368e-16 -0.41299 2.93117) (8.31002e-16 -0.48485 2.76227) (6.93648e-16 -0.424573 3.06653) (5.21209e-16 -0.292078 3.50787) (3.4875e-16 -0.105398 3.91909) (2.57245e-16 0.0118152 4.43171) (3.22217e-16 -0.161717 4.76933) (4.26437e-16 -0.551982 4.80067) (6.89676e-16 -1.06965 5.47976) (1.29279e-15 -2.16939 7.70717) (2.12493e-15 -4.35606 11.1487) (2.73533e-15 -7.15154 14.343) (2.6185e-15 -8.83948 15.1393) (1.68309e-15 -7.53141 11.8779) (2.66174e-16 -3.47919 5.94182) (-4.6432e-16 0.684755 2.68852) (3.94248e-16 0.0566688 9.79292) (4.51978e-16 0.0400282 9.82483) (5.00806e-16 0.0371303 9.90277) (5.4856e-16 0.031067 9.95442) (5.96909e-16 0.0283206 10.0059) (6.4551e-16 0.024405 10.0479) (6.94515e-16 0.0198361 10.0826) (7.43606e-16 0.0146978 10.1107) (7.92673e-16 0.00934758 10.1334) (8.41605e-16 0.00309713 10.1497) (8.9025e-16 -0.00318762 10.1594) (9.38475e-16 -0.00994284 10.1622) (9.86174e-16 -0.017113 10.1581) (1.03333e-15 -0.0239939 10.1486) (1.08018e-15 -0.0305364 10.1349) (1.12706e-15 -0.0365216 10.1187) (1.17408e-15 -0.0415982 10.1016) (1.22103e-15 -0.0450932 10.0849) (1.26746e-15 -0.0458938 10.0705) (1.31284e-15 -0.0445589 10.059) (1.35661e-15 -0.0412664 10.0511) (1.39822e-15 -0.0373943 10.0476) (1.43733e-15 -0.0344349 10.0478) (1.47385e-15 -0.0339489 10.0491) (1.50801e-15 -0.0354042 10.0511) (1.54011e-15 -0.0397771 10.053) (1.57048e-15 -0.044715 10.0575) (1.599e-15 -0.0496836 10.0664) (1.62525e-15 -0.0530466 10.0805) (1.64865e-15 -0.053454 10.0995) (1.66878e-15 -0.0504915 10.1226) (1.68561e-15 -0.0443997 10.1481) (1.6994e-15 -0.0348716 10.1757) (1.71057e-15 -0.0237333 10.2049) (1.7195e-15 -0.0104816 10.2337) (1.72645e-15 0.00607965 10.2594) (1.73161e-15 0.0230021 10.2833) (1.73496e-15 0.0341268 10.3039) (1.73659e-15 0.0424504 10.3139) (1.73665e-15 0.0496686 10.3116) (1.7353e-15 0.0578044 10.3019) (1.73258e-15 0.0643521 10.2871) (1.72855e-15 0.0707646 10.2704) (1.72313e-15 0.0696991 10.2419) (1.71658e-15 0.0586294 10.1987) (1.7094e-15 0.0444637 10.1423) (1.70194e-15 0.033409 10.0774) (1.69413e-15 0.0271465 10.0089) (1.68571e-15 0.0351059 9.94925) (1.67639e-15 0.0526182 9.90803) (1.66613e-15 0.0683309 9.88472) (1.65456e-15 0.0694539 9.86496) (1.64151e-15 0.056494 9.83911) (1.62766e-15 0.0359355 9.80612) (1.61334e-15 0.0187608 9.75752) (1.59851e-15 0.0140763 9.69698) (1.58252e-15 0.0168578 9.61973) (1.56095e-15 0.0192876 9.46507) (1.53116e-15 0.022121 9.21354) (1.49128e-15 0.0444402 8.88769) (1.43261e-15 0.0395508 8.41993) (1.34468e-15 -0.0120331 7.74444) (1.22139e-15 -0.10926 6.87213) (1.06939e-15 -0.209657 5.92876) (9.14758e-16 -0.328796 5.12838) (7.8485e-16 -0.332374 4.72938) (6.87182e-16 -0.270968 4.68944) (6.63204e-16 -0.162308 5.02494) (7.84989e-16 -0.0858075 5.8974) (9.79853e-16 -0.234448 6.85544) (1.14539e-15 -0.671739 7.54881) (1.4167e-15 -1.41153 8.68827) (1.89431e-15 -2.74934 10.8142) (2.42934e-15 -4.94305 13.3877) (2.66578e-15 -7.39174 15.0753) (2.27148e-15 -8.43721 14.2171) (1.27649e-15 -6.57901 9.99196) (-3.29227e-17 -2.62192 4.70487) (-4.75263e-16 1.08437 2.84117) (6.36858e-16 0.0364216 10.8787) (4.8056e-16 0.0232101 10.9343) (5.25407e-16 0.0225932 11.046) (5.8407e-16 0.0176296 11.1302) (6.3328e-16 0.0162073 11.2166) (6.84131e-16 0.0132103 11.2944) (7.35648e-16 0.00963346 11.3672) (7.87176e-16 0.0055699 11.4349) (8.38606e-16 0.00128193 11.4983) (8.89779e-16 -0.00380647 11.5565) (9.40545e-16 -0.00902628 11.6091) (9.90751e-16 -0.0147318 11.6555) (1.04028e-15 -0.0208584 11.6955) (1.08915e-15 -0.0268207 11.7306) (1.13736e-15 -0.0325844 11.7624) (1.1848e-15 -0.0379659 11.7917) (1.23125e-15 -0.0426392 11.8193) (1.27647e-15 -0.0459941 11.846) (1.32016e-15 -0.0470753 11.8738) (1.362e-15 -0.0463652 11.9035) (1.4017e-15 -0.0439975 11.9362) (1.43903e-15 -0.0410708 11.9731) (1.47386e-15 -0.0387846 12.0136) (1.50623e-15 -0.0385522 12.0556) (1.53622e-15 -0.040326 12.0979) (1.56398e-15 -0.0451713 12.1394) (1.58954e-15 -0.0510062 12.1819) (1.61278e-15 -0.0569865 12.227) (1.63347e-15 -0.0612842 12.2757) (1.65149e-15 -0.0624568 12.3282) (1.66689e-15 -0.0600546 12.3844) (1.67997e-15 -0.0543965 12.443) (1.6911e-15 -0.0452362 12.5037) (1.70065e-15 -0.0338783 12.5663) (1.70889e-15 -0.0199624 12.6295) (1.71599e-15 -0.00377737 12.6914) (1.72207e-15 0.0127127 12.753) (1.72727e-15 0.0254964 12.8131) (1.73191e-15 0.0353163 12.8673) (1.73615e-15 0.0433832 12.9137) (1.73996e-15 0.0513712 12.9552) (1.74337e-15 0.0588584 12.9947) (1.74645e-15 0.0660104 13.0331) (1.74935e-15 0.0666091 13.0643) (1.7522e-15 0.0589325 13.0842) (1.75517e-15 0.0482583 13.0925) (1.7583e-15 0.039437 13.0912) (1.76138e-15 0.0348947 13.0838) (1.76436e-15 0.0426375 13.0809) (1.76739e-15 0.0593295 13.0912) (1.77056e-15 0.0754911 13.1135) (1.77369e-15 0.079626 13.1359) (1.77636e-15 0.0700267 13.1487) (1.7784e-15 0.0530128 13.15) (1.78009e-15 0.0393462 13.1387) (1.7818e-15 0.0385478 13.121) (1.78341e-15 0.0496612 13.0949) (1.78362e-15 0.0660037 13.025) (1.7815e-15 0.0870458 12.8922) (1.77611e-15 0.129131 12.7058) (1.76454e-15 0.15901 12.4227) (1.74039e-15 0.150709 11.9815) (1.6962e-15 0.0956207 11.3634) (1.6298e-15 0.016822 10.6107) (1.54904e-15 -0.0953996 9.81928) (1.4707e-15 -0.152946 9.15887) (1.40985e-15 -0.1907 8.77162) (1.40735e-15 -0.216454 8.77721) (1.49681e-15 -0.251322 9.36918) (1.63343e-15 -0.438906 10.2632) (1.76657e-15 -0.908419 11.07) (1.96241e-15 -1.75149 12.0809) (2.2529e-15 -3.16975 13.5249) (2.50659e-15 -5.25224 14.8829) (2.45596e-15 -7.3117 15.0404) (1.89067e-15 -7.80424 12.82) (9.05199e-16 -5.63045 8.09791) (-2.50942e-16 -1.93832 3.64961) (-4.47796e-16 1.36729 2.6126) (5.21889e-16 0.00671221 11.9639) (4.9532e-16 0.00251525 12.0195) (5.35671e-16 0.00205584 12.1595) (5.89433e-16 -0.00152007 12.2637) (6.38553e-16 -0.0022819 12.3753) (6.87836e-16 -0.00449982 12.4786) (7.3765e-16 -0.00734243 12.5787) (7.87508e-16 -0.0105765 12.6751) (8.3727e-16 -0.0141104 12.7685) (8.86777e-16 -0.0183588 12.858) (9.35871e-16 -0.0227912 12.9432) (9.84388e-16 -0.0277304 13.0237) (1.03218e-15 -0.0330231 13.099) (1.07909e-15 -0.038231 13.1702) (1.12497e-15 -0.0433229 13.2381) (1.16962e-15 -0.048093 13.3031) (1.21281e-15 -0.0522238 13.3658) (1.25427e-15 -0.0552417 13.4269) (1.29377e-15 -0.0564182 13.488) (1.33108e-15 -0.0561778 13.5503) (1.36603e-15 -0.05452 13.615) (1.3985e-15 -0.0523378 13.6836) (1.42848e-15 -0.0505718 13.7556) (1.45605e-15 -0.0505351 13.8292) (1.48132e-15 -0.0525562 13.9029) (1.50438e-15 -0.0576359 13.9752) (1.52521e-15 -0.063987 14.0473) (1.54369e-15 -0.0705646 14.1203) (1.55967e-15 -0.0754615 14.1953) (1.57317e-15 -0.0772243 14.2727) (1.58438e-15 -0.0752501 14.3529) (1.59371e-15 -0.0698097 14.4351) (1.6016e-15 -0.0607626 14.5192) (1.60847e-15 -0.0494921 14.6053) (1.6146e-15 -0.0360493 14.6926) (1.62023e-15 -0.0209556 14.7801) (1.62551e-15 -0.0051319 14.8691) (1.63069e-15 0.00848613 14.9586) (1.63604e-15 0.019638 15.0442) (1.64171e-15 0.028739 15.1243) (1.64769e-15 0.0369286 15.2011) (1.65395e-15 0.0445396 15.2772) (1.66065e-15 0.0519328 15.3531) (1.66803e-15 0.0536449 15.4246) (1.67615e-15 0.0485725 15.4874) (1.68503e-15 0.0409106 15.5399) (1.69458e-15 0.0344187 15.5825) (1.70457e-15 0.0316106 15.6177) (1.71488e-15 0.03946 15.6541) (1.7259e-15 0.0557642 15.7001) (1.73809e-15 0.072706 15.7561) (1.75165e-15 0.0793999 15.8129) (1.76597e-15 0.0731007 15.861) (1.78025e-15 0.0594775 15.8966) (1.79439e-15 0.0484225 15.9199) (1.80863e-15 0.0494704 15.9373) (1.82344e-15 0.0634516 15.9506) (1.83998e-15 0.0845481 15.9436) (1.85852e-15 0.111675 15.9029) (1.87937e-15 0.15932 15.8345) (1.90378e-15 0.202226 15.7176) (1.93015e-15 0.212207 15.5098) (1.95324e-15 0.174768 15.1864) (1.96817e-15 0.100687 14.7547) (1.97256e-15 -0.0123867 14.2436) (1.96831e-15 -0.0958409 13.7383) (1.9595e-15 -0.185522 13.3319) (1.95327e-15 -0.280522 13.1085) (1.98297e-15 -0.387567 13.2864) (2.04457e-15 -0.609606 13.7812) (2.12148e-15 -1.09283 14.3024) (2.23005e-15 -1.96667 14.8486) (2.36025e-15 -3.37385 15.4077) (2.40306e-15 -5.2832 15.5179) (2.16337e-15 -6.96366 14.3272) (1.51619e-15 -7.02623 11.1159) (5.88726e-16 -4.74188 6.26799) (-4.016e-16 -1.37763 2.62837) (-4.14624e-16 1.63979 2.15042) (4.98535e-16 -0.0188911 13.0935) (5.59787e-16 -0.0233965 13.2027) (5.85069e-16 -0.0218176 13.327) (6.24415e-16 -0.02477 13.4348) (6.66271e-16 -0.0250916 13.5486) (7.07818e-16 -0.0267079 13.6579) (7.49797e-16 -0.0289185 13.7663) (7.92029e-16 -0.0314254 13.8736) (8.34303e-16 -0.0343033 13.9799) (8.76452e-16 -0.0378656 14.0843) (9.18293e-16 -0.0416698 14.1864) (9.59632e-16 -0.0460052 14.2851) (1.00028e-15 -0.05069 14.3802) (1.04004e-15 -0.0553525 14.472) (1.07873e-15 -0.059942 14.5609) (1.11612e-15 -0.0642763 14.647) (1.15199e-15 -0.0680679 14.7307) (1.18606e-15 -0.0709255 14.8125) (1.21808e-15 -0.0723159 14.8936) (1.24787e-15 -0.0726266 14.975) (1.27527e-15 -0.0716831 15.0582) (1.30021e-15 -0.070119 15.1445) (1.32271e-15 -0.068713 15.2339) (1.3429e-15 -0.0686882 15.3244) (1.36093e-15 -0.0705943 15.4144) (1.37688e-15 -0.0754523 15.5025) (1.39071e-15 -0.081763 15.589) (1.4023e-15 -0.0884578 15.6744) (1.41155e-15 -0.0935783 15.7599) (1.4185e-15 -0.0957572 15.8459) (1.42342e-15 -0.0942285 15.9329) (1.42675e-15 -0.0892213 16.0207) (1.42903e-15 -0.0807037 16.1095) (1.43072e-15 -0.0701658 16.1994) (1.43219e-15 -0.057708 16.2906) (1.43371e-15 -0.0437081 16.3826) (1.43545e-15 -0.0285798 16.477) (1.43773e-15 -0.0146325 16.5734) (1.44084e-15 -0.00275027 16.668) (1.4449e-15 0.00688639 16.7589) (1.44982e-15 0.0152971 16.8473) (1.45555e-15 0.0231181 16.9354) (1.46226e-15 0.0304577 17.0237) (1.47016e-15 0.0328185 17.1084) (1.47929e-15 0.0296851 17.1856) (1.48972e-15 0.0244228 17.2536) (1.50143e-15 0.0200789 17.3123) (1.51417e-15 0.0190257 17.3634) (1.52782e-15 0.0273404 17.4144) (1.54277e-15 0.0435414 17.4735) (1.55949e-15 0.061131 17.542) (1.57823e-15 0.0702165 17.6128) (1.59857e-15 0.0673005 17.677) (1.61951e-15 0.0574621 17.7295) (1.64063e-15 0.049567 17.7699) (1.662e-15 0.0526964 17.8045) (1.6844e-15 0.0685281 17.8376) (1.70967e-15 0.0923931 17.8639) (1.73891e-15 0.123428 17.8767) (1.77319e-15 0.173828 17.8826) (1.8155e-15 0.223771 17.8762) (1.86671e-15 0.246314 17.83) (1.92313e-15 0.225011 17.7181) (1.97946e-15 0.163583 17.5293) (2.03024e-15 0.0606173 17.2611) (2.07194e-15 -0.0309491 16.9525) (2.10422e-15 -0.140897 16.6586) (2.12441e-15 -0.280222 16.4145) (2.14334e-15 -0.439537 16.3632) (2.17089e-15 -0.692804 16.5038) (2.20752e-15 -1.17753 16.6364) (2.25051e-15 -2.0301 16.6234) (2.27221e-15 -3.36008 16.3188) (2.18156e-15 -5.06508 15.3311) (1.83771e-15 -6.40849 13.0786) (1.17524e-15 -6.16933 9.24155) (3.35122e-16 -3.92963 4.51229) (-5.11086e-16 -0.93212 1.51373) (-4.62453e-16 1.70527 1.50892) (5.00265e-16 -0.033431 14.6816) (7.4218e-16 -0.0468552 14.7246) (7.39661e-16 -0.0415431 14.8221) (7.54339e-16 -0.0449712 14.8924) (7.80811e-16 -0.0454422 14.975) (8.06535e-16 -0.0470618 15.0557) (8.32315e-16 -0.0491347 15.1384) (8.58557e-16 -0.0513704 15.2229) (8.84996e-16 -0.0539368 15.3093) (9.11465e-16 -0.0570995 15.3964) (9.37815e-16 -0.0605245 15.4838) (9.63869e-16 -0.0644739 15.5703) (9.89455e-16 -0.0687779 15.6554) (1.01438e-15 -0.0731197 15.7392) (1.03846e-15 -0.0774556 15.8215) (1.0615e-15 -0.0816192 15.9022) (1.08326e-15 -0.0853335 15.9814) (1.10352e-15 -0.0882351 16.0593) (1.12206e-15 -0.0898904 16.1367) (1.13868e-15 -0.0906295 16.2143) (1.15325e-15 -0.0901893 16.2933) (1.16573e-15 -0.0890059 16.375) (1.17617e-15 -0.0877412 16.459) (1.18474e-15 -0.0875823 16.5438) (1.19156e-15 -0.0891805 16.6275) (1.19674e-15 -0.0935577 16.7085) (1.20019e-15 -0.0994841 16.7865) (1.20181e-15 -0.105894 16.8618) (1.20152e-15 -0.11085 16.9349) (1.19941e-15 -0.113069 17.0066) (1.19578e-15 -0.111699 17.0775) (1.19112e-15 -0.106918 17.1477) (1.18597e-15 -0.0987965 17.2177) (1.18084e-15 -0.0888011 17.288) (1.17609e-15 -0.077065 17.3593) (1.172e-15 -0.0639941 17.4316) (1.16877e-15 -0.0496327 17.5067) (1.16673e-15 -0.0359645 17.5847) (1.16618e-15 -0.0240775 17.6626) (1.16721e-15 -0.0144428 17.7385) (1.16967e-15 -0.00594988 17.813) (1.17351e-15 0.00217723 17.8876) (1.17887e-15 0.00959213 17.9628) (1.18595e-15 0.0125621 18.0354) (1.19475e-15 0.0110407 18.1019) (1.20535e-15 0.00773237 18.1605) (1.21774e-15 0.00520645 18.211) (1.23167e-15 0.00569148 18.2549) (1.24698e-15 0.0143886 18.2988) (1.26402e-15 0.0302411 18.3509) (1.28327e-15 0.0477136 18.4135) (1.30501e-15 0.0580707 18.4818) (1.32873e-15 0.0575446 18.5469) (1.3535e-15 0.0504858 18.6018) (1.3788e-15 0.0448943 18.6456) (1.40464e-15 0.0490568 18.684) (1.43171e-15 0.0648907 18.723) (1.46196e-15 0.0887368 18.7641) (1.49676e-15 0.119917 18.8062) (1.53754e-15 0.168717 18.8579) (1.58782e-15 0.218907 18.9237) (1.64946e-15 0.245944 18.9871) (1.71984e-15 0.233827 19.0223) (1.79395e-15 0.18312 19.0066) (1.86574e-15 0.0933657 18.92) (1.93011e-15 0.0050496 18.7734) (1.98467e-15 -0.107878 18.5941) (2.02493e-15 -0.259092 18.3834) (2.05123e-15 -0.439824 18.212) (2.07181e-15 -0.703236 18.0914) (2.09019e-15 -1.16589 17.864) (2.09719e-15 -1.95693 17.3377) (2.0591e-15 -3.1648 16.3062) (1.89858e-15 -4.65422 14.4561) (1.51459e-15 -5.71449 11.4532) (8.84397e-16 -5.28505 7.29812) (1.56059e-16 -3.18692 2.81394) (-5.77018e-16 -0.583028 0.140275) (-4.30228e-16 1.68797 0.577607) (7.46101e-16 -0.0436762 16.7072) (8.58021e-16 -0.0547877 16.6286) (8.82235e-16 -0.0518881 16.6845) (8.85511e-16 -0.0545536 16.6982) (8.94838e-16 -0.056323 16.7262) (9.04296e-16 -0.0585061 16.7538) (9.13421e-16 -0.0611362 16.7846) (9.22521e-16 -0.0637831 16.8184) (9.31454e-16 -0.0666719 16.8553) (9.40135e-16 -0.0699956 16.8945) (9.48478e-16 -0.0735114 16.9355) (9.56385e-16 -0.0774559 16.9774) (9.63738e-16 -0.0816966 17.0194) (9.70412e-16 -0.0859873 17.0617) (9.76283e-16 -0.0903196 17.1038) (9.81211e-16 -0.0945535 17.1453) (9.85047e-16 -0.098433 17.1863) (9.8765e-16 -0.101624 17.2266) (9.88896e-16 -0.103733 17.2668) (9.88708e-16 -0.104991 17.3075) (9.87039e-16 -0.105074 17.3496) (9.83947e-16 -0.104303 17.3942) (9.79587e-16 -0.103234 17.4411) (9.74154e-16 -0.103007 17.4888) (9.67793e-16 -0.104308 17.5353) (9.60547e-16 -0.108097 17.579) (9.52284e-16 -0.113402 17.6189) (9.42886e-16 -0.119226 17.6548) (9.32299e-16 -0.123746 17.6869) (9.20693e-16 -0.12576 17.716) (9.08431e-16 -0.124356 17.743) (8.96046e-16 -0.119647 17.7685) (8.84068e-16 -0.111745 17.7932) (8.72968e-16 -0.102089 17.8182) (8.63031e-16 -0.0909274 17.8445) (8.54478e-16 -0.0786766 17.8726) (8.47478e-16 -0.0650041 17.9043) (8.42345e-16 -0.0516361 17.9403) (8.39356e-16 -0.0397822 17.9783) (8.38519e-16 -0.0300999 18.0167) (8.39653e-16 -0.021509 18.0552) (8.42665e-16 -0.0131686 18.0952) (8.47678e-16 -0.00557054 18.137) (8.54838e-16 -0.00183755 18.1779) (8.64117e-16 -0.00172311 18.2147) (8.75554e-16 -0.00312235 18.2461) (8.891e-16 -0.00392166 18.2717) (9.0452e-16 -0.00205335 18.2933) (9.21645e-16 0.00693729 18.3168) (9.4074e-16 0.0221945 18.3504) (9.62201e-16 0.0390354 18.3973) (9.86268e-16 0.0498084 18.4539) (1.01247e-15 0.0510958 18.5116) (1.03995e-15 0.0464936 18.5617) (1.06823e-15 0.0429074 18.6023) (1.09727e-15 0.047566 18.6386) (1.12765e-15 0.0622164 18.6775) (1.16107e-15 0.0839711 18.725) (1.1989e-15 0.112386 18.7845) (1.24257e-15 0.155766 18.8665) (1.29548e-15 0.200613 18.9815) (1.35974e-15 0.225891 19.1199) (1.43343e-15 0.217546 19.2556) (1.51221e-15 0.174934 19.359) (1.59041e-15 0.0983259 19.399) (1.66287e-15 0.0186851 19.3686) (1.72658e-15 -0.0861761 19.2753) (1.77721e-15 -0.229577 19.0965) (1.81214e-15 -0.406075 18.8522) (1.8359e-15 -0.655402 18.5431) (1.85028e-15 -1.07234 18.0301) (1.84341e-15 -1.77166 17.1011) (1.78066e-15 -2.82973 15.5268) (1.59563e-15 -4.10656 13.0675) (1.2168e-15 -4.93897 9.597) (6.52232e-16 -4.40452 5.35736) (5.76576e-17 -2.4829 1.1872) (-5.05155e-16 -0.464805 -1.61226) (-4.0325e-16 1.54869 -0.750453) (7.5245e-16 -0.0535468 18.4385) (7.70519e-16 -0.0471759 18.3291) (7.70198e-16 -0.0512575 18.3376) (7.74819e-16 -0.0522947 18.3146) (7.78696e-16 -0.0551195 18.2993) (7.81908e-16 -0.0577659 18.283) (7.84211e-16 -0.0608566 18.2679) (7.85752e-16 -0.0639407 18.2541) (7.86462e-16 -0.0672191 18.2418) (7.86296e-16 -0.07083 18.2303) (7.85199e-16 -0.0745904 18.2192) (7.8314e-16 -0.0787023 18.208) (7.80057e-16 -0.0830515 18.1959) (7.759e-16 -0.0874425 18.1831) (7.70615e-16 -0.0918791 18.1691) (7.6414e-16 -0.0962443 18.1537) (7.56418e-16 -0.100318 18.1366) (7.47423e-16 -0.103811 18.1179) (7.37166e-16 -0.10637 18.0983) (7.25714e-16 -0.108121 18.0783) (7.13173e-16 -0.108684 18.0589) (6.99763e-16 -0.108277 18.0414) (6.85762e-16 -0.10734 18.026) (6.71441e-16 -0.106912 18.0113) (6.56962e-16 -0.107678 17.9957) (6.42342e-16 -0.110514 17.9773) (6.27425e-16 -0.114662 17.9548) (6.12094e-16 -0.119282 17.9273) (5.96328e-16 -0.122756 17.8949) (5.80346e-16 -0.12405 17.8584) (5.64549e-16 -0.122283 17.8191) (5.49473e-16 -0.117532 17.7784) (5.35608e-16 -0.10988 17.7377) (5.23343e-16 -0.100608 17.6984) (5.12873e-16 -0.0900059 17.662) (5.04332e-16 -0.0785369 17.6293) (4.97816e-16 -0.065724 17.6022) (4.93581e-16 -0.0530772 17.5819) (4.91821e-16 -0.0416709 17.5667) (4.92497e-16 -0.0321949 17.5551) (4.9541e-16 -0.0236988 17.5466) (5.00453e-16 -0.0154791 17.5421) (5.07692e-16 -0.00802207 17.542) (5.1721e-16 -0.00387159 17.5439) (5.28952e-16 -0.0026409 17.5449) (5.42913e-16 -0.00275946 17.5441) (5.59002e-16 -0.00245141 17.5412) (5.76989e-16 0.000147734 17.5379) (5.96712e-16 0.00876276 17.5399) (6.18354e-16 0.0226073 17.5553) (6.42198e-16 0.0376534 17.5876) (6.6841e-16 0.0474181 17.634) (6.96611e-16 0.04905 17.6853) (7.26113e-16 0.0456799 17.7318) (7.56528e-16 0.0431098 17.7706) (7.8779e-16 0.0473614 17.8066) (8.20349e-16 0.0597609 17.8473) (8.5561e-16 0.0780666 17.9018) (8.94657e-16 0.101867 17.9759) (9.38753e-16 0.13766 18.0822) (9.90889e-16 0.174151 18.2338) (1.053e-15 0.194055 18.4234) (1.12366e-15 0.18583 18.6245) (1.19927e-15 0.14883 18.8028) (1.27502e-15 0.0839554 18.9211) (1.34638e-15 0.0150772 18.9616) (1.41054e-15 -0.0755119 18.9188) (1.46437e-15 -0.198635 18.7555) (1.50541e-15 -0.352765 18.4644) (1.53492e-15 -0.569505 18.0328) (1.5522e-15 -0.923179 17.3279) (1.54442e-15 -1.50983 16.1273) (1.47913e-15 -2.39892 14.193) (1.30024e-15 -3.47044 11.3461) (9.5841e-16 -4.12244 7.61925) (4.8033e-16 -3.53592 3.41097) (1.14078e-17 -1.78864 -0.484885) (-3.11813e-16 -0.433873 -3.15619) (-3.19523e-16 1.39207 -1.98662) (3.85482e-16 -0.0563928 19.1359) (3.66096e-16 -0.0386867 19.0772) (3.74286e-16 -0.0450144 19.0556) (3.80186e-16 -0.0455272 19.0189) (3.85273e-16 -0.0483237 18.9841) (3.89027e-16 -0.0508996 18.946) (3.9192e-16 -0.0538666 18.9062) (3.9386e-16 -0.056854 18.8648) (3.94791e-16 -0.0600207 18.8217) (3.94664e-16 -0.0634779 18.7766) (3.93427e-16 -0.0670805 18.729) (3.91059e-16 -0.0709879 18.6782) (3.87515e-16 -0.0750911 18.6237) (3.82776e-16 -0.0792179 18.5656) (3.76826e-16 -0.083358 18.5034) (3.69644e-16 -0.0874481 18.4369) (3.61227e-16 -0.0913061 18.366) (3.51612e-16 -0.0947028 18.2908) (3.40876e-16 -0.0973518 18.212) (3.29161e-16 -0.0993017 18.1306) (3.1665e-16 -0.100174 18.0479) (3.03632e-16 -0.100085 17.9657) (2.90429e-16 -0.0993497 17.8846) (2.77328e-16 -0.098865 17.8039) (2.64489e-16 -0.0992285 17.7221) (2.51939e-16 -0.101132 17.6374) (2.39551e-16 -0.10401 17.548) (2.27249e-16 -0.107225 17.4529) (2.15047e-16 -0.109495 17.3519) (2.03164e-16 -0.110055 17.2462) (1.91956e-16 -0.108188 17.1378) (1.81877e-16 -0.103995 17.0288) (1.7331e-16 -0.0975276 16.9214) (1.66542e-16 -0.0897186 16.8178) (1.61689e-16 -0.080744 16.7197) (1.5882e-16 -0.0710729 16.6282) (1.57969e-16 -0.0602609 16.5457) (1.59305e-16 -0.0495493 16.4734) (1.62937e-16 -0.0397969 16.4104) (1.68805e-16 -0.031626 16.3549) (1.76735e-16 -0.0242181 16.3064) (1.86628e-16 -0.0170222 16.2657) (1.98505e-16 -0.0105406 16.233) (2.12399e-16 -0.0067536 16.2061) (2.28241e-16 -0.00525931 16.1823) (2.45998e-16 -0.00488447 16.1607) (2.65565e-16 -0.00417129 16.1412) (2.86751e-16 -0.00161396 16.1249) (3.0942e-16 0.00571559 16.1174) (3.33679e-16 0.017158 16.1272) (3.59701e-16 0.0294046 16.1575) (3.87578e-16 0.0373877 16.2053) (4.17043e-16 0.0389697 16.2605) (4.47665e-16 0.0367638 16.3126) (4.79162e-16 0.03531 16.3587) (5.11455e-16 0.0392402 16.4035) (5.44909e-16 0.049413 16.455) (5.80542e-16 0.0640549 16.5236) (6.19114e-16 0.0827219 16.6172) (6.61625e-16 0.110065 16.7487) (7.1036e-16 0.136949 16.9313) (7.66796e-16 0.150226 17.1569) (8.29918e-16 0.141339 17.397) (8.97041e-16 0.110228 17.6143) (9.64534e-16 0.058502 17.77) (1.02893e-15 0.00391168 17.8414) (1.08793e-15 -0.0665942 17.8157) (1.13989e-15 -0.16157 17.6508) (1.18327e-15 -0.283361 17.3311) (1.21701e-15 -0.457438 16.8353) (1.23855e-15 -0.738288 16.0274) (1.23598e-15 -1.20049 14.6719) (1.18177e-15 -1.90899 12.5219) (1.03028e-15 -2.78095 9.44099) (7.48214e-16 -3.28384 5.5721) (3.69058e-16 -2.67598 1.41187) (2.25686e-17 -1.151 -2.27701) (-1.48707e-16 -0.207644 -4.31125) (-1.94806e-16 1.21155 -3.29487) (-1.06225e-16 -0.0516886 18.6439) (-1.22624e-16 -0.0297054 18.567) (-1.20523e-16 -0.0359238 18.539) (-1.1441e-16 -0.0360487 18.4927) (-1.08389e-16 -0.0383867 18.4472) (-1.03457e-16 -0.0404642 18.3964) (-9.90625e-17 -0.0428604 18.3419) (-9.52816e-17 -0.0452702 18.2835) (-9.21483e-17 -0.0478412 18.2213) (-8.97003e-17 -0.0506964 18.1547) (-8.79846e-17 -0.0536878 18.0831) (-8.70167e-17 -0.0569443 18.0057) (-8.68312e-17 -0.0603416 17.9221) (-8.74319e-17 -0.0637106 17.8322) (-8.88214e-17 -0.0670758 17.7356) (-9.10019e-17 -0.0703973 17.6319) (-9.39641e-17 -0.0735135 17.5211) (-9.76584e-17 -0.0762343 17.4035) (-1.02006e-16 -0.0783217 17.2798) (-1.06876e-16 -0.0797772 17.1514) (-1.12106e-16 -0.0803241 17.0201) (-1.17459e-16 -0.0800246 16.8881) (-1.2268e-16 -0.079189 16.7566) (-1.27557e-16 -0.0785458 16.6254) (-1.31971e-16 -0.078518 16.4932) (-1.35901e-16 -0.0795065 16.358) (-1.39403e-16 -0.0811258 16.2181) (-1.42507e-16 -0.0829691 16.0723) (-1.45178e-16 -0.084103 15.9207) (-1.47255e-16 -0.0840508 15.7646) (-1.485e-16 -0.0822668 15.6069) (-1.48622e-16 -0.0789284 15.4504) (-1.47397e-16 -0.0740426 15.2979) (-1.44667e-16 -0.0680193 15.1521) (-1.40369e-16 -0.0609995 15.0152) (-1.34471e-16 -0.0534459 14.8886) (-1.26973e-16 -0.0449062 14.7747) (-1.17783e-16 -0.0363591 14.6754) (-1.06854e-16 -0.0284495 14.5895) (-9.42433e-17 -0.0216688 14.5153) (-8.00718e-17 -0.0153491 14.4522) (-6.44117e-17 -0.00906962 14.401) (-4.72631e-17 -0.00338906 14.3616) (-2.8634e-17 0.000243968 14.3317) (-8.58329e-18 0.00216427 14.3085) (1.28379e-17 0.00316083 14.2908) (3.55351e-17 0.00438175 14.2778) (5.93752e-17 0.00689831 14.2705) (8.42643e-17 0.0130197 14.2746) (1.10248e-16 0.0221374 14.2987) (1.37409e-16 0.0313933 14.3458) (1.65786e-16 0.0374611 14.4115) (1.95306e-16 0.0389606 14.4849) (2.25733e-16 0.0378069 14.5555) (2.56866e-16 0.0375249 14.6207) (2.88655e-16 0.040875 14.6857) (3.21335e-16 0.0484359 14.7589) (3.5554e-16 0.059026 14.8512) (3.91763e-16 0.0719748 14.971) (4.30675e-16 0.090061 15.1311) (4.73764e-16 0.106277 15.3429) (5.21953e-16 0.111737 15.5948) (5.74548e-16 0.100486 15.8548) (6.29664e-16 0.0728071 16.0838) (6.84921e-16 0.0306847 16.244) (7.38162e-16 -0.013781 16.3134) (7.87899e-16 -0.0675092 16.2767) (8.34221e-16 -0.135563 16.0966) (8.76119e-16 -0.224063 15.7622) (9.10876e-16 -0.352851 15.2457) (9.35396e-16 -0.555762 14.397) (9.40583e-16 -0.886115 12.9598) (9.06273e-16 -1.40764 10.6753) (7.97639e-16 -2.08684 7.42957) (5.91465e-16 -2.44585 3.43471) (3.16267e-16 -1.85316 -0.709016) (9.77652e-17 -0.742639 -4.10185) (-1.03575e-17 -0.114897 -5.55117) (-2.40443e-17 0.980145 -4.65926) (-5.47349e-16 -0.0403631 17.0895) (-5.31615e-16 -0.0193484 17.043) (-5.3948e-16 -0.0253731 16.9864) (-5.34664e-16 -0.025029 16.9247) (-5.28892e-16 -0.0267505 16.8602) (-5.23639e-16 -0.0281307 16.7902) (-5.18589e-16 -0.0297004 16.7157) (-5.13705e-16 -0.0312449 16.6366) (-5.08976e-16 -0.0329019 16.5528) (-5.0442e-16 -0.0347834 16.4638) (-5.00061e-16 -0.0367472 16.369) (-4.95898e-16 -0.0388895 16.2675) (-4.91943e-16 -0.0410886 16.1589) (-4.88192e-16 -0.0432013 16.043) (-4.84635e-16 -0.0453003 15.9196) (-4.81261e-16 -0.0473573 15.7882) (-4.78053e-16 -0.049234 15.6489) (-4.74971e-16 -0.0507804 15.5022) (-4.71962e-16 -0.0517967 15.349) (-4.68942e-16 -0.0522744 15.1911) (-4.65809e-16 -0.0520709 15.0307) (-4.62431e-16 -0.0512738 14.8705) (-4.58669e-16 -0.0501942 14.712) (-4.54412e-16 -0.0493645 14.555) (-4.49602e-16 -0.048966 14.3981) (-4.44224e-16 -0.0491511 14.2395) (-4.38285e-16 -0.0496861 14.0775) (-4.31783e-16 -0.0503999 13.9111) (-4.24693e-16 -0.0506998 13.7407) (-4.16932e-16 -0.0503489 13.5683) (-4.08398e-16 -0.0489272 13.3969) (-3.98968e-16 -0.0466418 13.2297) (-3.88563e-16 -0.0433842 13.0696) (-3.77132e-16 -0.0391677 12.9194) (-3.6465e-16 -0.0341132 12.7813) (-3.51104e-16 -0.028664 12.6569) (-3.36505e-16 -0.0223658 12.549) (-3.20816e-16 -0.0159747 12.4591) (-3.04025e-16 -0.00984731 12.3858) (-2.86169e-16 -0.00432962 12.3269) (-2.67317e-16 0.00106875 12.2819) (-2.47516e-16 0.00654282 12.2516) (-2.26774e-16 0.0115915 12.2356) (-2.05118e-16 0.0152475 12.2306) (-1.82593e-16 0.0177826 12.2335) (-1.59249e-16 0.0196056 12.2424) (-1.35148e-16 0.0215339 12.2556) (-1.1036e-16 0.0242311 12.2742) (-8.4946e-17 0.0294572 12.3051) (-5.89032e-17 0.0365762 12.3571) (-3.216e-17 0.043397 12.4326) (-4.58776e-18 0.0482195 12.5257) (2.37786e-17 0.0503029 12.6254) (5.27478e-17 0.0507816 12.7214) (8.21572e-17 0.0520108 12.8118) (1.11946e-16 0.0550077 12.9026) (1.42261e-16 0.060137 13.0022) (1.73539e-16 0.0670326 13.1207) (2.06095e-16 0.0748609 13.2661) (2.40354e-16 0.0850252 13.451) (2.77294e-16 0.0931998 13.6832) (3.17475e-16 0.0950076 13.9472) (3.60324e-16 0.0871597 14.2094) (4.04354e-16 0.0698535 14.4301) (4.47988e-16 0.0439309 14.5745) (4.90017e-16 0.0161922 14.6231) (5.29626e-16 -0.0163684 14.5594) (5.67905e-16 -0.0587318 14.3553) (6.04646e-16 -0.114842 14.0138) (6.37041e-16 -0.193836 13.4963) (6.62658e-16 -0.311894 12.6305) (6.76514e-16 -0.504768 11.1348) (6.67463e-16 -0.827811 8.73547) (6.12317e-16 -1.29715 5.31269) (4.91563e-16 -1.47322 1.10347) (3.28465e-16 -0.933874 -3.04844) (2.12607e-16 -0.332856 -5.98064) (1.34766e-16 0.0199994 -7.00027) (1.52549e-16 0.596782 -6.36429) (-8.30272e-16 -0.0138364 15.7316) (-8.10523e-16 -0.00693031 15.6831) (-8.11642e-16 -0.00902521 15.5965) (-8.08228e-16 -0.00899694 15.5138) (-8.04312e-16 -0.00967803 15.4256) (-8.00327e-16 -0.0102747 15.3325) (-7.96209e-16 -0.0109474 15.2344) (-7.91954e-16 -0.0116148 15.1316) (-7.87548e-16 -0.0123072 15.024) (-7.82987e-16 -0.0130918 14.9111) (-7.7827e-16 -0.0139015 14.7923) (-7.73385e-16 -0.0147735 14.6668) (-7.68327e-16 -0.0156292 14.5341) (-7.63084e-16 -0.0164114 14.3944) (-7.57641e-16 -0.017137 14.2478) (-7.51982e-16 -0.0178322 14.0944) (-7.46089e-16 -0.0184308 13.9343) (-7.39938e-16 -0.0188825 13.7683) (-7.33503e-16 -0.0191214 13.5972) (-7.26749e-16 -0.0191439 13.4225) (-7.19636e-16 -0.0189148 13.2464) (-7.12122e-16 -0.018467 13.0718) (-7.0416e-16 -0.0179294 12.9002) (-6.9571e-16 -0.0175396 12.7315) (-6.86748e-16 -0.0173499 12.5644) (-6.77256e-16 -0.0173849 12.3975) (-6.6722e-16 -0.0176317 12.2293) (-6.56628e-16 -0.0180504 12.0597) (-6.45463e-16 -0.0184079 11.889) (-6.33699e-16 -0.0186092 11.7191) (-6.21306e-16 -0.0184687 11.5526) (-6.0825e-16 -0.0180286 11.3919) (-5.94506e-16 -0.0171684 11.2394) (-5.80053e-16 -0.0158145 11.0977) (-5.64871e-16 -0.0141142 10.969) (-5.48938e-16 -0.0123362 10.8546) (-5.32247e-16 -0.0102698 10.7573) (-5.1477e-16 -0.0080818 10.6788) (-4.96484e-16 -0.00597705 10.6175) (-4.77386e-16 -0.00423399 10.5711) (-4.57492e-16 -0.0027527 10.5393) (-4.3681e-16 -0.00139928 10.5228) (-4.1533e-16 -0.000381196 10.5204) (-3.93056e-16 -1.86874e-06 10.5284) (-3.70002e-16 -0.000225887 10.5431) (-3.46178e-16 -0.000848912 10.5628) (-3.21596e-16 -0.00157345 10.5863) (-2.96283e-16 -0.00227377 10.6148) (-2.70275e-16 -0.00227957 10.6547) (-2.4357e-16 -0.00162255 10.7141) (-2.16146e-16 -0.00117036 10.7954) (-1.88039e-16 -0.00135856 10.8938) (-1.59318e-16 -0.00258873 11.0006) (-1.30071e-16 -0.00464974 11.1077) (-1.00365e-16 -0.00686403 11.2138) (-7.02406e-17 -0.00917673 11.3241) (-3.96851e-17 -0.0115793 11.4451) (-8.64077e-18 -0.0142788 11.5818) (2.28934e-17 -0.0177853 11.7385) (5.49138e-17 -0.0218732 11.9233) (8.74954e-17 -0.0280075 12.1371) (1.20594e-16 -0.0374483 12.3625) (1.53933e-16 -0.0512635 12.5698) (1.87158e-16 -0.0692805 12.7276) (2.20011e-16 -0.0910833 12.8108) (2.52353e-16 -0.1144 12.8059) (2.84362e-16 -0.139378 12.7002) (3.17191e-16 -0.16702 12.4795) (3.49163e-16 -0.201675 12.1302) (3.79176e-16 -0.247253 11.5924) (4.06936e-16 -0.308173 10.668) (4.31587e-16 -0.39997 9.03181) (4.50146e-16 -0.549018 6.41137) (4.53463e-16 -0.76823 2.82395) (4.24024e-16 -0.854551 -1.29216) (3.59657e-16 -0.657501 -5.22107) (3.04994e-16 -0.450339 -7.79282) (2.49871e-16 -0.316089 -8.79104) (2.51531e-16 0.0179493 -7.8692) (1.14213e-14 0.852186 15.7946) (1.44212e-15 -4.89453 12.1215) (-3.88012e-15 -4.19542 12.1321) (2.16934e-15 -3.60106 11.9966) (1.05446e-15 -3.00452 11.8778) (-1.43808e-16 -2.553 11.6992) (1.95899e-15 -2.20857 11.4769) (2.71278e-16 -1.96575 11.2117) (-1.89846e-18 -1.79823 10.9161) (9.98455e-16 -1.71203 10.5883) (-8.06892e-18 -1.83706 10.1562) (-2.256e-16 -2.28515 9.53773) (8.93759e-16 -2.51223 8.96389) (-1.36797e-16 -1.06473 8.91339) (3.04841e-16 1.76538 7.46969) (1.3282e-14 -5.35017 22.4927) (1.64443e-14 -14.6049 21.394) (-6.26751e-16 -13.2706 20.3411) (1.30275e-15 -11.7696 19.5065) (1.85918e-15 -11.1559 18.5042) (-1.27619e-16 -10.6592 17.5173) (1.82385e-15 -10.0899 16.5713) (9.49526e-16 -9.52474 15.6234) (-3.13032e-17 -8.96511 14.6636) (3.88151e-16 -8.36691 13.6943) (6.39587e-17 -7.75672 12.7176) (-3.56719e-16 -7.30311 11.7192) (-2.15234e-15 -7.01688 10.6244) (-1.39994e-16 -5.73022 9.16069) (1.86449e-17 -2.30483 4.5798) (2.1244e-14 -7.71559 23.9783) (1.42781e-14 -16.7726 24.6727) (4.97713e-16 -13.736 23.9365) (5.17781e-15 -12.3054 22.624) (2.06241e-16 -11.6438 21.2404) (9.00116e-16 -10.8128 20.0002) (6.79021e-15 -9.93868 18.7726) (7.08375e-16 -9.09822 17.5234) (1.14239e-15 -8.28112 16.264) (2.23563e-15 -7.47262 15.0246) (2.78546e-16 -6.66454 13.8156) (-3.7241e-17 -5.83786 12.4267) (-5.01171e-17 -4.80878 10.269) (-5.91323e-16 -3.1201 6.67464) (5.55596e-17 -0.828549 1.68126) (1.69414e-14 -8.50181 22.041) (1.53462e-14 -16.6207 24.3322) (8.01707e-16 -12.9292 23.7951) (5.51891e-15 -12.1528 21.9966) (5.09905e-16 -11.4189 20.5007) (1.03208e-15 -10.4922 19.1699) (2.64368e-15 -9.63218 17.814) (1.35181e-15 -8.82166 16.456) (1.19608e-15 -8.05133 15.1197) (2.09313e-15 -7.32105 13.8127) (1.54981e-16 -6.54869 12.434) (-1.76745e-15 -5.48402 10.5726) (8.80704e-16 -3.77201 7.48758) (1.3577e-15 -1.47557 2.73472) (-5.80768e-16 0.158728 -1.78035) (1.63496e-14 -8.47278 19.7346) (1.51641e-14 -16.3597 24.3128) (2.01161e-15 -13.1005 23.6575) (4.49413e-15 -12.6275 21.5337) (2.71725e-15 -11.8563 20.0215) (1.60233e-15 -10.9571 18.6601) (2.80524e-15 -10.1692 17.2547) (1.65501e-15 -9.40194 15.8668) (1.35151e-15 -8.65131 14.5188) (2.0048e-15 -7.9288 13.2082) (8.5637e-16 -7.16257 11.8219) (9.97108e-16 -6.10947 9.98403) (9.74002e-16 -4.41155 7.13349) (5.10401e-15 -2.28954 3.25982) (2.8633e-15 -0.776278 0.296597) (1.41253e-14 -8.01174 17.5216) (1.52531e-14 -16.0169 24.5252) (2.96569e-15 -13.6511 24.0443) (4.30012e-15 -12.9961 21.7624) (2.22969e-15 -12.129 20.2112) (1.40918e-15 -11.2273 18.8423) (2.5143e-15 -10.4413 17.4293) (1.72962e-15 -9.65116 16.0382) (1.20518e-15 -8.86202 14.6876) (1.79103e-15 -8.09442 13.3753) (6.9346e-16 -7.29737 12.0093) (-2.04504e-16 -6.28202 10.2705) (1.10953e-15 -4.7235 7.70024) (1.22129e-15 -2.73799 4.33906) (1.08627e-15 -0.930138 1.25898) (1.15231e-14 -7.31086 15.1809) (1.56879e-14 -15.4804 24.3379) (4.75769e-15 -14.0412 24.4227) (3.77718e-15 -13.1348 22.0677) (1.62159e-15 -12.1514 20.435) (4.2099e-16 -11.2418 19.0493) (2.21582e-15 -10.441 17.6386) (1.3661e-15 -9.62428 16.2522) (3.02074e-16 -8.81306 14.9005) (1.27983e-15 -8.02871 13.5848) (4.65438e-16 -7.22301 12.2281) (-9.77374e-16 -6.23655 10.5368) (9.40001e-16 -4.77896 8.08756) (2.34449e-15 -2.89788 4.91541) (-6.88779e-16 -0.996292 1.76128) (1.09746e-14 -6.49566 12.8836) (1.56898e-14 -14.8152 23.76) (6.19976e-15 -14.2982 24.6726) (3.78292e-15 -13.2568 22.3308) (2.2673e-15 -12.1836 20.5789) (1.10046e-15 -11.2797 19.1608) (2.10106e-15 -10.4773 17.7536) (1.6686e-15 -9.65459 16.3712) (1.16784e-15 -8.84396 15.0183) (9.49478e-16 -8.06233 13.6998) (7.358e-16 -7.25979 12.3487) (1.08866e-16 -6.28822 10.6885) (9.42704e-16 -4.88186 8.30919) (1.67664e-15 -3.05594 5.22083) (7.80278e-16 -1.093 1.98313) (9.09429e-15 -5.65863 10.8515) (1.54003e-14 -14.0992 22.9518) (7.89453e-15 -14.4946 24.8492) (3.79201e-15 -13.4396 22.645) (2.30054e-15 -12.2864 20.7597) (1.6527e-15 -11.377 19.2943) (1.69674e-15 -10.573 17.8904) (1.58629e-15 -9.7498 16.5109) (1.97684e-15 -8.94039 15.155) (9.18941e-16 -8.15815 13.8324) (7.20605e-16 -7.35439 12.4825) (2.4779e-16 -6.39226 10.8478) (5.27889e-16 -5.02957 8.53822) (1.58938e-15 -3.25483 5.53086) (2.27067e-15 -1.22603 2.20867) (8.13129e-15 -4.86322 9.1253) (1.50589e-14 -13.3579 22.0009) (8.83059e-15 -14.604 24.9347) (4.58882e-15 -13.6366 22.9984) (2.48538e-15 -12.4076 20.9879) (1.44265e-15 -11.4727 19.4581) (1.89944e-15 -10.6613 18.0537) (1.66149e-15 -9.83758 16.6764) (1.30409e-15 -9.02646 15.3175) (1.331e-15 -8.24056 13.9901) (9.49419e-16 -7.43593 12.6395) (1.20874e-15 -6.48075 11.0222) (1.16919e-15 -5.14355 8.76058) (3.8318e-16 -3.39618 5.79603) (1.26626e-15 -1.30002 2.38734) (7.14549e-15 -4.17753 7.73264) (1.47372e-14 -12.6332 21.0063) (1.05618e-14 -14.6198 24.9206) (5.02228e-15 -13.8228 23.36) (2.10565e-15 -12.5449 21.264) (2.86394e-15 -11.5772 19.6586) (2.1878e-15 -10.7553 18.2437) (1.75889e-15 -9.93173 16.8657) (3.15385e-15 -9.11842 15.5019) (1.76174e-15 -8.32666 14.1676) (7.77584e-16 -7.51673 12.811) (2.89179e-15 -6.5667 11.2051) (5.9841e-16 -5.25939 8.98813) (4.81815e-15 -3.54852 6.07067) (1.88753e-15 -1.39073 2.58404) (5.76687e-15 -3.56626 6.50755) (1.3643e-14 -11.9057 19.9492) (1.09152e-14 -14.5253 24.759) (5.26736e-15 -13.9394 23.6097) (1.97484e-15 -12.6165 21.4463) (2.63097e-15 -11.6061 19.7659) (2.07657e-15 -10.7751 18.3501) (1.59886e-15 -9.95684 16.9795) (2.28506e-15 -9.14721 15.6208) (1.5632e-15 -8.36063 14.2883) (7.43307e-16 -7.55661 12.9328) (3.02408e-15 -6.61233 11.3271) (6.98719e-16 -5.30238 9.10973) (4.75143e-15 -3.57448 6.15821) (1.83461e-15 -1.35751 2.54791) (5.82353e-15 -3.28837 6.00204) (1.35192e-14 -11.3774 19.1363) (1.1006e-14 -14.5004 24.6199) (6.33056e-15 -14.2424 24.0388) (2.83207e-15 -12.9787 21.9272) (2.61661e-15 -11.9255 20.1306) (2.85277e-15 -11.0578 18.6362) (1.65861e-16 -10.2214 17.2348) (2.59906e-15 -9.38734 15.8451) (1.74788e-15 -8.56334 14.4863) (-1.15953e-16 -7.71921 13.1092) (3.0746e-15 -6.75441 11.5187) (1.64157e-15 -5.48638 9.38513) (8.61456e-16 -3.81854 6.53445) (3.22343e-15 -1.53082 2.89184) (5.15727e-15 -2.184 3.54634) (1.21639e-14 -10.2061 17.0846) (1.18991e-14 -13.9533 23.7116) (6.61471e-15 -13.8154 23.5259) (3.019e-15 -12.4161 21.3668) (2.14439e-15 -11.3435 19.6586) (2.14944e-15 -10.5564 18.3947) (9.51973e-16 -9.81852 17.1523) (1.98339e-15 -9.07854 15.9133) (1.49731e-15 -8.3597 14.6534) (1.16947e-15 -7.60053 13.3524) (2.17516e-15 -6.67046 11.7598) (1.4169e-15 -5.2888 9.46803) (2.52111e-15 -3.41656 6.33318) (1.20311e-15 -1.07757 2.33826) (7.25388e-15 -3.55235 6.24118) (1.40278e-14 -10.6687 18.2493) (1.38018e-14 -15.0626 24.7925) (9.58624e-15 -16.3935 25.6661) (5.46996e-15 -15.7076 23.6725) (2.64286e-15 -14.4815 21.2154) (1.63953e-15 -13.2135 18.9635) (1.25298e-15 -12.0113 17.0946) (1.09217e-15 -10.8495 15.3413) (6.73241e-16 -9.69831 13.7434) (9.55095e-16 -8.58519 12.1894) (1.02413e-15 -7.32495 10.4998) (6.56501e-16 -5.65315 8.25837) (1.66332e-15 -2.68884 4.29616) (1.7433e-16 1.15134 -2.778) ) ; boundaryField { courseFace { type zeroGradient; } courseCyclicBoundary { type cyclicAMI; value nonuniform List<vector> 200 ( (-8.2694e-16 -0.0121911 15.7732) (-6.35189e-16 -0.0286045 16.7837) (-3.87419e-16 -0.0391231 17.9003) (-5.97983e-18 -0.0451245 18.7913) (3.6315e-16 -0.0482687 19.1239) (6.49552e-16 -0.0465765 18.3799) (8.20584e-16 -0.0408302 17.0535) (7.90151e-16 -0.0341604 15.587) (-1.52401e-17 -0.0253982 14.1641) (4.83168e-16 -0.0141229 12.95) (3.99094e-16 0.0107088 11.8241) (1.19035e-15 0.0317958 11.0204) (5.08615e-16 0.0485665 10.2133) (3.38432e-16 0.0606273 9.40433) (-7.80263e-16 0.067529 8.57827) (2.35605e-16 0.0733481 7.5866) (-1.02076e-15 0.076074 6.8804) (-2.80567e-16 0.0758839 6.24421) (-5.38012e-16 0.0732941 5.68996) (1.02167e-15 0.0695067 5.22711) (-5.63069e-16 0.0668346 4.82533) (-9.85391e-16 0.0671726 4.61806) (-9.06718e-16 0.0683011 4.4542) (-9.41665e-16 0.069808 4.32373) (-9.5439e-16 0.0719807 4.21216) (-9.72628e-16 0.0755262 4.09179) (-9.68652e-16 0.079135 4.00058) (-9.59127e-16 0.082207 3.91004) (-1.21211e-15 0.0849061 3.81855) (-1.09319e-15 0.0870976 3.72736) (-7.67674e-16 0.0887713 3.61676) (-9.06488e-16 0.0902459 3.53432) (-9.58492e-16 0.0915465 3.45283) (-9.26377e-16 0.0924273 3.37455) (-8.36439e-16 0.0930884 3.29696) (-8.56391e-16 0.0929767 3.20615) (-9.17011e-16 0.0929851 3.13498) (-9.20956e-16 0.0924903 3.06372) (-9.20633e-16 0.0918459 2.99011) (-9.20656e-16 0.0909394 2.91643) (-9.23805e-16 0.0896766 2.82374) (-9.26554e-16 0.0883458 2.75177) (-9.33891e-16 0.0869858 2.67647) (-9.57489e-16 0.0850192 2.6016) (-9.88233e-16 0.083024 2.52431) (-1.00839e-15 0.0801418 2.43089) (-1.12052e-15 0.077835 2.3555) (-1.03897e-15 0.0749917 2.27948) (-1.12823e-15 0.0721567 2.2008) (-1.03353e-15 0.068359 2.12284) (-9.94312e-16 0.0633815 2.0211) (-9.82462e-16 0.0584495 1.94235) (-9.68575e-16 0.053852 1.85873) (-9.47896e-16 0.048335 1.77571) (-9.22156e-16 0.0420094 1.69095) (-8.8078e-16 0.0345268 1.58507) (-8.48251e-16 0.0261301 1.50325) (-8.40299e-16 0.0180608 1.41878) (-1.06612e-15 0.00909565 1.33071) (7.32351e-16 -0.00275806 1.24534) (-7.28114e-16 -0.016709 1.13103) (-9.40708e-16 -0.0333647 1.05001) (-1.07137e-15 -0.051247 0.964322) (-1.20241e-15 -0.0711868 0.88233) (-1.23709e-15 -0.0926792 0.809096) (-1.68413e-15 -0.119327 0.712149) (-3.01708e-16 -0.150996 0.677945) (-7.63844e-17 -0.187134 0.671909) (1.12008e-16 -0.22638 0.700352) (-7.86144e-16 -0.267798 0.771171) (-1.77317e-16 -0.320366 0.894939) (-1.1055e-15 -0.359105 0.99705) (-7.70514e-16 -0.394248 1.08709) (-9.80124e-16 -0.425215 1.16459) (-9.59386e-16 -0.452063 1.22852) (-9.4568e-16 -0.481374 1.28927) (-7.89465e-16 -0.499768 1.32189) (-7.21808e-16 -0.515419 1.34673) (-9.09881e-16 -0.528234 1.36375) (-1.38717e-15 -0.538124 1.37327) (-4.70319e-16 -0.547771 1.37595) (-1.60147e-16 -0.550484 1.36478) (1.0949e-16 -0.550734 1.34399) (-1.13105e-15 -0.547149 1.31613) (-1.39782e-15 -0.540624 1.28426) (-1.34515e-15 -0.532913 1.22182) (-1.36697e-15 -0.525961 1.14936) (-1.3901e-15 -0.516783 1.06752) (-1.4184e-15 -0.504384 0.979362) (-1.451e-15 -0.490023 0.88388) (-1.49962e-15 -0.474817 0.760699) (-1.55554e-15 -0.470472 0.671874) (-1.62352e-15 -0.468614 0.596266) (-1.71148e-15 -0.466985 0.538469) (-1.82297e-15 -0.47076 0.492187) (-1.97526e-15 -0.468098 0.461687) (-2.11819e-15 -0.474623 0.447584) (-2.27602e-15 -0.527696 0.440542) (-2.48598e-15 -0.585818 0.426042) (-2.75748e-15 -0.578804 0.374572) (-1.4908e-15 3.00939 -0.271042) (-2.71508e-16 1.89902 -0.436762) (-3.97333e-17 1.245 -0.393493) (-1.98805e-16 0.72578 -0.253768) (-1.86649e-16 0.127565 -0.157749) (-2.05579e-16 0.0843253 -0.396126) (-2.1705e-16 0.334557 -0.570126) (-2.36678e-16 0.438544 -0.743912) (-2.63446e-16 0.484952 -0.934792) (-2.96409e-16 0.529695 -1.14383) (-3.40842e-16 0.564468 -1.34422) (-3.74366e-16 0.559808 -1.45908) (-4.05309e-16 0.550042 -1.54691) (-4.33893e-16 0.544063 -1.60553) (-4.60347e-16 0.552408 -1.64086) (-4.91104e-16 0.601415 -1.65479) (-5.14791e-16 0.692947 -1.67872) (-5.39126e-16 0.809777 -1.73819) (-5.6465e-16 0.939783 -1.82948) (-5.92074e-16 1.05924 -1.94678) (-6.29652e-16 1.16243 -2.16379) (-6.59491e-16 1.11122 -2.34087) (-6.89109e-16 0.989537 -2.48877) (-7.19477e-16 0.820701 -2.57328) (-7.5136e-16 0.633374 -2.56322) (-7.92234e-16 0.491994 -2.36794) (-8.19163e-16 0.543108 -2.15425) (-8.38482e-16 0.659542 -1.95975) (-8.48046e-16 0.844167 -1.81979) (-8.44722e-16 1.0747 -1.7562) (-8.04141e-16 1.35559 -1.92082) (-7.28537e-16 1.429 -2.18996) (-6.15096e-16 1.2492 -2.46871) (-4.72746e-16 0.786156 -2.66626) (-3.15829e-16 0.0891168 -2.65439) (-1.94112e-16 -0.297887 -1.82199) (-1.98927e-16 -0.145357 -1.31722) (-1.95184e-16 0.00368157 -1.22029) (-1.87937e-16 0.17058 -1.25067) (-1.97912e-16 0.399405 -0.974123) (-2.25222e-16 0.750877 -1.00595) (-2.60939e-16 0.848821 -1.28545) (-2.93544e-16 0.698189 -1.48207) (-3.05819e-16 0.272135 -1.5799) (-2.84462e-16 -0.401845 -1.53657) (-2.03564e-16 -0.936326 -1.84856) (-1.50044e-16 -1.27629 -2.1268) (-1.17633e-16 -1.48439 -2.38684) (-1.11449e-16 -1.63319 -2.50204) (-1.3167e-16 -1.76271 -2.40332) (-2.07782e-16 -1.89895 -1.91576) (-3.03542e-16 -1.88965 -1.44622) (-4.34998e-16 -1.86616 -1.0092) (-6.13418e-16 -1.86323 -0.657359) (-8.45734e-16 -1.95084 -0.421363) (-1.19699e-15 -1.74919 -0.443807) (-1.40437e-15 -1.62741 -0.538651) (-1.59325e-15 -1.43512 -0.532346) (-1.75326e-15 -1.10665 -0.543547) (-1.86504e-15 -0.681994 -0.638591) (-1.93003e-15 -0.420859 -0.966051) (-1.97384e-15 -0.710762 -1.04759) (-2.05974e-15 -1.13573 -0.986069) (-2.20503e-15 -1.42544 -0.889556) (-2.39665e-15 -1.53294 -0.84591) (-2.60853e-15 -1.55523 -0.820561) (-2.67156e-15 -1.52435 -0.847815) (-2.72121e-15 -1.53576 -0.950942) (-2.78299e-15 -1.56806 -1.11003) (-2.87155e-15 -1.61282 -1.2747) (-3.00349e-15 -1.74881 -1.39225) (-3.05308e-15 -1.87582 -1.42428) (-3.08199e-15 -2.01027 -1.39554) (-3.0976e-15 -2.14041 -1.28881) (-3.10864e-15 -2.22233 -1.10703) (-3.11764e-15 -2.23279 -0.792758) (-3.11219e-15 -2.04646 -0.614009) (-3.0868e-15 -1.71702 -0.429605) (-3.03936e-15 -1.3443 -0.232232) (-2.9793e-15 -0.991935 -0.0796088) (-2.82538e-15 -0.742867 0.400213) (-2.33002e-15 -0.565035 0.46264) (-1.54948e-15 -0.0854383 -0.0351148) (-7.82636e-16 0.21242 -0.666678) (-8.45053e-16 -0.16926 -0.525111) (-1.03417e-15 -0.369344 -0.0767503) (-1.15112e-15 -0.355443 0.1248) (-1.30457e-15 -0.423122 0.319086) (-1.4609e-15 -0.545484 0.475175) (-1.62412e-15 -0.705398 0.614513) (-1.96751e-15 -0.985625 0.986836) (-2.17857e-15 -1.07908 1.51908) (-2.30652e-15 -1.0502 1.83615) (-2.40857e-15 -0.917018 1.7376) (-2.51086e-15 -0.670517 1.30307) (-2.57684e-15 -0.422001 0.569564) (-2.66771e-15 -0.436227 0.267546) (-2.66033e-15 -0.487046 0.210663) (-2.65565e-15 -0.564202 0.288422) (-2.76142e-15 -0.633479 0.356673) ) ; } courseWalls { type noSlip; } freeBoundaryCourse { type zeroGradient; } courseSymmetryWalls { type symmetryPlane; } fineSymmetryWall { type symmetryPlane; } fineWalls { type noSlip; } fineCyclicBoundary { type cyclicAMI; value nonuniform List<vector> 160 ( (-2.74522e-15 -0.580099 0.388809) (-2.38811e-15 -0.576255 0.430273) (-2.16924e-15 -0.485276 0.443216) (-1.98777e-15 -0.466402 0.458044) (-1.81027e-15 -0.470401 0.493521) (-1.67606e-15 -0.466943 0.553522) (-1.57861e-15 -0.468822 0.643512) (-1.50556e-15 -0.475152 0.75704) (-1.44663e-15 -0.490749 0.888862) (-1.40687e-15 -0.509315 1.01283) (-1.3749e-15 -0.523665 1.12337) (-1.3489e-15 -0.532322 1.2165) (-1.34861e-15 -0.541639 1.28684) (-6.56671e-16 -0.549357 1.32921) (-2.62498e-17 -0.551055 1.35867) (-4.08346e-16 -0.547358 1.37336) (-1.27247e-15 -0.538235 1.37463) (-8.58769e-16 -0.524606 1.35989) (-7.69154e-16 -0.505622 1.33192) (-9.02814e-16 -0.481872 1.28948) (-9.71427e-16 -0.450992 1.227) (-9.14515e-16 -0.41537 1.1413) (-9.4832e-16 -0.372097 1.03085) (-3.6001e-16 -0.322338 0.898603) (-6.49963e-16 -0.264982 0.766754) (7.47281e-17 -0.2112 0.67647) (-1.81809e-16 -0.162776 0.669191) (-1.43204e-15 -0.12235 0.714405) (-1.22168e-15 -0.0900681 0.810373) (-1.14652e-15 -0.0635935 0.909012) (-1.00207e-15 -0.0398589 1.0225) (-7.73474e-16 -0.0186289 1.12755) (4.04134e-16 -0.00133208 1.25057) (-1.00465e-15 0.0128476 1.36122) (-8.48623e-16 0.0228376 1.47498) (-8.73334e-16 0.0336912 1.57976) (-9.26667e-16 0.0425563 1.69722) (-9.56167e-16 0.0504158 1.80486) (-9.77187e-16 0.0567873 1.91335) (-9.92299e-16 0.0630624 2.01564) (-1.0503e-15 0.0685368 2.12836) (-1.09945e-15 0.0732432 2.22867) (-1.08857e-15 0.0769048 2.32909) (-1.02539e-15 0.0801027 2.42549) (-9.80763e-16 0.0830273 2.53014) (-9.50235e-16 0.0857231 2.62801) (-9.29482e-16 0.0880014 2.72522) (-9.23497e-16 0.0896893 2.81894) (-9.21127e-16 0.0909226 2.92176) (-9.20547e-16 0.0920374 3.01633) (-9.18157e-16 0.092965 3.10981) (-8.68686e-16 0.0930649 3.20122) (-8.54715e-16 0.0929529 3.30263) (-9.37972e-16 0.0921781 3.40167) (-9.33835e-16 0.0908045 3.50482) (-7.89854e-16 0.088928 3.61122) (-1.07416e-15 0.0868332 3.73403) (-1.15406e-15 0.0839527 3.85094) (-9.64494e-16 0.0804294 3.96825) (-9.71866e-16 0.0758822 4.08542) (-9.54137e-16 0.0716565 4.22037) (-9.29213e-16 0.0690473 4.36518) (-9.31322e-16 0.0675889 4.54956) (-6.66314e-16 0.066985 4.81167) (7.22754e-16 0.0696124 5.25879) (-4.54868e-16 0.0745579 5.86631) (-7.58043e-16 0.0769735 6.63814) (2.45054e-17 0.0733416 7.53938) (-5.67567e-16 0.0670939 8.63712) (3.85881e-16 0.0575006 9.69257) (9.60579e-16 0.0387697 10.7331) (5.4609e-16 0.0120178 11.7696) (3.83317e-16 -0.0149546 13.0373) (2.74997e-16 -0.0289892 14.6243) (8.39878e-16 -0.0385333 16.5618) (6.8438e-16 -0.0463936 18.2841) (3.3746e-16 -0.0481004 19.1056) (-1.49113e-16 -0.0437417 18.5896) (-5.65963e-16 -0.0339305 17.1604) (-8.16287e-16 -0.0128769 15.8424) (-1.44053e-15 2.97299 -0.275081) (5.82283e-17 1.55054 -0.485134) (-1.88872e-16 0.93704 -0.290931) (-1.8697e-16 0.152654 -0.157881) (-2.06121e-16 0.0907901 -0.403179) (-2.22031e-16 0.409824 -0.631595) (-2.52584e-16 0.467669 -0.860339) (-2.94593e-16 0.529375 -1.13592) (-3.42375e-16 0.56358 -1.3485) (-3.85899e-16 0.558895 -1.49732) (-4.24521e-16 0.542703 -1.59222) (-4.59012e-16 0.551453 -1.63923) (-4.92197e-16 0.60505 -1.6564) (-5.23169e-16 0.726673 -1.69087) (-5.55288e-16 0.892037 -1.78994) (-5.90742e-16 1.05877 -1.94116) (-6.30776e-16 1.1586 -2.17177) (-6.70002e-16 1.0889 -2.40022) (-7.08638e-16 0.889061 -2.56331) (-7.49855e-16 0.63724 -2.56865) (-7.93231e-16 0.500686 -2.35642) (-8.27781e-16 0.561058 -2.08238) (-8.47896e-16 0.764879 -1.85152) (-8.45212e-16 1.06418 -1.75601) (-8.00632e-16 1.35536 -1.93439) (-6.98608e-16 1.43018 -2.28719) (-5.27163e-16 1.03308 -2.63372) (-3.22675e-16 0.108632 -2.66481) (-1.94687e-16 -0.29171 -1.7883) (-2.00908e-16 -0.100514 -1.17271) (-1.86057e-16 0.106641 -1.33383) (-1.97605e-16 0.389921 -0.972588) (-2.27175e-16 0.7478 -1.01359) (-2.72476e-16 0.865791 -1.37845) (-3.10053e-16 0.492785 -1.58563) (-2.86284e-16 -0.371834 -1.53429) (-1.99754e-16 -0.979119 -1.86564) (-1.33528e-16 -1.35638 -2.22615) (-1.0797e-16 -1.57536 -2.50853) (-1.30237e-16 -1.76346 -2.41374) (-2.12475e-16 -1.88916 -1.89078) (-3.41019e-16 -1.88361 -1.28366) (-5.385e-16 -1.85437 -0.763349) (-8.32386e-16 -1.94792 -0.422136) (-1.20867e-15 -1.75744 -0.447222) (-1.47553e-15 -1.56425 -0.561533) (-1.70687e-15 -1.25631 -0.513184) (-1.85926e-15 -0.702291 -0.635614) (-1.93116e-15 -0.399958 -0.985748) (-1.99288e-15 -0.889014 -1.03739) (-2.14196e-15 -1.36918 -0.915481) (-2.38624e-15 -1.52244 -0.849522) (-2.6129e-15 -1.56375 -0.821505) (-2.68956e-15 -1.51932 -0.863713) (-2.75489e-15 -1.54392 -1.0491) (-2.86733e-15 -1.60999 -1.26892) (-3.00631e-15 -1.75087 -1.39308) (-3.0672e-15 -1.92168 -1.42978) (-3.094e-15 -2.10374 -1.34517) (-3.10833e-15 -2.22183 -1.1183) (-3.11736e-15 -2.21722 -0.784735) (-3.10722e-15 -1.95114 -0.554165) (-3.06122e-15 -1.49082 -0.285903) (-2.98243e-15 -1.00683 -0.0937671) (-2.79702e-15 -0.734917 0.402833) (-2.18735e-15 -0.527073 0.475681) (-8.29084e-16 0.32942 -0.648001) (-8.52607e-16 -0.147575 -0.521753) (-1.04662e-15 -0.364264 -0.0568575) (-1.19488e-15 -0.370332 0.199617) (-1.40157e-15 -0.479777 0.412246) (-1.61684e-15 -0.70466 0.610452) (-1.97638e-15 -0.983178 1.00964) (-2.24081e-15 -1.1081 1.68467) (-2.37592e-15 -0.992734 1.8805) (-2.50453e-15 -0.677934 1.33138) (-2.58575e-15 -0.42925 0.55314) (-2.67916e-15 -0.436153 0.189934) (-2.64109e-15 -0.534687 0.252044) (-2.75156e-15 -0.634273 0.359175) ) ; } fineplug { type cyclicAMI; value nonuniform List<vector> 80 ( (7.89058e-16 -5.03506 4.59956) (8.23447e-16 -4.97157 4.57914) (8.53883e-16 -5.07692 4.7089) (8.56136e-16 -4.26057 3.96732) (1.02493e-15 -5.51529 5.27224) (1.58762e-15 -6.82952 7.82417) (1.81377e-15 -7.35088 8.93488) (1.81727e-15 -7.37935 8.99522) (1.83334e-15 -7.41923 9.07508) (1.84162e-15 -7.4388 9.17109) (1.68671e-15 -7.8985 9.94754) (1.39767e-15 -8.84445 11.3455) (1.28504e-15 -8.22143 10.966) (1.50895e-15 -8.94634 11.5413) (1.55851e-15 -9.02596 11.6618) (1.58172e-15 -8.98754 11.7377) (1.75832e-15 -9.788 12.9369) (1.76918e-15 -9.74013 12.9478) (1.79479e-15 -9.75885 13.032) (1.82001e-15 -9.76615 13.1021) (1.85192e-15 -9.80768 13.1839) (1.90374e-15 -9.78577 13.4636) (2.109e-15 -10.318 14.1433) (2.15442e-15 -10.3883 14.2382) (2.17162e-15 -10.3829 14.2938) (2.2013e-15 -10.3914 14.3724) (2.175e-15 -10.5559 14.7154) (2.10467e-15 -10.8925 15.2955) (2.14395e-15 -10.8679 15.3412) (2.1795e-15 -10.89 15.4172) (2.20694e-15 -10.9368 15.4785) (1.99199e-15 -10.4808 15.0468) (2.45513e-15 -11.2111 16.2203) (2.49737e-15 -11.2509 16.2863) (2.52806e-15 -11.2461 16.3387) (2.57401e-15 -11.2532 16.4) (2.62442e-15 -11.2298 16.4762) (2.75761e-15 -11.5736 17.134) (2.83744e-15 -11.7459 17.4481) (2.88933e-15 -11.7972 17.4597) (2.62948e-15 -11.4059 16.9657) (2.9389e-15 -11.3326 17.1635) (3.07651e-15 -11.5048 17.5193) (3.24462e-15 -11.8497 18.1564) (3.30386e-15 -11.808 18.1405) (3.36428e-15 -11.7848 18.1591) (3.43314e-15 -11.7461 18.1693) (3.51896e-15 -11.7304 18.1976) (4.08663e-15 -12.3515 19.292) (3.82307e-15 -12.0298 18.7892) (4.26726e-15 -11.6191 18.6116) (4.34727e-15 -11.555 18.5026) (4.43009e-15 -11.5187 18.4776) (5.45588e-15 -11.8436 19.2258) (5.91779e-15 -11.9451 19.4822) (5.92872e-15 -11.8763 19.3257) (5.95376e-15 -11.8597 19.1537) (5.96769e-15 -11.835 18.9223) (6.52298e-15 -11.7762 19.0529) (7.94479e-15 -11.2268 18.9771) (7.83932e-15 -11.0422 18.5765) (7.7802e-15 -11.0031 18.3335) (7.70462e-15 -10.9145 17.9976) (7.66365e-15 -10.8631 17.6306) (9.59182e-15 -10.1279 16.7912) (9.28946e-15 -10.0853 16.4301) (9.08949e-15 -9.99049 15.9803) (8.82502e-15 -9.85628 15.4727) (9.05712e-15 -10.0174 15.6638) (8.48463e-15 -7.71897 12.3588) (8.18062e-15 -6.79581 10.6654) (7.9874e-15 -6.78303 10.4178) (7.70621e-15 -6.6223 9.99543) (7.38108e-15 -6.56088 9.51782) (5.82629e-15 -5.39305 6.93755) (3.33038e-15 -3.132 2.71645) (3.24497e-15 -3.17069 2.72792) (3.66794e-15 -3.46209 2.95944) (3.25279e-15 -2.74253 2.78855) (3.05736e-15 -2.80785 2.59814) ) ; } faceFine { type zeroGradient; } inletFace { type zeroGradient; } inlet { type fixedValue; value uniform (0 8.7 15); } inletWalls { type noSlip; } outletInlet { type cyclicAMI; value nonuniform List<vector> 15 ( (8.85645e-16 -4.96819 4.64965) (1.82373e-15 -7.40444 9.06009) (1.45023e-15 -8.7623 11.3962) (1.81001e-15 -9.73148 13.0203) (2.12131e-15 -10.3175 14.2123) (2.11462e-15 -10.7947 15.2886) (2.54679e-15 -11.2385 16.3623) (2.82868e-15 -11.5513 17.2532) (3.36135e-15 -11.7878 18.1576) (4.19259e-15 -11.8106 18.726) (5.89485e-15 -11.8565 19.171) (7.81611e-15 -11.0976 18.4326) (9.11915e-15 -9.95491 15.9331) (7.77422e-15 -6.7055 10.1215) (3.36875e-15 -3.10735 2.81541) ) ; } } // ************************************************************************* //
[ "brent.shambaugh@gmail.com" ]
brent.shambaugh@gmail.com
0655286ca4b0a2cd8136ac7a8c782704c3dcd552
0fa04fd99d626dbc8c8440a05a85c2ee7b7d4e86
/src/matching/stroke_transfer.cpp
bbb3948776854ca49c0964a847cdb92ec57c8c23
[ "MIT" ]
permissive
chatyan/self_similarity
9fd1319a93e0a584c83940806c9947192b5feef6
c032daa3009f60fdc8a52c437a07c6e3ba2efe4b
refs/heads/master
2022-12-11T09:40:28.857449
2020-09-21T23:53:55
2020-09-21T23:53:55
null
0
0
null
null
null
null
UTF-8
C++
false
false
14,385
cpp
#include "stroke_transfer.h" #include <queue> #include <random> #include <thread> #include <queue> #include <chrono> #include <cppoptlib/solver/lbfgsbsolver.h> #include <ctpl_stl.h> #include <matching/threshold.h> #include <matching/geodesic_fan.h> #include <matching/parameterization/curve_unrolling.h> using namespace cppoptlib; void curve_solve_proxy(int id, int index, std::shared_ptr<CurveUnrolling> cu_src, std::shared_ptr<CurveUnrolling> cu_cpy, std::shared_ptr<ShapeSignature> sig, std::shared_ptr<DisplayLock> display_lock) { if (cu_src == nullptr) { throw std::invalid_argument("Source curve can't be null!"); } if (cu_cpy == nullptr) { throw std::invalid_argument("Copied curve can't be null!"); } // Use fancy solver (CppOptLib) try { StrokeDiffReduce replicate(cu_src, cu_cpy, sig, display_lock, &index); StrokeDiffReduce::TVector x(3); StrokeDiffReduce::TVector g(3); x << 0.0, 0.0, 0.0; std::shared_ptr<LbfgsbSolver<StrokeDiffReduce>> solver = nullptr; solver = std::make_shared<LbfgsbSolver<StrokeDiffReduce>>(); //solver->setDebug(cppoptlib::DebugLevel::High); //std::cout << "StrokeDiffReduce::checkGradient(): " << (replicate.checkGradient(x) ? "True" : "False") << std::endl; solver->minimize(replicate, x); replicate.gradient(x, g); std::clog << "[ " << id << " ]: gradient = " << g.transpose() << std::endl; cu_cpy->transform(x(0), x(1), x(2)); } catch (std::exception e) { std::clog << e.what() << std::endl; // pass } } StrokeDiffReduce::StrokeDiffReduce(std::shared_ptr<CurveUnrolling> source, std::shared_ptr<CurveUnrolling> copy, std::shared_ptr<ShapeSignature> sig, std::shared_ptr<DisplayLock> display_lock, int* id): _source(source), _copy(copy), _sig(sig), _display_lock(display_lock), _id(id) { if (_source == nullptr || _copy == nullptr) { throw std::invalid_argument("Source and/or copy strokes cannot be null!"); } assert(_copy->unrolled_stroke()->blade_points().size() == _source->unrolled_stroke()->blade_points().size()); if (sig == nullptr) { throw std::invalid_argument("Signature cannot be nullptr!"); } } StrokeDiffReduce::~StrokeDiffReduce() { } double StrokeDiffReduce::value(const TVector &x) { if (x.cwiseAbs()(0) > upperBound()(0) || x.cwiseAbs()(1) > upperBound()(1) || x.cwiseAbs()(2) > upperBound()(2)) { return 1e10; } std::shared_ptr<CurveUnrolling> tcopy = _copy->clone(); tcopy->transform(x(0), x(1), x(2)); double val = _source->unrolled_on_origin_mesh()->compare(*tcopy->unrolled_on_origin_mesh(), _sig); //std::clog << "value at x [ " << x.transpose() << " ]: " << val << std::endl; return val; } // TODO: Compare with finite differencing (small change, 1e-5) void StrokeDiffReduce::gradient(const TVector &args, TVector& grad) { grad << 0.0, 0.0, 0.0; /*if (args.cwiseAbs()(0) > upperBound()(0) || args.cwiseAbs()(1) > upperBound()(1) || args.cwiseAbs()(2) > upperBound()(2)) { return; }*/ return cppoptlib::Problem<double>::gradient(args, grad); // x = ( x_s, y_s, theta ) // Re: analytical derivative assert(_sig->sig_steps().size() == 1); assert(_copy->unrolled_stroke()->blade_points().size() == _source->unrolled_stroke()->blade_points().size()); assert(_copy->unrolled_on_origin_mesh()->blade_points().size() == _source->unrolled_on_origin_mesh()->blade_points().size()); std::shared_ptr<CurveUnrolling> tcopy = _copy->clone(); assert(tcopy->unrolled_stroke()->blade_points().size() == _copy->unrolled_stroke()->blade_points().size()); // These are offsets from origin, not from current position -- assure this transformation interprets it this way! tcopy->transform(args(0), args(1), args(2)); assert(tcopy->unrolled_stroke()->blade_points().size() == _copy->unrolled_stroke()->blade_points().size()); Eigen::VectorXd sig_values = _sig->get_signature_values(_sig->sig_steps()(0)); // Get copied stroke transformed points in terms of the 2D parameterization Eigen::MatrixXd copy_2d(2, tcopy->unrolled_stroke()->blade_points().size()); for (std::size_t i = 0; i < tcopy->unrolled_stroke()->blade_points().size(); ++i) { copy_2d.col(i) << tcopy->unrolled_stroke()->blade_points()[i].to_world(tcopy->parameterized_mesh()).topRows<2>(); } // dE/dx = -2 * sum((o -c) * dc/dx) // These strokes must exist on a common mesh with the signature for comparison-- so use remapped strokes to origin Eigen::VectorXd dE_residual = -2.0 * _source->unrolled_on_origin_mesh()->per_point_diff(*tcopy->unrolled_on_origin_mesh(), _sig); std::vector<BarycentricCoord> copy_bcs = tcopy->unrolled_stroke()->blade_points(); double N = static_cast<double>(copy_bcs.size()); // In order to calculate the signature gradient of a face, we need the vertices making up that face // Origin mesh faces can have multiple mappings to the 2D unrolled parameterization, making us have multiple signature space normals for a single unique fid // For each fid, find n = (A, B, C) [signature space normal] of form z = Ax + By + C for (std::size_t i = 0; i < copy_bcs.size(); ++i) { const BarycentricCoord& bc = copy_bcs[i]; Eigen::DenseIndex origin_fid = tcopy->fid_map().at(bc._fid); if (tcopy->faces().rows() <= bc._fid) { std::clog << "Malformed curve! Out of bounds bc._fid!" << std::endl; continue; } Eigen::VectorXi face = tcopy->faces().row(bc._fid).transpose(); if (face(0) >= tcopy->vertices().rows() || face(1) >= tcopy->vertices().rows() || face(2) >= tcopy->vertices().rows()) { std::clog << "Malformed curve! Out of bounds faces(i)!" << std::endl; continue; } // Find [A, B, C]^T Eigen::Matrix3d XYZ; XYZ << tcopy->vertices().row(face(0)).leftCols<2>(), 1.0, tcopy->vertices().row(face(1)).leftCols<2>(), 1.0, tcopy->vertices().row(face(2)).leftCols<2>(), 1.0; Eigen::Vector3d H; H << sig_values(face(0)), sig_values(face(1)), sig_values(face(2)); Eigen::Vector3d n = XYZ.inverse() * H; // Curve point //Eigen::Vector2d cp = copy_2d(0, i); double x = copy_2d(0, i); double y = copy_2d(1, i); double theta = args(2); double A = n(0); double B = n(1); double cdx = A; double cdy = B; double cdtheta = A * (-1.0 * x * std::sin(theta) - y * std::cos(theta)) + B * (x * std::cos(theta) - y * std::sin(theta)); grad(0) += dE_residual(i) * cdx; grad(1) += dE_residual(i) * cdy; grad(2) += dE_residual(i) * cdtheta; } grad /= N; } bool StrokeDiffReduce::callback(const cppoptlib::Criteria<Scalar> &state, const TVector &x) { // Capture state of solver per step taken std::clog << "[ " << *_id << " ]: step: x = " << x.transpose() << " : value = " << value(x) << std::endl; // display if viewer isn't nullptr if (_display_lock != nullptr && _id != nullptr && _display_lock->_display.size() > *_id) { _display_lock->_mtx.lock(); _display_lock->_display[*_id].push_back(_copy->unrolled_on_origin_mesh()); _display_lock->_updated = true; _display_lock->_mtx.unlock(); } return true; } StrokeDiffReduce::TVector StrokeDiffReduce::upperBound() const { return (TVector(3) << 5.0, 5.0, M_PI).finished(); } StrokeDiffReduce::TVector StrokeDiffReduce::lowerBound() const { return (TVector(3) << -5.0, -5.0, -M_PI).finished(); } StrokeTransfer::StrokeTransfer(std::shared_ptr<Mesh> mesh, std::shared_ptr<ShapeSignature> sig, igl::opengl::glfw::Viewer* viewer): _mesh(mesh), _source(SurfaceStroke::instantiate(mesh)), _sig(sig), _crsolver(std::make_shared<CRSolver>()), _viewer(viewer) { _crsolver->add_signature(_sig); } void StrokeTransfer::add_to_source(Eigen::DenseIndex fid, Eigen::Vector3d bc) { _source->add_curve_point(fid, bc); } std::vector<std::shared_ptr<SurfaceStroke>> StrokeTransfer::suggested_transfers(int num_to_suggest, int cull_sample, std::shared_ptr<SelfSimilarityMap>* self_sim_map) { // Find "Centers of Interest" std::shared_ptr<DiscreteExponentialMap> dem; std::shared_ptr<Patch> curve_cover; _source->parameterized_space_points_2d(&curve_cover, &dem); std::clog << "curve_cover vertices: " << curve_cover->vertices().rows() << std::endl; std::clog << "curve_cover faces: " << curve_cover->faces().rows() << std::endl; // EXPERIMENT: Submit each barycentric coordinate individually Eigen::VectorXd sig_values = _sig->get_signature_values(0.0); double include_sig_value = 0.0; //std::vector<Relation> rels; //std::vector<BarycentricCoord> source_curve_points; //for (BarycentricCoord& bc : source_curve_points) { // include_sig_value += bc.to_sig_value(_mesh, sig_values).norm() / static_cast<double>(source_curve_points.size()); // _crsolver->add_relation(Relation(bc, Relation::Designation::Include)); //} // Find opposing anchor exclude (All signatures so far flatten out to the same value at parameter extremes) //Eigen::DenseIndex max_diff_index; //(sig_values.array() - include_sig_value).abs().maxCoeff(&max_diff_index); //_crsolver->add_relation(Relation(Patch::instantiate(_mesh, max_diff_index), Relation::Designation::Exclude)); // Find connected components of matching points //std::shared_ptr<SelfSimilarityMap> ssm = std::make_shared<SelfSimilarityMap>(_sig); //std::clog << "Number of similar vertices on mesh: " << ssm->similarity_ratings().sum() << std::endl; std::vector<std::shared_ptr<CurveUnrolling>> seeded_curves; //std::set<Eigen::DenseIndex> visited_vids; std::shared_ptr<CurveUnrolling> cu = std::make_shared<CurveUnrolling>(_source); // Determine number of curves to seed const int num_seeded_curves = 500; auto cmp = [](const std::pair<double, std::shared_ptr<SurfaceStroke>>& lhs, const std::pair<double, std::shared_ptr<SurfaceStroke>>& rhs) -> bool { return lhs.first > rhs.first; }; auto ccmp = [](const std::pair<double, std::shared_ptr<CurveUnrolling>>& lhs, const std::pair<double, std::shared_ptr<CurveUnrolling>>& rhs) -> bool { return lhs.first > rhs.first; }; cppoptlib::Problem<double>::TVector x(3); x << 0.0, 0.0, 0.0; // Select seed points at random (std::begin(curve) at face center) std::priority_queue<std::pair<double, std::shared_ptr<CurveUnrolling>>, std::vector<std::pair<double, std::shared_ptr<CurveUnrolling>>>, decltype(ccmp)> Q_curves(ccmp); { std::random_device rd; //Will be used to obtain a seed for the random number engine std::mt19937 gen(rd()); //Standard mersenne_twister_engine seeded with rd() std::uniform_int_distribution<> dis(0, _mesh->faces().rows() - 1); for (int i = 0; i < num_seeded_curves; ++i) { // Select starting face for curve start Eigen::DenseIndex fid = static_cast<Eigen::DenseIndex>(dis(gen)); // Determine each curve's search parameter (based on the signature being used) try { std::shared_ptr<CurveUnrolling> seeded_curve = std::make_shared<CurveUnrolling>(_mesh, *cu, fid); StrokeDiffReduce replicate(cu, seeded_curve, _sig); double val = replicate.value(x); Q_curves.push(std::make_pair(val, seeded_curve)); } catch (std::exception) { // pass } } } const int CULL_REMAIN_MAX = cull_sample; for (int i = 0; i < CULL_REMAIN_MAX && i < Q_curves.size(); ++i) { seeded_curves.push_back(Q_curves.top().second); Q_curves.pop(); } // Solve curves in parallel const unsigned int thread_pool_size = 10; // std::thread::hardware_concurrency(); ctpl::thread_pool pool(thread_pool_size); std::chrono::steady_clock::time_point begin = std::chrono::steady_clock::now(); std::shared_ptr<DisplayLock> display_lock = nullptr; //std::make_shared<DisplayLock>(num_seeded_curves); for (int i = 0; i < seeded_curves.size(); ++i) { pool.push(curve_solve_proxy, i, cu, seeded_curves[i], _sig, display_lock); } if (display_lock != nullptr) { while (pool.n_idle() < pool.size()) { bool clear = true; for (int i = 0; i < display_lock->_display.size(); ++i) { if (display_lock->_updated) { if (display_lock->_display[i].size() > 0) { for (int j = 0; j < display_lock->_display[i].size(); ++j) { display_lock->_mtx.lock(); double alpha = static_cast<double>(j + 1) / static_cast<double>(display_lock->_display[i].size()); display_lock->_display[i][j]->display(*_viewer, true, _mesh, clear, Eigen::Vector3d::Zero(), alpha * Eigen::Vector3d::UnitY() + (1.0 - alpha) * Eigen::Vector3d::UnitX()); display_lock->_mtx.unlock(); clear = false; std::this_thread::yield(); } } } auto start = std::chrono::high_resolution_clock::now(); auto end = start + std::chrono::milliseconds(250); do { std::this_thread::yield(); } while (std::chrono::high_resolution_clock::now() < end); } display_lock->_updated = false; } } pool.stop(true); std::chrono::steady_clock::time_point end = std::chrono::steady_clock::now(); std::cout << "Time to Solve = " << std::chrono::duration_cast<std::chrono::milliseconds>(end - begin).count() << " [ms]" << std::endl; // Merge overlapping curves, and cull curves that don't have a low enough final objective value const double curve_threshold = 1e-1; std::vector<std::pair<double, std::shared_ptr<SurfaceStroke>>> replicated; for (int i = 0; i < seeded_curves.size(); ++i) { StrokeDiffReduce replicate(cu, seeded_curves[i], _sig); double val = replicate.value(x); /*if (val > curve_threshold) { continue; }*/ bool append = true; std::shared_ptr<SurfaceStroke> cpy = seeded_curves[i]->unrolled_on_origin_mesh(); for (int j = 0; j < replicated.size(); ++j) { if (!cpy->is_disjoint_from(replicated[j].second)) { double prev_val = replicated[j].first; if (val < prev_val) { replicated[j].second = cpy; } append = false; } } if (append) { replicated.push_back(std::make_pair(val, cpy)); } } std::priority_queue<std::pair<double, std::shared_ptr<SurfaceStroke>>, std::vector<std::pair<double, std::shared_ptr<SurfaceStroke>>>, decltype(cmp)> Q(cmp); for (auto kv : replicated) { Q.push(std::make_pair(kv.first, kv.second)); } //const int top_n = 5; std::vector<std::shared_ptr<SurfaceStroke>> top; int i = 0; while (!Q.empty()) { if (i >= num_to_suggest) { break; } std::clog << "top [ " << i++ << " ]: " << Q.top().first << std::endl; top.push_back(Q.top().second); Q.pop(); } std::clog << "Replicated strokes suggested [ " << top.size() << " ]" << std::endl; /*if (self_sim_map != nullptr) { *self_sim_map = ssm; }*/ return top; }
[ "jgraus@gmu.edu" ]
jgraus@gmu.edu
b301d250f75ffb4926f585869c61eca70264c941
88cd9752590e94d63c0cb511f3593e392658493f
/game.cpp
a7352fa5fa6cc527df4fb4bbb306c6941127a8e1
[]
no_license
ljg6/summergame
fb307c6292270ee3bd1e0ad6b632a6d2c236ac00
dbf58f2ee0fcec537d9638e503654dbe529706c9
refs/heads/master
2016-09-10T23:10:42.608077
2015-07-31T20:54:15
2015-07-31T20:54:15
40,024,377
0
0
null
null
null
null
UTF-8
C++
false
false
1,666
cpp
#include <SDL.h> #include <stdio.h> #include "game.h" int GameData::Setup() { if(SDL_Init (SDL_INIT_EVERYTHING) < 0) { printf("SDL Error: %s\n", SDL_GetError() ); return -1; } if ((mWindow = SDL_CreateWindow("Maps", 200,200,800,600,0)) == NULL) { printf("SDL Error%s\n", SDL_GetError()); return -1; } if((mScreenSurface = SDL_GetWindowSurface(mWindow)) == NULL) { printf("SDL Error%s\n", SDL_GetError()); return -1; } if((mGameSurface = SDL_LoadBMP("img/map.bmp")) == NULL) { printf("SDL Error%s\n", SDL_GetError()); return -1; } return 0; if ((mWindow = SDL_CreateWindow("Characters", 200,200,800,600,0)) == NULL) { printf("SDL Error%s\n", SDL_GetError()); return -1; } if((nScreenSurface = SDL_GetWindowSurface(nWindow)) == NULL) { printf("SDL Error%s\n", SDL_GetError()); return -1; } if((nGameSurface = SDL_LoadBMP("img/character.bmp")) == NULL) { printf("SDL Error%s\n", SDL_GetError()); return -1; } return 0; } int GameData::Draw() { SDL_BlitSurface (mGameSurface, NULL, mScreenSurface, NULL); SDL_BlitSurface (nGameSurface, NULL, nScreenSurface, NULL); SDL_UpdateWindowSurface(mWindow); SDL_UpdateWindowSurface(nWindow); return 0; } int GameData::Input() { SDL_Event e; SDL_PollEvent(&e); if(e.type == SDL_QUIT) mDone = true; return 0; } int GameData::Update() { //Nothing yet.. return 0; } int GameData::Run() { do { Input(); Update(); Draw(); SDL_Delay(10); }while(!mDone); return 0; } int GameData::Shutdown() { SDL_FreeSurface(mGameSurface); SDL_DestroyWindow (mWindow); SDL_FreeSurface(nGameSurface); SDL_DestroyWindow (nWindow); SDL_Quit(); return 0; }
[ "ljg6@njit.edu" ]
ljg6@njit.edu
bb746c25015de07a624ea8e8bb34a7dd1825ccae
cb27ec94e5e79fcbc303ca08896ab19ee60056ec
/addstudent.h
0e3a8f8314484fd9f6b69c301259d69560be8d3e
[]
no_license
zdenekpasek/School-managment-system
25b347aa868298b8020ea96e9ae9db42f1809e3c
fa518b3edfa961133a371b9774ce2480ab1ee919
refs/heads/master
2020-06-24T07:28:00.392731
2019-07-30T20:50:29
2019-07-30T20:50:29
198,896,302
0
0
null
null
null
null
UTF-8
C++
false
false
669
h
#ifndef ADDSTUDENT_H #define ADDSTUDENT_H #include <QWidget> #include <student.h> #include <QList> namespace Ui { class addStudent; } class addStudent : public QWidget { Q_OBJECT public: explicit addStudent(QWidget *parent = nullptr); ~addStudent(); vector<Student *> students; QList<Student*> list; private: Ui::addStudent *ui; signals: void HomeClicked(); private slots: void on_homeButton_clicked(); void on_addStudentButton_clicked(); void clearLineEdits(); bool checkLineEditString(QString le, QString le2, QString le3, QString le4, QString le5); bool checkLineEditInt(int subj); }; #endif // ADDSTUDENT_H
[ "zdenekpasek1@gmail.com" ]
zdenekpasek1@gmail.com
d1a78e9de8f68fbfb6c366ca786f5d62956fc4dd
43e9ceece978228be0c9859fb43edfd3a4c266a0
/cytosim/src/base/conjgradient.cc
4a494d8621820666a992d3280919e03b4a7a198d
[]
no_license
CyCelsLab/Multi-aster-swaming
ef4eb28d229235ee9887c12bf5792dfe8ea6d3e1
a3fb7241960c3664a245210accd6bd0ffcbfe4f0
refs/heads/master
2022-11-19T22:39:20.914910
2020-07-25T18:06:34
2020-07-25T18:06:34
260,443,252
0
0
null
null
null
null
UTF-8
C++
false
false
13,752
cc
//RCS: $Id: conjgradient.cc,v 2.7 2005/03/14 18:12:17 nedelec Exp $ //----------------------------------------------------------------------------- // conjugate gradient and related iterative methods // to solve linear systems: http://www.netlib.org/templates //----------------------------------------------------------------------------- #include "conjgradient.h" #include "cblas.h" #include "clapack.h" #include "smath.h" //The linear system is only defined by the functions, which calculate //the product of the matrix by a given vector. These functions are defined //in simsolve.cc and passed to the solvers as an argument. //The preconditionner P is defined in the same way. #ifndef NORM #define NORM blas_xnrm8 #endif //------------------ the vector-vector dot product used in the algorithm #ifndef SINGLE #define DOT blas_xdot #else //we sum in double precision to improve accuracy... double DOT( int size, real * X, int inc_x, real * Y, int inc_y ) { double result = 0; if ( ( inc_x == 1 ) && ( inc_y == 1 ) ) { for( int ii = 0; ii < size; ++ii ) result += double( X[ ii ] ) * double( Y[ ii ] ); } else { for( int ii = 0; ii < size; ++ii ) result += double( X[ inc_x * ii ] ) * double( Y[ inc_y * ii ] ); } return result; } #endif //-------all purpose allocation function: void allocateCG(int size, int& allocated, real** vec1=0, real** vec2=0, real** vec3=0, real** vec4=0, real** vec5=0, real** vec6=0, real** vec7=0, real** vec8=0) { // allocate the working-arrays for the solvers if ( size > allocated ) { if ( vec1 && *vec1 ) delete[]( *vec1 ); if ( vec2 && *vec2 ) delete[]( *vec2 ); if ( vec3 && *vec3 ) delete[]( *vec3 ); if ( vec4 && *vec4 ) delete[]( *vec4 ); if ( vec5 && *vec5 ) delete[]( *vec5 ); if ( vec6 && *vec6 ) delete[]( *vec6 ); if ( vec7 && *vec7 ) delete[]( *vec7 ); if ( vec8 && *vec8 ) delete[]( *vec8 ); if ( vec1 ) { *vec1 = new real[ size ]; if (*vec1 == 0) { fprintf(stderr, "ConjugateGradient::allocate() memory allocation failed\n"); exit(1); } } if ( vec2 ) { *vec2 = new real[ size ]; if (*vec2 == 0) { fprintf(stderr, "ConjugateGradient::allocate() memory allocation failed\n"); exit(1); } } if ( vec3 ) { *vec3 = new real[ size ]; if (*vec3 == 0) { fprintf(stderr, "ConjugateGradient::allocate() memory allocation failed\n"); exit(1); } } if ( vec4 ) { *vec4 = new real[ size ]; if (*vec4 == 0) { fprintf(stderr, "ConjugateGradient::allocate() memory allocation failed\n"); exit(1); } } if ( vec5 ) { *vec5 = new real[ size ]; if (*vec5 == 0) { fprintf(stderr, "ConjugateGradient::allocate() memory allocation failed\n"); exit(1); } } if ( vec6 ) { *vec6 = new real[ size ]; if (*vec6 == 0) { fprintf(stderr, "ConjugateGradient::allocate() memory allocation failed\n"); exit(1); } } if ( vec7 ) { *vec7 = new real[ size ]; if (*vec7 == 0) { fprintf(stderr, "ConjugateGradient::allocate() memory allocation failed\n"); exit(1); } } if ( vec8 ) { *vec8 = new real[ size ]; if (*vec8 == 0) { fprintf(stderr, "ConjugateGradient::allocate() memory allocation failed\n"); exit(1); } } allocated = size; } } //============================================================================= // Conjugate Gradient, no Preconditionning //============================================================================= void Solver::conjGradient(int size, const real* b, real* x, void (*matVect)( const real*, real* ), int & max_iter, real & tol) { static real *d = 0, *s=0, *r=0, *p=0, *q=0; static int alc = 0; allocateCG( size, alc, &d, &s, &r, &p, &q ); real alpha, beta, dold, dnew; blas_xcopy( size, b, 1, r, 1 ); matVect( x, s ); blas_xaxpy( size, -1, s, 1, r, 1); // r <- b - A * x blas_xcopy( size, r, 1, d, 1 ); // d <- r dnew = DOT(size, r, 1, r, 1); real normb = NORM( size, b, 1 ); real limit = tol * normb; real test = NORM( size, r, 1 ); int ii; for (ii=0; (ii <= max_iter) && ( test > limit ); ++ii ) { matVect( d, q ); // q = A * d alpha = dnew / DOT(size, d, 1, q, 1); blas_xaxpy( size, alpha, d, 1, x, 1 ); // x += alpha * d blas_xaxpy( size, -alpha, q, 1, r, 1 ); // r -= alpha * q dold = dnew; dnew = DOT(size, r, 1, r, 1); beta = dnew / dold; blas_xscal( size, beta, d, 1 ); blas_xaxpy( size, 1, r, 1, d, 1 ); // d = beta * d + r test = NORM( size, r, 1 ); } tol = test / normb; max_iter = ii; } //============================================================================= // Conjugate Gradient, with Preconditioning //============================================================================= void Solver::conjGradientPrecond(int size, const real * b, real * x, void (*matVect)( const real*, real* ), void (*precond)( const real*, real* ), int & max_iter, real & tol) { static real *d = 0, *s=0, *r=0, *p=0, *q=0; static int alc = 0; allocateCG( size, alc, &d, &s, &r, &p, &q ); real alpha, beta, dold, dnew; blas_xcopy( size, b, 1, r, 1 ); matVect( x, s ); blas_xaxpy( size, -1, s, 1, r, 1); // r = b - M * x precond( r, d ); // d <- inv(M) * r dnew = DOT(size, r, 1, d, 1); real normb = NORM( size, b, 1 ); real limit = tol * normb; // limit <- | b | real test = NORM(size, r, 1 ); int ii; for (ii=0; (ii <= max_iter) && ( test > limit ); ++ii ) { matVect( d, q ); // q = M * d alpha = dnew / DOT(size, d, 1, q, 1); blas_xaxpy( size, alpha, d, 1, x, 1 ); // x += alpha * d blas_xaxpy( size, -alpha, q, 1, r, 1 ); // r -= alpha * q precond( r, s ); // s = inv(M) * r; dold = dnew; dnew = DOT(size, r, 1, s, 1); beta = dnew / dold; blas_xscal( size, beta, d, 1 ); blas_xaxpy( size, 1, s, 1, d, 1 ); // d = beta * d + s test = NORM( size, r, 1 ); } tol = test / normb; max_iter = ii; } //============================================================================= // Bi-Conjugate Gradient //============================================================================= void Solver::biConjGradient(int size, const real * b, real * x, void (*matVect)( const real*, real* ), void (*matVectTrans)( const real*, real* ), int & max_iter, real & tol) { static real *r=0, *rb=0, *p=0, *pb=0, *q=0, *qb=0; static int alc = 0; allocateCG( size, alc, &r, &rb, &p, &pb, &q, &qb ); real alpha, beta, dold, dnew; blas_xcopy( size, b, 1, r, 1 ); matVect( x, rb ); blas_xaxpy( size, -1, rb, 1, r, 1); // r = b - A * x blas_xcopy( size, r, 1, p, 1 ); blas_xcopy( size, r, 1, rb, 1 ); blas_xcopy( size, r, 1, pb, 1 ); dnew = DOT(size, rb, 1, r, 1); real normb = NORM( size, b, 1 ); real limit = tol * normb; // limit <- | b | real test = NORM( size, r, 1 ); int ii; for (ii=0; (ii <= max_iter) && ( test > limit ); ++ii ) { matVect( p, q ); // q = A * p matVectTrans( pb, qb ); // qb = A' * pb alpha = dnew / DOT(size, pb, 1, q, 1); blas_xaxpy( size, alpha, p, 1, x, 1 ); // x += alpha * p blas_xaxpy( size, -alpha, q, 1, r, 1 ); // r -= alpha * q blas_xaxpy( size, -alpha, qb, 1, rb, 1 ); // rb -= alpha * qb dold = dnew; dnew = DOT(size, r, 1, rb, 1); beta = dnew / dold; blas_xscal( size, beta, p, 1 ); blas_xaxpy( size, 1, r, 1, p, 1 ); // p = beta * p + r blas_xscal( size, beta, pb, 1 ); blas_xaxpy( size, 1, rb, 1, pb, 1 ); // pb = beta * pb + rb test = NORM( size, r, 1 ); } tol = test / normb; max_iter = ii; } //============================================================================= // Bi-Conjugate Gradient Stabilized //============================================================================= int Solver::biCGstab(int size, const real * b, real * x, void (*matVect)( const real*, real* ), int & iter, real & tol, real normb) { double rho_1, rho_2 = 1, alpha = 0, beta, omega = 1.0; static real *r=0, *rtilde=0, *p=0, *t=0, *v=0; static int alc = 0; allocateCG( size, alc, &r, &rtilde, &p, &t, &v ); blas_xcopy( size, b, 1, r, 1 ); matVect( x, rtilde ); blas_xaxpy( size, -1.0, rtilde, 1, r, 1); // r = b - A * x blas_xcopy( size, r, 1, rtilde, 1 ); if ( normb == 0.0 ) normb = NORM( size, b, 1 ); if ( normb == 0.0 ) normb = 1.0; real max_tol = tol; int max_iter = iter; for(iter = 1; iter <= max_iter; ++iter) { rho_1 = DOT(size, rtilde, 1, r, 1); if (rho_1 == 0.0) { tol = NORM(size, r, 1) / normb; return 2; } if (iter == 1) blas_xcopy(size, r, 1, p, 1 ); // p = r; else { beta = (rho_1/rho_2) * (alpha/omega); blas_xaxpy(size, -omega, v, 1, p, 1); blas_xscal(size, beta, p, 1); blas_xaxpy(size, 1.0, r, 1, p, 1); // p = r + beta*(p-omega*v); } matVect( p, v ); // v = A * p; alpha = rho_1 / DOT(size, rtilde, 1, v, 1); blas_xaxpy(size, -alpha, v, 1, r, 1); // r = r - alpha * v; blas_xaxpy(size, alpha, p, 1, x, 1); // x = x + alpha * p; tol = NORM(size, r, 1) / normb; if ( tol < max_tol ) return 0; matVect( r, t ); // t = A * s; omega = DOT(size, t, 1, r, 1) / DOT(size, t, 1, t, 1); blas_xaxpy(size, omega, r, 1, x, 1); // x = x + omega * r; blas_xaxpy(size, -omega, t, 1, r, 1); // r = r - omega * t; tol = NORM(size, r, 1) / normb; if ( tol < max_tol ) return 0; if ( omega == 0.0 ) return 3; rho_2 = rho_1; } return 1; } //============================================================================= // Bi-Conjugate Gradient Stabilized with Preconditionning //============================================================================= int Solver::biCGstabPrecond(int size, const real * b, real * x, void (*matVect)( const real*, real* ), void (*precond)( const real*, real* ), int & iter, real & tol, real normb) { double rho_1, rho_2 = 1, alpha = 0, beta, omega = 1.0, delta; static real *r=0, *rtilde=0, *p=0, *phat=0, *shat=0, *t=0, *v=0; static int alc = 0; allocateCG( size, alc, &r, &rtilde, &p, &t, &v, &phat, &shat ); blas_xcopy( size, b, 1, r, 1 ); matVect( x, rtilde ); blas_xaxpy( size, -1.0, rtilde, 1, r, 1); // r = b - A * x blas_xcopy( size, r, 1, rtilde, 1 ); // r_tilde = r if ( normb == 0.0 ) normb = NORM( size, b, 1 ); if ( normb == 0.0 ) normb = 1.0; real max_tol = tol; int max_iter = iter; for (iter = 1; iter <= max_iter; ++iter) { rho_1 = DOT(size, rtilde, 1, r, 1); //we should rather test if fabs(rho_1) is greater than an EPSILON //since we will divide by rho_1 at the next time step (rho_2 <- rho_1) if (rho_1 == 0.0) { tol = NORM(size, r, 1) / normb; return 2; } if (iter == 1) blas_xcopy(size, r, 1, p, 1 ); // p = r; else { beta = (rho_1/rho_2) * (alpha/omega); //we should test here the value of beta, which is scalar blas_xaxpy(size, -omega, v, 1, p, 1); blas_xscal(size, beta, p, 1); blas_xaxpy(size, 1.0, r, 1, p, 1); // p = r + beta*(p-omega*v); } precond( p, phat ); // phat = inv(M) * p; matVect( phat, v ); // v = M * phat; //added test for failure detected by D. Foethke, Jan 2005 delta = DOT(size, rtilde, 1, v, 1); if (delta == 0.0) { tol = NORM(size, r, 1) / normb; return 4; } alpha = rho_1 / delta; blas_xaxpy(size, -alpha, v, 1, r, 1); // r = r - alpha * v; blas_xaxpy(size, alpha, phat, 1, x, 1); // x = x + alpha * phat; tol = NORM(size, r, 1) / normb; if ( tol < max_tol ) return 0; precond( r, shat ); // shat = inv(M) * r matVect( shat, t ); // t = M * shat omega = DOT(size, t, 1, r, 1) / DOT(size, t, 1, t, 1); blas_xaxpy(size, omega, shat, 1, x, 1); // x = x + omega * shat blas_xaxpy(size, -omega, t, 1, r, 1); // r = r - omega * t tol = NORM(size, r, 1) / normb; if ( tol < max_tol ) return 0; if ( omega == 0.0 ) return 3; rho_2 = rho_1; } return 1; }
[ "khetanneha@gmail.com" ]
khetanneha@gmail.com
925cb4378c0d68f5a776d3ffe6fbadf67f2cd147
a43248cf342fcc36ddf3e9d2797721556ecaaed8
/BlueMarbel/Sphere.h
746fac0ea2c08d7e786ae166f9744c6ceb6d4580
[]
no_license
Fraukman/BlueMarble
16d9059441618603dbf6ecaf66030b4e2cf26421
bcdf328380c60cba206091942bb435a161aaccb8
refs/heads/main
2023-03-05T02:26:43.871175
2021-02-19T12:14:30
2021-02-19T12:14:30
338,941,011
0
0
null
null
null
null
UTF-8
C++
false
false
398
h
#pragma once #include "Vertex.h" #include <GL/glew.h> #include <glm/glm.hpp> #include <glm/ext.hpp> #include <vector> class Sphere { private: void GenerateSphereMesh(GLuint Resolution, std::vector<Vertex>& Vertices, std::vector<glm::ivec3>& Indices); public: Sphere(); void LoadSphere(); void Draw(); GLuint VAO; GLuint VBO; GLuint EBO; GLuint NumOfIndices; GLuint NumOfVertices; };
[ "juan.m.souza@gmail.com" ]
juan.m.souza@gmail.com
dc02f4cbc024ee3e97194ea5a63aa3342dc4aa41
944c6d723c5dccc39416e501341e8d943f1bdb8e
/MFCandAPI/10/UsgComboBoxes/UsgComboBoxes/Dialog.cpp
dc4a04b9fc7c3f4d8fc3affda8ba4426f908d35f
[]
no_license
UserNT/JoinISD
75176ce790635ed77415ab4c7dee0e49321edaf4
18a4367eac38347ac6b6611afa009e359767d42b
refs/heads/master
2021-01-09T06:10:02.426103
2017-10-29T16:44:05
2017-10-29T16:44:05
80,913,329
0
0
null
null
null
null
WINDOWS-1251
C++
false
false
2,981
cpp
/* Файл : Dialog.сpp Проект : демонстрация Windows-приложения на основе библиотеки классов MFC с окном модального диалога, использующим различные комбинированные списки Назначение : реализация класса "Dialog", производного от класса "CDialod" библиотеки классов MFC (обработка сообщений окна диалога) Microsoft Visual Studio C++ .NET 2005 */ #include "StdAfx.h" // Прекомпилируемый файл #include "Dialog.h" // Объявление класса Dialog // Идентификаторы ресурсов (поддержка редактором ресурсов) #include "resource.h" // Конструктор Dialog::Dialog( CWnd *pParent) // Указатель на родительское // окно (NULL - родительским // является главное окно) : CDialog(IDD_DIALOG_COMBOBOXES, pParent) { } // Инициализация окна диалога BOOL Dialog::OnInitDialog(void) { // Вызываем метод базового класса CDialog::OnInitDialog(); // Получаем указатели на комбинированные списки m_pCombo1 = static_cast< CComboBox * > (GetDlgItem(IDC_COMBO3)); m_pCombo2 = static_cast< CComboBox * > (GetDlgItem(IDC_COMBO2)); m_pCombo3 = static_cast< CComboBox * > (GetDlgItem(IDC_COMBO1)); int IxStr; // Индекс элемента списка // Заносим элементы в простой комбинированный список и // выбираем строку в окне редактирования for (IxStr = 0; IxStr <= m_IxLast1; IxStr++) { m_pCombo1->AddString(m_List1[IxStr]); } m_pCombo1->SetCurSel(0); // Заносим элементы в раскрывающийся комбинированный список и // выбираем строку в окне редактирования for (IxStr = 0; IxStr <= m_IxLast2; IxStr++) { m_pCombo2->AddString(m_List2[IxStr]); } m_pCombo2->SetCurSel(0); // Заносим элементы в раскрывающийся список и выбираем строку // в окне редактирования for (IxStr = 0; IxStr <= m_IxLast3; IxStr++) { m_pCombo3->AddString(m_List3[IxStr]); } m_pCombo3->SetCurSel(0); return TRUE; } // Получение информации из окна диалога (обработчик кнопки OK) void Dialog::OnOK(void) { // Вызываем метод базового класса CDialog::OnOK(); m_pCombo1->GetWindowText(m_Str1); m_pCombo2->GetWindowText(m_Str2); m_pCombo3->GetWindowText(m_Str3); return; }
[ "vitalikfmne@mail.ru" ]
vitalikfmne@mail.ru
ef26a2d2323d848fdd541a54f492ca4408ed5f16
d72232061a899e1d8236f44c8f9e05f7548c8f9e
/Level 3 HW Submission/2.3/2.3.5/2.3.5/Line.hpp
4858efe59fbd8e3c36c5ab7e223626ccae9efabd
[]
no_license
wentaozou1/BaruchCPPHW
6072ec8ec68aea878fc1eb5a6833234d3bb05911
15f97e03b01338931257247064e86a48eef6fce7
refs/heads/master
2020-03-22T16:53:48.310355
2018-07-12T03:23:00
2018-07-12T03:23:00
140,358,934
0
0
null
2018-07-10T01:05:25
2018-07-10T01:05:25
null
UTF-8
C++
false
false
462
hpp
// Line.hpp // // @author Xinyuan Zhang // @version 1.0 07/11/18 #ifndef Line_HPP #define Line_HPP #include "Point.hpp" #include <iostream> using namespace std; class Line { private: Point p1; Point p2; public: Line(); Line(const Point& p1, const Point& p2); Line(const Line& line); / ~Line(); Point P1() const; Point P2() const; void P1(const Point& p1); void P2(const Point& p2); double Length() const; string ToString() const; }; #endif
[ "wentaozou1@gmail.com" ]
wentaozou1@gmail.com
42f8bcd6cd056a26fbc735eb97b8d184bb658f02
4a77a2516be870a9a5870d790c28e3ee3f2901c1
/第7周实验合集/Week7_class2/Week7_class2/MainFrm.cpp
b601930dde0f74477c0bef11528f0ec8d3336bd8
[]
no_license
JIANG-LP/201812300105
84a1b1d4b9a5b5d5bf4e8f8cc607c8eb1fe3f4f4
a923b0ffaefa60ead1033b06a6838bdbd66a10db
refs/heads/master
2021-02-14T15:10:35.869102
2020-07-05T06:37:33
2020-07-05T06:37:33
244,814,097
0
0
null
null
null
null
GB18030
C++
false
false
1,773
cpp
// MainFrm.cpp : CMainFrame 类的实现 // #include "stdafx.h" #include "Week7_class2.h" #include "MainFrm.h" #ifdef _DEBUG #define new DEBUG_NEW #endif // CMainFrame IMPLEMENT_DYNCREATE(CMainFrame, CFrameWnd) BEGIN_MESSAGE_MAP(CMainFrame, CFrameWnd) ON_WM_CREATE() END_MESSAGE_MAP() static UINT indicators[] = { ID_SEPARATOR, // 状态行指示器 ID_INDICATOR_CAPS, ID_INDICATOR_NUM, ID_INDICATOR_SCRL, }; // CMainFrame 构造/析构 CMainFrame::CMainFrame() { // TODO: 在此添加成员初始化代码 } CMainFrame::~CMainFrame() { } int CMainFrame::OnCreate(LPCREATESTRUCT lpCreateStruct) { if (CFrameWnd::OnCreate(lpCreateStruct) == -1) return -1; if (!m_wndToolBar.CreateEx(this, TBSTYLE_FLAT, WS_CHILD | WS_VISIBLE | CBRS_TOP | CBRS_GRIPPER | CBRS_TOOLTIPS | CBRS_FLYBY | CBRS_SIZE_DYNAMIC) || !m_wndToolBar.LoadToolBar(IDR_MAINFRAME)) { TRACE0("未能创建工具栏\n"); return -1; // 未能创建 } if (!m_wndStatusBar.Create(this)) { TRACE0("未能创建状态栏\n"); return -1; // 未能创建 } m_wndStatusBar.SetIndicators(indicators, sizeof(indicators)/sizeof(UINT)); // TODO: 如果不需要可停靠工具栏,则删除这三行 m_wndToolBar.EnableDocking(CBRS_ALIGN_ANY); EnableDocking(CBRS_ALIGN_ANY); DockControlBar(&m_wndToolBar); return 0; } BOOL CMainFrame::PreCreateWindow(CREATESTRUCT& cs) { if( !CFrameWnd::PreCreateWindow(cs) ) return FALSE; // TODO: 在此处通过修改 // CREATESTRUCT cs 来修改窗口类或样式 return TRUE; } // CMainFrame 诊断 #ifdef _DEBUG void CMainFrame::AssertValid() const { CFrameWnd::AssertValid(); } void CMainFrame::Dump(CDumpContext& dc) const { CFrameWnd::Dump(dc); } #endif //_DEBUG // CMainFrame 消息处理程序
[ "2622918191@qq.com" ]
2622918191@qq.com
6ba8fd0975821a2de7053c8976d02152d2898265
9d9c8eeb19f0b889ca51e84271a1ad6c065b9f6a
/PUServer_2/substituteeffect.h
049122a748450071b47f926b82dd39b9a341f98c
[]
no_license
PokemonUniverse/PUServer_CPP
d1c79d88c8ac5eb9c1d3dbc61105caee683a0cb7
799baf7a2af5b96674befaa7cbce209399202292
refs/heads/master
2016-09-06T11:46:48.022455
2015-02-20T10:53:13
2015-02-20T10:53:13
31,060,000
0
1
null
null
null
null
UTF-8
C++
false
false
664
h
#ifndef INC_SUBSTITUTEEFFECT_H_ #define INC_SUBSTITUTEEFFECT_H_ #include "definitions.h" #include "statuseffect.h" class StatusEffect; class Pokemon; class SubstituteEffect : public StatusEffect { public: std::string getName() { return "Substitute"; }; std::string getDescription() { return " made a substitute!"; }; int getTier() { return -1; }; bool tick(Pokemon* p) { return false; }; bool apply(Pokemon* p) { p->getField()->refreshActivePokemon(); return true; }; void unapply(Pokemon* p) { p->getField()->refreshActivePokemon(); }; bool switchOut(Pokemon* p) { p->setSubstitute(0); return StatusEffect::switchOut(p); } }; #endif
[ "mr_dark@darkweb.nl" ]
mr_dark@darkweb.nl
cfec8bb48a46b26478549aac244c9d74f3fcb54b
504d1d75fcf7a4d1d00ce3d07bd263c6b18cec98
/src/sync.h
fec05baa184ccf4d192c80a158d4b4277d49f640
[ "MIT" ]
permissive
eenglish34/E-BlockMail
698038c14c11cb2ad76f9784934470bc99935835
96f3cb7a3999643b0609d1c31927848dc37faae2
refs/heads/master
2020-03-29T14:46:58.161284
2018-10-10T18:03:30
2018-10-10T18:03:30
150,032,461
2
0
null
null
null
null
UTF-8
C++
false
false
7,556
h
// Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2017 The Bitcoin developers // Copyright (c) 2017-2018 The EBlockmail developers // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_SYNC_H #define BITCOIN_SYNC_H #include "threadsafety.h" #include <boost/thread/condition_variable.hpp> #include <boost/thread/locks.hpp> #include <boost/thread/mutex.hpp> #include <boost/thread/recursive_mutex.hpp> ///////////////////////////////////////////////// // // // THE SIMPLE DEFINITION, EXCLUDING DEBUG CODE // // // ///////////////////////////////////////////////// /* CCriticalSection mutex; boost::recursive_mutex mutex; LOCK(mutex); boost::unique_lock<boost::recursive_mutex> criticalblock(mutex); LOCK2(mutex1, mutex2); boost::unique_lock<boost::recursive_mutex> criticalblock1(mutex1); boost::unique_lock<boost::recursive_mutex> criticalblock2(mutex2); TRY_LOCK(mutex, name); boost::unique_lock<boost::recursive_mutex> name(mutex, boost::try_to_lock_t); ENTER_CRITICAL_SECTION(mutex); // no RAII mutex.lock(); LEAVE_CRITICAL_SECTION(mutex); // no RAII mutex.unlock(); */ /////////////////////////////// // // // THE ACTUAL IMPLEMENTATION // // // /////////////////////////////// /** * Template mixin that adds -Wthread-safety locking * annotations to a subset of the mutex API. */ template <typename PARENT> class LOCKABLE AnnotatedMixin : public PARENT { public: void lock() EXCLUSIVE_LOCK_FUNCTION() { PARENT::lock(); } void unlock() UNLOCK_FUNCTION() { PARENT::unlock(); } bool try_lock() EXCLUSIVE_TRYLOCK_FUNCTION(true) { return PARENT::try_lock(); } }; #ifdef DEBUG_LOCKORDER void EnterCritical(const char* pszName, const char* pszFile, int nLine, void* cs, bool fTry = false); void LeaveCritical(); std::string LocksHeld(); void AssertLockHeldInternal(const char* pszName, const char* pszFile, int nLine, void* cs); void DeleteLock(void* cs); #else void static inline EnterCritical(const char* pszName, const char* pszFile, int nLine, void* cs, bool fTry = false) {} void static inline LeaveCritical() {} void static inline AssertLockHeldInternal(const char* pszName, const char* pszFile, int nLine, void* cs) {} void static inline DeleteLock(void* cs) {} #endif #define AssertLockHeld(cs) AssertLockHeldInternal(#cs, __FILE__, __LINE__, &cs) /** * Wrapped boost mutex: supports recursive locking, but no waiting * TODO: We should move away from using the recursive lock by default. */ class CCriticalSection : public AnnotatedMixin<boost::recursive_mutex> { public: ~CCriticalSection() { DeleteLock((void*)this); } }; /** Wrapped boost mutex: supports waiting but not recursive locking */ typedef AnnotatedMixin<boost::mutex> CWaitableCriticalSection; /** Just a typedef for boost::condition_variable, can be wrapped later if desired */ typedef boost::condition_variable CConditionVariable; #ifdef DEBUG_LOCKCONTENTION void PrintLockContention(const char* pszName, const char* pszFile, int nLine); #endif /** Wrapper around boost::unique_lock<CCriticalSection> */ template <typename Mutex> class SCOPED_LOCKABLE CMutexLock { private: boost::unique_lock<Mutex> lock; void Enter(const char* pszName, const char* pszFile, int nLine) { EnterCritical(pszName, pszFile, nLine, (void*)(lock.mutex())); #ifdef DEBUG_LOCKCONTENTION if (!lock.try_lock()) { PrintLockContention(pszName, pszFile, nLine); #endif lock.lock(); #ifdef DEBUG_LOCKCONTENTION } #endif } bool TryEnter(const char* pszName, const char* pszFile, int nLine) { EnterCritical(pszName, pszFile, nLine, (void*)(lock.mutex()), true); lock.try_lock(); if (!lock.owns_lock()) LeaveCritical(); return lock.owns_lock(); } public: CMutexLock(Mutex& mutexIn, const char* pszName, const char* pszFile, int nLine, bool fTry = false) EXCLUSIVE_LOCK_FUNCTION(mutexIn) : lock(mutexIn, boost::defer_lock) { if (fTry) TryEnter(pszName, pszFile, nLine); else Enter(pszName, pszFile, nLine); } CMutexLock(Mutex* pmutexIn, const char* pszName, const char* pszFile, int nLine, bool fTry = false) EXCLUSIVE_LOCK_FUNCTION(pmutexIn) { if (!pmutexIn) return; lock = boost::unique_lock<Mutex>(*pmutexIn, boost::defer_lock); if (fTry) TryEnter(pszName, pszFile, nLine); else Enter(pszName, pszFile, nLine); } ~CMutexLock() UNLOCK_FUNCTION() { if (lock.owns_lock()) LeaveCritical(); } operator bool() { return lock.owns_lock(); } }; typedef CMutexLock<CCriticalSection> CCriticalBlock; #define PASTE(x, y) x ## y #define PASTE2(x, y) PASTE(x, y) #define LOCK(cs) CCriticalBlock PASTE2(criticalblock, __COUNTER__)(cs, #cs, __FILE__, __LINE__) #define LOCK2(cs1, cs2) CCriticalBlock criticalblock1(cs1, #cs1, __FILE__, __LINE__), criticalblock2(cs2, #cs2, __FILE__, __LINE__) #define TRY_LOCK(cs, name) CCriticalBlock name(cs, #cs, __FILE__, __LINE__, true) #define ENTER_CRITICAL_SECTION(cs) \ { \ EnterCritical(#cs, __FILE__, __LINE__, (void*)(&cs)); \ (cs).lock(); \ } #define LEAVE_CRITICAL_SECTION(cs) \ { \ (cs).unlock(); \ LeaveCritical(); \ } class CSemaphore { private: boost::condition_variable condition; boost::mutex mutex; int value; public: CSemaphore(int init) : value(init) {} void wait() { boost::unique_lock<boost::mutex> lock(mutex); while (value < 1) { condition.wait(lock); } value--; } bool try_wait() { boost::unique_lock<boost::mutex> lock(mutex); if (value < 1) return false; value--; return true; } void post() { { boost::unique_lock<boost::mutex> lock(mutex); value++; } condition.notify_one(); } }; /** RAII-style semaphore lock */ class CSemaphoreGrant { private: CSemaphore* sem; bool fHaveGrant; public: void Acquire() { if (fHaveGrant) return; sem->wait(); fHaveGrant = true; } void Release() { if (!fHaveGrant) return; sem->post(); fHaveGrant = false; } bool TryAcquire() { if (!fHaveGrant && sem->try_wait()) fHaveGrant = true; return fHaveGrant; } void MoveTo(CSemaphoreGrant& grant) { grant.Release(); grant.sem = sem; grant.fHaveGrant = fHaveGrant; sem = NULL; fHaveGrant = false; } CSemaphoreGrant() : sem(NULL), fHaveGrant(false) {} CSemaphoreGrant(CSemaphore& sema, bool fTry = false) : sem(&sema), fHaveGrant(false) { if (fTry) TryAcquire(); else Acquire(); } ~CSemaphoreGrant() { Release(); } operator bool() { return fHaveGrant; } }; #endif // BITCOIN_SYNC_H
[ "eenglish34@hotmail.com" ]
eenglish34@hotmail.com
734df50d2e044a92877187c0c2ea051efcec3c55
c68c58941421f6c97912fb53675c899d29926837
/Engine/Misc/GameLib/Include/CullingManager.h
0cfece964afb83d9282bc43a2f7b20acdb02a13e
[]
no_license
nickjfree/renderer
de21b4e662c25cc62a8ab958ac0e065786620ca6
1ebd25ad0e8bd3a4460886c9e4c15aa5a560da68
refs/heads/master
2021-12-29T19:07:21.134223
2021-12-26T17:43:06
2021-12-26T17:43:06
58,398,579
7
2
null
null
null
null
UTF-8
C++
false
false
1,839
h
#ifndef __CULLING_MANAGER__ #define __CULLING_MANAGER__ #include "MathLib.h" #include "CullingPrimitive.h" #include "CullingFrustum.h" #include "CullingSolver.h" #include "ResourceContainer.h" using ResourceManager::CResourceContainer; namespace CullingSystem { class CCullingManager { private: //this manager static CCullingManager * m_this; CCullingSolver * m_CullingSolver; // item pools CResourceContainer<CCullingPoint> m_PointPool; CResourceContainer<CCullingPlane> m_PlanePool; CResourceContainer<CCullingAARect> m_AARectPool; CResourceContainer<CCullingAABB> m_AABBPool; CResourceContainer<CCullingFrustum> m_FrustumPool; public: enum COLLISION_TYPE { OUTSIDE, INTERSECT, INSIDE, }; enum PRIMITIVE_TYPE { AABB, AARECT, PLANE, POINT, FRUSTUM, PROXY, }; public: CCullingManager(void); virtual ~CCullingManager(void); static CCullingManager * GetCullingManager(){return m_this;}; public: CCullingAARect * CreateCullingRect(CCullingPoint& min, CCullingPoint& max); CCullingAABB * CreateCullingAABB(CCullingPoint& min, CCullingPoint& max); int ConstructFrustum(CCullingFrustum * Frustum,Vector3& Look, Vector3& Right, Vector3& Up, Vector3& Position, float Near, float Far, float Fov, float Aspect); int FrustumCollision(CCullingFrustum * Frustum, CCullingProxy * Proxy); int FrustumAARectTest(CCullingFrustum * Frustum, CCullingAARect * AARect); int FrustumAABBTest(CCullingFrustum * Frustum, CCullingAABB * AABB); int PlaneAARectTest(CCullingPlane * Plane, CCullingAARect * AARect); int PlaneAABBTest(CCullingPlane * Plane, CCullingAABB * AABB); int PlanePointTest(CCullingPlane * Plane, CCullingPoint * Point); int AARectCollision(CCullingAARect* AARect, CCullingProxy * Proxy); int SphereCollision(CCullingSphere * Sphere, CCullingProxy * Proxy); }; }// end namespace #endif
[ "nick12@live.cn" ]
nick12@live.cn
75cbb5f1db2fbd0a3e47876022019973a1fa7f03
1a93a3b56dc2d54ffe3ee344716654888b0af777
/env/Library/include/qt/QtLocation/5.12.9/QtLocation/private/qgeotiledmap_p_p.h
80f658e08fa443c03bad2eb4ee280784af37d0bb
[ "BSD-3-Clause", "GPL-1.0-or-later", "GPL-3.0-only", "GPL-2.0-only", "Python-2.0", "LicenseRef-scancode-python-cwi", "LicenseRef-scancode-other-copyleft", "0BSD", "LicenseRef-scancode-free-unknown" ]
permissive
h4vlik/TF2_OD_BRE
ecdf6b49b0016407007a1a049f0fdb952d58cbac
54643b6e8e9d76847329b1dbda69efa1c7ae3e72
refs/heads/master
2023-04-09T16:05:27.658169
2021-02-22T14:59:07
2021-02-22T14:59:07
327,001,911
0
0
BSD-3-Clause
2021-02-22T14:59:08
2021-01-05T13:08:03
null
UTF-8
C++
false
false
3,960
h
/**************************************************************************** ** ** Copyright (C) 2015 The Qt Company Ltd. ** Contact: http://www.qt.io/licensing/ ** ** This file is part of the QtLocation module of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:LGPL3$ ** Commercial License Usage ** Licensees holding valid commercial Qt licenses may use this file in ** accordance with the commercial license agreement provided with the ** Software or, alternatively, in accordance with the terms contained in ** a written agreement between you and The Qt Company. For licensing terms ** and conditions see http://www.qt.io/terms-conditions. For further ** information use the contact form at http://www.qt.io/contact-us. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser ** General Public License version 3 as published by the Free Software ** Foundation and appearing in the file LICENSE.LGPLv3 included in the ** packaging of this file. Please review the following information to ** ensure the GNU Lesser General Public License version 3 requirements ** will be met: https://www.gnu.org/licenses/lgpl.html. ** ** GNU General Public License Usage ** Alternatively, this file may be used under the terms of the GNU ** General Public License version 2.0 or later as published by the Free ** Software Foundation and appearing in the file LICENSE.GPL included in ** the packaging of this file. Please review the following information to ** ensure the GNU General Public License version 2.0 requirements will be ** met: http://www.gnu.org/licenses/gpl-2.0.html. ** ** $QT_END_LICENSE$ ** ****************************************************************************/ #ifndef QGEOTILEDMAP_P_P_H #define QGEOTILEDMAP_P_P_H // // W A R N I N G // ------------- // // This file is not part of the Qt API. It exists purely as an // implementation detail. This header file may change from version to // version without notice, or even be removed. // // We mean it. // #include <QtLocation/private/qlocationglobal_p.h> #include <QtLocation/private/qgeomap_p_p.h> #include <QtLocation/private/qgeocameradata_p.h> #include <QtLocation/private/qgeomaptype_p.h> #include <QtPositioning/private/qdoublevector3d_p.h> #include <QtPositioning/private/qdoublevector2d_p.h> #include <QtCore/QPointer> QT_BEGIN_NAMESPACE class QGeoCameraTiles; class QGeoTiledMapScene; class QAbstractGeoTileCache; class QGeoTiledMappingManagerEngine; class QGeoTiledMap; class QGeoTileRequestManager; class QGeoTileSpec; class QSGNode; class QQuickWindow; class QGeoCameraCapabilities; class Q_LOCATION_PRIVATE_EXPORT QGeoTiledMapPrivate : public QGeoMapPrivate { Q_DECLARE_PUBLIC(QGeoTiledMap) public: QGeoTiledMapPrivate(QGeoTiledMappingManagerEngine *engine); ~QGeoTiledMapPrivate(); QSGNode *updateSceneGraph(QSGNode *node, QQuickWindow *window); void updateTile(const QGeoTileSpec &spec); void prefetchTiles(); QGeoMapType activeMapType(); void onCameraCapabilitiesChanged(const QGeoCameraCapabilities &oldCameraCapabilities); protected: void changeViewportSize(const QSize& size) override; void changeCameraData(const QGeoCameraData &cameraData) override; void changeActiveMapType(const QGeoMapType mapType) override; void changeTileVersion(int version); void clearScene(); void updateScene(); void setVisibleArea(const QRectF &visibleArea) override; QRectF visibleArea() const override; #ifdef QT_LOCATION_DEBUG public: #else protected: #endif QAbstractGeoTileCache *m_cache; QGeoCameraTiles *m_visibleTiles; QGeoCameraTiles *m_prefetchTiles; QGeoTiledMapScene *m_mapScene; QGeoTileRequestManager *m_tileRequests; QRectF m_visibleArea; int m_maxZoomLevel; int m_minZoomLevel; QGeoTiledMap::PrefetchStyle m_prefetchStyle; Q_DISABLE_COPY(QGeoTiledMapPrivate) }; QT_END_NAMESPACE #endif // QGEOTILEDMAP_P_P_H
[ "martin.cernil@ysoft.com" ]
martin.cernil@ysoft.com
98d48e812b5e9bfe3da721f638e0a73705223563
ad273708d98b1f73b3855cc4317bca2e56456d15
/aws-cpp-sdk-quicksight/include/aws/quicksight/model/UpdateTemplatePermissionsRequest.h
8563b08dc6fcfa07f1d6b8b351600df99770cc9e
[ "MIT", "Apache-2.0", "JSON" ]
permissive
novaquark/aws-sdk-cpp
b390f2e29f86f629f9efcf41c4990169b91f4f47
a0969508545bec9ae2864c9e1e2bb9aff109f90c
refs/heads/master
2022-08-28T18:28:12.742810
2020-05-27T15:46:18
2020-05-27T15:46:18
267,351,721
1
0
Apache-2.0
2020-05-27T15:08:16
2020-05-27T15:08:15
null
UTF-8
C++
false
false
8,870
h
/* * Copyright 2010-2017 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ #pragma once #include <aws/quicksight/QuickSight_EXPORTS.h> #include <aws/quicksight/QuickSightRequest.h> #include <aws/core/utils/memory/stl/AWSString.h> #include <aws/core/utils/memory/stl/AWSVector.h> #include <aws/quicksight/model/ResourcePermission.h> #include <utility> namespace Aws { namespace QuickSight { namespace Model { /** */ class AWS_QUICKSIGHT_API UpdateTemplatePermissionsRequest : public QuickSightRequest { public: UpdateTemplatePermissionsRequest(); // Service request name is the Operation name which will send this request out, // each operation should has unique request name, so that we can get operation's name from this request. // Note: this is not true for response, multiple operations may have the same response name, // so we can not get operation's name from response. inline virtual const char* GetServiceRequestName() const override { return "UpdateTemplatePermissions"; } Aws::String SerializePayload() const override; /** * <p>The ID of the AWS account that contains the template.</p> */ inline const Aws::String& GetAwsAccountId() const{ return m_awsAccountId; } /** * <p>The ID of the AWS account that contains the template.</p> */ inline bool AwsAccountIdHasBeenSet() const { return m_awsAccountIdHasBeenSet; } /** * <p>The ID of the AWS account that contains the template.</p> */ inline void SetAwsAccountId(const Aws::String& value) { m_awsAccountIdHasBeenSet = true; m_awsAccountId = value; } /** * <p>The ID of the AWS account that contains the template.</p> */ inline void SetAwsAccountId(Aws::String&& value) { m_awsAccountIdHasBeenSet = true; m_awsAccountId = std::move(value); } /** * <p>The ID of the AWS account that contains the template.</p> */ inline void SetAwsAccountId(const char* value) { m_awsAccountIdHasBeenSet = true; m_awsAccountId.assign(value); } /** * <p>The ID of the AWS account that contains the template.</p> */ inline UpdateTemplatePermissionsRequest& WithAwsAccountId(const Aws::String& value) { SetAwsAccountId(value); return *this;} /** * <p>The ID of the AWS account that contains the template.</p> */ inline UpdateTemplatePermissionsRequest& WithAwsAccountId(Aws::String&& value) { SetAwsAccountId(std::move(value)); return *this;} /** * <p>The ID of the AWS account that contains the template.</p> */ inline UpdateTemplatePermissionsRequest& WithAwsAccountId(const char* value) { SetAwsAccountId(value); return *this;} /** * <p>The ID for the template.</p> */ inline const Aws::String& GetTemplateId() const{ return m_templateId; } /** * <p>The ID for the template.</p> */ inline bool TemplateIdHasBeenSet() const { return m_templateIdHasBeenSet; } /** * <p>The ID for the template.</p> */ inline void SetTemplateId(const Aws::String& value) { m_templateIdHasBeenSet = true; m_templateId = value; } /** * <p>The ID for the template.</p> */ inline void SetTemplateId(Aws::String&& value) { m_templateIdHasBeenSet = true; m_templateId = std::move(value); } /** * <p>The ID for the template.</p> */ inline void SetTemplateId(const char* value) { m_templateIdHasBeenSet = true; m_templateId.assign(value); } /** * <p>The ID for the template.</p> */ inline UpdateTemplatePermissionsRequest& WithTemplateId(const Aws::String& value) { SetTemplateId(value); return *this;} /** * <p>The ID for the template.</p> */ inline UpdateTemplatePermissionsRequest& WithTemplateId(Aws::String&& value) { SetTemplateId(std::move(value)); return *this;} /** * <p>The ID for the template.</p> */ inline UpdateTemplatePermissionsRequest& WithTemplateId(const char* value) { SetTemplateId(value); return *this;} /** * <p>A list of resource permissions to be granted on the template. </p> */ inline const Aws::Vector<ResourcePermission>& GetGrantPermissions() const{ return m_grantPermissions; } /** * <p>A list of resource permissions to be granted on the template. </p> */ inline bool GrantPermissionsHasBeenSet() const { return m_grantPermissionsHasBeenSet; } /** * <p>A list of resource permissions to be granted on the template. </p> */ inline void SetGrantPermissions(const Aws::Vector<ResourcePermission>& value) { m_grantPermissionsHasBeenSet = true; m_grantPermissions = value; } /** * <p>A list of resource permissions to be granted on the template. </p> */ inline void SetGrantPermissions(Aws::Vector<ResourcePermission>&& value) { m_grantPermissionsHasBeenSet = true; m_grantPermissions = std::move(value); } /** * <p>A list of resource permissions to be granted on the template. </p> */ inline UpdateTemplatePermissionsRequest& WithGrantPermissions(const Aws::Vector<ResourcePermission>& value) { SetGrantPermissions(value); return *this;} /** * <p>A list of resource permissions to be granted on the template. </p> */ inline UpdateTemplatePermissionsRequest& WithGrantPermissions(Aws::Vector<ResourcePermission>&& value) { SetGrantPermissions(std::move(value)); return *this;} /** * <p>A list of resource permissions to be granted on the template. </p> */ inline UpdateTemplatePermissionsRequest& AddGrantPermissions(const ResourcePermission& value) { m_grantPermissionsHasBeenSet = true; m_grantPermissions.push_back(value); return *this; } /** * <p>A list of resource permissions to be granted on the template. </p> */ inline UpdateTemplatePermissionsRequest& AddGrantPermissions(ResourcePermission&& value) { m_grantPermissionsHasBeenSet = true; m_grantPermissions.push_back(std::move(value)); return *this; } /** * <p>A list of resource permissions to be revoked from the template. </p> */ inline const Aws::Vector<ResourcePermission>& GetRevokePermissions() const{ return m_revokePermissions; } /** * <p>A list of resource permissions to be revoked from the template. </p> */ inline bool RevokePermissionsHasBeenSet() const { return m_revokePermissionsHasBeenSet; } /** * <p>A list of resource permissions to be revoked from the template. </p> */ inline void SetRevokePermissions(const Aws::Vector<ResourcePermission>& value) { m_revokePermissionsHasBeenSet = true; m_revokePermissions = value; } /** * <p>A list of resource permissions to be revoked from the template. </p> */ inline void SetRevokePermissions(Aws::Vector<ResourcePermission>&& value) { m_revokePermissionsHasBeenSet = true; m_revokePermissions = std::move(value); } /** * <p>A list of resource permissions to be revoked from the template. </p> */ inline UpdateTemplatePermissionsRequest& WithRevokePermissions(const Aws::Vector<ResourcePermission>& value) { SetRevokePermissions(value); return *this;} /** * <p>A list of resource permissions to be revoked from the template. </p> */ inline UpdateTemplatePermissionsRequest& WithRevokePermissions(Aws::Vector<ResourcePermission>&& value) { SetRevokePermissions(std::move(value)); return *this;} /** * <p>A list of resource permissions to be revoked from the template. </p> */ inline UpdateTemplatePermissionsRequest& AddRevokePermissions(const ResourcePermission& value) { m_revokePermissionsHasBeenSet = true; m_revokePermissions.push_back(value); return *this; } /** * <p>A list of resource permissions to be revoked from the template. </p> */ inline UpdateTemplatePermissionsRequest& AddRevokePermissions(ResourcePermission&& value) { m_revokePermissionsHasBeenSet = true; m_revokePermissions.push_back(std::move(value)); return *this; } private: Aws::String m_awsAccountId; bool m_awsAccountIdHasBeenSet; Aws::String m_templateId; bool m_templateIdHasBeenSet; Aws::Vector<ResourcePermission> m_grantPermissions; bool m_grantPermissionsHasBeenSet; Aws::Vector<ResourcePermission> m_revokePermissions; bool m_revokePermissionsHasBeenSet; }; } // namespace Model } // namespace QuickSight } // namespace Aws
[ "aws-sdk-cpp-automation@github.com" ]
aws-sdk-cpp-automation@github.com
41060d0cadc35c7ace2fe8992a4c55e21aaf76de
caceb20b8d288ba42d52bacecb75171218007841
/Bon/Bon.cpp
81908553f3d245bdefd78b2b484ecb4bed3d78f3
[]
no_license
logue/BonProject
355071d25e8e2cc3ebb7a45932912c1207f0cdc2
b0b66e8f0ab0200f88ca6f98bca54f009aec232a
refs/heads/master
2023-02-17T18:51:25.414012
2017-02-17T10:04:10
2017-02-17T10:04:10
82,283,608
0
0
null
2023-02-16T06:24:21
2017-02-17T10:01:37
C++
SHIFT_JIS
C++
false
false
2,482
cpp
// Bon.cpp : アプリケーションのクラス動作を定義します。 // #include "stdafx.h" #include "Bon.h" #include "BonDlg.h" #ifdef _DEBUG #define new DEBUG_NEW #endif // CBonApp BEGIN_MESSAGE_MAP(CBonApp, CWinApp) ON_COMMAND(ID_HELP, &CWinApp::OnHelp) END_MESSAGE_MAP() // CBonApp コンストラクション CBonApp::CBonApp() { // TODO: この位置に構築用コードを追加してください。 // ここに InitInstance 中の重要な初期化処理をすべて記述してください。 } CBonApp::~CBonApp() { } // 唯一の CBonApp オブジェクトです。 CBonApp theApp; // CBonApp 初期化 BOOL CBonApp::InitInstance() { // アプリケーション マニフェストが visual スタイルを有効にするために、 // ComCtl32.dll Version 6 以降の使用を指定する場合は、 // Windows XP に InitCommonControlsEx() が必要です。さもなければ、ウィンドウ作成はすべて失敗します。 INITCOMMONCONTROLSEX InitCtrls; InitCtrls.dwSize = sizeof(InitCtrls); // アプリケーションで使用するすべてのコモン コントロール クラスを含めるには、 // これを設定します。 InitCtrls.dwICC = ICC_WIN95_CLASSES; InitCommonControlsEx(&InitCtrls); CWinApp::InitInstance(); // 標準初期化 // これらの機能を使わずに最終的な実行可能ファイルの // サイズを縮小したい場合は、以下から不要な初期化 // ルーチンを削除してください。 // 設定が格納されているレジストリ キーを変更します。 // TODO: 会社名または組織名などの適切な文字列に // この文字列を変更してください。 CBonDlg dlg; m_pMainWnd = &dlg; INT_PTR nResponse = dlg.DoModal(); if (nResponse == IDOK) { // TODO: ダイアログが <OK> で消された時のコードを // 記述してください。 } else if (nResponse == IDCANCEL) { // TODO: ダイアログが <キャンセル> で消された時のコードを // 記述してください。 } // ダイアログは閉じられました。アプリケーションのメッセージ ポンプを開始しないで // アプリケーションを終了するために FALSE を返してください。 return FALSE; } int CBonApp::ExitInstance() { // TODO: ここに特定なコードを追加するか、もしくは基本クラスを呼び出してください。 return CWinApp::ExitInstance(); }
[ "myoshi321go@gmail.com" ]
myoshi321go@gmail.com
fb5e5f34a9261200874a17ee5fab79f59aed1471
44289ecb892b6f3df043bab40142cf8530ac2ba4
/Sources/External/node/elastos/external/chromium_org/third_party/WebKit/Source/modules/modules_gyp/core/EventTypeNames.cpp
5cf21ba4ee5c505ff2fadabe51eeaa2aa8489432
[ "Apache-2.0" ]
permissive
warrenween/Elastos
a6ef68d8fb699fd67234f376b171c1b57235ed02
5618eede26d464bdf739f9244344e3e87118d7fe
refs/heads/master
2021-01-01T04:07:12.833674
2017-06-17T15:34:33
2017-06-17T15:34:33
97,120,576
2
1
null
2017-07-13T12:33:20
2017-07-13T12:33:20
null
UTF-8
C++
false
false
46,719
cpp
// Copyright (c) 2014 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "config.h" #ifdef SKIP_STATIC_CONSTRUCTORS_ON_GCC #define EVENT_TYPE_NAMES_HIDE_GLOBALS 1 #endif #include "EventTypeNames.h" #include "wtf/StaticConstructors.h" namespace WebCore { namespace EventTypeNames { using namespace WTF; DEFINE_GLOBAL(AtomicString, DOMActivate) DEFINE_GLOBAL(AtomicString, DOMCharacterDataModified) DEFINE_GLOBAL(AtomicString, DOMContentLoaded) DEFINE_GLOBAL(AtomicString, DOMFocusIn) DEFINE_GLOBAL(AtomicString, DOMFocusOut) DEFINE_GLOBAL(AtomicString, DOMNodeInserted) DEFINE_GLOBAL(AtomicString, DOMNodeInsertedIntoDocument) DEFINE_GLOBAL(AtomicString, DOMNodeRemoved) DEFINE_GLOBAL(AtomicString, DOMNodeRemovedFromDocument) DEFINE_GLOBAL(AtomicString, DOMSubtreeModified) DEFINE_GLOBAL(AtomicString, abort) DEFINE_GLOBAL(AtomicString, activate) DEFINE_GLOBAL(AtomicString, addsourcebuffer) DEFINE_GLOBAL(AtomicString, addstream) DEFINE_GLOBAL(AtomicString, addtrack) DEFINE_GLOBAL(AtomicString, animationend) DEFINE_GLOBAL(AtomicString, animationiteration) DEFINE_GLOBAL(AtomicString, animationstart) DEFINE_GLOBAL(AtomicString, audioend) DEFINE_GLOBAL(AtomicString, audioprocess) DEFINE_GLOBAL(AtomicString, audiostart) DEFINE_GLOBAL(AtomicString, autocomplete) DEFINE_GLOBAL(AtomicString, autocompleteerror) DEFINE_GLOBAL(AtomicString, beforecopy) DEFINE_GLOBAL(AtomicString, beforecut) DEFINE_GLOBAL(AtomicString, beforepaste) DEFINE_GLOBAL(AtomicString, beforeunload) DEFINE_GLOBAL(AtomicString, beginEvent) DEFINE_GLOBAL(AtomicString, blocked) DEFINE_GLOBAL(AtomicString, blur) DEFINE_GLOBAL(AtomicString, boundary) DEFINE_GLOBAL(AtomicString, cached) DEFINE_GLOBAL(AtomicString, cancel) DEFINE_GLOBAL(AtomicString, candidatewindowhide) DEFINE_GLOBAL(AtomicString, candidatewindowshow) DEFINE_GLOBAL(AtomicString, candidatewindowupdate) DEFINE_GLOBAL(AtomicString, canplay) DEFINE_GLOBAL(AtomicString, canplaythrough) DEFINE_GLOBAL(AtomicString, change) DEFINE_GLOBAL(AtomicString, chargingchange) DEFINE_GLOBAL(AtomicString, chargingtimechange) DEFINE_GLOBAL(AtomicString, checking) DEFINE_GLOBAL(AtomicString, click) DEFINE_GLOBAL(AtomicString, close) DEFINE_GLOBAL(AtomicString, complete) DEFINE_GLOBAL(AtomicString, compositionend) DEFINE_GLOBAL(AtomicString, compositionstart) DEFINE_GLOBAL(AtomicString, compositionupdate) DEFINE_GLOBAL(AtomicString, connect) DEFINE_GLOBAL(AtomicString, connecting) DEFINE_GLOBAL(AtomicString, contextlost) DEFINE_GLOBAL(AtomicString, contextmenu) DEFINE_GLOBAL(AtomicString, contextrestored) DEFINE_GLOBAL(AtomicString, copy) DEFINE_GLOBAL(AtomicString, cuechange) DEFINE_GLOBAL(AtomicString, cut) DEFINE_GLOBAL(AtomicString, datachannel) DEFINE_GLOBAL(AtomicString, dblclick) DEFINE_GLOBAL(AtomicString, devicelight) DEFINE_GLOBAL(AtomicString, devicemotion) DEFINE_GLOBAL(AtomicString, deviceorientation) DEFINE_GLOBAL(AtomicString, dischargingtimechange) DEFINE_GLOBAL(AtomicString, disconnect) DEFINE_GLOBAL(AtomicString, display) DEFINE_GLOBAL(AtomicString, downloading) DEFINE_GLOBAL(AtomicString, drag) DEFINE_GLOBAL(AtomicString, dragend) DEFINE_GLOBAL(AtomicString, dragenter) DEFINE_GLOBAL(AtomicString, dragleave) DEFINE_GLOBAL(AtomicString, dragover) DEFINE_GLOBAL(AtomicString, dragstart) DEFINE_GLOBAL(AtomicString, drop) DEFINE_GLOBAL(AtomicString, durationchange) DEFINE_GLOBAL(AtomicString, emptied) DEFINE_GLOBAL(AtomicString, end) DEFINE_GLOBAL(AtomicString, endEvent) DEFINE_GLOBAL(AtomicString, ended) DEFINE_GLOBAL(AtomicString, enter) DEFINE_GLOBAL(AtomicString, error) DEFINE_GLOBAL(AtomicString, exit) DEFINE_GLOBAL(AtomicString, fetch) DEFINE_GLOBAL(AtomicString, finish) DEFINE_GLOBAL(AtomicString, focus) DEFINE_GLOBAL(AtomicString, focusin) DEFINE_GLOBAL(AtomicString, focusout) DEFINE_GLOBAL(AtomicString, gamepadconnected) DEFINE_GLOBAL(AtomicString, gamepaddisconnected) DEFINE_GLOBAL(AtomicString, gesturescrollend) DEFINE_GLOBAL(AtomicString, gesturescrollstart) DEFINE_GLOBAL(AtomicString, gesturescrollupdate) DEFINE_GLOBAL(AtomicString, gestureshowpress) DEFINE_GLOBAL(AtomicString, gesturetap) DEFINE_GLOBAL(AtomicString, gesturetapdown) DEFINE_GLOBAL(AtomicString, gesturetapunconfirmed) DEFINE_GLOBAL(AtomicString, hashchange) DEFINE_GLOBAL(AtomicString, icecandidate) DEFINE_GLOBAL(AtomicString, iceconnectionstatechange) DEFINE_GLOBAL(AtomicString, input) DEFINE_GLOBAL(AtomicString, install) DEFINE_GLOBAL(AtomicString, invalid) DEFINE_GLOBAL(AtomicString, keydown) DEFINE_GLOBAL(AtomicString, keypress) DEFINE_GLOBAL(AtomicString, keyup) DEFINE_GLOBAL(AtomicString, languagechange) DEFINE_GLOBAL(AtomicString, levelchange) DEFINE_GLOBAL(AtomicString, load) DEFINE_GLOBAL(AtomicString, loadeddata) DEFINE_GLOBAL(AtomicString, loadedmetadata) DEFINE_GLOBAL(AtomicString, loadend) DEFINE_GLOBAL(AtomicString, loading) DEFINE_GLOBAL(AtomicString, loadingdone) DEFINE_GLOBAL(AtomicString, loadingerror) DEFINE_GLOBAL(AtomicString, loadstart) DEFINE_GLOBAL(AtomicString, mark) DEFINE_GLOBAL(AtomicString, message) DEFINE_GLOBAL(AtomicString, midimessage) DEFINE_GLOBAL(AtomicString, mousedown) DEFINE_GLOBAL(AtomicString, mouseenter) DEFINE_GLOBAL(AtomicString, mouseleave) DEFINE_GLOBAL(AtomicString, mousemove) DEFINE_GLOBAL(AtomicString, mouseout) DEFINE_GLOBAL(AtomicString, mouseover) DEFINE_GLOBAL(AtomicString, mouseup) DEFINE_GLOBAL(AtomicString, mousewheel) DEFINE_GLOBAL(AtomicString, mute) DEFINE_GLOBAL(AtomicString, needkey) DEFINE_GLOBAL(AtomicString, negotiationneeded) DEFINE_GLOBAL(AtomicString, nomatch) DEFINE_GLOBAL(AtomicString, noupdate) DEFINE_GLOBAL(AtomicString, obsolete) DEFINE_GLOBAL(AtomicString, offline) DEFINE_GLOBAL(AtomicString, online) DEFINE_GLOBAL(AtomicString, open) DEFINE_GLOBAL(AtomicString, orientationchange) DEFINE_GLOBAL(AtomicString, overflowchanged) DEFINE_GLOBAL(AtomicString, pagehide) DEFINE_GLOBAL(AtomicString, pageshow) DEFINE_GLOBAL(AtomicString, paste) DEFINE_GLOBAL(AtomicString, pause) DEFINE_GLOBAL(AtomicString, play) DEFINE_GLOBAL(AtomicString, playing) DEFINE_GLOBAL(AtomicString, pointerlockchange) DEFINE_GLOBAL(AtomicString, pointerlockerror) DEFINE_GLOBAL(AtomicString, popstate) DEFINE_GLOBAL(AtomicString, progress) DEFINE_GLOBAL(AtomicString, push) DEFINE_GLOBAL(AtomicString, ratechange) DEFINE_GLOBAL(AtomicString, ready) DEFINE_GLOBAL(AtomicString, readystatechange) DEFINE_GLOBAL(AtomicString, removesourcebuffer) DEFINE_GLOBAL(AtomicString, removestream) DEFINE_GLOBAL(AtomicString, removetrack) DEFINE_GLOBAL(AtomicString, repeatEvent) DEFINE_GLOBAL(AtomicString, reset) DEFINE_GLOBAL(AtomicString, resize) DEFINE_GLOBAL(AtomicString, result) DEFINE_GLOBAL(AtomicString, resume) DEFINE_GLOBAL(AtomicString, scroll) DEFINE_GLOBAL(AtomicString, search) DEFINE_GLOBAL(AtomicString, securitypolicyviolation) DEFINE_GLOBAL(AtomicString, seeked) DEFINE_GLOBAL(AtomicString, seeking) DEFINE_GLOBAL(AtomicString, select) DEFINE_GLOBAL(AtomicString, selectionchange) DEFINE_GLOBAL(AtomicString, selectstart) DEFINE_GLOBAL(AtomicString, show) DEFINE_GLOBAL(AtomicString, signalingstatechange) DEFINE_GLOBAL(AtomicString, soundend) DEFINE_GLOBAL(AtomicString, soundstart) DEFINE_GLOBAL(AtomicString, sourceclose) DEFINE_GLOBAL(AtomicString, sourceended) DEFINE_GLOBAL(AtomicString, sourceopen) DEFINE_GLOBAL(AtomicString, speechend) DEFINE_GLOBAL(AtomicString, speechstart) DEFINE_GLOBAL(AtomicString, stalled) DEFINE_GLOBAL(AtomicString, start) DEFINE_GLOBAL(AtomicString, statechange) DEFINE_GLOBAL(AtomicString, storage) DEFINE_GLOBAL(AtomicString, submit) DEFINE_GLOBAL(AtomicString, success) DEFINE_GLOBAL(AtomicString, suspend) DEFINE_GLOBAL(AtomicString, sync) DEFINE_GLOBAL(AtomicString, textInput) DEFINE_GLOBAL(AtomicString, timeout) DEFINE_GLOBAL(AtomicString, timeupdate) DEFINE_GLOBAL(AtomicString, toggle) DEFINE_GLOBAL(AtomicString, tonechange) DEFINE_GLOBAL(AtomicString, touchcancel) DEFINE_GLOBAL(AtomicString, touchend) DEFINE_GLOBAL(AtomicString, touchmove) DEFINE_GLOBAL(AtomicString, touchstart) DEFINE_GLOBAL(AtomicString, transitionend) DEFINE_GLOBAL(AtomicString, typechange) DEFINE_GLOBAL(AtomicString, unload) DEFINE_GLOBAL(AtomicString, unmute) DEFINE_GLOBAL(AtomicString, update) DEFINE_GLOBAL(AtomicString, updateend) DEFINE_GLOBAL(AtomicString, updateready) DEFINE_GLOBAL(AtomicString, updatestart) DEFINE_GLOBAL(AtomicString, upgradeneeded) DEFINE_GLOBAL(AtomicString, versionchange) DEFINE_GLOBAL(AtomicString, visibilitychange) DEFINE_GLOBAL(AtomicString, voiceschanged) DEFINE_GLOBAL(AtomicString, volumechange) DEFINE_GLOBAL(AtomicString, waiting) DEFINE_GLOBAL(AtomicString, webglcontextcreationerror) DEFINE_GLOBAL(AtomicString, webglcontextlost) DEFINE_GLOBAL(AtomicString, webglcontextrestored) DEFINE_GLOBAL(AtomicString, webkitAnimationEnd) DEFINE_GLOBAL(AtomicString, webkitAnimationIteration) DEFINE_GLOBAL(AtomicString, webkitAnimationStart) DEFINE_GLOBAL(AtomicString, webkitBeforeTextInserted) DEFINE_GLOBAL(AtomicString, webkitEditableContentChanged) DEFINE_GLOBAL(AtomicString, webkitTransitionEnd) DEFINE_GLOBAL(AtomicString, webkitaddsourcebuffer) DEFINE_GLOBAL(AtomicString, webkitdeviceproximity) DEFINE_GLOBAL(AtomicString, webkitfullscreenchange) DEFINE_GLOBAL(AtomicString, webkitfullscreenerror) DEFINE_GLOBAL(AtomicString, webkitkeyadded) DEFINE_GLOBAL(AtomicString, webkitkeyerror) DEFINE_GLOBAL(AtomicString, webkitkeymessage) DEFINE_GLOBAL(AtomicString, webkitneedkey) DEFINE_GLOBAL(AtomicString, webkitnetworkinfochange) DEFINE_GLOBAL(AtomicString, webkitpointerlockchange) DEFINE_GLOBAL(AtomicString, webkitpointerlockerror) DEFINE_GLOBAL(AtomicString, webkitprerenderdomcontentloaded) DEFINE_GLOBAL(AtomicString, webkitprerenderload) DEFINE_GLOBAL(AtomicString, webkitprerenderstart) DEFINE_GLOBAL(AtomicString, webkitprerenderstop) DEFINE_GLOBAL(AtomicString, webkitremovesourcebuffer) DEFINE_GLOBAL(AtomicString, webkitresourcetimingbufferfull) DEFINE_GLOBAL(AtomicString, webkitsourceclose) DEFINE_GLOBAL(AtomicString, webkitsourceended) DEFINE_GLOBAL(AtomicString, webkitsourceopen) DEFINE_GLOBAL(AtomicString, webkitspeechchange) DEFINE_GLOBAL(AtomicString, webkitvisibilitychange) DEFINE_GLOBAL(AtomicString, wheel) DEFINE_GLOBAL(AtomicString, write) DEFINE_GLOBAL(AtomicString, writeend) DEFINE_GLOBAL(AtomicString, writestart) DEFINE_GLOBAL(AtomicString, zoom) void init() { StringImpl* DOMActivateImpl = StringImpl::createStatic("DOMActivate", 11, 1580932); StringImpl* DOMCharacterDataModifiedImpl = StringImpl::createStatic("DOMCharacterDataModified", 24, 1747391); StringImpl* DOMContentLoadedImpl = StringImpl::createStatic("DOMContentLoaded", 16, 10217403); StringImpl* DOMFocusInImpl = StringImpl::createStatic("DOMFocusIn", 10, 13717889); StringImpl* DOMFocusOutImpl = StringImpl::createStatic("DOMFocusOut", 11, 14725020); StringImpl* DOMNodeInsertedImpl = StringImpl::createStatic("DOMNodeInserted", 15, 3305523); StringImpl* DOMNodeInsertedIntoDocumentImpl = StringImpl::createStatic("DOMNodeInsertedIntoDocument", 27, 9765719); StringImpl* DOMNodeRemovedImpl = StringImpl::createStatic("DOMNodeRemoved", 14, 15338285); StringImpl* DOMNodeRemovedFromDocumentImpl = StringImpl::createStatic("DOMNodeRemovedFromDocument", 26, 16284219); StringImpl* DOMSubtreeModifiedImpl = StringImpl::createStatic("DOMSubtreeModified", 18, 6084203); StringImpl* abortImpl = StringImpl::createStatic("abort", 5, 15390287); StringImpl* activateImpl = StringImpl::createStatic("activate", 8, 8463533); StringImpl* addsourcebufferImpl = StringImpl::createStatic("addsourcebuffer", 15, 7452490); StringImpl* addstreamImpl = StringImpl::createStatic("addstream", 9, 15110493); StringImpl* addtrackImpl = StringImpl::createStatic("addtrack", 8, 3675244); StringImpl* animationendImpl = StringImpl::createStatic("animationend", 12, 2356336); StringImpl* animationiterationImpl = StringImpl::createStatic("animationiteration", 18, 4399371); StringImpl* animationstartImpl = StringImpl::createStatic("animationstart", 14, 1171773); StringImpl* audioendImpl = StringImpl::createStatic("audioend", 8, 4005439); StringImpl* audioprocessImpl = StringImpl::createStatic("audioprocess", 12, 7432340); StringImpl* audiostartImpl = StringImpl::createStatic("audiostart", 10, 12162534); StringImpl* autocompleteImpl = StringImpl::createStatic("autocomplete", 12, 14667434); StringImpl* autocompleteerrorImpl = StringImpl::createStatic("autocompleteerror", 17, 412664); StringImpl* beforecopyImpl = StringImpl::createStatic("beforecopy", 10, 15623218); StringImpl* beforecutImpl = StringImpl::createStatic("beforecut", 9, 6886552); StringImpl* beforepasteImpl = StringImpl::createStatic("beforepaste", 11, 5049674); StringImpl* beforeunloadImpl = StringImpl::createStatic("beforeunload", 12, 16009443); StringImpl* beginEventImpl = StringImpl::createStatic("beginEvent", 10, 3946429); StringImpl* blockedImpl = StringImpl::createStatic("blocked", 7, 7188319); StringImpl* blurImpl = StringImpl::createStatic("blur", 4, 3880931); StringImpl* boundaryImpl = StringImpl::createStatic("boundary", 8, 8113195); StringImpl* cachedImpl = StringImpl::createStatic("cached", 6, 2984957); StringImpl* cancelImpl = StringImpl::createStatic("cancel", 6, 9877073); StringImpl* candidatewindowhideImpl = StringImpl::createStatic("candidatewindowhide", 19, 3029572); StringImpl* candidatewindowshowImpl = StringImpl::createStatic("candidatewindowshow", 19, 11030621); StringImpl* candidatewindowupdateImpl = StringImpl::createStatic("candidatewindowupdate", 21, 6897811); StringImpl* canplayImpl = StringImpl::createStatic("canplay", 7, 10609174); StringImpl* canplaythroughImpl = StringImpl::createStatic("canplaythrough", 14, 3645779); StringImpl* changeImpl = StringImpl::createStatic("change", 6, 3980998); StringImpl* chargingchangeImpl = StringImpl::createStatic("chargingchange", 14, 12089746); StringImpl* chargingtimechangeImpl = StringImpl::createStatic("chargingtimechange", 18, 2233255); StringImpl* checkingImpl = StringImpl::createStatic("checking", 8, 12242986); StringImpl* clickImpl = StringImpl::createStatic("click", 5, 10125525); StringImpl* closeImpl = StringImpl::createStatic("close", 5, 3222970); StringImpl* completeImpl = StringImpl::createStatic("complete", 8, 6079763); StringImpl* compositionendImpl = StringImpl::createStatic("compositionend", 14, 5906550); StringImpl* compositionstartImpl = StringImpl::createStatic("compositionstart", 16, 16133899); StringImpl* compositionupdateImpl = StringImpl::createStatic("compositionupdate", 17, 7385090); StringImpl* connectImpl = StringImpl::createStatic("connect", 7, 12649850); StringImpl* connectingImpl = StringImpl::createStatic("connecting", 10, 1432354); StringImpl* contextlostImpl = StringImpl::createStatic("contextlost", 11, 9876436); StringImpl* contextmenuImpl = StringImpl::createStatic("contextmenu", 11, 14578063); StringImpl* contextrestoredImpl = StringImpl::createStatic("contextrestored", 15, 81548); StringImpl* copyImpl = StringImpl::createStatic("copy", 4, 16438426); StringImpl* cuechangeImpl = StringImpl::createStatic("cuechange", 9, 3496656); StringImpl* cutImpl = StringImpl::createStatic("cut", 3, 6810636); StringImpl* datachannelImpl = StringImpl::createStatic("datachannel", 11, 3404486); StringImpl* dblclickImpl = StringImpl::createStatic("dblclick", 8, 9054393); StringImpl* devicelightImpl = StringImpl::createStatic("devicelight", 11, 9022337); StringImpl* devicemotionImpl = StringImpl::createStatic("devicemotion", 12, 1024162); StringImpl* deviceorientationImpl = StringImpl::createStatic("deviceorientation", 17, 12165871); StringImpl* dischargingtimechangeImpl = StringImpl::createStatic("dischargingtimechange", 21, 16138730); StringImpl* disconnectImpl = StringImpl::createStatic("disconnect", 10, 13405069); StringImpl* displayImpl = StringImpl::createStatic("display", 7, 16245385); StringImpl* downloadingImpl = StringImpl::createStatic("downloading", 11, 576780); StringImpl* dragImpl = StringImpl::createStatic("drag", 4, 1532976); StringImpl* dragendImpl = StringImpl::createStatic("dragend", 7, 11982793); StringImpl* dragenterImpl = StringImpl::createStatic("dragenter", 9, 10351130); StringImpl* dragleaveImpl = StringImpl::createStatic("dragleave", 9, 11297414); StringImpl* dragoverImpl = StringImpl::createStatic("dragover", 8, 2973271); StringImpl* dragstartImpl = StringImpl::createStatic("dragstart", 9, 15174021); StringImpl* dropImpl = StringImpl::createStatic("drop", 4, 13413407); StringImpl* durationchangeImpl = StringImpl::createStatic("durationchange", 14, 4541505); StringImpl* emptiedImpl = StringImpl::createStatic("emptied", 7, 15126627); StringImpl* endImpl = StringImpl::createStatic("end", 3, 1590106); StringImpl* endEventImpl = StringImpl::createStatic("endEvent", 8, 10314310); StringImpl* endedImpl = StringImpl::createStatic("ended", 5, 54732); StringImpl* enterImpl = StringImpl::createStatic("enter", 5, 3509546); StringImpl* errorImpl = StringImpl::createStatic("error", 5, 6654137); StringImpl* exitImpl = StringImpl::createStatic("exit", 4, 15251726); StringImpl* fetchImpl = StringImpl::createStatic("fetch", 5, 10988466); StringImpl* finishImpl = StringImpl::createStatic("finish", 6, 15149124); StringImpl* focusImpl = StringImpl::createStatic("focus", 5, 1849182); StringImpl* focusinImpl = StringImpl::createStatic("focusin", 7, 13489365); StringImpl* focusoutImpl = StringImpl::createStatic("focusout", 8, 13124807); StringImpl* gamepadconnectedImpl = StringImpl::createStatic("gamepadconnected", 16, 3715619); StringImpl* gamepaddisconnectedImpl = StringImpl::createStatic("gamepaddisconnected", 19, 3966662); StringImpl* gesturescrollendImpl = StringImpl::createStatic("gesturescrollend", 16, 5471896); StringImpl* gesturescrollstartImpl = StringImpl::createStatic("gesturescrollstart", 18, 16516609); StringImpl* gesturescrollupdateImpl = StringImpl::createStatic("gesturescrollupdate", 19, 11683597); StringImpl* gestureshowpressImpl = StringImpl::createStatic("gestureshowpress", 16, 111807); StringImpl* gesturetapImpl = StringImpl::createStatic("gesturetap", 10, 1938166); StringImpl* gesturetapdownImpl = StringImpl::createStatic("gesturetapdown", 14, 8907849); StringImpl* gesturetapunconfirmedImpl = StringImpl::createStatic("gesturetapunconfirmed", 21, 793435); StringImpl* hashchangeImpl = StringImpl::createStatic("hashchange", 10, 3959696); StringImpl* icecandidateImpl = StringImpl::createStatic("icecandidate", 12, 16268761); StringImpl* iceconnectionstatechangeImpl = StringImpl::createStatic("iceconnectionstatechange", 24, 9120814); StringImpl* inputImpl = StringImpl::createStatic("input", 5, 10365436); StringImpl* installImpl = StringImpl::createStatic("install", 7, 7743126); StringImpl* invalidImpl = StringImpl::createStatic("invalid", 7, 2059736); StringImpl* keydownImpl = StringImpl::createStatic("keydown", 7, 5301006); StringImpl* keypressImpl = StringImpl::createStatic("keypress", 8, 13845508); StringImpl* keyupImpl = StringImpl::createStatic("keyup", 5, 1054547); StringImpl* languagechangeImpl = StringImpl::createStatic("languagechange", 14, 3401938); StringImpl* levelchangeImpl = StringImpl::createStatic("levelchange", 11, 4445458); StringImpl* loadImpl = StringImpl::createStatic("load", 4, 8207817); StringImpl* loadeddataImpl = StringImpl::createStatic("loadeddata", 10, 13874190); StringImpl* loadedmetadataImpl = StringImpl::createStatic("loadedmetadata", 14, 9550378); StringImpl* loadendImpl = StringImpl::createStatic("loadend", 7, 15911784); StringImpl* loadingImpl = StringImpl::createStatic("loading", 7, 13228638); StringImpl* loadingdoneImpl = StringImpl::createStatic("loadingdone", 11, 6190750); StringImpl* loadingerrorImpl = StringImpl::createStatic("loadingerror", 12, 5585167); StringImpl* loadstartImpl = StringImpl::createStatic("loadstart", 9, 5495169); StringImpl* markImpl = StringImpl::createStatic("mark", 4, 16508213); StringImpl* messageImpl = StringImpl::createStatic("message", 7, 11017471); StringImpl* midimessageImpl = StringImpl::createStatic("midimessage", 11, 3928734); StringImpl* mousedownImpl = StringImpl::createStatic("mousedown", 9, 5740218); StringImpl* mouseenterImpl = StringImpl::createStatic("mouseenter", 10, 632853); StringImpl* mouseleaveImpl = StringImpl::createStatic("mouseleave", 10, 1144826); StringImpl* mousemoveImpl = StringImpl::createStatic("mousemove", 9, 7356044); StringImpl* mouseoutImpl = StringImpl::createStatic("mouseout", 8, 685204); StringImpl* mouseoverImpl = StringImpl::createStatic("mouseover", 9, 12064397); StringImpl* mouseupImpl = StringImpl::createStatic("mouseup", 7, 8467273); StringImpl* mousewheelImpl = StringImpl::createStatic("mousewheel", 10, 15891108); StringImpl* muteImpl = StringImpl::createStatic("mute", 4, 15335886); StringImpl* needkeyImpl = StringImpl::createStatic("needkey", 7, 9610812); StringImpl* negotiationneededImpl = StringImpl::createStatic("negotiationneeded", 17, 7270370); StringImpl* nomatchImpl = StringImpl::createStatic("nomatch", 7, 8258898); StringImpl* noupdateImpl = StringImpl::createStatic("noupdate", 8, 8885664); StringImpl* obsoleteImpl = StringImpl::createStatic("obsolete", 8, 12364910); StringImpl* offlineImpl = StringImpl::createStatic("offline", 7, 8847130); StringImpl* onlineImpl = StringImpl::createStatic("online", 6, 9492271); StringImpl* openImpl = StringImpl::createStatic("open", 4, 13703631); StringImpl* orientationchangeImpl = StringImpl::createStatic("orientationchange", 17, 14664026); StringImpl* overflowchangedImpl = StringImpl::createStatic("overflowchanged", 15, 9695864); StringImpl* pagehideImpl = StringImpl::createStatic("pagehide", 8, 16640617); StringImpl* pageshowImpl = StringImpl::createStatic("pageshow", 8, 12320166); StringImpl* pasteImpl = StringImpl::createStatic("paste", 5, 369957); StringImpl* pauseImpl = StringImpl::createStatic("pause", 5, 5413740); StringImpl* playImpl = StringImpl::createStatic("play", 4, 10707022); StringImpl* playingImpl = StringImpl::createStatic("playing", 7, 12380358); StringImpl* pointerlockchangeImpl = StringImpl::createStatic("pointerlockchange", 17, 7047632); StringImpl* pointerlockerrorImpl = StringImpl::createStatic("pointerlockerror", 16, 16321958); StringImpl* popstateImpl = StringImpl::createStatic("popstate", 8, 12585208); StringImpl* progressImpl = StringImpl::createStatic("progress", 8, 11461517); StringImpl* pushImpl = StringImpl::createStatic("push", 4, 4758933); StringImpl* ratechangeImpl = StringImpl::createStatic("ratechange", 10, 9044681); StringImpl* readyImpl = StringImpl::createStatic("ready", 5, 12275238); StringImpl* readystatechangeImpl = StringImpl::createStatic("readystatechange", 16, 11011948); StringImpl* removesourcebufferImpl = StringImpl::createStatic("removesourcebuffer", 18, 13594278); StringImpl* removestreamImpl = StringImpl::createStatic("removestream", 12, 4604809); StringImpl* removetrackImpl = StringImpl::createStatic("removetrack", 11, 6131613); StringImpl* repeatEventImpl = StringImpl::createStatic("repeatEvent", 11, 7182823); StringImpl* resetImpl = StringImpl::createStatic("reset", 5, 13674204); StringImpl* resizeImpl = StringImpl::createStatic("resize", 6, 11716975); StringImpl* resultImpl = StringImpl::createStatic("result", 6, 15954886); StringImpl* resumeImpl = StringImpl::createStatic("resume", 6, 3214184); StringImpl* scrollImpl = StringImpl::createStatic("scroll", 6, 7626286); StringImpl* searchImpl = StringImpl::createStatic("search", 6, 6906057); StringImpl* securitypolicyviolationImpl = StringImpl::createStatic("securitypolicyviolation", 23, 7930261); StringImpl* seekedImpl = StringImpl::createStatic("seeked", 6, 16049377); StringImpl* seekingImpl = StringImpl::createStatic("seeking", 7, 10757715); StringImpl* selectImpl = StringImpl::createStatic("select", 6, 210571); StringImpl* selectionchangeImpl = StringImpl::createStatic("selectionchange", 15, 8861459); StringImpl* selectstartImpl = StringImpl::createStatic("selectstart", 11, 5847864); StringImpl* showImpl = StringImpl::createStatic("show", 4, 3191658); StringImpl* signalingstatechangeImpl = StringImpl::createStatic("signalingstatechange", 20, 14107818); StringImpl* soundendImpl = StringImpl::createStatic("soundend", 8, 5959322); StringImpl* soundstartImpl = StringImpl::createStatic("soundstart", 10, 14237399); StringImpl* sourcecloseImpl = StringImpl::createStatic("sourceclose", 11, 10570717); StringImpl* sourceendedImpl = StringImpl::createStatic("sourceended", 11, 16675086); StringImpl* sourceopenImpl = StringImpl::createStatic("sourceopen", 10, 7526202); StringImpl* speechendImpl = StringImpl::createStatic("speechend", 9, 15574659); StringImpl* speechstartImpl = StringImpl::createStatic("speechstart", 11, 10183406); StringImpl* stalledImpl = StringImpl::createStatic("stalled", 7, 4001267); StringImpl* startImpl = StringImpl::createStatic("start", 5, 1021290); StringImpl* statechangeImpl = StringImpl::createStatic("statechange", 11, 9232255); StringImpl* storageImpl = StringImpl::createStatic("storage", 7, 3034291); StringImpl* submitImpl = StringImpl::createStatic("submit", 6, 12328646); StringImpl* successImpl = StringImpl::createStatic("success", 7, 15544773); StringImpl* suspendImpl = StringImpl::createStatic("suspend", 7, 2237992); StringImpl* syncImpl = StringImpl::createStatic("sync", 4, 14643608); StringImpl* textInputImpl = StringImpl::createStatic("textInput", 9, 12906447); StringImpl* timeoutImpl = StringImpl::createStatic("timeout", 7, 5983938); StringImpl* timeupdateImpl = StringImpl::createStatic("timeupdate", 10, 10406103); StringImpl* toggleImpl = StringImpl::createStatic("toggle", 6, 8404466); StringImpl* tonechangeImpl = StringImpl::createStatic("tonechange", 10, 3007488); StringImpl* touchcancelImpl = StringImpl::createStatic("touchcancel", 11, 5916858); StringImpl* touchendImpl = StringImpl::createStatic("touchend", 8, 2956176); StringImpl* touchmoveImpl = StringImpl::createStatic("touchmove", 9, 9499787); StringImpl* touchstartImpl = StringImpl::createStatic("touchstart", 10, 13231026); StringImpl* transitionendImpl = StringImpl::createStatic("transitionend", 13, 9031405); StringImpl* typechangeImpl = StringImpl::createStatic("typechange", 10, 5883421); StringImpl* unloadImpl = StringImpl::createStatic("unload", 6, 4411490); StringImpl* unmuteImpl = StringImpl::createStatic("unmute", 6, 1582770); StringImpl* updateImpl = StringImpl::createStatic("update", 6, 5546488); StringImpl* updateendImpl = StringImpl::createStatic("updateend", 9, 13034123); StringImpl* updatereadyImpl = StringImpl::createStatic("updateready", 11, 3196224); StringImpl* updatestartImpl = StringImpl::createStatic("updatestart", 11, 4286012); StringImpl* upgradeneededImpl = StringImpl::createStatic("upgradeneeded", 13, 492799); StringImpl* versionchangeImpl = StringImpl::createStatic("versionchange", 13, 1334380); StringImpl* visibilitychangeImpl = StringImpl::createStatic("visibilitychange", 16, 11206348); StringImpl* voiceschangedImpl = StringImpl::createStatic("voiceschanged", 13, 3637255); StringImpl* volumechangeImpl = StringImpl::createStatic("volumechange", 12, 16288075); StringImpl* waitingImpl = StringImpl::createStatic("waiting", 7, 10489636); StringImpl* webglcontextcreationerrorImpl = StringImpl::createStatic("webglcontextcreationerror", 25, 2718866); StringImpl* webglcontextlostImpl = StringImpl::createStatic("webglcontextlost", 16, 16605358); StringImpl* webglcontextrestoredImpl = StringImpl::createStatic("webglcontextrestored", 20, 8624464); StringImpl* webkitAnimationEndImpl = StringImpl::createStatic("webkitAnimationEnd", 18, 11845628); StringImpl* webkitAnimationIterationImpl = StringImpl::createStatic("webkitAnimationIteration", 24, 9040977); StringImpl* webkitAnimationStartImpl = StringImpl::createStatic("webkitAnimationStart", 20, 4844440); StringImpl* webkitBeforeTextInsertedImpl = StringImpl::createStatic("webkitBeforeTextInserted", 24, 5393700); StringImpl* webkitEditableContentChangedImpl = StringImpl::createStatic("webkitEditableContentChanged", 28, 1212374); StringImpl* webkitTransitionEndImpl = StringImpl::createStatic("webkitTransitionEnd", 19, 16021356); StringImpl* webkitaddsourcebufferImpl = StringImpl::createStatic("webkitaddsourcebuffer", 21, 3799888); StringImpl* webkitdeviceproximityImpl = StringImpl::createStatic("webkitdeviceproximity", 21, 13182349); StringImpl* webkitfullscreenchangeImpl = StringImpl::createStatic("webkitfullscreenchange", 22, 5579857); StringImpl* webkitfullscreenerrorImpl = StringImpl::createStatic("webkitfullscreenerror", 21, 12520378); StringImpl* webkitkeyaddedImpl = StringImpl::createStatic("webkitkeyadded", 14, 3238929); StringImpl* webkitkeyerrorImpl = StringImpl::createStatic("webkitkeyerror", 14, 1430383); StringImpl* webkitkeymessageImpl = StringImpl::createStatic("webkitkeymessage", 16, 61860); StringImpl* webkitneedkeyImpl = StringImpl::createStatic("webkitneedkey", 13, 7858771); StringImpl* webkitnetworkinfochangeImpl = StringImpl::createStatic("webkitnetworkinfochange", 23, 4917586); StringImpl* webkitpointerlockchangeImpl = StringImpl::createStatic("webkitpointerlockchange", 23, 37170); StringImpl* webkitpointerlockerrorImpl = StringImpl::createStatic("webkitpointerlockerror", 22, 4907338); StringImpl* webkitprerenderdomcontentloadedImpl = StringImpl::createStatic("webkitprerenderdomcontentloaded", 31, 14089645); StringImpl* webkitprerenderloadImpl = StringImpl::createStatic("webkitprerenderload", 19, 15469365); StringImpl* webkitprerenderstartImpl = StringImpl::createStatic("webkitprerenderstart", 20, 4709816); StringImpl* webkitprerenderstopImpl = StringImpl::createStatic("webkitprerenderstop", 19, 7661225); StringImpl* webkitremovesourcebufferImpl = StringImpl::createStatic("webkitremovesourcebuffer", 24, 15764645); StringImpl* webkitresourcetimingbufferfullImpl = StringImpl::createStatic("webkitresourcetimingbufferfull", 30, 14547041); StringImpl* webkitsourcecloseImpl = StringImpl::createStatic("webkitsourceclose", 17, 11711321); StringImpl* webkitsourceendedImpl = StringImpl::createStatic("webkitsourceended", 17, 13059969); StringImpl* webkitsourceopenImpl = StringImpl::createStatic("webkitsourceopen", 16, 9562429); StringImpl* webkitspeechchangeImpl = StringImpl::createStatic("webkitspeechchange", 18, 11755315); StringImpl* webkitvisibilitychangeImpl = StringImpl::createStatic("webkitvisibilitychange", 22, 440449); StringImpl* wheelImpl = StringImpl::createStatic("wheel", 5, 5389519); StringImpl* writeImpl = StringImpl::createStatic("write", 5, 10020319); StringImpl* writeendImpl = StringImpl::createStatic("writeend", 8, 6300360); StringImpl* writestartImpl = StringImpl::createStatic("writestart", 10, 2198394); StringImpl* zoomImpl = StringImpl::createStatic("zoom", 4, 6082914); new ((void*)&DOMActivate) AtomicString(DOMActivateImpl); new ((void*)&DOMCharacterDataModified) AtomicString(DOMCharacterDataModifiedImpl); new ((void*)&DOMContentLoaded) AtomicString(DOMContentLoadedImpl); new ((void*)&DOMFocusIn) AtomicString(DOMFocusInImpl); new ((void*)&DOMFocusOut) AtomicString(DOMFocusOutImpl); new ((void*)&DOMNodeInserted) AtomicString(DOMNodeInsertedImpl); new ((void*)&DOMNodeInsertedIntoDocument) AtomicString(DOMNodeInsertedIntoDocumentImpl); new ((void*)&DOMNodeRemoved) AtomicString(DOMNodeRemovedImpl); new ((void*)&DOMNodeRemovedFromDocument) AtomicString(DOMNodeRemovedFromDocumentImpl); new ((void*)&DOMSubtreeModified) AtomicString(DOMSubtreeModifiedImpl); new ((void*)&abort) AtomicString(abortImpl); new ((void*)&activate) AtomicString(activateImpl); new ((void*)&addsourcebuffer) AtomicString(addsourcebufferImpl); new ((void*)&addstream) AtomicString(addstreamImpl); new ((void*)&addtrack) AtomicString(addtrackImpl); new ((void*)&animationend) AtomicString(animationendImpl); new ((void*)&animationiteration) AtomicString(animationiterationImpl); new ((void*)&animationstart) AtomicString(animationstartImpl); new ((void*)&audioend) AtomicString(audioendImpl); new ((void*)&audioprocess) AtomicString(audioprocessImpl); new ((void*)&audiostart) AtomicString(audiostartImpl); new ((void*)&autocomplete) AtomicString(autocompleteImpl); new ((void*)&autocompleteerror) AtomicString(autocompleteerrorImpl); new ((void*)&beforecopy) AtomicString(beforecopyImpl); new ((void*)&beforecut) AtomicString(beforecutImpl); new ((void*)&beforepaste) AtomicString(beforepasteImpl); new ((void*)&beforeunload) AtomicString(beforeunloadImpl); new ((void*)&beginEvent) AtomicString(beginEventImpl); new ((void*)&blocked) AtomicString(blockedImpl); new ((void*)&blur) AtomicString(blurImpl); new ((void*)&boundary) AtomicString(boundaryImpl); new ((void*)&cached) AtomicString(cachedImpl); new ((void*)&cancel) AtomicString(cancelImpl); new ((void*)&candidatewindowhide) AtomicString(candidatewindowhideImpl); new ((void*)&candidatewindowshow) AtomicString(candidatewindowshowImpl); new ((void*)&candidatewindowupdate) AtomicString(candidatewindowupdateImpl); new ((void*)&canplay) AtomicString(canplayImpl); new ((void*)&canplaythrough) AtomicString(canplaythroughImpl); new ((void*)&change) AtomicString(changeImpl); new ((void*)&chargingchange) AtomicString(chargingchangeImpl); new ((void*)&chargingtimechange) AtomicString(chargingtimechangeImpl); new ((void*)&checking) AtomicString(checkingImpl); new ((void*)&click) AtomicString(clickImpl); new ((void*)&close) AtomicString(closeImpl); new ((void*)&complete) AtomicString(completeImpl); new ((void*)&compositionend) AtomicString(compositionendImpl); new ((void*)&compositionstart) AtomicString(compositionstartImpl); new ((void*)&compositionupdate) AtomicString(compositionupdateImpl); new ((void*)&connect) AtomicString(connectImpl); new ((void*)&connecting) AtomicString(connectingImpl); new ((void*)&contextlost) AtomicString(contextlostImpl); new ((void*)&contextmenu) AtomicString(contextmenuImpl); new ((void*)&contextrestored) AtomicString(contextrestoredImpl); new ((void*)&copy) AtomicString(copyImpl); new ((void*)&cuechange) AtomicString(cuechangeImpl); new ((void*)&cut) AtomicString(cutImpl); new ((void*)&datachannel) AtomicString(datachannelImpl); new ((void*)&dblclick) AtomicString(dblclickImpl); new ((void*)&devicelight) AtomicString(devicelightImpl); new ((void*)&devicemotion) AtomicString(devicemotionImpl); new ((void*)&deviceorientation) AtomicString(deviceorientationImpl); new ((void*)&dischargingtimechange) AtomicString(dischargingtimechangeImpl); new ((void*)&disconnect) AtomicString(disconnectImpl); new ((void*)&display) AtomicString(displayImpl); new ((void*)&downloading) AtomicString(downloadingImpl); new ((void*)&drag) AtomicString(dragImpl); new ((void*)&dragend) AtomicString(dragendImpl); new ((void*)&dragenter) AtomicString(dragenterImpl); new ((void*)&dragleave) AtomicString(dragleaveImpl); new ((void*)&dragover) AtomicString(dragoverImpl); new ((void*)&dragstart) AtomicString(dragstartImpl); new ((void*)&drop) AtomicString(dropImpl); new ((void*)&durationchange) AtomicString(durationchangeImpl); new ((void*)&emptied) AtomicString(emptiedImpl); new ((void*)&end) AtomicString(endImpl); new ((void*)&endEvent) AtomicString(endEventImpl); new ((void*)&ended) AtomicString(endedImpl); new ((void*)&enter) AtomicString(enterImpl); new ((void*)&error) AtomicString(errorImpl); new ((void*)&exit) AtomicString(exitImpl); new ((void*)&fetch) AtomicString(fetchImpl); new ((void*)&finish) AtomicString(finishImpl); new ((void*)&focus) AtomicString(focusImpl); new ((void*)&focusin) AtomicString(focusinImpl); new ((void*)&focusout) AtomicString(focusoutImpl); new ((void*)&gamepadconnected) AtomicString(gamepadconnectedImpl); new ((void*)&gamepaddisconnected) AtomicString(gamepaddisconnectedImpl); new ((void*)&gesturescrollend) AtomicString(gesturescrollendImpl); new ((void*)&gesturescrollstart) AtomicString(gesturescrollstartImpl); new ((void*)&gesturescrollupdate) AtomicString(gesturescrollupdateImpl); new ((void*)&gestureshowpress) AtomicString(gestureshowpressImpl); new ((void*)&gesturetap) AtomicString(gesturetapImpl); new ((void*)&gesturetapdown) AtomicString(gesturetapdownImpl); new ((void*)&gesturetapunconfirmed) AtomicString(gesturetapunconfirmedImpl); new ((void*)&hashchange) AtomicString(hashchangeImpl); new ((void*)&icecandidate) AtomicString(icecandidateImpl); new ((void*)&iceconnectionstatechange) AtomicString(iceconnectionstatechangeImpl); new ((void*)&input) AtomicString(inputImpl); new ((void*)&install) AtomicString(installImpl); new ((void*)&invalid) AtomicString(invalidImpl); new ((void*)&keydown) AtomicString(keydownImpl); new ((void*)&keypress) AtomicString(keypressImpl); new ((void*)&keyup) AtomicString(keyupImpl); new ((void*)&languagechange) AtomicString(languagechangeImpl); new ((void*)&levelchange) AtomicString(levelchangeImpl); new ((void*)&load) AtomicString(loadImpl); new ((void*)&loadeddata) AtomicString(loadeddataImpl); new ((void*)&loadedmetadata) AtomicString(loadedmetadataImpl); new ((void*)&loadend) AtomicString(loadendImpl); new ((void*)&loading) AtomicString(loadingImpl); new ((void*)&loadingdone) AtomicString(loadingdoneImpl); new ((void*)&loadingerror) AtomicString(loadingerrorImpl); new ((void*)&loadstart) AtomicString(loadstartImpl); new ((void*)&mark) AtomicString(markImpl); new ((void*)&message) AtomicString(messageImpl); new ((void*)&midimessage) AtomicString(midimessageImpl); new ((void*)&mousedown) AtomicString(mousedownImpl); new ((void*)&mouseenter) AtomicString(mouseenterImpl); new ((void*)&mouseleave) AtomicString(mouseleaveImpl); new ((void*)&mousemove) AtomicString(mousemoveImpl); new ((void*)&mouseout) AtomicString(mouseoutImpl); new ((void*)&mouseover) AtomicString(mouseoverImpl); new ((void*)&mouseup) AtomicString(mouseupImpl); new ((void*)&mousewheel) AtomicString(mousewheelImpl); new ((void*)&mute) AtomicString(muteImpl); new ((void*)&needkey) AtomicString(needkeyImpl); new ((void*)&negotiationneeded) AtomicString(negotiationneededImpl); new ((void*)&nomatch) AtomicString(nomatchImpl); new ((void*)&noupdate) AtomicString(noupdateImpl); new ((void*)&obsolete) AtomicString(obsoleteImpl); new ((void*)&offline) AtomicString(offlineImpl); new ((void*)&online) AtomicString(onlineImpl); new ((void*)&open) AtomicString(openImpl); new ((void*)&orientationchange) AtomicString(orientationchangeImpl); new ((void*)&overflowchanged) AtomicString(overflowchangedImpl); new ((void*)&pagehide) AtomicString(pagehideImpl); new ((void*)&pageshow) AtomicString(pageshowImpl); new ((void*)&paste) AtomicString(pasteImpl); new ((void*)&pause) AtomicString(pauseImpl); new ((void*)&play) AtomicString(playImpl); new ((void*)&playing) AtomicString(playingImpl); new ((void*)&pointerlockchange) AtomicString(pointerlockchangeImpl); new ((void*)&pointerlockerror) AtomicString(pointerlockerrorImpl); new ((void*)&popstate) AtomicString(popstateImpl); new ((void*)&progress) AtomicString(progressImpl); new ((void*)&push) AtomicString(pushImpl); new ((void*)&ratechange) AtomicString(ratechangeImpl); new ((void*)&ready) AtomicString(readyImpl); new ((void*)&readystatechange) AtomicString(readystatechangeImpl); new ((void*)&removesourcebuffer) AtomicString(removesourcebufferImpl); new ((void*)&removestream) AtomicString(removestreamImpl); new ((void*)&removetrack) AtomicString(removetrackImpl); new ((void*)&repeatEvent) AtomicString(repeatEventImpl); new ((void*)&reset) AtomicString(resetImpl); new ((void*)&resize) AtomicString(resizeImpl); new ((void*)&result) AtomicString(resultImpl); new ((void*)&resume) AtomicString(resumeImpl); new ((void*)&scroll) AtomicString(scrollImpl); new ((void*)&search) AtomicString(searchImpl); new ((void*)&securitypolicyviolation) AtomicString(securitypolicyviolationImpl); new ((void*)&seeked) AtomicString(seekedImpl); new ((void*)&seeking) AtomicString(seekingImpl); new ((void*)&select) AtomicString(selectImpl); new ((void*)&selectionchange) AtomicString(selectionchangeImpl); new ((void*)&selectstart) AtomicString(selectstartImpl); new ((void*)&show) AtomicString(showImpl); new ((void*)&signalingstatechange) AtomicString(signalingstatechangeImpl); new ((void*)&soundend) AtomicString(soundendImpl); new ((void*)&soundstart) AtomicString(soundstartImpl); new ((void*)&sourceclose) AtomicString(sourcecloseImpl); new ((void*)&sourceended) AtomicString(sourceendedImpl); new ((void*)&sourceopen) AtomicString(sourceopenImpl); new ((void*)&speechend) AtomicString(speechendImpl); new ((void*)&speechstart) AtomicString(speechstartImpl); new ((void*)&stalled) AtomicString(stalledImpl); new ((void*)&start) AtomicString(startImpl); new ((void*)&statechange) AtomicString(statechangeImpl); new ((void*)&storage) AtomicString(storageImpl); new ((void*)&submit) AtomicString(submitImpl); new ((void*)&success) AtomicString(successImpl); new ((void*)&suspend) AtomicString(suspendImpl); new ((void*)&sync) AtomicString(syncImpl); new ((void*)&textInput) AtomicString(textInputImpl); new ((void*)&timeout) AtomicString(timeoutImpl); new ((void*)&timeupdate) AtomicString(timeupdateImpl); new ((void*)&toggle) AtomicString(toggleImpl); new ((void*)&tonechange) AtomicString(tonechangeImpl); new ((void*)&touchcancel) AtomicString(touchcancelImpl); new ((void*)&touchend) AtomicString(touchendImpl); new ((void*)&touchmove) AtomicString(touchmoveImpl); new ((void*)&touchstart) AtomicString(touchstartImpl); new ((void*)&transitionend) AtomicString(transitionendImpl); new ((void*)&typechange) AtomicString(typechangeImpl); new ((void*)&unload) AtomicString(unloadImpl); new ((void*)&unmute) AtomicString(unmuteImpl); new ((void*)&update) AtomicString(updateImpl); new ((void*)&updateend) AtomicString(updateendImpl); new ((void*)&updateready) AtomicString(updatereadyImpl); new ((void*)&updatestart) AtomicString(updatestartImpl); new ((void*)&upgradeneeded) AtomicString(upgradeneededImpl); new ((void*)&versionchange) AtomicString(versionchangeImpl); new ((void*)&visibilitychange) AtomicString(visibilitychangeImpl); new ((void*)&voiceschanged) AtomicString(voiceschangedImpl); new ((void*)&volumechange) AtomicString(volumechangeImpl); new ((void*)&waiting) AtomicString(waitingImpl); new ((void*)&webglcontextcreationerror) AtomicString(webglcontextcreationerrorImpl); new ((void*)&webglcontextlost) AtomicString(webglcontextlostImpl); new ((void*)&webglcontextrestored) AtomicString(webglcontextrestoredImpl); new ((void*)&webkitAnimationEnd) AtomicString(webkitAnimationEndImpl); new ((void*)&webkitAnimationIteration) AtomicString(webkitAnimationIterationImpl); new ((void*)&webkitAnimationStart) AtomicString(webkitAnimationStartImpl); new ((void*)&webkitBeforeTextInserted) AtomicString(webkitBeforeTextInsertedImpl); new ((void*)&webkitEditableContentChanged) AtomicString(webkitEditableContentChangedImpl); new ((void*)&webkitTransitionEnd) AtomicString(webkitTransitionEndImpl); new ((void*)&webkitaddsourcebuffer) AtomicString(webkitaddsourcebufferImpl); new ((void*)&webkitdeviceproximity) AtomicString(webkitdeviceproximityImpl); new ((void*)&webkitfullscreenchange) AtomicString(webkitfullscreenchangeImpl); new ((void*)&webkitfullscreenerror) AtomicString(webkitfullscreenerrorImpl); new ((void*)&webkitkeyadded) AtomicString(webkitkeyaddedImpl); new ((void*)&webkitkeyerror) AtomicString(webkitkeyerrorImpl); new ((void*)&webkitkeymessage) AtomicString(webkitkeymessageImpl); new ((void*)&webkitneedkey) AtomicString(webkitneedkeyImpl); new ((void*)&webkitnetworkinfochange) AtomicString(webkitnetworkinfochangeImpl); new ((void*)&webkitpointerlockchange) AtomicString(webkitpointerlockchangeImpl); new ((void*)&webkitpointerlockerror) AtomicString(webkitpointerlockerrorImpl); new ((void*)&webkitprerenderdomcontentloaded) AtomicString(webkitprerenderdomcontentloadedImpl); new ((void*)&webkitprerenderload) AtomicString(webkitprerenderloadImpl); new ((void*)&webkitprerenderstart) AtomicString(webkitprerenderstartImpl); new ((void*)&webkitprerenderstop) AtomicString(webkitprerenderstopImpl); new ((void*)&webkitremovesourcebuffer) AtomicString(webkitremovesourcebufferImpl); new ((void*)&webkitresourcetimingbufferfull) AtomicString(webkitresourcetimingbufferfullImpl); new ((void*)&webkitsourceclose) AtomicString(webkitsourcecloseImpl); new ((void*)&webkitsourceended) AtomicString(webkitsourceendedImpl); new ((void*)&webkitsourceopen) AtomicString(webkitsourceopenImpl); new ((void*)&webkitspeechchange) AtomicString(webkitspeechchangeImpl); new ((void*)&webkitvisibilitychange) AtomicString(webkitvisibilitychangeImpl); new ((void*)&wheel) AtomicString(wheelImpl); new ((void*)&write) AtomicString(writeImpl); new ((void*)&writeend) AtomicString(writeendImpl); new ((void*)&writestart) AtomicString(writestartImpl); new ((void*)&zoom) AtomicString(zoomImpl); } } // EventTypeNames } // WebCore
[ "gdsys@126.com" ]
gdsys@126.com
ffb0d59bb9e18358b55951f2d66453db0cd3bcc3
e09af34f2d646e64b2ad2075bd3b250a635cb214
/SDK/SoT_BP_DoorSwitchMechanismTrigger_classes.hpp
30ad4acd58b8d6a0e219045abd266e7320098c3c
[]
no_license
zanzo420/SoT-SDK
349e6f8b4afcd7756879d8ce5416af86705d8a79
5bc545e1822151b3519666a1ed8fef1ba259fc52
refs/heads/master
2023-07-14T17:41:58.212853
2021-09-01T04:01:29
2021-09-01T04:01:29
138,799,955
1
0
null
2020-02-20T19:41:03
2018-06-26T22:21:26
C++
UTF-8
C++
false
false
1,170
hpp
#pragma once // Sea of Thieves (2) SDK #ifdef _MSC_VER #pragma pack(push, 0x8) #endif #include "SoT_BP_DoorSwitchMechanismTrigger_structs.hpp" namespace SDK { //--------------------------------------------------------------------------- //Classes //--------------------------------------------------------------------------- // BlueprintGeneratedClass BP_DoorSwitchMechanismTrigger.BP_DoorSwitchMechanismTrigger_C // 0x0010 (0x0560 - 0x0550) class ABP_DoorSwitchMechanismTrigger_C : public ASwitchMechanismTrigger { public: class UArrowComponent* Arrow; // 0x0550(0x0008) (BlueprintVisible, ZeroConstructor, IsPlainOldData) class UInteractableComponent* Interactable; // 0x0558(0x0008) (BlueprintVisible, ZeroConstructor, IsPlainOldData) static UClass* StaticClass() { static auto ptr = UObject::FindObject<UClass>(_xor_("BlueprintGeneratedClass BP_DoorSwitchMechanismTrigger.BP_DoorSwitchMechanismTrigger_C")); return ptr; } void UserConstructionScript(); }; } #ifdef _MSC_VER #pragma pack(pop) #endif
[ "30532128+pubgsdk@users.noreply.github.com" ]
30532128+pubgsdk@users.noreply.github.com
31bd300bbe3104a2a5604b93be568afa967c26e0
5d91784aa3a9a543de413e275c7c73bc0804caf9
/Source/AllProjects/CommUtils/CIDWebSock/CIDWebSock.cpp
dab16ef05bca1508e24fb46d44b95e17713a7d92
[ "MIT" ]
permissive
eudora-jia/CIDLib
c957dd2f4b9fbe5c7c12be9fb67589faca10758c
02795d283d95f8a5a4fafa401b6189851901b81b
refs/heads/master
2020-05-28T10:19:10.410157
2019-05-28T04:29:56
2019-05-28T04:29:56
188,968,337
1
0
MIT
2019-05-28T06:32:49
2019-05-28T06:32:48
null
UTF-8
C++
false
false
1,948
cpp
// // FILE NAME: CIDWebSock.cpp // // AUTHOR: Dean Roddey // // CREATED: 05/24/2017 // // COPYRIGHT: Charmed Quark Systems, Ltd @ 2019 // // This software is copyrighted by 'Charmed Quark Systems, Ltd' and // the author (Dean Roddey.) It is licensed under the MIT Open Source // license: // // https://opensource.org/licenses/MIT // // DESCRIPTION: // // This is the main file of the facility. // // CAVEATS/GOTCHAS: // // LOG: // // $_CIDLib_Log_$ // // --------------------------------------------------------------------------- // For this file we want to pre instantiate some collections, but not for any // other files. Only this file defines this toke, which prevents the use of the // extern declaration. // --------------------------------------------------------------------------- #define CIDWEBSOCK_PREINST 1 // --------------------------------------------------------------------------- // Includes // --------------------------------------------------------------------------- #include "CIDWebSock_.hpp" // --------------------------------------------------------------------------- // Pre generate some template types // --------------------------------------------------------------------------- // template class CIDWEBSOCKEXP TRefQueue<TEmailMsg>; // --------------------------------------------------------------------------- // Magic RTTI macros // --------------------------------------------------------------------------- RTTIDecls(TFacCIDWebSock,TFacility) // --------------------------------------------------------------------------- // Global functions // --------------------------------------------------------------------------- TFacCIDWebSock& facCIDWebSock() { static TFacCIDWebSock* pfacCIDWebSock = nullptr; if (!pfacCIDWebSock) { TBaseLock lockInit; if (!pfacCIDWebSock) pfacCIDWebSock = new TFacCIDWebSock; } return *pfacCIDWebSock; }
[ "droddey@charmedquark.com" ]
droddey@charmedquark.com
8509320028ff36c021022788cadffae98fdbbc84
948f4e13af6b3014582909cc6d762606f2a43365
/testcases/juliet_test_suite/testcases/CWE78_OS_Command_Injection/s06/CWE78_OS_Command_Injection__wchar_t_console_execlp_72a.cpp
f416923fb77d7d9148becc0842cfb410f119dfdd
[]
no_license
junxzm1990/ASAN--
0056a341b8537142e10373c8417f27d7825ad89b
ca96e46422407a55bed4aa551a6ad28ec1eeef4e
refs/heads/master
2022-08-02T15:38:56.286555
2022-06-16T22:19:54
2022-06-16T22:19:54
408,238,453
74
13
null
2022-06-16T22:19:55
2021-09-19T21:14:59
null
UTF-8
C++
false
false
3,997
cpp
/* TEMPLATE GENERATED TESTCASE FILE Filename: CWE78_OS_Command_Injection__wchar_t_console_execlp_72a.cpp Label Definition File: CWE78_OS_Command_Injection.strings.label.xml Template File: sources-sink-72a.tmpl.cpp */ /* * @description * CWE: 78 OS Command Injection * BadSource: console Read input from the console * GoodSource: Fixed string * Sinks: execlp * BadSink : execute command with wexeclp * Flow Variant: 72 Data flow: data passed in a vector from one function to another in different source files * * */ #include "std_testcase.h" #include <vector> #include <wchar.h> #ifdef _WIN32 #define COMMAND_INT_PATH L"%WINDIR%\\system32\\cmd.exe" #define COMMAND_INT L"cmd.exe" #define COMMAND_ARG1 L"/c" #define COMMAND_ARG2 L"dir" #define COMMAND_ARG3 data #else /* NOT _WIN32 */ #include <unistd.h> #define COMMAND_INT_PATH L"/bin/sh" #define COMMAND_INT L"sh" #define COMMAND_ARG1 L"ls" #define COMMAND_ARG2 L"-la" #define COMMAND_ARG3 data #endif using namespace std; namespace CWE78_OS_Command_Injection__wchar_t_console_execlp_72 { #ifndef OMITBAD /* bad function declaration */ void badSink(vector<wchar_t *> dataVector); void bad() { wchar_t * data; vector<wchar_t *> dataVector; wchar_t dataBuffer[100] = L""; data = dataBuffer; { /* Read input from the console */ size_t dataLen = wcslen(data); /* if there is room in data, read into it from the console */ if (100-dataLen > 1) { /* POTENTIAL FLAW: Read data from the console */ if (fgetws(data+dataLen, (int)(100-dataLen), stdin) != NULL) { /* The next few lines remove the carriage return from the string that is * inserted by fgetws() */ dataLen = wcslen(data); if (dataLen > 0 && data[dataLen-1] == L'\n') { data[dataLen-1] = L'\0'; } } else { printLine("fgetws() failed"); /* Restore NUL terminator if fgetws fails */ data[dataLen] = L'\0'; } } } /* Put data in a vector */ dataVector.insert(dataVector.end(), 1, data); dataVector.insert(dataVector.end(), 1, data); dataVector.insert(dataVector.end(), 1, data); badSink(dataVector); } #endif /* OMITBAD */ #ifndef OMITGOOD /* good function declarations */ /* goodG2B uses the GoodSource with the BadSink */ void goodG2BSink(vector<wchar_t *> dataVector); static void goodG2B() { wchar_t * data; vector<wchar_t *> dataVector; wchar_t dataBuffer[100] = L""; data = dataBuffer; /* FIX: Append a fixed string to data (not user / external input) */ wcscat(data, L"*.*"); /* Put data in a vector */ dataVector.insert(dataVector.end(), 1, data); dataVector.insert(dataVector.end(), 1, data); dataVector.insert(dataVector.end(), 1, data); goodG2BSink(dataVector); } void good() { goodG2B(); } #endif /* OMITGOOD */ } /* close namespace */ /* Below is the main(). It is only used when building this testcase on * its own for testing or for building a binary to use in testing binary * analysis tools. It is not used when compiling all the testcases as one * application, which is how source code analysis tools are tested. */ #ifdef INCLUDEMAIN using namespace CWE78_OS_Command_Injection__wchar_t_console_execlp_72; /* so that we can use good and bad easily */ int main(int argc, char * argv[]) { /* seed randomness */ srand( (unsigned)time(NULL) ); #ifndef OMITGOOD printLine("Calling good()..."); good(); printLine("Finished good()"); #endif /* OMITGOOD */ #ifndef OMITBAD printLine("Calling bad()..."); bad(); printLine("Finished bad()"); #endif /* OMITBAD */ return 0; } #endif
[ "yzhang0701@gmail.com" ]
yzhang0701@gmail.com
cec08972fe5faca2c6a59803649a76a4e50bb9fb
367fba5df552aef1ee9aa6add6bb512b781bc6d4
/3rdParty/oculus/LibOVR/Src/Net/OVR_Socket.h
b02e0389239cf0c3a3b0bea208711c75e767047e
[ "LicenseRef-scancode-proprietary-license", "LicenseRef-scancode-unknown-license-reference", "LicenseRef-scancode-free-unknown", "MIT" ]
permissive
hamoriakos/ApertusVR
2d3e5736b26404198b222d24388bb3c1c162ee69
14303ab54963e52409ed376cdafae5c43004074b
refs/heads/master
2021-09-16T00:13:48.980732
2017-06-28T18:23:14
2017-06-28T18:23:14
105,749,913
0
1
MIT
2018-06-13T13:54:38
2017-10-04T09:11:13
C++
UTF-8
C++
false
false
6,525
h
/************************************************************************************ PublicHeader: n/a Filename : OVR_Socket.h Content : Socket common data shared between all platforms. Created : June 10, 2014 Authors : Kevin Jenkins, Chris Taylor Copyright : Copyright 2014 Oculus VR, LLC All Rights reserved. Licensed under the Oculus VR Rift SDK License Version 3.2 (the "License"); you may not use the Oculus VR Rift SDK except in compliance with the License, which is provided at the time of installation or download, or which otherwise accompanies this software in either electronic or hard copy form. You may obtain a copy of the License at http://www.oculusvr.com/licenses/LICENSE-3.2 Unless required by applicable law or agreed to in writing, the Oculus VR SDK distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ************************************************************************************/ #ifndef OVR_Socket_h #define OVR_Socket_h #include "../Kernel/OVR_Types.h" #include "../Kernel/OVR_Timer.h" #include "../Kernel/OVR_Allocator.h" #include "../Kernel/OVR_RefCount.h" #include "../Kernel/OVR_String.h" // OS-specific socket headers #if defined(OVR_OS_WIN32) #include <WinSock2.h> #include <WS2tcpip.h> #define WIN32_LEAN_AND_MEAN #include <windows.h> #else # include <unistd.h> # include <sys/types.h> # include <netinet/in.h> #ifdef OVR_OS_ANDROID #include <sys/socket.h> #endif #endif namespace OVR { namespace Net { class SockAddr; class UDPSocket; class TCPSocket; //----------------------------------------------------------------------------- // Portable numeric Socket handle #if defined(OVR_OS_WIN32) typedef SOCKET SocketHandle; #else typedef int SocketHandle; static const SocketHandle INVALID_SOCKET = -1; static const int SOCKET_ERROR = -1; #endif //----------------------------------------------------------------------------- // Types of network transport enum TransportType { TransportType_None, // No transport (useful placeholder for invalid states) TransportType_Loopback, // Loopback transport: Class talks to itself TransportType_TCP, // TCP/IPv4/v6 TransportType_UDP, // UDP/IPv4/v6 TransportType_PacketizedTCP // Packetized TCP: Message framing is automatic }; //----------------------------------------------------------------------------- // Abstraction for a network socket. Inheritance hierarchy // modeled after RakNet so that future support can be added // for Linux, Windows RT, consoles, etc. class Socket : public RefCountBase<Socket> { public: Socket(); virtual void Close() = 0; public: TransportType Transport; // Type of transport }; //----------------------------------------------------------------------------- // Bind parameters for Berkley sockets struct BerkleyBindParameters { public: BerkleyBindParameters(); public: uint16_t Port; // Port String Address; uint32_t blockingTimeout; }; //----------------------------------------------------------------------------- // Berkley socket class BerkleySocket : public Socket { public: BerkleySocket(); virtual ~BerkleySocket(); virtual void Close(); virtual int32_t GetSockname(SockAddr* pSockAddrOut); virtual void SetBlockingTimeout(int timeoutMs) // milliseconds { TimeoutSec = timeoutMs / 1000; TimeoutUsec = (timeoutMs % 1000) * 1000; } int GetBlockingTimeoutUsec() const { return TimeoutUsec; } int GetBlockingTimeoutSec() const { return TimeoutSec; } SocketHandle GetSocketHandle() const { return TheSocket; } protected: SocketHandle TheSocket; // Socket handle int TimeoutUsec, TimeoutSec; }; //----------------------------------------------------------------------------- // UDP socket events class SocketEvent_UDP { public: virtual ~SocketEvent_UDP(){} virtual void UDP_OnRecv(Socket* pSocket, uint8_t* pData, uint32_t bytesRead, SockAddr* pSockAddr) { OVR_UNUSED4(pSocket, pData, bytesRead, pSockAddr); } }; //----------------------------------------------------------------------------- // TCP socket events class SocketEvent_TCP { public: virtual ~SocketEvent_TCP(){} virtual void TCP_OnRecv (Socket* pSocket, uint8_t* pData, int bytesRead) { OVR_UNUSED3(pSocket, pData, bytesRead); } virtual void TCP_OnClosed (TCPSocket* pSocket) { OVR_UNUSED(pSocket); } virtual void TCP_OnAccept (TCPSocket* pListener, SockAddr* pSockAddr, SocketHandle newSock) { OVR_UNUSED3(pListener, pSockAddr, newSock); } virtual void TCP_OnConnected(TCPSocket* pSocket) { OVR_UNUSED(pSocket); } }; //----------------------------------------------------------------------------- // UDP Berkley socket // Base class for UDP sockets, code shared between platforms class UDPSocketBase : public BerkleySocket { public: UDPSocketBase(); public: virtual SocketHandle Bind(BerkleyBindParameters* pBindParameters) = 0; virtual int Send(const void* pData, int bytes, SockAddr* pSockAddr) = 0; virtual void Poll(SocketEvent_UDP* eventHandler) = 0; protected: virtual void OnRecv(SocketEvent_UDP* eventHandler, uint8_t* pData, int bytesRead, SockAddr* address) = 0; }; //----------------------------------------------------------------------------- // TCP Berkley socket // Base class for TCP sockets, code shared between platforms class TCPSocketBase : public BerkleySocket { public: TCPSocketBase(); TCPSocketBase(SocketHandle handle); public: virtual SocketHandle Bind(BerkleyBindParameters* pBindParameters) = 0; virtual int Listen() = 0; virtual int Connect(SockAddr* pSockAddr) = 0; virtual int Send(const void* pData, int bytes) = 0; protected: virtual void OnRecv(SocketEvent_TCP* eventHandler, uint8_t* pData, int bytesRead) = 0; protected: bool IsListenSocket; // Is the socket listening (acting as a server)? }; }} // OVR::Net #endif
[ "peter.kovacs@sztaki.mta.hu" ]
peter.kovacs@sztaki.mta.hu
18ab82f6d3ac6157ae231c059ba412f60dea36bf
c649a1cd6a3d71b2183e3980871e849dd4480cf8
/my_vector.h
aef2b2146b0ca81a6bcfce17987016bf6a4ee1c9
[ "MIT" ]
permissive
yosabaki/big_integer
4f227d1f2962878babac29df4603b105280db58e
ec6ead11b50f5808ed1ac0ee1e06021b385fddaf
refs/heads/master
2020-03-18T04:20:19.911770
2018-06-16T10:01:21
2018-06-16T10:01:21
134,282,485
1
1
MIT
2018-06-06T23:00:50
2018-05-21T14:45:03
C++
UTF-8
C++
false
false
1,273
h
// // Created by Artem Ustinov on 07.06.18. // #ifndef BIG_INTEGER_MY_VECTOR_H #define BIG_INTEGER_MY_VECTOR_H #include <cstdint> #include <cstddef> #include <memory> class my_vector { public: void swap(my_vector &other); uint32_t &operator[](size_t const &_n); const uint32_t &operator[](size_t const &_n) const; void push_back(uint32_t _a); size_t size() const; my_vector(); my_vector(my_vector const &other); explicit my_vector(size_t s); my_vector(size_t s, uint32_t _n); my_vector &operator=(my_vector const &other); void assign(size_t _n, uint32_t _a); void resize(size_t _n); void resize(size_t _n, uint32_t _a); uint32_t back(); size_t capacity() const; ~my_vector(); private: void ensure_capacity(size_t _n); static const uint32_t _SIZE = 4; size_t _size; struct dynamic_data { std::shared_ptr<uint32_t[]> data; size_t capacity; dynamic_data() = default; dynamic_data(dynamic_data const &other) = default; dynamic_data(uint32_t other[], size_t c) : data(other), capacity(c) {} }; union { dynamic_data big; uint32_t small[_SIZE]; }; bool is_small; }; #endif //BIG_INTEGER_MY_VECTOR_H
[ "artyom.ustinov99@yandex.ru" ]
artyom.ustinov99@yandex.ru
66d6f6e01886d9db4bd971d13c3f2d2393528402
334c13c23e7a3141a39864819d8921ddf1bcee31
/114.flatten-binary-tree-to-linked-list.cpp
e584fbacef7d9b76484ae51406fc35a4b41b1bcf
[]
no_license
ZixinLiu/leetcode
53a8913a89077a58623ebf6906afbffa0bb62ad8
6e5079c7aa716e85fb44fea4e74c6064a09ba4a7
refs/heads/master
2020-12-30T13:20:45.008834
2017-09-02T02:45:24
2017-09-02T02:45:24
91,201,721
0
0
null
null
null
null
UTF-8
C++
false
false
847
cpp
/** * Definition for a binary tree node. * struct TreeNode { * int val; * TreeNode *left; * TreeNode *right; * TreeNode(int x) : val(x), left(NULL), right(NULL) {} * }; */ class Solution { public: TreeNode * flattenHelp(TreeNode * root) { if(root == nullptr) return root; TreeNode * left_sub = flattenHelp(root -> left); TreeNode * right_sub = flattenHelp(root -> right); root -> left = nullptr; root -> right = nullptr; if(left_sub != nullptr) { root -> right = left_sub; while(left_sub -> right != nullptr) { left_sub = left_sub -> right; } left_sub -> right = right_sub; } else { root -> right = right_sub; } return root; } void flatten(TreeNode* root) { if(root == nullptr) return ; root = flattenHelp(root); } };
[ "liuzixin@umich.edu" ]
liuzixin@umich.edu
0f9640a746d90971ad51fd536e7d291c55049f5d
2d101924d2a663518fcba761f2dcd19e076a5c64
/Classes/ship.h
ae59710c6ce91590e973ca92c0e29f17cdf5b7c4
[]
no_license
handongpu16/DaFeiJi
ee4a8d3fdbb1be20dc567011a28dc007fa33b4c5
6da351e1484b892c873dd2a36423c5e4b871ca9d
refs/heads/master
2016-09-06T17:56:47.988017
2013-04-24T16:43:23
2013-04-24T16:43:23
null
0
0
null
null
null
null
UTF-8
C++
false
false
837
h
#ifndef _SHIP_H_ #define _SHIP_H_ #include "cocos2d.h" #include "AppMacros.h" class Ship: public cocos2d::CCSprite, public DaFeiJiObjectInterface { public: Ship(void); ~Ship(void); cocos2d::CCRect collideRect(); private: void initialize(); void shoot(float dt); void callBack(); //implement DaFeiJiObjectInterface public: void destroy(); bool isActive(){return active;} //overwrite CCObject function private: void update (float dt); public: void hurt(); int zOrder; private:; int speed; int bulletSpeed; int HP; int bulletTypeValue; int bulletPowerValue; bool throwBombing; bool canBeAttack; bool isThrowingBomb; int maxBulletPowerValue; cocos2d::CCPoint appearPosition; int _hurtColorLife; bool active; float _timeTick; cocos2d::CCSprite* ghostSprite; }; #endif //_SHIP_H_
[ "handongpu16@qq.com" ]
handongpu16@qq.com
6837a39f4a3580a6231ca3e527090c2d3a249ac8
3a78cbb46b8da97b5e161bdb6d11cf028c787584
/12.12/src/BasePlusEmployee.cpp
e76e7b734abe929b235a87db5eb191bb9b8a8185
[]
no_license
jsj1/Jiang_shijie
fc0ffc7e1d38950ab85385eeb9f02389080a1633
4a88c26fd898170cacc502cdc31f40fb0f516b92
refs/heads/master
2020-04-28T03:28:37.185839
2019-06-02T06:53:11
2019-06-02T06:53:11
174,939,157
0
0
null
null
null
null
UTF-8
C++
false
false
1,425
cpp
// Exercise 13.12 Solution: BasePlusCommissionEmployee.cpp // BasePlusCommissionEmployee member-function definitions. #include <iostream> // BasePlusCommissionEmployee class definition #include "BasePlusCommissionEmployee.h" using namespace std; // constructor BasePlusCommissionEmployee::BasePlusCommissionEmployee( const string &first, const string &last, const string &ssn, int month, int day, int year, double sales, double rate, double salary ) : CommissionEmployee( first, last, ssn, month, day, year, sales, rate ) { setBaseSalary( salary ); // validate and store base salary } // end BasePlusCommissionEmployee constructor // set base salary void BasePlusCommissionEmployee::setBaseSalary( double salary ) { baseSalary = ( ( salary < 0.0 ) ? 0.0 : salary ); } // end function setBaseSalary // return base salary double BasePlusCommissionEmployee::getBaseSalary() const { return baseSalary; } // end function getBaseSalary // calculate earnings; // override pure virtual function earnings in Employee double BasePlusCommissionEmployee::earnings() const { return getBaseSalary() + CommissionEmployee::earnings(); } // end function earnings // print BasePlusCommissionEmployee's information void BasePlusCommissionEmployee::print() const { cout << "base-salaried "; CommissionEmployee::print(); // code reuse cout << "; base salary: " << getBaseSalary(); } // end function print
[ "3030453723@qq.com" ]
3030453723@qq.com
11dc42e64717bd511fcfe13e242b272210561c1b
a2102414b631fb7231d708fa4828a47a3e413d4e
/src/solve_tsp.cc
aeb98cc73b45d56620062b50acbac830c6cce94a
[]
no_license
amohan95/tsp
4b82fe9ecbeff18d2cf1a902acdee07d532d5ceb
41f404b0da7ccc764288e722126a64f65d5b559a
refs/heads/master
2021-01-17T15:29:14.917040
2014-09-15T16:46:28
2014-09-15T16:46:28
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,886
cc
#include <cstring> #include <fstream> #include <iostream> #include "solve/tsp_algorithm.h" #include "solve/tsp_algorithm_factory.h" #include "solve/tsp_algorithm_type.h" #include "solve/tsp_solver.h" #include "tsplib/tsp.h" using namespace std; void PrintAlgorithms() { for (int i = 1; i < kNumTSPAlgorithmTypes; ++i) { cout << " " << kTSPAlgorithmTypeValues[i] << endl; } } int main(int argc, char* argv[]) { if (argc == 2 && strcmp(argv[1], "-algorithms") == 0) { cout << "Algorithms:" << endl; PrintAlgorithms(); return 1; } else if (argc != 4) { cout << "Usage: " << argv[0] << " <tsp_file> <algorithm> <nearest_int>" << endl; cout << " For a list of available algorithms and their syntaxes" << endl; cout << " Run: " << argv[0] << " -algorithms" << endl; return 1; } TSPAlgorithmType tsp_algorithm_type = TSPAlgorithmFactory::ParseTSPAlgorithmType( argv[2] ); if (tsp_algorithm_type == TSPAlgorithmType::kNone) { cout << "Failed to parse " << argv[2] << " as a TSPAlgorithm" << endl; cout << "Valid algorithms:" << endl; PrintAlgorithms(); return 1; } TSPAlgorithm* tsp_algorithm = TSPAlgorithmFactory::GetTSPAlgorithm( tsp_algorithm_type ); TSP tsp_instance; if (!tsp_instance.Parse(argv[1])) { cout << "Failed to parse " << argv[1] << " as TSPLIB file" << endl; return 1; } else if (!tsp_instance.BuildGraph(atoi(argv[1])) == 1) { cout << "Failed to build graph for " << argv[1] << endl; return 1; } TSPSolver tsp_solver; tsp_solver.set_tsp_algorithm(tsp_algorithm); tsp_solver.set_graph(tsp_instance.graph()); Solution solution = tsp_solver.ComputeSolution(); cout << "Computed path length: " << solution.distance << endl; cout << "Computed path:" << endl; for (auto node : solution.path) { cout << " " << node + 1 << endl; } return 0; }
[ "matthelb@usc.edu" ]
matthelb@usc.edu
95187860ff72083c81a270316dd87b48fd1fb6ce
1341ebf56cee66f15431236c74e8bb1db02558ac
/chrome/browser/sharing/sharing_service_proxy_android.cc
f7380f4bde1d54442782a28635430d94f3159b16
[ "BSD-3-Clause" ]
permissive
nerdooit/chromium
41584349b52e0b941ec45ebb5ba5695268e5872f
de77d445d3428ef72455c3b0d9be7e050d447135
refs/heads/master
2023-01-11T20:03:40.846099
2020-01-25T12:45:08
2020-01-25T12:45:08
236,195,538
1
0
BSD-3-Clause
2020-01-25T16:25:12
2020-01-25T16:25:11
null
UTF-8
C++
false
false
4,551
cc
// Copyright 2019 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "chrome/browser/sharing/sharing_service_proxy_android.h" #include "base/android/callback_android.h" #include "base/android/jni_string.h" #include "base/time/time.h" #include "chrome/android/chrome_jni_headers/SharingServiceProxy_jni.h" #include "chrome/browser/profiles/profile.h" #include "chrome/browser/profiles/profile_android.h" #include "chrome/browser/sharing/features.h" #include "chrome/browser/sharing/sharing_device_source.h" #include "chrome/browser/sharing/sharing_metrics.h" #include "chrome/browser/sharing/sharing_send_message_result.h" #include "chrome/browser/sharing/sharing_service.h" #include "chrome/browser/sharing/sharing_service_factory.h" #include "components/sync_device_info/device_info.h" void JNI_SharingServiceProxy_InitSharingService( JNIEnv* env, const base::android::JavaParamRef<jobject>& j_profile) { SharingService* service = SharingServiceFactory::GetForBrowserContext( ProfileAndroid::FromProfileAndroid(j_profile)); DCHECK(service); } SharingServiceProxyAndroid::SharingServiceProxyAndroid( SharingService* sharing_service) : sharing_service_(sharing_service) { DCHECK(sharing_service_); JNIEnv* env = base::android::AttachCurrentThread(); Java_SharingServiceProxy_onProxyCreated(env, reinterpret_cast<intptr_t>(this)); } SharingServiceProxyAndroid::~SharingServiceProxyAndroid() { JNIEnv* env = base::android::AttachCurrentThread(); Java_SharingServiceProxy_onProxyDestroyed(env); } void SharingServiceProxyAndroid::SendSharedClipboardMessage( JNIEnv* env, const base::android::JavaParamRef<jstring>& j_guid, const jlong j_last_updated_timestamp_millis, const base::android::JavaParamRef<jstring>& j_text, const jint j_retries, const base::android::JavaParamRef<jobject>& j_runnable) { std::string guid = base::android::ConvertJavaStringToUTF8(env, j_guid); DCHECK(!guid.empty()); std::string text = base::android::ConvertJavaStringToUTF8(env, j_text); chrome_browser_sharing::SharingMessage sharing_message; sharing_message.mutable_shared_clipboard_message()->set_text(std::move(text)); syncer::DeviceInfo device( guid, /*client_name=*/std::string(), /*chrome_version=*/std::string(), /*sync_user_agent=*/std::string(), sync_pb::SyncEnums::TYPE_UNSET, /*signin_scoped_device_id=*/std::string(), base::SysInfo::HardwareInfo(), base::Time::FromJavaTime(j_last_updated_timestamp_millis), /*send_tab_to_self_receiving_enabled=*/false, /*sharing_info=*/base::nullopt); auto callback = base::BindOnce(base::android::RunIntCallbackAndroid, base::android::ScopedJavaGlobalRef<jobject>(j_runnable)); sharing_service_->SendMessageToDevice( device, base::TimeDelta::FromSeconds(kSharingMessageTTLSeconds.Get()), std::move(sharing_message), base::BindOnce( [](int retries, base::OnceCallback<void(int)> callback, SharingSendMessageResult result, std::unique_ptr<chrome_browser_sharing::ResponseMessage> response) { LogSharedClipboardRetries(retries, result); std::move(callback).Run(static_cast<int>(result)); }, j_retries, std::move(callback))); } void SharingServiceProxyAndroid::GetDeviceCandidates( JNIEnv* env, const base::android::JavaParamRef<jobject>& j_device_info, jint j_required_feature) { auto device_candidates = sharing_service_->GetDeviceCandidates( static_cast<sync_pb::SharingSpecificFields::EnabledFeatures>( j_required_feature)); for (const auto& device_info : device_candidates) { Java_SharingServiceProxy_createDeviceInfoAndAppendToList( env, j_device_info, base::android::ConvertUTF8ToJavaString(env, device_info->guid()), base::android::ConvertUTF8ToJavaString(env, device_info->client_name()), device_info->device_type(), device_info->last_updated_timestamp().ToJavaTime()); } } void SharingServiceProxyAndroid::AddDeviceCandidatesInitializedObserver( JNIEnv* env, const base::android::JavaParamRef<jobject>& j_runnable) { sharing_service_->GetDeviceSource()->AddReadyCallback( base::BindOnce(base::android::RunRunnableAndroid, base::android::ScopedJavaGlobalRef<jobject>(j_runnable))); }
[ "commit-bot@chromium.org" ]
commit-bot@chromium.org
ba397fd4ca7d60f9953a331dce42d7dd6193606d
73b4c1774e3add590651f41ecca711c1386e7738
/LinkList/demo.cpp
03e6acc1452beef82c437435c3dade04235c79e6
[]
no_license
kelele67/Data_Structure
c66653b7999c5b1df1888e2e5e76f7994fe8f53f
de13ca23dca4c0bf5444d2e478d86801c59863b8
refs/heads/master
2021-01-18T22:36:20.797437
2017-10-07T16:35:29
2017-10-07T16:35:29
87,059,657
0
0
null
null
null
null
UTF-8
C++
false
false
825
cpp
#include<stdlib.h> #include"List.cpp" #include<iostream> using namespace std; //线性表--单链表 int main() { Node node1; node1.data = 3; Node node2; node2.data = 4; Node node3; node3.data = 5; Node node4; node4.data = 6; Node node5; node5.data = 7; Node temp; List *pList = new List(); // pList->ListInsertHead(&node1); // pList->ListInsertHead(&node2); // pList->ListInsertHead(&node3); // pList->ListInsertHead(&node4); pList->ListInsertTail(&node1); pList->ListInsertTail(&node2); pList->ListInsertTail(&node3); pList->ListInsertTail(&node4); // pList->ListInsert(1, &node5); pList->ListDelete(1, &temp); //失败pList->GetElem(1, &temp); //pList->PriorElem(&node4, &temp); pList->ListTraverse(); cout << "temp=:" << temp.data << endl; delete pList; pList = NULL; return 0; }
[ "kingand67@outlook.com" ]
kingand67@outlook.com
2a362221553606fbf40f74890f45ff8ca46b9296
8382a0c3b653fe7f75154bf376cbeff800827aaa
/ARC/113/arc113_b.cpp
c89f0daf1394fcedfe6d63e9a46246c46e3711ec
[]
no_license
mizobuchiy/Atcoder
25c5d85b67751acdf0cd7e582c8c2e08632a2bd4
999221f381d93c96fc0d15e1e3989bddcd035be0
refs/heads/main
2023-03-26T20:12:00.453291
2021-03-20T16:25:58
2021-03-20T16:25:58
334,387,124
0
0
null
null
null
null
UTF-8
C++
false
false
2,531
cpp
#pragma GCC target("avx2") #pragma GCC optimize("unroll-loops") #pragma GCC optimize("O3") // include #include <bits/stdc++.h> using namespace std; // conversion inline int toInt(string s) { int v; istringstream sin(s); sin >> v; return v; } template <class T> inline string toString(T x) { ostringstream sout; sout << x; return sout.str(); } // change template <class T> bool chmax(T &a, const T &b) { if (a < b) { a = b; return true; } return false; } template <class T> bool chmin(T &a, const T &b) { if (b < a) { a = b; return true; } return false; } // math template <class T> inline T sqr(T x) { return x * x; } template <class T> inline T nCr(T n, T r) { T num = 1; for (int i = 1; i <= r; ++i) { num *= (n - i + 1) / i; } return num; } template <class T> inline T nPr(T n, T r) { r = n - r; T sum = 1; int i; for (i = n; i >= r + 1; --i) sum *= i; return sum; } template <class T> inline T facctorial(T k) { T sum = 1; for (int i = 1; i <= k; ++i) { sum *= i; } return sum; } // numeric template <class T> inline T gcd(T a, T b) { if (a < b) { a ^= b; b ^= a; a ^= b; } return b ? gcd(b, a % b) : a; } template <class T> inline T lcm(T a, T b) { return a * b / gcd(a, b); } // using using VI = vector<int>; using VVI = vector<VI>; using VS = vector<string>; using PII = pair<int, int>; using LL = int64_t; // container util #define ALL(a) (a).begin(), (a).end() #define RALL(a) (a).rbegin(), (a).rend() #define SZ(a) static_cast<int>((a).size()) #define EACH(i, c) \ for (typeof((c).begin()) i = (c).begin(); i != (c).end(); ++i) #define EXIST(s, e) ((s).find(e) != (s).end()) // repetition #define FOR(i, a, b) for (int i = (a); i < static_cast<int>(b); ++i) #define REP(i, n) FOR(i, 0, n) // constant constexpr double EPS = 1e-10; const double PI = acos(-1.0); constexpr LL INF = 1e10; // clear memory #define CLR(a) memset((a), 0, sizeof(a)) // debug #define dump(x) cerr << #x << " = " << (x) << endl; #define debug(x) \ cerr << #x << " = " << (x) << " (L" << __LINE__ << ")" \ << " " << __FILE__ << endl; int Power(int x, int y, int mod) { int ret = 1; while (y) { if (y & 1) ret = 1ll * ret * x % mod; x = 1ll * x * x % mod, y >>= 1; } return ret; } int main() { ios::sync_with_stdio(false); cin.tie(nullptr); cout.tie(nullptr); int A, B, C; cin >> A >> B >> C; cout << Power(A, Power(B, C, 4) + 4, 10) << "\n"; return 0; }
[ "mizobuchi2789@gmail.com" ]
mizobuchi2789@gmail.com
1d4b5bc5b1090053cc60ac7663f1ee801bee2de7
904c6fe2b68a53e11c2aefa17c064306a7b2ac41
/neuron.h
4ee7951c4dd09f836fe59a1c174ac88e971ddcb0
[]
no_license
BeNsAeI/Tank-2017-Linux
24adcbb888589adf4d297729798977e353ebe59b
2e57b8a862b9c571fe8f85b67f7a58dc27f2fa75
refs/heads/master
2023-02-04T15:41:22.178316
2020-12-29T04:54:26
2020-12-29T04:54:26
112,383,129
1
0
null
null
null
null
UTF-8
C++
false
false
81
h
#pragma once #ifndef NEURON_H #define NEURON_H class neuron { public: }; #endif
[ "behnam.saeidi@gmail.com" ]
behnam.saeidi@gmail.com
206c52817efcb15d72733f294e345deae11b4276
8252ccdf871c2d59ca19e3f1916f82edad47d419
/04_네트워크 프로그래밍/TCPFighter/TCPFighter/TCPFighter.cpp
1604c2196a114aac83e74fb11a9c312734ab867d
[]
no_license
Etshaim/Procademy
5ee820913d02f81d47fd0fc56fd94b9c9f535238
6baf7c6c3c9d3f51924aee8525a2eccb4a2cc1df
refs/heads/master
2020-06-14T03:09:09.451931
2017-01-20T11:56:13
2017-01-20T11:56:13
75,513,847
1
0
null
null
null
null
UHC
C++
false
false
18,481
cpp
// TCPFighter.cpp : 응용 프로그램에 대한 진입점을 정의합니다. // #include "stdafx.h" #include "resource.h" #include "ScreenDIB.h" #include "SpriteDIB.h" #include "BaseObject.h" #include "PlayerObject.h" #include "Common.h" #include "LinkedList.h" #include "FrameSkip.h" #include "Protocol.h" #include "Network.h" #include "MakePacket.h" #include "StreamSQ.h" #define dfIP "192.168.10.49" #define WM_SOCKET (WM_USER + 1) // 전역 변수: HINSTANCE hInst; // 현재 인스턴스입니다. BOOL g_bActiveApp; // 활성화 비활성화 여부 // 전역으로 스크린 DIB 생성 HWND g_hWnd; // 전역 윈도우 핸들. 윈도우 생성 후 핸들 대입 CScreenDib g_cScreenDib(640, 480, 32); // 전역으로 ScreenDib 생성 CSpriteDib g_cSpriteDib(100, 0x00ffffff); // 100개의 스프라이트 사용, 흰색 칼라키 CPlayerObject *g_pPlayerObject; CFrameSkip g_FrameSkip(50); CDoubleLinkedList<CBaseObject*> objectList; // 소켓 및 네트워크 처리 SOCKET g_Socket; CStreamSQ g_RecvQ; CStreamSQ g_SendQ; BOOL g_SendFlag = FALSE; BOOL g_bConnected = FALSE; int g_iSendVal; int g_iRecvVal; WCHAR g_szIP[16]; int retval; void Update(void); // 실제 게임 메인 함수 void UpdateGame(void); void InitialGame(void); BOOL SpriteLoad(void); // sprite 로드 void KeyProcess(void); void Action(void); void Draw(void); void SortYPos(void); // Y 위치로 정렬 void SortEffect(void); // Effect 뒤로 빼기 // 윈도우 사이즈 void SetWindowSize(); // IP주소 입력용 다이얼로그 BOOL CALLBACK DialogProc(HWND hWnd, UINT iMsg, WPARAM wParam, LPARAM lParam); // WndProc LRESULT CALLBACK WndProc(HWND, UINT, WPARAM, LPARAM); int APIENTRY _tWinMain(_In_ HINSTANCE hInstance, _In_opt_ HINSTANCE hPrevInstance, _In_ LPTSTR lpCmdLine, _In_ int nCmdShow) { MSG msg; timeBeginPeriod(1); //< 윈속 초기화 및 소켓 생성 // 윈속 초기화 WSADATA wsa; if (WSAStartup(MAKEWORD(2, 2), &wsa) != 0) { return -1; } // 스프라이트 및 게임 데이터 로드 InitialGame(); // 아이피 입력용 다이얼로그 생성 DialogBox(hInstance, MAKEINTRESOURCE(IDD_ADDR), NULL, (DLGPROC)DialogProc); WNDCLASSEX wcex; hInst = hInstance; // 인스턴스 핸들을 전역 변수에 저장합니다. wcex.cbSize = sizeof(WNDCLASSEX); wcex.style = CS_HREDRAW | CS_VREDRAW; wcex.lpfnWndProc = WndProc; wcex.cbClsExtra = 0; wcex.cbWndExtra = 0; wcex.hInstance = hInstance; wcex.hIcon = LoadIcon(hInstance, MAKEINTRESOURCE(IDI_TCPFIGHTER)); wcex.hCursor = LoadCursor(NULL, IDC_ARROW); wcex.hbrBackground = (HBRUSH)(COLOR_WINDOW + 1); wcex.lpszMenuName = MAKEINTRESOURCE(IDC_TCPFIGHTER); wcex.lpszClassName = L"TCP FIGHTER"; wcex.hIconSm = LoadIcon(wcex.hInstance, MAKEINTRESOURCE(IDI_SMALL)); RegisterClassEx(&wcex); g_hWnd = CreateWindow(L"TCP FIGHTER", NULL, WS_OVERLAPPEDWINDOW, CW_USEDEFAULT, 0, CW_USEDEFAULT, 0, NULL, NULL, hInstance, NULL); if (!g_hWnd) { return FALSE; } ShowWindow(g_hWnd, nCmdShow); UpdateWindow(g_hWnd); SetWindowSize(); while (1) { if (PeekMessage(&msg, NULL, 0, 0, PM_REMOVE)) { if (msg.message == WM_QUIT) break; TranslateMessage(&msg); DispatchMessage(&msg); } else { // 게임 처리 함수 호출 if (TRUE == g_bConnected) { Update(); } } } // 플레이어 정리 //objectList.Clear(); // 게임 리소스 정리 //g_cSpriteDib.ReleaseAll(); closesocket(g_Socket); // 윈속 정리 WSACleanup(); timeEndPeriod(1); return (int) msg.wParam; } LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) { PAINTSTRUCT ps; HDC hdc; switch (message) { case WM_CREATE: Connect(hWnd); break; case WM_SOCKET: if (FALSE == NetworkProc(hWnd, wParam, lParam)) { MessageBox(hWnd, L"접속이 종료되었습니다.", NULL, MB_OK); g_bConnected = FALSE; exit(1); } break; case WM_ACTIVATEAPP: g_bActiveApp = (BOOL)wParam; break; case WM_KEYDOWN: switch (wParam) { case VK_ESCAPE: MessageBox(hWnd, L"접속이 종료되었습니다.", NULL, MB_OK); g_bConnected = FALSE; PostQuitMessage(0); } break; case WM_PAINT: hdc = BeginPaint(hWnd, &ps); // TODO: 여기에 그리기 코드를 추가합니다. EndPaint(hWnd, &ps); break; case WM_DESTROY: PostQuitMessage(0); break; default: return DefWindowProc(hWnd, message, wParam, lParam); } return 0; } void SetWindowSize() { RECT WindowRect; WindowRect.top = 0; WindowRect.left = 0; WindowRect.right = 640; WindowRect.bottom = 480; AdjustWindowRectEx(&WindowRect, GetWindowStyle(g_hWnd), GetMenu(g_hWnd) != NULL, GetWindowExStyle(g_hWnd)); int iX = (GetSystemMetrics(SM_CXSCREEN) - 640) / 2; int iY = (GetSystemMetrics(SM_CYSCREEN) - 480) / 2; MoveWindow(g_hWnd, iX, iY, WindowRect.right - WindowRect.left, WindowRect.bottom - WindowRect.top, TRUE); } BOOL CALLBACK DialogProc(HWND hWnd, UINT iMsg, WPARAM wParam, LPARAM lParam) { HWND hEditBox; switch (iMsg) { // 다이얼로그 생성시 발생(초기화용) case WM_INITDIALOG: memset(g_szIP, 0, sizeof(WCHAR) * 16); hEditBox = GetDlgItem(hWnd, IDC_EDIT); SetWindowText(hEditBox, L"127.0.0.1"); return TRUE; case WM_COMMAND: switch (wParam) { case IDOK: GetDlgItemText(hWnd, IDC_EDIT, g_szIP, 16); EndDialog(hWnd, 99939); return TRUE; } break; } return FALSE; } void Update(void) { FLOAT fFPS = 0; // 키보드 입력처리 if (TRUE == g_bActiveApp) { KeyProcess(); } // 객체 액션 처리 Action(); //프레임 스킵 & 그리기 // frame skip if (!g_FrameSkip.FrameSkip()) { Draw(); } fFPS = g_FrameSkip.CheckFPS(); // 플립 g_cScreenDib.DrawBuffer(g_hWnd); } void UpdateGame(void) { FLOAT fFPS; KeyProcess(); Action(); //------------------------------ // frame skip 기능 //------------------------------ if (!g_FrameSkip.FrameSkip()) Draw(); fFPS = g_FrameSkip.CheckFPS(); g_cScreenDib.DrawBuffer(g_hWnd); } void InitialGame(void) { // 스프라이트 로드 SpriteLoad(); // 테스트용 객체들 생성 /*objectList.PushBack(new CPlayerObject(0, 400, 150, dfDIRECTION_LEFT, 2)); objectList.PushBack(new CPlayerObject(0, 400, 280, dfDIRECTION_LEFT, 3)); objectList.PushBack(new CPlayerObject(0, 400, 410, dfDIRECTION_LEFT, 4));*/ } void KeyProcess(void) { BYTE byAction = dfACTION_STAND; // 플레이어 오브젝트가 NULL인지 확인 if (NULL == g_pPlayerObject) { return; } if (GetAsyncKeyState(VK_UP) & 0X8000) { byAction = dfMOVE_DIR_UU; } if (GetAsyncKeyState(VK_DOWN) & 0X8000) { byAction = dfMOVE_DIR_DD; } if (GetAsyncKeyState(VK_LEFT) & 0X8000) { byAction = dfMOVE_DIR_LL; } if (GetAsyncKeyState(VK_RIGHT) & 0X8000) { byAction = dfMOVE_DIR_RR; } if (GetAsyncKeyState(VK_LEFT) & 0X8000 && GetAsyncKeyState(VK_UP) & 0X8000) { byAction = dfMOVE_DIR_LU; } if (GetAsyncKeyState(VK_LEFT) & 0X8000 && GetAsyncKeyState(VK_DOWN) & 0X8000) { byAction = dfMOVE_DIR_LD; } if (GetAsyncKeyState(VK_RIGHT) & 0X8000 && GetAsyncKeyState(VK_UP) & 0X8000) { byAction = dfMOVE_DIR_RU; } if (GetAsyncKeyState(VK_RIGHT) & 0X8000 && GetAsyncKeyState(VK_DOWN) & 0X8000) { byAction = dfMOVE_DIR_RD; } // Attack1 q if (GetAsyncKeyState(0x51) & 0X8000) { byAction = dfACTION_ATTACK1; } // Attack2 w if (GetAsyncKeyState(0x57) & 0X8000) { byAction = dfACTION_ATTACK2; } // Attack3 e if (GetAsyncKeyState(0x45) & 0X8000) { byAction = dfACTION_ATTACK3; } g_pPlayerObject->InputAction(byAction); } void Action(void) { // 리스트 추가 해야 됨 //g_pPlayerObject->Action(); // iterator end가 잘못 된듯 // head와 tail은 데이터 없는 포인터로 사용하면 될듯 // 리스트 버전 CDoubleLinkedList<CBaseObject*>::Iterator iterator; for(iterator = objectList.Begin(); iterator != objectList.End(); iterator++) { // 삭제 기능 구현해야 함 if (eEND_EFFECT == (*iterator)->GetObjectType()) { iterator = objectList.Erase(iterator); continue; } (*iterator)->Action(); } } void Draw(void) { BYTE *bypDest = g_cScreenDib.GetDibBuffer(); int iDestWidth = g_cScreenDib.GetWidth(); int iDestHeight = g_cScreenDib.GetHeight(); int iDestPitch = g_cScreenDib.GetPitch(); // 맵 출력 // 제대로 해보고 싶으면 맵 관리 클래스 만들어서 전역이나 싱글톤으로 찍어주면 됨 g_cSpriteDib.DrawSprite(e_SPRITE::eMAP, 0, 0, bypDest, iDestWidth, iDestHeight, iDestPitch); /////// // 리스트의 모든 객체들에게 Draw 함수를 호출 // 리스트 정렬 // Y 좌표로 정렬을 하고 SortYPos(); // effect는 뒤로 뺀다 SortEffect(); // 리스트 버전 CDoubleLinkedList<CBaseObject*>::Iterator iterator; // draw for (iterator = objectList.Begin(); iterator != objectList.End(); ++iterator) { (*iterator)->Draw(bypDest, iDestWidth, iDestHeight, iDestPitch); } } BOOL SpriteLoad(void) { // 스프라이트 로드 if (!g_cSpriteDib.LoadDibSprite(e_SPRITE::eMAP, L"Sprite_Data\\_Map.bmp", 0, 0)) return FALSE; if (!g_cSpriteDib.LoadDibSprite(e_SPRITE::ePLAYER_STAND_L01, L"Sprite_Data\\Stand_L_01.bmp", 71, 90)) return FALSE; if (!g_cSpriteDib.LoadDibSprite(e_SPRITE::ePLAYER_STAND_L02, L"Sprite_Data\\Stand_L_02.bmp", 71, 90)) return FALSE; if (!g_cSpriteDib.LoadDibSprite(e_SPRITE::ePLAYER_STAND_L03, L"Sprite_Data\\Stand_L_03.bmp", 71, 90)) return FALSE; if (!g_cSpriteDib.LoadDibSprite(e_SPRITE::ePLAYER_STAND_R01, L"Sprite_Data\\Stand_R_01.bmp", 71, 90)) return FALSE; if (!g_cSpriteDib.LoadDibSprite(e_SPRITE::ePLAYER_STAND_R02, L"Sprite_Data\\Stand_R_02.bmp", 71, 90)) return FALSE; if (!g_cSpriteDib.LoadDibSprite(e_SPRITE::ePLAYER_STAND_R03, L"Sprite_Data\\Stand_R_03.bmp", 71, 90)) return FALSE; if (!g_cSpriteDib.LoadDibSprite(e_SPRITE::ePLAYER_MOVE_L01, L"Sprite_Data\\Move_L_01.bmp", 71, 90)) return FALSE; if (!g_cSpriteDib.LoadDibSprite(e_SPRITE::ePLAYER_MOVE_L02, L"Sprite_Data\\Move_L_02.bmp", 71, 90)) return FALSE; if (!g_cSpriteDib.LoadDibSprite(e_SPRITE::ePLAYER_MOVE_L03, L"Sprite_Data\\Move_L_03.bmp", 71, 90)) return FALSE; if (!g_cSpriteDib.LoadDibSprite(e_SPRITE::ePLAYER_MOVE_L04, L"Sprite_Data\\Move_L_04.bmp", 71, 90)) return FALSE; if (!g_cSpriteDib.LoadDibSprite(e_SPRITE::ePLAYER_MOVE_L05, L"Sprite_Data\\Move_L_05.bmp", 71, 90)) return FALSE; if (!g_cSpriteDib.LoadDibSprite(e_SPRITE::ePLAYER_MOVE_L06, L"Sprite_Data\\Move_L_06.bmp", 71, 90)) return FALSE; if (!g_cSpriteDib.LoadDibSprite(e_SPRITE::ePLAYER_MOVE_L07, L"Sprite_Data\\Move_L_07.bmp", 71, 90)) return FALSE; if (!g_cSpriteDib.LoadDibSprite(e_SPRITE::ePLAYER_MOVE_L08, L"Sprite_Data\\Move_L_08.bmp", 71, 90)) return FALSE; if (!g_cSpriteDib.LoadDibSprite(e_SPRITE::ePLAYER_MOVE_L09, L"Sprite_Data\\Move_L_09.bmp", 71, 90)) return FALSE; if (!g_cSpriteDib.LoadDibSprite(e_SPRITE::ePLAYER_MOVE_L10, L"Sprite_Data\\Move_L_10.bmp", 71, 90)) return FALSE; if (!g_cSpriteDib.LoadDibSprite(e_SPRITE::ePLAYER_MOVE_L11, L"Sprite_Data\\Move_L_11.bmp", 71, 90)) return FALSE; if (!g_cSpriteDib.LoadDibSprite(e_SPRITE::ePLAYER_MOVE_L12, L"Sprite_Data\\Move_L_12.bmp", 71, 90)) return FALSE; if (!g_cSpriteDib.LoadDibSprite(e_SPRITE::ePLAYER_MOVE_R01, L"Sprite_Data\\Move_R_01.bmp", 71, 90)) return FALSE; if (!g_cSpriteDib.LoadDibSprite(e_SPRITE::ePLAYER_MOVE_R02, L"Sprite_Data\\Move_R_02.bmp", 71, 90)) return FALSE; if (!g_cSpriteDib.LoadDibSprite(e_SPRITE::ePLAYER_MOVE_R03, L"Sprite_Data\\Move_R_03.bmp", 71, 90)) return FALSE; if (!g_cSpriteDib.LoadDibSprite(e_SPRITE::ePLAYER_MOVE_R04, L"Sprite_Data\\Move_R_04.bmp", 71, 90)) return FALSE; if (!g_cSpriteDib.LoadDibSprite(e_SPRITE::ePLAYER_MOVE_R05, L"Sprite_Data\\Move_R_05.bmp", 71, 90)) return FALSE; if (!g_cSpriteDib.LoadDibSprite(e_SPRITE::ePLAYER_MOVE_R06, L"Sprite_Data\\Move_R_06.bmp", 71, 90)) return FALSE; if (!g_cSpriteDib.LoadDibSprite(e_SPRITE::ePLAYER_MOVE_R07, L"Sprite_Data\\Move_R_07.bmp", 71, 90)) return FALSE; if (!g_cSpriteDib.LoadDibSprite(e_SPRITE::ePLAYER_MOVE_R08, L"Sprite_Data\\Move_R_08.bmp", 71, 90)) return FALSE; if (!g_cSpriteDib.LoadDibSprite(e_SPRITE::ePLAYER_MOVE_R09, L"Sprite_Data\\Move_R_09.bmp", 71, 90)) return FALSE; if (!g_cSpriteDib.LoadDibSprite(e_SPRITE::ePLAYER_MOVE_R10, L"Sprite_Data\\Move_R_10.bmp", 71, 90)) return FALSE; if (!g_cSpriteDib.LoadDibSprite(e_SPRITE::ePLAYER_MOVE_R11, L"Sprite_Data\\Move_R_11.bmp", 71, 90)) return FALSE; if (!g_cSpriteDib.LoadDibSprite(e_SPRITE::ePLAYER_MOVE_R12, L"Sprite_Data\\Move_R_12.bmp", 71, 90)) return FALSE; if (!g_cSpriteDib.LoadDibSprite(e_SPRITE::ePLAYER_ATTACK1_L01, L"Sprite_Data\\Attack1_L_01.bmp", 71, 90)) return FALSE; if (!g_cSpriteDib.LoadDibSprite(e_SPRITE::ePLAYER_ATTACK1_L02, L"Sprite_Data\\Attack1_L_02.bmp", 71, 90)) return FALSE; if (!g_cSpriteDib.LoadDibSprite(e_SPRITE::ePLAYER_ATTACK1_L03, L"Sprite_Data\\Attack1_L_03.bmp", 71, 90)) return FALSE; if (!g_cSpriteDib.LoadDibSprite(e_SPRITE::ePLAYER_ATTACK1_L04, L"Sprite_Data\\Attack1_L_04.bmp", 71, 90)) return FALSE; if (!g_cSpriteDib.LoadDibSprite(e_SPRITE::ePLAYER_ATTACK1_R01, L"Sprite_Data\\Attack1_R_01.bmp", 71, 90)) return FALSE; if (!g_cSpriteDib.LoadDibSprite(e_SPRITE::ePLAYER_ATTACK1_R02, L"Sprite_Data\\Attack1_R_02.bmp", 71, 90)) return FALSE; if (!g_cSpriteDib.LoadDibSprite(e_SPRITE::ePLAYER_ATTACK1_R03, L"Sprite_Data\\Attack1_R_03.bmp", 71, 90)) return FALSE; if (!g_cSpriteDib.LoadDibSprite(e_SPRITE::ePLAYER_ATTACK1_R04, L"Sprite_Data\\Attack1_R_04.bmp", 71, 90)) return FALSE; if (!g_cSpriteDib.LoadDibSprite(e_SPRITE::ePLAYER_ATTACK2_L01, L"Sprite_Data\\Attack2_L_01.bmp", 71, 90)) return FALSE; if (!g_cSpriteDib.LoadDibSprite(e_SPRITE::ePLAYER_ATTACK2_L02, L"Sprite_Data\\Attack2_L_02.bmp", 71, 90)) return FALSE; if (!g_cSpriteDib.LoadDibSprite(e_SPRITE::ePLAYER_ATTACK2_L03, L"Sprite_Data\\Attack2_L_03.bmp", 71, 90)) return FALSE; if (!g_cSpriteDib.LoadDibSprite(e_SPRITE::ePLAYER_ATTACK2_L04, L"Sprite_Data\\Attack2_L_04.bmp", 71, 90)) return FALSE; if (!g_cSpriteDib.LoadDibSprite(e_SPRITE::ePLAYER_ATTACK2_R01, L"Sprite_Data\\Attack2_R_01.bmp", 71, 90)) return FALSE; if (!g_cSpriteDib.LoadDibSprite(e_SPRITE::ePLAYER_ATTACK2_R02, L"Sprite_Data\\Attack2_R_02.bmp", 71, 90)) return FALSE; if (!g_cSpriteDib.LoadDibSprite(e_SPRITE::ePLAYER_ATTACK2_R03, L"Sprite_Data\\Attack2_R_03.bmp", 71, 90)) return FALSE; if (!g_cSpriteDib.LoadDibSprite(e_SPRITE::ePLAYER_ATTACK2_R04, L"Sprite_Data\\Attack2_R_04.bmp", 71, 90)) return FALSE; if (!g_cSpriteDib.LoadDibSprite(e_SPRITE::ePLAYER_ATTACK3_L01, L"Sprite_Data\\Attack3_L_01.bmp", 71, 90)) return FALSE; if (!g_cSpriteDib.LoadDibSprite(e_SPRITE::ePLAYER_ATTACK3_L02, L"Sprite_Data\\Attack3_L_02.bmp", 71, 90)) return FALSE; if (!g_cSpriteDib.LoadDibSprite(e_SPRITE::ePLAYER_ATTACK3_L03, L"Sprite_Data\\Attack3_L_03.bmp", 71, 90)) return FALSE; if (!g_cSpriteDib.LoadDibSprite(e_SPRITE::ePLAYER_ATTACK3_L04, L"Sprite_Data\\Attack3_L_04.bmp", 71, 90)) return FALSE; if (!g_cSpriteDib.LoadDibSprite(e_SPRITE::ePLAYER_ATTACK3_L05, L"Sprite_Data\\Attack3_L_05.bmp", 71, 90)) return FALSE; if (!g_cSpriteDib.LoadDibSprite(e_SPRITE::ePLAYER_ATTACK3_L06, L"Sprite_Data\\Attack3_L_06.bmp", 71, 90)) return FALSE; if (!g_cSpriteDib.LoadDibSprite(e_SPRITE::ePLAYER_ATTACK3_R01, L"Sprite_Data\\Attack3_R_01.bmp", 71, 90)) return FALSE; if (!g_cSpriteDib.LoadDibSprite(e_SPRITE::ePLAYER_ATTACK3_R02, L"Sprite_Data\\Attack3_R_02.bmp", 71, 90)) return FALSE; if (!g_cSpriteDib.LoadDibSprite(e_SPRITE::ePLAYER_ATTACK3_R03, L"Sprite_Data\\Attack3_R_03.bmp", 71, 90)) return FALSE; if (!g_cSpriteDib.LoadDibSprite(e_SPRITE::ePLAYER_ATTACK3_R04, L"Sprite_Data\\Attack3_R_04.bmp", 71, 90)) return FALSE; if (!g_cSpriteDib.LoadDibSprite(e_SPRITE::ePLAYER_ATTACK3_R05, L"Sprite_Data\\Attack3_R_05.bmp", 71, 90)) return FALSE; if (!g_cSpriteDib.LoadDibSprite(e_SPRITE::ePLAYER_ATTACK3_R06, L"Sprite_Data\\Attack3_R_06.bmp", 71, 90)) return FALSE; if (!g_cSpriteDib.LoadDibSprite(e_SPRITE::eEFFECT_SPARK_01, L"Sprite_Data\\xSpark_1.bmp", 70, 70)) return FALSE; if (!g_cSpriteDib.LoadDibSprite(e_SPRITE::eEFFECT_SPARK_02, L"Sprite_Data\\xSpark_2.bmp", 70, 70)) return FALSE; if (!g_cSpriteDib.LoadDibSprite(e_SPRITE::eEFFECT_SPARK_03, L"Sprite_Data\\xSpark_3.bmp", 70, 70)) return FALSE; if (!g_cSpriteDib.LoadDibSprite(e_SPRITE::eEFFECT_SPARK_04, L"Sprite_Data\\xSpark_4.bmp", 70, 70)) return FALSE; if (!g_cSpriteDib.LoadDibSprite(e_SPRITE::eGUAGE_HP, L"Sprite_Data\\HPGuage.bmp", 0, 0)) return FALSE; if (!g_cSpriteDib.LoadDibSprite(e_SPRITE::eSHADOW, L"Sprite_Data\\Shadow.bmp", 32, 4)) return FALSE; return TRUE; } void SortYPos(void) { CDoubleLinkedList<CBaseObject*>::Iterator i = objectList.Begin(); i++; for ( ; i != objectList.End(); ++i) { // 현재 정렬 대상의 posY값을 기준값으로 함 WORD wValue = (*i)->GetCurY(); // 만약 현재 정렬 대상이 이전 대상보다 크다면 // 정렬이 완료된 것이므로 다음 정렬 대상으로 넘어간다 WORD wPrevValue = i.m_pNode->pPrev->data->GetCurY(); if (wPrevValue <= wValue) { continue; } { // 처음부터 정렬된 범위내에서 정렬 대상이 들어갈 곳을 찾는다 CDoubleLinkedList<CBaseObject*>::Iterator j; for (j = objectList.Begin(); j != i; ++j) { // 기준 값과 기존 정렬된 값들을 비교해서 // 정렬 위치를 찾으면 이동하고 끝낸다 if ( (*j)->GetCurY() > (*i)->GetCurY()) { // i를 j왼쪽에 연결시킴 objectList.HangLeft(i, j); break; } } } } } void SortEffect(void) { CDoubleLinkedList<CBaseObject*>::Iterator i = objectList.Begin(); i++; for (; i != objectList.End(); ++i) { // effect면 패스 if ((*i)->GetObjectType() == e_OBJECT_TYPE::eEFFECT) { continue; } { // 처음부터 정렬된 범위내에서 정렬 대상이 들어갈 곳을 찾는다 CDoubleLinkedList<CBaseObject*>::Iterator j; for (j = objectList.Begin(); j != i; ++j) { // 기존 정렬된 값 중에 effect를 발견하면 그 왼쪽에 넣는다 if ((*j)->GetObjectType() == e_OBJECT_TYPE::eEFFECT) { // i를 j왼쪽에 연결시킴 objectList.HangLeft(i, j); break; } } } } }
[ "dpcm@naver.com" ]
dpcm@naver.com
6d061ec375cdd5a15e27acc329453cb44b8e7e9e
e5e0d729f082999a9bec142611365b00f7bfc684
/tensorflow/lite/core/api/op_resolver.h
c3c23dbee925b340c0aa1830db8587206af83ba3
[ "Apache-2.0" ]
permissive
NVIDIA/tensorflow
ed6294098c7354dfc9f09631fc5ae22dbc278138
7cbba04a2ee16d21309eefad5be6585183a2d5a9
refs/heads/r1.15.5+nv23.03
2023-08-16T22:25:18.037979
2023-08-03T22:09:23
2023-08-03T22:09:23
263,748,045
763
117
Apache-2.0
2023-07-03T15:45:19
2020-05-13T21:34:32
C++
UTF-8
C++
false
false
2,161
h
/* Copyright 2018 The TensorFlow Authors. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ==============================================================================*/ #ifndef TENSORFLOW_LITE_CORE_API_OP_RESOLVER_H_ #define TENSORFLOW_LITE_CORE_API_OP_RESOLVER_H_ #include "tensorflow/lite/c/c_api_internal.h" #include "tensorflow/lite/core/api/error_reporter.h" #include "tensorflow/lite/schema/schema_generated.h" namespace tflite { /// Abstract interface that returns TfLiteRegistrations given op codes or custom /// op names. This is the mechanism that ops being referenced in the flatbuffer /// model are mapped to executable function pointers (TfLiteRegistrations). class OpResolver { public: /// Finds the op registration for a builtin operator by enum code. virtual const TfLiteRegistration* FindOp(tflite::BuiltinOperator op, int version) const = 0; /// Finds the op registration of a custom operator by op name. virtual const TfLiteRegistration* FindOp(const char* op, int version) const = 0; virtual ~OpResolver() {} }; // Handles the logic for converting between an OperatorCode structure extracted // from a flatbuffer and information about a registered operator // implementation. TfLiteStatus GetRegistrationFromOpCode(const OperatorCode* opcode, const OpResolver& op_resolver, ErrorReporter* error_reporter, const TfLiteRegistration** registration); } // namespace tflite #endif // TENSORFLOW_LITE_CORE_API_OP_RESOLVER_H_
[ "gardener@tensorflow.org" ]
gardener@tensorflow.org
fb1c04ad99233daad845b662b209b207a95ea104
c93538f2b4006ea71678b739b2e19d6f4a2027ee
/src/model/Integrate.cpp
16c7399c9efc68a687d42a9abd7e1e733f4ea3c8
[]
no_license
yang-haifeng/ssrt
bf63c657eb40843a39e4dd76949679d2170a487e
73d1aaf956e359cec1a80bf81978fa347c7b4b1f
refs/heads/master
2020-03-29T11:13:31.106029
2019-11-26T01:49:12
2019-11-26T01:49:12
149,842,080
1
0
null
null
null
null
UTF-8
C++
false
false
1,529
cpp
#include "model.h" #include <iostream> #include <fstream> inline void initT(Matrix& T); Vector model::Integrate(double x0, double y0, double z0, double nx, double ny, double nz, bool ScaFlag){ Matrix T; initT(T); Vector Sabs; Matrix Mext; Matrix Z; Vector result; for (int i=0; i<4; i++) result[i]=0.; double x=x0,y=y0,z=z0; double step, rho; Vector Sin, Ssca; double tau=0; while( !reachBoundary(x,y,z) ){ double rho = Density_(x,y,z); if (rho!=0){ step = dtau/rho/kappa_ext; if (step>tiny_step) step=tiny_step; } else{ step = tiny_step; x-=step*nx; y-=step*ny; z-=step*nz; continue; } tau += step*kappa_ext*rho; if (tau>100) break; Sabs = calcEmission(x,y,z,nx,ny,nz); Mext = calcExtinction(x,y,z,nx,ny,nz); for (int i=0; i<4; i++) Ssca[i]=0.; if (ScaFlag){ for (int i=0; i<Ntheta; i++){ double cost = 2./Ntheta*(i+0.5)-1; double sint = sqrt(1-cost*cost); for (int j=0; j<Nphi; j++){ double phi = 2*PI/Nphi*j; double nx1=sint*cos(phi), ny1=sint*sin(phi), nz1=cost; Sin = Integrate(x, y, z, nx1, ny1, nz1, false); Ssca += calcZMatrix(x,y,z,nx1,ny1,nz1,nx,ny,nz) * Sin * dOmega; } } } result += T*(Sabs+Ssca)*step*rho; T -= T*Mext*step*rho; x-=step*nx; y-=step*ny; z-=step*nz; } return result; } void initT(Matrix& T){ for(int i=0; i<4; i++){ for(int j=0; j<4; j++){ if(i==j) T[i*4+j] = 1; else T[i*4+j] = 0; } } }
[ "hfyangpku@gmail.com" ]
hfyangpku@gmail.com
2394f7e6d28430224ac538a7cf3a6718ef56f4cd
e8e6d0c9358052fa97b83c899bef3869a6abb805
/src/Wallet/WalletUtils.h
a57e4b20c4edb850adf6cff28fcf035ec8bf7dce
[ "MIT", "LicenseRef-scancode-unknown-license-reference" ]
permissive
cryptonoteclub/4xbitcoin-V-1.1
a59dc865e39b9f340c2c16e7a09c69f5a69d374e
8c70d63b052d5a440f1a92a50c4bc6b81070532b
refs/heads/master
2020-07-14T04:08:50.901770
2019-09-28T20:22:11
2019-09-28T20:22:11
205,234,452
0
0
null
2019-08-29T19:16:47
2019-08-29T19:16:47
null
UTF-8
C++
false
false
412
h
// Copyright (c) 2011-2017, The ManateeCoin Developers, The Cryptonote developers // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #pragma once #include <string> #include "CryptoNoteCore/Currency.h" namespace CryptoNote { bool validateAddress(const std::string& address, const CryptoNote::Currency& currency); }
[ "mybtcfx@gmail.com" ]
mybtcfx@gmail.com
9d0a30cf584b79578b6053d9eae5b0b49f885f6d
e1bf912ad17091fc1bc92cd63e5dcc23eb930853
/UE4_Project/Physics_In_UE4/ChronoPhysicsDemo/Plugins/ChronoPhysics/Source/ChronoPhysics/Include/blaze-2.2/blaze/math/expressions/TSVecDVecMultExpr.h
50a6df3158ba0ed9ab54f28eaa2465c471b5d52d
[ "BSD-3-Clause" ]
permissive
CGJiaxiLiu/MyPortfolio
da35fba3044fb04c74672d6c35f43ccd838ec353
637ac7c4398e08e363a0189abd87acc5f375625c
refs/heads/master
2020-07-31T01:45:51.902508
2020-06-10T02:32:34
2020-06-10T02:32:34
210,438,097
5
1
null
null
null
null
UTF-8
C++
false
false
6,511
h
//================================================================================================= /*! // \file blaze/math/expressions/TSVecDVecMultExpr.h // \brief Header file for the sparse vector/dense vector inner product expression // // Copyright (C) 2013 Klaus Iglberger - All Rights Reserved // // This file is part of the Blaze library. You can redistribute it and/or modify it under // the terms of the New (Revised) BSD License. Redistribution and use in source and binary // forms, with or without modification, are permitted provided that the following conditions // are met: // // 1. Redistributions of source code must retain the above copyright notice, this list of // conditions and the following disclaimer. // 2. Redistributions in binary form must reproduce the above copyright notice, this list // of conditions and the following disclaimer in the documentation and/or other materials // provided with the distribution. // 3. Neither the names of the Blaze development group nor the names of its contributors // may be used to endorse or promote products derived from this software without specific // prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY // EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES // OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT // SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, // INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED // TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR // BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN // CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN // ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH // DAMAGE. */ //================================================================================================= #ifndef _BLAZE_MATH_EXPRESSIONS_TSVECDVECMULTEXPR_H_ #define _BLAZE_MATH_EXPRESSIONS_TSVECDVECMULTEXPR_H_ //************************************************************************************************* // Includes //************************************************************************************************* #include <stdexcept> #include <blaze/math/constraints/DenseVector.h> #include <blaze/math/constraints/SparseVector.h> #include <blaze/math/constraints/TransposeFlag.h> #include <blaze/math/expressions/DenseVector.h> #include <blaze/math/expressions/SparseVector.h> #include <blaze/math/traits/MultTrait.h> #include <blaze/util/logging/FunctionTrace.h> #include <blaze/util/Types.h> #include <blaze/util/typetraits/RemoveReference.h> namespace blaze { //================================================================================================= // // GLOBAL BINARY ARITHMETIC OPERATORS // //================================================================================================= //************************************************************************************************* /*!\brief Multiplication operator for the scalar product (inner product) of a sparse and a // dense vector (\f$ s=\vec{a}*\vec{b} \f$). // \ingroup sparse_vector // // \param lhs The left-hand side sparse vector for the inner product. // \param rhs The right-hand side dense vector for the inner product. // \return The scalar product. // \exception std::invalid_argument Vector sizes do not match. // // This operator represents the scalar product (inner product) of a sparse vector and a dense // vector: \code using blaze::columnVector; using blaze::rowVector; blaze::CompressedVector<double,rowVector> a; blaze::DynamicVector<double,columnVector> b; blaze::real res; // ... Resizing and initialization res = a * b; \endcode // The operator returns a scalar value of the higher-order element type of the two involved // vector element types \a T1::ElementType and \a T2::ElementType. Both vector types \a T1 // and \a T2 as well as the two element types \a T1::ElementType and \a T2::ElementType have // to be supported by the MultTrait class template.\n // In case the current sizes of the two given vectors don't match, a \a std::invalid_argument // is thrown. */ template< typename T1 // Type of the left-hand side sparse vector , typename T2 > // Type of the right-hand side dense vector inline const typename MultTrait<typename T1::ElementType,typename T2::ElementType>::Type operator*( const SparseVector<T1,true>& lhs, const DenseVector<T2,false>& rhs ) { BLAZE_FUNCTION_TRACE; typedef typename T1::CompositeType Lhs; // Composite type of the left-hand side sparse vector expression typedef typename T2::CompositeType Rhs; // Composite type of the right-hand side dense vector expression typedef typename RemoveReference<Lhs>::Type X1; // Auxiliary type for the left-hand side composite type typedef typename RemoveReference<Rhs>::Type X2; // Auxiliary type for the right-hand side composite type typedef typename X1::ElementType ET1; // Element type of the left-hand side sparse vector expression typedef typename X2::ElementType ET2; // Element type of the right-hand side dense vector expression typedef typename MultTrait<ET1,ET2>::Type MultType; // Multiplication result type typedef typename X1::ConstIterator ConstIterator; // Iterator type of the left-hand sparse vector expression BLAZE_CONSTRAINT_MUST_BE_SPARSE_VECTOR_TYPE( T1 ); BLAZE_CONSTRAINT_MUST_BE_DENSE_VECTOR_TYPE ( T2 ); BLAZE_CONSTRAINT_MUST_BE_ROW_VECTOR_TYPE ( T1 ); BLAZE_CONSTRAINT_MUST_BE_COLUMN_VECTOR_TYPE( T2 ); if( (~lhs).size() != (~rhs).size() ) throw std::invalid_argument( "Vector sizes do not match" ); if( (~lhs).nonZeros() == 0UL ) return MultType(); Lhs left ( ~lhs ); Rhs right( ~rhs ); ConstIterator element( left.begin() ); MultType sp( element->value() * right[ element->index() ] ); ++element; for( ; element!=left.end(); ++element ) sp += element->value() * right[ element->index() ]; return sp; } //************************************************************************************************* } // namespace blaze #endif
[ "jliu807@gatech.edu" ]
jliu807@gatech.edu
3556bbd75ecdcce72b5c85660f66dccad900981c
9a4e4131075f4807f74f594d9ab68aad320e40e7
/src/qt/signverifymessagedialog.cpp
f3a7bf8ca465be935e7155809b2b0a7377bd9cc4
[ "MIT" ]
permissive
vroomDotClub/vroomcoin
238bd9cea8c0d1f9a569c459097059946b0db2f3
7324ed50df26a22907a4007ef644591cf6467c76
refs/heads/master
2021-01-18T03:31:35.298304
2017-04-28T22:51:18
2017-04-28T22:51:18
85,816,244
0
0
null
null
null
null
UTF-8
C++
false
false
9,008
cpp
#include "signverifymessagedialog.h" #include "ui_signverifymessagedialog.h" #include "addressbookpage.h" #include "base58.h" #include "guiutil.h" #include "init.h" #include "main.h" #include "optionsmodel.h" #include "walletmodel.h" #include "wallet.h" #include <QClipboard> #include <string> #include <vector> SignVerifyMessageDialog::SignVerifyMessageDialog(QWidget *parent) : QDialog(parent), ui(new Ui::SignVerifyMessageDialog), model(0) { ui->setupUi(this); #if (QT_VERSION >= 0x040700) /* Do not move this to the XML file, Qt before 4.7 will choke on it */ ui->addressIn_SM->setPlaceholderText(tr("Enter a Vroomcoin address:")); ui->signatureOut_SM->setPlaceholderText(tr("Click \"Sign Message\" to generate signature")); ui->addressIn_VM->setPlaceholderText(tr("Enter a Vroomcoin address:")); ui->signatureIn_VM->setPlaceholderText(tr("Enter Vroomcoin signature")); #endif GUIUtil::setupAddressWidget(ui->addressIn_SM, this); GUIUtil::setupAddressWidget(ui->addressIn_VM, this); ui->addressIn_SM->installEventFilter(this); ui->messageIn_SM->installEventFilter(this); ui->signatureOut_SM->installEventFilter(this); ui->addressIn_VM->installEventFilter(this); ui->messageIn_VM->installEventFilter(this); ui->signatureIn_VM->installEventFilter(this); ui->signatureOut_SM->setFont(GUIUtil::bitcoinAddressFont()); ui->signatureIn_VM->setFont(GUIUtil::bitcoinAddressFont()); } SignVerifyMessageDialog::~SignVerifyMessageDialog() { delete ui; } void SignVerifyMessageDialog::setModel(WalletModel *model) { this->model = model; } void SignVerifyMessageDialog::setAddress_SM(QString address) { ui->addressIn_SM->setText(address); ui->messageIn_SM->setFocus(); } void SignVerifyMessageDialog::setAddress_VM(QString address) { ui->addressIn_VM->setText(address); ui->messageIn_VM->setFocus(); } void SignVerifyMessageDialog::showTab_SM(bool fShow) { ui->tabWidget->setCurrentIndex(0); if (fShow) this->show(); } void SignVerifyMessageDialog::showTab_VM(bool fShow) { ui->tabWidget->setCurrentIndex(1); if (fShow) this->show(); } void SignVerifyMessageDialog::on_addressBookButton_SM_clicked() { if (model && model->getAddressTableModel()) { AddressBookPage dlg(AddressBookPage::ForSending, AddressBookPage::ReceivingTab, this); dlg.setModel(model->getAddressTableModel()); if (dlg.exec()) { setAddress_SM(dlg.getReturnValue()); } } } void SignVerifyMessageDialog::on_pasteButton_SM_clicked() { setAddress_SM(QApplication::clipboard()->text()); } void SignVerifyMessageDialog::on_signMessageButton_SM_clicked() { if (!model) return; /* Clear old signature to ensure users don't get confused on error with an old signature displayed */ ui->signatureOut_SM->clear(); CBitcoinAddress addr(ui->addressIn_SM->text().toStdString()); if (!addr.IsValid()) { ui->addressIn_SM->setValid(false); ui->statusLabel_SM->setStyleSheet("QLabel { color: red; }"); ui->statusLabel_SM->setText(tr("The entered address is invalid.") + QString(" ") + tr("Please check the address and try again.")); return; } CKeyID keyID; if (!addr.GetKeyID(keyID)) { ui->addressIn_SM->setValid(false); ui->statusLabel_SM->setStyleSheet("QLabel { color: red; }"); ui->statusLabel_SM->setText(tr("The entered address does not refer to a key.") + QString(" ") + tr("Please check the address and try again.")); return; } WalletModel::UnlockContext ctx(model->requestUnlock()); if (!ctx.isValid()) { ui->statusLabel_SM->setStyleSheet("QLabel { color: red; }"); ui->statusLabel_SM->setText(tr("Wallet unlock was cancelled.")); return; } CKey key; if (!pwalletMain->GetKey(keyID, key)) { ui->statusLabel_SM->setStyleSheet("QLabel { color: red; }"); ui->statusLabel_SM->setText(tr("Private key for the entered address is not available.")); return; } CDataStream ss(SER_GETHASH, 0); ss << strMessageMagic; ss << ui->messageIn_SM->document()->toPlainText().toStdString(); std::vector<unsigned char> vchSig; if (!key.SignCompact(Hash(ss.begin(), ss.end()), vchSig)) { ui->statusLabel_SM->setStyleSheet("QLabel { color: red; }"); ui->statusLabel_SM->setText(QString("<nobr>") + tr("Message signing failed.") + QString("</nobr>")); return; } ui->statusLabel_SM->setStyleSheet("QLabel { color: green; }"); ui->statusLabel_SM->setText(QString("<nobr>") + tr("Message signed.") + QString("</nobr>")); ui->signatureOut_SM->setText(QString::fromStdString(EncodeBase64(&vchSig[0], vchSig.size()))); } void SignVerifyMessageDialog::on_copySignatureButton_SM_clicked() { QApplication::clipboard()->setText(ui->signatureOut_SM->text()); } void SignVerifyMessageDialog::on_clearButton_SM_clicked() { ui->addressIn_SM->clear(); ui->messageIn_SM->clear(); ui->signatureOut_SM->clear(); ui->statusLabel_SM->clear(); ui->addressIn_SM->setFocus(); } void SignVerifyMessageDialog::on_addressBookButton_VM_clicked() { if (model && model->getAddressTableModel()) { AddressBookPage dlg(AddressBookPage::ForSending, AddressBookPage::SendingTab, this); dlg.setModel(model->getAddressTableModel()); if (dlg.exec()) { setAddress_VM(dlg.getReturnValue()); } } } void SignVerifyMessageDialog::on_verifyMessageButton_VM_clicked() { CBitcoinAddress addr(ui->addressIn_VM->text().toStdString()); if (!addr.IsValid()) { ui->addressIn_VM->setValid(false); ui->statusLabel_VM->setStyleSheet("QLabel { color: red; }"); ui->statusLabel_VM->setText(tr("The entered address is invalid.") + QString(" ") + tr("Please check the address and try again.")); return; } CKeyID keyID; if (!addr.GetKeyID(keyID)) { ui->addressIn_VM->setValid(false); ui->statusLabel_VM->setStyleSheet("QLabel { color: red; }"); ui->statusLabel_VM->setText(tr("The entered address does not refer to a key.") + QString(" ") + tr("Please check the address and try again.")); return; } bool fInvalid = false; std::vector<unsigned char> vchSig = DecodeBase64(ui->signatureIn_VM->text().toStdString().c_str(), &fInvalid); if (fInvalid) { ui->signatureIn_VM->setValid(false); ui->statusLabel_VM->setStyleSheet("QLabel { color: red; }"); ui->statusLabel_VM->setText(tr("The signature could not be decoded.") + QString(" ") + tr("Please check the signature and try again.")); return; } CDataStream ss(SER_GETHASH, 0); ss << strMessageMagic; ss << ui->messageIn_VM->document()->toPlainText().toStdString(); CPubKey pubkey; if (!pubkey.RecoverCompact(Hash(ss.begin(), ss.end()), vchSig)) { ui->signatureIn_VM->setValid(false); ui->statusLabel_VM->setStyleSheet("QLabel { color: red; }"); ui->statusLabel_VM->setText(tr("The signature did not match the message digest.") + QString(" ") + tr("Please check the signature and try again.")); return; } if (!(CBitcoinAddress(pubkey.GetID()) == addr)) { ui->statusLabel_VM->setStyleSheet("QLabel { color: red; }"); ui->statusLabel_VM->setText(QString("<nobr>") + tr("Message verification failed.") + QString("</nobr>")); return; } ui->statusLabel_VM->setStyleSheet("QLabel { color: green; }"); ui->statusLabel_VM->setText(QString("<nobr>") + tr("Message verified.") + QString("</nobr>")); } void SignVerifyMessageDialog::on_clearButton_VM_clicked() { ui->addressIn_VM->clear(); ui->signatureIn_VM->clear(); ui->messageIn_VM->clear(); ui->statusLabel_VM->clear(); ui->addressIn_VM->setFocus(); } bool SignVerifyMessageDialog::eventFilter(QObject *object, QEvent *event) { if (event->type() == QEvent::MouseButtonPress || event->type() == QEvent::FocusIn) { if (ui->tabWidget->currentIndex() == 0) { /* Clear status message on focus change */ ui->statusLabel_SM->clear(); /* Select generated signature */ if (object == ui->signatureOut_SM) { ui->signatureOut_SM->selectAll(); return true; } } else if (ui->tabWidget->currentIndex() == 1) { /* Clear status message on focus change */ ui->statusLabel_VM->clear(); } } return QDialog::eventFilter(object, event); }
[ "pete@vroom.club" ]
pete@vroom.club
86b082136c50452ca34ad37516645f9b8fb99190
4788842be0392532e9c93ea9eab37d6519e5b32e
/src/ringct/rctSigs.h
46c9cb2df8047ead906969c9deaeecdc5fdedbba
[ "LicenseRef-scancode-unknown-license-reference", "BSD-3-Clause" ]
permissive
mynt-project/Mynt
4b58126c5bd241ff3f9b930110a843c85fd2d1dc
192e8b8e649fb58589a23d2aceda8290e9c330b5
refs/heads/master
2021-04-29T00:32:01.798577
2018-04-16T00:35:23
2018-04-16T00:35:23
121,830,344
0
0
null
2018-04-13T23:29:43
2018-02-17T05:33:11
C++
UTF-8
C++
false
false
7,458
h
// Copyright (c) 2016, Monero Research Labs // // Author: Shen Noether <shen.noether@gmx.com> // // All rights reserved. // // Redistribution and use in source and binary forms, with or without modification, are // permitted provided that the following conditions are met: // // 1. Redistributions of source code must retain the above copyright notice, this list of // conditions and the following disclaimer. // // 2. Redistributions in binary form must reproduce the above copyright notice, this list // of conditions and the following disclaimer in the documentation and/or other // materials provided with the distribution. // // 3. Neither the name of the copyright holder nor the names of its contributors may be // used to endorse or promote products derived from this software without specific // prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY // EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF // MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL // THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, // PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS // INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, // STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF // THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. #pragma once //#define DBG #ifndef RCTSIGS_H #define RCTSIGS_H #include <cstddef> #include <vector> #include <tuple> #include "crypto/generic-ops.h" extern "C" { #include "crypto/random.h" #include "crypto/keccak.h" } #include "crypto/crypto.h" #include "rctTypes.h" #include "rctOps.h" //Define this flag when debugging to get additional info on the console #ifdef DBG #define DP(x) dp(x) #else #define DP(x) #endif namespace rct { boroSig genBorromean(const key64 x, const key64 P1, const key64 P2, const bits indices); bool verifyBorromean(const boroSig &bb, const key64 P1, const key64 P2); //Multilayered Spontaneous Anonymous Group Signatures (MLSAG signatures) //These are aka MG signatutes in earlier drafts of the ring ct paper // c.f. http://eprint.iacr.org/2015/1098 section 2. // keyImageV just does I[i] = xx[i] * HashToPoint(xx[i] * G) for each i // Gen creates a signature which proves that for some column in the keymatrix "pk" // the signer knows a secret key for each row in that column // Ver verifies that the MG sig was created correctly keyV keyImageV(const keyV &xx); mgSig MLSAG_Gen(const key &message, const keyM & pk, const keyV & xx, const unsigned int index, size_t dsRows); bool MLSAG_Ver(const key &message, const keyM &pk, const mgSig &sig, size_t dsRows); //mgSig MLSAG_Gen_Old(const keyM & pk, const keyV & xx, const int index); //proveRange and verRange //proveRange gives C, and mask such that \sumCi = C // c.f. http://eprint.iacr.org/2015/1098 section 5.1 // and Ci is a commitment to either 0 or 2^i, i=0,...,63 // thus this proves that "amount" is in [0, 2^64] // mask is a such that C = aG + bH, and b = amount //verRange verifies that \sum Ci = C and that each Ci is a commitment to 0 or 2^i rangeSig proveRange(key & C, key & mask, const xmr_amount & amount); bool verRange(const key & C, const rangeSig & as); //Ring-ct MG sigs //Prove: // c.f. http://eprint.iacr.org/2015/1098 section 4. definition 10. // This does the MG sig on the "dest" part of the given key matrix, and // the last row is the sum of input commitments from that column - sum output commitments // this shows that sum inputs = sum outputs //Ver: // verifies the above sig is created corretly mgSig proveRctMG(const ctkeyM & pubs, const ctkeyV & inSk, const keyV &outMasks, const ctkeyV & outPk, unsigned int index, key txnFee, const key &message); mgSig proveRctMGSimple(const key & message, const ctkeyV & pubs, const ctkey & inSk, const key &a , const key &Cout, unsigned int index); bool verRctMG(const mgSig &mg, const ctkeyM & pubs, const ctkeyV & outPk, key txnFee, const key &message); bool verRctMGSimple(const key &message, const mgSig &mg, const ctkeyV & pubs, const key & C); //These functions get keys from blockchain //replace these when connecting blockchain //getKeyFromBlockchain grabs a key from the blockchain at "reference_index" to mix with //populateFromBlockchain creates a keymatrix with "mixin" columns and one of the columns is inPk // the return value are the key matrix, and the index where inPk was put (random). void getKeyFromBlockchain(ctkey & a, size_t reference_index); std::tuple<ctkeyM, xmr_amount> populateFromBlockchain(ctkeyV inPk, int mixin); //RingCT protocol //genRct: // creates an rctSig with all data necessary to verify the rangeProofs and that the signer owns one of the // columns that are claimed as inputs, and that the sum of inputs = sum of outputs. // Also contains masked "amount" and "mask" so the receiver can see how much they received //verRct: // verifies that all signatures (rangeProogs, MG sig, sum inputs = outputs) are correct //decodeRct: (c.f. http://eprint.iacr.org/2015/1098 section 5.1.1) // uses the attached ecdh info to find the amounts represented by each output commitment // must know the destination private key to find the correct amount, else will return a random number rctSig genRct(const key &message, const ctkeyV & inSk, const keyV & destinations, const std::vector<xmr_amount> & amounts, const ctkeyM &mixRing, const keyV &amount_keys, unsigned int index, ctkeyV &outSk, bool bulletproof); rctSig genRct(const key &message, const ctkeyV & inSk, const ctkeyV & inPk, const keyV & destinations, const std::vector<xmr_amount> & amounts, const keyV &amount_keys, const int mixin); rctSig genRctSimple(const key & message, const ctkeyV & inSk, const ctkeyV & inPk, const keyV & destinations, const std::vector<xmr_amount> & inamounts, const std::vector<xmr_amount> & outamounts, const keyV &amount_keys, xmr_amount txnFee, unsigned int mixin); rctSig genRctSimple(const key & message, const ctkeyV & inSk, const keyV & destinations, const std::vector<xmr_amount> & inamounts, const std::vector<xmr_amount> & outamounts, xmr_amount txnFee, const ctkeyM & mixRing, const keyV &amount_keys, const std::vector<unsigned int> & index, ctkeyV &outSk, bool bulletproof); bool verRct(const rctSig & rv, bool semantics); static inline bool verRct(const rctSig & rv) { return verRct(rv, true) && verRct(rv, false); } bool verRctSimple(const rctSig & rv, bool semantics); static inline bool verRctSimple(const rctSig & rv) { return verRctSimple(rv, true) && verRctSimple(rv, false); } xmr_amount decodeRct(const rctSig & rv, const key & sk, unsigned int i, key & mask); xmr_amount decodeRct(const rctSig & rv, const key & sk, unsigned int i); xmr_amount decodeRctSimple(const rctSig & rv, const key & sk, unsigned int i, key & mask); xmr_amount decodeRctSimple(const rctSig & rv, const key & sk, unsigned int i); } #endif /* RCTSIGS_H */
[ "moneromooo-monero@users.noreply.github.com" ]
moneromooo-monero@users.noreply.github.com
d7d87492f40913e8bda301d410039d384668598f
78e0761de1122f11cee95bb98f2c7450b33ea59d
/ListenerServer.h
97f50d5b9b97ef9be75a22f11f44bc7a2b8e4588
[]
no_license
adrset/draughts_server
b3d737e86786b15d48c43c22e68dd2dd15057da8
5dd0fe6b7cf93f0e24cc124328771d3e5aeb26d4
refs/heads/master
2020-03-18T17:32:45.062788
2018-06-25T12:21:43
2018-06-25T12:21:43
135,034,708
0
0
null
null
null
null
UTF-8
C++
false
false
1,832
h
#ifndef LISTENER_SERVER_H_ #define LISTENER_SERVER_H_ #define SERWER_PORT 8888 #define SERWER_IP "192.168.1.88" #include <stdio.h> #include <stdlib.h> // exit() #include <string.h> // memset() #include <arpa/inet.h> // inet_pton() #include <sys/socket.h> #include <chrono> #include <ctime> #include <vector> #include "Entity.h" namespace Network { typedef struct data { bool empty; char* response; size_t length; data(bool e = true, char* r = nullptr, size_t l = 0) : empty(e), response(r), length(l) {}; } data; typedef struct client { std::string ip; int rand; bool active; unsigned int id; std::string pass; std::string name; std::chrono::time_point<std::chrono::system_clock> lastRequest; client(unsigned int id, std::string name, std::chrono::time_point<std::chrono::system_clock> time, int rand, std::string ip, std::string pass, bool active = true): ip(ip), rand(rand), active(active),id(id), pass(pass), name(name), lastRequest(time){}; } client; class ListenerServer { public: ListenerServer(std::string ip, int port); int listen(); void close(); private: Entity* findRoom(std::string room); std::vector<Entity*> m_rooms; int processConsoleInput(); void processClients(); struct timeval m_readTimeout; bool addRoom(std::string name); std::string ip; int port; std::vector<client> m_clients; fd_set m_master; // główna lista deskryptorów plików fd_set m_read_fds; // pomocnicza lista deskryptorów dla select() fd_set m_inputR, m_inputW, m_inputE; struct sockaddr_in m_server; int m_socket_; int m_activity; char m_buffer[ 4096 ] = { }; char m_resp[ 4096 ] = { }; socklen_t m_len; struct sockaddr_in m_client; }; } #endif
[ "274433@pw.edu.pl" ]
274433@pw.edu.pl
65216f703245594105136447841ede5614782341
d34960c2d9a84ad0639005b86d79b3a0553292ab
/boost/boost/lexical_cast.hpp
5ef14f19e5e6142ed1edae78409a036676a8a75d
[ "BSL-1.0", "Apache-2.0" ]
permissive
tonystone/geofeatures
413c13ebd47ee6676196399d47f5e23ba5345287
25aca530a9140b3f259e9ee0833c93522e83a697
refs/heads/master
2020-04-09T12:44:36.472701
2019-03-17T01:37:55
2019-03-17T01:37:55
41,232,751
28
9
NOASSERTION
2019-03-17T01:37:56
2015-08-23T02:35:40
C++
UTF-8
C++
false
false
3,612
hpp
// Copyright Kevlin Henney, 2000-2005. // Copyright Alexander Nasonov, 2006-2010. // Copyright Antony Polukhin, 2011-2014. // // Distributed under the Boost Software License, Version 1.0. (See // accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) // // what: lexical_cast custom keyword cast // who: contributed by Kevlin Henney, // enhanced with contributions from Terje Slettebo, // with additional fixes and suggestions from Gennaro Prota, // Beman Dawes, Dave Abrahams, Daryle Walker, Peter Dimov, // Alexander Nasonov, Antony Polukhin, Justin Viiret, Michael Hofmann, // Cheng Yang, Matthew Bradbury, David W. Birdsall, Pavel Korzh and other Boosters // when: November 2000, March 2003, June 2005, June 2006, March 2011 - 2014 #ifndef BOOST_LEXICAL_CAST_INCLUDED #define BOOST_LEXICAL_CAST_INCLUDED #include <boost/config.hpp> #ifdef BOOST_HAS_PRAGMA_ONCE # pragma once #endif #if defined(BOOST_NO_STRINGSTREAM) || defined(BOOST_NO_STD_WSTRING) #define BOOST_LCAST_NO_WCHAR_T #endif #include <boost/range/iterator_range_core.hpp> #include <boost/lexical_cast/bad_lexical_cast.hpp> #include <boost/lexical_cast/try_lexical_convert.hpp> #include <boost/utility/value_init.hpp> namespace geofeatures_boost {} namespace boost = geofeatures_boost; namespace geofeatures_boost { template <typename Target, typename Source> inline Target lexical_cast(const Source &arg) { geofeatures_boost::value_initialized<Target> result; if (!geofeatures_boost::conversion::detail::try_lexical_convert(arg, get(result))) { geofeatures_boost::conversion::detail::throw_bad_cast<Source, Target>(); } return get(result); } template <typename Target> inline Target lexical_cast(const char* chars, std::size_t count) { return ::geofeatures_boost::lexical_cast<Target>( ::geofeatures_boost::iterator_range<const char*>(chars, chars + count) ); } template <typename Target> inline Target lexical_cast(const unsigned char* chars, std::size_t count) { return ::geofeatures_boost::lexical_cast<Target>( ::geofeatures_boost::iterator_range<const unsigned char*>(chars, chars + count) ); } template <typename Target> inline Target lexical_cast(const signed char* chars, std::size_t count) { return ::geofeatures_boost::lexical_cast<Target>( ::geofeatures_boost::iterator_range<const signed char*>(chars, chars + count) ); } #ifndef BOOST_LCAST_NO_WCHAR_T template <typename Target> inline Target lexical_cast(const wchar_t* chars, std::size_t count) { return ::geofeatures_boost::lexical_cast<Target>( ::geofeatures_boost::iterator_range<const wchar_t*>(chars, chars + count) ); } #endif #ifndef BOOST_NO_CXX11_CHAR16_T template <typename Target> inline Target lexical_cast(const char16_t* chars, std::size_t count) { return ::geofeatures_boost::lexical_cast<Target>( ::geofeatures_boost::iterator_range<const char16_t*>(chars, chars + count) ); } #endif #ifndef BOOST_NO_CXX11_CHAR32_T template <typename Target> inline Target lexical_cast(const char32_t* chars, std::size_t count) { return ::geofeatures_boost::lexical_cast<Target>( ::geofeatures_boost::iterator_range<const char32_t*>(chars, chars + count) ); } #endif } // namespace geofeatures_boost #undef BOOST_LCAST_NO_WCHAR_T #endif // BOOST_LEXICAL_CAST_INCLUDED
[ "tony@mobilegridinc.com" ]
tony@mobilegridinc.com
e7b4479cf74d157a1cd3b1967b6e3d0789b0adf7
d5d1358ebcfc3a20660cb68773467bcab11aa7cd
/2020/acelerador_de_particulas.cpp
b9b4f408c688afecf549a6b164e2f21a60467b5e
[]
no_license
Ruhtra47/Treino-OBI
2f8ce0006a49a6fea88f7bc09cf65222da172d00
bb6bd22a88239592cb65662790c0b8378671a84f
refs/heads/main
2023-08-07T06:58:41.964148
2021-09-25T19:45:09
2021-09-25T19:45:09
368,295,856
3
0
null
null
null
null
UTF-8
C++
false
false
385
cpp
#include <iostream> using namespace std; int main(void) { int d; cin >> d; if ((d - 3) % 8 == 3) { cout << 1 << endl; return 0; } else if ((d - 3) % 8 == 4) { cout << 2 << endl; return 0; } else if ((d - 3) % 8 == 5) { cout << 3 << endl; return 0; } return 0; }
[ "www.arthuruliana@gmail.com" ]
www.arthuruliana@gmail.com
e3ba61fec76a5278d295df02af9f89b01e197bf3
2a5d597ca1862577854c77abf48bd21fe19f4243
/src/qt/askpassphrasedialog.cpp
8a14a83e3b16bac825e2f85033c3a3de5715af0d
[ "MIT" ]
permissive
1007061/eccoin
5bf79fd5e259825b39e4ae40bf3063f06060f108
ba336296402b4ec1679c5e904983a32669164de1
refs/heads/main
2023-03-21T08:23:44.987673
2020-11-21T06:19:32
2020-11-21T06:19:32
null
0
0
null
null
null
null
UTF-8
C++
false
false
9,694
cpp
#include "askpassphrasedialog.h" #include "ui_askpassphrasedialog.h" #include "guiconstants.h" #include "walletmodel.h" #include <QMessageBox> #include <QPushButton> #include <QKeyEvent> AskPassphraseDialog::AskPassphraseDialog(Mode mode, QWidget *parent) : QDialog(parent), ui(new Ui::AskPassphraseDialog), mode(mode), model(0), fCapsLock(false) { ui->setupUi(this); ui->passEdit1->setMaxLength(MAX_PASSPHRASE_SIZE); ui->passEdit2->setMaxLength(MAX_PASSPHRASE_SIZE); ui->passEdit3->setMaxLength(MAX_PASSPHRASE_SIZE); // Setup Caps Lock detection. ui->passEdit1->installEventFilter(this); ui->passEdit2->installEventFilter(this); ui->passEdit3->installEventFilter(this); switch(mode) { case Encrypt: // Ask passphrase x2 ui->passLabel1->hide(); ui->passEdit1->hide(); ui->warningLabel->setText(tr("Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>.")); setWindowTitle(tr("Encrypt wallet")); break; case Unlock: // Ask passphrase ui->warningLabel->setText(tr("This operation needs your wallet passphrase to unlock the wallet.")); ui->passLabel2->hide(); ui->passEdit2->hide(); ui->passLabel3->hide(); ui->passEdit3->hide(); setWindowTitle(tr("Unlock wallet")); break; case Decrypt: // Ask passphrase ui->warningLabel->setText(tr("This operation needs your wallet passphrase to decrypt the wallet.")); ui->passLabel2->hide(); ui->passEdit2->hide(); ui->passLabel3->hide(); ui->passEdit3->hide(); setWindowTitle(tr("Decrypt wallet")); break; case ChangePass: // Ask old passphrase + new passphrase x2 setWindowTitle(tr("Change passphrase")); ui->warningLabel->setText(tr("Enter the old and new passphrase to the wallet.")); break; } textChanged(); connect(ui->passEdit1, SIGNAL(textChanged(QString)), this, SLOT(textChanged())); connect(ui->passEdit2, SIGNAL(textChanged(QString)), this, SLOT(textChanged())); connect(ui->passEdit3, SIGNAL(textChanged(QString)), this, SLOT(textChanged())); } AskPassphraseDialog::~AskPassphraseDialog() { // Attempt to overwrite text so that they do not linger around in memory ui->passEdit1->setText(QString(" ").repeated(ui->passEdit1->text().size())); ui->passEdit2->setText(QString(" ").repeated(ui->passEdit2->text().size())); ui->passEdit3->setText(QString(" ").repeated(ui->passEdit3->text().size())); delete ui; } void AskPassphraseDialog::setModel(WalletModel *model) { this->model = model; } void AskPassphraseDialog::accept() { SecureString oldpass, newpass1, newpass2; if(!model) return; oldpass.reserve(MAX_PASSPHRASE_SIZE); newpass1.reserve(MAX_PASSPHRASE_SIZE); newpass2.reserve(MAX_PASSPHRASE_SIZE); // TODO: get rid of this .c_str() by implementing SecureString::operator=(std::string) // Alternately, find a way to make this input mlock()'d to begin with. oldpass.assign(ui->passEdit1->text().toStdString().c_str()); newpass1.assign(ui->passEdit2->text().toStdString().c_str()); newpass2.assign(ui->passEdit3->text().toStdString().c_str()); switch(mode) { case Encrypt: { if(newpass1.empty() || newpass2.empty()) { // Cannot encrypt with empty passphrase break; } QMessageBox::StandardButton retval = QMessageBox::question(this, tr("Confirm wallet encryption"), tr("Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR COINS</b>!") + "<br><br>" + tr("Are you sure you wish to encrypt your wallet?"), QMessageBox::Yes|QMessageBox::Cancel, QMessageBox::Cancel); if(retval == QMessageBox::Yes) { if(newpass1 == newpass2) { if(model->setWalletEncrypted(true, newpass1)) { QMessageBox::warning(this, tr("Wallet encrypted"), "<qt>" + tr("ECCOIN will close now to finish the encryption process. " "Remember that encrypting your wallet cannot fully protect " "your coins from being stolen by malware infecting your computer.") + "<br><br><b>" + tr("IMPORTANT: Any previous backups you have made of your wallet file " "should be replaced with the newly generated, encrypted wallet file. " "For security reasons, previous backups of the unencrypted wallet file " "will become useless as soon as you start using the new, encrypted wallet.") + "</b></qt>"); QApplication::quit(); } else { QMessageBox::critical(this, tr("Wallet encryption failed"), tr("Wallet encryption failed due to an internal error. Your wallet was not encrypted.")); } QDialog::accept(); // Success } else { QMessageBox::critical(this, tr("Wallet encryption failed"), tr("The supplied passphrases do not match.")); } } else { QDialog::reject(); // Cancelled } } break; case Unlock: if(!model->setWalletLocked(false, oldpass)) { QMessageBox::critical(this, tr("Wallet unlock failed"), tr("The passphrase entered for the wallet decryption was incorrect.")); } else { QDialog::accept(); // Success } break; case Decrypt: if(!model->setWalletEncrypted(false, oldpass)) { QMessageBox::critical(this, tr("Wallet decryption failed"), tr("The passphrase entered for the wallet decryption was incorrect.")); } else { QDialog::accept(); // Success } break; case ChangePass: if(newpass1 == newpass2) { if(model->changePassphrase(oldpass, newpass1)) { QMessageBox::information(this, tr("Wallet encrypted"), tr("Wallet passphrase was successfully changed.")); QDialog::accept(); // Success } else { QMessageBox::critical(this, tr("Wallet encryption failed"), tr("The passphrase entered for the wallet decryption was incorrect.")); } } else { QMessageBox::critical(this, tr("Wallet encryption failed"), tr("The supplied passphrases do not match.")); } break; } } void AskPassphraseDialog::textChanged() { // Validate input, set Ok button to enabled when acceptable bool acceptable = false; switch(mode) { case Encrypt: // New passphrase x2 acceptable = !ui->passEdit2->text().isEmpty() && !ui->passEdit3->text().isEmpty(); break; case Unlock: // Old passphrase x1 case Decrypt: acceptable = !ui->passEdit1->text().isEmpty(); break; case ChangePass: // Old passphrase x1, new passphrase x2 acceptable = !ui->passEdit1->text().isEmpty() && !ui->passEdit2->text().isEmpty() && !ui->passEdit3->text().isEmpty(); break; } ui->buttonBox->button(QDialogButtonBox::Ok)->setEnabled(acceptable); } bool AskPassphraseDialog::event(QEvent *event) { // Detect Caps Lock key press. if (event->type() == QEvent::KeyPress) { QKeyEvent *ke = static_cast<QKeyEvent *>(event); if (ke->key() == Qt::Key_CapsLock) { fCapsLock = !fCapsLock; } if (fCapsLock) { ui->capsLabel->setText(tr("Warning: The Caps Lock key is on!")); } else { ui->capsLabel->clear(); } } return QWidget::event(event); } bool AskPassphraseDialog::eventFilter(QObject *object, QEvent *event) { /* Detect Caps Lock. * There is no good OS-independent way to check a key state in Qt, but we * can detect Caps Lock by checking for the following condition: * Shift key is down and the result is a lower case character, or * Shift key is not down and the result is an upper case character. */ if (event->type() == QEvent::KeyPress) { QKeyEvent *ke = static_cast<QKeyEvent *>(event); QString str = ke->text(); if (str.length() != 0) { const QChar *psz = str.unicode(); bool fShift = (ke->modifiers() & Qt::ShiftModifier) != 0; if ((fShift && psz->isLower()) || (!fShift && psz->isUpper())) { fCapsLock = true; ui->capsLabel->setText(tr("Warning: The Caps Lock key is on!")); } else if (psz->isLetter()) { fCapsLock = false; ui->capsLabel->clear(); } } } return QDialog::eventFilter(object, event); }
[ "joker5677789@gmail.com" ]
joker5677789@gmail.com
e8e76e2ce31680a4c82293b615949b5535b0f632
c797cdfb572ea3505944f333c29288503adeb409
/InherInCpp/iShipTakeDamage.h
4b75afdbf013ce33045dde183da7de814a73c6c4
[ "MIT" ]
permissive
APATAKER/GDP2019_20
857115571dca02a61bbbaea1be597335a896e45b
e7ce4459cf2b58ca4be3e84263e3389586ec8cb5
refs/heads/master
2020-07-31T15:35:49.486327
2019-09-23T23:47:06
2019-09-23T23:47:06
null
0
0
null
null
null
null
UTF-8
C++
false
false
173
h
#pragma once class iShipDamageInterface { public: virtual ~iShipDamageInterface() {}; // Just so we could shoot each other virtual void TakeDamage(float amount) = 0; };
[ "mfeeney@fanshawec.ca" ]
mfeeney@fanshawec.ca
a1fac3cf0e9073c4e36642497f7584f764e55ef8
64c420e7a7d0a269201ef6d10ca88f2ebde801a6
/zad_5/main.cpp
127fea238b6e5b55be4899faab083dac49ed719a
[]
no_license
KorzenTM/ZPWCPP
124ff090d4b68d575e4ce653ee30334f14cc9e20
e97e4c164bed67018048b563a942a69e20af89cc
refs/heads/main
2023-02-20T01:23:58.790375
2021-01-26T10:01:58
2021-01-26T10:01:58
303,338,799
0
0
null
null
null
null
UTF-8
C++
false
false
888
cpp
#include <iostream> #include <string> #include <stdio.h> #include <string.h> #include <string> template<typename T1, typename T2> auto add1(const T1 &a, const T2 &b) ->decltype(a+b) { return a + b; } template<typename T1, typename T2> auto add1(const T1 *a,const T2 *b) { return *a + *b; } template<> auto add1(const char* a, const char *b) { return std::string(a) + std::string(b); } int main() { int a = 5; int b = 10; int c = 6; double d = 4.55; int *p_a = &a; int *p_b = &b; int *p_c = &c; double *p_d = &d; std::cout << a << " + " << b << " = " << add1(a, b) << "\n"; std::cout << a << " + " << b << " = " << add1(p_a , p_b) << "\n"; std::cout << c << " + " << d << " = " << add1(p_c , p_d) << "\n"; const char *s1 = "Hello "; const char *s2 = "World"; std::cout << add1(s1, s2) << "\n"; return 0; }
[ "mateuszkorzeniowski98@gmail.com" ]
mateuszkorzeniowski98@gmail.com
e3135cfa05ae324fdceac7ab9563f9d10ca8c418
4b9135dc6ee7065961cacfa21c780a010d4e916f
/shaders.h
51020386349e93aa4b2a95f41d42c7e4798cbb01
[]
no_license
splinterofchaos/py-srpg
790752f8685308b94b71d48b413dd4f58aac30ee
8af173bacb2c9f121a031faa24e875bf46cf9967
refs/heads/master
2023-02-11T02:47:21.748713
2021-01-10T07:48:27
2021-01-10T07:48:27
268,578,019
0
0
null
null
null
null
UTF-8
C++
false
false
2,204
h
#pragma once #include <glm/vec3.hpp> #include <glm/gtc/type_ptr.hpp> #include "font.h" #include "graphics.h" #include "util.h" // The vertex type used for sending data to the graphics card. struct Vertex { glm::vec2 pos; glm::vec2 tex_coord; }; // The glyph shader program below uses the configuration here to understand how // to render it. struct GlyphRenderConfig { GLuint texture = 0; glm::vec2 top_left, bottom_right; glm::vec4 fg_color, bg_color; glm::vec3 offset = glm::vec3(0.f, 0.f, 0.f); float offset_scale = 1.f; GlyphRenderConfig() = default; GlyphRenderConfig(const Glyph& glyph, glm::vec4 fg_color, glm::vec4 bg_color = glm::vec4()) : fg_color(fg_color), bg_color(bg_color) { texture = glyph.texture; top_left = glyph.top_left; bottom_right = glyph.bottom_right; } // By default, the glyph will be drawn proportionate to its space on a tile // which is not representative of the width of the tile so it will bias to // the left. center() corrects it for tile-based rendering. void center(); }; // This shader program handles its own initialization and rendering of glyphs. // The user is expected to set up the coordinate system and know the size of // each tile. class GlyphShaderProgram { GlProgram program_; GLuint vbo_ = 0; GLint vertex_pos_attr_ = -1; GLint tex_coord_attr_ = -1; GLint transform_uniform_ = -1; GLint texture_uniform_ = -1; GLint bg_color_uniform_ = -1; GLint fg_color_uniform_ = -1; GLint bottom_left_uniform_ = -1; GLint top_right_uniform_ = -1; public: Error init(); void render_glyph(glm::vec3 pos, float size, const GlyphRenderConfig& config) const; }; // Markers are drawn over most other elements and can denote tiles to which an // actor can move, attack, or the cursor's position. class MarkerShaderProgram { GlProgram program_; GLuint vbo_ = 0; GLint vertex_pos_attr_ = -1; GLint transform_uniform_ = -1; GLint color_uniform_ = -1; GLint stretch_uniform_ = -1; public: Error init(); void render_marker(glm::vec3 pos, float size, glm::vec4 color, glm::vec2 stretch = glm::vec2(1.f, 1.f)) const; };
[ "splinterofchaos@gmail.com" ]
splinterofchaos@gmail.com
af1118d6e960a251fd2e3a58a2d0417a7b8df722
80c10e1aab0738d4c30a832538558ea6d294c3ff
/PhysX.Net/PhysX.Net/Source/User Memory Reader Stream.cpp
15c3ad2e17e6a461aa441e22a53d71a9c7ba729a
[ "MIT" ]
permissive
corefan/PhysX.Net
4f2334520043aa7c9cfd96c054cc2ee30bf3974e
f1144841e397088301bacbd4b8e24f5066180f7c
refs/heads/master
2020-12-30T13:40:16.784563
2017-01-11T21:08:59
2017-01-11T21:08:59
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,304
cpp
#include "StdAfx.h" #include "User Memory Reader Stream.h" using namespace StillDesign::PhysX; UserMemoryReaderStream::UserMemoryReaderStream( const NxU8* data ) { _startBuffer = data; buffer = data; } UserMemoryReaderStream::~UserMemoryReaderStream() { //NX_DELETE_ARRAY(buffer); } NxU8 UserMemoryReaderStream::readByte() const { NxU8 b; memcpy(&b, buffer, sizeof(NxU8)); buffer += sizeof(NxU8); return b; } NxU16 UserMemoryReaderStream::readWord() const { NxU16 w; memcpy(&w, buffer, sizeof(NxU16)); buffer += sizeof(NxU16); return w; } NxU32 UserMemoryReaderStream::readDword() const { NxU32 d; memcpy(&d, buffer, sizeof(NxU32)); buffer += sizeof(NxU32); return d; } float UserMemoryReaderStream::readFloat() const { float f; memcpy(&f, buffer, sizeof(float)); buffer += sizeof(float); return f; } double UserMemoryReaderStream::readDouble() const { double f; memcpy(&f, buffer, sizeof(double)); buffer += sizeof(double); return f; } void UserMemoryReaderStream::readBuffer(void* dest, NxU32 size) const { memcpy(dest, buffer, size); buffer += size; } const NxU8* UserMemoryReaderStream::GetStartBuffer() { return _startBuffer; } void UserMemoryReaderStream::Reset() { buffer = _startBuffer; }
[ "chad@stilldesign.co.nz" ]
chad@stilldesign.co.nz
17b5b869a019abe7854501f78ac69defbcf9da4d
46b6b721122b2df17f4b890b34525290aaecaf42
/哈希表.cpp
29825933ce94ecac23870a2c8a25700c5ec72841
[]
no_license
1846585870/c-language
2e7413a42788dc59a2fe754d64d791e128b043d3
9e3df83817aa6e4db64393af0652b3001f863ccd
refs/heads/master
2018-10-15T03:00:45.787710
2018-09-08T03:26:30
2018-09-08T03:26:30
113,932,843
0
0
null
null
null
null
GB18030
C++
false
false
3,190
cpp
#include<iostream> #define Hashsize 10 #define maxint 32767 #define ok 1 using namespace std; typedef struct HashNode { int num; //序号 int key; //关键字 struct HashNode *next; //next指针 }HashNode; int a[Hashsize]={10,9,1,23,14,36,55,20,84,27}; int b[Hashsize]; HashNode HashT[Hashsize]; int H(int key) { return key % 7; } //线性探测 int Create_1() { int i,j; for(i=0;i<Hashsize;i++) b[i]=maxint; //数组初始化 for(i=1;i<Hashsize;i++) { if(b[H(a[i])]==maxint) b[H(a[i])]=a[i]; else { for(j=H(a[i]);j<Hashsize;j++) { if(b[j]==maxint) {b[j]=a[i];break;} else if(j==Hashsize-1) {j=0;continue;} else continue; } } } return ok; } void Print_1() { int i; cout << "地址探测法:" << '\n'; for(i=0;i<Hashsize;i++) cout << i << " " << b[i] << '\n'; } //链地址法 int Create_2() { int i;HashNode *p,*q; for(i=0;i<Hashsize;i++) {HashT[i].num=i;HashT[i].key=maxint;HashT[i].next=NULL;}//初始化 for(i=1;i<Hashsize;i++) { if(HashT[H(a[i])].key==maxint) HashT[H(a[i])].key=a[i]; else { for(p=&HashT[H(a[i])];p->next!=NULL;p=p->next); q=new HashNode; q->key=a[i];q->num=i;q->next=NULL; p->next=q; } } return ok; } void Print_2() { int i;HashNode *p; cout << "链地址法:" << '\n'; for(i=0;i<Hashsize;i++) { if(HashT[i].key==maxint && HashT[i].next==NULL) cout << i << "->" << "null" << '\n'; else { cout << i << "->" ; for(p=&HashT[H(i)];p!=NULL;p=p->next) cout << p->key << "->"; cout << "null" <<'\n'; } } } void Insert_(int key) { //线性探测 插入_43 int j;HashNode *p,*q; for(j=H(key);j<Hashsize;j++) { if(b[j]==maxint) b[j]=key; else { if(j==Hashsize-1){j=0;continue;} else continue; } } //链地址 插入_43 for(p=&HashT[H(key)];p->next!=NULL;p=p->next); q=new HashNode;q->key=key;q->num=H(key);q->next=NULL; p->next=q; } void Delete_(int key) { //线性探测 删除_36 int i,m;HashNode *p,*q; for(i=0;i<Hashsize;i++) if(b[i]==key) {b[i]=maxint;m=i;} for(i=m;i<Hashsize;i++) { if(H(b[i])<i) { b[m]=b[i]; b[i]=maxint; m=i; } } //链地址 删除_36 p=&HashT[H(key)]; if(p->key==key&&p->next==NULL) p->key=maxint; else if(p->key==key&&p->next!=NULL) { q=p->next;p->key=q->key;p->next=q->next;delete q; } else { for(q=p,p=p->next;p!=NULL;q=p,p=p->next) if(p->key==key) {q->next=p->next;delete p;} } } int main() { Create_1(); Print_1(); Create_2(); Print_2(); Insert_(43); Delete_(36); Print_1(); Print_2(); return 0; }
[ "32772819+1846585870@users.noreply.github.com" ]
32772819+1846585870@users.noreply.github.com
a08fc64aa95801327825eb57eb0969ac2c8d8439
5c643bf788713a0f5073f027f8e17d0e58e15da4
/Geometry/Form.h
f283c11af1060b0b83f4218a033fa366a0e713f8
[]
no_license
matthcol/CPP_202101
723fd5dfc4c0ef4a5806faac94e1dfffab94b3c1
d30f8dae24813bf7c7c60d50584f8287ece5b7c3
refs/heads/master
2023-02-17T14:38:44.596213
2021-01-15T16:02:24
2021-01-15T16:02:24
329,845,690
0
0
null
null
null
null
UTF-8
C++
false
false
627
h
/* * Form.h * * Created on: 14 janv. 2021 * Author: Matthias */ #ifndef FORM_H_ #define FORM_H_ #include <string> #include <optional> // abstract class (at least one abstract method) class Form { private: std::string name; public: Form() noexcept; Form(const std::string &name); virtual ~Form(); const std::string& getName() const; void setName(const std::string &name); // abstract method (uml) i.e. pure virtual method (c++) virtual void translate(int deltaX, int deltaY)=0; virtual std::string toString() const=0; }; std::optional<std::string> nameFromForm(const Form& form); #endif /* FORM_H_ */
[ "matthias.colin@gmail.com" ]
matthias.colin@gmail.com
523e0dd033c61959dceb369ffaf8b0ae617ab032
f0a32b06efbaed4db97c04c74c6c47871d099c0d
/NDKPlayer/app/src/main/cpp/video/PlayerView.h
3e82bac34c941640fd40aaf01349af8eb8ac542f
[]
no_license
yetote/StudyNote
7caf3530017a9d0b3551b6f69a0e9341a5bdefef
d4ef6488e95461f772340caf331467ddbf8894d4
refs/heads/master
2021-05-25T09:36:23.460818
2020-10-28T08:24:36
2020-10-28T08:24:36
126,998,914
1
1
null
2018-03-27T15:02:46
2018-03-27T14:25:45
null
UTF-8
C++
false
false
913
h
// // Created by ether on 2018/10/29. // #ifndef BAMBOO_PLAYERVIEW_H #define BAMBOO_PLAYERVIEW_H #include "../util/BlockQueue.h" #include "GLUtil.h" #include "EGLUtil.h" #include <GLES2/gl2ext.h> #include <GLES2/gl2.h> #include <android/log.h> #include <EGL/egl.h> extern "C" { #include "libavutil/frame.h" }; class PlayerView { public: GLfloat *vertex; GLfloat *vertexArray; GLfloat *textureArray; GLuint program; GLuint *textureArr; GLint aPosition, aColor; GLint aTextureCoordinates; GLint uTexY, uTexU, uTexV; void play(BlockQueue<AVFrame *> &blackQueue, const char *vertexCode, const char *fragCode, ANativeWindow *window, int w, int h); private: void initEGL(ANativeWindow *window); void initVertex(); void initLocation(const char *vertexCode, const char *fragCode); void draw(AVFrame *frame); }; #endif //BAMBOO_PLAYERVIEW_H
[ "503779938@qq.com" ]
503779938@qq.com
56c1c08a87e334442bcabb789a8e38f7cfd5b2c6
d30a183371dbc9294d84bb0fbb6e1ea784ae3e66
/src/stanExports_signature_model_prior.cc
6ff535021015600d66d3d4d410aeff6c74bd196e
[]
no_license
mnstaube/SignIT
eff4b3f526d95cec448544a20d01f835f73a9f0c
4fb2cae666319a5c7ebc93897a1183d57472e4eb
refs/heads/master
2023-04-26T11:17:23.016444
2019-12-01T22:00:00
2019-12-01T22:00:00
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,029
cc
// Generated by rstantools. Do not edit by hand. #include <Rcpp.h> using namespace Rcpp ; #include "stanExports_signature_model_prior.h" RCPP_MODULE(stan_fit4signature_model_prior_mod) { class_<rstan::stan_fit<stan_model, boost::random::ecuyer1988> >("model_signature_model_prior") .constructor<SEXP,SEXP,SEXP>() .method("call_sampler", &rstan::stan_fit<stan_model, boost::random::ecuyer1988> ::call_sampler) .method("param_names", &rstan::stan_fit<stan_model, boost::random::ecuyer1988> ::param_names) .method("param_names_oi", &rstan::stan_fit<stan_model, boost::random::ecuyer1988> ::param_names_oi) .method("param_fnames_oi", &rstan::stan_fit<stan_model, boost::random::ecuyer1988> ::param_fnames_oi) .method("param_dims", &rstan::stan_fit<stan_model, boost::random::ecuyer1988> ::param_dims) .method("param_dims_oi", &rstan::stan_fit<stan_model, boost::random::ecuyer1988> ::param_dims_oi) .method("update_param_oi", &rstan::stan_fit<stan_model, boost::random::ecuyer1988> ::update_param_oi) .method("param_oi_tidx", &rstan::stan_fit<stan_model, boost::random::ecuyer1988> ::param_oi_tidx) .method("grad_log_prob", &rstan::stan_fit<stan_model, boost::random::ecuyer1988> ::grad_log_prob) .method("log_prob", &rstan::stan_fit<stan_model, boost::random::ecuyer1988> ::log_prob) .method("unconstrain_pars", &rstan::stan_fit<stan_model, boost::random::ecuyer1988> ::unconstrain_pars) .method("constrain_pars", &rstan::stan_fit<stan_model, boost::random::ecuyer1988> ::constrain_pars) .method("num_pars_unconstrained", &rstan::stan_fit<stan_model, boost::random::ecuyer1988> ::num_pars_unconstrained) .method("unconstrained_param_names", &rstan::stan_fit<stan_model, boost::random::ecuyer1988> ::unconstrained_param_names) .method("constrained_param_names", &rstan::stan_fit<stan_model, boost::random::ecuyer1988> ::constrained_param_names) .method("standalone_gqs", &rstan::stan_fit<stan_model, boost::random::ecuyer1988> ::standalone_gqs) ; }
[ "ezhao@gphost10.bcgsc.ca" ]
ezhao@gphost10.bcgsc.ca
dc2a41e5d677acb06c5d0d689aba5224b2ab72ec
aea727863a6396a8ca59c4456c5ecfb55ee33a36
/casse/changeCasse.cpp
2c90ee7773db03f386c7520a81f9c692d30859f5
[]
no_license
SimonClerbout/casse
a0f56b84b895cba7c8931b2d66a1635a161086c7
79717f4640ffc6bf013d3c7e02672886db25b3a2
refs/heads/master
2021-04-28T06:42:02.743256
2018-02-20T13:55:35
2018-02-20T13:55:35
122,206,785
0
0
null
null
null
null
UTF-8
C++
false
false
525
cpp
// changeCasse.cpp // g++ -std=c++11 -Wall -Wextra -o changeCasse.out changeCasse.cpp #include <cctype> #include <iostream> int main(int argc, char* argv[]) { std::string texte; std::cin >> texte; // change les minuscules par des majuscules et réciproquement for (char & c : texte) { if (std::islower(c)) std::cout << char(std::toupper(c)); else if (std::isupper(c)) std::cout << char(std::tolower(c)); else std::cout << c; } return 0; }
[ "simon.clerbout@laposte.net" ]
simon.clerbout@laposte.net
b2fa4a77a3054a65e942f9c686ca532028fcda44
242e6870daf9dfeee0ebb4178d67ba2dcc68cf36
/src/MatchCallbackBase.cpp
2a00b747dfc9f852ca3bab9da74a2c1a7c7d45b6
[ "MIT" ]
permissive
xiaohongchen1991/clang-xform
6bf447f3659763bc5bc4a0bd352a44b9f93f9272
bd0cf899760b53b24e10ca4baab3c4e281535b97
refs/heads/master
2020-07-05T12:07:12.590130
2019-12-18T01:03:34
2019-12-18T01:03:34
202,644,471
3
1
null
null
null
null
UTF-8
C++
false
false
2,817
cpp
/* MIT License Copyright (c) 2019 Xiaohong Chen Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #include "MatchCallbackBase.hpp" #include "clang/Tooling/Inclusions/HeaderIncludes.h" #include "clang/Tooling/Inclusions/IncludeStyle.h" using namespace llvm; using namespace clang; using namespace clang::tooling; // if there is an existing header with match the regex, insert there, // otherwise, following this rule: // #include "...." // #include "header" // #include <...> llvm::Optional<clang::SourceLocation> MatchCallbackBase::InsertHeader(const clang::SourceManager& srcMgr, const clang::FileID& fileID, llvm::StringRef header, llvm::StringRef regex) { const FileEntry* fileEntry = srcMgr.getFileEntryForID(fileID); auto fileBuffer = srcMgr.getBufferData(fileID); IncludeStyle style; style.IncludeBlocks = IncludeStyle::IBS_Regroup; IncludeStyle::IncludeCategory cat_custom; cat_custom.Regex = regex.str(); cat_custom.Priority = 2; IncludeStyle::IncludeCategory cat_default; cat_default.Regex = "^\""; cat_default.Priority = 1; IncludeStyle::IncludeCategory cat_system; cat_system.Regex = "^<"; cat_system.Priority = 3; style.IncludeCategories.push_back(cat_custom); style.IncludeCategories.push_back(cat_default); style.IncludeCategories.push_back(cat_system); llvm::Optional<clang::SourceLocation> loc; if (auto replacement = HeaderIncludes(fileEntry->getName(), fileBuffer, style) .insert(header, false)) { MergeReplacement(replacement.getValue()); loc = srcMgr.getComposedLoc(fileID, replacement->getOffset()); } return loc; }
[ "xiaohong_chen1991@hotmail.com" ]
xiaohong_chen1991@hotmail.com
c9f00c351d9656b37df2adad0c54874d7695e0d6
67ce8ff142f87980dba3e1338dabe11af50c5366
/opencv/src/opencv/3rdparty/openexr/IlmImf/ImfDeepScanLineOutputPart.cpp
ef1265f8b85bd425cc0f5e7ff3e19d23d7517d90
[ "Libpng", "BSD-3-Clause", "JasPer-2.0", "IJG", "Zlib", "LicenseRef-scancode-unknown-license-reference", "Apache-2.0" ]
permissive
checksummaster/depthmovie
794ff1c5a99715df4ea81abd4198e8e4e68cc484
b0f1c233afdaeaaa5546e793a3e4d34c4977ca10
refs/heads/master
2023-04-19T01:45:06.237313
2021-04-30T20:34:16
2021-04-30T20:34:16
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,168
cpp
/////////////////////////////////////////////////////////////////////////// // // Copyright (c) 2011, Industrial Light & Magic, a division of Lucas // Digital Ltd. LLC // // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following disclaimer // in the documentation and/or other materials provided with the // distribution. // * Neither the name of Industrial Light & Magic nor the names of // its contributors may be used to endorse or promote products derived // from this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. // /////////////////////////////////////////////////////////////////////////// #include "ImfDeepScanLineOutputPart.h" #include "ImfNamespace.h" OPENEXR_IMF_INTERNAL_NAMESPACE_SOURCE_ENTER DeepScanLineOutputPart::DeepScanLineOutputPart(MultiPartOutputFile& multiPartFile, int partNumber) { file = multiPartFile.getOutputPart<DeepScanLineOutputFile>(partNumber); } const char * DeepScanLineOutputPart::fileName () const { return file->fileName(); } const Header & DeepScanLineOutputPart::header () const { return file->header(); } void DeepScanLineOutputPart::setFrameBuffer (const DeepFrameBuffer &frameBuffer) { file->setFrameBuffer(frameBuffer); } const DeepFrameBuffer & DeepScanLineOutputPart::frameBuffer () const { return file->frameBuffer(); } void DeepScanLineOutputPart::writePixels (int numScanLines) { file->writePixels(numScanLines); } int DeepScanLineOutputPart::currentScanLine () const { return file->currentScanLine(); } void DeepScanLineOutputPart::copyPixels (DeepScanLineInputFile &in) { file->copyPixels(in); } void DeepScanLineOutputPart::copyPixels (DeepScanLineInputPart &in) { file->copyPixels(in); } void DeepScanLineOutputPart::updatePreviewImage (const PreviewRgba newPixels[]) { file->updatePreviewImage(newPixels); } OPENEXR_IMF_INTERNAL_NAMESPACE_SOURCE_EXIT
[ "alex@shimadzu.ca" ]
alex@shimadzu.ca
7c9b86b167602c12c1bf223b03960ee06ce9b6be
c40dbdc0627f84052c0b2d80233beba236a1de48
/P09/mainwin.h
071267faa004a9a9ef305e9a8ac73a2ff621c689
[]
no_license
bxs8072/cse1325
1e15c9ecf0db0ac19dabb8657766580d1287efa8
a41804d5cac3545f689de58d9af66cf5295d87a7
refs/heads/master
2023-01-24T17:06:50.400116
2020-12-08T07:38:34
2020-12-08T07:38:34
291,520,221
0
0
null
null
null
null
UTF-8
C++
false
false
1,188
h
#ifndef __MAINWIN_H #define __MAINWIN_H #include <gtkmm.h> #include "store.h" #include <fstream> class Mainwin : public Gtk::Window { public: Mainwin(); virtual ~Mainwin(); protected: void on_new_store_click(bool isNewStore); // Create a new store void on_save_click(); void on_save_as_click(); void on_open_click(); void on_new_customer_click(); // Create a new customer void on_new_tool_click(); // Create a new tool product void on_new_plant_click(); // Create a new plant product void on_new_mulch_click(); // Create a new mulch product void on_view_products_click(); // Update the display void on_view_customers_click(); // Update the display void on_about_click(); void on_quit_click(); // Exit the app private: int get_int(std::string prompt); double get_double(std::string prompt); std::string get_string(std::string prompt); std::string filename; Store* store; // The currently active store Gtk::Label* display; // Status message display }; #endif
[ "bxs8072@mavs.uta.edu" ]
bxs8072@mavs.uta.edu
1b12b52b767194a668701fa5929736f0776a43cb
f0b7bcc41298354b471a72a7eeafe349aa8655bf
/codebase/apps/radar/src/Iq2Dsr/Iq2Dsr.cc
a7f2d0c122feb0cd2701cb7d6ba240da350cf2af
[ "BSD-3-Clause" ]
permissive
NCAR/lrose-core
23abeb4e4f1b287725dc659fb566a293aba70069
be0d059240ca442883ae2993b6aa112011755688
refs/heads/master
2023-09-01T04:01:36.030960
2023-08-25T00:41:16
2023-08-25T00:41:16
51,408,988
90
53
NOASSERTION
2023-08-18T21:59:40
2016-02-09T23:36:25
C++
UTF-8
C++
false
false
30,760
cc
// *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* // ** Copyright UCAR (c) 1990 - 2016 // ** University Corporation for Atmospheric Research (UCAR) // ** National Center for Atmospheric Research (NCAR) // ** Boulder, Colorado, USA // ** BSD licence applies - redistribution and use in source and binary // ** forms, with or without modification, are permitted provided that // ** the following conditions are met: // ** 1) If the software is modified to produce derivative works, // ** such modified software should be clearly marked, so as not // ** to confuse it with the version available from UCAR. // ** 2) Redistributions of source code must retain the above copyright // ** notice, this list of conditions and the following disclaimer. // ** 3) Redistributions in binary form must reproduce the above copyright // ** notice, this list of conditions and the following disclaimer in the // ** documentation and/or other materials provided with the distribution. // ** 4) Neither the name of UCAR nor the names of its contributors, // ** if any, may be used to endorse or promote products derived from // ** this software without specific prior written permission. // ** DISCLAIMER: THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS // ** OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED // ** WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. // *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* /////////////////////////////////////////////////////////////// // Iq2Dsr.cc // // Iq2Dsr object // // Mike Dixon, RAP, NCAR, P.O.Box 3000, Boulder, CO, 80307-3000, USA // // May 2006 // /////////////////////////////////////////////////////////////// // // Iq2Dsr reads IQ time-series data, computes the // moments and writes the contents into a DsRadar FMQ. // //////////////////////////////////////////////////////////////// #include <cerrno> #include <cassert> #include <iostream> #include <toolsa/pmu.h> #include "EgmCorrection.hh" #include "SpectraPrint.hh" #include "Iq2Dsr.hh" using namespace std; //////////////////////////////////////////////////// // Constructor Iq2Dsr::Iq2Dsr(int argc, char **argv) { _fmq = NULL; _calib = NULL; _beamScanMode = -1; _beamVolNum = -1; _prevVolNum = -1; _beamSweepNum = -1; _prevSweepNum = -1; _currentScanMode = -1; _currentVolNum = -1; _currentSweepNum = -1; _endOfVolFlag = false; _endOfSweepFlag = false; _startOfSweepPending = false; _startOfVolPending = false; _endOfVolPending = false; _antennaTransition = false; _prevAntennaTransition = false; _inTransition = false; _prevAngle = 0.0; _motionDirn = 0.0; _nRaysInSweep = 0; _volMinEl = 180.0; _volMaxEl = -180.0; _nBeamsThisVol = 0; _prevPrtForEndOfVol = -1; _prevPulseWidthForEndOfVol = -1; _prevPrtForParams = -1; _prevPrtForMoments = -1; _prevNGatesForParams = -1; _prevScanModeForParams = -1; _prevEl = -180; _nBeamsSinceParams = 0; _beamReader = NULL; _writeThread = NULL; pthread_mutex_init(&_debugPrintMutex, NULL); constructorOK = true; // set programe name _progName = "Iq2Dsr"; ucopyright((char *) _progName.c_str()); // get command line args if (_args.parse(argc, argv, _progName)) { cerr << "ERROR: " << _progName << endl; cerr << "Problem with command line args" << endl; constructorOK = false; return; } // get TDRP params _paramsPath = (char *) "unknown"; if (_params.loadFromArgs(argc, argv, _args.override.list, &_paramsPath)) { cerr << "ERROR: " << _progName << endl; cerr << "Problem with TDRP parameters" << endl; constructorOK = false; return; } if (_params.discard_beams_with_missing_pulses) { _params.check_for_missing_pulses = pTRUE; } // initalize calibration object, read in starting calibration _calib = new Calibration(_params); _calib->readCal(_params.startup_cal_file); if (!_calib->isCalAvailable()) { cerr << "ERROR - Iq2Dsr" << endl; cerr << " Cannot read startup calibration, file: " << _params.startup_cal_file << endl; constructorOK = false; return; } // set up vector of moments manager objects for (int ii = 0; ii < _params.moments_params_n; ii++) { MomentsMgr *mgr = new MomentsMgr(_progName, _params); mgr->init(_params._moments_params[ii]); _momentsMgrArray.push_back(mgr); } if (_momentsMgrArray.size() < 1) { cerr << "ERROR: Iq2Dsr::Iq2Dsr." << endl; cerr << " No algorithm geometry specified."; cerr << " The param moments_menuetry must have at least 1 entry." << endl; constructorOK = false; return; } // create the beam reader pthread_mutex_init(&_beamRecyclePoolMutex, NULL); _beamReader = new BeamReader(_progName, _params, _args, _beamRecyclePool, _beamRecyclePoolMutex, _momentsMgrArray); if (!_beamReader->constructorOK) { constructorOK = false; } // create the output queue _fmq = new OutputFmq(_progName, _params); if (!_fmq->constructorOK) { constructorOK = false; return; } // check for multi-threaded operation if (_params.use_multiple_threads) { // set up compute thread pool _threadPoolSize = _params.n_compute_threads; for (int ii = 0; ii < _threadPoolSize; ii++) { ComputeThread *thread = new ComputeThread; thread->setApp(this); pthread_t pth = 0; pthread_create(&pth, NULL, _computeMomentsInThread, thread); thread->setThreadId(pth); _threadPool.push_back(thread); } _threadPoolInsertPos = 0; _threadPoolRetrievePos = 0; // create write thread _writeThread = new WriteThread; _writeThread->setApp(this); pthread_t writeTh; pthread_create(&writeTh, NULL, _handleWrites, _writeThread); _writeThread->setThreadId(writeTh); // signal write thread to start up _writeThread->signalWorkToStart(); } // create SpectraFile object SpectraPrint::Inst(_params); // initialize EGM correction for georef height, if needed if (_params.correct_altitude_for_egm) { EgmCorrection &egm = EgmCorrection::inst(); egm.setParams(_params); if (egm.loadEgmData()) { cerr << "ERROR: " << _progName << endl; cerr << " Cannot read in EGM data" << endl; cerr << " File: " << _params.egm_2008_geoid_file << endl; constructorOK = false; return; } } // init process mapper registration PMU_auto_init((char *) _progName.c_str(), _params.instance, PROCMAP_REGISTER_INTERVAL); // start time struct timeval tval; gettimeofday(&tval, NULL); _startTimeSecs = tval.tv_sec + tval.tv_usec / 1.0e6; _nGatesComputed = 0; } ////////////////////////////////////////////////////////////////// // destructor Iq2Dsr::~Iq2Dsr() { if (_params.debug) { cerr << "Entering Iq2Dsr destructor" << endl; } // unregister process PMU_auto_unregister(); // free memory if (_beamReader) { delete _beamReader; } for (size_t ii = 0; ii < _momentsMgrArray.size(); ii++) { delete _momentsMgrArray[ii]; } _momentsMgrArray.clear(); if (_fmq) { delete _fmq; } if (_calib) { delete _calib; } for (size_t ii = 0; ii < _beamRecyclePool.size(); ii++) { delete _beamRecyclePool[ii]; } pthread_mutex_destroy(&_beamRecyclePoolMutex); pthread_mutex_destroy(&_debugPrintMutex); if (_params.debug) { cerr << "Exiting Iq2Dsr destructor" << endl; } } void Iq2Dsr::_cleanUp() { if (_params.debug) { cerr << "Entering _cleanUp" << endl; } _writeRemainingBeamsOnExit(); // set threads to exit if (_writeThread) { // write thread will process all beams waiting in the // compute queue, and then exit _writeThread->setExitFlag(true); } for (size_t ii = 0; ii < _threadPool.size(); ii++) { _threadPool[ii]->setExitFlag(true); _threadPool[ii]->signalWorkToStart(); } // end time struct timeval tval; gettimeofday(&tval, NULL); _endTimeSecs = tval.tv_sec + tval.tv_usec / 1.0e6; if (_params.debug) { double duration = _endTimeSecs - _startTimeSecs; double gatesPerSec = _nGatesComputed / duration; cerr << "Run stats:" << endl; cerr << " Duration: " << duration << endl; cerr << " N Gates: " << _nGatesComputed << endl; cerr << " Gates per second: " << gatesPerSec << endl; } if (_params.debug) { cerr << "Exiting _cleanUp" << endl; } } ////////////////////////////////////////////////// // Run int Iq2Dsr::Run () { int iret = 0; if (_params.use_multiple_threads) { iret = _runMultiThreaded(); } else { iret = _runSingleThreaded(); } _cleanUp(); return iret; } ////////////////////////////////////////////////// // Run in single threaded mode int Iq2Dsr::_runSingleThreaded() { int iret = 0; PMU_auto_register("Run single threaded"); Beam *latestBeam = NULL; while (true) { PMU_auto_register("Getting next beam"); // get next incoming beam Beam *beam = _beamReader->getNextBeam(); if (beam == NULL) { break; } latestBeam = beam; _nGatesComputed += beam->getNGates(); // process the current beam if (_processBeamSingleThreaded(beam)) { iret = -1; break; } _nBeamsThisVol++; _nBeamsSinceParams++; } // while // put final end of sweep and volume flags if (latestBeam != NULL) { _fmq->putEndOfTilt(_currentSweepNum, *latestBeam); _fmq->putEndOfVolume(_currentVolNum, *latestBeam); } return iret; } // #define TESTING #ifdef TESTING ////////////////////////////////////////////////// // Run in multi-threaded mode int Iq2Dsr::_runMultiThreaded() { PMU_auto_register("Run multi-threaded"); int iret = 0; Beam *latestBeam = NULL; Beam *beams[30]; for (int ii = 0; ii < 30; ii++) { beams[ii] = _beamReader->getNextBeam(); } for (int ii = 0; ii < 10000; ii++) { // get next incoming beam Beam *beam = beams[ii % 30]; if (beam == NULL) { continue; } _nGatesComputed += beam->getNGates(); latestBeam = beam; // process the current beam if (_processBeamMultiThreaded(beam)) { iret = -1; break; } _nBeamsThisVol++; _nBeamsSinceParams++; } // while // put final end of sweep and volume flags if (latestBeam != NULL) { _fmq->putEndOfTilt(_currentSweepNum, latestBeam); _fmq->putEndOfVolume(_currentVolNum, latestBeam); } return iret; } #else ////////////////////////////////////////////////// // Run in multi-threaded mode int Iq2Dsr::_runMultiThreaded() { PMU_auto_register("Run multi-threaded"); int iret = 0; Beam *latestBeam = NULL; while (true) { PMU_auto_register("Getting next beam"); // get next incoming beam Beam *beam = _beamReader->getNextBeam(); if (beam == NULL) { break; } _nGatesComputed += beam->getNGates(); latestBeam = beam; // process the current beam if (_processBeamMultiThreaded(beam)) { iret = -1; break; } _nBeamsThisVol++; _nBeamsSinceParams++; } // while // put final end of sweep and volume flags if (latestBeam != NULL) { _fmq->putEndOfTilt(_currentSweepNum, *latestBeam); _fmq->putEndOfVolume(_currentVolNum, *latestBeam); } return iret; } #endif /////////////////////////////////////// // process beam in single threaded mode int Iq2Dsr::_processBeamSingleThreaded(Beam *beam) { // get a new calibration, as appropriate _calib->loadCal(beam); // set the calibration data on the beam // this makes a copy of the DsRadarCalib object, so that // it will not change while the compute threads are running beam->setCalib(_calib->getIwrfCalib()); // compute the moments for this beam beam->computeMoments(); // write the sweep and volume flags _handleSweepAndVolChange(beam); // write the radar params, field params and calibration _writeParamsAndCalib(beam); // write out beam beam->setVolNum(_currentVolNum); beam->setSweepNum(_currentSweepNum); if (_fmq->writeBeam(*beam)) { cerr << "ERROR - Iq2Dsr::_processFile" << endl; cerr << " Cannot write the beam data to output FMQ" << endl; return -1; } #ifdef TESTING #else pthread_mutex_lock(&_beamRecyclePoolMutex); _beamRecyclePool.push_front(beam); pthread_mutex_unlock(&_beamRecyclePoolMutex); #endif return 0; } /////////////////////////////////////// // process beam in multi-threaded mode int Iq2Dsr::_processBeamMultiThreaded(Beam *beam) { // get a new calibration, as appropriate _calib->loadCal(beam); // set the calibration data on the beam // this makes a copy of the DsRadarCalib object, so that // it will not change while the compute threads are running beam->setCalib(_calib->getIwrfCalib()); // get an available thread from the thread pool ComputeThread *thread = _threadPool[_threadPoolInsertPos]; _threadPoolInsertPos = (_threadPoolInsertPos + 1) % _threadPoolSize; thread->waitToBeAvailable(); // set the beam on the thread, and start the computations thread->setBeam(beam); thread->setBeamReadyForWrite(false); thread->signalWorkToStart(); return 0; } ///////////////////////////////////////////////// // write the parameters and calibration int Iq2Dsr::_writeParamsAndCalib(const Beam *beam) { // put the params if needed if (_beamReader->isOpsInfoNew() || _endOfSweepFlag || _endOfVolFlag || (_nBeamsSinceParams > _params.nbeams_for_params_and_calib) || (fabs(beam->getPrt() - _prevPrtForParams) > 1.0) || (beam->getNGatesOut() != _prevNGatesForParams) || (beam->getScanMode() != _prevScanModeForParams)) { if (_params.debug >= Params::DEBUG_EXTRA_VERBOSE) { cerr << "Writing params and calibs, for following reasons:" << endl; if (_beamReader->isOpsInfoNew()) cerr << "==>> ops info is new" << endl; if(_endOfSweepFlag) cerr << "==>> end of sweep" << endl; if (_endOfVolFlag) cerr << "==>> end of volume" << endl; if (_nBeamsSinceParams > _params.nbeams_for_params_and_calib) { cerr << "==>> _nBeamsSinceParams: " << _nBeamsSinceParams << endl; } if (fabs(beam->getPrt() - _prevPrtForParams) > 1.0) { cerr << "==>> prt has changed to: " << beam->getPrt() << endl; } if (beam->getNGatesOut() != _prevNGatesForParams) { cerr << "==>> ngates out has changed to: " << beam->getNGatesOut() << endl; } if (beam->getScanMode() != _prevScanModeForParams) { cerr << "==>> scan mode has changed to: " << beam->getScanMode() << endl; } } if (_fmq->writeParams(*beam)) { cerr << "ERROR - Iq2Dsr::_computeMoments" << endl; cerr << " Cannot write the params to the queue" << endl; return -1; } if (_fmq->writeCalib(*beam)) { cerr << "ERROR - Iq2Dsr::_computeMoments" << endl; cerr << " Cannot write the calib info to the queue" << endl; return -1; } if (_fmq->writeStatusXml(*beam)) { cerr << "ERROR - Iq2Dsr::_computeMoments" << endl; cerr << " Cannot write the status XML to the queue" << endl; return -1; } _prevPrtForParams = beam->getPrt(); _prevNGatesForParams = beam->getNGatesOut(); _prevScanModeForParams = beam->getScanMode(); _nBeamsSinceParams = 0; } return 0; } /////////////////////////////////////////////////////////// // Thread function to compute moments void *Iq2Dsr::_computeMomentsInThread(void *thread_data) { // get thread data from args ComputeThread *compThread = (ComputeThread *) thread_data; Iq2Dsr *app = compThread->getApp(); assert(app); while (true) { // wait for main to unlock start mutex on this thread compThread->waitForStartSignal(); // if exit flag is set, app is done, exit now if (compThread->getExitFlag()) { if (app->getParams().debug >= Params::DEBUG_VERBOSE) { pthread_mutex_t *debugPrintMutex = app->getDebugPrintMutex(); pthread_mutex_lock(debugPrintMutex); cerr << "====>> compute thread exiting" << endl; pthread_mutex_unlock(debugPrintMutex); } compThread->signalParentWorkIsComplete(); return NULL; } // compute moments Beam *beam = compThread->getBeam(); if (beam != NULL) { if (app->getParams().debug >= Params::DEBUG_VERBOSE) { pthread_mutex_t *debugPrintMutex = app->getDebugPrintMutex(); pthread_mutex_lock(debugPrintMutex); cerr << "======>> starting beam compute, el, az: " << beam->getEl() << ", " << beam->getAz() << endl; pthread_mutex_unlock(debugPrintMutex); } // compute moments for this beam beam->computeMoments(); compThread->setBeamReadyForWrite(true); if (app->getParams().debug >= Params::DEBUG_VERBOSE) { pthread_mutex_t *debugPrintMutex = app->getDebugPrintMutex(); pthread_mutex_lock(debugPrintMutex); cerr << "======>> done with beam compute, el, az" << beam->getEl() << ", " << beam->getAz() << endl; pthread_mutex_unlock(debugPrintMutex); } } // unlock done mutex compThread->signalParentWorkIsComplete(); } // while return NULL; } /////////////////////////////////////////////////////////// // Thread function to handle writes void *Iq2Dsr::_handleWrites(void *thread_data) { // get thread data from args WriteThread *writeThread = (WriteThread *) thread_data; Iq2Dsr *app = writeThread->getApp(); assert(app); // wait for main to unlock start mutex on this thread writeThread->waitForStartSignal(); // call method to check for new data and write it int iret = app->writeBeams(); writeThread->setReturnCode(iret); if (app->getParams().debug >= Params::DEBUG_VERBOSE) { pthread_mutex_t *debugPrintMutex = app->getDebugPrintMutex(); pthread_mutex_lock(debugPrintMutex); cerr << "==>> write thread exited" << endl; pthread_mutex_unlock(debugPrintMutex); } // unlock done mutex writeThread->signalParentWorkIsComplete(); return NULL; } /////////////////////////////////////////////////////////// // Thread function to write out beams to FMQ int Iq2Dsr::writeBeams() { while (true) { if (_writeThread->getExitFlag()) { // exit flag is set, app is done, return now if (_params.debug >= Params::DEBUG_VERBOSE) { pthread_mutex_lock(&_debugPrintMutex); cerr << "==>> write thread got exit flag" << endl; pthread_mutex_unlock(&_debugPrintMutex); } return 0; } // retrieve next thread ComputeThread *thread = _threadPool[_threadPoolRetrievePos]; // confirm the done status of the thread thread->waitForWorkToComplete(); // is exit flag set on thread if (thread->getExitFlag()) { return 0; } // advance retrieve position _threadPoolRetrievePos = (_threadPoolRetrievePos + 1) % _threadPoolSize; // get the beam from the thread Beam *beam = thread->getBeam(); if (beam != NULL && thread->getBeamReadyForWrite()) { // write the sweep and volume flags _handleSweepAndVolChange(beam); // write the radar params, field params and calibration _writeParamsAndCalib(beam); // write beam to FMQ beam->setVolNum(_currentVolNum); beam->setSweepNum(_currentSweepNum); if (_fmq->writeBeam(*beam)) { cerr << "ERROR - Iq2Dsr::_writeBeams" << endl; cerr << " Cannot write the beam data to output FMQ" << endl; _writeThread->setReturnCode(-1); } // clear out beam pointer // clear ready for write flag thread->setBeam(NULL); thread->setBeamReadyForWrite(false); } // mark thread as available thread->markAsAvailable(); // delete the beam #ifdef TESTING #else pthread_mutex_lock(&_beamRecyclePoolMutex); _beamRecyclePool.push_front((Beam *) beam); pthread_mutex_unlock(&_beamRecyclePoolMutex); #endif } // while return -1; } /////////////////////////////////////////////////////////// // Write out remaining beams on exit int Iq2Dsr::_writeRemainingBeamsOnExit() { if (!_params.use_multiple_threads) { return 0; } int iret = 0; int startRetrievePos = _threadPoolRetrievePos; int endRetrievePos = (startRetrievePos - 1) % _threadPoolSize; int retrievePos = startRetrievePos; while (retrievePos != endRetrievePos) { // get thread pointer ComputeThread *thread = _threadPool[retrievePos]; // advance retrieve position retrievePos = (retrievePos + 1) % _threadPoolSize; // get the beam from the thread Beam *beam = thread->getBeam(); if (beam != NULL) { // check beam is ready if (!thread->getBeamReadyForWrite()) { umsleep(500); } if (thread->getBeamReadyForWrite()) { // write the sweep and volume flags _handleSweepAndVolChange(beam); // write the radar params, field params and calibration _writeParamsAndCalib(beam); // write beam to FMQ beam->setVolNum(_currentVolNum); beam->setSweepNum(_currentSweepNum); if (_fmq->writeBeam(*beam)) { cerr << "ERROR - Iq2Dsr::_writeBeams" << endl; cerr << " Cannot write the beam data to output FMQ" << endl; iret = -1; } } // if (thread->getBeamReadyForWrite()) // clear out beam pointer and ready for write flag thread->setBeam(NULL); thread->setBeamReadyForWrite(false); } // if (beam != NULL) } // while (_threadPoolRetrievePos != endRetrievePos) { return iret; } //////////////////////////////////////////////////////////////////////// // handle sweep and volume changes, writing flags as appropriate void Iq2Dsr::_handleSweepAndVolChange(const Beam *beam) { // initialize end of sweep and volume flags if (_params.use_volume_info_from_time_series) { _endOfVolFlag = beam->getEndOfVolFlag(); if (_endOfVolFlag) { _endOfVolPending = true; } } else { _endOfVolFlag = false; } if (_params.use_sweep_info_from_time_series) { _endOfSweepFlag = beam->getEndOfSweepFlag(); } else { _endOfSweepFlag = false; } // scan mode change _beamScanMode = beam->getScanMode(); if (_currentScanMode != _beamScanMode) { _fmq->putNewScanType(_beamScanMode, *beam); _currentScanMode = _beamScanMode; if (_params.set_end_of_sweep_when_antenna_changes_direction) { _endOfVolPending = true; } if (_params.debug) { cerr << "Scan mode change to: " << iwrf_scan_mode_to_str(_currentScanMode) << endl; } } if (!_params.use_volume_info_from_time_series) { // have to deduce the end of volume condition _deduceEndOfVol(beam); return; } // set vol and sweep num from beam _prevVolNum = _beamVolNum; _beamVolNum = beam->getVolNum(); if (_prevVolNum != _beamVolNum) { _endOfVolFlag = true; _endOfVolPending = true; } _prevSweepNum = _beamSweepNum; _beamSweepNum = beam->getSweepNum(); _antennaTransition = beam->getAntennaTransition(); // initialize first time through if (_currentVolNum < 0) { _currentVolNum = _beamVolNum; } if (_currentScanMode < 0) { _currentScanMode = _beamScanMode; } if (_currentSweepNum < 0) { _currentSweepNum = _beamSweepNum; } // if requested, use procedure to find dirn reversal to // trigger end of sweep if (_params.set_end_of_sweep_when_antenna_changes_direction) { if (_beamScanMode == IWRF_SCAN_MODE_RHI || _beamScanMode == IWRF_SCAN_MODE_IDLE || _beamScanMode == IWRF_SCAN_MODE_SECTOR) { _changeSweepOnDirectionChange(beam); return; } } if (_currentSweepNum != _beamSweepNum) { _endOfSweepFlag = true; } // set pending flags if (_endOfVolFlag) { _startOfVolPending = true; } if (_endOfSweepFlag) { _startOfSweepPending = true; } // end of sweep? if (_endOfSweepFlag) { _fmq->putEndOfTilt(_currentSweepNum, *beam); if (_params.debug) { cerr << "End of sweep num: " << _currentSweepNum << endl; } _currentSweepNum = _beamSweepNum; } // end of vol? if (_endOfVolFlag) { _putEndOfVol(beam); } // start of vol? if (_startOfVolPending) { if (!_params.delay_tilt_start_msg_during_ant_trans || !_antennaTransition) { _fmq->putStartOfVolume(_currentVolNum, *beam); if (_params.debug) { cerr << "Start of vol num: " << _currentVolNum << endl; } _startOfVolPending = false; } } // start of sweep? if (_startOfSweepPending) { if (!_params.delay_tilt_start_msg_during_ant_trans || !_antennaTransition) { _fmq->putStartOfTilt(_currentSweepNum, *beam); if (_params.debug) { cerr << "Start of sweep num: " << _currentSweepNum << endl; } _startOfSweepPending = false; } } } //////////////////////////////////////////////////////////////////////// // Put end of volume void Iq2Dsr::_putEndOfVol(const Beam *beam) { _fmq->putEndOfVolume(_currentVolNum, *beam); if (_params.debug) { cerr << "End of vol num: " << _currentVolNum << endl; } _currentVolNum = _beamVolNum; _nBeamsThisVol = 0; } //////////////////////////////////////////////////////////////////////// // Deduce end of vol condition void Iq2Dsr::_deduceEndOfVol(const Beam *beam) { // set tilt number to missing _endOfVolFlag = false; _currentSweepNum = -1; // set elev stats if (beam->getEl() < _prevEl && beam->getEl() < _volMinEl) { _volMinEl = beam->getEl(); } if (beam->getEl() > _prevEl && beam->getEl() > _volMaxEl) { _volMaxEl = beam->getEl(); } // guess at end of vol condition if (_params.set_end_of_vol_from_elev_angle) { if (_nBeamsThisVol >= _params.min_beams_per_vol) { if (_params.vol_starts_at_bottom) { double deltaEl = _volMaxEl - beam->getEl(); if (deltaEl > _params.elev_change_for_end_of_vol) { _endOfVolFlag = true; } } else { double deltaEl = beam->getEl() - _volMinEl; if (deltaEl > _params.elev_change_for_end_of_vol) { _endOfVolFlag = true; } } } } if (_params.set_end_of_vol_on_prf_change) { if (fabs(beam->getPrt() - _prevPrtForEndOfVol) > 1.0e-5) { _endOfVolFlag = true; _prevPrtForEndOfVol = beam->getPrt(); } } if (_params.set_end_of_vol_on_pulse_width_change) { if (fabs(beam->getPulseWidth() - _prevPulseWidthForEndOfVol) > 1.0e-5) { _endOfVolFlag = true; _prevPulseWidthForEndOfVol = beam->getPulseWidth(); } } if (_endOfVolFlag) { _fmq->putEndOfVolume(_currentVolNum, *beam); _currentVolNum++; _fmq->putStartOfVolume(_currentVolNum, *beam); _volMinEl = 180.0; _volMaxEl = -180.0; _nBeamsThisVol = 0; } _prevEl = beam->getEl(); } //////////////////////////////////////////////////////////////////////// // delay sweep change until antenna changes direction void Iq2Dsr::_changeSweepOnDirectionChange(const Beam *beam) { // no transitions in this mode, we change sweep number instanteously _antennaTransition = false; _nRaysInSweep++; // compute angle change double angle; if (_beamScanMode == IWRF_SCAN_MODE_RHI) { angle = beam->getEl(); } else { angle = beam->getAz(); } double deltaAngle = angle - _prevAngle; if (deltaAngle > 180) { deltaAngle -= 360.0; } else if (deltaAngle < -180) { deltaAngle += 360.0; } if (fabs(deltaAngle) < _params.required_delta_angle_for_antenna_direction_change) { return; } _prevAngle = angle; // check for dirn change bool dirnChange = false; if (_motionDirn * deltaAngle < 0) { dirnChange = true; } if (deltaAngle > 0) { _motionDirn = 1.0; } else { _motionDirn = -1.0; } // do nothing if number of rays is too small if (_nRaysInSweep < _params.min_rays_in_sweep_for_antenna_direction_change) { return; } // do nothing if the direction of motion has not changed if (!dirnChange && !_endOfVolFlag) { return; } // set flags on change _endOfSweepFlag = true; _fmq->putEndOfTilt(_currentSweepNum, *beam); if (dirnChange && _params.debug) { cerr << "Dirn change, end of sweep num: " << _currentSweepNum << endl; if (_params.debug >= Params::DEBUG_VERBOSE) { cerr << " nrays, el, az, angle, prevAngle, deltaAngle, _motionDirn, dirnChange: " << _nRaysInSweep << ", " << beam->getEl() << ", " << beam->getAz() << ", " << angle << ", " << _prevAngle << ", " << deltaAngle << ", " << _motionDirn << ", " << dirnChange << endl; } } _nRaysInSweep = 0; // increment sweep number if (_endOfVolPending) { _endOfVolFlag = true; _endOfVolPending = false; } if (!_endOfVolFlag) { _currentSweepNum++; } // end of vol? bool maxSweepReached = false; if (_currentSweepNum > _params.max_sweeps_in_vol_for_antenna_direction_change) { _endOfVolFlag = true; maxSweepReached = true; } if (_endOfVolFlag) { _fmq->putEndOfVolume(_currentVolNum, *beam); if (_params.debug) { cerr << "End of vol num: " << _currentVolNum << endl; } if (maxSweepReached) { _currentVolNum++; } else { _currentVolNum = _beamVolNum; } _fmq->putStartOfVolume(_currentVolNum, *beam); if (_params.debug) { cerr << "Start of vol num: " << _currentVolNum << endl; } _nBeamsThisVol = 0; _currentSweepNum = 0; _endOfVolFlag = false; } // start of sweep _fmq->putStartOfTilt(_currentSweepNum, *beam); if (_params.debug) { cerr << "Start of sweep num: " << _currentSweepNum << endl; } }
[ "dixon@ucar.edu" ]
dixon@ucar.edu
99f709a5a08e336f6a004fcd21b9f1edfa4cd3b7
f6244209f8ecff355822843f64d6368281266143
/26.cc
ba0c410747a82a686617643b04041f03124a7728
[]
no_license
seesealonely/old-leetcode
5711fc0d583ca15c14cb8fb3a241e860e6d6fcd4
28e4bc6e28ba8c36e90a05a6214c7c716fe03431
refs/heads/master
2022-04-26T10:18:43.770677
2020-04-28T21:20:35
2020-04-28T21:20:35
null
0
0
null
null
null
null
UTF-8
C++
false
false
521
cc
#include"26.h" int main() { int in[]={1,1,2}; vector<int> input(in,in+3); Solution s; cout<<"###################"<<endl; cout<<s.removeDuplicates(input)<<endl; cout<<"###################"<<endl; for(int i=0;i<input.size();i++) cout<<input[i]<<" "; cout<<endl; int in1[]={0,0,0,0}; vector<int> input1(in1,in1+4); cout<<"###################"<<endl; cout<<s.removeDuplicates(input1)<<endl; cout<<"###################"<<endl; for(int i=0;i<input1.size();i++) cout<<input1[i]<<" "; cout<<endl; return 0; }
[ "seesealonely@gmail.com" ]
seesealonely@gmail.com
f345a8acc587a657d0fb53950959f5aa086f8e01
25a44ce978c53666bbe162b372298ac5eed432f4
/Codeforces/131A_cAPS_lOCK.cpp
cf4b3f42771a36b1681540aeb93d99d4b45fe011
[]
no_license
Kanchii/Online_Judge_Problems
85304dfaf4d12516c8a511e9b9957ab59cc77a71
4bac6d7e547a01cd81d79d50ec37a93e8d915807
refs/heads/master
2021-10-19T03:17:28.285146
2018-09-09T12:53:35
2018-09-09T12:53:35
110,837,225
0
0
null
null
null
null
UTF-8
C++
false
false
687
cpp
#include <bits/stdc++.h> using namespace std; #define INF 0x3f3f3f3f typedef pair<int,int> ii; typedef vector<int> vi; typedef vector<ii> vii; typedef vector<vi> vvi; typedef vector<vector<ii> > vvii; typedef long long ll; int main(int argc, char const *argv[]){ string s; int f = 1; while(cin >> s){ if(f){ f = 0; } else { cout << " "; } int ff = 1; for(int i = 1; i < s.size(); i++){ if(islower(s[i])){ ff = 0; break; } } if(!ff){ cout << s; } else { for(int i = 0; i < s.size(); i++){ if(islower(s[i])){ cout << (char)toupper(s[i]); } else { cout << (char)tolower(s[i]); } } } } cout << endl; return 0; }
[ "weisslipe@gmail.com" ]
weisslipe@gmail.com
a5f241fa7c5c7193e03af354958ffd55a71c832e
6b44fb664d7c4d823f275a1031d968bccca35da8
/CompressorTexto/Texto.h
baeaabb5ffd9df4ac912261c5d93593d8ef44093
[ "MIT" ]
permissive
Joao620/Compressor-de-texto
091ce7af5a19772b0a97fd55cabdd46e933c891a
c2db8e140cdfabe3d7b3d688f877d8ed0aeadd07
refs/heads/master
2022-10-13T14:43:31.058770
2020-06-15T21:50:22
2020-06-15T21:50:22
272,504,621
0
0
null
null
null
null
UTF-8
C++
false
false
563
h
#pragma once #include <string> #include <vector> using namespace std; class Texto { string* m_pTexto; vector<int> m_ExtremidadePalavras; public: void setTexto(string* pTexto) { m_pTexto = pTexto; } string& getTexto() { return *m_pTexto; } void setExtremidadePalavras(vector<int> extremidadePalavras) { m_ExtremidadePalavras = extremidadePalavras; } vector<int>& getExtremidadePalavras() { return m_ExtremidadePalavras; } //inico inclusido fim exclusivo Texto(Texto& original, int inicio, int fim); Texto() {} ~Texto() { delete m_pTexto; } };
[ "jcarlos.paranhos@gmail.com" ]
jcarlos.paranhos@gmail.com
9158c51e5219ea1e91f5eac3a2cec23a9db9f6d8
cf8ddfc720bf6451c4ef4fa01684327431db1919
/SDK/ARKSurvivalEvolved_Eel_AIController_BP_Tamed_parameters.hpp
2faa4e9d05dcd9eb22b5e1d9d8e5baf3326c9ed7
[ "MIT" ]
permissive
git-Charlie/ARK-SDK
75337684b11e7b9f668da1f15e8054052a3b600f
c38ca9925309516b2093ad8c3a70ed9489e1d573
refs/heads/master
2023-06-20T06:30:33.550123
2021-07-11T13:41:45
2021-07-11T13:41:45
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,550
hpp
#pragma once // ARKSurvivalEvolved (329.9) SDK #ifdef _MSC_VER #pragma pack(push, 0x8) #endif #include "ARKSurvivalEvolved_Eel_AIController_BP_Tamed_classes.hpp" namespace sdk { //--------------------------------------------------------------------------- //Parameters //--------------------------------------------------------------------------- // Function Eel_AIController_BP_Tamed.Eel_AIController_BP_Tamed_C.BPGetTargetingDesire struct AEel_AIController_BP_Tamed_C_BPGetTargetingDesire_Params { class AActor** forTarget; // (Parm, ZeroConstructor, IsPlainOldData) float* ForTargetingDesireValue; // (Parm, ZeroConstructor, IsPlainOldData) float ReturnValue; // (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData) }; // Function Eel_AIController_BP_Tamed.Eel_AIController_BP_Tamed_C.UserConstructionScript struct AEel_AIController_BP_Tamed_C_UserConstructionScript_Params { }; // Function Eel_AIController_BP_Tamed.Eel_AIController_BP_Tamed_C.ExecuteUbergraph_Eel_AIController_BP_Tamed struct AEel_AIController_BP_Tamed_C_ExecuteUbergraph_Eel_AIController_BP_Tamed_Params { int EntryPoint; // (Parm, ZeroConstructor, IsPlainOldData) }; } #ifdef _MSC_VER #pragma pack(pop) #endif
[ "sergey.2bite@gmail.com" ]
sergey.2bite@gmail.com
b41417e5dc1f09eebd25bc9d8e2d33003faeb3d3
9a5db9951432056bb5cd4cf3c32362a4e17008b7
/FacesCapture/branches/RefactorToBeEventBased/RemoteImaging/faceRecognitionDLL/EigenvalueVector.h
7cbec5a5b20b5eb96cddb2ca3cf4f69f964ba9eb
[]
no_license
miaozhendaoren/appcollection
65b0ede264e74e60b68ca74cf70fb24222543278
f8b85af93f787fa897af90e8361569a36ff65d35
refs/heads/master
2021-05-30T19:27:21.142158
2011-06-27T03:49:22
2011-06-27T03:49:22
null
0
0
null
null
null
null
GB18030
C++
false
false
1,537
h
// EigenvalueVector.h 计算特征值特征向量头文件 // Ver 1.0.0.0 #ifndef _EIGENVALUEVECTOR_H //避免多次编译 #define _EIGENVALUEVECTOR_H #include "Matrix.h" //矩阵类及相关函数等的定义 #include "common.h" //公共头文件 #include <math.h> //数学头文件 using namespace std; //名字空间 //约化对称阵为对称三对角阵的豪斯荷尔德变换法 template <class _Ty> int HouseholderTransform(matrix<_Ty>& a, matrix<_Ty>& q, valarray<_Ty>& b, valarray<_Ty>& c); //实对称三角阵全部特征值及特征向量QR法 template <class _Ty> int EigenvalueVectorRealTriangleQR(valarray<_Ty>& b, valarray<_Ty>& c, matrix<_Ty>& q, _Ty eps, int l); //约化一般实矩阵为赫申伯格阵的初等相似变换法 //矩阵类型应是浮点型 template <class _Ty> int HessenbergTransform(matrix<_Ty>& a); //求赫申伯格阵全部特征值QR法 template <class _Ty> int EigenvalueVectorHessenbergQR(matrix<_Ty>& a, valarray<complex<_Ty> >& uv, _Ty eps, int jt); //实对称阵特征值及特征向量雅可比法 template <class _Ty> int EigenvalueVectorRealSymmetryJacobi(matrix<_Ty>& a, matrix<_Ty>& v, _Ty eps, int jt); //实对称阵特征值及特征向量雅可比过关法 template <class _Ty> int EigenvalueVectorRealSymmetryJacobiB(matrix<_Ty>& a, matrix<_Ty>& v, _Ty eps); #include "EigenvalueVector.inl" //类及相关函数的定义头文件 #endif // _EIGENVALUEVECTOR_H
[ "shenbinsc@cbf8b9f2-3a65-11de-be05-5f7a86268029" ]
shenbinsc@cbf8b9f2-3a65-11de-be05-5f7a86268029
3922beb3f8ac9a7e230e3436cb63cf1e5a57e701
70ea64c522d12dad3d50443854ce869e019d2ca2
/System/NodeManager.cpp
b6a3384fe04997b71fb4f12b4c6dc7f6327387f9
[]
no_license
clxhtm456/DirectX2D
ea88afabaecc81600addd8cd14924b0630327b60
4c7027cb061008e962ed8ddd3c38c1216cf72de7
refs/heads/master
2022-11-05T05:28:44.377906
2020-07-01T15:32:03
2020-07-01T15:32:03
276,414,762
0
0
null
null
null
null
UTF-8
C++
false
false
602
cpp
#include "stdafx.h" #include "NodeManager.h" #include "Object/Node.h" void NodeManager::PushBack_Node(Node * node) { if (node == nullptr) return; nodeList.push_back(node); } void NodeManager::Erase_Node(Node * node) { if (node == nullptr) return; for (auto iter = nodeList.begin(); iter != nodeList.end(); iter++) { if ((*iter) == node) { nodeList.erase(iter); return; } } } void NodeManager::Update(D3DXMATRIX & V, D3DXMATRIX & P) { for (auto node : nodeList) { node->Update(V, P); } } void NodeManager::Render() { for (auto node : nodeList) { node->Render(); } }
[ "gunwoo11@naver.com" ]
gunwoo11@naver.com
18507d835e27cd609fd669f0bc08e2f7c94ebe41
2ce285e3fb624c15916bd5d1e1acc77a40e49046
/20200716_1935/main.cpp
43fce2ccca536907c89bca762372cede1e7b297f
[]
no_license
THLEE-KR/Baekjoon-Online-Judge_THLEE
7bda7f9afb14b100b5b7200a0922e2fdc174bab7
ff34f8b9374263cf277fd85c62e8d38a01712b44
refs/heads/master
2023-01-22T08:35:15.984315
2020-11-23T11:14:22
2020-11-23T11:14:22
267,593,876
0
0
null
null
null
null
UTF-8
C++
false
false
1,271
cpp
#include <iostream> #include <stack> #include <iomanip> #include <string> using namespace std; int operand[26]; double Solve(string str, int* v){ stack<double> s; double result = 0; for(char ch : str){ // cout << "str[i]: " << str[i] << '\n'; if(ch >= 'A' && ch <= 'Z'){ s.push(v[ch-'A']); // cout << "push: " << str[i]-'A'+1 << '\n'; } else{ double first = s.top(); // cout << "first: " << first << '\n'; s.pop(); double second = s.top(); // cout << "second: " << second << '\n'; s.pop(); if(ch == '+') result = second + first; else if(ch == '-') result = second - first; else if(ch == '*') result = second * first; else if(ch == '/') result = second / first; s.push(result); // cout << "result: " << result << '\n'; } } return s.top(); } int main() { int n; cin >> n; string str; cin >> str; for(int i=0; i<n; i++){ cin >> operand[i]; } double ans = Solve(str, operand); cout << fixed << setprecision(2) << ans << '\n'; return 0; }
[ "taehui0118@gmail.com" ]
taehui0118@gmail.com
675bff32c5311f291eeb1a76015096c4a1575873
70418d8faa76b41715c707c54a8b0cddfb393fb3
/11994.cpp
f0c2eaad7422d86443613b5247d360bb9409e318
[]
no_license
evandrix/UVa
ca79c25c8bf28e9e05cae8414f52236dc5ac1c68
17a902ece2457c8cb0ee70c320bf0583c0f9a4ce
refs/heads/master
2021-06-05T01:44:17.908960
2017-10-22T18:59:42
2017-10-22T18:59:42
107,893,680
3
1
null
null
null
null
UTF-8
C++
false
false
10,515
cpp
#include <bits/stdc++.h> using namespace std; #define REP(i, n) for (int i = 0; i < int(n); ++i) #define FOR(i, a, b) for (int i = int(a); i < int(b); ++i) #define DWN(i, b, a) for (int i = int(b - 1); i >= int(a); --i) #define REP_1(i, n) for (int i = 1; i <= int(n); ++i) #define FOR_1(i, a, b) for (int i = int(a); i <= int(b); ++i) #define DWN_1(i, b, a) for (int i = int(b); i >= int(a); --i) #define REP_C(i, n) for (int n____ = int(n), i = 0; i < n____; ++i) #define FOR_C(i, a, b) for (int b____ = int(b), i = a; i < b____; ++i) #define DWN_C(i, b, a) for (int a____ = int(a), i = b - 1; i >= a____; --i) #define REP_N(i, n) for (i = 0; i < int(n); ++i) #define FOR_N(i, a, b) for (i = int(a); i < int(b); ++i) #define DWN_N(i, b, a) for (i = int(b - 1); i >= int(a); --i) #define REP_1_C(i, n) for (int n____ = int(n), i = 1; i <= n____; ++i) #define FOR_1_C(i, a, b) for (int b____ = int(b), i = a; i <= b____; ++i) #define DWN_1_C(i, b, a) for (int a____ = int(a), i = b; i >= a____; --i) #define REP_1_N(i, n) for (i = 1; i <= int(n); ++i) #define FOR_1_N(i, a, b) for (i = int(a); i <= int(b); ++i) #define DWN_1_N(i, b, a) for (i = int(b); i >= int(a); --i) #define REP_C_N(i, n) for (n____ = int(n), i = 0; i < n____; ++i) #define FOR_C_N(i, a, b) for (b____ = int(b), i = a; i < b____; ++i) #define DWN_C_N(i, b, a) for (a____ = int(a), i = b - 1; i >= a____; --i) #define REP_1_C_N(i, n) for (n____ = int(n), i = 1; i <= n____; ++i) #define FOR_1_C_N(i, a, b) for (b____ = int(b), i = a; i <= b____; ++i) #define DWN_1_C_N(i, b, a) for (a____ = int(a), i = b; i >= a____; --i) #define DO(n) while (n--) #define DO_C(n) \ int n____ = n; \ while (n____--) #define TO(i, a, b) \ int s_ = a < b ? 1 : -1, b_ = b + s_; \ for (int i = a; i != b_; i += s_) #define TO_1(i, a, b) \ int s_ = a < b ? 1 : -1, b_ = b; \ for (int i = a; i != b_; i += s_) #define SQZ(i, j, a, b) for (int i = int(a), j = int(b) - 1; i < j; ++i, --j) #define SQZ_1(i, j, a, b) for (int i = int(a), j = int(b); i <= j; ++i, --j) #define REP_2(i, j, n, m) REP(i, n) \ REP(j, m) #define REP_2_1(i, j, n, m) REP_1(i, n) \ REP_1(j, m) #define ALL(A) A.begin(), A.end() #define LLA(A) A.rbegin(), A.rend() #define CPY(A, B) memcpy(A, B, sizeof(A)) #define INS(A, P, B) A.insert(A.begin() + P, B) #define ERS(A, P) A.erase(A.begin() + P) #define BSC(A, X) find(ALL(A), X)// != A.end() #define CTN(T, x) (T.find(x) != T.end()) #define SZ(A) int(A.size()) #define PB push_back #define MP(A, B) make_pair(A, B) #define Rush \ int T____; \ RD(T____); \ DO(T____) #pragma comment(linker, "/STACK:36777216") #pragma GCC optimize("O2") #define Ruby system("ruby main.rb") #define Haskell system("runghc main.hs") #define Pascal system("fpc main.pas") /** I/O Accelerator **/ /* ... :" We are I/O Accelerator ... Use us at your own risk;) ... " .. */ template <class T> inline void RD(T &); template <class T> inline void OT(const T &); inline int RD() { int x; RD(x); return x; } template <class T> inline T &_RD(T &x) { RD(x); return x; } template <class T0, class T1> inline void RD(T0 &x0, T1 &x1) { RD(x0) , RD(x1); } template <class T0, class T1, class T2> inline void RD(T0 &x0, T1 &x1, T2 &x2) { RD(x0) , RD(x1), RD(x2); } template <class T0, class T1, class T2, class T3> inline void RD(T0 &x0, T1 &x1, T2 &x2, T3 &x3) { RD(x0) , RD(x1), RD(x2), RD(x3); } template <class T0, class T1, class T2, class T3, class T4> inline void RD(T0 &x0, T1 &x1, T2 &x2, T3 &x3, T4 &x4) { RD(x0) , RD(x1), RD(x2), RD(x3), RD(x4); } template <class T0, class T1, class T2, class T3, class T4, class T5> inline void RD(T0 &x0, T1 &x1, T2 &x2, T3 &x3, T4 &x4, T5 &x5) { RD(x0) , RD(x1), RD(x2), RD(x3), RD(x4), RD(x5); } template <class T0, class T1, class T2, class T3, class T4, class T5, class T6> inline void RD(T0 &x0, T1 &x1, T2 &x2, T3 &x3, T4 &x4, T5 &x5, T6 &x6) { RD(x0) , RD(x1), RD(x2), RD(x3), RD(x4), RD(x5), RD(x6); } template <class T0, class T1> inline void OT(T0 &x0, T1 &x1) { OT(x0) , OT(x1); } template <class T0, class T1, class T2> inline void OT(T0 &x0, T1 &x1, T2 &x2) { OT(x0) , OT(x1), OT(x2); } template <class T0, class T1, class T2, class T3> inline void OT(T0 &x0, T1 &x1, T2 &x2, T3 &x3) { OT(x0) , OT(x1), OT(x2), OT(x3); } template <class T0, class T1, class T2, class T3, class T4> inline void OT(T0 &x0, T1 &x1, T2 &x2, T3 &x3, T4 &x4) { OT(x0) , OT(x1), OT(x2), OT(x3), OT(x4); } template <class T0, class T1, class T2, class T3, class T4, class T5> inline void OT(T0 &x0, T1 &x1, T2 &x2, T3 &x3, T4 &x4, T5 &x5) { OT(x0) , OT(x1), OT(x2), OT(x3), OT(x4), OT(x5); } template <class T0, class T1, class T2, class T3, class T4, class T5, class T6> inline void OT(T0 &x0, T1 &x1, T2 &x2, T3 &x3, T4 &x4, T5 &x5, T6 &x6) { OT(x0) , OT(x1), OT(x2), OT(x3), OT(x4), OT(x5), OT(x6); } template <class T> inline void RST(T &A) { memset(A, 0, sizeof(A)); } template <class T0, class T1> inline void RST(T0 &A0, T1 &A1) { RST(A0) , RST(A1); } template <class T0, class T1, class T2> inline void RST(T0 &A0, T1 &A1, T2 &A2) { RST(A0) , RST(A1), RST(A2); } template <class T0, class T1, class T2, class T3> inline void RST(T0 &A0, T1 &A1, T2 &A2, T3 &A3) { RST(A0) , RST(A1), RST(A2), RST(A3); } template <class T0, class T1, class T2, class T3, class T4> inline void RST(T0 &A0, T1 &A1, T2 &A2, T3 &A3, T4 &A4) { RST(A0) , RST(A1), RST(A2), RST(A3), RST(A4); } template <class T0, class T1, class T2, class T3, class T4, class T5> inline void RST(T0 &A0, T1 &A1, T2 &A2, T3 &A3, T4 &A4, T5 &A5) { RST(A0) , RST(A1), RST(A2), RST(A3), RST(A4), RST(A5); } template <class T0, class T1, class T2, class T3, class T4, class T5, class T6> inline void RST(T0 &A0, T1 &A1, T2 &A2, T3 &A3, T4 &A4, T5 &A5, T6 &A6) { RST(A0) , RST(A1), RST(A2), RST(A3), RST(A4), RST(A5), RST(A6); } /** Add - On **/ // <<= ` 0. Daily Use ., template <class T> inline void checkMin(T &a, const T b) { if (b < a) { a = b; } } template <class T> inline void checkMax(T &a, const T b) { if (b > a) { a = b; } } template <class T, class C> inline void checkMin(T &a, const T b, C c) { if (c(b, a)) { a = b; } } template <class T, class C> inline void checkMax(T &a, const T b, C c) { if (c(a, b)) { a = b; } } template <class T> inline T min(T a, T b, T c) { return min(min(a, b), c); } template <class T> inline T max(T a, T b, T c) { return max(max(a, b), c); } template <class T> inline T sqr(T a) { return a * a; } template <class T> inline T cub(T a) { return a * a * a; } int Ceil(int x, int y) { return (x - 1) / y + 1; } // <<= ` 1. Bitwise Operation ., inline bool _1(int x, int i) { return x & 1 << i; } inline int _1(int i) { return 1 << i; } inline int _U(int i) { return _1(i) - 1; }; inline int count_bits(int x) { x = (x & 0x55555555) + ((x & 0xaaaaaaaa) >> 1); x = (x & 0x33333333) + ((x & 0xcccccccc) >> 2); x = (x & 0x0f0f0f0f) + ((x & 0xf0f0f0f0) >> 4); x = (x & 0x00ff00ff) + ((x & 0xff00ff00) >> 8); x = (x & 0x0000ffff) + ((x & 0xffff0000) >> 16); return x; } template <class T> inline T low_bit(T x) { return x & -x; } template <class T> inline T high_bit(T x) { T p = low_bit(x); while (p != x) { x -= p, p = low_bit(x); } return p; } // <<= ' 0. I/O Accelerator interface ., template <class T> inline void RD(T &x) { //cin >> x; //scanf("%d", &x); char c; for (c = getchar(); c < '0'; c = getchar()) ; x = c - '0'; for (c = getchar(); c >= '0'; c = getchar()) { x = x * 10 + c - '0'; } //char c; c = getchar(); x = c - '0'; for (c = getchar(); c >= '0'; c = getchar()) x = x * 10 + c - '0'; } inline void OT(int a, int b) { printf("%d %d\n", a, b); } /* .................................................................................................................................. */ const int N = 50009; int l[N], r[N], p[N], sz[N], color[N], delay[N], mask[N]; bool rt[N]; int n, m; #define lx l[x] #define rx r[x] inline void Paint(int x, int c) { if (x == 0) { return; } color[x] = delay[x] = mask[x] = c; } inline void Release(int x) { if (x == 0 || !delay[x]) { return; } Paint(lx, delay[x]), Paint(rx, delay[x]); delay[x] = 0; } inline void Update(int x) { sz[x] = sz[lx] + sz[rx] + 1; mask[x] = color[x] | mask[lx] | mask[rx]; } inline void Set(int l[], int y, int x) { l[y] = x, p[x] = y; } inline void Rotate(int x) { int y = p[x], z = p[y]; if (!rt[y]) { Release(z), Set(y == l[z] ? l : r, z, x); } else { p[x] = z; } Release(y), Release(x); if (x == l[y]) { Set(l, y, rx), Set(r, x, y); } else { Set(r, y, lx), Set(l, x, y); } if (rt[y]) { rt[y] = false, rt[x] = true; } Update(y); } inline void Splay(int x) { while (!rt[x]) { Rotate(x); } } int Access(int x) { int y = 0; do { Splay(x), Release(x); rt[rx] = true, rt[rx = y] = false; Update(x); x = p[y = x]; } while (x); return y; } inline int Root(int x) { for (x = Access(x); lx; x = lx) ; return x; } inline int Depth(int x) { return sz[Access(x)]; } inline int Lca(int x, int y) { int lca; Access(y); y = 0; do { Splay(x), Release(x); if (!p[x]) { lca = x; } rt[rx] = true, rt[rx = y] = false, Update(x); x = p[y = x]; } while (x); return lca; } // Public : void Query(int x, int y) { if (x == y || Root(x) != Root(y)) { OT(0, 0); return; } Access(y); y = 0; do { Splay(x), Release(x); if (!p[x]) { OT(sz[rx] + sz[y], count_bits(mask[rx] | mask[y])); } rt[rx] = true, rt[rx = y] = false, Update(x); x = p[y = x]; } while (x); } void Paint(int x, int y, int c) { if (Root(x) != Root(y)) { return; } c = _1(c - 1), Access(y); y = 0; do { Splay(x), Release(x); if (!p[x]) { Paint(rx, c), Paint(y, c); } rt[rx] = true, rt[rx = y] = false, Update(x); x = p[y = x]; } while (x); } void Link(int x, int y, int c) { if (x == y || Root(x) == Root(y) && Lca(x, y) == x) { return; } c = _1(c - 1), Access(x), Splay(x), rt[lx] = true; lx = p[lx] = 0, p[x] = y, Paint(x, c), Update(x); Access(x); } int main() { while (scanf("%d%d", &n, &m) != EOF) { REP_1(i, n) sz[i] = 1, rt[i] = true, RD(p[i]); REP_1(i, n) color[i] = mask[i] = _1(RD() - 1); int op, a, b, c; DO(m) { RD(op); if (op == 3) { RD(a, b) , Query(a, b); } else if (op == 2) { RD(a, b, c) , Paint(a, b, c); } else { RD(a, b, c) , Link(a, b, c); } } RST(p, l, r, delay); } return 0; }
[ "yleewei@dso.org.sg" ]
yleewei@dso.org.sg
12af628bae3a34f3ecde429c028232e0f0e561bd
5cad8d9664c8316cce7bc57128ca4b378a93998a
/CI/rule/pclint/pclint_include/include_linux/c++/4.8.2/javax/security/auth/PrivateCredentialPermission.h
157c1df79ceb7ef13602a8aa4952334bdeb4ff81
[ "LicenseRef-scancode-unknown-license-reference", "GPL-2.0-only", "GPL-3.0-only", "curl", "Zlib", "LicenseRef-scancode-warranty-disclaimer", "OpenSSL", "GPL-1.0-or-later", "MIT", "LicenseRef-scancode-other-copyleft", "LicenseRef-scancode-openssl", "LicenseRef-scancode-ssleay-windows", "BSD-3-...
permissive
huaweicloud/huaweicloud-sdk-c-obs
0c60d61e16de5c0d8d3c0abc9446b5269e7462d4
fcd0bf67f209cc96cf73197e9c0df143b1d097c4
refs/heads/master
2023-09-05T11:42:28.709499
2023-08-05T08:52:56
2023-08-05T08:52:56
163,231,391
41
21
Apache-2.0
2023-06-28T07:18:06
2018-12-27T01:15:05
C
UTF-8
C++
false
false
1,420
h
// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*- #ifndef __javax_security_auth_PrivateCredentialPermission__ #define __javax_security_auth_PrivateCredentialPermission__ #pragma interface #include <java/security/Permission.h> #include <gcj/array.h> extern "Java" { namespace java { namespace security { class Permission; class PermissionCollection; } } namespace javax { namespace security { namespace auth { class PrivateCredentialPermission; } } } } class javax::security::auth::PrivateCredentialPermission : public ::java::security::Permission { public: PrivateCredentialPermission(::java::lang::String *, ::java::lang::String *); jboolean equals(::java::lang::Object *); ::java::lang::String * getActions(); ::java::lang::String * getCredentialClass(); JArray< JArray< ::java::lang::String * > * > * getPrincipals(); jint hashCode(); jboolean implies(::java::security::Permission *); ::java::security::PermissionCollection * newPermissionCollection(); private: static const jlong serialVersionUID = 5284372143517237068LL; ::java::lang::String * __attribute__((aligned(__alignof__( ::java::security::Permission)))) credentialClass; ::java::util::Set * principals; jboolean testing; public: static ::java::lang::Class class$; }; #endif // __javax_security_auth_PrivateCredentialPermission__
[ "xiangshijian1@huawei.com" ]
xiangshijian1@huawei.com
cbb56c920293893f2c7071bcaa6f17f14042f5ec
025e97fe265bd4c75ebf1f6e10a2b8abcc853379
/Other contests & extra/B. New Year and Old Property/main.cpp
67fecd082eb87ac7057f269861e11dad3ca9e704
[]
no_license
96andrei/fmi
6030e714298ad58ffb80203af512c113e65d79db
eebd3096caeed129a1d8197defe42d5c9dc3a08d
refs/heads/master
2021-01-12T05:30:26.901579
2017-01-09T18:11:04
2017-01-09T18:11:04
77,938,687
0
0
null
null
null
null
UTF-8
C++
false
false
445
cpp
#include <iostream> using namespace std; int popcnt(unsigned long long int n) { return __builtin_popcount(n); } int main() { unsigned long long int x, y; cin>>x>>y; int val = 0; for(;x<=y;x++){ int count = 0; unsigned long long int k = x; while(k != 0){ count++; k>>=1; } if(count - popcnt(x) == 1) val++; } cout<<val; return 0; }
[ "a96andrei@gmail.com" ]
a96andrei@gmail.com
d82d08e87da6aebc68ee9c2bc1bfa6e3e0ec0d99
3b3a191c87d921f79653cf8365d23857d51831f8
/Source/ShootThemUp/Public/STUCoreTypes.h
92fbd4938ff6949fd114605a121eb93c381af99d
[]
no_license
Yare-Yare-Daze/ShootThemUp
1a3f00a94aac773c85455b95893722f3d5cf80aa
c1e9901273d64b10677d13444882127c151ae84f
refs/heads/master
2023-08-03T21:46:04.905322
2021-09-17T16:29:28
2021-09-17T16:29:28
345,606,646
2
0
null
null
null
null
UTF-8
C++
false
false
3,646
h
#pragma once #include "NiagaraSystem.h" #include "STUCoreTypes.generated.h" class ASTUBaseWeapon; class UMaterialInterface; //Weapons DECLARE_MULTICAST_DELEGATE_OneParam(FOnClipEmptySignature, ASTUBaseWeapon*); //Health DECLARE_MULTICAST_DELEGATE(FOnDeathSignature); DECLARE_MULTICAST_DELEGATE_TwoParams(FOnHealthChangedSignature, float, float); class ASTUBaseWeapon; USTRUCT(BlueprintType) struct FWeaponData { GENERATED_USTRUCT_BODY() UPROPERTY(EditDefaultsOnly, BlueprintReadWrite, Category = "Weapon") TSubclassOf<ASTUBaseWeapon> WeaponClass; UPROPERTY(EditDefaultsOnly, BlueprintReadWrite, Category = "Weapon") UAnimMontage* ReloadAnimMontage; }; USTRUCT(BlueprintType) struct FAmmoData { GENERATED_USTRUCT_BODY() UPROPERTY(EditDefaultsOnly, BlueprintReadWrite, Category="Weapon") int32 Bullets; UPROPERTY(EditDefaultsOnly, BlueprintReadWrite, Category="Weapon", meta = (EditCondition = "!Infinite")) int32 Clips; UPROPERTY(EditDefaultsOnly, BlueprintReadWrite, Category="Weapon") bool Infinite; }; USTRUCT(BlueprintType) struct FWeaponUIData { GENERATED_USTRUCT_BODY() UPROPERTY(EditDefaultsOnly, BlueprintReadWrite, Category="UI") UTexture2D* MainIcon; UPROPERTY(EditDefaultsOnly, BlueprintReadWrite, Category="UI") UTexture2D* CrossHairIcon; }; // VFX USTRUCT(BlueprintType) struct FDecalData { GENERATED_USTRUCT_BODY() public: UPROPERTY(EditDefaultsOnly, BlueprintReadWrite, Category="VFX") UMaterialInterface* Material; UPROPERTY(EditDefaultsOnly, BlueprintReadWrite, Category="VFX") FVector Size = FVector(10.0f); UPROPERTY(EditDefaultsOnly, BlueprintReadWrite, Category="VFX") float LifeTime = 5.0f; UPROPERTY(EditDefaultsOnly, BlueprintReadWrite, Category="VFX") float FadeOutTime = 0.7f; }; USTRUCT(BlueprintType) struct FImpactData { GENERATED_USTRUCT_BODY() public: UPROPERTY(EditDefaultsOnly, BlueprintReadWrite, Category="VFX") UNiagaraSystem* NiagaraEffect; UPROPERTY(EditDefaultsOnly, BlueprintReadWrite, Category="VFX") FDecalData DecalData; }; USTRUCT(BlueprintType) struct FGameData { GENERATED_USTRUCT_BODY() public: UPROPERTY(EditDefaultsOnly, BlueprintReadWrite, Category="Game", meta = (ClampMin = "1", ClampMax = "100")) int32 PlayersNum = 2; UPROPERTY(EditDefaultsOnly, BlueprintReadWrite, Category="Game", meta = (ClampMin = "1", ClampMax = "10")) int32 RoundsNum = 3; UPROPERTY(EditDefaultsOnly, BlueprintReadWrite, Category="Game", meta = (ClampMin = "3", ClampMax = "300")) int32 RoundTime = 10; UPROPERTY(EditDefaultsOnly, BlueprintReadWrite, Category="Game", meta = (ClampMin = "5", ClampMax = "30")) int32 RespawnTime = 5; UPROPERTY(EditDefaultsOnly, BlueprintReadWrite) FLinearColor DefaultTeamColor = FLinearColor::Red; UPROPERTY(EditDefaultsOnly, BlueprintReadWrite) TArray<FLinearColor> TeamColors; }; UENUM(BlueprintType) enum class ESTUMatchState : uint8 { WaitingToStart = 0, InProgress, Pause, GameOver }; DECLARE_MULTICAST_DELEGATE_OneParam(FOnMatchStateChangedSignatue, ESTUMatchState); USTRUCT(BlueprintType) struct FLevelData { GENERATED_USTRUCT_BODY() public: UPROPERTY(EditDefaultsOnly, BlueprintReadWrite, Category="Game") FName LevelName = NAME_None; UPROPERTY(EditDefaultsOnly, BlueprintReadWrite, Category="Game") FName LevelDisplayName = NAME_None; UPROPERTY(EditDefaultsOnly, BlueprintReadWrite, Category="Game") UTexture2D* LevelThumb; }; DECLARE_MULTICAST_DELEGATE_OneParam(FOnLevelSelectedSignatue, const FLevelData&);
[ "thebestworkerinthecountry@gmail.com" ]
thebestworkerinthecountry@gmail.com
fa79a06f6869f9e3faf104714650e93e507198b1
ac106c826958ed309e405ff8db628c2ba3783b63
/src/seoSplasher/cPickup.hpp
b504864130bad75aea08bfda59fcffc0b7cff589
[ "MIT" ]
permissive
Stephen-Seo/SeoSplasher
4d3cdbf1c09bf613c5285faba522cc53589a17ce
ae9ad68d26c104902bcfa087d12ce867c84168aa
refs/heads/master
2021-12-20T21:55:00.067208
2021-11-28T13:07:36
2021-11-28T13:07:36
24,602,935
0
0
null
null
null
null
UTF-8
C++
false
false
138
hpp
#ifndef C_PICKUP_HPP #define C_PICKUP_HPP #include "../ec/component.hpp" struct cPickup : Component { bool hit = false; }; #endif
[ "seo.disparate@gmail.com" ]
seo.disparate@gmail.com
6203c0d68a604c69a76306a55c81c204ac77a82e
6bd5979707435ab820075347b480c23549952812
/src/tensorRT/infer/trt_infer.hpp
537e7b9579d91cc721135a0db8ff4709242bb87d
[]
no_license
SnailDUDUDU/tensorRT_cpp
a3e11e7056b298a2be505881905d41d8472ea021
4fa8a34097a64a77876286299d3d6a520699406b
refs/heads/main
2023-07-16T03:30:24.087422
2021-08-23T07:24:19
2021-08-23T07:24:19
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,681
hpp
#ifndef TRT_INFER_HPP #define TRT_INFER_HPP #include <string> #include <memory> #include <vector> #include <map> #include <common/trt_tensor.hpp> namespace TRT { class Infer { public: // 执行forward推理前,请把数据输入到input中,确保其shape有效 virtual void forward(bool sync = true) = 0; virtual int get_max_batch_size() = 0; virtual void set_stream(CUStream stream) = 0; virtual CUStream get_stream() = 0; virtual void synchronize() = 0; virtual size_t get_device_memory_size() = 0; virtual bool is_dynamic_batch_dimension() = 0; virtual std::shared_ptr<MixMemory> get_workspace() = 0; virtual std::shared_ptr<Tensor> input (int index = 0) = 0; virtual std::shared_ptr<Tensor> output(int index = 0) = 0; virtual std::shared_ptr<Tensor> tensor(const std::string& name) = 0; virtual std::string get_input_name (int index = 0) = 0; virtual std::string get_output_name(int index = 0) = 0; virtual bool is_output_name(const std::string& name) = 0; virtual bool is_input_name (const std::string& name) = 0; virtual int num_output() = 0; virtual int num_input() = 0; virtual void print() = 0; virtual int device() = 0; }; struct DeviceMemorySummary { size_t total; size_t available; }; DeviceMemorySummary get_current_device_summary(); int get_device_count(); int get_device(); void set_device(int device_id); std::shared_ptr<Infer> load_infer_from_memory(const void* pdata, size_t size); std::shared_ptr<Infer> load_infer(const std::string& file); bool init_nv_plugins(); }; //TRTInfer #endif //TRT_INFER_HPP
[ "dujw@deepblueai.com" ]
dujw@deepblueai.com
a8c32fefc87b9185d7ab738c10520af5fc994123
b9c1098de9e26cedad92f6071b060dfeb790fbae
/src/module/players/xsf/sdsf.h
55a37d630593cddd4c4db20781de49cc36cdc492
[]
no_license
vitamin-caig/zxtune
2a6f38a941f3ba2548a0eb8310eb5c61bb934dbe
9940f3f0b0b3b19e94a01cebf803d1a14ba028a1
refs/heads/master
2023-08-31T01:03:45.603265
2023-08-27T11:50:45
2023-08-27T11:51:26
13,986,319
138
13
null
2021-09-13T13:58:32
2013-10-30T12:51:01
C++
UTF-8
C++
false
false
258
h
/** * * @file * * @brief SSF/DSF chiptune factory * * @author vitamin.caig@gmail.com * **/ #pragma once // library includes #include <module/players/factory.h> namespace Module::SDSF { Factory::Ptr CreateFactory(); } // namespace Module::SDSF
[ "vitamin.caig@gmail.com" ]
vitamin.caig@gmail.com
7349dee7d4145363f9ee8e805f5567bceaad90cc
95d8f842ad4200b31926c6c954a59bb8fbaf763a
/antlr4-cpp/ExprParser.h
4dc68550405cdb7f5f63ad13e753cf72d268adb8
[]
no_license
saeha5160/Kotlin-Parser
97248e9b19491b7d3f987ef377cc83a6e0f8d3e6
dd60be855749b45362de220b113d23276d8b82f8
refs/heads/main
2023-08-31T12:11:29.017944
2021-11-05T13:41:25
2021-11-05T13:41:25
424,613,351
0
0
null
null
null
null
UTF-8
C++
false
false
3,743
h
// Generated from Expr.g4 by ANTLR 4.9.2 #pragma once #include "antlr4-runtime.h" class ExprParser : public antlr4::Parser { public: enum { T__0 = 1, T__1 = 2, T__2 = 3, T__3 = 4, T__4 = 5, T__5 = 6, T__6 = 7, T__7 = 8, NEWLINE = 9, INT = 10, REAL = 11, ID = 12, WS = 13 }; enum { RuleProg = 0, RuleExpr = 1, RuleAssn = 2, RuleNum = 3 }; explicit ExprParser(antlr4::TokenStream *input); ~ExprParser(); virtual std::string getGrammarFileName() const override; virtual const antlr4::atn::ATN& getATN() const override { return _atn; }; virtual const std::vector<std::string>& getTokenNames() const override { return _tokenNames; }; // deprecated: use vocabulary instead. virtual const std::vector<std::string>& getRuleNames() const override; virtual antlr4::dfa::Vocabulary& getVocabulary() const override; class ProgContext; class ExprContext; class AssnContext; class NumContext; class ProgContext : public antlr4::ParserRuleContext { public: ProgContext(antlr4::ParserRuleContext *parent, size_t invokingState); virtual size_t getRuleIndex() const override; std::vector<AssnContext *> assn(); AssnContext* assn(size_t i); std::vector<ExprContext *> expr(); ExprContext* expr(size_t i); std::vector<antlr4::tree::TerminalNode *> NEWLINE(); antlr4::tree::TerminalNode* NEWLINE(size_t i); virtual void enterRule(antlr4::tree::ParseTreeListener *listener) override; virtual void exitRule(antlr4::tree::ParseTreeListener *listener) override; }; ProgContext* prog(); class ExprContext : public antlr4::ParserRuleContext { public: ExprContext(antlr4::ParserRuleContext *parent, size_t invokingState); virtual size_t getRuleIndex() const override; NumContext *num(); antlr4::tree::TerminalNode *ID(); std::vector<ExprContext *> expr(); ExprContext* expr(size_t i); virtual void enterRule(antlr4::tree::ParseTreeListener *listener) override; virtual void exitRule(antlr4::tree::ParseTreeListener *listener) override; }; ExprContext* expr(); ExprContext* expr(int precedence); class AssnContext : public antlr4::ParserRuleContext { public: AssnContext(antlr4::ParserRuleContext *parent, size_t invokingState); virtual size_t getRuleIndex() const override; antlr4::tree::TerminalNode *ID(); NumContext *num(); virtual void enterRule(antlr4::tree::ParseTreeListener *listener) override; virtual void exitRule(antlr4::tree::ParseTreeListener *listener) override; }; AssnContext* assn(); class NumContext : public antlr4::ParserRuleContext { public: NumContext(antlr4::ParserRuleContext *parent, size_t invokingState); virtual size_t getRuleIndex() const override; antlr4::tree::TerminalNode *INT(); antlr4::tree::TerminalNode *REAL(); virtual void enterRule(antlr4::tree::ParseTreeListener *listener) override; virtual void exitRule(antlr4::tree::ParseTreeListener *listener) override; }; NumContext* num(); virtual bool sempred(antlr4::RuleContext *_localctx, size_t ruleIndex, size_t predicateIndex) override; bool exprSempred(ExprContext *_localctx, size_t predicateIndex); private: static std::vector<antlr4::dfa::DFA> _decisionToDFA; static antlr4::atn::PredictionContextCache _sharedContextCache; static std::vector<std::string> _ruleNames; static std::vector<std::string> _tokenNames; static std::vector<std::string> _literalNames; static std::vector<std::string> _symbolicNames; static antlr4::dfa::Vocabulary _vocabulary; static antlr4::atn::ATN _atn; static std::vector<uint16_t> _serializedATN; struct Initializer { Initializer(); }; static Initializer _init; };
[ "saeha5160@gmail.com" ]
saeha5160@gmail.com
f3f30f5319d6a17ac4b48c5c0c4ea8bb84a8cd98
7edb8fb4b21e43c2bd115bc0417883248c120975
/lab2.h
aedf51e4147af5bc956f2a868a21c0c13c0c302f
[]
no_license
Alexandrmrk/DesignPatternsLabs
84d98dea1c7657c444ab4e708f77784a30a9bf2f
3f12d5eb87d8071a5f012f23f8749e70571efb80
refs/heads/master
2021-03-15T08:14:57.526574
2020-03-12T13:03:41
2020-03-12T13:03:41
246,836,700
0
0
null
null
null
null
WINDOWS-1251
C++
false
false
584
h
// lab2.h : главный файл заголовка для приложения PROJECT_NAME // #pragma once #ifndef __AFXWIN_H__ #error "включить stdafx.h до включения этого файла в PCH" #endif #include "resource.h" // основные символы // Clab2App: // О реализации данного класса см. lab2.cpp // class Clab2App : public CWinApp { public: Clab2App(); // Переопределение public: virtual BOOL InitInstance(); // Реализация DECLARE_MESSAGE_MAP() }; extern Clab2App theApp;
[ "alexandrmrk@mail.ru" ]
alexandrmrk@mail.ru
e0265db78a689cceb7f32dfea170ba7bd37e7d09
a39618aa8d281e0e8c6966f5beed988273bca6b4
/stairclimber.cpp
46fd1f5f44da4f7c63a1316263dc9bce7eec6469
[]
no_license
ericstazzone/CS_385_Assignments
c1b51d4db3f2a1182853e187b89e81324e522a70
08116943c1eecad1c077a2667e4137574df02bf6
refs/heads/master
2023-02-10T10:05:32.928329
2021-01-06T16:13:42
2021-01-06T16:13:42
327,358,698
0
0
null
null
null
null
UTF-8
C++
false
false
2,615
cpp
/******************************************************************************* * Name : stairclimber.cpp * Author : Eric Stazzone * Date : September 30th, 2020 * Description : Lists the number of ways to climb n stairs. * Pledge : I pledge my honor that I have abided by the Stevens Honor System. ******************************************************************************/ #include <iostream> #include <vector> #include <algorithm> #include <sstream> #include <iomanip> using namespace std; vector< vector<int> > get_ways(int num_stairs) { // TODO: Return a vector of vectors of ints representing // the different combinations of ways to climb num_stairs // stairs, moving up either 1, 2, or 3 stairs at a time. vector<vector<int>> ways,result; if (num_stairs <= 0){ vector<int> stair; //base case ways.push_back(stair); } else{ for (int i = 1; i < 4; i++){ if (num_stairs >= i){ result = get_ways(num_stairs - i); //recursion for (unsigned int j = 0; j<result.size(); j++){ result[j].insert(result[j].begin(), i); //inserts the path at the beginning of the left } ways.insert(ways.end(), result.begin(), result.end()); //adds the path in ways } } } return ways; } void display_ways(const vector< vector<int> > &ways) { // TODO: Display the ways to climb stairs by iterating over // the vector of vectors and printing each combination. if (ways.size() == 1){ cout << "1 way to climb 1 stair." << endl; //1 way can only account for 1 stair therefore it is the only case } else{ int counter = 0; for (unsigned int j = 0; j<ways[0].size(); j++){ //finding # of stairs counter = counter + ways[0][j]; } cout << ways.size() << " ways to climb " << counter << " stairs." << endl; } int max_width = 0; int max = ways.size(); while (max !=0){ max = max / 10; //counts the # digits in max ++max_width; } for (unsigned int i = 0; i<ways.size(); i++){ cout << setw(max_width) << i+1 << ". ["; for(unsigned int j = 0; j<ways[i].size(); j++){ if (j == ways[i].size()-1){ cout << ways[i][j]; } else{ cout << ways[i][j] << ", "; //prints out 1 way to climb } } cout << "]" << endl; } } int main(int argc, char * const argv[]) { if (argc!=2){ cerr << "Usage: ./stairclimber <number of stairs>" << endl; return 1; } int n; istringstream iss; iss.str(argv[1]); if (!(iss>>n) || n<=0){ cerr << "Error: Number of stairs must be a positive integer." << endl; return 1; } vector<vector<int>> stairs = get_ways(n); display_ways(stairs); iss.clear(); return 0; }
[ "55301772+ericstazzone@users.noreply.github.com" ]
55301772+ericstazzone@users.noreply.github.com
8f13b9a3725bbefd4e3cd596b8a6839efd731bbc
d7b52e8598aac836d941186fb5d55f09ee84aa2e
/bullet/BulletCollision/CollisionShapes/btConvexPolyhedron.cpp
2ecb6ca58b9bda51002312b25cde3e937dbe3dcc
[]
no_license
Greentwip/external
1ac9d88ff328d7b2c07aad665a22610263da61e7
9ab80480e53c2c826f0d859a69df2d56a1181bbd
refs/heads/master
2022-11-15T10:53:08.060618
2020-07-11T21:59:42
2020-07-11T21:59:42
278,929,872
0
0
null
null
null
null
UTF-8
C++
false
false
129
cpp
version https://git-lfs.github.com/spec/v1 oid sha256:30ea3763303f6ab547c7bbd4fe01aea59eb80b23e118c31f028d06eca0a66474 size 7703
[ "vjlopezcarrillo@gmail.com" ]
vjlopezcarrillo@gmail.com
44317756af86c350699626295f31ba6ed0749cd1
b882e6e9e2f235ec92e4adcf73455d2d4f7f8a36
/tests/mfx_dispatch/linux/mfx_dispatch_test_mocks.cpp
8f7a374508ffd813b4c38b5e7a7c176270e40033
[ "MIT", "Intel", "LicenseRef-scancode-unknown-license-reference" ]
permissive
kelvinhu325/MediaSDK
f3aa294819b053e4f1194f264bb2cc6f2db61749
134aceca0c12f894c26827ae97f4c47d506b0f36
refs/heads/master
2020-04-05T11:06:01.545262
2018-11-06T17:59:36
2018-11-08T15:45:34
156,822,146
0
0
MIT
2018-11-09T06:50:44
2018-11-09T06:50:44
null
UTF-8
C++
false
false
4,049
cpp
// Copyright (c) 2017-2018 Intel Corporation // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Software without restriction, including without limitation the rights // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell // copies of the Software, and to permit persons to whom the Software is // furnished to do so, subject to the following conditions: // // The above copyright notice and this permission notice shall be included in all // copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE // SOFTWARE. #include "mfx_dispatch_test_mocks.h" #include "mfx_dispatch_test_main.h" #include <mfxcommon.h> #include <mfxdefs.h> #include <iostream> #include <vector> #include <string> #include <algorithm> #undef FUNCTION #define FUNCTION(return_value, func_name, formal_param_list, actual_param_list) \ e##func_name, enum Function { eMFXInit, eMFXInitEx, eMFXClose, eMFXJoinSession, #include "mfxvideo_functions.h" eFunctionsNum, eNoMoreFunctions = eFunctionsNum }; struct FunctionsTable { Function id; const char* name; mfxVersion version; }; #define VERSION(major, minor) {{minor, major}} #undef FUNCTION #define FUNCTION(return_value, func_name, formal_param_list, actual_param_list) \ { e##func_name, #func_name, API_VERSION }, static const FunctionsTable g_mfxFuncTable[] = { { eMFXInit, "MFXInit", VERSION(1, 0) }, { eMFXInitEx, "MFXInitEx", VERSION(1, 14) }, { eMFXClose, "MFXClose", VERSION(1, 0) }, { eMFXJoinSession, "MFXJoinSession", VERSION(1, 1) }, #include "mfxvideo_functions.h" { eNoMoreFunctions } }; #undef FUNCTION void* MockCallObj::EmulateAPI(void *handle, const char *symbol) { std::string requested_symbol(symbol); std::string mfxinitex_symbol("MFXInitEx"); std::string mfxqueryimpl_symbol("MFXQueryIMPL"); std::string mfxqueryversion_symbol("MFXQueryVersion"); std::string mfxclose_symbol("MFXClose"); std::string createplugin_symbol("CreatePlugin"); for (int i = 0; i < eFunctionsNum; ++i) { std::string available_symbol(g_mfxFuncTable[i].name); mfxVersion symbol_api_version = g_mfxFuncTable[i].version; if (requested_symbol == available_symbol && emulated_api_version.Version > symbol_api_version.Version) { if (symbol == mfxinitex_symbol) { return reinterpret_cast<void*>(MFXInitExHookWrap); } else if (symbol == mfxqueryimpl_symbol) { return reinterpret_cast<void*>(MFXQueryIMPLHookWrap); } else if (symbol == mfxqueryversion_symbol) { return reinterpret_cast<void*>(MFXQueryVersionHookWrap); } else if (symbol == mfxclose_symbol) { return reinterpret_cast<void*>(MFXCloseHookWrap); } else if (symbol == createplugin_symbol) { return reinterpret_cast<void*>(CreatePluginWrap); } else { return MOCK_FUNC_PTR; } } } return nullptr; } char* MockCallObj::FeedEmulatedPluginsCfgLines(char * str, int num, FILE * stream) { if (m_next_plugin_cfg_line_idx < m_emulated_plugins_cfg.size()) { strcpy(str, m_emulated_plugins_cfg[m_next_plugin_cfg_line_idx].c_str()); ++m_next_plugin_cfg_line_idx; return str; } return nullptr; }
[ "dmitry.ermilov@intel.com" ]
dmitry.ermilov@intel.com
5c43f6871c7c75e7cd841ecb6b55d14611b0f921
463e532c2addb431c967d7d8baea03f792c7b8e6
/owchart/include/Base/CMathLib.h
a16a0ac5a3c199598efa877d5a2ff739dba9f96f
[]
no_license
threelamb/StudyDemo
5c04e8320ed007dd76aa3d2b3d0301f08e214222
005856642d97de42c05f32af8623e9b4f3499a1e
refs/heads/master
2021-01-10T02:35:02.051709
2016-02-02T18:42:46
2016-02-02T18:42:46
50,525,673
0
1
null
null
null
null
WINDOWS-1252
C++
false
false
3,832
h
/*****************************************************************************\ * * * CMathLib.h - Math functions * * * * Version 4.00 ¡ï¡ï¡ï¡ï¡ï * * * * Copyright (c) 2016-2016, Todd's OwChart. All rights reserved. * * * *******************************************************************************/ #ifndef __CMATHLIB_H__ #define __CMATHLIB_H__ #pragma once #include "..\\..\\stdafx.h" #pragma comment(lib,"owmath.lib") namespace OwLib { struct LPDATA { public: LPDATA() { }; double lastvalue; double first_value; int mode; double sum; }; extern "C" _declspec(dllexport) void M001(int index, int n, double s, double m, double high, double low, double hhv, double llv, int last_state, double last_sar, double last_af, int *state, double *af, double *sar); extern "C" _declspec(dllexport) double M002(double value, double *listForAvedev, int listForAvedev_length, double avg); extern "C" _declspec(dllexport) double M003(int index, int n, double value, struct LPDATA last_MA); extern "C" _declspec(dllexport) double M004(int index, int n, double value, struct LPDATA last_SUM); extern "C" _declspec(dllexport) double M005(int n, int weight, double value, double lastWMA); extern "C" _declspec(dllexport) double M006(int n, double value, double lastEMA); extern "C" _declspec(dllexport) double M007(double *list, int length, double avg, double standardDeviation); extern "C" _declspec(dllexport) double M008(double *list, int length); extern "C" _declspec(dllexport) double M009(double *list, int length); extern "C" _declspec(dllexport) double M010(double *list, int length); extern "C" _declspec(dllexport) double M011(double *list, int length); extern "C" _declspec(dllexport) int M012(double min, double max, int yLen, int maxSpan, int minSpan, int defCount, double *step, int *digit); extern "C" _declspec(dllexport) void M013(int index, double close, double p, double *sxp, int *sxi, double *exp, int *exi, int *state, int *cStart, int *cEnd, double *k, double *b); extern "C" _declspec(dllexport) void M014(double *list, int length, float *k, float *b); extern "C" _declspec(dllexport) double M015(double close, double lastSma, int n, int m); extern "C" _declspec(dllexport) void M105(int x1, int y1, int x2, int y2, int *x, int *y, int *w, int *h); extern "C" _declspec(dllexport) double M106(float x1, float y1, float x2, float y2, float oX, float oY); extern "C" _declspec(dllexport) void M107(float x1, float y1, float x2, float y2, float oX, float oY, float *k, float *b); extern "C" _declspec(dllexport) void M108(float width, float height, float *a, float *b); extern "C" _declspec(dllexport) bool M109(float x, float y, float oX, float oY, float a, float b); extern "C" _declspec(dllexport) void M110(float x1, float y1, float x2, float y2, float x3, float y3, float *oX, float *oY, float *r); extern "C" _declspec(dllexport) int M112(int index); extern "C" _declspec(dllexport) void M124(float x1, float y1, float x2, float y2, float x3, float y3, float *x4, float *y4); extern "C" _declspec(dllexport) double M129(int tm_year, int tm_mon, int tm_mday, int tm_hour, int tm_min, int tm_sec, int tm_msec); extern "C" _declspec(dllexport) void M130(double num, int *tm_year, int *tm_mon, int *tm_mday, int *tm_hour, int *tm_min, int *tm_sec, int *tm_msec); } #endif
[ "eric_yangleilei@live.cn" ]
eric_yangleilei@live.cn
d3010ac0ffdb36361611283d2b895a206d6fe06b
0932a1d94a15ef74294acde30e1bc3267084e3f4
/OJ/POJ1/POJ1837.cpp
b6a761bf9d6313ccca070792616e939fcd207afc
[]
no_license
wuzhen247/ACM-ICPC
9e585cb425cb0a5d2698f4c603f04a04ade84b88
65b5ab5e86c07e9f1d7c5c8e42f704bbabc8c20d
refs/heads/master
2020-05-17T19:51:48.804361
2016-09-03T12:21:59
2016-09-03T12:21:59
33,580,771
0
0
null
null
null
null
UTF-8
C++
false
false
474
cpp
//天平平衡 dp #include<iostream> #include<cstring> #include<cstdio> using namespace std; int dp[22][15002]; int c[22]; int g[22]; int main() { int C,G,i,j,k; scanf("%d%d",&C,&G); for(i=1;i<=C;i++) scanf("%d",&c[i]); for(i=1;i<=G;i++) scanf("%d",&g[i]); memset(dp,0,sizeof(dp)); dp[0][7500]=1; for(i=1;i<=G;i++) { for(j=1;j<=15000;j++) if(dp[i-1][j]) for(k=1;k<=C;k++) dp[i][j+g[i]*c[k]]+=dp[i-1][j]; } printf("%d\n",dp[G][7500]); return 0; }
[ "aaronzark@163.com" ]
aaronzark@163.com
91a29dd2d51807df57bb77d385537f885a0d042b
c9cf0586ace11aa32fa67606d237a130a06364ee
/circular-cylinder-10-35/9/p
0f99d6731622dd50ce091b75bc128c76b263b753
[]
no_license
jezvonek/CFD-Final-Project
c74cfa21f22545c27d97d85cf30eb6dc8c824dc1
7c9a7fb032d74f20888effa0a0b75b212bf899f4
refs/heads/master
2022-07-05T14:43:52.967657
2020-05-14T03:40:56
2020-05-14T03:40:56
262,370,756
1
1
null
null
null
null
UTF-8
C++
false
false
23,957
/*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | Website: https://openfoam.org \\ / A nd | Version: 6.0 \\/ M anipulation | \*---------------------------------------------------------------------------*/ FoamFile { version 2.0; format ascii; class volScalarField; location "9"; object p; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // dimensions [0 2 -2 0 0 0 0]; internalField nonuniform List<scalar> 2400 ( -114.995 -90.9917 -74.9513 -62.6989 -52.5707 -44.3067 -37.5881 -32.0648 -27.4576 -23.6273 -116.909 -92.6581 -76.3812 -63.9519 -53.7036 -45.3584 -38.5809 -33.0089 -28.3585 -24.5016 -118.743 -94.2451 -77.7379 -65.1381 -54.7755 -46.3539 -39.5221 -33.9057 -29.2172 -25.3406 -120.472 -95.7351 -79.0065 -66.2446 -55.7735 -47.2784 -40.3938 -34.736 -30.019 -26.1416 -122.069 -97.1048 -80.1685 -67.2578 -56.6896 -48.1282 -41.1919 -35.491 -30.75 -26.8873 -123.514 -98.3306 -81.1974 -68.1524 -57.5062 -48.8988 -41.9267 -36.1876 -31.4184 -27.5577 -124.8 -99.3955 -82.064 -68.8874 -58.1747 -49.5466 -42.5753 -36.8355 -32.0601 -28.1945 -125.938 -100.299 -82.7542 -69.4274 -58.6278 -49.9658 -43.0051 -37.3158 -32.6372 -28.9159 -126.939 -101.057 -83.2853 -69.7817 -58.8452 -50.0703 -43.0266 -37.3369 -32.8526 -29.5954 -127.792 -101.69 -83.6992 -70.0102 -58.903 -49.9403 -42.6764 -36.7799 -32.2349 -29.1557 -132.399 -132.255 -131.978 -131.612 -131.184 -130.707 -130.193 -129.65 -129.08 -128.473 -104.592 -104.567 -104.443 -104.246 -103.993 -103.696 -103.367 -103.013 -102.632 -102.204 -85.6041 -85.6061 -85.5324 -85.3975 -85.2165 -85.0046 -84.7763 -84.5406 -84.2965 -84.0282 -71.4942 -71.4652 -71.3715 -71.2254 -71.0443 -70.8453 -70.6492 -70.4696 -70.3148 -70.174 -60.2091 -60.1326 -59.9972 -59.8144 -59.6064 -59.3895 -59.1948 -59.0386 -58.9465 -58.9139 -51.1434 -51.0223 -50.8457 -50.6226 -50.3809 -50.1316 -49.9235 -49.7696 -49.7274 -49.7878 -43.7913 -43.634 -43.4229 -43.1632 -42.8871 -42.5924 -42.3558 -42.1801 -42.192 -42.3295 -37.7299 -37.5465 -37.3109 -37.025 -36.7203 -36.371 -36.0829 -35.8423 -35.9256 -36.1587 -32.651 -32.4506 -32.2036 -31.911 -31.5967 -31.2041 -30.8458 -30.4756 -30.5874 -31.0362 -28.3984 -28.1647 -27.8958 -27.6002 -27.282 -26.8684 -26.4261 -25.878 -25.7612 -26.4318 -124.037 -125.667 -127.125 -128.424 -129.55 -130.488 -131.229 -131.78 -132.151 -132.356 -96.581 -98.0656 -99.4219 -100.634 -101.686 -102.568 -103.282 -103.833 -104.233 -104.485 -78.5224 -79.8499 -81.0681 -82.147 -83.0687 -83.8337 -84.4512 -84.9308 -85.2793 -85.5024 -65.4717 -66.6719 -67.7603 -68.7019 -69.4852 -70.1219 -70.6274 -71.0113 -71.2795 -71.4382 -55.14 -56.2553 -57.2381 -58.0526 -58.7065 -59.2271 -59.6312 -59.9258 -60.1159 -60.2079 -46.842 -47.9259 -48.8329 -49.5312 -50.0688 -50.4915 -50.8113 -51.0308 -51.1549 -51.1906 -40.06 -41.1601 -42.0194 -42.6168 -43.0575 -43.4022 -43.6529 -43.8116 -43.884 -43.8765 -34.4666 -35.5514 -36.3507 -36.8711 -37.247 -37.5324 -37.7265 -37.8397 -37.8772 -37.842 -30.1208 -30.9834 -31.5733 -32.0309 -32.3739 -32.6005 -32.736 -32.8134 -32.8307 -32.7808 -27.3563 -27.7889 -27.7935 -28.1491 -28.4691 -28.5989 -28.6359 -28.6544 -28.6383 -28.5622 -18.293 -21.7524 -25.9412 -30.9058 -36.8556 -44.1066 -53.0489 -64.2361 -79.9828 -105.213 -18.7737 -22.3098 -26.5626 -31.6037 -37.65 -45.0217 -54.1181 -65.5041 -81.4966 -106.975 -19.3054 -22.9146 -27.2285 -32.3472 -38.4917 -45.9861 -55.2391 -66.8263 -83.0597 -108.765 -19.8968 -23.5667 -27.936 -33.1328 -39.378 -46.9974 -56.4093 -68.2006 -84.6765 -110.607 -20.5442 -24.2781 -28.7015 -33.975 -40.3179 -48.0588 -57.6275 -69.6227 -86.3432 -112.498 -21.2124 -25.0109 -29.4971 -34.856 -41.3011 -49.1646 -58.8889 -71.0867 -88.0503 -114.429 -21.9454 -25.8327 -30.3776 -35.8075 -42.3407 -50.3168 -60.1896 -72.5839 -89.786 -116.384 -22.7165 -26.6912 -31.2933 -36.7947 -43.4174 -51.5042 -61.5189 -74.1013 -91.5344 -118.347 -23.7941 -27.8035 -32.3521 -37.8588 -44.5425 -52.7216 -62.8616 -75.6182 -93.2746 -120.299 -25.2056 -28.9474 -33.3785 -38.9333 -45.6917 -53.9474 -64.1923 -77.1055 -94.9733 -122.212 -14.9471 -17.1067 -20.3704 -24.6455 -29.8667 -36.2078 -43.9536 -53.5006 -66.9874 -89.5929 -15.7534 -18.0931 -21.4061 -25.6157 -30.7568 -37.0573 -44.8152 -54.4336 -68.0687 -90.8952 -15.7362 -18.4944 -22.0497 -26.3599 -31.5456 -37.8864 -45.7059 -55.4272 -69.2283 -92.2739 -15.7978 -18.7427 -22.4531 -26.8916 -32.1926 -38.6429 -46.5781 -56.4435 -70.4438 -93.7319 -16.0432 -19.0564 -22.844 -27.3717 -32.7803 -39.3533 -47.4285 -57.4667 -71.6961 -95.2508 -16.353 -19.438 -23.2923 -27.8888 -33.3846 -40.0684 -48.2835 -58.5048 -72.9788 -96.812 -16.6747 -19.8461 -23.7745 -28.4425 -34.023 -40.8131 -49.166 -59.5727 -74.2959 -98.409 -17.0258 -20.277 -24.2764 -29.0191 -34.6892 -41.5896 -50.0838 -60.6795 -75.6542 -100.044 -17.4164 -20.7362 -24.8 -29.6171 -35.3801 -42.3957 -51.0366 -61.8269 -77.0574 -101.724 -17.8445 -21.2302 -25.355 -30.2448 -36.1006 -43.2334 -52.0245 -63.0136 -78.5035 -103.45 -12.3368 -11.3494 -11.0245 -11.0418 -11.1288 -11.2698 -11.4628 -11.7128 -12.0379 -12.4177 -15.6512 -14.8305 -14.3114 -14.2111 -14.2237 -14.3458 -14.5305 -14.7834 -15.1067 -15.4842 -19.3086 -18.6396 -18.1273 -17.9437 -17.8961 -17.9893 -18.1632 -18.4187 -18.7453 -19.13 -23.7407 -23.0979 -22.6174 -22.3804 -22.2873 -22.344 -22.4996 -22.7499 -23.0773 -23.4707 -29.0493 -28.4066 -27.9351 -27.6623 -27.5392 -27.5653 -27.7051 -27.9502 -28.2816 -28.6885 -35.4335 -34.7925 -34.3138 -34.0112 -33.864 -33.8663 -33.9945 -34.2375 -34.5783 -35.0057 -43.1761 -42.5186 -42.0133 -41.6735 -41.4944 -41.4695 -41.583 -41.8229 -42.1745 -42.6265 -52.6613 -51.939 -51.3668 -50.9606 -50.7236 -50.6514 -50.7334 -50.9583 -51.3134 -51.7859 -65.9981 -65.1319 -64.4275 -63.904 -63.5659 -63.4105 -63.4303 -63.6161 -63.9542 -64.4253 -88.351 -87.2647 -86.3721 -85.6856 -85.207 -84.9328 -84.857 -84.9714 -85.2586 -85.683 -12.8372 -13.2718 -13.7275 -14.2066 -14.713 -15.2012 -15.5783 -15.8639 -16.3079 -16.679 -15.9056 -16.3513 -16.8216 -17.3093 -17.8087 -18.2925 -18.7253 -19.0754 -19.3255 -19.5017 -19.5622 -20.0262 -20.5189 -21.0292 -21.546 -22.0522 -22.5357 -22.9603 -23.2568 -23.4629 -23.917 -24.4024 -24.9205 -25.4592 -26.0064 -26.5495 -27.079 -27.5663 -27.9704 -28.3245 -29.1561 -29.6704 -30.2227 -30.8009 -31.3937 -31.9892 -32.5753 -33.1325 -33.6511 -34.1636 -35.5038 -36.0575 -36.6566 -37.2898 -37.9462 -38.6139 -39.2797 -39.932 -40.5766 -41.2431 -43.162 -43.7638 -44.4215 -45.1241 -45.8611 -46.621 -47.3919 -48.1682 -48.9602 -49.7917 -52.3565 -53.0049 -53.7227 -54.4999 -55.3258 -56.1897 -57.0832 -58.0051 -58.9654 -59.9804 -65.002 -65.6701 -66.425 -67.2572 -68.1552 -69.1102 -70.1187 -71.1848 -72.3159 -73.5143 -86.1993 -86.8294 -87.5679 -88.4016 -89.3178 -90.3102 -91.3815 -92.542 -93.7958 -95.12 -96.4749 -74.7697 -61.0555 -50.6791 -41.962 -34.7321 -28.7599 -23.8023 -19.753 -16.4187 -97.931 -76.091 -62.1904 -51.6291 -42.7504 -35.3898 -29.3254 -24.3101 -20.1643 -16.6238 -99.5072 -77.4973 -63.3978 -52.6534 -43.6225 -36.145 -29.9938 -24.901 -20.6616 -17.0579 -101.2 -78.9934 -64.6811 -53.7535 -44.5777 -36.9935 -30.7682 -25.6253 -21.3516 -17.7448 -103 -80.5734 -66.0364 -54.9238 -45.6057 -37.9164 -31.6153 -26.4174 -22.0993 -18.4689 -104.894 -82.2269 -67.4544 -56.1545 -46.6961 -38.9047 -32.5312 -27.281 -22.9176 -19.2515 -106.866 -83.9405 -68.9217 -57.432 -47.8342 -39.9417 -33.4938 -28.1847 -23.7645 -20.0506 -108.899 -85.6986 -70.4234 -58.7416 -49.0069 -41.0168 -34.4978 -29.1321 -24.6585 -20.902 -110.967 -87.4807 -71.9432 -60.0681 -50.1987 -42.1138 -35.5256 -30.1055 -25.5836 -21.7961 -113.019 -89.258 -73.4621 -61.3955 -51.3943 -43.2177 -36.563 -31.0909 -26.5265 -22.7183 -13.8493 -5.42613 -2.5663 -1.40864 -0.733386 -0.468583 -0.367043 -0.345493 -0.351282 -0.365143 -0.384945 -0.424974 -0.501064 -0.611667 -0.716267 -0.734572 -0.599873 -0.372025 -0.168604 -0.0147564 -14.7243 -6.06747 -2.83671 -1.56874 -0.84127 -0.533112 -0.41093 -0.376721 -0.374238 -0.382299 -0.397635 -0.433066 -0.503089 -0.605705 -0.702058 -0.716267 -0.585492 -0.365896 -0.168088 -0.0160294 -15.5902 -6.74298 -3.14786 -1.73933 -0.954347 -0.600063 -0.455041 -0.407616 -0.396741 -0.399004 -0.409867 -0.44067 -0.5047 -0.599643 -0.688311 -0.698905 -0.57205 -0.360262 -0.167686 -0.0172956 -16.4856 -7.42734 -3.46062 -1.90172 -1.06599 -0.668257 -0.499349 -0.438255 -0.418857 -0.415307 -0.421692 -0.44786 -0.505999 -0.593608 -0.675132 -0.682532 -0.559539 -0.35511 -0.167387 -0.0185615 -17.3674 -8.03047 -3.71563 -2.03375 -1.16906 -0.735977 -0.543503 -0.468565 -0.440597 -0.431239 -0.433155 -0.454706 -0.507086 -0.58771 -0.662598 -0.667171 -0.547941 -0.350421 -0.167188 -0.0198309 -18.0937 -8.50759 -3.93724 -2.16179 -1.27463 -0.806168 -0.58804 -0.498577 -0.461954 -0.446811 -0.444287 -0.461274 -0.508052 -0.582041 -0.650768 -0.652824 -0.537224 -0.346171 -0.167086 -0.0211066 -18.7555 -9.17506 -4.35525 -2.39878 -1.42513 -0.891959 -0.636792 -0.529413 -0.483286 -0.462161 -0.455164 -0.467625 -0.50897 -0.576684 -0.639708 -0.639507 -0.527367 -0.342341 -0.167077 -0.0223907 -20.123 -10.6407 -5.23638 -2.84363 -1.65523 -1.00729 -0.695857 -0.56362 -0.505684 -0.477786 -0.465998 -0.473826 -0.509846 -0.571673 -0.629506 -0.627315 -0.518421 -0.338956 -0.167178 -0.0236884 -22.5055 -12.602 -6.30768 -3.32933 -1.89166 -1.13138 -0.76084 -0.600381 -0.529159 -0.493855 -0.476927 -0.479939 -0.510662 -0.566925 -0.620076 -0.616213 -0.510397 -0.336039 -0.167403 -0.0250079 -22.458 -12.8077 -6.48759 -3.3615 -1.92958 -1.18544 -0.800758 -0.626478 -0.547725 -0.507623 -0.486962 -0.48599 -0.511786 -0.562461 -0.610754 -0.605116 -0.502387 -0.333068 -0.167537 -0.0263223 -17.8159 -11.1515 -5.79479 -2.97107 -1.77787 -1.16392 -0.810044 -0.638188 -0.559703 -0.519313 -0.497922 -0.494403 -0.514499 -0.556738 -0.596652 -0.587244 -0.488938 -0.327534 -0.167139 -0.0281094 -13.4784 -9.3422 -5.20877 -2.74794 -1.69537 -1.18007 -0.857138 -0.679399 -0.591997 -0.544398 -0.516865 -0.507304 -0.519825 -0.55214 -0.581738 -0.566602 -0.472079 -0.319608 -0.165819 -0.0300071 -10.2579 -7.68302 -4.67301 -2.60405 -1.6308 -1.18105 -0.898035 -0.721722 -0.626313 -0.571677 -0.537717 -0.521643 -0.526216 -0.548228 -0.567025 -0.54552 -0.454123 -0.310529 -0.163875 -0.0318434 -7.55288 -6.11358 -4.11469 -2.5025 -1.60696 -1.18512 -0.934685 -0.764561 -0.661621 -0.599809 -0.559634 -0.536949 -0.53318 -0.544423 -0.552075 -0.524078 -0.43573 -0.301041 -0.161732 -0.0337525 -5.67916 -4.86131 -3.55202 -2.33686 -1.56551 -1.18119 -0.961768 -0.804128 -0.697094 -0.628564 -0.582339 -0.552992 -0.540662 -0.540987 -0.537511 -0.503125 -0.417646 -0.291552 -0.159501 -0.0356814 -4.33182 -3.78938 -2.95197 -2.13536 -1.54723 -1.20029 -0.989778 -0.839566 -0.731364 -0.657299 -0.605267 -0.569372 -0.548561 -0.53821 -0.524021 -0.483519 -0.400503 -0.282323 -0.157199 -0.0375291 -3.36451 -3.01544 -2.50773 -1.9708 -1.51772 -1.20396 -1.00485 -0.866773 -0.76272 -0.685205 -0.627688 -0.58548 -0.556597 -0.536251 -0.512191 -0.466051 -0.384961 -0.273707 -0.154906 -0.0392052 -2.76081 -2.51396 -2.17717 -1.8073 -1.47053 -1.21078 -1.02842 -0.895989 -0.792573 -0.711281 -0.648442 -0.60037 -0.564252 -0.535131 -0.502536 -0.451505 -0.371767 -0.266177 -0.152777 -0.0406252 -2.41614 -2.21592 -1.96898 -1.69865 -1.43734 -1.21423 -1.04178 -0.912302 -0.811289 -0.729941 -0.66448 -0.612278 -0.570601 -0.534672 -0.49549 -0.440658 -0.36174 -0.260303 -0.151016 -0.0417024 -2.25377 -2.07471 -1.86831 -1.64271 -1.41704 -1.21461 -1.05013 -0.923044 -0.823141 -0.741613 -0.674471 -0.61965 -0.574573 -0.534578 -0.491503 -0.434424 -0.355892 -0.256821 -0.149896 -0.0423341 -22.6767 -22.2937 -21.884 -21.4987 -21.0623 -20.5691 -19.8803 -19.1001 -18.2205 -18.3375 -16.2398 -15.7579 -15.2546 -14.7824 -14.2642 -13.7405 -13.1433 -12.7421 -12.572 -13.236 -11.3359 -10.9729 -10.6182 -10.3115 -10.0447 -9.86829 -9.78072 -9.83917 -9.94186 -10.2156 -8.23743 -8.05726 -7.90336 -7.79133 -7.71485 -7.66703 -7.60015 -7.49229 -7.34381 -7.35324 -6.23001 -6.13684 -6.04958 -5.96055 -5.85895 -5.74106 -5.60957 -5.49652 -5.43983 -5.49735 -4.73738 -4.67105 -4.60322 -4.53256 -4.46314 -4.40304 -4.3582 -4.32991 -4.31284 -4.31393 -3.72951 -3.69519 -3.6604 -3.62488 -3.58902 -3.55255 -3.51398 -3.4723 -3.43084 -3.39924 -3.11207 -3.09165 -3.0674 -3.03928 -3.0076 -2.97297 -2.93631 -2.89865 -2.86171 -2.82685 -2.75246 -2.73788 -2.71921 -2.69673 -2.67082 -2.64187 -2.61024 -2.57624 -2.54037 -2.50307 -2.58343 -2.57146 -2.55537 -2.53539 -2.51175 -2.48472 -2.45457 -2.42161 -2.38616 -2.34854 -24.5048 -25.1701 -23.5952 -23.5124 -23.7735 -23.6965 -23.4831 -23.3164 -23.169 -22.9796 -20.9168 -20.8286 -18.5146 -17.7235 -17.8885 -17.8635 -17.5578 -17.2343 -16.953 -16.6484 -16.304 -15.6965 -13.3713 -12.3862 -12.5197 -12.6974 -12.5523 -12.2589 -11.9643 -11.6714 -11.7116 -11.1791 -9.42687 -8.60563 -8.72026 -9.00558 -9.03935 -8.86677 -8.64221 -8.43292 -8.21078 -7.97319 -6.91677 -6.34269 -6.38005 -6.60354 -6.69228 -6.61536 -6.47327 -6.33958 -5.76851 -5.73491 -5.21432 -4.87269 -4.84166 -4.94243 -4.99941 -4.96868 -4.89087 -4.80914 -4.10868 -4.15014 -3.95982 -3.81194 -3.78159 -3.81337 -3.83842 -3.83121 -3.80133 -3.76492 -3.11688 -3.17477 -3.14463 -3.11435 -3.1134 -3.12988 -3.14449 -3.14816 -3.1417 -3.1289 -2.62913 -2.68799 -2.71084 -2.72267 -2.73613 -2.75081 -2.7624 -2.76829 -2.76816 -2.76268 -2.43558 -2.4927 -2.52545 -2.54515 -2.56123 -2.57549 -2.58644 -2.59283 -2.59433 -2.59112 0.1958 0.153885 0.0573313 -0.136051 -0.474117 -1.09319 -2.09397 -3.90129 -7.19824 -15.2208 0.0327906 -0.013807 -0.116036 -0.319213 -0.669121 -1.30681 -2.34053 -4.23639 -7.30542 -14.1638 -0.143093 -0.191887 -0.293046 -0.49418 -0.826368 -1.44285 -2.3733 -4.17042 -6.5946 -11.4892 -0.328505 -0.378988 -0.475132 -0.66945 -0.960145 -1.53371 -2.26688 -3.76582 -5.59985 -8.72738 -0.518095 -0.569568 -0.657093 -0.841753 -1.08199 -1.58083 -2.14743 -3.19644 -4.55182 -6.39277 -0.705572 -0.753892 -0.832787 -0.995092 -1.20235 -1.57737 -2.04386 -2.67684 -3.59797 -4.70276 -0.882649 -0.920391 -0.993081 -1.11917 -1.30526 -1.553 -1.92064 -2.30065 -2.8781 -3.54648 -1.03535 -1.06042 -1.12419 -1.21647 -1.36997 -1.5352 -1.79741 -2.05774 -2.41892 -2.82013 -1.14853 -1.16637 -1.21738 -1.28881 -1.40519 -1.53335 -1.71876 -1.91847 -2.16476 -2.43371 -1.21219 -1.22799 -1.26945 -1.33142 -1.42526 -1.53902 -1.68687 -1.85488 -2.04996 -2.26798 1.22464 1.2106 1.17225 1.07919 0.881434 0.515078 -0.16091 -1.31158 -3.52025 -9.90585 1.11532 1.09825 1.05282 0.949124 0.736839 0.348511 -0.348243 -1.55365 -3.72684 -10.0675 1.00769 0.987733 0.935608 0.821508 0.595474 0.184163 -0.532502 -1.79839 -3.95502 -10.266 0.902048 0.879349 0.820971 0.696719 0.457683 0.0225478 -0.713073 -2.04464 -4.21649 -10.5451 0.798639 0.77337 0.709206 0.575082 0.323682 -0.136023 -0.890137 -2.2898 -4.49052 -10.8361 0.697662 0.670019 0.600552 0.456872 0.193554 -0.291296 -1.06474 -2.5337 -4.80052 -11.1422 0.599282 0.569491 0.495191 0.342323 0.0672642 -0.442888 -1.23786 -2.76776 -5.12876 -11.3566 0.503649 0.472016 0.393316 0.231628 -0.0553277 -0.590482 -1.41363 -2.99303 -5.5455 -11.6473 0.410828 0.377756 0.295168 0.125033 -0.174572 -0.733779 -1.59363 -3.20386 -5.97425 -12.047 0.320442 0.285732 0.199645 0.0219566 -0.291149 -0.876102 -1.79253 -3.46386 -6.55532 -13.3545 2.32622 2.3449 2.38505 2.41654 2.38891 2.21143 1.80908 0.6322 -3.00837 -10.0603 2.22131 2.23554 2.2661 2.27912 2.22219 1.98489 1.47838 0.268895 -3.41044 -10.6894 2.11451 2.1257 2.14826 2.14698 2.07355 1.82443 1.32568 0.337927 -2.68174 -9.39058 2.00579 2.01418 2.02954 2.01667 1.93228 1.68833 1.21805 0.404737 -2.16291 -8.82497 1.89546 1.90081 1.90885 1.88478 1.78789 1.5406 1.05867 0.253928 -2.21072 -8.93044 1.78397 1.78611 1.78647 1.75075 1.63784 1.37445 0.846963 -0.0402628 -2.49209 -9.10514 1.67178 1.67063 1.66312 1.61548 1.48449 1.19942 0.623695 -0.343225 -2.74263 -9.20802 1.55931 1.55488 1.53946 1.47998 1.33088 1.02462 0.414142 -0.60472 -2.9378 -9.33174 1.44703 1.43932 1.41606 1.34507 1.17878 0.852837 0.218361 -0.840699 -3.12524 -9.51493 1.33534 1.32442 1.29348 1.21132 1.02886 0.683253 0.02807 -1.07382 -3.32259 -9.72801 4.05635 4.07428 4.10919 4.15827 4.21511 4.27191 4.32158 4.35804 4.37594 4.36837 3.98824 4.0114 4.05672 4.12084 4.19653 4.27498 4.34764 4.40582 4.44051 4.43852 3.8674 3.89799 3.95801 4.04346 4.14607 4.25587 4.36314 4.45705 4.52103 4.534 3.70394 3.74169 3.81585 3.92178 4.05009 4.18921 4.32793 4.45481 4.54467 4.58051 3.50928 3.55223 3.63659 3.75681 3.90166 4.05683 4.2064 4.33265 4.39554 4.40556 3.29615 3.34137 3.43027 3.55699 3.71119 3.87979 4.01874 4.03289 3.88882 3.76939 3.07688 3.12119 3.20795 3.32838 3.46648 3.60763 3.6963 3.55374 3.06253 2.57547 2.86173 2.9023 2.98127 3.08663 3.19655 3.30093 3.33616 2.94393 1.78873 0.510342 2.65827 2.6932 2.76012 2.84233 2.90805 2.93603 2.87355 2.22341 0.262871 -2.18659 2.47043 2.49849 2.5526 2.60926 2.62655 2.55729 2.35361 1.43415 -1.4613 -6.00841 4.34518 4.33261 4.31667 4.29816 4.27716 4.25348 4.22706 4.1979 4.16604 4.13156 4.41577 4.39904 4.37586 4.34994 4.3215 4.28998 4.25522 4.21733 4.17651 4.13295 4.52656 4.50508 4.47295 4.43902 4.40315 4.36425 4.32226 4.27747 4.23014 4.1805 4.62803 4.60724 4.572 4.53331 4.49057 4.44323 4.39149 4.3356 4.27583 4.21243 4.51238 4.49861 4.47404 4.4421 4.40127 4.35148 4.29287 4.22612 4.15204 4.07128 4.00048 4.03227 4.02667 3.99566 3.94454 3.88044 3.80445 3.71781 3.61999 3.51049 2.85596 2.9158 2.88777 2.85602 2.81276 2.75931 2.68044 2.57527 2.43871 2.27205 0.747813 0.970317 1.034 1.06929 1.01941 0.924147 0.77147 0.577142 0.326481 0.0272211 -1.91055 -1.45101 -1.5046 -1.63164 -1.88072 -2.11497 -2.39253 -2.69776 -3.07706 -3.51207 -6.2258 -5.85106 -6.14794 -6.35555 -6.62157 -6.83218 -7.09736 -7.39783 -7.78569 -8.22986 4.09455 4.05513 4.01344 3.96964 3.9239 3.8764 3.82733 3.77689 3.72532 3.67281 4.0869 4.03866 3.98861 3.93719 3.88489 3.83225 3.77984 3.7283 3.67813 3.62826 4.12878 4.07522 4.01997 3.96316 3.90486 3.84526 3.78469 3.72322 3.65898 3.58703 4.14564 4.07557 4.00227 3.92635 3.84896 3.77017 3.68625 3.58965 3.47602 3.3615 3.98338 3.88648 3.77976 3.66876 3.56438 3.46442 3.3299 3.10452 2.80884 2.63638 3.38584 3.23896 3.06617 2.88618 2.7412 2.63461 2.43638 1.94106 1.21263 0.941746 2.07505 1.84128 1.5594 1.25074 0.997327 0.849737 0.594093 -0.230696 -1.61617 -2.12503 -0.307184 -0.670754 -1.08822 -1.56683 -2.02316 -2.32052 -2.63357 -3.66596 -5.59847 -6.26694 -3.97333 -4.43841 -4.94089 -5.51946 -6.1445 -6.63783 -6.97308 -7.87298 -9.88042 -10.4339 -8.69988 -9.16761 -9.65854 -10.1991 -10.8069 -11.3773 -11.7175 -12.1443 -13.5673 -13.9573 3.53854 3.27992 2.99799 2.59775 2.10267 1.61369 1.19159 0.845266 0.562142 0.334408 0.155225 -0.00554211 -0.185568 -0.425596 -0.744428 -0.970994 -0.794608 -0.303517 0.0588522 0.0935192 3.48855 3.25284 3.03477 2.52569 1.96734 1.4845 1.08323 0.750707 0.481174 0.274229 0.122667 -0.0122755 -0.182996 -0.440926 -0.796922 -1.05576 -0.89101 -0.390178 0.00398661 0.0817531 3.38569 3.10748 2.92995 2.29827 1.75088 1.3157 0.947877 0.638547 0.392977 0.21409 0.088299 -0.0313238 -0.204317 -0.485699 -0.871189 -1.14453 -0.981286 -0.47519 -0.0564253 0.0673503 3.10098 2.7527 2.63543 2.00769 1.52595 1.14262 0.811191 0.532284 0.314137 0.157993 0.0463797 -0.0679809 -0.245543 -0.539901 -0.929829 -1.19093 -1.02154 -0.524301 -0.102938 0.0529668 2.55279 2.36586 2.2548 1.72748 1.30989 0.974101 0.681153 0.433601 0.239779 0.10032 -0.00214964 -0.112692 -0.290405 -0.583745 -0.957902 -1.19214 -1.01651 -0.540538 -0.134017 0.0399168 1.50434 1.92504 1.71799 1.40062 1.08135 0.807609 0.557646 0.341175 0.169212 0.0436644 -0.0509191 -0.156729 -0.329787 -0.611744 -0.959154 -1.16262 -0.984375 -0.536462 -0.15337 0.0288816 -0.606431 0.965281 0.982486 0.987495 0.829618 0.639831 0.438988 0.254367 0.103312 -0.00940789 -0.0963904 -0.196302 -0.361202 -0.626257 -0.943459 -1.11813 -0.941032 -0.522746 -0.164966 0.0199448 -3.60017 -0.615457 0.180989 0.542471 0.570679 0.474296 0.3255 0.173036 0.0424506 -0.0577791 -0.137009 -0.230068 -0.384995 -0.63155 -0.919682 -1.06971 -0.896195 -0.505886 -0.171762 0.0128511 -6.5739 -2.25699 -0.509948 0.167129 0.337322 0.322102 0.220427 0.0977189 -0.0134941 -0.10149 -0.172746 -0.258558 -0.403223 -0.631933 -0.893922 -1.02349 -0.854617 -0.489169 -0.175678 0.00726003 -7.92684 -3.1125 -0.874794 -0.0370169 0.176758 0.209364 0.137441 0.0355867 -0.0610041 -0.139546 -0.204623 -0.284497 -0.419732 -0.63137 -0.869075 -0.980927 -0.817294 -0.473686 -0.177803 0.00283749 -6.99166 -3.03025 -0.935011 -0.0491707 0.122932 0.167169 0.103089 0.007346 -0.084959 -0.162085 -0.227243 -0.305397 -0.433487 -0.630245 -0.847769 -0.946301 -0.788132 -0.461441 -0.178709 -0.000350939 -6.59725 -2.8033 -1.10802 -0.123705 0.0397644 0.0996728 0.052412 -0.0312663 -0.113998 -0.184447 -0.245342 -0.320757 -0.44498 -0.633253 -0.837141 -0.924214 -0.766938 -0.451065 -0.177914 -0.00218172 -7.11861 -2.70533 -1.32505 -0.22948 -0.0371382 0.0324696 0.0014621 -0.0711524 -0.144527 -0.207712 -0.263476 -0.335663 -0.456009 -0.636187 -0.82716 -0.902879 -0.745529 -0.439916 -0.176348 -0.00373182 -7.85851 -2.69925 -1.50841 -0.365493 -0.11356 -0.0339048 -0.0475082 -0.108715 -0.173143 -0.229635 -0.280709 -0.349555 -0.465456 -0.637128 -0.815595 -0.881209 -0.724818 -0.42947 -0.174954 -0.00523482 -8.66198 -2.83759 -1.65253 -0.515545 -0.190011 -0.0985272 -0.0954007 -0.145023 -0.200682 -0.25073 -0.297306 -0.362614 -0.473579 -0.636442 -0.80275 -0.859256 -0.704759 -0.419727 -0.173772 -0.00670894 -9.41558 -3.06192 -1.77141 -0.67025 -0.269619 -0.161508 -0.142421 -0.180416 -0.227511 -0.271257 -0.31336 -0.374892 -0.480546 -0.634486 -0.789093 -0.837333 -0.685309 -0.410502 -0.172691 -0.00813629 -10.1873 -3.37627 -1.88751 -0.823769 -0.353611 -0.223203 -0.188619 -0.214925 -0.253622 -0.291202 -0.328839 -0.386378 -0.486428 -0.631434 -0.774877 -0.815667 -0.666545 -0.40176 -0.171683 -0.00951781 -11.0088 -3.7642 -2.01219 -0.972722 -0.442169 -0.284146 -0.234062 -0.248606 -0.279016 -0.310546 -0.343725 -0.397084 -0.491308 -0.627447 -0.760295 -0.794423 -0.648562 -0.393532 -0.170764 -0.0108626 -11.9308 -4.24827 -2.16069 -1.11729 -0.534935 -0.34492 -0.278847 -0.281536 -0.303726 -0.3293 -0.358023 -0.407049 -0.495295 -0.622704 -0.745544 -0.773744 -0.63143 -0.385834 -0.169942 -0.012179 -12.9066 -4.81203 -2.34244 -1.26039 -0.631724 -0.406141 -0.323106 -0.313802 -0.327797 -0.347489 -0.371754 -0.416325 -0.498506 -0.617386 -0.730811 -0.753759 -0.615191 -0.378666 -0.169224 -0.0134736 ) ; boundaryField { inlet { type freestreamPressure; freestreamValue uniform 0; supersonic false; value nonuniform List<scalar> 40 ( 0.1958 0.0327906 -0.143093 -0.328505 -0.518095 -0.705572 -0.882649 -1.03535 -1.14853 -1.21219 1.22464 1.11532 1.00769 0.902048 0.798639 0.697662 0.599282 0.503649 0.410828 0.320442 2.32622 2.22131 2.11451 2.00579 1.89546 1.78397 1.67178 1.55931 1.44703 1.33534 4.05635 3.98824 3.8674 3.70394 3.50928 3.29615 3.07688 2.86173 2.65827 2.47043 ) ; } outlet { type freestreamPressure; freestreamValue uniform 0; supersonic false; value nonuniform List<scalar> 40 ( -0.000292444 -0.000285307 -0.000269339 -0.000245695 -0.000213431 -0.000172488 -0.000125015 -7.56743e-05 -3.18702e-05 -3.9423e-06 -0.000216874 -0.00022932 -0.000240528 -0.00025059 -0.000259556 -0.000267465 -0.000274349 -0.000280274 -0.000285311 -0.000289176 -6.22135e-06 -3.82538e-05 -6.45563e-05 -8.92119e-05 -0.000112463 -0.000133939 -0.000153622 -0.000171642 -0.000188119 -0.000203148 4.24702e-05 0.000283169 0.000506873 0.000597861 0.00056521 0.000464019 0.000342617 0.000227786 0.000130028 5.07569e-05 ) ; } top { type symmetryPlane; } bottom { type symmetryPlane; } cylinder { type zeroGradient; } frontandback { type empty; } } // ************************************************************************* //
[ "danieler@login3.stampede2.tacc.utexas.edu" ]
danieler@login3.stampede2.tacc.utexas.edu
44fe0d0415bc604a5f64c971f3d1910ee6c3d3bf
81bf131db52b0170ac62ce3bfd9d03a4f42e4da2
/Basics3/Recursivitat/Recursivitat3/Exercici4.cpp
9bbe7fff55e1b1ba7913df82cf90bdd26ce33430
[]
no_license
DanielBG26/Exercises-c-
e3f495184272032bd68a157103d68a2f3f6f0d49
fab6aa53f8c4d8495837a86a859b65cf34eedb24
refs/heads/main
2023-05-05T08:41:30.547113
2021-05-31T21:55:45
2021-05-31T21:55:45
368,212,118
1
0
null
null
null
null
UTF-8
C++
false
false
654
cpp
#include <vector> using namespace std; int DividirArray(vector<int>& v,int indexInici,int indexFinal) { int pos=indexInici; int pivot = v[indexFinal]; for (int i = indexInici-1; i < indexFinal;i++) { if (v[i+1] < pivot) { if (pos != i+1) { int aux = v[pos]; v[pos] = v[i+1]; v[i+1] = aux; } pos++; } } int aux = v[indexFinal]; v[indexFinal] = v[pos]; v[pos] = aux; return pos; } void quicksort(vector<int>& v, int indexInici, int indexFinal) { if (indexInici < indexFinal) { int PosPivot = DividirArray(v,indexInici,indexFinal); quicksort(v,indexInici,PosPivot-1); quicksort(v, PosPivot+1, indexFinal); } }
[ "danielbbgg@hotmail.com" ]
danielbbgg@hotmail.com
a70dd6ffb9fbbedf8bc54412da341857283145a3
4b65a58728b0fc8790ce873ad1f406c414d32817
/src/stats/stats.cc
b2feffa136a1af93c946065ed4e1ac45957b15d4
[ "Unlicense" ]
permissive
lukasbm/HiL-Simulator
b4a57d18ef10c0664561d08f864f03816f568215
bef04b22ae2d30951015bfd7a1bf83ba0254dd56
refs/heads/main
2023-09-06T00:01:59.445334
2021-11-25T15:23:58
2021-11-25T15:23:58
415,667,103
3
0
null
null
null
null
UTF-8
C++
false
false
1,550
cc
#include "stats.h" #include <iostream> #include <fstream> json Stats::j; /** * completes the stat recording and writes results to output file. */ void Stats::finish() { std::ofstream o; o.open("results/output.json"); o << j.dump(4) << std::endl; o.close(); } void Stats::recordCpuUsage(const char* pcName, double val, omnetpp::simtime_t time, int core) { j[pcName]["cpuUsage"][std::to_string(core)].push_back({ {"time", time.dbl()}, {"value", val} }); } void Stats::recordTaskAssign(const char* pcName, Task* t, omnetpp::simtime_t time, int core) { j[pcName]["tasks"][std::to_string(t->getId())]["assign"].push_back({ {"time", time.dbl()}, {"core", core} }); } void Stats::recordTaskRelease(const char* pcName, Task* t, omnetpp::simtime_t time, int core) { j[pcName]["tasks"][std::to_string(t->getId())]["release"].push_back({ {"time", time.dbl()}, {"core", core} }); } void Stats::recordTaskAdd(const char* pcName, Task* t, omnetpp::simtime_t time) { j[pcName]["tasks"][std::to_string(t->getId())]["name"] = t->getEmitterName(); j[pcName]["tasks"][std::to_string(t->getId())]["add"] = time.dbl(); } void Stats::recordTaskRun(const char* pcName, Task* t, omnetpp::simtime_t time) { j[pcName]["tasks"][std::to_string(t->getId())]["run"].push_back(time.dbl()); } void Stats::recordTaskCompleted(const char* pcName, Task* t, omnetpp::simtime_t time) { j[pcName]["tasks"][std::to_string(t->getId())]["completed"] = time.dbl(); }
[ "boehm-lukas@outlook.de" ]
boehm-lukas@outlook.de
a7a4fb4a92408a4b1e4a7fbcd18302fef133c1c4
fca22e8e83e1026ae09cec9194a43e3f883c44cb
/third_party/skia/include/core/SkTypes.h
7963a7d1aeaf6f38fb7b5aa4d4d6f8882c1a535e
[ "BSD-3-Clause" ]
permissive
Chingliu/WTL-DUI
409a1001f3b8a9b3ab86c51adeb128f27d0439cd
232638c56378a8b2e621e8403be939d34d3c91a0
refs/heads/master
2021-01-15T14:24:00.135731
2013-08-14T08:00:20
2013-08-14T08:00:20
14,512,988
1
0
null
null
null
null
UTF-8
C++
false
false
15,511
h
/* * Copyright 2006 The Android Open Source Project * * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ #ifndef SkTypes_DEFINED #define SkTypes_DEFINED #include "SkPreConfig.h" #include "SkUserConfig.h" #include "SkPostConfig.h" #ifndef SK_IGNORE_STDINT_DOT_H #include <stdint.h> #endif #include <stdio.h> /** \file SkTypes.h */ /** See SkGraphics::GetVersion() to retrieve these at runtime */ #define SKIA_VERSION_MAJOR 1 #define SKIA_VERSION_MINOR 0 #define SKIA_VERSION_PATCH 0 /* memory wrappers to be implemented by the porting layer (platform) */ /** Called internally if we run out of memory. The platform implementation must not return, but should either throw an exception or otherwise exit. */ SK_API extern void sk_out_of_memory(void); /** Called internally if we hit an unrecoverable error. The platform implementation must not return, but should either throw an exception or otherwise exit. */ SK_API extern void sk_throw(void); enum { SK_MALLOC_TEMP = 0x01, //!< hint to sk_malloc that the requested memory will be freed in the scope of the stack frame SK_MALLOC_THROW = 0x02 //!< instructs sk_malloc to call sk_throw if the memory cannot be allocated. }; /** Return a block of memory (at least 4-byte aligned) of at least the specified size. If the requested memory cannot be returned, either return null (if SK_MALLOC_TEMP bit is clear) or call sk_throw() (if SK_MALLOC_TEMP bit is set). To free the memory, call sk_free(). */ SK_API extern void* sk_malloc_flags(size_t size, unsigned flags); /** Same as sk_malloc(), but hard coded to pass SK_MALLOC_THROW as the flag */ SK_API extern void* sk_malloc_throw(size_t size); /** Same as standard realloc(), but this one never returns null on failure. It will throw an exception if it fails. */ SK_API extern void* sk_realloc_throw(void* buffer, size_t size); /** Free memory returned by sk_malloc(). It is safe to pass null. */ SK_API extern void sk_free(void*); // bzero is safer than memset, but we can't rely on it, so... sk_bzero() static inline void sk_bzero(void* buffer, size_t size) { memset(buffer, 0, size); } /////////////////////////////////////////////////////////////////////////////// #ifdef SK_OVERRIDE_GLOBAL_NEW #include <new> inline void* operator new(size_t size) { return sk_malloc_throw(size); } inline void operator delete(void* p) { sk_free(p); } #endif /////////////////////////////////////////////////////////////////////////////// #define SK_INIT_TO_AVOID_WARNING = 0 #ifndef SkDebugf void SkDebugf(const char format[], ...); #endif #ifdef SK_DEBUG #define SkASSERT(cond) SK_DEBUGBREAK(cond) #define SkDEBUGFAIL(message) SkASSERT(false && message) #define SkDEBUGCODE(code) code #define SkDECLAREPARAM(type, var) , type var #define SkPARAM(var) , var // #define SkDEBUGF(args ) SkDebugf##args #define SkDEBUGF(args ) SkDebugf args #define SkAssertResult(cond) SkASSERT(cond) #else #define SkASSERT(cond) #define SkDEBUGFAIL(message) #define SkDEBUGCODE(code) #define SkDEBUGF(args) #define SkDECLAREPARAM(type, var) #define SkPARAM(var) // unlike SkASSERT, this guy executes its condition in the non-debug build #define SkAssertResult(cond) cond #endif namespace { template <bool> struct SkCompileAssert { }; } // namespace #define SK_COMPILE_ASSERT(expr, msg) \ typedef SkCompileAssert<(bool(expr))> msg[bool(expr) ? 1 : -1] /////////////////////////////////////////////////////////////////////// /** * Fast type for signed 8 bits. Use for parameter passing and local variables, * not for storage. */ typedef int S8CPU; /** * Fast type for unsigned 8 bits. Use for parameter passing and local * variables, not for storage */ typedef unsigned U8CPU; /** * Fast type for signed 16 bits. Use for parameter passing and local variables, * not for storage */ typedef int S16CPU; /** * Fast type for unsigned 16 bits. Use for parameter passing and local * variables, not for storage */ typedef unsigned U16CPU; /** * Meant to be faster than bool (doesn't promise to be 0 or 1, * just 0 or non-zero */ typedef int SkBool; /** * Meant to be a small version of bool, for storage purposes. Will be 0 or 1 */ typedef uint8_t SkBool8; #ifdef SK_DEBUG SK_API int8_t SkToS8(long); SK_API uint8_t SkToU8(size_t); SK_API int16_t SkToS16(long); SK_API uint16_t SkToU16(size_t); SK_API int32_t SkToS32(long); SK_API uint32_t SkToU32(size_t); #else #define SkToS8(x) ((int8_t)(x)) #define SkToU8(x) ((uint8_t)(x)) #define SkToS16(x) ((int16_t)(x)) #define SkToU16(x) ((uint16_t)(x)) #define SkToS32(x) ((int32_t)(x)) #define SkToU32(x) ((uint32_t)(x)) #endif /** Returns 0 or 1 based on the condition */ #define SkToBool(cond) ((cond) != 0) #define SK_MaxS16 32767 #define SK_MinS16 -32767 #define SK_MaxU16 0xFFFF #define SK_MinU16 0 #define SK_MaxS32 0x7FFFFFFF #define SK_MinS32 0x80000001 #define SK_MaxU32 0xFFFFFFFF #define SK_MinU32 0 #define SK_NaN32 0x80000000 /** Returns true if the value can be represented with signed 16bits */ static inline bool SkIsS16(long x) { return (int16_t)x == x; } /** Returns true if the value can be represented with unsigned 16bits */ static inline bool SkIsU16(long x) { return (uint16_t)x == x; } ////////////////////////////////////////////////////////////////////////////// #ifndef SK_OFFSETOF #define SK_OFFSETOF(type, field) (size_t)((char*)&(((type*)1)->field) - (char*)1) #endif /** Returns the number of entries in an array (not a pointer) */ #define SK_ARRAY_COUNT(array) (sizeof(array) / sizeof(array[0])) /** Returns x rounded up to a multiple of 2 */ #define SkAlign2(x) (((x) + 1) >> 1 << 1) /** Returns x rounded up to a multiple of 4 */ #define SkAlign4(x) (((x) + 3) >> 2 << 2) #define SkIsAlign4(x) (((x) & 3) == 0) typedef uint32_t SkFourByteTag; #define SkSetFourByteTag(a, b, c, d) (((a) << 24) | ((b) << 16) | ((c) << 8) | (d)) /** 32 bit integer to hold a unicode value */ typedef int32_t SkUnichar; /** 32 bit value to hold a millisecond count */ typedef uint32_t SkMSec; /** 1 second measured in milliseconds */ #define SK_MSec1 1000 /** maximum representable milliseconds */ #define SK_MSecMax 0x7FFFFFFF /** Returns a < b for milliseconds, correctly handling wrap-around from 0xFFFFFFFF to 0 */ #define SkMSec_LT(a, b) ((int32_t)(a) - (int32_t)(b) < 0) /** Returns a <= b for milliseconds, correctly handling wrap-around from 0xFFFFFFFF to 0 */ #define SkMSec_LE(a, b) ((int32_t)(a) - (int32_t)(b) <= 0) /**************************************************************************** The rest of these only build with C++ */ #ifdef __cplusplus /** Faster than SkToBool for integral conditions. Returns 0 or 1 */ static inline int Sk32ToBool(uint32_t n) { return (n | (0-n)) >> 31; } template <typename T> inline void SkTSwap(T& a, T& b) { T c(a); a = b; b = c; } static inline int32_t SkAbs32(int32_t value) { #ifdef SK_CPU_HAS_CONDITIONAL_INSTR if (value < 0) value = -value; return value; #else int32_t mask = value >> 31; return (value ^ mask) - mask; #endif } static inline int32_t SkMax32(int32_t a, int32_t b) { if (a < b) a = b; return a; } static inline int32_t SkMin32(int32_t a, int32_t b) { if (a > b) a = b; return a; } static inline int32_t SkSign32(int32_t a) { return (a >> 31) | ((unsigned) -a >> 31); } static inline int32_t SkFastMin32(int32_t value, int32_t max) { #ifdef SK_CPU_HAS_CONDITIONAL_INSTR if (value > max) value = max; return value; #else int diff = max - value; // clear diff if it is negative (clear if value > max) diff &= (diff >> 31); return value + diff; #endif } /** Returns signed 32 bit value pinned between min and max, inclusively */ static inline int32_t SkPin32(int32_t value, int32_t min, int32_t max) { #ifdef SK_CPU_HAS_CONDITIONAL_INSTR if (value < min) value = min; if (value > max) value = max; #else if (value < min) value = min; else if (value > max) value = max; #endif return value; } static inline uint32_t SkSetClearShift(uint32_t bits, bool cond, unsigned shift) { SkASSERT((int)cond == 0 || (int)cond == 1); return (bits & ~(1 << shift)) | ((int)cond << shift); } static inline uint32_t SkSetClearMask(uint32_t bits, bool cond, uint32_t mask) { return cond ? bits | mask : bits & ~mask; } /////////////////////////////////////////////////////////////////////////////// /** Use to combine multiple bits in a bitmask in a type safe way. */ template <typename T> T SkTBitOr(T a, T b) { return (T)(a | b); } /** * Use to cast a pointer to a different type, and maintaining strict-aliasing */ template <typename Dst> Dst SkTCast(const void* ptr) { union { const void* src; Dst dst; } data; data.src = ptr; return data.dst; } ////////////////////////////////////////////////////////////////////////////// /** \class SkNoncopyable SkNoncopyable is the base class for objects that may do not want to be copied. It hides its copy-constructor and its assignment-operator. */ class SK_API SkNoncopyable { public: SkNoncopyable() {} private: SkNoncopyable(const SkNoncopyable&); SkNoncopyable& operator=(const SkNoncopyable&); }; class SkAutoFree : SkNoncopyable { public: SkAutoFree() : fPtr(NULL) {} explicit SkAutoFree(void* ptr) : fPtr(ptr) {} ~SkAutoFree() { sk_free(fPtr); } /** Return the currently allocate buffer, or null */ void* get() const { return fPtr; } /** Assign a new ptr allocated with sk_malloc (or null), and return the previous ptr. Note it is the caller's responsibility to sk_free the returned ptr. */ void* set(void* ptr) { void* prev = fPtr; fPtr = ptr; return prev; } /** Transfer ownership of the current ptr to the caller, setting the internal reference to null. Note the caller is reponsible for calling sk_free on the returned address. */ void* detach() { return this->set(NULL); } /** Free the current buffer, and set the internal reference to NULL. Same as calling sk_free(detach()) */ void free() { sk_free(fPtr); fPtr = NULL; } private: void* fPtr; // illegal SkAutoFree(const SkAutoFree&); SkAutoFree& operator=(const SkAutoFree&); }; /** * Manage an allocated block of heap memory. This object is the sole manager of * the lifetime of the block, so the caller must not call sk_free() or delete * on the block, unless detach() was called. */ class SkAutoMalloc : public SkNoncopyable { public: explicit SkAutoMalloc(size_t size = 0) { fPtr = size ? sk_malloc_throw(size) : NULL; fSize = size; } ~SkAutoMalloc() { sk_free(fPtr); } /** * Passed to reset to specify what happens if the requested size is smaller * than the current size (and the current block was dynamically allocated). */ enum OnShrink { /** * If the requested size is smaller than the current size, and the * current block is dynamically allocated, free the old block and * malloc a new block of the smaller size. */ kAlloc_OnShrink, /** * If the requested size is smaller than the current size, and the * current block is dynamically allocated, just return the old * block. */ kReuse_OnShrink, }; /** * Reallocates the block to a new size. The ptr may or may not change. */ void* reset(size_t size, OnShrink shrink = kAlloc_OnShrink) { if (size == fSize || (kReuse_OnShrink == shrink && size < fSize)) { return fPtr; } sk_free(fPtr); fPtr = size ? sk_malloc_throw(size) : NULL; fSize = size; return fPtr; } /** * Releases the block back to the heap */ void free() { this->reset(0); } /** * Return the allocated block. */ void* get() { return fPtr; } const void* get() const { return fPtr; } /** Transfer ownership of the current ptr to the caller, setting the internal reference to null. Note the caller is reponsible for calling sk_free on the returned address. */ void* detach() { void* ptr = fPtr; fPtr = NULL; fSize = 0; return ptr; } private: void* fPtr; size_t fSize; // can be larger than the requested size (see kReuse) }; /** * Manage an allocated block of memory. If the requested size is <= kSize, then * the allocation will come from the stack rather than the heap. This object * is the sole manager of the lifetime of the block, so the caller must not * call sk_free() or delete on the block. */ template <size_t kSize> class SkAutoSMalloc : SkNoncopyable { public: /** * Creates initially empty storage. get() returns a ptr, but it is to * a zero-byte allocation. Must call reset(size) to return an allocated * block. */ SkAutoSMalloc() { fPtr = fStorage; fSize = 0; } /** * Allocate a block of the specified size. If size <= kSize, then the * allocation will come from the stack, otherwise it will be dynamically * allocated. */ explicit SkAutoSMalloc(size_t size) { fPtr = fStorage; fSize = 0; this->reset(size); } /** * Free the allocated block (if any). If the block was small enought to * have been allocated on the stack (size <= kSize) then this does nothing. */ ~SkAutoSMalloc() { if (fPtr != (void*)fStorage) { sk_free(fPtr); } } /** * Return the allocated block. May return non-null even if the block is * of zero size. Since this may be on the stack or dynamically allocated, * the caller must not call sk_free() on it, but must rely on SkAutoSMalloc * to manage it. */ void* get() const { return fPtr; } /** * Return a new block of the requested size, freeing (as necessary) any * previously allocated block. As with the constructor, if size <= kSize * then the return block may be allocated locally, rather than from the * heap. */ void* reset(size_t size, SkAutoMalloc::OnShrink shrink = SkAutoMalloc::kAlloc_OnShrink) { if (size == fSize || (SkAutoMalloc::kReuse_OnShrink == shrink && size < fSize)) { return fPtr; } if (fPtr != (void*)fStorage) { sk_free(fPtr); } if (size <= kSize) { fPtr = fStorage; } else { fPtr = sk_malloc_flags(size, SK_MALLOC_THROW | SK_MALLOC_TEMP); } return fPtr; } private: void* fPtr; size_t fSize; // can be larger than the requested size (see kReuse) uint32_t fStorage[(kSize + 3) >> 2]; }; #endif /* C++ */ #endif
[ "xshellinit@qq.com" ]
xshellinit@qq.com
195ce0d74f0b3c1fc4da8cdc78714c16cf9ef609
0eff74b05b60098333ad66cf801bdd93becc9ea4
/second/download/rsync/gumtree/rsync_repos_function_158_rsync-2.6.0.cpp
c7347e4d91ef92097293a5b7a9a6a0d6f0bd6ad1
[]
no_license
niuxu18/logTracker-old
97543445ea7e414ed40bdc681239365d33418975
f2b060f13a0295387fe02187543db124916eb446
refs/heads/master
2021-09-13T21:39:37.686481
2017-12-11T03:36:34
2017-12-11T03:36:34
null
0
0
null
null
null
null
UTF-8
C++
false
false
988
cpp
static struct sum_struct *receive_sums(int f) { struct sum_struct *s; int i; OFF_T offset = 0; s = new(struct sum_struct); if (!s) out_of_memory("receive_sums"); read_sum_head(f, s); s->sums = NULL; if (verbose > 3) rprintf(FINFO, "count=%ld n=%ld rem=%ld\n", (long) s->count, (long) s->blength, (long) s->remainder); if (s->count == 0) return(s); s->sums = new_array(struct sum_buf, s->count); if (!s->sums) out_of_memory("receive_sums"); for (i = 0; i < (int) s->count; i++) { s->sums[i].sum1 = read_int(f); read_buf(f, s->sums[i].sum2, s->s2length); s->sums[i].offset = offset; s->sums[i].i = i; if (i == (int) s->count-1 && s->remainder != 0) { s->sums[i].len = s->remainder; } else { s->sums[i].len = s->blength; } offset += s->sums[i].len; if (verbose > 3) rprintf(FINFO, "chunk[%d] len=%d offset=%.0f sum1=%08x\n", i, s->sums[i].len, (double)s->sums[i].offset, s->sums[i].sum1); } s->flength = offset; return s; }
[ "993273596@qq.com" ]
993273596@qq.com
d301467da3bf9c55e23ab6cc4b3896c0b6819ace
e1e43f3e90aa96d758be7b7a8356413a61a2716f
/datacommsserver/esockserver/test/TE_Socket/SocketTestSection21.h
e36ff1c82e68f20395c4b7a637d9ca225094f91c
[]
no_license
SymbianSource/oss.FCL.sf.os.commsfw
76b450b5f52119f6bf23ae8a5974c9a09018fdfa
bc8ac1a6d5273cbfa7852bbb8ce27d6ddc076984
refs/heads/master
2021-01-18T23:55:06.285537
2010-10-03T23:21:43
2010-10-03T23:21:43
72,773,202
0
1
null
null
null
null
UTF-8
C++
false
false
913
h
// Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies). // All rights reserved. // This component and the accompanying materials are made available // under the terms of "Eclipse Public License v1.0" // which accompanies this distribution, and is available // at the URL "http://www.eclipse.org/legal/epl-v10.html". // // Initial Contributors: // Nokia Corporation - initial contribution. // // Contributors: // // Description: // SocketTestSection21.cpp // // #if (!defined __SOCKETTEST_21_H__) #define __SOCKETTEST_21_H__ #include "TestStepSocket.h" class CSocketTest21_1 : public CTestStepSocket { public: static const TDesC& GetTestName(); virtual enum TVerdict InternalDoTestStepL( void ); }; class CSocketTest21_2 : public CTestStepSocket { public: static const TDesC& GetTestName(); virtual enum TVerdict InternalDoTestStepL( void ); }; #endif //(__SOCKETTEST_7_H__)
[ "kirill.dremov@nokia.com" ]
kirill.dremov@nokia.com
e9ca138df9d5b201612c461403c4c781cf4cfcdc
37e445ca597966b74981fa002302c9ced52eceb6
/qb_fast/decompile.cpp
fd597bf37f35d41be5440eddf0e248b8658f0a64
[]
no_license
kennythps/qb_viewer_source
5e18a88a0a2ce8272d05e92e6546c222359eb8ef
a391484de96c80e8e88eb414609633b8a3724bf3
refs/heads/master
2021-01-10T08:53:00.473248
2015-11-02T13:45:56
2015-11-02T13:45:56
45,397,207
1
0
null
null
null
null
UTF-8
C++
false
false
13,811
cpp
#include "main.h" #include <iostream> #include <fstream> #include <sstream> char startdata = 0; char strtype = 0; int tpos = 0; char *cp = NULL; vector<QB_INSTR> inst; vector<QB_NAME> names; vector<unsigned int> labels; bool qb_debuginfo = false; int Decompile(char *filename) { FILE *file = fopen(filename, "rb"); if(!file) { printf("Couldn't open file!"); return 1; } fseek(file, 0, SEEK_END); size = ftell(file); fseek(file, 0, SEEK_SET); qb = (unsigned char*)malloc(size); if(!qb) return 2; fread(qb, 1, size, file); fclose(file); file = NULL; bool done = false; char tmp[256]; int *iptmp; float *fptmp, *fp2, *fp3; int ifcount = 0; int calltabs = 0; bool do_add = true; QB_INSTR i; unsigned int l; char last_Inst = 0; while(pos < size && !done) { i.off = pos; last_Inst = i.inst; i.inst = qb[pos++]; i.len = 1; i.tabs = 0; i.nl = i.pnl = false; i.pnltabs = 0; i.pre = ""; i.text = ""; i.post = ""; memset(i.opcode, 0, sizeof(i.opcode)); for(l = 0; l < labels.size(); l++) { if(labels[l] == i.off) { sprintf(tmp, " :POS(%i) ", l); i.text = tmp; l = i.inst; i.inst = 0; inst.push_back(i); i.text = ""; i.inst = l; break; } } do_add = true; switch(i.inst) { case 00: i.text = ":end"; i.nl = true; done = true; break; #define _DO_CALL_TEXT_ case 01: i.pnl = true; i.text = ":i "; #ifdef _DO_CALL_TEXT_ if(calltabs) { calltabs = 0; i.pnltabs = -1; i.tabs = -1; } #endif if(last_Inst == 01 || last_Inst == 02) { i.tabs--; i.pnltabs--; } if(qb[pos] == 0x04 || qb[pos] == 0x21 || qb[pos] == 0x24 || qb[pos] == 0x26 || qb[pos] == 0x28 || qb[pos] == 0x48) { i.pnltabs--; } break; case 02: i.len = 5; memcpy(i.opcode, qb+pos, 4); pos += 4; iptmp = (int*)i.opcode; sprintf(tmp, ":u(02:%08x)", *iptmp); i.text = tmp; i.pnl = true; #ifdef _DO_CALL_TEXT_ if(calltabs) { calltabs = 0; i.pnltabs = -1; i.tabs = -1; } #endif if(last_Inst == 01 || last_Inst == 02) { i.tabs--; i.pnltabs--; } if(qb[pos] == 0x04 || qb[pos] == 0x21 || qb[pos] == 0x24 || qb[pos] == 0x26 || qb[pos] == 0x28 || qb[pos] == 0x48) { i.pnltabs--; } break; break; case 03: //i.pnl = true; i.text = ":s{"; //i.nl = true; i.tabs = 1; //i.pnltabs = 1; break; case 04: //i.pnltabs = -1; //i.pnl = true; i.text = ":s}"; //i.nl = true; i.tabs = -1; /*if(calltabs) { calltabs--; i.pnltabs--; i.tabs--; }*/ break; case 05: //i.pnl = true; i.text = ":a{"; //i.nl = true; i.tabs = 1; //i.pnltabs = 1; break; case 06: //i.pnltabs = -1; //i.pnl = true; i.text = ":a}"; //i.nl = true; i.tabs = -1; /*if(calltabs) { calltabs--; i.pnltabs--; i.tabs--; }*/ break; case 07: i.text = " = "; break; case 0x08: // Why? Check info appendix A i.text = "->"; break; case 0x09: i.text = ";"; break; case 0x0A: i.text = " - "; break; case 0x0B: i.text = " + "; break; case 0x0C: i.text = " / "; // MIGHT BE THE OTHER WAY ROUND break; case 0x0D: i.text = " * "; break; case 0x0E: i.text = " ("; //i.tabs = 1; break; case 0x0F: i.text = ") "; //i.tabs = -1; /*if(calltabs) { calltabs--; i.pnltabs--; i.tabs--; }*/ break; // 12 '<' 14 '>', so 13'<='? and 15 '>='??? case 0x12: i.text = " < "; break; case 0x14: i.text = " > "; break; case 0x16: i.len = 5; memcpy(i.opcode, qb+pos, 4); i.pre = "$"; i.name = *((unsigned int*)i.opcode); i.post = "$"; pos += 4; #ifdef _DO_CALL_TEXT_ if(qb[pos] == 0x16 && calltabs == 0) { i.pre = "call $"; i.post = "$ arguments "; calltabs = 1; i.tabs = 1; i.nl = true; } #endif break; case 0x17: i.len = 5; memcpy(i.opcode, qb+pos, 4); iptmp = (int*)&qb[pos]; pos += 4; sprintf(tmp, "%%i(%u,%08x)", *iptmp, *iptmp); i.text = tmp; break; case 0x1A: i.len = 5; memcpy(i.opcode, qb+pos, 4); pos += 4; fptmp = (float*)i.opcode; sprintf(tmp, "%%f(%f)", *fptmp); i.text = tmp; break; case 0x1B: case 0x1C: /*memcpy(i.opcode, qb+pos, 4); pos += 4; iptmp = (int*)i.opcode; itmp = *iptmp; i.len = 5 + itmp; memcpy(i.opcode+4, qb+pos, itmp); pos += itmp; if(i.inst == 0x1B) { sprintf(tmp, "%%s(%x,\"%s\")", itmp, i.opcode+4); } else { sprintf(tmp, "%%sc(%x,\"%s\")", itmp, i.opcode+4); } i.text = tmp;*/ { //std::ostringstream str(); memcpy(i.opcode, qb+pos, 4); pos += 4; i.len = 5 + *((int*)i.opcode); i.text = ""; if(i.inst == 0x1B) i.text.append("%s("); //str << "%s("; else i.text.append("%sc("); //str << "%sc("; //str << (i.len-5) << ",\"" << ((char*)&qb[pos]) << "\")"; i.text.append(conv::toString(i.len-6)); i.text.append(",\""); i.text.append((char*)&qb[pos]); i.text.append("\")"); //i.text = str.str(); pos += i.len-5; } break; case 0x1E: i.len = 13; memcpy(i.opcode, qb+pos, 12); pos += 12; fptmp = (float*)i.opcode; fp2 = (float*)(i.opcode+4); fp3 = (float*)(i.opcode+8); sprintf(tmp, "%%vec3(%f,%f,%f)", *fptmp, *fp2, *fp3); i.text = tmp; break; case 0x1F: i.len = 9; memcpy(i.opcode, qb+pos, 8); pos += 8; fptmp = (float*)i.opcode; fp2 = (float*)(i.opcode+4); sprintf(tmp, "%%vec2(%f,%f)", *fptmp, *fp2); i.text = tmp; break; case 0x20: i.nl = true; i.text = "while"; i.tabs = 1; break; case 0x21: //i.pnl = true; //i.pnltabs = -1; i.text = "loop_to "; i.tabs = -1; break; case 0x22: i.nl = true; i.text = "continue"; break; case 0x23: i.text = "function "; i.tabs = 1; break; case 0x24: //i.pnl = true; //i.nl = true; i.text = "endfunction"; i.tabs = -1; i.pnltabs = -1; break; case 0x2C: i.text = " isNull "; break; case 0x2D: i.text = "%GLOBAL%"; break; case 0x42: i.text = "."; break; case 0x47: i.text = "if "; if(qb_debuginfo) { ifcount++; sprintf(tmp, "if[%i] ", ifcount); i.text = tmp;//"if "; } i.len = 2; i.tabs = 1; memcpy(i.opcode, qb+pos, 2); pos += 2; /*if(qb[pos] == 0x39) { i.len = 3; i.opcode[2]= 0x39; pos++; i.post = "NOT "; }*/ break; case 0x39: i.text = "NOT "; break; case 0x25: i.text = "doIf "; i.tabs = 1; break; case 0x26: i.text = "doElse"; break; case 0x28: i.text = "endif"; if(qb_debuginfo) { sprintf(tmp, "endif[%i] ", ifcount); ifcount--; i.text = tmp;//"endif"; } //i.pnl = i.nl = true; //i.pnltabs = -1; i.tabs = -1; break; case 0x29: i.text = "return"; if(qb_debuginfo) { sprintf(tmp, "return[%i]", ifcount); i.text = tmp;//"return"; } i.nl = true; break; case 0x48: //i.pnl = true; //i.pnltabs = -1; i.text = "else "; if(qb_debuginfo) { sprintf(tmp, "else[%i] ", ifcount); i.text = tmp;//"else "; } i.len = 3; memcpy(i.opcode, qb+pos, 2); pos += 2; break; case 0x32: i.text = " OR "; break; case 0x33: i.text = " AND "; break; case 0x3C: i.text = "switch "; i.tabs = 1; break; case 0x3D: i.text = "end_switch"; i.tabs = -2; if(no_switch_offsets) i.tabs++; i.nl = true; break; case 0x3E: if(!no_switch_offsets) { i.len = 4; memcpy(i.opcode, qb+pos, 3); pos += 3; i.tabs = 1; } i.text = "case "; break; case 0x3F: if(!no_switch_offsets) { i.len = 4; memcpy(i.opcode, qb+pos, 3); pos += 3; i.tabs = 1; } i.text = "default "; break; case 0x49: if(!no_switch_offsets) { i.len = 3; memcpy(i.opcode, qb+pos, 2); pos += 2; i.text = "endcase"; i.tabs = -1; i.nl = true; } else { printf("GOTO stuff not implemented... please report that cuz it shouldn't happen\n"); printf("Maybe this file doesn't work with -thug1?\n"); exit(1); } break; /* unsigned int last_label; unsigned int switch_label; unsigned int case_label; vector<unsigned int> switch_labels; void switch_push() { void switch_pop() { .data = 01 3c; +-------| this is the offset|to the next case +->TO THIS BYTE camera_angle .data = 01 3e 49 27 00 17 00 00 00 00 01; | camera_text :s= "CAMERA ANGLE: 1" .data = 01 49 7b 00 3e 49 27 00 17 01 00 00 00 01; camera_text :s= "CAMERA ANGLE: 2" .data = 01 49 52 00 3e 49 27 00 17 02 00 00 00 01; camera_text :s= "CAMERA ANGLE: 3" .data = 01 49 29 00 3e 49 24 00 17 03 00 00 00 01; camera_text :s= "CAMERA ANGLE: 4" .data = 01 3d 01; :i switch $camera_angle$ :i case(a) goto(b) long(0) :i $camera_text$ = %s("CAMERA ANGLE: 1") :i goto(e) :i case(b) goto(c) long(1) :i $camera_text$ = %s("CAMERA ANGLE: 2") :i goto(e) :i case(c) goto(d) long(2) :i $camera_text$ = %s("CAMERA ANGLE: 3") :i goto(e) :i case(d) goto(e) long(3) :i $camera_text$ = %s("CAMERA ANGLE: 4") :i endswitch(e) */ case 0x2E: i.pnl = true; i.pnltabs = -1; i.text = "break"; i.nl = true; i.len = 5; memcpy(i.opcode, qb+pos, 4); pos += 4; /*l = *((unsigned int*)i.opcode); sprintf(tmp, "breakto(%i)", labels.size()); labels.push_back(l+pos); i.text = tmp;*/ { unsigned int p = *((unsigned int*)i.opcode); p += pos; for(l = 0; l < labels.size(); l++) { if(labels[l] == p) break; } if(l >= labels.size()) { labels.push_back(p); } sprintf(tmp, ":BREAKTO(%i)", l); i.text = tmp; } break; case 0x37: case 0x40: case 0x41: case 0x2F: /*i.len += 4; itmp = *((int*)(&qb[pos])); i.len += 6*itmp; //memcpy(i.opcode, qb+pos, i.len-1); sprintf(tmp, "select(%i) ", itmp); i.text = tmp; pos += i.len-1; i.nl = true; i.tabs = 1;*/ { i.len += 4; int nCases = *((int*)(&qb[pos])); sprintf(tmp, "select(%02x,%i, ", i.inst, nCases); i.text = tmp; int ind; pos += 4; for(ind = 0; ind < nCases; ind++) { sprintf(tmp, "%02x ", qb[pos++]); i.text.append(tmp); sprintf(tmp, "%02x ", qb[pos++]); i.text.append(tmp); } i.text.resize(i.text.length()-1); // remove the space i.text.append(") "); unsigned int cnt; for(ind = 0; ind < nCases; ind++) { i.text.append(":OFFSET("); cnt = *((unsigned int*)(&qb[pos])); pos += 4; for(l = 0; l < labels.size(); l++) { if(labels[l] == (cnt+pos)) break; } if(l < labels.size()) { l = labels.size(); } else { labels.push_back(cnt+pos); } i.text.append(conv::toString(l)); i.text.append(")"); } i.nl = true; if(!no_switch_offsets) i.tabs = 1; } break; /* +number of cases | :i select(10) [01 00 : A times, A offsets to a non :i starting instruction] call $runtwoscripts$ arguments $script_text$ = $bail1$ $script_score$ = $bail1$ isNull :i break [4 byte offset, why 4 byte offset??? IFs have 2 byte offsets...] call $runtwoscripts$ arguments $script_text$ = $bail2$ $script_scores$ = $bail2$ isNull :i break (...) call $runtwoscripts$ arguments $script_text$ = $bail3$ $script_scores$ = $bail3$ isNull :i :i */ case 0x2B: { QB_NAME n; do_add = false; n.id = *((unsigned int*)(&qb[pos])); pos += 4; n.name = (char*)(qb+pos); //fprintf(stderr, "\n%08x::NAME: %08x - (%i)%s\n", pos-4, n.id, n.name.length(), n.name); pos += n.name.length()+1; names.push_back(n); } break; default: done = true; sprintf(tmp, "Unknown instruction at %08x:", i.off); i.text = tmp; char tmp[8]; sprintf(tmp, "%x", i.inst); //i.text.append(tmp); i.post = tmp; break; } if(do_add) inst.push_back(i); } unsigned int _i; unsigned int tabs = 0; unsigned int t; std::cout << "#/ QB Script version 2" << std::endl; std::cout << "%include \"" << filename << "_table.qbi\" #/ Table file" << std::endl; for(_i = 0; _i < inst.size(); _i++) { if(inst[_i].pnl) { std::cout << endl; for(t = 0; t < (tabs + inst[_i].pnltabs); t++) cout << "\t"; } std::cout << inst[_i].pre; if(inst[_i].inst == 0x16) { unsigned int _n = 0; for(_n = 0; _n < names.size(); _n++) { if(names[_n].id == inst[_i].name) break; } if(_n < names.size()) { std::cout << names[_n].name; } else { int nn = inst[_i].name; #ifndef WIN32 __asm("bswap %0\n" : "=q"(nn) : "0"(nn) : "0"); #else __asm { mov eax, nn bswap eax mov nn, eax } #endif sprintf(tmp, "%08x", nn); std::cout << "[" << tmp << "]"; } } else { std::cout << inst[_i].text; } std::cout << inst[_i].post; tabs += inst[_i].tabs; if(inst[_i].nl) { std::cout << std::endl; for(t = 0; t < tabs; t++) cout << "\t"; } } std::cout << std::endl << std::endl << "#/ END" << std::endl; //filename << "_table.qbi sprintf(tmp, "%s_table.qbi", filename); file = fopen(tmp, "w"); //std::ofstream tabl(tmp); unsigned int _n; for(_n = 0; _n < names.size(); _n++) { /*sprintf(tmp, "%08x", names[_n].id); tabl << "#addx 0x" << tmp << " \"" << names[*/ fprintf(file, "#addx 0x%08x \"%s\"\n", names[_n].id, names[_n].name.c_str()); } fclose(file); //tabl.close(); return 0; }
[ "kennya1337@gmail.com" ]
kennya1337@gmail.com
463f7d428928cf34041b40bc2284230b53428a22
4a36e8a7f598bb910a1cef0732702828106d98ca
/Dragon/include/utils/caffemodel.h
16854936c24684d3b0b440f72ec16c696ae65eac
[ "BSD-2-Clause" ]
permissive
awesome-archive/Dragon
d5a5e737d63f71ba8b73306051aa9960d48e7447
b35f9320909d07d138c2f6b345a4c24911f7c521
refs/heads/master
2023-08-21T09:07:58.238769
2019-03-20T09:01:37
2019-03-20T09:01:37
177,972,970
0
0
BSD-2-Clause
2020-01-13T03:40:54
2019-03-27T10:41:13
C++
UTF-8
C++
false
false
4,032
h
/*! * Copyright (c) 2017-present, SeetaTech, Co.,Ltd. * * Licensed under the BSD 2-Clause License. * You should have received a copy of the BSD 2-Clause License * along with the software. If not, See, * * <https://opensource.org/licenses/BSD-2-Clause> * * ------------------------------------------------------------ */ #ifndef DRAGON_UTILS_CAFFEMODEL_H_ #define DRAGON_UTILS_CAFFEMODEL_H_ #include "core/workspace.h" #include "proto/caffemodel.pb.h" namespace dragon { inline void LoadCaffeModel( string file, Workspace* ws) { NetParameter net_param; ReadProtoFromBinaryFile(file.c_str(), &net_param); LOG(INFO) << "Restore From Model @: " << file << "......"; LOG(INFO) << "Model Format: CaffeModel"; for (int i = 0; i < net_param.layer_size(); i++) { const LayerParameter& layer = net_param.layer(i); const string& layer_name = layer.name(); string prefix = layer_name + "/param:"; for (int j = 0; j < layer.blobs_size(); j++) { string tensor_name = prefix + std::to_string(j); if (!ws->HasTensor(tensor_name)) LOG(WARNING) << "Tensor(" << tensor_name << ") " << "does not exist in any Graphs, skip."; else{ BlobProto blob = layer.blobs(j); vector<int64_t> dims; for (auto dim : blob.shape().dim()) dims.push_back(dim); Tensor* tensor = ws->GetTensor(tensor_name); std::stringstream DimString; if (dims.size() > 0) { tensor->Reshape(dims); CHECK_EQ(tensor->count(), blob.data_size()) << "\nTensor(" << tensor_name << ") " << "failed to load, except size: " << tensor->count() << ", loaded: " << blob.data_size(); DimString << tensor->DimString(); } else { tensor->Reshape({ blob.data_size() }); DimString << "(missing)"; } float* Xdata = tensor->mutable_data<float, CPUContext>(); for (int idx = 0; idx < blob.data_size(); idx++) Xdata[idx] = blob.data(idx); LOG(INFO) << "Tensor(" << tensor_name << ") " << "loaded, shape: " << DimString.str() << ", size: " << blob.data_size(); } } } } inline void SavaCaffeModel( string file, const vector<Tensor*>& tensors) { NetParameter net_param; Map<string, int> layer_hash; int layer_idx = -1; for (int i = 0; i < tensors.size(); i++) { if (tensors[i]->count() <= 0) continue; vector<string> splits = str::split( tensors[i]->name(), "/param:"); if (layer_hash.count(splits[0]) == 0) { layer_hash[splits[0]] = ++layer_idx; LayerParameter* layer = net_param.add_layer(); layer->set_name(splits[0]); } BlobProto* blob = net_param.mutable_layer(layer_idx)->add_blobs(); for (auto dim : tensors[i]->dims()) blob->mutable_shape()->add_dim(dim); if (XIsType((*tensors[i]), float)) { auto* Xdata = tensors[i]->data<float, CPUContext>(); for (int id = 0; id < tensors[i]->count(); id++) blob->mutable_data()->Add(Xdata[id]); } else if (XIsType((*tensors[i]), float16)) { auto* Xdata = tensors[i]->data<float16, CPUContext>(); for (int id = 0; id < tensors[i]->count(); id++) blob->mutable_data()->Add( cast::to<float>(Xdata[id])); } } WriteProtoToBinaryFile(net_param, file.c_str()); LOG(INFO) << "Save the model @: " << file << "......"; LOG(INFO) << "Model format: Caffe"; } } // namespace dragon #endif // DRAGON_UTILS_CAFFEMODEL_H_
[ "ting.pan@seetatech.com" ]
ting.pan@seetatech.com
0718beb76cd6286d395614b617606d00bf82d16c
f883fd935f0b7dfafc4c0c3f2444050d6e3cf0c8
/Interactive-media-and-Mixed-reality/Bezier-Curve-based-painting-tool/source.cpp
c7f898f11e71e8621afee320ccf28fe2e0396195
[]
no_license
priyamsharma2704/SourceCodes
ace30d468f76c55aceb7d1e10978121c6b358c1f
51bd5a904b5865163867d20cf3c226f1fedc929b
refs/heads/master
2023-01-09T12:10:12.224621
2020-09-18T19:46:11
2020-09-18T19:46:11
89,184,170
0
1
null
2023-01-05T00:56:17
2017-04-24T01:12:36
JavaScript
UTF-8
C++
false
false
6,758
cpp
#include <opencv2/highgui/highgui.hpp> #include <iostream> #include<stdio.h> #include <opencv2/core/core.hpp> #include <opencv2/imgproc/imgproc.hpp> #include <vector> using namespace cv; using namespace std; vector<Point>pts; //to store 4 point clicks vector<Point>center_pts; vector<Scalar>color_vec; vector<int>thickness; Point temp_a,temp_b; float data[4][4]= {{-1,3,-3,1},{3,-6,3,0},{-3,3,0,0},{1,0,0,0}}; Mat canvas(400,400 ,CV_8UC3); //image to draw slpines Mat matrix_AB; Mat M_Hermite(4,4,CV_32FC1,&data); Mat G_Hermite(4,2,CV_32FC1);//32F is floating type and C1 means 1 channel double val=3.0; //position of mouse click is closer than 3 pixel to an existing point int sel= -1; int flag=-1; int in_sqr=-1; int color=0; int x1,y11,x2,y2,x3,y3,x4,y4,diff_x,diff_y; char c; int thick=1; void onMouse(int event, int x, int y, int flags, void *param) { //everytime mouse button down CV_LBUTTONDOWN //push the location into points // //Point p1,p2; if(event == CV_EVENT_LBUTTONDOWN) //push the points into vector { for(int i =0 ; i<pts.size();i++) { double dist = pow((double)x-pts[i].x,2)+pow((double)y-pts[i].y,2) ; dist = pow(dist,0.5); if (dist<val) { sel = i; break; } } if(sel >-1) //your current mouse click is close to one existing point { pts[sel].x=x; pts[sel].y=y; } else if(in_sqr==-1) { pts.push_back(Point(x,y)); int size = pts.size()/4; if(size>color_vec.size()) { color_vec.push_back(Scalar(0,0,0)); thickness.push_back(1); } } if(in_sqr>-1) { temp_a=Point(x,y); flag=in_sqr; x1 = pts[4*in_sqr].x; y11 = pts[4*in_sqr].y; x2 = pts[4*in_sqr+1].x; y2 = pts[4*in_sqr+1].y; x3 = pts[4*in_sqr+2].x; y3 = pts[4*in_sqr+2].y; x4 = pts[4*in_sqr+3].x; y4 = pts[4*in_sqr+3].y; } printf("hi :%d\n",pts.size()); } else if(event == CV_EVENT_RBUTTONDOWN) //remove the latest point { if(pts.size()>0) pts.pop_back(); //remove the top/latest point } else if(event == CV_EVENT_LBUTTONUP) { sel =-1; in_sqr=-1; temp_b=Point(x,y); if(flag>-1) { diff_x=temp_b.x-temp_a.x; diff_y=temp_b.y-temp_a.y; pts[flag*4]=Point((x1+diff_x),(y11+diff_y)); pts[flag*4+1]=Point((x2+diff_x),(y2+diff_y)); pts[flag*4+2]=Point((x3+diff_x),(y3+diff_y)); pts[flag*4+3]=Point((x4+diff_x),(y4+diff_y)); flag=-1; } } //mouse moving event if(sel>-1) { pts[sel].x=x; pts[sel].y=y; } //check mouse current location by comparing it with the square of all splines int spline_num=pts.size()/4; int j; for(int i=0;i<spline_num;i++) { j=4*i; G_Hermite.ptr<float>(0)[0]=pts[j].x; //1st row G_Hermite.ptr<float>(0)[1]=pts[j].y; G_Hermite.ptr<float>(1)[0]=pts[j+1].x; //2nd row G_Hermite.ptr<float>(1)[1]=pts[j+1].y; G_Hermite.ptr<float>(2)[0]=pts[j+2].x; //3rd row G_Hermite.ptr<float>(2)[1]=pts[j+2].y; G_Hermite.ptr<float>(3)[0]=pts[j+3].x; //4th row G_Hermite.ptr<float>(3)[1]=pts[j+3].y; matrix_AB = M_Hermite * G_Hermite; int x_new=matrix_AB.ptr<float>(0)[0] * pow(0.5,3) + matrix_AB.ptr<float>(1)[0] * pow(0.5,2) + matrix_AB.ptr<float>(2)[0] * pow(0.5,1) + matrix_AB.ptr<float>(3)[0]; int y_new = matrix_AB.ptr<float>(0)[1] * pow(0.5,3) + matrix_AB.ptr<float>(1)[1] * pow(0.5,2) + matrix_AB.ptr<float>(2)[1] * pow(0.5,1) + matrix_AB.ptr<float>(3)[1]; if((x >= x_new-15/2 && x<=x_new+15/2) && (y >= y_new-15/2 && y<=y_new+15/2)) { in_sqr=i; break; } else { in_sqr=-1; } } } void drawSpline() { int spline_num=pts.size()/4; int j; for(int i=0;i<spline_num;i++) { //take out four points from pts //try to use matrix in the slides to compute [ax,bx,cx,dx ; ay,by,cy,dy] //for (t=0t<.01;t++) j=4*i; G_Hermite.ptr<float>(0)[0]=pts[j].x; //1st row G_Hermite.ptr<float>(0)[1]=pts[j].y; G_Hermite.ptr<float>(1)[0]=pts[j+1].x; //2nd row G_Hermite.ptr<float>(1)[1]=pts[j+1].y; G_Hermite.ptr<float>(2)[0]=pts[j+2].x; //3rd row G_Hermite.ptr<float>(2)[1]=pts[j+2].y; G_Hermite.ptr<float>(3)[0]=pts[j+3].x; //4th row G_Hermite.ptr<float>(3)[1]=pts[j+3].y; //To draw control lines line(canvas,pts[j],pts[j+1],Scalar(200,200,200),1,8,0); line(canvas,pts[j+2],pts[j+3],Scalar(200,200,200),1,8,0); matrix_AB = M_Hermite * G_Hermite; //Draw the spline on screen based on Matrix_AB for(double t=0.0;t<=1.0;t+=0.001) { int x = matrix_AB.ptr<float>(0)[0] * pow(t,3) + matrix_AB.ptr<float>(1)[0] * pow(t,2) + matrix_AB.ptr<float>(2)[0] * pow(t,1) + matrix_AB.ptr<float>(3)[0]; int y = matrix_AB.ptr<float>(0)[1] * pow(t,3) + matrix_AB.ptr<float>(1)[1] * pow(t,2) + matrix_AB.ptr<float>(2)[1] * pow(t,1) + matrix_AB.ptr<float>(3)[1]; circle(canvas,Point(x,y),1,color_vec[i],thickness[i]);//will draw a cricle around x & y } int x=matrix_AB.ptr<float>(0)[0] * pow(0.5,3) + matrix_AB.ptr<float>(1)[0] * pow(0.5,2) + matrix_AB.ptr<float>(2)[0] * pow(0.5,1) + matrix_AB.ptr<float>(3)[0]; int y = matrix_AB.ptr<float>(0)[1] * pow(0.5,3) + matrix_AB.ptr<float>(1)[1] * pow(0.5,2) + matrix_AB.ptr<float>(2)[1] * pow(0.5,1) + matrix_AB.ptr<float>(3)[1]; if(in_sqr==i) { rectangle(canvas,Point(x-15/2,y-15/2),Point(x+15/2,y+15/2),Scalar(00,200,00),2,8); } else rectangle(canvas,Point(x-15/2,y-15/2),Point(x+15/2,y+15/2),Scalar(200,200,200),2,8); } } void drawPoints() { for(int i = 0; i<pts.size();i++) { circle(canvas,pts[i],1,Scalar(0,0,255),2); } } void drawLine() { line(canvas,pts[0],pts[1],Scalar(0,0,255),1,8,0); } int main(int argc, char** argv) { //for all iterations,draw all spline from scratch (x) //or only draw the current spline //or you draw spline after point click namedWindow("test"); setMouseCallback("test",onMouse); //tell the window to use onMouse function while(1) { canvas= Scalar(255,255,255); drawPoints();//to make it interactive : to draw for every iteration. drawSpline(); imshow("test",canvas); c = waitKey(1); if(c==27) break; else if(in_sqr!=-1) { if(c=='b' || c=='B') { color_vec[in_sqr]= Scalar(255,0,0); } if(c=='r' || c=='R') { color_vec[in_sqr]= Scalar(0,0,255); } if(c=='p' ||c=='P') { color_vec[in_sqr]= Scalar(147,20,255); } if(c=='g'||c=='G') { color_vec[in_sqr]= Scalar(0,255,0); } if(c=='y'||c=='Y') { color_vec[in_sqr]= Scalar(0,255,255); } if(c=='i' ||c=='I') { if(thickness[in_sqr]<5) thickness[in_sqr]++; else thickness[in_sqr]=5; } if(c=='d' ||c=='D') { if(thickness[in_sqr]>0) thickness[in_sqr]--; else thickness[in_sqr]=1; } } else if(c == 's' ||c=='S') imwrite("D:\\canvas.jpg", canvas); } return 1; }
[ "priyamsharma2704@gmail.com" ]
priyamsharma2704@gmail.com
5873158c73d5a2cc26d74a4d808a567cd16e7a0d
c14de1e5c75cae82bcc444f24f35e485e376aa5d
/src/init.cpp
1c41e7a88a406f6147c4e1ca2702246b2966ac60
[ "MIT", "LicenseRef-scancode-unknown-license-reference" ]
permissive
ibithub/ibithub
54f7228aac4b94a8d9953f281357a41c8c136df2
37b14301a269299ad6a711805a730f190c29dc02
refs/heads/master
2023-06-09T22:06:02.775262
2023-06-04T04:16:38
2023-06-04T04:16:38
145,363,142
10
1
MIT
2018-09-11T19:13:42
2018-08-20T03:47:41
C++
UTF-8
C++
false
false
45,493
cpp
// Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2014 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "txdb.h" #include "walletdb.h" #include "bitcoinrpc.h" #include "net.h" #include "init.h" #include "util.h" #include "ui_interface.h" #include <boost/filesystem.hpp> #include <boost/filesystem/fstream.hpp> #include <boost/filesystem/convenience.hpp> #include <boost/interprocess/sync/file_lock.hpp> #include <boost/algorithm/string/predicate.hpp> #include <openssl/crypto.h> #ifndef WIN32 #include <signal.h> #endif using namespace std; using namespace boost; CWallet* pwalletMain; CClientUIInterface uiInterface; #ifdef WIN32 // Win32 LevelDB doesn't use filedescriptors, and the ones used for // accessing block files, don't count towards to fd_set size limit // anyway. #define MIN_CORE_FILEDESCRIPTORS 0 #else #define MIN_CORE_FILEDESCRIPTORS 150 #endif // Used to pass flags to the Bind() function enum BindFlags { BF_NONE = 0, BF_EXPLICIT = (1U << 0), BF_REPORT_ERROR = (1U << 1) }; ////////////////////////////////////////////////////////////////////////////// // // Shutdown // // // Thread management and startup/shutdown: // // The network-processing threads are all part of a thread group // created by AppInit() or the Qt main() function. // // A clean exit happens when StartShutdown() or the SIGTERM // signal handler sets fRequestShutdown, which triggers // the DetectShutdownThread(), which interrupts the main thread group. // DetectShutdownThread() then exits, which causes AppInit() to // continue (it .joins the shutdown thread). // Shutdown() is then // called to clean up database connections, and stop other // threads that should only be stopped after the main network-processing // threads have exited. // // Note that if running -daemon the parent process returns from AppInit2 // before adding any threads to the threadGroup, so .join_all() returns // immediately and the parent exits from main(). // // Shutdown for Qt is very similar, only it uses a QTimer to detect // fRequestShutdown getting set, and then does the normal Qt // shutdown thing. // volatile bool fRequestShutdown = false; void StartShutdown() { fRequestShutdown = true; } bool ShutdownRequested() { return fRequestShutdown; } static CCoinsViewDB *pcoinsdbview; void Shutdown() { printf("Shutdown : In progress...\n"); static CCriticalSection cs_Shutdown; TRY_LOCK(cs_Shutdown, lockShutdown); if (!lockShutdown) return; RenameThread("bitcoin-shutoff"); nTransactionsUpdated++; StopRPCThreads(); ShutdownRPCMining(); if (pwalletMain) bitdb.Flush(false); GenerateBitcoins(false, NULL); StopNode(); { LOCK(cs_main); if (pwalletMain) pwalletMain->SetBestChain(CBlockLocator(pindexBest)); if (pblocktree) pblocktree->Flush(); if (pcoinsTip) pcoinsTip->Flush(); delete pcoinsTip; pcoinsTip = NULL; delete pcoinsdbview; pcoinsdbview = NULL; delete pblocktree; pblocktree = NULL; } if (pwalletMain) bitdb.Flush(true); boost::filesystem::remove(GetPidFile()); UnregisterWallet(pwalletMain); if (pwalletMain) delete pwalletMain; printf("Shutdown : done\n"); } // // Signal handlers are very limited in what they are allowed to do, so: // void DetectShutdownThread(boost::thread_group* threadGroup) { // Tell the main threads to shutdown. while (!fRequestShutdown) { MilliSleep(200); if (fRequestShutdown) threadGroup->interrupt_all(); } } void HandleSIGTERM(int) { fRequestShutdown = true; } void HandleSIGHUP(int) { fReopenDebugLog = true; } ////////////////////////////////////////////////////////////////////////////// // // Start // #if !defined(QT_GUI) bool AppInit(int argc, char* argv[]) { boost::thread_group threadGroup; boost::thread* detectShutdownThread = NULL; bool fRet = false; try { // // Parameters // // If Qt is used, parameters/bitcoin.conf are parsed in qt/bitcoin.cpp's main() ParseParameters(argc, argv); if (!boost::filesystem::is_directory(GetDataDir(false))) { fprintf(stderr, "Error: Specified directory does not exist\n"); Shutdown(); } ReadConfigFile(mapArgs, mapMultiArgs); if (mapArgs.count("-?") || mapArgs.count("--help")) { // First part of help message is specific to bitcoind / RPC client std::string strUsage = _("Ibithub version") + " " + FormatFullVersion() + "\n\n" + _("Usage:") + "\n" + " ibithubd [options] " + "\n" + " ibithubd [options] <command> [params] " + _("Send command to -server or ibithubd") + "\n" + " ibithubd [options] help " + _("List commands") + "\n" + " ibithubd [options] help <command> " + _("Get help for a command") + "\n"; strUsage += "\n" + HelpMessage(); fprintf(stdout, "%s", strUsage.c_str()); return false; } // Command-line RPC for (int i = 1; i < argc; i++) if (!IsSwitchChar(argv[i][0]) && !boost::algorithm::istarts_with(argv[i], "ibithub:")) fCommandLine = true; if (fCommandLine) { int ret = CommandLineRPC(argc, argv); exit(ret); } #if !defined(WIN32) fDaemon = GetBoolArg("-daemon"); if (fDaemon) { // Daemonize pid_t pid = fork(); if (pid < 0) { fprintf(stderr, "Error: fork() returned %d errno %d\n", pid, errno); return false; } if (pid > 0) // Parent process, pid is child process id { CreatePidFile(GetPidFile(), pid); return true; } // Child process falls through to rest of initialization pid_t sid = setsid(); if (sid < 0) fprintf(stderr, "Error: setsid() returned %d errno %d\n", sid, errno); } #endif detectShutdownThread = new boost::thread(boost::bind(&DetectShutdownThread, &threadGroup)); fRet = AppInit2(threadGroup); } catch (std::exception& e) { PrintExceptionContinue(&e, "AppInit()"); } catch (...) { PrintExceptionContinue(NULL, "AppInit()"); } if (!fRet) { if (detectShutdownThread) detectShutdownThread->interrupt(); threadGroup.interrupt_all(); } if (detectShutdownThread) { detectShutdownThread->join(); delete detectShutdownThread; detectShutdownThread = NULL; } Shutdown(); return fRet; } extern void noui_connect(); int main(int argc, char* argv[]) { bool fRet = false; // Connect bitcoind signal handlers noui_connect(); fRet = AppInit(argc, argv); if (fRet && fDaemon) return 0; return (fRet ? 0 : 1); } #endif bool static InitError(const std::string &str) { uiInterface.ThreadSafeMessageBox(str, "", CClientUIInterface::MSG_ERROR); return false; } bool static InitWarning(const std::string &str) { uiInterface.ThreadSafeMessageBox(str, "", CClientUIInterface::MSG_WARNING); return true; } bool static Bind(const CService &addr, unsigned int flags) { if (!(flags & BF_EXPLICIT) && IsLimited(addr)) return false; std::string strError; if (!BindListenPort(addr, strError)) { if (flags & BF_REPORT_ERROR) return InitError(strError); return false; } return true; } // Core-specific options shared between UI and daemon std::string HelpMessage() { string strUsage = _("Options:") + "\n" + " -? " + _("This help message") + "\n" + " -conf=<file> " + _("Specify configuration file (default: ibithub.conf)") + "\n" + " -pid=<file> " + _("Specify pid file (default: ibithubd.pid)") + "\n" + " -gen " + _("Generate coins (default: 0)") + "\n" + " -datadir=<dir> " + _("Specify data directory") + "\n" + " -dbcache=<n> " + _("Set database cache size in megabytes (default: 25)") + "\n" + " -timeout=<n> " + _("Specify connection timeout in milliseconds (default: 5000)") + "\n" + " -proxy=<ip:port> " + _("Connect through socks proxy") + "\n" + " -socks=<n> " + _("Select the version of socks proxy to use (4-5, default: 5)") + "\n" + " -tor=<ip:port> " + _("Use proxy to reach tor hidden services (default: same as -proxy)") + "\n" " -dns " + _("Allow DNS lookups for -addnode, -seednode and -connect") + "\n" + " -port=<port> " + _("Listen for connections on <port> (default: 2333 or testnet: 12333)") + "\n" + " -maxconnections=<n> " + _("Maintain at most <n> connections to peers (default: 125)") + "\n" + " -addnode=<ip> " + _("Add a node to connect to and attempt to keep the connection open") + "\n" + " -connect=<ip> " + _("Connect only to the specified node(s)") + "\n" + " -seednode=<ip> " + _("Connect to a node to retrieve peer addresses, and disconnect") + "\n" + " -externalip=<ip> " + _("Specify your own public address") + "\n" + " -onlynet=<net> " + _("Only connect to nodes in network <net> (IPv4, IPv6 or Tor)") + "\n" + " -discover " + _("Discover own IP address (default: 1 when listening and no -externalip)") + "\n" + " -checkpoints " + _("Only accept block chain matching built-in checkpoints (default: 1)") + "\n" + " -listen " + _("Accept connections from outside (default: 1 if no -proxy or -connect)") + "\n" + " -bind=<addr> " + _("Bind to given address and always listen on it. Use [host]:port notation for IPv6") + "\n" + " -dnsseed " + _("Find peers using DNS lookup (default: 1 unless -connect)") + "\n" + " -banscore=<n> " + _("Threshold for disconnecting misbehaving peers (default: 100)") + "\n" + " -bantime=<n> " + _("Number of seconds to keep misbehaving peers from reconnecting (default: 86400)") + "\n" + " -maxreceivebuffer=<n> " + _("Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000)") + "\n" + " -maxsendbuffer=<n> " + _("Maximum per-connection send buffer, <n>*1000 bytes (default: 1000)") + "\n" + " -bloomfilters " + _("Allow peers to set bloom filters (default: 1)") + "\n" + #ifdef USE_UPNP #if USE_UPNP " -upnp " + _("Use UPnP to map the listening port (default: 1 when listening)") + "\n" + #else " -upnp " + _("Use UPnP to map the listening port (default: 0)") + "\n" + #endif #endif " -paytxfee=<amt> " + _("Fee per KB to add to transactions you send") + "\n" + " -mininput=<amt> " + _("When creating transactions, ignore inputs with value less than this (default: 0.0001)") + "\n" + #ifdef QT_GUI " -server " + _("Accept command line and JSON-RPC commands") + "\n" + #endif #if !defined(WIN32) && !defined(QT_GUI) " -daemon " + _("Run in the background as a daemon and accept commands") + "\n" + #endif " -testnet " + _("Use the test network") + "\n" + " -debug " + _("Output extra debugging information. Implies all other -debug* options") + "\n" + " -debugnet " + _("Output extra network debugging information") + "\n" + " -logtimestamps " + _("Prepend debug output with timestamp (default: 1)") + "\n" + " -shrinkdebugfile " + _("Shrink debug.log file on client startup (default: 1 when no -debug)") + "\n" + " -printtoconsole " + _("Send trace/debug info to console instead of debug.log file") + "\n" + #ifdef WIN32 " -printtodebugger " + _("Send trace/debug info to debugger") + "\n" + #endif " -rpcuser=<user> " + _("Username for JSON-RPC connections") + "\n" + " -rpcpassword=<pw> " + _("Password for JSON-RPC connections") + "\n" + " -rpcport=<port> " + _("Listen for JSON-RPC connections on <port> (default: 2332 or testnet: 12332)") + "\n" + " -rpcallowip=<ip> " + _("Allow JSON-RPC connections from specified IP address") + "\n" + #ifndef QT_GUI " -rpcconnect=<ip> " + _("Send commands to node running on <ip> (default: 127.0.0.1)") + "\n" + #endif " -rpcthreads=<n> " + _("Set the number of threads to service RPC calls (default: 4)") + "\n" + " -blocknotify=<cmd> " + _("Execute command when the best block changes (%s in cmd is replaced by block hash)") + "\n" + " -walletnotify=<cmd> " + _("Execute command when a wallet transaction changes (%s in cmd is replaced by TxID)") + "\n" + " -spendzeroconfchange " + _("Spend unconfirmed change when sending transactions (default: 1)") + "\n" + " -alertnotify=<cmd> " + _("Execute command when a relevant alert is received (%s in cmd is replaced by message)") + "\n" + " -upgradewallet " + _("Upgrade wallet to latest format") + "\n" + " -keypool=<n> " + _("Set key pool size to <n> (default: 100)") + "\n" + " -rescan " + _("Rescan the block chain for missing wallet transactions") + "\n" + " -salvagewallet " + _("Attempt to recover private keys from a corrupt wallet.dat") + "\n" + " -checkblocks=<n> " + _("How many blocks to check at startup (default: 288, 0 = all)") + "\n" + " -checklevel=<n> " + _("How thorough the block verification is (0-4, default: 3)") + "\n" + " -txindex " + _("Maintain a full transaction index (default: 0)") + "\n" + " -loadblock=<file> " + _("Imports blocks from external blk000??.dat file") + "\n" + " -maxorphantx=<n> " + _("Keep at most <n> unconnectable transactions in memory (default: 25)") + "\n" + " -reindex " + _("Rebuild block chain index from current blk000??.dat files") + "\n" + " -par=<n> " + _("Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0)") + "\n" + "\n" + _("Block creation options:") + "\n" + " -blockminsize=<n> " + _("Set minimum block size in bytes (default: 0)") + "\n" + " -blockmaxsize=<n> " + _("Set maximum block size in bytes (default: 250000)") + "\n" + " -blockprioritysize=<n> " + _("Set maximum size of high-priority/low-fee transactions in bytes (default: 27000)") + "\n" + "\n" + _("SSL options: (see the Ibithub Wiki for SSL setup instructions)") + "\n" + " -rpcssl " + _("Use OpenSSL (https) for JSON-RPC connections") + "\n" + " -rpcsslcertificatechainfile=<file.cert> " + _("Server certificate file (default: server.cert)") + "\n" + " -rpcsslprivatekeyfile=<file.pem> " + _("Server private key (default: server.pem)") + "\n" + " -rpcsslciphers=<ciphers> " + _("Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH)") + "\n"; return strUsage; } struct CImportingNow { CImportingNow() { assert(fImporting == false); fImporting = true; } ~CImportingNow() { assert(fImporting == true); fImporting = false; } }; void ThreadImport(std::vector<boost::filesystem::path> vImportFiles) { RenameThread("bitcoin-loadblk"); // -reindex if (fReindex) { CImportingNow imp; int nFile = 0; while (true) { CDiskBlockPos pos(nFile, 0); FILE *file = OpenBlockFile(pos, true); if (!file) break; printf("Reindexing block file blk%05u.dat...\n", (unsigned int)nFile); LoadExternalBlockFile(file, &pos); nFile++; } pblocktree->WriteReindexing(false); fReindex = false; printf("Reindexing finished\n"); // To avoid ending up in a situation without genesis block, re-try initializing (no-op if reindexing worked): InitBlockIndex(); } // hardcoded $DATADIR/bootstrap.dat filesystem::path pathBootstrap = GetDataDir() / "bootstrap.dat"; if (filesystem::exists(pathBootstrap)) { FILE *file = fopen(pathBootstrap.string().c_str(), "rb"); if (file) { CImportingNow imp; filesystem::path pathBootstrapOld = GetDataDir() / "bootstrap.dat.old"; printf("Importing bootstrap.dat...\n"); LoadExternalBlockFile(file); RenameOver(pathBootstrap, pathBootstrapOld); } } // -loadblock= BOOST_FOREACH(boost::filesystem::path &path, vImportFiles) { FILE *file = fopen(path.string().c_str(), "rb"); if (file) { CImportingNow imp; printf("Importing %s...\n", path.string().c_str()); LoadExternalBlockFile(file); } } } /** Initialize bitcoin. * @pre Parameters should be parsed and config file should be read. */ bool AppInit2(boost::thread_group& threadGroup) { // ********************************************************* Step 1: setup #ifdef _MSC_VER // Turn off Microsoft heap dump noise _CrtSetReportMode(_CRT_WARN, _CRTDBG_MODE_FILE); _CrtSetReportFile(_CRT_WARN, CreateFileA("NUL", GENERIC_WRITE, 0, NULL, OPEN_EXISTING, 0, 0)); #endif #if _MSC_VER >= 1400 // Disable confusing "helpful" text message on abort, Ctrl-C _set_abort_behavior(0, _WRITE_ABORT_MSG | _CALL_REPORTFAULT); #endif #ifdef WIN32 // Enable Data Execution Prevention (DEP) // Minimum supported OS versions: WinXP SP3, WinVista >= SP1, Win Server 2008 // A failure is non-critical and needs no further attention! #ifndef PROCESS_DEP_ENABLE // We define this here, because GCCs winbase.h limits this to _WIN32_WINNT >= 0x0601 (Windows 7), // which is not correct. Can be removed, when GCCs winbase.h is fixed! #define PROCESS_DEP_ENABLE 0x00000001 #endif typedef BOOL (WINAPI *PSETPROCDEPPOL)(DWORD); PSETPROCDEPPOL setProcDEPPol = (PSETPROCDEPPOL)GetProcAddress(GetModuleHandleA("Kernel32.dll"), "SetProcessDEPPolicy"); if (setProcDEPPol != NULL) setProcDEPPol(PROCESS_DEP_ENABLE); // Initialize Windows Sockets WSADATA wsadata; int ret = WSAStartup(MAKEWORD(2,2), &wsadata); if (ret != NO_ERROR || LOBYTE(wsadata.wVersion ) != 2 || HIBYTE(wsadata.wVersion) != 2) { return InitError(strprintf("Error: Winsock library failed to start (WSAStartup returned error %d)", ret)); } #endif #ifndef WIN32 umask(077); // Clean shutdown on SIGTERM struct sigaction sa; sa.sa_handler = HandleSIGTERM; sigemptyset(&sa.sa_mask); sa.sa_flags = 0; sigaction(SIGTERM, &sa, NULL); sigaction(SIGINT, &sa, NULL); // Reopen debug.log on SIGHUP struct sigaction sa_hup; sa_hup.sa_handler = HandleSIGHUP; sigemptyset(&sa_hup.sa_mask); sa_hup.sa_flags = 0; sigaction(SIGHUP, &sa_hup, NULL); #endif // ********************************************************* Step 2: parameter interactions fTestNet = GetBoolArg("-testnet"); fBloomFilters = GetBoolArg("-bloomfilters", true); if (fBloomFilters) nLocalServices |= NODE_BLOOM; if (mapArgs.count("-bind")) { // when specifying an explicit binding address, you want to listen on it // even when -connect or -proxy is specified SoftSetBoolArg("-listen", true); } if (mapArgs.count("-connect") && mapMultiArgs["-connect"].size() > 0) { // when only connecting to trusted nodes, do not seed via DNS, or listen by default SoftSetBoolArg("-dnsseed", false); SoftSetBoolArg("-listen", false); } if (mapArgs.count("-proxy")) { // to protect privacy, do not listen by default if a proxy server is specified SoftSetBoolArg("-listen", false); } if (!GetBoolArg("-listen", true)) { // do not map ports or try to retrieve public IP when not listening (pointless) SoftSetBoolArg("-upnp", false); SoftSetBoolArg("-discover", false); } if (mapArgs.count("-externalip")) { // if an explicit public IP is specified, do not try to find others SoftSetBoolArg("-discover", false); } if (GetBoolArg("-salvagewallet")) { // Rewrite just private keys: rescan to find transactions SoftSetBoolArg("-rescan", true); } // Make sure enough file descriptors are available int nBind = std::max((int)mapArgs.count("-bind"), 1); nMaxConnections = GetArg("-maxconnections", 125); nMaxConnections = std::max(std::min(nMaxConnections, (int)(FD_SETSIZE - nBind - MIN_CORE_FILEDESCRIPTORS)), 0); int nFD = RaiseFileDescriptorLimit(nMaxConnections + MIN_CORE_FILEDESCRIPTORS); if (nFD < MIN_CORE_FILEDESCRIPTORS) return InitError(_("Not enough file descriptors available.")); if (nFD - MIN_CORE_FILEDESCRIPTORS < nMaxConnections) nMaxConnections = nFD - MIN_CORE_FILEDESCRIPTORS; // ********************************************************* Step 3: parameter-to-internal-flags fDebug = GetBoolArg("-debug"); fBenchmark = GetBoolArg("-benchmark"); // -par=0 means autodetect, but nScriptCheckThreads==0 means no concurrency nScriptCheckThreads = GetArg("-par", 0); if (nScriptCheckThreads <= 0) nScriptCheckThreads += boost::thread::hardware_concurrency(); if (nScriptCheckThreads <= 1) nScriptCheckThreads = 0; else if (nScriptCheckThreads > MAX_SCRIPTCHECK_THREADS) nScriptCheckThreads = MAX_SCRIPTCHECK_THREADS; // -debug implies fDebug* if (fDebug) fDebugNet = true; else fDebugNet = GetBoolArg("-debugnet"); if (fDaemon) fServer = true; else fServer = GetBoolArg("-server"); /* force fServer when running without GUI */ #if !defined(QT_GUI) fServer = true; #endif fPrintToConsole = GetBoolArg("-printtoconsole"); fPrintToDebugger = GetBoolArg("-printtodebugger"); fLogTimestamps = GetBoolArg("-logtimestamps", true); bool fDisableWallet = GetBoolArg("-disablewallet", false); if (mapArgs.count("-timeout")) { int nNewTimeout = GetArg("-timeout", 5000); if (nNewTimeout > 0 && nNewTimeout < 600000) nConnectTimeout = nNewTimeout; } // Continue to put "/P2SH/" in the coinbase to monitor // BIP16 support. // This can be removed eventually... const char* pszP2SH = "/P2SH/"; COINBASE_FLAGS << std::vector<unsigned char>(pszP2SH, pszP2SH+strlen(pszP2SH)); // Fee-per-kilobyte amount considered the same as "free" // If you are mining, be careful setting this: // if you set it to zero then // a transaction spammer can cheaply fill blocks using // 1-satoshi-fee transactions. It should be set above the real // cost to you of processing a transaction. if (mapArgs.count("-mintxfee")) { int64 n = 0; if (ParseMoney(mapArgs["-mintxfee"], n) && n > 0) CTransaction::nMinTxFee = n; else return InitError(strprintf(_("Invalid amount for -mintxfee=<amount>: '%s'"), mapArgs["-mintxfee"].c_str())); } if (mapArgs.count("-minrelaytxfee")) { int64 n = 0; if (ParseMoney(mapArgs["-minrelaytxfee"], n) && n > 0) CTransaction::nMinRelayTxFee = n; else return InitError(strprintf(_("Invalid amount for -minrelaytxfee=<amount>: '%s'"), mapArgs["-minrelaytxfee"].c_str())); } if (mapArgs.count("-paytxfee")) { if (!ParseMoney(mapArgs["-paytxfee"], nTransactionFee)) return InitError(strprintf(_("Invalid amount for -paytxfee=<amount>: '%s'"), mapArgs["-paytxfee"].c_str())); if (nTransactionFee > 0.25 * COIN) InitWarning(_("Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction.")); } bSpendZeroConfChange = GetArg("-spendzeroconfchange", true); if (mapArgs.count("-mininput")) { if (!ParseMoney(mapArgs["-mininput"], nMinimumInputValue)) return InitError(strprintf(_("Invalid amount for -mininput=<amount>: '%s'"), mapArgs["-mininput"].c_str())); } // ********************************************************* Step 4: application initialization: dir lock, daemonize, pidfile, debug log std::string strDataDir = GetDataDir().string(); // Make sure only a single Bitcoin process is using the data directory. boost::filesystem::path pathLockFile = GetDataDir() / ".lock"; FILE* file = fopen(pathLockFile.string().c_str(), "a"); // empty lock file; created if it doesn't exist. if (file) fclose(file); static boost::interprocess::file_lock lock(pathLockFile.string().c_str()); if (!lock.try_lock()) return InitError(strprintf(_("Cannot obtain a lock on data directory %s. Ibithub is probably already running."), strDataDir.c_str())); if (GetBoolArg("-shrinkdebugfile", !fDebug)) ShrinkDebugFile(); printf("\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n"); printf("Ibithub version %s (%s)\n", FormatFullVersion().c_str(), CLIENT_DATE.c_str()); printf("Using OpenSSL version %s\n", SSLeay_version(SSLEAY_VERSION)); if (!fLogTimestamps) printf("Startup time: %s\n", DateTimeStrFormat("%Y-%m-%d %H:%M:%S", GetTime()).c_str()); printf("Default data directory %s\n", GetDefaultDataDir().string().c_str()); printf("Using data directory %s\n", strDataDir.c_str()); printf("Using at most %i connections (%i file descriptors available)\n", nMaxConnections, nFD); std::ostringstream strErrors; if (fDaemon) fprintf(stdout, "Ibithub server starting\n"); if (nScriptCheckThreads) { printf("Using %u threads for script verification\n", nScriptCheckThreads); for (int i=0; i<nScriptCheckThreads-1; i++) threadGroup.create_thread(&ThreadScriptCheck); } int64 nStart; #if defined(USE_SSE2) scrypt_detect_sse2(); #endif // ********************************************************* Step 5: verify wallet database integrity if (!fDisableWallet) { uiInterface.InitMessage(_("Verifying wallet...")); if (!bitdb.Open(GetDataDir())) { // try moving the database env out of the way boost::filesystem::path pathDatabase = GetDataDir() / "database"; boost::filesystem::path pathDatabaseBak = GetDataDir() / strprintf("database.%"PRI64d".bak", GetTime()); try { boost::filesystem::rename(pathDatabase, pathDatabaseBak); printf("Moved old %s to %s. Retrying.\n", pathDatabase.string().c_str(), pathDatabaseBak.string().c_str()); } catch(boost::filesystem::filesystem_error &error) { // failure is ok (well, not really, but it's not worse than what we started with) } // try again if (!bitdb.Open(GetDataDir())) { // if it still fails, it probably means we can't even create the database env string msg = strprintf(_("Error initializing wallet database environment %s!"), strDataDir.c_str()); return InitError(msg); } } if (GetBoolArg("-salvagewallet")) { // Recover readable keypairs: if (!CWalletDB::Recover(bitdb, "wallet.dat", true)) return false; } if (filesystem::exists(GetDataDir() / "wallet.dat")) { CDBEnv::VerifyResult r = bitdb.Verify("wallet.dat", CWalletDB::Recover); if (r == CDBEnv::RECOVER_OK) { string msg = strprintf(_("Warning: wallet.dat corrupt, data salvaged!" " Original wallet.dat saved as wallet.{timestamp}.bak in %s; if" " your balance or transactions are incorrect you should" " restore from a backup."), strDataDir.c_str()); InitWarning(msg); } if (r == CDBEnv::RECOVER_FAIL) return InitError(_("wallet.dat corrupt, salvage failed")); } } // (!fDisableWallet) // ********************************************************* Step 6: network initialization int nSocksVersion = GetArg("-socks", 5); if (nSocksVersion != 4 && nSocksVersion != 5) return InitError(strprintf(_("Unknown -socks proxy version requested: %i"), nSocksVersion)); if (mapArgs.count("-onlynet")) { std::set<enum Network> nets; BOOST_FOREACH(std::string snet, mapMultiArgs["-onlynet"]) { enum Network net = ParseNetwork(snet); if (net == NET_UNROUTABLE) return InitError(strprintf(_("Unknown network specified in -onlynet: '%s'"), snet.c_str())); nets.insert(net); } for (int n = 0; n < NET_MAX; n++) { enum Network net = (enum Network)n; if (!nets.count(net)) SetLimited(net); } } #if defined(USE_IPV6) #if ! USE_IPV6 else SetLimited(NET_IPV6); #endif #endif CService addrProxy; bool fProxy = false; if (mapArgs.count("-proxy")) { addrProxy = CService(mapArgs["-proxy"], 9050); if (!addrProxy.IsValid()) return InitError(strprintf(_("Invalid -proxy address: '%s'"), mapArgs["-proxy"].c_str())); if (!IsLimited(NET_IPV4)) SetProxy(NET_IPV4, addrProxy, nSocksVersion); if (nSocksVersion > 4) { #ifdef USE_IPV6 if (!IsLimited(NET_IPV6)) SetProxy(NET_IPV6, addrProxy, nSocksVersion); #endif SetNameProxy(addrProxy, nSocksVersion); } fProxy = true; } // -tor can override normal proxy, -notor disables tor entirely if (!(mapArgs.count("-tor") && mapArgs["-tor"] == "0") && (fProxy || mapArgs.count("-tor"))) { CService addrOnion; if (!mapArgs.count("-tor")) addrOnion = addrProxy; else addrOnion = CService(mapArgs["-tor"], 9050); if (!addrOnion.IsValid()) return InitError(strprintf(_("Invalid -tor address: '%s'"), mapArgs["-tor"].c_str())); SetProxy(NET_TOR, addrOnion, 5); SetReachable(NET_TOR); } // see Step 2: parameter interactions for more information about these fNoListen = !GetBoolArg("-listen", true); fDiscover = GetBoolArg("-discover", true); fNameLookup = GetBoolArg("-dns", true); bool fBound = false; if (!fNoListen) { if (mapArgs.count("-bind")) { BOOST_FOREACH(std::string strBind, mapMultiArgs["-bind"]) { CService addrBind; if (!Lookup(strBind.c_str(), addrBind, GetListenPort(), false)) return InitError(strprintf(_("Cannot resolve -bind address: '%s'"), strBind.c_str())); fBound |= Bind(addrBind, (BF_EXPLICIT | BF_REPORT_ERROR)); } } else { struct in_addr inaddr_any; inaddr_any.s_addr = INADDR_ANY; #ifdef USE_IPV6 fBound |= Bind(CService(in6addr_any, GetListenPort()), BF_NONE); #endif fBound |= Bind(CService(inaddr_any, GetListenPort()), !fBound ? BF_REPORT_ERROR : BF_NONE); } if (!fBound) return InitError(_("Failed to listen on any port. Use -listen=0 if you want this.")); } if (mapArgs.count("-externalip")) { BOOST_FOREACH(string strAddr, mapMultiArgs["-externalip"]) { CService addrLocal(strAddr, GetListenPort(), fNameLookup); if (!addrLocal.IsValid()) return InitError(strprintf(_("Cannot resolve -externalip address: '%s'"), strAddr.c_str())); AddLocal(CService(strAddr, GetListenPort(), fNameLookup), LOCAL_MANUAL); } } BOOST_FOREACH(string strDest, mapMultiArgs["-seednode"]) AddOneShot(strDest); // ********************************************************* Step 7: load block chain fReindex = GetBoolArg("-reindex"); // Upgrading to 0.8; hard-link the old blknnnn.dat files into /blocks/ filesystem::path blocksDir = GetDataDir() / "blocks"; if (!filesystem::exists(blocksDir)) { filesystem::create_directories(blocksDir); bool linked = false; for (unsigned int i = 1; i < 10000; i++) { filesystem::path source = GetDataDir() / strprintf("blk%04u.dat", i); if (!filesystem::exists(source)) break; filesystem::path dest = blocksDir / strprintf("blk%05u.dat", i-1); try { filesystem::create_hard_link(source, dest); printf("Hardlinked %s -> %s\n", source.string().c_str(), dest.string().c_str()); linked = true; } catch (filesystem::filesystem_error & e) { // Note: hardlink creation failing is not a disaster, it just means // blocks will get re-downloaded from peers. printf("Error hardlinking blk%04u.dat : %s\n", i, e.what()); break; } } if (linked) { fReindex = true; } } // cache size calculations size_t nTotalCache = GetArg("-dbcache", 25) << 20; if (nTotalCache < (1 << 22)) nTotalCache = (1 << 22); // total cache cannot be less than 4 MiB size_t nBlockTreeDBCache = nTotalCache / 8; if (nBlockTreeDBCache > (1 << 21) && !GetBoolArg("-txindex", false)) nBlockTreeDBCache = (1 << 21); // block tree db cache shouldn't be larger than 2 MiB nTotalCache -= nBlockTreeDBCache; size_t nCoinDBCache = nTotalCache / 2; // use half of the remaining cache for coindb cache nTotalCache -= nCoinDBCache; nCoinCacheSize = nTotalCache / 300; // coins in memory require around 300 bytes bool fLoaded = false; while (!fLoaded) { bool fReset = fReindex; std::string strLoadError; uiInterface.InitMessage(_("Loading block index...")); nStart = GetTimeMillis(); do { try { UnloadBlockIndex(); delete pcoinsTip; delete pcoinsdbview; delete pblocktree; pblocktree = new CBlockTreeDB(nBlockTreeDBCache, false, fReindex); pcoinsdbview = new CCoinsViewDB(nCoinDBCache, false, fReindex); pcoinsTip = new CCoinsViewCache(*pcoinsdbview); if (fReindex) pblocktree->WriteReindexing(true); if (!LoadBlockIndex()) { strLoadError = _("Error loading block database"); break; } // If the loaded chain has a wrong genesis, bail out immediately // (we're likely using a testnet datadir, or the other way around). if (!mapBlockIndex.empty() && pindexGenesisBlock == NULL) return InitError(_("Incorrect or no genesis block found. Wrong datadir for network?")); // Initialize the block index (no-op if non-empty database was already loaded) if (!InitBlockIndex()) { strLoadError = _("Error initializing block database"); break; } // Check for changed -txindex state if (fTxIndex != GetBoolArg("-txindex", false)) { strLoadError = _("You need to rebuild the database using -reindex to change -txindex"); break; } uiInterface.InitMessage(_("Verifying blocks...")); if (!VerifyDB(GetArg("-checklevel", 3), GetArg( "-checkblocks", 288))) { strLoadError = _("Corrupted block database detected"); break; } } catch(std::exception &e) { strLoadError = _("Error opening block database"); break; } fLoaded = true; } while(false); if (!fLoaded) { // first suggest a reindex if (!fReset) { bool fRet = uiInterface.ThreadSafeMessageBox( strLoadError + ".\n\n" + _("Do you want to rebuild the block database now?"), "", CClientUIInterface::MSG_ERROR | CClientUIInterface::BTN_ABORT); if (fRet) { fReindex = true; fRequestShutdown = false; } else { return false; } } else { return InitError(strLoadError); } } } // as LoadBlockIndex can take several minutes, it's possible the user // requested to kill bitcoin-qt during the last operation. If so, exit. // As the program has not fully started yet, Shutdown() is possibly overkill. if (fRequestShutdown) { printf("Shutdown requested. Exiting.\n"); return false; } printf(" block index %15"PRI64d"ms\n", GetTimeMillis() - nStart); if (GetBoolArg("-printblockindex") || GetBoolArg("-printblocktree")) { PrintBlockTree(); return false; } if (mapArgs.count("-printblock")) { string strMatch = mapArgs["-printblock"]; int nFound = 0; for (map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.begin(); mi != mapBlockIndex.end(); ++mi) { uint256 hash = (*mi).first; if (strncmp(hash.ToString().c_str(), strMatch.c_str(), strMatch.size()) == 0) { CBlockIndex* pindex = (*mi).second; CBlock block; block.ReadFromDisk(pindex); block.BuildMerkleTree(); block.print(); printf("\n"); nFound++; } } if (nFound == 0) printf("No blocks matching %s were found\n", strMatch.c_str()); return false; } // ********************************************************* Step 8: load wallet if (fDisableWallet) { printf("Wallet disabled!\n"); pwalletMain = NULL; } else { uiInterface.InitMessage(_("Loading wallet...")); nStart = GetTimeMillis(); bool fFirstRun = true; pwalletMain = new CWallet("wallet.dat"); DBErrors nLoadWalletRet = pwalletMain->LoadWallet(fFirstRun); if (nLoadWalletRet != DB_LOAD_OK) { if (nLoadWalletRet == DB_CORRUPT) strErrors << _("Error loading wallet.dat: Wallet corrupted") << "\n"; else if (nLoadWalletRet == DB_NONCRITICAL_ERROR) { string msg(_("Warning: error reading wallet.dat! All keys read correctly, but transaction data" " or address book entries might be missing or incorrect.")); InitWarning(msg); } else if (nLoadWalletRet == DB_TOO_NEW) strErrors << _("Error loading wallet.dat: Wallet requires newer version of Ibithub") << "\n"; else if (nLoadWalletRet == DB_NEED_REWRITE) { strErrors << _("Wallet needed to be rewritten: restart Ibithub to complete") << "\n"; printf("%s", strErrors.str().c_str()); return InitError(strErrors.str()); } else strErrors << _("Error loading wallet.dat") << "\n"; } if (GetBoolArg("-upgradewallet", fFirstRun)) { int nMaxVersion = GetArg("-upgradewallet", 0); if (nMaxVersion == 0) // the -upgradewallet without argument case { printf("Performing wallet upgrade to %i\n", FEATURE_LATEST); nMaxVersion = CLIENT_VERSION; pwalletMain->SetMinVersion(FEATURE_LATEST); // permanently upgrade the wallet immediately } else printf("Allowing wallet upgrade up to %i\n", nMaxVersion); if (nMaxVersion < pwalletMain->GetVersion()) strErrors << _("Cannot downgrade wallet") << "\n"; pwalletMain->SetMaxVersion(nMaxVersion); } if (fFirstRun) { // Create new keyUser and set as default key RandAddSeedPerfmon(); CPubKey newDefaultKey; if (pwalletMain->GetKeyFromPool(newDefaultKey, false)) { pwalletMain->SetDefaultKey(newDefaultKey); if (!pwalletMain->SetAddressBookName(pwalletMain->vchDefaultKey.GetID(), "")) strErrors << _("Cannot write default address") << "\n"; } pwalletMain->SetBestChain(CBlockLocator(pindexBest)); } printf("%s", strErrors.str().c_str()); printf(" wallet %15"PRI64d"ms\n", GetTimeMillis() - nStart); RegisterWallet(pwalletMain); CBlockIndex *pindexRescan = pindexBest; if (GetBoolArg("-rescan")) pindexRescan = pindexGenesisBlock; else { CWalletDB walletdb("wallet.dat"); CBlockLocator locator; if (walletdb.ReadBestBlock(locator)) pindexRescan = locator.GetBlockIndex(); else pindexRescan = pindexGenesisBlock; } if (pindexBest && pindexBest != pindexRescan) { uiInterface.InitMessage(_("Rescanning...")); printf("Rescanning last %i blocks (from block %i)...\n", pindexBest->nHeight - pindexRescan->nHeight, pindexRescan->nHeight); nStart = GetTimeMillis(); pwalletMain->ScanForWalletTransactions(pindexRescan, true); printf(" rescan %15"PRI64d"ms\n", GetTimeMillis() - nStart); pwalletMain->SetBestChain(CBlockLocator(pindexBest)); nWalletDBUpdated++; } } // (!fDisableWallet) // ********************************************************* Step 9: import blocks // scan for better chains in the block chain database, that are not yet connected in the active best chain CValidationState state; if (!ConnectBestBlock(state)) strErrors << "Failed to connect best block"; std::vector<boost::filesystem::path> vImportFiles; if (mapArgs.count("-loadblock")) { BOOST_FOREACH(string strFile, mapMultiArgs["-loadblock"]) vImportFiles.push_back(strFile); } threadGroup.create_thread(boost::bind(&ThreadImport, vImportFiles)); // ********************************************************* Step 10: load peers uiInterface.InitMessage(_("Loading addresses...")); nStart = GetTimeMillis(); { CAddrDB adb; if (!adb.Read(addrman)) printf("Invalid or missing peers.dat; recreating\n"); } printf("Loaded %i addresses from peers.dat %"PRI64d"ms\n", addrman.size(), GetTimeMillis() - nStart); // ********************************************************* Step 11: start node if (!CheckDiskSpace()) return false; if (!strErrors.str().empty()) return InitError(strErrors.str()); RandAddSeedPerfmon(); //// debug print printf("mapBlockIndex.size() = %"PRIszu"\n", mapBlockIndex.size()); printf("nBestHeight = %d\n", nBestHeight); printf("setKeyPool.size() = %"PRIszu"\n", pwalletMain ? pwalletMain->setKeyPool.size() : 0); printf("mapWallet.size() = %"PRIszu"\n", pwalletMain ? pwalletMain->mapWallet.size() : 0); printf("mapAddressBook.size() = %"PRIszu"\n", pwalletMain ? pwalletMain->mapAddressBook.size() : 0); StartNode(threadGroup); // InitRPCMining is needed here so getwork/getblocktemplate in the GUI debug console works properly. InitRPCMining(); if (fServer) StartRPCThreads(); // Generate coins in the background if (pwalletMain) GenerateBitcoins(GetBoolArg("-gen", false), pwalletMain); // ********************************************************* Step 12: finished uiInterface.InitMessage(_("Done loading")); if (pwalletMain) { // Add wallet transactions that aren't already in a block to mapTransactions pwalletMain->ReacceptWalletTransactions(); // Run a thread to flush wallet periodically threadGroup.create_thread(boost::bind(&ThreadFlushWalletDB, boost::ref(pwalletMain->strWalletFile))); } return !fRequestShutdown; }
[ "williamabagwell@yahoo.com" ]
williamabagwell@yahoo.com
0cce3410f70d796f57a86082bc0c1e29fc4cc85b
ba4db75b9d1f08c6334bf7b621783759cd3209c7
/src_main/game/client/hl1/hl1_fx_impacts.cpp
f7eee58db6db6b59ac1ef8e7f595cd97a18ef73c
[]
no_license
equalent/source-2007
a27326c6eb1e63899e3b77da57f23b79637060c0
d07be8d02519ff5c902e1eb6430e028e1b302c8b
refs/heads/master
2020-03-28T22:46:44.606988
2017-03-27T18:05:57
2017-03-27T18:05:57
149,257,460
2
0
null
2018-09-18T08:52:10
2018-09-18T08:52:09
null
WINDOWS-1252
C++
false
false
1,209
cpp
//========= Copyright © 1996-2005, Valve Corporation, All rights reserved. ============// // // Purpose: Game-specific impact effect hooks // //=============================================================================// #include "cbase.h" #include "fx_impact.h" //----------------------------------------------------------------------------- // Purpose: Handle weapon impacts //----------------------------------------------------------------------------- void ImpactCallback( const CEffectData &data ) { trace_t tr; Vector vecOrigin, vecStart, vecShotDir; int iMaterial, iDamageType, iHitbox; short nSurfaceProp; C_BaseEntity *pEntity = ParseImpactData( data, &vecOrigin, &vecStart, &vecShotDir, nSurfaceProp, iMaterial, iDamageType, iHitbox ); if ( !pEntity ) return; // If we hit, perform our custom effects and play the sound if ( Impact( vecOrigin, vecStart, iMaterial, iDamageType, iHitbox, pEntity, tr ) ) { // Check for custom effects based on the Decal index PerformCustomEffects( vecOrigin, tr, vecShotDir, iMaterial, 1.0 ); } PlayImpactSound( pEntity, tr, vecOrigin, nSurfaceProp ); } DECLARE_CLIENT_EFFECT( "Impact", ImpactCallback );
[ "sean@csnxs.uk" ]
sean@csnxs.uk
e7880a6edbab3cd4d710f20838915fd0942a1824
8c121b5c3dc564eb75f7cb8a1e881941d9792db9
/old_contest/at_coder_abc220_F.cpp
f20d9548400181efb1f1a2924b1713a007c93747
[]
no_license
kayaru28/programming_contest
2f967a4479f5a1f2c30310c00c143e711445b12d
40bb79adce823c19bbd988f77b515052c710ea42
refs/heads/master
2022-12-13T18:32:37.818967
2022-11-26T16:36:20
2022-11-26T16:36:20
147,929,424
0
0
null
null
null
null
UTF-8
C++
false
false
3,450
cpp
#include <iostream> #include <stdio.h> #include <algorithm> #include <map> #include <math.h> #include <queue> #include <vector> #include <stack> #include <set> #include <bitset> using namespace std; #define rep(i,n) for (ll i = 0; i < (n) ; i++) #define rep2(i,n,i2,n2) for (ll i = 0; i < (n) ; i++) for (ll i2 = 0; i2 < (n2) ; i2++) #define incRepFT(i,s,n) for (ll i = (s); i <= (n) ; i++) #define decRepFT(i,s,n) for (ll i = (s); i >= (n) ; i--) #define INF 1e9 #define llINF 1e18 #define base10_4 10000 //1e4 #define base10_5 100000 //1e5 #define base10_6 1000000 //1e6 #define base10_7 10000000 //1e7 #define base10_8 100000000 //1e8 #define base10_9 1000000000 //1e9 #define MOD 1000000007 #define pb push_back #define ll long long #define ld long double #define ull unsigned long long #define vint vector<int> #define vll vector<ll> #define vvll vector<vector<ll>> #define vstr vector<string> #define vvstr vector<vector<string>> typedef pair<ll,ll> P; // #include <iomanip> // cout << fixed << setprecision(15) << y << endl; // for(char c : S) //min({a1, a2, ..., an}) //max({a1, a2, ..., an}) //swap(a, b) //S.substr(si) // sort <--> reverse //count(v.begin(), v.end(), x) // char t - 'a' // char t - '0' //xを2進数にした時の1の数 //__builtin_popcount(x) //__builtin_popcountll(x) ll A; ll B; ll C; ll D; ll N; ll M; ll K; ll T; ll H; ll W; ll X; ll Y; ll Z; string S; ll ltmp; string stmp; double dtmp; ll llmin(ll a,ll b){ if(a>=b) return b; return a; } ll llmax(ll a,ll b){ if(a<=b) return b; return a; } P d_move[4] = { P(0 , 1),P(0 , -1),P(1 , 0),P(-1 , 0)//,P(1 , 1),P(1 , -1),P(-1 , 1),P(-1 , -1) }; //for(P drc : d_move) vll Us,Vs; double double_hosei = 1000000; //求められる精度分補正をかけておく vvll gN; ll ansval[base10_6]={}; ll after_cnt[base10_6]={}; ll getMod(ll value,ll mod=MOD){ if(value == 0) return 0; if(mod==0) return -1; value %= mod; if(value<0) value += mod; return value; } ll ans1 = 0; void getAfter(ll index, ll layer,ll parent){ ans1 += layer; ans1 = getMod(ans1); after_cnt[index] = 1; for(ll gi : gN[index]){ if(gi!=parent){ getAfter(gi,layer+1,index); after_cnt[index] += after_cnt[gi]; } } } void getSearch(ll index,ll parent){ ll tmpans = 0; if(index==0){ tmpans = ans1; }else{ ll pindex = parent; tmpans = ansval[pindex]; tmpans -= after_cnt[index]; tmpans += (N-after_cnt[index]); } tmpans = getMod(tmpans); ansval[index] = tmpans; for(ll gi : gN[index]){ if(gi!=parent){ getSearch(gi,index); } } } int main(){ ios::sync_with_stdio(false); cin.tie(0); cout.tie(0); cin >> N; gN.resize(N); Us.resize(N); Vs.resize(N); rep(ni,N-1){ cin >> Us[ni]; cin >> Vs[ni]; } rep(ni,N-1){ Us[ni]--; Vs[ni]--; } rep(ni,N-1){ gN[Us[ni]].push_back(Vs[ni]); gN[Vs[ni]].push_back(Us[ni]); } getAfter(0,0,-1); getSearch(0,-1); /* cout << "-------------" << endl; rep(ni,N){ cout << after_cnt[ni] << endl; } cout << "-------------" << endl; rep(ni,N){ cout << after_sum[ni] << endl; } cout << "-------------" << endl; */ rep(ni,N){ cout << ansval[ni] << endl; } }
[ "istorytale090415@gmail.com" ]
istorytale090415@gmail.com
a40d20c7916d97d6c2e1e8a1512265619522b52f
b2f405ec5d27da27894072e76eb7e0c8307857a0
/P1309/main.cpp
e45ae381f2a61e13ca4adacdd3ed794a35960543
[]
no_license
yuzec/luogu
2760bd26781a6b0eb03b366a5d3ce2e6751bece9
18014e3ff4fb5637ece9f7b416c042cffef70091
refs/heads/master
2023-03-09T20:56:14.105922
2021-02-19T02:46:50
2021-02-19T02:46:50
261,056,008
0
0
null
null
null
null
UTF-8
C++
false
false
946
cpp
#include <iostream> #include <algorithm> using namespace std; struct node { int id; int s; int w; }player[200000],winner[100000],loser[100000]; bool cmp(node x, node y) { if(x.s!=y.s) return x.s>y.s; return x.id<y.id; } int main() { int n,r,q,i,j; cin>>n>>r>>q; for(i=0;i<2*n;++i) { player[i].id=i+1; cin>>player[i].s; } for(i=0;i<2*n;++i) cin>>player[i].w; sort(player,player+2*n,cmp); for(i=0;i<r;++i) { for(j=0;j<n;++j) if(player[2*j].w>player[2*j+1].w) { ++player[2*j].s; winner[j]=player[2*j]; loser[j]=player[2*j+1]; } else { ++player[2*j+1].s; winner[j]=player[2*j+1]; loser[j]=player[2*j]; } merge(winner,winner+n,loser,loser+n,player,cmp); } cout<<player[q-1].id<<endl; return 0; }
[ "yuzec@163.com" ]
yuzec@163.com