blob_id
stringlengths 40
40
| directory_id
stringlengths 40
40
| path
stringlengths 2
247
| content_id
stringlengths 40
40
| detected_licenses
listlengths 0
57
| license_type
stringclasses 2
values | repo_name
stringlengths 4
111
| snapshot_id
stringlengths 40
40
| revision_id
stringlengths 40
40
| branch_name
stringlengths 4
58
| visit_date
timestamp[ns]date 2015-07-25 18:16:41
2023-09-06 10:45:08
| revision_date
timestamp[ns]date 1970-01-14 14:03:36
2023-09-06 06:22:19
| committer_date
timestamp[ns]date 1970-01-14 14:03:36
2023-09-06 06:22:19
| github_id
int64 3.89k
689M
⌀ | star_events_count
int64 0
209k
| fork_events_count
int64 0
110k
| gha_license_id
stringclasses 25
values | gha_event_created_at
timestamp[ns]date 2012-06-07 00:51:45
2023-09-14 21:58:52
⌀ | gha_created_at
timestamp[ns]date 2008-03-27 23:40:48
2023-08-24 19:49:39
⌀ | gha_language
stringclasses 159
values | src_encoding
stringclasses 34
values | language
stringclasses 1
value | is_vendor
bool 1
class | is_generated
bool 2
classes | length_bytes
int64 7
10.5M
| extension
stringclasses 111
values | filename
stringlengths 1
195
| text
stringlengths 7
10.5M
|
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
224c34876d01159df0e9677d81a1d5e019d18048
|
b052937681803bd58d410d6e84abfabf9c6c598e
|
/sw_x/gvm_core/internal/vcs/src/.svn/text-base/vcs_file_url_access_basic_impl.cpp.svn-base
|
6ab1fec98263e3d43cc8e9169e01bef0760b2570
|
[] |
no_license
|
muyl1/acer_cloud_wifi_copy
|
a8eff32e7dc02769bd2302914a7d5bd984227365
|
f7459f5d28056fa3884720cbd891d77e0b00698b
|
refs/heads/master
| 2021-05-27T08:52:21.443483
| 2014-06-17T09:17:17
| 2014-06-17T09:17:17
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,293
|
vcs_file_url_access_basic_impl.cpp.svn-base
|
//
// Copyright 2014 Acer Cloud Technology Inc.
// All Rights Reserved.
//
// THIS SOFTWARE CONTAINS CONFIDENTIAL INFORMATION AND
// TRADE SECRETS OF ACER CLOUD TECHNOLOGY INC.
// USE, DISCLOSURE OR REPRODUCTION IS PROHIBITED WITHOUT
// THE PRIOR EXPRESS WRITTEN PERMISSION OF ACER CLOUD
// TECHNOLOGY INC.
//
#include "vcs_file_url_access_basic_impl.hpp"
#include "vplex_assert.h"
#include <log.h>
VCSFileUrlAccessBasicImpl::VCSFileUrlAccessBasicImpl(
CreateVCSFileUrlOperation create_http_operation,
CreateVCSFileUrlOperation create_acer_ts_operation)
: createHttpOperation(create_http_operation),
createAcerTsOperation(create_acer_ts_operation)
{
// Programmer error if no create operations are defined.
ASSERT(create_http_operation != NULL || create_acer_ts_operation != NULL);
}
VCSFileUrlAccessBasicImpl::~VCSFileUrlAccessBasicImpl()
{}
VCSFileUrlOperation* VCSFileUrlAccessBasicImpl::createOperation(
const VcsAccessInfo& accessInfo,
bool verbose_log,
int& err_code__out)
{
err_code__out = 0;
const std::string& url = accessInfo.accessUrl;
// See wiki.ctbg.acer.com/wiki/index.php/Home_Storage_Virtual_Sync_Design#Design_Changes
// Tunnel service URL format:
// acer-ts://<userId>/<deviceId>/<instanceId>/<urlForStorageNodeHandler>
if (url.find("acer-ts://")==0)
{
if (createAcerTsOperation==NULL) {
LOG_ERROR("Not initialized to createAcerTsOperation(%s).", url.c_str());
err_code__out = VPL_ERR_NOMEM;
return NULL;
}
return createAcerTsOperation(accessInfo, verbose_log, /*OUT*/ err_code__out);
} else if (url.find("http://")==0 ||
url.find("https://")==0)
{
if (createHttpOperation==NULL) {
LOG_ERROR("Not initialized to createHttpOperation(%s).", url.c_str());
err_code__out = -1;
return NULL;
}
return createHttpOperation(accessInfo, verbose_log, /*OUT*/ err_code__out);
} else {
LOG_ERROR("Protocol in URL not recognized(%s)", url.c_str());
err_code__out = -1;
return NULL;
}
}
void VCSFileUrlAccessBasicImpl::destroyOperation(VCSFileUrlOperation* vcsFileUrlOperation)
{
delete vcsFileUrlOperation;
}
|
|
ba0db492f4fbf9d7bb278dc604e0456373905094
|
9c5ed15b94f72a1c8d61cdc4d817ef41ea0e4edd
|
/2016/July-December/trie/main.cpp
|
4acc74a01294277aa284d5357d18e98fa23f9b83
|
[] |
no_license
|
caprariuap/infoarena
|
6a2e74aa61472b4f9d429ad03710726d60856324
|
a3a740d2c179f21b7177e5422072dfa61033437e
|
refs/heads/master
| 2020-04-04T21:28:32.588930
| 2018-11-05T22:14:52
| 2018-11-05T22:14:52
| 156,287,370
| 2
| 1
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,703
|
cpp
|
main.cpp
|
#include <cstdio>
#include <fstream>
using namespace std;
ifstream fin("trie.in");
ofstream fout("trie.out");
struct nod
{
nod *next[30];
int sf,nrfii;
nod()
{
sf=0;
for(int i=0; i<27; i++)
next[i]=0;
}
};
nod *rad= new nod;
void ins(char *w)
{
int ind=0;
nod *p=rad;
while (w[ind]!=0)
{
if (p->next[w[ind]-'a']==NULL)
{
nod *n=new nod;
p->next[w[ind]-'a']=n;
}
p->nrfii++;
p=p->next[w[ind]-'a'];
ind++;
}
p->sf++;
}
bool sterge(char *w,nod *p)
{
if(w[0]==0)
{
p->sf--;
if(p->sf==0&&p->nrfii==0) return 1;
return 0;
}
if (sterge(w+1,p->next[w[0]-'a'])==1)
{
p->next[w[0]-'a']=0;
delete p->next[w[0]-'a'];
if(p->nrfii==1&&p->sf==0)
return 1;
p->nrfii--;
return 0;
}
else
{
p->nrfii--;
return 0;
}
}
int cautare(char *w)
{
int ind=0;
nod *p=rad;
while (w[ind]!=0)
if (p->next[w[ind]-'a'])
p=p->next[w[ind++]-'a'];
else return 0;
return p->sf;
}
int prefix(char *w)
{
int ind=0,nr=0;
nod *p=rad;
while (w[ind]!=0)
if (p->next[w[ind]-'a'])
p=p->next[w[ind++]-'a'],nr++;
else return nr;
return nr;
}
int main()
{
int op;
char w[25];
fin>>op>>w;
while (!fin.eof())
{
if (op==0)
ins(w);
else if (op==1)
sterge(w,rad);
else if (op==2)
fout<<cautare(w)<<'\n';
else if (op==3)fout<<prefix(w)<<'\n';
op=-1;
fin>>op>>w;
}
return 0;
}
|
200a87ba259509af9450fabf6680adcd697f5c58
|
56ebbe3cd3e3d40fe549a44ee308c3564fd45ed0
|
/2017CS372DesignPatterns/Command.cpp
|
b47a7d2fcf123bfb6597475d2a3675c43e980298
|
[] |
no_license
|
AKQuaternion/Spring2017CS372DesignPatterns
|
2551b0f820683f1bdd5d9ac0d9493f9a490e54a4
|
80cbca1779adb440095603bd155b606ae16ea5d8
|
refs/heads/master
| 2021-01-20T05:02:12.793744
| 2017-04-26T23:45:48
| 2017-04-26T23:45:48
| 83,851,018
| 1
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 175
|
cpp
|
Command.cpp
|
//
// Command.cpp
// 2017CS372DesignPatterns
//
// Created by Chris Hartman on 4/5/17.
// Copyright © 2017 Chris Hartman. All rights reserved.
//
#include "Command.hpp"
|
564a097cf046682236c1fc47c6fb021bd6523895
|
5e5a017e48fa8d16f32e0db4920b0df30c40dd9b
|
/whuacm/8.7/A.cpp
|
8a74f2e3f49ee2a101988103b9ed1688f3ba4d21
|
[] |
no_license
|
hazeone/ACM
|
dfa8bc53539df35318d986922f55e7d1119ff0b4
|
8768ac00aecad51eddab7fba2858c1c5b7b86af3
|
refs/heads/master
| 2020-06-16T11:09:12.895221
| 2019-07-06T15:17:13
| 2019-07-06T15:17:13
| 195,550,823
| 1
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,602
|
cpp
|
A.cpp
|
#include<cstdio>
#include<cstdlib>
#include<iostream>
#include<algorithm>
#include<cmath>
using namespace std;
int n,top;
struct data{
double x,y;
}p[200003],s[200003];
double dis(data a,data b)
{return sqrt((a.x-b.x)*(a.x-b.x)+(a.y-b.y)*(a.y-b.y));}
double mul(data p1,data p2,data p0)
{return (p1.x-p0.x)*(p2.y-p0.y)-(p2.x-p0.x)*(p1.y-p0.y);}
inline bool cmp(data a,data b)
{
if(mul(a,b,p[0])==0)return dis(a,p[0])<dis(b,p[0]);
return mul(a,b,p[0])>0;
}
int graham()
{
top=2;data t;
int k=0;
for(int i=1;i<n;i++)
if((p[k].y>p[i].y)||(p[k].y==p[i].y&&p[k].x>p[i].x))k=i;
t=p[0];p[0]=p[k];p[k]=t;
sort(p+1,p+n,cmp);
s[0]=p[0],s[1]=p[1],s[2]=p[2];
for(int i=3;i<n;i++)
{
while(top&&mul(p[i],s[top],s[top-1])>0)
top--;
s[++top]=p[i];
}
s[++top]=p[0];
//for(int i=0;i<top;i++)
//cout<<s[i].x<<" "<<s[i].y<<endl;
return top;
}
bool same(data q,data w,data e)
{
double x1=q.x-w.x,x2=q.x-e.x,y1=q.y-w.y,y2=q.y-e.y;
//cout<<x1<<" "<<y2<<" "<<x2<<" "<<y1<<endl;
if(abs(x2*y1-x1*y2)<=0.000001)return true;
else return false;
}
bool check2()
{
data tmp;
for(int i=0;i<n;i++)
{
int flag=1;
for(int j=0;j<top;j++)
if(s[j].x==p[i].x&&s[j].y==p[i].y)
flag=0;
if(flag)
tmp=p[i];
}
//cout<<tmp.x<<" "<<tmp.y<<endl;
if(same(s[0],s[2],tmp)&&same(s[1],s[3],tmp))
return true;
return false;
}
bool check(data begin,data last)
{
int re=0;
for(int i=0;i<n;i++)
{
if(same(begin,last,p[i]))re++;
}
if(re>=n-1)return true;
else return false;
}
bool judge()
{
double x1=s[0].x-s[1].x,x2=s[3].x-s[2].x,x3=s[0].x-s[3].x,x4=s[1].x-s[2].x;
double y1=s[0].y-s[1].y,y2=s[3].y-s[2].y,y3=s[0].y-s[3].y,y4=s[1].y-s[2].y;
return abs(x1*y2-x2*y1)<=0.0000001&&abs(x3*y4-x4*y3)<=0.0000001;
}
int main()
{
freopen("A.in","r",stdin);
scanf("%d",&n);
for(int i=0;i<n;i++)
scanf("%lf%lf",&p[i].x,&p[i].y);
if(check(p[0],p[1])||check(p[0],p[2])||check(p[1],p[2]))
{
cout<<n<<endl;
return 0;
}
else if(n==4)
{
if(graham()==4)
{
if(judge())
{
if(check(p[0],p[1])||check(p[1],p[2])||check(p[0],p[2]))
{
cout<<4<<endl;
}
else
cout<<5<<endl;return 0;
}
}
cout<<"oo"<<endl;
}
else if(n==5)
{
int llll=graham();
if(llll==4)
{
//for(int i=0;i<top;i++)
//cout<<s[i].x<<" "<<s[i].y<<endl;
if(judge()&&check2())
cout<<5<<endl;
else cout<<"oo"<<endl;
}
else if(llll==5)
{
//cout<<5;
if(check(p[0],p[1])||check(p[0],p[2])||check(p[1],p[2]))
{
cout<<n<<endl;
}
else cout<<"oo"<<endl;
}
else cout<<"oo"<<endl;
}
else cout<<"oo"<<endl;
return 0;
}
|
012c29310868d17d05a9d02afdbdb90f9bad8b14
|
a2f76f70d7ac8f2369ed8213cde2e23e083cdbb0
|
/AtCoder/ABC110/A/a.cpp
|
844dee78b126c72bedb80f092d99d1a0f0747ac6
|
[] |
no_license
|
Yunato/my-competitive-programming
|
5a886469faa9a2f9c9a79729689cc4e19d25dd23
|
2b7996a4187e718de7d74b8783ea7c9490780dbf
|
refs/heads/master
| 2020-04-17T17:17:33.994279
| 2019-05-25T14:15:44
| 2019-05-25T14:15:44
| 150,971,850
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 401
|
cpp
|
a.cpp
|
#include <iostream>
using namespace std;
int main(void){
int input[3];
cin >> input[0] >> input[1] >> input[2];
for(int index = 0; index < 3; index++){
for(int cnt = index + 1; cnt < 3; cnt++){
if(input[cnt - 1] > input[cnt]){
int temp = input[cnt- 1];
input[cnt- 1] = input[cnt];
input[cnt] = temp;
}
}
}
cout << input[2] * 10 + input[1] + input[0] << endl;
return 0;
}
|
f146c5d744a4de61fddc6f229268916d875bba70
|
8f85c7c57a8b89cb9c13840bda20af43db001181
|
/ConsoleBlocks/src/Widgets/BlockBase/CBStartBlock.cpp
|
e1c8772e67832360fc2047f021335e67963e436b
|
[
"Apache-2.0"
] |
permissive
|
HolmErik/ConsoleBlocks
|
12ed91e0f050105ad5acae6076233c9f29a63808
|
f9312d209b8c92534bab41751b67287aa7472b7b
|
refs/heads/master
| 2020-04-07T08:54:39.697523
| 2019-01-08T22:32:29
| 2019-01-08T22:32:29
| 158,233,018
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 154
|
cpp
|
CBStartBlock.cpp
|
#include "CBStartBlock.h"
CBStartBlock::CBStartBlock(QWidget *parent)
: CBBaseBlock(parent)
{
ui.setupUi(this);
}
CBStartBlock::~CBStartBlock()
{
}
|
0ab950aa85a7e0462e1a6a0019e5a8ae16481ef8
|
3d117018ca755ae2a5baacc67e331f43ee865d33
|
/src/main.cpp
|
cde09a7a72b8241293a73e69944da89701575cc0
|
[] |
no_license
|
snorristurluson/exsim-physics
|
a762595c12050067562f1ba8ec8a28d74be64bc6
|
a23ef7cdcdb8d6fe7c42228db08b96900afc0ab1
|
refs/heads/master
| 2021-08-23T22:09:32.731248
| 2017-12-06T19:55:18
| 2017-12-06T19:55:18
| 108,661,658
| 2
| 1
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 228
|
cpp
|
main.cpp
|
#include "btBulletDynamicsCommon.h"
#include "Solarsystem.h"
#include "Ship.h"
#include "CommandHandler.h"
int main(int argc, char** argv)
{
int port = atoi(argv[1]);
CommandHandler handler;
handler.start(port);
}
|
0ffd667f0c2153a2914987b6fdaaf6362fccd56a
|
b65af77686e4779759e0afb1af4bed33d37f714f
|
/cMusicMoodDialog.cpp
|
0f083428f07eba5b22f938c7f1f0979e33af2e6a
|
[] |
no_license
|
kearyo/DM-Helper
|
0afa7069a7e6668f011201465d8a724ec469d401
|
a90a6bc6d9c3f8f9fe7062a61f1b2888a67e9a50
|
refs/heads/master
| 2023-05-06T11:49:01.848611
| 2021-05-24T00:38:59
| 2021-05-24T00:38:59
| 80,240,954
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,052
|
cpp
|
cMusicMoodDialog.cpp
|
// cMusicMoodDialog.cpp : implementation file
//
#include "stdafx.h"
#include "DM Helper.h"
#include "cMusicMoodDialog.h"
#include "afxdialogex.h"
// cMusicMoodDialog dialog
IMPLEMENT_DYNAMIC(cMusicMoodDialog, CDialog)
cMusicMoodDialog::cMusicMoodDialog(CWnd* pParent /*=NULL*/)
: CDialog(cMusicMoodDialog::IDD, pParent)
{
m_pApp = (CDMHelperApp *)AfxGetApp();
}
cMusicMoodDialog::~cMusicMoodDialog()
{
}
void cMusicMoodDialog::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
}
BEGIN_MESSAGE_MAP(cMusicMoodDialog, CDialog)
ON_BN_CLICKED(IDCANCEL, &cMusicMoodDialog::OnBnClickedCancel)
ON_BN_CLICKED(IDOK, &cMusicMoodDialog::OnBnClickedOk)
ON_BN_CLICKED(IDC_MUSIC_MOOD_BUTTON1, &cMusicMoodDialog::OnBnClickedMusicMoodButton1)
ON_BN_CLICKED(IDC_MUSIC_MOOD_BUTTON2, &cMusicMoodDialog::OnBnClickedMusicMoodButton2)
ON_BN_CLICKED(IDC_MUSIC_MOOD_BUTTON3, &cMusicMoodDialog::OnBnClickedMusicMoodButton3)
ON_BN_CLICKED(IDC_MUSIC_MOOD_BUTTON4, &cMusicMoodDialog::OnBnClickedMusicMoodButton4)
ON_BN_CLICKED(IDC_MUSIC_MOOD_BUTTON5, &cMusicMoodDialog::OnBnClickedMusicMoodButton5)
END_MESSAGE_MAP()
// cMusicMoodDialog message handlers
void cMusicMoodDialog::OnBnClickedCancel()
{
// TODO: Add your control notification handler code here
CDialog::OnCancel();
}
void cMusicMoodDialog::OnBnClickedOk()
{
// TODO: Add your control notification handler code here
CDialog::OnOK();
}
void cMusicMoodDialog::OnBnClickedMusicMoodButton1()
{
m_pApp->SendRemoteMusicCommand("SETMOOD NONE");
CDialog::OnOK();
}
void cMusicMoodDialog::OnBnClickedMusicMoodButton2()
{
m_pApp->SendRemoteMusicCommand("SETMOOD COMBAT");
CDialog::OnOK();
}
void cMusicMoodDialog::OnBnClickedMusicMoodButton3()
{
m_pApp->SendRemoteMusicCommand("SETMOOD SOMBER");
CDialog::OnOK();
}
void cMusicMoodDialog::OnBnClickedMusicMoodButton4()
{
m_pApp->SendRemoteMusicCommand("SETMOOD TAVERN");
CDialog::OnOK();
}
void cMusicMoodDialog::OnBnClickedMusicMoodButton5()
{
m_pApp->SendRemoteMusicCommand("SETMOOD SPOOKY");
CDialog::OnOK();
}
|
fbae981d67eae4c058a502950fb69325f0e15348
|
936f55058b46b334b39d97f385e0a95ab361b012
|
/source/ScenarioModel.h
|
75dc7025172599bb7c7e92d57baed26adcfe8086
|
[] |
no_license
|
utia-econometrics/sddp
|
9ec87e85c873e2a6d154c9158910678ba517a486
|
ee4405aa1c9be7ec539d0bf48ce4fe5e6f84e891
|
refs/heads/master
| 2021-01-19T11:10:28.010179
| 2019-08-21T17:55:08
| 2019-08-21T17:55:08
| 63,052,364
| 2
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 6,634
|
h
|
ScenarioModel.h
|
#pragma once
#include "Distribution.h"
#include "ScenarioTree.h"
#include "CoinModelWrapper.h"
#include <ilcplex/ilocplex.h>
using namespace std;
//runtime exception
class ScenarioModelException : Exception
{
public:
ScenarioModelException(string text) : Exception(text){
}
};
class ScenarioModel
{
public:
//default constructor, takes number of stages
ScenarioModel(unsigned int stages);
virtual ~ScenarioModel(void);
//converts the sampled value to the modeled process = sampling post processing
virtual void Evaluate(double *value) const;
//returns the distribution to be sampled at stage t and state s
virtual Distribution* GetDistribution(unsigned int stage, unsigned int state) const = 0;
//returns the size of the decision vector at stage t
virtual mat GetTransitionProbabilities(unsigned int stage) const;
//returns the size of the decision vector at stage t
virtual unsigned int GetDecisionSize(unsigned int stage) const = 0;
//returns the number of states for each stage
virtual unsigned int GetStatesCountStage(unsigned int stage) const;
//return the stage dependence in this model, default is stage independent
virtual StageDependence GetStageDependence() const;
//generates the scenario sampled tree
virtual ScenarioTree* GetScenarioTree(vector<unsigned int> stage_samples) const;
//returns the "true" distribution of the stage t values, if known
virtual Distribution* GetTrueDistribution(unsigned int stage) const;
//returns initial lower bound for the recourse function for algorithm init
virtual double GetRecourseLowerBound(unsigned int stage) const = 0;
//returns initial upper bound for the recourse function for algorithm init
virtual double GetRecourseUpperBound(unsigned int stage) const = 0;
//returns discount factor for the stage t
virtual double GetDiscountFactor(unsigned int stage) const;
/* calculates an upper bound for a single node
stage - the current stage of the node
prev_decisions - current value of decisions from the previous stage
decisions - current optimal solutions of this stage
scenario - random parameters of this node
recourse estimate - an estimate of future recourse received from the solver
cut_tail - denotes possibility to not include CVaR tail terms into evaluation
*/
virtual double CalculateUpperBound(unsigned int stage, const double *prev_decisions, const double *decisions, const double *scenario, double recourse_estimate, bool cut_tail) const = 0;
/* calculates a subgradient
inputs:
stage - the current stage of the node
prev_decisions - current value of decisions from the previous stage
scenario - random parameters of this node
objective - current objective function of this node
duals - dual solutions for this node
outputs:
recourse - value of the recourse function at this node
subgradient - double vector to be filled in with subgradients for our decisions
*/
virtual void FillSubradient(unsigned int stage, const double *prev_decisions, const double *scenario, double objective, const double *duals, double &recourse, double *subgradient) const = 0;
/* builds a model for COIN-OR solver
coin_model - model is to be built using the wrapper which is pre initialized and sent as paramater here
stage - the current stage of the node
prev_decisions - current value of decisions from the previous stage
scenario - random parameters of this node
outputs:
decision_vars - vector of names of decision variables to be handled by the solver
dual_constraints - vector of names of constraints which should be analyzed for dual values by the solver
*/
virtual void BuildCoinModel(CoinModelWrapper * coin_model, unsigned int stage, const double *prev_decisions, const double *scenario, vector<string> &decision_vars, vector<string> &dual_constraints) const = 0;
#ifndef _DEBUG
/* builds a model for CPLEX solver
env - environment wrapper which is pre initialized and sent as paramater here
model - model wrapper which is pre initialized and sent as paramater here
objective - objective wrapper which is pre initialized and sent as paramater here
stage - the current stage of the node
prev_decisions - current value of decisions from the previous stage
scenario - random parameters of this node
outputs:
decision_vars - vector of names of decision variables to be handled by the solver
dual_constraints - vector of names of constraints which should be analyzed for dual values by the solver
*/
virtual void BuildCplexModel(IloEnv &env, IloModel &model, IloExpr &objective, unsigned int stage, const double *prev_decisions, const double *scenario, vector<IloNumVar> &decision_vars, vector<IloRange> &dual_constraints) const = 0;
#endif
/* calculates approximate value of the decision from stage t - 1 at stage t ..
Approximation function "h" from Kozmik,Morton(2015)
stage - the current stage of the node
prev_decisions - current value of decisions from the previous stage
scenario - random parameters of this node
*/
virtual double ApproximateDecisionValue(unsigned int stage, const double *prev_decisions, const double *scenario) const;
/* defines the confidence level alpha to compute "VaR[h]" from Kozmik,Morton(2015)
stage - the current stage of the node
*/
virtual double GetTailAlpha(unsigned int stage) const;
/* defines a cutoff for node being in tail part involved in CVaR calculation ..
Margin function "m" from Kozmik,Morton(2015)
stage - the current stage of the node
parameter var_h - Value at Risk of the ApproximateDecisionValue "h"
*/
virtual double CalculateTailCutoff(unsigned int stage, double var_h) const;
protected:
unsigned int stages_;
public:
//returns total count of stages
unsigned int GetStagesCount() const {
return stages_;
}
//returns total count of stages
unsigned int GetStatesCount() const {
unsigned int count = 0;
for (unsigned int stage = 1; stage <= GetStagesCount(); ++stage) {
count += GetStatesCountStage(stage);
}
return count;
}
//reutrns vector with stage numbers
vector<unsigned int> GetStages() const {
vector<unsigned int> st;
for(unsigned int i = 1; i <= stages_; ++i) {
st.push_back(i);
}
return st;
}
Distribution* GetDistribution(unsigned int stage) const {
if (GetStageDependence() == STAGE_INDEPENDENT) {
return GetDistribution(stage, 1); //fixed index of first state
}
throw ScenarioModelException("Use other overloads with state for non independent models.");
}
};
|
39a2b70bb0fbe196751cb6b8aa502cd6e96bfe12
|
eff84cfc2a079c5af03618d6ee71a024b2fc90c4
|
/src/xenia/kernel/fs/entry.cc
|
da8e5ed2984eff395bb56aff18d2fc299d9d00c3
|
[] |
no_license
|
espes/xenia
|
db046c377b6fe5cf1bffcef34092ac65204c01f7
|
388c622ecd68947cd718309f62f8bde017fa1ab0
|
refs/heads/master
| 2021-01-16T23:14:16.161070
| 2013-06-02T07:11:54
| 2013-06-02T07:11:54
| 10,433,255
| 1
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,606
|
cc
|
entry.cc
|
/**
******************************************************************************
* Xenia : Xbox 360 Emulator Research Project *
******************************************************************************
* Copyright 2013 Ben Vanik. All rights reserved. *
* Released under the BSD license - see LICENSE in the root for more details. *
******************************************************************************
*/
#include <xenia/kernel/fs/entry.h>
using namespace xe;
using namespace xe::kernel;
using namespace xe::kernel::fs;
Entry::Entry(Type type, Device* device, const char* path) :
type_(type),
device_(device) {
path_ = xestrdupa(path);
// TODO(benvanik): last index of \, unless \ at end, then before that
name_ = NULL;
}
Entry::~Entry() {
xe_free(path_);
xe_free(name_);
}
Entry::Type Entry::type() {
return type_;
}
Device* Entry::device() {
return device_;
}
const char* Entry::path() {
return path_;
}
const char* Entry::name() {
return name_;
}
MemoryMapping::MemoryMapping(uint8_t* address, size_t length) :
address_(address), length_(length) {
}
MemoryMapping::~MemoryMapping() {
}
uint8_t* MemoryMapping::address() {
return address_;
}
size_t MemoryMapping::length() {
return length_;
}
FileEntry::FileEntry(Device* device, const char* path) :
Entry(kTypeFile, device, path) {
}
FileEntry::~FileEntry() {
}
DirectoryEntry::DirectoryEntry(Device* device, const char* path) :
Entry(kTypeDirectory, device, path) {
}
DirectoryEntry::~DirectoryEntry() {
}
|
267ad4fd03b3308acbef4b93b091768b01bd1949
|
3347d16ca419ff2192fcc55906a88b29f70887d3
|
/ALL CODES/L2 T2 practice/dasha and friends.cpp
|
e83d495864991513ba79cb765baee57806ffe3df
|
[] |
no_license
|
Ayesha049/all_contest_codes
|
47533b388514704595a32367ede97bfdca10a4b0
|
d7cfd3bfa63668b19eb1c5a64dc0a527908534a0
|
refs/heads/master
| 2021-07-12T07:10:57.548063
| 2017-10-16T22:56:35
| 2017-10-16T22:56:35
| 107,188,843
| 1
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,871
|
cpp
|
dasha and friends.cpp
|
#include<bits/stdc++.h>
using namespace std;
int arr1[50];
int arr2[50];
int main()
{
int flag=0;
int n,l;
cin>>n>>l;
int a;
cin>>a;
int sm=0;
for(int i=0; i<n-1; i++)
{
int b;
cin>>b;
arr1[i]=b-a;
sm+=arr1[i];
a=b;
}
a=(l-sm);
arr1[n-1]=a;
sm=0;
cin>>a;
for(int i=0; i<n-1; i++)
{
int b;
cin>>b;
arr2[i]=b-a;
sm+=arr2[i];
a=b;
}
a=(l-sm);
arr2[n-1]=a;
int fst;
int f=0;
for(int i=0; i<n; i++)
{
if(f==0)
{
if(arr1[0]==arr2[i])
{
f=1;
fst=i;
//break;
}
}
else
{
if(arr1[0]==arr2[i])
{
fst++;
}
else
break;
}
}
for(int i=0; i<n; i++)
{
int xx=(fst+i)%n;
//cout<<"xx1 "<<xx<<endl;
if(arr1[i]!=arr2[xx])
{
flag=1;
//cout<<"utycrweutf"<<endl;
break;
}
}
int flag1=0;
f=0;
for(int i=0; i<n; i++)
{
if(f==0)
{
if(arr2[0]==arr1[i])
{
f=1;
fst=i;
break;
}
}
else
{
if(arr2[0]==arr1[i])
{
fst++;
}
else
break;
}
}
for(int i=0; i<n; i++)
{
int xx=(fst+i)%n;
if(arr2[i]!=arr1[xx])
{
flag1=1;
break;
}
}
if(flag==1 && flag1==1)
cout<<"NO"<<endl;
else
cout<<"YES"<<endl;
}
|
dc0135fe8c4907c8f35ed7de9d95ab63aae6eb5b
|
31a3119974447b54352c0e6175d665d49b28f580
|
/mashTheNewsKinect/src/OSCTunnel.cpp
|
f1150f3a143b333fd07ce35220295fe8f492b13a
|
[] |
no_license
|
luopio/mashthenews
|
2fba5232deac0108289c52ceefa903d253c4de40
|
f251ee5bcca99c16f08030f9d0e65a84df36efbb
|
refs/heads/master
| 2021-01-01T17:17:20.773589
| 2011-04-27T10:27:39
| 2011-04-27T10:27:39
| 1,536,099
| 1
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,499
|
cpp
|
OSCTunnel.cpp
|
#include "OSCTunnel.h"
OSCTunnel::OSCTunnel()
{
sender.setup( HOST, PORT );
sendStartMessage();
}
OSCTunnel::OSCTunnel(char * ip) {
sender.setup(ip, PORT);
sendStartMessage();
}
OSCTunnel::~OSCTunnel()
{
sendStopMessage();
}
void OSCTunnel::sendTestMessage() {
ofxOscMessage m;
m.setAddress( "/testmessage" );
m.addIntArg( 1 );
m.addFloatArg( 3.5f );
m.addStringArg( "hello" );
m.addFloatArg( ofGetElapsedTimef() );
sender.sendMessage( m );
}
void OSCTunnel::sendStartMessage() {
ofxOscMessage m;
m.setAddress( "/kinectisalive" );
m.addFloatArg( ofGetElapsedTimef() );
sender.sendMessage( m );
}
void OSCTunnel::sendStopMessage() {
ofxOscMessage m;
m.setAddress( "/kinectisdead" );
m.addFloatArg( ofGetElapsedTimef() );
sender.sendMessage( m );
}
void OSCTunnel::sendCoordinates(vector<Coordinate> &coords)
{
return;
}
void OSCTunnel::sendImageData(vector<Coordinate> &coords) {
ofxOscMessage m;
m.setAddress( "/imagedata" );
for (int i = 0; i < coords.size(); i++) {
m.addFloatArg(coords[i].x);
m.addFloatArg(coords[i].y);
}
sender.sendMessage(m);
return;
}
void OSCTunnel::sendAttractionPoints(vector<Coordinate> &coords)
{
ofxOscMessage m;
m.setAddress( "/attractionpoints" );
for (int i = 0; i < coords.size(); i++) {
m.addFloatArg(coords[i].x);
m.addFloatArg(coords[i].y);
m.addFloatArg(coords[i].z);
}
sender.sendMessage(m);
return;
}
|
1a13e147e63c55817a7ba2d528bf7b7632ee6490
|
28bbc168051237c97e810697c589b51c3d4b6836
|
/DiegoCaripan/Semestre1-2017/Timus/1787.cpp
|
f48f5f3f8afa6c594aa1da0079265e13cad271c7
|
[] |
no_license
|
fernandezeric/acmudec
|
1ac14d916445a8c31d5914f2a99c33c7bb8af9b0
|
1042c759b1636b47fcf3c20fd8daeaa39338bbd1
|
refs/heads/master
| 2020-07-31T05:09:51.501552
| 2018-09-13T01:55:49
| 2018-09-13T01:55:49
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 329
|
cpp
|
1787.cpp
|
#include <iostream>
using namespace std;
int main(){
int carsin1min, mins;
cin >> carsin1min >> mins;
int total = 0, minute[mins];
for(int i = 0;i<mins;i++)
cin >> minute[i];
for(int i = 0;i<mins;i++){
total = total + minute[i];
total = total - carsin1min;
if (total<0)
total = 0;
}
cout << total << "\n";
}
|
e16fc1597a5363a82ea7ab7050ba1eef3957af07
|
396e837cad5186dd8929dc3c5ea6ffa8c6976251
|
/log.h
|
fdd77f372e5eca51e1e4df46e4ecc03f32152c2d
|
[] |
no_license
|
yuxiageyue/LIMS_FILE_CLIENT
|
5737367d10456866b960d63477bcbd157a0f650c
|
5b7c67c09f020d748db257b21bc61bbcdddd6480
|
refs/heads/master
| 2021-06-17T23:47:12.585846
| 2017-06-05T03:28:30
| 2017-06-05T03:28:30
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,032
|
h
|
log.h
|
#ifndef LOG_H
#define LOG_H
#include <QObject>
#include <QString>
#include <QVariant>
#include <QFile>
#include <QTextStream>
class Log : public QObject
{
Q_OBJECT
public:
static Log* getInstance();
static const quint8 FILE_SIZE_RECV = 1;
static const quint8 FILE_NAME_RECV = 2;
static const quint8 RECV_SIZE = 3;
static const quint8 RECEIVE_FILE_COMPLETE = 4;
static const quint8 COMMON_LOG = 5;
static const quint8 FILE_SIZE_SEND = 6;
static const quint8 FILE_NAME_SEND = 7;
static const quint8 SEND_SIZE = 8;
static const quint8 SEND_FILE_COMPLETE = 9;
static const quint8 SRC_IP = 10;
static const quint8 DST_IP = 11;
static const quint8 TASK_TOTAL_SIZE = 12;
static const quint8 TASK_SIZE_RECV = 13;
void writeLog(QString l);
private:
static Log* log;
explicit Log(QObject *parent = 0);
QFile *file;
~Log();
signals:
void logStr(quint8 logType,QVariant logContent);
void logStr(QString logContent);
public slots:
};
#endif // LOG_H
|
cb5ab0900ea6360999f26e7ec9543941d5f2eb1a
|
5bf990821bd1759e397835af79ab420e0e701574
|
/Strategy/code/DES.h
|
13fed58926b529e64974961d9dd345f71b7f2951
|
[] |
no_license
|
miguelAmadorN/DesignPatterns
|
6c8650e2167dee94f6863bf3960df1a687fa76a0
|
39517ef3e67c58dc2553bf160b33071c3b5f7a34
|
refs/heads/master
| 2020-06-29T05:02:31.387357
| 2020-02-23T23:26:24
| 2020-02-23T23:26:24
| 200,448,838
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 151
|
h
|
DES.h
|
#ifndef DES_H
#define DES_H
#include "EncodeAlgorithm.h"
class DES : public EncodeAlgorithm
{
public:
DES();
private:
void encode();
};
#endif
|
96ede49abe12b5bd43c62c3b30c53ea532920dbc
|
3a8cda49eb1542e07a797bad97a927153008fda7
|
/05C++提高编程/05STL常用算法/05常用算术生成算法/02fill.cpp
|
f00a5f404051d448835f6da07a8727dc5e986f70
|
[] |
no_license
|
lucky5656/C-Code
|
33bb7190b33a9f3b82844c1edf8ee96f8e19703e
|
2db3a5a973c24d99d07ba1fa33681eee7872a5d7
|
refs/heads/main
| 2023-04-10T21:49:33.762245
| 2021-04-22T11:31:35
| 2021-04-22T11:31:35
| 351,770,982
| 1
| 2
| null | null | null | null |
GB18030
|
C++
| false
| false
| 635
|
cpp
|
02fill.cpp
|
#include<iostream>
using namespace std;
#include<vector>
#include<numeric>
#include<algorithm>
//常用算术生成算法:fill
void myPrint(int val)
{
cout << val << " ";
}
void test01()
{
vector<int>v;
v.resize(10); //系统会默认填充0
cout << "利用fill填充前:" << endl;
for_each(v.begin(), v.end(), myPrint);
cout << endl;
//利用fill后期重新向容器中填充指定的元素
fill(v.begin(), v.end(), 100);
cout << "利用fill填充后:" << endl;
for_each(v.begin(), v.end(), myPrint);
cout << endl;
}
int main()
{
test01();
system("pause");
return 0;
}
|
b607ee94214296cfc757688b2ae1d65af7119872
|
4e569ae2f9dded8b20615a7a85c703d51af6e459
|
/srlib/net/IoManager.cpp
|
7508dd063d3969a69189078b1d78748ff929e1d0
|
[] |
no_license
|
xihu1364/srlib
|
2afbb374ed9ae9d8b7327393b1ef5312fe9a6693
|
7daab88c633c76951a6369c9c025b55ec0707740
|
refs/heads/master
| 2020-06-02T07:48:31.518737
| 2015-05-07T01:05:52
| 2015-05-07T01:05:52
| 35,140,766
| 0
| 0
| null | null | null | null |
GB18030
|
C++
| false
| false
| 7,279
|
cpp
|
IoManager.cpp
|
/************************************************************************
* FileName : IoManager.cpp
* Author : xihu
* Version : 1.0
* Info : 2015/01/20
************************************************************************/
#include "stdafx.h"
#include <WINSOCK2.H>
#pragma comment(lib, "ws2_32.lib")
#include <process.h>
#include "IoManager.h"
#include "ClassFactory.h"
IoManager::IoManager() : m_hDealIoMsgThread(INVALID_HANDLE_VALUE),m_bInit(FALSE),m_bClose(FALSE),m_pMemoryPool(NULL),m_lCount(0)
{
m_uKeepAliveTime = 5*1000;
}
IoManager::~IoManager()
{
}
int IoManager::InitIoManager()
{
int nRet = -1;
if (m_bInit)
{
return nRet;
}
m_bInit = TRUE;
#pragma region 初始化socket库
WSAData data;
int error = WSAStartup(MAKEWORD(2, 2), &data);
if (0 != error)
{
return nRet;
}
if(HIBYTE(data.wVersion) != 2 && LOBYTE(data.wVersion))
{
WSACleanup();
return nRet;
}
m_IocpDirver.InitDriver();
#pragma endregion
if (m_pMemoryPool == NULL)
{
m_pMemoryPool = CreateInstance<MemoryPool>();
assert(m_pMemoryPool != NULL);
}
#pragma region 处理IoMsg线程
if (INVALID_HANDLE_VALUE == m_hDealIoMsgThread)
{
unsigned int nWorkId = 0;
m_hDealIoMsgThread = (HANDLE)_beginthreadex(NULL,0,DealIoMsgQueueThread,this,CREATE_SUSPENDED,(unsigned*)&nWorkId);
if (INVALID_HANDLE_VALUE != m_hDealIoMsgThread)
{
SetThreadPriority(m_hDealIoMsgThread,THREAD_PRIORITY_TIME_CRITICAL);
ResumeThread(m_hDealIoMsgThread);
}
}
#pragma endregion
return nRet;
}
int IoManager::UnInitIoManager()
{
if (m_hDealIoMsgThread != INVALID_HANDLE_VALUE)
{
CloseHandle(m_hDealIoMsgThread);
m_bClose = TRUE;
}
return 0;
}
int IoManager::CloseConn(SOCKET sServer,SOCKET sClient)
{
int nRet = -1;
if (sServer == INVALID_SOCKET)
{
DelClient(sClient);
}
nRet = m_IocpDirver.CloseConn(sServer,sClient);
return nRet;
}
unsigned int __stdcall IoManager::DealIoMsgQueueThread(void* pParam)
{
int nRet = -1;
IoManager* pIoManager = (IoManager*)pParam;
if (NULL == pIoManager)
{
return nRet;
}
pIoManager->DealIoMsgQueue();
return nRet = 0;
}
void IoManager::DealIoMsgQueue()
{
PIoMsg pIoMsg = NULL;
while (!m_bClose)
{
do
{
if (pIoMsg != NULL)
{
if (NULL != pIoMsg->_pszBuf)
{
m_pMemoryPool->Free(pIoMsg->_pszBuf);
}
m_pMemoryPool->Free(pIoMsg);
pIoMsg = NULL;
}
pIoMsg = m_MsgQueue.PopFront();
ProcessIoMsg(pIoMsg);
} while (pIoMsg != NULL);
ClientList::iterator ClientIt;
for (ClientIt = m_ClientList.begin();ClientIt != m_ClientList.end();)
{
unsigned int nCurTime = GetTickCount();
unsigned int nTime = ClientIt->second->GetLastMsgTime();
unsigned int nTT = nCurTime - nTime;
if (GetTickCount() - ClientIt->second->GetLastMsgTime() >= m_uKeepAliveTime)
{
ClientIt->second->SendPackage(MSG_KEEP_ALIVE,NULL,0);
continue;
}
++ClientIt;
}
Sleep(1);
}
}
void IoManager::ProcessIoMsg(IoMsg* pIoMsg)
{
if (NULL != pIoMsg)
{
switch (pIoMsg->_nIoType)
{
case IO_ON_CREATE:
{
break;
}
case IO_ON_ACCEPT:
{
break;
}
case IO_ON_CONNECT:
{
break;
}
case IO_ON_DISCONN:
{
shared_ptr<ClientItem> spClient = FindClient(pIoMsg->_sClient);
if (spClient)
{
spClient->OnDisconn();
}
DelClient(pIoMsg->_sClient);
break;
}
case IO_ON_RECV:
{
InterlockedIncrement(&m_lCount);
shared_ptr<ClientItem> spClient = FindClient(pIoMsg->_sClient);
if (spClient)
{
//spClient->RecordMsgTime();
spClient->GroupPackage(pIoMsg);
}
break;
}
case IO_SEND:
{
break;
}
case IO_ON_SEND:
{
break;
}
case IO_ERROR:
{
break;
}
default:
{
break;
}
}
}
}
int IoManager::SendMessage(SOCKET sServer,SOCKET sClient,char* pBuf,int nLen)
{
int nRet = -1;
nRet = m_IocpDirver.SendMessage(sServer,sClient,pBuf,nLen);
return nRet;
}
int IoManager::PostIoMsg(SOCKET sListen,SOCKET sClient,int nIoType,unsigned int nResult,char* pszBuf,int nNumBytes,int nTick/* = -1*/)
{
int nRet = -1;
shared_ptr<ServerItem> spServer = FindServer(sListen);
IoMsg* pIoMsg = m_pMemoryPool->New<IoMsg>();
assert(pIoMsg != NULL);
pIoMsg->_sServer = sListen;
pIoMsg->_sClient = sClient;
pIoMsg->_nIoType = nIoType;
pIoMsg->_nTick = nTick;
pIoMsg->_nResult = nResult;
if (nNumBytes > 0)
{
pIoMsg->_pszBuf = (char*)m_pMemoryPool->Malloc(nNumBytes);
assert(pIoMsg->_pszBuf != NULL);
memcpy(pIoMsg->_pszBuf,pszBuf,nNumBytes);
}
pIoMsg->_nLen = nNumBytes;
if (spServer.get() != NULL)
{
spServer->PostIoMsg(pIoMsg);
}
else
{
m_MsgQueue.PushBack(pIoMsg);
}
return nRet;
}
int IoManager::AddServer(SOCKET sServer,shared_ptr<ServerItem> spServer)
{
int nRet = -1;
if (INVALID_SOCKET == sServer)
{
return nRet;
}
CSRongSyncObj LockObj(&m_ServerListLock);
std::pair< ServerList::iterator,bool > ret;
ret = m_ServerList.insert(ServerList::value_type(sServer,spServer));
if (ret.second)
{
nRet = 0;
}
return nRet;
}
shared_ptr<ServerItem> IoManager::FindServer(SOCKET sServer)
{
shared_ptr<ServerItem> spServer;
CSRongSyncObj LockObj(&m_ServerListLock);
ServerList::iterator it;
it = m_ServerList.find(sServer);
if (it != m_ServerList.end())
{
spServer = it->second;
}
return spServer;
}
int IoManager::DelServer(SOCKET sServer)
{
int nRet = -1;
CSRongSyncObj LockObj(&m_ServerListLock);
ServerList::iterator it;
it = m_ServerList.find(sServer);
if (it != m_ServerList.end())
{
m_ServerList.erase(it);
nRet = 0;
}
return nRet;
}
int IoManager::AddClient(SOCKET sClient,shared_ptr<ClientItem> spClient)
{
int nRet = -1;
if (INVALID_SOCKET == sClient)
{
return nRet;
}
//CSRongSyncObj LockObj(&m_ClientListLock);
std::pair< ClientList::iterator,bool > ret;
ret = m_ClientList.insert(ClientList::value_type(sClient,spClient));
if (ret.second)
{
nRet = 0;
}
return nRet;
}
shared_ptr<ClientItem> IoManager::FindClient(SOCKET sClient)
{
shared_ptr<ClientItem> spClient;
//CSRongSyncObj LockObj(&m_ClientListLock);
ClientList::iterator it;
it = m_ClientList.find(sClient);
if (it != m_ClientList.end())
{
spClient = it->second;
}
return spClient;
}
int IoManager::DelClient(SOCKET sClient)
{
int nRet = -1;
//CSRongSyncObj LockObj(&m_ClientListLock);
ClientList::iterator it;
it = m_ClientList.find(sClient);
if (it != m_ClientList.end())
{
m_ClientList.erase(it);
nRet = 0;
}
return nRet;
}
void IoManager::DumpNode()
{
printf("========================DumpNode========================\n");
printf("ServerNum : %d ",m_ServerList.size());
printf("PostAcceptIoNum : %d ",m_IocpDirver.GetPostIoCount());
printf("ClientNum : %d\n",m_ClientList.size());
printf("--------------------------------------------------------\n");
ServerList::iterator itServer;
for (itServer = m_ServerList.begin();itServer != m_ServerList.end();++itServer)
{
printf("Server[%d] Port : %d Num : %d Msg : %d TP : %d \n",itServer->second->GetServerSocket(),itServer->second->GetLocalPort(),itServer->second->GetClientNum(),itServer->second->GetMsgQueueSize(),itServer->second->GetThroughPut());
}
printf("========================DumpNode========================\n");
}
|
870149fd98f859fb6be2eec78b2e60081c494dae
|
9e4e78f44e57c3685cd33ea16188b3658ac0558d
|
/atcoder/abc099/c.cpp
|
f30fb33180a70aa57b4ba8349f60862ab0c1413c
|
[] |
no_license
|
divanshArora/CP
|
1d7ae72a036b8526fad4e16486cb958cce810f07
|
370b967f944305c7ae6bce076fecc3db8ab7e638
|
refs/heads/master
| 2020-06-13T16:49:29.932577
| 2020-02-13T17:02:45
| 2020-02-13T17:02:45
| 75,524,901
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,849
|
cpp
|
c.cpp
|
#include <bits/stdc++.h>
#define pb push_back
#define ll long long
#define ull unsigned long long
#define FF first
#define SS second
#define MOD 1000000007
using namespace std;
int gcd(int a, int b) {
while (a > 0 && b > 0)
if (a > b) a %= b;
else b %= a;
return a + b;
}
ll modpower(ll x, ll y, ll p) //x^y mod p
{
ll res = 1; // Initialize result
x = x % p; // Update x if it is more than or
// equal to p
while (y > 0)
{
// If y is odd, multiply x with result
if (y %2!= 0)
res = (res*x) % p;
// y must be even now
y = y/2;
x = (x*x) % p;
}
return res;
}
int main()
{
ios_base::sync_with_stdio(false);
vector<ll> v;
v.pb(1);
int n;
cin>>n;
int k = 9;
ll c = k;
while(c<=n)
{
v.pb(c);
c*=k;
}
k = 6;
c = k;
while(c<=n)
{
v.pb(c);
c*=k;
}
sort(v.begin(),v.end());
// ll arr[v.size()][2];
// for(int j=0;j<=n;j++)
// {
// arr[0][j]=j;
// }
// for(int i=0;i<v.size();i++)
// {
// arr[i][0]=0;
// }
// for(int i=1;i<v.size();i++)
// {
// for(int j=1;j<=n;j++)
// {
// if(j-)
// arr[i][j] = 1 + arr[i-1][j-]
// }
// }
//src: https://www.geeksforgeeks.org/find-minimum-number-of-coins-that-make-a-change/
ll V = n;
ll table[n+1];
table[0] = 0;
// Initialize all table values as Infinite
for (int i=1; i<=V; i++)
table[i] = INT_MAX;
// Compute minimum coins required for all
// values from 1 to V
for (int i=1; i<=V; i++)
{
// Go through all coins smaller than i
for (int j=0; j<v.size(); j++)
if (v[j] <= i)
{
ll sub_res = table[i-v[j]];
if (sub_res != INT_MAX && sub_res + 1 < table[i])
table[i] = sub_res + 1;
}
}
cout<<table[V];
}
|
8ad127e511255f0945014c9876d79c9580b18213
|
3435446327127f8dff815c1af5223f3d58c5243a
|
/Source/Voxel/BlockStone.cpp
|
274990e1f844ebb2a78fb4c1497907e2ce8b1cf0
|
[] |
no_license
|
azy2/UEVoxel
|
83b5d2b45fde3db26d89e3d27873a0b950e6d570
|
01869ede5d0d1e18cf448539f1e16a54248bef6b
|
refs/heads/master
| 2021-05-08T00:44:41.692418
| 2017-10-23T14:26:54
| 2017-10-23T14:26:54
| 107,699,590
| 1
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 167
|
cpp
|
BlockStone.cpp
|
#include "BlockStone.h"
FVector2D FBlockStone::texturePosition(Direction dir) {
return FVector2D(1, 0);
}
bool FBlockStone::isSolid(Direction dir) {
return true;
}
|
ae7fad7c47d9722cc9df66fcd5a3af99c19beb94
|
39bcafc5f6b1672f31f0f6ea9c8d6047ee432950
|
/src/include/duckdb/parser/parsed_data/alter_table_info.hpp
|
45c66ee494f7bc16ff0a92b7ce054a8d1c6ea00c
|
[
"MIT"
] |
permissive
|
duckdb/duckdb
|
315270af6b198d26eb41a20fc7a0eda04aeef294
|
f89ccfe0ec01eb613af9c8ac7c264a5ef86d7c3a
|
refs/heads/main
| 2023-09-05T08:14:21.278345
| 2023-09-05T07:28:59
| 2023-09-05T07:28:59
| 138,754,790
| 8,964
| 986
|
MIT
| 2023-09-14T18:42:49
| 2018-06-26T15:04:45
|
C++
|
UTF-8
|
C++
| false
| false
| 12,205
|
hpp
|
alter_table_info.hpp
|
//===----------------------------------------------------------------------===//
// DuckDB
//
// duckdb/parser/parsed_data/alter_table_info.hpp
//
//
//===----------------------------------------------------------------------===//
#pragma once
#include "duckdb/parser/parsed_data/alter_info.hpp"
#include "duckdb/parser/column_definition.hpp"
#include "duckdb/parser/constraint.hpp"
#include "duckdb/parser/parsed_data/parse_info.hpp"
namespace duckdb {
enum class AlterForeignKeyType : uint8_t { AFT_ADD = 0, AFT_DELETE = 1 };
//===--------------------------------------------------------------------===//
// Change Ownership
//===--------------------------------------------------------------------===//
struct ChangeOwnershipInfo : public AlterInfo {
ChangeOwnershipInfo(CatalogType entry_catalog_type, string entry_catalog, string entry_schema, string entry_name,
string owner_schema, string owner_name, OnEntryNotFound if_not_found);
// Catalog type refers to the entry type, since this struct is usually built from an
// ALTER <TYPE> <schema>.<name> OWNED BY <owner_schema>.<owner_name> statement
// here it is only possible to know the type of who is to be owned
CatalogType entry_catalog_type;
string owner_schema;
string owner_name;
public:
CatalogType GetCatalogType() const override;
unique_ptr<AlterInfo> Copy() const override;
void Serialize(FieldWriter &writer) const override;
};
//===--------------------------------------------------------------------===//
// Alter Table
//===--------------------------------------------------------------------===//
enum class AlterTableType : uint8_t {
INVALID = 0,
RENAME_COLUMN = 1,
RENAME_TABLE = 2,
ADD_COLUMN = 3,
REMOVE_COLUMN = 4,
ALTER_COLUMN_TYPE = 5,
SET_DEFAULT = 6,
FOREIGN_KEY_CONSTRAINT = 7,
SET_NOT_NULL = 8,
DROP_NOT_NULL = 9
};
struct AlterTableInfo : public AlterInfo {
AlterTableInfo(AlterTableType type, AlterEntryData data);
~AlterTableInfo() override;
AlterTableType alter_table_type;
public:
CatalogType GetCatalogType() const override;
void Serialize(FieldWriter &writer) const override;
virtual void SerializeAlterTable(FieldWriter &writer) const = 0;
static unique_ptr<AlterInfo> Deserialize(FieldReader &reader);
void FormatSerialize(FormatSerializer &serializer) const override;
static unique_ptr<AlterInfo> FormatDeserialize(FormatDeserializer &deserializer);
protected:
AlterTableInfo(AlterTableType type);
};
//===--------------------------------------------------------------------===//
// RenameColumnInfo
//===--------------------------------------------------------------------===//
struct RenameColumnInfo : public AlterTableInfo {
RenameColumnInfo(AlterEntryData data, string old_name_p, string new_name_p);
~RenameColumnInfo() override;
//! Column old name
string old_name;
//! Column new name
string new_name;
public:
unique_ptr<AlterInfo> Copy() const override;
void SerializeAlterTable(FieldWriter &writer) const override;
static unique_ptr<AlterInfo> Deserialize(FieldReader &reader, AlterEntryData data);
void FormatSerialize(FormatSerializer &serializer) const override;
static unique_ptr<AlterTableInfo> FormatDeserialize(FormatDeserializer &deserializer);
private:
RenameColumnInfo();
};
//===--------------------------------------------------------------------===//
// RenameTableInfo
//===--------------------------------------------------------------------===//
struct RenameTableInfo : public AlterTableInfo {
RenameTableInfo(AlterEntryData data, string new_name);
~RenameTableInfo() override;
//! Relation new name
string new_table_name;
public:
unique_ptr<AlterInfo> Copy() const override;
void SerializeAlterTable(FieldWriter &writer) const override;
static unique_ptr<AlterInfo> Deserialize(FieldReader &reader, AlterEntryData data);
void FormatSerialize(FormatSerializer &serializer) const override;
static unique_ptr<AlterTableInfo> FormatDeserialize(FormatDeserializer &deserializer);
private:
RenameTableInfo();
};
//===--------------------------------------------------------------------===//
// AddColumnInfo
//===--------------------------------------------------------------------===//
struct AddColumnInfo : public AlterTableInfo {
AddColumnInfo(AlterEntryData data, ColumnDefinition new_column, bool if_column_not_exists);
~AddColumnInfo() override;
//! New column
ColumnDefinition new_column;
//! Whether or not an error should be thrown if the column exist
bool if_column_not_exists;
public:
unique_ptr<AlterInfo> Copy() const override;
void SerializeAlterTable(FieldWriter &writer) const override;
static unique_ptr<AlterInfo> Deserialize(FieldReader &reader, AlterEntryData data);
void FormatSerialize(FormatSerializer &serializer) const override;
static unique_ptr<AlterTableInfo> FormatDeserialize(FormatDeserializer &deserializer);
private:
explicit AddColumnInfo(ColumnDefinition new_column);
};
//===--------------------------------------------------------------------===//
// RemoveColumnInfo
//===--------------------------------------------------------------------===//
struct RemoveColumnInfo : public AlterTableInfo {
RemoveColumnInfo(AlterEntryData data, string removed_column, bool if_column_exists, bool cascade);
~RemoveColumnInfo() override;
//! The column to remove
string removed_column;
//! Whether or not an error should be thrown if the column does not exist
bool if_column_exists;
//! Whether or not the column should be removed if a dependency conflict arises (used by GENERATED columns)
bool cascade;
public:
unique_ptr<AlterInfo> Copy() const override;
void SerializeAlterTable(FieldWriter &writer) const override;
static unique_ptr<AlterInfo> Deserialize(FieldReader &reader, AlterEntryData data);
void FormatSerialize(FormatSerializer &serializer) const override;
static unique_ptr<AlterTableInfo> FormatDeserialize(FormatDeserializer &deserializer);
string GetColumnName() const override {
return removed_column;
}
private:
RemoveColumnInfo();
};
//===--------------------------------------------------------------------===//
// ChangeColumnTypeInfo
//===--------------------------------------------------------------------===//
struct ChangeColumnTypeInfo : public AlterTableInfo {
ChangeColumnTypeInfo(AlterEntryData data, string column_name, LogicalType target_type,
unique_ptr<ParsedExpression> expression);
~ChangeColumnTypeInfo() override;
//! The column name to alter
string column_name;
//! The target type of the column
LogicalType target_type;
//! The expression used for data conversion
unique_ptr<ParsedExpression> expression;
public:
unique_ptr<AlterInfo> Copy() const override;
void SerializeAlterTable(FieldWriter &writer) const override;
static unique_ptr<AlterInfo> Deserialize(FieldReader &reader, AlterEntryData data);
void FormatSerialize(FormatSerializer &serializer) const override;
static unique_ptr<AlterTableInfo> FormatDeserialize(FormatDeserializer &deserializer);
string GetColumnName() const override {
return column_name;
};
private:
ChangeColumnTypeInfo();
};
//===--------------------------------------------------------------------===//
// SetDefaultInfo
//===--------------------------------------------------------------------===//
struct SetDefaultInfo : public AlterTableInfo {
SetDefaultInfo(AlterEntryData data, string column_name, unique_ptr<ParsedExpression> new_default);
~SetDefaultInfo() override;
//! The column name to alter
string column_name;
//! The expression used for data conversion
unique_ptr<ParsedExpression> expression;
public:
unique_ptr<AlterInfo> Copy() const override;
void SerializeAlterTable(FieldWriter &writer) const override;
static unique_ptr<AlterInfo> Deserialize(FieldReader &reader, AlterEntryData data);
void FormatSerialize(FormatSerializer &serializer) const override;
static unique_ptr<AlterTableInfo> FormatDeserialize(FormatDeserializer &deserializer);
private:
SetDefaultInfo();
};
//===--------------------------------------------------------------------===//
// AlterForeignKeyInfo
//===--------------------------------------------------------------------===//
struct AlterForeignKeyInfo : public AlterTableInfo {
AlterForeignKeyInfo(AlterEntryData data, string fk_table, vector<string> pk_columns, vector<string> fk_columns,
vector<PhysicalIndex> pk_keys, vector<PhysicalIndex> fk_keys, AlterForeignKeyType type);
~AlterForeignKeyInfo() override;
string fk_table;
vector<string> pk_columns;
vector<string> fk_columns;
vector<PhysicalIndex> pk_keys;
vector<PhysicalIndex> fk_keys;
AlterForeignKeyType type;
public:
unique_ptr<AlterInfo> Copy() const override;
void SerializeAlterTable(FieldWriter &writer) const override;
static unique_ptr<AlterInfo> Deserialize(FieldReader &reader, AlterEntryData data);
void FormatSerialize(FormatSerializer &serializer) const override;
static unique_ptr<AlterTableInfo> FormatDeserialize(FormatDeserializer &deserializer);
private:
AlterForeignKeyInfo();
};
//===--------------------------------------------------------------------===//
// SetNotNullInfo
//===--------------------------------------------------------------------===//
struct SetNotNullInfo : public AlterTableInfo {
SetNotNullInfo(AlterEntryData data, string column_name);
~SetNotNullInfo() override;
//! The column name to alter
string column_name;
public:
unique_ptr<AlterInfo> Copy() const override;
void SerializeAlterTable(FieldWriter &writer) const override;
static unique_ptr<AlterInfo> Deserialize(FieldReader &reader, AlterEntryData data);
void FormatSerialize(FormatSerializer &serializer) const override;
static unique_ptr<AlterTableInfo> FormatDeserialize(FormatDeserializer &deserializer);
private:
SetNotNullInfo();
};
//===--------------------------------------------------------------------===//
// DropNotNullInfo
//===--------------------------------------------------------------------===//
struct DropNotNullInfo : public AlterTableInfo {
DropNotNullInfo(AlterEntryData data, string column_name);
~DropNotNullInfo() override;
//! The column name to alter
string column_name;
public:
unique_ptr<AlterInfo> Copy() const override;
void SerializeAlterTable(FieldWriter &writer) const override;
static unique_ptr<AlterInfo> Deserialize(FieldReader &reader, AlterEntryData data);
void FormatSerialize(FormatSerializer &serializer) const override;
static unique_ptr<AlterTableInfo> FormatDeserialize(FormatDeserializer &deserializer);
private:
DropNotNullInfo();
};
//===--------------------------------------------------------------------===//
// Alter View
//===--------------------------------------------------------------------===//
enum class AlterViewType : uint8_t { INVALID = 0, RENAME_VIEW = 1 };
struct AlterViewInfo : public AlterInfo {
AlterViewInfo(AlterViewType type, AlterEntryData data);
~AlterViewInfo() override;
AlterViewType alter_view_type;
public:
CatalogType GetCatalogType() const override;
void Serialize(FieldWriter &writer) const override;
virtual void SerializeAlterView(FieldWriter &writer) const = 0;
static unique_ptr<AlterInfo> Deserialize(FieldReader &reader);
void FormatSerialize(FormatSerializer &serializer) const override;
static unique_ptr<AlterInfo> FormatDeserialize(FormatDeserializer &deserializer);
protected:
AlterViewInfo(AlterViewType type);
};
//===--------------------------------------------------------------------===//
// RenameViewInfo
//===--------------------------------------------------------------------===//
struct RenameViewInfo : public AlterViewInfo {
RenameViewInfo(AlterEntryData data, string new_name);
~RenameViewInfo() override;
//! Relation new name
string new_view_name;
public:
unique_ptr<AlterInfo> Copy() const override;
void SerializeAlterView(FieldWriter &writer) const override;
static unique_ptr<AlterInfo> Deserialize(FieldReader &reader, AlterEntryData data);
void FormatSerialize(FormatSerializer &serializer) const override;
static unique_ptr<AlterViewInfo> FormatDeserialize(FormatDeserializer &deserializer);
private:
RenameViewInfo();
};
} // namespace duckdb
|
e53ea226fc1dc5b61facec3270f27a20fdc000a4
|
64e869de205db581fe190189834270b383756547
|
/include/ground_control_system.h
|
6a5639f44a31f69e249afcd00a4f9b68103c2379
|
[] |
no_license
|
ChanghyeonKim93/improved_topic_logger
|
e38267bfb2e7b3185c16e2e1bc8545620630b83c
|
06da358ae460db2d3f1073a4c3367f507d1e784e
|
refs/heads/master
| 2023-08-03T07:34:41.150449
| 2021-09-14T04:17:20
| 2021-09-14T04:17:20
| 278,518,406
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 16,700
|
h
|
ground_control_system.h
|
#ifndef _HHI_GROUND_CONTROL_SYSTEM_H_
#define _HHI_GROUND_CONTROL_SYSTEM_H_
#include <stdlib.h>
#include <iostream>
#include <vector>
#include <string>
#include <sstream>
#include <fstream> // for lidar pcd files
#include <ros/ros.h>
#include <Eigen/Dense>
#include <cv_bridge/cv_bridge.h>
#include <opencv2/core.hpp>
#include <opencv2/imgproc/imgproc.hpp>
#include <opencv2/highgui/highgui.hpp>
// for subscribe
#include <sensor_msgs/Image.h>
#include <sensor_msgs/CameraInfo.h>
#include <sensor_msgs/image_encodings.h>
#include <image_transport/image_transport.h>
#include <std_msgs/Int32.h> // command msg
#include <sensor_msgs/TimeReference.h> // arduino time
#include <sensor_msgs/PointCloud2.h>
#include <pcl_conversions/pcl_conversions.h>
#include <pcl/point_cloud.h>
#include <pcl/point_types.h>
// custom msgs
// ref: https://steemit.com/kr-dev/@jacobyu/1303-ros-custom-message-generation
#include "hhi_autoexcavator/hhi_command.h" // dedicated msgs for HHI project.
using namespace std;
string dtos(double x)
{
stringstream s;
s << setprecision(6) << fixed << x;
return s.str();
};
string itos(double x)
{
stringstream s;
s << x;
return s.str();
};
class HHIGCS{
public:
HHIGCS(ros::NodeHandle& nh, int n_cams, int n_lidars, const string& save_dir);
~HHIGCS();
void streamingMode();
bool sendSingleQueryToAllSensors();
void sendQuitMsgToAllSensors();
void pointcloud2tobuffers(const sensor_msgs::PointCloud2ConstPtr& msg_lidar, const int& id);
void saveLidarData(const std::string& file_name, const pcl::PointCloud<pcl::PointXYZI>::Ptr& pc_lidar);
void saveLidarDataRingTime(const std::string& file_name, const int& id);
void saveAllData();
// related to camera settings.
void setExposureTime();
void setCameraGrayscaleGain();
// pointer to data
cv::Mat& getBufImage(const int& id){ return *(buf_imgs_+id);};
pcl::PointCloud<pcl::PointXYZI>::Ptr& getBufLidar(const int& id){return *(buf_lidars_+id);};
inline int getNumCams(){return n_cams_;};
inline int getNumLidars(){return n_lidars_;};
private:
// node handler
ros::NodeHandle nh_;
// publishers
ros::Publisher pub_cmd_msg_;
std_msgs::Int32 cmd_msg_; // user command msg.
// subscribers
image_transport::ImageTransport it_;
vector<image_transport::Subscriber> subs_imgs_; // from mvBlueCOUGAR-X cameras
ros::Subscriber sub_timestamp_; // from arduino.
vector<ros::Subscriber> subs_lidars_; // from Velodyne lidars
// topic names
vector<string> topicnames_imgs_;
vector<string> topicnames_lidars_;
string topicname_timestamp_;
// state variables
int n_cams_; // numbering rule(cams) 0,1) cabin left,right, 2,3) boom frontal,rear
int n_lidars_;// numbering rule(lidars)- 0) cabin, 1) boom
// transmittion flags.
bool* flag_imgs_; // 'true' when image data is received.
bool* flag_lidars_; // 'true' when lidar data is received.
bool flag_mcu_; // 'true' when arduino data is received.
// data container (buffer)
cv::Mat* buf_imgs_; // Images from mvBlueCOUGAR-X cameras.
double buf_time_; // triggered time stamp from Arduino. (second)
pcl::PointCloud<pcl::PointXYZI>::Ptr* buf_lidars_; // point clouds (w/ intensity) from Velodyne VLP16
vector<float*> buf_lidars_x;
vector<float*> buf_lidars_y;
vector<float*> buf_lidars_z;
vector<float*> buf_lidars_intensity;
vector<unsigned short*> buf_lidars_ring;
vector<float*> buf_lidars_time;
vector<int> buf_lidars_npoints;
// private methods
void initializeAllFlags();
void callbackImage(const sensor_msgs::ImageConstPtr& msg, const int& id);
void callbackLidar(const sensor_msgs::PointCloud2ConstPtr& msg_lidar, const int& id);
void callbackTime(const sensor_msgs::TimeReference::ConstPtr& t_ref);
void clearCmdMsg(){cmd_msg_.data = 0; };
string save_dir_;
int current_seq_;
};
HHIGCS::HHIGCS(ros::NodeHandle& nh,
int n_cams, int n_lidars, const string& save_dir)
: nh_(nh), it_(nh_), n_cams_(n_cams), n_lidars_(n_lidars),save_dir_(save_dir)
{
// default.
flag_lidars_ = nullptr;
flag_imgs_ = nullptr;
buf_imgs_ = nullptr;
// command message publisher.
pub_cmd_msg_ = nh_.advertise<std_msgs::Int32>("/hhi/msg",1);
// initialize image container & subscribers.
if(n_cams_ > 0){
buf_imgs_ = new cv::Mat[n_cams_];
flag_imgs_ = new bool[n_cams_];
for(int i = 0; i < n_cams_; i++) {
flag_imgs_[i] = false;
string name_temp = "/" + itos(i) + "/image_raw";
topicnames_imgs_.push_back(name_temp);
subs_imgs_.push_back(it_.subscribe(topicnames_imgs_[i], 1, boost::bind(&HHIGCS::callbackImage, this, _1, i)));
}
}
else {
buf_imgs_ = nullptr;
flag_imgs_ = nullptr;
}
// initialize lidar container & subscribers.
if(n_lidars_ > 0){
buf_lidars_ = new pcl::PointCloud<pcl::PointXYZI>::Ptr[n_lidars_];
flag_lidars_ = new bool[n_lidars_];
for(int i = 0; i < n_lidars_; i++){
flag_lidars_[i] = false;
*(buf_lidars_ + i) = boost::make_shared<pcl::PointCloud<pcl::PointXYZI>>();
buf_lidars_x.push_back(new float[100000]);
buf_lidars_y.push_back(new float[100000]);
buf_lidars_z.push_back(new float[100000]);
buf_lidars_intensity.push_back(new float[100000]);
buf_lidars_ring.push_back(new unsigned short[100000]);
buf_lidars_time.push_back(new float[100000]);
buf_lidars_npoints.push_back(0);
string name_temp = "/lidar" + itos(i) + "/velodyne_points";
topicnames_lidars_.push_back(name_temp);
subs_lidars_.push_back(nh_.subscribe<sensor_msgs::PointCloud2>(topicnames_lidars_[i], 1, boost::bind(&HHIGCS::callbackLidar, this, _1, i)));
}
}
else{
buf_lidars_ = nullptr;
flag_lidars_ = nullptr;
}
// initialize arduino container & subscriber.
flag_mcu_ = false;
buf_time_ = -1.0;
sub_timestamp_ = nh_.subscribe("/trigger_time", 1, &HHIGCS::callbackTime, this);
// generate save folder
std::string folder_create_command;
folder_create_command = "sudo rm -rf " + save_dir_;
system(folder_create_command.c_str());
folder_create_command = "mkdir " + save_dir_;
system(folder_create_command.c_str());
// make image saving directories
for(int i = 0; i< n_cams_; i++){
folder_create_command = "mkdir " + save_dir_ + "cam" + itos(i) + "/";
system(folder_create_command.c_str());
}
// make lidar data saving directories
for(int i = 0; i < n_lidars_; i++){
folder_create_command = "mkdir " + save_dir_ + "lidar" + itos(i) + "/";
system(folder_create_command.c_str());
}
// save association
string file_name = save_dir_ + "/association.txt";
std::ofstream output_file(file_name, std::ios::trunc);
output_file.precision(6);
output_file.setf(std::ios_base::fixed, std::ios_base::floatfield);
if(output_file.is_open()){
output_file << "time_us ";
for(int i = 0; i < n_cams_; i++) output_file << "cam" << i << " ";
output_file << "exposure_us gain_dB ";
for(int i = 0; i < n_lidars_; i++) output_file << "lidar" << i <<" ";
output_file << "\n";
}
};
HHIGCS::~HHIGCS() {
// ! all allocation needs to be freed.
if( buf_imgs_ != nullptr ) delete[] buf_imgs_;
if( flag_imgs_ != nullptr ) delete[] flag_imgs_;
if( buf_lidars_ != nullptr) delete[] buf_lidars_;
if( flag_lidars_ != nullptr) delete[] flag_lidars_;
for(int i = 0; i < n_lidars_; i++){
delete[] buf_lidars_x[i];
delete[] buf_lidars_y[i];
delete[] buf_lidars_z[i];
delete[] buf_lidars_intensity[i];
delete[] buf_lidars_ring[i];
delete[] buf_lidars_time[i];
}
};
void HHIGCS::streamingMode(){
cout << "20 Hz (forced) streaming mode\n";
// initialize all flags
initializeAllFlags();
// fill out control msg
cmd_msg_.data = 1;
// query sensor data for all sensors
pub_cmd_msg_.publish(cmd_msg_);
clearCmdMsg();
// (timeout) Wait for obtaining and transmitting all sensor data.
// Considering exposure time and lidar gathering time, set 50 ms
ros::spinOnce();
ros::Duration(0.05).sleep();
};
bool HHIGCS::sendSingleQueryToAllSensors()
{
// initialize all flags
initializeAllFlags();
// fill out control msgc
cmd_msg_.data = 1;
// query sensor data for all sensors
pub_cmd_msg_.publish(cmd_msg_);
clearCmdMsg();
// (timeout) Wait for obtaining and transmitting all sensor data.
// Considering exposure time and lidar gathering time, set 50 ms
cout << "wating 110 ms for data transmission...\n"; // because a rate of a lidar is about 10 Hz.
ros::Duration(0.11).sleep();
ros::spinOnce();
// Check whether all data is received.
bool transmit_success = true;
if(flag_imgs_ != nullptr){
for(int i = 0; i < n_cams_; i++){
transmit_success = transmit_success & flag_imgs_[i];
cout << "rcvd img[" << i<<"]\n";
}
}
if(flag_lidars_ != nullptr){
for(int i = 0; i < n_lidars_; i++){
transmit_success = transmit_success & flag_lidars_[i];
cout << "rcvd lidar[" << i<<"]\n";
}
}
transmit_success = transmit_success & flag_mcu_;
if(flag_mcu_) cout << "rcvd mcu\n";
if(transmit_success) cout << " Transmission successes!\n";
else cout << "Fail to transmit! Please retry...\n";
return transmit_success;
};
void HHIGCS::initializeAllFlags(){
for(int i = 0; i < n_cams_; i++) flag_imgs_[i] = false;
for(int i = 0; i < n_lidars_; i++){
flag_lidars_[i] = false;
buf_lidars_npoints[i] = 0;
}
flag_mcu_ = false;
};
void HHIGCS::sendQuitMsgToAllSensors(){
cmd_msg_.data = -1;
pub_cmd_msg_.publish(cmd_msg_);
clearCmdMsg();
};
void HHIGCS::callbackImage(const sensor_msgs::ImageConstPtr& msg, const int& id){
cv_bridge::CvImagePtr cv_ptr;
cv_ptr = cv_bridge::toCvCopy(msg, sensor_msgs::image_encodings::MONO8);
*(buf_imgs_ + id) = cv_ptr->image;
cout << " GCS get! [" << id << "] image.\n";
flag_imgs_[id] = true;
};
void HHIGCS::pointcloud2tobuffers(const sensor_msgs::PointCloud2ConstPtr& msg_lidar, const int& id){
// get width and height of 2D point cloud data
buf_lidars_npoints[id] = msg_lidar->width;
for(int i = 0; i < msg_lidar->width; i++) {
int arrayPosX = i*msg_lidar->point_step + msg_lidar->fields[0].offset; // X has an offset of 0
int arrayPosY = i*msg_lidar->point_step + msg_lidar->fields[1].offset; // Y has an offset of 4
int arrayPosZ = i*msg_lidar->point_step + msg_lidar->fields[2].offset; // Z has an offset of 8
int ind_intensity = i*msg_lidar->point_step + msg_lidar->fields[3].offset; // 12
int ind_ring = i*msg_lidar->point_step + msg_lidar->fields[4].offset; // 16
int ind_time = i*msg_lidar->point_step + msg_lidar->fields[5].offset; // 18
float X = 0.0;
float Y = 0.0;
float Z = 0.0;
float intensity = 0.0;
unsigned short ring = 0.0;
float time = 0.0;
memcpy(buf_lidars_x[id]+i, &msg_lidar->data[arrayPosX], sizeof(float));
memcpy(buf_lidars_y[id]+i, &msg_lidar->data[arrayPosY], sizeof(float));
memcpy(buf_lidars_z[id]+i, &msg_lidar->data[arrayPosZ], sizeof(float));
memcpy(buf_lidars_intensity[id]+i, &msg_lidar->data[ind_intensity], sizeof(float));
memcpy(buf_lidars_ring[id]+i, &msg_lidar->data[ind_ring], sizeof(unsigned short));
memcpy(buf_lidars_time[id]+i, &msg_lidar->data[ind_time], sizeof(float));
//cout << "xyz intensity ring time: "<<*(buf_lidars_x[id]+i)<<","<<*(buf_lidars_y[id]+i)<<","<<*(buf_lidars_z[id]+i)
//<<","<<*(buf_lidars_intensity[id]+i)<<","<<*(buf_lidars_ring[id]+i)<<","<<*(buf_lidars_time[id]+i)<<endl;
}
}
void HHIGCS::callbackLidar(const sensor_msgs::PointCloud2ConstPtr& msg_lidar, const int& id){
pointcloud2tobuffers(msg_lidar, id);
msg_lidar->header.stamp; // timestamp
// Create a container for the data.
sensor_msgs::PointCloud2 output;
// Do data processing here...
output = *msg_lidar;
pcl::PointCloud<pcl::PointXYZI>::Ptr temp = *(buf_lidars_ + id);
temp->clear();
pcl::fromROSMsg(output, *temp);
int n_pts = temp->points.size();
cout <<"n_pts lidar: " <<n_pts<<endl;
flag_lidars_[id] = true;
};
void HHIGCS::callbackTime(const sensor_msgs::TimeReference::ConstPtr& t_ref){
buf_time_ = (double)t_ref->header.stamp.sec + (double)t_ref->header.stamp.nsec/(double)1000000.0;
current_seq_ = t_ref->header.seq;
cout << " GCS get! [" << buf_time_ <<"] time ref."<<" seg: " << current_seq_ << "\n";
flag_mcu_ = true;
};
void HHIGCS::saveLidarData(const std::string& file_name, const pcl::PointCloud<pcl::PointXYZI>::Ptr& pc_lidar){
int n_pts = pc_lidar->points.size();
std::ofstream output_file(file_name, std::ios::trunc);
output_file.precision(6);
output_file.setf(std::ios_base::fixed, std::ios_base::floatfield);
if(output_file.is_open()){
output_file << "# test saving!\n";
output_file << "# .PCD v.7 - Point Cloud Data file format\n";
output_file << "VERSION .7\n";
output_file << "FIELDS x y z intensity\n";
output_file << "SIZE 4 4 4 4\n";
output_file << "TYPE F F F F\n";
output_file << "COUNT 1 1 1 1\n";
output_file << "WIDTH " << n_pts << "\n";
output_file << "HEIGHT 1\n";
output_file << "VIEWPOINT 0 0 0 1 0 0 0\n";
output_file << "POINTS " << n_pts<< "\n";
output_file << "DATA ascii\n";
for(int i = 0; i < n_pts; i++){
output_file << pc_lidar->points[i].x<<" ";
output_file << pc_lidar->points[i].y<<" ";
output_file << pc_lidar->points[i].z<<" ";
output_file << pc_lidar->points[i].intensity<<"\n";
}
}
};
void HHIGCS::saveLidarDataRingTime(const std::string& file_name, const int& id){
int n_pts = buf_lidars_npoints[id];
std::ofstream output_file(file_name, std::ios::trunc);
output_file.precision(6);
output_file.setf(std::ios_base::fixed, std::ios_base::floatfield);
if(output_file.is_open()){
output_file << "# .PCD v.7 - Point Cloud Data file format\n";
output_file << "VERSION .7\n";
output_file << "FIELDS x y z intensity ring time\n";
output_file << "SIZE 4 4 4 4 2 4\n";
output_file << "TYPE F F F F U F\n";
output_file << "COUNT 1 1 1 1 1 1\n";
output_file << "WIDTH " << n_pts << "\n";
output_file << "HEIGHT 1\n";
output_file << "VIEWPOINT 0 0 0 1 0 0 0\n";
output_file << "POINTS " << n_pts<< "\n";
output_file << "DATA ascii\n";
for(int i = 0; i < n_pts; i++){
output_file << *(buf_lidars_x[id] + i)<<" ";
output_file << *(buf_lidars_y[id] + i)<<" ";
output_file << *(buf_lidars_z[id] + i)<<" ";
output_file << *(buf_lidars_intensity[id] + i)<<" ";
output_file << *(buf_lidars_ring[id] + i)<<" ";
output_file << *(buf_lidars_time[id] + i)<<"\n";
}
}
};
void HHIGCS::saveAllData(){
// save images
bool static png_param_on = false;
vector<int> static png_parameters;
if (png_param_on == false)
{
png_parameters.push_back(CV_IMWRITE_PNG_COMPRESSION); // We save with no compression for faster processing
png_parameters.push_back(0);
png_param_on = true;
}
for(int id = 0; id < n_cams_; id++){
string file_name = save_dir_ + "/cam" + itos(id) + "/" + itos(current_seq_) + ".png";
cv::imwrite(file_name, *(buf_imgs_ + id), png_parameters);
}
// save lidars
for(int id = 0; id <n_lidars_; id++){
string file_name = save_dir_ + "/lidar" + itos(id) + "/" + itos(current_seq_) + ".pcd";
//saveLidarData(file_name, *(buf_lidars_ + id));
saveLidarDataRingTime(file_name, id);
}
// save association
string file_name = save_dir_ + "/association.txt";
std::ofstream output_file(file_name, std::ios::app);
output_file.precision(6);
output_file.setf(std::ios_base::fixed, std::ios_base::floatfield);
if(output_file.is_open()){
output_file << buf_time_ << " ";
for(int i = 0; i < n_cams_; i++) output_file << "/cam" << i << "/" << current_seq_ << ".png ";
for(int i = 0; i < n_lidars_; i++) output_file << "/lidar" << i << "/" << current_seq_ << ".pcd ";
output_file << "\n";
}
};
#endif
|
887a4b806a0225cd27cf393f7fdb757aee7018a1
|
649c08fc17986d7574a64c3db441b2534944cae4
|
/src/whopgenome/whopgen_vcf.cpp
|
c6bc4a6b820129ebe1f5c26aeabc02cd738c194b
|
[] |
no_license
|
pievos101/PopGenome
|
e9c1ddf831904bde7ec6f28cc4c93ec11ba0d6fb
|
3e08c91398b639ed2fbbde9fcc27ce3b85c00d58
|
refs/heads/master
| 2023-03-03T08:20:38.143268
| 2023-02-21T09:11:22
| 2023-02-21T09:11:22
| 121,419,333
| 18
| 5
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 7,982
|
cpp
|
whopgen_vcf.cpp
|
/*
**
** WhopGen
**
** WHOle genome population genetics with PopGENome
**
**
** VCF module
**
**
**
TODO:
- parse header for ##fileformat=VCFv4.1 or ##fileformat=VCFv4.0
- extract sample names
- match a SEXP-STRSXP-vector of sample names with existing sample names
- print errors if names are not found or double
- order: like in given list or ordered like in the vcf file ?
- produce a vector with table fields to extract (by sample name)
-
**
*/
//*
//* INCLUDES
//*
#include "whopgen_common.h"
//
using namespace std;
//*
//* DEFINES
//*
//*
//* STRUCTS
//*
struct tbi_file {
tabix_t *t;
ti_conf_t *idxconf;
ti_iter_t hdriter;
ti_iter_t it;
};
//*
//* CLASSES
//*
//*
//* DATA
//*
//
tabix_t *t=0;
struct timeval tv1,
tv2;
//
const ti_conf_t *idxconf;
//
ti_iter_t hdriter; //iterator to get the header lines
ti_iter_t it; //iterator to parse the chromosome-regions of interest
//
vector<string> indnames;
//*
//* EXTERNS
//*
//*
//* CODE
//*
/*!
**
*/
vcff::vcff()
{
ONDBG Rprintf("VCFF CTOR()@%08x\n",this);
//
num_fields=0;
current_line=0;
sample_begin_index=8;
wanted_samples=0;
num_wanted_samples=0;
//TODO clear filters
num_rules_used=0;
num_fieldnames_used=0;
//
}
/*!
**
*/
vcff::vcff(const char * filename )
{
ONDBG Rprintf("VCFF CTOR('%s')@%08x\n",filename,this);
//
num_fields=0;
current_line=0;
sample_begin_index=8;
wanted_samples=0;
num_wanted_samples=0;
//
num_rules_used=0;
num_fieldnames_used=0;
//
open( filename );
}
/*!
**
*/
vcff::~vcff()
{
ONDBG Rprintf("VCFF DTOR (%x)[ws=%x,fo=%x]\n",this,wanted_samples,field_offsets);
num_fields=0;
current_line=0;
num_wanted_samples=0;
if( wanted_samples )
{
free( wanted_samples );
wanted_samples = 0;
}
if( field_offsets )
{
free( field_offsets );
field_offsets = 0;
}
}
/*
**
*/
bool vcff::testfunc( void )
{
//
int numnames=getNumSequenceNames();
Rprintf("got %d seqnames!\n",numnames);
for( int i=0; i < numnames; i++ )
{
Rprintf("SeqName#%d='%s'\n",i,getSequenceName(i));
}
return true;
}
/*! Opens the file 'filename' as VCF file.
** Returns a vcff object if file exists and has the VCF fileformat header line
** Returns NULL if file could not be found, is not tabix-indexed or does not have the ##fileformat=VCF line
**
** Reads all header-lines into a header_lines, a vector<string>
**
*/
bool vcff::open( const char * filename )
{
guard;
//
//
if( whop_tabix::open( filename ) == false )
{
Rprintf("vcff::open : could not open tabix-index!\n");
return false;
}
// check for ##fileformat=VCFv4. (ignore whether followed by 0\n or 1\n for now)
//
const char * hdrline0 = getHeaderLine(0);
if( (hdrline0 == 0) || (strncmp( hdrline0 ,"##fileformat=VCFv4.",19)!= 0) )
{
Rprintf("vcff::open : Not a VCF [%s]!\n",getHeaderLine(0));
return false;
}
// find and parse header-line defining the variant-line format (#CHROM POS ...)
//
{
class VcfParseSampleNames : public ParseFunctor {
public:
VcfParseSampleNames() : fmtline(0){}
bool operator()(const char*s,int l)
{
//Rprintf("Formatline[%d]='%s'!!\n",l,s);
if( (s==0) || (l<10) )
return false;
if( strncmp( s, "#CHROM\tPOS", 10 ) == 0 )
{
fmtline=(char*)s;
return true;
}
return false;
}
char *fmtline;
} vpsn;
//
// if the header line defining the line format of the variants was found...
//
if( parseHeader( vpsn ) )
{
//
//
TSVParser tsv( vpsn.fmtline+1 ); //skip leading # of header line
char tokenbuf[256];
unsigned int i=0;
sample_begin_index = 6;
//
//
for( ; i < tsv.numFields(); i++ )
{
if( tsv.getField( &tokenbuf[0] , sizeof(tokenbuf)-1, i ) )
{
//Rprintf("Token = '%s'\n",tokenbuf);
field_names.push_back( std::string( tokenbuf) );
// make sure the prescribed fields are there
//
if( ( i <= 8 ) && ( i >= 0 ) )
{
if( (i == 0) && ( strcmp(tokenbuf,"CHROM")!= 0 ) ) break;
if( (i == 1) && ( strcmp(tokenbuf,"POS")!= 0 ) ) break;
if( (i == 2) && ( strcmp(tokenbuf,"ID")!= 0 ) ) break;
if( (i == 3) && ( strcmp(tokenbuf,"REF")!= 0 ) ) break;
if( (i == 4) && ( strcmp(tokenbuf,"ALT")!= 0 ) ) break;
if( (i == 5) && ( strcmp(tokenbuf,"QUAL")!= 0 ) ) break;
if( i == 6 ){
if( strcmp(tokenbuf,"FILTER")!= 0 ) break;
else sample_begin_index = 7;//i+1;
}
if( i == 7 ){
if( strcmp(tokenbuf,"INFO")!= 0 ) break;
else sample_begin_index = 8;//i+1;
}
if( i == 8 ){
if( strcmp(tokenbuf,"FORMAT")!= 0 ) break;
else sample_begin_index = 9;//i+1;
}
}//...if( one of the first 9 fields )
}//...if( copied field from tsv-line )
}//...for( each field in the tsv-line )
// determine the number of fields and the number of samples in this VCF
//
num_fields = field_names.size();
num_samples = getNumFields() - getFirstSampleFieldIndex();
// Allocate buffer to memorize in-string start offsets of each tab-separated field
//
if( num_fields > 0 )
{
field_offsets = (unsigned int*)malloc( sizeof(unsigned int) * num_fields );
field_offsets[0] = 0;
field_offsets_size = num_fields;
if( field_offsets == 0 )
throw "vcff::open : failed to allocate buffer to memorize field offsets!";
}
else
{
Rprintf("whopgen::vcff::open : unexpected # of fields in TSV (%d<=0)!\n",num_fields);
field_offsets=0;
}
// Allocate buffer to memorize which samples were selected
//
// use num_fields instead of num_samples to allocate a large enough buffer
wanted_samples = (unsigned int*)malloc( sizeof( unsigned int ) * num_fields );
if( wanted_samples == 0 )
throw "vcff::open : failed to allocate buffer for sample-selection!";
//
Rprintf("vcff::open : file opened, contains %d samples\n",num_samples);
//
}//...if parseheader( vspn )
else
{
Rprintf("vcff::open : could not find format-defining header line!\n");
return false;
}
//
}//...{
return true;
//
unguards;
if( field_offsets ) free( field_offsets ); field_offsets=0;
if( wanted_samples ) free( wanted_samples ); wanted_samples=0;
return false;
}
/*!
**
**
*/
unsigned int vcff::getNumFields( void ){
return field_names.size();
}
/*!
**
**
*/
const char* vcff::getFieldName( unsigned int idx ){
if( idx >= field_names.size() )
return 0;
return field_names[ idx ].c_str();
}
/*!
**
**
*/
unsigned int vcff::getNumSamples( void )
{
return num_samples;
}
/*!
**
**
*/
unsigned int vcff::getFirstSampleFieldIndex( void )
{
return sample_begin_index;
}
#if 0
/*! Returns one of the header lines and iterates by using
** the "headerindex" member variable
**
*/
const char* vcff::parseHeader( void )
{
// validate arguments
//
if( this == 0 )
{
Rprintf("VCF_parseheader : NULL vcf*!\n");
return 0;
}
//
if( vcf_tabixed == 0 )
{
Rprintf("VCF_parseheader : NULL vcf->tabix-index!\n");
return 0;
}
//
//
if( headerindex < header_lines.size() )
{
//
const char *s=header_lines[headerindex].c_str();
//Rprintf("VCF_parseheader line='%s'!!\n",s);
headerindex++;
//
if( (s!= 0) && (s[0]=='#') )
{
return s;
}
//
}
//
//Rprintf("VCF_parseheader false[%d]\n",headerindex);
resetheader();
return 0;
}
/*!
**
*/
const char* vcff::parseregion( void )
{
//
if( this == 0 )
{
Rprintf("vcff::parseregion called on this==0!\n");
return 0;
}
//
if( vcftabix == 0 )
{
Rprintf("vcff::parseregion called on vcftabix==0!\n");
return 0;
}
//
if( variantiter == 0 )
{
Rprintf("vcff::parseregion called on variantiter==0!\n");
return 0;
}
//
int len=0;
const char * s = ti_read(vcftabix, variantiter, &len);
bEOR = (s==0);
return s;
//
}
#endif
/*!
**
*/
//-------------------------------------------------------
|
e7a66aeecd4106b69be19bdd4c8e227be8dfb9be
|
1a7456c5790cb0a1c905c3ce1545e43c1c79e094
|
/src/connection.cpp
|
7eb37002211a1d9181b60095c6dbcbf1a2c40e26
|
[] |
no_license
|
chyufish/lite
|
e3a93609d5be6d218db2fdf2624bd669bbf63a30
|
010420fd04bcdac91d9d58915d42fd57caa72c58
|
refs/heads/master
| 2020-07-15T12:54:23.035609
| 2019-09-04T09:41:53
| 2019-09-04T09:41:53
| 205,566,516
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 4,979
|
cpp
|
connection.cpp
|
#include "connection.h"
#include <unistd.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <string.h>
#include <sys/sendfile.h>
#include <iostream>
#include "connection_manager.h"
#include "log.h"
namespace lite{
Connection::Connection(int fd,RequestHandler& request_handler,LiteEvent& lite_event,
ConnectionManager& connection_manager):fd_(fd),request_handler_(request_handler),lite_event_(lite_event),
connection_manager_(connection_manager),state_(READING){}
Connection::~Connection(){}
void Connection::Handle(){
//根据连接状态处理事件
switch(state_){
case READING:
HandleRead();
break;
case WRITING:
HandleWrite();
break;
default:
lite_event_.RemoveFd(fd_);
connection_manager_.DelConnection(fd_);
return;
}
//处理事件后,根据连接所处状态,调整连接的监听事件或移除连接
switch(state_){
case READING:
lite_event_.ModEvent(fd_,EPOLLIN | EPOLLET | EPOLLONESHOT);
break;
case WRITING:
lite_event_.ModEvent(fd_,EPOLLOUT | EPOLLET | EPOLLONESHOT);
break;
default:
lite_event_.RemoveFd(fd_);
connection_manager_.DelConnection(fd_);
return;
}
}
void Connection::HandleRead(){
if(!Read()){
return;
}
HttpParser::result_type result;
const char* parse_end;
std::tie(result, parse_end)=http_parser_.Parse(request_,read_buffer_.ReadBegin(),
read_buffer_.ReadBegin()+read_buffer_.ReadableBytes());
if(result==HttpParser::indeterminate){
return;
}else if(result==HttpParser::bad){
response_=Response::BuildResponse(Response::bad_request);
}else{
for(int i=0;i<request_.headers.size();++i){
if(request_.headers[i].name=="Connection"){
if(request_.headers[i].value=="keep-alive"){
keep_alive_=true;
}else{
keep_alive_=false;
}
}
if(request_.headers[i].name=="Content-Length"){
int len=stoi(request_.headers[i].value);
if(read_buffer_.WriteBegin()-parse_end<len){
return;
}
request_.body.append(parse_end,parse_end+len);
}
}
request_handler_.HandleRequest(request_,response_);
if(keep_alive_){
response_.headers.push_back({"Connection","keep-alive"});
}
}
http_parser_.Reset();
read_buffer_.Reset();
request_.clear();
response_.WriteToBuffer(write_buffer_);
state_=WRITING;
HandleWrite();
}
bool Connection::Read(){
ssize_t nbytes;
for(;;){
nbytes=recv(fd_,read_buffer_.WriteBegin(),read_buffer_.WriteableBytes(),0);
if(nbytes==-1){
if(errno==EAGAIN || errno==EWOULDBLOCK){
break;
}else if(errno==EINTR){
continue;
}else{
LogError("Conncetion %d : recv error %s\n",fd_,strerror(errno));
state_=ERROR;
return false;
}
}else if(nbytes==0){
state_=CLOSED;
return false;
}else{
read_buffer_.HasWritten(nbytes);
}
}
return true;
}
void Connection::HandleWrite(){
ssize_t nsend=0;
while(write_buffer_.ReadableBytes()>0){
nsend=send(fd_,write_buffer_.ReadBegin(),write_buffer_.ReadableBytes(),0);
if(nsend<0){
if(errno==EINTR){
continue;
}else if(errno==EAGAIN || errno==EWOULDBLOCK){
return;
}else{
LogError("Conncetion %d : send error %s\n",fd_,strerror(errno));
state_=ERROR;
return;
}
}else{
write_buffer_.HasRead(nsend);
}
}
write_buffer_.Reset();
if(response_.file_fd!=-1){
off_t offset=0;
for(;;){
ssize_t nsend=sendfile(fd_,response_.file_fd,&offset,response_.file_size-offset);
if(nsend<0){
if(errno==EINTR){
continue;
}else if(errno==EAGAIN || errno==EWOULDBLOCK){
return;
}else{
LogError("Conncetion %d : sendfile error %s\n",fd_,strerror(errno));
close(response_.file_fd);
response_.file_fd=-1;
state_=ERROR;
return;
}
}
if(response_.file_size-offset==0){
close(response_.file_fd);
response_.file_fd=-1;
break;
}
}
}
if(keep_alive_){
state_=READING;
}else{
state_=SUCCESS;
}
}
void Connection::stop(){
close(fd_);
}
}
|
8ba53dda45fd371530e3ef8dffd31f1b1a2e60c5
|
bc997f47b4cffef395f0ce85d72f113ceb1466e6
|
/ICPC/NEERC/neerc08_a.cpp
|
19492f803f02962ab206a7c1f71c4f69fc035967
|
[
"LicenseRef-scancode-public-domain"
] |
permissive
|
koosaga/olympiad
|
1f069dd480004c9df033b73d87004b765d77d622
|
fcb87b58dc8b5715b3ae2fac788bd1b7cac9bffe
|
refs/heads/master
| 2023-09-01T07:37:45.168803
| 2023-08-31T14:18:03
| 2023-08-31T14:18:03
| 45,691,895
| 246
| 49
| null | 2020-10-20T16:52:45
| 2015-11-06T16:01:57
|
C++
|
UTF-8
|
C++
| false
| false
| 2,442
|
cpp
|
neerc08_a.cpp
|
#include <bits/stdc++.h>
using namespace std;
typedef long long lint;
using real_t = long double;
using ll = long long;
const real_t eps = 1e-7;
typedef pair<real_t, real_t> pi;
#define sz(v) int((v).size())
struct vec3{
ll x, y, z;
vec3(): x(0), y(0), z(0) {}
vec3(ll a, ll b, ll c): x(a), y(b), z(c) {}
vec3 operator*(const vec3& v) const{ return vec3(y*v.z-z*v.y, z*v.x-x*v.z, x*v.y-y*v.x); }
vec3 operator-(const vec3& v) const{ return vec3(x-v.x, y-v.y, z-v.z); }
vec3 operator-() const{ return vec3(-x, -y, -z); }
ll dot(const vec3 &v) const{ return x*v.x+y*v.y+z*v.z; }
real_t dot(real_t vx, real_t vy, real_t vz) const{ return x*vx+y*vy+z*vz; }
real_t Sz(){
return sqrt(x * x + y * y + z * z);
}
}a[111];
int n;
real_t get_insec(real_t x){
vector<pi> p;
for(int i=0; i<n; i++){
if(fabs(a[i].x - x) < eps){
p.emplace_back(1.0 * a[i].y, 1.0 * a[i].z);
}
}
for(int i=0; i<n; i++){
for(int j=0; j<n; j++){
if(a[i].x < x - eps && a[j].x > x + eps){
real_t rt = (x - a[i].x) / (a[j].x - a[i].x);
real_t py = a[i].y + rt * (a[j].y - a[i].y);
real_t pz = a[i].z + rt * (a[j].z - a[i].z);
p.emplace_back(py, pz);
}
}
}
auto ccw = [&](pi a, pi b, pi c){
real_t dx1 = b.first - a.first;
real_t dy1 = b.second - a.second;
real_t dx2 = c.first - a.first;
real_t dy2 = c.second - a.second;
return dx1 * dy2 - dy1 * dx2;
};
auto dist = [&](pi a, pi b){
real_t dx = b.first - a.first;
real_t dy = b.second - a.second;
return dx *dx + dy * dy;
};
vector<pi> q;
for(auto &i : p){
bool good = 1;
for(auto &j : q){
if(dist(i, j) < eps){
good = 0;
}
}
if(good) q.push_back(i);
}
p = q;
if(p.empty()) return 0;
swap(p[0], *min_element(p.begin(), p.end()));
sort(p.begin() + 1, p.end(), [&](const pi &a, const pi &b){
real_t x = ccw(p[0], a, b);
if(fabs(x) < eps) return dist(p[0], a) < dist(p[0], b);
return x > 0;
});
vector<pi> h;
for(auto &i : p){
while(h.size() >= 2 && ccw(h[h.size()-2], h.back(), i) <= 0){
h.pop_back();
}
h.push_back(i);
}
real_t ret = 0;
for(int i=1; i<h.size(); i++){
ret += ccw(h[0], h[i-1], h[i]);
}
return ret;
}
int main(){
freopen("aerodynamics.in", "r", stdin);
freopen("aerodynamics.out", "w", stdout);
int qs, qe;
scanf("%d %d %d",&n,&qs,&qe);
for(int i=0; i<n; i++){
scanf("%lld %lld %lld",&a[i].z,&a[i].y,&a[i].x);
}
for(int i=qs; i<=qe; i++) printf("%.10Lf\n", 0.5 * get_insec(i));
}
|
631299a8b83d5af7dce181b62b2bc2f9266b0c86
|
64828b91b865c1056c8f753590d38b2ba33d4c53
|
/JUNE20B XYSTR.cpp
|
5d41f5800a44315980b0bd0775e6594e50347be7
|
[] |
no_license
|
MahtabTanim/CodeChef
|
5707d56e2a3be273d05924550ad3f60a4ab1107a
|
ad83e082723a252bdd0f5bf4d1d138ad9d5cfaf7
|
refs/heads/master
| 2023-02-13T23:46:11.262534
| 2021-01-01T15:43:39
| 2021-01-01T15:43:39
| 270,552,799
| 1
| 1
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 633
|
cpp
|
JUNE20B XYSTR.cpp
|
#include <bits/stdc++.h>
using namespace std;
#define pb push_back
#define mp make_pair
#define MP ios_base::sync_with_stdio(false);cin.tie(0);cout.tie(0);
#define mod 1000000007
fstream ff;
string s;
long long extra,x,sum=0,t,a,b,c,d,e,f,tcase=0,n,m,k,i,j,max_count=0;
int main()
{
//ff.open("output.txt");
cin>>t;
while(t--)
{
cin>>s;
int count=0;
n=s.length();
for(int i=0;i<n;++i)
{
if(s[i]=='x' && s[i+1]=='y')
{
count++;
i++;
}
else if(s[i]=='y' && s[i+1]=='x')
{
count++;
i++;
}
}
cout<<count<<endl;
}
return 0;
}
|
db15f079066d15e45a6514d8f665c9bc19913b71
|
4c9f082d1181821a777009b11625ddf3943ac84c
|
/icmpstegano-core/IcmpStegano.cpp
|
dc64abe4e3d0ceb31ed0befc02262c481268a372
|
[] |
no_license
|
pshanoop/ICMPStegano
|
dbfa946218a86cd7b793f6250c543b8f3309a337
|
8021873fb8893ec9ea1f90b92864e637c05b7dea
|
refs/heads/master
| 2020-12-24T18:12:43.532069
| 2014-02-08T07:26:05
| 2014-02-08T07:27:40
| 9,696,441
| 4
| 1
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 15,617
|
cpp
|
IcmpStegano.cpp
|
/*
* File: IcmpStegano.cpp
* Author: Sanoop Pattanath
*
* Created on February 13, 2013, 5:19 PM
*/
#include <stdlib.h>
#include <sstream>
#include "IcmpStegano.h"
unsigned short IcmpStegano::stop_flag = 0;
msgqueue* IcmpStegano::msg_in = NULL;
msgqueue* IcmpStegano::msg_out = NULL;
int IcmpStegano::current_progress=0;
IcmpStegano::IcmpStegano() {
this->pid = -1;
this->proto = NULL;
this->sndhname = NULL;
//this->rcvhname = NULL; //future update with sync data sending.
this->fhname = NULL;
this->fsize = 0;
this->no_of_packet = 0;
this->current_packet = 0;
// Clearing buffers and structures to zero bits;
bzero(this->SndPktBuffer, sizeof (this->SndPktBuffer));
bzero(this->RcvPktBuffer, sizeof (this->RcvPktBuffer));
bzero(this->data_buffer, sizeof (this->data_buffer));
bzero(this->fname, sizeof (this->fname));
bzero(&this->addr, sizeof (this->addr));
}
IcmpStegano::IcmpStegano(const IcmpStegano& orig) {
//TODO
}
IcmpStegano::IcmpStegano(const char ip[], const unsigned short cmode) {
const int val = 255; // For TTL
this->cmode = cmode;
this->proto = getprotobyname("ICMP");
this->fhname = gethostbyname(ip);
this->addr.sin_family = fhname->h_addrtype;
this->addr.sin_port = 0;
//ref static_cast<struct iphdr*>
this->addr.sin_addr.s_addr = *(long *) this->fhname->h_addr;
this->sd = socket(PF_INET, SOCK_RAW, proto->p_proto);
if (sd < 0) {
std::cerr << "socket creation for send fail !!! :(";
return;
}
if (this->cmode == STEGANO_SEND) {
if (setsockopt(sd, SOL_IP, IP_TTL, &val, sizeof (val)) != 0)
std::cerr << "Set TTL failed!!! :(";
if (fcntl(sd, F_SETFL, O_NONBLOCK) != 0)
std::cerr << "Request non blocking failed!!! :(";
} else if (this->cmode == STEGANO_RECV) {
bzero(this->RcvPktBuffer,sizeof(this->RcvPktBuffer));
}
}
double IcmpStegano::Get_Current_Pkt() {return this->current_packet;}
void IcmpStegano::display(void *buf, int bytes) {
int i;
//unsigned char data[] = "\x45\x0\x0\x54\x31\x8F\x0\x0\x40\x1\x4B\x18\x7F\x0\x0\x1\x7F\x0\x0\x1\x0\x0\x84\xE\x20\x0\x20\x0\x30\x31\x32\x33\x34\x35\x36\x37\x38\x39\x3A\x3B\x3C\x3D\x3E\x3F\x40\x41\x42\x43\x44\x45\x46\x47\x48\x49\x4A\x4B\x4C\x4D\x4E\x4F\x50\x51\x52\x53\x54\x55\x56\x57\x58\x59\x5A\x5B\x5C\x5D\x5E\x5F\x60\x61\x62\x63\x64\x65\x66\x0";
// buf = data;
struct iphdr* ip = static_cast<struct iphdr*> (buf); // explicit type casting
struct icmphdr *icmp = static_cast<struct icmphdr*> (buf + ip->ihl * 4);
unsigned int icmptype = icmp->code;
unsigned char *data = static_cast<unsigned char *> (buf + ip->ihl * 4 + sizeof (icmp));
//unsigned char *stdata =static_cast<unsigned char *> (buf+25);
printf("----------------\n");
for (i = 0; i < bytes; i++) {
if (!(i & 15)) printf("\n %X: ", i);
printf(" %X ", ((unsigned char*) buf)[i]);
}
printf("\n");
unsigned int ver = ip->version;
unsigned int saddr = ip->saddr;
char str_ip[INET_ADDRSTRLEN];
inet_ntop(AF_INET, &ip->saddr, str_ip, INET_ADDRSTRLEN);
printf("\n Version : %d Sender IP: %d SenderIP"
":%s icmp type:%d", ver, saddr, str_ip, icmptype);
printf("\n sequece : %x id: %x \n", icmp->un.echo.id, icmp->un.echo.sequence);
for (i = 24; i < bytes; i++) {
//if ( !(i & 15) ) printf("\n %X: ", i);
printf(" %X ", ((unsigned char*) buf)[i]);
}
//printf("\n DATA : %s",data);
}
void IcmpStegano::display(int test) {
Stegano_fsize filesize;
//filesize.bytes = GetFileSize();
unsigned char bin[] = "\x4a\x2\x0\x0\x0";
switch (test) {
case 1:
std::cout << std::endl << GetFileSize();
break;
case 2:
memcpy(static_cast<unsigned char *> (filesize.bindata),
static_cast<unsigned char *> (bin), 4);
std::cout << std::endl << filesize.bytes << " ASCII : " << filesize.bindata << std::endl;
for (int i = 0; i < 5; i++)
printf("%x ", filesize.bindata[i]);
break;
default:
std::cout << std::endl << "test case is invalid";
}
}
//Returns 0 or 1
unsigned short IcmpStegano::ExtractData_BO(void){
struct iphdr *ip = reinterpret_cast<struct iphdr*> (this->RcvPktBuffer); // Ip header extraction
cpacket *icmpcpkt = reinterpret_cast <cpacket *> (this->RcvPktBuffer + ip->ihl * 4); //icmp header extraction
// Extraction of Stegano DATA
memcpy(this->data_buffer,icmpcpkt->data,DATA_LEN);
if(sizeof(icmpcpkt->data))
return 1;
else
return 0;
}
unsigned int IcmpStegano::Icmp_GetFileSize(void){
this->Icmp_Receive(); // Gets a packet;
this->ExtractData_BO(); // Get Stegano data to buffer
// Start thread watcher
int ret = pthread_create(&this->thWatcher, NULL,&IcmpStegano::IPCWatcher, NULL);
if(ret == -1)
std::cerr<<"\n Watcher Thread create failed !!!\n";
return this->ExtractFileSize_BO(); // Gets the file size
}
// Extracts files size using Stegano_fsize
unsigned int IcmpStegano::ExtractFileSize_BO(void){
Stegano_fsize fsize;
memcpy(static_cast<unsigned char *>(fsize.bindata),
static_cast<unsigned char *>(this->data_buffer),4);
this->fsize = fsize.bytes;
return fsize.bytes;
}
// Receives a icmp echo packet from foreign ip
void IcmpStegano::Icmp_Receive(void) {
int bytes;
int len = sizeof(this->r_addr);
cpacket *icmpcpkt = NULL;
struct iphdr *ip = NULL;
unsigned short flag =0;
u_int32_t addrs; // stores long ip of system
memcpy(&addrs,this->fhname->h_addr_list[0],this->fhname->h_length);
while(!flag){ // receive until foreign echo packet comes
bytes = recvfrom(this->sd,this->RcvPktBuffer,sizeof(this->RcvPktBuffer),
0,(struct sockaddr*)&(this->r_addr),(socklen_t *)&len);
if(bytes >0)
{
// IP header extraction
ip = reinterpret_cast<struct iphdr*> (this->RcvPktBuffer);
//ICMP header extraction
icmpcpkt = reinterpret_cast <cpacket *> (this->RcvPktBuffer + ip->ihl * 4);
//received only if the packet is echo request and from foreign IP
if(addrs == ip->saddr && icmpcpkt->type == 8){
std::cout<<"\nForeign ip: "<<addrs;
std::cout<<"\nSender ip:"<<ip->saddr;
std::cout<<"\nData received"
<<"\nSize : " << bytes
<<std::endl;
flag =1; // stop receiving
}
else //clear the buffer
bzero(this->data_buffer,sizeof(this->data_buffer));
}
}
}
void IcmpStegano::Icmp_ReceiveFile(void) {
double len = DATA_LEN;
this->current_packet = 0;
this->wsize = this->fsize;
double i;
if(this->mode == STEGANO_SECURE){
this->no_of_packet = ceil((double)this->fsize / 4 );
std::cout <<"\nFSize: " << this->fsize;
std::cout <<"\nNo_of_Packet: " << this->no_of_packet;
}
else if(this->mode == STEGANO_BURST){
this->no_of_packet = ceil((double)this->fsize / len);
std::cout << "\nFSize: " << this->fsize;
std::cout << "\nNo_of_Packet (4): " << this->no_of_packet;
}
else{
std::cerr << "\n Set Steganography mode first";
return;
}
std::cout<<"\nTotal no of packet :"<<this->no_of_packet;
for(i=1;i<=this->no_of_packet && !stop_flag;i++){
this->Icmp_Receive();
std::cout<<"\nPacket: "<<i;
if(this->ExtractData_BO()){
this->current_packet=i;
//writing into file
this->WriteFile_BO();
current_progress = (int ) ((this->current_packet/this->no_of_packet)*100);
this->IPCSend(); // send status
std::cout<<std::endl<<"Packet ("<<this->current_packet
<<" of "<< this->no_of_packet<<") ["
<<current_progress<<"%] done";
}
else{
std::cerr<<"\n Receive(length) Error Failed!!! :(";
break;
}
}
if(stop_flag){
std::cerr<<"Communication Aborted by User !!!";
}
current_progress=-1;
this->IPCSend(); //send stop to parent thread
}
unsigned int IcmpStegano::Icmp_SendFileSize(void) {
Stegano_fsize filesize;
int ret = pthread_create(&this->thWatcher, NULL,&IcmpStegano::IPCWatcher, NULL);
if(ret == -1)
std::cerr<<"\n Watcher Thread create failed !!!\n";
this->fsize = filesize.bytes = GetFileSize();
memcpy(this->data_buffer, filesize.bindata, sizeof (filesize.bindata));
for (int i = 4; i < DATA_LEN; i++)
data_buffer[i] = i + 'A';
this->InsertData_BO();
this->Icmp_Send();
current_progress = 1; // update progress to 1 %
return filesize.bytes;
}
short IcmpStegano::Icmp_SendFile() {
double len = DATA_LEN;
if (this->mode == STEGANO_BURST) {
this->no_of_packet = ceil((double)this->fsize / len);
std::cout << "\n Debug: DATA_LEN: " << DATA_LEN;
std::cout << "\n Debug: FSize: " << this->fsize;
std::cout << "\n Debug: No_of_Packet: " << this->no_of_packet;
} else if (this->mode == STEGANO_SECURE){
this->no_of_packet = ceil((double)this->fsize / 4);
std::cout << "\n Debug: FSize: " << this->fsize;
std::cout << "\n Debug: No_of_Packet (4): " << this->no_of_packet;
}
else {
std::cerr << "\n Set Steganography mode first";
return 0;
}
for (double i = 1; i<= this->no_of_packet && !stop_flag ; i++) {
this->ReadFile_BO();
this->InsertData_BO();
this->Icmp_Send();
this->current_packet = i;
current_progress = (int ) ((this->current_packet/this->no_of_packet)*100);
std::cout<<std::endl<<"Packet ("<<this->current_packet
<<" of "<< this->no_of_packet<<") ["
<<current_progress<<"%] done";
this->IPCSend(); // send status
//sleep(2);
}
if(stop_flag)
std::cerr<<"Communication Aborted by User !!!";
current_progress=-1;
this->IPCSend(); //send stop to parent thread
return (stop_flag)?-1:1;
}
unsigned short IcmpStegano::ReadFile_BO() {
// Clear buffer..
bzero(this->data_buffer, sizeof (this->data_buffer));
if (this->mode == STEGANO_BURST)
return read(this->send_fd, this->data_buffer, sizeof (this->data_buffer));
else if (this->mode == STEGANO_SECURE) {
int ret =read(this->send_fd, this->data_buffer, sizeof (unsigned char) * 4);
for (int i = 4; i < DATA_LEN; i++)
data_buffer[i] = i + '0';
return ret;
} else
std::cerr << "\n Set Steganography mode first";
return 0;
}
unsigned short IcmpStegano::WriteFile_BO(void){
int size_of_data =0; // size data to write
int data_len = DATA_LEN;
std::cout<<"\n Remaining write size: "<<this->wsize;
if(this->mode == STEGANO_BURST){
if(this->wsize <= data_len)
size_of_data = this->wsize;
else{
size_of_data =data_len;
this->wsize -= data_len;
}
return write(this->recv_fd,this->data_buffer,size_of_data);
}
else if(this->mode == STEGANO_SECURE){
if(this->wsize <= 4)
size_of_data = this->wsize;
else{
size_of_data = 4;
this->wsize -= 4;
}
return write(this->recv_fd,this->data_buffer,size_of_data);
}
else
std::cerr<<"\n Set Steganography mode first or set file";
return 0;
}
void IcmpStegano::SetFname(const char fname[]) {
strcpy(this->fname, fname);
std::cout<< this->fname;
if (this->cmode == STEGANO_SEND){
if((this->send_fd = open(this->fname, O_RDONLY)) == -1)
{
perror("\n send fd faild!!! :(");
exit(EXIT_FAILURE);
}
}
else if (this->cmode == STEGANO_RECV){
if((this->recv_fd = open(fname,O_CREAT|O_TRUNC| O_WRONLY,0664))== -1){
perror("\n recv fd faild!!! :(");
exit(EXIT_FAILURE);
}
}
else
std::cerr << "\n Set communication mode first";
}
unsigned int IcmpStegano::GetFileSize(void) {
struct stat filestatus;
stat(this->fname, &filestatus);
return filestatus.st_size;
}
//sends the packet
void IcmpStegano::Icmp_Send(void) {
if(! stop_flag){
if (sendto(this->sd, &(this->snd_packet), sizeof (this->snd_packet), 0, (struct sockaddr *) (&this->addr), sizeof (this->addr)) <= 0)
std::cerr << "\n sendto function failed !!! :(";
}
}
unsigned short IcmpStegano::checksum(void *b, int len) {
unsigned short *buf = static_cast<unsigned short*> (b);
unsigned int sum = 0;
unsigned short result;
for (sum = 0; len > 1; len -= 2)
sum += *buf++;
if (len == 1)
sum += *(unsigned char*) buf;
sum = (sum >> 16) + (sum & 0xFFFF);
sum += (sum >> 16);
result = ~sum;
return result;
}
// Returns Error code
unsigned short IcmpStegano::Get_Error(void) {
// To DO
return this->Stegano_Error;
}
unsigned short IcmpStegano::Is_Alive(const char* hostname) {
//TODO
return 0;
}
unsigned short IcmpStegano::IsRecvd_BO(void) {
void *sndbuf = this->SndPktBuffer;
void *rcvbuf = this->RcvPktBuffer;
// TODO
return 1;
}
void IcmpStegano::SetMode(const unsigned short mode) {this->mode = mode;}
void IcmpStegano::SetQid(long _in, long _out){
msg_in= new msgqueue(_in); msg_out = new msgqueue(_out);
}
unsigned short IcmpStegano::GetMode(void) {return this->mode;}
void IcmpStegano::InsertData_BO(void) {
//Packet creation
bzero(&this->snd_packet, sizeof (this->snd_packet));
this->snd_packet.type = ICMP_ECHO;
// Inserting data to stegano data field in custom packet
memcpy(this->snd_packet.data, this->data_buffer, sizeof (this->data_buffer));
// calculating checksum
this->snd_packet.checksum = this->checksum(&(this->snd_packet), sizeof ((this->snd_packet)));
}
void * IcmpStegano::IPCWatcher(void* arg){
char msgbuf[MAX_SEND_SIZE];
msg_in->read_message(STEGANO_IPC_IN,msgbuf);
//std::cout<<msgbuf;
if(!strcmp(msgbuf,"stop"))
stop_flag = 1; // set stop flag to stop sending file
pthread_exit(NULL);
}
void IcmpStegano::IPCSend(){
std::stringstream temp;
std::string temp2;
char buf[MAX_SEND_SIZE];
if(current_progress <101 ){
//int to string convert
temp<<current_progress;
temp2 = temp.str();
strcpy(buf,temp2.c_str());
msg_out->send_message(STEGANO_IPC_OUT,buf);
}
}
IcmpStegano::~IcmpStegano() {
//close file descriptors
int retval;
if(this->cmode== STEGANO_RECV){
close(this->recv_fd);
} else if (this->cmode == STEGANO_SEND)
close(this->send_fd);
close(this->sd);///closing socket
//Deleting all allocated memory
delete msg_in;
delete msg_out;
//TODO
}
|
7aa240b16e5153dca56452f3d7749ad4cc929b09
|
1a5dfa4d5561ecbff0591dfb90905718906b0fae
|
/effect.cc
|
76fa25dcb65954d0d981e43c7b8017058f39e9c6
|
[] |
no_license
|
whoo/rpi-rgb-led-matrix
|
b0f726b36b2073fa14b5fc1f9964aa934aa2b201
|
8a400dd34ec6af5dd30a6540dced3d9f40511b03
|
refs/heads/master
| 2021-05-22T12:35:44.479844
| 2020-12-19T21:58:57
| 2020-12-19T21:58:57
| 21,351,977
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 6,833
|
cc
|
effect.cc
|
#include "effect.h"
void StarField::Run() {
const int width = matrix_->width();
const int height = matrix_->height();
uint32_t count = 0;
int x=0;
int y=0;
int a=0;
char star[MAXSTAR*2];
for (a=0;a<MAXSTAR;a++)
{
star[a]=rand()%16;
star[a+MAXSTAR]=rand()%360;
}
while (running_) {
usleep(50000);
++count;
int color = (count >> 9) % 6;
int value = count & 0xFF;
if (count & 0x100) value = 255 - value;
int r, g, b;
switch (color) {
case 0: r = value; g = b = 0; break;
case 1: r = g = value; b = 0; break;
case 2: g = value; r = b = 0; break;
case 3: g = b = value; r = 0; break;
case 4: b = value; r = g = 0; break;
default: r = g = b = value; break;
}
CLEARSCR;
for (a=0;a<MAXSTAR;a++)
{
x=cos(star[a+MAXSTAR])*star[a]+16;
y=sin(star[a+MAXSTAR])*star[a]+8;
matrix_->SetPixel(x,y,r+(star[a]),(g+r)*(star[a]*255/16),b*(star[a]*10));
star[a]+=1;
if (x>32 or x<0 or y>16 or y<0) {
star[a]=1;
star[a+MAXSTAR]=rand()%360;
}
}
}
};
void Fire::Run(){
long int tb[512],buff[512];
const int width = matrix_->width();
const int height = matrix_->height();
memset(tb,0,sizeof(tb));
/* for (int a=0;a<32*2;a++)
{
tb[a]=rand()&0xff0000;
} */
while (running_) {
usleep(90000);
tb[rand()%32*2]=rand()&0xff8000;
memcpy(buff,tb,sizeof(tb));
for (int a=32;a<512;a++)
{
tb[a]=( buff[a-1] + buff[a+1] + buff[a+32]+buff[a-32])/8;
}
for(int x=0;x<width;++x)
for(int y=0;y<height;++y)
{
matrix_->SetPixel(x,y,
(tb[x+y*32]&0xFF0000)>>16 ,
(tb[x+y*32]&0x007000)>>8 ,
(tb[x+y*32]&0x000000));
// fprintf(stderr,"%x %x %x %x\n",tb[x+y*16],(tb[x+y*16]&0xFF0000)>>16,(tb[x+y*16]&0x00FF00)>>8,(tb[x+y*16]&0x0000FF));
}
}
}
void BinClock::Run() {
bool tb[3*8];
while(running_)
{
memset(tb,0,sizeof(tb));
time_t result;
struct tm *ttime;
int sec,min,hur;
usleep(1*1000*90);
time(&result);
ttime = localtime(&result);
sec=ttime->tm_sec;
min=ttime->tm_min;
hur=(ttime->tm_hour%12);
for (int a=0;a<8;a++) tb[a]= sec>>a&0x1;
for (int a=0;a<8;a++) tb[a+8]= min>>a&0x1;
for (int a=0;a<8;a++) tb[a+16]= hur>>a&0x1;
for (int a=0;a<(3*8);a++)
{
matrix_->SetPixel(15+a/8*3,a%8,0x1f,0x1f*tb[a],0);
matrix_->SetPixel(15+a/8*3+1,a%8,0x1f,0x1f*tb[a],0);
}
}
}
void Table::Run()
{
Pixel image[16*8];
for(int x=0;x<8;++x)
for(int y=0;y<8;++y)
{
image[x+y*8].red=(8-x)*32-1;
image[x+y*8].green=x*32-1;
image[x+y*8].blue=(8-y)*32-1;
}
int angle=0;
int v=0,u=0;
while(running_)
{
usleep(1000*50);
angle+=1;
angle%=360;
for(int a=0;a<32*16;a++)
{
matrix_->SetPixel(a%32,a/32,image[v+u*8].red,image[v+u*8].green,image[v+u*8].blue);
}
}
}
void Plasma::Run(){
const int w = matrix_->width();
const int h = matrix_->height();
int off=0;
int val=rand()%8;
while (running_)
{
usleep(1000*50);
off+=1;
off%=360;
for(int x=0;x<w;x++)
for(int y=0;y<h;y++)
{
// int c=128+128*sin((x+off)*6*3.1415/32);
int c=(128+128*sin( (sqrt((x-w/2)*(x-w/2)+(y-h/2)*(y-h/2))+off)*2*3*3.1415/32)+
128+128*sin((y+off/2)*6*3.1415/32)+
128+128*sin((x+off/2)*6*3.1415/32)+
128+128*sin( (sqrt(x*x+y*y)*2*5*3.1415/32)))/4;
switch(val) {
case 0: matrix_->SetPixel(x,y,c>>1,c,(c*2)&0xff); break;
case 1: matrix_->SetPixel(x,y,c>>1,(c*2)&0xff,c); break;
case 2: matrix_->SetPixel(x,y,c,(c*2)&0xff,c>>1);break;
case 3: matrix_->SetPixel(x,y,c,c>>1,(c*2)&0xff);break;
case 4: matrix_->SetPixel(x,y,(c*2)&0xff,c>>1,c);break;
case 5: matrix_->SetPixel(x,y,(c*2)&0xff,c,c>>1);break;
default: matrix_->SetPixel(32-x,y,c>>1,c,(c*2)&0xff);
}
}
}
}
void Clock::Run(){
const int width = matrix_->width();
const int height = matrix_->height();
//bool tb[3*8];
bool *txt;
char buff[20];
int off=0;
std::string t1;
std::ifstream infile("data/file");
std::string line;
getline(infile,t1);
txt=prinTxt(t1);
Pixel color;
color.red=(rand()*1000)%0xff;
color.green=(rand()*1000)%0xff;
color.blue=(rand()*1000)%0xff;
while (running_)
{
time_t result;
struct tm *ttime;
time(&result);
ttime = localtime(&result);
strftime(buff,sizeof(buff),"%T",ttime);
usleep(50000);
CLEARSCR;
putTxt(matrix_,0,1,std::string(buff),color);
for (unsigned int a=0;a<t1.size()*15;a++)
{
int x=32+a%3+a/15*4-off;
int y=(a/3)%5+10;
if (x>=0 and x<32 and y>=0 and y<16)
{
matrix_->SetPixel(x,y, txt[a]*x<<3,txt[a]*(y<<2),(255-(x<<3))*txt[a]);
}
}
off+=1;
off%=t1.size()*4+32;
if (off==0)
{
getline(infile,t1);
if (!infile.eof()) txt=prinTxt(t1);
else { infile.clear(); infile.seekg(0); }
}
}
free(txt);
infile.close();
}
bool ImageScroller::LoadPPM(std::string filename) {
if (image_) {
delete [] image_;
image_ = NULL;
}
FILE *f = fopen((char*)filename.c_str(), "r");
if (f == NULL) return false;
char header_buf[256];
const char *line = ReadLine(f, header_buf, sizeof(header_buf));
#define EXIT_WITH_MSG(m) { fprintf(stderr, "%s: %s |%s", (char*)filename.c_str(), m, line); \
fclose(f); return false; }
if (sscanf(line, "P6 ") == EOF)
EXIT_WITH_MSG("Can only handle P6 as PPM type.");
line = ReadLine(f, header_buf, sizeof(header_buf));
if (!line || sscanf(line, "%d %d ", &width_, &height_) != 2)
EXIT_WITH_MSG("Width/height expected");
int value;
line = ReadLine(f, header_buf, sizeof(header_buf));
if (!line || sscanf(line, "%d ", &value) != 1 || value != 255)
EXIT_WITH_MSG("Only 255 for maxval allowed.");
const size_t pixel_count = width_ * height_;
image_ = new Pixel [ pixel_count ];
assert(sizeof(Pixel) == 3); // we make that assumption.
if (fread(image_, sizeof(Pixel), pixel_count, f) != pixel_count) {
line = "";
EXIT_WITH_MSG("Not enough pixels read.");
}
#undef EXIT_WITH_MSG
fclose(f);
//fprintf(stderr, "Read image with %dx%d\n", width_, height_);
horizontal_position_ = 0;
return true;
}
void ImageScroller::Run(){
// const int screen_height = matrix_->height();
// const int screen_width = matrix_->width();
while (running_) {
if (image_ == NULL) {
usleep(100 * 1000);
continue;
}
usleep(30 * 1000);
for (int x = 0; x < 32; ++x) {
for (int y = 0; y < 16; ++y) {
const Pixel &p = getPixel((horizontal_position_ + x) % width_, y);
// Display upside down on my desk. Lets flip :)
int disp_x = /*screen_width -*/ x;
int disp_y = /*screen_height -*/ y;
matrix_->SetPixel(disp_x, disp_y, p.red, p.green, p.blue);
}
}
++horizontal_position_;
}
}
|
62fd4301ab4baffe393b3940d777d36ca349dd59
|
5adbe94b29bfe5015ab9c5e38784ae12ef68e1b5
|
/leetcode/problems/100-same-tree/same-tree-unittest.cc
|
c977c0bd57ae5d95cf0804edeafbbc363df416b4
|
[] |
no_license
|
kaivenhu/coding-problem
|
26c3c77799b286de6bd0c66be276aceec0e4586b
|
3966a320ae8a865646c4fd9f3dc6faae609e0ab7
|
refs/heads/master
| 2022-06-26T19:16:02.341237
| 2022-06-17T10:48:09
| 2022-06-17T10:49:08
| 225,041,119
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,024
|
cc
|
same-tree-unittest.cc
|
#include <gtest/gtest.h>
#include "same-tree.h"
using namespace same_tree;
using namespace coding::tree;
TEST(same_tree, basic)
{
Solution s;
TreeNode *p = nullptr;
TreeNode *q = nullptr;
EXPECT_TRUE(s.isSameTree(
(p = DeserializedBinaryTree("")),
(q = DeserializedBinaryTree(""))));
FreeBinaryTree(p);
FreeBinaryTree(q);
EXPECT_TRUE(s.isSameTree(
(p = DeserializedBinaryTree("1 2 3")),
(q = DeserializedBinaryTree("1 2 3"))));
FreeBinaryTree(p);
FreeBinaryTree(q);
EXPECT_FALSE(s.isSameTree(
(p = DeserializedBinaryTree("1 2")),
(q = DeserializedBinaryTree("1 # 2"))));
FreeBinaryTree(p);
FreeBinaryTree(q);
EXPECT_FALSE(s.isSameTree(
(p = DeserializedBinaryTree("1 2 1")),
(q = DeserializedBinaryTree("1 1 2"))));
FreeBinaryTree(p);
FreeBinaryTree(q);
}
int main(int argc, char** argv)
{
::testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
}
|
02c2db1ba570e09f000b8564c3fb8d085df04cb5
|
a2a2bcbb701d0c327a1f360655fc5394492562f6
|
/main.cpp
|
91b2819740857b957d1b40e41babb1c4a7a4453e
|
[
"MIT"
] |
permissive
|
MatthewDBTodd/2048-AI
|
d7683459fb838b73e04cd7c158546fa82f9198c5
|
f3b7a44057627fc8fa15fabe277dec394250e36a
|
refs/heads/master
| 2021-07-09T23:57:12.889486
| 2021-07-01T12:55:44
| 2021-07-01T12:55:44
| 195,412,208
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 427
|
cpp
|
main.cpp
|
#include "Game.h"
#include "AIinput.h"
#include "mainMenu.h"
int main(int argc, char *argv[]) {
initMenu();
int ch {getChoice()};
switch (ch) {
case 0: {
int strength {getAIStrength()};
Game g(new AIinput(strength));
g.start();
break;
}
default: {
Game g;
g.start();
break;
}
}
return 0;
}
|
ee459a0be7ae2668cc2a490484084c3d2483e1d6
|
7c6d308aea046e19a414a537b2d8b7cbd96c7d26
|
/Physics/CollisionCounter.cpp
|
5c0c152fc6050450a6a22c856ba613f0af15b5ef
|
[] |
no_license
|
MAGANER/BrutalASCII
|
7863a7ab0b5de9b9e595c5111e30d80a815288e8
|
64d701e7783fdb8d74bdfd93bfdbefb84355656c
|
refs/heads/master
| 2022-01-23T11:33:25.065583
| 2019-07-19T17:02:56
| 2019-07-19T17:02:56
| 197,807,548
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 848
|
cpp
|
CollisionCounter.cpp
|
#include "CollisionCounter.h"
CollisionCounter::CollisionCounter()
{
top_side_collisions = 0;
bottom_side_collisions = 0;
left_side_collisions = 0;
right_side_collisions = 0;
}
int CollisionCounter::get_collisions_summ()
{
return top_side_collisions +
bottom_side_collisions +
left_side_collisions +
right_side_collisions;
}
void CollisionCounter::set_count(int top_collisions,
int bottom_collisions,
int left_collisions,
int right_collisions)
{
top_side_collisions = top_collisions;
bottom_side_collisions = bottom_collisions;
left_side_collisions = left_collisions;
right_side_collisions = right_collisions;
}
CollisionCounter::~CollisionCounter()
{
}
|
7da3b0d21db087e03391faaf7ee2332751aabcdd
|
8a1c4ce54774a97d4f86544892c25e4b3043ee0d
|
/Keengine/Sources/System/String.hpp
|
0a7464c960596b876c38480505aa6dab4486ca6a
|
[] |
no_license
|
Caerind/Keengine
|
5c96169145b1476fc6fabf5acbcd22abd9985ec5
|
e5e69fe0903c5778759b1690f9dcaf7a8ece5d43
|
refs/heads/master
| 2021-06-09T00:43:13.164530
| 2016-12-20T21:50:57
| 2016-12-20T21:50:57
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 5,920
|
hpp
|
String.hpp
|
#ifndef KE_STRING_HPP
#define KE_STRING_HPP
#include <iostream>
#include <algorithm>
#include <string>
#include <typeinfo>
#include <vector>
#include <sstream>
#include <SFML/Graphics/Rect.hpp>
#include <SFML/Graphics/Color.hpp>
#include <SFML/System/Time.hpp>
#include <SFML/System/Vector2.hpp>
#include <SFML/System/Vector3.hpp>
namespace ke
{
void toLower(std::string& str);
void toUpper(std::string& str);
std::string split(std::string& base, char separator);
std::string split(std::string& base, std::string const& separator);
std::vector<std::string> splitVector(std::string str, std::string const& separator);
bool contains(std::string const& str, char c);
bool contains(std::string const& str, std::string const& c);
std::string limitSize(std::string str, std::size_t size);
template <typename T>
std::string toString(const T& value)
{
std::ostringstream oss;
oss << value;
return oss.str();
}
template <> inline std::string toString<std::string>(const std::string& value)
{
return value;
}
template <> inline std::string toString<bool>(const bool& value)
{
return (value) ? "true" : "false";
}
template <> inline std::string toString<char>(const char& value)
{
return std::string(1, value);
}
template <> inline std::string toString<sf::Vector2f>(const sf::Vector2f& value)
{
std::ostringstream oss;
oss << value.x << "," << value.y;
return oss.str();
}
template <> inline std::string toString<sf::Vector2i>(const sf::Vector2i& value)
{
std::ostringstream oss;
oss << value.x << "," << value.y;
return oss.str();
}
template <> inline std::string toString<sf::Vector2u>(const sf::Vector2u& value)
{
std::ostringstream oss;
oss << value.x << "," << value.y;
return oss.str();
}
template <> inline std::string toString<sf::Vector3f>(const sf::Vector3f& value)
{
std::ostringstream oss;
oss << value.x << "," << value.y << "," << value.z;
return oss.str();
}
template <> inline std::string toString<sf::Color>(const sf::Color& value)
{
std::ostringstream oss;
oss << std::hex << value.toInteger();
return oss.str();
}
template <> inline std::string toString<sf::IntRect>(const sf::IntRect& value)
{
std::ostringstream oss;
oss << value.left << "," << value.top << "," << value.width << "," << value.height;
return oss.str();
}
template <> inline std::string toString<sf::FloatRect>(const sf::FloatRect& value)
{
std::ostringstream oss;
oss << value.left << "," << value.top << "," << value.width << "," << value.height;
return oss.str();
}
template <> inline std::string toString<sf::Time>(const sf::Time& value)
{
return toString(value.asSeconds());
}
template <typename T>
T fromString(const std::string& string)
{
T value;
std::istringstream iss(string);
iss >> value;
return value;
}
template <> inline std::string fromString<std::string>(const std::string& string)
{
return string;
}
template <> inline bool fromString<bool>(const std::string& string)
{
if (string == "true")
{
return true;
}
if (string == "false")
{
return false;
}
bool value;
std::istringstream iss(string);
iss >> value;
return value;
}
template <> inline char fromString<char>(const std::string& string)
{
if (string.size() >= 1)
{
return string[0];
}
return '\0';
}
template <> inline sf::Vector2f fromString<sf::Vector2f>(const std::string& string)
{
sf::Vector2f vector;
std::size_t found = string.find_first_of(',');
if (found != std::string::npos)
{
std::istringstream iss(string.substr(0, found));
iss >> vector.x;
iss.clear();
iss.str(string.substr(found + 1));
iss >> vector.y;
}
return vector;
}
template <> inline sf::Vector2i fromString<sf::Vector2i>(const std::string& string)
{
sf::Vector2i vector;
std::size_t found = string.find_first_of(',');
if (found != std::string::npos)
{
std::istringstream iss(string.substr(0, found));
iss >> vector.x;
iss.clear();
iss.str(string.substr(found + 1));
iss >> vector.y;
}
return vector;
}
template <> inline sf::Vector2u fromString<sf::Vector2u>(const std::string& string)
{
sf::Vector2u vector;
std::size_t found = string.find_first_of(',');
if (found != std::string::npos)
{
std::istringstream iss(string.substr(0, found));
iss >> vector.x;
iss.clear();
iss.str(string.substr(found + 1));
iss >> vector.y;
}
return vector;
}
template <> inline sf::Vector3f fromString<sf::Vector3f>(const std::string& string)
{
std::string z = string;
std::string x = split(z, ",");
std::string y = split(z, ",");
return sf::Vector3f(fromString<float>(x), fromString<float>(y), fromString<float>(z));
}
template <> inline sf::Color fromString<sf::Color>(const std::string& string)
{
std::string color = string;
if (color != "")
{
if (color[0] == '#')
{
color.erase(color.begin());
}
sf::Uint32 hexTrans;
std::stringstream ss(color);
ss >> std::hex >> hexTrans;
if (hexTrans >= 0)
{
sf::Uint8 red, green, blue, alpha;
red = (hexTrans >> 24) & 0xff;
green = (hexTrans >> 16) & 0xff;
blue = (hexTrans >> 8) & 0xff;
alpha = hexTrans & 0xff;
return sf::Color(red, green, blue, alpha);
}
}
return sf::Color::Transparent;
}
template <> inline sf::IntRect fromString<sf::IntRect>(const std::string& string)
{
std::string h = string;
std::string x = split(h, ",");
std::string y = split(h, ",");
std::string w = split(h, ",");
return sf::IntRect(fromString<int>(x), fromString<int>(y), fromString<int>(w), fromString<int>(h));
}
template <> inline sf::FloatRect fromString<sf::FloatRect>(const std::string& string)
{
std::string h = string;
std::string x = split(h, ",");
std::string y = split(h, ",");
std::string w = split(h, ",");
return sf::FloatRect(fromString<float>(x), fromString<float>(y), fromString<float>(w), fromString<float>(h));
}
template <> inline sf::Time fromString<sf::Time>(const std::string& string)
{
return sf::seconds(fromString<float>(string));
}
} // namespace ke
#endif // KE_STRING_HPP
|
b85f5c4e6c94885d47ef7129f51ba304088aa50d
|
8592fc9065d633a513620e9305126d69d0680dfb
|
/src/DT.cpp
|
522ab3a93afc5b5eec7d6115a7839c6fa8f74927
|
[] |
no_license
|
MGCoding/ml-final-project
|
f68c376d767885f28ccba6c4b5d7720e984778bf
|
bd2702488efe1ead949ca70332b42cedf7c92881
|
refs/heads/master
| 2020-06-04T17:25:13.646068
| 2013-12-13T18:52:18
| 2013-12-13T18:52:18
| 32,116,477
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 10,036
|
cpp
|
DT.cpp
|
#include "DT.h"
inline string doubleToString(double value)
{
ostringstream oss;
oss << value;
return oss.str();
}
DT::DT(int k)
{
this->k = k;
for(int i = 0; i < 9; i++)
{
mins[i] = DBL_MAX;
maxs[i] = -DBL_MAX;
}
}
void DT::convertData(vector<person> & res)
{
int p_size = res.size(), s_size;
for(int i = 0; i < p_size; i++)
{
s_size = res[i].sessions.size();
for(int j = 0; j < s_size; j++)
{
for(int k = 0; k < res[i].sessions[j].sensorData.size(); k++)
{
string anno = doubleToString(res[i].sessions[j].sensorData[k][9]);
data[anno].push_back(res[i].sessions[j].sensorData[k]);
//cout << "here" << endl;
for(int l = 0; l < 9; l++)
{
if(res[i].sessions[j].sensorData[k][l] < mins[l])
mins[l] = res[i].sessions[j].sensorData[k][l];
if(res[i].sessions[j].sensorData[k][l] > maxs[l])
maxs[l] = res[i].sessions[j].sensorData[k][l];
}
}
}
}
/*for(int i = 0; i < 9; i++)
{
cout << i << ": " << mins[i] << " " << maxs[i] << endl;
}*/
}
double DT::computeGain(vector<SensorRange *> & assignments, int new_sensor, double old_entropy)
{
//cout << "entering compute gain" << endl;
int total = 0;
vector<double> splits;
vector<SensorRange*> new_ranges;
vector<double> entropies;
vector<int> counts;
int count = 0;
for(int i = 0; i < k; i++)
{
splits.push_back(mins[new_sensor] + i * ((maxs[new_sensor] - mins[new_sensor])/(k+1)));
//cout << splits.back() << " ";
}
//cout << endl;
for(int i = 0; i < splits.size(); i++)
{
SensorRange * sr = new SensorRange();
sr->sensor_index = new_sensor;
if(i==0)
{
sr->min = -DBL_MAX;
sr->max = (splits[i] + splits[i+1])/2;
}else if(i == splits.size() -1)
{
sr->min = (splits[i] + splits[i-1])/2;
sr->max = DBL_MAX;
}else
{
sr->min = (splits[i] + splits[i-1])/2;
sr->max = (splits[i] + splits[i+1])/2;
}
new_ranges.push_back(sr);
}
for(int i = 0; i < new_ranges.size(); i++)
{
assignments.push_back(new_ranges[i]);
entropies.push_back(computeEntropy(assignments, count));
//cout << "entropy: " << entropies.back() << endl;
counts.push_back(count);
total += count;
assignments.pop_back();
}
double new_entropy = 0;
for(int i = 0; i < counts.size(); i++)
{
new_entropy += ((double)counts[i]/total) * entropies[i];
}
//cout << "exiting compute gain" << endl;
return old_entropy - new_entropy;
}
double DT::computeEntropy(vector<SensorRange *> & assignments, int & count)
{
//cout << "entering compute entropy" << endl;
/*for(int i = 0; i < assignments.size(); i++)
{
cout << assignments[i]->sensor_index << " ";
}
cout << endl;*/
double entropy = 0;
map<string, int> counts;
bool inRange;
for(map<string, vector<double*> >::iterator it = data.begin(); it != data.end(); ++it)
{
counts[it->first] = 0;
for(int i = 0; i < it->second.size(); i++)
{
inRange = true;
for(int j = 0; j < assignments.size(); j++)
{
if(it->second[i][assignments[j]->sensor_index] <= assignments[j]->min || it->second[i][assignments[j]->sensor_index] > assignments[j]->max)
{
inRange = false;
break;
}
}
if(inRange)
counts[it->first]++;
}
}
double total = 0;
for(map<string, int>::iterator it = counts.begin(); it != counts.end(); ++it)
{
total += it->second;
}
if(total == 0)
{
//cout << "exiting compute entropy" << endl;
return 0;
}
count = total;
for(map<string, int>::iterator it = counts.begin(); it != counts.end(); ++it)
{
if(it->second != 0)
entropy += -(it->second/total) * log(it->second/total)/log(2);
}
//cout << "exiting compute entropy" << endl;
return entropy;
}
bool isInAssignments(vector<SensorRange*> & assignments, int sensor_id)
{
for(int i = 0; i < assignments.size(); i++)
{
if(assignments[i]->sensor_index == sensor_id)
return true;
}
return false;
}
void DT::buildTree()
{
vector<SensorRange *> assignments;
root = buildBranch(assignments, 1, k);
}
Node * DT::buildBranch(vector<SensorRange *> & assignments, double entropy, int k)
{
map<string, int> counts;
for(int i = 0; i < 9; i++)
{
if(!isInAssignments(assignments, i))
{
//cout << "assignments.size(): " << assignments.size() << endl;
break;
}else if(i == 8)
{
for(map<string, vector<double*> >::iterator it = data.begin(); it != data.end(); ++it)
{
for(int i = 0; i < it->second.size(); i++)
{
for(int j = 0; j < assignments.size(); j++)
{
if(it->second[i][assignments[j]->sensor_index] <= assignments[j]->min || it->second[i][assignments[j]->sensor_index] > assignments[j]->max)
break;
map<string, int>::iterator it2 = counts.find(it->first);
if(it2 == counts.end())
{
counts[it->first] = 0;
}else
{
counts[it->first]++;
}
}
}
}
int max = -1;
string annotation = "";
for(map<string, int>::iterator it = counts.begin(); it != counts.end(); ++it)
{
if(it->second > max)
{
max = it->second;
annotation = it->first;
}
}
Node * child = new Node();
child->annotation = annotation;
child->type=2;
return child;
}
}
//check for all one annotation
for(map<string, vector<double*> >::iterator it = data.begin(); it != data.end(); ++it)
{
for(int i = 0; i < it->second.size(); i++)
{
for(int j = 0; j < assignments.size(); j++)
{
if(it->second[i][assignments[j]->sensor_index] <= assignments[j]->min || it->second[i][assignments[j]->sensor_index] > assignments[j]->max)
break;
map<string, int>::iterator it2 = counts.find(it->first);
if(it2 == counts.end())
{
counts[it->first] = 0;
}else
{
counts[it->first]++;
}
}
}
}
if(counts.size() == 1)
{
Node * child = new Node();
child->annotation = counts.begin()->first;
child->type = 2;
return child;
}else if(counts.size() == 0)
{
// cout << "This shouldn't happen" << endl;
}
//determine which sensor to split on based on highest gain
double max_gain = -DBL_MAX;
double gain;
int new_sensor_index = -1;
for(int i = 0; i < 9; i++)
{
if(!isInAssignments(assignments, i))
{
gain = computeGain(assignments, i, entropy);
//cout << "gain: " << gain << endl;
if(gain > max_gain)
{
max_gain = gain;
new_sensor_index = i;
}
}
}
if(new_sensor_index == -1)
{
int most_annotated = -1;
string annotated = "";
Node * child = new Node();
child->type = 2;
for(map<string, int>::iterator it = counts.begin(); it != counts.end(); ++it)
{
if(most_annotated < it->second)
{
most_annotated = it->second;
annotated = it->first;
}
}
child->annotation = annotated;
return child;
}
//cout << "splitting on: " << new_sensor_index << endl;
//alter assignments
vector<double> splits;
vector<SensorRange*> new_ranges;
int count;
for(int i = 0; i < k; i++)
{
splits.push_back(mins[new_sensor_index] + (i / k+1) * (maxs[new_sensor_index] - mins[new_sensor_index]));
}
for(int i = 0; i < splits.size(); i++)
{
SensorRange * sr = new SensorRange();
sr->sensor_index = new_sensor_index;
if(i==0)
{
sr->min = -DBL_MAX;
sr->max = (splits[i] + splits[i+1])/2;
}else if(i == splits.size() -1)
{
sr->min = (splits[i] + splits[i-1])/2;
sr->max = DBL_MAX;
}else
{
sr->min = (splits[i] + splits[i-1])/2;
sr->max = (splits[i] + splits[i+1])/2;
}
new_ranges.push_back(sr);
}
Node * sensorNode = new Node();
sensorNode->type = 0;
sensorNode->sensor_index = new_sensor_index;
for(int i = 0; i < new_ranges.size(); i++)
{
assignments.push_back(new_ranges[i]);
double entropy1 = computeEntropy(assignments, count);
Node * child = buildBranch(assignments, entropy1, k);
sensorNode->children.push_back(child);
sensorNode->splits.push_back(new_ranges[i]);
assignments.pop_back();
}
return sensorNode;
}
string DT::internalClassify(Node * node, double * example)
{
if(node->type == 0)
{
for(int i = 0; i < node->splits.size(); i++)
{
if(node->splits[i]->min <= example[node->sensor_index] && node->splits[i]->max > example[node->sensor_index])
{
return internalClassify(node->children[i], example);
}
}
}
return node->annotation;
}
string DT::classify(double * example)
{
if(root->type == 0)
{
for(int i = 0; i < root->splits.size(); i++)
{
if(root->splits[i]->min <= example[root->sensor_index] && root->splits[i]->max > example[root->sensor_index])
{
return internalClassify(root->children[i], example);
}
}
}
return root->annotation;
}
|
a80ca47c86427c9126eea179267f4aecc7c154a9
|
8666e0a1928dd5ed82bfcc3a8d0cfd053039be37
|
/src/Lattice.cpp
|
0c235d1ccb5e7fd64c70fa556639d1efecf5d88a
|
[] |
no_license
|
schenke/ipglasma
|
2a6cb62f2154079bead66867d83707ba3a58ed60
|
2bd1371ca2eb53b649d53d3e7753dcc91dec9327
|
refs/heads/master
| 2022-12-03T11:30:57.392615
| 2022-12-01T14:51:42
| 2022-12-01T14:51:42
| 147,559,686
| 4
| 6
| null | 2022-09-14T13:36:55
| 2018-09-05T18:06:58
|
C++
|
UTF-8
|
C++
| false
| false
| 1,743
|
cpp
|
Lattice.cpp
|
#include "Lattice.h"
// constructor
Lattice::Lattice(Parameters *param, int N, int length) {
Nc = N;
size = length * length;
double a = param->getL() / static_cast<double>(length);
cout << "Allocating square lattice of size " << length << "x" << length
<< " with a=" << a << " fm ...";
// initialize the array of cells
for (int i = 0; i < size; i++) {
Cell *cell;
cell = new Cell(Nc);
cells.push_back(cell);
}
for (int i = 0; i < length; i++) {
for (int j = 0; j < length; j++) {
// pos = i*length+j;
pospX.push_back(((i + 1) % length) * length + j);
pospY.push_back(i * length + (j + 1) % length);
if (i > 0)
posmX.push_back((i - 1) * length + j);
else
posmX.push_back((length - 1) * length + j);
if (j > 0)
posmY.push_back(i * length + (j - 1));
else
posmY.push_back(i * length + (length - 1));
if (i > 0)
posmXpY.push_back((i - 1) * length + (j + 1) % length);
else
posmXpY.push_back((length - 1) * length + (j + 1) % length);
if (j > 0)
pospXmY.push_back(((i + 1) % length) * length + j - 1);
else
pospXmY.push_back(((i + 1) % length) * length + length - 1);
}
}
cout << " done on rank " << param->getMPIRank() << "." << endl;
}
Lattice::~Lattice() {
for (int i = 0; i < size; i++)
delete cells[i];
cells.clear();
}
// constructor
BufferLattice::BufferLattice(int N, int length) {
Nc = N;
size = length * length;
for (int i = 0; i < size; i++) {
SmallCell *cell;
cell = new SmallCell(Nc);
cells.push_back(cell);
}
}
BufferLattice::~BufferLattice() {
for (int i = 0; i < size; i++)
delete cells[i];
cells.clear();
}
|
f3a9083eecc3c2a7c4fd1267ccdaf4adcda94d16
|
6c1293b16eb6d3d34877c4b43a2049c4e1f18d9d
|
/testing/T01-trigger/T01-trigger.ino
|
1c4319aee2bdbad4ad5007409c0518a0451ed1bc
|
[
"MIT"
] |
permissive
|
AdamRayBraun/FinalMajorProject
|
d991edd8174ea53d85f3c20fdcc1b4ce3cbb7228
|
a983faf5d06e15046d41906a09021c35e30b3d4f
|
refs/heads/master
| 2021-09-15T04:51:19.463040
| 2018-05-26T17:24:32
| 2018-05-26T17:24:32
| 109,852,647
| 0
| 1
|
MIT
| 2018-05-25T18:09:33
| 2017-11-07T15:18:47
|
C++
|
UTF-8
|
C++
| false
| false
| 157
|
ino
|
T01-trigger.ino
|
int SB_BONE[] = {29,31,33,35,37,39,41,43,45,47,49};
int SB_BONE_RST = 27;
void setup() {
pinMode(29, OUTPUT);
}
void loop() {
digitalWrite(29, LOW);
}
|
b4614349d6609e28efe7c6259c9ad4672050b584
|
960f860d6f697523a9509e702f499246a704bb97
|
/examples/Blink/Blink.ino
|
f667f230a6927ce7c4e80f090451f9998a5506f1
|
[
"MIT"
] |
permissive
|
stilren/RGBLamp
|
915bbd8cba99042c9fda84b551fb87bd50cf0e5d
|
dd4629aafda25d5e961c5475d243e7046c057dfe
|
refs/heads/master
| 2020-12-18T08:15:44.141443
| 2016-07-19T10:24:57
| 2016-07-19T10:24:57
| 63,676,834
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 342
|
ino
|
Blink.ino
|
#include "RGBLamp.h"
RGBLamp myLamp;
int redPin = 3;
int greenPin = 5;
int bluePin = 6;
int mode = COMMON_ANODE;
void setup() {
myLamp.begin(mode, redPin, greenPin, bluePin); //Make sure pins are PWM-pins if you want to use fadeTo or blink fucntions.
myLamp.blink(Color::Cyan);
}
void loop() {
myLamp.update(); //Run continuously
}
|
cda038eabc695802fc5a4892c15fde47476cffbe
|
510cfe880a475f0c572cc34c1b544e41911c3e6c
|
/1328A.cpp
|
3124e3bc08a22985e33a73a46e5752d74c911067
|
[] |
no_license
|
ptkhai1203/cf-problems
|
aa40a1233b490c0daa977f978bed5b517bc47190
|
421c8e43401aa409363d6653540d8d6238b0e1d3
|
refs/heads/main
| 2023-04-14T14:03:45.795965
| 2021-04-12T13:35:05
| 2021-04-12T13:35:05
| 340,100,309
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 493
|
cpp
|
1328A.cpp
|
#include <bits/stdc++.h>
#define nl '\n'
using namespace std;
int main(){
#ifdef PTK
freopen("input.txt", "r", stdin);
//freopen("output.txt", "w", stdout);
#endif
ios_base::sync_with_stdio(0);
cin.tie(0); cout.tie(0);
int t;
cin >> t;
while(t--){
int x, y;
cin >> x >> y;
if(x % y == 0)
cout << 0 << nl;
else{
int div = x / y;
cout << (div + 1) * y - x << nl;
}
}
return 0;
}
|
b54c071a8f323f2a22f064a7b6342884ab58ef67
|
de085e675524e5177af82aaad683b1adff6dc599
|
/net/wifi/service/jni/com_android_server_wifi_WifiNative.cpp
|
56d7613add498dd51ef9b3bef06e982865218135
|
[] |
no_license
|
joshi3/framework_opt
|
67560220798e195ca11d1f2d3bc7c1664015997f
|
6cb716d56815a2bf3e9255df9dd255af649b8de4
|
refs/heads/master
| 2021-09-01T00:16:24.314305
| 2017-12-23T18:30:19
| 2017-12-23T18:30:19
| 115,213,934
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 65,477
|
cpp
|
com_android_server_wifi_WifiNative.cpp
|
/*
* Copyright (C) 2014 MediaTek Inc.
* Modification based on code covered by the mentioned copyright
* and/or permission notice(s).
*/
/*
* Copyright 2008, The Android Open Source Project
*
* 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.
*/
#define LOG_TAG "wifiJNI"
#include "jni.h"
#include <ScopedUtfChars.h>
#include <utils/misc.h>
#include <android_runtime/AndroidRuntime.h>
#include <utils/Log.h>
#include <utils/String16.h>
#include <utils/String8.h>
#include <cutils/xlog.h>
#include <pthread.h>
#include <unicode/ucnv.h>
#include <net/if.h>
#include <sys/socket.h>
#include <linux/wireless.h>
#include <cutils/properties.h>
#include <ctype.h>
#include "wifi.h"
#include "wifi_hal.h"
#include "jni_helper.h"
#define REPLY_BUF_SIZE 4096 // wpa_supplicant's maximum size.
#define EVENT_BUF_SIZE 2048
///M: add the following
#define BUF_SIZE 256
#define SSID_LEN 500
#define LINE_LEN 1024
#define CONVERT_LINE_LEN 2048
#define REPLY_LEN 4096
#define CHARSET_CN ("gbk")
#define WIFI_INTERFACE "wlan0"
#define IOCTL_SET_INTS (SIOCIWFIRSTPRIV + 12)
#define PRIV_CMD_SET_TX_POWER 25
namespace android {
static jint DBG = false;
struct accessPointObjectItem {
String8 *ssid;
String8 *bssid;
String8 *encossid;
bool isCh;
struct accessPointObjectItem *pNext;
};
struct accessPointObjectItem *g_pItemList = NULL;
struct accessPointObjectItem *g_pLastNode = NULL;
pthread_mutex_t *g_pItemListMutex = NULL;
String8 *g_pCurrentSSID = NULL;
bool g_isChSSID = false;
bool g_isAnyBSSID = false;
static void addAPObjectItem(const char *ssid, const char *bssid, bool isCh, const char * encossid)
{
if (NULL == ssid || NULL == bssid || NULL == encossid) {
XLOGE("ssid or bssid or encossid is NULL");
return;
}
struct accessPointObjectItem *pTmpItemNode = NULL;
struct accessPointObjectItem *pItemNode = NULL;
bool foundItem = false;
pthread_mutex_lock(g_pItemListMutex);
pTmpItemNode = g_pItemList;
while (pTmpItemNode) {
if (pTmpItemNode->bssid && (*(pTmpItemNode->bssid) == bssid)) {
foundItem = true;
break;
}
pTmpItemNode = pTmpItemNode->pNext;
}
if (foundItem) {
*(pTmpItemNode->ssid) = ssid;
*(pTmpItemNode->encossid) = encossid;
pTmpItemNode->isCh = isCh;
if (DBG) {
XLOGD("Found AP %s encossid= %s", pTmpItemNode->ssid->string(), pTmpItemNode->encossid->string());
}
} else {
pItemNode = new struct accessPointObjectItem();
if (NULL == pItemNode) {
XLOGE("Failed to allocate memory for new item!");
goto EXIT;
}
memset(pItemNode, 0, sizeof(accessPointObjectItem));
pItemNode->bssid = new String8(bssid);
if (NULL == pItemNode->bssid) {
XLOGE("Failed to allocate memory for new bssid!");
delete pItemNode;
goto EXIT;
}
pItemNode->ssid = new String8(ssid);
if (NULL == pItemNode->ssid) {
XLOGE("Failed to allocate memory for new ssid!");
delete pItemNode->bssid;
delete pItemNode;
goto EXIT;
}
pItemNode->encossid = new String8(encossid);
if (NULL == pItemNode->encossid) {
XLOGE("Failed to allocate memory for new encossid!");
delete pItemNode->ssid;
delete pItemNode->bssid;
delete pItemNode;
goto EXIT;
}
pItemNode->isCh = isCh;
pItemNode->pNext = NULL;
if (DBG) {
XLOGD("AP doesn't exist, new one for %s", ssid);
}
if (NULL == g_pItemList) {
g_pItemList = pItemNode;
g_pLastNode = g_pItemList;
} else {
g_pLastNode->pNext = pItemNode;
g_pLastNode = pItemNode;
}
}
EXIT:
pthread_mutex_unlock(g_pItemListMutex);
}
static bool isUTF8String(const char* str, long length)
{
unsigned int nBytes = 0;
unsigned char chr;
bool bAllAscii = true;
for (int i = 0; i < length; i++) {
chr = *(str+i);
if ((chr & 0x80) != 0) {
bAllAscii = false;
}
if (0 == nBytes) {
if (chr >= 0x80) {
if (chr >= 0xFC && chr <= 0xFD) {
nBytes = 6;
} else if (chr >= 0xF8) {
nBytes = 5;
} else if (chr >= 0xF0) {
nBytes = 4;
} else if (chr >= 0xE0) {
nBytes = 3;
} else if (chr >= 0xC0) {
nBytes = 2;
} else {
return false;
}
nBytes--;
}
} else {
if ((chr & 0xC0) != 0x80) {
return false;
}
nBytes--;
}
}
if (nBytes > 0 || bAllAscii) {
return false;
}
return true;
}
static void parseScanResults(JNIEnv* env, String16& str, const char *reply)
{
unsigned int lineBeg = 0, lineEnd = 0;
size_t replyLen = strlen(reply);
char *pos = NULL;
char bssid[BUF_SIZE] = {0};
char ssid[BUF_SIZE] = {0};
String8 line;
bool isUTF8 = true;
bool isCh = false;
UChar encossidd[CONVERT_LINE_LEN] = {0};
String16 encossidstr;
UChar dest[CONVERT_LINE_LEN] = {0};
UErrorCode err = U_ZERO_ERROR;
UConverter* pConverter = ucnv_open(CHARSET_CN, &err);
if (U_FAILURE(err)) {
XLOGE("ucnv_open error");
return;
}
//Parse every line of the reply to construct accessPointObjectItem list
for (lineBeg = 0, lineEnd = 0; lineEnd <= replyLen; ++lineEnd) {
if (lineEnd == replyLen || '\n' == reply[lineEnd]) {
line.setTo(reply + lineBeg, lineEnd - lineBeg + 1);
/*if (DBG) {
XLOGD("%s, line:%s", __FUNCTION__, line.string());
}*/
if (strncmp(line.string(), "bssid=", 6) == 0) {
sscanf(line.string() + 6, "%255[^\n]", bssid);
} else if (strncmp(line.string(), "ssid=", 5) == 0) {
sscanf(line.string() + 5, "%255[^\n]", ssid);
isUTF8 = isUTF8String(ssid, strlen(ssid));
} else if (strncmp(line.string(), "====", 4) == 0) {
isCh = false;
for (pos = ssid; '\0' != *pos; pos++) {
if (0x80 == (*pos & 0x80)) {
isCh = true;
break;
}
}
if (isCh == true) {
ucnv_toUChars(pConverter, encossidd, CONVERT_LINE_LEN, ssid, BUF_SIZE, &err);
if (U_FAILURE(err)) {
XLOGE("ucnv_toUChars error");
goto EXIT;
}
encossidstr = String16(encossidd);
} else {
encossidstr = String16(ssid);
}
if (DBG) {
XLOGD("After sscanf, bssid:%s, ssid:%s, isCh:%d, isUTF8:%d enssid:%s", bssid, ssid, isCh, isUTF8, encossidstr.string());
for (unsigned int i = 0; i < strlen(ssid); i++) {
XLOGD("ssid[%d]:%c, 0x%x", i, ssid[i], ssid[i]);
}
}
jstring result = env->NewString((const jchar *)encossidstr.string(), encossidstr.size());
///M: result should be free after temp free
{
ScopedUtfChars temp(env, result);
addAPObjectItem(ssid, bssid, isCh, temp.c_str());
if (DBG) {
XLOGD("addAPObjectItem done encossid=%s", temp.c_str());
}
}
env->DeleteLocalRef(result);
}
if (!isUTF8) {
ucnv_toUChars(pConverter, dest, CONVERT_LINE_LEN, line.string(), line.size(), &err);
if (U_FAILURE(err)) {
XLOGE("ucnv_toUChars error");
goto EXIT;
}
str += String16(dest);
memset(dest, 0, CONVERT_LINE_LEN);
} else {
str += String16(line.string());
}
lineBeg = lineEnd + 1;
}
}
EXIT:
ucnv_close(pConverter);
}
static void constructReply(String16& str, const char *cmd, const char *reply)
{
if (DBG) {
XLOGD("%s, cmd = %s, reply = %s", __FUNCTION__, cmd, reply);
}
size_t replyLen = strlen(reply);
unsigned int lineBeg = 0, lineEnd = 0;
String8 line;
bool isUTF8 = true;
UChar dest[CONVERT_LINE_LEN] = {0};
UErrorCode err = U_ZERO_ERROR;
UConverter* pConverter = ucnv_open(CHARSET_CN, &err);
if (U_FAILURE(err)) {
XLOGE("ucnv_open error");
return;
}
for (lineBeg = 0, lineEnd = 0; lineEnd <= replyLen; ++lineEnd) {
if (lineEnd == replyLen || '\n' == reply[lineEnd]) {
line.setTo(reply + lineBeg, lineEnd - lineBeg + 1);
isUTF8 = isUTF8String(line.string(), line.size());
if (DBG) {
XLOGD("%s, line=%s, isUTF8=%d", __FUNCTION__, line.string(), isUTF8);
}
if (!isUTF8) {
ucnv_toUChars(pConverter, dest, CONVERT_LINE_LEN, line.string(), line.size(), &err);
if (U_FAILURE(err)) {
XLOGE("ucnv_toUChars error");
goto EXIT;
}
str += String16(dest);
memset(dest, 0, CONVERT_LINE_LEN);
} else {
str += String16(line.string());
}
lineBeg = lineEnd + 1;
}
}
EXIT:
ucnv_close(pConverter);
}
static void printLongReply(const char *reply) {
if (DBG) {
for (unsigned int i = 0; i < strlen(reply); i++) {
XLOGD("reply[%d]:%c, 0x%x", i, reply[i], reply[i]);
}
}
unsigned int lineBeg = 0, lineEnd = 0;
size_t replyLen = strlen(reply);
String8 line;
for (lineBeg = 0, lineEnd = 0; lineEnd <= replyLen; ++lineEnd) {
if (lineEnd == replyLen || '\n' == reply[lineEnd]) {
line.setTo(reply + lineBeg, lineEnd - lineBeg + 1);
XLOGI("%s", line.string());
lineBeg = lineEnd + 1;
}
}
}
static bool doCommand(JNIEnv* env, jstring javaCommand,
char* reply, size_t reply_len) {
ScopedUtfChars command(env, javaCommand);
if (command.c_str() == NULL) {
return false; // ScopedUtfChars already threw on error.
}
if (DBG) {
ALOGD("doCommand: %s", command.c_str());
}
--reply_len; // Ensure we have room to add NUL termination.
if (::wifi_command(command.c_str(), reply, &reply_len) != 0) {
return false;
}
// Strip off trailing newline.
if (reply_len > 0 && reply[reply_len-1] == '\n') {
reply[reply_len-1] = '\0';
} else {
reply[reply_len] = '\0';
}
return true;
}
static jint doIntCommand(JNIEnv* env, jstring javaCommand) {
char reply[REPLY_BUF_SIZE]= {0};
if (!doCommand(env, javaCommand, reply, sizeof(reply))) {
return -1;
}
return static_cast<jint>(atoi(reply));
}
static jboolean doBooleanCommand(JNIEnv* env, jstring javaCommand) {
char reply[REPLY_BUF_SIZE]= {0};
ScopedUtfChars jcmd(env, javaCommand);
XLOGD("doBooleanCommand %s", jcmd.c_str());
if (!doCommand(env, javaCommand, reply, sizeof(reply))) {
return JNI_FALSE;
}
return (strcmp(reply, "OK") == 0);
}
static int doCommandTranslated(const char *cmd, char *replybuf, int replybuflen)
{
size_t reply_len = replybuflen - 1;
if (DBG) {
ALOGD("doCommand: %s", cmd);
}
if (::wifi_command(cmd, replybuf, &reply_len) != 0)
return -1;
else {
// Strip off trailing newline
if (reply_len > 0 && replybuf[reply_len-1] == '\n')
replybuf[reply_len-1] = '\0';
else
replybuf[reply_len] = '\0';
return 0;
}
}
static jboolean doBooleanCommandTranslated(const char* expect, const char* fmt, ...)
{
char buf[BUF_SIZE] = {0};
va_list args;
va_start(args, fmt);
int byteCount = vsnprintf(buf, sizeof(buf), fmt, args);
va_end(args);
if (byteCount < 0 || byteCount >= BUF_SIZE) {
return JNI_FALSE;
}
char reply[BUF_SIZE] = {0};
if (doCommandTranslated(buf, reply, sizeof(reply)) != 0) {
return JNI_FALSE;
}
return (strcmp(reply, expect) == 0);
}
// Send a command to the supplicant, and return the reply as a String.
static jstring doStringCommand(JNIEnv* env, jstring javaCommand) {
char reply[REPLY_BUF_SIZE]= {0};
char buf[BUF_SIZE] = {0};
if (!doCommand(env, javaCommand, reply, sizeof(reply))) {
return NULL;
}
///M:@{
const char *nativeString = env->GetStringUTFChars(javaCommand, 0);
int isWlanInterafce = strncmp("IFNAME=wlan",nativeString,strlen("IFNAME=wlan"));
if(nativeString!=NULL)strncpy(buf,nativeString, sizeof(buf)-1);
env->ReleaseStringUTFChars(javaCommand, nativeString);
if(DBG) XLOGD("%s, buf %s", __FUNCTION__, buf);
if (0 == isWlanInterafce) {
String16 str;
if (strstr(buf, "MASK=0x21987") ||
(strstr(buf, "GET_NETWORK") && strstr(buf, "ssid")) ||
(0 == strcmp(buf, "STATUS")) ||
(strstr(buf, "LIST_NETWORKS")) ||
(0 == strcmp(buf,"DRIVER WLS_BATCHING GET")) ){
if (strstr(buf, "MASK=0x21987")) {
printLongReply(reply);
parseScanResults(env, str, reply);
} else {
if (DBG) {
printLongReply(reply);
}
constructReply(str, buf, reply);
}
} else {
if (DBG) {
printLongReply(reply);
}
str += String16((char *)reply);
}
return env->NewString((const jchar *)str.string(), str.size());
} else {
if (DBG) {
printLongReply(reply);
}
jclass stringClass;
jmethodID methodId;
jbyteArray byteArray;
stringClass = env->FindClass("java/lang/String");
if (NULL == stringClass) {
XLOGE("Failed to find String class!");
return NULL;
}
methodId = env->GetMethodID(stringClass,"<init>", "([B)V");
if (NULL == methodId) {
XLOGE("Failed to get constructor methodId!");
env->DeleteLocalRef(stringClass);
return NULL;
}
byteArray = env->NewByteArray(strlen(reply));
if (NULL == byteArray) {
XLOGE("Failed to new byte array!");
env->DeleteLocalRef(stringClass);
return NULL;
}
env->SetByteArrayRegion(byteArray, 0, strlen(reply), (jbyte*)reply);
jstring result = (jstring)(env->NewObject(stringClass, methodId, byteArray));
env->DeleteLocalRef(byteArray);
env->DeleteLocalRef(stringClass);
return result;
}
///@}
}
static jboolean android_net_wifi_isDriverLoaded(JNIEnv* env, jobject)
{
return (::is_wifi_driver_loaded() == 1);
}
static jboolean android_net_wifi_loadDriver(JNIEnv* env, jobject)
{
///M:@{
g_pItemListMutex = new pthread_mutex_t;
if (NULL == g_pItemListMutex) {
XLOGE("Failed to allocate memory for g_pItemListMutex!");
return JNI_FALSE;
}
pthread_mutex_init(g_pItemListMutex, NULL);
g_pCurrentSSID = new String8();
if (NULL == g_pCurrentSSID) {
XLOGE("Failed to allocate memory for g_pCurrentSSID!");
return JNI_FALSE;
}
char dbg[PROPERTY_VALUE_MAX] = {0};
if (property_get("wifi.jni.dbg", dbg, NULL) && strcmp(dbg, "true") == 0) {
DBG = true;
} else {
DBG = false;
}
///@}
return (::wifi_load_driver() == 0);
}
static jboolean android_net_wifi_unloadDriver(JNIEnv* env, jobject)
{
///M:@{
if (g_pCurrentSSID != NULL) {
delete g_pCurrentSSID;
g_pCurrentSSID = NULL;
}
if (g_pItemListMutex != NULL) {
pthread_mutex_lock(g_pItemListMutex);
struct accessPointObjectItem *pCurrentNode = g_pItemList;
struct accessPointObjectItem *pNextNode = NULL;
while (pCurrentNode) {
pNextNode = pCurrentNode->pNext;
if (NULL != pCurrentNode->ssid) {
delete pCurrentNode->ssid;
pCurrentNode->ssid = NULL;
}
if (NULL != pCurrentNode->bssid) {
delete pCurrentNode->bssid;
pCurrentNode->bssid = NULL;
}
delete pCurrentNode;
pCurrentNode = pNextNode;
}
g_pItemList = NULL;
g_pLastNode = NULL;
pthread_mutex_unlock(g_pItemListMutex);
pthread_mutex_destroy(g_pItemListMutex);
delete g_pItemListMutex;
g_pItemListMutex = NULL;
}
///@}
return (::wifi_unload_driver() == 0);
}
static jboolean android_net_wifi_startSupplicant(JNIEnv* env, jobject, jboolean p2pSupported)
{
return (::wifi_start_supplicant(p2pSupported) == 0);
}
static jboolean android_net_wifi_killSupplicant(JNIEnv* env, jobject, jboolean p2pSupported)
{
return (::wifi_stop_supplicant(p2pSupported) == 0);
}
static jboolean android_net_wifi_connectToSupplicant(JNIEnv* env, jobject)
{
return (::wifi_connect_to_supplicant() == 0);
}
static void android_net_wifi_closeSupplicantConnection(JNIEnv* env, jobject)
{
::wifi_close_supplicant_connection();
}
static jstring android_net_wifi_waitForEvent(JNIEnv* env, jobject, jstring jIface)
{
char buf[EVENT_BUF_SIZE]= {0};
ScopedUtfChars ifname(env, jIface);
int nread = ::wifi_wait_for_event(buf, sizeof buf);
if (nread > 0) {
///M:@{
//return env->NewStringUTF(buf);
if (DBG) {
XLOGD("android_net_wifi_waitForEvent ifname.c_str()= %s, WIFI_INTERFACE = %s",ifname.c_str(),WIFI_INTERFACE);
}
if (DBG) {
XLOGD("cmd = %s", buf);
}
///M:@{
int isWlanInterafce = strncmp("IFNAME=wlan",buf,strlen("IFNAME=wlan"));
if (isWlanInterafce==0) {
//if (0 == strcmp(ifname.c_str(), WIFI_INTERFACE)) {
if (DBG) {
XLOGD("wlan0 case");
}
String16 str;
constructReply(str, NULL, buf);
return env->NewString((const jchar *)str.string(), str.size());
} else {
if (DBG) {
XLOGD("non wlan0 case");
}
jclass stringClass;
jmethodID methodId;
jbyteArray byteArray;
stringClass = env->FindClass("java/lang/String");
if (NULL == stringClass) {
XLOGE("Failed to find String class!");
return NULL;
}
methodId = env->GetMethodID(stringClass,"<init>", "([B)V");
if (NULL == methodId) {
XLOGE("Failed to get constructor methodId!");
env->DeleteLocalRef(stringClass);
return NULL;
}
byteArray = env->NewByteArray(strlen(buf));
if (NULL == byteArray) {
XLOGE("Failed to new byte array!");
env->DeleteLocalRef(stringClass);
return NULL;
}
env->SetByteArrayRegion(byteArray, 0, strlen(buf), (jbyte*)buf);
jstring result = (jstring)(env->NewObject(stringClass, methodId, byteArray));
env->DeleteLocalRef(byteArray);
env->DeleteLocalRef(stringClass);
return result;
}
///@}
} else {
return NULL;
}
}
static jboolean android_net_wifi_doBooleanCommand(JNIEnv* env, jobject, jstring javaCommand) {
return doBooleanCommand(env, javaCommand);
}
static jint android_net_wifi_doIntCommand(JNIEnv* env, jobject, jstring javaCommand) {
return doIntCommand(env, javaCommand);
}
static jstring android_net_wifi_doStringCommand(JNIEnv* env, jobject, jstring javaCommand) {
return doStringCommand(env,javaCommand);
}
/* wifi_hal <==> WifiNative bridge */
static jclass mCls; /* saved WifiNative object */
static JavaVM *mVM; /* saved JVM pointer */
static const char *WifiHandleVarName = "sWifiHalHandle";
static const char *WifiIfaceHandleVarName = "sWifiIfaceHandles";
static jmethodID OnScanResultsMethodID;
static JNIEnv *getEnv() {
JNIEnv *env = NULL;
mVM->AttachCurrentThread(&env, NULL);
return env;
}
static wifi_handle getWifiHandle(JNIEnv *env, jclass cls) {
return (wifi_handle) getStaticLongField(env, cls, WifiHandleVarName);
}
static wifi_interface_handle getIfaceHandle(JNIEnv *env, jclass cls, jint index) {
return (wifi_interface_handle) getStaticLongArrayField(env, cls, WifiIfaceHandleVarName, index);
}
static jobject createScanResult(JNIEnv *env, wifi_scan_result *result) {
// ALOGD("creating scan result");
jobject scanResult = createObject(env, "android/net/wifi/ScanResult");
if (scanResult == NULL) {
ALOGE("Error in creating scan result");
return NULL;
}
// ALOGD("setting SSID to %s", result.ssid);
setStringField(env, scanResult, "SSID", result->ssid);
char bssid[32];
sprintf(bssid, "%02x:%02x:%02x:%02x:%02x:%02x", result->bssid[0], result->bssid[1],
result->bssid[2], result->bssid[3], result->bssid[4], result->bssid[5]);
setStringField(env, scanResult, "BSSID", bssid);
setIntField(env, scanResult, "level", result->rssi);
setIntField(env, scanResult, "frequency", result->channel);
setLongField(env, scanResult, "timestamp", result->ts);
return scanResult;
}
static jboolean android_net_wifi_startHal(JNIEnv* env, jclass cls) {
wifi_handle halHandle = getWifiHandle(env, cls);
if (halHandle == NULL) {
wifi_error res = wifi_initialize(&halHandle);
if (res == WIFI_SUCCESS) {
setStaticLongField(env, cls, WifiHandleVarName, (jlong)halHandle);
ALOGD("Did set static halHandle = %p", halHandle);
}
env->GetJavaVM(&mVM);
mCls = (jclass) env->NewGlobalRef(cls);
ALOGD("halHandle = %p, mVM = %p, mCls = %p", halHandle, mVM, mCls);
return res == WIFI_SUCCESS;
} else {
return true;
}
}
void android_net_wifi_hal_cleaned_up_handler(wifi_handle handle) {
ALOGD("In wifi cleaned up handler");
JNIEnv * env = getEnv();
setStaticLongField(env, mCls, WifiHandleVarName, 0);
env->DeleteGlobalRef(mCls);
mCls = NULL;
mVM = NULL;
}
static void android_net_wifi_stopHal(JNIEnv* env, jclass cls) {
ALOGD("In wifi stop Hal");
wifi_handle halHandle = getWifiHandle(env, cls);
wifi_cleanup(halHandle, android_net_wifi_hal_cleaned_up_handler);
}
static void android_net_wifi_waitForHalEvents(JNIEnv* env, jclass cls) {
ALOGD("waitForHalEvents called, vm = %p, obj = %p, env = %p", mVM, mCls, env);
wifi_handle halHandle = getWifiHandle(env, cls);
wifi_event_loop(halHandle);
}
static int android_net_wifi_getInterfaces(JNIEnv *env, jclass cls) {
int n = 0;
wifi_handle halHandle = getWifiHandle(env, cls);
wifi_interface_handle *ifaceHandles = NULL;
int result = wifi_get_ifaces(halHandle, &n, &ifaceHandles);
if (result < 0) {
return result;
}
if (n < 0) {
THROW(env, "android_net_wifi_getInterfaces no interfaces");
return 0;
}
if (ifaceHandles == NULL) {
THROW(env, "android_net_wifi_getInterfaces null interface array");
return 0;
}
if (n > 8) {
THROW(env, "Too many interfaces");
return 0;
}
jlongArray array = (env)->NewLongArray(n);
if (array == NULL) {
THROW(env, "Error in accessing array");
return 0;
}
jlong elems[8];
for (int i = 0; i < n; i++) {
elems[i] = reinterpret_cast<jlong>(ifaceHandles[i]);
}
env->SetLongArrayRegion(array, 0, n, elems);
setStaticLongArrayField(env, cls, WifiIfaceHandleVarName, array);
return (result < 0) ? result : n;
}
static jstring android_net_wifi_getInterfaceName(JNIEnv *env, jclass cls, jint i) {
char buf[EVENT_BUF_SIZE];
jlong value = getStaticLongArrayField(env, cls, WifiIfaceHandleVarName, i);
wifi_interface_handle handle = (wifi_interface_handle) value;
int result = ::wifi_get_iface_name(handle, buf, sizeof(buf));
if (result < 0) {
return NULL;
} else {
return env->NewStringUTF(buf);
}
}
static void onScanResultsAvailable(wifi_request_id id, unsigned num_results) {
JNIEnv *env = NULL;
mVM->AttachCurrentThread(&env, NULL);
ALOGD("onScanResultsAvailable called, vm = %p, obj = %p, env = %p", mVM, mCls, env);
reportEvent(env, mCls, "onScanResultsAvailable", "(I)V", id);
}
static void onScanEvent(wifi_scan_event event, unsigned status) {
JNIEnv *env = NULL;
mVM->AttachCurrentThread(&env, NULL);
ALOGD("onScanStatus called, vm = %p, obj = %p, env = %p", mVM, mCls, env);
reportEvent(env, mCls, "onScanStatus", "(I)V", status);
}
static void onFullScanResult(wifi_request_id id, wifi_scan_result *result) {
JNIEnv *env = NULL;
mVM->AttachCurrentThread(&env, NULL);
ALOGD("onFullScanResult called, vm = %p, obj = %p, env = %p", mVM, mCls, env);
jobject scanResult = createScanResult(env, result);
ALOGD("Creating a byte array of length %d", result->ie_length);
jbyteArray elements = env->NewByteArray(result->ie_length);
if (elements == NULL) {
ALOGE("Error in allocating array");
return;
}
ALOGE("Setting byte array");
jbyte *bytes = (jbyte *)&(result->ie_data[0]);
env->SetByteArrayRegion(elements, 0, result->ie_length, bytes);
ALOGE("Returning result");
reportEvent(env, mCls, "onFullScanResult", "(ILandroid/net/wifi/ScanResult;[B)V", id,
scanResult, elements);
env->DeleteLocalRef(scanResult);
env->DeleteLocalRef(elements);
}
static jboolean android_net_wifi_startScan(
JNIEnv *env, jclass cls, jint iface, jint id, jobject settings) {
wifi_interface_handle handle = getIfaceHandle(env, cls, iface);
ALOGD("starting scan on interface[%d] = %p", iface, handle);
wifi_scan_cmd_params params;
memset(¶ms, 0, sizeof(params));
params.base_period = getIntField(env, settings, "base_period_ms");
params.max_ap_per_scan = getIntField(env, settings, "max_ap_per_scan");
params.report_threshold = getIntField(env, settings, "report_threshold");
ALOGD("Initialized common fields %d, %d, %d", params.base_period,
params.max_ap_per_scan, params.report_threshold);
const char *bucket_array_type = "[Lcom/android/server/wifi/WifiNative$BucketSettings;";
const char *channel_array_type = "[Lcom/android/server/wifi/WifiNative$ChannelSettings;";
jobjectArray buckets = (jobjectArray)getObjectField(env, settings, "buckets", bucket_array_type);
params.num_buckets = getIntField(env, settings, "num_buckets");
ALOGD("Initialized num_buckets to %d", params.num_buckets);
for (int i = 0; i < params.num_buckets; i++) {
jobject bucket = getObjectArrayField(env, settings, "buckets", bucket_array_type, i);
params.buckets[i].bucket = getIntField(env, bucket, "bucket");
params.buckets[i].band = (wifi_band) getIntField(env, bucket, "band");
params.buckets[i].period = getIntField(env, bucket, "period_ms");
ALOGD("Initialized common bucket fields %d:%d:%d", params.buckets[i].bucket,
params.buckets[i].band, params.buckets[i].period);
int report_events = getIntField(env, bucket, "report_events");
params.buckets[i].report_events = report_events;
ALOGD("Initialized report events to %d", params.buckets[i].report_events);
jobjectArray channels = (jobjectArray)getObjectField(
env, bucket, "channels", channel_array_type);
params.buckets[i].num_channels = getIntField(env, bucket, "num_channels");
ALOGD("Initialized num_channels to %d", params.buckets[i].num_channels);
for (int j = 0; j < params.buckets[i].num_channels; j++) {
jobject channel = getObjectArrayField(env, bucket, "channels", channel_array_type, j);
params.buckets[i].channels[j].channel = getIntField(env, channel, "frequency");
params.buckets[i].channels[j].dwellTimeMs = getIntField(env, channel, "dwell_time_ms");
bool passive = getBoolField(env, channel, "passive");
params.buckets[i].channels[j].passive = (passive ? 1 : 0);
ALOGD("Initialized channel %d", params.buckets[i].channels[j].channel);
}
}
ALOGD("Initialized all fields");
wifi_scan_result_handler handler;
memset(&handler, 0, sizeof(handler));
handler.on_scan_results_available = &onScanResultsAvailable;
handler.on_full_scan_result = &onFullScanResult;
handler.on_scan_event = &onScanEvent;
return wifi_start_gscan(id, handle, params, handler) == WIFI_SUCCESS;
}
static jboolean android_net_wifi_stopScan(JNIEnv *env, jclass cls, jint iface, jint id) {
wifi_interface_handle handle = getIfaceHandle(env, cls, iface);
ALOGD("stopping scan on interface[%d] = %p", iface, handle);
return wifi_stop_gscan(id, handle) == WIFI_SUCCESS;
}
static jobject android_net_wifi_getScanResults(
JNIEnv *env, jclass cls, jint iface, jboolean flush) {
wifi_scan_result results[256];
int num_results = 256;
wifi_interface_handle handle = getIfaceHandle(env, cls, iface);
ALOGD("getting scan results on interface[%d] = %p", iface, handle);
int result = wifi_get_cached_gscan_results(handle, 1, num_results, results, &num_results);
if (result == WIFI_SUCCESS) {
jclass clsScanResult = (env)->FindClass("android/net/wifi/ScanResult");
if (clsScanResult == NULL) {
ALOGE("Error in accessing class");
return NULL;
}
jobjectArray scanResults = env->NewObjectArray(num_results, clsScanResult, NULL);
if (scanResults == NULL) {
ALOGE("Error in allocating array");
return NULL;
}
for (int i = 0; i < num_results; i++) {
jobject scanResult = createObject(env, "android/net/wifi/ScanResult");
if (scanResult == NULL) {
ALOGE("Error in creating scan result");
return NULL;
}
setStringField(env, scanResult, "SSID", results[i].ssid);
char bssid[32];
sprintf(bssid, "%02x:%02x:%02x:%02x:%02x:%02x", results[i].bssid[0],
results[i].bssid[1], results[i].bssid[2], results[i].bssid[3],
results[i].bssid[4], results[i].bssid[5]);
setStringField(env, scanResult, "BSSID", bssid);
setIntField(env, scanResult, "level", results[i].rssi);
setIntField(env, scanResult, "frequency", results[i].channel);
setLongField(env, scanResult, "timestamp", results[i].ts);
env->SetObjectArrayElement(scanResults, i, scanResult);
env->DeleteLocalRef(scanResult);
}
return scanResults;
} else {
return NULL;
}
}
static jboolean android_net_wifi_getScanCapabilities(
JNIEnv *env, jclass cls, jint iface, jobject capabilities) {
wifi_interface_handle handle = getIfaceHandle(env, cls, iface);
ALOGD("getting scan capabilities on interface[%d] = %p", iface, handle);
wifi_gscan_capabilities c;
memset(&c, 0, sizeof(c));
int result = wifi_get_gscan_capabilities(handle, &c);
if (result != WIFI_SUCCESS) {
ALOGD("failed to get capabilities : %d", result);
return JNI_FALSE;
}
setIntField(env, capabilities, "max_scan_cache_size", c.max_scan_cache_size);
setIntField(env, capabilities, "max_scan_buckets", c.max_scan_buckets);
setIntField(env, capabilities, "max_ap_cache_per_scan", c.max_ap_cache_per_scan);
setIntField(env, capabilities, "max_rssi_sample_size", c.max_rssi_sample_size);
setIntField(env, capabilities, "max_scan_reporting_threshold", c.max_scan_reporting_threshold);
setIntField(env, capabilities, "max_hotlist_aps", c.max_hotlist_aps);
setIntField(env, capabilities, "max_significant_wifi_change_aps",
c.max_significant_wifi_change_aps);
return JNI_TRUE;
}
static byte parseHexChar(char ch) {
if (isdigit(ch))
return ch - '0';
else if ('A' <= ch && ch <= 'F')
return ch - 'A' + 10;
else if ('a' <= ch && ch <= 'f')
return ch - 'a' + 10;
else {
ALOGE("invalid character in bssid %c", ch);
return 0;
}
}
static byte parseHexByte(const char * &str) {
byte b = parseHexChar(str[0]);
if (str[1] == ':' || str[1] == '\0') {
str += 2;
return b;
} else {
b = b << 4 | parseHexChar(str[1]);
str += 3;
return b;
}
}
static void parseMacAddress(const char *str, mac_addr addr) {
addr[0] = parseHexByte(str);
addr[1] = parseHexByte(str);
addr[2] = parseHexByte(str);
addr[3] = parseHexByte(str);
addr[4] = parseHexByte(str);
addr[5] = parseHexByte(str);
}
static bool parseMacAddress(JNIEnv *env, jobject obj, mac_addr addr) {
jstring macAddrString = (jstring) getObjectField(
env, obj, "bssid", "Ljava/lang/String;");
if (macAddrString == NULL) {
ALOGE("Error getting bssid field");
return false;
}
const char *bssid = env->GetStringUTFChars(macAddrString, NULL);
if (bssid == NULL) {
ALOGE("Error getting bssid");
return false;
}
parseMacAddress(bssid, addr);
return true;
}
static void onHotlistApFound(wifi_request_id id,
unsigned num_results, wifi_scan_result *results) {
JNIEnv *env = NULL;
mVM->AttachCurrentThread(&env, NULL);
ALOGD("onHotlistApFound called, vm = %p, obj = %p, env = %p, num_results = %d",
mVM, mCls, env, num_results);
jclass clsScanResult = (env)->FindClass("android/net/wifi/ScanResult");
if (clsScanResult == NULL) {
ALOGE("Error in accessing class");
return;
}
jobjectArray scanResults = env->NewObjectArray(num_results, clsScanResult, NULL);
if (scanResults == NULL) {
ALOGE("Error in allocating array");
return;
}
for (unsigned i = 0; i < num_results; i++) {
jobject scanResult = createObject(env, "android/net/wifi/ScanResult");
if (scanResult == NULL) {
ALOGE("Error in creating scan result");
return;
}
setStringField(env, scanResult, "SSID", results[i].ssid);
char bssid[32];
sprintf(bssid, "%02x:%02x:%02x:%02x:%02x:%02x", results[i].bssid[0], results[i].bssid[1],
results[i].bssid[2], results[i].bssid[3], results[i].bssid[4], results[i].bssid[5]);
setStringField(env, scanResult, "BSSID", bssid);
setIntField(env, scanResult, "level", results[i].rssi);
setIntField(env, scanResult, "frequency", results[i].channel);
setLongField(env, scanResult, "timestamp", results[i].ts);
env->SetObjectArrayElement(scanResults, i, scanResult);
ALOGD("Found AP %32s %s", results[i].ssid, bssid);
}
reportEvent(env, mCls, "onHotlistApFound", "(I[Landroid/net/wifi/ScanResult;)V",
id, scanResults);
}
static jboolean android_net_wifi_setHotlist(
JNIEnv *env, jclass cls, jint iface, jint id, jobject ap) {
wifi_interface_handle handle = getIfaceHandle(env, cls, iface);
ALOGD("setting hotlist on interface[%d] = %p", iface, handle);
wifi_bssid_hotlist_params params;
memset(¶ms, 0, sizeof(params));
jobjectArray array = (jobjectArray) getObjectField(env, ap,
"bssidInfos", "[Landroid/net/wifi/WifiScanner$BssidInfo;");
params.num_ap = env->GetArrayLength(array);
if (params.num_ap == 0) {
ALOGE("Error in accesing array");
return false;
}
for (int i = 0; i < params.num_ap; i++) {
jobject objAp = env->GetObjectArrayElement(array, i);
jstring macAddrString = (jstring) getObjectField(
env, objAp, "bssid", "Ljava/lang/String;");
if (macAddrString == NULL) {
ALOGE("Error getting bssid field");
return false;
}
const char *bssid = env->GetStringUTFChars(macAddrString, NULL);
if (bssid == NULL) {
ALOGE("Error getting bssid");
return false;
}
parseMacAddress(bssid, params.ap[i].bssid);
mac_addr addr;
memcpy(addr, params.ap[i].bssid, sizeof(mac_addr));
char bssidOut[32];
sprintf(bssidOut, "%0x:%0x:%0x:%0x:%0x:%0x", addr[0], addr[1],
addr[2], addr[3], addr[4], addr[5]);
ALOGD("Added bssid %s", bssidOut);
params.ap[i].low = getIntField(env, objAp, "low");
params.ap[i].high = getIntField(env, objAp, "high");
}
wifi_hotlist_ap_found_handler handler;
memset(&handler, 0, sizeof(handler));
handler.on_hotlist_ap_found = &onHotlistApFound;
return wifi_set_bssid_hotlist(id, handle, params, handler) == WIFI_SUCCESS;
}
static jboolean android_net_wifi_resetHotlist(
JNIEnv *env, jclass cls, jint iface, jint id) {
wifi_interface_handle handle = getIfaceHandle(env, cls, iface);
ALOGD("resetting hotlist on interface[%d] = %p", iface, handle);
return wifi_reset_bssid_hotlist(id, handle) == WIFI_SUCCESS;
}
void onSignificantWifiChange(wifi_request_id id,
unsigned num_results, wifi_significant_change_result **results) {
JNIEnv *env = NULL;
mVM->AttachCurrentThread(&env, NULL);
ALOGD("onSignificantWifiChange called, vm = %p, obj = %p, env = %p", mVM, mCls, env);
jclass clsScanResult = (env)->FindClass("android/net/wifi/ScanResult");
if (clsScanResult == NULL) {
ALOGE("Error in accessing class");
return;
}
jobjectArray scanResults = env->NewObjectArray(num_results, clsScanResult, NULL);
if (scanResults == NULL) {
ALOGE("Error in allocating array");
return;
}
for (unsigned i = 0; i < num_results; i++) {
wifi_significant_change_result result = *(results[i]);
jobject scanResult = createObject(env, "android/net/wifi/ScanResult");
if (scanResult == NULL) {
ALOGE("Error in creating scan result");
return;
}
// setStringField(env, scanResult, "SSID", results[i].ssid);
char bssid[32];
sprintf(bssid, "%02x:%02x:%02x:%02x:%02x:%02x", result.bssid[0], result.bssid[1],
result.bssid[2], result.bssid[3], result.bssid[4], result.bssid[5]);
setStringField(env, scanResult, "BSSID", bssid);
setIntField(env, scanResult, "level", result.rssi[0]);
setIntField(env, scanResult, "frequency", result.channel);
// setLongField(env, scanResult, "timestamp", result.ts);
env->SetObjectArrayElement(scanResults, i, scanResult);
}
reportEvent(env, mCls, "onSignificantWifiChange", "(I[Landroid/net/wifi/ScanResult;)V",
id, scanResults);
}
static jboolean android_net_wifi_trackSignificantWifiChange(
JNIEnv *env, jclass cls, jint iface, jint id, jobject settings) {
wifi_interface_handle handle = getIfaceHandle(env, cls, iface);
ALOGD("tracking significant wifi change on interface[%d] = %p", iface, handle);
wifi_significant_change_params params;
memset(¶ms, 0, sizeof(params));
params.rssi_sample_size = getIntField(env, settings, "rssiSampleSize");
params.lost_ap_sample_size = getIntField(env, settings, "lostApSampleSize");
params.min_breaching = getIntField(env, settings, "minApsBreachingThreshold");
const char *bssid_info_array_type = "[Landroid/net/wifi/WifiScanner$BssidInfo;";
jobjectArray bssids = (jobjectArray)getObjectField(
env, settings, "bssidInfos", bssid_info_array_type);
params.num_ap = env->GetArrayLength(bssids);
if (params.num_ap == 0) {
ALOGE("Error in accessing array");
return false;
}
ALOGD("Initialized common fields %d, %d, %d, %d", params.rssi_sample_size,
params.lost_ap_sample_size, params.min_breaching, params.num_ap);
for (int i = 0; i < params.num_ap; i++) {
jobject objAp = env->GetObjectArrayElement(bssids, i);
jstring macAddrString = (jstring) getObjectField(
env, objAp, "bssid", "Ljava/lang/String;");
if (macAddrString == NULL) {
ALOGE("Error getting bssid field");
return false;
}
const char *bssid = env->GetStringUTFChars(macAddrString, NULL);
if (bssid == NULL) {
ALOGE("Error getting bssid");
return false;
}
mac_addr addr;
parseMacAddress(bssid, addr);
memcpy(params.ap[i].bssid, addr, sizeof(mac_addr));
char bssidOut[32];
sprintf(bssidOut, "%02x:%02x:%02x:%02x:%02x:%02x", addr[0], addr[1],
addr[2], addr[3], addr[4], addr[5]);
params.ap[i].low = getIntField(env, objAp, "low");
params.ap[i].high = getIntField(env, objAp, "high");
ALOGD("Added bssid %s, [%04d, %04d]", bssidOut, params.ap[i].low, params.ap[i].high);
}
ALOGD("Added %d bssids", params.num_ap);
wifi_significant_change_handler handler;
memset(&handler, 0, sizeof(handler));
handler.on_significant_change = &onSignificantWifiChange;
return wifi_set_significant_change_handler(id, handle, params, handler) == WIFI_SUCCESS;
}
static jboolean android_net_wifi_untrackSignificantWifiChange(
JNIEnv *env, jclass cls, jint iface, jint id) {
wifi_interface_handle handle = getIfaceHandle(env, cls, iface);
ALOGD("resetting significant wifi change on interface[%d] = %p", iface, handle);
return wifi_reset_significant_change_handler(id, handle) == WIFI_SUCCESS;
}
wifi_iface_stat link_stat;
wifi_radio_stat radio_stat; // L release has support for only one radio
void onLinkStatsResults(wifi_request_id id, wifi_iface_stat *iface_stat,
int num_radios, wifi_radio_stat *radio_stats)
{
if (iface_stat != 0) {
memcpy(&link_stat, iface_stat, sizeof(wifi_iface_stat));
} else {
memset(&link_stat, 0, sizeof(wifi_iface_stat));
}
if (num_radios > 0 && radio_stats != 0) {
memcpy(&radio_stat, radio_stats, sizeof(wifi_radio_stat));
} else {
memset(&radio_stat, 0, sizeof(wifi_radio_stat));
}
}
static jobject android_net_wifi_getLinkLayerStats (JNIEnv *env, jclass cls, jint iface) {
wifi_stats_result_handler handler;
memset(&handler, 0, sizeof(handler));
handler.on_link_stats_results = &onLinkStatsResults;
wifi_interface_handle handle = getIfaceHandle(env, cls, iface);
int result = wifi_get_link_stats(0, handle, handler);
if (result < 0) {
ALOGE("android_net_wifi_getLinkLayerStats: failed to get link statistics\n");
return NULL;
}
jobject wifiLinkLayerStats = createObject(env, "android/net/wifi/WifiLinkLayerStats");
if (wifiLinkLayerStats == NULL) {
ALOGE("Error in allocating wifiLinkLayerStats");
return NULL;
}
setIntField(env, wifiLinkLayerStats, "beacon_rx", link_stat.beacon_rx);
setIntField(env, wifiLinkLayerStats, "rssi_mgmt", link_stat.rssi_mgmt);
setLongField(env, wifiLinkLayerStats, "rxmpdu_be", link_stat.ac[WIFI_AC_BE].rx_mpdu);
setLongField(env, wifiLinkLayerStats, "rxmpdu_bk", link_stat.ac[WIFI_AC_BK].rx_mpdu);
setLongField(env, wifiLinkLayerStats, "rxmpdu_vi", link_stat.ac[WIFI_AC_VI].rx_mpdu);
setLongField(env, wifiLinkLayerStats, "rxmpdu_vo", link_stat.ac[WIFI_AC_VO].rx_mpdu);
setLongField(env, wifiLinkLayerStats, "txmpdu_be", link_stat.ac[WIFI_AC_BE].tx_mpdu);
setLongField(env, wifiLinkLayerStats, "txmpdu_bk", link_stat.ac[WIFI_AC_BK].tx_mpdu);
setLongField(env, wifiLinkLayerStats, "txmpdu_vi", link_stat.ac[WIFI_AC_VI].tx_mpdu);
setLongField(env, wifiLinkLayerStats, "txmpdu_vo", link_stat.ac[WIFI_AC_VO].tx_mpdu);
setLongField(env, wifiLinkLayerStats, "lostmpdu_be", link_stat.ac[WIFI_AC_BE].mpdu_lost);
setLongField(env, wifiLinkLayerStats, "lostmpdu_bk", link_stat.ac[WIFI_AC_BK].mpdu_lost);
setLongField(env, wifiLinkLayerStats, "lostmpdu_vi", link_stat.ac[WIFI_AC_VI].mpdu_lost);
setLongField(env, wifiLinkLayerStats, "lostmpdu_vo", link_stat.ac[WIFI_AC_VO].mpdu_lost);
setLongField(env, wifiLinkLayerStats, "retries_be", link_stat.ac[WIFI_AC_BE].retries);
setLongField(env, wifiLinkLayerStats, "retries_bk", link_stat.ac[WIFI_AC_BK].retries);
setLongField(env, wifiLinkLayerStats, "retries_vi", link_stat.ac[WIFI_AC_VI].retries);
setLongField(env, wifiLinkLayerStats, "retries_vo", link_stat.ac[WIFI_AC_VO].retries);
setIntField(env, wifiLinkLayerStats, "on_time", radio_stat.on_time);
setIntField(env, wifiLinkLayerStats, "tx_time", radio_stat.tx_time);
setIntField(env, wifiLinkLayerStats, "rx_time", radio_stat.rx_time);
setIntField(env, wifiLinkLayerStats, "on_time_scan", radio_stat.on_time_scan);
return wifiLinkLayerStats;
}
static jint android_net_wifi_getSupportedFeatures(JNIEnv *env, jclass cls, jint iface) {
wifi_interface_handle handle = getIfaceHandle(env, cls, iface);
feature_set set = 0;
wifi_error result = WIFI_SUCCESS;
/*
set = WIFI_FEATURE_INFRA
| WIFI_FEATURE_INFRA_5G
| WIFI_FEATURE_HOTSPOT
| WIFI_FEATURE_P2P
| WIFI_FEATURE_SOFT_AP
| WIFI_FEATURE_GSCAN
| WIFI_FEATURE_PNO
| WIFI_FEATURE_TDLS
| WIFI_FEATURE_EPR;
*/
result = wifi_get_supported_feature_set(handle, &set);
if (result == WIFI_SUCCESS) {
/* Temporary workaround for RTT capability */
//M: no need to workaround
//set = set | WIFI_FEATURE_D2AP_RTT;
ALOGD("wifi_get_supported_feature_set returned set = 0x%x", set);
return set;
} else {
ALOGD("wifi_get_supported_feature_set returned error = 0x%x", result);
return 0;
}
}
static void onRttResults(wifi_request_id id, unsigned num_results, wifi_rtt_result results[]) {
JNIEnv *env = NULL;
mVM->AttachCurrentThread(&env, NULL);
ALOGD("onRttResults called, vm = %p, obj = %p, env = %p", mVM, mCls, env);
jclass clsRttResult = (env)->FindClass("android/net/wifi/RttManager$RttResult");
if (clsRttResult == NULL) {
ALOGE("Error in accessing class");
return;
}
jobjectArray rttResults = env->NewObjectArray(num_results, clsRttResult, NULL);
if (rttResults == NULL) {
ALOGE("Error in allocating array");
return;
}
for (unsigned i = 0; i < num_results; i++) {
wifi_rtt_result& result = results[i];
jobject rttResult = createObject(env, "android/net/wifi/RttManager$RttResult");
if (rttResult == NULL) {
ALOGE("Error in creating rtt result");
return;
}
char bssid[32];
sprintf(bssid, "%02x:%02x:%02x:%02x:%02x:%02x", result.addr[0], result.addr[1],
result.addr[2], result.addr[3], result.addr[4], result.addr[5]);
setStringField(env, rttResult, "bssid", bssid);
setIntField(env, rttResult, "status", result.status);
setIntField(env, rttResult, "requestType", result.type);
setLongField(env, rttResult, "ts", result.ts);
setIntField(env, rttResult, "rssi", result.rssi);
setIntField(env, rttResult, "rssi_spread", result.rssi_spread);
setIntField(env, rttResult, "tx_rate", result.tx_rate.bitrate);
setLongField(env, rttResult, "rtt_ns", result.rtt);
setLongField(env, rttResult, "rtt_sd_ns", result.rtt_sd);
setLongField(env, rttResult, "rtt_spread_ns", result.rtt_spread);
setIntField(env, rttResult, "distance_cm", result.distance);
setIntField(env, rttResult, "distance_sd_cm", result.distance_sd);
setIntField(env, rttResult, "distance_spread_cm", result.distance_spread);
env->SetObjectArrayElement(rttResults, i, rttResult);
}
reportEvent(env, mCls, "onRttResults", "(I[Landroid/net/wifi/RttManager$RttResult;)V",
id, rttResults);
}
const int MaxRttConfigs = 16;
static jboolean android_net_wifi_requestRange(
JNIEnv *env, jclass cls, jint iface, jint id, jobject params) {
wifi_interface_handle handle = getIfaceHandle(env, cls, iface);
ALOGD("sending rtt request [%d] = %p", id, handle);
wifi_rtt_config configs[MaxRttConfigs];
memset(&configs, 0, sizeof(configs));
int len = env->GetArrayLength((jobjectArray)params);
if (len > MaxRttConfigs) {
return false;
}
for (int i = 0; i < len; i++) {
jobject param = env->GetObjectArrayElement((jobjectArray)params, i);
if (param == NULL) {
ALOGD("could not get element %d", i);
continue;
}
wifi_rtt_config &config = configs[i];
parseMacAddress(env, param, config.addr);
config.type = (wifi_rtt_type)getIntField(env, param, "requestType");
config.peer = (wifi_peer_type)getIntField(env, param, "deviceType");
config.channel.center_freq = getIntField(env, param, "frequency");
config.channel.width = (wifi_channel_width)getIntField(env, param, "channelWidth");
config.num_samples_per_measurement = getIntField(env, param, "num_samples");
config.num_retries_per_measurement = getIntField(env, param, "num_retries");
}
wifi_rtt_event_handler handler;
handler.on_rtt_results = &onRttResults;
return wifi_rtt_range_request(id, handle, len, configs, handler) == WIFI_SUCCESS;
}
static jboolean android_net_wifi_cancelRange(
JNIEnv *env, jclass cls, jint iface, jint id, jobject params) {
wifi_interface_handle handle = getIfaceHandle(env, cls, iface);
ALOGD("cancelling rtt request [%d] = %p", id, handle);
mac_addr addrs[MaxRttConfigs];
memset(&addrs, 0, sizeof(addrs));
int len = env->GetArrayLength((jobjectArray)params);
if (len > MaxRttConfigs) {
return false;
}
for (int i = 0; i < len; i++) {
jobject param = env->GetObjectArrayElement((jobjectArray)params, i);
if (param == NULL) {
ALOGD("could not get element %d", i);
continue;
}
parseMacAddress(env, param, addrs[i]);
}
return wifi_rtt_range_cancel(id, handle, len, addrs) == WIFI_SUCCESS;
}
static jboolean android_net_wifi_setScanningMacOui(JNIEnv *env, jclass cls,
jint iface, jbyteArray param) {
wifi_interface_handle handle = getIfaceHandle(env, cls, iface);
ALOGD("setting scan oui %p", handle);
static const unsigned oui_len = 3; /* OUI is upper 3 bytes of mac_address */
int len = env->GetArrayLength(param);
if (len != oui_len) {
ALOGE("invalid oui length %d", len);
return false;
}
jbyte* bytes = env->GetByteArrayElements(param, NULL);
if (bytes == NULL) {
ALOGE("failed to get array");
return false;
}
return WIFI_SUCCESS;
// return wifi_set_scanning_mac_oui(handle, (byte *)bytes) == WIFI_SUCCESS;
}
static jboolean android_net_wifi_setNetworkVariableCommand(JNIEnv* env,
jobject,
jstring jIface,
jint netId,
jstring javaName,
jstring javaValue)
{
char reply[REPLY_LEN] = {0};
int isFound = 0;
char wrapbuf[BUF_SIZE];
char chartmp;
char charout[BUF_SIZE];
const char* charptr;
unsigned short* mptr;
int n=0;
unsigned int i=0;
unsigned int j=0;
ScopedUtfChars name(env, javaName);
if (name.c_str() == NULL) {
return JNI_FALSE;
}
ScopedUtfChars value(env, javaValue);
if (value.c_str() == NULL) {
return JNI_FALSE;
}
ScopedUtfChars ifname(env, jIface);
if (ifname.c_str() == NULL) {
return JNI_FALSE;
}
XLOGD("setNetworkVariableCommand, name:%s, value:%s, netId:%d", name.c_str(), value.c_str(), netId);
struct accessPointObjectItem *pTmpItemNode = NULL;
if (0 == strcmp(name.c_str(), "bssid")) {
if (NULL == g_pCurrentSSID) {
XLOGE("g_pCurrentSSID is NULL");
g_pCurrentSSID = new String8();
if (NULL == g_pCurrentSSID) {
XLOGE("Failed to allocate memory for g_pCurrentSSID!");
return JNI_FALSE;
}
}
pthread_mutex_lock(g_pItemListMutex);
pTmpItemNode = g_pItemList;
if (NULL == pTmpItemNode) {
XLOGD("g_pItemList is NULL");
}
while (pTmpItemNode) {
if (pTmpItemNode->bssid && (0 == strcmp(pTmpItemNode->bssid->string(), value.c_str())) && pTmpItemNode->ssid) {
*g_pCurrentSSID = *(pTmpItemNode->ssid);
g_isChSSID = pTmpItemNode->isCh;
isFound = 1;
XLOGD("Found bssid:%s, g_pCurrentSSID:%s, g_isChSSID:%d", pTmpItemNode->bssid->string(), g_pCurrentSSID->string(), g_isChSSID);
break;
}
pTmpItemNode = pTmpItemNode->pNext;
}
pthread_mutex_unlock(g_pItemListMutex);
if(isFound == 0 && 0 == strcmp(value.c_str(), "any")) {
g_isAnyBSSID = true;
}else {
g_isAnyBSSID = false;
}
}
if (0 == strcmp(name.c_str(), "ssid") && g_isChSSID) {
if (DBG) {
ALOGD("g_pCurrentSSID->string: %s", g_pCurrentSSID->string());
}
g_isChSSID = false;
g_isAnyBSSID = false;
return doBooleanCommandTranslated("OK", "IFNAME=%s SET_NETWORK %d %s \"%s\"",ifname.c_str(), netId, name.c_str(), g_pCurrentSSID->string());
}else if(0 == strcmp(name.c_str(), "ssid") && g_isAnyBSSID && !g_isChSSID) {
///M: ALPS01770979 auto join cound set BSSID = any, so no isCh would be found
pthread_mutex_lock(g_pItemListMutex);
XLOGD("BSSID is any");
pTmpItemNode = g_pItemList;
if (NULL == pTmpItemNode) {
XLOGD("g_pItemList is NULL");
}
while (pTmpItemNode) {
if(pTmpItemNode->isCh) {
if (DBG) {
XLOGD("check %s", pTmpItemNode->encossid->string());
XLOGD("with %s", value.c_str());
const char* encodestr = pTmpItemNode->encossid->string();
for(unsigned int v =0;v< strlen(encodestr) ; v++){
XLOGD("encodestr[%d]:%c, 0x%x", v, encodestr [v], encodestr [v]);
}
}
memset(&wrapbuf, 0, sizeof(wrapbuf));
charptr = pTmpItemNode->encossid->string();
j=0;
for(i=0;i < strlen(pTmpItemNode->encossid->string()); ++i){
chartmp = charptr[i]>>4 & 0xF;
memset(&charout, 0, sizeof(charout));
n = sprintf(charout,"%x",chartmp);
wrapbuf[j++] = charout[0];
chartmp = charptr[i] & 0xF;
memset(&charout, 0, sizeof(charout));
n = sprintf(charout,"%x",chartmp);
wrapbuf[j++] = charout[0];
}
if (DBG) {
const char* candidatestr = wrapbuf;
for(unsigned int z =0;z< strlen(value.c_str()) ; z++){
XLOGD("candidatestr[%d]:%c, 0x%x", z, candidatestr[z], candidatestr[z]);
}
n = strcmp(pTmpItemNode->encossid->string(), value.c_str());
XLOGD("n=%d len=%d len2=%d",n, strlen(wrapbuf),strlen(value.c_str()));
}
if (pTmpItemNode->encossid && (0 == strcmp(wrapbuf, value.c_str())) && pTmpItemNode->ssid) {
isFound =1;
*g_pCurrentSSID = *(pTmpItemNode->ssid);
g_isChSSID = pTmpItemNode->isCh;
XLOGD("Found any bssid: ssid:%s, g_pCurrentSSID:%s, g_isChSSID:%d", pTmpItemNode->bssid->string(), g_pCurrentSSID->string(), g_isChSSID);
break;
}
}
pTmpItemNode = pTmpItemNode->pNext;
}
g_isAnyBSSID = false;
pthread_mutex_unlock(g_pItemListMutex);
if(g_isChSSID && isFound) {
g_isChSSID = false;
return doBooleanCommandTranslated("OK", "IFNAME=%s SET_NETWORK %d %s \"%s\"",ifname.c_str(), netId, name.c_str(), g_pCurrentSSID->string());
} else {
g_isChSSID = false;
return doBooleanCommandTranslated("OK", "IFNAME=%s SET_NETWORK %d %s %s", ifname.c_str(),netId, name.c_str(), value.c_str());
}
}
else{
return doBooleanCommandTranslated("OK", "IFNAME=%s SET_NETWORK %d %s %s", ifname.c_str(),netId, name.c_str(), value.c_str());
}
}
static jintArray android_net_wifi_getValidChannels(JNIEnv *env, jclass cls,
jint iface, jint band) {
wifi_interface_handle handle = getIfaceHandle(env, cls, iface);
ALOGD("getting valid channels %p", handle);
static const int MaxChannels = 64;
wifi_channel channels[64];
int num_channels = 0;
wifi_error result = wifi_get_valid_channels(handle, band, MaxChannels,
channels, &num_channels);
if (result == WIFI_SUCCESS) {
jintArray channelArray = env->NewIntArray(num_channels);
if (channelArray == NULL) {
ALOGE("failed to allocate channel list");
return NULL;
}
env->SetIntArrayRegion(channelArray, 0, num_channels, channels);
return channelArray;
} else {
ALOGE("failed to get channel list : %d", result);
return NULL;
}
}
static jboolean android_net_wifi_setTxPowerEnabledCommand(JNIEnv* env, jobject clazz, jboolean enable)
{
jboolean result = JNI_FALSE;
struct iwreq wrq;
int skfd;
int32_t au4TxPwr[2] = {4, 1};
au4TxPwr[1] = enable ? 1 : 0;
/* initialize socket */
skfd = socket(PF_INET, SOCK_DGRAM, 0);
if (skfd < 0) {
XLOGE("Open socket failed");
return result;
}
/* initliaze WEXT request */
wrq.u.data.pointer = &(au4TxPwr[0]);
wrq.u.data.length = 2;
wrq.u.data.flags = PRIV_CMD_SET_TX_POWER;
strncpy(wrq.ifr_name, "wlan0", IFNAMSIZ);
/* do IOCTL */
if (ioctl(skfd, IOCTL_SET_INTS, &wrq) < 0) {
XLOGE("setTxPowerEnabledCommand failed");
} else {
XLOGD("setTxPowerEnabledCommand succeed");
result = JNI_TRUE;
}
close(skfd);
return result;
}
static jboolean android_net_wifi_setTxPowerCommand(JNIEnv* env, jobject clazz, jint offset)
{
jboolean result = JNI_FALSE;
struct iwreq wrq;
int skfd;
int32_t au4TxPwr[4] = {0, 0, 0, 0};
au4TxPwr[3] = offset;
/* initialize socket */
skfd = socket(PF_INET, SOCK_DGRAM, 0);
if (skfd < 0) {
XLOGE("Open socket failed");
return result;
}
/* initliaze WEXT request */
wrq.u.data.pointer = &(au4TxPwr[0]);
wrq.u.data.length = 4;
wrq.u.data.flags = PRIV_CMD_SET_TX_POWER;
strncpy(wrq.ifr_name, "wlan0", IFNAMSIZ);
/* do IOCTL */
if (ioctl(skfd, IOCTL_SET_INTS, &wrq) < 0) {
XLOGE("setTxPowerCommand failed");
} else {
XLOGD("setTxPowerCommand succeed");
result = JNI_TRUE;
}
close(skfd);
return result;
}
static jstring android_net_wifi_getStringCredential(JNIEnv* env, jobject)
{
char cred[256] = {0};
size_t cred_len;
int status = ::wifi_build_cred(cred, &cred_len);
return env->NewStringUTF(cred);
}
// ----------------------------------------------------------------------------
/*
* JNI registration.
*/
static JNINativeMethod gWifiMethods[] = {
/* name, signature, funcPtr */
{ "loadDriver", "()Z", (void *)android_net_wifi_loadDriver },
{ "isDriverLoaded", "()Z", (void *)android_net_wifi_isDriverLoaded },
{ "unloadDriver", "()Z", (void *)android_net_wifi_unloadDriver },
{ "startSupplicant", "(Z)Z", (void *)android_net_wifi_startSupplicant },
{ "killSupplicant", "(Z)Z", (void *)android_net_wifi_killSupplicant },
{ "connectToSupplicantNative", "()Z", (void *)android_net_wifi_connectToSupplicant },
{ "closeSupplicantConnectionNative", "()V",
(void *)android_net_wifi_closeSupplicantConnection },
///M: modify API
{ "waitForEventNative", "(Ljava/lang/String;)Ljava/lang/String;", (void*)android_net_wifi_waitForEvent },
{ "doBooleanCommandNative", "(Ljava/lang/String;)Z", (void*)android_net_wifi_doBooleanCommand },
{ "doIntCommandNative", "(Ljava/lang/String;)I", (void*)android_net_wifi_doIntCommand },
{ "doStringCommandNative", "(Ljava/lang/String;)Ljava/lang/String;",
(void*) android_net_wifi_doStringCommand },
{ "startHalNative", "()Z", (void*) android_net_wifi_startHal },
{ "stopHalNative", "()V", (void*) android_net_wifi_stopHal },
{ "waitForHalEventNative", "()V", (void*) android_net_wifi_waitForHalEvents },
{ "getInterfacesNative", "()I", (void*) android_net_wifi_getInterfaces},
{ "getInterfaceNameNative", "(I)Ljava/lang/String;", (void*) android_net_wifi_getInterfaceName},
{ "getScanCapabilitiesNative", "(ILcom/android/server/wifi/WifiNative$ScanCapabilities;)Z",
(void *) android_net_wifi_getScanCapabilities},
{ "startScanNative", "(IILcom/android/server/wifi/WifiNative$ScanSettings;)Z",
(void*) android_net_wifi_startScan},
{ "stopScanNative", "(II)Z", (void*) android_net_wifi_stopScan},
{ "getScanResultsNative", "(IZ)[Landroid/net/wifi/ScanResult;",
(void *) android_net_wifi_getScanResults},
{ "setHotlistNative", "(IILandroid/net/wifi/WifiScanner$HotlistSettings;)Z",
(void*) android_net_wifi_setHotlist},
{ "resetHotlistNative", "(II)Z", (void*) android_net_wifi_resetHotlist},
{ "trackSignificantWifiChangeNative", "(IILandroid/net/wifi/WifiScanner$WifiChangeSettings;)Z",
(void*) android_net_wifi_trackSignificantWifiChange},
{ "untrackSignificantWifiChangeNative", "(II)Z",
(void*) android_net_wifi_untrackSignificantWifiChange},
{ "getWifiLinkLayerStatsNative", "(I)Landroid/net/wifi/WifiLinkLayerStats;",
(void*) android_net_wifi_getLinkLayerStats},
{ "getSupportedFeatureSetNative", "(I)I",
(void*) android_net_wifi_getSupportedFeatures},
{ "requestRangeNative", "(II[Landroid/net/wifi/RttManager$RttParams;)Z",
(void*) android_net_wifi_requestRange},
{ "cancelRangeRequestNative", "(II[Landroid/net/wifi/RttManager$RttParams;)Z",
(void*) android_net_wifi_cancelRange},
{ "setScanningMacOuiNative", "(I[B)Z", (void*) android_net_wifi_setScanningMacOui},
{ "getChannelsForBandNative", "(II)[I", (void*) android_net_wifi_getValidChannels},
///M: add the following
{ "setNetworkVariableCommand", "(Ljava/lang/String;ILjava/lang/String;Ljava/lang/String;)Z",
(void*) android_net_wifi_setNetworkVariableCommand },
{ "setTxPowerEnabled", "(Z)Z", (void*) android_net_wifi_setTxPowerEnabledCommand },
{ "setTxPower", "(I)Z", (void*) android_net_wifi_setTxPowerCommand },
{ "getCredential", "()Ljava/lang/String;", (void*) android_net_wifi_getStringCredential }
};
int register_android_net_wifi_WifiNative(JNIEnv* env) {
return AndroidRuntime::registerNativeMethods(env,
"com/android/server/wifi/WifiNative", gWifiMethods, NELEM(gWifiMethods));
}
/* User to register native functions */
extern "C"
jint Java_com_android_server_wifi_WifiNative_registerNatives(JNIEnv* env, jclass clazz) {
return AndroidRuntime::registerNativeMethods(env,
"com/android/server/wifi/WifiNative", gWifiMethods, NELEM(gWifiMethods));
}
}; // namespace android
|
ad39421848fd624cffb946e2a54631d4212e86c5
|
51407cfb371a65a9ccc8d78fd95b4966d5db6acd
|
/169-Majority Element.cpp
|
34c7d30c96ecf9e3dcf154237eb0d6bde3c4431f
|
[] |
no_license
|
yangmingzi/MyLeetcode
|
80d79849573ea67820bc0bd20701c5c602226829
|
1c0c1121cb0ebbc1a9300b37ce609e682deba650
|
refs/heads/master
| 2020-05-18T06:16:49.438125
| 2015-12-18T09:43:58
| 2015-12-18T09:43:58
| 31,898,329
| 0
| 1
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 3,340
|
cpp
|
169-Majority Element.cpp
|
/*
Given an array of size n, find the majority element.
The majority element is the element that appears more than ⌊ n/2 ⌋ times.
You may assume that the array is non-empty and the majority element always exist in the array.
*/
/*
摩尔投票法 16ms
Boyer–Moore majority vote algorithm
The algorithm is carried out in two steps:
1. Eliminate all elements except one.
Iterating through the array of numbers, maintain a current candidate and a counter initialized to 0.
With the current element x in iteration, update the counter and (possibly) the candidate:
If the counter is 0, set the current candidate to x and the counter to 1.
If the counter is not 0, increment or decrement the counter based on whether x is the current candidate.
2. Determine if the remaining element is a valid majority element.
With the candidate acquired in step 1,
iterate through the array of numbers and count its occurrences.
Determine if the result is more than half of the sequence's length.
If so, the candidate is the majority.
Otherwise, the sequence doesn't contain a majority.
*/
class Solution {
public:
int majorityElement(vector<int>& nums) {
int n=nums.size();
int can=nums[0];
int counter=0;
for(int i=0;i<n;i++){
if(counter==0){
can=nums[i];
counter=1;
}else{
if(nums[i]==can){
counter++;
}else{
counter--;
}
}
}
return can;
}
};
//map法,48ms
class Solution {
public:
int majorityElement(vector<int> &num) {
unordered_map<int,int> map;
for(int i=0;i<num.size();i++){
if(map.find(num[i])==map.end()) map[num[i]]==0;
else{map[num[i]]++;}
if(map[num[i]]>=num.size()/2) return num[i];
}
}
};
/*
The Boyer-Moore Vote Algorithm solves the majority vote problem in linear time [O(n)] and constant memory [O(1)].
The majority vote problem is to determine in any given sequence of choices
whether there is a choice with more occurrences than all the others,
and if so, to determine this choice. Mathematically,
given a finite sequence (length n) of numbers,
the object is to find the majority number defined as the number that appears more than ⌊ n/2 ⌋ times.
维基百科给的摩尔投票法的Java代码
import java.util.*;
public class MajorityVote {
public int majorityElement(int[] num) {
int n = num.length;
int candidate = num[0], counter = 0;
for (int i : num) {
if (counter == 0) {
candidate = i;
counter = 1;
} else {
if (i == candidate) {
counter++;
} else {
counter--;
}
}
}
counter = 0;
for (int i : num) {
if (i == candidate) counter++;
}
if (counter < (n + 1) / 2) return -1;
return candidate;
}
public static void main(String[] args) {
MajorityVote s = new MajorityVote();
System.out.format("%d\n", s.majorityElement(new int[] {1, 2, 3}));
System.out.format("%d\n", s.majorityElement(new int[] {2, 2, 3}));
}
}
*/
|
c206b67ff86acd4f446585939f81a9fbb36a362a
|
2a6219fcd8dc01bd5c15efff4f87b9dfa92432bf
|
/team/第一阶段2/h.cpp
|
2dc9bbd61cff5bb0b4b2c53cfa18043d6f533143
|
[
"MIT"
] |
permissive
|
starry-xin/Decathletes
|
909c5687ac6e68b0e39b798e906a400e25eaecee
|
81b37ebadcc1b60083bb28a1161f2b995ea23656
|
refs/heads/master
| 2020-03-27T01:19:56.773553
| 2018-02-27T10:13:51
| 2018-02-27T10:13:51
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,117
|
cpp
|
h.cpp
|
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const int mod=1e9+7;
struct mat{
ll a[3][3];
};
mat mul(mat a,mat b){
mat ans;
for(int i=0;i<3;i++){
for(int j=0;j<3;j++){
ans.a[i][j]=0;
for(int k=0;k<3;k++){
ans.a[i][j]=(ans.a[i][j]+a.a[i][k]*b.a[k][j])%mod;
}
}
}
return ans;
}
mat power(ll n){
mat base;
for(int i=0;i<3;i++)for(int j=0;j<3;j++)base.a[i][j]=0;
base.a[0][0]=base.a[0][2]=base.a[1][0]=base.a[2][1]=1;
mat ans;
for(int i=0;i<3;i++)for(int j=0;j<3;j++)ans.a[i][j]=(i==j);
while(n){
if(n&1){
ans=mul(ans,base);
}
n>>=1;
base=mul(base,base);
}
return ans;
}
int main()
{
int t;
cin>>t;
while(t--){
ll n;
cin>>n;
mat ans=power(n-2);
ll an=0;
for(int i=0;i<3;i++){
for(int j=0;j<3;j++){
//printf("%d",ans.a[i][j]);
an=(an+ans.a[i][j])%mod;
}
//printf("\n");
}
cout<<an<<endl;
}
}
|
3bc27e9ea315e52bcac0b7e8f62544acd59f1797
|
e2119ddc29757a786c983499629c4f92510658ef
|
/src/Alignment/Multiple/ParallelProbabilisticModel.cpp
|
98a903f814c12900dac65f5e08f274d9d4f8ad22
|
[] |
no_license
|
refresh-bio/QuickProbs
|
623ee08c4143d1d2d5d1260375b401f6ec750378
|
3ec12212ed7268c9b1f54cb0f2fa087e1f54dba1
|
refs/heads/master
| 2022-06-07T23:05:13.967075
| 2022-05-19T19:17:11
| 2022-05-19T19:17:11
| 48,433,949
| 1
| 1
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 13,527
|
cpp
|
ParallelProbabilisticModel.cpp
|
#include "Common/mathex.h"
#include "Common/Timer.h"
#include "DataStructures/Sequence.h"
#include "DataStructures/MultiSequence.h"
#include "ScoreType.h"
#include "ParallelProbabilisticModel.h"
#include "Configuration.h"
#include <omp.h>
#include <algorithm>
#include <memory>
#undef min
using namespace std;
using namespace quickprobs;
ParallelProbabilisticModel::ParallelProbabilisticModel(const Configuration &config) :
ProbabilisticModel(config),
numThreads(config.hardware.numThreads)
{
localBufferSize = 512 * 512 * numThreads;
localBuffer = new float[localBufferSize];
}
std::unique_ptr<std::vector<float>> quickprobs::ParallelProbabilisticModel::computeForwardMatrix(
const Sequence& seq1,
const Sequence& seq2,
float& total) const
{
int height = seq1.GetLength() + 1;
int width = seq2.GetLength() + 1;
std::vector<float> *forwardPtr = new std::vector<float>(height * width, LOG_ZERO);
this->computeForwardMatrix(seq1, seq2, forwardPtr->data(), total);
return std::unique_ptr<std::vector<float>>(forwardPtr);
}
void quickprobs::ParallelProbabilisticModel::computeForwardMatrix(
const Sequence& seq1,
const Sequence& seq2,
float *forward,
float& total) const
{
int seq1Length = seq1.GetLength();
int seq2Length = seq2.GetLength();
int height = seq1Length + 1;
int width = seq2Length + 1;
auto data1 = seq1.getData();
auto data2 = seq2.getData();
// auxiliary matrices
int layerOffset = width * 2;
float* levels = new float[numStates * layerOffset];
std::fill(levels, levels + numStates * layerOffset, LOG_ZERO);
// initialization condition
forward[1 * width + 1] = initialDistribution[0] + matchProb[(unsigned char) data1[1]][(unsigned char) data2[1]];
for (int k = 0; k < numInsertStates; ++k) {
levels[(2 * k + 1) * layerOffset + (1 * width + 0)] =
initialDistribution[2 * k + 1] + insProb[(unsigned char) data1[1]][k];
levels[(2 * k + 2) * layerOffset + (0 * width + 1)] =
initialDistribution[2 * k + 2] + insProb[(unsigned char) data2[1]][k];
}
// remember offset for each index combination
int ij = 0;
int i1j = -width;
int ij1 = -1;
int i1j1 = -width - 1;
int currentLevel = 0;
int prevLevel = width;
// compute forward scores
for (int i = 0; i <= seq1Length; ++i) {
unsigned char c1 = (unsigned char) data1[i];
for (int j = 0; j <= seq2Length; ++j) {
unsigned char c2 = (unsigned char) data2[j];
int ij_level = currentLevel + j;
int i1j_level = prevLevel + j;
int ij1_level = currentLevel + j - 1;
int i1j1_level = prevLevel + j - 1;
if (i > 1 || j > 1) {
if (i > 0 && j > 0) {
forward[ij] = forward[i1j1] + transProb[0][0];
for (int k = 1; k < numStates; ++k) {
LOG_PLUS_EQUALS(forward[ij], levels[k * layerOffset + i1j1_level] + transProb[k][0]);
}
forward[ij] += matchProb[c1][c2];
}
if (i > 0) {
for (int k = 0; k < numInsertStates; ++k) {
int q = 2 * k + 1;
levels[layerOffset * q + ij_level] = insProb[c1][k] + LOG_ADD(
forward[i1j]+ transProb[0][q], levels[layerOffset * q + i1j_level] + transProb[q][q]);
}
}
if (j > 0) {
for (int k = 0; k < numInsertStates; ++k) {
int q = 2 * k + 2;
levels[layerOffset * q + ij_level] = insProb[c2][k] + LOG_ADD(
forward[ij1] + transProb[0][q], levels[layerOffset * q + ij1_level] + transProb[q][q]);
}
}
}
++ij;
++i1j;
++ij1;
++i1j1;
}
std::swap(currentLevel, prevLevel);
}
// get total forward probability
total = LOG_ZERO;
LOG_PLUS_EQUALS(total, forward[width * height - 1] + initialDistribution[0]); // component from layer 0
for (int k = 1; k < numStates; ++k) {
LOG_PLUS_EQUALS(total, levels[layerOffset * k + prevLevel + seq2Length] + initialDistribution[k]); // components from other layers
}
delete [] levels;
}
/// <summary>
/// See declaration for all the details.
/// </summary>
std::unique_ptr<std::vector<float>> ParallelProbabilisticModel::computeBackwardMatrix(
const Sequence & seq1,
const Sequence & seq2,
float& total) const
{
const int height = seq1.GetLength() + 1;
const int width = seq2.GetLength() + 1;
std::vector<float> *backwardPtr = new std::vector<float>(height * width, LOG_ZERO);
this->computeBackwardMatrix(seq1, seq2, backwardPtr->data(), total);
return std::unique_ptr<std::vector<float>>(backwardPtr);
}
/// <summary>
/// See declaration for all the details.
/// </summary>
void ParallelProbabilisticModel::computeBackwardMatrix(
const Sequence& seq1,
const Sequence& seq2,
float *backward,
float& total) const
{
const int seq1Length = seq1.GetLength();
const int seq2Length = seq2.GetLength();
int height = seq1Length + 1;
int width = seq2Length + 1;
auto data1 = seq1.getData();
auto data2 = seq2.getData();
// auxiliary matrices
int layerOffset = width * 2;
float* levels = new float[numStates * layerOffset];
std::fill(levels, levels + numStates * layerOffset, LOG_ZERO);
// initialization condition
backward[width * height - 1] = initialDistribution[0];
for (int k = 1; k < numStates; ++k)
levels[layerOffset * k + seq2Length] = initialDistribution[k];
// remember offset for each index combination
int ij = height * width - 1;
int i1j1 = ij + width + 1;
int currentLevel = 0;
int nextLevel = width;
// compute backward scores
for (int i = seq1Length; i >= 0; --i) {
unsigned char c1 = (i == seq1Length) ? '~' : (unsigned char) data1[i + 1];
for (int j = seq2Length; j >= 0; --j) {
unsigned char c2 = (j == seq2Length) ? '~' : (unsigned char) data2[j + 1];
int ij_level = currentLevel + j;
int i1j_level = nextLevel + j;
int ij1_level = currentLevel + j + 1;
// reset current cell
if (i < seq1Length || j < seq2Length) {
for (int k = 1; k < numStates; ++k)
levels[layerOffset * k + ij_level] = LOG_ZERO;
}
if (i < seq1Length && j < seq2Length) {
const float ProbXY = backward[i1j1] + matchProb[c1][c2];
LOG_PLUS_EQUALS(backward[ij], ProbXY + transProb[0][0]);
for (int k = 1; k < numStates; ++k)
LOG_PLUS_EQUALS(levels[layerOffset * k + ij_level], ProbXY + transProb[k][0]);
}
if (i < seq1Length) {
for (int k = 0; k < numInsertStates; ++k) {
int q = 2 * k + 1;
LOG_PLUS_EQUALS(backward[ij], levels[layerOffset * q + i1j_level] + insProb[c1][k] + transProb[0][q]);
LOG_PLUS_EQUALS(levels[layerOffset * q + ij_level], levels[layerOffset * q + i1j_level] + insProb[c1][k] + transProb[q][q]);
}
}
if (j < seq2Length) {
for (int k = 0; k < numInsertStates; ++k) {
int q = 2 * k + 2;
LOG_PLUS_EQUALS(backward[ij], levels[layerOffset * q + ij1_level] + insProb[c2][k] + transProb[0][q]);
LOG_PLUS_EQUALS(levels[layerOffset * q + ij_level], levels[layerOffset * q + ij1_level] + insProb[c2][k] + transProb[q][q]);
}
}
--ij;
--i1j1;
}
std::swap(currentLevel, nextLevel);
}
total = initialDistribution[0] + matchProb[data1[1]][data2[1]] + backward[width + 1]; // get element from [1,1]
for (int k = 0; k < numInsertStates; ++k) {
LOG_PLUS_EQUALS(total, initialDistribution[2*k+1] + insProb[data1[1]][k] + levels[layerOffset * (2*k+1) + currentLevel]);
LOG_PLUS_EQUALS(total, initialDistribution[2*k+2] + insProb[data2[1]][k] + levels[layerOffset * (2*k+2) + nextLevel + 1]);
}
delete [] levels;
}
/// <summary>
/// See declaration for all the details.
/// </summary>
void ParallelProbabilisticModel::computePosteriorMatrix(
const Sequence & seq1,
const Sequence & seq2,
const float* forward,
const float* backward,
float totalProb,
float *posterior) const
{
const int seq1Length = seq1.GetLength();
const int seq2Length = seq2.GetLength();
int ij = 0;
if (totalProb == 0) {
totalProb = 1.0f;
}
float* out = posterior;
const float* m1 = forward;
const float* m2 = backward;
int layerSize = (seq1Length + 1) * (seq2Length + 1);
for (int id = 0; id < layerSize; ++id) {
*out = EXP(std::min(LOG_ONE, *m1 + *m2 - totalProb));
++out;
++m1;
++m2;
}
posterior[0] = 0;
}
/// <summary>
/// See declaration for all the details.
/// </summary>
std::unique_ptr<std::vector<float>> ParallelProbabilisticModel::buildPosterior(
const float* seqsWeights,
const Array<float>& distances,
const quickprobs::MultiSequence & align1,
const quickprobs::MultiSequence & align2,
const Array<SparseMatrixType*> &sparseMatrices,
float selectivity) const
{
// OpenMP version
const int seq1Length = align1.GetSequence(0)->GetLength();
const int seq2Length = align2.GetSequence(0)->GetLength();
::size_t numElements = (seq1Length + 1) * (seq2Length + 1);
// rounded size to enable loop unrolling
std::vector<float>* posterior = new std::vector<float>(numElements, 0);
this->buildPosterior(
seqsWeights, distances, align1, align2, sparseMatrices, selectivity, posterior->data());
return std::unique_ptr<std::vector<float>>(posterior);
}
/// <summary>
/// See declaration for all the details.
/// </summary>
void ParallelProbabilisticModel::buildPosterior(
const float* seqsWeights,
const Array<float>& distances,
const quickprobs::MultiSequence & align1,
const quickprobs::MultiSequence & align2,
const Array<SparseMatrixType*> &sparseMatrices,
float selectivity,
float * posterior) const
{
TIMER_CREATE(timer);
TIMER_START(timer);
int numPairs = align1.count() * align2.count();
const int seq1Length = align1.length();
const int seq2Length = align2.length();
int * seqsMappings1 = new int[align1.count() * (seq1Length + 1)];
int * seqsMappings2 = new int[align2.count() * (seq2Length + 1)];
// rounded size to enable loop unrolling
::size_t numElements = (seq1Length + 1) * (seq2Length + 1);
std::memset(posterior, 0, numElements * sizeof(float));
//compute the total sum of all weights
double totalWeights = 0;
for (int i = 0; i < align1.count(); ++i){
int first = align1.GetSequence(i)->GetLabel();
double w1 = seqsWeights[first];
for (int j = 0; j < align2.count(); ++j){
int second = align2.GetSequence(j)->GetLabel();
if (distances[first][second] <= selectivity) {
double w2 = seqsWeights[second];
totalWeights += w1 * w2;
}
}
}
//#pragma omp parallel for default(shared) schedule(dynamic)
for(int i = 0; i < align1.count(); ++i) {
align1.GetSequence(i)->getMapping(seqsMappings1 + i * (seq1Length + 1));
}
//#pragma omp parallel for default(shared) schedule(dynamic)
for(int j = 0; j < align2.count(); ++j) {
align2.GetSequence(j)->getMapping(seqsMappings2 + j * (seq2Length + 1));
}
TIMER_STOP(timer);
timePreparation += timer.seconds();
TIMER_START(timer);
// Serial variant
if (numThreads == 1 || numPairs < numThreads * 2) {
for (int i = 0; i < align1.count(); i++) {
int first = align1.GetSequence(i)->GetLabel();
const int* mapping1 = seqsMappings1 + i * (seq1Length + 1);
double w1 = seqsWeights[first];
// for each t in align2
for (int j = 0; j < align2.count(); j++) {
int second = align2.GetSequence(j)->GetLabel();
const int* mapping2 = seqsMappings2 + j * (seq2Length + 1);
double w2 = seqsWeights[second];
float w = (float)((w1 * w2) / totalWeights);
const auto matrix = sparseMatrices[first][second];
int currentSeq1Length = matrix->getSeq1Length();
for (int ii = 1; ii <= currentSeq1Length; ++ii) {
auto row = matrix->getRowPtr(ii);
auto rowEnd = row + matrix->getRowSize(ii);
ptrdiff_t denseBase = (mapping1)[ii] * (seq2Length + 1);
// add in all relevant values
for (; row < rowEnd; ++row) {
float v = row->getValue();
int col = row->getColumn();
int id = denseBase + (mapping2)[col];
posterior[id] += w * v;
}
}
}
}
} else {
// parallel variant
#pragma omp parallel default(shared)
{
int tid = omp_get_thread_num();
for (int i = 0; i < align1.count(); i++) {
int first = align1.GetSequence(i)->GetLabel();
const int* mapping1 = seqsMappings1 + i * (seq1Length + 1);
double w1 = seqsWeights[first];
// fixme: just to take length of ungapped sequence
int second = align2.GetSequence(0)->GetLabel();
int currentSeq1Length = sparseMatrices[first][second]->getSeq1Length();
int blockSize = mathex::ceildiv(currentSeq1Length, numThreads);
int blockBegin = 1 + blockSize * tid;
int blockEnd = min(currentSeq1Length + 1, blockBegin + blockSize);
// for each t in align2
for (int j = 0; j < align2.count(); j++) {
int second = align2.GetSequence(j)->GetLabel();
const int* mapping2 = seqsMappings2 + j * (seq2Length + 1);
double w2 = seqsWeights[second];
float w = (float)((w1 * w2) / totalWeights);
const auto matrix = sparseMatrices[first][second];
for (int ii = blockBegin; ii < blockEnd; ++ii) {
//for (int ii = 1; ii <= currentSeq1Length; ++ii) {
// if (mapping1[ii] % numThreads == tid) {
auto row = matrix->getRowPtr(ii);
auto rowEnd = row + matrix->getRowSize(ii);
ptrdiff_t denseBase = (mapping1)[ii] * (seq2Length + 1);
// add in all relevant values
for (; row < rowEnd; ++row) {
float v = row->getValue();
int col = row->getColumn();
int id = denseBase + (mapping2)[col];
posterior[id] += w * v;
}
//}
}
}
#pragma omp barrier
}
}
}
TIMER_STOP(timer);
timeCalculaton += timer.seconds();
TIMER_START(timer);
delete [] seqsMappings1;
delete [] seqsMappings2;
TIMER_STOP(timer);
timePreparation += timer.seconds();
}
|
bd55594b5bf8d07099568337f7e379b7f91f5aa2
|
c46a83d784917382ceb8c673b73b328afcfae0a3
|
/Training/GameObject.cpp
|
abe19b5b9e1c7b1f11feb452151ba59f4739984d
|
[] |
no_license
|
Zeldarck/TrainingDx12
|
ca717f8bc6e3225e39f142f3a28dd35e9f447204
|
509051e449dc8f56c07c3f9730e88f4ba64b78e8
|
refs/heads/master
| 2021-09-03T17:15:15.092513
| 2018-01-10T16:59:43
| 2018-01-10T16:59:43
| 116,127,388
| 2
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 4,789
|
cpp
|
GameObject.cpp
|
#include <d3d12.h>
#include <dxgi1_4.h>
#include <D3Dcompiler.h>
#include "GameObject.h"
#include "Camera.h"
#include "Util.h"
void GameObject::Rotate(float a_x, float a_y, float a_z, float a_value)
{
DirectX::XMStoreFloat4x4(&m_transformationMatrix, DirectX::XMLoadFloat4x4(&m_transformationMatrix) *= DirectX::XMMatrixRotationAxis(DirectX::XMLoadFloat4(&DirectX::XMFLOAT4(a_x,a_y,a_z,0.0f)),a_value));
}
void GameObject::Translate(float a_x, float a_y, float a_z)
{
DirectX::XMStoreFloat4x4(&m_transformationMatrix, DirectX::XMLoadFloat4x4(&m_transformationMatrix) *= DirectX::XMMatrixTranslation(a_x, a_y, a_z));
}
void GameObject::Scale(float a_x, float a_y, float a_z)
{
DirectX::XMStoreFloat4x4(&m_transformationMatrix, DirectX::XMLoadFloat4x4(&m_transformationMatrix) *= DirectX::XMMatrixScaling(a_x, a_y, a_z));
}
void GameObject::SetParent(GameObject * a_parent)
{
a_parent->AddChildren(this);
}
void GameObject::AddChildren(GameObject * a_child)
{
m_children.push_back(a_child);
a_child->m_parent = this;
}
void GameObject::Draw(ID3D12GraphicsCommandList * a_commandList, int a_frameIndex, Camera* a_camera, DirectX::XMMATRIX a_transformationMatrix /* = DirectX::XMMatrixIdentity() */)
{
DirectX::XMMATRIX worldMatrix = GetLocalWorldMatrix() * a_transformationMatrix;
//If we have a mesh
if (m_mesh && m_mesh->HaveMesh()) {
m_mesh->SetPipeline(a_commandList);
DirectX::XMMATRIX wvpMat = worldMatrix * a_camera->GetVPMatrix(); // create wvp matrix
DirectX::XMMATRIX transposed = XMMatrixTranspose(wvpMat); // must transpose wvp matrix for the gpu
XMStoreFloat4x4(&cbObject.wvpMat, transposed); // store transposed wvp matrix in constant buffer
memcpy(cbvGPUAddress[a_frameIndex], &cbObject, sizeof(cbObject));
a_commandList->SetGraphicsRootConstantBufferView(0, constantBufferUploadHeaps[a_frameIndex]->GetGPUVirtualAddress());
m_mesh->Draw(a_commandList);
}
for (GameObject* go : m_children) {
go->Draw(a_commandList, a_frameIndex, a_camera, worldMatrix);
}
}
void GameObject::CreateCBUploadHeap(ID3D12Device * a_device, int a_frameBufferCount)
{
constantBufferUploadHeaps = new ID3D12Resource*[a_frameBufferCount];
cbvGPUAddress = new UINT8*[a_frameBufferCount];
for (int i = 0; i < a_frameBufferCount; ++i)
{
HRESULT hr = a_device->CreateCommittedResource(
&CD3DX12_HEAP_PROPERTIES(D3D12_HEAP_TYPE_UPLOAD),
D3D12_HEAP_FLAG_NONE,
&CD3DX12_RESOURCE_DESC::Buffer(1024 * 64),
D3D12_RESOURCE_STATE_GENERIC_READ,
nullptr,
IID_PPV_ARGS(&constantBufferUploadHeaps[i]));
constantBufferUploadHeaps[i]->SetName(L"Constant Buffer Upload Resource Heap");
ZeroMemory(&cbObject, sizeof(cbObject));
CD3DX12_RANGE readRange(0, 0);
hr = constantBufferUploadHeaps[i]->Map(0, &readRange, reinterpret_cast<void**>(&cbvGPUAddress[i]));
memcpy(cbvGPUAddress[i], &cbObject, sizeof(cbObject));
}
m_device = a_device;
m_frameBufferCount = a_frameBufferCount;
}
void GameObject::SetMesh(MyMesh* a_mesh)
{
m_mesh = a_mesh;
for (MyMesh* mesh : a_mesh->getChildren()) {
GameObject* go = new GameObject();
go->SetMesh(mesh);
go->CreateCBUploadHeap(m_device, m_frameBufferCount);
this->AddChildren(go);
}
}
DirectX::XMMATRIX GameObject::GetLocalWorldMatrix() {
return XMLoadFloat4x4(&m_transformationMatrix) * DirectX::XMMatrixTranslation(m_position.x, m_position.y, m_position.z);
}
DirectX::XMMATRIX GameObject::GetWorldMatrix() {
DirectX::XMMATRIX parentWorld = DirectX::XMMatrixIdentity();
if (m_parent) {
parentWorld *= m_parent->GetWorldMatrix();
}
return GetLocalWorldMatrix() * parentWorld;
}
GameObject::GameObject() : GameObject::GameObject(DirectX::XMFLOAT4(0.0f, 0.0f, 0.0f, 0.0f))
{
}
GameObject::GameObject(DirectX::XMFLOAT4 a_position) : GameObject(a_position, DirectX::XMFLOAT4(0.0f, 0.0f, 1.0f, 0.0f), DirectX::XMFLOAT4(0.0f, 1.0f, 0.0f, 0.0f), DirectX::XMFLOAT4(1.0f, 0.0f, 0.0f, 0.0f))
{
}
GameObject::GameObject(DirectX::XMFLOAT4 a_position, DirectX::XMFLOAT4 a_target, DirectX::XMFLOAT4 a_up, DirectX::XMFLOAT4 a_right)
: m_position(a_position),m_target(a_target), m_up(a_up), m_right(a_right)
{
DirectX::XMStoreFloat4x4(&m_transformationMatrix, DirectX::XMMatrixIdentity());
}
GameObject::~GameObject()
{
for (int i = 0; i < m_frameBufferCount; ++i) {
if (constantBufferUploadHeaps) {
SAFE_RELEASE(constantBufferUploadHeaps[i]);
}
}
if(constantBufferUploadHeaps)
delete constantBufferUploadHeaps;
if (cbvGPUAddress)
delete cbvGPUAddress;
}
|
d5c64f93099eceb6020fa9675071952b95a66249
|
caa1a25caa55a7188f0326178b1a35305d6b3a74
|
/netcx/adapter/nxconfiguration.hpp
|
40e875f2340e373675d7aab00e58b30143560b24
|
[
"MIT"
] |
permissive
|
hauzlin/Network-Adapter-Class-Extension
|
8188db7b121dec68cde4d73e476731f4974b2af1
|
e54583a6773e293327057b9d5ec08eabfd4e7406
|
refs/heads/master
| 2021-01-25T22:37:36.292383
| 2020-03-03T21:21:49
| 2020-03-03T21:21:49
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 6,332
|
hpp
|
nxconfiguration.hpp
|
// Copyright (C) Microsoft Corporation. All rights reserved.
/*++
Abstract:
This is the definition of the NxAdapter Configuration object.
--*/
#pragma once
#include <FxObjectBase.hpp>
//
// The NxConfiguration is an object that represents a Net Configuration
//
struct NX_PRIVATE_GLOBALS;
class NxDevice;
class NxAdapter;
class NxConfiguration;
FORCEINLINE
NxConfiguration *
GetNxConfigurationFromHandle(
_In_ NETCONFIGURATION Configuration
);
class NxConfiguration : public CFxObject<NETCONFIGURATION,
NxConfiguration,
GetNxConfigurationFromHandle,
false>
{
private:
NxConfiguration * m_ParentNxConfiguration;
public:
const bool m_IsDeviceConfig;
NxDevice * m_NxDevice;
NxAdapter * m_NxAdapter;
WDFKEY m_Key;
//
// Opaque handle returned by ndis.sys for this adapter.
//
NDIS_HANDLE m_NdisConfigurationHandle;
private:
NxConfiguration(
_In_ NX_PRIVATE_GLOBALS * NxPrivateGlobals,
_In_ NETCONFIGURATION Configuration,
_In_ NxConfiguration * ParentNxConfiguration,
_In_ NxDevice * NxDevice
);
NxConfiguration(
_In_ NX_PRIVATE_GLOBALS * NxPrivateGlobals,
_In_ NETCONFIGURATION Configuration,
_In_ NxConfiguration * ParentNxConfiguration,
_In_ NxAdapter * NxAdapter
);
PAGED
NTSTATUS
ReadConfiguration(
_Out_ PNDIS_CONFIGURATION_PARAMETER *ParameterValue,
_In_ PCUNICODE_STRING Keyword,
_In_ NDIS_PARAMETER_TYPE ParameterType);
public:
~NxConfiguration();
static
NTSTATUS
_Create(
_In_ NX_PRIVATE_GLOBALS * PrivateGlobals,
_In_ NxDevice * NxDevice,
_In_opt_ WDF_OBJECT_ATTRIBUTES * ConfigurationAttributes,
_In_opt_ NxConfiguration * ParentNxConfiguration,
_Out_ NxConfiguration ** NxConfiguration
);
static
NTSTATUS
_Create(
_In_ NX_PRIVATE_GLOBALS * PrivateGlobals,
_In_ NxAdapter * NxAdapter,
_In_opt_ NxConfiguration * ParentNxConfiguration,
_Out_ NxConfiguration ** NxConfiguration
);
static
void
_EvtCleanup(
_In_ WDFOBJECT Configuration
);
NTSTATUS
Open(
void
);
NTSTATUS
OpenAsSubConfiguration(
PCUNICODE_STRING SubConfigurationName
);
void
DeleteFromFailedOpen(
void
);
void
Close(
void
);
NTSTATUS
AddAttributes(
_In_ WDF_OBJECT_ATTRIBUTES * Attributes
);
RECORDER_LOG
GetRecorderLog(
void
);
_Must_inspect_result_
_IRQL_requires_max_(PASSIVE_LEVEL)
NTSTATUS
QueryUlong(
_In_ NET_CONFIGURATION_QUERY_ULONG_FLAGS Flags,
_In_ PCUNICODE_STRING ValueName,
_Out_ PULONG Value
);
_Must_inspect_result_
_IRQL_requires_max_(PASSIVE_LEVEL)
NTSTATUS
QueryString(
_In_ PCUNICODE_STRING ValueName,
_In_opt_ WDF_OBJECT_ATTRIBUTES * StringAttributes,
_Out_ WDFSTRING* WdfString
);
_Must_inspect_result_
_IRQL_requires_max_(PASSIVE_LEVEL)
NTSTATUS
QueryMultiString(
_In_ PCUNICODE_STRING ValueName,
_In_opt_ WDF_OBJECT_ATTRIBUTES * StringsAttributes,
_In_ WDFCOLLECTION Collection
);
_Must_inspect_result_
_IRQL_requires_max_(PASSIVE_LEVEL)
NTSTATUS
QueryBinary(
_In_ PCUNICODE_STRING ValueName,
_Strict_type_match_ _In_
POOL_TYPE PoolType,
_In_opt_ WDF_OBJECT_ATTRIBUTES * MemoryAttributes,
_Out_ WDFMEMORY* WdfMemory
);
_Must_inspect_result_
_IRQL_requires_max_(PASSIVE_LEVEL)
NTSTATUS
QueryLinkLayerAddress(
_Out_ NET_ADAPTER_LINK_LAYER_ADDRESS *LinkLayerAddress
);
_Must_inspect_result_
_IRQL_requires_max_(PASSIVE_LEVEL)
NTSTATUS
AssignUlong(
_In_ PCUNICODE_STRING ValueName,
_In_ ULONG Value
);
_Must_inspect_result_
_IRQL_requires_max_(PASSIVE_LEVEL)
NTSTATUS
AssignUnicodeString(
_In_ PCUNICODE_STRING ValueName,
_In_ PCUNICODE_STRING Value
);
_Must_inspect_result_
_IRQL_requires_max_(PASSIVE_LEVEL)
NTSTATUS
AssignBinary(
_In_ PCUNICODE_STRING ValueName,
_In_reads_bytes_(BufferLength) void * Buffer,
_In_ ULONG BufferLength
);
_Must_inspect_result_
_IRQL_requires_max_(PASSIVE_LEVEL)
NTSTATUS
AssignMultiString(
_In_ PCUNICODE_STRING ValueName,
_In_ WDFCOLLECTION StringsCollection
);
};
WDF_DECLARE_CONTEXT_TYPE_WITH_NAME(NxConfiguration, _GetNxConfigurationFromHandle);
FORCEINLINE
NxConfiguration *
GetNxConfigurationFromHandle(
_In_ NETCONFIGURATION Configuration
)
/*++
Routine Description:
This routine is just a wrapper around the _GetNxConfigurationFromHandle function.
To be able to define a the NxConfiguration class above, we need a forward declaration of the
accessor function. Since _GetNxConfigurationFromHandle is defined by Wdf, we dont want to
assume a prototype of that function for the foward declaration.
--*/
{
return _GetNxConfigurationFromHandle(Configuration);
}
|
64143d83601d836d44a4a52913ca93546424b731
|
9a34a22e3c8121ba5d57f3c981640221f0cf4050
|
/Yocto/Trig_out.ino
|
9dd76acbf40c930f1400e20744ccba5470321859
|
[] |
no_license
|
HomoElectromagneticus/Yocto_808
|
53d858d9672625839739b4c1a9c8a5121c3c9b8d
|
e4cc0ba945dd6ff6b9236c745bc00b862862c523
|
refs/heads/master
| 2021-06-27T18:56:05.695924
| 2020-02-02T02:48:20
| 2020-02-02T02:48:20
| 101,703,098
| 13
| 5
| null | 2020-02-02T02:48:22
| 2017-08-29T01:09:57
|
C++
|
UTF-8
|
C++
| false
| false
| 891
|
ino
|
Trig_out.ino
|
/////////////////////////////////
//Fonction des sorties Trig
/////////////////////////////////
void Reset_Trig_Out()
{
digitalWrite(TRIG1_PIN, HIGH);
digitalWrite(TRIG2_PIN, HIGH);
digitalWrite(TRIG3_PIN, HIGH);
}
void Send_Trig_Out(int trig_outs)
{
if (bitRead(trig_outs, TRIG1)) {
digitalWrite(TRIG1_PIN, LOW);
}
if (bitRead(trig_outs, TRIG2)) {
digitalWrite(TRIG2_PIN, LOW);
}
if (bitRead(trig_outs, TRIG3)) {
digitalWrite(TRIG3_PIN, LOW);
}
}
void Send_Trig_Out_Midi()
{
if (bitRead(inst_midi_buffer, TRIG1)) {
digitalWrite(TRIG1_PIN, LOW);
}
if (bitRead(inst_midi_buffer, TRIG2)) {
digitalWrite(TRIG2_PIN, LOW);
}
if (bitRead(inst_midi_buffer, TRIG3)) {
digitalWrite(TRIG3_PIN, LOW);
}
}
/*void Test_Trig_Out()
{
PORTB |= ((1<<1)|(1<<0));
TRIG1_PORT |= (1<<6);
}*/
|
c1c7e53139f79cc5308ced83bada7a682a45c30f
|
64744a7d04e63bfd51da635adb69c8ca2da80b20
|
/arduino/MAIN/main_ESP-12/MyTFT.h
|
20339cb29528655274d56e172eda1258247e8974
|
[] |
no_license
|
MichalZima/GPS-tachometer
|
9b085cdf78180bada53b09c06a91da98bd56d35e
|
a69c94489d3b98504abce43769353ebea3a76bf9
|
refs/heads/master
| 2023-04-21T07:04:43.800641
| 2021-05-10T19:10:49
| 2021-05-10T19:10:49
| 268,513,254
| 0
| 1
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,132
|
h
|
MyTFT.h
|
#include <SPI.h>
#include <Adafruit_ST7735.h> // Hardware-specific library for ST7735
#define TFT_CS D1
#define TFT_RST D0 // Or set to -1 and connect to Arduino RESET pin
#define TFT_DC D2
Adafruit_ST7735 tft = Adafruit_ST7735(TFT_CS, TFT_DC, TFT_RST);
class MyTFT {
private:
char convertString[12];
public:
void tftSetup() {
tft.initR(INITR_BLACKTAB);
//tft.setRotation(2);
tft.fillScreen(ST7735_BLACK);
tft.setFont();
tft.setTextColor(ST7735_WHITE, ST7735_BLACK);
}
void Settings(byte TEXTSIZE, byte Y, byte X) {
tft.setTextSize(TEXTSIZE);
tft.setCursor(Y, X);
}
void Print(float VARIABLE, byte NUMBERSIZE, byte DECIMALPLACES) {
dtostrf(VARIABLE, NUMBERSIZE, DECIMALPLACES, convertString);
tft.print(convertString);
}
// const uint16_t blackColor = ST7735_BLACK;
// const uint16_t redColor = 0xF800;
// const uint16_t greenColor = 0x07E0;
// const uint16_t yellowColor = 0xFFE0;
// const uint16_t whiteColor = ST7735_WHITE;
};
|
db39cfc44d627467a8ffc5c07ecb6895ef6a68bd
|
032adffae2ce4b2731bda28b0e386f5cf1710418
|
/TreasureRoom.hpp
|
7bebd9f287fb44c93393847fe522612a87da212c
|
[] |
no_license
|
jblake09/CS-162-Final-Project
|
9f1fd61a3b9bc32466e97d409b6218eb57ad559d
|
8c7b9d4a8857793140c890a592f44450604e7290
|
refs/heads/master
| 2021-01-25T07:50:26.061472
| 2017-08-30T04:03:24
| 2017-08-30T04:03:24
| 93,677,895
| 0
| 1
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 226
|
hpp
|
TreasureRoom.hpp
|
#pragma once
#include "Room.hpp"
class TreasureRoom :
public Room
{
public:
TreasureRoom(Hero*);
void populateLevel();
void playerHealthDrain();
void playerInteract();
bool newRoom();
~TreasureRoom();
};
|
7b4229c29ccd316f1c13334fce65ed98081fb8b4
|
1119fdac2610d934dd690b44c48a967ac782a1e2
|
/common/clienttcp.cpp
|
0543ca02338b8f4eccd8e1265676c0d3623f2207
|
[] |
no_license
|
eugene-pa/armdncqt
|
6e744f6b35e0fd87ed8f06af35e4d7df6e28d4bd
|
3dcb31a33a0e9cca7b623006bfda360e068a8e17
|
refs/heads/master
| 2021-01-24T17:14:32.900853
| 2017-10-19T13:53:27
| 2017-10-19T13:53:27
| 63,157,609
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 12,774
|
cpp
|
clienttcp.cpp
|
#include <QTextCodec>
#include "clienttcp.h"
// конструктор, используемый сервером для создания экземпляра, обслуживающего подключение к серверу
ClientTcp::ClientTcp(ServerTcp *server, QTcpSocket *sock, Logger * logger)
{
this->server = server;
this->sock = sock;
this->logger = logger;
// прописываем IP адрес клиента и локальный порт
remoteIp = sock->peerAddress().toString();
remotePort = sock->localPort();
_compress = false;
_transparentMode = false;
init();
}
// конструктор клиентской стороны для подключения к серверу, заданному IP-адресом и портом
ClientTcp::ClientTcp(QString& ip, int port, Logger * p, bool compress, QString idtype)
{
server = nullptr;
this->remoteIp = ip;
this->remotePort = port;
logger = p;
_compress = compress;
_transparentMode = false;
this->idtype = idtype;
sock = new QTcpSocket();
log(msg = QString("Конструктор ClientTcp %1:%2").arg(remoteIp).arg(remotePort));
init();
}
// перегруженный конструктор клиентской стороны для подключения к серверу, заданному лексемой IP:ПОРТ
ClientTcp::ClientTcp(QString& ipport, Logger * p, bool compress, QString idtype)
{
server = nullptr;
TcpHeader::ParseIpPort(ipport, remoteIp, remotePort);
logger = p;
_compress = compress;
_transparentMode = false;
this->idtype = idtype;
sock = new QTcpSocket();
log(msg = QString("Конструктор ClientTcp %1:%2").arg(remoteIp).arg(remotePort));
init();
}
void ClientTcp::init()
{
for (int i=0; i<userdatacount; i++)
_userPtr [i] = nullptr;
run = false;
_data = new char[maxSize];
clear();
toRead = sizeof(TcpHeader); // 4 байта - чтение заголовка
_length = 0;
rcvd[0] = rcvd[1] = sent[0] = sent[1] = 0;
// привязка своих слотов к сигналам QTcpSocket
QObject::connect(sock, SIGNAL(connected ()), this, SLOT(slotConnected()));
QObject::connect(sock, SIGNAL(readyRead ()), this, SLOT(slotReadyRead()));
QObject::connect(sock, SIGNAL(disconnected()), this, SLOT(slotDisconnected()));
QObject::connect(sock, SIGNAL(error(QAbstractSocket::SocketError)),this, SLOT(slotError(QAbstractSocket::SocketError)));
}
ClientTcp::~ClientTcp()
{
log(msg = QString("Деструктор ClientTcp: %1:%2").arg(remoteIp).arg(remotePort));
sock->abort();
sock->close();
sock = nullptr;
delete _data;
}
void ClientTcp::start()
{
if (!run)
{
run = true;
if (!isServer() && sock != nullptr)
sock->connectToHost(remoteIp,remotePort);
}
}
void ClientTcp::stop()
{
run = false;
if (isConnected())
sock->disconnectFromHost();
}
// прием данных
// форматные данные:
// - WORD - сигнатуры: 0xAA55
// - WORD - длина пакета, включая заголовок
// - данные
//
// toRead - требуемая длина; если toRead==длине заголовка, принимаем заголовок, определяем длину пакета, и toRead = длине пакета
void ClientTcp::slotReadyRead ()
{
if (sock == nullptr)
return;
while (sock->isOpen()/*true*/)
{
_length += sock->read(_data+_length, toRead-_length); // читаем в буфер со смещением length
if (_length < toRead)
{
// if (_length > 0 )
// qDebug() << "Недобор до" << toRead << ". Прочитано: " << _length;
return;
}
if (_length==sizeof(TcpHeaderExt)) // расширенный 8-ми байтный заголовок
{
qDebug() << "Расширенный заголовок";
toRead = ((TcpHeaderExt *)_data)->Length(); // общая длина пакета (загловок + данные)
}
else
if (_length==sizeof(TcpHeader)) // стандартный 4-х байтный заголовок
{
// анализ первых 4-х байтов
if (((TcpHeader *)_data)->Signatured())
{
// приняли заголовок пакета
toRead = ((TcpHeader *)_data)->Length(); // общая длина пакета (загловок + данные)
if ((WORD)toRead == 0xffff)
{
toRead = sizeof(TcpHeaderExt);
_length += sock->read(_data +_length, toRead-_length); // читаем в буфер со смещением length
}
else
{
//qDebug() << "Заголовок";
if (toRead==4)
{
rcvd[0]++; rcvd[1] += toRead; // инкремент
//qDebug() << "Квитанция";
acked = true;
return;
}
}
}
else
{
// первые 4 - байта - не заголовок, значит, неформатные данные
qDebug() << "Неформатные данные";
// читаем все, что есть
_length += sock->read(_data+_length, 65536-_length);
rcvd[1] += _length; // инкремент
emit rawdataready(this);
_length = 0;
toRead = sizeof(TcpHeader);
return;
}
}
else
{
// получили требуемую пачку данных (length >= toRead)
rcvd[0]++; rcvd[1] += _length; // инкремент
// распаковку делать не всегда, если это ретрансляция - можно не распаковывать, а передавать как есть
uncompress();
emit dataready (this); // обращение к подключенным слотам; они должны гарантированно забрать данные
_length = 0;
toRead = sizeof(TcpHeader);
}
}
}
// ДОРАБОТАНО С ПОДДЕРЖКОЙ РАЗНОЙ СТЕПЕНИ СЖАТИЯ: если сжатиен не по умолчанию, сигнатура ZIP 0x78,0x9C не используется,
// поэтому вводится отдельный вид сигнатуры сжатого пакета:
// #define SIGNATURE 0xAA55 // сигнатура пакета общая (поддерживаются потоки Windows C++/C#)
// #define SIGNATUREZIP 0x55AA // сигнатура сжатого пакета (только QT версия)
// если принятые данные упакованы - распаковать и скорректировать поле длины
// ПОКА НЕ УЧИТЫВАЕМ РАСШИРЕННЫЙ ЗАГОЛОВОК
// функции qCompress/qUncompress совместимы с используемым в С++/C# проектах форматом ZLIB с особенностями:
// - сжатые данные включают 6-байтный префикс:
// - 4 байта оригинальной длины (похоже, не используются, можно проставить нули)
// - (ВАЖНО: ТОЛЬКО ПРИ СЖАТИИ ПО УМОЛЧАНИЮ!) 2 байта сигнатуры ZIP 0x78,0x9C, совпадающие с сигнатурой библиотеки ZLIB
// С учетом того, что в сжатых пакетах длина заголовка пакета составляет 4 байта, за которым идет сигнатура ZIP 0x78,0x9C,
// заголовок пакета используется как префикс
void ClientTcp::uncompress()
{
if (!_transparentMode && isCompressed())
{
QByteArray zip(_data, _length);
BYTE h1 = zip[0]; // сохраняю сигнатуру
BYTE h2 = zip[1];
zip[0] = 0; // обнуляем служебные поля
zip[1] = 0; // обнуляем служебные поля
zip[2] = 0; // обнуляем служебные поля
zip[3] = 0; // обнуляем служебные поля
QByteArray unzip = qUncompress(zip);
_length = unzip.length() + 4; // поле длины пакета включает длину заголовка, учтем!
_data[2] = (BYTE)_length; // УЧЕСТЬ РАСШИРЕННЫЙ ПАКЕТ!
_data[3] = (BYTE)((_length) >> 8);
for (int i=0; i< unzip.length(); i++) // копируем данные
_data[4+i] = unzip[i];
zip[0] = h1; // восстанавливаем сигнатуру
zip[1] = h2; //
}
}
// проверка префикса сжатых данных - работает только при сжатии по умолчанию
bool ClientTcp::isCompressed()
{
if (isSignaturedZip())
return true; // явно указанное сжатие
int lengthheader = isSignaturedExt() ? sizeof(TcpHeaderExt) : sizeof(TcpHeader); // учитываем расширенный заголовок
return _length > lengthheader + 2 && (BYTE)_data[lengthheader] == 0x78 && (BYTE)_data[lengthheader +1 ] == 0x9C;
}
// установлено соединение
void ClientTcp::slotConnected ()
{
log (msg=QString("ClientTcp. Установлено соединение c хостом %1:%2").arg(remoteIp).arg(remotePort));
// если определен тип, отправляет тип удаленному серверу, преобразовав в кодировку Windows-1251
if (idtype.length())
{
QByteArray id = QTextCodec::codecForName("Windows-1251")->fromUnicode(idtype);
id[id.length()] = 0;
send(id);
}
emit connected (this);
}
// разорвано соединение
void ClientTcp::slotDisconnected ()
{
log (msg=QString("ClientTcp. Разрыв соединения c хостом %1").arg(name()));
emit disconnected (this);
if (!isServer() && run)
sock->connectToHost(remoteIp,remotePort);
}
// ошибка
void ClientTcp::slotError (QAbstractSocket::SocketError er)
{
_lasterror = er;
log (msg=QString("ClientTcp. Клиент %1. Ошибка: %2").arg(name()).arg(sock->errorString()/*TcpHeader::ErrorInfo(er)*/));
emit error (this);
if (!isServer() && run && !isConnected())
sock->connectToHost(remoteIp,remotePort);
}
void ClientTcp::log (QString& msg)
{
if (logger != nullptr)
logger->log(msg);
else
qDebug() << msg;
}
// упаковка и передача
void ClientTcp::packsend(void *data, int length, bool compress)
{
SignaturedPack pack((char*)data, length, compress);
send ((char*)&pack, pack.length);
}
// упаковка и передача
void ClientTcp::packsend(QByteArray& array, bool compress)
{
SignaturedPack pack(array, compress);
send ((char*)&pack, pack.length);
}
// передача подготовленного блока данных "как есть"
void ClientTcp::send(void * p, int length)
{
if (isConnected())
{
sock->write((char*)p,length);
sent[0]++; sent[1] += length;
acked = false;
}
else
log (msg=QString("ClientTcp. Игнорируем отправку данных в разорванное соединение %1").arg(name()));
}
// передача массива
void ClientTcp::send(QByteArray& array)
{
send (array.data(), array.length());
}
void ClientTcp::sendAck()
{
TcpHeader ack;
send (&ack, sizeof(ack));
}
|
2d0f743d5406b12a5f5f2010d339f6d1a9ff660c
|
06bd829a0b316ff1a8b54b4fc1bb88c73a4fc68f
|
/枚举法/3.统计数字.cpp
|
3e0466a42c975a1a6bad48ecde300759af938ca1
|
[] |
no_license
|
LiuYu0521/lintcode
|
148e763294f478f50858f8053cacf5478b5c60b4
|
97c90a2065c6bf6df76c43211af0db2da528b965
|
refs/heads/master
| 2021-01-22T21:53:32.924735
| 2017-08-13T02:51:25
| 2017-08-13T02:51:25
| 92,742,383
| 2
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 552
|
cpp
|
3.统计数字.cpp
|
class Solution {
public:
/*
* param k : As description.
* param n : As description.
* return: How many k's between 0 and n.
*/
int digitCounts(int k, int n) {
// write your code here
int count = 0;
if(k == 0)
count = 1;
for(int i = 1; i <= n; i++)
{
int temp = i;
while(temp != 0)
{
if(temp % 10 == k)
count++;
temp = temp / 10;
}
}
return count;
}
};
|
90b1632d5df65eef57a2cd9d0732cd69afa38cae
|
9cdc39ad35f182a9f972f7eb66a4694e34a22651
|
/RTSProject/RTSProject/VertexArray.h
|
82ad31384d044273a673fa59846ce266cd1afce9
|
[
"Zlib",
"FTL",
"LicenseRef-scancode-warranty-disclaimer",
"Unlicense"
] |
permissive
|
rlatkddn212/rts-project
|
c7658b91221eb77bda9e458e618d0fe697f9d140
|
268ec1f5f97e899b70d6e7a50d6e9e7956c12646
|
refs/heads/master
| 2020-09-23T13:19:30.069007
| 2020-03-14T03:29:19
| 2020-03-14T03:29:19
| 225,509,419
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 637
|
h
|
VertexArray.h
|
/**
* VertexArray
*/
#pragma once
class VertexArray
{
public:
VertexArray(const float* verts, unsigned int numVerts,
const unsigned int* indices, unsigned int numIndices);
~VertexArray();
void SetActive();
unsigned int GetNumIndices() const { return mNumIndices; }
unsigned int GetNumVerts() const { return mNumVerts; }
void SetVertexBuffer(const float* verts, unsigned int numVerts);
private:
unsigned int mNumVerts;
unsigned int mNumIndices;
unsigned int mVertexBuffer;
unsigned int mIndexBuffer;
unsigned int mVertexArray;
};
|
b0bb16dd867a4b1bc0a33043eb837d5bb2dcf74f
|
c88bd951e5ad26cc34e7730b8e1ca93ade988cee
|
/Homework/Assignment_5/Savitch_9thEd_Ch5_ProgProj1/main.cpp
|
c592b80d07881986598e8f304ddd2f84d4125bee
|
[] |
no_license
|
jerlingo527/Lingo_Jericho_CSC5-42829
|
30deb4f3c695771af1feaffdcfe90002ee2b995b
|
67b97c3b64889e68e6207954d95ede783cfc7f71
|
refs/heads/master
| 2021-01-21T04:47:37.150153
| 2016-06-06T11:12:39
| 2016-06-06T11:12:39
| 52,454,828
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,001
|
cpp
|
main.cpp
|
/*
* File: main.cpp
* Author: Jericho Lingo
* CSC 5 42829
* Created on April 26, 2016, 12:00 PM
*/
//System Libraries
#include <iostream>
#include <cmath>
using namespace std;
//User Libraries
//Global Constants
//Function Prototypes
void input(int&, int&, char&);
void convert(int&, int&, char&);
void output(int&, int&, char&);
//Execution Begins Here!
int main(int argc, char** argv) {
//Declare variables
int hours, minutes;
char ampm;
char again;
//Loop to re-run program as long as user wants
do {
input(hours, minutes, ampm);
convert(hours, minutes, ampm);
output(hours, minutes, ampm);
cout << endl << "Enter Y to run again, any other key to exit: ";
cin >> again;
} while (again == 'y' || again == 'Y');
return 0;
}
void input(int& hours, int& minutes, char& ampm) {
//This loop makes sure value entered is legal for hours(i.e. 23 or below)
do {
cout << "Enter hours: ";
cin >> hours;
if (hours > 23) cout << "Please enter a value between 0 and 23" << endl;
} while (hours > 23);
//This loop makes sure value entered is legal for minutes (i.e. 59 or below)
do {
cout << "Enter minutes: ";
cin >> minutes;
if (minutes > 59) cout << "Please enter a value between 0 and 59" << endl;
} while (minutes > 59);
}
void convert(int& hours, int& minutes, char& ampm) {
//Set AM/PM flag to PM if hour is 13 onwards, and set hours to 12hr format
if (hours > 12) {
hours = hours - 12;
ampm = 'p';
} else if (hours == 12) ampm = 'p';
else ampm = 'a';
}
void output(int& hours, int& minutes, char& ampm) {
if (ampm == 'p') {
if (minutes < 10) cout << hours << ":0" << minutes << " P.M.";
else cout << hours << ":" << minutes << " P.M.";
} else {
if (minutes < 10) cout << hours << ":0" << minutes << " A.M.";
else cout << hours << ":" << minutes << " A.M.";
}
}
|
59a4f52d8e51e770f8bfc5db856757d164b753a1
|
50582d297264a5a924bfaf8dfdc06cb925c850ab
|
/baekjoonPractice/10808.cpp
|
6ce69b2f56d063b49c9e2a3cad05b1be6a3041ca
|
[] |
no_license
|
rltn2121/Baekjoon
|
81ff3a1f6c2c5437079d19b82871fde273305a19
|
d4848e7f984f60faf4fa4ec3e050dd3ae58f9ada
|
refs/heads/master
| 2021-10-26T16:55:31.198992
| 2021-10-08T08:35:44
| 2021-10-08T08:35:44
| 243,722,687
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 259
|
cpp
|
10808.cpp
|
#include <iostream>
#include <string>
using namespace std;
int main() {
string str;
int alphaCount[26] = { 0 };
cin >> str;
for (int i = 0; str[i]; i++) {
alphaCount[str[i] - 'a']++;
}
for (int i = 0; i<26; i++) {
cout << alphaCount[i] << ' ';
}
}
|
de45c27a977e2e24c108309ecf51a4aad0c3e9d1
|
e80c5acc15635c366ff7ea218c67a7dcfed46d4c
|
/src/Wall.cpp
|
25f56f4c179ab449242ec1eb7aacd0eaa0d4f04b
|
[] |
no_license
|
nan0S/bubbles
|
45ed29a4ccb8b777735a71b212c4fce104c857d6
|
42899d8617c552f48a857fa015a4bb2f9e13a39e
|
refs/heads/master
| 2022-12-21T20:42:45.574320
| 2020-09-24T21:23:21
| 2020-09-24T21:23:21
| 298,394,933
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 3,875
|
cpp
|
Wall.cpp
|
#include "Wall.hpp"
void Wall::init(GLfloat min_x, GLfloat max_x, GLfloat min_y, GLfloat max_y, GLfloat min_z, GLfloat max_z)
{
glGenVertexArrays(1, &vao);
glBindVertexArray(vao);
shader = LoadShaders("../shader/wallVertex.glsl", "../shader/wallFragment.glsl");
static const GLfloat vertices[] = {
max_x, min_y, min_z,
max_x, min_y, max_z,
max_x, max_y, max_z,
max_x, max_y, min_z,
min_x, min_y, min_z,
min_x, max_y, min_z,
min_x, max_y, max_z,
min_x, min_y, max_z,
max_x, min_y, min_z,
max_x, max_y, min_z,
min_x, max_y, min_z,
min_x, min_y, min_z,
max_x, min_y, max_z,
min_x, min_y, max_z,
min_x, max_y, max_z,
max_x, max_y, max_z,
max_x, min_y, min_z,
min_x, min_y, min_z,
min_x, min_y, max_z,
max_x, min_y, max_z,
max_x, max_y, min_z,
max_x, max_y, max_z,
min_x, max_y, max_z,
min_x, max_y, min_z
};
static const GLfloat normals[] = {
-1.0f, 0.0f, 0.0f,
-1.0f, 0.0f, 0.0f,
-1.0f, 0.0f, 0.0f,
-1.0f, 0.0f, 0.0f,
1.0f, 0.0f, 0.0f,
1.0f, 0.0f, 0.0f,
1.0f, 0.0f, 0.0f,
1.0f, 0.0f, 0.0f,
0.0f, 0.0f, 1.0f,
0.0f, 0.0f, 1.0f,
0.0f, 0.0f, 1.0f,
0.0f, 0.0f, 1.0f,
0.0f, 0.0f, -1.0f,
0.0f, 0.0f, -1.0f,
0.0f, 0.0f, -1.0f,
0.0f, 0.0f, -1.0f,
0.0f, 1.0f, 0.0f,
0.0f, 1.0f, 0.0f,
0.0f, 1.0f, 0.0f,
0.0f, 1.0f, 0.0f,
0.0f, -1.0f, 0.0f,
0.0f, -1.0f, 0.0f,
0.0f, -1.0f, 0.0f,
0.0f, -1.0f, 0.0f
};
static const GLuint indices[] = {
0, 1, 2,
0, 2, 3,
4, 5, 6,
4, 6, 7,
8, 9, 10,
8, 10, 11,
12, 13, 14,
12, 14, 15,
16, 17, 18,
16, 18, 19,
20, 21, 22,
20, 22, 23
};
glGenBuffers(1, &vertex_buffer);
glBindBuffer(GL_ARRAY_BUFFER, vertex_buffer);
glBufferData(GL_ARRAY_BUFFER, sizeof(vertices), vertices, GL_STATIC_DRAW);
glEnableVertexAttribArray(0);
glVertexAttribPointer(0, 3, GL_FLOAT, GL_FALSE, 3 * sizeof(GLfloat), (void*)0);
glGenBuffers(1, &normal_buffer);
glBindBuffer(GL_ARRAY_BUFFER, normal_buffer);
glBufferData(GL_ARRAY_BUFFER, sizeof(normals), normals, GL_STATIC_DRAW);
glEnableVertexAttribArray(1);
glVertexAttribPointer(1, 3, GL_FLOAT, GL_FALSE, 3 * sizeof(GLfloat), (void*)0);
glGenBuffers(1, &index_buffer);
glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, index_buffer);
glBufferData(GL_ELEMENT_ARRAY_BUFFER, sizeof(indices), indices, GL_STATIC_DRAW);
camera_loc = glGetUniformLocation(shader, "cameraPos");
mvp_loc = glGetUniformLocation(shader, "mvp");
}
void Wall::draw(std::vector<Bubble>& bubbles)
{
glBindVertexArray(vao);
glUseProgram(shader);
glm::vec3 camera_pos = Camera::getPosition();
glUniform3f(camera_loc, camera_pos.x, camera_pos.y, camera_pos.z);
glm::mat4 mvp = Camera::getVP();
glUniformMatrix4fv(mvp_loc, 1, GL_FALSE, &mvp[0][0]);
int idx = 0;
for (auto& b : bubbles)
if (b.special)
{
std::string loc = "pointLights[" + std::to_string(idx++) + "]";
glUniform3f(glGetUniformLocation(shader, (loc + ".pos").c_str()), b.position.x, b.position.y, b.position.z);
}
glUniform1i(glGetUniformLocation(shader, "pointLightCount"), idx);
glDrawElements(GL_TRIANGLES, 6 * 2 * 3, GL_UNSIGNED_INT, (void*)0);
glBindVertexArray(0);
}
void Wall::terminate()
{
glDeleteBuffers(1, &vertex_buffer);
glDeleteBuffers(1, &normal_buffer);
glDeleteBuffers(1, &normal_buffer);
glDeleteProgram(shader);
glDeleteVertexArrays(1, &vao);
}
|
71ee0e8f1649b564f8c13e1787bdaccea85ab4cc
|
7bc2016215e1a327cbf46a55bcbcd74abef8407c
|
/customscene.h
|
e60a6a6a4b1655dece5020c91ec26271ec6f2d5e
|
[] |
no_license
|
SurKM9/PolygonTest
|
1e600b72c75d04d0a59f5dc7b9633a91db155c3b
|
b7ad55a71b8a4e7cf7036ee0ec873eaeb339b7dc
|
refs/heads/master
| 2022-11-19T05:44:01.030642
| 2020-07-10T11:23:12
| 2020-07-10T11:23:14
| 262,420,046
| 0
| 0
| null | 2020-06-02T13:19:39
| 2020-05-08T20:17:14
|
C++
|
UTF-8
|
C++
| false
| false
| 827
|
h
|
customscene.h
|
#ifndef CUSTOMSCENE_H
#define CUSTOMSCENE_H
// qt
#include <QGraphicsScene>
#include <QGraphicsSceneMouseEvent>
#include <QPainterPath>
#include <QPointF>
// forward declaration
class PolygonItem;
class RectangleItem;
class CustomScene : public QGraphicsScene
{
public:
explicit CustomScene(QObject* parent = nullptr);
protected:
virtual void mousePressEvent(QGraphicsSceneMouseEvent* event) override;
virtual void mouseMoveEvent(QGraphicsSceneMouseEvent* event) override;
virtual void mouseReleaseEvent(QGraphicsSceneMouseEvent* event) override;
private:
PolygonItem* m_polygon;
RectangleItem* m_rectangle;
QPointF m_origPoint;
void storePoint(const QPointF& point);
void previewPoint(const QPointF& point);
};
#endif // CUSTOMSCENE_H
|
1d819e64dee1d0c519248ebcaa104ed0ea07a0ab
|
799516a742541b63a43db4f94a89e1e50bc629b0
|
/oj.ahstu.cc/1015.cpp
|
009b7f270680bf4a0a9d2f4c7a2dd2d0b19c1b40
|
[] |
no_license
|
webturing/ACM
|
2e940a72d90c0f3f45d1758d8d46c765ac47f689
|
aab803107af653e18ea4f049ac642fefa420acc7
|
refs/heads/master
| 2021-01-23T04:19:09.859541
| 2017-06-12T14:27:13
| 2017-06-12T14:27:13
| 92,923,789
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 221
|
cpp
|
1015.cpp
|
#include <iostream>
#include <string>
#include <cctype>
using namespace std;
int main() {
string s;
cin >> s;
for (auto p : s) {
cout << (char) (tolower(p));
}
cout << endl;
return 0;
}
|
c8757d536e87f9cab8bcc5d1aca58e224a654a9b
|
ccaffe91298cafeb23d84bf00e3fc1341a8a3509
|
/source/RTRS_EnvironmentMappingShader.cpp
|
740b0e5b30392a864e7e61f1f6c0b905ef8ecaa8
|
[] |
no_license
|
fasterisk/Stratos
|
8d25138c1b93b01953850197627acc6e21ed3699
|
b8d7468f36099d1c5c52826308bdde696ac8c3ca
|
refs/heads/master
| 2020-04-10T14:15:15.585466
| 2013-03-16T10:47:35
| 2013-03-16T10:47:35
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 3,901
|
cpp
|
RTRS_EnvironmentMappingShader.cpp
|
#include "RTRS_EnvironmentMappingShader.h"
#include "RTRS_TexturedModel.h"
RTRS::EnvironmentMappingShader* RTRS::EnvironmentMappingShader::m_pInstance = 0;
/**************************************************************************************************
**************************************************************************************************/
RTRS::EnvironmentMappingShader* RTRS::EnvironmentMappingShader::GetInstance()
{
if(m_pInstance == 0)
m_pInstance = new RTRS::EnvironmentMappingShader();
return m_pInstance;
}
/**************************************************************************************************
**************************************************************************************************/
RTRS::EnvironmentMappingShader::EnvironmentMappingShader()
{
ItlInitialize();
}
/**************************************************************************************************
**************************************************************************************************/
RTRS::EnvironmentMappingShader::~EnvironmentMappingShader()
{
}
/**************************************************************************************************
**************************************************************************************************/
void RTRS::EnvironmentMappingShader::ItlInitialize()
{
bool bOk = ItlLoadShaders("shader/EnvironmentMapping.vert", "shader/EnvironmentMapping.frag");
assert(bOk == true);
m_glnm4MVPLoc = glGetUniformLocation(m_glnShaderProgram, "m4ModelViewProjectionMatrix");
m_glnm4MVLoc = glGetUniformLocation(m_glnShaderProgram, "m4ModelViewMatrix");
m_glnm4MLoc = glGetUniformLocation(m_glnShaderProgram, "m4ModelMatrix");
m_glnm3NormalMatrixLoc = glGetUniformLocation(m_glnShaderProgram, "m3NormalMatrix");
m_glnv3LightPosLoc = glGetUniformLocation(m_glnShaderProgram, "v3LightPosition");
m_glnv3TransformedLightPosLoc = glGetUniformLocation(m_glnShaderProgram, "v3TransformedLightPosition");
m_glnv3CameraPosLoc = glGetUniformLocation(m_glnShaderProgram, "v3CameraPosition");
m_glnv3TransformedCameraPosLoc = glGetUniformLocation(m_glnShaderProgram, "v3TransformedCameraPosition");
m_glntCubeMapTextureLoc = glGetUniformLocation(m_glnShaderProgram, "tCubeMap");
}
/**************************************************************************************************
**************************************************************************************************/
void RTRS::EnvironmentMappingShader::Render(RTRS::IModel* pModel, GLuint glnCubeMapTexture, glm::mat4 m4ViewProjection, glm::mat4 m4View, glm::vec3 v3LightPosition, glm::vec3 v3CameraPosition)
{
assert(pModel != NULL);
glUseProgram(m_glnShaderProgram);
glm::mat4 m4Model = pModel->GetModelMatrix();
glm::mat4 m4MVPMatrix = m4ViewProjection * m4Model;
glm::mat4 m4MVMatrix = m4View * m4Model;
glm::mat3 m3NormalMatrix = glm::transpose(glm::inverse(glm::mat3(m4Model)));
glUniformMatrix4fv(m_glnm4MVPLoc, 1, GL_FALSE, (GLfloat*)&m4MVPMatrix);
glUniformMatrix4fv(m_glnm4MVLoc, 1, GL_FALSE, (GLfloat*)&m4MVMatrix);
glUniformMatrix4fv(m_glnm4MLoc, 1, GL_FALSE, (GLfloat*)&m4Model);
glUniformMatrix3fv(m_glnm3NormalMatrixLoc, 1, GL_FALSE, (GLfloat*)&m3NormalMatrix);
glUniform3fv(m_glnv3LightPosLoc, 1, (GLfloat*)&v3LightPosition);
glUniform3fv(m_glnv3TransformedLightPosLoc, 1, (GLfloat*)&glm::vec3(m4View * glm::vec4(v3LightPosition, 1.0f)));
glUniform3fv(m_glnv3CameraPosLoc, 1, (GLfloat*)&v3CameraPosition);
glUniform3fv(m_glnv3TransformedCameraPosLoc, 1, (GLfloat*)&glm::vec3(m4View * glm::vec4(v3CameraPosition, 1.0f)));
glActiveTexture(GL_TEXTURE0);
glBindTexture(GL_TEXTURE_CUBE_MAP, glnCubeMapTexture);
glUniform1i(m_glntCubeMapTextureLoc, 0);
for(unsigned int n = 0; n < pModel->GetNumMeshes(); n++)
{
if(pModel->IsEnvironmentMapped(n))
{
pModel->Render(n);
}
}
glUseProgram(0);
}
|
acc7c85956592cd7b5f2b84f412091bfda4c5f51
|
bb9aef66f743ab73ae601d7bb0759e1da47f4461
|
/en/GeneratedFiles/qrc_window.cpp
|
870dc85921a3ac416709087801a329ed1f4b5273
|
[] |
no_license
|
10gakki/en
|
66aca0ca9d561bdc09b220933b0c9b6543209991
|
62d29e7b801ec6061b575e7752b133577d93e5fd
|
refs/heads/master
| 2021-08-29T15:47:41.434493
| 2017-10-12T07:34:52
| 2017-10-12T07:34:52
| 106,660,585
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 90,910
|
cpp
|
qrc_window.cpp
|
/****************************************************************************
** Resource object code
**
** Created by: The Resource Compiler for Qt version 5.6.1
**
** WARNING! All changes made in this file will be lost!
*****************************************************************************/
static const unsigned char qt_resource_data[] = {
// E:/work/en/en/save.png
0x0,0x0,0x9,0xcc,
0x89,
0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
0x0,0x1,0xf0,0x0,0x0,0x2,0x21,0x8,0x3,0x0,0x0,0x0,0x86,0xf8,0x18,0xc3,
0x0,0x0,0x0,0x4,0x67,0x41,0x4d,0x41,0x0,0x0,0xb1,0x8f,0xb,0xfc,0x61,0x5,
0x0,0x0,0x0,0x20,0x63,0x48,0x52,0x4d,0x0,0x0,0x7a,0x26,0x0,0x0,0x80,0x84,
0x0,0x0,0xfa,0x0,0x0,0x0,0x80,0xe8,0x0,0x0,0x75,0x30,0x0,0x0,0xea,0x60,
0x0,0x0,0x3a,0x98,0x0,0x0,0x17,0x70,0x9c,0xba,0x51,0x3c,0x0,0x0,0x0,0xe7,
0x50,0x4c,0x54,0x45,0x0,0x0,0x0,0x19,0x36,0x51,0x19,0x36,0x51,0x19,0x36,0x51,
0x19,0x36,0x51,0x19,0x36,0x51,0x19,0x36,0x51,0x19,0x36,0x51,0x19,0x36,0x51,0x19,
0x36,0x51,0x9a,0xa7,0xb3,0xd1,0xd7,0xdc,0xa5,0xb1,0xbb,0xff,0xff,0xff,0xfc,0xfc,
0xfc,0xff,0xff,0xff,0xfe,0xfe,0xfe,0xe1,0xe6,0xe9,0xfc,0xfc,0xfd,0x62,0x62,0x55,
0xfd,0xbf,0x5e,0x99,0x83,0x58,0xfd,0xbf,0x5e,0xdb,0xe1,0xe5,0xdd,0xe2,0xe6,0xe0,
0xe5,0xe8,0xd1,0xd8,0xdd,0xdd,0xe3,0xe6,0xcd,0xd4,0xda,0xdf,0xe4,0xe8,0xc8,0xd0,
0xd6,0xe0,0xe5,0xe8,0xc3,0xcb,0xd2,0xdd,0xe2,0xe6,0x30,0x4a,0x62,0xe0,0xe5,0xe8,
0xe1,0xe6,0xe9,0xae,0xb9,0xc2,0xdd,0xe2,0xe6,0x3d,0x56,0x6d,0xe0,0xe5,0xe8,0xe1,
0xe6,0xe9,0xa6,0xb2,0xbc,0xdc,0xe2,0xe5,0x86,0x96,0xa4,0xd1,0xd8,0xdd,0x8a,0x99,
0xa7,0x98,0xa6,0xb2,0xc2,0xcb,0xd2,0x86,0x96,0xa4,0xd9,0xdf,0xe3,0xd7,0xdd,0xe2,
0xe1,0xe6,0xe9,0xc7,0xcf,0xd5,0x40,0x58,0x6f,0x6a,0x7d,0x8f,0xb2,0xbc,0xc5,0x1c,
0x39,0x53,0xd3,0xda,0xde,0xda,0xe0,0xe4,0x6a,0x7d,0x8e,0xe1,0xe6,0xe9,0xcc,0xd4,
0xd9,0x71,0x83,0x94,0x85,0x95,0xa3,0xbb,0xc4,0xcc,0x6a,0x7d,0x8e,0xd6,0xdd,0xe1,
0xfe,0xfe,0xfe,0xee,0xf1,0xf3,0xfd,0xfd,0xfd,0xff,0xff,0xff,0xa4,0x8a,0x59,0xd6,
0xa8,0x5c,0xdb,0xab,0x5c,0xcf,0xa4,0x5b,0x0,0x0,0x0,0x27,0x40,0xa,0xe3,0x0,
0x0,0x0,0x9,0x74,0x52,0x4e,0x53,0x0,0xda,0xe5,0x4f,0x43,0xda,0x43,0x4f,0xe5,
0xc8,0xc8,0xcd,0xbc,0x0,0x0,0x0,0x1,0x62,0x4b,0x47,0x44,0x0,0x88,0x5,0x1d,
0x48,0x0,0x0,0x0,0x9,0x70,0x48,0x59,0x73,0x0,0x0,0x0,0x5a,0x0,0x0,0x0,
0x5a,0x0,0x70,0x23,0xb8,0x7d,0x0,0x0,0x0,0x7,0x74,0x49,0x4d,0x45,0x7,0xe1,
0x4,0x15,0x0,0x4,0x25,0xac,0xe3,0x72,0xa9,0x0,0x0,0x5,0xb5,0x49,0x44,0x41,
0x54,0x78,0xda,0xed,0xdc,0x5b,0x8f,0x14,0x65,0x18,0x46,0x51,0x3c,0x3b,0x2a,0x6a,
0xab,0x8c,0x8a,0x7,0x54,0x50,0x50,0xc1,0xb3,0x80,0xa2,0xe2,0x9,0x54,0xfc,0xff,
0xff,0x87,0x54,0xea,0xca,0xaa,0x64,0xba,0x27,0xf6,0x74,0x4f,0xd7,0x5e,0xeb,0xfa,
0x49,0x55,0xf2,0xed,0xfb,0xf7,0xc2,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x80,0xff,0xe9,0x89,0x23,0xce,0x95,0x27,0x5,0x6f,0x11,0x3c,0x46,
0xf0,0x18,0xc1,0x63,0x4,0x8f,0x11,0x3c,0x46,0xf0,0x18,0xc1,0x63,0x4,0x8f,0x11,
0x3c,0x46,0xf0,0x18,0xc1,0x63,0x4,0x8f,0x11,0x3c,0x46,0xf0,0x98,0x5d,0x7,0x7f,
0xe1,0x45,0x76,0xea,0xa5,0x7d,0x7,0xbf,0xc8,0x4e,0x9,0x1e,0x23,0x78,0x8c,0xe0,
0x31,0x82,0xc7,0x8,0x1e,0x23,0x78,0x8c,0xe0,0x31,0x82,0xc7,0x8,0x1e,0x23,0x78,
0x8c,0xe0,0x31,0x82,0xc7,0x8,0x1e,0x23,0x78,0x8c,0xe0,0x31,0x82,0xc7,0x8,0x1e,
0x23,0x78,0xcc,0x2c,0xf8,0x53,0xa7,0xf3,0xb4,0xe0,0x87,0x65,0x1a,0xfc,0xb4,0x9e,
0x11,0xfc,0xb0,0x9c,0xc7,0xe0,0x2f,0xb3,0x25,0xaf,0x1c,0x44,0xf0,0x57,0x57,0x6c,
0xc9,0x6b,0x82,0xb7,0x8,0x1e,0x23,0x78,0x8c,0xe0,0x31,0x82,0xc7,0x8,0x1e,0x23,
0x78,0x8c,0xe0,0x31,0x82,0xc7,0x8,0x1e,0x23,0x78,0x8c,0xe0,0x31,0x82,0xc7,0x6c,
0x10,0xfc,0xf5,0x37,0x4e,0x76,0x49,0xf0,0x3,0xb2,0x49,0xf0,0xe3,0x93,0x9,0x7e,
0x48,0x4,0x8f,0x11,0x3c,0x46,0xf0,0x18,0xc1,0x63,0x4,0x8f,0x11,0x3c,0x46,0xf0,
0x18,0xc1,0x63,0x4,0x8f,0x11,0x3c,0x46,0xf0,0x18,0xc1,0x63,0x4,0x8f,0x59,0x4c,
0xf0,0x37,0x19,0x64,0x82,0xbf,0x75,0xc4,0xe0,0x6d,0xc1,0x5b,0x4,0x8f,0x11,0x3c,
0x46,0xf0,0x18,0xc1,0x63,0x4,0x8f,0x11,0x3c,0x46,0xf0,0x18,0xc1,0x63,0x4,0x8f,
0x11,0x3c,0x46,0xf0,0x18,0xc1,0x63,0x4,0x8f,0x11,0x3c,0x26,0x13,0x7c,0x75,0x99,
0xc1,0xda,0x77,0x5a,0x4c,0x70,0x36,0x23,0x78,0x8c,0xe0,0x31,0x82,0xc7,0x8,0x1e,
0x23,0x78,0x8c,0xe0,0x31,0x82,0xc7,0x8,0x1e,0x23,0x78,0x8c,0xe0,0x31,0x82,0xc7,
0x8,0x1e,0x23,0x78,0x8c,0xe0,0x31,0x82,0xc7,0x8,0x1e,0x23,0x78,0x8c,0xe0,0x31,
0x82,0xc7,0x8,0x1e,0x23,0x78,0x8c,0xe0,0x31,0x82,0xc7,0x8,0x1e,0x23,0x78,0x8c,
0xe0,0x31,0x82,0xc7,0x8,0x1e,0x23,0x78,0x8c,0xe0,0x31,0x82,0xc7,0x8,0x1e,0xb3,
0x98,0xe0,0xef,0x30,0xc8,0x4,0x77,0xe3,0x65,0x94,0xb9,0xf1,0x22,0xf8,0x48,0xf0,
0x18,0xc1,0x63,0x4,0x8f,0x11,0x3c,0x46,0xf0,0x18,0xc1,0x63,0x4,0x8f,0x11,0x3c,
0x46,0xf0,0x18,0xc1,0x63,0x4,0x8f,0x11,0x3c,0x46,0xf0,0x18,0xc1,0x63,0x32,0xc1,
0x57,0xef,0x32,0x58,0xfb,0x4e,0x8b,0x9,0xce,0x66,0x4,0x8f,0x11,0x3c,0x46,0xf0,
0x18,0xc1,0x63,0x4,0x8f,0x11,0x3c,0x46,0xf0,0x18,0xc1,0x63,0x4,0x8f,0x11,0x3c,
0x46,0xf0,0x18,0xc1,0x63,0x4,0x8f,0x11,0x3c,0x46,0xf0,0x18,0xc1,0x63,0x4,0x8f,
0x11,0x3c,0x46,0xf0,0x18,0xc1,0x63,0x4,0x8f,0x11,0x3c,0x46,0xf0,0x18,0xc1,0x63,
0x4,0x8f,0x11,0x3c,0x46,0xf0,0x18,0xc1,0x63,0x4,0x8f,0x11,0x3c,0x46,0xf0,0x18,
0xc1,0x63,0x16,0x13,0xfc,0x3d,0x6,0x99,0xe0,0x6e,0xbc,0x8c,0x32,0x37,0x5e,0x4,
0x1f,0x9,0x1e,0x23,0x78,0x8c,0xe0,0x31,0x82,0xc7,0x8,0x1e,0x23,0x78,0x8c,0xe0,
0x31,0x82,0xc7,0x8,0x1e,0x23,0x78,0x8c,0xe0,0x31,0x82,0xc7,0x8,0x1e,0x23,0x78,
0x4c,0x26,0xf8,0xea,0x7d,0x6,0x6b,0xdf,0x69,0x31,0xc1,0xd9,0x8c,0xe0,0x31,0x82,
0xc7,0x8,0x1e,0x23,0x78,0x8c,0xe0,0x31,0x82,0xc7,0x8,0x1e,0x23,0x78,0x8c,0xe0,
0x31,0x82,0xc7,0x8,0x1e,0x23,0x78,0x8c,0xe0,0x31,0x82,0xc7,0x8,0x1e,0x23,0x78,
0x8c,0xe0,0x31,0x82,0xc7,0x8,0x1e,0x23,0x78,0x8c,0xe0,0x31,0x82,0xc7,0x8,0x1e,
0x23,0x78,0x8c,0xe0,0x31,0x82,0xc7,0x8,0x1e,0x23,0x78,0x8c,0xe0,0x31,0x82,0xc7,
0x8,0x1e,0x23,0x78,0xcc,0x62,0x82,0x5f,0x61,0x90,0x9,0xee,0xc6,0xcb,0x28,0x73,
0xe3,0x45,0xf0,0x91,0xe0,0x31,0x82,0xc7,0x8,0x1e,0x23,0x78,0x8c,0xe0,0x31,0x82,
0xc7,0x8,0x1e,0x23,0x78,0x8c,0xe0,0x31,0x82,0xc7,0x8,0x1e,0x23,0x78,0x8c,0xe0,
0x31,0x82,0xc7,0x64,0x82,0xaf,0x3e,0x60,0xb0,0xf6,0x9d,0x16,0x13,0x9c,0xcd,0x8,
0x1e,0x23,0x78,0x8c,0xe0,0x31,0x82,0xc7,0x8,0x1e,0x23,0x78,0x8c,0xe0,0x31,0x82,
0xc7,0x8,0x1e,0x23,0x78,0x8c,0xe0,0x31,0x82,0xc7,0x8,0x1e,0x23,0x78,0x8c,0xe0,
0x31,0x82,0xc7,0x8,0x1e,0x23,0x78,0x8c,0xe0,0x31,0x82,0xc7,0x8,0x1e,0x23,0x78,
0x8c,0xe0,0x31,0x82,0xc7,0x8,0x1e,0x23,0x78,0x8c,0xe0,0x31,0x82,0xc7,0x8,0x1e,
0x23,0x78,0x8c,0xe0,0x31,0x82,0xc7,0x8,0x1e,0xb3,0x94,0xe0,0x1f,0x7e,0xc4,0xe0,
0x6a,0x25,0xb8,0xa3,0x3e,0xa3,0xcc,0x51,0x1f,0xc1,0x47,0x82,0xc7,0x8,0x1e,0x23,
0x78,0x8c,0xe0,0x31,0x82,0xc7,0x8,0x1e,0x23,0x78,0x8c,0xe0,0x31,0x82,0xc7,0x8,
0x1e,0x23,0x78,0x8c,0xe0,0x31,0x82,0xc7,0x64,0x82,0x5f,0xfb,0x98,0xc1,0xda,0x87,
0x5a,0x4a,0x70,0x36,0x24,0x78,0x8c,0xe0,0x31,0x82,0xc7,0x8,0x1e,0x23,0x78,0x8c,
0xe0,0x31,0x82,0xc7,0x8,0x1e,0x23,0x78,0x8c,0xe0,0x31,0x82,0xc7,0x8,0x1e,0x23,
0x78,0x8c,0xe0,0x31,0x82,0xc7,0x8,0x1e,0x23,0x78,0x8c,0xe0,0x31,0x82,0xc7,0x8,
0x1e,0x23,0x78,0x8c,0xe0,0x31,0x82,0xc7,0x8,0x1e,0x23,0x78,0x8c,0xe0,0x31,0x82,
0xc7,0x8,0x1e,0x23,0x78,0x8c,0xe0,0x31,0x82,0xc7,0x8,0x1e,0x23,0x78,0xcc,0x52,
0x82,0x7f,0x72,0x9d,0xc1,0x8d,0x4a,0x70,0x47,0x7d,0x46,0x99,0xa3,0x3e,0x82,0x8f,
0x4,0x8f,0x11,0x3c,0x46,0xf0,0x18,0xc1,0x63,0x4,0x8f,0x11,0x3c,0x46,0xf0,0x18,
0xc1,0x63,0x4,0x8f,0x11,0x3c,0x46,0xf0,0x18,0xc1,0x63,0x4,0x8f,0xc9,0x4,0xff,
0xf4,0x33,0x6,0x6b,0x1f,0x6a,0x29,0xc1,0xd9,0x90,0xe0,0x31,0x82,0xc7,0x8,0x1e,
0x23,0x78,0x8c,0xe0,0x31,0x82,0xc7,0x8,0x1e,0x23,0x78,0x8c,0xe0,0x31,0x82,0xc7,
0x8,0x1e,0x23,0x78,0x8c,0xe0,0x31,0x82,0xc7,0x8,0x1e,0x23,0x78,0x8c,0xe0,0x31,
0x82,0xc7,0x8,0x1e,0x23,0x78,0x8c,0xe0,0x31,0x82,0xc7,0x8,0x1e,0x23,0x78,0x8c,
0xe0,0x31,0x82,0xc7,0x8,0x1e,0x23,0x78,0x8c,0xe0,0x31,0x82,0xc7,0x8,0x1e,0x23,
0x78,0x8c,0xe0,0xdb,0xf7,0xf9,0xcd,0xa9,0xd9,0xe4,0xd6,0x74,0xf1,0xc5,0xfc,0x33,
0x5f,0x4e,0x37,0x5f,0xcd,0x26,0x5f,0x4f,0x27,0xdf,0x8,0xbe,0x7,0xdf,0x1e,0x4d,
0x7d,0x37,0x9d,0x7c,0x3f,0x5d,0xdc,0x9e,0x7f,0xe6,0xce,0x74,0x73,0x77,0x36,0xf9,
0x61,0x3a,0xf9,0x51,0x70,0xc1,0x5,0x17,0x5c,0x70,0xc1,0x5,0x17,0x5c,0x70,0xc1,
0x5,0x17,0x5c,0x70,0xc1,0x5,0x17,0x5c,0x70,0xc1,0x5,0x17,0x5c,0x70,0xc1,0xf,
0x81,0xe0,0x82,0xb,0x2e,0xb8,0xe0,0x8b,0x9,0x7e,0xef,0xa7,0xa9,0x9f,0xa7,0x93,
0x5f,0xa6,0x8b,0xfb,0xf3,0xcf,0xfc,0x3a,0xdd,0xfc,0x36,0x9b,0xfc,0x3e,0x9d,0xfc,
0x21,0x38,0xff,0x25,0x78,0x8c,0xe0,0x31,0x82,0xc7,0x8,0x1e,0x23,0x78,0x8c,0xe0,
0x31,0x82,0xc7,0x8,0x1e,0x23,0x78,0x8c,0xe0,0x31,0x82,0xc7,0x8,0x1e,0x23,0x78,
0x8c,0xe0,0x31,0x82,0xc7,0x8,0x1e,0x23,0x78,0x8c,0xe0,0x31,0x82,0xc7,0x8,0x1e,
0x23,0x78,0x8c,0xe0,0x31,0x82,0xc7,0x8,0x1e,0x23,0x78,0x8c,0xe0,0x31,0x82,0xc7,
0x8,0x1e,0x23,0x78,0xcc,0x61,0x4,0xff,0xf3,0x1,0x5b,0xf2,0xf0,0x20,0x82,0x73,
0x96,0x4,0x8f,0x11,0x3c,0x46,0xf0,0x18,0xc1,0x63,0x4,0x8f,0x11,0x3c,0x46,0xf0,
0x18,0xc1,0x63,0x4,0x8f,0x11,0x3c,0x46,0xf0,0x18,0xc1,0x63,0x4,0x8f,0x11,0x3c,
0x46,0xf0,0x18,0xc1,0x63,0x4,0x8f,0x11,0x3c,0x46,0xf0,0x18,0xc1,0x63,0xf6,0x1e,
0xfc,0x2f,0x76,0x6a,0xdf,0xc1,0xd9,0x33,0xc1,0x63,0x4,0x8f,0x11,0x3c,0x46,0xf0,
0x18,0xc1,0x63,0x4,0x8f,0x11,0x3c,0x46,0xf0,0x18,0xc1,0x63,0x4,0x8f,0x11,0x3c,
0x46,0xf0,0x18,0xc1,0x63,0x4,0x8f,0x11,0x3c,0xe6,0xac,0x83,0x3f,0xfb,0xdc,0xe9,
0x3c,0x3f,0xf9,0xdf,0xdf,0xff,0xb0,0x55,0x8f,0xce,0x38,0xf8,0x69,0xcd,0x82,0x1f,
0xb3,0x53,0x82,0xc7,0x8,0x1e,0x23,0x78,0x8c,0xe0,0x31,0x82,0xc7,0x8,0x1e,0x23,
0x78,0x8c,0xe0,0x31,0x82,0xc7,0x8,0x1e,0x23,0x78,0x8c,0xe0,0x31,0x82,0xc7,0x8,
0x1e,0x23,0x78,0x8c,0xe0,0x31,0x82,0xc7,0xec,0x3d,0xf8,0xbf,0xec,0xd4,0xbe,0x83,
0xb3,0x67,0x82,0xc7,0x8,0x1e,0x23,0x78,0x8c,0xe0,0x31,0x82,0xc7,0x8,0x1e,0x23,
0x78,0x8c,0xe0,0x31,0x82,0xc7,0x8,0x1e,0x23,0x78,0x8c,0xe0,0x31,0x82,0xc7,0x8,
0x1e,0x73,0xd6,0xc1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,
0x80,0xc7,0x38,0x3a,0x74,0x7b,0xec,0xee,0xf8,0x63,0x0,0x0,0x0,0x25,0x74,0x45,
0x58,0x74,0x64,0x61,0x74,0x65,0x3a,0x63,0x72,0x65,0x61,0x74,0x65,0x0,0x32,0x30,
0x31,0x37,0x2d,0x30,0x34,0x2d,0x32,0x31,0x54,0x30,0x30,0x3a,0x30,0x34,0x3a,0x33,
0x37,0x2b,0x30,0x38,0x3a,0x30,0x30,0xb,0xeb,0xdc,0xc3,0x0,0x0,0x0,0x25,0x74,
0x45,0x58,0x74,0x64,0x61,0x74,0x65,0x3a,0x6d,0x6f,0x64,0x69,0x66,0x79,0x0,0x32,
0x30,0x31,0x37,0x2d,0x30,0x34,0x2d,0x32,0x31,0x54,0x30,0x30,0x3a,0x30,0x34,0x3a,
0x33,0x37,0x2b,0x30,0x38,0x3a,0x30,0x30,0x7a,0xb6,0x64,0x7f,0x0,0x0,0x0,0x4d,
0x74,0x45,0x58,0x74,0x73,0x6f,0x66,0x74,0x77,0x61,0x72,0x65,0x0,0x49,0x6d,0x61,
0x67,0x65,0x4d,0x61,0x67,0x69,0x63,0x6b,0x20,0x37,0x2e,0x30,0x2e,0x31,0x2d,0x36,
0x20,0x51,0x31,0x36,0x20,0x78,0x38,0x36,0x5f,0x36,0x34,0x20,0x32,0x30,0x31,0x36,
0x2d,0x30,0x39,0x2d,0x31,0x37,0x20,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x77,0x77,
0x77,0x2e,0x69,0x6d,0x61,0x67,0x65,0x6d,0x61,0x67,0x69,0x63,0x6b,0x2e,0x6f,0x72,
0x67,0xdd,0xd9,0xa5,0x4e,0x0,0x0,0x0,0x63,0x74,0x45,0x58,0x74,0x73,0x76,0x67,
0x3a,0x63,0x6f,0x6d,0x6d,0x65,0x6e,0x74,0x0,0x20,0x47,0x65,0x6e,0x65,0x72,0x61,
0x74,0x6f,0x72,0x3a,0x20,0x41,0x64,0x6f,0x62,0x65,0x20,0x49,0x6c,0x6c,0x75,0x73,
0x74,0x72,0x61,0x74,0x6f,0x72,0x20,0x31,0x39,0x2e,0x30,0x2e,0x30,0x2c,0x20,0x53,
0x56,0x47,0x20,0x45,0x78,0x70,0x6f,0x72,0x74,0x20,0x50,0x6c,0x75,0x67,0x2d,0x49,
0x6e,0x20,0x2e,0x20,0x53,0x56,0x47,0x20,0x56,0x65,0x72,0x73,0x69,0x6f,0x6e,0x3a,
0x20,0x36,0x2e,0x30,0x30,0x20,0x42,0x75,0x69,0x6c,0x64,0x20,0x30,0x29,0x20,0x20,
0xce,0x48,0x90,0xb,0x0,0x0,0x0,0x18,0x74,0x45,0x58,0x74,0x54,0x68,0x75,0x6d,
0x62,0x3a,0x3a,0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x3a,0x3a,0x50,0x61,0x67,
0x65,0x73,0x0,0x31,0xa7,0xff,0xbb,0x2f,0x0,0x0,0x0,0x18,0x74,0x45,0x58,0x74,
0x54,0x68,0x75,0x6d,0x62,0x3a,0x3a,0x49,0x6d,0x61,0x67,0x65,0x3a,0x3a,0x48,0x65,
0x69,0x67,0x68,0x74,0x0,0x35,0x34,0x35,0x6c,0x9e,0x32,0x67,0x0,0x0,0x0,0x17,
0x74,0x45,0x58,0x74,0x54,0x68,0x75,0x6d,0x62,0x3a,0x3a,0x49,0x6d,0x61,0x67,0x65,
0x3a,0x3a,0x57,0x69,0x64,0x74,0x68,0x0,0x34,0x39,0x36,0xd2,0xa,0x27,0xfa,0x0,
0x0,0x0,0x19,0x74,0x45,0x58,0x74,0x54,0x68,0x75,0x6d,0x62,0x3a,0x3a,0x4d,0x69,
0x6d,0x65,0x74,0x79,0x70,0x65,0x0,0x69,0x6d,0x61,0x67,0x65,0x2f,0x70,0x6e,0x67,
0x3f,0xb2,0x56,0x4e,0x0,0x0,0x0,0x17,0x74,0x45,0x58,0x74,0x54,0x68,0x75,0x6d,
0x62,0x3a,0x3a,0x4d,0x54,0x69,0x6d,0x65,0x0,0x31,0x34,0x39,0x32,0x37,0x30,0x34,
0x32,0x37,0x37,0xe4,0xef,0x2d,0x2,0x0,0x0,0x0,0x11,0x74,0x45,0x58,0x74,0x54,
0x68,0x75,0x6d,0x62,0x3a,0x3a,0x53,0x69,0x7a,0x65,0x0,0x35,0x2e,0x34,0x4b,0x42,
0x10,0x40,0x42,0x4d,0x0,0x0,0x0,0x5f,0x74,0x45,0x58,0x74,0x54,0x68,0x75,0x6d,
0x62,0x3a,0x3a,0x55,0x52,0x49,0x0,0x66,0x69,0x6c,0x65,0x3a,0x2f,0x2f,0x2f,0x68,
0x6f,0x6d,0x65,0x2f,0x77,0x77,0x77,0x72,0x6f,0x6f,0x74,0x2f,0x73,0x69,0x74,0x65,
0x2f,0x77,0x77,0x77,0x2e,0x65,0x61,0x73,0x79,0x69,0x63,0x6f,0x6e,0x2e,0x6e,0x65,
0x74,0x2f,0x63,0x64,0x6e,0x2d,0x69,0x6d,0x67,0x2e,0x65,0x61,0x73,0x79,0x69,0x63,
0x6f,0x6e,0x2e,0x63,0x6e,0x2f,0x73,0x72,0x63,0x2f,0x31,0x32,0x30,0x38,0x30,0x2f,
0x31,0x32,0x30,0x38,0x30,0x37,0x32,0x2e,0x70,0x6e,0x67,0x8f,0x6e,0x5a,0x8b,0x0,
0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82,
// E:/work/en/en/file.png
0x0,0x0,0x3a,0x26,
0x89,
0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
0x0,0x3,0xf8,0x0,0x0,0x3,0xf8,0x8,0x4,0x0,0x0,0x0,0xc3,0xd2,0x9f,0x1c,
0x0,0x0,0x0,0x4,0x67,0x41,0x4d,0x41,0x0,0x0,0xb1,0x8f,0xb,0xfc,0x61,0x5,
0x0,0x0,0x0,0x20,0x63,0x48,0x52,0x4d,0x0,0x0,0x7a,0x26,0x0,0x0,0x80,0x84,
0x0,0x0,0xfa,0x0,0x0,0x0,0x80,0xe8,0x0,0x0,0x75,0x30,0x0,0x0,0xea,0x60,
0x0,0x0,0x3a,0x98,0x0,0x0,0x17,0x70,0x9c,0xba,0x51,0x3c,0x0,0x0,0x0,0x2,
0x62,0x4b,0x47,0x44,0x0,0x0,0xaa,0x8d,0x23,0x32,0x0,0x0,0x0,0x9,0x70,0x48,
0x59,0x73,0x0,0x0,0x0,0x82,0x0,0x0,0x0,0x82,0x0,0xc7,0xaf,0x69,0x28,0x0,
0x0,0x0,0x7,0x74,0x49,0x4d,0x45,0x7,0xe1,0x6,0x7,0x16,0x17,0x17,0x9d,0xa0,
0x71,0xd,0x0,0x0,0x37,0x13,0x49,0x44,0x41,0x54,0x78,0xda,0xed,0xdd,0x79,0xfc,
0x65,0x75,0x5d,0x3f,0xf0,0xd7,0x30,0xc3,0xe,0xc3,0xae,0x20,0x2a,0xa8,0xa8,0x6c,
0x49,0xa,0x88,0xbb,0x91,0xa5,0x95,0x69,0x58,0x2a,0x89,0x15,0xa5,0xa9,0xa9,0xe5,
0x9a,0x69,0xee,0xe6,0x5e,0x96,0x66,0xb9,0x56,0x2a,0xb9,0xf4,0x53,0x32,0xdc,0x13,
0xf7,0xdc,0x8a,0x25,0x15,0x5c,0x70,0xc1,0x54,0x14,0x5c,0xd8,0x17,0x59,0x66,0x98,
0x99,0xdf,0x1f,0x82,0xc2,0x8,0xcc,0x77,0xb9,0xe7,0xbe,0xcf,0xe7,0x7c,0x9e,0xcf,
0xef,0x7f,0x3e,0xf0,0x9e,0xd7,0xf9,0x2e,0xf7,0x35,0xaf,0xbb,0x9c,0x9b,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x40,0x95,0x15,0xd5,0x1,0xae,0x61,0x9b,
0xdc,0x2d,0x87,0xe5,0x2e,0xb9,0x7d,0xb6,0xcb,0x56,0x59,0x59,0x1d,0x7,0x60,0x20,
0xeb,0xb3,0x26,0x97,0xe6,0xeb,0xf9,0xef,0xfc,0x77,0xfe,0x2b,0x3f,0xaa,0x8e,0x43,
0x1f,0xc6,0x51,0xf8,0xb7,0xc8,0x53,0xf3,0xe0,0xec,0x54,0x1d,0x3,0xa0,0xc0,0xda,
0x7c,0x24,0x2f,0xce,0xa7,0xaa,0x63,0x30,0x75,0xd5,0x85,0xbf,0x59,0x1e,0x9d,0xbf,
0xca,0xce,0xd5,0xdf,0x6,0x80,0x62,0xeb,0xf3,0x86,0x3c,0x25,0x17,0x54,0xc7,0x60,
0xba,0x2a,0xb,0x7f,0x45,0x9e,0x9a,0x17,0x66,0xb3,0xea,0x6f,0x1,0xc0,0x68,0xbc,
0x3d,0x7f,0x9a,0x73,0xaa,0x43,0x30,0x4d,0x75,0x85,0x7f,0x9f,0xbc,0x2b,0x5b,0x55,
0x9f,0x3e,0xc0,0xe8,0x3c,0x3b,0xcf,0xaf,0x8e,0xc0,0x14,0xd5,0x14,0xfe,0x16,0x39,
0x3e,0xbf,0x54,0x7d,0xea,0x0,0x23,0x75,0x61,0xee,0x98,0xaf,0x57,0x87,0x60,0x6a,
0x2a,0x1e,0x50,0x3f,0x28,0x17,0xaa,0x7b,0x80,0xeb,0xb5,0x43,0xbe,0x96,0x3f,0xa9,
0xe,0xc1,0xd4,0xcc,0xbf,0xf0,0x8f,0xcc,0x17,0x3c,0x94,0xf,0xb0,0x9,0xaf,0xc9,
0x31,0xd5,0x11,0x98,0x96,0x79,0x3f,0xa4,0xff,0x84,0xbc,0xbc,0xfa,0x94,0x1,0x1a,
0xf1,0xe1,0xdc,0xbb,0x3a,0x2,0xd3,0x31,0xdf,0xc2,0x57,0xf7,0x0,0x8b,0xf1,0xc9,
0xdc,0xb3,0x3a,0x2,0x53,0x31,0xcf,0xeb,0xd9,0x1d,0x99,0x7f,0xae,0x3e,0x5d,0x80,
0xa6,0xec,0x95,0xfd,0xf2,0xef,0xd5,0x21,0x98,0x86,0xf9,0x15,0xfe,0x41,0xf9,0x48,
0xf5,0xc9,0x2,0x34,0xe7,0xc0,0x24,0xff,0x55,0x1d,0x82,0x29,0x98,0xd7,0x43,0xfa,
0x5b,0xe4,0x42,0x2f,0xd5,0x3,0x58,0x92,0x3b,0xe5,0x84,0xea,0x8,0xb4,0x6f,0x5e,
0xaf,0xd2,0x3f,0x5e,0xdd,0x3,0x2c,0xd1,0xa7,0xb3,0x45,0x75,0x4,0xda,0x37,0x9f,
0xc2,0xbf,0x8f,0xf7,0xdd,0x3,0x2c,0xd9,0xaa,0xfc,0x4b,0x75,0x4,0xda,0x37,0x8f,
0x87,0xf4,0x57,0xe4,0x52,0xfb,0x1e,0x60,0x59,0xe,0xcc,0x97,0xab,0x23,0xd0,0xb6,
0x79,0x2c,0xfc,0xa7,0xaa,0x7b,0x80,0x65,0x7a,0x67,0x75,0x0,0x5a,0x37,0xfc,0xc2,
0xdf,0x2c,0x6b,0x7d,0x22,0x1e,0xc0,0xb2,0xfd,0x62,0x4e,0xa9,0x8e,0x40,0xcb,0x86,
0xaf,0xe2,0x47,0xab,0x7b,0x80,0x19,0x78,0x43,0x75,0x0,0xda,0x36,0xfc,0xc2,0x3f,
0x37,0x3b,0x57,0x9f,0x24,0xc0,0x24,0xec,0x9c,0xf3,0xab,0x23,0xd0,0xae,0xa1,0xd7,
0xf7,0x2d,0xd4,0x3d,0xc0,0x8c,0x3c,0xa6,0x3a,0x0,0x2d,0x1b,0x7a,0xe1,0xbf,0x36,
0x8f,0xaa,0x3e,0x45,0x80,0x89,0xb8,0x28,0x3b,0x54,0x47,0xa0,0x5d,0x43,0x17,0xfe,
0x79,0xd9,0xa9,0xfa,0x14,0x1,0x26,0x63,0x87,0x5c,0x54,0x1d,0x81,0x56,0xd,0xfb,
0x90,0xfe,0x36,0xea,0x1e,0x60,0x86,0xee,0x55,0x1d,0x80,0x76,0xd,0x5b,0xf8,0x77,
0xab,0x3e,0x3d,0x80,0x49,0x39,0xba,0x3a,0x0,0xed,0x1a,0xb6,0xf0,0xf,0xab,0x3e,
0x3d,0x80,0x49,0x39,0xb8,0x3a,0x0,0xed,0x1a,0xb6,0xf0,0xef,0x52,0x7d,0x7a,0x0,
0x93,0xb2,0x67,0x75,0x0,0xda,0x35,0x6c,0xe1,0xdf,0xbe,0xfa,0xf4,0x0,0x26,0x65,
0x85,0x4b,0x95,0xb3,0x54,0xc3,0x16,0xfe,0x76,0xd5,0xa7,0x7,0x30,0x31,0xa,0x9f,
0x25,0x1a,0xb6,0xf0,0xfd,0x62,0x2,0xcc,0xd6,0x36,0xd5,0x1,0x68,0xd5,0xb0,0x85,
0xbf,0xb2,0xfa,0xf4,0x0,0x26,0x66,0xfb,0xea,0x0,0xb4,0xca,0x7,0xdb,0x0,0xb4,
0x64,0xf8,0x4f,0x40,0x61,0xa2,0x14,0x3e,0x0,0x74,0x40,0xe1,0x3,0x40,0x7,0x14,
0x3e,0x0,0x74,0x40,0xe1,0x3,0x40,0x7,0x14,0x3e,0x0,0x74,0x40,0xe1,0x3,0x40,
0x7,0x14,0x3e,0x0,0x74,0x40,0xe1,0x3,0x40,0x7,0x14,0x3e,0x0,0x74,0x40,0xe1,
0x3,0x40,0x7,0x14,0x3e,0x0,0x74,0x40,0xe1,0x3,0x40,0x7,0x14,0x3e,0x0,0x74,
0x40,0xe1,0x3,0x40,0x7,0x14,0x3e,0x0,0x74,0x40,0xe1,0x3,0x40,0x7,0x14,0x3e,
0x0,0x74,0x40,0xe1,0x3,0x40,0x7,0x14,0x3e,0x0,0x74,0x40,0xe1,0x3,0x40,0x7,
0x14,0x3e,0x0,0x74,0x40,0xe1,0x3,0x40,0x7,0x14,0x3e,0x0,0x74,0x40,0xe1,0x3,
0x40,0x7,0x14,0x3e,0x0,0x74,0x40,0xe1,0x3,0x40,0x7,0x14,0x3e,0x0,0x74,0x40,
0xe1,0x3,0x40,0x7,0x14,0x3e,0x0,0x74,0x60,0x55,0x75,0x80,0x81,0xec,0x5f,0x1d,
0x0,0x98,0xb4,0xaf,0x54,0x7,0x80,0xc5,0x9a,0x6a,0xe1,0x27,0xa7,0x55,0x7,0x0,
0x80,0xf1,0xf0,0x90,0x3e,0x0,0x74,0x40,0xe1,0x3,0x40,0x7,0x14,0x3e,0x0,0x74,
0x40,0xe1,0x3,0x40,0x7,0x14,0x3e,0x0,0x74,0x40,0xe1,0x3,0x40,0x7,0x14,0x3e,
0x0,0x74,0x40,0xe1,0x3,0x40,0x7,0x14,0x3e,0x0,0x74,0x40,0xe1,0x3,0x40,0x7,
0x14,0x3e,0x0,0x74,0x40,0xe1,0x3,0x40,0x7,0x14,0x3e,0x0,0x74,0x40,0xe1,0x3,
0x40,0x7,0x14,0x3e,0x0,0x74,0x40,0xe1,0x3,0x40,0x7,0x14,0x3e,0x0,0x74,0x40,
0xe1,0x3,0x40,0x7,0x14,0x3e,0x0,0x74,0x40,0xe1,0x3,0x40,0x7,0x14,0x3e,0x0,
0x74,0x40,0xe1,0x3,0x40,0x7,0x14,0x3e,0x0,0x74,0x40,0xe1,0x3,0x40,0x7,0x14,
0x3e,0x0,0x74,0x40,0xe1,0x3,0x40,0x7,0x14,0x3e,0x0,0x74,0x40,0xe1,0x3,0x40,
0x7,0x14,0x3e,0x0,0x74,0x40,0xe1,0x3,0x40,0x7,0x14,0x3e,0x0,0x74,0x40,0xe1,
0x3,0x40,0x7,0x14,0x3e,0x0,0x74,0x40,0xe1,0x3,0x40,0x7,0x14,0x3e,0x0,0x74,
0x40,0xe1,0x3,0x40,0x7,0x14,0x3e,0x0,0x74,0x40,0xe1,0x3,0x40,0x7,0x14,0x3e,
0x0,0x74,0x40,0xe1,0x3,0x40,0x7,0x14,0x3e,0x0,0x74,0x40,0xe1,0x3,0x40,0x7,
0x14,0x3e,0x0,0x74,0x40,0xe1,0x3,0x40,0x7,0x14,0x3e,0x0,0x74,0x40,0xe1,0x3,
0x40,0x7,0x14,0x3e,0x0,0x74,0x40,0xe1,0x3,0x40,0x7,0x14,0x3e,0x0,0x74,0x40,
0xe1,0x3,0x40,0x7,0x14,0x3e,0x0,0x74,0x40,0xe1,0x3,0x40,0x7,0x14,0x3e,0x0,
0x74,0x40,0xe1,0x3,0x40,0x7,0x14,0x3e,0x0,0x74,0x40,0xe1,0x3,0x40,0x7,0x14,
0x3e,0x0,0x74,0x60,0x55,0x75,0x0,0xba,0xb3,0x2a,0xbb,0x67,0xa7,0xec,0x90,0x9d,
0xb2,0x79,0x75,0x94,0xd1,0x3a,0x3f,0x17,0xe4,0xa2,0x9c,0x95,0xcb,0xaa,0x83,0x40,
0x53,0x36,0xcb,0x56,0x59,0x9d,0xed,0xb2,0x3a,0x3b,0x64,0xf3,0x6c,0x91,0x2d,0xb2,
0x26,0x6b,0xb2,0x36,0x17,0xe6,0xa2,0x5c,0x92,0x8b,0x73,0x59,0xd6,0x57,0x47,0xac,
0xa4,0xf0,0x99,0x97,0x5b,0xe4,0x1,0xf9,0x83,0xec,0xaf,0xe6,0x17,0x61,0x43,0xce,
0xcc,0xb1,0x79,0x5b,0x3e,0x9f,0x75,0xd5,0x51,0x60,0x94,0x76,0xcc,0xad,0x73,0x48,
0xe,0xcb,0x81,0xb9,0x65,0x76,0xcc,0x8a,0x4d,0xfe,0xf7,0x1b,0x72,0x41,0xfe,0x2f,
0x5f,0xce,0x9,0x39,0x39,0xdf,0xc8,0xf9,0xd5,0xf1,0xa7,0x64,0x43,0xd9,0xd7,0x7e,
0xd5,0xa7,0xce,0x35,0xec,0x9d,0x57,0xe7,0xca,0xc2,0xdf,0x86,0x29,0x7c,0x7d,0x24,
0x77,0xab,0xfe,0x31,0x72,0x2d,0x75,0xbf,0xb,0xfb,0x56,0x9f,0xfa,0x8,0xec,0x92,
0x23,0xf2,0xc6,0x7c,0x7b,0x6,0xdf,0xcd,0xef,0xe4,0x4d,0x79,0x40,0x76,0xad,0x3e,
0xa1,0x29,0xa8,0xfb,0x93,0x50,0xf8,0x63,0x71,0xcf,0x7c,0xb3,0xbc,0x2c,0xa7,0xf2,
0x75,0x45,0x1e,0xbb,0x80,0x5,0xc3,0x7c,0xd4,0xfd,0x1e,0xf4,0x5c,0xf8,0x37,0xca,
0x1f,0xe5,0x13,0x59,0x37,0xc0,0x77,0x75,0x5d,0x3e,0x99,0x87,0xe5,0xc6,0xd5,0x27,
0xd8,0xb2,0xba,0x3f,0x9,0x85,0x3f,0x6,0x87,0xe4,0xac,0xf2,0x92,0x9c,0xda,0xd7,
0xba,0x3c,0xb2,0xfa,0xc7,0x4a,0x12,0x85,0x3f,0x6f,0x87,0xe6,0x9f,0xf3,0xe3,0x39,
0x7c,0x77,0x2f,0xcd,0x1b,0x72,0x58,0xf5,0xc9,0xb6,0xa9,0xee,0x4f,0x42,0xe1,0x57,
0xdb,0x26,0xc7,0x95,0x97,0xe3,0x54,0xbf,0xbe,0xe3,0xf7,0x7b,0x4,0xea,0x7e,0xfe,
0xbd,0x15,0xfe,0x61,0x79,0x67,0xd6,0xcf,0xf9,0x7b,0xbc,0x3e,0xc7,0xe5,0xce,0xd5,
0x27,0xde,0x9a,0xba,0x3f,0x9,0x77,0x88,0xb5,0xee,0xe2,0x39,0xfb,0x81,0xbf,0x9e,
0x5a,0xfd,0x23,0xee,0x5e,0xdd,0xcf,0xbe,0x9f,0xc2,0xdf,0x33,0xaf,0xcc,0xda,0xc2,
0xef,0xf4,0x95,0x79,0x55,0x6e,0x56,0xfd,0x4d,0x68,0x47,0xdd,0xf,0x4a,0xe1,0x57,
0x7a,0x7e,0x79,0x1d,0xf6,0xf0,0xf5,0x69,0xef,0xb1,0x29,0x55,0xf7,0x93,0xef,0xa3,
0xf0,0x7f,0x2b,0x5f,0x2f,0xff,0x1b,0xfb,0xc9,0xd7,0xe9,0xf9,0xed,0xea,0x6f,0xc6,
0xac,0xb8,0xf0,0xe,0xb3,0xf6,0xd6,0x3c,0xb3,0x3a,0x42,0x17,0xee,0x9a,0x33,0xb2,
0x5d,0x75,0x8,0x98,0xb9,0xad,0xf2,0x8c,0xac,0xcd,0xbb,0x72,0xeb,0xea,0x20,0x57,
0xb9,0x55,0xde,0x99,0x2b,0xf3,0xec,0x6c,0x5d,0x1d,0x64,0xf9,0x14,0x3e,0xb3,0xf5,
0xb1,0x1c,0x55,0x1d,0xa1,0x1b,0x7b,0xe4,0x87,0xd9,0xad,0x3a,0x4,0xcc,0xd0,0xf6,
0x79,0x75,0x2e,0xcb,0xb,0x46,0xf7,0xe8,0xd5,0xca,0x3c,0x2f,0x97,0xe6,0x75,0xd9,
0xa1,0x3a,0xc8,0xf2,0x28,0x7c,0x66,0xe9,0x5d,0x39,0xbc,0x3a,0x42,0x57,0xb6,0xc9,
0xe9,0x53,0xd8,0x1d,0x90,0x64,0xbb,0xfc,0x4b,0x2e,0xca,0xa3,0xab,0x63,0xdc,0x80,
0x47,0xe6,0x82,0xbc,0x29,0xdb,0x57,0xc7,0x58,0x3a,0x85,0xcf,0xec,0xbc,0x3a,0xbf,
0x55,0x1d,0xa1,0x3b,0xab,0xf3,0x55,0x7f,0xc5,0x34,0x6f,0x55,0xfe,0x36,0x17,0xe7,
0x61,0xd5,0x31,0x16,0xe0,0xe8,0x5c,0x94,0x57,0xb4,0x7a,0xbd,0x50,0x77,0x15,0xcc,
0xca,0x91,0xa3,0xfe,0xb7,0xf9,0x74,0xdd,0x3c,0xef,0xac,0x8e,0x0,0xcb,0xf2,0x88,
0xac,0xc9,0x93,0xaa,0x43,0x2c,0xc2,0xe3,0x73,0x45,0xfe,0xa4,0x3a,0xc4,0x52,0x28,
0x7c,0x66,0x63,0xcf,0xfc,0xbf,0xea,0x8,0xdd,0x3a,0x22,0x7f,0x54,0x1d,0x1,0x96,
0xe8,0xf6,0xf9,0x61,0x5e,0xdf,0xdc,0x15,0x24,0x57,0xe4,0x35,0x39,0x3b,0x87,0x54,
0xc7,0x58,0x2c,0x85,0xcf,0x6c,0x7c,0xba,0x3a,0x40,0xd7,0xde,0x90,0x5d,0xaa,0x23,
0xc0,0xa2,0x6d,0x99,0x63,0xf3,0xb9,0xdc,0xa8,0x3a,0xc6,0x12,0xed,0x9a,0x93,0x72,
0x5c,0xb6,0xaa,0x8e,0xb1,0x18,0xa,0x9f,0x59,0xf8,0xe3,0xec,0x5d,0x1d,0xa1,0x73,
0xff,0x51,0x1d,0x0,0x16,0xe9,0xfe,0xb9,0x34,0xf,0xac,0xe,0xb1,0x4c,0x47,0xe4,
0xd2,0x3c,0xa0,0x3a,0xc4,0xc2,0x29,0x7c,0x96,0x6f,0xab,0xfc,0x53,0x75,0x84,0xee,
0xdd,0x23,0xf7,0xaa,0x8e,0x0,0xb,0xb6,0x45,0xfe,0x33,0xef,0x9e,0x44,0xff,0xac,
0xc8,0x7f,0xe4,0x23,0xad,0xec,0xfc,0x29,0x7c,0xc3,0xa9,0xf6,0x9c,0xea,0x0,0x24,
0x79,0x53,0x75,0x0,0x58,0xa0,0xbb,0xe7,0xc7,0xf9,0xb5,0xea,0x10,0x33,0x74,0xaf,
0x5c,0xd2,0xc6,0x1b,0x92,0x15,0x3e,0xcb,0xb5,0x2a,0x4f,0xab,0x8e,0x40,0x92,0x9b,
0xe6,0xae,0xd5,0x11,0x60,0x1,0xfe,0x26,0x9f,0x1c,0xdd,0x85,0x75,0x96,0x6b,0x65,
0x3e,0x96,0x57,0x54,0x87,0xd8,0x34,0x85,0xcf,0x72,0x3d,0xae,0x3a,0x0,0x57,0xf1,
0xc4,0xa,0x63,0xb7,0x7d,0xbe,0x9c,0x3f,0xaf,0xe,0x31,0x90,0xc7,0xe7,0x6b,0x63,
0xbf,0x12,0x9f,0xc2,0x67,0xb9,0xfe,0xb2,0x3a,0x0,0x57,0xd9,0x2f,0x3b,0x56,0x47,
0x80,0x1b,0x70,0xfb,0x9c,0x9f,0xfd,0xab,0x43,0xc,0xe8,0x36,0x39,0x2f,0x87,0x56,
0x87,0xb8,0x21,0xa,0x9f,0xe5,0xd9,0x3b,0xbb,0x56,0x47,0xe0,0xa7,0x9a,0xbc,0x18,
0x8,0x9d,0xf8,0xe3,0x7c,0x2e,0x2b,0xab,0x43,0xc,0x6c,0xb3,0x9c,0x38,0xe6,0xbf,
0x42,0x85,0xcf,0xf2,0x3c,0xaa,0x3a,0x0,0xd7,0xf0,0x84,0xea,0x0,0x70,0x3d,0x5e,
0xde,0xcd,0x53,0x4e,0xaf,0xc9,0x3f,0x56,0x47,0xb8,0x3e,0xa,0x9f,0xe5,0xf1,0xd9,
0x78,0x63,0x72,0xe3,0x6c,0x59,0x1d,0x1,0xae,0xc3,0x7,0xbb,0xfa,0xc7,0xe8,0x63,
0xf3,0xd1,0xea,0x8,0xd7,0x4d,0xe1,0xb3,0x1c,0xab,0x72,0xf3,0xea,0x8,0x5c,0xcb,
0x9d,0xab,0x3,0xc0,0x46,0x56,0xe6,0xb,0xb9,0x4f,0x75,0x88,0x39,0xfb,0xe5,0x7c,
0x69,0x8c,0x1f,0xb0,0xa3,0xf0,0x59,0x8e,0x5b,0x57,0x7,0x60,0x23,0xbf,0x59,0x1d,
0x0,0xae,0x65,0xab,0x7c,0x27,0x7,0x55,0x87,0x28,0x70,0x40,0xce,0xc8,0x36,0xd5,
0x21,0x36,0xa6,0xf0,0x59,0x8e,0xdb,0x57,0x7,0x60,0x23,0x16,0x3e,0x63,0xb2,0x6d,
0xce,0xc8,0x9e,0xd5,0x21,0x8a,0xec,0x9e,0xef,0x66,0xfb,0xea,0x10,0xd7,0xa6,0xf0,
0x59,0xe,0xf5,0x32,0x36,0x7,0x56,0x7,0x80,0x9f,0xda,0x36,0xdf,0xcb,0x6e,0xd5,
0x21,0xa,0xed,0x9c,0x33,0xc7,0x55,0xf9,0xa,0x9f,0xe5,0x38,0xa0,0x3a,0x0,0x1b,
0x59,0x5d,0x1d,0x0,0xae,0xb2,0x55,0xbe,0xd5,0xfd,0x95,0x21,0xb6,0xcf,0xb7,0xc7,
0xf4,0xc0,0xbe,0xc2,0x67,0x39,0x76,0xae,0xe,0xc0,0xcf,0x69,0xed,0x93,0xc5,0x99,
0xa6,0x95,0x39,0xbd,0xeb,0x75,0x7f,0xb5,0x9d,0xf3,0xcd,0xf1,0xbc,0x7c,0x4f,0xe1,
0xb3,0x1c,0x23,0xbf,0x90,0x64,0x97,0xa6,0x7e,0x69,0x13,0xda,0xf0,0xbf,0xdd,0x3e,
0x77,0xbf,0xb1,0xdd,0xf3,0x85,0xea,0x8,0x57,0x53,0xf8,0x2c,0x87,0x77,0x7d,0x8f,
0x8f,0xc2,0xa7,0xde,0x7,0xbb,0x7c,0x65,0xfe,0xf5,0xd9,0x3f,0x1f,0xab,0x8e,0xf0,
0x13,0xa,0x9f,0xe5,0xb8,0xb0,0x3a,0x0,0x3f,0x67,0x6d,0x75,0x0,0xba,0xf7,0xf2,
0xee,0xde,0x77,0xbf,0x29,0x87,0xe7,0x55,0xd5,0x11,0x12,0x85,0xcf,0xf2,0x9c,0x5f,
0x1d,0x80,0x9f,0xb3,0xbe,0x3a,0x0,0x9d,0xfb,0xe3,0xae,0xae,0xaa,0xb7,0x50,0x8f,
0xc9,0xa3,0xab,0x23,0x28,0x7c,0x96,0xe7,0x7,0xd5,0x1,0xd8,0xc8,0xba,0xea,0x0,
0x74,0xee,0xe,0xdd,0x5c,0x33,0x7f,0xb1,0x5e,0x9d,0x3b,0x56,0x47,0x50,0xf8,0x2c,
0xc7,0x67,0xaa,0x3,0xb0,0x91,0x6f,0x55,0x7,0xa0,0x6b,0xdb,0xe7,0xc4,0xea,0x8,
0x23,0xf6,0xdf,0xd5,0x6f,0x53,0x54,0xf8,0x2c,0x87,0x3f,0xee,0xb1,0x39,0xa9,0x3a,
0x0,0x5d,0x3b,0xc1,0x8b,0x46,0x6f,0xc0,0x66,0xd5,0x7f,0x9f,0xa,0x9f,0xe5,0xf8,
0x6a,0x75,0x0,0x36,0xf2,0xc9,0xea,0x0,0x74,0xec,0x65,0xd9,0xaf,0x3a,0xc2,0xc8,
0xed,0x93,0x57,0x56,0x1e,0x5e,0xe1,0xb3,0x1c,0x67,0x67,0x4d,0x75,0x4,0xae,0xe5,
0x3d,0xd5,0x1,0xe8,0xd6,0x3d,0xf2,0xe4,0xea,0x8,0xd,0xf8,0xb3,0xdc,0xab,0xee,
0xe0,0xa,0x9f,0xe5,0xf9,0x50,0x75,0x0,0xae,0x61,0x7d,0xce,0xaa,0x8e,0x40,0xa7,
0xb6,0x1c,0xeb,0x67,0xc0,0x8f,0xce,0xf1,0xd9,0xba,0xea,0xd0,0xa,0x9f,0xe5,0xf9,
0xe7,0xea,0x0,0x5c,0xc3,0x7,0xab,0x3,0xd0,0xad,0x77,0x67,0x55,0x75,0x84,0x46,
0xac,0xcc,0xfb,0xab,0xe,0xad,0xf0,0x59,0x9e,0xf7,0x56,0x7,0xe0,0x1a,0x9e,0x57,
0x1d,0x80,0x4e,0xdd,0xdf,0xa5,0x76,0x16,0xe1,0xf0,0x3c,0xb0,0xe6,0xc0,0xa,0x9f,
0xe5,0x59,0x9f,0x77,0x55,0x47,0xe0,0x2a,0x6b,0xbd,0x6b,0x82,0x12,0x5b,0xe6,0xb8,
0xea,0x8,0x8d,0x79,0x47,0xcd,0xc3,0xfa,0xa,0x9f,0xe5,0x7a,0x7a,0x75,0x0,0xae,
0xf2,0x92,0xea,0x0,0x74,0xea,0xad,0x9a,0x64,0x91,0x56,0xe4,0xed,0x15,0x87,0xf5,
0x63,0x62,0xb9,0x4e,0xcb,0x29,0xd5,0x11,0x48,0x92,0xbc,0xa0,0x3a,0x0,0x5d,0xba,
0x43,0x7e,0xa7,0x3a,0x42,0x83,0xee,0x97,0xc3,0xe6,0x7f,0x50,0x85,0xcf,0xf2,0x3d,
0xac,0x3a,0x0,0x49,0x5e,0xe1,0x2d,0x92,0x94,0xf8,0xcf,0xea,0x0,0x8d,0xfa,0xc0,
0xfc,0xf,0xa9,0xf0,0x59,0xbe,0xcf,0xe5,0xe3,0xd5,0x11,0xba,0xb7,0x2e,0x4f,0xa9,
0x8e,0x40,0x97,0x1e,0x99,0x1b,0x55,0x47,0x68,0xd4,0xce,0xf9,0xd3,0x79,0x1f,0x72,
0xc5,0xa0,0xb7,0xbe,0x61,0xde,0xa7,0xf3,0x53,0xfb,0xe7,0xb4,0xb2,0x63,0xf7,0x68,
0xa7,0x9c,0x57,0x1d,0xa1,0x73,0xf,0xce,0xb1,0xd5,0x11,0x3a,0x53,0x77,0xef,0xb6,
0xdf,0x88,0xae,0x70,0xb9,0x79,0xae,0x18,0xb8,0x45,0xa6,0x6d,0xcb,0xf9,0x3e,0x2e,
0x67,0xe1,0x33,0xb,0xe7,0xe7,0x49,0xd5,0x11,0xba,0x76,0x82,0xba,0xa7,0xc4,0x4b,
0xd5,0xfd,0xb2,0xfc,0xdd,0x7c,0xf,0x67,0xe1,0x33,0x2b,0x1f,0xcb,0xe1,0xd5,0x11,
0x3a,0x75,0x65,0x56,0xe7,0xb2,0xea,0x10,0xdd,0xb1,0xf0,0x93,0xed,0x72,0x71,0x75,
0x84,0xe6,0xed,0x98,0xb,0xe7,0x77,0x30,0xb,0x9f,0x59,0xf9,0x35,0xa5,0x53,0xe4,
0xae,0xbe,0xf3,0x94,0x28,0xfd,0x20,0x98,0x89,0x78,0xd5,0x3c,0xf,0xa6,0xf0,0x99,
0x95,0x35,0xd9,0xa7,0x70,0xf5,0xf4,0xeb,0x28,0x97,0xdb,0xa1,0xc4,0xea,0xfc,0x51,
0x75,0x84,0x9,0x78,0x68,0x76,0x9a,0xdf,0xc1,0x14,0x3e,0xb3,0x73,0x56,0x7e,0xa1,
0x3a,0x42,0x77,0x9e,0x9c,0x7f,0xab,0x8e,0x40,0xa7,0x5e,0x5a,0x1d,0x60,0x22,0x5e,
0x36,0xbf,0x43,0x79,0xe,0x9f,0xd9,0x3a,0x30,0xa7,0x7a,0x19,0xcf,0xdc,0xfc,0x59,
0xfe,0xb1,0x3a,0x42,0xb7,0x7a,0x7f,0xe,0x7f,0x2b,0x4f,0x24,0xcd,0xcc,0x76,0xf9,
0xf1,0x7c,0xe,0x64,0xe1,0x33,0x5b,0x5f,0xca,0xcd,0xdc,0x11,0xcc,0xc9,0x3,0xd5,
0x3d,0x65,0xfe,0xbc,0x3a,0xc0,0x84,0x3c,0x6d,0x5e,0x7,0xb2,0xf0,0x99,0xbd,0x2d,
0xf2,0xe1,0xdc,0xa3,0x3a,0xc4,0xc4,0x5d,0x9c,0x43,0xf3,0xb5,0xea,0x10,0x5d,0xeb,
0x7d,0xe1,0xaf,0xf5,0x71,0xb8,0x33,0xb3,0x3e,0xab,0xe6,0xf3,0xfb,0x64,0xe1,0x33,
0x7b,0x6b,0x72,0x4f,0xff,0xfe,0x1f,0xd4,0xfb,0xb3,0x93,0xba,0xa7,0xd0,0x11,0xea,
0x7e,0x86,0x36,0xcb,0x83,0xe7,0x75,0x20,0x18,0xc2,0xdf,0x66,0xd7,0x7c,0xaa,0x3a,
0xc4,0x24,0x9d,0x9f,0x3b,0xe7,0x37,0xb3,0xae,0x3a,0x6,0x5d,0xfb,0x9b,0xea,0x0,
0x13,0x33,0xa7,0x17,0x40,0x2a,0x7c,0x86,0x72,0x6e,0xee,0x91,0x3b,0xe5,0x2b,0xd5,
0x31,0x26,0xe5,0xd2,0x3c,0x2c,0x3b,0xe7,0x7f,0xaa,0x63,0xd0,0xb9,0x9b,0x66,0x9f,
0xea,0x8,0x13,0xb3,0x57,0xf6,0x9e,0xc7,0x61,0x14,0x3e,0x43,0x3a,0x21,0x7,0xe4,
0x76,0x15,0x9f,0xa,0x35,0x41,0x5f,0xcd,0x83,0xb3,0x6d,0xde,0x58,0x1d,0x3,0xe6,
0xf7,0x22,0xb3,0x8e,0x3c,0x63,0x1e,0x7,0xf1,0xa2,0x3d,0xe6,0x61,0x55,0x1e,0x90,
0x47,0xe6,0xf0,0xac,0xac,0xe,0xd2,0xa4,0x2f,0xe7,0x5f,0xf3,0x4f,0x39,0xbf,0x3a,
0x6,0xd7,0xd2,0xf3,0x8b,0xf6,0xbc,0x60,0x6f,0xf6,0xd6,0xcf,0xe3,0xde,0xd1,0x8f,
0x8d,0x79,0xb8,0x32,0xc7,0xe6,0xd8,0x24,0x7b,0xe4,0x17,0x72,0x58,0xee,0x92,0x3d,
0xb2,0x63,0xb6,0x57,0xff,0xd7,0xeb,0x92,0x5c,0x98,0xf3,0x73,0x62,0x3e,0x9b,0x53,
0x72,0xba,0xeb,0x17,0x32,0x2a,0x77,0x6a,0xa4,0x37,0x36,0x64,0x6d,0x2e,0xcb,0xd6,
0xd9,0xbc,0x89,0x2b,0x83,0x6c,0x96,0x7b,0xe4,0x93,0x43,0x1f,0xa4,0x8d,0x1f,0x1c,
0x53,0xf1,0xfd,0x7c,0x3f,0x1f,0xaa,0xe,0x1,0x2c,0xc3,0x5f,0x54,0x7,0xb8,0x41,
0x27,0xe6,0x98,0x9c,0x98,0xd3,0x73,0xc1,0xb5,0xfe,0xd7,0x1d,0xb2,0x4f,0xe,0xcd,
0xd1,0xb9,0x53,0x75,0xbc,0x1b,0xf0,0xd4,0xe1,0xb,0x7f,0x58,0x1b,0xca,0xbe,0xf6,
0xab,0x3e,0x75,0x60,0xd2,0xea,0xee,0xdd,0xf6,0x2d,0x3e,0xf3,0xf5,0x85,0xe7,0x7e,
0x43,0x5f,0x6f,0xcb,0xfe,0xb,0x48,0xbf,0x6f,0xde,0x3c,0xda,0x33,0x18,0xfc,0x91,
0x8,0x2f,0xda,0x3,0x60,0xa1,0xee,0x38,0xc2,0x7,0xc8,0x2f,0xce,0x43,0xb3,0x59,
0x8e,0x5a,0xd0,0x7b,0x82,0xbe,0x9a,0xdf,0xcf,0xca,0xfc,0xee,0x46,0x8f,0x0,0x8c,
0xc3,0x5d,0x87,0x3e,0x80,0xc2,0x7,0x60,0xa1,0x1e,0x55,0x1d,0x60,0x23,0x6b,0x73,
0x44,0x56,0xe7,0x6d,0x59,0xcc,0x2b,0x5d,0x36,0xe4,0xed,0xd9,0x29,0xf7,0xcb,0x15,
0xd5,0xe1,0x37,0xf2,0xe8,0xa1,0xf,0xa0,0xf0,0x1,0x58,0xa8,0x87,0x54,0x7,0xb8,
0x96,0x7f,0xc8,0x56,0x79,0xf7,0x12,0xff,0xbf,0xef,0xcb,0x36,0x79,0x79,0xf5,0x9,
0x5c,0xcb,0x3,0x87,0x3e,0x80,0xc2,0x7,0x60,0x61,0x6e,0x9c,0xad,0xab,0x23,0xfc,
0xd4,0x9a,0x1c,0x9c,0xc7,0x65,0xfd,0x32,0x6e,0x61,0x7d,0x9e,0x94,0x83,0x72,0x79,
0xf5,0x89,0xfc,0xd4,0x16,0xd9,0x73,0xd8,0x3,0x28,0x7c,0x0,0x16,0xe6,0xbe,0xd5,
0x1,0x7e,0xea,0x33,0x59,0x9d,0xcf,0xcd,0xe0,0x76,0x4e,0xcd,0xe,0xf9,0x44,0xf5,
0xc9,0xfc,0xd4,0xfd,0x87,0xbd,0x79,0x85,0xf,0xc0,0xc2,0xfc,0x61,0x75,0x80,0xab,
0xfc,0x7b,0xee,0x36,0xb3,0x67,0xe0,0xd7,0xe4,0xf0,0xfc,0x5b,0xf5,0x9,0x5d,0xe5,
0xe8,0x61,0x6f,0x5e,0xe1,0x3,0xb0,0x30,0x83,0xbf,0x8e,0x7c,0x41,0x5e,0x99,0x7,
0xcd,0xf8,0x16,0x8f,0xca,0xcb,0xaa,0x4f,0x2a,0x49,0x72,0xd8,0xb0,0x37,0xaf,0xf0,
0x1,0x58,0x88,0x5d,0x47,0xd1,0x18,0xff,0x9e,0xc7,0xf,0x70,0xab,0x4f,0xc9,0xdb,
0xaa,0x4f,0x2c,0x49,0xb2,0xfb,0x90,0x37,0x3e,0x86,0x1f,0x1f,0x0,0xe3,0x77,0xf7,
0xea,0x0,0x49,0x3e,0x33,0xf3,0x75,0x7f,0xb5,0x87,0xe6,0xe3,0xd5,0x27,0x97,0xe4,
0x97,0x86,0xbc,0x71,0x85,0xf,0xc0,0x42,0x1c,0x51,0x1d,0x20,0x6b,0x72,0xaf,0x1,
0x6f,0xfd,0x3e,0xb9,0xac,0xfa,0x4,0x87,0xfd,0x1e,0x2b,0x7c,0x0,0x16,0xe2,0x97,
0xaa,0x3,0xe4,0x4e,0x83,0x5e,0x2c,0x67,0x6d,0xee,0x58,0x7d,0x82,0xb9,0xc7,0x90,
0x37,0xae,0xf0,0x1,0x58,0x88,0x9b,0x17,0x1f,0xff,0x1f,0xf2,0xf9,0x81,0x8f,0xf0,
0xa5,0xfc,0x4d,0xf1,0x39,0xee,0x31,0xe4,0x8d,0xf,0x7b,0x55,0xe4,0xba,0x8f,0xf5,
0xdc,0x3f,0xa7,0x95,0x1d,0x1b,0x98,0xbe,0xba,0x7b,0xb7,0xfd,0xf2,0xd5,0x92,0xe3,
0xee,0x94,0xf3,0xca,0xce,0x39,0x49,0xd6,0x64,0xeb,0x65,0x5d,0x66,0x67,0x61,0x56,
0xe4,0xc7,0xc5,0x17,0x17,0x1a,0xb0,0x95,0x2d,0x7c,0x0,0x36,0xed,0xd6,0xc5,0xc7,
0x7f,0xd0,0x1c,0xea,0x3e,0xd9,0x90,0x7,0x14,0x9f,0xe7,0x80,0x14,0x3e,0x0,0x9b,
0x76,0x68,0xe9,0xd1,0x2f,0xca,0x7b,0xe6,0x74,0xa4,0xe3,0x8b,0x1f,0xc9,0x18,0x90,
0xc2,0x7,0x60,0xd3,0x6,0xbe,0x28,0xcc,0x26,0xc,0xfe,0x49,0x72,0xd7,0xf0,0x88,
0xd2,0x33,0x1d,0x90,0xc2,0x7,0x60,0xd3,0xe,0x28,0x3d,0xfa,0x3c,0x2f,0x7e,0xfb,
0x1f,0x73,0x79,0xf2,0xa0,0x80,0xc2,0x7,0x60,0xd3,0x6e,0x59,0x78,0xec,0xc5,0x7d,
0xde,0xfd,0xf2,0xbd,0xb1,0xf0,0x5c,0x7,0xa4,0xf0,0x1,0xd8,0xb4,0x1d,0xa,0x8f,
0xfd,0xc2,0x39,0x1f,0xef,0x25,0x85,0xe7,0x3a,0x20,0x85,0xf,0xc0,0xa6,0x6c,0x36,
0xf0,0x9b,0xb8,0x6f,0xd8,0x57,0xe6,0x7c,0xbc,0xd3,0xa7,0xf9,0xa0,0xbe,0xc2,0x7,
0x60,0x53,0x2a,0xdf,0x9b,0x7e,0x42,0xc1,0x31,0x3f,0x55,0x78,0xbe,0x83,0x51,0xf8,
0x0,0x6c,0xca,0xea,0xc2,0x63,0x1f,0xd3,0xc9,0x31,0x7,0xa7,0xf0,0x1,0xd8,0x94,
0xed,0xb,0x8f,0x7d,0x62,0xc1,0x31,0x4f,0x2e,0x3c,0xdf,0xc1,0x28,0x7c,0x0,0x36,
0xa5,0x72,0xe1,0x9f,0x5e,0x70,0xcc,0x6f,0x15,0x9e,0xef,0x60,0x14,0x3e,0x0,0x9b,
0x52,0x59,0xf8,0x17,0x16,0x1c,0xf3,0x92,0xc2,0xf3,0x1d,0x8c,0xc2,0x7,0x60,0x53,
0xb6,0x28,0x3b,0x72,0xd5,0xc7,0x14,0xad,0x2b,0x3b,0xe3,0xc1,0x28,0x7c,0x0,0x36,
0xa5,0xae,0xf0,0xd7,0x16,0x1d,0xf7,0x8a,0xb2,0x33,0x1e,0x8c,0xc2,0x7,0x60,0x53,
0xea,0xa,0xff,0xd2,0xa2,0xe3,0xfe,0xb8,0xec,0x8c,0x7,0xa3,0xf0,0x1,0xa0,0x3,
0xa,0x1f,0x0,0x3a,0xa0,0xf0,0x1,0xa0,0x3,0xa,0x1f,0x0,0x3a,0xa0,0xf0,0x1,
0xa0,0x3,0xa,0x1f,0x0,0x3a,0xa0,0xf0,0x1,0xa0,0x3,0xa,0x1f,0x0,0x3a,0xa0,
0xf0,0x1,0xa0,0x3,0xa,0x1f,0x0,0x3a,0xa0,0xf0,0x1,0xa0,0x3,0xa,0x1f,0x0,
0x3a,0xa0,0xf0,0x1,0xa0,0x3,0xa,0x1f,0x0,0x3a,0xa0,0xf0,0x1,0xa0,0x3,0xa,
0x1f,0x0,0x3a,0xa0,0xf0,0x1,0xa0,0x3,0xa,0x1f,0x0,0x3a,0xa0,0xf0,0x1,0xa0,
0x3,0xa,0x1f,0x0,0x3a,0xa0,0xf0,0x1,0xa0,0x3,0xa,0x1f,0x0,0x3a,0xa0,0xf0,
0x1,0xa0,0x3,0xa,0x1f,0x0,0x3a,0xa0,0xf0,0x1,0xa0,0x3,0xa,0x1f,0x0,0x3a,
0xa0,0xf0,0x1,0xa0,0x3,0xa,0x1f,0x0,0x3a,0xa0,0xf0,0x1,0xa0,0x3,0xa,0x1f,
0x0,0x3a,0xa0,0xf0,0x1,0xa0,0x3,0xa,0x1f,0x0,0x3a,0xa0,0xf0,0x1,0xa0,0x3,
0xa,0x1f,0x0,0x3a,0xa0,0xf0,0x1,0xa0,0x3,0xa,0x1f,0x0,0x3a,0xa0,0xf0,0x1,
0xa0,0x3,0xa,0x1f,0x0,0x3a,0xa0,0xf0,0x1,0xa0,0x3,0xa,0x1f,0x0,0x3a,0xa0,
0xf0,0x1,0xa0,0x3,0xa,0x1f,0x0,0x3a,0xa0,0xf0,0x1,0xa0,0x3,0xa,0x1f,0x0,
0x3a,0xa0,0xf0,0x1,0xa0,0x3,0xa,0x1f,0x0,0x3a,0xa0,0xf0,0x1,0xa0,0x3,0xa,
0x1f,0x0,0x3a,0xa0,0xf0,0x1,0xa0,0x3,0xab,0xaa,0x3,0x74,0x6e,0x97,0xdc,0x26,
0x87,0xe6,0x80,0xec,0x9a,0x9d,0xb3,0x7d,0x75,0x18,0x28,0x72,0x79,0xce,0xcb,0xb9,
0xf9,0x56,0x4e,0xc8,0x97,0x73,0x56,0xd6,0x57,0xc7,0x81,0x69,0x52,0xf8,0x35,0x56,
0xe7,0x41,0x39,0x3a,0x77,0xcb,0x8a,0xea,0x20,0x30,0x3a,0xdf,0xc8,0x5b,0xf2,0x96,
0xfc,0x5f,0x75,0xc,0x98,0x1a,0xf,0xe9,0xcf,0xdf,0x11,0x39,0x25,0x17,0xe6,0x9f,
0x73,0x77,0x75,0xf,0xd7,0xe1,0xd6,0x79,0x5e,0xbe,0x99,0x73,0xf3,0x94,0x6c,0x5d,
0x1d,0x5,0xa6,0x44,0xe1,0xcf,0xd3,0x8a,0x3c,0x22,0x97,0xe5,0xb8,0xdc,0xae,0x3a,
0x8,0x8c,0xde,0xce,0xf9,0xeb,0x5c,0x9a,0x57,0x79,0xaa,0xb,0x66,0x45,0xe1,0xcf,
0xcf,0xbd,0x73,0x69,0x5e,0x9f,0xad,0xaa,0x63,0x40,0x43,0x1e,0x93,0x8b,0xf2,0xac,
0xea,0x10,0x30,0xd,0xa,0x7f,0x3e,0xb6,0xcb,0xa7,0x73,0xbc,0xb2,0x87,0x25,0xf8,
0xab,0x5c,0x90,0x83,0xab,0x43,0x40,0xfb,0x14,0xfe,0x3c,0xdc,0x3d,0x17,0xe6,0xae,
0xd5,0x21,0xa0,0x59,0x3b,0xe4,0xe4,0x3c,0xbd,0x3a,0x4,0xb4,0x4e,0xe1,0xf,0xef,
0xe9,0xf9,0xa4,0xef,0x33,0x2c,0xd3,0xb,0xf3,0x29,0x2f,0x73,0x85,0xe5,0x50,0x44,
0x43,0xfb,0xc7,0xbc,0xb0,0x3a,0x2,0x4c,0xc2,0xdd,0xf2,0xb5,0x6c,0x51,0x1d,0x2,
0xda,0xa5,0xf0,0x87,0xf5,0xb6,0x3c,0xb6,0x3a,0x2,0x4c,0xc6,0xad,0x73,0xa6,0xca,
0x87,0xa5,0x52,0xf8,0x43,0x7a,0x59,0x1e,0x52,0x1d,0x1,0x26,0x65,0xd7,0x7c,0xd1,
0x3,0xfb,0xb0,0x34,0xa,0x7f,0x38,0x7f,0x96,0x27,0x57,0x47,0x80,0xc9,0xb9,0x4d,
0xfe,0xab,0x3a,0x2,0xb4,0x49,0xe1,0xf,0x65,0xbf,0xbc,0xb2,0x3a,0x2,0x4c,0xd2,
0xdd,0xf3,0xd4,0xea,0x8,0xd0,0x22,0x85,0x3f,0x8c,0x55,0x39,0xa9,0x3a,0x2,0x4c,
0xd6,0x4b,0x72,0xfb,0xea,0x8,0xd0,0x1e,0x85,0x3f,0x8c,0xd7,0x66,0xdb,0xea,0x8,
0x30,0x61,0x1f,0xa9,0xe,0x0,0xed,0x51,0xf8,0x43,0xb8,0x4d,0x1e,0x5e,0x1d,0x1,
0x26,0x6d,0xe7,0x3c,0xad,0x3a,0x2,0xb4,0x46,0xe1,0xf,0xe1,0xfd,0xd5,0x1,0x60,
0xf2,0x5e,0xec,0x51,0x34,0x58,0x1c,0x85,0x3f,0x7b,0x77,0xc8,0x3e,0xd5,0x11,0xa0,
0x3,0xcf,0xaf,0xe,0x0,0x6d,0x51,0xf8,0xb3,0xf7,0xc6,0xea,0x0,0xd0,0x85,0x27,
0xba,0x8,0xf,0x2c,0x86,0xc2,0x9f,0xb5,0x3d,0x7c,0xda,0x3d,0xcc,0xc9,0x23,0xab,
0x3,0x40,0x4b,0x14,0xfe,0xac,0x3d,0xb1,0x3a,0x0,0x74,0xe3,0x19,0xd5,0x1,0xa0,
0x25,0xa,0x7f,0xd6,0x1e,0x57,0x1d,0x0,0xba,0xb1,0x7b,0x6e,0x5a,0x1d,0x1,0xda,
0xa1,0xf0,0x67,0x6b,0xcf,0x6c,0x59,0x1d,0x1,0x3a,0x72,0x64,0x75,0x0,0x68,0x87,
0xc2,0x9f,0xad,0xdf,0xaa,0xe,0x0,0x5d,0xf9,0x83,0xea,0x0,0xd0,0xe,0x85,0x3f,
0x5b,0x47,0x57,0x7,0x80,0xae,0xdc,0xce,0x67,0xe7,0xc1,0x42,0x29,0xfc,0xd9,0x3a,
0xa8,0x3a,0x0,0x74,0x66,0xd7,0xea,0x0,0xd0,0xa,0x85,0x3f,0x4b,0x2b,0x3d,0x83,
0xf,0x73,0x76,0xdb,0xea,0x0,0xd0,0xa,0x85,0x3f,0x4b,0x37,0xaa,0xe,0x0,0xdd,
0xb9,0x63,0x75,0x0,0x68,0x85,0xc2,0x9f,0xa5,0x5d,0xaa,0x3,0x40,0x77,0x6e,0x5e,
0x1d,0x0,0x5a,0xa1,0xf0,0x67,0x69,0x87,0xea,0x0,0xd0,0x1d,0xcf,0xe1,0xc3,0x2,
0x29,0xfc,0x59,0xda,0xa9,0x3a,0x0,0x74,0xc7,0xe3,0x6a,0xb0,0x40,0xa,0x7f,0x96,
0xae,0xac,0xe,0x0,0xdd,0x59,0x57,0x1d,0x0,0x5a,0xa1,0xf0,0x67,0xe9,0x82,0xea,
0x0,0xd0,0x9d,0x73,0xaa,0x3,0x40,0x2b,0x14,0xfe,0x2c,0x5d,0x58,0x1d,0x0,0xba,
0xa3,0xf0,0x61,0x81,0x14,0xfe,0x2c,0xfd,0xa8,0x3a,0x0,0x74,0xe7,0x1b,0xd5,0x1,
0xa0,0x15,0xa,0x7f,0x96,0xce,0xab,0xe,0x0,0xdd,0x39,0xb9,0x3a,0x0,0xb4,0x42,
0xe1,0xcf,0xd2,0x86,0x5c,0x52,0x1d,0x1,0x3a,0x73,0x7a,0x75,0x0,0x68,0x85,0xc2,
0x9f,0xad,0x4f,0x57,0x7,0x80,0xae,0xac,0xf7,0xca,0x19,0x58,0x28,0x85,0x3f,0x5b,
0xc7,0x54,0x7,0x80,0xae,0x7c,0xaa,0x3a,0x0,0xb4,0x43,0xe1,0xcf,0xd6,0xf1,0xd5,
0x1,0xa0,0x2b,0xfe,0x89,0xd,0xb,0xb6,0xaa,0x3a,0xc0,0xc4,0x9c,0x9f,0xb3,0xb3,
0x5b,0x75,0x8,0xe8,0xc6,0x7f,0x54,0x7,0x60,0xe,0x9e,0x5f,0x1d,0x60,0x2a,0x14,
0xfe,0xac,0xbd,0x28,0x2f,0xaf,0x8e,0x0,0x9d,0xf8,0xb2,0x67,0xf0,0x3b,0xb0,0x63,
0x9e,0x59,0x1d,0x61,0x2a,0x3c,0xa4,0x3f,0x6b,0xff,0x5c,0x1d,0x0,0xba,0xf1,0x9c,
0xea,0x0,0xd0,0x12,0x85,0x3f,0x6b,0x97,0xe4,0xbd,0xd5,0x11,0xa0,0xb,0x6b,0xf3,
0xce,0xea,0x8,0xd0,0x12,0x85,0x3f,0x7b,0x8f,0xa9,0xe,0x0,0x5d,0x78,0x72,0x75,
0x0,0x68,0x8b,0xc2,0x9f,0xbd,0xef,0xe5,0x23,0xd5,0x11,0x60,0xf2,0xae,0xcc,0xab,
0xaa,0x23,0x40,0x5b,0x14,0xfe,0x10,0x1e,0x54,0x1d,0x0,0x26,0xef,0xc8,0xac,0xaf,
0x8e,0x0,0x6d,0x51,0xf8,0x43,0xb8,0x20,0x4f,0xa9,0x8e,0x0,0x93,0x76,0x8a,0x37,
0xe4,0xc1,0x62,0x29,0xfc,0x61,0xbc,0x2c,0xa7,0x55,0x47,0x80,0x9,0xfb,0x95,0xea,
0x0,0xd0,0x1e,0x85,0x3f,0x94,0x3b,0x67,0x43,0x75,0x4,0x98,0xa8,0xfb,0xe5,0x9c,
0xea,0x8,0xd0,0x1e,0x85,0x3f,0x94,0xb,0x6d,0x10,0x18,0xc4,0xdf,0xe7,0x7d,0xd5,
0x11,0xa0,0x45,0xa,0x7f,0x38,0x1f,0xcb,0x43,0xab,0x23,0xc0,0xe4,0x1c,0x9b,0x27,
0x54,0x47,0x80,0x36,0x29,0xfc,0x21,0xbd,0x2d,0x7f,0x5e,0x1d,0x1,0x26,0xe5,0x13,
0x79,0x70,0x75,0x4,0x68,0x95,0xc2,0x1f,0xd6,0xdf,0xe6,0xf,0xaa,0x23,0xc0,0x64,
0xfc,0x5b,0xe,0xaf,0x8e,0x0,0xed,0x52,0xf8,0x43,0x7b,0x73,0xee,0x5d,0x1d,0x1,
0x26,0xe1,0x65,0x39,0xaa,0x3a,0x2,0xb4,0x4c,0xe1,0xf,0xef,0xc3,0xd9,0x2d,0xdf,
0xaa,0xe,0x1,0x4d,0xdb,0x90,0x5f,0x76,0x75,0xb,0x58,0x1e,0x85,0x3f,0xf,0xe7,
0xe4,0x96,0x79,0x51,0x75,0x8,0x68,0xd6,0xc7,0xb2,0x63,0x3e,0x5e,0x1d,0x2,0x5a,
0xa7,0xf0,0xe7,0xe5,0x19,0xd9,0x23,0x27,0x55,0x87,0x80,0xe6,0x5c,0x92,0xc3,0x73,
0xaf,0x5c,0x54,0x1d,0x3,0xda,0xa7,0xf0,0xe7,0xe7,0x7,0xb9,0x63,0xe,0xcc,0x9,
0xd5,0x31,0xa0,0x19,0xe7,0xe6,0x77,0xb2,0x7d,0x3e,0x51,0x1d,0x3,0xa6,0x41,0xe1,
0xcf,0xd7,0x97,0x73,0xa7,0xdc,0x34,0x7f,0x97,0x35,0xd5,0x41,0x60,0xe4,0xde,0x97,
0x43,0xb3,0xab,0x2b,0xe6,0xc3,0xec,0x28,0xfc,0xf9,0x3b,0x33,0x4f,0xce,0x96,0xb9,
0x6d,0x9e,0x91,0xaf,0x56,0x47,0x81,0xd1,0x39,0x3b,0xaf,0xce,0x5d,0xb3,0x2a,0xf7,
0xcb,0xc9,0xd5,0x51,0x60,0x5a,0x56,0x55,0x7,0xe8,0xd6,0xd7,0xf3,0xa2,0xbc,0x28,
0xc9,0x76,0xd9,0x3b,0xb7,0xca,0xce,0xd9,0x25,0xab,0xab,0x23,0x41,0x91,0xcb,0x73,
0x4e,0xce,0xcb,0x99,0xf9,0x7a,0xce,0xf3,0x19,0x14,0x30,0x14,0x85,0x5f,0xed,0x92,
0x7c,0x29,0x5f,0xaa,0xe,0x1,0xc0,0xd4,0x79,0x48,0x1f,0x0,0x3a,0xa0,0xf0,0x1,
0xa0,0x3,0xa,0x1f,0x0,0x3a,0xa0,0xf0,0x1,0xa0,0x3,0xa,0x1f,0x0,0x3a,0xa0,
0xf0,0x1,0xa0,0x3,0xa,0x1f,0x0,0x3a,0xa0,0xf0,0x1,0xa0,0x3,0xa,0x1f,0x0,
0x3a,0xa0,0xf0,0x1,0xa0,0x3,0xa,0x1f,0x0,0x3a,0xa0,0xf0,0x1,0xa0,0x3,0xa,
0x1f,0x0,0x3a,0xa0,0xf0,0x1,0xa0,0x3,0xa,0x1f,0x0,0x3a,0xa0,0xf0,0x1,0xa0,
0x3,0xa,0x1f,0x0,0x3a,0xa0,0xf0,0x1,0xa0,0x3,0xa,0x1f,0x0,0x3a,0xa0,0xf0,
0x1,0xa0,0x3,0xa,0x1f,0x0,0x3a,0xa0,0xf0,0x1,0xa0,0x3,0xa,0x1f,0x0,0x3a,
0xa0,0xf0,0x1,0xa0,0x3,0xa,0x1f,0x0,0x3a,0xa0,0xf0,0x1,0xa0,0x3,0xa,0x1f,
0x0,0x3a,0xa0,0xf0,0x1,0xa0,0x3,0xa,0x1f,0x0,0x3a,0xa0,0xf0,0x1,0xa0,0x3,
0xa,0x1f,0x0,0x3a,0xa0,0xf0,0x1,0xa0,0x3,0xa,0x1f,0x0,0x3a,0xa0,0xf0,0x1,
0xa0,0x3,0xa,0x1f,0x0,0x3a,0xa0,0xf0,0x1,0xa0,0x3,0xa,0x1f,0x0,0x3a,0xa0,
0xf0,0x1,0xa0,0x3,0xab,0xaa,0x3,0x0,0xc0,0xf5,0xba,0x20,0xa7,0x97,0x1c,0x77,
0xaf,0xec,0x56,0x7d,0xea,0xb3,0xa6,0xf0,0x1,0x18,0xb3,0x43,0x4b,0x8e,0xfa,0xa3,
0xea,0xd3,0x9e,0x3d,0xf,0xe9,0x3,0x40,0x7,0x14,0x3e,0x0,0x74,0x40,0xe1,0x3,
0x40,0x7,0x14,0x3e,0x0,0x74,0x40,0xe1,0x3,0x40,0x7,0x14,0x3e,0x0,0x74,0x40,
0xe1,0x3,0x40,0x7,0x14,0x3e,0x0,0x74,0x40,0xe1,0x3,0x40,0x7,0x14,0x3e,0x0,
0x74,0x40,0xe1,0x3,0x40,0x7,0x14,0x3e,0x0,0x74,0x40,0xe1,0x3,0x40,0x7,0x14,
0x3e,0x0,0x74,0x40,0xe1,0x3,0x40,0x7,0x14,0x3e,0x0,0x74,0x40,0xe1,0x3,0x40,
0x7,0x56,0x55,0x7,0x20,0x49,0xb2,0x32,0x9b,0x67,0x8b,0xea,0x10,0x50,0xe4,0xca,
0xac,0xc9,0xba,0x6c,0xa8,0x8e,0x1,0xd3,0xa6,0xf0,0xeb,0x6c,0x97,0xc3,0x73,0xff,
0x1c,0x96,0xdb,0x64,0xcb,0xea,0x28,0x30,0x2,0xeb,0x73,0x46,0x4e,0xce,0x87,0xf3,
0xbe,0x9c,0x55,0x1d,0x5,0xa6,0x48,0xe1,0x57,0xb8,0x71,0x9e,0x90,0xc7,0x64,0x75,
0x75,0xc,0x18,0x95,0xcd,0xb2,0x77,0xf6,0xce,0x3,0x93,0xac,0xcb,0xbb,0xf3,0xfc,
0x7c,0xa1,0x3a,0x10,0x4c,0x8b,0xe7,0xf0,0xe7,0xed,0xde,0xf9,0x4e,0x7e,0x90,0xa7,
0xa9,0x7b,0xb8,0x5e,0x2b,0xf3,0xdb,0xf9,0x7c,0x2e,0xcb,0x93,0xb3,0xb2,0x3a,0xa,
0x4c,0x87,0xc2,0x9f,0xa7,0xdf,0xca,0x39,0x39,0x3e,0x37,0xaf,0x8e,0x1,0x4d,0xd8,
0x2a,0x2f,0xcb,0xda,0x3c,0x37,0x2b,0xaa,0x83,0xc0,0x34,0x28,0xfc,0x79,0xb9,0x49,
0xfe,0x37,0xef,0xca,0x2e,0xd5,0x31,0xa0,0x29,0x2b,0xf2,0x9c,0x5c,0x92,0x7b,0x55,
0xc7,0x80,0x29,0x50,0xf8,0xf3,0xf1,0xa7,0x39,0x33,0x77,0xa8,0xe,0x1,0x4d,0xda,
0x26,0x1f,0xc9,0x71,0xee,0xab,0x60,0xb9,0xfc,0x11,0xd,0x6f,0xf3,0x7c,0x28,0xff,
0x50,0x1d,0x2,0x9a,0x76,0x44,0xce,0xcd,0xad,0xaa,0x43,0x40,0xdb,0x14,0xfe,0xd0,
0x56,0xe7,0xbb,0xf9,0xd5,0xea,0x10,0xd0,0xbc,0x1d,0x73,0x7a,0xee,0x5e,0x1d,0x2,
0x5a,0xa6,0xf0,0x87,0xb5,0x67,0x7e,0x98,0x1b,0x57,0x87,0x80,0x89,0xf8,0x64,0x1e,
0x58,0x1d,0x1,0xda,0xa5,0xf0,0x87,0xb4,0x53,0xfe,0x2f,0x5b,0x55,0x87,0x80,0x9,
0x39,0x36,0xbf,0x5e,0x1d,0x1,0x5a,0xa5,0xf0,0x87,0xb3,0x65,0x4e,0x77,0xb9,0x5c,
0x98,0xb1,0xf,0xe4,0xe0,0xea,0x8,0xd0,0x26,0x85,0x3f,0x9c,0xcf,0x66,0xe7,0xea,
0x8,0x30,0x41,0x27,0x65,0x87,0xea,0x8,0xd0,0x22,0x85,0x3f,0x94,0xe7,0x79,0x1b,
0x1e,0xc,0x62,0x45,0x3e,0x5b,0x1d,0x1,0x5a,0xa4,0xf0,0x87,0x71,0x50,0x9e,0x5d,
0x1d,0x1,0x26,0x6b,0xff,0xbc,0xb0,0x3a,0x2,0xb4,0x47,0xe1,0xf,0xe3,0x83,0xd5,
0x1,0x60,0xd2,0x9e,0x9e,0xdd,0xab,0x23,0x40,0x6b,0x14,0xfe,0x10,0x1e,0xe7,0xce,
0x8,0x6,0xf6,0xde,0xea,0x0,0xd0,0x1a,0x85,0x3f,0x7b,0x2b,0xf3,0x8a,0xea,0x8,
0x30,0x79,0x87,0xe4,0x90,0xea,0x8,0xd0,0x16,0x85,0x3f,0x7b,0x8f,0xf7,0xe9,0x5e,
0x30,0x7,0x6f,0xa8,0xe,0x0,0x6d,0x51,0xf8,0xb3,0xf7,0xd7,0xd5,0x1,0xa0,0xb,
0xbf,0x90,0xfd,0xab,0x23,0x40,0x4b,0x14,0xfe,0xac,0x1d,0x9e,0x95,0xd5,0x11,0xa0,
0x13,0x4f,0xaf,0xe,0x0,0x2d,0x51,0xf8,0xb3,0xf6,0xdc,0xea,0x0,0xd0,0x8d,0x87,
0x7a,0xfa,0xc,0x16,0x4e,0xe1,0xcf,0xd6,0xaa,0xdc,0xa3,0x3a,0x2,0x74,0xe4,0x9e,
0xd5,0x1,0xa0,0x1d,0xa,0x7f,0xb6,0xbc,0x6e,0x18,0xe6,0xe9,0xf7,0xaa,0x3,0x40,
0x3b,0x14,0xfe,0x6c,0x1d,0x55,0x1d,0x0,0xba,0xf2,0x3b,0xd5,0x1,0xa0,0x1d,0xa,
0x7f,0xb6,0xdc,0xfd,0xc0,0x3c,0xed,0x98,0x2d,0xab,0x23,0x40,0x2b,0x14,0xfe,0x6c,
0xed,0x51,0x1d,0x0,0x3a,0x73,0xd3,0xea,0x0,0xd0,0xa,0x85,0x3f,0x4b,0xdb,0x78,
0xcd,0x30,0xcc,0xd9,0x41,0xd5,0x1,0xa0,0x15,0xa,0x7f,0x96,0x6e,0x52,0x1d,0x0,
0xba,0x73,0x70,0x75,0x0,0x68,0x85,0xc2,0x9f,0xa5,0xd5,0xd5,0x1,0xa0,0x3b,0xbb,
0x56,0x7,0x80,0x56,0x28,0xfc,0x59,0xda,0xb1,0x3a,0x0,0x74,0x67,0x97,0xea,0x0,
0xd0,0xa,0x85,0x3f,0x4b,0x3b,0x56,0x7,0x80,0xee,0xec,0x5c,0x1d,0x0,0x5a,0xa1,
0xf0,0x67,0xe9,0xfc,0xea,0x0,0xd0,0x9d,0x73,0xab,0x3,0x40,0x2b,0x14,0xfe,0x2c,
0x5d,0x58,0x1d,0x0,0xba,0xa3,0xf0,0x61,0x81,0x14,0xfe,0x2c,0x5d,0x54,0x1d,0x0,
0xba,0x73,0x4e,0x75,0x0,0x68,0x85,0xc2,0x9f,0xa5,0x33,0xab,0x3,0x40,0x77,0x4e,
0xae,0xe,0x0,0xad,0x50,0xf8,0xb3,0x74,0x59,0x36,0x54,0x47,0x80,0xce,0x9c,0x5a,
0x1d,0x0,0x5a,0xa1,0xf0,0x67,0xeb,0xac,0xea,0x0,0xd0,0x99,0xef,0x55,0x7,0x80,
0x56,0x28,0xfc,0xd9,0x3a,0xb6,0x3a,0x0,0x74,0xe5,0xdc,0xac,0xa9,0x8e,0x0,0xad,
0x50,0xf8,0xb3,0xf5,0xb6,0xea,0x0,0xd0,0x95,0x77,0x56,0x7,0x80,0x76,0x28,0xfc,
0xd9,0xfa,0x5c,0x75,0x0,0xe8,0xca,0x5b,0xaa,0x3,0x40,0x3b,0x14,0xfe,0x6c,0xad,
0xcb,0x47,0xab,0x23,0x40,0x37,0x36,0xe4,0x53,0xd5,0x11,0xa0,0x1d,0xa,0x7f,0xd6,
0x9e,0x5b,0x1d,0x0,0xba,0x71,0x4c,0x75,0x0,0x68,0x89,0xc2,0x9f,0xb5,0x4f,0x7b,
0x11,0x11,0xcc,0xc9,0x8b,0xab,0x3,0x40,0x4b,0x14,0xfe,0xec,0x3d,0xa9,0x3a,0x0,
0x74,0xe1,0x7f,0xf3,0xf5,0xea,0x8,0xd0,0x12,0x85,0x3f,0x7b,0xaf,0xc9,0xfa,0xea,
0x8,0xd0,0x81,0x87,0x57,0x7,0x80,0xb6,0x28,0xfc,0xd9,0x5b,0x9f,0xc7,0x54,0x47,
0x80,0xc9,0xfb,0x4c,0x4e,0xa9,0x8e,0x0,0x6d,0x51,0xf8,0x43,0x78,0x5d,0xce,0xa8,
0x8e,0x0,0x13,0x77,0x44,0x75,0x0,0x68,0x8d,0xc2,0x1f,0xc6,0xaf,0x57,0x7,0x80,
0x49,0x7b,0xb6,0x4f,0xc9,0x83,0xc5,0x52,0xf8,0xc3,0xf8,0x4a,0xfe,0xb2,0x3a,0x2,
0x4c,0xd6,0xe7,0xf3,0xfc,0xea,0x8,0xd0,0x1e,0x85,0x3f,0x94,0x97,0xe4,0xb3,0xd5,
0x11,0x60,0x92,0xd6,0xe7,0xee,0xd5,0x11,0xa0,0x45,0xa,0x7f,0x38,0xf7,0xcc,0xf7,
0xab,0x23,0xc0,0x4,0x1d,0x94,0x1f,0x57,0x47,0x80,0x16,0x29,0xfc,0xe1,0x5c,0x99,
0xdb,0xe4,0xd2,0xea,0x10,0x30,0x31,0x87,0xe7,0x4b,0xd5,0x11,0xa0,0x4d,0xa,0x7f,
0x48,0x97,0x64,0xef,0x5c,0x5c,0x1d,0x2,0x26,0xe4,0xbe,0xf9,0x44,0x75,0x4,0x68,
0x95,0xc2,0x1f,0xd6,0xd9,0xd9,0xdd,0x5b,0xf4,0x60,0x46,0xe,0xcd,0x7,0xaa,0x23,
0x40,0xbb,0x14,0xfe,0xd0,0x2e,0xcd,0x2d,0xf2,0xae,0xea,0x10,0xd0,0xbc,0x1f,0xe4,
0xa6,0x39,0xb9,0x3a,0x4,0xb4,0x4c,0xe1,0xf,0x6f,0x7d,0x1e,0x90,0x87,0x55,0x87,
0x80,0xa6,0xbd,0x25,0x37,0xc9,0x99,0xd5,0x21,0xa0,0x6d,0xa,0x7f,0x3e,0xde,0x98,
0x5d,0xf3,0xc9,0xea,0x10,0xd0,0xa4,0xf3,0x73,0xe7,0xfc,0x7e,0x36,0x54,0xc7,0x80,
0xd6,0x29,0xfc,0x79,0x39,0x37,0xf7,0xcc,0xaf,0xe6,0x7b,0xd5,0x31,0xa0,0x29,0xeb,
0xf2,0xe4,0xec,0x9c,0xff,0xa9,0x8e,0x1,0x53,0xa0,0xf0,0xe7,0xe9,0x23,0xb9,0x59,
0xee,0x96,0xd3,0xaa,0x63,0x40,0x13,0x2e,0xca,0xa3,0xb2,0x79,0xfe,0xae,0x3a,0x6,
0x4c,0x85,0xc2,0x9f,0xb7,0xcf,0x64,0xff,0xec,0x94,0xa7,0xe7,0x87,0xd5,0x41,0x60,
0xb4,0x2e,0xcf,0x9b,0x72,0xdb,0xec,0x90,0xd7,0x7b,0x20,0x1f,0x66,0x67,0x55,0x75,
0x80,0x2e,0x5d,0x90,0x17,0xe7,0xc5,0xd9,0x32,0x77,0xce,0x6f,0xe6,0xce,0x39,0x30,
0xab,0xab,0x3,0xc1,0x8,0xac,0xc9,0xd7,0x73,0x42,0x3e,0x9a,0xe3,0x73,0x5e,0x75,
0x14,0x98,0x22,0x85,0x5f,0xe7,0x8a,0x7c,0xe2,0xa7,0x17,0x11,0x59,0x91,0x95,0x7e,
0x16,0x74,0x6b,0x7d,0xae,0xcc,0xfa,0xea,0x10,0x30,0x75,0x4a,0x66,0x1c,0x36,0xe4,
0xca,0x5c,0x59,0x1d,0x2,0x80,0xe9,0xf2,0x1c,0x3e,0x0,0x74,0x40,0xe1,0x3,0x40,
0x7,0x14,0x3e,0x0,0x74,0x40,0xe1,0x3,0x40,0x7,0x14,0x3e,0x0,0x74,0x40,0xe1,
0x3,0x40,0x7,0x14,0x3e,0x0,0x74,0x40,0xe1,0x3,0x40,0x7,0x14,0x3e,0x0,0x74,
0x40,0xe1,0x3,0x40,0x7,0x14,0x3e,0x0,0x74,0x40,0xe1,0x3,0x40,0x7,0x14,0x3e,
0x0,0x74,0x40,0xe1,0x3,0x40,0x7,0x14,0x3e,0x0,0x74,0x40,0xe1,0x3,0x40,0x7,
0x14,0x3e,0x0,0x74,0x40,0xe1,0x3,0x40,0x7,0x14,0x3e,0x0,0x74,0x40,0xe1,0x3,
0x40,0x7,0x14,0x3e,0x0,0x74,0x40,0xe1,0x3,0x40,0x7,0x14,0x3e,0x0,0x74,0x40,
0xe1,0x3,0x40,0x7,0x14,0x3e,0x0,0x74,0x40,0xe1,0x3,0x40,0x7,0x14,0x3e,0x0,
0x74,0x40,0xe1,0x3,0x40,0x7,0x14,0x3e,0x0,0x74,0x40,0xe1,0x3,0x40,0x7,0x14,
0x3e,0x0,0x74,0x40,0xe1,0x3,0x40,0x7,0x14,0x3e,0x0,0x74,0x40,0xe1,0x3,0x40,
0x7,0x14,0x3e,0x0,0x74,0x40,0xe1,0x3,0x40,0x7,0x14,0x3e,0x0,0x74,0x40,0xe1,
0x3,0x40,0x7,0x14,0x3e,0x0,0x74,0x40,0xe1,0x3,0x40,0x7,0x14,0x3e,0x0,0x74,
0x40,0xe1,0x3,0x40,0x7,0x14,0x3e,0x0,0x74,0x40,0xe1,0x3,0x40,0x7,0x14,0x3e,
0x0,0x74,0x40,0xe1,0x3,0x40,0x7,0x14,0x3e,0x0,0x74,0x40,0xe1,0x3,0x40,0x7,
0x14,0x3e,0x0,0x74,0x40,0xe1,0x3,0x40,0x7,0x14,0x3e,0x0,0x74,0x40,0xe1,0x3,
0x40,0x7,0x14,0x3e,0x0,0x74,0x40,0xe1,0x3,0x40,0x7,0x14,0x3e,0x0,0x74,0x40,
0xe1,0x3,0x40,0x7,0x14,0x3e,0x0,0x74,0x60,0x55,0x75,0x80,0xce,0xad,0xc8,0x4e,
0xb9,0x75,0x6e,0x9d,0x5d,0xb2,0x4b,0x56,0x57,0x87,0x81,0x22,0x97,0xe7,0x9c,0x9c,
0x9b,0xef,0xe5,0xcb,0xf9,0x61,0xd6,0x55,0x87,0x81,0xa9,0x52,0xf8,0x55,0x7e,0x31,
0xbf,0x9b,0x87,0xe4,0xe6,0xd5,0x31,0x60,0x64,0x2e,0xce,0xbb,0xf3,0xe6,0x7c,0x22,
0x6b,0xaa,0x83,0xc0,0xd4,0x78,0x48,0x7f,0xfe,0x6e,0x95,0xd7,0x67,0x5d,0x3e,0x9f,
0xa7,0xaa,0x7b,0xf8,0x39,0xdb,0xe7,0xf7,0x72,0x7c,0xae,0xc8,0x27,0x72,0xcf,0xea,
0x28,0x30,0x2d,0xa,0x7f,0xbe,0xe,0xcd,0x17,0x73,0x7a,0x1e,0xe1,0xfb,0xe,0x9b,
0x70,0xcf,0x7c,0x22,0x97,0xe4,0xf,0xaa,0x63,0xc0,0x74,0x28,0x9e,0xf9,0xd9,0x2b,
0x5f,0xca,0x89,0x39,0xb0,0x3a,0x6,0x34,0x63,0xdb,0x1c,0x93,0x2b,0xf2,0x1b,0xd5,
0x31,0x60,0x1a,0x14,0xfe,0xbc,0xfc,0x7d,0xbe,0x9d,0x3,0xaa,0x43,0x40,0x73,0xb6,
0xc8,0xfb,0xf3,0x3f,0xd9,0xb5,0x3a,0x6,0xb4,0x4f,0xe1,0xcf,0xc3,0x4d,0x72,0x56,
0x1e,0x57,0x1d,0x2,0x9a,0x75,0x58,0xce,0xce,0x7d,0xab,0x43,0x40,0xeb,0x14,0xfe,
0xf0,0xee,0x9f,0x33,0xb3,0x47,0x75,0x8,0x68,0xdc,0xfb,0xf2,0x9a,0xea,0x8,0xd0,
0x36,0x85,0x3f,0xb4,0x47,0xe5,0xdd,0xd5,0x11,0x60,0x12,0xfe,0xc4,0xdf,0x12,0x2c,
0x87,0xc2,0x1f,0xd6,0x33,0xf3,0xda,0xea,0x8,0x30,0x19,0xf7,0xcf,0x9,0xd5,0x11,
0xa0,0x5d,0xa,0x7f,0x48,0xf,0xcb,0xf3,0xab,0x23,0xc0,0xa4,0xdc,0x31,0xef,0xab,
0x8e,0x0,0xad,0x52,0xf8,0xc3,0xf9,0x8d,0xfc,0x4b,0x75,0x4,0x98,0x9c,0xfb,0xe6,
0xf5,0xd5,0x11,0xa0,0x4d,0xa,0x7f,0x28,0xbb,0xe4,0xfd,0xd5,0x11,0x60,0x92,0x1e,
0x91,0xdf,0xa9,0x8e,0x0,0x2d,0x52,0xf8,0x43,0x39,0xb1,0x3a,0x0,0x4c,0xd6,0xbf,
0x67,0xf7,0xea,0x8,0xd0,0x1e,0x85,0x3f,0x8c,0x67,0xe4,0x96,0xd5,0x11,0x60,0xc2,
0x3e,0x56,0x1d,0x0,0xda,0xa3,0xf0,0x87,0xb0,0x4b,0x5e,0x50,0x1d,0x1,0x26,0x6d,
0xbf,0xfc,0x6e,0x75,0x4,0x68,0x8d,0xc2,0x1f,0xc2,0x71,0xd5,0x1,0x60,0xf2,0xde,
0x9a,0x95,0xd5,0x11,0xa0,0x2d,0xa,0x7f,0xf6,0xf6,0xce,0xdd,0xab,0x23,0xc0,0xe4,
0x6d,0x96,0x27,0x54,0x47,0x80,0xb6,0x28,0xfc,0xd9,0x73,0xa9,0x1d,0x98,0x87,0x97,
0x66,0x45,0x75,0x4,0x68,0x89,0xc2,0x9f,0xb5,0xd5,0xb9,0x4f,0x75,0x4,0xe8,0xc2,
0xca,0x1c,0x59,0x1d,0x1,0x5a,0xa2,0xf0,0x67,0xed,0x51,0xd5,0x1,0xa0,0x1b,0xcf,
0xad,0xe,0x0,0x2d,0x51,0xf8,0xb3,0xf6,0xb4,0xea,0x0,0xd0,0x8d,0xdb,0x66,0xa7,
0xea,0x8,0xd0,0xe,0x85,0x3f,0x5b,0xbb,0x64,0xe7,0xea,0x8,0xd0,0x11,0xd7,0xdc,
0x83,0x5,0x53,0xf8,0xb3,0xf5,0x6b,0xd5,0x1,0xa0,0x2b,0x7f,0x58,0x1d,0x0,0xda,
0xa1,0xf0,0x67,0xeb,0xe8,0xea,0x0,0xd0,0x95,0xbb,0x54,0x7,0x80,0x76,0x28,0xfc,
0xd9,0x72,0xf7,0x3,0xf3,0xb4,0x22,0x3b,0x56,0x47,0x80,0x56,0x28,0xfc,0x59,0x5a,
0x91,0x6d,0xab,0x23,0x40,0x67,0x6e,0x5d,0x1d,0x0,0x5a,0xa1,0xf0,0x67,0x69,0x97,
0xea,0x0,0xd0,0x9d,0x43,0xaa,0x3,0x40,0x2b,0x14,0xfe,0x2c,0xdd,0xa8,0x3a,0x0,
0x74,0x67,0x9f,0xea,0x0,0xd0,0xa,0x85,0x3f,0x4b,0x3b,0x54,0x7,0x80,0xee,0xec,
0x5a,0x1d,0x0,0x5a,0xa1,0xf0,0x67,0x69,0xc7,0xea,0x0,0xd0,0x1d,0x4f,0xa4,0xc1,
0x2,0x29,0xfc,0x59,0xf2,0xdd,0x84,0x79,0xf3,0x21,0xb9,0xb0,0x40,0x2a,0x6a,0x96,
0x2e,0xa8,0xe,0x0,0xdd,0x39,0xa7,0x3a,0x0,0xb4,0x42,0xe1,0xcf,0xd2,0x85,0xd5,
0x1,0xa0,0x3b,0xe7,0x56,0x7,0x80,0x56,0x28,0xfc,0x59,0xb2,0x35,0x60,0xde,0xbe,
0x5d,0x1d,0x0,0x5a,0xa1,0xf0,0x67,0xe9,0x47,0xd5,0x1,0xa0,0x3b,0x27,0x55,0x7,
0x80,0x56,0x28,0xfc,0x59,0x5a,0x9f,0xcb,0xab,0x23,0x40,0x67,0xbe,0x56,0x1d,0x0,
0x5a,0xa1,0xf0,0x67,0xeb,0x73,0xd5,0x1,0xa0,0x33,0x9e,0x48,0x83,0x5,0x52,0xf8,
0xb3,0x75,0x4c,0x75,0x0,0xe8,0xca,0xe7,0xab,0x3,0x40,0x3b,0x14,0xfe,0x6c,0xbd,
0xb7,0x3a,0x0,0x74,0xe5,0x5f,0xab,0x3,0x40,0x3b,0x14,0xfe,0x6c,0x7d,0x3f,0x97,
0x55,0x47,0x80,0x8e,0xbc,0xbd,0x3a,0x0,0xb4,0x43,0xe1,0xcf,0xda,0xcb,0xab,0x3,
0x40,0x37,0xce,0xcc,0xf7,0xab,0x23,0x40,0x3b,0x14,0xfe,0xac,0xfd,0x7d,0x75,0x0,
0xe8,0xc6,0xf3,0xab,0x3,0x40,0x4b,0x14,0xfe,0xac,0xfd,0x28,0x27,0x57,0x47,0x80,
0x4e,0xbc,0xa1,0x3a,0x0,0xb4,0x44,0xe1,0xcf,0xde,0xc3,0xab,0x3,0x40,0x17,0x5e,
0x9a,0xb5,0xd5,0x11,0xa0,0x25,0xa,0x7f,0xf6,0x4e,0xcd,0x69,0xd5,0x11,0xa0,0x3,
0xcf,0xad,0xe,0x0,0x6d,0x51,0xf8,0x43,0xb8,0x6f,0x75,0x0,0x98,0xbc,0x27,0xba,
0xae,0x25,0x2c,0x8e,0xc2,0x1f,0xc2,0xb7,0xf2,0xaa,0xea,0x8,0x30,0x69,0x3f,0xcc,
0x2b,0xaa,0x23,0x40,0x6b,0x14,0xfe,0x30,0x1e,0xe7,0xa3,0x72,0x61,0x40,0xbf,0x5c,
0x1d,0x0,0xda,0xa3,0xf0,0x87,0xb1,0x3e,0x87,0x54,0x47,0x80,0xc9,0x7a,0x7c,0xbe,
0x52,0x1d,0x1,0xda,0xa3,0xf0,0x87,0x72,0x7a,0x1e,0x59,0x1d,0x1,0x26,0xe9,0x43,
0x79,0x65,0x75,0x4,0x68,0x91,0xc2,0x1f,0xce,0x3f,0xb9,0x2c,0x8,0xcc,0xdc,0xa9,
0xb9,0x4f,0x75,0x4,0x68,0x93,0xc2,0x1f,0xd2,0xb3,0x5d,0x18,0x4,0x66,0xea,0xac,
0x1c,0x5c,0x1d,0x1,0x5a,0xa5,0xf0,0x87,0xf5,0xf0,0xfc,0x4d,0x75,0x4,0x98,0x8c,
0x53,0xb3,0x57,0xae,0xac,0xe,0x1,0xad,0x52,0xf8,0x43,0xfb,0x8b,0x3c,0xb1,0x3a,
0x2,0x4c,0xc2,0x87,0x72,0x90,0xba,0x87,0xa5,0x53,0xf8,0xc3,0x7b,0x45,0xe,0x75,
0x9,0x50,0x58,0xa6,0xc7,0x7b,0xee,0x1e,0x96,0x47,0xe1,0xcf,0xc3,0xc9,0x59,0x9d,
0xf,0x55,0x87,0x80,0x66,0xfd,0x30,0x7,0x78,0x65,0x3e,0x2c,0x97,0xc2,0x9f,0x8f,
0xcb,0x73,0x9f,0xdc,0x3d,0x17,0x55,0xc7,0x80,0x6,0x3d,0x31,0xbb,0x7b,0xdf,0x3d,
0x2c,0x9f,0xc2,0x9f,0x9f,0x4f,0x67,0x87,0x1c,0xa5,0xf4,0x61,0x11,0x5e,0x9a,0xad,
0x5d,0x44,0x17,0x66,0x43,0xe1,0xcf,0xd7,0xbf,0x65,0x87,0xdc,0x3b,0xff,0x5d,0x1d,
0x3,0x46,0xef,0xcc,0x3c,0x3a,0x5b,0xe4,0x69,0x3e,0x22,0x7,0x66,0x45,0xe1,0xcf,
0xdf,0x87,0x73,0x97,0x6c,0x93,0x23,0xf3,0x9f,0x5e,0xca,0x7,0xd7,0xe1,0xb,0x79,
0x62,0xf6,0xcc,0x4d,0xf3,0x5a,0x7f,0x21,0x30,0x4b,0xab,0xaa,0x3,0x74,0xea,0xb2,
0xbc,0x23,0xef,0x48,0xb2,0x7d,0x6e,0x91,0x3b,0xe4,0x80,0xec,0x92,0x5d,0xb3,0x7d,
0x75,0x28,0x28,0x72,0x79,0xce,0xcd,0x39,0xf9,0x76,0x4e,0xca,0xd7,0x72,0x6e,0x36,
0x54,0xc7,0x81,0x69,0x52,0xf8,0xb5,0x2e,0xce,0xa9,0x39,0xb5,0x3a,0x4,0x0,0xd3,
0xe7,0x21,0x7d,0x0,0xe8,0x80,0xc2,0x7,0x80,0xe,0x28,0x7c,0x0,0xe8,0x80,0xc2,
0x7,0x80,0xe,0x28,0x7c,0x0,0xe8,0x80,0xc2,0x7,0x80,0xe,0x28,0x7c,0x0,0xe8,
0x80,0xc2,0x7,0x80,0xe,0x28,0x7c,0x0,0xe8,0x80,0xc2,0x7,0x80,0xe,0x28,0x7c,
0x0,0xe8,0x80,0xc2,0x7,0x80,0xe,0x28,0x7c,0x0,0xe8,0x80,0xc2,0x7,0x80,0xe,
0x28,0x7c,0x0,0xe8,0x80,0xc2,0x7,0x80,0xe,0x28,0x7c,0x0,0xe8,0x80,0xc2,0x7,
0x80,0xe,0x28,0x7c,0x0,0xe8,0x80,0xc2,0x7,0x80,0xe,0x28,0x7c,0x0,0xe8,0x80,
0xc2,0x7,0x80,0xe,0x28,0x7c,0x0,0xe8,0x80,0xc2,0x7,0x80,0xe,0x28,0x7c,0x0,
0xe8,0x80,0xc2,0x7,0x80,0xe,0x28,0x7c,0x0,0xe8,0x80,0xc2,0x7,0x80,0xe,0x28,
0x7c,0x0,0xe8,0x80,0xc2,0x7,0x80,0xe,0x28,0x7c,0x0,0xe8,0x80,0xc2,0x7,0x80,
0xe,0x28,0x7c,0x0,0xe8,0x80,0xc2,0x7,0x80,0xe,0x28,0x7c,0x0,0xe8,0x80,0xc2,
0x7,0x80,0xe,0x28,0x7c,0x0,0xe8,0x80,0xc2,0x7,0x80,0xe,0x28,0x7c,0x0,0xe8,
0x80,0xc2,0x7,0x80,0xe,0x28,0x7c,0x0,0xe8,0x80,0xc2,0x7,0x80,0xe,0x28,0x7c,
0x0,0xe8,0x80,0xc2,0x7,0x80,0xe,0x28,0x7c,0x0,0xe8,0x80,0xc2,0x7,0x80,0xe,
0x28,0x7c,0x0,0xe8,0x80,0xc2,0x7,0x80,0xe,0x28,0x7c,0x0,0xe8,0x80,0xc2,0x7,
0x80,0xe,0x28,0x7c,0x0,0xe8,0x80,0xc2,0x7,0x80,0xe,0x28,0x7c,0x0,0xe8,0x80,
0xc2,0x7,0x80,0xe,0x28,0x7c,0x0,0xe8,0x80,0xc2,0x7,0x80,0xe,0x28,0x7c,0x0,
0xe8,0x80,0xc2,0x7,0x80,0xe,0xac,0xaa,0xe,0x0,0x83,0x5b,0x91,0xdb,0xe4,0x1e,
0xb9,0x6b,0xee,0x98,0x3d,0xb3,0x75,0x56,0x65,0x45,0x75,0x20,0x7e,0xce,0x95,0xb9,
0x3c,0x3f,0xca,0xc9,0xf9,0x4c,0x3e,0x9d,0x53,0xb2,0xae,0x3a,0xe,0x4c,0x91,0xc2,
0x67,0xca,0xb6,0xc8,0x43,0xf2,0x84,0xfc,0x62,0x75,0xc,0x36,0x69,0x55,0xb6,0xcb,
0x76,0xb9,0x65,0x1e,0x9c,0x24,0xf9,0x66,0x5e,0x93,0x7f,0xca,0x45,0xd5,0xa1,0x60,
0x5a,0x3c,0xa4,0xcf,0x54,0x1d,0x98,0x8f,0xe7,0x8a,0xbc,0x49,0xdd,0x37,0xe8,0x56,
0x79,0x59,0x2e,0xcc,0xa9,0xf9,0xa5,0xea,0x20,0x30,0x25,0xa,0x9f,0x29,0x3a,0x34,
0x5f,0xcc,0x17,0xd5,0x45,0xe3,0x7e,0x21,0x1f,0xcf,0xf7,0x73,0xdf,0xea,0x18,0x30,
0x15,0xa,0x9f,0xa9,0xd9,0x3e,0xef,0xcb,0x89,0x39,0xb0,0x3a,0x6,0x33,0xb1,0x7b,
0xde,0x97,0x53,0x72,0xd3,0xea,0x18,0x30,0x5,0xa,0x9f,0x69,0x39,0x2a,0x17,0xd9,
0x84,0x13,0x73,0xbb,0x7c,0x37,0xcf,0xaa,0xe,0x1,0xed,0x53,0xf8,0x4c,0xc7,0x8a,
0xfc,0xbf,0xbc,0xb5,0x3a,0x4,0x83,0xf8,0xab,0x9c,0x98,0x6d,0xaa,0x43,0x40,0xdb,
0xbc,0x4a,0x9f,0xa9,0xd8,0x3a,0xa7,0x65,0xaf,0xea,0x10,0xc,0xe6,0xd0,0x9c,0x97,
0x7d,0xf2,0xbd,0xea,0x18,0xd0,0x2e,0xb,0x9f,0x69,0xd8,0x2d,0x3f,0x50,0xf7,0x13,
0xb7,0x65,0xbe,0x9b,0xdb,0x55,0x87,0x80,0x76,0x29,0x7c,0xa6,0x60,0x87,0x7c,0x37,
0xab,0xab,0x43,0x30,0x7,0xa7,0x64,0xdf,0xea,0x8,0xd0,0x2a,0x85,0x4f,0xfb,0xb6,
0xc8,0x37,0xb2,0x65,0x75,0x8,0xe6,0xe4,0xcb,0xd9,0xbd,0x3a,0x2,0xb4,0x49,0xe1,
0xd3,0xbe,0x13,0xb3,0x5b,0x75,0x4,0xe6,0x66,0xb3,0x7c,0x3d,0x2b,0xab,0x43,0x40,
0x8b,0x14,0x3e,0xad,0x7b,0x41,0xe,0xaa,0x8e,0xc0,0x5c,0x6d,0x9f,0x77,0x57,0x47,
0x80,0x16,0x29,0x7c,0xda,0x76,0xa7,0x3c,0xa3,0x3a,0x2,0x73,0x77,0xdf,0x3c,0xa2,
0x3a,0x2,0xb4,0x47,0xe1,0xd3,0xb6,0xf,0x54,0x7,0xa0,0xc4,0xeb,0xbd,0x2b,0x1f,
0x16,0x4b,0xe1,0xd3,0xb2,0xbf,0xcc,0x4e,0xd5,0x11,0x28,0xf2,0xe6,0xea,0x0,0xd0,
0x1a,0x85,0x4f,0xbb,0xb6,0xcc,0x8b,0xaa,0x23,0x50,0xe6,0xb7,0x73,0x8b,0xea,0x8,
0xd0,0x16,0x85,0x4f,0xbb,0x9e,0x5d,0x1d,0x80,0x52,0xaf,0xab,0xe,0x0,0x6d,0x51,
0xf8,0xb4,0x6a,0x55,0x9e,0x5e,0x1d,0x81,0x52,0xbf,0x9a,0x3d,0xaa,0x23,0x40,0x4b,
0x14,0x3e,0xad,0x7a,0x60,0x75,0x0,0xca,0xfd,0x45,0x75,0x0,0x68,0x89,0xc2,0xa7,
0x55,0xcf,0xad,0xe,0x40,0xb9,0xc7,0x56,0x7,0x80,0x96,0x28,0x7c,0xda,0xb4,0x63,
0x6e,0x5b,0x1d,0x81,0x72,0x9b,0xe7,0xe0,0xea,0x8,0xd0,0xe,0x85,0x4f,0x9b,0x7e,
0xa5,0x3a,0x0,0xa3,0x70,0x54,0x75,0x0,0x68,0x87,0xc2,0xa7,0x4d,0x7f,0x58,0x1d,
0x80,0x51,0xf8,0xdd,0xea,0x0,0xd0,0xe,0x85,0x4f,0x9b,0xee,0x5d,0x1d,0x80,0x51,
0xb8,0x49,0x56,0x55,0x47,0x80,0x56,0x28,0x7c,0x5a,0xb4,0x2a,0x9b,0x57,0x47,0x60,
0x24,0xbc,0x35,0xf,0x16,0x48,0xe1,0xd3,0x22,0x77,0xf2,0x5c,0xed,0xc0,0xea,0x0,
0xd0,0xa,0x85,0x4f,0x8b,0xdc,0xc9,0x73,0xb5,0x3b,0x55,0x7,0x80,0x56,0x28,0x7c,
0x5a,0xb4,0x73,0x75,0x0,0x46,0x63,0xb7,0xea,0x0,0xd0,0xa,0x85,0x4f,0x8b,0x76,
0xa9,0xe,0xc0,0x68,0xf8,0x5d,0x80,0x5,0x52,0xf8,0xb4,0xc8,0x9d,0x3c,0x57,0xf3,
0xbb,0x0,0xb,0xa4,0xf0,0x69,0xd1,0x45,0xd5,0x1,0x18,0x8d,0x8b,0xab,0x3,0x40,
0x2b,0x14,0x3e,0x2d,0x3a,0xb7,0x3a,0x0,0xa3,0x71,0x4e,0x75,0x0,0x68,0x85,0xc2,
0xa7,0x45,0xe7,0x55,0x7,0x60,0x34,0x14,0x3e,0x2c,0x90,0xc2,0xa7,0x45,0x5f,0xaf,
0xe,0xc0,0x68,0x9c,0x52,0x1d,0x0,0x5a,0xa1,0xf0,0x69,0xd1,0x77,0xaa,0x3,0x30,
0x1a,0x5f,0xa8,0xe,0x0,0xad,0x50,0xf8,0xb4,0xe8,0xb2,0x6c,0xa8,0x8e,0xc0,0x48,
0xf8,0xc7,0x1f,0x2c,0x90,0xc2,0xa7,0x4d,0x9f,0xaf,0xe,0xc0,0x28,0x5c,0x9a,0xcb,
0xaa,0x23,0x40,0x2b,0x14,0x3e,0x6d,0x3a,0xa6,0x3a,0x0,0xa3,0xf0,0xde,0xea,0x0,
0xd0,0xe,0x85,0x4f,0x9b,0xde,0x55,0x1d,0x80,0x51,0xf8,0xd7,0xea,0x0,0xd0,0xe,
0x85,0x4f,0x9b,0xce,0x70,0xf1,0x1d,0x92,0x1c,0x5f,0x1d,0x0,0xda,0xa1,0xf0,0x69,
0xd5,0xdf,0x54,0x7,0xa0,0xdc,0xfb,0xb3,0xae,0x3a,0x2,0xb4,0x43,0xe1,0xd3,0xaa,
0x57,0x57,0x7,0xa0,0xdc,0xf3,0xaa,0x3,0x40,0x4b,0x14,0x3e,0xad,0x3a,0x2f,0xef,
0xaf,0x8e,0x40,0xa9,0xef,0xe6,0xa4,0xea,0x8,0xd0,0x12,0x85,0x4f,0xbb,0x1e,0x5d,
0x1d,0x80,0x52,0xf,0xab,0xe,0x0,0x6d,0x51,0xf8,0xb4,0xeb,0xbb,0xde,0x94,0xd5,
0xb1,0x6f,0xe5,0x23,0xd5,0x11,0xa0,0x2d,0xa,0x9f,0x96,0x1d,0x55,0x1d,0x80,0x32,
0xbf,0x5e,0x1d,0x0,0x5a,0xa3,0xf0,0x69,0xd9,0x25,0xf9,0xd3,0xea,0x8,0x94,0x78,
0x63,0xbe,0x56,0x1d,0x1,0x5a,0xa3,0xf0,0x69,0xdb,0xab,0xf2,0x99,0xea,0x8,0xcc,
0xdd,0xd9,0x79,0x78,0x75,0x4,0x68,0x8f,0xc2,0xa7,0x75,0xbf,0x92,0x35,0xd5,0x11,
0x98,0xb3,0x43,0x7c,0x78,0x12,0x2c,0x9e,0xc2,0xa7,0x75,0x97,0xe7,0xf6,0xd5,0x11,
0x98,0xab,0xfb,0xe7,0x8c,0xea,0x8,0xd0,0x22,0x85,0x4f,0xfb,0xbe,0x92,0x7b,0x56,
0x47,0x60,0x6e,0x1e,0xe5,0xbd,0x19,0xb0,0x34,0xa,0x9f,0x29,0xf8,0x64,0x8e,0xa8,
0x8e,0xc0,0x5c,0xfc,0x45,0x5e,0x5f,0x1d,0x1,0x5a,0xa5,0xf0,0x99,0x86,0x77,0xe7,
0x2e,0xd5,0x11,0x18,0xdc,0xef,0xf9,0x4,0x5,0x58,0x3a,0x85,0xcf,0x54,0xfc,0x77,
0x6e,0x9d,0xb,0xab,0x43,0x30,0x98,0xf5,0xb9,0x67,0xde,0x5a,0x1d,0x2,0x5a,0xa6,
0xf0,0x99,0x8e,0xd3,0xb3,0x73,0xde,0x5d,0x1d,0x82,0x41,0x9c,0x9a,0x1d,0xf3,0xc9,
0xea,0x10,0xd0,0x36,0x85,0xcf,0x94,0xac,0xcf,0x11,0xb9,0xaf,0xb7,0xe9,0x4d,0xce,
0x9f,0xe4,0xa0,0x5c,0x5c,0x1d,0x2,0x5a,0xa7,0xf0,0x99,0x9a,0xf,0x64,0xeb,0xbc,
0xa2,0x3a,0x4,0x33,0x73,0x6c,0xb6,0xcd,0xeb,0xaa,0x43,0xc0,0x14,0x28,0x7c,0xa6,
0x67,0x7d,0x9e,0x98,0xad,0xf2,0x42,0x17,0x67,0x69,0xde,0x1b,0xb2,0x73,0x1e,0x9c,
0x4b,0xab,0x63,0xc0,0x34,0x28,0x7c,0xa6,0xe9,0x8a,0x3c,0x33,0x9b,0xe5,0x5e,0xf9,
0x74,0x75,0x10,0x96,0xe4,0x2b,0x79,0x50,0x36,0xcf,0xc3,0x73,0x7e,0x75,0x10,0x98,
0x8e,0x55,0xd5,0x1,0x6,0xe2,0xbd,0xba,0x8b,0x71,0x6e,0xce,0xcd,0x39,0x39,0x39,
0xa7,0xe4,0x8c,0x5c,0x5e,0x1d,0x66,0xa6,0x3e,0x96,0x8f,0x65,0xb3,0x1c,0x90,0xdf,
0xcd,0xaf,0x67,0xdf,0x6c,0x5d,0x1d,0x87,0x4d,0x58,0x93,0x6f,0xe6,0xa3,0x79,0x5b,
0x4e,0xca,0x95,0xd5,0x51,0x18,0x11,0x2f,0xd7,0x9c,0x91,0x15,0x83,0xde,0xba,0x87,
0x54,0xdb,0x73,0x51,0x8e,0xcb,0x9b,0xf3,0xb1,0x49,0xfe,0xec,0x36,0xcb,0x36,0xd9,
0x3a,0xdb,0x66,0xab,0xea,0x20,0x6c,0x64,0x4d,0x7e,0x9c,0x4b,0x73,0x59,0x53,0x35,
0x5f,0xf7,0x17,0xb2,0x5f,0xbe,0x5a,0x70,0xd4,0x7,0xe6,0xd8,0xb2,0x33,0xee,0xcb,
0x80,0xad,0x3c,0xd5,0x85,0xcf,0x52,0xad,0xce,0xd1,0x39,0x3a,0xc9,0xdb,0xf3,0x82,
0x7c,0xa9,0x3a,0xcc,0x8c,0xad,0xcf,0x25,0xb9,0x24,0x67,0x57,0xc7,0x0,0xa8,0xe0,
0x39,0x7c,0xae,0xdb,0x91,0xf9,0x62,0xbe,0x94,0x3b,0x56,0xc7,0x0,0x60,0x36,0x14,
0x3e,0xd7,0xef,0x80,0x9c,0x90,0xff,0xcd,0x4d,0xaa,0x63,0x0,0xb0,0x7c,0xa,0x9f,
0x1b,0x76,0x87,0x9c,0x99,0x97,0x54,0x87,0x0,0x60,0xb9,0x14,0x3e,0x9b,0xf6,0xd4,
0x9c,0x96,0x1d,0xab,0x43,0x0,0xb0,0x1c,0xa,0x9f,0x85,0xd8,0x37,0xe7,0xe7,0xd0,
0xea,0x10,0x0,0x2c,0x9d,0xc2,0x67,0xa1,0x4e,0xcc,0x6f,0x54,0x47,0x0,0x60,0xa9,
0x14,0x3e,0xb,0xf7,0xfe,0x3c,0xa8,0x3a,0x2,0x0,0x4b,0xa3,0xf0,0x59,0x8c,0x77,
0xe4,0x1e,0xd5,0x11,0x0,0x58,0xa,0x85,0xcf,0xe2,0xfc,0x57,0x6e,0x55,0x1d,0x1,
0x80,0xc5,0x53,0xf8,0x2c,0xd6,0xc9,0x7e,0x6b,0x0,0xda,0xe3,0xae,0x9b,0xc5,0xda,
0x31,0xef,0xac,0x8e,0x0,0xc0,0x62,0x29,0x7c,0x16,0xef,0x88,0xdc,0xab,0x3a,0x2,
0x0,0x8b,0xa3,0xf0,0x59,0x8a,0xf7,0xc,0xfc,0x39,0x8b,0x0,0xcc,0x98,0xc2,0x67,
0x29,0xb6,0xc9,0x73,0xaa,0x23,0x0,0xb0,0x18,0xa,0x9f,0xa5,0x79,0x76,0x56,0x56,
0x47,0x0,0x60,0xe1,0x14,0x3e,0x4b,0xb3,0x22,0x4f,0xa8,0x8e,0x0,0xc0,0xc2,0x29,
0x7c,0x96,0xea,0x5,0xd5,0x1,0x0,0x58,0x38,0x85,0xcf,0x52,0x6d,0x95,0x83,0xaa,
0x23,0x0,0xb0,0x50,0xa,0x9f,0xa5,0x7b,0x56,0x75,0x0,0x0,0x16,0x4a,0xe1,0xb3,
0x74,0x47,0x54,0x7,0x0,0x60,0xa1,0x14,0x3e,0x4b,0xb7,0x32,0x7b,0x54,0x47,0x0,
0x60,0x61,0x14,0x3e,0xcb,0xf1,0x9b,0xd5,0x1,0x0,0x58,0x18,0x85,0xcf,0x72,0xfc,
0x6a,0x75,0x0,0x0,0x16,0x46,0xe1,0xb3,0x1c,0x87,0x54,0x7,0x0,0x60,0x61,0x14,
0x3e,0xcb,0xb1,0x57,0x75,0x0,0x0,0x16,0x46,0xe1,0xb3,0x1c,0x9b,0xf9,0x10,0x1d,
0x80,0x36,0x28,0x7c,0x96,0xc7,0x15,0xf5,0x1,0x9a,0xa0,0xf0,0x59,0x9e,0x2d,0xaa,
0x3,0x0,0xb0,0x10,0xc3,0x16,0xfe,0x86,0xea,0xd3,0x63,0x70,0x16,0x3e,0x40,0x13,
0x86,0x2d,0xfc,0xb5,0xd5,0xa7,0x7,0x0,0x24,0x43,0x17,0xfe,0x65,0xd5,0xa7,0x7,
0x0,0x24,0x43,0x17,0xfe,0x77,0xaa,0x4f,0xf,0x0,0x48,0x86,0x2e,0xfc,0x13,0xab,
0x4f,0xf,0x0,0x48,0x86,0x2e,0xfc,0xcf,0x56,0x9f,0x1e,0x0,0x90,0xc,0x5d,0xf8,
0x1f,0xaf,0x3e,0x3d,0x0,0x20,0x19,0xba,0xf0,0xbf,0x5d,0x7d,0x7a,0x0,0x40,0x32,
0xfc,0x85,0x77,0x4e,0xaa,0x3e,0x41,0x0,0x60,0xf8,0xc2,0x7f,0x49,0xf5,0x9,0x2,
0x0,0xc3,0x17,0xfe,0x7b,0xaa,0x4f,0x10,0x0,0x18,0xbe,0xf0,0xaf,0xcc,0x87,0xaa,
0x4f,0x11,0x0,0x18,0xfe,0xc3,0x73,0x1e,0x53,0x7d,0x8a,0x0,0xc0,0xf0,0x85,0xff,
0xcd,0x7c,0xbe,0xfa,0x24,0x1,0xa0,0x77,0xf3,0xf8,0x78,0xdc,0x3f,0xaa,0x3e,0x49,
0x0,0xe8,0xdd,0x3c,0xa,0xff,0x94,0x1c,0x57,0x7d,0x9a,0x0,0xd0,0xb7,0x79,0x14,
0x7e,0xf2,0xfb,0xd5,0xa7,0x9,0x0,0x7d,0x9b,0x4f,0xe1,0xff,0x38,0x47,0x56,0x9f,
0x28,0x0,0xf4,0x6c,0x3e,0x85,0x9f,0xbc,0x23,0x6f,0xaf,0x3e,0x55,0x0,0xe8,0xd7,
0xbc,0xa,0x3f,0x79,0x48,0xce,0xa8,0x3e,0x59,0x0,0xe8,0xd5,0xfc,0xa,0x7f,0x43,
0xf6,0xcb,0x25,0xd5,0xa7,0xb,0x0,0x7d,0x9a,0x5f,0xe1,0x27,0x97,0x66,0x9f,0xac,
0xab,0x3e,0x61,0x0,0xe8,0xd1,0x3c,0xb,0x3f,0xf9,0x61,0xf6,0x52,0xf9,0x0,0x30,
0x7f,0xf3,0x2d,0xfc,0xe4,0x4c,0x95,0xf,0x0,0xf3,0x37,0xef,0xc2,0x57,0xf9,0x0,
0x50,0x60,0xfe,0x85,0xaf,0xf2,0x1,0x60,0xee,0x2a,0xa,0x5f,0xe5,0x3,0xc0,0x9c,
0xd5,0x14,0xbe,0xca,0x7,0x80,0xb9,0xaa,0x2a,0x7c,0x95,0xf,0x0,0x73,0xb4,0xaa,
0xf0,0xd8,0x67,0x66,0xaf,0x7c,0x27,0x2b,0xab,0xbf,0x5,0x74,0x62,0x45,0x76,0xc9,
0x8d,0xb3,0x3a,0x3b,0x65,0x9b,0xea,0x28,0x6c,0xe4,0xf2,0x5c,0x90,0xb,0x73,0x4e,
0x7e,0x64,0x4,0xc0,0x70,0x2a,0xb,0xbf,0xbd,0xca,0xff,0xbb,0xea,0x0,0xd7,0xeb,
0x49,0xd5,0x1,0x46,0x6c,0xe7,0xdc,0x27,0x7f,0x98,0xbb,0x66,0xdb,0xea,0x20,0x2c,
0xc0,0x15,0xf9,0x7c,0x8e,0xc9,0x7b,0x72,0x56,0x75,0x10,0x46,0xe3,0x82,0xbc,0xa1,
0xe4,0xb8,0x7f,0x90,0x5d,0xab,0x4f,0x7d,0x7a,0xf6,0xcc,0x95,0xd9,0xd0,0xcc,0xd7,
0xb3,0xab,0xbf,0x5d,0xd7,0x69,0xeb,0xc2,0xef,0xc8,0xf6,0xd5,0x27,0x7f,0x3,0xb6,
0xcf,0x93,0x72,0x76,0xf9,0xef,0x8c,0xaf,0xa5,0x7c,0x5d,0x9a,0x17,0xe5,0xc6,0xd5,
0xbf,0x40,0x37,0xa8,0xee,0x7b,0xb3,0x6f,0xc9,0xf9,0x3e,0xb0,0xec,0x7c,0xcf,0x2f,
0xfa,0x9,0x57,0xdd,0x77,0xc,0xa8,0xee,0x39,0xfc,0xab,0xb5,0xf5,0x5c,0xfe,0xf3,
0x46,0x5a,0xf9,0x6c,0xec,0x66,0x79,0x5f,0x2e,0xca,0xdf,0xfa,0x37,0x7a,0xa3,0xb6,
0xce,0x5f,0xe6,0x7,0x39,0x39,0x7,0x55,0x7,0x81,0xe9,0xa8,0x2f,0x7c,0x95,0xcf,
0xac,0xed,0x94,0x8f,0xe6,0x8c,0xdc,0xb7,0x3a,0x6,0xcb,0x76,0x70,0xbe,0x90,0xd3,
0x72,0xcb,0xea,0x18,0x30,0xd,0x63,0x28,0x7c,0x95,0xcf,0x2c,0xfd,0x45,0xce,0xcb,
0x2f,0x57,0x87,0x60,0x66,0xf6,0xcd,0x37,0xf3,0xaa,0x86,0x5e,0xe9,0x3,0xa3,0x35,
0x8e,0xc2,0x57,0xf9,0xcc,0xc6,0x8e,0x39,0x2d,0x2f,0xad,0xe,0xc1,0xcc,0x3d,0x26,
0xe7,0x66,0x9f,0xea,0x10,0xd0,0xba,0xb1,0x14,0xbe,0xca,0x67,0xf9,0x7e,0x25,0xe7,
0x17,0xbd,0xa0,0x89,0xa1,0xed,0x90,0x6f,0xe4,0x91,0xd5,0x21,0xa0,0x6d,0xe3,0x29,
0x7c,0x95,0xcf,0xf2,0x3c,0x34,0x1f,0xae,0x8e,0xc0,0xa0,0x5e,0x97,0xe7,0x57,0x47,
0x80,0x96,0x8d,0xa9,0xf0,0x55,0x3e,0x4b,0xf7,0x94,0xbc,0xa5,0x3a,0x2,0x83,0x7b,
0x66,0xfe,0xa5,0x3a,0x2,0xb4,0x6b,0x5c,0x85,0xaf,0xf2,0x59,0x9a,0xa3,0xf3,0xd7,
0xd5,0x11,0x98,0x8b,0x87,0xf9,0x49,0xc3,0x52,0x8d,0xad,0xf0,0x55,0x3e,0x8b,0x77,
0x9f,0xbc,0xa9,0x3a,0x2,0x73,0xf3,0x94,0x3c,0xa1,0x3a,0x2,0xb4,0x69,0x7c,0x85,
0xaf,0xf2,0x59,0x9c,0xdd,0xf2,0xc1,0xea,0x8,0xcc,0xd5,0xcb,0x73,0x48,0x75,0x4,
0x68,0xd1,0x18,0xb,0x5f,0xe5,0xb3,0x18,0x27,0x56,0x7,0x60,0xee,0x3e,0x9b,0xad,
0xaa,0x23,0x40,0x7b,0xc6,0x59,0xf8,0x2a,0x9f,0x85,0x7a,0x71,0xf6,0xae,0x8e,0xc0,
0xdc,0x6d,0x9e,0x77,0x57,0x47,0x80,0xf6,0x8c,0xb5,0xf0,0x55,0x3e,0xb,0xb1,0x47,
0x9e,0x56,0x1d,0x81,0x12,0xf7,0xce,0xdd,0xaa,0x23,0x40,0x6b,0xc6,0x5b,0xf8,0x2a,
0x9f,0x4d,0x7b,0x6f,0x75,0x0,0xca,0xbc,0xbf,0x3a,0x0,0xb4,0x66,0xcc,0x85,0xaf,
0xf2,0xb9,0x61,0x7,0xe6,0xe0,0xea,0x8,0x94,0x59,0x9d,0x87,0x54,0x47,0x80,0xb6,
0x8c,0xbb,0xf0,0x55,0x3e,0x37,0xe4,0xd,0xd5,0x1,0x28,0xf5,0xda,0xea,0x0,0xd0,
0x96,0xb1,0x17,0xbe,0xca,0xe7,0xfa,0xdc,0x34,0x87,0x56,0x47,0xa0,0xd4,0xea,0xfc,
0x6a,0x75,0x4,0x68,0xc9,0xf8,0xb,0x5f,0xe5,0x73,0xdd,0x9e,0x5c,0x1d,0x80,0x72,
0xcf,0xab,0xe,0x0,0x2d,0x69,0xa1,0xf0,0x55,0x3e,0xd7,0xe5,0xb1,0xd5,0x1,0x28,
0x77,0x67,0xef,0xc7,0x87,0x85,0x6b,0xa3,0xf0,0x55,0x3e,0x1b,0xbb,0x6d,0x36,0xaf,
0x8e,0xc0,0x8,0xdc,0xbf,0x3a,0x0,0xb4,0xa3,0x95,0xc2,0x57,0xf9,0x5c,0xdb,0x83,
0xaa,0x3,0x30,0xa,0x47,0x57,0x7,0x80,0x76,0xb4,0x53,0xf8,0x2a,0x9f,0x6b,0xfa,
0xbd,0xea,0x0,0x8c,0x82,0x97,0xed,0x4d,0xdf,0x8e,0xd9,0xbe,0xe0,0xa8,0xdb,0x66,
0xd7,0xea,0x13,0x9f,0xbd,0x96,0xa,0x5f,0xe5,0xf3,0x33,0xb7,0xad,0xe,0xc0,0x28,
0x6c,0x9e,0xed,0xaa,0x23,0x30,0xb8,0xbf,0x2d,0x38,0xe6,0x4b,0xaa,0x4f,0x7a,0x8,
0x6d,0x15,0xbe,0xca,0xe7,0x27,0xdc,0xc9,0x73,0xb5,0x5b,0x56,0x7,0x60,0x70,0x8f,
0x98,0xfb,0xc6,0xdf,0x36,0x7f,0x5a,0x7d,0xd2,0x43,0x68,0xad,0xf0,0x55,0x3e,0x89,
0x3b,0x79,0x7e,0xe6,0xe,0xd5,0x1,0x98,0x83,0x79,0x6f,0xfc,0x49,0xee,0xfb,0x16,
0xb,0x5f,0xe5,0xa3,0xf0,0xf9,0x99,0xfd,0xab,0x3,0x30,0x7,0xf3,0xdd,0xf8,0x13,
0xdd,0xf7,0x6d,0x16,0xbe,0xca,0x67,0x97,0xea,0x0,0x8c,0xc6,0x4,0x5f,0x5a,0xc5,
0x75,0x98,0xe7,0xc6,0x9f,0xe8,0xbe,0x6f,0xb5,0xf0,0x55,0x7e,0xef,0x14,0x3e,0x57,
0xf3,0xbb,0xd0,0x87,0xf9,0x6d,0xfc,0xc9,0xee,0xfb,0x76,0xb,0x5f,0xe5,0xf7,0xcd,
0xf5,0xd5,0xb8,0x9a,0xdf,0x85,0xf9,0x58,0x5b,0x1d,0x60,0x6e,0x1b,0x7f,0xb2,0xfb,
0xbe,0xe5,0xc2,0x57,0xf9,0x3d,0x3b,0xb7,0x3a,0x0,0xa3,0xe1,0x77,0x61,0x3e,0xce,
0xa9,0xe,0x30,0xa7,0x8d,0x3f,0xe1,0x7d,0xdf,0x76,0xe1,0xab,0xfc,0x7e,0xb9,0x93,
0xe7,0x6a,0x7e,0x17,0xe6,0xe3,0xfc,0xea,0x0,0x99,0xcf,0xc6,0x9f,0xf0,0xbe,0x6f,
0xbd,0xf0,0x55,0x7e,0xaf,0x7e,0x54,0x1d,0x80,0xd1,0x38,0xab,0x3a,0x40,0x27,0x2e,
0xaa,0xe,0x90,0x79,0x6c,0xfc,0x49,0xef,0xfb,0xf6,0xb,0x5f,0xe5,0xf7,0xe9,0xb4,
0xea,0x0,0x8c,0xc6,0x9,0xd5,0x1,0x3a,0xf1,0xc3,0xea,0x0,0x49,0x86,0xdf,0xf8,
0x93,0xde,0xf7,0xc9,0x8a,0xea,0x0,0x33,0xb1,0x67,0xbe,0x93,0x95,0xd5,0x21,0x16,
0xec,0x39,0xf9,0xab,0x19,0xdf,0xe2,0xd6,0xb9,0xb4,0xec,0x6c,0x56,0xe7,0xe2,0x82,
0xa3,0xae,0xcc,0x95,0x65,0x67,0xcc,0xb8,0xdc,0x24,0xdf,0x2f,0x39,0xee,0x86,0xb2,
0x33,0xde,0x2f,0x5f,0x2d,0x39,0xee,0x65,0xa3,0x78,0x81,0xe4,0x90,0xf7,0x38,0xdb,
0xe6,0x92,0xea,0xd3,0xcb,0xa0,0xad,0xdc,0xfe,0xc2,0x4f,0xac,0xfc,0xfe,0xac,0xcb,
0x8f,0xab,0x23,0x30,0x12,0xe3,0x58,0x9e,0x3d,0xf8,0x62,0x75,0x80,0x24,0xc3,0x6e,
0xfc,0x89,0xef,0xfb,0xa9,0x14,0xbe,0xca,0xef,0xcf,0x7b,0xab,0x3,0x30,0xa,0xa7,
0x67,0x7d,0x75,0x84,0x6e,0x8c,0xe3,0x6f,0x6e,0xb8,0xe7,0xf1,0x27,0xfe,0xfc,0x7d,
0x32,0x9d,0xc2,0x57,0xf9,0xbd,0x39,0xa6,0x3a,0x0,0xa3,0xf0,0x96,0xea,0x0,0x1d,
0xf9,0xd7,0xea,0x0,0x57,0x19,0x6a,0xe3,0x4f,0x7e,0xdf,0x4f,0xe5,0x39,0xfc,0xab,
0xf5,0xfa,0x5c,0x7e,0x7f,0xcf,0xe1,0xd7,0x9e,0x33,0xe3,0xb1,0x6f,0xbe,0x56,0x74,
0xe4,0xfe,0x9e,0xc3,0x4f,0xae,0xc8,0x16,0x65,0x67,0x7d,0x4d,0x43,0xdc,0xeb,0x8c,
0xe3,0xf9,0xfb,0x64,0x5d,0x56,0xd,0x77,0xe3,0xd3,0x59,0xf8,0x89,0x95,0xdf,0x93,
0xcb,0xbc,0x3a,0x9b,0x5c,0x54,0x56,0xf7,0x7d,0x3a,0xb6,0x3a,0xc0,0x55,0x86,0xd8,
0xf8,0x63,0xd9,0xf7,0xef,0x1a,0xf2,0xc6,0xa7,0xb5,0xf0,0x93,0x3e,0x57,0x7e,0x8f,
0xb,0x3f,0xb9,0x4f,0x3e,0x58,0x76,0xd6,0x8c,0xc3,0xb3,0xf2,0x82,0xb2,0x63,0xf7,
0xb8,0xf0,0xf7,0xce,0xb7,0xca,0xce,0xfa,0xda,0x66,0x7d,0xbf,0x33,0x96,0x7d,0x9f,
0xdc,0x26,0xdf,0x18,0xee,0xc6,0xa7,0xb5,0xf0,0x13,0x2b,0xbf,0x1f,0xc7,0x8f,0xe0,
0xea,0xde,0xd4,0x7a,0x65,0x75,0x80,0xce,0x7c,0x7b,0x34,0x8f,0xa8,0xcc,0x7a,0xe3,
0x8f,0x65,0xdf,0xff,0xdf,0x90,0x75,0x3f,0xc5,0xc2,0x57,0xf9,0xfd,0x78,0x72,0x75,
0x0,0x4a,0xbd,0x65,0x14,0x57,0x7f,0xeb,0xcb,0xe3,0xaa,0x3,0x5c,0x65,0xb6,0xaf,
0xd5,0x1f,0xcf,0xeb,0xf3,0x1f,0x3f,0xec,0xcd,0x4f,0xb1,0xf0,0x55,0x7e,0x2f,0x5e,
0xe5,0x2d,0x59,0x5d,0x7b,0x62,0x75,0x80,0xe,0x7d,0x68,0x14,0xd7,0xd4,0x4f,0x66,
0xbb,0xf1,0xc7,0xb2,0xef,0x2f,0xce,0xfb,0x86,0x3d,0xc0,0x34,0xb,0x5f,0xe5,0xf7,
0x61,0x7d,0xfe,0xa8,0x3a,0x2,0x65,0xfe,0x7e,0x4,0x9f,0xdf,0xd6,0xa3,0x87,0x55,
0x7,0xb8,0xca,0xec,0x36,0xfe,0x78,0xf6,0xfd,0x1f,0xf,0x7d,0x80,0xa9,0x16,0xbe,
0xca,0xef,0xc3,0xbf,0xe6,0xf4,0xea,0x8,0x94,0x58,0x93,0x27,0x55,0x47,0xe8,0xd4,
0xbb,0x26,0xb7,0xf1,0xc7,0xb3,0xef,0xdf,0x31,0xf4,0x21,0xa6,0x5b,0xf8,0x2a,0xbf,
0xf,0xbf,0x56,0x1d,0x80,0x12,0xbf,0xe5,0xe9,0x9c,0x32,0xd3,0xda,0xf8,0x1d,0xed,
0xfb,0x69,0x17,0xbe,0xca,0xef,0xc1,0x37,0xf3,0x88,0xea,0x8,0xcc,0xdd,0x3f,0x7a,
0x4b,0x66,0xa1,0x69,0x6d,0xfc,0x8e,0xf6,0xfd,0x14,0xdf,0x87,0xbf,0xb1,0x1e,0xde,
0x97,0xdf,0xe7,0xfb,0xf0,0x7f,0xe6,0x3d,0xb9,0x5f,0x75,0x4,0xe6,0xe8,0x9b,0xd9,
0xa7,0x3a,0x42,0xfa,0x7c,0x1f,0xfe,0xd5,0x8e,0xc8,0x71,0xc5,0x9,0xae,0xb6,0xdc,
0xfb,0x9f,0xf1,0xbc,0xff,0xfe,0xc8,0x79,0x14,0xfe,0xb4,0x17,0x7e,0x62,0xe5,0xf7,
0xe0,0xfe,0xf9,0x42,0x75,0x4,0xe6,0xe6,0x82,0x1c,0x58,0x1d,0xa1,0x7b,0xd3,0xd9,
0xf8,0x5d,0xed,0xfb,0x1e,0xa,0x5f,0xe5,0xf7,0xe0,0x90,0x7c,0xaf,0x3a,0x2,0x73,
0x71,0x65,0x6e,0x95,0xcb,0xab,0x43,0x30,0x91,0xe7,0xf1,0xbb,0x7a,0xfe,0x3e,0xe9,
0xa3,0xf0,0x55,0xfe,0xf4,0xad,0xcb,0x2d,0x73,0x5a,0x75,0x8,0x6,0x77,0x51,0x6e,
0x92,0xf3,0xaa,0x43,0x90,0xa9,0x6c,0xfc,0xce,0xf6,0x7d,0x2f,0x85,0xaf,0xf2,0xa7,
0x6f,0x6d,0xe,0xc8,0x27,0xaa,0x43,0x30,0xa8,0xef,0x64,0xf7,0x9c,0x5d,0x1d,0x82,
0xab,0xb4,0xbf,0xf1,0xbb,0xdb,0xf7,0xfd,0x14,0xbe,0xca,0x9f,0xbe,0xd,0x39,0x3c,
0xcf,0xaa,0xe,0xc1,0x60,0x8e,0xc9,0xde,0xb9,0xac,0x3a,0x4,0x3f,0xd5,0xfe,0xc6,
0xef,0x6e,0xdf,0xf7,0x54,0xf8,0x2a,0xbf,0x7,0x2f,0xc8,0x1d,0xb,0xdf,0xb1,0xc0,
0x50,0x36,0xe4,0x81,0xf9,0xc3,0xea,0x10,0x6c,0xa4,0xed,0x8d,0xdf,0xe1,0xbe,0xef,
0xab,0xf0,0x55,0x7e,0xf,0x4e,0xca,0x76,0x79,0x71,0x75,0x8,0x66,0xea,0x6d,0xd9,
0x3a,0xef,0xac,0xe,0xc1,0xcf,0x69,0x7b,0xe3,0x77,0xb8,0xef,0x7b,0x2b,0x7c,0x95,
0xdf,0x83,0xd,0x79,0x7a,0x6e,0x94,0x7f,0xab,0x8e,0xc1,0x4c,0x7c,0x22,0xb7,0xc9,
0x43,0x73,0x45,0x75,0xc,0xae,0x53,0xbb,0x1b,0xbf,0xcb,0x7d,0xdf,0x5f,0xe1,0xab,
0xfc,0x3e,0x9c,0x9d,0xa3,0xb2,0x63,0xfe,0x2e,0x6b,0xaa,0x83,0xb0,0x64,0x1b,0xf2,
0xe6,0xdc,0x2c,0x87,0xf,0xfb,0xf9,0xe0,0x2c,0x4b,0xbb,0x1b,0xbf,0xcb,0x7d,0xdf,
0xab,0x3d,0x73,0x65,0x36,0x34,0xf3,0xb5,0xe9,0xca,0xdf,0xba,0x30,0xdd,0x2c,0x3f,
0x95,0x7a,0x8,0x7,0xe7,0xd,0x39,0xbf,0xfc,0x67,0xe8,0x6b,0x31,0x5f,0x97,0xe5,
0xdf,0x73,0xaf,0xd1,0x5f,0x5,0xb4,0xee,0xfb,0xb3,0x6f,0xf5,0xa9,0x5f,0xc3,0x11,
0xe5,0xbf,0x2d,0x57,0x7f,0x2d,0xe6,0x9e,0x68,0xdb,0xf2,0xb4,0x57,0x7f,0x3d,0x78,
0xbe,0x3f,0xae,0xb1,0xff,0x51,0xd,0x65,0x5a,0x17,0xdc,0xed,0xfd,0xd2,0xba,0x9b,
0xb6,0x6d,0xe,0xc8,0x21,0xb9,0x6b,0xf6,0xc9,0x4e,0x59,0x9d,0x2d,0xab,0xe3,0xb0,
0x91,0xb5,0xb9,0x28,0x17,0xe4,0x8c,0x7c,0x26,0x27,0xe6,0x4b,0xa3,0x59,0x8d,0x37,
0xac,0xe7,0x4b,0xeb,0x5e,0xd3,0x79,0xd9,0xa9,0x3a,0x42,0x92,0xe4,0x9f,0xf2,0xc8,
0x5,0xff,0xb7,0xff,0x30,0x92,0x7,0xf4,0x2f,0xce,0xea,0xea,0x8,0xbd,0x98,0xd2,
0xca,0xb7,0xf0,0x61,0xde,0xea,0xfe,0xe6,0xc6,0xb4,0xf0,0x5b,0xdc,0xf8,0xdd,0xee,
0xfb,0x1e,0x9f,0xc3,0xbf,0x9a,0xe7,0xf2,0x1,0x96,0xab,0xbd,0xe7,0xf1,0x3b,0x7e,
0xfe,0xbe,0xdf,0xc2,0x57,0xf9,0x0,0xcb,0xd7,0xd6,0x6b,0xf5,0x3b,0x7d,0x7d,0xfe,
0x4f,0xf4,0x5c,0xf8,0x2a,0x1f,0x60,0xb9,0xda,0xda,0xf8,0x2f,0xad,0xe,0x79,0x95,
0x92,0xd7,0xe7,0xf7,0x5d,0xf8,0x2a,0x1f,0x60,0xb9,0xda,0xd9,0xf8,0xdb,0xe6,0xb1,
0xd5,0x21,0xaf,0x52,0xb0,0xef,0x15,0xbe,0xca,0x7,0x58,0x9e,0x76,0x36,0x7e,0xd7,
0xfb,0x5e,0xe1,0x27,0x2a,0x1f,0x60,0x79,0xda,0xd8,0xf8,0x9d,0xef,0x7b,0x85,0xff,
0x13,0x2a,0x1f,0x60,0xe9,0xda,0xd8,0xf8,0x9d,0xef,0x7b,0x85,0x7f,0x35,0x95,0xf,
0xb0,0x74,0xe3,0xdf,0xf8,0xdd,0xef,0x7b,0x85,0xff,0x33,0x2a,0x1f,0x60,0xa9,0xc6,
0xbf,0xf1,0xbb,0xdf,0xf7,0xa,0xff,0x9a,0x54,0x3e,0xc0,0x52,0x8d,0x7b,0xe3,0xdb,
0xf7,0x51,0xf8,0xd7,0xa6,0xf2,0x1,0x96,0x66,0xdc,0x1b,0xdf,0xbe,0x8f,0xc2,0xdf,
0x98,0xca,0x7,0x58,0x9a,0xf1,0x6e,0x7c,0xfb,0x3e,0x89,0xc2,0xff,0x79,0x2a,0x1f,
0x60,0x29,0xc6,0xbb,0xf1,0xed,0xfb,0x24,0xa,0xff,0xba,0xa8,0x7c,0x80,0xa5,0x18,
0xe7,0xc6,0xb7,0xef,0xaf,0xa2,0xf0,0xaf,0x4b,0x6b,0x95,0xff,0x94,0xea,0x8,0x0,
0x19,0xeb,0xc6,0xb7,0xef,0xaf,0xb2,0xa2,0xfa,0x3b,0x30,0x5a,0x7b,0xe6,0x3b,0x59,
0x59,0x1d,0xa2,0x1,0xab,0x73,0x71,0x75,0x4,0x28,0xb0,0xa1,0xec,0xc8,0xfb,0xe5,
0xab,0xd5,0x27,0x7f,0x3,0x8e,0xc8,0x71,0xd5,0x11,0xae,0x72,0xf5,0x7d,0xd3,0xb6,
0xb9,0xa4,0x3a,0xca,0x55,0x8e,0xac,0x2e,0x7c,0xb,0xff,0xfa,0xb4,0xb5,0xf2,0x1,
0xc6,0x60,0x7c,0x1b,0xdf,0xbe,0xff,0x29,0x85,0x7f,0xfd,0x54,0x3e,0xc0,0x62,0x8d,
0xeb,0x79,0x7c,0xcf,0xdf,0x5f,0x83,0xc2,0xbf,0x21,0x2a,0x1f,0x60,0x71,0xc6,0xb5,
0xf1,0xed,0xfb,0x6b,0x50,0xf8,0x37,0x4c,0xe5,0x3,0x2c,0xce,0x98,0x36,0xbe,0x7d,
0x7f,0xd,0xa,0x7f,0x53,0x54,0x3e,0xc0,0x62,0x8c,0x6b,0xe3,0x8f,0xc1,0x28,0xf6,
0xbd,0xc2,0x5f,0x8,0x95,0xf,0xb0,0x18,0xe3,0xd9,0xf8,0xe3,0x30,0x8a,0x7d,0xef,
0x6d,0x79,0xb,0xe5,0x4d,0x7a,0xd7,0xc7,0xdb,0xf2,0xe8,0x93,0xb7,0xe5,0xdd,0xb0,
0xf3,0xb2,0x53,0x75,0x84,0xd1,0xb8,0x38,0xab,0xab,0x23,0xfc,0x84,0x85,0xbf,0x30,
0x56,0x3e,0xc0,0xc2,0x8d,0x65,0xe3,0x8f,0xc1,0x48,0xf6,0xbd,0x85,0xbf,0x18,0x56,
0xfe,0x75,0xb1,0xf0,0xe9,0x93,0x85,0xbf,0x29,0x36,0xfe,0x4f,0x8c,0x66,0xdf,0x5b,
0xf8,0x8b,0x61,0xe5,0x3,0x2c,0x94,0x8d,0xff,0x13,0xa3,0xd9,0xf7,0x16,0xfe,0x62,
0x59,0xf9,0x1b,0xb3,0xf0,0xe9,0x93,0x85,0xbf,0x69,0x36,0xfe,0xa8,0xf6,0xbd,0x85,
0xbf,0x58,0x56,0x3e,0xc0,0xc2,0xd8,0xf8,0xa3,0xda,0xf7,0x16,0xfe,0x52,0x58,0xf9,
0xd7,0x64,0xe1,0xd3,0x27,0xb,0x7f,0x21,0x7a,0xdf,0xf8,0xa3,0xda,0xf7,0x16,0xfe,
0x52,0x58,0xf9,0x0,0xb,0xd1,0xfb,0xc6,0x1f,0xd5,0xbe,0xb7,0xf0,0x97,0xca,0xca,
0xbf,0x9a,0x85,0x4f,0x9f,0x2c,0xfc,0x85,0xe9,0x79,0xe3,0x8f,0x6c,0xdf,0x5b,0xf8,
0x4b,0x65,0xe5,0x3,0x6c,0x5a,0xcf,0x1b,0x7f,0x64,0xfb,0xde,0xc2,0x5f,0xe,0x2b,
0x3f,0xb1,0xf0,0xe9,0x95,0x85,0xbf,0x50,0xbd,0x6e,0xfc,0xd1,0xed,0x7b,0xb,0x7f,
0x39,0xac,0x7c,0x80,0x4d,0xe9,0x75,0xe3,0x8f,0x6e,0xdf,0x5b,0xf8,0xcb,0x65,0xe5,
0x5b,0xf8,0xf4,0xc9,0xc2,0x5f,0xb8,0x1e,0x37,0xfe,0x8,0xf7,0xbd,0x85,0xbf,0x5c,
0x56,0x3e,0xc0,0xd,0xeb,0x71,0xe3,0x8f,0x70,0xdf,0x5b,0xf8,0xb3,0xd0,0xf7,0xca,
0xb7,0xf0,0xe9,0x93,0x85,0xbf,0x18,0xbd,0x6d,0xfc,0x51,0xee,0x7b,0xb,0x7f,0x16,
0xac,0x7c,0x80,0x1b,0xd2,0xdb,0xc6,0x1f,0xe5,0xbe,0xb7,0xf0,0x67,0xa5,0xdf,0x95,
0x6f,0xe1,0xd3,0x27,0xb,0x7f,0x71,0x7a,0xda,0xf8,0x23,0xdd,0xf7,0x16,0xfe,0xac,
0x58,0xf9,0x0,0xd7,0xaf,0xa7,0x8d,0x3f,0xd2,0x7d,0x6f,0xe1,0xcf,0x52,0x9f,0x2b,
0xdf,0xc2,0xa7,0x4f,0x16,0xfe,0x62,0xf5,0xb2,0xf1,0x47,0xbb,0xef,0x2d,0xfc,0x59,
0xb2,0xf2,0x1,0xae,0x4f,0x2f,0x1b,0x7f,0xb4,0xfb,0xde,0xc2,0x9f,0xb5,0xfe,0x56,
0xbe,0x85,0x4f,0x9f,0x2c,0xfc,0xc5,0xeb,0x61,0xe3,0x8f,0x78,0xdf,0x5b,0xf8,0xb3,
0x66,0xe5,0x3,0x5c,0xb7,0x1e,0x36,0xfe,0x88,0xf7,0xbd,0x85,0x3f,0x84,0xbe,0x56,
0xbe,0x85,0x4f,0x9f,0x2c,0xfc,0xa5,0x98,0xfa,0xc6,0x1f,0xf5,0xbe,0xb7,0xf0,0x87,
0x60,0xe5,0x3,0x5c,0x97,0xa9,0x6f,0xfc,0x51,0xef,0x7b,0xb,0x7f,0x28,0xfd,0xac,
0x7c,0xb,0x9f,0x3e,0x59,0xf8,0x4b,0x33,0xe5,0x8d,0x3f,0xf2,0x7d,0x6f,0xe1,0xf,
0xc5,0xca,0x7,0xf8,0x79,0x53,0xde,0xf8,0x23,0xdf,0xf7,0x16,0xfe,0x90,0xfa,0x58,
0xf9,0x16,0x3e,0x7d,0xb2,0xf0,0x97,0x6a,0xaa,0x1b,0x7f,0xf4,0xfb,0xde,0xc2,0x1f,
0x92,0x95,0xf,0xb0,0xb1,0xa9,0x6e,0xfc,0xd1,0xef,0x7b,0xb,0x7f,0x68,0xd3,0x5f,
0xf9,0x16,0x3e,0x7d,0xb2,0xf0,0x97,0x6e,0x8a,0x1b,0xbf,0x81,0x7d,0x6f,0xe1,0xf,
0xcd,0xca,0x7,0xb8,0xb6,0x29,0x6e,0xfc,0x6,0xf6,0xbd,0x85,0x3f,0xf,0xd3,0x5e,
0xf9,0x16,0x3e,0x7d,0xb2,0xf0,0x97,0x63,0x6a,0x1b,0xbf,0x89,0x7d,0x6f,0xe1,0xcf,
0x83,0x95,0xf,0x70,0x4d,0x53,0xdb,0xf8,0x4d,0xec,0x7b,0xb,0x7f,0x5e,0xa6,0xbb,
0xf2,0x2d,0x7c,0xfa,0x64,0xe1,0x2f,0xcf,0x94,0x36,0x7e,0x23,0xfb,0xde,0xc2,0x9f,
0x17,0x2b,0x1f,0xe0,0x67,0xa6,0xb4,0xf1,0x1b,0xd9,0xf7,0x16,0xfe,0x3c,0x4d,0x73,
0xe5,0x5b,0xf8,0xf4,0xc9,0xc2,0x5f,0xae,0xa9,0x6c,0xfc,0x66,0xf6,0xbd,0x85,0x3f,
0x4f,0x56,0x3e,0xc0,0xd5,0xa6,0xb2,0xf1,0x9b,0xd9,0xf7,0x16,0xfe,0xbc,0x4d,0x6f,
0xe5,0x9f,0x5d,0x1d,0x0,0x4a,0xec,0x56,0x76,0xe4,0xa9,0x2c,0xfc,0x69,0x6c,0xfc,
0x86,0xf6,0x7d,0xb2,0xaa,0x3a,0x40,0x67,0xce,0xcc,0x5e,0x13,0xab,0xfc,0xba,0xbb,
0x3d,0xa0,0x6d,0xf,0xcb,0x71,0xd5,0x11,0x96,0xad,0xa1,0x7d,0x6f,0xe1,0x57,0x98,
0xde,0xca,0x7,0xe6,0x67,0x3a,0xb,0xbf,0xfd,0x8d,0xdf,0xd4,0xbe,0xf7,0x1c,0x7e,
0x5,0xcf,0xe5,0x3,0x24,0xed,0x3f,0x8f,0xdf,0xd4,0xbe,0xb7,0xf0,0xab,0x58,0xf9,
0xc0,0xd2,0x4c,0x69,0xe1,0xb7,0xbd,0xf1,0x1b,0xdb,0xf7,0x16,0x7e,0x15,0x2b,0x1f,
0xa0,0xed,0x8d,0xdf,0xd8,0xbe,0xb7,0xf0,0x2b,0x59,0xf9,0xc0,0xe2,0x4d,0x6b,0xe1,
0xb7,0xbb,0xf1,0x9b,0xdb,0xf7,0x16,0x7e,0x25,0x2b,0x1f,0xa0,0xd5,0x8d,0xdf,0xdc,
0xbe,0xb7,0xf0,0xab,0x59,0xf9,0xc0,0xe2,0x4c,0x6d,0xe1,0xb7,0xb9,0xf1,0x1b,0xdc,
0xf7,0x16,0x7e,0x35,0x2b,0x1f,0xe8,0x5d,0x8b,0x1b,0xbf,0xc1,0x7d,0x6f,0xe1,0x8f,
0x81,0x95,0xf,0x2c,0xdc,0xf4,0x16,0x7e,0x7b,0x1b,0xbf,0xc9,0x7d,0x6f,0xe1,0x8f,
0x81,0x95,0xf,0xf4,0xad,0xb5,0x8d,0xdf,0xe4,0xbe,0xb7,0xf0,0xc7,0xc2,0xca,0x7,
0x16,0x66,0x8a,0xb,0xbf,0xad,0x8d,0xdf,0xe8,0xbe,0xb7,0xf0,0xc7,0xc2,0xca,0x7,
0x7a,0xd6,0xd2,0xc6,0x6f,0x74,0xdf,0x5b,0xf8,0x63,0x62,0xe5,0x3,0x9b,0x36,0xcd,
0x85,0xdf,0xce,0xc6,0x6f,0x76,0xdf,0x5b,0xf8,0x63,0x62,0xe5,0x3,0xfd,0x6a,0x65,
0xe3,0x37,0xbb,0xef,0x2d,0xfc,0xb1,0xb1,0xf2,0x81,0x1b,0x36,0xd5,0x85,0xdf,0xc6,
0xc6,0x6f,0x78,0xdf,0x5b,0xf8,0x63,0x63,0xe5,0x3,0xbd,0x6a,0x61,0xe3,0x37,0xbc,
0xef,0x2d,0xfc,0x31,0xb2,0xf2,0x81,0xeb,0x37,0xdd,0x85,0x3f,0xfe,0x8d,0xdf,0xf4,
0xbe,0xb7,0xf0,0xc7,0xc8,0xca,0x7,0xfa,0x34,0xf6,0x8d,0xdf,0xf4,0xbe,0xb7,0xf0,
0xc7,0xca,0xca,0x7,0xae,0xdb,0x94,0x17,0xfe,0xb8,0x37,0x7e,0xe3,0xfb,0xde,0xc2,
0x1f,0x2b,0x2b,0x1f,0xe8,0xd1,0x98,0x37,0x7e,0xe3,0xfb,0xde,0xc2,0x1f,0x33,0x2b,
0x1f,0xf8,0x79,0xd3,0x5e,0xf8,0xe3,0xdd,0xf8,0xcd,0xef,0x7b,0xb,0x7f,0xcc,0xac,
0x7c,0xa0,0x3f,0x63,0xdd,0xf8,0xcd,0xef,0x7b,0xb,0x7f,0xec,0xac,0x7c,0xe0,0xda,
0xa6,0xbe,0xf0,0xc7,0xb9,0xf1,0x27,0xb0,0xef,0x2d,0xfc,0xb1,0xb3,0xf2,0x81,0xde,
0x8c,0x71,0xe3,0x4f,0x60,0xdf,0x5b,0xf8,0x2d,0xb0,0xf2,0x81,0x9f,0x99,0xfe,0xc2,
0x1f,0xdf,0xc6,0x9f,0xc4,0xbe,0xb7,0xf0,0x5b,0x60,0xe5,0x3,0x7d,0x19,0xdb,0xc6,
0x9f,0xc4,0xbe,0xb7,0xf0,0x5b,0x61,0xe5,0x3,0x3f,0xd1,0xc3,0xc2,0x1f,0xd7,0xc6,
0x9f,0xc8,0xbe,0xb7,0xf0,0x5b,0x61,0xe5,0x3,0x3d,0x19,0xd3,0xc6,0x9f,0xc8,0xbe,
0xb7,0xf0,0x5b,0x62,0xe5,0x3,0xbd,0x2c,0xfc,0xf1,0x6c,0xfc,0xc9,0xec,0x7b,0xb,
0xbf,0x25,0x56,0x3e,0x90,0x5c,0x5e,0x1d,0x60,0x4e,0xc6,0xb2,0xf1,0x27,0xb3,0xef,
0x2d,0xfc,0xd6,0x58,0xf9,0xd0,0xbb,0xdd,0x72,0x4e,0x75,0x84,0x39,0x19,0xc3,0xc6,
0x9f,0xd0,0xbe,0xb7,0xf0,0x5b,0x63,0xe5,0x43,0xef,0x7a,0x59,0xf8,0xe3,0xd8,0xf8,
0x13,0xda,0xf7,0x16,0x7e,0x8b,0xac,0x7c,0xe8,0xd9,0x66,0xd9,0x50,0x1d,0x61,0x6e,
0xaa,0x37,0xfe,0xa4,0xf6,0xbd,0x85,0xdf,0x22,0x2b,0x1f,0xfa,0x75,0x49,0x47,0x75,
0x5f,0xbf,0xf1,0x27,0xb5,0xef,0x2d,0xfc,0x56,0x59,0xf9,0xd0,0xa7,0x13,0x73,0x58,
0x75,0x84,0xb9,0xaa,0xdc,0xf8,0x13,0xdb,0xf7,0x16,0x7e,0xab,0xac,0x7c,0xe8,0xd3,
0x7b,0xaa,0x3,0xcc,0x59,0xe5,0xc6,0x9f,0xd8,0xbe,0xb7,0xf0,0x5b,0x66,0xe5,0x43,
0x7f,0x6e,0x9b,0xaf,0x57,0x47,0x98,0xb3,0xaa,0x8d,0x3f,0xb9,0x7d,0x6f,0xe1,0xb7,
0xcc,0xca,0x87,0xfe,0xf4,0x56,0xf7,0x75,0x1b,0x7f,0x72,0xfb,0xde,0xc2,0x6f,0x9d,
0x95,0xf,0x3d,0xf9,0xcf,0xfc,0x46,0x75,0x84,0x2,0x15,0x1b,0x7f,0x82,0xfb,0xde,
0xc2,0x6f,0x9d,0x95,0xf,0x3d,0x79,0x5e,0x75,0x80,0x12,0x15,0x1b,0x7f,0x82,0xfb,
0xde,0xc2,0x9f,0x2,0x2b,0x1f,0xfa,0x70,0x65,0x36,0xaf,0x8e,0x50,0x64,0xde,0x1b,
0x7f,0x92,0xfb,0xde,0xc2,0x9f,0x2,0x2b,0x1f,0xfa,0xf0,0xd4,0xea,0x0,0x65,0xe6,
0xbd,0xf1,0x27,0xb9,0xef,0x2d,0xfc,0xa9,0xb0,0xf2,0x61,0xea,0x36,0x64,0xf3,0x8e,
0xff,0x69,0x7f,0x4e,0x76,0x99,0xdb,0xb1,0x2e,0xcc,0x8e,0xd5,0xa7,0x3b,0xc,0xb,
0x7f,0x1a,0xac,0x7c,0x98,0xba,0x67,0x76,0xfd,0x37,0xfe,0x3b,0x73,0x3c,0xd6,0x83,
0xaa,0x4f,0x76,0x28,0x16,0xfe,0x74,0x58,0xf9,0x30,0x5d,0xe7,0x67,0xe7,0xea,0x8,
0xc5,0x3e,0x97,0xdb,0xcf,0xe5,0x38,0x5f,0xca,0x2f,0x54,0x9f,0xea,0x50,0x14,0xfe,
0x94,0xa8,0x7c,0x98,0xaa,0x3b,0xe7,0x7f,0xaa,0x23,0x14,0xdb,0x3d,0xdf,0x9f,0xcb,
0x71,0x6e,0x96,0xef,0x55,0x9f,0xea,0x50,0x3c,0xa4,0x3f,0x25,0x1e,0xd8,0x87,0x69,
0x7a,0x5d,0xf7,0x75,0x9f,0xfc,0x20,0x7f,0x32,0x87,0xa3,0xfc,0xd9,0x74,0xeb,0xde,
0xc2,0x9f,0x1e,0x2b,0x1f,0xa6,0xe6,0xdb,0xb9,0x45,0x75,0x84,0x91,0xf8,0x68,0x7e,
0x79,0xd0,0xdb,0xff,0x54,0xee,0x51,0x7d,0x8a,0x43,0x52,0xf8,0xd3,0xa3,0xf2,0x61,
0x4a,0xd6,0x65,0x8f,0x9c,0x5d,0x1d,0x62,0x24,0x36,0xcb,0x77,0x73,0x93,0xc1,0x6e,
0xfd,0x47,0xb9,0xc9,0xb4,0x1f,0x23,0xf5,0x90,0xfe,0xf4,0x78,0x60,0x1f,0xa6,0x64,
0x5f,0x75,0xff,0x53,0xeb,0x73,0x60,0xd6,0xc,0x74,0xdb,0x6b,0x73,0xc0,0xd4,0xef,
0x39,0x15,0xfe,0x14,0x9d,0x99,0xbd,0x72,0x45,0x75,0x8,0x60,0x6,0xee,0x94,0xd3,
0xab,0x23,0x8c,0xca,0xf9,0xb9,0xd9,0x20,0xf7,0x6e,0x6b,0x73,0xf3,0x9c,0x53,0x7d,
0x72,0x43,0x53,0xf8,0xd3,0x74,0x66,0x6e,0x6c,0x15,0x40,0xe3,0xd6,0x67,0xdf,0x9c,
0x50,0x1d,0x62,0x74,0x7e,0x94,0x9b,0xe5,0xc2,0x19,0xdf,0xe6,0xc5,0xb9,0x59,0x7e,
0x50,0x7d,0x62,0xc3,0x53,0xf8,0x53,0x75,0x61,0x6e,0x9a,0x93,0xab,0x43,0x0,0x4b,
0xf6,0xc3,0xdc,0x24,0x5f,0xab,0xe,0x31,0x4a,0x67,0x67,0xb7,0x9c,0x38,0xc3,0xdb,
0xfb,0x5c,0x76,0xcd,0xf,0xab,0x4f,0x6a,0x1e,0x14,0xfe,0x74,0xad,0xc9,0xa1,0x79,
0x56,0x75,0x8,0x60,0x49,0xde,0x9a,0x3d,0xfa,0x28,0xa1,0x25,0x59,0x9b,0xc3,0xf2,
0x92,0x19,0xdd,0xd6,0xcb,0x72,0xf0,0x60,0xaf,0xb,0x18,0x19,0xaf,0xd2,0x9f,0xba,
0xdb,0xe5,0x3,0xd9,0xb3,0x3a,0x4,0xb0,0x8,0x57,0xe4,0x1,0xf9,0xcf,0xea,0x10,
0xd,0x38,0x20,0x9f,0x5a,0xe6,0xa7,0xe8,0x5d,0x98,0x7b,0xe4,0xd4,0xea,0xd3,0x98,
0x1f,0xb,0x7f,0xea,0x4e,0xcd,0x4d,0xf3,0xe8,0x6c,0xa8,0x8e,0x1,0x2c,0xd0,0xcb,
0xb3,0x8d,0xba,0x5f,0x90,0x2f,0x67,0xe7,0x3c,0x76,0x19,0xf7,0x6e,0x8f,0xcb,0x8e,
0x3d,0xd5,0xbd,0xc2,0xef,0xc3,0x6b,0xb3,0x2a,0x8f,0xeb,0xe5,0x41,0x2b,0x68,0xd8,
0xcb,0xb3,0x6d,0x9e,0x94,0xf5,0xd5,0x31,0x1a,0xf2,0xea,0x6c,0x99,0xa7,0x2d,0xfa,
0xde,0x6d,0x6d,0x9e,0x9e,0x2d,0xf3,0xf,0xd5,0xe1,0x61,0x38,0xf7,0xcc,0x47,0xb3,
0xc1,0x97,0x2f,0x5f,0x23,0xfc,0xfa,0x4a,0x1e,0x9c,0x55,0xd5,0x77,0x11,0xd,0xbb,
0x6f,0x3e,0xbd,0xc0,0xef,0xf4,0x67,0x73,0xbf,0xea,0xb0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0xd0,0x9f,0xff,0xf,0x42,0xee,0xbc,0x7e,0x14,0xe6,0x8d,
0x6b,0x0,0x0,0x0,0x25,0x74,0x45,0x58,0x74,0x64,0x61,0x74,0x65,0x3a,0x63,0x72,
0x65,0x61,0x74,0x65,0x0,0x32,0x30,0x31,0x37,0x2d,0x30,0x36,0x2d,0x30,0x37,0x54,
0x32,0x32,0x3a,0x32,0x33,0x3a,0x32,0x33,0x2b,0x30,0x38,0x3a,0x30,0x30,0xfb,0x95,
0xd4,0xc2,0x0,0x0,0x0,0x25,0x74,0x45,0x58,0x74,0x64,0x61,0x74,0x65,0x3a,0x6d,
0x6f,0x64,0x69,0x66,0x79,0x0,0x32,0x30,0x31,0x37,0x2d,0x30,0x36,0x2d,0x30,0x37,
0x54,0x32,0x32,0x3a,0x32,0x33,0x3a,0x32,0x33,0x2b,0x30,0x38,0x3a,0x30,0x30,0x8a,
0xc8,0x6c,0x7e,0x0,0x0,0x0,0x4d,0x74,0x45,0x58,0x74,0x73,0x6f,0x66,0x74,0x77,
0x61,0x72,0x65,0x0,0x49,0x6d,0x61,0x67,0x65,0x4d,0x61,0x67,0x69,0x63,0x6b,0x20,
0x37,0x2e,0x30,0x2e,0x31,0x2d,0x36,0x20,0x51,0x31,0x36,0x20,0x78,0x38,0x36,0x5f,
0x36,0x34,0x20,0x32,0x30,0x31,0x36,0x2d,0x30,0x39,0x2d,0x31,0x37,0x20,0x68,0x74,
0x74,0x70,0x3a,0x2f,0x2f,0x77,0x77,0x77,0x2e,0x69,0x6d,0x61,0x67,0x65,0x6d,0x61,
0x67,0x69,0x63,0x6b,0x2e,0x6f,0x72,0x67,0xdd,0xd9,0xa5,0x4e,0x0,0x0,0x0,0x63,
0x74,0x45,0x58,0x74,0x73,0x76,0x67,0x3a,0x63,0x6f,0x6d,0x6d,0x65,0x6e,0x74,0x0,
0x20,0x47,0x65,0x6e,0x65,0x72,0x61,0x74,0x6f,0x72,0x3a,0x20,0x41,0x64,0x6f,0x62,
0x65,0x20,0x49,0x6c,0x6c,0x75,0x73,0x74,0x72,0x61,0x74,0x6f,0x72,0x20,0x31,0x39,
0x2e,0x30,0x2e,0x30,0x2c,0x20,0x53,0x56,0x47,0x20,0x45,0x78,0x70,0x6f,0x72,0x74,
0x20,0x50,0x6c,0x75,0x67,0x2d,0x49,0x6e,0x20,0x2e,0x20,0x53,0x56,0x47,0x20,0x56,
0x65,0x72,0x73,0x69,0x6f,0x6e,0x3a,0x20,0x36,0x2e,0x30,0x30,0x20,0x42,0x75,0x69,
0x6c,0x64,0x20,0x30,0x29,0x20,0x20,0xce,0x48,0x90,0xb,0x0,0x0,0x0,0x18,0x74,
0x45,0x58,0x74,0x54,0x68,0x75,0x6d,0x62,0x3a,0x3a,0x44,0x6f,0x63,0x75,0x6d,0x65,
0x6e,0x74,0x3a,0x3a,0x50,0x61,0x67,0x65,0x73,0x0,0x31,0xa7,0xff,0xbb,0x2f,0x0,
0x0,0x0,0x19,0x74,0x45,0x58,0x74,0x54,0x68,0x75,0x6d,0x62,0x3a,0x3a,0x49,0x6d,
0x61,0x67,0x65,0x3a,0x3a,0x48,0x65,0x69,0x67,0x68,0x74,0x0,0x31,0x30,0x31,0x36,
0x22,0x5,0xea,0x52,0x0,0x0,0x0,0x18,0x74,0x45,0x58,0x74,0x54,0x68,0x75,0x6d,
0x62,0x3a,0x3a,0x49,0x6d,0x61,0x67,0x65,0x3a,0x3a,0x57,0x69,0x64,0x74,0x68,0x0,
0x31,0x30,0x31,0x36,0x37,0x4c,0x36,0x4b,0x0,0x0,0x0,0x19,0x74,0x45,0x58,0x74,
0x54,0x68,0x75,0x6d,0x62,0x3a,0x3a,0x4d,0x69,0x6d,0x65,0x74,0x79,0x70,0x65,0x0,
0x69,0x6d,0x61,0x67,0x65,0x2f,0x70,0x6e,0x67,0x3f,0xb2,0x56,0x4e,0x0,0x0,0x0,
0x17,0x74,0x45,0x58,0x74,0x54,0x68,0x75,0x6d,0x62,0x3a,0x3a,0x4d,0x54,0x69,0x6d,
0x65,0x0,0x31,0x34,0x39,0x36,0x38,0x34,0x35,0x34,0x30,0x33,0xe0,0x6b,0x54,0xd,
0x0,0x0,0x0,0x12,0x74,0x45,0x58,0x74,0x54,0x68,0x75,0x6d,0x62,0x3a,0x3a,0x53,
0x69,0x7a,0x65,0x0,0x31,0x34,0x2e,0x35,0x4b,0x42,0x43,0x65,0x36,0x83,0x0,0x0,
0x0,0x5f,0x74,0x45,0x58,0x74,0x54,0x68,0x75,0x6d,0x62,0x3a,0x3a,0x55,0x52,0x49,
0x0,0x66,0x69,0x6c,0x65,0x3a,0x2f,0x2f,0x2f,0x68,0x6f,0x6d,0x65,0x2f,0x77,0x77,
0x77,0x72,0x6f,0x6f,0x74,0x2f,0x73,0x69,0x74,0x65,0x2f,0x77,0x77,0x77,0x2e,0x65,
0x61,0x73,0x79,0x69,0x63,0x6f,0x6e,0x2e,0x6e,0x65,0x74,0x2f,0x63,0x64,0x6e,0x2d,
0x69,0x6d,0x67,0x2e,0x65,0x61,0x73,0x79,0x69,0x63,0x6f,0x6e,0x2e,0x63,0x6e,0x2f,
0x73,0x72,0x63,0x2f,0x31,0x32,0x30,0x38,0x34,0x2f,0x31,0x32,0x30,0x38,0x34,0x38,
0x30,0x2e,0x70,0x6e,0x67,0x30,0xe,0xf5,0xbb,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,
0x44,0xae,0x42,0x60,0x82,
};
static const unsigned char qt_resource_name[] = {
// images
0x0,0x6,
0x7,0x3,0x7d,0xc3,
0x0,0x69,
0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x73,
// save.png
0x0,0x8,
0x8,0xc8,0x58,0x67,
0x0,0x73,
0x0,0x61,0x0,0x76,0x0,0x65,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67,
// file.png
0x0,0x8,
0x0,0x28,0x5a,0xe7,
0x0,0x66,
0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67,
};
static const unsigned char qt_resource_struct[] = {
// :
0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,
// :/images
0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,
// :/images/file.png
0x0,0x0,0x0,0x28,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x9,0xd0,
// :/images/save.png
0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,
};
#ifdef QT_NAMESPACE
# define QT_RCC_PREPEND_NAMESPACE(name) ::QT_NAMESPACE::name
# define QT_RCC_MANGLE_NAMESPACE0(x) x
# define QT_RCC_MANGLE_NAMESPACE1(a, b) a##_##b
# define QT_RCC_MANGLE_NAMESPACE2(a, b) QT_RCC_MANGLE_NAMESPACE1(a,b)
# define QT_RCC_MANGLE_NAMESPACE(name) QT_RCC_MANGLE_NAMESPACE2( \
QT_RCC_MANGLE_NAMESPACE0(name), QT_RCC_MANGLE_NAMESPACE0(QT_NAMESPACE))
#else
# define QT_RCC_PREPEND_NAMESPACE(name) name
# define QT_RCC_MANGLE_NAMESPACE(name) name
#endif
#ifdef QT_NAMESPACE
namespace QT_NAMESPACE {
#endif
bool qRegisterResourceData(int, const unsigned char *, const unsigned char *, const unsigned char *);
bool qUnregisterResourceData(int, const unsigned char *, const unsigned char *, const unsigned char *);
#ifdef QT_NAMESPACE
}
#endif
int QT_RCC_MANGLE_NAMESPACE(qInitResources_window)();
int QT_RCC_MANGLE_NAMESPACE(qInitResources_window)()
{
QT_RCC_PREPEND_NAMESPACE(qRegisterResourceData)
(0x01, qt_resource_struct, qt_resource_name, qt_resource_data);
return 1;
}
int QT_RCC_MANGLE_NAMESPACE(qCleanupResources_window)();
int QT_RCC_MANGLE_NAMESPACE(qCleanupResources_window)()
{
QT_RCC_PREPEND_NAMESPACE(qUnregisterResourceData)
(0x01, qt_resource_struct, qt_resource_name, qt_resource_data);
return 1;
}
namespace {
struct initializer {
initializer() { QT_RCC_MANGLE_NAMESPACE(qInitResources_window)(); }
~initializer() { QT_RCC_MANGLE_NAMESPACE(qCleanupResources_window)(); }
} dummy;
}
|
130632f024f4c64cc1a51ad98e4e8cc0fd9b4fdc
|
258026cd4d0555838516e3d0dde804f56cbbc0d5
|
/bakjun/15903.cpp
|
7d5d9a3cf662372122f5760764cbc4b67944950e
|
[] |
no_license
|
tksuns12/problem_solving_history
|
024a6484e8ead6d36f90a0befc6913e8d77fad74
|
4a083647a3f22aba6ff51b21ac9923da1ebeb7d9
|
refs/heads/master
| 2022-12-21T05:29:20.330387
| 2020-09-25T08:39:23
| 2020-09-25T08:39:23
| 267,203,134
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,016
|
cpp
|
15903.cpp
|
/*석환이는 아기다. 아기 석환이는 자연수가 쓰여져있는 카드를 갖고 다양한 놀이를 하며 노는 것을 좋아한다. 오늘 아기 석환이는 무슨 놀이를 하고 있을까? 바로 카드 합체 놀이이다!
아기 석환이는 자연수가 쓰여진 카드를 n장 갖고 있다. 처음에 i번 카드엔 ai가 쓰여있다. 카드 합체 놀이는 이 카드들을 합체하며 노는 놀이이다. 카드 합체는 다음과 같은 과정으로 이루어진다.
x번 카드와 y번 카드를 골라 그 두 장에 쓰여진 수를 더한 값을 계산한다. (x ≠ y)
계산한 값을 x번 카드와 y번 카드 두 장 모두에 덮어 쓴다.
이 카드 합체를 총 m번 하면 놀이가 끝난다. m번의 합체를 모두 끝낸 뒤, n장의 카드에 쓰여있는 수를 모두 더한 값이 이 놀이의 점수가 된다. 이 점수를 가장 작게 만드는 것이 놀이의 목표이다.
아기 석환이는 수학을 좋아하긴 하지만, 아직 아기이기 때문에 점수를 얼마나 작게 만들 수 있는지를 알 수는 없었다(어른 석환이는 당연히 쉽게 알 수 있다). 그래서 문제 해결 능력이 뛰어난 여러분에게 도움을 요청했다. 만들 수 있는 가장 작은 점수를 계산하는 프로그램을 만들어보자.*/
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(nullptr);
int n, m;
vector<long long> cards;
long long answer = 0;
cin >> n >> m;
for (int i = 0; i < n; ++i)
{
long long temp;
cin >> temp;
cards.push_back(temp);
}
while (m--)
{
sort(cards.begin(), cards.end());
long long merge = cards[0] + cards[1];
cards[0] = merge;
cards[1] = merge;
}
for (long long n:cards)
{
answer += n;
}
cout << answer;
}
/*우선순위큐를 사용했다면 더 빨리 풀 수 있었다.*/
|
ede303af2be365514c57f3b144bd888e7c4dcaf1
|
26f9fdff3c246e3a68ff9b0bb4f8f0a9a67bce1c
|
/dynamic_OWSC (copy)/1.1/p
|
5ede8965f61b78f3bf96d4f98f0b9717310da8e0
|
[] |
no_license
|
JBrakefield/My_olaFlow
|
6c0aaa0dda8d8e69c127281fc9484f3cded258ea
|
a812362928f2466f4e2632d2636dce97a0a3b9f6
|
refs/heads/master
| 2020-04-08T14:00:49.750205
| 2019-01-10T19:48:55
| 2019-01-10T19:48:55
| 159,418,163
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 123,200
|
p
|
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 5.x |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volScalarField;
location "1.1";
object p;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [1 -1 -2 0 0 0 0];
internalField nonuniform List<scalar>
12160
(
5347.94
5350
4693.9
5352.39
4695.88
4040.02
5355.85
4698.14
4042.18
3385.72
5361.64
4701.38
4043.97
3387.99
2732.04
5369.16
4707.07
4046.8
3389.21
2734.93
2077.22
5377.35
4714.97
4052.55
3391.27
2734.83
2081.21
1423.7
5382.87
4723.71
4060.93
3396.54
2735.66
2079.82
1429.58
767.645
5382.86
4729.84
4070.8
3406.09
2741.16
2078.85
1425.06
777.273
227.331
5375.24
4729.85
4078.16
3417.82
2751.5
2082.27
1421.54
771.189
235.059
3.98365
5359.59
4722.76
4080.09
3427.13
2765.84
2095.13
1425.27
765.227
232.072
4.333
-6.72445
5336.57
4707.13
4072.63
3429.1
2778.02
2113.31
1438.98
767.917
227.701
6.59866
-6.83888
-7.48507
5307.96
4683.84
4056.59
3423.37
2784.41
2129.24
1461.93
782.548
231.106
7.61274
-6.78659
-7.50777
-8.19789
5275.86
4654.81
4032.6
3407.29
2777.5
2133.71
1483.62
810.771
245.086
10.2625
-6.73958
-7.49822
-8.16642
-8.81022
5242.35
4622.22
4002.62
3382.36
2760.6
2132.5
1497.42
838.327
269.662
15.0119
-6.65131
-7.47626
-8.15061
-8.82121
-9.49599
5209.23
4588.25
3969.03
3351
2734.14
2115.39
1491.43
855.404
296.206
22.9095
-6.55457
-7.45774
-8.14069
-8.81563
-9.48353
5177.98
4554.74
3934.11
3315.91
2700.77
2087.05
1472.88
852.289
314.141
32.919
-6.38903
-7.47319
-8.1325
-8.81004
-9.47967
5149.67
4523.18
3899.8
3279.59
2663.58
2051.02
1441.86
833.353
314.606
40.6108
-6.07621
-7.5247
-8.14729
-8.8055
-9.47861
5125.04
4494.62
3867.59
3244.1
2625.33
2011.03
1402.46
799.526
299.871
42.0282
-5.64056
-7.6019
-8.18496
-8.81503
-9.4793
5104.55
4469.82
3838.54
3210.95
2588.23
1970.24
1359.08
755.37
272.492
37.8902
-5.46167
-7.66208
-8.24272
-8.8364
-9.48449
5088.44
4449.2
3813.38
3181.2
2553.82
1931.03
1315.35
707.326
239.758
29.5473
-5.56872
-7.67796
-8.28795
-8.86777
-9.49261
5076.8
4433.01
3792.52
3155.53
2523.14
1894.98
1273.86
659.763
206.199
20.711
-5.99867
-7.68432
-8.31182
-8.89142
-9.5013
5069.61
4421.31
3776.15
3134.32
2496.8
1863.07
1236.13
615.018
174.734
13.05
-6.37497
-7.63613
-8.29551
-8.89685
-9.50671
5066.75
4414.07
3764.34
3117.71
2475.12
1835.86
1203.09
574.632
146.804
7.0343
-6.59026
-7.58077
-8.25928
-8.8985
-9.51483
5068.09
4411.2
3757.02
3105.74
2458.2
1813.59
1175.15
539.506
122.955
2.62994
-6.69112
-7.53623
-8.21852
-8.87848
-9.50602
5073.45
4412.52
3754.09
3098.32
2446.02
1796.27
1152.44
510.001
103.199
-0.406166
-6.74005
-7.50274
-8.18498
-8.85537
-9.49913
5082.61
4417.87
3755.38
3095.31
2438.45
1783.82
1134.86
486.137
87.2497
-2.39307
-6.76468
-7.47917
-8.16204
-8.83564
-9.49182
5095.32
4427.04
3760.72
3096.56
2435.34
1776.07
1122.25
467.749
74.7429
-3.64625
-6.77488
-7.46553
-8.14675
-8.82182
-9.48545
5111.29
4439.78
3769.91
3101.88
2436.53
1772.84
1114.39
454.58
65.3214
-4.4067
-6.77884
-7.45841
-8.13693
-8.81248
-9.48081
5130.2
4455.81
3782.71
3111.09
2441.83
1773.94
1111.07
446.345
58.6743
-4.85361
-6.77913
-7.45417
-8.13153
-8.80656
-9.47764
5151.65
4474.8
3798.84
3123.95
2451.06
1779.19
1112.07
442.784
54.5501
-5.10712
-6.77797
-7.45129
-8.12824
-8.80317
-9.47563
5175.19
4496.37
3818
3140.22
2464.01
1788.44
1117.24
443.639
52.7622
-5.23918
-6.77665
-7.44938
-8.12588
-8.80112
-9.47444
5200.32
4520.07
3839.81
3159.61
2480.47
1801.5
1126.42
448.776
53.1476
-5.28959
-6.77573
-7.44815
-8.12412
-8.79967
-9.47373
5226.47
4545.41
3863.85
3181.76
2500.16
1818.17
1139.47
458.062
55.6514
-5.27511
-6.77548
-7.44731
-8.12298
-8.79862
-9.47324
5253.03
4571.82
3889.62
3206.27
2522.76
1838.24
1156.23
471.393
60.2324
-5.19499
-6.77457
-7.44687
-8.12224
-8.79793
-9.4729
5279.38
4598.7
3916.56
3232.66
2547.89
1861.42
1176.51
488.662
66.8874
-5.03609
-6.77336
-7.44619
-8.12183
-8.79747
-9.47269
5304.85
4625.4
3944.07
3260.37
2575.1
1887.35
1200.11
509.733
75.6475
-4.767
-6.77266
-7.44542
-8.12135
-8.79719
-9.47255
5328.82
4651.26
3971.49
3288.8
2603.84
1915.61
1226.72
534.419
86.5648
-4.33737
-6.77197
-7.44491
-8.12086
-8.7969
-9.47245
5350.68
4675.62
3998.14
3317.28
2633.51
1945.69
1255.97
562.459
99.6987
-3.6736
-6.77081
-7.44461
-8.12061
-8.79664
-9.47236
5369.94
4697.88
4023.33
3345.11
2663.43
1976.97
1287.38
593.492
115.1
-2.68113
-6.7683
-7.44472
-8.12061
-8.79651
-9.47227
4717.5
5396.78
4046.41
3371.53
2692.86
2008.77
1320.35
627.037
132.794
-1.2495
-6.76303
-7.44536
-8.12099
-8.79651
-9.4722
4066.81
4744.87
5415.75
3395.85
2720.99
2040.3
1354.23
662.478
152.729
0.749541
-6.75348
-7.44674
-8.12175
-8.79673
-9.47219
3417.41
4095.44
4764.32
5413.7
2747.04
2070.68
1388.19
699.117
174.75
3.44897
-6.73774
-7.44964
-8.12301
-8.79722
-9.47227
2770.26
3447.78
4116.42
4762.44
5393.92
2099.01
1421.25
736.184
198.582
6.95911
-6.70928
-7.45506
-8.12535
-8.79807
-9.47243
2124.38
2803.14
3469.96
4114.27
4742.44
5365.93
1452.4
772.8
223.807
11.3652
-6.665
-7.46586
-8.12968
-8.79962
-9.47274
1480.49
2160.32
2828.03
3468.76
4093.76
4712.78
5313.71
807.824
249.794
16.7124
-6.59281
-7.48187
-8.1373
-8.80237
-9.4733
839.593
1520.25
2187.84
2826.97
3447.65
4061.96
4659.74
5279.59
275.616
22.9542
-6.46597
-7.50228
-8.14772
-8.80693
-9.47426
300.002
883.518
1551.7
2187.75
2804.45
3413.31
4009.75
4627.32
5203.5
29.9269
-6.25326
-7.52836
-8.16188
-8.81337
-9.47582
37.3744
335.323
918.421
1553.41
2163.79
2767.05
3362.86
3974.8
4525.1
5096.1
-5.94153
-7.56112
-8.182
-8.82215
-9.47804
-5.535
48.7973
365.442
921.814
1527.17
2123.37
2717.99
3322.89
3876.84
4425.5
4995.34
-7.60001
-8.20732
-8.8342
-9.48105
-7.64501
-4.81105
59.2757
367.011
892.992
1482.48
2073.79
2673.57
3245.55
3805.21
4290.31
5019.93
-8.23699
-8.84907
-9.48509
-8.26905
-7.69628
-4.1812
58.5453
341.395
844.486
1429.35
2026.6
2616.57
3193.55
3662.39
4328.23
4915.56
5617.81
-8.86617
-9.48993
-8.8837
-8.31124
-7.72623
-4.54329
46.3854
300.531
788.427
1379.73
1981.04
2581.78
3118.32
3738.6
4316.29
4820.21
5520.09
6210.55
-9.49553
-9.50095
-8.90794
-8.36259
-7.72865
-5.49544
30.1363
259.523
736.94
1337.91
1960.11
2563.92
3188.77
3741.47
4254.35
4647.17
5398.16
6138.17
6851.01
-9.50861
-8.9145
-8.34198
-7.68255
-6.17902
17.4134
224.223
696.545
1322.86
1965.87
2600.21
3168.2
3697.73
4115.44
4394.33
5200.28
6011.57
6791.95
7536.62
-9.51605
-8.92523
-8.30799
-7.61399
-6.48115
9.40338
198.824
680.507
1327.5
1977.79
2572.95
3129.71
3580.76
3913.66
3977.91
4876.1
5799.98
6668.51
7484.74
8263.33
-9.51758
-8.90883
-8.25615
-7.54905
-6.61692
4.61612
186.607
673.734
1337.43
1942.25
2529.33
3021.24
3411.07
3623.1
3423.79
4354.78
5441.63
6462.83
7373.47
8215.71
9021.02
-9.51844
-8.88295
-8.20777
-7.5078
-6.69081
1.99732
179.11
683.977
1292.88
1897.74
2434.07
2877.85
3197.59
3206.62
2272.08
3668.08
2275.52
2275.32
2278.77
4880.88
6119.81
7187.68
8120.62
8981.47
9805.59
-9.51561
-8.8574
-8.1763
-7.48489
-6.72119
0.10379
180.314
638.321
1253.23
1816.97
2310.34
2703.68
2923.83
2753.1
2322.98
1989.24
4172.55
2328.38
2438.4
2440.65
1991.11
1998.2
1998.91
5608.82
6900.08
7965.01
8898.46
9770.11
10609.3
-9.50988
-8.83992
-8.15817
-7.46714
-6.73793
-1.10791
158.409
608.484
1179.41
1706.14
2157.58
2503.77
2588.63
1844.96
1842.39
1843.88
1845.63
1998.53
1663.67
5012.57
3372.69
2001.6
2088.07
2089.43
1659.25
1772.6
1766.72
6482.28
7736.22
8767.86
9696.64
10576.2
11420.4
-9.50446
-8.82962
-8.14572
-7.45759
-6.75337
-2.25085
142.968
542.13
1079.42
1572.06
1972.31
2273.14
1796.07
1797.64
1743.38
1744.57
1655.06
1651.13
1688.86
1683.59
1646.57
1351.68
1188.57
1275.73
1271.85
6078.95
4496.3
2520.32
2515.65
2002.4
2017.11
1644.26
1771.78
1776.43
1351.5
1189.15
1275.6
1278.34
1427.52
1317.87
1493.77
1298.89
1425.53
1314.66
1489.32
1297.18
7440.57
8587.78
9581.09
10508.7
11390.3
12236.3
-9.50125
-8.8228
-8.13866
-7.46472
-6.75704
-3.468
114.265
459.145
963.554
1406.21
1780.22
1639.74
1639.58
1514.34
1512.51
1665.31
1659.22
1630.63
1621.7
1320.99
1318.77
1332.82
1292.24
1356.78
1343.66
1306.75
1323.4
1332.99
1288.39
1353.8
1339.95
1342.92
1417.48
1327.56
1397.03
1338.26
1415.31
1322.97
1394.15
1345.19
1184.13
1275.18
1282.24
1245.79
1183.27
1190.77
1238.83
7206.17
5820.07
3587.37
3570.05
3056.99
3036.78
2432.16
2432.89
1917.38
1927.06
1348.29
1181.89
1275.95
1285.84
1443.1
1409.64
1570.04
1309.28
1446.43
1421.39
1574.71
1317.43
1247.7
1195.13
1194.57
1247.34
1303.2
1257.62
1300.63
1247.04
8374.82
9430.43
10404
11328
12206.7
13051
-9.49986
-8.81896
-8.13707
-7.46987
-6.75457
-4.56846
79.9832
375.923
820.956
1223.21
1315.85
1313.7
1145.43
1145.12
1536.28
1528.04
1415.36
1404.05
1325.73
1397.06
1277.27
1352.88
1322.77
1395.34
1280.43
1352.01
1284.43
1370.18
1286.4
1362.14
1283.91
1369.29
1288.83
1361.6
1311.44
1299.8
1276.18
1310.51
1301.36
1285.83
1304.91
1303.45
1309.56
1280.38
1299.45
1284.02
1337.07
1327.56
1333.96
1318.78
1336.67
1327.18
1331.29
1316.99
1305.7
1161.62
1228.74
1240.93
1269.06
1188.68
1228.47
1213.8
8252.19
7142.49
4622.69
4604.1
4113.02
4094.69
3600.14
3579.38
3013.05
2996.53
2076.63
2338.75
1875.89
2076.82
2084.87
2338.39
1891.42
2081.19
1515.68
1346.94
1530.16
1731.05
1898.57
1476.19
1540.28
1361.73
1539.5
1756.56
1913.13
1481.37
1309.96
1167.6
1232.43
1246.28
1401.82
1293.35
1404.29
1300.02
1269.18
1201.07
1231.37
1214.79
1291.73
1242.89
1291.4
1237.51
9266.56
10267.2
11231.9
12146.3
13023.2
13854.8
-9.49988
-8.81834
-8.13542
-7.46125
-6.75302
-5.21337
45.9363
284.738
657.179
931.036
932.138
705.28
706.054
1239.17
1232.82
1043.61
1041.48
1225.93
1324.85
1142.24
1249.27
1224.93
1323.72
1141.12
1248.41
1055.06
1202.85
1081.04
1197.65
1053.49
1200.24
1079.27
1196.53
1326.73
1305.72
1308.21
1259.71
1324.46
1305.51
1309.57
1261.99
1272.44
1227.73
1289.65
1230.54
1274.55
1229.58
1291.7
1233.23
1357.4
1181.66
1270.17
1250.89
9199.54
8235.59
5590.65
5578.91
5132.61
5116.91
4631.57
4610.39
4144.56
4121.66
2995.29
3300.09
2732
3046.4
3006.77
3300.31
2739.53
3046.32
2277.2
2568.54
2492.3
2802.08
2280.11
2567.11
2499.68
2801.57
2129.4
2299.63
1930.2
2077.93
2135
2300.56
1941.61
2086.22
1383.82
1545.38
1635.7
1472.41
1737.37
1861.86
1396.16
1562.69
1638.53
1480.1
1751.62
1872.86
1360.13
1190.56
1273.44
1254.83
1425.06
1310.58
1428.41
1317
10120.9
11105.7
12053.3
12964.5
13829.2
14638.3
-9.49984
-8.81765
-8.12744
-7.43837
-6.72376
-5.49444
18.6124
202.949
464.184
831.781
832.207
605.269
606.193
1122.74
1118.77
953.944
950.349
1217.49
1189.7
1152.18
1140.08
1217.01
1191.07
1150.92
1141.32
1044.65
1080.82
1080.72
1103.48
1045.09
1080.77
1080.4
1104.51
1216.55
1199.36
1222.54
1202.37
10047.8
9188.74
6504.42
6519.97
6060.69
6049.84
5593.73
5570.8
5126.43
5102.39
3867.85
4424.38
3714.93
4172.15
3869.07
4422.65
3720.39
4165.99
3257.26
3579.15
3489.5
3863.01
3267.17
3576.54
3504.02
3859.41
3053.29
3166.12
2802.75
2934.36
3056.68
3165.33
2797.43
2931.59
2345.22
2511.77
2562.83
2715.03
2343.75
2510.04
2560.85
2713.46
10967.5
11932.4
12870.9
13774.2
14617.5
15384.9
-9.49938
-8.81278
-8.11544
-7.39918
-6.72712
-5.57767
3.41838
122.306
326.04
325.524
171.363
171.794
750.947
748.492
526.196
525.73
880.465
943.09
937.955
838.085
879.061
941.709
938.334
835.966
822.56
683.025
754.843
757.629
820.793
683.345
754.196
755.061
1173.91
1160.56
1123.02
1127.5
1177.29
1163.61
1125.15
1130.24
1023.64
1010.36
1040.63
1072.77
1027.84
1011.58
1042.81
1074.38
10867.9
10036.7
9237.89
6457.7
6456.17
6043.56
6021.83
5520.44
5490.74
5103.84
5091.89
3902.71
4333.47
3767.13
4048.64
3898.56
4329.51
3772.06
4046.55
3314.01
3449.75
3559.62
3747.39
3321.31
3446.58
3565.98
3742.92
3144.15
3169.45
3155.32
3168.04
11800.5
12744.7
13682.6
14570.8
15369.2
16088
-9.49753
-8.80392
-8.09576
-7.339
-6.74672
-5.63716
-2.70564
40.9542
231.177
230.237
99.1694
99.1365
595.998
669.529
596.299
500.86
599.357
669.077
594.126
503.519
436.891
434.747
796.344
911.579
877.255
817.974
795.472
912.035
876.79
815.87
735.813
662.937
669.203
749.954
734.424
658.821
668.711
745.254
977.437
957.98
981.394
958.7
11705.4
10862.9
10114
7376.49
7372.28
6925.83
6908.81
6440.33
6412.85
5912.18
5867.28
4930.64
4686.54
5140.71
4497.98
4926.81
4692.85
5134.91
4497.48
4713.41
4095.54
4498.73
4283.27
4711.82
4099.77
4501.61
4282.08
3968.61
4210.91
3801.37
3966.65
3980.57
4216.16
3804
3969.26
3348.87
3411.66
3586.67
3691.44
3357.53
3408.68
3589.64
3687.98
12602.2
13550
14486.2
15334.6
16075.1
-9.49451
-8.78898
-8.07975
-7.2759
-6.7235
-5.687
-5.50969
7.3054
7.33053
-0.350565
-0.355026
175.023
196.393
102.471
121.009
175.882
196.575
103.226
120.797
51.0151
51.2006
563.537
583.587
497.469
461.45
563.39
583.667
497.327
462.989
257.416
280.22
345.496
361.924
258.994
280.464
345.288
361.595
709.161
617.624
635.917
698.048
708.562
616.963
635.462
696.394
12497.3
11704.1
10979.4
10306
7293.81
7267.32
6742.61
6711.71
6330.71
6289.41
4908.6
5479.51
5472.68
4937.69
4911.16
5470.09
5459.06
4925.01
4757.29
4729.33
5006.76
4495.76
4759.47
4729.12
5005.51
4500.21
4550.55
4135.17
4360.46
4300.6
4551.4
4142.89
4361.04
4299.8
3998.92
4174.81
4019.37
4179.43
13389.1
14346.3
15273.7
16047.1
-9.48833
-8.77042
-8.07055
-7.23545
-6.63596
-6.01706
-2.79877
-2.81295
-3.55547
-3.57232
1.1838
1.16374
-1.9737
-1.99746
139.38
138.125
75.5665
75.3596
139.709
138.581
75.8164
75.5192
14.4712
10.8282
8.29318
19.426
14.564
10.8483
8.33845
19.4808
514.478
535.447
441.2
430.733
514.453
535.662
441.04
430.804
221.071
221.914
303.563
300.914
221.692
222.791
303.226
301.308
13255
12501.1
11815.7
11140.5
8027.28
7998.13
7562.75
7541.16
6947.11
6941.05
5581.13
6124.04
5544.04
6163.71
5569.92
6106.38
5560.37
6166.49
5383.44
5862.51
5226.55
5675.89
5039.98
5586.83
5393.1
5855.84
5228.31
5671.35
5032.11
5583.89
4944.64
5344.73
4935.41
5339.21
4637.79
4652.48
4792.67
4513.12
4637.73
4657.31
4792.78
4510.6
14163
15173.5
15997.1
-9.48244
-8.73889
-8.0545
-7.2336
-6.56548
-5.80714
-2.47117
-2.48904
-3.01798
-3.04447
0.132754
2.91876
0.391061
-0.505742
-0.582748
2.08802
2.91957
0.123866
2.085
0.382965
-0.540531
-0.598368
-1.22259
-1.47881
-0.877653
-1.0602
-1.25757
-1.49177
-0.915608
-1.07395
102.009
94.5372
50.4643
44.8358
102.374
94.9911
50.655
45.1345
5.83022
8.50638
5.84721
8.51832
395.093
385.045
394.672
385.207
175.057
179.017
175.817
179.791
13992.9
13252.1
12596.9
11941.4
8780.83
8763.75
8400.78
8361.33
7832.64
7815.82
7316.57
7308.28
6528.2
5833.54
6541.66
5859.67
6281.79
5661.54
6538.79
5884.42
6533.26
5878.57
6279.26
5662.36
5617.55
6087.2
5620.03
6090.51
5474.94
5791.98
5316.67
5046.27
5570.83
5347.52
5474.22
5793.79
5297.04
5043.02
5565.86
5344.29
4840.95
5049.06
4829.34
5045.76
14994.3
15909.5
-9.4792
-8.70922
-8.03089
-7.23467
-6.32674
-3.44868
-3.45152
-4.25405
-4.24548
-2.25674
-2.26087
-2.60837
-2.63546
2.03259
-0.32029
-0.405329
1.69508
-0.53622
-0.625467
2.03743
-0.328958
1.68409
-0.408766
-0.554565
-0.633575
-1.11501
-1.22971
-0.753736
-0.858995
-1.15092
-1.25238
-0.77668
-0.869614
29.2386
19.4381
29.3169
19.5555
14775.9
13948
13336.2
12722.4
12078.9
8694.65
8643.62
8371.67
8329.69
6446.02
7116.34
6473.65
7108.66
6475.83
7099.65
6459.7
7069.5
5975.93
5897.67
6547.11
6207.92
6789.64
6559.36
6031.31
5940.61
6566.9
6238.23
6783.65
6583.07
6348.43
6069.79
5873.66
5710.3
6362.25
6076.16
5870.63
5702.67
5551.62
5824.86
5558.82
5838.65
5422.83
5629.65
5113.51
5324.85
5455.95
5638.08
5091.76
5320.7
15742
-9.47823
-8.68783
-7.97869
-7.18817
-6.31847
-3.51094
-3.42389
-4.20954
-4.18081
-1.94512
-1.35995
-1.48891
-1.77678
-1.95736
-1.41815
-1.51653
-1.81105
-2.58146
-2.53162
-1.03796
-1.09504
-0.782945
-0.865561
-1.0827
-1.1213
-0.796678
-0.872088
15537.5
14678.4
14022.5
13471.8
12883.5
9501.49
9509.46
9067.51
9065.38
8698.66
8706.48
8022.4
8037.94
6608.56
7274.74
6692.88
7257.69
6633.96
7288.75
6663.07
7254.91
5939.5
6138.47
6311.38
6580.31
6461.16
6922.75
6007.96
6178.65
6599.39
6344.7
6460.81
6926.3
6052.82
5714.87
6056.15
5682.9
-9.47343
-8.68136
-7.93289
-7.11014
-4.67068
-4.68043
-5.02066
-5.0443
-3.61845
-3.48409
-4.20912
-4.16107
-1.73924
-1.19099
-1.31136
-1.58386
-1.74366
-1.25415
-1.34429
-1.60059
-2.37973
-2.56484
-1.81085
-1.9779
-2.24998
-2.49606
-1.80432
-1.95619
-0.920466
-0.98943
-0.983117
-1.02456
15442.9
14738.1
14173.1
13637.6
12953.5
9248.96
9335.97
9043.32
9029.77
8445.2
8434.11
7531.48
6861.56
7589.89
6804.15
7512.68
6883.38
7576.81
6812.8
6665.91
7079.97
6608.17
6956.5
6717.55
7104.9
6628.39
6970.16
-9.45769
-8.67765
-7.91058
-7.07149
-4.90862
-4.93054
-4.98276
-5.01033
-2.43792
-2.58555
-3.81134
-3.1054
-3.27201
-3.52579
-2.21279
-2.48736
-3.72052
-2.89914
-3.15148
-3.37019
-4.64882
-4.61367
-1.55327
-1.18969
-1.28284
-1.45337
-1.56748
-1.24958
-1.3194
-1.48332
-1.80148
-1.99062
-1.7569
-1.95656
15484.4
14886.8
14326.8
13808.4
10163.6
10145.7
9715.15
9715.08
9323.53
9316.33
9013.18
8915.29
7199.6
8002.54
7170.29
7933.55
6920.73
7676.45
7207.96
7971.1
7148.66
7920.59
6883.44
7659.65
6851.14
7418.63
6838.37
7429.02
6603.94
7026.53
6623.78
7036.54
-9.44042
-8.66702
-7.87357
-4.99931
-5.00083
-5.50814
-5.51249
-4.68455
-4.74479
-4.72723
-4.75129
-2.67223
-2.77282
-3.68002
-3.09912
-3.28773
-3.35305
-2.45894
-2.66869
-3.6029
-2.90554
-3.18175
-3.23531
-3.73779
-4.13143
-3.61181
-3.78938
-3.79947
-4.15434
-3.58309
-3.77635
15597.6
15051.2
14521.7
13889.4
10168.4
10125.1
9781.68
9752.12
9240.91
9174.87
7272.08
8144.21
8251.98
7405.19
8154.18
7495.23
8209.4
7358.21
8114.5
7438.16
7294.32
8152.68
7185.21
6978.88
7828.59
7436.92
7145.08
6953.66
7830.2
7436.82
6815.86
7197.8
6845.03
7207.76
-9.43445
-8.65285
-7.84824
-4.94688
-4.93958
-5.42111
-5.40807
-3.4974
-3.79911
-3.92677
-3.51116
-3.67989
-3.53473
-3.57339
-3.83531
-3.96315
-3.59723
-3.71391
-3.62321
-4.62832
-4.63649
-3.61259
-3.49452
-3.57412
-3.41387
-3.48
-3.61589
-3.52822
-3.63127
15764.6
15243.4
14747.3
10938.2
10932.3
10512.7
10498.9
10260.3
10229.7
9620.45
9579.52
7756.13
8511.69
7699.99
8354.97
7620.11
8471.5
7754.05
7583.08
8447.99
8486.5
7717.77
8350.1
7322.08
7847.26
7572.03
8271.34
7563.12
7341.67
8286.29
7856.49
-9.42884
-8.65421
-7.8843
-5.00527
-4.96992
-5.41954
-5.39872
-3.43866
-3.53173
-3.80396
-3.31849
-3.5011
-3.46844
-3.53168
-3.57008
-3.83335
-3.39979
-3.52899
-3.52987
-3.93687
-4.28492
-3.60369
-3.89451
-3.88802
-4.27051
-3.69428
-3.91309
-3.407
-3.54385
-3.48265
-3.56162
15974.5
15487.8
14953.5
10976.3
10945.1
10583.1
10555.4
9907.42
9903.32
7895.63
8709.87
8684.46
8038.2
8591.41
8009.47
7895.69
8688.44
8659.91
8035.96
8579.11
7994.65
7843.57
7649.81
8583.84
8120.35
7662.24
8136.25
7850.44
8587.17
-9.43931
-8.68477
-5.84817
-5.38221
-5.36362
-5.8478
-6.25948
-6.27075
-4.99896
-3.87922
-4.18773
-4.97846
-3.81371
-4.17134
-3.31912
-3.43027
-3.5762
-3.32663
-3.47372
-3.43169
-3.42521
-3.46511
-3.6126
-3.4115
-3.50738
-3.51195
-3.57906
-3.83247
-3.60035
-3.82487
16221.4
15752.2
15232.7
11070.6
11047
10427.5
10450.9
8267.75
8979.32
8316.84
8932.06
8135.86
8808.53
8308.48
8140.94
8786.07
8978.76
8320.14
8945.26
7993.14
8431.23
8173.64
8802.75
8016.3
8440.23
8162.99
8783.15
7832.04
8339.71
7843.95
8347.47
-9.45427
-8.76034
-5.50973
-5.86376
-5.48754
-5.86626
-6.28524
-6.29777
-4.05432
-3.8871
-4.12555
-3.934
-4.17064
-4.36969
-4.36615
-4.73226
-3.82087
-4.09246
-4.10544
-3.88595
-4.15494
-4.37209
-4.34896
-4.7177
-3.59811
-3.4731
-3.59473
-3.49326
-3.69108
-3.87965
-3.66507
-3.86013
16477.6
15975.5
11848.4
11013.3
10990.6
11832.5
11347.2
11345.3
10183.6
8448.95
9186.46
10181.3
8488.53
9197.88
8351.71
8617.31
8710.99
9250.77
8333.36
8697.46
8601.25
9246.78
8017.19
8433.25
8145.19
8522.63
8039.59
8430.56
8143.22
8501.8
-9.56302
-8.86093
-5.52389
-4.657
-4.29938
-5.99862
-5.52566
-4.65731
-4.31043
-5.99381
-6.36187
-6.35925
-3.98763
-4.01678
-3.67284
-3.9018
-4.14762
-4.33564
-3.97206
-3.63154
-4.02925
-3.8955
-4.1387
-4.33982
-3.70298
-3.56897
-3.67639
-3.54711
16689.4
16113
11881.6
10721.7
10753.5
11846.4
11407.6
11386.7
8555.94
8326.39
8991.41
8433.38
9069.4
9195.11
8529.26
9262.31
8572.05
8406.35
9013.98
8477.78
9083.3
9173.57
8586.13
9281.1
8544.26
8529.97
8871.85
9147.03
8454.23
8847.14
8532.85
9140.6
-9.47332
-6.71344
-6.36868
-6.35686
-6.70755
-6.88415
-6.89084
-4.79922
-4.72493
-4.27568
-4.62507
-4.42267
-5.18494
-4.57349
-4.83988
-6.09036
-4.77097
-5.1347
-4.807
-4.71662
-4.31064
-4.63453
-4.41076
-5.18524
-4.60385
-4.84744
-6.08551
-4.78047
-5.14057
-3.96648
-4.1544
-4.1954
-4.41362
-3.96716
-4.14748
-4.19298
-4.41197
16882.1
16280.6
11895.3
10654.8
9416.7
8679.94
10680.3
9389.84
8684.84
11850
11197.3
11217.8
8519
8779.36
8389.98
8927.9
9021.22
9468.9
8555.26
8727.69
8441.39
9048.46
8936.75
9453.8
8504.98
8917.48
8476.35
8909.64
-9.84885
-6.47001
-6.69738
-6.45257
-6.69376
-6.84055
-6.84814
-4.13772
-4.47038
-4.65204
-4.4124
-4.55303
-4.82622
-5.12167
-4.86879
-5.17756
-4.7916
-5.14446
-5.36397
-5.26837
-5.68774
-4.15034
-4.48796
-4.41771
-4.65938
-4.5873
-4.8389
-4.89061
-5.13672
-5.18752
-4.81747
-5.15567
-5.36965
-5.26855
-5.68572
17098.3
12397.8
11833
11800.5
12428.8
12040.3
12049.1
8869.87
9350.45
8789.92
9494.06
8708.28
9669.25
8939.97
9645.24
8921.96
9359.99
8821.7
9499.55
8724.8
9658.67
8964.8
9653.99
10910.3
9038.24
9816.81
10901.9
9089.96
9827.24
8640.48
8783.85
9110.19
9392.41
8637.7
8709.57
9137.98
9374.36
-9.80559
-6.57538
-5.6558
-5.33706
-6.74406
-6.55294
-5.65203
-5.33022
-6.73951
-6.95497
-6.96245
-4.48171
-4.68772
-4.6342
-4.87137
-4.99492
-5.22398
-4.76328
-4.98279
-5.12626
-5.34476
-4.50255
-4.69526
-4.66449
-4.88544
-5.02436
-4.7903
-5.22753
-4.99346
-5.13718
-5.34656
16956.4
12369.3
11728.1
11709.1
12404.9
12050.8
12043.2
8759.45
8939.11
9282.67
9404.41
9168.2
9794.74
8768.13
8986.67
9292.01
9423.38
9146.48
9776.68
9084.1
9076.11
9711.58
8999.84
9650.44
9632.75
9270.24
10024
9071.96
9044.39
9706.73
9024.22
9670.7
9626.77
9304.47
10025.4
-13.254
-7.22577
-7.23323
-6.63654
-5.67801
-5.4181
-5.73334
-5.36811
-6.81521
-6.62041
-5.67375
-5.41291
-5.72951
-5.36249
-6.80942
-4.89383
-5.08588
-5.257
-5.03547
-5.16328
-5.37357
-4.92154
-5.10746
-5.25868
-5.04567
-5.1711
-5.37475
17086.9
12411.8
11714
9846.59
9251.91
11695.2
9858.27
9254.53
12437.8
12124.4
12101.5
8987.98
9428.33
9108.8
9655.85
8985.25
9425.7
9074.68
9635.51
9209.82
9322.99
9058.42
9588.88
9531.51
9771.6
9216.84
9217.73
8980.89
9529.8
9576.11
9678.34
-12.9467
-8.34005
-9.22803
-8.34417
-9.23349
-6.70493
-5.86795
-5.45168
-5.78003
-5.5601
-5.31687
-5.44255
-7.01701
-6.69035
-5.8673
-5.45454
-5.77809
-5.56277
-5.32337
-5.44508
-7.0035
-5.14406
-5.21694
-5.16582
-5.22385
17143.5
12396.7
12417.2
11776.9
9716.12
9277.65
9655.96
9308.58
11748.9
9728.41
9297.49
9668.27
9315.24
12052.8
12025.3
9363.08
9082.16
9404.75
9703.86
9387.16
9778.57
9310.4
9031.89
9323.37
9380.87
9611.03
9712.01
-10.1845
-8.35517
-7.61554
-8.35811
-7.62242
-6.77699
-6.77184
-6.61276
-5.79918
-5.38252
-5.68571
-5.55245
-5.69531
-5.40482
-5.54894
-5.53697
-5.21784
-5.30111
-6.59939
-5.79828
-5.39141
-5.68608
-5.55566
-5.70061
-5.41752
-5.55289
-5.55323
-5.23742
-5.30737
17147.4
12405.2
12428.8
12414.9
12435.3
11635.2
9591.21
9293.41
9656
9262.32
9413.38
9773.25
11594.1
9587.41
9294.68
9656.68
9262.97
9376.64
9745.44
12110.3
12086.4
9366.55
9775.54
9373.89
9732.57
-9.8622
-6.95963
-6.95705
-6.96728
-6.9681
-6.63566
-6.73139
-6.62731
-6.72341
-6.51919
-6.51073
-5.47397
-5.19326
-5.5981
-5.05343
-5.62527
-5.32102
-5.59863
-5.41259
-5.83322
-5.36242
-5.47342
-5.61784
-5.47191
-5.2071
-5.59933
-5.05426
-5.62882
-5.32793
-5.59934
-5.42244
-5.83794
-5.37901
-5.4786
-5.63254
17079.6
12428.9
12418.7
12434.1
12421.9
12157.9
12125.5
11527.3
9560.71
9135.11
9643.61
9196.83
9640.47
9393.97
9737.97
9355.83
9405.52
9813.56
11493.7
9551.11
9167.16
9625.06
9203.2
9614.66
9362.94
9716.49
9321.03
9437.63
9774.03
-9.57833
-6.88702
-6.80337
-6.89794
-6.81631
-6.65389
-6.5671
-6.64847
-6.55989
-6.36006
-6.61049
-6.34867
-6.5974
-5.22117
-4.61798
-5.13146
-4.73853
-5.2178
-4.62919
-5.13166
-4.74114
-5.20464
-5.09796
-5.39572
-4.8201
-5.20771
-5.10966
-5.3997
-4.82752
16945
12398.5
12399.2
12412.8
12431.2
12164.1
12136.7
12133.3
12106.6
11507.9
11450
10011.1
9165.66
9780.88
9372.96
9622.13
9270.85
9828.49
9283.88
9776.78
9445.68
9854.93
9397.01
10002.2
9167.98
9775.63
9343.25
9562.42
9121.15
9517.33
9230.62
9741.05
9445.65
9818.93
9380.57
-8.84122
-9.58611
-6.47002
-6.48542
-6.46838
-6.47965
-6.4871
-6.35876
-6.47298
-6.33441
-5.20878
-4.61234
-5.01166
-4.86115
-5.46726
-5.15827
-5.42896
-5.08018
-5.20853
-4.62372
-5.01428
-4.86128
-5.4673
-5.17198
-5.43212
-5.08527
-4.80468
-4.12743
-4.43154
-4.37317
-4.80315
-4.14313
-4.44058
-4.38121
17106.7
12355.2
12385.2
12392.2
12418.3
12050.8
12110.7
12021.7
12095.6
11506.9
11511.1
11454.1
11475.9
10088.6
9469.82
10148
9425.62
10069.7
9434.8
10128.8
9388.44
10072.1
9265.48
9835.61
9492.37
10014.6
9153.69
9700.96
9378.8
-8.73044
-6.21005
-6.28397
-6.19684
-6.27364
-9.49004
-6.25985
-6.22885
-6.23275
-6.20152
-5.59641
-5.33858
-5.59492
-5.31526
-5.57023
-5.21185
-5.5114
-5.27274
-5.59477
-5.34353
-5.59523
-5.31762
-5.56744
-5.208
-5.50824
-5.27043
-4.96309
-4.16805
-4.35917
-4.63329
-5.39928
-5.14173
-5.38458
-5.04874
-4.96841
-4.17658
-4.37978
-4.63879
-5.40163
-5.15615
-5.38988
-5.05914
16883.9
16261.8
12014.7
12016.5
12020.8
12029.8
11589.5
11762.6
11555.9
11739.1
10124.7
9477.34
10156
9451.48
10093.8
9293.99
9957.49
9438.32
10103.8
9443.58
10136.5
9411.56
10074.9
9278.69
9946
9395.22
10154.7
9535.14
10191.8
9518.16
10122.8
9502.79
10172.2
9455.52
-8.72018
-6.2843
-6.2991
-6.28094
-6.30434
-5.92555
-5.94187
-5.912
-5.92587
-9.45799
-5.44005
-5.16475
-5.4561
-5.12925
-5.45218
-5.09194
-5.49221
-5.09409
-5.43089
-5.15355
-5.44987
-5.11419
-5.44001
-5.08402
-5.48355
-5.0678
-5.47181
-5.33806
-5.58561
-5.31576
-5.35923
-5.1197
-5.27416
-5.21831
-5.47375
-5.34653
-5.5885
-5.32197
-5.36348
-5.13566
-5.27883
-5.23319
16670.1
16109.7
11828.3
11887.5
11798
11848.2
11687.1
11702.9
11662.4
11684.9
9569.42
9217.46
9801.82
9156.43
9586.19
9291.68
9642.5
9224.05
9568.96
9216.94
9800.47
9156.72
9582.56
9300.24
9645.72
9222.87
10180
9543.65
10206.9
9530.01
10172.5
9360.94
9954.1
9547.97
10157.3
9518.67
10188.9
9486.2
10137.5
9342.18
9936.62
9490.22
-7.9798
-8.68392
-5.82401
-5.82982
-5.81805
-5.82649
-4.68285
-4.80892
-5.01279
-4.80387
-5.10714
-5.11788
-4.7513
-5.16657
-4.72437
-5.0639
-4.68816
-4.82842
-5.01515
-4.83197
-5.11621
-5.1214
-4.75283
-5.16543
-4.73488
-5.06961
-9.44004
-5.15491
-5.05544
-5.19635
-5.01462
-5.1447
-4.95319
-5.1532
-5.06189
-5.19815
-5.00952
-5.14273
-4.94891
-5.26913
-5.08322
-5.1824
-5.16131
-5.27534
-5.11031
-5.19048
-5.18312
16458.6
15947.5
11869.5
11844.8
11838.5
11825.3
10855.2
11191.6
10860.9
11208.9
9670.88
9277.61
9634.93
9282.97
9852.35
9259.15
10015
9237.4
9677.05
9285.94
9645.46
9273.32
9865.22
9295.66
10022.4
9249.52
9546.31
9343.5
10000.2
9147.99
9608.22
9279.9
9555.21
9283.51
9535.74
9325.69
9982.17
9129.68
9601.8
9279.7
9556.57
9273.99
-7.89835
-5.491
-5.5244
-5.47806
-5.516
-8.66785
-5.56748
-5.51134
-5.55983
-5.50497
-4.72927
-4.61071
-4.88465
-4.84217
-4.59568
-4.83438
-4.43119
-4.79081
-4.37334
-4.69493
-4.7564
-4.62565
-4.89427
-4.84663
-4.61481
-4.84128
-4.45055
-4.79889
-4.39059
-4.70241
-9.44457
-5.03204
-5.02443
-5.10723
-4.9487
-4.97434
-4.87454
-5.03726
-5.04601
-5.11379
-4.96605
-4.97977
-4.89164
16194.4
15727.2
15190.3
11396.2
11332.5
11364.2
11316.5
9019.19
9090.48
9670.66
8962.74
9629.15
9630.82
8866.88
9643.15
9005.67
9769.99
9133.01
9036.33
9672.27
8996.93
9646.61
9656.07
8917.07
9640.56
9071.36
9788.65
9525.76
9259.85
9556.18
9237.06
9724.06
9264.47
9509.95
9253.89
9554.09
9191.36
9701.91
9216.78
9736.71
9344.54
9679.19
9284.55
9722.37
9339.63
9666.21
9285.78
-7.88214
-5.54791
-5.59655
-5.54211
-5.59824
-5.08562
-5.08343
-5.07377
-5.06781
-8.66598
-4.6692
-4.3186
-4.62272
-4.37792
-4.67383
-4.37224
-4.76235
-4.38307
-4.67419
-4.33444
-4.629
-4.39032
-4.67755
-4.37569
-4.76116
-4.39145
-4.66127
-4.79854
-4.33148
-4.54723
-4.28098
-4.49161
-4.68776
-4.8077
-4.36709
-4.56233
-4.30911
-4.50264
-9.44529
15951.3
15457.7
14936.6
11008.2
11036.2
10982.6
11017.9
10718.9
10697.2
10727.6
10726.7
9132.35
9155.79
9689.41
9496.85
9141.44
9706.5
8954
9536.83
9089.52
9751.47
9159.92
9183.98
9495.76
9719.02
9059.53
9671.38
8945.33
9525.12
9054.16
9731.75
9575.81
9308.52
9627.68
9239.39
9489.49
9218.99
9541.78
9330.86
9624.93
9223.87
9436.84
9165.25
-7.11446
-7.91027
-5.05805
-5.05566
-5.04617
-5.0556
-3.99787
-4.11155
-4.19805
-4.00847
-4.2291
-4.43251
-4.00736
-4.3601
-4.0084
-4.26096
-4.01467
-4.12322
-4.20405
-4.01999
-4.23507
-4.43684
-4.00376
-4.35752
-4.00989
-4.26338
-8.68116
-4.43194
-4.14673
-4.44256
-4.16401
-4.37692
-4.08992
-4.43634
-4.16148
-4.44892
-4.17231
-4.38053
-4.09739
-9.45597
15751.6
15224.7
14724.9
10959
10920.4
10925.1
10910.2
10122.6
10432.7
10112.9
10468.7
9456.25
8560.91
9368.99
8725.13
9408.15
8514.56
9251.23
8688.6
9466.67
8594.59
9382.53
8759.2
9374.49
8576.57
9270.23
8650.41
9096.38
9434.77
8727.71
9112.85
8789.59
9216.84
9124.97
9447.77
8771.81
9125.69
8805.86
9218
-7.12719
-4.85425
-4.93539
-4.8539
-4.94501
-7.93642
-4.63233
-4.70535
-4.61858
-4.69621
-4.02814
-3.78975
-4.18912
-4.00071
-3.76587
-3.94295
-3.68133
-3.97477
-3.70338
-3.92379
-4.05626
-3.79155
-4.1988
-4.00192
-3.76665
-3.94652
-3.67906
-3.97466
-3.69159
-3.92285
-8.67071
-4.24198
-4.03722
-4.25055
-4.06141
-9.46902
15590.2
15041.5
14506
13836.8
10565.7
10472.5
10535.5
10463.9
8214.64
8536.55
8864.91
8349
8978.68
9160.63
8274.47
8989.93
8379.89
9080.75
8563.91
8294.61
8895.7
8389.34
8982.3
9145.88
8313.7
8988.71
8409.3
9067.75
9419.57
8691
9235.76
8837.73
9527.13
8782.63
9426.42
8708.73
9245.47
8806.91
9500.33
8718.45
-6.21728
-7.19757
-4.53632
-4.49994
-4.5274
-4.50383
-7.97047
-3.99543
-3.53186
-3.78134
-3.59492
-4.43232
-4.00057
-3.52085
-3.78491
-3.60237
-4.42931
-3.64685
-3.77501
-3.47914
-3.61646
-3.5746
-3.69545
-3.64394
-3.77988
-3.4909
-3.6234
-3.55925
-3.69306
-8.67834
-9.47417
15478.3
14880.9
14316.9
13798.6
10130.7
10131.3
10099.2
10117.8
9906.74
10231.1
9905.78
10207
8437.51
8366.9
8976.65
8831.75
8475.07
9055.28
8345.96
8921.13
8531.26
9116.86
8491.21
8381.12
8841.21
8993
8460.65
9036.34
8367.99
8933.44
8526.49
9109.52
9107.82
8623.35
9145.05
8625.7
-6.22378
-4.1178
-4.21655
-4.12451
-4.22427
-7.23771
-4.32866
-4.09983
-4.31849
-4.11194
-8.00745
-3.65794
-3.28699
-3.46987
-3.36302
-3.40617
-3.80171
-3.24628
-3.52159
-3.66383
-3.32053
-3.48263
-3.38801
-3.41797
-3.80393
-3.26264
-3.53063
-3.32353
-3.45109
-3.35758
-3.45862
-8.69623
-9.47492
15436.1
14734.1
14167.9
13626.8
12916.1
9723.16
9625.77
9694.54
9677.69
8596.64
8153.26
8831.01
7951.65
9550.81
8583.21
8132.95
8818.11
7946.84
9523.64
8354.61
8808.65
8338.46
8722.73
8404.19
8777.97
8353.61
8803
8341.61
8729.44
8396.86
8774.95
-5.68082
-6.5217
-3.51397
-3.39597
-3.49289
-3.39518
-7.23492
-3.84466
-3.61968
-3.86194
-3.52129
-3.38206
-3.61626
-3.82007
-3.39504
-3.61894
-3.84272
-3.61414
-3.85988
-3.52283
-3.80512
-8.03498
-3.36186
-3.25696
-3.36395
-3.26061
-3.25049
-3.3936
-3.3744
-3.29606
-3.37993
-3.29299
-3.26974
-3.40059
-8.72786
-9.48006
15528.3
14674.1
14020.3
13464.8
12865.9
9200.1
9486.63
9320.15
9500.16
9251.21
9263.98
9183.89
9263.82
8553.76
8233.1
8916.69
8031.38
7688.42
8414.78
7832.87
8598.81
8532.14
8233.41
8908.65
8023.6
7686.62
8395.31
7799.19
8568.33
8264.48
8651.25
8234.13
8644.92
-5.99659
-2.8803
-3.29315
-2.88162
-3.29794
-6.56673
-2.70699
-2.46945
-2.66652
-2.46324
-7.22475
-3.55558
-3.46222
-3.53127
-3.67741
-3.63952
-3.34516
-2.44073
-2.68584
-2.77266
-3.0024
-3.53632
-3.64048
-3.55246
-3.45346
-3.6734
-3.34011
-2.42101
-2.67017
-2.76052
-2.99386
-8.05288
-3.30076
-3.21619
-3.31189
-3.24107
-8.76099
-9.49169
15728.9
14769.6
13946.9
13333.9
12712.6
12052.5
9015.52
9055.95
9007.78
9050.78
7712.91
8318.34
8214.84
7479.76
8397.47
7472.09
8968.94
7684.51
8292.14
8173.59
7464
8396.72
7424.55
8888.22
8333.22
8078.09
8494.7
7956.45
7868.98
8569.57
8331.02
8023.88
8478.34
7963.19
7828.82
8544.72
-5.36292
-5.66748
-2.3868
-2.58082
-2.38163
-2.58181
-6.66878
-1.99545
-2.12577
-1.77561
-1.49793
-1.64402
-1.59036
-2.09048
-1.96679
-2.10898
-1.76178
-1.46796
-1.63672
-1.5653
-2.08008
-7.25304
-3.17295
-3.01676
-2.13224
-2.28838
-3.17246
-3.01725
-2.10932
-2.27094
-8.06846
-8.78775
-9.50464
15894.1
14982.9
13990.2
13252
12592.5
11930.6
8679.7
8768.27
8601.32
8740.96
8383.59
8662.64
8407.02
8681.2
7544.73
8052.29
8222.64
7555.47
8235.29
7509.49
7191.17
7969.5
7171.62
8036.65
7548.36
8062.66
8172.56
7541.4
8232.04
7442.98
7181.19
7925.45
7174.92
8051.16
8264.52
7808.33
8255.95
7823.34
37.8981
-2.93157
-5.65275
-1.79045
-0.382408
-1.78733
-0.381662
-6.70342
-1.45606
-1.51218
-1.1196
-0.951289
-1.0325
-1.04253
-0.996978
-1.12296
-0.743125
-0.735359
-1.42169
-1.5007
-1.1229
-0.942142
-1.02795
-1.038
-1.00474
-1.12289
-0.753303
-0.739253
-7.31621
-8.09015
-8.81134
-9.51755
15981.2
15158.6
14155.6
13253.1
12498.9
11809.8
11124.9
8339.68
8383.97
8301.51
8337.95
7181
7929.95
7573.75
6877.66
7687.5
6823.96
7967.94
7205.59
7903.02
7557.9
6847.83
7678.57
6841.78
8038.71
7835.21
7350.18
7197.79
7859.69
7837.47
7333.01
7230.83
7878.15
115.518
6.77423
6.81338
95.7983
167.622
95.8112
168.057
2.42612
-5.58089
1.30484
-0.551467
-0.631533
1.3054
-0.559377
-0.634562
-6.69585
-1.01826
-1.08498
-0.539119
-0.509798
-0.541967
-0.533069
-0.379539
-0.422587
-0.99583
-1.07749
-0.550157
-0.52358
-0.546749
-0.557675
-0.389133
-0.426412
-7.38324
-8.12049
-8.83222
-9.53028
16031.2
15258.3
14335.4
13383.2
12494.6
11699.4
10969.3
10305.7
7777.49
8011.42
7766.13
7974.44
7014.83
7473.86
7570.42
6833.33
7391.12
6878.7
6446.42
7120.05
6573.01
7265.36
7026.46
7476.39
7580.65
6806.54
7400.94
6885.87
6470.27
7101.85
6622.67
7289.64
455.506
194.511
49.7486
49.8703
225.207
321.595
224.641
321.651
16.16
-5.51993
3.53905
0.441808
2.93295
10.3847
8.71099
0.724466
-0.137177
-0.217021
3.51276
0.436906
2.94534
10.4413
8.77366
0.720654
-0.147078
-0.22317
-6.70286
-0.297757
-0.265384
-0.211933
-0.254548
-0.302465
-0.277949
-0.219425
-0.25812
-7.42984
-8.1475
-8.85206
-9.5428
16059.4
15319.6
14473.9
13541.5
12596.6
11700.1
10853.5
10099.5
7268.88
7566.24
7541.5
7369.72
7247.16
7361.38
7327.99
6447.66
7079.27
7332.17
6436.91
7038.6
6878.82
7251.07
7068.51
6692.89
7008.13
6685.78
6516.24
7098.27
6866.11
7251.61
7099.4
6654.96
7021.29
6690.75
6544.6
7119.7
649.319
599.207
701.576
600.458
701.954
274.951
16.6051
18.7288
76.5205
100.784
118.485
75.2427
16.7056
19.0434
76.599
101.395
118.12
75.5748
173.124
431.92
191.78
522.687
173.025
428.296
191.545
521.684
41.0619
-5.34978
1.71885
10.2348
0.128531
1.94165
8.88547
0.0926796
1.76078
10.2807
0.119189
1.94688
8.91695
0.0870031
-6.73939
-7.46994
-8.17567
-8.86943
-9.54849
16072.4
15354.5
14558
13672.5
12737.6
11794
10856.4
10016.5
9213.8
6853.83
6733.22
6859.53
6906.5
6706.4
6890.19
5761.52
6099.35
6479.27
5837.54
6492.38
6699.9
6205
6803.29
6121.14
5814.4
6710.61
6233.22
6796.91
6505.06
5863.51
6489.49
6805.74
6433.57
6308.28
6760.08
6814.96
6419.37
6350.49
6777.97
1221.74
811.479
830.372
931.228
829.755
930.998
364.963
50.6156
49.617
139.844
139.191
50.8593
49.683
140.183
140.742
256.212
276.303
342.937
356.712
458.692
492.275
588.516
495.965
749.954
255.871
275.971
341.885
356.218
459.118
491.47
585.06
497.846
746.496
74.0913
-4.89943
27.7095
24.0053
27.9284
24.1443
-6.76694
-7.5147
-8.19971
-8.88378
-9.55628
15370.3
14604.6
13763.4
12862.9
11925.9
10958.4
10029.4
9159.01
6430.87
6476.68
6425.26
6490.12
6492.54
5863.6
6268.25
5525.58
6147.34
5630.62
6293.51
5555.1
6113
6477.5
5860.72
6258.33
5556.07
6152.73
5621.01
6405.47
5566.5
6257.34
6104.74
6380.58
5927.42
5750.69
6181.08
6266.63
6375.42
6566.99
5967.63
6208.55
5787.3
6584.98
6399
6289.78
1781.25
1402.93
953.704
1042.7
1141.47
1040.95
1140.99
448.452
103.15
103.676
217.774
220.181
103.408
104.524
218.741
220.849
425.69
299.38
437.711
296.13
557.62
577.917
665.861
592.163
954.249
426.986
300.474
437.636
297.086
557.203
578.198
664.413
592.004
951.416
109.004
-4.10833
-6.79765
-7.55114
-8.21943
-8.89895
-9.56331
14625.3
13818.2
12956.1
12047.1
11098.8
10108.3
9173.42
8196.49
6004.97
6020.16
5983.28
6009.47
6120.93
5789.86
6078.01
5599.25
5339.79
5820.22
5156.35
5593.37
5019.3
5572.92
5465.05
4927.19
6116.64
5781.31
6072.5
5588.33
5919.74
5372.64
5822.36
5175.59
5594.57
5009.27
5567.67
5449.03
4908.83
5877.53
5732.06
6019.52
5747.68
6027.15
2278.24
1972.18
1317.15
1315.63
1565.57
1069.83
1241.32
1236.41
534.97
180.817
172.626
181.245
174.041
501.266
381.445
389.906
533.141
655.338
664.035
751.551
679.431
1131.08
815.764
756.928
504.234
383.078
390.149
533.287
652.136
664.277
751.698
679.939
1127.75
814.715
756.111
140.286
-3.38295
-6.81535
-7.56088
-8.24249
-8.91433
-9.57241
13843.7
13014.6
12140.2
11226.8
10259.1
9248.88
8219.07
7074.43
5553.28
5541.43
5529.82
5530.05
5906.81
5628.09
5684.43
5333.87
5153.73
5045.97
5433.69
5338.55
4958.02
5355.67
5471.96
4895.67
5904.2
5622.7
5689.38
5354.91
5500.99
5166.92
5058.66
5439.85
5339.7
4944.27
5347.91
5461.87
4889.6
5471.46
2616.98
2508.35
1653.98
1652.71
1523.52
1521.44
2157.27
1700.03
1172.57
1426.55
1415.3
608.176
590.845
626.2
746.42
729.603
1073.93
876.645
945.293
942.738
843.457
1217.44
1044.79
1088.45
590.564
626.381
747.215
729.674
1059.55
876.481
940.028
943.267
841.463
1212.97
1043.86
1088.47
164.319
-2.76807
-6.81528
-7.5788
-8.27006
-8.93122
-9.5729
13042.4
12200.7
11324.1
10399.4
9421.41
8354.53
7163.63
5730.92
5074.23
5058.59
5078.09
5053.12
5649.84
5374.95
5038.95
4919.03
5235.91
5141.29
4740.19
5034.17
5118.22
4673.09
5647.8
5351.99
5059.78
4838.94
4453.3
5056.25
4923.54
5240.27
5140.63
4736.18
5028.66
5110.64
4681.9
5040.03
4830.79
4445.7
2804.7
2945.17
1834.28
1835.87
1776.52
1777.64
2710.75
1553.13
1542.78
2310.61
1814.05
1253.69
1096.83
1213.15
1094.94
1211.82
656.22
682.058
711.202
824.517
795.323
905.671
1023.78
870.387
1016.99
1087.48
1112.32
680.11
711.303
825.52
795.513
904.686
1024.04
1016.97
870.878
1086.89
1112.92
195.026
-2.62023
-6.84452
-7.60863
-8.31222
-8.95493
-9.56215
12230.4
11386.9
10506.7
9577.96
8577.96
7418.26
6015.95
4372.96
4557.66
4537.25
4042.68
4023.75
4579.64
4560.44
4742.58
4933.93
4471.96
4684.74
3836.22
4573.56
3980.44
4352.88
4199.84
4392.37
3835.47
4257.3
4745.48
4932.83
4459
4679.38
3831.46
4565.23
3977.12
4351.04
4188.22
4386.81
3829.07
4252.63
3249.92
1921.04
1916.96
1894.47
1896.35
2066.63
2323.25
2067.14
2327.02
3212.14
1699.2
1693.32
1669.15
1662.23
2884.74
1235.18
1323.06
1156.33
1254.53
1230.36
1320.49
1154.79
1253.38
2436.85
1899.25
1306
716.009
984.812
1053.24
959.957
1082.01
1163.14
1145.97
988.769
1056.55
1083.24
961.351
1159.73
1146.17
201.902
-1.68563
-6.91496
-7.65626
-8.376
-8.96711
-9.55484
11417.3
10575.5
9697.26
8766.26
7729.01
6459.77
4953.53
3353.3
3506.71
3489.76
2981.74
2961.37
4084.55
4059.23
3686.13
4155.93
3683.17
4146.88
4532.12
4676.53
4206.48
4381.53
4007.07
3838.25
4068.87
4185.18
3706.78
3998.27
4532.81
4674.49
4181.67
4375.61
3991.63
3837.72
4183.12
4073.22
3708.36
3997.46
3481.24
3647.81
1736.19
1867.17
1859.07
1734.03
1732.85
1727.45
2073.34
2328.52
2074.04
2332.06
3422.33
1346.11
1428.07
1315.54
1388.69
1346.75
1426.93
1318.84
1388.78
1299.71
1383.1
1304.44
1374.3
1298.91
1381.96
1305.77
1374.46
3030.44
1232.83
1196.01
1230.77
1196.69
2535.86
1952.36
1367.27
723.44
1126.58
1127.46
1128.84
1128.98
200.519
-0.930551
-7.03372
-7.74533
-8.40607
-8.95614
-9.54501
10609.2
9773.08
8902.2
7966.69
6895.5
5585.07
4161.06
2496.13
2490.05
2030.87
2044.74
2133.43
2471.26
2134.56
2474.2
3512.14
3490.03
2946.09
2931.77
3204.17
3541.86
3443
3830.1
3213.36
3539.43
3454.98
3827.77
3887.17
3699.98
3856.78
4026.8
3518.4
3745.99
3880.74
3702.27
4026.91
3861.07
3521.92
3743.26
4012.91
3706.19
3928.77
1390.83
1395.27
1404.49
1346.99
1415.86
1402.54
1398.05
1564.68
1764.46
1514.98
1396.96
1757.73
1511.78
1390.51
1559.69
1388.24
1381.39
1404.91
1406.3
1348.87
1416.74
1401.1
1363.3
1447.61
1354.01
1430.75
1362.83
1446.19
1353.44
1430.25
2069.88
2374.37
2072.39
2380.56
3592.24
1347.67
1339.62
1317.65
1299.69
1351.4
1340.05
1319.69
1301.49
1293.89
1250.83
1303.17
1262.37
1295.85
1253.34
1304.11
1264.29
3144.18
1177.6
1169.4
1182.01
1171.22
2591.19
2006.16
1369.05
711.825
200.131
-0.324619
-7.29134
-7.83182
-8.37493
-8.93636
-9.5367
9809.63
8988.69
8128.86
7192.96
6119.38
4878.74
2414.6
2413.56
1926.56
1815.81
1933.39
1818.7
2964.14
3265.12
2720.9
2986.9
2978.72
3264.76
2728.45
2986.13
2251.61
2533.72
2474.87
2742.5
2257.52
2533.03
2481.31
2741.49
3296.28
3490.28
3299.27
3484.51
3530.88
3679.98
3532.45
3679.04
4414.38
4377.2
4127.59
1374.01
1353.23
1355.42
1379.41
1318.77
1350.69
1327.14
1386.5
1729.52
1447.88
1279.54
1369.95
1358
1724.33
1446.85
1272.56
1368.12
1357.01
1386.26
1346.71
1378.07
1368.07
1381.33
1321.38
1354.49
1330.01
1364.71
1354.76
1365.48
1348.68
1368.08
1355.34
1367.11
1349.76
3716.05
1229.76
1233.17
1236.91
1236.01
3195.29
2620.8
2001.09
1346.39
696.635
200.084
0.413234
-7.43334
-7.79607
-8.32462
-8.91662
-9.52957
9030.09
8229.57
7386.62
6473.21
5449.65
2059.18
2321.24
1864.27
2065.61
2070.48
2322.1
1879.15
2068.84
1551.19
1377.81
1532.51
1760.33
1941.98
1507.9
1442.23
1603.25
1474.79
1343.45
1571.47
1389.02
1541.73
1778.34
1945.44
1512.48
1448.39
1605.19
1476.59
1343.24
3045.44
3196.06
2804.9
2913.42
3053.96
3194.47
2805.37
2909.89
2323.9
2481.72
2557.9
2662.58
2325.07
2482.41
2556.56
2660.76
3334
3474.23
3335.01
3468.92
4666.17
4893.34
4273.13
1314.6
1335.12
1377.09
1317.8
1396.99
1282.91
1359.08
1336.72
1253.9
1255.14
1395.72
1272.37
1356.61
1331.36
1321.79
1267.63
1260.81
1344.37
1378.61
1318.95
3755.78
3188.23
2605.28
1967.87
1320.08
682.171
197.541
1.96533
-7.30635
-7.71094
-8.28804
-8.90886
-9.52626
8279.57
7504.38
6687.76
5814.76
2109.23
2304
1915.55
2097.11
2120.08
2306.91
1931.19
2104.92
1409.84
1560.3
1331.83
1605.32
1487.5
1735.18
1900.5
1425.81
1425.74
1584.12
1331.87
1616.67
1493.59
1760.82
1917.2
1426.85
3115.6
3227.23
3122.52
3223.06
4843.56
5218.22
4307.87
1287.94
1317.76
1341.27
1236.38
1285.2
1294.28
1246.57
1283.59
1343.89
1240
1289.48
1291.75
1320.83
1272.43
1290.56
1303.19
3688.33
3139.2
2558.31
1934.84
1296.24
665.073
191.839
3.31048
-7.04033
-7.65698
-8.27271
-8.9124
-9.52935
7562.59
6818.87
6034.16
1331.95
1429.91
1345.3
1433.71
4936.79
5423.76
4289.71
1406.63
1236.34
1320.08
1291.13
1413.01
1255.94
1326.08
1303.91
3584.7
3087.9
2525.19
1904.99
1273.34
644.016
179.159
2.66222
-6.86489
-7.64131
-8.27845
-8.92423
-9.53519
6889.98
6166.3
5117.27
5553.8
4193.89
3568.73
3070.31
2503.77
1878.99
1248.79
616.346
160.816
0.942436
-6.83695
-7.64915
-8.31201
-8.94176
-9.5391
6267.41
5017.46
5695.82
4163.27
3591.73
3079.15
2484.72
1853.5
1219.87
584.683
136.655
-0.576043
-6.88049
-7.69669
-8.34291
-8.9635
-9.54511
4939.26
4186.42
3653.25
3077.84
2462.73
1827.12
1185.9
552.257
115.96
-1.32873
-6.9533
-7.74122
-8.38645
-8.9863
-9.54876
4930.28
4255.82
3674.38
3066.45
2436.84
1797.33
1149.11
521.456
105.111
-1.47582
-7.03795
-7.79529
-8.42875
-9.00411
-9.55119
4936.98
4284.73
3676.76
3046.18
2407.84
1764.59
1113.76
503.049
106.098
-1.15768
-7.12478
-7.85467
-8.47706
-9.01582
-9.54967
4945
4298.16
3659.35
3019.42
2376.31
1732.07
1085.31
497.774
111.41
-0.856562
-7.22696
-7.91112
-8.50218
-9.0195
-9.55114
4934.5
4275.76
3633.51
2987.8
2343.51
1702.26
1068.9
498.399
119.125
-0.449311
-7.34342
-7.93446
-8.49035
-9.02127
-9.55548
4906.88
4250.21
3599.76
2953.13
2310.77
1677.74
1061.54
500.632
124.203
0.356269
-7.40498
-7.92694
-8.47666
-9.03544
-9.5535
4874.2
4212.8
3562.12
2916.61
2279.08
1656.9
1055
499.302
126.969
1.88469
-7.35373
-7.92042
-8.49678
-9.05195
-9.5525
4829.13
4171.57
3521.74
2879.31
2248.63
1635.61
1042.35
493.611
130.219
4.2512
-7.31039
-7.96494
-8.51461
-9.06493
-9.55178
4782.87
4126.95
3479.4
2841.59
2217.72
1611.12
1024.03
481.372
128.355
3.66764
-7.35937
-8.02971
-8.53721
-9.0801
-9.53014
4733.24
4079.69
3435.43
2802.42
2184.09
1581.87
998.029
461.447
113.583
1.43906
-7.40114
-8.06745
-8.55909
-9.10144
-9.56893
4680.96
4030.21
3389.41
2760.42
2146.15
1546.01
964.838
426.506
82.8805
-1.8941
-7.44392
-8.09621
-8.57655
-9.11713
-9.57379
4626.29
3978.24
3340.5
2714.3
2101.99
1501.91
915.555
373.859
48.9189
-4.45197
-7.48991
-8.13582
-8.63617
-9.11871
-9.56756
4569.01
3923.14
3287.63
2662.56
2049.83
1444.65
846.265
294.401
25.0723
-5.63301
-7.5498
-8.2576
-8.67705
-9.09575
-9.55207
4508.52
3864.04
3229.51
2603.82
1987.21
1370.07
751.443
214.787
12.2018
-6.41301
-7.75158
-8.2665
-8.63875
-9.03752
-9.54004
4444.09
3799.91
3164.87
2536.41
1912.66
1281.18
639.046
151.312
4.9056
-6.84166
-7.84135
-8.19941
-8.52805
-8.9946
-9.53625
4374.71
3729.71
3092.55
2459.1
1825.83
1178.64
531.435
105.905
0.200314
-7.1475
-7.73035
-8.0071
-8.451
-8.99106
-9.53983
4299.41
3652.57
3011.86
2372.6
1728.78
1073.54
449.987
82.9086
-2.09228
-7.11995
-7.46646
-7.85264
-8.44372
-9.0129
-9.54067
4217.35
3567.77
2922.58
2277.83
1628.63
983.348
399.69
68.5969
-2.88949
-6.85434
-7.32104
-7.8503
-8.47306
-9.0452
-9.54543
4127.96
3475.66
2826.54
2179.16
1534.79
912.457
361.238
57.3817
-3.35702
-6.58348
-7.35719
-7.94141
-8.51143
-9.05288
-9.54834
4031.25
3376.96
2726.2
2081.36
1450.67
847.846
318.858
44.8333
-4.16205
-6.56932
-7.42087
-8.02572
-8.51897
-9.04605
-9.54903
3928.13
3273.32
2624.72
1987.84
1370.24
776.059
267.878
28.6577
-5.2991
-6.8385
-7.50719
-8.06298
-8.51716
-9.0425
-9.55778
3820.08
3167.01
2524.01
1896.13
1284.47
694.19
203.801
13.2689
-5.93814
-7.05714
-7.4994
-8.04077
-8.5133
-9.05424
-9.57157
3708.73
3059.83
2422.96
1800.67
1189.11
593.818
133.353
4.24383
-6.30159
-7.1067
-7.46481
-8.02718
-8.53241
-9.08369
-9.58781
3595.41
2951.02
2318.63
1696.92
1079.79
472.57
75.7013
-0.534342
-6.3674
-7.05151
-7.44432
-8.05863
-8.59422
-9.12399
-9.60852
3479.92
2838.97
2207.67
1581.67
953.64
346.199
42.0407
-3.47239
-6.35335
-7.03538
-7.48321
-8.1064
-8.6606
-9.18755
-9.6198
3361.04
2720.97
2087.64
1454.73
811.641
243.803
21.3935
-5.04243
-6.39829
-7.06656
-7.59639
-8.19318
-8.77016
-9.24
-9.62963
3236.66
2595.24
1958.65
1316.92
676.745
176.375
10.1928
-5.71425
-6.50861
-7.12328
-7.7229
-8.35021
-8.87261
-9.27187
-9.59171
3105.15
2462.05
1822.09
1182.33
570.175
139.89
3.89398
-6.00446
-6.63602
-7.24993
-7.9269
-8.51136
-8.91728
-9.15527
-9.58328
2966.74
2322.86
1686
1067.05
497.37
112.545
0.279214
-6.08218
-6.76318
-7.50157
-8.1819
-8.57076
-8.71885
-9.1304
-9.57675
2822.98
2184.08
1563.32
972.694
435.864
83.8279
-2.15258
-6.20549
-7.07561
-7.84613
-8.23633
-8.28283
-8.6757
-9.11359
-9.59497
2678.6
2054.38
1455.1
889.626
364.525
51.7703
-3.95619
-6.61104
-7.49399
-7.90175
-7.84558
-8.22025
-8.64676
-9.12291
-9.65232
2541.58
1935.32
1356.23
796.589
276.896
22.4072
-5.25891
-6.98424
-7.58119
-7.40244
-7.7621
-8.18356
-8.64914
-9.24338
-9.65598
2413.46
1824.06
1249.75
685.473
185.715
7.80979
-5.68039
-7.14197
-6.98185
-7.30105
-7.71407
-8.17434
-8.83569
-9.35082
-9.64526
2292.18
1708.96
1128.79
552.564
115.372
1.63685
-6.10227
-6.47556
-6.84831
-7.2502
-7.69448
-8.42954
-9.05046
-9.3215
-9.58477
2168.37
1583.21
995.563
425.285
65.5321
-0.304613
-5.46855
-6.35901
-6.78948
-7.21659
-8.01849
-8.75459
-9.00375
-9.13541
-9.53711
2034.4
1445.47
863.772
319.345
47.0387
0.513855
-5.60773
-6.31334
-6.73596
-7.60907
-8.44417
-8.69143
-8.68687
-8.99145
1891.47
1305.71
741.98
273.37
47.2776
0.0385412
-5.77836
-6.26846
-7.16774
-8.10873
-8.37745
-8.2378
-8.44178
1745.79
1175.68
673.734
293.022
48.119
-1.02601
-5.797
-6.71794
-7.70188
-8.02677
-7.78461
-7.88613
1608.3
1100.34
710.329
301.764
41.9169
-2.3654
-6.24124
-7.30442
-7.62862
-7.31469
-7.32217
1526.69
1135.57
723.481
292.862
29.645
-3.89454
-6.79455
-7.16581
-6.81264
-6.74655
1560.72
1148.09
716.039
270.987
14.0605
-4.98681
-6.48804
-6.25962
-6.15985
1572.62
1140.88
695.705
242.643
3.95701
-4.89225
-5.57056
-5.5738
1565.46
1120.5
668.541
223.954
-0.583954
-4.43268
-4.9791
1545.53
1093.67
650.188
215.054
-2.27464
-4.29877
1519.05
1075.47
640.883
211.882
-3.44023
1500.9
1066.14
637.243
209.984
1491.44
1062.45
635.088
1487.62
1060.21
1485.32
20.8307
60.7778
12.6292
11.3854
41.3234
58.3178
123.461
8.07058
7.41176
4.89097
11.4891
40.9286
85.2197
28.097
134.231
58.3753
195.747
155.626
7.8182
4.5897
8.08275
3.7459
3.475
1.50022
20.7859
115.784
26.9808
40.9933
234.971
53.6688
29.1968
228.383
166.867
134.37
60.8486
268.565
237.359
3.40062
7.81821
4.60708
1.95454
12.681
3.73656
3.81924
1.19785
1.28773
1.39887
1.16665
1.15952
81.6841
116.12
26.9897
41.4795
143.621
235.462
328.598
448.059
29.2519
12.4071
257.348
228.709
167.294
124.232
346.216
325.134
3.40247
1.39608
7.45067
4.94246
1.95649
3.49348
3.79723
1.19323
1.28352
1.39397
1.15436
5.06552
1.94281
0.608657
0.75931
0.786521
0.558011
0.423112
81.9455
85.8574
28.2247
144.132
338.751
69.4294
270.496
328.7
197.31
447.39
54.0865
344.721
436.476
673.893
426.991
571.826
12.4197
8.28576
257.899
156.814
413.836
366.362
1.39469
0.618912
1.51557
1.15737
5.05084
1.92497
0.603
0.750014
0.781586
0.547671
6.82748
2.63019
0.548236
0.0383767
0.349843
0.379329
0.0368892
339.168
69.5436
574.811
221.905
32.4423
348.78
326.808
345.115
436.404
238.652
672.132
431.208
571.838
374.051
444.922
762.24
890.584
488.891
572.49
8.27514
11.2363
454.399
0.611562
0.412391
6.77771
2.62691
0.540262
0.0337755
0.336242
0.372926
0.0271636
9.89003
3.82019
1.19735
-0.0274662
-0.0267999
-0.566585
-0.382291
-0.440171
-0.499397
-0.177581
-0.153902
222.435
574.666
32.4727
808.475
461.96
131.912
20.0758
416.832
367.669
374.267
445.458
762.503
889.148
491.448
573.324
473.043
965.063
703.966
678.316
797.695
599.696
1095.05
532.035
586.619
11.1584
15.4105
9.77567
3.83438
1.19285
-0.56156
-0.378749
-0.433415
-0.498102
-0.0395882
-0.0328053
-0.182161
-0.164033
15.7685
1.439
-0.39384
-0.740671
-0.434173
-0.481256
-1.3325
-1.00408
-1.08866
-1.25425
462.484
132.19
808.168
20.0228
1032.26
720.895
356.499
77.6476
18.6238
456.112
473.178
963.155
704.568
680.608
798.407
602.516
1093.51
534.314
586.93
1156.75
969.497
762.169
878.803
845.363
706.506
748.893
781.434
660.883
1289.08
15.3069
16.4107
15.4348
1.65
-0.314676
-0.744755
-1.31642
-0.971932
-0.444148
-1.07782
-0.486919
-1.19438
30.3121
4.51308
-6.41809
-2.47605
-1.9487
-2.16028
-1.6672
-1.80661
-1.94454
-1.85496
721.127
356.611
77.6554
1031.9
18.5016
1255.2
982.747
644.765
270.594
45.8489
30.6378
1154.54
968.144
763.628
879.453
845.369
706.943
749.355
782.018
661.12
1286.85
1333.78
1068.03
966.648
1163.93
912.739
933.641
836.915
849.172
917.355
1459.7
16.3745
31.7799
29.7506
4.68996
-5.91873
-2.41998
-1.94637
-2.15264
-1.64464
-1.79434
-1.93648
-1.82153
53.1743
12.5615
-3.4837
-6.37322
-3.3781
-2.7419
-2.90166
-2.52845
-2.62509
-2.48236
-2.34534
982.683
644.465
270.538
45.7817
1254.57
30.4738
1466.89
1244.69
953.837
585.362
188.571
37.9465
37.7772
1328.34
1066.41
975.386
1163.95
912.984
934.767
837.36
850.146
921.092
1457.08
1477.84
1318.04
1021.37
1247.86
1082.1
1031.35
1045.18
1113.52
984.067
959.56
958.944
1619.59
31.6373
61.9413
53.3234
13.2182
-3.62694
-6.26802
-3.34321
-2.72353
-2.88941
-2.50666
-2.60731
-2.47198
-2.33021
85.2257
18.262
0.292641
-4.28308
-4.36575
-3.25637
-3.44007
-3.23446
-2.97341
-3.32799
-3.44162
-3.09498
-3.24086
1243.93
953.339
585.064
188.358
37.9873
1465.09
37.7778
1667.55
1501.77
1262.73
945.639
527.292
133.565
46.4165
50.8292
1474.13
1316.17
1027.83
1247.51
1083.83
1032.65
1050.2
1115.5
987.414
960.889
963.258
1614.87
1501.39
1600.21
1249.21
1102.98
1181.25
1139.82
1046.25
1083.79
1114.36
1019.14
1764.74
62.2441
133.986
85.877
18.8432
0.289492
-4.41551
-4.36306
-3.23723
-3.42631
-3.22373
-2.9583
-3.31571
-3.43431
-3.08994
-3.2373
125.334
24.6254
0.529938
-1.4046
-3.81761
-3.65476
-3.46667
-3.51824
-3.22991
-3.10267
-3.60358
-3.71436
1501.43
1263.57
945.933
526.926
133.288
46.446
1665.17
51.2056
1857.79
1745.09
1559.11
1302.8
947.55
496.159
133.65
95.1454
143.656
1496.67
1593.82
1250.16
1109.1
1183.19
1144.55
1047.84
1088.74
1116.44
1023.6
1759.1
1189.86
1589.23
1374.26
1165.91
1323.74
1705.19
1226.15
1142.48
1166.05
1175.33
1898.32
135.089
232.064
126.372
25.0125
0.658852
-1.47201
-3.88023
-3.65576
-3.4551
-3.51194
-3.22714
-3.10033
-3.5892
-3.70708
189.486
40.4373
1.93767
-1.18593
-2.22204
-3.63448
-2.96658
-3.2345
-3.14428
-3.30006
-3.35805
-3.41317
-3.19506
-3.14584
1743.82
1559.6
1303.38
947.494
495.137
133.42
95.2647
1852.99
144.89
2042.09
1978.04
1841.18
1635.41
1359.86
979.463
520.095
207.787
220.416
326.456
1200.31
1583.11
1375.55
1174.33
1326.36
1698.02
1228.96
1148.3
1168.51
1182.7
1892.39
1213.52
1261.04
1658.28
1397.5
1227.73
1412.44
1306.91
1236.09
1271.76
1791.78
1227.81
1207.21
2029.81
232.888
346.949
190.441
40.7454
1.98864
-1.19848
-2.24809
-3.6504
-2.9891
-3.24166
-3.16343
-3.30647
-3.35709
-3.41277
-3.1991
-3.1555
284.904
74.3078
5.65995
-0.625347
-1.66192
-2.91317
-3.75514
-3.09498
-3.23132
-3.25908
-3.34438
-3.22922
-3.16345
1976.02
1840.49
1635.55
1359.52
978.539
519.185
207.123
220.174
2037.43
324.501
2229.37
2211.85
2112.75
1946.76
1726.57
1437.12
1048.81
635.473
421.967
480.788
521.368
1221.96
1268.75
1649.86
1397.18
1238.13
1412.3
1309.86
1243.03
1275
1784.51
1230.47
1214.24
2025.33
1287.67
1245.56
1709.32
1436.17
1239.62
1419.04
1334.54
1306.45
1344.98
1868.11
2169.58
347.587
472.242
285.409
74.6019
5.70443
-0.659166
-1.65404
-2.91598
-3.76535
-3.11999
-3.24233
-3.28592
-3.35421
-3.23857
-3.18563
383.005
139.675
17.985
0.0409734
-1.12251
-2.36176
-3.54941
-3.353
-3.21586
-3.35362
-3.19387
-3.19887
-3.27869
2208.31
2112.18
1947.82
1728.17
1436.99
1047.18
633.351
419.691
477.94
2224.54
520.361
2422.22
2442.51
2380.67
2246.74
2061.79
1833.11
1541.26
1182.2
864.236
765.422
752.991
693.179
1293.99
1254.15
1702.24
1436.9
1249.77
1419.24
1336.13
1313.11
1346.38
1864.02
2165.88
1265.13
1295.65
1747.83
1462.93
1290.65
1505.47
1329.24
1311.25
1340.46
1941.15
2345.12
472.786
581.844
383.188
139.764
18.0041
0.0221026
-1.13595
-2.35864
-3.55282
-3.35239
-3.25174
-3.36673
-3.20478
-3.23962
-3.29543
464.715
224.694
54.4476
3.41073
-0.988942
-1.72595
-3.33003
-3.48933
-3.24862
-3.54995
-3.27143
-3.54326
-3.38288
-3.49666
-3.41542
2437.3
2379.12
2246.78
2063.09
1834.15
1540.53
1178.77
860.158
760.654
749.883
2416.7
693.255
2668.95
2635.14
2637.39
2534.01
2381.51
2192.3
1963.14
1689.15
1407.1
1196.2
1081.05
965.663
821.568
1273.26
1302.48
1742.83
1463.04
1300.34
1505.73
1332.12
1318.35
1342.57
1938.15
2347.24
1315.73
1297.62
1566.43
1305.03
1552.75
1739.87
1336.27
1348.26
1387.22
2074.68
2594.22
582.261
665.172
464.907
224.635
54.3242
3.40657
-1.00689
-1.71877
-3.31295
-3.48235
-3.23724
-3.54332
-3.26816
-3.5357
-3.39937
-3.49838
-3.41173
301.889
407.103
459.251
486.552
383.888
115.958
19.6186
0.127813
-1.93598
-3.04405
-4.12307
-3.60737
-3.54169
-3.7305
-3.41652
-3.70043
-3.58204
2634.91
2665.03
2533.77
2380.99
2191.92
1961.84
1685.44
1400.52
1190.16
1076.05
965.149
2635.15
822.212
2889.2
2908.74
2901.87
2809.03
2682.27
2523.83
2336.4
2121.93
1895.72
1672.77
1485.18
1302.06
1107.37
905.733
1327.64
1298.5
1735.99
1564.66
1307.82
1552.23
1339.33
1356.89
1389.31
2074.56
2602.26
1359.13
1288.14
1313.69
1425.04
1549.4
1336.37
1427.01
1840.28
1276.3
1524.29
1326.64
1367.03
1375.09
2312.36
2948.32
665.758
675.317
543.412
577.805
635.875
301.871
407.371
459.804
486.908
384.356
115.828
19.5283
0.103539
-1.93758
-3.01303
-4.10039
-3.6092
-3.51267
-3.72124
-3.41652
-3.70169
-3.57147
178.474
335.902
254.103
272.57
315.746
421.498
483.133
501.408
405.861
56.9285
7.7759
-1.99154
-3.06407
-4.18062
-3.73434
-3.94824
-3.71597
-3.98271
-3.77052
-3.73059
-3.83265
-3.65691
2807.61
2885.29
2907.29
2681.99
2522.99
2333.82
2116.75
1887.95
1665.62
1479.72
1301.1
1108.58
2905.81
906.906
3080.82
3147.12
3179.59
3227.15
2971.01
2832.38
2672.06
2495.64
2311.33
2113.6
1901.77
1679.58
1436.21
1188.87
781.035
845.329
893.338
736.388
1372.64
1294.93
1314.15
1835.92
1548.26
1287.64
1526.2
1423.23
1335.88
1426.53
1330.37
1373.67
1377.44
2320.29
2952.45
1285.73
1297.94
1406.03
1367.38
1332.39
1395.62
1381.53
2082.47
1562.76
1343.71
1567.59
1291.12
1439.36
2654.75
3370.95
676.254
544.469
578.394
637.635
689.741
568.608
592.154
659.85
178.336
336.063
254.194
272.589
316.098
421.948
484.386
501.998
406.806
56.7767
7.73863
-2.01091
-3.0529
-4.14911
-3.7331
-3.94744
-3.72212
-3.98624
-3.77185
-3.72688
-3.82995
-3.65929
102.41
157.217
197.937
209.567
152.202
350.022
275.482
286.179
336.729
433.716
500.674
513.458
422.755
29.0281
0.68639
-3.76606
-4.11972
-4.72393
-3.89268
-4.09288
-3.94424
-4.1335
-3.84613
-4.01202
2970.41
3077.82
3144.18
3180.23
2831.8
2669.46
2489.5
2302.33
2105.61
1896.36
1678.87
1438.47
1190.9
3228.9
782.191
847.151
894.544
738.353
3256.19
3355.78
3423.91
3492.79
3615.33
3130.39
2986.81
2830.9
2668.67
2493.81
2290.86
2056.19
1791.88
1508.71
1148.24
964.454
1018.86
1090.27
796.955
869.437
911.058
760.882
1297.17
1304.72
1391.36
2079.27
1565.7
1355.47
1571.24
1407.53
1306.09
1441.79
1367.65
1334.9
1396.35
2656.59
3371.93
1260.86
1335.17
1476.24
1372.67
2482.18
1601.75
1611.78
1688.22
1513.71
1332.34
1493.69
1261.69
1368.68
3136.93
3833.61
690.583
570.307
592.831
662.336
702.539
588.773
605.246
683.839
102.268
157.144
197.806
209.515
152.139
350.292
275.467
286.249
337.222
434.321
502.608
514.26
423.793
28.9763
0.643543
-3.7719
-4.11329
-4.72675
-3.90347
-4.09686
-3.9533
-4.13771
-3.85969
-4.01546
57.8894
115.832
88.1947
93.2589
113.21
171.73
218.678
225.869
167.335
361.783
289.506
297.689
352.499
12.2477
-4.00435
-4.78062
-4.75729
-4.24884
-4.14755
-4.3449
-4.09774
-3.99579
-4.17617
-4.09183
-4.20804
3128.91
3254.01
3351.56
3421.2
3493.17
2983.32
2824.21
2659.79
2485.96
2286.29
2056.38
1795.1
1511.6
1150.25
966.981
1020.46
1094.06
3616.99
798.007
872.846
912.25
763.958
3423.79
3542.9
3640.46
3732.2
3852.22
4034.79
3289.71
3143.79
2989.76
2825.33
2634.94
2407.9
2143.7
1849.44
1288.46
1362.1
1426.95
1224.27
1167.3
988.953
1038.43
1109.34
811.647
898.841
925.214
788.203
1278.19
1484.43
1386.27
2476.76
1602.3
1617.56
1691.59
1516.93
1344.79
1496.87
1339.75
1279.81
1373.27
3128.81
3836.59
1436.86
1340.02
2029.32
2955.37
2081.21
1809.79
1872.94
1565
1507.88
1629.81
1427.42
1306.82
1430.34
3657.57
4295.99
703.433
591.026
606.086
686.129
57.8468
115.857
88.0507
93.215
113.133
171.384
218.239
225.935
167.277
362.121
289.85
297.696
352.968
12.2328
-4.03155
-4.7826
-4.7637
-4.25992
-4.17485
-4.35641
-4.11736
-4.01891
-4.18504
-4.11559
-4.21767
24.7819
50.7443
66.8405
70.6585
48.0637
122.365
91.2181
93.6965
123.088
183.878
232.102
238.47
180.634
-0.0938919
-5.73613
-5.10967
-4.39859
-3.94682
-4.20352
-4.07995
-4.41523
-4.24814
-4.43216
-4.16717
3284.75
3419.99
3537.94
3635.7
3729.1
3853.67
3136.78
2981.66
2818.63
2632.08
2409.79
2148.15
1853.45
1290.74
1365.56
1429.42
1228.57
1169.05
992.951
1039.78
1114.82
4043.41
812.803
903.016
926.724
791.234
3582.42
3712.49
3831.23
3946.59
4073.98
4239.32
4460.19
3440.67
3287.65
3123.68
2940.34
2725.7
2475.13
2188.25
1714.72
1501.09
1569.48
1641.52
1309.31
1381.07
1449.5
1245.78
1181.37
1020.18
1051.11
1148.54
1454
1353.21
2940.51
2021.07
2078.66
1812.66
1873.15
1572.24
1527.53
1637.11
1432.62
1320.41
1435.61
3643.4
4301.8
2277.18
1922.25
2314.36
2528.91
2460.78
3048.98
2795.03
2802.72
2800.57
2032.66
1720.99
1854.64
4129.15
3047.85
3196.1
4747.88
24.9595
50.506
66.6273
70.4864
47.9863
122.333
91.2675
93.7787
123.077
183.597
232.469
238.116
180.869
-0.160696
-5.73811
-5.12234
-4.40534
-3.97195
-4.21487
-4.09903
-4.42346
-4.27454
-4.44306
-4.1838
6.07456
29.669
19.7698
21.0306
31.3237
55.3604
69.7934
73.1446
52.2109
138.046
103.229
105.007
137.184
-4.65062
-5.69852
-5.33406
-4.46145
-4.11326
-4.26223
-4.28599
3434.44
3576.92
3707.79
3826.98
3943.01
4073.8
4245.94
3281.38
3119.39
2939.47
2729.56
2481.21
2192.91
1717.72
1504.87
1572.23
1646.25
1311.21
1387.05
1451.59
1251.69
1182.99
1024.54
1052.63
1152.5
4474.29
3724.18
3868.14
4002.68
4133.38
4272.96
4432.63
4629.91
4879.67
3568.46
3400.55
3217.81
3012.32
2779.41
2511.92
1859.46
1918.48
1999.29
1781.99
1737.5
1522.45
1594.13
1659.3
1324.3
1425.58
1465.8
1286.61
2271.31
2310.13
2518.89
2456.95
3039.66
2792.36
2796.74
2792.94
1931.77
2037.38
1738.67
1863
4122.59
3030.07
3184.44
4755.09
2145.14
2232.58
2759.93
2375.11
2642.14
2398.31
2907.77
2960.36
4594.13
3595.64
3240.03
3403.69
3458.85
5197.86
6.11932
29.7627
20.1442
21.268
31.5125
55.3002
69.7818
73.1064
52.1871
138.168
103.475
105.378
137.425
-4.67442
-5.70227
-5.33633
-4.47355
-4.14742
-4.27727
-4.31804
-2.93113
12.2399
13.3258
-0.367493
2.86529
37.8253
22.769
24.2213
35.5504
61.8124
76.9175
79.491
58.4314
-5.39463
-5.47329
-4.57563
-4.77367
-4.6165
-4.79671
-4.67565
-4.21375
-4.38163
-4.50258
3565.41
3720.47
3863.71
3998.82
4131.17
4273.52
4439.44
4644.06
3399.16
3219.32
3017.94
2786.73
2518.16
1863.53
1923.62
2002.69
1790.24
1739.88
1528.14
1596.31
1665.51
1326.15
1431.74
1468.29
1290.83
4897.15
3838.82
4001.3
4154.45
4300.43
4448.8
4609.93
4795.57
5013.01
5279.94
3664.33
3477.95
3276.86
3057.09
2809.16
2270.64
2051.25
2136.11
2181.65
1880.86
1937.09
2021.09
1798.73
1758.55
1568.93
1612.58
1714.07
2146.41
2233.45
2751.3
2364.38
2635.34
2397.87
2900.93
2957.55
4584.94
3597.56
3230.14
3403.61
3445.21
5200.25
2882.3
2615.46
2602.53
2913.32
3106.34
3189.26
5021.94
3761.86
3841.24
3904.06
3661.12
3401.27
3334.29
5599.33
-2.95986
12.5772
13.4645
-0.144819
2.87165
37.73
22.9412
24.2075
35.5635
62.4149
77.0434
79.9276
58.4395
-5.39548
-5.46989
-4.58677
-4.77613
-4.63286
-4.80082
-4.68516
-4.24498
-4.39673
-4.52703
-0.290157
-4.14826
12.7185
12.3489
6.71218
6.6566
47.3627
26.7058
32.222
42.4766
-5.48911
-4.66469
-4.86292
-4.68456
-4.90231
-4.68039
-4.74718
-4.61463
-4.74689
3665.75
3838.88
4000.47
4152.8
4298.85
4449.93
4615.4
4809.18
5032.98
3481.65
3283.6
3065.17
2815.7
2274.65
2053.39
2138.75
2188.13
1883.54
1943.92
2023.67
1806.07
1761.08
1575.97
1615.32
1720.38
5298.83
3923.79
4107.04
4278.99
4444.68
4605.1
4771.35
4950.21
5154.77
5387.33
5654.6
3730.49
3527.44
3316.45
3082.99
2399.58
2431.81
2526.83
2307.54
2289.99
2073.5
2157.71
2202.6
1904.37
1997.1
2045.69
1858.09
2888.33
2604.19
2599.09
2908.48
3110.14
3190.76
5013.01
3758.64
3824.73
3897.2
3646.82
3405.87
3336.44
5598.48
3090.39
3195.41
4201.78
4036.17
4067.46
4298.22
4475.61
4463.85
4757.91
4425.13
3607.49
3775.01
3791.61
3567.69
3428.08
3315.61
4589.91
6007.87
4763.72
-0.302466
-4.13244
13.0248
12.4954
6.85337
6.98246
47.6493
26.8294
32.4159
42.4885
-5.48486
-4.67198
-4.86482
-4.6953
-4.90515
-4.70034
-4.75324
-4.63259
-4.75186
2.02945
9.73922
10.6149
12.0016
25.6802
-4.8771
13.9014
21.1064
4.76704
-1.59791
-4.71444
-4.96067
-4.77866
-5.01222
-4.82636
-4.87855
-4.88457
-4.93684
3735.74
3927.02
4109.23
4280.6
4446.06
4606.93
4776.16
4960.69
5173.6
5413.46
3534.85
3324.58
3090.13
2403.75
2437.21
2530.81
2314.57
2292.74
2079.48
2160.24
2208.57
1906.75
2004.81
2048.49
1864.13
5675.82
3984.18
4186.02
4379.49
4561.65
4739.16
4913.78
5096.14
5290.5
5509.64
5756.46
6006.92
3774.56
3561.48
3337.37
2760.21
2548.62
2646.65
2659.84
2417.76
2453.53
2542.94
2329.07
2318.18
2133.61
2183.61
2268.85
3102.59
3192.9
4193.79
4018.55
4060.99
4268.77
4469.66
4463.47
4754.23
4408.33
3610.41
3767.92
3791.6
3563.62
3426.28
3319.78
6003.29
4581.79
4761.86
4368.38
4129.77
3943.73
3956.03
4433.43
4088.31
4549.67
4395.86
3610.05
3514.08
4777.17
4917.08
4974.79
4968.6
5553.74
5258.86
5252.49
5216.11
9.87617
10.6561
12.246
25.8975
2.27293
-4.88002
14.1128
21.3158
4.9349
-1.38988
-4.73902
-4.96835
-4.79533
-5.0181
-4.83972
-4.88313
-4.89587
-4.94106
11.9327
-3.4285
20.829
20.118
21.2785
23.6679
-4.79711
-5.02636
-4.87753
-5.15448
-5.00133
-5.09035
-4.95527
-5.01885
-4.92202
-5.0026
3782.1
3990.14
4190.36
4382.89
4564.97
4742.55
4918.7
5104.82
5306.26
5533.85
5786.12
3569.18
3344.26
2764.44
2554.47
2650.62
2666.56
2420.56
2459.85
2545.96
2335.41
2321.27
2142.1
2186.76
2276.48
6032.22
4024.38
4244.46
4455.84
4658.81
4850.48
5038.24
5225.64
5420.85
5629.47
5860.74
6119.51
6411.96
3802.52
3576.44
2868.74
2872.1
2978.86
2765.73
2775.33
2573.9
2662.07
2684.96
2446.41
2522.42
2570.53
2398.53
4364.29
4125.4
3929.71
3954.06
4424.91
4063.91
4551.89
4396.21
3613.46
3511.76
4748.68
4907.75
4896.95
4941.6
5562.85
5170.22
5220.51
5248.72
4612.92
4537.48
4814.72
4716.99
5141.34
4811.68
5061.99
4953.88
5497.55
5167.15
5274.99
5327.27
12.0382
20.8783
20.1438
21.3802
23.7105
-3.47746
-4.80887
-5.03112
-4.88183
-5.15406
-5.01979
-5.0977
-4.97086
-5.02519
-4.93766
-5.00808
17.8347
5.75189
-5.50022
21.0351
20.787
25.4531
26.7591
-5.00176
-5.20849
-5.15185
-5.39521
-5.05922
-5.14086
-4.99294
-5.06452
3809.89
4032.1
4251.02
4460.59
4663.01
4854.79
5043.53
5232.83
5433.87
5650.69
5889.64
6151.05
3582.95
2873.09
2879.4
2983.01
2774.22
2778.28
2579.59
2664.96
2690.84
2449.22
2530.38
2573.67
2405.38
6424.13
4044.86
4284.19
4513.05
4733.72
4943.65
5143.36
5340.7
5538.38
5744.7
5965.86
6207.47
6494.08
6819.12
3807.49
3178.18
2972.69
3080.41
3066.27
2883.13
2898.93
2989.09
2792.61
2803.4
2641.09
2688.85
2757.04
4614.79
4549.84
4823.66
4747.15
5075.9
4802.46
5040.59
4951.04
5489.82
5066.03
5251.37
5330.28
4866.96
4729.48
5266.86
5012.67
5129.79
5337.56
5595.72
5445.28
5533.46
5413.41
17.7983
5.71668
21.0944
20.8206
25.5157
26.7869
-5.52689
-5.01674
-5.21385
-5.1542
-5.39628
-5.08001
-5.1485
-5.01179
-5.07132
22.1471
19.3643
7.04904
23.3433
1.12722
-5.54625
-4.88883
-5.15581
-5.32972
28.7739
30.3336
-5.10401
-5.21382
-5.21175
-5.28957
3813.74
4051.23
4291.61
4520.3
4739.01
4948.98
5149.11
5347.69
5548.69
5762.15
5992.85
6241.57
6519.07
3182.58
2978.99
3084.23
3074.99
2886.04
2905.63
2992.24
2798.71
2806.77
2649.91
2692.24
2765.24
6822.05
4043.77
4306.1
4555.97
4789.5
5017.2
5231.79
5438.86
5643.7
5851.08
6067.56
6299.7
6555.45
6884.04
5610.11
5508.93
5832.25
5948.92
6264.14
5736.77
3270.82
3253.68
3374.15
3157.72
3182.18
3000.1
3087.96
3093.74
2911.11
2970.55
3014.42
2867.05
4870.82
4748.19
5254.91
4981.15
5124.58
5333.33
5579.84
5456.65
5538.41
5411.47
5424.46
5604.34
5490.71
5686.34
22.1666
19.3464
7.02727
23.3623
1.12148
28.8663
30.3763
-5.54668
-4.89524
-5.1595
-5.33039
-5.12182
-5.21997
-5.21745
-5.2916
22.9206
6.39216
9.39723
23.5137
22.5573
22.8326
1.43607
-2.11387
-3.97274
-3.56295
-2.7066
-5.68337
-5.13407
-5.31043
-5.44369
28.7904
30.1225
4048.83
3275.04
3260.59
3377.72
3166.4
4310.79
4563.23
4797.05
5023.3
5238.37
5446.2
5653.53
5865.38
6090.19
6332.29
6593.12
6901.66
3184.85
3006.41
3090.91
3099.2
2914.18
2978.77
3017.67
2874.51
5595.92
5483.47
5836.05
5978.03
6270.2
5742.36
4315.12
3658.33
3339.2
3498.74
3334.67
4583.51
4836.79
5071.5
5302.98
5521.72
5735.12
5947.9
6164.57
6389.47
6632.75
6903
7230.4
5717.91
5685.43
5929.43
5865.75
6110.81
5695.88
3268.58
3272.42
3361.96
3182.4
3196.59
3066.31
3109.37
3154.62
5432.88
5604.55
5478.02
5689.14
5617.54
5874.67
22.9493
6.32388
9.37492
23.5088
22.6035
22.8517
1.43298
-2.11332
-3.99057
-3.57827
-2.71506
28.8361
30.1359
-5.68472
-5.15099
-5.31586
-5.44683
7.12423
0.872288
6.87543
24.5417
24.4903
0.342724
1.9071
25.8753
26.7678
-2.36373
-2.41273
-2.23381
-2.56342
-4.33743
-4.98541
-5.11096
-4.47993
4317.46
3661.67
3343.62
3501.65
3339.44
3270.94
3276.39
3363.99
3187.56
4587.02
4843.33
5079.12
5310.56
5529.88
5744.95
5960.92
6183.88
6418.13
6668.88
6938.55
7228.3
3199.69
3074.98
3112.7
3162.14
5713.03
5648.64
5952.3
5818.42
6098.56
5755.73
4284.37
4610.65
3634.92
3350.82
3476.47
3356.74
4867.82
5119.84
5355.75
5589.61
5813.36
6033.37
6254.52
6478.98
6712.78
6965.64
7219.55
7642.81
6041.06
5856.91
6254.53
6009.71
6266.78
5981.48
3266.5
3263.26
3314.38
3224.57
5609.3
5878.51
7.05831
0.826624
6.83771
24.5749
24.5
0.289872
1.89233
25.9008
26.7743
-2.36632
-2.42745
-2.24613
-2.5767
-4.34411
-4.99542
-5.11583
-4.4906
0.319159
6.44376
0.642161
-4.01907
15.0794
21.5517
23.262
-3.94241
-3.29176
-2.76184
-2.4847
-3.59811
-3.73353
-3.64966
-3.73774
-3.75076
4290.75
4611.95
3637.76
3354.61
3478.55
3361.87
3269.08
3270.68
3317.24
3230.59
4870.77
5125.39
5363.62
5597.82
5822.24
6044.77
6270.52
6504.06
6747.84
7005.19
7252.08
7617.7
6050.36
5835.76
6270.44
6006.03
6249.99
5991.35
3729.51
4077.63
3468.89
3584.74
4630.9
4901.65
3338.05
3265.67
3330.84
3281.23
5149.84
5401.4
5642.15
5878.68
6107.77
6334.87
6563.77
6795.18
7037.29
7296.88
7474.16
6925.66
6588.81
6576.35
6586
6164.33
6344.46
6431.6
6104.98
0.343861
6.41707
0.651417
-4.03616
15.128
21.5942
23.2832
-3.92947
-3.30298
-2.77242
-2.49648
-3.61671
-3.74845
-3.67075
-3.75337
-3.76636
-2.30499
4.7991
2.89919
4.75054
4.32013
-12.8868
-5.93871
-3.18604
-4.61686
-4.39377
-3.88188
-4.99494
-12.1276
-5.25653
-4.66316
-3.96992
-4.13164
-4.61557
3735.27
4080.65
3474.3
3587.87
4632.52
4902.81
3340.54
3273.2
3333.84
3286.15
5152.17
5405.9
5648.16
5885.54
6115.99
6347.15
6582.97
6826.64
7078.32
7336.87
7537.16
6937.08
6458.52
6549.08
6628.4
6117.23
6328.2
6443.12
6113.65
4746.35
3644.4
3872.01
3081.46
3309.37
4931.05
5182.39
5427.68
5682.65
5930.48
6171.61
6406.38
6639.8
6874.8
7112.59
7366.62
7631.05
8006.55
6749.34
6149.36
6486.86
6525.17
6614.17
6733.22
-2.28294
4.77277
2.88264
4.73184
4.28777
-13.0139
-5.92598
-3.19842
-4.61115
-4.38835
-3.89972
-4.97746
-12.2263
-5.2535
-4.67335
-3.98423
-4.13449
-4.63618
8.02432
-3.88209
12.77
12.6124
9.52425
10.2654
9.58543
-5.47994
-5.27075
-5.45692
-5.40121
-5.33712
-4.82103
-5.11205
-5.13469
-5.22077
-5.41057
-5.60344
-5.12844
-4.66216
-5.41284
-4.90099
15.4419
-5.63979
4744.02
3655.49
3876.47
3088.86
3312.95
4931.87
5183.66
5430.02
5686.19
5934.79
6176.86
6414
6653.51
6899.24
7151.62
7411.31
7664.84
8045.25
6703.09
6281.86
6403.08
6646.02
6512.43
6487.21
4976.17
4377.61
3990.69
4122.7
4033.53
3627.32
3814.66
5210.61
5456.22
5705.09
5968.98
6221.45
6467.8
6708.48
6947.5
7187.88
7435.68
7703.21
8016.35
6873.09
7324.18
6845.49
6965.35
6929.49
6884.31
8.07843
-3.87609
12.7543
12.6274
9.53291
10.2778
9.52939
-5.48117
-5.2634
-5.45344
-5.40552
-5.3384
-4.81835
-5.10633
-5.13869
-5.2281
-5.41655
-5.60353
-5.14529
-4.66573
-5.40233
-4.90096
15.4742
-5.63111
29.9785
2.78467
-5.44283
25.1426
27.5283
19.5647
21.6664
25.1243
-5.34025
-5.81119
-5.58294
-5.702
-5.26333
-5.61932
-5.14807
-4.99236
-4.60128
-5.51032
-4.82331
-4.73163
-4.94743
29.5776
-4.94123
4979.83
4378.63
3998.98
4125.9
4036.02
3643.05
3819.74
5210.98
5457.82
5707.32
5971.71
6224.81
6472.44
6716.54
6964.32
7220.16
7481.25
7746.87
8024.27
6868.14
7301.45
6724.13
6927.76
6916.59
6858.53
5072.1
5252.97
4428.42
4021.74
4213.48
4101.05
5482.87
5730.42
5992.61
6261.12
6517.05
6767.6
7013.92
7258.04
7503.62
7765.99
8055.23
8316.39
6988.28
7160.78
6666.91
7014.57
7132.94
6842.15
30.0636
2.81851
-5.44012
25.0413
27.3117
19.5275
21.6112
24.9745
-5.3439
-5.81601
-5.5936
-5.70464
-5.27423
-5.63306
-5.15157
-5.00164
-4.62017
-5.49918
-4.82822
-4.74298
-4.95129
29.5139
-4.92233
66.3422
38.8482
35.6913
14.8726
-3.05964
-4.47651
39.7211
42.2934
43.6161
-5.21955
-5.1213
-5.04015
-4.96444
-4.64846
-5.26256
-4.84009
-4.68755
-4.88871
-4.93785
-5.00405
47.791
-4.42848
5068.95
5253.22
4427.1
4019.83
4213.73
4098.03
5483.48
5732.22
5994.63
6263.21
6520.13
6772.51
7023.73
7280.44
7545.93
7813.4
8088.88
8318.54
6924.22
7136.72
6684.56
7011.16
7137.95
6890.92
5098.42
5336.8
5525.31
4448
4032.19
4242.89
4111.6
5763.76
6019.35
6290.28
6558.91
6817.54
7071.19
7322.23
7570.02
7823.85
8111.08
8405.52
7073.31
7279.15
7643.44
7210.6
7181.7
7306.31
7053.93
7450.03
66.2292
38.773
35.6719
14.9332
-3.07377
-4.43655
39.6215
42.073
43.3754
-5.2257
-5.13763
-5.04606
-4.97974
-5.24793
-4.65706
-4.84371
-4.69697
-4.89211
-4.95175
-5.00959
47.733
-4.36378
115.341
60.5638
73.1166
79.3843
54.1015
33.204
2.06491
-3.36092
-3.56183
56.3076
59.2155
60.943
-5.14288
-5.07086
-4.55089
-4.79357
-4.36984
-4.24845
-4.43699
-4.05397
-4.73376
-4.49105
-4.63099
-4.87513
-4.87998
-4.94753
-5.00435
-5.08411
62.8517
-4.21463
-3.88113
-4.09823
5095.02
5335.27
5526.12
4446.81
4030.44
4242.82
4108.87
5764.91
6020.72
6291.75
6561.22
6820.87
7077.45
7335.75
7601.13
7874.96
8153.62
8416.19
6987.66
7255.91
7642.75
7223.5
7157.86
7299.01
7071.35
7450.8
5013.61
4410.11
4066.4
5360.98
5585.13
5806.19
4025.73
4158.79
6058.31
6324.84
6594.13
6860.95
7121.52
7378.36
7633.18
7885.42
8153.8
8481.79
8735.63
6978.5
7375.44
7445.22
7207.95
7348.36
7587.41
115.069
60.3947
72.8873
79.3289
53.9609
33.18
2.07574
-3.38092
-3.4866
56.1163
59.1209
60.6977
-5.15036
-5.09037
-4.5543
-4.36462
-4.24836
-4.44202
-4.02662
-4.73295
-4.49409
-4.63132
-4.8129
-4.88286
-4.89788
-4.95465
-5.0245
-5.09162
62.8586
-4.13257
-3.84358
-4.08687
206.822
129.562
96.4453
100.436
129.238
66.225
76.2113
77.7243
8.88698
-1.60722
-2.65641
-3.51294
85.0227
-4.65544
-4.10848
-4.37011
-4.53569
-4.24632
-4.74295
-4.51408
-4.65803
-4.9166
-5.02502
86.6138
-3.80644
-3.3922
-3.62
-3.62919
-3.98248
-3.90844
-4.06623
-3.87732
5017.51
4410.71
4067.23
5359.4
5585.44
5807.52
4033.36
4161.69
6058.94
6325.81
6595.88
6863.43
7125.74
7387.08
7652.42
7928.47
8207.58
8506.45
8721.61
7035.46
7392.6
7433.69
7139.49
7303.06
7586.36
4788.58
5290.77
4977.47
5603.76
5843.92
6098.37
3702.95
3881.52
6363.25
6633.53
6900.14
7166.1
7428.72
7688.49
7945.79
8206.54
8491.67
8887.34
7472.94
7919.51
7330.26
7573.22
7382.12
7804.23
7626.58
7481.13
206.464
129.405
96.2101
100.401
128.985
66.0541
75.8616
77.626
8.90851
-1.63702
-2.68023
-3.39342
84.8162
-4.6764
-4.09604
-4.38342
-4.24848
-4.5409
-4.75093
-4.53104
-4.66447
-4.94112
-5.03415
86.6204
-3.77941
-3.27815
-3.56596
-3.56909
-3.97432
-3.87024
-4.05084
-3.85395
346.537
184.926
235.156
244.522
177.475
138.663
149.192
105.745
102.712
147.039
23.6285
0.263103
-1.82818
-2.48353
-3.53446
116.583
-4.1743
-4.1116
-4.37947
-4.23411
116.296
-3.69759
-3.92642
-3.34472
-3.51264
-3.52051
-3.81183
-4.14244
-3.95728
4786.43
5291.37
4978.46
5603.97
5844.99
6099.16
3721.2
3886.96
6363.85
6634.56
6902.09
7169.19
7434.74
7700.95
7974.33
8261.35
8533.61
8890.23
7496.89
7916.21
7329.21
7570.96
7396.08
7807.15
7626.38
7465.63
3777.81
4128.55
3706.48
3937.37
4682.69
5561.31
5253.62
4967.07
5857.99
6125.47
6399.79
6671.01
6938.16
7206.44
7474.64
7738.05
7999.4
8260.16
8539.89
8830.14
9189.11
7359.42
7697.23
7258.74
7744.01
7864.01
7575.45
346.095
184.713
234.737
244.234
177.195
138.326
148.9
105.315
102.556
146.761
23.5857
0.254738
-1.88668
-2.4911
-3.42032
116.345
-4.09013
-4.17952
-4.22641
-4.38625
116.268
-3.65871
-3.91031
-3.27205
-3.46718
-3.46254
-3.76387
-4.1398
-3.95366
526.999
382.156
299.365
314.235
368.271
266.638
201.55
251.085
260.353
195.946
68.6218
159.408
158.119
4.81323
-1.06126
-1.73363
-2.7801
-3.08601
-3.27488
-2.79882
-3.04673
-3.63278
-3.83777
-3.32943
-3.42418
-3.52004
-3.65718
3783.63
4131.51
3718.61
3942.16
4684.45
5254.08
5562.32
4967.77
5858.85
6126.57
6400.77
6671.87
6939.9
7208.93
7479.2
7747.39
8018.29
8302.38
8599.12
8852.32
9165.26
7338.05
7696.04
7322.75
7763.97
7868.09
7539.14
4334.59
3521.74
3639.74
3139.76
3371.23
4677.98
5839.87
5531.18
5243.22
4947.78
6135.15
6420.94
6703.57
6976.83
7243.2
7515.72
7784.47
8048.4
8310.42
8581.75
8895.68
9125.12
7951.93
7601.45
7783.48
7680.75
7729.58
7946.06
526.691
381.983
298.992
314.01
367.922
266.175
201.459
250.588
260.246
195.539
68.5103
159.334
157.858
4.83941
-1.09941
-1.82856
-2.74107
-3.10591
-3.26921
-2.80953
-3.04273
-3.60225
-3.81821
-3.32018
-3.41855
-3.49309
-3.60097
745.882
461.213
526.247
549.396
442.779
443.563
393.272
311.518
324.629
377.848
173.881
213.363
266.798
273.235
209.128
25.7544
0.262524
-1.30621
-2.12125
-2.97782
-3.10974
-3.24693
-2.87319
-3.05035
-3.29923
-3.41078
4340.96
3527.74
3642.89
3149.07
3375.23
4678.78
5531.79
5244.23
5840.98
4949.91
6136.29
6422.12
6704.81
6978.36
7245.6
7519.51
7791.67
8062.48
8339.72
8638.87
8940.38
9148.62
7955.41
7567.78
7761.7
7691.53
7715.95
7936.57
4377.77
3695.5
3388.41
3669.34
3370.78
3310.53
3368.04
4663.81
6130.12
5818.16
5510.91
5226.89
4935.68
6430.67
6720.71
7005.91
7280.09
7551.17
7827.16
8095.82
8358.76
8622.91
8916.6
9275.38
7991.41
7772.06
8275.43
7598.08
8177.2
7810.82
8212.9
7928.28
745.967
461.166
525.903
549.439
442.462
443.205
393.34
311.088
324.516
377.904
174.089
213.43
265.946
274.081
208.775
25.7962
0.283458
-1.34204
-2.11188
-3.00798
-3.14555
-3.25062
-2.89134
-3.04684
-3.31489
-3.41701
1004.67
749.767
616.855
647.192
715.86
661.183
471.448
537.172
558.587
454.04
338.551
407.444
329.733
338.033
398.03
101.443
9.65738
-0.711032
-1.63492
-2.32109
-3.45157
-3.22659
-3.27814
-3.01603
-3.12786
-3.29483
-3.40392
4379.56
3699
3393.59
3672.07
3375.93
3316.11
3370.73
4666.64
5818.69
5512.53
5229.06
6131.48
4941.31
6431.8
6722.12
7007.45
7282.37
7555.05
7833.28
8106.42
8380.32
8665.81
8980.85
9282.78
8003.73
7751.95
8264.57
7615.98
8181.44
7794.37
8211.77
7885.8
4100.25
4382.66
3533.45
3378.81
3507.74
3372.04
3285.36
3349.04
4654.19
6430.83
6113.06
5791.47
5500.55
5217.49
4907.54
6732.34
7021.86
7308.29
7585.05
7862.01
8138.12
8405.53
8669.62
8937.9
9287.27
9491.51
8069.65
7699.33
8043.05
7758.76
8487.03
8195.29
1005.49
750.574
617.082
647.458
717.299
661.023
471.694
538.12
559.086
454.485
338.876
407.852
329.436
338.376
397.808
102.141
9.64925
-0.767275
-1.57139
-2.40351
-3.46076
-3.28981
-3.30074
-3.04566
-3.14474
-3.36652
-3.43112
1303.23
860.455
933.888
975.844
821.649
922.258
759.572
628.468
656.043
724.5
544.806
485.922
558.445
572.358
474.326
234.137
60.3727
4.32289
-1.09675
-1.69841
-3.37489
-2.87082
-3.13786
-3.12946
-3.26336
-3.20645
-3.29926
-3.30921
-3.35398
4105.06
4387.42
3536.23
3382.61
3509.83
3375.9
3293.27
3352.18
4660.8
6114.08
5792.37
5503.03
5221.67
6431.8
4915.48
6733.67
7023.44
7310.56
7588.81
7867.9
8147.81
8422.93
8700.89
8994.57
9327.05
9462.68
8081.18
7702.58
8046.82
7739.17
8487.59
8177.37
3859.2
4118.02
4379.51
3405.31
3296.13
3387.82
3281.69
3272.21
3322.54
4629.55
6733.12
6417.73
6090.26
5780.59
5497.15
5189.99
4874.07
7034.14
7325.2
7612.86
7893.43
8173.78
8448.28
8715.95
8980.87
9254.73
9685.94
7859.31
8155.64
8040.44
8530.59
8479.95
8045.1
8216.17
8148.08
1305.07
861.757
937.367
977.69
823.687
922.584
760.662
630.131
656.834
727.157
545.119
486.579
559.873
573.343
474.759
235.721
60.7972
4.21823
-1.00071
-1.90028
-3.57815
-2.87732
-3.13247
-3.14509
-3.26812
-3.25596
-3.33038
-3.39249
-3.38914
1628.95
1234.79
1055.42
1104.96
1180.09
1229.64
872.005
943.496
991.186
829.682
789.067
771.963
652.11
669.892
751.79
404.55
154.608
37.761
2.57689
-0.922041
-4.16887
-3.66698
-3.08283
-3.20237
-3.32703
-3.33422
-3.39208
-3.42618
3865.26
4124.41
4387.05
3408.52
3300.48
3389.98
3287.09
3279.52
3325.44
4637.2
6418.24
6091.36
5782.1
5500.47
5197.77
6734.42
4880.48
7035.64
7327.41
7616.42
7899.13
8183.79
8464.53
8742.26
9025.93
9315.21
9681.7
7872.66
8166.16
8029.64
8524.21
8504.23
8082.76
8236.51
8214.34
3624.46
3299.02
3183.8
3870.94
4116.76
4358.61
3200.7
3288.81
3226.01
3267.66
4593.79
7035.26
6723.98
6397.78
6073.26
5777.83
5475.48
5157.82
4821.43
7337.06
7631.08
7919.76
8203.85
8485.79
8759.98
9027.41
9292.22
9570.81
9943.27
8013.97
8418.42
7911.83
8293.12
8281.76
8594.84
1631.52
1237.8
1060.15
1107.35
1187
1230.89
873.22
945.943
992.271
832.887
788.813
773.118
654.005
670.983
753.802
405.49
156.52
38.6488
2.87518
-1.33012
-4.76377
-3.65639
-3.03664
-3.17879
-3.30958
-3.39058
-3.38094
-3.44435
1963.79
1376.09
1446.84
1512.6
1316.86
1572.4
1255.03
1068.3
1123.48
1191.26
1092.17
885.829
973.758
1002.48
860.679
600.891
258.806
94.1078
28.1196
1.89933
-3.51
-4.82906
-2.78137
-2.91728
-2.70133
-2.4661
-3.10676
-3.17552
-3.29238
-3.38746
3630.74
3302.62
3190.48
3878.34
4124.15
4365.38
3205.7
3291.15
3232.07
3270.28
4599.29
6724.89
6398.59
6074.79
5780.49
5480.82
5165.64
7036.83
4827.03
7339.19
7634.56
7925.59
8214.01
8502.61
8784.8
9065.58
9351.12
9608.59
9917.23
8069.8
8450.53
7919.45
8300.4
8277.61
8609.18
3387.26
3203.69
2995.69
3106.93
3089.23
3629.26
3863.83
4095.31
4320.46
3108.82
3198
3152.47
3193.92
4539.25
7339.37
7027.69
6704.71
6376.32
6066.08
5761.13
5442.94
5107.43
4748.31
7642.05
7938.83
8228.4
8515.55
8799.46
9072.59
9341.86
9613.74
9851.27
8380.7
8269.15
8554.85
8229.28
8281.73
8707.96
8279.27
8466.95
1967.1
1379.41
1456.86
1516.73
1324.13
1574.64
1256.94
1071.47
1124.82
1196.94
1091.42
887.276
978.29
1004.31
863.706
599.859
260.348
95.7594
30.7039
2.1785
-4.53713
-4.91261
-2.65617
-2.85496
-2.65016
-2.33848
-2.97938
-3.11914
-3.20295
-3.34874
2295.72
1794.31
1582.51
1652.54
1714.04
1927.69
1396.67
1462.88
1536.08
1326.3
1453.64
1264.15
1097.37
1131.29
1227.98
873.828
370.435
128.569
58.4343
18.6161
0.0622879
-7.59521
-2.22585
-2.74975
-2.77093
-2.30905
-2.19121
-2.99953
-3.09547
3394.1
3207.38
3001.13
3110.21
3096
3637.32
3871.34
4101.13
4325.18
3113.66
3200.52
3159.78
3196.94
4543.61
7029.32
6705.57
6377.53
6068.1
5764.84
5450.86
5114.63
7341.59
4752.95
7645.5
7944.69
8238.57
8533.38
8825.86
9108.86
9392.35
9664.21
9891.97
8379.5
8288.99
8566.33
8232.42
8310.88
8727.5
8308.75
8478.35
3141.26
2897.18
2893.6
3005.08
2789.07
3387.47
3014.58
3102.55
3616.25
3839.11
4054.69
4262.92
3063.71
3106.32
4461.47
7645
7331.22
7010.95
6684.1
6362.21
6049.37
5730.77
5395.22
5039.53
4656.06
7949.09
8246.91
8537.63
8829.17
9113.18
9388.62
9665.33
9902.37
9092.92
8363
8699.78
8534.85
8863.86
8477.66
8810.38
8442.62
2300.07
1798.7
1591.92
1656.64
1724.57
1930.45
1398.6
1467.39
1538.05
1332.16
1452.2
1266.18
1102.63
1133.31
1232.89
870.007
370.128
130.418
57.877
21.5806
-1.12091
-6.61564
-2.08263
-2.55787
-2.66722
-2.23426
-2.05868
-2.80464
-2.99142
2599.51
1933.25
1984.16
2071.16
1849.66
2270.62
1818.25
1601.41
1678.57
1734.25
1837.7
1406.89
1502.29
1546.17
1366.79
1242.8
582.373
156.026
64.4478
36.9253
10.278
-3.61726
-0.619093
-0.934379
-1.0536
-1.38031
-1.49064
-2.4447
-2.52781
-2.02838
-1.91701
3147.91
2901.58
2900.33
3008.83
2797.93
3395.98
3020.07
3105.45
3623.82
3844.57
4058.74
4266.34
3072.15
3109.53
4464.98
7333.56
7012.58
6685.33
6363.92
6052.11
5736.41
5403.95
5045.67
7648.5
4659.81
7954.95
8257.16
8555.44
8860.18
9153.42
9436.71
9720.38
9942.95
9054.02
8361.73
8701.32
8483.36
8894.81
8430.07
8825.87
8422.66
2880.89
2792.8
2582.01
2684.42
2686.94
3136.64
2904.33
2918.36
3007.3
2815.58
3369.49
3587.76
3795.1
3992.95
4180.6
2970.59
3013.61
4362.71
7951.58
7636.63
7316.84
6990.62
6663.99
6342.97
6021.6
5685.38
5332.59
4953.91
4540.86
8256.83
8554.98
8846.19
9144.84
9430.5
9713.52
9994.89
10398.2
8725.86
8398.54
8697.35
8428.11
2604.32
1937.61
1994.29
2075.67
1860.03
2275.15
1820.62
1605.78
1680.57
1739.92
1836.72
1409.26
1510.66
1549.28
1372.27
1236.96
579.322
156.73
64.8665
35.4169
9.74041
-1.74183
-0.458184
-0.920374
-1.03722
-1.40903
-1.49634
-2.27955
-2.44773
-2.00337
-1.87153
2328.5
2115.1
2203.7
2235.44
2584.18
1954.9
2002.45
2089.68
1867.84
2207.96
1831.06
1641.26
1690.06
1780.88
1668.72
934.406
291.004
89.8155
31.3778
22.1496
6.81415
2.87294
-0.184711
-0.809693
-0.88626
-1.15768
-1.2423
-1.65252
-1.51996
2886.92
2797.31
2590.41
2688.65
2696.08
3145.04
2906.78
2923.74
3010.19
2820.05
3376.64
3592.17
3797.78
3994.83
4182.19
2978.26
3016.66
4364.33
7640.37
7319.18
6992.29
6665.72
6345.25
6025.58
5693.48
5340.96
4959.33
7957.4
4542.71
8267.14
8572.94
8878.31
9195.12
9487.92
9763.65
10037.8
10357.4
8702.49
8368.42
8705.68
8396.8
2449.95
2470.25
2571.19
2353.36
2871.94
2801.47
2606.11
2693.85
2712.6
3114.51
2914.32
2870.76
3333.94
3535.82
3725.3
3903.64
4073.29
4236.08
8259.01
7945.05
7624.29
7297.02
6968.31
6641.8
6314.56
5978.37
5627.09
5254.43
4849.14
4402.61
8564.42
8862.72
9154
9463.34
9755.93
10060
10374.1
8525.26
8759.4
8503.29
8630.52
8735.7
8578.47
8981.46
8578.5
2333.2
2126.22
2208.6
2245.95
2590.49
1957.5
2007.84
2092.25
1874.25
2208.03
1834.15
1650.58
1693.32
1789.12
1663.22
928.787
290.471
90.5412
31.6146
21.4088
7.05118
2.95679
-0.140133
-0.875417
-0.913588
-1.24977
-1.29243
-1.67548
-1.556
2343.65
2132.4
2218.81
2255.03
2542.1
1969.87
2051.28
2103.59
1919
2083.86
1417.92
601.869
133.326
57.0437
32.5789
13.1802
6.40683
1.88909
-0.418357
-0.735469
-0.798485
-0.418976
-1.02677
-1.09667
-1.21141
-1.29869
2454.72
2479.61
2575.81
2363.44
2879.7
2803.92
2610.13
2696.41
2716.17
3120.53
2917.25
2877.86
3336.34
3536.12
3724.56
3902.55
4071.8
4234.73
7950.77
7628.12
7299.4
6970.32
6644.03
6317.78
5984.47
5636.99
5262.17
4853.86
8269.32
4403.68
8582.43
8893.96
9207.03
9542.64
9816.59
10080.4
10368.3
8562.81
8765.4
8535.11
8624.58
8725.22
8595.2
8984.35
8563.74
2463.32
2492.5
2581.44
2374.37
2842.26
2811.89
2656.55
2704.21
2765.71
3067.67
3268.2
3452.27
3625.05
3786.24
3937.31
4086.03
8567.15
8254.21
7933.4
7606.12
7275.4
6944.09
6612.04
6274.73
5923.83
5555.98
5159.18
4725.16
4245.59
8871.48
9168.4
9464.96
9793.64
10112
10395.5
8514.56
8783.67
8534.33
8837.48
8683.53
8941.12
8630.52
8966.56
2346.29
2136.24
2221.15
2259.71
2544.01
1972.75
2060.41
2106.87
1926.61
2078.29
1411.41
598.489
133.691
56.7194
32.0948
13.4407
6.0967
1.89004
-0.404203
-0.758955
-0.809535
-0.38394
-1.07994
-1.12128
-1.27325
-1.33078
2358.92
2180.13
2233
2307.67
2454.83
1895.41
1144.84
406.777
98.0241
35.6474
23.9613
10.2433
4.42752
0.526835
-0.528284
-0.68436
-0.791149
-0.482261
2465.84
2496.72
2584.01
2379.27
2846.5
2815.24
2665.41
2707.63
2773.94
3067.7
3265.25
3447.66
3620.59
3781.9
3933.86
4083.85
8264.55
7939.32
7609.97
7278.05
6946.68
6615.13
6279.57
5933.02
5566.01
5166.6
4729.79
8585.2
4245.28
8902.91
9221.14
9539.98
9883.83
10133.9
10343.9
8548
8793.88
8537.9
8823.61
8676.28
8941.59
8673.43
8975.39
2477.94
2545.34
2593.67
2429.15
2778.81
2982.89
3164.36
3335.6
3496.88
3644.72
3781.3
3916.37
8874.15
8563.8
8243.32
7916.14
7585.2
7249.95
6913.96
6574.31
6223.68
5858.33
5470.48
5049.27
4583.81
4065.79
9176.59
9477.14
9789.38
10131.3
10452.6
8629.76
9045.27
8558.52
8897.31
8661.53
8920.37
8716.1
8979.91
2362.26
2189.75
2236.46
2316.06
2450.28
1887.97
1139.55
405.437
98.761
34.8163
23.0533
9.95396
4.36187
0.549077
-0.54049
-0.721647
-0.812806
-0.49377
2314.31
1672.64
943.842
334.973
97.637
40.9206
15.6323
8.24739
3.33951
0.422027
0.524202
-0.195196
-0.284888
-0.655394
-0.564097
2480.85
2553.15
2596.79
2436.3
2776.44
2977.03
3156.69
3328.39
3491.32
3640.82
3777.76
3912.65
8582.3
8253.71
7922.64
7589.45
7253.36
6917.67
6578.92
6231.7
5870.15
5480.25
5057.29
4588.27
8906.37
4064.97
9229.75
9550.25
9867.65
10175.2
10354.1
8645.01
9057.89
8561.16
8890.89
8764.94
8957.97
8788.47
9004.59
2670.06
2856.15
3030.07
3196.95
3350.31
3487.38
3605.7
3721.32
9180.58
8874.33
8553.47
8227.01
7895.56
7559.12
7219.95
6877.14
6526.64
6163.12
5781.18
5372.99
4923.21
4426
3866.46
9485.62
9799.94
10130
10636.3
8707.94
9260.19
8757.41
9419.83
8881.24
9293.87
8771.39
9094.86
9048.8
9311.7
2305.88
1665.91
940.808
334.286
97.5474
40.4533
15.9388
7.76961
3.28788
0.421029
0.522582
-0.192367
-0.285637
-0.66177
-0.576248
2131.54
1486.13
842.57
358.898
146.37
66.2331
31.4762
13.3799
1.78123
1.986
2.20996
2.5907
0.265155
0.283838
-0.118589
-0.12856
2662.4
2847.02
3022.52
3191.95
3347.05
3484.13
3601.96
3718.09
8907.24
8571.57
8237.49
7902.72
7564.37
7224.57
6882.61
6534.19
6175.41
5794.63
5384.21
4932.73
4431.01
9232.98
3866.01
9557.5
9869.44
10193.2
10512.5
8655.08
9248.52
8695.95
9375.85
8920.45
9318.23
8818.72
9114.58
9072.78
9324.02
2518.95
2706.61
2886.33
3051.38
3195.57
3314.75
3408.04
3502.19
9491.68
9185.32
8865.46
8537.11
8206.12
7869.18
7528.56
7184.57
6832.55
6470.82
6092.36
5694.09
5261.84
4787.23
4253.39
3646.77
9808.06
10139.9
10487.3
10639.6
8967.24
9504.44
8983.95
9515.31
9154.92
9499.36
9117.9
9378.66
2122.66
1483.04
841.645
358.338
146.426
66.323
31.1647
13.266
1.77267
1.9806
2.20056
2.57561
0.268891
0.288188
-0.129011
-0.136246
1951.68
1369.02
814.405
431.955
234.55
134.983
78.1896
40.5387
2.6186
2.29681
6.42503
5.50779
2509.21
2699.68
2883.12
3050.28
3194.28
3310.96
3404.87
3501.03
9241.01
8895.17
8554.82
8217.3
7877.72
7535.64
7190.91
6841.12
6483.49
6109.06
5709.75
5275.88
4799.34
4258.6
9560.05
3647.74
9877.2
10174.4
10468.7
10480.3
8962.08
9480.28
8941.67
9467.91
9125.47
9466.77
9093.85
9367.64
2353.84
2562.07
2747.34
2905.51
3033.82
3123.58
3184.57
3260.74
9817.21
9499.41
9175.85
8848.37
8516.17
8180.16
7839.72
7493.89
7142.01
6780.2
6404.99
6014.15
5597.8
5146.34
4642.29
4067.48
3427.71
10149
10495
10810.5
9627.48
8960.66
9583.13
8998.19
9183.01
9541.71
9259.14
9618.16
1947
1367.99
813.688
432.088
235.043
135.069
77.919
40.5993
2.60889
2.29997
6.44251
5.51129
1817.08
1293.33
832.445
521.988
344.906
238.552
162.309
45.5518
78.5294
101.286
47.5497
5.96555
5.43188
20.8116
13.2386
2347.45
2559.47
2747.04
2905.54
3031.65
3119.49
3184.02
3260.96
9587.61
9222.85
8876.45
8534.31
8193.27
7850.2
7503.66
7152.45
6794.88
6425.25
6034.33
5616.92
5163.1
4655.5
4074.64
9878.47
3426.07
10188.5
10478.8
10675.1
9573.36
8891.69
9535.54
8936.39
9160.06
9496.71
9220.86
9573.3
2209.33
2428.41
2610.16
2756.05
2856.55
2903.41
2925.35
2997.61
10162.8
9830.2
9487.5
9159.23
8827.14
8491.17
8151.93
7805.68
7453.05
7091.84
6718.84
6333.98
5931.01
5497.81
5021.93
4491.33
3885.56
3210.23
10502.5
10837.8
9235.41
8877.64
9349.82
8868.64
9803.16
9137.75
9670.24
9230.08
1816.7
1292.35
832.322
521.96
344.841
238.9
162.046
45.5704
78.9833
101.355
47.6903
5.94773
5.42628
20.8509
13.2574
1715.3
1243.62
864.805
611.216
465.798
360.325
301.772
136.134
189.835
206.683
54.8195
122.928
135.909
59.6833
21.5021
11.6802
2207.33
2427.91
2609.88
2755.8
2853.95
2901.5
2926.89
2999.93
9922.79
9557.45
9201.83
8855.38
8511.56
8167.93
7820.59
7468.33
7110.41
6743.33
6359.53
5955.42
5519.62
5042.37
4503.93
3886.88
10198.2
3201.73
10497
10740.7
9193.91
8808.21
9313.48
8808.83
9784.44
9123.28
9659.12
9220.13
2084.7
2299.23
2472.29
2596.17
2651.49
2645.69
2636.84
2722.52
10517.2
10192.1
9809.05
9473.53
9138.07
8802.41
8463.91
8119.29
7766.38
7405.5
7034.45
6653.37
6262.24
5844.37
5395.21
4904.25
4344.04
3718.92
3026.16
10837.5
9264.76
8914.44
9251.64
8933.09
9469.07
9053.13
9623.2
9005.64
1716.75
1243.28
864.669
610.894
465.684
360.537
301.174
136.182
189.792
206.157
54.995
123.444
136.15
59.8535
21.5908
11.7015
1629.98
1217.75
901.183
711.924
588.096
480.322
325.365
191.208
219.406
262.09
153.748
161.414
2085.95
2299.54
2471.51
2594.5
2648.35
2643.5
2642.5
2725.67
10226.1
9871.32
9533.74
9180.37
8833.51
8489.33
8141.68
7788.68
7430.68
7064.48
6685.42
6291.37
5871.41
5419.36
4920.83
4353.79
3711.67
10505
3008.87
10758.6
9234.23
8878.14
9232.13
8887.85
9460.87
9054.22
9614.03
9034.11
1974.79
2176.74
2326.61
2411.79
2415.11
2362.43
2358.75
2536.2
10925.2
10615.4
10171.3
9798.31
9453.6
9114.31
8777.5
8434.47
8083.55
7722.06
7351.19
6974.67
6591.89
6187.9
5759.94
5304.64
4788.33
4218.27
3558.19
2561.7
2604.85
2315.12
2371.99
9263.18
8930.71
9264.16
8941.99
9510.58
9095.35
9518.94
9079.82
1630.13
1218.34
901.153
711.929
587.778
478.724
325.029
191.423
219.544
261.734
154.821
161.972
1554.7
1200.63
957.618
811.689
694.137
465.838
568.142
388.938
449.69
338.833
233.385
248.258
313.764
1977.56
2176.96
2325.54
2406.45
2408.43
2361.8
2366.27
2526.06
10574
10201.8
9852.31
9512.28
9159.31
8815.94
8468.7
8115.78
7755.81
7389.06
7013.24
6625.58
6218.73
5787.56
5324.25
4798.27
4207.76
3538.72
10819.8
2555.11
2599.21
2312.44
2366.88
9246.86
8903.53
9251.96
8904.61
9493.55
9086.56
9509.15
9080.6
1876.08
2055.83
2170.05
2208.26
2164.03
2088.14
2122.65
1886.72
1959.8
2087.1
2143.81
10753.6
9265.1
9003.56
9360.19
8942.01
10475.2
10168.4
9777.7
9427.75
9094.7
8755.61
8404.13
8041.14
7672.69
7297.71
6921.77
6528.82
6118.4
5689.79
5222.55
4666.08
3562.07
3535.68
3700.09
3295.81
2827.08
2842.32
3108.28
2999.86
3284.69
3321.88
2490.38
2523.25
2225.85
2299.04
9515.34
9093.5
9531.86
9085.57
1554.82
1201.11
958.171
811.666
692.489
468.051
567.622
390.113
449.72
338.89
233.839
248.581
314.198
1494.24
1205.83
1025.65
905.394
544.934
687.723
620.113
801.336
535.68
581.528
448.149
476.557
376.936
361.195
1876.17
2055.07
2168.35
2203.07
2156.9
2088.94
2122.71
1888.7
1960.03
2087.96
2142.36
10646.3
10398.8
10214.2
9832.67
9489.3
9147.34
8804.03
8449.52
8086.52
7718.92
7342.21
6958.75
6563.73
6147.15
5709.16
5228.51
4656.35
3554.89
3516.42
3694.75
3279.94
2818.37
2836.24
3095.19
2993.22
3271.32
3317.31
9238.49
8967.84
9353.28
8881.45
2478
2519.57
2219.79
2296.73
9502.89
9078.88
9523.3
9056.78
1783.41
1936.11
2016.52
2010.16
1919.74
1833.58
1696.7
1772.63
1536.6
1631.11
1773.3
1882.67
1979.94
2079.34
9401.64
8886.37
9287.56
8945.84
9598.93
8692.32
9323.68
8984.66
9500.43
9047.81
9507.76
9081.92
8705.47
10478.4
9243.92
10118.3
9742.44
9415.86
9087.58
8734.09
8367.35
7999.75
7625.65
7251.28
6873.71
6470.54
6050.28
5650.47
5114.09
4056.77
3722.99
3880.43
3934.79
3359.17
3465.3
2729.57
2729.1
3259.14
2977.48
3154.75
2926.25
1496.39
1206.27
1025.54
903.342
545.96
686.576
622.26
800.639
537.495
581.407
448.894
476.372
376.859
361.317
1456.7
1235.98
1101.24
981.386
621.296
683.178
678.856
775.451
587.598
618.082
1782.12
1934.96
2011.89
2003.23
1917.03
1831.41
1696.19
1772.39
1538.91
1629.74
1783.12
1883.98
1988.47
2082.36
9600.52
8776.62
9206.95
9030.12
9573.48
8667.1
9311.75
8989.79
8681.74
10428
9251.75
10155.7
9798.98
9475.45
9148.5
8791.87
8422.92
8051.8
7672.79
7292.08
6908.37
6501.81
6071.69
5645.74
5100.62
4048.32
3706.62
3871.9
3918.65
3369.36
3467.41
2718.66
2725.3
3268.48
2964.91
3156.56
2922.82
9477.75
8995.45
9482.68
9026.23
1700.35
1827.31
1873.4
1824.48
1682.88
1316.1
1516.73
1386.22
1524.55
1579.91
1655.57
1463.75
1569
9651.16
9785.84
8993.54
9506.02
9270.88
9130
9711.48
9153.22
8710.87
10447.2
9152.43
8656.36
9057.11
10050.8
9741.6
9448.73
9088.01
8703.62
8342.66
7962.14
7581.03
7218
6837.54
6394.39
6019.87
5507.55
4218.57
4299.6
4366.86
4126.36
3886.07
3610.09
3685.02
3831.06
3370.13
3461.23
3163.74
3127.91
1456.48
1235.49
1099.85
982.097
622.514
683.112
679.414
775.464
587.852
618.071
1441.59
1281.59
1167.96
871.546
851.805
963.46
787.176
667.422
702.639
737.157
779.475
1699.75
1824.01
1865.61
1819.16
1680.4
1320.66
1518.35
1388.43
1526.57
1592.49
1660.83
1471.92
1571.11
9661.04
9667.38
8922.75
9416.96
9302.8
9073.09
9679.6
9140.39
8694.05
10413.4
9148.05
8626.25
9038.64
10083.8
9778.75
9497.75
9138.99
8751.75
8390.99
8005.02
7617.9
7247.81
6863.52
6422.07
6008.6
5497.08
4213.58
4280.64
4360.2
4113.08
3887.47
3607.11
3688.92
3821.97
3383.64
3459.87
3168.08
3126.67
1635.67
1733.27
1743.34
1670.11
1227.73
1449.52
1225.06
1475.34
1298.58
1454.7
1363.09
1488.19
1506.88
1604.88
1415.75
1494.89
9849.6
9416.1
9690.41
9214.67
8583.74
10542
8880.18
8618.03
8990.79
9119.92
9561.03
10034.8
9842.45
9484.09
9040.11
8711.59
8317.84
7915.24
7527.68
7227.11
6780.82
6445.12
4943.6
5122.16
4830.97
5152.24
4610.8
4461.29
4510.93
4684.57
4873.71
4787.15
4080.44
4233.14
4257.78
4042.71
3949.89
3623.3
3746.08
3819.25
1439.79
1279.21
1166.86
871.755
855.248
963.943
789.357
667.16
702.323
737.176
778.795
1448.21
1326.01
1159.43
912.937
1061.18
980.558
870.14
925.566
945.075
863.973
1634.7
1728.29
1733.45
1663.27
1235.13
1451.44
1230.96
1475.57
1307.15
1455.99
1368.93
1489.22
1521.73
1609.16
1428.61
1506.4
9790.07
9370.75
9676.93
9192.27
8568.79
10504.2
8869.57
8614.22
8987.09
9132.79
9601.76
10051.6
9852.83
9494.48
9063.91
8738.64
8347.63
7943.22
7550.14
7236.49
6808.3
6445.68
4931.38
5115.18
4832.75
5148.35
4600.72
4444.13
4500.53
4649.17
4870.18
4778.02
4078.68
4213.12
4253.14
4030.93
3952.66
3628.6
3744.91
3827.4
1593.64
1660.86
1630.81
1232.72
1476.65
1226.98
1486.15
1243.09
1388.63
1224.07
1343.28
1285.46
1401.72
1345.75
1450.37
9855.84
9432.72
8652.71
8877.4
9232.14
8652.89
8879.21
8692.38
8871.27
8686.49
8790.9
9187.62
9044.52
9450.5
9343.68
9768.17
10116.5
8503.36
8887.74
9705.47
9328.98
9124.66
8666.42
8302.17
7790.77
7565.19
7170.43
5916.82
5638.9
5814.12
5544.79
5119.82
5248.86
5281.06
5269.77
5584.09
5604.15
4790.06
4955.28
4775.22
4575.29
4396.98
4424.08
4814.89
4519.29
4119.74
3986.26
1445.29
1323.79
1159.24
916.881
1061.25
984.081
871.347
927.057
945.669
864.749
1465.47
1228.64
1076.34
1288.31
1037.06
1109.38
987.145
1033.83
1048.75
1590.12
1652.84
1622.39
1234.86
1475.74
1227.22
1484.64
1252.41
1387.15
1230.03
1341.57
1290.96
1404.06
1352.95
1454.71
9812.27
9396.65
8670.6
8882.31
8863.58
8693.93
8780.75
9217.67
8534.99
8843.56
8676.51
9232.69
9051.91
9500.65
9341.69
9726.88
10116.1
8486.74
8886.83
9683.76
9340.15
9127.05
8671.27
8306.19
7836.84
7553.64
7173.65
5921.44
5568.67
5791.23
5587.43
5079.65
5232.63
5202.41
5243.84
5464.37
5563.59
4807.23
4961.03
4771.98
4571.1
4384.04
4423.33
4810.07
4497.34
4124.47
3997.33
1568.71
1604.84
1225.6
1412.88
1207.78
1352.7
1264.97
1378.61
1254.2
1364.21
1224.73
1337.29
1201.35
1281.42
8803.76
8539.3
8866.11
8855.67
8954.76
9047.11
8653.86
9090.37
9260.95
9672.77
8600.4
8461.01
8750.32
8414.12
8501.19
8176.43
8684.86
8152.51
8051.4
7803.74
8368.42
8176.18
7944.57
8464.78
9422.19
8165.98
7722.19
9000.94
8594.39
8345.25
8049.77
6079.73
6371.23
6170.38
6547.62
5897.99
5703.24
5881.44
5804.11
6143.85
5954.39
5513.94
5633.43
5103.82
5196.59
5469.53
5123.88
5385.16
5284.4
4915.45
5039.82
1460.18
1228.92
1084.91
1288.38
1041.15
1111.24
988.377
1034.68
1052.1
1389.91
1115.66
1342.21
1153.41
1168.18
1148.44
1208.27
1105.16
1125.86
1097.03
1563.1
1595.03
1238.85
1413.74
1219.26
1354.46
1261.35
1377.49
1252.89
1361.65
1231.27
1337.88
1209.8
1281.58
8796.93
9062.99
8815.23
8693.16
8930.77
9096.78
8500.5
8858.77
9260.62
9687.58
8595.16
8405.24
8735.01
8396.67
8520.65
8175.86
8686.36
8190.51
8092.19
7836.31
8389.27
8186.26
7929.68
8453.42
9407.74
8188.84
7762.79
8972.28
8582.93
8341.11
8016.65
6077.61
6374.77
6189.29
6553.04
5880.94
5672.81
5859.67
5761.26
6158.89
6007.48
5434.1
5613.16
5136.32
5204.27
5373.29
5157.8
5361.68
5289.34
4929.97
5043.33
1559.26
1212.4
1380.85
1205.21
1374.59
1285.01
1324.93
1279.1
1262.7
1254.14
1324.81
1238.05
1305.49
8816.38
8561.59
9180.22
8929.87
8717.86
8938.22
8561.75
8450.96
8529.25
8158.73
8239.55
7893
8411.23
8264.81
7666.56
8174.79
7807.81
7991.56
7897.71
8102.91
7573.77
7856.39
7465.97
7753.26
7417.11
7651.24
7876.52
7442.73
7142.59
7603.81
7248.68
7430.93
7261.43
7504.72
7224.75
6874.88
6993.77
6888.02
6978.2
7223.81
6271.91
6736.89
6845.62
6522.03
6395.77
6578.89
6035.61
6320.33
6060.15
5987.37
5739.12
5878.61
6020.24
5760.22
5599.57
5718.95
5115.62
5270.07
5364.38
5489.83
1387.82
1122.31
1341.35
1154.93
1171
1157.31
1210.9
1111.99
1128.24
1100.3
1297.2
1179.01
1244.11
1187.82
1170.24
1186.03
1197.84
1146.79
1552.02
1215.17
1379.19
1211.34
1373.36
1291.34
1326.56
1288.88
1267.26
1250.79
1324.03
1239.54
1304.51
8803.82
9176.88
8582.1
8953.74
8712.28
8953.96
8539.85
8480.08
8581.82
8294.49
8265.71
7909.71
8423.55
8291.21
7648.18
8089.91
7588.24
7858.49
8188.95
7803.09
7975.49
7927.82
7493.3
7762.07
7337
7635.82
7863.17
7416.51
7127.85
7588.03
7148.99
7404.86
7177.92
7481.97
6929.55
7205.53
7222.35
6827.13
6991.83
6865.93
6274.32
6518.09
6386.95
6574.15
6728.01
6850.82
6106.38
6350.29
6054.51
5992.81
5743.89
5885.91
5974.19
5750.53
5574.88
5718.07
5116
5269.95
5331.64
5490.35
1210.51
1386.61
1200.91
1354.2
1278.62
1309.69
1265.85
1286.11
8873.59
8480.87
8711.78
8412.54
8333.27
8107.73
8663.67
8387.15
7928.46
8006.16
8334.66
8119.73
7493
7925.25
7694.71
7823.75
7221.06
7655.76
7436.16
6928.08
7574.88
7322.71
6421.01
7120.7
6920.9
7278.32
6365.96
6696.64
6802.1
6634.51
6387.03
6742.48
6228.66
6454.74
6172.11
5734.17
5981.05
5891.79
1297.83
1186.84
1246.43
1190.32
1173.47
1193.91
1200.75
1152.9
1265.01
1215.24
1220.87
1218.29
1212.59
1385.12
1203.3
1353.25
1279.55
1309.37
1268.68
1286.34
8884.66
8500.39
8729.61
8422.44
8390.42
8140.92
8687.42
8412.62
7997.72
7541.56
8112.96
7954.26
7971.07
8340.25
7688.85
7829.42
7267.91
7672.32
7413.96
6918.56
7570.3
7325.27
7124.79
7273.5
6542.73
6950.62
6423.25
6665.83
6689.2
6447.8
6805.02
6766.92
6208.84
6465.14
6182.72
5739.01
5986.44
5896.13
1281.02
1319.02
1274.75
1305.17
8442.42
8749.04
7770.83
8136.69
7580.5
7963.71
7580.78
7915.88
7322.39
7112.29
7707.68
7529.13
1266.88
1222.1
1223.74
1223.03
1271.89
1267.13
1282.67
1319.28
1276.09
1305.14
8437.29
8756.07
7767.93
8144.38
7609.79
7977.11
7572.73
7928.13
7321.58
7128.77
7714.09
7527.72
1273.19
1270.62
)
;
boundaryField
{
inlet
{
type calculated;
value nonuniform List<scalar>
15
(
5347.94
4693.9
4040.02
3385.72
2732.04
2077.22
1423.7
767.645
227.331
3.98305
-6.72446
-7.48507
-8.19789
-8.81022
-9.49599
)
;
}
outlet
{
type calculated;
value nonuniform List<scalar>
15
(
1485.32
1060.21
635.088
209.984
-3.44023
-4.29877
-4.9791
-5.5738
-6.15985
-6.74655
-7.32217
-7.88613
-8.44178
-8.99145
-9.53711
)
;
}
wall1
{
type calculated;
value nonuniform List<scalar>
170
(
5674.94
5677
5679.39
5682.85
5688.64
5696.16
5704.35
5709.87
5709.86
5702.24
5686.59
5663.57
5634.96
5602.86
5569.35
5536.23
5504.98
5476.67
5452.04
5431.55
5415.44
5403.8
5396.61
5393.75
5395.09
5400.45
5409.61
5422.32
5438.29
5457.2
5478.65
5502.19
5527.32
5553.47
5580.03
5606.38
5631.85
5655.82
5677.68
5696.94
5723.78
5742.75
5740.7
5720.92
5692.93
5640.71
5606.59
5530.5
5423.1
5322.34
16088
15384.9
14638.3
13854.8
13051
12236.3
11420.4
10609.3
9805.59
9021.02
8263.33
7536.62
6851.01
6210.55
5617.81
16415
16402.1
16374.1
16324.1
16236.5
16069
15864.5
15769.9
15811.5
15924.7
16091.8
16301.7
16548.9
16805.6
17018.3
17212.2
17429
17287.6
17420.4
17478.7
17482.6
17413.1
17276.2
17437.3
17214
16999
16786.6
16521.9
16278.6
16078.7
15917.2
15805.3
15763.1
15855.3
16055.9
16221.1
16308.2
16358.2
16386.4
16399.4
16072.4
15370.3
14625.3
13843.7
13042.4
12230.4
11417.3
10609.2
9809.63
9030.09
8279.57
7562.59
6889.98
6267.41
5695.82
5343.44
5263.24
5252.23
5256.85
5262.76
5250.11
5220.3
5185.4
5138.07
5089.5
5037.52
4982.85
4925.75
4865.99
4802.98
4735.98
4664
4586.04
4501.26
4409.12
4309.61
4203.63
4092.67
3978.37
3862.03
3743.48
3621.47
3493.91
3359.17
3217.47
3070.36
2922.57
2782.08
2650.42
2525.53
2398.05
2260.35
2113.63
1964.08
1822.65
1739.24
1773.27
1785.17
1778
1758.07
1731.59
1713.44
1703.99
1700.17
1697.87
)
;
}
atmosphere
{
type calculated;
value nonuniform List<scalar>
140
(
-9.81
-9.81152
-9.8103
-9.8123
-9.81376
-9.81653
-9.81732
-9.81539
-9.8118
-9.81
-9.81
-9.81
-9.81
-9.81
-9.81
-9.81
-9.81
-9.81
-9.81
-9.81
-9.81
-9.81
-9.81
-9.81
-9.81
-9.81
-9.81
-9.81
-9.81
-9.81
-9.81
-9.81
-9.81
-9.81
-9.81
-9.81
-9.81
-9.81
-9.81
-9.81
-9.81
-9.81001
-9.81389
-9.8221
-9.82931
-9.83306
-9.83431
-9.8354
-9.83672
-9.83865
-9.84009
-9.84153
-9.84139
-9.84162
-9.83788
-9.83436
-9.82564
-9.81972
-9.81178
-9.81102
-9.81
-9.81
-9.81
-9.81
-9.81
-9.81129
-9.83189
-9.93474
-9.86591
-26.0509
-19.2216
-9.97362
-10.0727
-9.85928
-9.82305
-9.81012
-9.81
-9.81028
-9.81075
-9.81
-9.81033
-9.8115
-9.81772
-9.82571
-9.83594
-9.84415
-9.85253
-9.861
-9.86897
-9.87864
-9.88447
-9.888
-9.89071
-9.89333
-9.89461
-9.87424
-9.86064
-9.85075
-9.84276
-9.83369
-9.83026
-9.83166
-9.83271
-9.83207
-9.8295
-9.82265
-9.81998
-9.8191
-9.8238
-9.82739
-9.82209
-9.81576
-9.81107
-9.81
-9.81
-9.81
-9.81
-9.81
-9.81
-9.81
-9.81
-9.81
-9.81
-9.81
-9.81
-9.81056
-9.81499
-9.81765
-9.8198
-9.81085
-9.81
-9.81
-9.81
-9.81068
-9.83189
-9.85845
-9.81287
-9.81
-9.81
-9.81
)
;
}
defaultFaces
{
type empty;
}
flap
{
type calculated;
value nonuniform List<scalar>
368
(
3270.05
2968.79
2543.58
2049.56
1500.69
972.451
557.395
265.899
84.3195
9.96241
3279.65
3277.35
3061.9
3070.35
3264.72
3272.14
3068.11
3076.78
2976.47
2654.77
2663.64
2972.35
2980.57
2642.87
2651.69
2551.38
2178.4
2188.02
2524.2
2532.15
2135.35
2143.84
2058.69
1639.61
1648.92
1998.83
2006.53
1570.57
1577.62
1509.05
1095.98
1101.24
1427.19
1433.35
1021.57
1025.93
976.976
651.007
652.89
900.153
904.328
589.891
592.147
558.812
328.803
328.499
501.743
503.68
290.436
290.784
265.041
115.815
115.573
232.996
233.365
103.966
104.214
84.109
24.6473
24.496
77.5997
77.7306
27.4228
27.5562
9.91215
15.4322
15.6614
3931.08
3929.12
3922.04
3919.96
3287.56
3263.8
3271.33
3320.25
3224.19
3011.69
2868.97
2591.75
2427.39
2101.67
1917.3
1544.27
1365.24
1000.74
859.448
570.809
473.322
271.731
208.262
85.649
60.2978
16.3817
-7.99034
3343.06
3293.44
3323.16
3230.24
3104.4
3150.66
3107.61
3157.97
3315.91
3226.36
3318.78
3232.38
3111.29
3156.42
3114.62
3163.94
3014.74
2876.07
2702.3
2763.93
2705.72
2772.16
3016.34
2868.85
3019.59
2876.3
2690.77
2758.82
2694.16
2767.03
2594.87
2434.54
2231.08
2305.92
2234.55
2314.31
2572.44
2400.3
2575.59
2407.14
2185.53
2270.6
2188.68
2278.23
2104.95
1924.91
1688.15
1779.21
1691.41
1787.44
2047.6
1859.8
2050.41
1865.83
1614.48
1715.75
1617.22
1722.06
1547.38
1370.71
1129.5
1226.51
1131.53
1231.41
1467.69
1288.15
1470.18
1292.38
1052.9
1150.01
1054.41
1153.98
1002.57
862.466
668.298
750.627
669.385
752.629
926.957
789.444
928.464
792.476
606.867
685.015
607.701
687.308
571.789
473.743
336.535
397.066
336.871
396.834
515.031
423.771
515.833
424.813
299.2
353.469
299.203
353.942
272.573
207.903
115.267
157.297
115.235
157.031
239.958
181.484
239.591
181.72
106.068
137.982
106.457
138.224
85.6465
60.0487
28.3706
43.0174
28.3066
42.7738
80.6355
59.0714
81.108
59.0868
34.0095
43.0936
34.2085
43.1141
16.4234
-8.08994
24.7446
4.25465
24.9704
4.50478
4140.74
4140.63
4112.31
4112.52
3346.19
3298.99
3333.45
3665.04
3337.43
3112.48
3328.89
3268.85
3331.89
3273.73
3591.32
3607.01
3683.27
3265.73
2912.4
2476.02
1967.95
1405.02
884.141
484.409
211.873
61.7564
-0.422129
44.6902
37.6008
27.9681
29.8941
32.4927
26.3065
3350.19
3103.2
3268.34
3192
3195.01
3268.4
3270.98
3198.5
3201.61
2915.33
2809.97
2813.32
2913.03
2916.1
2805.33
2808.7
2478.93
2357
2360.34
2448.33
2451.14
2320.1
2323.19
1970.83
1829.15
1832.24
1906.28
1908.66
1760.46
1762.99
1407.39
1262.32
1264.35
1326.17
1328.02
1183.21
1184.82
885.589
770.324
771.478
813.35
814.501
704.199
705.088
485.058
405.944
406.343
435.257
435.864
363.302
363.642
211.939
158.048
157.976
185.27
184.958
139.193
139.301
61.7527
46.4333
46.371
63.1853
63.8286
48.8836
49.1794
28.0587
29.6884
31.7495
26.7468
-0.473031
44.7798
37.7244
28.0654
29.7229
31.7601
26.763
19.3855
30.8504
34.5702
27.9973
30.001
32.5354
26.3717
19.6404
30.9169
34.7563
3352.86
3842.34
3847.76
3325.14
3327.61
3277.11
3777.46
3273.56
3046.79
3782.52
3054.14
)
;
}
AMI1
{
type cyclicAMI;
value nonuniform List<scalar>
1024
(
1091.21
967.515
16.6386
-3.01382
-4.15549
9258.96
9316.06
9141.65
8653.71
8084.52
7335.46
6665.94
5244.19
4216.21
2877.86
1254.88
1259.66
1152.1
1156.54
1213.72
1220.22
856.137
856.204
1095.08
772.797
249.829
250.163
63.7817
64.1674
142.069
142.963
16.6493
-1.12361
-1.09204
-2.46915
-2.29606
-3.54681
-3.53714
-3.41287
-3.4028
-3.41541
-3.39681
-3.40037
-4.12104
-4.10925
-4.2927
-4.16368
-5.54937
-5.55995
-4.20435
-5.40031
-4.21468
-5.09634
-3.92318
-5.10468
-5.16589
-4.27515
8884.22
8880.35
8637.07
8652.05
7902
7449.54
7449.59
7589.1
6449.71
5758.9
5752.48
5447.81
5445.44
5600.99
5583.91
5236.62
3898.39
3889.52
3644.69
3648.78
3755.2
3104.03
3112.32
3411.11
3420.31
2881.9
1259.89
1347.13
1333.44
1329.83
1343.11
1273.96
1283.04
1298.8
1263.68
1112.8
1033.56
960.108
856.255
851.817
266.056
251.998
61.77
53.9809
8.50689
-0.248509
-0.0984959
-0.119459
-0.224578
-1.35386
-3.44723
-3.14517
-3.3391
-3.33462
-3.25301
-3.71584
-3.8641
-4.041
-4.39343
-4.40404
-4.76386
-4.92762
-4.76678
-4.67024
-4.78494
-4.60819
9690.53
9656.6
9776.93
9300.45
9827.24
9854
9309.83
9837.05
9627.64
9255.96
9768.7
9418.35
9043.68
9110.33
8512.33
8957.26
8470.62
7598.03
7711.51
7101.32
7121.75
5934.97
6584.78
6259.49
5207.66
5436.68
4853.7
4359.73
2642.1
2952.76
1863.76
1917.95
2066.06
1721.63
1442.63
1261.35
1294.27
1293.91
1386.67
1387.76
1379.26
1381.49
1348.56
1337.92
1332.46
1347.33
1346.39
1312.83
1331.45
1332.9
1347.35
1317.62
1332.69
1337.89
1251.67
1230.73
1233.55
1276.8
1288.19
1301.28
1268.94
1218.03
1157.75
1220.69
1159.73
1213.07
1204.09
1162.99
1207.08
1167.78
1083.93
1086.9
842.962
843.596
1114.56
1037.67
856.738
852.498
781.116
780.398
786.655
648.905
688.838
582.851
583.074
261.454
362.191
261.996
351.227
266.776
253.305
352.598
152.204
62.0429
144.861
152.617
62.2029
146.058
145.189
145.79
3.57279
4.68474
4.25569
1.59289
0.183827
1.15831
0.194261
8.57644
-0.350559
-0.24416
-0.357133
-1.19563
-1.18685
-0.254154
-0.108705
-0.12386
-0.236858
-0.53294
-0.540212
-1.38014
-2.57022
-2.48563
-2.54805
-2.53669
-2.37873
-3.29334
-3.13082
-3.29106
-3.68572
-3.52987
-3.42914
-3.4043
-3.24582
-3.51914
-3.41601
-3.44445
-3.52436
-3.52814
-3.26165
-3.4786
-3.34863
-3.28423
-3.27122
-3.48004
-3.23964
-3.27913
-3.37709
-3.53826
-3.40495
-3.51771
-4.01895
-4.31401
-3.95986
-4.16183
-4.00915
-4.30991
-3.95764
-4.2978
-4.48977
-4.17145
-4.42846
-4.30553
-4.03172
-3.71832
-3.87721
-3.58769
-4.6671
-4.64062
-4.78882
-4.41987
-4.67403
-4.66558
-4.79934
-4.51569
-4.78821
-4.93769
-5.0276
-5.11061
-5.03723
-5.1183
-5.41534
-5.69286
-5.8213
-5.41999
-5.69637
-5.63185
-5.82608
-4.70687
-4.83169
-5.16402
-5.63986
-5.1903
-5.45565
-4.7055
-4.84558
-5.17084
-5.40107
-4.66962
-4.92527
-4.23997
-4.02253
-4.20952
-5.40392
-4.67902
-4.93646
-5.64756
-5.36725
-5.36937
-5.41507
-5.64925
-5.36974
-4.81724
-4.90178
-4.83435
-4.90763
-5.08396
-5.0025
-5.09065
-5.00794
-4.42936
-4.50634
-4.77201
-4.69456
-4.79312
-4.62592
-4.44232
-4.52964
8977.91
8940.93
9789.16
9687.92
9748.67
9631.11
9654.62
9752.15
9631.41
9374.41
9394.25
9387.48
9108.62
8655.71
9114.59
8669.79
8467.48
8402.74
8445.89
8436.95
9041.43
8671.96
8505.57
8683.09
8825.47
8271.62
8211.22
8294.29
8187.59
8247.66
8102.39
8337.35
7774.03
7942.36
7981.54
7981.89
8062.96
8076.71
7605.29
7713.61
7123.91
7226.28
6818.94
6521.54
6025.04
6394.56
6050.76
6413.57
6180.82
6060.48
6066.37
5677.76
5583.27
5830.67
5581.64
5833.58
5667.43
5666.64
5582.16
5828.38
5586.61
5833.15
5206.65
5436.22
5061.18
4881.25
5060.76
4882.67
4851.41
4440.31
4436.2
3998.51
3997.95
4170.88
4027.73
3769.58
3827.81
3768.36
3836.05
3852.57
3540.64
3213.91
3318.75
3210.16
3321.39
3494.03
3491.56
2639.05
2948.61
2615.91
2427.63
2127.93
2268.24
2345.94
2427.67
2133.85
2270.1
2340.34
1876.69
1930.75
2072.45
1743.97
1587.23
1423.6
1524.57
1523.55
1597.6
1440.41
1531.4
1546.36
1446.85
1488.94
1498.91
1342.97
1348.27
1409.51
1415.2
1208.54
772.57
573.335
-1.0503
-3.30307
-4.26496
-4.24439
-5.3948
-3.90231
-5.15038
9403.04
9191.83
8532.51
7934.11
7778.62
6449.48
6245.35
4922.63
3758.73
3541.92
1274.44
1215.81
1229.21
1225.69
1296.42
1306.29
1353.9
1366.6
1017.2
1019.37
953.825
957.533
970.639
687.519
686.36
466.555
468.654
573.371
17.4689
3.58044
17.53
1.13603
0.204015
-0.792626
-0.631143
-0.837134
-0.644454
-1.11676
-1.89293
-1.86145
-2.81524
-3.31939
-3.3808
-3.38087
-3.65835
-3.60824
-4.00777
-3.59638
-5.09996
-5.12049
-5.16785
-5.18613
-5.14791
-5.16867
-5.07038
-5.09435
9113.22
9024.5
9322.21
9176.91
9302.17
9177.22
9289.25
9169.95
9125.85
8745.8
8773.92
9437.32
9423.23
9379.26
9245.19
9243.34
9166.2
8617.84
8312.75
8335.64
7635.94
7657.34
7584.21
8037.14
8094.27
8039.86
7308.69
7103.46
6729.66
7083.2
6404.06
6818.23
6795.45
6678.06
6686.2
6401.36
6249.57
5866.65
5872.97
5146.94
5139.33
4760.68
4775
4376.28
4368.81
4922.56
4534.68
4538.95
4013.71
4209.91
1279.28
1255.72
1276.47
1310.94
1195.64
1297.7
1302.65
1294.48
1320.64
1319.6
1312.38
1309.35
1323.73
1304.36
1054.15
786.259
649.439
688.54
600.53
491.941
469.56
4.64096
4.23894
0.201023
3.06394
0.342937
-1.11906
-0.879777
-1.25813
-3.69063
-3.42198
-3.39989
-3.87396
-4.58358
-4.49714
-4.47968
-4.1563
-4.42123
-5.64077
-5.176
-5.44905
-4.22895
-4.00857
-4.18059
-5.36419
-5.41064
9283.57
9098.22
9418.86
9796.46
9294.18
9164.91
9786.63
9528.3
9152.06
9068.2
8856.94
9234.09
8694.51
8952.22
8663.05
8326.57
8712.08
8240.48
7788.84
8160.45
8089.42
7530.9
7842.19
7650.43
7162.08
6639.19
6797.47
6162.89
5674.46
5047.77
5087.39
4776.5
4542.62
3652.06
3850.99
3172.39
3176.96
2624.55
2330.96
2452.58
2548.24
2207.54
1386.69
1335.61
1312.74
1205.72
1232.81
1293.84
1234.78
1349.98
1327.15
1351.43
1330.42
1319.89
1373.88
1323.07
1380.01
1301.99
1302.71
1321.11
1324.71
1278.15
1307.03
1313.64
1280.64
1277.74
1306.08
1312.55
1281.12
1312.29
1309.98
1323.68
1304.17
1260.15
1253.18
1263.05
1206.22
1167.07
1170.21
1107.97
1044.96
1110.37
1046.05
1055.63
942.385
943.665
960.779
706.165
768.285
705.684
767.168
487.002
539.76
487.187
541.455
491.824
600.453
469.955
362.303
350.104
350.206
358.239
358.532
61.9858
54.2066
6.68994
6.71511
3.05747
1.59413
0.177558
0.202207
0.339697
-0.255245
-0.719619
-0.726314
-0.90654
-0.580754
-0.583371
-1.16497
-1.31349
-1.76508
-1.61119
-1.76773
-1.62138
-1.98015
-2.39289
-1.96707
-3.12761
-3.04026
-3.49779
-3.51538
-3.43398
-3.18091
-3.20358
-3.3397
-3.35094
-3.5041
-3.66337
-3.45515
-3.50511
-3.63529
-3.84186
-3.8564
-3.87386
-3.84308
-4.159
-4.19427
-4.11283
-4.20313
-4.13161
-3.71753
-3.87701
-4.045
-3.72008
-4.3993
-4.58987
-4.9015
-5.17271
-5.03005
-4.92744
-5.18001
-5.05089
-5.25707
-5.31786
-5.6176
-5.26334
-5.33265
-5.2563
-5.25194
-5.26249
-5.25978
-5.16114
-5.00706
-4.92024
-5.16894
-5.02716
-4.93631
-4.71044
-4.71873
9650.93
9541.93
9874.75
9313.2
9857.68
9734.44
9240.29
9799.47
9861.33
9282.22
9841.48
9779.63
9177.7
9706.59
9837.43
9282.31
9811.48
9766.71
9183.24
9693.87
9616.71
9251.39
9283.94
9180.33
8584.05
9095.59
9282.79
9199.53
9221.67
8996.17
9281.48
8959.79
9282.3
9288.43
8773
9269.25
9224.16
8781.58
9852.16
9372.18
9281.59
9071.9
9403.49
9812.63
9385.79
9754.68
9283.81
9088.5
9631.44
9584.01
9312.66
9559.07
9298.13
9071.25
8948.76
9371.11
9493.86
9119.73
9097.37
8997.6
9397.82
9074.06
8823.89
9221.76
8726.79
8939.22
8940.59
9123.8
8989.46
8425.1
8450.74
8545.95
8851.4
8808.93
8832.63
8881.22
8807.94
8898.85
8968.68
8627.72
8595.92
9105.79
8807.73
8357.23
8395.09
8323.6
8715.35
8628.27
8540.8
8345.91
8637.23
8538.34
8089.47
8302.15
8255.29
7804.37
8265.79
8293.75
8464.43
7831.39
7791.26
8093
8149.41
7547.99
7947.91
7538.31
7560.89
7361.5
7850.88
7651.17
7366.14
7525.31
7524.05
7139.42
7164.54
7222.61
7079.76
6888.12
7079.38
6917.81
6943.93
6478.18
6950.58
6838.28
6449.12
6788.26
6858.16
6480.58
6807.21
6523.08
6636.77
6535.5
6195.1
5963.15
5822.71
6156.47
5837.51
6172.22
6597.1
6278.18
6179.39
5968.94
5975.98
5415.03
5406.67
5326.56
5446.27
5243.95
5324.87
5448.78
5260.07
5036.21
4915.57
4918.06
4487.62
4630.63
4487.46
4530.07
4628.3
5087.47
4772.61
4657.57
4370.13
4093.84
4174.83
4656.72
4358.86
4071.51
4170.29
4174.61
4358.1
3974.6
3977.55
3654.61
3444.68
3441.07
3170.98
3184.32
2943.31
2689.71
2751.59
2933.34
2940.26
2682.14
2748.55
2925.08
2329.94
2445.4
2545.51
2206.49
2110.95
1776.31
1535.41
1899.1
1630.86
1980.78
2115.9
1788.71
1551.42
1906.48
1990.09
1357.13
1447.93
1370.36
1389.2
1342.88
1406.38
1634.73
1419.21
1311.78
1249.72
1317.26
1268.91
1291.52
1452.91
1305.22
)
;
}
AMI2
{
type cyclicAMI;
value nonuniform List<scalar>
1040
(
1198.34
881.434
499.342
-1.15282
-3.45151
-3.31078
-4.16785
-5.15574
-3.99896
-5.41516
9440.02
9257.02
8462.85
7963.46
6522.97
5886.43
4686.06
3878.64
1201.81
1208.13
1299.97
1299.69
1253.41
1274.87
1366.99
1372.38
981.598
984.74
986.325
876.678
600.284
600.194
572.362
572.851
499.59
496.216
498.668
2.25295
2.25144
1.91033
1.94197
-0.85037
-0.904237
-1.21594
-0.934774
-2.8862
-3.31342
-3.40761
-3.24031
-3.27844
-3.90493
-3.87956
-3.93843
-3.95913
-3.34691
-4.17294
-5.18301
-5.20085
-5.32877
-5.34345
-5.07295
-5.09726
-5.01056
-5.03072
9166.16
9084.53
9313.61
9031.38
9283.04
9181.84
9302.32
9186.39
9175.03
8642.77
8659.37
9376.53
9388.24
9424.33
9315.34
9299.19
9258.71
8655.62
8063.15
8483.84
8366.15
8401.07
8222.77
8207.77
7533.31
7526.06
7959.21
7477.16
6693.75
6743.25
6859.94
6858.7
6612.16
6626.49
5919.95
5910.92
5926.88
4855.15
4852.58
4842.02
4846.34
4154.51
4154.34
4682.92
4731.92
4745.74
3969.39
3985.24
1209.64
1397.15
1409.16
1253.18
1271.62
1420.17
1436.64
1258.98
1237.99
1280.3
1314.41
1294.43
1281.08
1258.56
1303.71
1310.83
1267.53
1129.62
865.99
802.551
802.641
411.038
525.923
31.0893
26.1172
-0.517491
-0.221016
-0.204024
-0.393193
-1.23585
-1.37189
-3.62146
-3.52846
-3.43396
-3.75806
-4.67596
-4.4383
-4.13388
-4.34169
-5.43083
-4.80852
-5.15172
-4.16728
-4.65082
-4.90307
-5.65618
-5.28652
-5.41914
9152.96
9003.9
9855.3
9397.99
9593.62
9197.18
9255.1
8965.19
9386.53
8870.65
8819.01
8583.66
8318.43
8807.68
8211.65
7721.09
8164.13
8367.68
7617.82
7139.77
6668.01
6867.56
6203.34
5754.3
6068.42
5415.47
5217.5
5363.66
4759.59
4493.08
3791.88
3982.02
2889.47
2865.27
2061.79
2144.62
2273.06
1933.05
1300.68
1265.08
1260.32
1238.53
1319.93
1218.74
1320.21
1214.93
1312.17
1291.44
1317.89
1302.96
1379.68
1320.29
1381.73
1324
1279.31
1281.07
1314.02
1309.28
1323.65
1307.4
1312.92
1309.92
1323.59
1306.43
1260.12
1303.7
1310.82
1270.48
1227.02
1250.88
1229.58
1255.05
1235.16
1124.73
1127.2
1058.71
975.223
1060.18
975.927
1131.45
1075.8
975.754
1077.37
869.896
789.176
796.211
626.926
709.447
626.757
615.163
615.411
691.287
410.734
525.91
396.903
287.693
278.316
287.943
278.305
186.123
530.659
530.845
182.951
33.3258
23.7862
4.34808
-1.97535
4.33953
-1.98847
2.01549
2.00609
2.35884
2.36323
-0.524979
-0.228351
-0.207514
-0.406657
-0.931409
-0.961557
-0.190891
-1.41709
-1.74426
-2.61099
-1.88674
-1.7241
-2.41747
-1.3751
-1.33884
-2.9334
-3.1118
-3.39446
-3.52179
-3.42913
-3.48423
-3.34735
-3.68647
-3.52125
-3.46505
-3.65629
-3.87175
-4.04767
-3.97188
-4.03835
-3.97012
-4.17496
-4.10582
-4.11263
-3.62709
-3.43119
-3.76331
-3.62759
-4.41006
-4.68302
-4.52436
-4.90793
-5.04025
-5.27174
-5.10973
-4.93392
-5.06087
-5.27782
-5.13003
-5.42843
-5.61781
-5.82161
-5.4331
-5.63212
-5.82644
-5.16456
-5.17244
-5.17487
-5.08806
-4.92889
-4.8617
-5.09477
-4.945
-4.70488
-4.87717
9795.82
9261.03
9652.41
9625.98
9243.23
9615.58
9858.37
9300.94
9829.01
9553.18
9182.88
9741.7
9842.33
9242.08
9801.85
9707.69
9315.62
9843.72
9861.48
9289.38
9838.19
9694.7
9286.78
9817.77
9772.52
9124.86
9616.89
9139.79
8628.82
9055.12
9152.59
8594.99
9048.71
9261.05
8780.01
9228.02
8912.61
9245.22
8782.41
9231.87
8888.24
9303.15
9298.46
9793.22
9289.18
9132.83
8968.83
9753.13
9290.87
9816.01
9377.93
9750.09
9658.75
9635.08
9157.78
9074.68
9375.03
9572.26
9174.92
9122.65
9099.67
9244.51
9021.48
9418.55
8843.32
9114.93
8622.48
9125.43
8387.35
8428.59
8903.57
8618.61
8383.48
8845.97
8614.63
8373.63
8845.87
8832.38
8586.27
8674.65
8687.45
8533.97
8341.19
8825.3
8732.62
8634.16
8561.15
8734.78
8643.85
8561.03
8056.17
8068.8
8243.72
8275.91
7783.34
8219.89
7732.14
8253.98
8276.38
7795.61
8161.87
7632.7
8155.58
8359.04
7791.9
8154.62
7631.54
7517.61
8013.45
7287.29
7617.25
7124.75
7075.3
6779.52
7089.7
6823.6
7661
7167.81
7165.39
6959.19
7164.91
6990.06
6820.1
6902.47
6840.39
6911.55
6523.27
6723.58
6385.58
6735.6
6157.41
6514.22
6391.2
6671.96
6479.27
5815.46
6158.4
5982.77
6224.27
6249.45
6267.3
5415.07
5220.95
5373.1
5258.9
4972.17
5257.19
4970.79
5069.95
5351.15
5012.66
5159.69
5012.67
4305.01
4316.48
4443.45
4304.65
4307.43
4442.55
4757.92
4483.11
4583.63
4886.23
4511.84
4888.57
4514.1
4623.48
3908.45
3910.22
4129.93
3669.62
3667.21
3794.35
3630.67
3632.91
2886.16
2855.61
3140.15
2687.69
2379.64
2485.28
2613.25
2684.92
2373.67
2482.78
2606.17
3092.53
2067.76
2146.62
2273.15
1943.42
1862.51
1521.05
1614.36
1743.61
1870.3
1537.1
1618.11
1756.52
1532.76
1596.83
1302.53
1269.86
1482.33
1325.22
1491.72
1331.94
1350.75
1299.69
1356.04
1312.89
1522.64
1369.76
1529.27
1382.97
1160.72
876.093
85.0788
-3.07251
-3.39492
-4.4248
9118.6
9322.2
9181.23
8053.02
7941.78
7480.81
7353.11
3084.67
1225.9
1232.29
1228.06
1160.16
1164.79
990.465
1165.75
881.604
185.302
181.602
85.3635
33.225
85.8787
85.7171
31.2303
-0.428191
-0.441341
-0.913378
-2.92984
-3.31893
-3.3833
-3.31539
-3.44266
-3.48319
-4.16326
-4.44104
-5.38591
-5.39177
-3.90219
-5.17035
-3.92308
-5.16385
-4.01298
-5.17871
-5.41965
-4.27307
-4.18433
-4.30473
8774.86
8801.7
8639.39
8652.05
8668.44
7614.62
7629.54
7928.09
7521.72
7298.78
7326.71
6545.44
5694.51
5532.73
5674.21
5519.18
5545.65
5658.51
5542.69
5360.64
4065.26
4043.75
3344.4
3354.07
3870.29
3330.69
3333.13
3133.38
1301.28
1322.3
1360.9
1327.77
1328.87
1308.29
1320.19
1338.24
1291.16
1164.84
1116.16
869.259
789.876
796.516
396.712
404.32
394.368
82.2139
0.00311853
-0.185817
0.403931
0.0377064
-1.4788
-1.89967
-3.49551
-3.49078
-3.38688
-3.29458
-3.21526
-3.40751
-3.63517
-3.78245
-3.96493
-4.59725
-4.50538
-5.03193
-4.47151
-4.74998
-4.6117
-4.77475
-4.55931
9495.84
9299.98
9788.5
9661.69
9265.1
9782.53
9874.86
9315.97
9854.53
9785.62
9140.01
9257.89
9627.83
9539.15
8994.02
8879.48
9108.89
8656.64
8543.32
9115.16
7787.47
7728.81
7652.25
7149.74
6411.67
6139.43
5817.77
6498.64
6149.63
5586.45
5339.52
5167.54
4585.11
4125.45
3700.27
3190.88
2876.33
2816.47
2066.68
2125.52
2266.21
1918.52
1376.43
1300.76
1284
1283.35
1319.26
1298.55
1342.6
1344.5
1383.78
1384.81
1373.72
1330.87
1325.19
1333.96
1345.51
1336.48
1347.78
1342.98
1347.07
1341.41
1348.83
1346.83
1215.74
1218.73
1310.49
1325.26
1339.22
1296.06
1275.49
1240.62
1264.94
1243.43
1278.22
1269.94
1165.17
1102.61
1168.28
1105.54
1021.82
1023.86
977.144
1166.91
1119.78
1047.19
1051.31
708.23
727.449
727.989
692.267
866.738
803.259
727.446
803.142
727.181
194.622
195.313
404.532
395.907
194.574
286.27
277.607
195.045
286.914
278.79
78.9797
23.6941
79.3429
4.35931
0.174859
0.246213
4.32494
0.167484
0.256973
82.427
26.2434
-0.769879
-0.681925
-0.779714
-0.698526
-1.27662
-0.461289
-1.00875
-0.466448
-1.00098
-0.00261358
0.397641
0.0285666
-0.174356
-0.162818
-1.49818
-2.70691
-3.21224
-2.61061
-1.44396
-2.12139
-1.43757
-2.098
-3.09177
-2.24544
-3.0873
-2.23162
-3.61722
-3.50321
-3.49939
-3.46144
-3.417
-3.45425
-3.3846
-3.33097
-3.435
-3.57304
-3.33572
-3.24914
-3.30507
-3.57193
-3.3415
-3.26246
-3.23964
-3.55768
-3.67459
-3.41988
-3.5325
-3.62557
-3.85894
-4.17765
-4.40403
-4.13493
-4.33011
-4.12368
-4.32683
-4.0343
-4.22125
-4.05814
-4.14951
-4.23004
-4.3492
-3.50448
-3.63205
-3.78789
-3.96696
-3.49418
-4.80994
-4.77932
-4.94283
-4.66085
-4.60365
-4.82082
-4.80364
-4.95267
-4.68619
-5.04155
-5.11836
-5.18432
-5.12597
-5.19142
-5.63153
-5.54094
-5.69037
-5.63093
-5.5513
-5.69362
-4.22813
-4.19239
-4.69515
-5.43784
-4.82208
-5.15832
-4.23923
-4.20303
-4.69355
-5.38082
-5.08576
-5.39384
-4.19657
-4.66017
-4.91465
-5.38585
-5.09428
-5.39671
-5.15456
-5.26154
-5.65791
-5.29225
-5.42115
-5.26757
-4.68097
-4.79755
-5.0103
-4.93857
-5.01571
-4.80563
-4.94383
-4.4622
-4.27894
-4.48288
-4.75695
-4.62869
-4.77959
-4.30806
-4.58065
-4.47503
-4.44546
9186.4
8920.01
9203.14
8909.69
9700.24
9477.45
9302.27
9699.8
9770.11
9253.58
9753.58
9430.18
9504.72
9402.25
9387.06
9081.64
8706.52
8927.77
9086.55
8929.49
8734.9
8265.23
8474.7
8251.35
8461.86
9012.68
8994.12
9027.73
8330.01
8284.65
8328.6
8305.48
8030.12
8044.49
7937.56
8013.34
7946.73
7742.49
7748.94
7217.07
7229.67
7729.72
7323.32
7326.72
6483.21
6885.06
6391.23
6574.53
6123.44
6292.6
6581.04
6143.76
6495.31
6285.12
5979.36
5718.4
5724.05
5755.87
6080.34
5653.63
5919.73
5769.78
5925.6
5769.58
5536.77
5542.33
5079.1
5584.81
5339.43
5160.92
5159.12
4993.21
4992.32
4624.9
4150.52
4264.97
4326.65
4146.9
4245.54
4321.72
3766.13
3771.45
3405.67
3561.98
3403.32
3567.49
3981.61
3698.1
3456.48
3520.17
3453.13
3518.93
3129.29
3127.81
3187.02
2872.2
2817.53
2627.76
2358.81
2437.2
2610.43
2624.75
2353.22
2437.08
2601.72
2073.04
2131.6
2268.12
1931.31
1889.97
1737.79
1903.24
1555.47
1607.23
1760.14
1378.79
1435.13
1438.87
1414.61
1420.29
1459.78
1464.62
)
;
}
}
// ************************************************************************* //
|
|
f6b62c18f3554a35984ac17ff4d3d590030d954d
|
381b77b5e2f2cb4e80e4c07560f0d976d7bec906
|
/client/cocos2d-x-2.2.6/projects/YLHDKaPaiSanGuo/Classes/network/NetStream.cpp
|
359e5f2a05807168325d0cd99902122c2b89def6
|
[
"MIT"
] |
permissive
|
lure9999/CardAndMonsterSanGuo
|
b9e2230b241fe68740247ab8b15c41e8a01da9ce
|
7c99622488129ab03488e7daf0cd82e025af32b7
|
refs/heads/master
| 2021-11-03T14:11:48.721200
| 2019-04-06T14:35:26
| 2019-04-06T14:35:26
| 192,335,643
| 1
| 0
| null | 2019-06-17T11:41:50
| 2019-06-17T11:41:49
| null |
GB18030
|
C++
| false
| false
| 26,717
|
cpp
|
NetStream.cpp
|
///////////////////////////////////////////////////////////////////////////////
// 网络输出消息
// 利用C++流方式,方便用户填充
// 本来流式输入和流式输出应该分开
// 但是由于其功能相似并功能较少,我把他放入同一个结构中
//
// 在这个结构中,最前面的两个字节是网络包的大小,
// 这个大小对于用户是透明的,他不会被任何函数解析到
// 不过这个流不应该放置到ServerLib中
// 因为客户端也会使用
//
// Aug 24th, 2006 EL.AHong.F Modify.
// Sep 01st, 2006 EL.AHong.F Modify.
// Dec.26.2008 ----- Modify
// Nov.10.2010 -----, 增加了对无类型缓冲区的流处理函数,增加了对SNetStream指针的支持。
///////////////////////////////////////////////////////////////////////////////
#include "NetStream.h"
void EnCode( unsigned char *buf, unsigned int nsize, unsigned int nkey )
{
//unsigned char tempc1 = nsize ^ ~0xFF;// nsize%256;
//unsigned char tempc2 = nkey ^ ~0xFF;// nkey%256;
//unsigned char tempc3;
//for( unsigned int i=0; i<nsize; i++ )
//{
// tempc3 = buf[i];
// tempc1 ^= tempc2;
// buf[i] ^= tempc1;
// tempc1 = buf[i] ^ tempc3;
//}
}
///////////////////////////////////////////////////////////////////////////////
SNetStream& SNetStream::operator << ( char n )
{
if ( m_nNowSite + sizeof( char ) > nMaxMsgBuf )
{
return( *this );
}
memcpy( m_pBuffer + m_nNowSite, &n, sizeof( char ) );
m_nNowSite += sizeof( char );
return ( *this );
}
SNetStream& SNetStream::operator << ( signed char n )
{
if ( m_nNowSite + sizeof( signed char ) > nMaxMsgBuf )
{
return( *this );
}
memcpy( m_pBuffer + m_nNowSite, &n, sizeof( signed char ) );
m_nNowSite += sizeof( signed char );
return ( *this );
}
SNetStream& SNetStream::operator << ( unsigned char n )
{
if ( m_nNowSite + sizeof( unsigned char ) > nMaxMsgBuf )
{
return( *this );
}
memcpy( m_pBuffer + m_nNowSite, &n, sizeof( unsigned char ) );
m_nNowSite += sizeof( unsigned char );
return ( *this );
}
SNetStream& SNetStream::operator << ( wchar_t n )
{
if ( m_nNowSite + sizeof( wchar_t ) > nMaxMsgBuf )
{
return( *this );
}
memcpy( m_pBuffer + m_nNowSite, &n, sizeof( wchar_t ) );
m_nNowSite += sizeof( wchar_t );
return ( *this );
}
SNetStream& SNetStream::operator << ( short n )
{
if ( m_nNowSite + sizeof( short ) > nMaxMsgBuf )
{
return( *this );
}
memcpy( m_pBuffer + m_nNowSite, &n, sizeof( short ) );
m_nNowSite += sizeof( short );
return ( *this );
}
SNetStream& SNetStream::operator << ( unsigned short n )
{
if ( m_nNowSite + sizeof( unsigned short ) > nMaxMsgBuf )
{
return( *this );
}
memcpy( m_pBuffer + m_nNowSite, &n, sizeof( unsigned short ) );
m_nNowSite += sizeof( unsigned short );
return ( *this );
}
SNetStream& SNetStream::operator << ( int n )
{
if ( m_nNowSite + sizeof( int ) > nMaxMsgBuf )
{
return( *this );
}
memcpy( m_pBuffer + m_nNowSite, &n, sizeof( int ) );
m_nNowSite += sizeof( int );
return ( *this );
}
SNetStream& SNetStream::operator << ( unsigned int n )
{
if ( m_nNowSite + sizeof( unsigned int ) > nMaxMsgBuf )
{
return( *this );
}
memcpy( m_pBuffer + m_nNowSite, &n, sizeof( unsigned int ) );
m_nNowSite += sizeof( unsigned int );
return ( *this );
}
SNetStream& SNetStream::operator << ( unsigned long n )
{
if ( m_nNowSite + sizeof( unsigned long ) > nMaxMsgBuf )
{
return( *this );
}
memcpy( m_pBuffer + m_nNowSite, &n, sizeof( unsigned long ) );
m_nNowSite += sizeof( unsigned long );
return ( *this );
}
SNetStream& SNetStream::operator << ( long n )
{
if ( m_nNowSite + sizeof( long ) > nMaxMsgBuf )
{
//MY_ASSERT( m_nNowSite + sizeof( unsigned long ) <= nMaxMsgBuf );
return( *this );
}
memcpy( m_pBuffer + m_nNowSite, &n, sizeof( long ) );
m_nNowSite += sizeof( long );
return ( *this );
}
SNetStream& SNetStream::operator << ( float n )
{
if ( m_nNowSite + sizeof( float ) > nMaxMsgBuf )
{
//MY_ASSERT( m_nNowSite + sizeof( float ) <= nMaxMsgBuf );
//MY_ASSERT_EX( m_nNowSite + sizeof( float ) <= nMaxMsgBuf, _T("A:%d, B:%d, m_nNowSite:%d, m_nMaxSite:%d"), GetCmdA(), GetCmdB(), m_nNowSite, m_nMaxSite );
return( *this );
}
memcpy( m_pBuffer + m_nNowSite, &n, sizeof( float ) );
m_nNowSite += sizeof( float );
return ( *this );
}
SNetStream& SNetStream::operator << ( double n )
{
if ( m_nNowSite + sizeof( double ) > nMaxMsgBuf )
{
//MY_ASSERT( m_nNowSite + sizeof( double ) <= nMaxMsgBuf );
//MY_ASSERT_EX( m_nNowSite + sizeof( double ) <= nMaxMsgBuf, _T("A:%d, B:%d, m_nNowSite:%d, m_nMaxSite:%d"), GetCmdA(), GetCmdB(), m_nNowSite, m_nMaxSite );
return( *this );
}
memcpy( m_pBuffer + m_nNowSite, &n, sizeof( double ) );
m_nNowSite += sizeof( double );
return ( *this );
}
SNetStream& SNetStream::operator << ( const char* p )
{
int ncharLen = 0;
if( p != NULL )
ncharLen = ( int )strlen( p );
// 需要字符串后面的'\0'
int nLen = ncharLen + 1;
if ( m_nNowSite + nLen * sizeof( char ) > nMaxMsgBuf )
{
//MY_ASSERT( m_nNowSite + nLen * sizeof( char ) <= nMaxMsgBuf );
//MY_ASSERT_EX( m_nNowSite + nLen * sizeof( char ) <= nMaxMsgBuf, __T("A:%d, B:%d, m_nNowSite:%d, m_nMaxSite:%d"), GetCmdA(), GetCmdB(), m_nNowSite, m_nMaxSite );
return( *this );
}
if( p == NULL )
{
char ch;
memset( &ch, 0, sizeof( char ) );
memcpy( m_pBuffer + m_nNowSite, &ch, 1 * sizeof( char ) );
}
else
{
memcpy( m_pBuffer + m_nNowSite, p, nLen * sizeof( char ) );
}
m_nNowSite += nLen * sizeof( char );
return ( *this );
}
///////////////////////////////////////////////////////////////////////////////
SNetStream& SNetStream::operator >> ( char& n )
{
if( m_nNowSite + (int)sizeof( char ) > m_nMaxSite )
{
//MY_ASSERT( m_nNowSite + (int)sizeof( char ) <= m_nMaxSite );
//MY_ASSERT_EX( m_nNowSite + (int)sizeof( char ) <= m_nMaxSite, _T("A:%d, B:%d, m_nNowSite:%d, m_nMaxSite:%d"), GetCmdA(), GetCmdB(), m_nNowSite, m_nMaxSite );
return ( *this );
}
memcpy( &n, m_pBuffer + m_nNowSite, sizeof( char ) );
m_nNowSite += sizeof( char );
return ( *this );
}
SNetStream& SNetStream::operator >> ( signed char& n )
{
if( m_nNowSite + (int)sizeof( signed char ) > m_nMaxSite )
{
//MY_ASSERT( m_nNowSite + (int)sizeof( signed char ) <= m_nMaxSite );
//MY_ASSERT_EX( m_nNowSite + (int)sizeof( signed char ) <= m_nMaxSite, _T("A:%d, B:%d, m_nNowSite:%d, m_nMaxSite:%d"), GetCmdA(), GetCmdB(), m_nNowSite, m_nMaxSite );
return ( *this );
}
memcpy( &n, m_pBuffer + m_nNowSite, sizeof( signed char ) );
m_nNowSite += sizeof( signed char );
return ( *this );
}
SNetStream& SNetStream::operator >> ( unsigned char& n )
{
if( m_nNowSite + (int)sizeof( unsigned char ) > m_nMaxSite )
{
//MY_ASSERT( m_nNowSite + (int)sizeof( unsigned char ) <= m_nMaxSite );
//MY_ASSERT_EX( m_nNowSite + (int)sizeof( unsigned char ) <= m_nMaxSite, _T("A:%d, B:%d, m_nNowSite:%d, m_nMaxSite:%d"), GetCmdA(), GetCmdB(), m_nNowSite, m_nMaxSite );
return ( *this );
}
memcpy( &n, m_pBuffer + m_nNowSite, sizeof( unsigned char ) );
m_nNowSite += sizeof( unsigned char );
return ( *this );
}
SNetStream& SNetStream::operator >> ( wchar_t& n )
{
if( m_nNowSite + (int)sizeof( wchar_t ) > m_nMaxSite )
{
//MY_ASSERT( m_nNowSite + (int)sizeof( wchar_t ) <= m_nMaxSite );
//MY_ASSERT_EX( m_nNowSite + (int)sizeof( wchar_t ) <= m_nMaxSite, _T("A:%d, B:%d, m_nNowSite:%d, m_nMaxSite:%d"), GetCmdA(), GetCmdB(), m_nNowSite, m_nMaxSite );
return ( *this );
}
memcpy( &n, m_pBuffer + m_nNowSite, sizeof( wchar_t ) );
m_nNowSite += sizeof( wchar_t );
return ( *this );
}
SNetStream& SNetStream::operator >> ( short& n )
{
if( m_nNowSite + (int)sizeof( short ) > m_nMaxSite )
{
//MY_ASSERT( m_nNowSite + (int)sizeof( short ) <= m_nMaxSite );
//MY_ASSERT_EX( m_nNowSite + (int)sizeof( short ) <= m_nMaxSite, _T("A:%d, B:%d, m_nNowSite:%d, m_nMaxSite:%d"), GetCmdA(), GetCmdB(), m_nNowSite, m_nMaxSite );
return ( *this );
}
memcpy( &n, m_pBuffer + m_nNowSite, sizeof( short ) );
m_nNowSite += sizeof( short );
return ( *this );
}
SNetStream& SNetStream::operator >> ( unsigned short& n )
{
if( m_nNowSite + (int)sizeof( unsigned short ) > m_nMaxSite )
{
//MY_ASSERT( m_nNowSite + (int)sizeof( unsigned short ) <= m_nMaxSite );
//MY_ASSERT_EX( m_nNowSite + (int)sizeof( unsigned short ) <= m_nMaxSite, _T("A:%d, B:%d, m_nNowSite:%d, m_nMaxSite:%d"), GetCmdA(), GetCmdB(), m_nNowSite, m_nMaxSite );
return ( *this );
}
memcpy( &n, m_pBuffer + m_nNowSite, sizeof( unsigned short ) );
m_nNowSite += sizeof( unsigned short );
return ( *this );
}
SNetStream& SNetStream::operator >> ( int& n )
{
if( m_nNowSite + (int)sizeof( int ) > m_nMaxSite )
{
//MY_ASSERT( m_nNowSite + (int)sizeof( int ) <= m_nMaxSite );
//MY_ASSERT_EX( m_nNowSite + (int)sizeof( int ) <= m_nMaxSite, _T("A:%d, B:%d, m_nNowSite:%d, m_nMaxSite:%d"), GetCmdA(), GetCmdB(), m_nNowSite, m_nMaxSite );
return ( *this );
}
memcpy( &n, m_pBuffer + m_nNowSite, sizeof( int ) );
m_nNowSite += sizeof( int );
return ( *this );
}
SNetStream& SNetStream::operator >> ( unsigned int& n )
{
if( m_nNowSite + (int)sizeof( unsigned int ) > m_nMaxSite )
{
//MY_ASSERT( m_nNowSite + (int)sizeof( unsigned int ) <= m_nMaxSite );
//MY_ASSERT_EX( m_nNowSite + (int)sizeof( unsigned int ) <= m_nMaxSite, _T("A:%d, B:%d, m_nNowSite:%d, m_nMaxSite:%d"), GetCmdA(), GetCmdB(), m_nNowSite, m_nMaxSite );
return ( *this );
}
memcpy( &n, m_pBuffer + m_nNowSite, sizeof( unsigned int ) );
m_nNowSite += sizeof( unsigned int );
return ( *this );
}
SNetStream& SNetStream::operator >> ( unsigned long& n )
{
if( m_nNowSite + (int)sizeof( unsigned long ) > m_nMaxSite )
{
//MY_ASSERT( m_nNowSite + (int)sizeof( unsigned long ) <= m_nMaxSite );
//MY_ASSERT_EX( m_nNowSite + (int)sizeof( unsigned long ) <= m_nMaxSite, _T("A:%d, B:%d, m_nNowSite:%d, m_nMaxSite:%d"), GetCmdA(), GetCmdB(), m_nNowSite, m_nMaxSite );
return ( *this );
}
memcpy( &n, m_pBuffer + m_nNowSite, sizeof( unsigned long ) );
m_nNowSite += sizeof( unsigned long );
return ( *this );
}
SNetStream& SNetStream::operator >> ( long& n )
{
if( m_nNowSite + (int)sizeof( long ) > m_nMaxSite )
{
//MY_ASSERT_EX( m_nNowSite + (int)sizeof( long ) <= m_nMaxSite, __T("A:%d, B:%d, m_nNowSite:%d, m_nMaxSite:%d"), GetCmdA(), GetCmdB(), m_nNowSite, m_nMaxSite );
return ( *this );
}
memcpy( &n, m_pBuffer + m_nNowSite, sizeof( long ) );
m_nNowSite += sizeof( long );
return ( *this );
}
SNetStream& SNetStream::operator >> ( float& n )
{
if( m_nNowSite + (int)sizeof( float ) > m_nMaxSite )
{
//MY_ASSERT( m_nNowSite + (int)sizeof( float ) <= m_nMaxSite );
//MY_ASSERT_EX( m_nNowSite + (int)sizeof( float ) <= m_nMaxSite, _T("A:%d, B:%d, m_nNowSite:%d, m_nMaxSite:%d"), GetCmdA(), GetCmdB(), m_nNowSite, m_nMaxSite );
return ( *this );
}
memcpy( &n, m_pBuffer + m_nNowSite, sizeof( float ) );
m_nNowSite += sizeof( float );
return ( *this );
}
SNetStream& SNetStream::operator >> ( double& n )
{
if( m_nNowSite + (int)sizeof( double ) > m_nMaxSite )
{
//MY_ASSERT( m_nNowSite + (int)sizeof( double ) <= m_nMaxSite );
//MY_ASSERT_EX( m_nNowSite + (int)sizeof( double ) <= m_nMaxSite, _T("A:%d, B:%d, m_nNowSite:%d, m_nMaxSite:%d"), GetCmdA(), GetCmdB(), m_nNowSite, m_nMaxSite );
return ( *this );
}
memcpy( &n, m_pBuffer + m_nNowSite, sizeof( double ) );
m_nNowSite += sizeof( double );
return ( *this );
}
SNetStream& SNetStream::operator >> ( char*& p )
{
int nLen = ( int )strlen( m_pBuffer + m_nNowSite ) + 1;
if( m_nNowSite + nLen * (int)sizeof( char ) > m_nMaxSite )
{
//MY_ASSERT( m_nNowSite + nLen * (int)sizeof( char ) <= m_nMaxSite );
//MY_ASSERT_EX( m_nNowSite + nLen * (int)sizeof( char ) <= m_nMaxSite, __T("A:%d, B:%d, m_nNowSite:%d, m_nMaxSite:%d"), GetCmdA(), GetCmdB(), m_nNowSite, m_nMaxSite );
return ( *this );
}
p = m_pBuffer + m_nNowSite;
m_nNowSite += nLen * sizeof( char );
return ( *this );
}
///////////////////////////////////////////////////////////////////////////////
// 读写无类型缓冲区
SNetStream& SNetStream::put( void *pBuffer, int nSize )
{
if ( m_nNowSite + nSize > nMaxMsgBuf )
{
//MY_ASSERT( m_nNowSite + nSize <= nMaxMsgBuf );
//MY_ASSERT_EX( m_nNowSite + nSize <= nMaxMsgBuf, _T("A:%d, B:%d, m_nNowSite:%d, m_nMaxSite:%d"), GetCmdA(), GetCmdB(), m_nNowSite, m_nMaxSite );
return( *this );
}
memcpy( m_pBuffer + m_nNowSite, pBuffer, nSize );
m_nNowSite += nSize;
return( *this );
}
SNetStream& SNetStream::get( void *pBuffer, int nSize )
{
if( m_nNowSite + nSize > m_nMaxSite )
{
//MY_ASSERT_EX( m_nNowSite + nSize <= m_nMaxSite, _T("A:%d, B:%d, m_nNowSite:%d, m_nMaxSite:%d"), GetCmdA(), GetCmdB(), m_nNowSite, m_nMaxSite );
return ( *this );
}
memcpy( pBuffer, m_pBuffer + m_nNowSite, nSize );
m_nNowSite += nSize * sizeof(char);
return ( *this );
}
// 这里只获取指针,并没有拷贝数据,所以速度会快些。
SNetStream& SNetStream::getPointer( void **ppBuffer, int nSize )
{
if( m_nNowSite + (int)sizeof( void * ) > m_nMaxSite )
{
//MY_ASSERT( m_nNowSite + (int)sizeof( void * ) <= m_nMaxSite );
//MY_ASSERT_EX( m_nNowSite + (int)sizeof( void * ) <= m_nMaxSite, _T("A:%d, B:%d, m_nNowSite:%d, m_nMaxSite:%d"), GetCmdA(), GetCmdB(), m_nNowSite, m_nMaxSite );
return ( *this );
}
*ppBuffer = m_pBuffer + m_nNowSite;
m_nNowSite += nSize; // 注意这里不是sizeof( void * ), 类似于字符串的处理
return ( *this );
}
// 这里只获取指针,并没有拷贝数据,所以速度会快些。
SNetStream& SNetStream::getPtr( void **ppBuffer, int& nSize )
{
nSize = m_nMaxSite - m_nNowSite;
*ppBuffer = m_pBuffer + m_nNowSite;
m_nNowSite += nSize; // 注意这里不是sizeof( void * ), 类似于字符串的处理
return ( *this );
}
///////////////////////////////////////////////////////////////////////////////
// Nov.10.2010. -----
// 读写无类型缓冲区用法:
// 例子1(字符串):
// char wcsABC[256] = "ABCDEFG_abcdefg";
// sNet << SNetStream::buf_size(256) << (void *)wcsABC << end;
// char wcsABC2[256];
// sNet >> SNetStream::buf_size(256) >> (void *)wcsABC2;
// 注:实际上真正的字符串不用这么写,按照以下方法即可:
// sNet << wcsABC << end;
// char *pwcsABC2 = NULL;
// sNet >> pwcsABC2;
// 例子2(结构):
// SNetStream sNet;
// struct SHEADER
// {
// float m_fA;
// Wchar m_szStr[32];
// } header;
// header.m_fA = 123.456789f;
// wcscpy_s( header.m_szStr, 32, _T("abc_ABC_123_!@#") );
//
// sNet << SNetStream::buf_size(sizeof(header)) << &header << end;
//
// 方法1:
// SHEADER header2;
// sNet >> SNetStream::buf_size(sizeof(header)) >> (void *)&header2;
//
// 方法2:这个效率高一点,因为没有拷贝
// SHEADER *pheader3 = NULL;
// sNet >> SNetStream::buf_size(sizeof(header)) >> (void **)&pheader3;
///////////////////////////////////////////////////////////////////////////////
// 设置读取无类型缓冲区Buffer时候,给定的指针所指向的内存空间的大小
SNetStream& SNetStream::operator << ( buf_size& maxbuf )
{
m_nBufSize = maxbuf.m_nSize;
//MY_ASSERT( m_nBufSize <= nMaxMsgBuf-m_nNowSite );
//MY_ASSERT_EX( m_nBufSize <= nMaxMsgBuf-m_nNowSite, _T("A:%d, B:%d, m_nNowSite:%d, m_nMaxSite:%d"), GetCmdA(), GetCmdB(), m_nNowSite, m_nMaxSite );
return ( *this );
}
SNetStream& SNetStream::operator >> ( buf_size& maxbuf )
{
m_nBufSize = maxbuf.m_nSize;
//MY_ASSERT( m_nBufSize <= m_nMaxSite-m_nNowSite );
//MY_ASSERT_EX( m_nBufSize <= m_nMaxSite-m_nNowSite, _T("A:%d, B:%d, m_nNowSite:%d, m_nMaxSite:%d"), GetCmdA(), GetCmdB(), m_nNowSite, m_nMaxSite );
return ( *this );
}
// 无类型缓冲区大小必须事先经过buf_size(n)来指定,否则会出错。
SNetStream& SNetStream::operator << ( void *pBuffer )
{
if( m_nBufSize <= 0 )
{
//MY_ASSERT( m_nBufSize > 0 );
//MY_ASSERT_EX( m_nBufSize > 0, _T("A:%d, B:%d, m_nNowSite:%d, m_nMaxSite:%d"), GetCmdA(), GetCmdB(), m_nNowSite, m_nMaxSite );
return ( *this );
}
if ( m_nNowSite + m_nBufSize > nMaxMsgBuf )
{
//MY_ASSERT( m_nNowSite + m_nBufSize <= nMaxMsgBuf );
//MY_ASSERT_EX( m_nNowSite + m_nBufSize <= nMaxMsgBuf, _T("A:%d, B:%d, m_nNowSite:%d, m_nMaxSite:%d"), GetCmdA(), GetCmdB(), m_nNowSite, m_nMaxSite );
return( *this );
}
memcpy( m_pBuffer + m_nNowSite, pBuffer, m_nBufSize );
m_nNowSite += m_nBufSize;
m_nBufSize = 0; // 用完以后必须清零,以免影响后面的使用
return( *this );
}
// 无类型缓冲区大小必须事先经过buf_size(n)来指定,否则会出错。
SNetStream& SNetStream::operator >> ( void *pBuffer )
{
if( m_nBufSize <= 0 || !pBuffer )
{
//MY_ASSERT( m_nBufSize > 0 );
//MY_ASSERT_EX( m_nBufSize > 0, _T("A:%d, B:%d, m_nNowSite:%d, m_nMaxSite:%d"), GetCmdA(), GetCmdB(), m_nNowSite, m_nMaxSite );
return ( *this );
}
if( m_nNowSite + m_nBufSize > m_nMaxSite )
{
//MY_ASSERT( m_nNowSite + m_nBufSize <= m_nMaxSite );
//MY_ASSERT_EX( m_nNowSite + m_nBufSize <= m_nMaxSite, _T("A:%d, B:%d, m_nNowSite:%d, m_nMaxSite:%d"), GetCmdA(), GetCmdB(), m_nNowSite, m_nMaxSite );
return ( *this );
}
// 给定了指针,就拷贝,这样做速度慢一些
memcpy( pBuffer, m_pBuffer + m_nNowSite, m_nBufSize );
m_nNowSite += m_nBufSize;
m_nBufSize = 0; // 用完以后必须清零,以免影响后面的使用
return ( *this );
}
SNetStream& SNetStream::operator >> ( void **ppBuffer )
{
if( m_nBufSize <= 0 )
{
//MY_ASSERT( m_nBufSize > 0 );
//MY_ASSERT_EX( m_nBufSize > 0, _T("A:%d, B:%d, m_nNowSite:%d, m_nMaxSite:%d"), GetCmdA(), GetCmdB(), m_nNowSite, m_nMaxSite );
return ( *this );
}
if( m_nNowSite + (int)sizeof( void * ) > m_nMaxSite )
{
//MY_ASSERT( m_nNowSite + (int)sizeof( void * ) <= m_nMaxSite );
//MY_ASSERT_EX( m_nNowSite + (int)sizeof( void * ) <= m_nMaxSite, _T("A:%d, B:%d, m_nNowSite:%d, m_nMaxSite:%d"), GetCmdA(), GetCmdB(), m_nNowSite, m_nMaxSite );
return ( *this );
}
// 直接把指针指向当前位置,这样做速度快一些
*ppBuffer = m_pBuffer + m_nNowSite;
m_nNowSite += m_nBufSize; // 注意这里不是sizeof( void * ), 类似于字符串的处理
m_nBufSize = 0; // 用完以后必须清零,以免影响后面的使用
return ( *this );
}
///////////////////////////////////////////////////////////////////////////////
// 把自己的结构也放进去,这样便于嵌套使用,可以一次处理多个SNetStream流
// 注意,这里只是拷贝指针,所以要自己保存好该类的内容。所以对于跨进程是无效的,只能在本地使用
SNetStream& SNetStream::operator << ( SNetStream *pStream )
{
if ( m_nNowSite + sizeof( SNetStream * ) > nMaxMsgBuf )
{
//MY_ASSERT( m_nNowSite + sizeof( SNetStream * ) <= nMaxMsgBuf );
//MY_ASSERT_EX( m_nNowSite + sizeof( SNetStream * ) <= nMaxMsgBuf, _T("A:%d, B:%d, m_nNowSite:%d, m_nMaxSite:%d"), GetCmdA(), GetCmdB(), m_nNowSite, m_nMaxSite );
return( *this );
}
memcpy( m_pBuffer + m_nNowSite, &pStream, sizeof( SNetStream * ) );
m_nNowSite += sizeof( SNetStream * );
return ( *this );
}
SNetStream& SNetStream::operator >> ( SNetStream **ppStream )
{
if( m_nNowSite + (int)sizeof( SNetStream * ) > m_nMaxSite )
{
//MY_ASSERT( m_nNowSite + (int)sizeof( SNetStream * ) <= m_nMaxSite );
//MY_ASSERT_EX( m_nNowSite + sizeof( SNetStream * ) <= nMaxMsgBuf, _T("A:%d, B:%d, m_nNowSite:%d, m_nMaxSite:%d"), GetCmdA(), GetCmdB(), m_nNowSite, m_nMaxSite );
return ( *this );
}
memcpy( ppStream, m_pBuffer + m_nNowSite, sizeof( SNetStream * ) );
m_nNowSite += sizeof( SNetStream * );
return ( *this );
}
///////////////////////////////////////////////////////////////////////////////
SNetStream& SNetStream::operator = ( const SNetStream& stream )
{
if( this == &stream ) // 判断字赋值 [1/7/2011 zhaowenyuan]
{
return ( *this );
}
memcpy( m_szBuffer, stream.m_szBuffer, nMaxMsgBuf );
m_pBuffer = m_szBuffer;
m_nNowSite = stream.m_nNowSite;
m_nMaxSite = stream.m_nMaxSite;
m_nBufSize = stream.m_nBufSize; // 把无类型缓冲区进行序列化时,实现需要用buf_size(n)来设置缓冲区大小
return ( *this );
}
///////////////////////////////////////////////////////////////////////////////
SNetStream& SNetStream::operator << ( manipulator p )
{
// C++ 流操纵器模式
( *p )( *this );
return ( *this );
}
SNetStream& SNetStream::operator >> ( manipulator p )
{
// C++ 流操纵器模式
( *p )( *this );
return ( *this );
}
///////////////////////////////////////////////////////////////////////////////
SNetStream::SNetStream( )
{
// 默认为当前的系统缓冲区
m_pBuffer = m_szBuffer;
m_nNowSite = nMsgBeginPos;
m_nMaxSite = nMsgBeginPos;
memset( m_pBuffer, 0, nMaxMsgBuf ); // 效率如果低的话,可以取消
m_nBufSize = 0; // 把无类型缓冲区进行序列化时,实现需要用buf_size(n)来设置缓冲区大小 // Nov.10.2010. -----
}
SNetStream::SNetStream( int _wMsgID, int _wSubMsgID )
{
// 默认为当前的系统缓冲区
m_pBuffer = m_szBuffer;
m_nNowSite = nMsgBeginPos;
m_nMaxSite = nMsgBeginPos;
memset( m_pBuffer, 0, nMaxMsgBuf ); // 效率如果低的话,可以取消
m_nBufSize = 0; // 把无类型缓冲区进行序列化时,实现需要用buf_size(n)来设置缓冲区大小 // Nov.10.2010. -----
*this << _wMsgID << _wSubMsgID;
}
SNetStream::SNetStream( const SNetStream& rhs )
{
// 默认为当前的系统缓冲区
memcpy( m_szBuffer, rhs.m_szBuffer, nMaxMsgBuf );
m_pBuffer = m_szBuffer;
m_nNowSite = rhs.m_nNowSite;
m_nMaxSite = rhs.m_nMaxSite;
m_nBufSize = rhs.m_nBufSize; // 把无类型缓冲区进行序列化时,实现需要用buf_size(n)来设置缓冲区大小
}
int SNetStream::GetMaxSize()
{
return nMaxMsgBuf - nMsgBeginPos;
}
SNetStream& SNetStream::operator << ( SNetStream& Stream )
{
// 如果是自己的话就返回
if( this == &Stream )
{
return (*this);
}
int nLen = Stream.m_nMaxSite - Stream.m_nNowSite;
if ( 0 == nLen)
{
return ( *this );
}
if ( m_nNowSite + nLen > nMaxMsgBuf )
{
//MY_ASSERT( m_nNowSite + nLen <= nMaxMsgBuf );
//MY_ASSERT_EX( m_nNowSite + nLen <= nMaxMsgBuf, _T("A:%d, B:%d, m_nNowSite:%d, m_nMaxSite:%d"), GetCmdA(), GetCmdB(), m_nNowSite, m_nMaxSite );
return( *this );
}
memcpy( m_pBuffer + m_nNowSite, Stream.m_pBuffer + Stream.m_nNowSite , nLen );
m_nNowSite += nLen ;
Stream.m_nNowSite += nLen ;
return ( *this );
}
SNetStream& SNetStream::operator >> ( SNetStream& Stream )
{
Stream << (*this);
return ( *this );
}
///////////////////////////////////////////////////////////////////////////////
bool SNetStream::SetMsgBuf( char* pBuffer, int nSize )
{ // 增加一个校验,pBuffer的第一个unsigned short里面保存的就是实际Buffer的大小,要和参数传过来的大小比较,前者必须小于等于后者。
//int nRealSize = pBuffer[0]+(pBuffer[1]<<8);
// 2009-12-25 Fixed by 这个校验取出来的大小不对,还是直接强制转换过来吧
unsigned short wSize = * ( unsigned short* )pBuffer;
int nRealSize = int(wSize);
if( nRealSize > nSize )
return FALSE;
m_pBuffer = pBuffer;
m_nNowSite = nMsgBeginPos;
m_nMaxSite = nRealSize;
m_nBufSize = 0;
ResetPos();
return TRUE;
}
bool SNetStream::CopyMsgBuf( const char* pBuffer, int nSize )
{ // 增加一个校验,pBuffer的第一个unsigned short里面保存的就是实际Buffer的大小,要和参数传过来的大小比较,前者必须小于等于后者。
//int nRealSize = pBuffer[0]+(pBuffer[1]<<8);
unsigned short wSize = * ( unsigned short* )pBuffer;
int nRealSize = int(wSize);
if( nRealSize > nSize )
return FALSE;
if( nRealSize != nSize )
{
int dsfsf = 0 ;
}
m_pBuffer = m_szBuffer;
memcpy( m_pBuffer, pBuffer, nSize );
m_nNowSite = nMsgBeginPos;
m_nMaxSite = nRealSize;
m_nBufSize = 0;
ResetPos();
return TRUE;
}
// 还剩余多少空间,建立在当前固定空间的基础上,如以后改为动态空间,建议弄一个离标准大小还差多大的函数
int SNetStream::GetRemainSize(){ return nMaxMsgBuf - m_nNowSite; }
int SNetStream::GetMsgLen( ){ return m_nMaxSite; }
char* SNetStream::GetMsgBuf( ){ return m_pBuffer; }
int SNetStream::SetMsgPos( int nPos )
{
int nOldPos = m_nNowSite;
m_nNowSite = nPos;
return nOldPos;
}
int SNetStream::GetMsgPos(){ return m_nNowSite; }
void SNetStream::ResetPos( ){ m_nNowSite = nMsgBeginPos; }
void SNetStream::End( )
{
// 判一下吧,不允许重复调用此方法,以免破坏数据
if( m_nNowSite == nMsgBeginPos )
return;
// 操纵器,
// 注意1:末尾有一个4字节(固定)的保留(以后用来防止非法包)
// 注意2:然后紧随一个长度的反码( unsigned short )
//m_nNowSite += 4;
unsigned short wSite = ( unsigned short )(~( m_nNowSite + sizeof( unsigned short ) ) );
memcpy( m_pBuffer + m_nNowSite, &wSite, sizeof( unsigned short ) );
m_nNowSite += ( sizeof( unsigned short ) );
* ( unsigned short* )m_pBuffer = m_nNowSite;
m_nMaxSite = m_nNowSite;
m_nBufSize = 0;
ResetPos(); // 把标志位设定为一开始,准备别人阅读它。
}
bool SNetStream::IsReady()
{
return ( m_nNowSite == nMsgBeginPos );
}
int SNetStream::GetMsgLenEX()
{
unsigned short wLen = (* ( unsigned short* )(m_pBuffer));
int nLen = int(wLen);
return nLen;
}
// 获取当前位置到结尾之间的数据的大小
int SNetStream::GetSizeofCurToEnd(){ return m_nMaxSite - m_nNowSite; }
// 不移动位置,不改变数据,查看消息流中的命令字A和B
int SNetStream::GetCmdA()
{
if (!m_pBuffer)
{
return 0;
}
return * ( int* )(m_pBuffer+2);
}
int SNetStream::GetCmdB()
{
if (!m_pBuffer)
{
return 0;
}
return * ( int* )(m_pBuffer+6);
}
// 根据头获取消息长度
int SNetStream::GetMsgLenByHead()
{
unsigned short wLen = (* ( unsigned short* )(m_pBuffer));
int nLen = int(wLen);
return nLen;
}
// 根据尾反码获取消息长度
int SNetStream::GetMsgLenByTail()
{
unsigned short wLen = ~(* ( unsigned short* )(m_pBuffer+m_nMaxSite-sizeof(unsigned short)));
int nLen = int(wLen);
return nLen;
}
//// 对组装好的消息包,设置其消息计数
//void SNetStream::SetMsgCounter( Uint nCount )
//{
// if( m_nMaxSite >= 12 )
// {
// Uint* pCount = (Uint*)(m_pBuffer+m_nMaxSite-6);
// *pCount = nCount;
// }
//}
//Uint SNetStream::GetMsgCounter()
//{
// if( m_nMaxSite >= 12 )
// {
// Uint nCount = *(Uint*)(m_pBuffer+m_nMaxSite-6);
// return nCount;
// }
// return 0;
//}
///////////////////////////////////////////////////////////////////////////////
SNetStream& reset( SNetStream& msg )
{
msg.ResetPos( );
return msg;
}
SNetStream& end( SNetStream& msg )
{
// 2010-10-08 :将具体操作放到End方法里,并在内部加了防止重复调用结束的判断
msg.End();
return msg;
}
|
4e9f7e62e23bb40ac1b4c5dc6f670193777d12f7
|
c8b39acfd4a857dc15ed3375e0d93e75fa3f1f64
|
/Engine/Source/ThirdParty/nvTextureTools/nvTextureTools-2.0.6/src/src/nvtt/OutputOptions.cpp
|
f3597b09d7fa1cd5b3dd293f95009a19623c9366
|
[
"MIT",
"LicenseRef-scancode-proprietary-license",
"LGPL-2.0-or-later",
"GPL-1.0-or-later"
] |
permissive
|
windystrife/UnrealEngine_NVIDIAGameWorks
|
c3c7863083653caf1bc67d3ef104fb4b9f302e2a
|
b50e6338a7c5b26374d66306ebc7807541ff815e
|
refs/heads/4.18-GameWorks
| 2023-03-11T02:50:08.471040
| 2022-01-13T20:50:29
| 2022-01-13T20:50:29
| 124,100,479
| 262
| 179
|
MIT
| 2022-12-16T05:36:38
| 2018-03-06T15:44:09
|
C++
|
UTF-8
|
C++
| false
| false
| 2,452
|
cpp
|
OutputOptions.cpp
|
// Copyright NVIDIA Corporation 2007 -- Ignacio Castano <icastano@nvidia.com>
//
// 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 "OutputOptions.h"
using namespace nvtt;
OutputOptions::OutputOptions() : m(*new OutputOptions::Private())
{
reset();
}
OutputOptions::~OutputOptions()
{
delete &m;
}
/// Set default output options.
void OutputOptions::reset()
{
m.fileName.reset();
m.outputHandler = NULL;
m.errorHandler = NULL;
m.outputHeader = true;
}
/// Set output file name.
void OutputOptions::setFileName(const char * fileName)
{
m.fileName = fileName;
m.outputHandler = NULL;
}
/// Set output handler.
void OutputOptions::setOutputHandler(OutputHandler * outputHandler)
{
m.fileName.reset();
m.outputHandler = outputHandler;
}
/// Set error handler.
void OutputOptions::setErrorHandler(ErrorHandler * errorHandler)
{
m.errorHandler = errorHandler;
}
/// Set output header.
void OutputOptions::setOutputHeader(bool outputHeader)
{
m.outputHeader = outputHeader;
}
bool OutputOptions::Private::openFile() const
{
if (!fileName.isNull())
{
nvCheck(outputHandler == NULL);
DefaultOutputHandler * oh = new DefaultOutputHandler(fileName.str());
if (oh->stream.isError())
{
return false;
}
outputHandler = oh;
}
return true;
}
void OutputOptions::Private::closeFile() const
{
if (!fileName.isNull())
{
delete outputHandler;
outputHandler = NULL;
}
}
|
6779df8f84664d7aed558f0e681e67fac0cc2ee8
|
9f90c85615b6d99c9f8da1dafc7cd7a036ad5aca
|
/client/include/client.h
|
fcfa19155c734589fe40b772bc7835781ed73de3
|
[] |
no_license
|
ABScripts/SocketMessenger
|
d4185ac94ae44a74907f1c24188e59588561a239
|
a7116f8845f388ee85c38fc9faa5f2862ba3ec40
|
refs/heads/main
| 2023-03-15T07:07:09.836886
| 2021-03-13T17:53:11
| 2021-03-13T17:53:11
| 347,068,885
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 467
|
h
|
client.h
|
#include <string>
class Connection;
class Client {
Client();
public:
explicit Client(const std::string &ip, int port);
~Client();
bool sendMessage(const std::string &message);
bool connectToServer(const std::string &ip, int port);
bool isConnectedToServer() const;
bool receiveMessage(std::string &message) const;
bool portIsFree(int port) const;
private:
Connection *m_Connection;
};
|
ac842c01017026b75800117ed03d1f0f3d3f1919
|
e32d2211f3c1e00c020a87f434a5c29cef57c25e
|
/code/latin-2012/digits.cpp
|
8c5f26e73e6a5e05a35c83086788cb9f57e10b0f
|
[
"CC0-1.0"
] |
permissive
|
luizreis/programming-contest-notebook
|
bc277b41f8c7e08dea45a73c8868701bfc2742ce
|
6969e3a91a8606b08b3c8a4838970b1fe0a967df
|
refs/heads/master
| 2021-01-20T15:44:46.096033
| 2017-04-03T13:11:14
| 2017-04-03T13:11:14
| 61,964,169
| 5
| 3
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,093
|
cpp
|
digits.cpp
|
#include <bits/stdc++.h>
using namespace std;
int VS[5010];
int main(){
int n;
memset(VS,0,sizeof(VS));
for(int i=0; i<5; i++){
for(int j=0; j<10; j++){
for(int k=0; k<10; k++){
for(int l=0; l<10; l++){
if(i==0 && j==0 && k==0 && l!=0){
n = i*1000+j*100+k*10+l;
for(n; n<=5000; n++) VS[n]++;
} else if( i==0 && j==0 && k!=l) {
n = i*1000+j*100+k*10+l;
for(n; n<=5000; n++) VS[n]++;
} else if( i==0 && j!=k && j!=l && k!=l){
n = i*1000+j*100+k*10+l;
for(n; n<=5000; n++) VS[n]++;
}else if((i!=j && i!=k && i!=l) && j!=k && j!=l && k!=l){
n = i*1000+j*100+k*10+l;
for(n; n<=5000; n++) VS[n]++;
}
}
}
}
}
int a, b;
while(scanf("%d %d", &a,&b) != EOF)
printf("%d\n",VS[b] - VS[a-1]);
return 0;
}
|
54664fe3783a6503e54fe49f09242ae1c6542f46
|
4aa3ff56e35d2d4cdeba40f45795f62f276859b3
|
/Engine/Effect/CEffectManager.h
|
6ec3efbd18823b8b500c6badeb09afd1f003e6d2
|
[
"Apache-2.0"
] |
permissive
|
SixShoot/lastchaos-source-client
|
fde6a750afc4d7c5df3e9e0c542b056573c1b42d
|
3d88594dba7347b1bb45378136605e31f73a8555
|
refs/heads/master
| 2023-06-28T17:20:35.951648
| 2021-07-31T21:51:49
| 2021-07-31T21:51:49
| null | 0
| 0
| null | null | null | null |
UHC
|
C++
| false
| false
| 1,389
|
h
|
CEffectManager.h
|
//안태훈 수정 시작 //(Add & Modify SSSE Effect)(0.1)
#ifndef __CEFFECTMANAGER_H__
#define __CEFFECTMANAGER_H__
#include <Engine/Base/Memory.h>
#pragma warning(disable : 4786)
#include <list>
#pragma warning(disable : 4786)
#include <map>
#pragma warning(disable : 4786)
#include <string>
#pragma warning(disable : 4786)
#include "CEffect.h"
class ENGINE_API CEffectManager
{
public:
typedef std::list<CEffect*> my_list;
typedef std::map<std::string, CEffect*> my_map;
public:
~CEffectManager();
//안태훈 수정 시작 //(Remake Effect)(0.1)
void Read(CTStream *istrFile);
void Write(CTStream *ostrFile);
//안태훈 수정 끝 //(Remake Effect)(0.1)
static inline CEffectManager &Instance() { return m_instance; }
BOOL Register(CEffect *prototype);
BOOL Unregister(const std::string name);
BOOL IsRegistered(const std::string name);
void Clear();
void ClearCreated();
bool IsValidCreated(CEffect *obj);
CEffect *Create(const std::string name);
void Destroy(CEffect *&obj);
my_list &GetCreatedList(INDEX i) { ASSERT(i >= 0 && i < ET_COUNT); return m_listCreated[i]; }
my_map &GetRegisteredMap() { return m_mapRegistered; }
private:
CEffectManager();
protected:
static CEffectManager m_instance;
my_list m_listCreated[ET_COUNT];
my_map m_mapRegistered;
};
#endif //__CEFFECTMANAGER_H__
//안태훈 수정 끝 //(Add & Modify SSSE Effect)(0.1)
|
6b3010d4ef79c518be830068f0371c6939a5a4c7
|
adeb2c3b7506c5f96d3a65267e8d463bf5039a77
|
/SpatialGDK/Source/SpatialGDK/Public/Utils/Interest/NetCullDistanceInterest.h
|
3934ea979be10356efaeef0c9c54476ca2250ec6
|
[
"LicenseRef-scancode-generic-cla",
"LicenseRef-scancode-proprietary-license",
"MIT"
] |
permissive
|
spatialos/UnrealGDK
|
e09debdf2588cefa6f9c6d4e8216cb629d3f294d
|
884b06543c9216e9ac57b62d4d7bbc1eaf83ce27
|
refs/heads/0.11.0
| 2023-09-02T13:54:10.491925
| 2020-09-03T11:19:49
| 2020-09-03T11:19:49
| 109,980,189
| 421
| 173
|
MIT
| 2022-01-24T18:53:24
| 2017-11-08T13:35:16
|
C++
|
UTF-8
|
C++
| false
| false
| 3,227
|
h
|
NetCullDistanceInterest.h
|
// Copyright (c) Improbable Worlds Ltd, All Rights Reserved
#pragma once
#include "Interop/SpatialClassInfoManager.h"
#include "Schema/Interest.h"
/**
* This class gives static functionality which returns spatial interest constraints mirroring the net cull distance
* functionality of Unreal given the spatial class info manager.
*
* There are three different ways to generate the checkout radius constraint. The default is legacy NCD interest.
* This generates a disjunct of radius bucket queries where each spatial bucket is conjoined with all the components representing the actors with that
* net cull distance. There is also a minimum radius constraint which is not conjoined with any actor components. This is
* set to the default NCD.
*
* If bEnableNetCullDistanceInterest is true, instead each radius bucket generated will only be conjoined with a single
* marker component representing that net cull distance interest. These marker components are added to entities which represent
* actors with that defined net cull distance. An important distinction between this and legacy NCD is that
* all radius buckets now have a conjoined component.
*
* Further if also bEnableNetCullDistanceFrequency is true, then for each NCD, multiple queries will be generated.
* Inside each NCD, there will be further radius buckets all conjoined with the same NCD marker component, but only a small radius
* will receive the full frequency. More queries will be added representing bigger circles with lower frequencies depending on the
* configured frequency <-> distance ratio pairs, until the final circle will be at the configured NCD. This approach will generate
* n queries per client in total where n is the number of configured frequency buckets.
*/
DECLARE_LOG_CATEGORY_EXTERN(LogNetCullDistanceInterest, Log, All);
namespace SpatialGDK
{
class SPATIALGDK_API NetCullDistanceInterest
{
public:
static FrequencyConstraints CreateCheckoutRadiusConstraints(USpatialClassInfoManager* InClassInfoManager);
// visible for testing
static TMap<float, TArray<UClass*>> DedupeDistancesAcrossActorTypes(const TMap<UClass*, float> ComponentSetToRadius);
private:
static FrequencyConstraints CreateLegacyNetCullDistanceConstraint(USpatialClassInfoManager* InClassInfoManager);
static FrequencyConstraints CreateNetCullDistanceConstraint(USpatialClassInfoManager* InClassInfoManager);
static FrequencyConstraints CreateNetCullDistanceConstraintWithFrequency(USpatialClassInfoManager* InClassInfoManager);
static QueryConstraint GetDefaultCheckoutRadiusConstraint();
static TMap<UClass*, float> GetActorTypeToRadius();
static TArray<QueryConstraint> BuildNonDefaultActorCheckoutConstraints(const TMap<float, TArray<UClass*>> DistanceToActorTypes, USpatialClassInfoManager* ClassInfoManager);
static float NetCullDistanceSquaredToSpatialDistance(float NetCullDistanceSquared);
static void AddToFrequencyConstraintMap(const float Frequency, const QueryConstraint& Constraint, FrequencyToConstraintsMap& OutFrequencyToConstraints);
static void AddTypeHierarchyToConstraint(const UClass& BaseType, QueryConstraint& OutConstraint, USpatialClassInfoManager* ClassInfoManager);
};
} // namespace SpatialGDK
|
2e94b68fc8dbe4ffee3de5a627327cf7feab9c1f
|
33b21c1367eef2f73c3a69c62186986e80602939
|
/062_unique-paths.cpp
|
1fe516272797e55a53868a7ca6ba2fa15e55a3ec
|
[] |
no_license
|
xmyqsh/leetcode2016
|
820357560c632188b116fb254183c21f0a956d60
|
abd8e36a79cdd7f7e0c5d6c362b0f106933c7c40
|
refs/heads/master
| 2021-07-06T07:48:36.474328
| 2020-09-18T03:07:40
| 2020-09-18T03:07:40
| 65,090,012
| 5
| 5
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 288
|
cpp
|
062_unique-paths.cpp
|
class Solution {
public:
int uniquePaths(int m, int n) {
if (m < n) swap(m, n);
vector<int> dp(n + 1, 0);
dp[1] = 1;
for (int i = 0; i < m; ++i)
for (int j = 0; j < n; ++j)
dp[j + 1] += dp[j];
return dp[n];
}
};
|
733cc83d1fb1b54b0c56c7495723733e2b660212
|
5d4f3ccfbea9e92f4cb0907f50e618d728059941
|
/hackerearth_feb_easy.cpp
|
6df72af273229ae4531938ec9e553e78f86d4afb
|
[
"MIT"
] |
permissive
|
govind1996/COMPETITIVE-PROGRAMMING
|
b563a369bc76b498e6ab8d0d9a350d8d4216ea57
|
338d5a7026a444a509f65bccfce5eab9c91c5a03
|
refs/heads/master
| 2018-12-22T13:32:17.328655
| 2018-10-03T15:00:45
| 2018-10-03T15:00:45
| 108,137,687
| 2
| 2
|
MIT
| 2018-10-03T15:00:47
| 2017-10-24T14:21:36
|
C++
|
UTF-8
|
C++
| false
| false
| 1,513
|
cpp
|
hackerearth_feb_easy.cpp
|
#include<bits/stdc++.h>
using namespace std;
vector<vector <long int> > mark(100005,vector<long int>(105,0));
int main()
{
long int n,m,q;
cin>>n>>m>>q;
vector<int> color(100005);
vector<long int> cnt(100005,0);
for(long int i=0;i<n;i++)
cin>>color[i];
vector< pair<long int,long int> >edges;
for(long int i=0;i<m;i++)
{
long int a,b;
cin>>a>>b;
edges.push_back(make_pair(a,b));
if(!mark[a][color[b-1]])
{
cnt[a-1]++;
}
mark[a][color[b-1]]++;
if(!mark[b][color[a-1]])
{
cnt[b-1]++;
}
mark[b][color[a-1]]++;
if(!mark[a][color[a-1]])
{
cnt[a-1]++;
}
mark[a][color[a-1]]++;
if(!mark[b][color[b-1]])
{
cnt[b-1]++;
}
mark[b][color[b-1]]++;
}
for(long int i=0;i<q;i++)
{
long int a,b;
cin>>a>>b;
if(a==1)
{
long int v1=edges[b-1].first;
long int v2=edges[b-1].second;
edges[b-1].first=0;
edges[b-1].second=0;
if(v1!=0&&v2!=0)
{
mark[v1][color[v2-1]]--;
if(!mark[v1][color[v2-1]])
cnt[v1-1]--;
mark[v2][color[v1-1]]--;
if(!mark[v2][color[v1-1]])
cnt[v2-1]--;
}
}
else
{
cout<<cnt[b-1]<<endl;
}
}
}
|
a3c6fb24f1ec8da0de6997d8cec2a0a821109317
|
be4824fcef2ea089f6bc137d8951ce733baa1a2d
|
/cpp_module05/ex03/main.cpp
|
66062e210f97d5b69b6c60d0674131109da5070f
|
[
"MIT"
] |
permissive
|
lesorres/CPP_Modules
|
7d88df461ae79e5da5f76f98c4e1b514ec1533de
|
9e7bba58320c92b39c0c81b630e9899f5b4d838a
|
refs/heads/main
| 2023-09-04T21:09:48.725361
| 2021-11-14T21:51:45
| 2021-11-14T21:51:45
| 393,173,909
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,660
|
cpp
|
main.cpp
|
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* main.cpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: kmeeseek <kmeeseek@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/09/09 18:51:45 by kmeeseek #+# #+# */
/* Updated: 2021/09/13 21:22:05 by kmeeseek ### ########.fr */
/* */
/* ************************************************************************** */
#include "Bureaucrat.hpp"
#include "ShrubberyCreationForm.hpp"
#include "RobotomyRequestForm.hpp"
#include "PresidentialPardonForm.hpp"
#include "Form.hpp"
#include "Intern.hpp"
void my_delete(Form *form)
{
if (form)
delete form;
}
int main ()
{
Intern Tim;
Bureaucrat Bob("Bob", 1);
std::cout << "\n";
Form * shrubbery = Tim.makeForm("ShrubberyCreationForm", "Home");
Form * robotomy = Tim.makeForm("RobotomyRequestForm", "Heart of Gold Spaceship");
Form * presidential = Tim.makeForm("PresidentialPardonForm", "Trillian");
Form * rubbish = Tim.makeForm("BlaBlaBla", "Trillian");
std::cout << "\n";
Bob.signForm(*shrubbery);
Bob.executeForm(*shrubbery);
my_delete(shrubbery);
my_delete(robotomy);
my_delete(presidential);
my_delete(rubbish);
}
|
928b6a6b723ca6e210bc00f64326c492c18693b8
|
57edd51222731186482a8ac64966fcd142578a08
|
/src/ECS/component.cpp
|
be10cce740d5b78bcfb618d140448229d673319a
|
[] |
no_license
|
docwild/ECS
|
1e49810cdc2660c76497420f62783b67516778aa
|
dc0488ff7fb1141d024a8ff75a935be3d53447ee
|
refs/heads/master
| 2021-03-12T21:19:10.336374
| 2014-03-01T20:27:48
| 2014-03-01T20:27:48
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 285
|
cpp
|
component.cpp
|
#include "component.h"
using namespace ECS;
Component::Component(ECS::ecsint eid, ecsint cid):m_componentId(cid)
{
}
std::string Component::name() const
{
return m_name;
}
void Component::setName(const std::string &name)
{
m_name = name;
}
//void Component::poly()
//{
//}
|
410b4aba0e20a7524e4fdd4425768df23b73cb38
|
b45bebbcb2cf88f4c235ec23277064ab0f488674
|
/SimLib/BV.h
|
aed66d5c9a29487fc3e8f61c9e94221febd4e115
|
[] |
no_license
|
hjwdzh/level-set
|
e3ada370d52e5a98ea28283cb4828d868f48cdc0
|
53b20614c994a675cd76613553e36d2ac9a6d406
|
refs/heads/master
| 2021-03-12T22:54:52.378712
| 2015-05-11T12:18:01
| 2015-05-11T12:18:01
| 24,545,795
| 7
| 1
| null | 2014-12-15T10:12:26
| 2014-09-28T00:07:56
|
C++
|
UTF-8
|
C++
| false
| false
| 536
|
h
|
BV.h
|
#ifndef BV_H_
#define BV_H_
#include <vector>
#include "VECTOR.h"
#include "vmath.h"
class Rigid_Geometry;
namespace SimLib {
typedef VECTOR<float,3> TV;
template<class T>
class BV {
public:
BV()
: rgd(0)
{}
virtual bool intersect(const BV*) = 0;
virtual void update(std::vector<TV>& points, Matrix4d* m = 0) = 0;
virtual void include(BV** start, BV** end) = 0;
virtual BV* transform(const Matrix4d& m) = 0;
virtual T operator()(int x) = 0;
virtual ~BV() {}
Rigid_Geometry* rgd;
};
}
#endif
|
053231cf24bfbd6eb24356fefba24bd01be22939
|
a63d60c270433e84398f6be4642feb7643c0c8b0
|
/POI/POI 2004/east-west.cpp
|
3075f0b1f5830e53f6464ac676555b5e362f306e
|
[] |
no_license
|
luciocf/Problems
|
70a97784c17a106cb9e0f0ec28ac57cf58fea8c7
|
19f6000e9e6a5fe483ad4bb17e9ba50644ac954a
|
refs/heads/master
| 2023-08-21T10:54:18.574403
| 2021-10-29T03:45:16
| 2021-10-29T03:45:16
| 169,012,579
| 8
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,474
|
cpp
|
east-west.cpp
|
// POI 2004 - East-West
// Lúcio Cardoso
// NOTE: Due to the tight ML in this problem, my code only gets 84 points. However, the idea is correct.
// Solution idea is the same as: https://github.com/thecodingwizard/competitive-programming/blob/master/POI/POI04-East_West.cpp
// The only difference is how I find the edge that separates the east and west vertices. To do that,
// I calculate the amount of east and west vertices in every subtree. For any edge (u, v) where
// u is the parent of v, the edge (u, v) will be desired edge if one of the two cases below apply:
// - Every eastern vertex is in the subtree of v, and there are no west vertices in such subtree.
// - Every western vertex is in the subtree of v, and there are no east vertices in such subtree.
// In the first case, u will be the critical node. In the latter, this vertex will be v.
#include <bits/stdc++.h>
using namespace std;
typedef pair<int, int> pii;
const int maxn = 1e6;
int n, e, w, p;
int root=-1;
bool train[maxn];
pii pp;
vector<int> grafo[maxn];
vector<int> v_train, v_west;
void dfs(int u, int p)
{
if (root != -1) return;
int qtd_e = 0, qtd_w = 0;
if (u < e) qtd_e = 1;
if (u >= n-w) qtd_w = 1;
for (auto v: grafo[u])
{
if (v == p) continue;
dfs(v, u);
if (root != -1) return;
if (pp.first == e && pp.second == 0)
{
root = u;
return;
}
if (pp.second == w && pp.first == 0)
{
root = v;
return;
}
qtd_e += pp.first, qtd_w += pp.second;
}
if (root != -1) return;
pp = {qtd_e, qtd_w};
}
void calc_nivel(int u, int p, int nivel)
{
if (train[u]) v_train.push_back(nivel);
if (u >= n-w) v_west.push_back(nivel);
for (auto v: grafo[u])
if (v != p)
calc_nivel(v, u, nivel+1);
}
int main(void)
{
scanf("%d %d %d", &n, &e, &w);
for (int i = 1; i < n; i++)
{
int u, v;
scanf("%d %d", &u, &v);
--u, --v;
grafo[u].push_back(v);
grafo[v].push_back(u);
}
scanf("%d", &p);
for (int i = 0; i < p; i++)
{
int u;
scanf("%d", &u);
--u;
train[u] = 1;
}
dfs(0, -1); calc_nivel(root, -1, 0);
for (int i = 0; i < n; i++)
grafo[i].clear();
sort(v_train.begin(), v_train.end());
sort(v_west.begin(), v_west.end());
for (int i = 1; i < p; i++)
if (v_train[i] <= v_train[i-1])
v_train[i] = v_train[i-1]+1;
int ans = 0;
for (int i = 0; i < p; i++)
ans = max(ans, v_train[i] + v_west[p-i-1]);
v_train.clear(), v_west.clear();
v_train.clear(), v_west.clear();
printf("%d\n", ans);
}
|
a540433247767aebfe6a3092053c0df0cac57dbe
|
460f981dfe1a05f14d2a4cdc6cc71e9ad798b785
|
/3/amd64/envs/navigator/include/kml/dom/kml_funcs.h
|
d0fd0008f44eb880318fe29649db63bfbadb27f1
|
[
"LicenseRef-scancode-proprietary-license",
"BSD-3-Clause",
"Intel",
"LicenseRef-scancode-unknown-license-reference",
"MIT",
"Zlib",
"BSD-2-Clause",
"GPL-2.0-only",
"GPL-1.0-or-later",
"LGPL-2.0-or-later",
"LicenseRef-scancode-mit-old-style",
"dtoa",
"LicenseRef-scancode-public-domain-disclaimer",
"LicenseRef-scancode-public-domain"
] |
permissive
|
DFO-Ocean-Navigator/navigator-toolchain
|
d8c7351b477e66d674b50da54ec6ddc0f3a325ee
|
930d26886fdf8591b51da9d53e2aca743bf128ba
|
refs/heads/master
| 2022-11-05T18:57:30.938372
| 2021-04-22T02:02:45
| 2021-04-22T02:02:45
| 234,445,230
| 0
| 1
|
BSD-3-Clause
| 2022-10-25T06:46:23
| 2020-01-17T01:26:49
|
C++
|
UTF-8
|
C++
| false
| false
| 3,770
|
h
|
kml_funcs.h
|
// Copyright 2008, Google Inc. 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 Google Inc. 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 AUTHOR ``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 AUTHOR 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.
// This file contains the declaration of the public Parse and Serialize API
// functions.
#ifndef KML_DOM_KML_FUNCS_H__
#define KML_DOM_KML_FUNCS_H__
#include <ostream>
#include "kml/dom/element.h"
#include "kml/dom/kml_ptr.h"
namespace kmldom {
// Parse the KML in the given memory buffer. On success this returns an
// Element* to the root of the KML. On failure 0 is returned and a human
// readable error string is stored to errors if such is supplied.
ElementPtr Parse(const string& xml, string* errors);
// As Parse(), but invokes the underlying XML parser's namespace-aware mode.
ElementPtr ParseNS(const string& xml, string* errors);
// As Parse(), but invokes the underlying XML parser's namespace-aware mode
// such that both prefixed and non-prefixed Atom is recognized as the root.
// Use this to parse "<feed xmlns='http://www.w3.org/2005/Atom'>...", or
// "<atom:feed xmlns:atom='http://www.w3.org/2005/Atom'>...". The Atom
// namespace MUST be supplied.
ElementPtr ParseAtom(const string& atom, string* errors);
// This is a simplified interface for the benefit of SWIG.
ElementPtr ParseKml(const string& xml);
// This function is the public API for generating "pretty" XML for the KML
// hierarchy rooted at the given Element. "pretty" is 2 space indent for
// each level of XML depth.
string SerializePretty(const ElementPtr& root);
// This function is the public API for generating "raw" XML for the KML
// hierarchy rooted at the given Element. "raw" is no indentation white space
// and no newlines.
string SerializeRaw(const ElementPtr& root);
// This function is the public API for emitting the XML of an element
// hierarchy. The comments for SerializePretty() vs SerializeRaw() describe
// the behavior of the "pretty" flag. If root or xml are null this method
// does nothing and immediately returns.
void SerializeToOstream(const ElementPtr& root, bool pretty, std::ostream* xml);
// This function is the public API for returning the element's tag name, for
// example "Placemark" for <Placemark> and "NetworkLink" for <NetworkLink>.
// If element is NULL or otherwise invalid an empty string is returned.
string GetElementName(const ElementPtr& element);
} // end namespace kmldom
#endif // KML_DOM_KML_FUNCS_H__
|
3d7c372ce0680824a4c09b43448ad298795c9db6
|
31f6de70943b645a06184f41763cf3b2630d9c33
|
/.svn/pristine/3d/3d7c372ce0680824a4c09b43448ad298795c9db6.svn-base
|
8bcd4c25e3696d70c32e6f10cbf89154c51e1070
|
[] |
no_license
|
SamH7798/cs23001
|
7ec2d76902300e45c90f10d7263547a1a85faaba
|
40a7c6149cbfbd8586063441ba4ad319146f7271
|
refs/heads/main
| 2023-04-27T01:40:33.213116
| 2021-05-22T01:03:52
| 2021-05-22T01:03:52
| 369,686,602
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 3,343
|
3d7c372ce0680824a4c09b43448ad298795c9db6.svn-base
|
// bigint Test Program
//
// Tests: times_10, uses ==
//
// NEED TO IMPLEMENT
//
#include <iostream>
#include <cassert>
#include "bigint.hpp"
//===========================================================================
int main () {
{
//------------------------------------------------------
// Setup fixture
bigint bi(3);
// Test
bi = bi.times10(2);
// Verify
assert(bi == 300); //Wrong. Will FAIL, fix and add tests cases
}
//Add test cases as needed.
//-----------------------------------------------------------------------
{
// 1).
// Setup fixture
bigint bi(6);
// Test
bi = bi.times10(5);
// Verify
assert(bi == "600000");
}
//-----------------------------------------------------------------------
{
// 2).
// Setup fixture
bigint bi(4);
// Test
bi = bi.times10(7);
// Verify
assert(bi == "40000000");
}
//-----------------------------------------------------------------------
{
// 3).
// Setup fixture
bigint bi(1);
// Test
bi = bi.times10(3);
// Verify
assert(bi == 1000);
}
//-----------------------------------------------------------------------
{
// 4).
// Setup fixture
bigint bi(2);
// Test
bi = bi.times10(9);
// Verify
assert(bi == "2000000000");
}
//-----------------------------------------------------------------------
{
// 5).
// Setup fixture
bigint bi(7);
// Test
bi = bi.times10(6);
// Verify
assert(bi == "7000000");
}
//-----------------------------------------------------------------------
{
// 6).
// Setup fixture
bigint bi(4);
// Test
bi = bi.times10(5);
// Verify
assert(bi == "400000");
}
//-----------------------------------------------------------------------
{
// 7).
// Setup fixture
bigint bi(9);
// Test
bi = bi.times10(8);
// Verify
assert(bi == "900000000");
}
//-----------------------------------------------------------------------
{
// 8).
// Setup fixture
bigint bi(34);
// Test
bi = bi.times10(6);
// Verify
assert(bi == "34000000");
}
//-----------------------------------------------------------------------
{
// 9).
// Setup fixture
bigint bi(57);
// Test
bi = bi.times10(4);
// Verify
assert(bi == "570000");
} //-----------------------------------------------------------------------
{
// 10).
// Setup fixture
bigint bi(82);
// Test
bi = bi.times10(7);
// Verify
assert(bi == "820000000");
}
//-----------------------------------------------------------------------
{
// 11).
// Setup fixture
bigint bi(62);
// Test
bi = bi.times10(2);
// Verify
assert(bi == 6200);
}
//-----------------------------------------------------------------------
{
// 12).
// Setup fixture
bigint bi(33);
// Test
bi = bi.times10(7);
// Verify
assert(bi == "330000000");
}
std::cout << "Done testing times_10" << std::endl;
}
|
|
6605086c4b63c56d0ad9a7cf514225fbe36e74e9
|
cc207c3d434b30c0cb63b3720839af590cc4cdf0
|
/암네시아/2017-09-01_Amnesia/Dx3D/cUI.h
|
68d88934774dbe3a57b3802c414fbcab54674e6a
|
[] |
no_license
|
SDW101411/SGA
|
dba730af1c2472c013d25a4e32b743d54531172a
|
0a46b3e9241752a828ce083fca8ef157e3cb2c02
|
refs/heads/master
| 2021-07-11T09:58:13.436851
| 2017-10-14T18:48:47
| 2017-10-14T18:48:47
| 102,058,641
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 346
|
h
|
cUI.h
|
#pragma once
#include "cUIButton.h"
class cUI : public iButtonDelegate
{
private:
public:
cUI();
virtual ~cUI();
public:
virtual void Update();
virtual void Render();
virtual void MsgProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam);
virtual void OnMouse(cUIButton* pSender);
virtual void OnClick(cUIButton* pSender);
};
|
054ae9cedefb73bf647ec712ee0ac27e47c86ed7
|
125ae0adb562478b184bbb35d40f2c43b335415c
|
/UserData/UDBNetDB.h
|
cc2c9f7356c58502d5a3ed6e73bede151c9e19c2
|
[] |
no_license
|
dulton/53_hero
|
ff49ce6096c379931d7649b654c5fa76de4630de
|
48057fe05e75f57b500a395e6ff8ff9c06da6895
|
refs/heads/master
| 2020-02-25T04:19:18.632727
| 2016-05-20T03:44:44
| 2016-05-20T03:44:44
| 62,197,327
| 3
| 2
| null | 2016-06-29T05:11:41
| 2016-06-29T05:11:38
| null |
WINDOWS-1252
|
C++
| false
| false
| 27,171
|
h
|
UDBNetDB.h
|
/*****************************************************/
// Copyright © 2007-2012 Navico
// Confidential and proprietary. All rights reserved.
/*****************************************************/
#ifndef UDBNETDB_H
#define UDBNETDB_H
#include "UDBBasicDB.h"
#include "UDBServer.h"
#include "UDBClient.h"
#include <Utils/MacAddress.h>
#include <boost/function.hpp>
/*!
\class tUDBNetDB UDBNetDB.h
\brief A database inherits from \ref tUDBBasicDB with added network synchronisation
function.
The database also keeps a history buffer, which contains the last
\ref tUDBNetDB::MAX_CMDBUF_SIZE commands committed to the database. The history
buffer is used during quick synchronisation to play-back the commands
associated with a particular version.
\section Registration Registration
The database needs to be registered with a \ref tUDBClient and
a \ref tUDBServer using \ref RegisterClient and \ref RegisterServer, respectively.
\section ErrorFramework Error Checking and Post-Update Processing Framework
As \ref tUDBNetDB is designed to be as generic a database as possible,
an error checking framework, which consists of three
functions: \ref AddCheck, \ref EditCheck and \ref DeleteCheck, has been
incorporated into the class. Subclasses are free to override or extend
these functions to alter the default error checking behavior.
There may be cases where databases wish to further
process the data after they have been committed to the database. For
example, in the case of \ref tUDBWpRtDB, the name of a waypoint or
route is cached in an internal hash table for quick lookup. These
names can only be cached, or purged in the case of deletion, after the
the associated command passes all error checking and is executed
successfully. For this purpose, \ref tUDBNetDB provides three protected
members, \ref PostAdd, \ref PostEdit and \ref PostDelete for subclasses to
override.
\section ConflictResolution Conflict Resolutions
When an error occurs that requires a manual intervention, such as
editing an entry with invalid \ref tUID, or conflicts arise between entries
due to off line operation or database merging, the client will report
the error by sending one of the Resolve<b>X</b>() signals. The error
does not need to be handled immediately, but all pending commands will
be blocked until the conflict has been resolved by calling the
corresponding <b>X</b>Resolved() method. Calling <b>X</b>Resolved()
without receiving a matching Resolve<b>X</b>() signal, or calling the
method multiple times for a single signal, can cause unpredictable
behavior and thus is strongly prohibited.
- <b>ResolveDupeUID() and DupeUIDResolved()</b>: This conflict can only occur
as a result of adding an entry with a \ref tUID that is already in use by
another entry in the database. Background synchronisation can never
generate a \e Duplicated \e UID conflict like this. \sa ProcessDupeUID()
- <b>ResolveMerge() and MergeResolved()</b>: A \e Merge conflict can only be
triggered from background synchronisation. When the synchronisation
routine is unable to decide whether to take the local or master copy
of a conflicting entry based on its time stamp, the entry is added to
a pending list, which is later presented as an argument of the
conflict resolution signal once the synchronisation is completed. \sa ResolveConflict, MergeResolved
- <b>ResolveOrphan() and OrphanResolved()</b>: When editing an entry that no
longer exists in the database--possibly removed and subsequently
purged by another user on the network, an \e Orphan conflict is
raised, asking for a decision on whether the missing entry should be
added back to the database. \sa ProcessOrphan
Additional conflict resolution can be included in subclasses by adding
the matching signal and callback functions, on top of overriding the
\ref ExtraConflictResolution() function. See \ref tUDBWpRtDB for a
comprehensive example on how to extend \ref tUDBNetDB.
\sa tUDBBasicDB, tUDBClient, tUDBServer
*/
class tUDBNetDB : public tUDBBasicDB
{
Q_OBJECT
friend class tUDBClient; //!< Allows direct access to avoid exposure of private members through public interface.
friend class tUDBServer; //!< Allows direct access to avoid exposure of private members through public interface.
friend class tUDBServerClientThread; //!< Allows direct access to avoid exposure of private members through public interface.
public:
/*!
Constructs a tUDBNetDB object with \a dbName.
*/
tUDBNetDB(const char* dbName, quint32 uid);
/*!
Destructs the tUDBNetDB object.
*/
virtual ~tUDBNetDB();
/*!
Returns a copy of the history buffer.
\note This function is likely to be useful only for debug purposes.
\note This function is thread safe (see \ref ThreadSafe for more info).
*/
QList<tUDBCmdEntry> History() const;
/*!
Clears the history buffer.
\note This function is likely to be useful only for debug purposes.
\note This function is thread safe (see \ref ThreadSafe for more info).
*/
void ClearHistory();
/*!
Returns the database's unique integer id.
*/
quint32 UID() const;
/*!
Returns the number of command pending in queue.
\note This command is likely to be useful only for debug purposes.
\note This function is thread safe (see \ref ThreadSafe for more info).
*/
int PendingCommands() const;
//! \name Command Entry Queue for delayed network announcing
///@{
/*!
Adds an announcement command to the queue.
*/
void EnqueueAnnouncementCommand( boost::shared_ptr<tUDBCmdEntry> cmdEntry );
/*!
Dequeues an announcement command from the queue.
\note This function is thread safe (@see \ref ThreadSafe)
\return An announcement command from the front of the queue or boost::shared_ptr<tUDBCmdEntry>() when the queue is empty.
*/
boost::shared_ptr<tUDBCmdEntry> DequeueAnnouncementCommand();
/*!
Are there any Announcement Commands in the queue?
\return True if the Announcement Command Queue is not empty, otherwise false.
*/
bool AnyAnnouncementCommand();
/*!
Get the current number of entries listed within the Announcement Command Queue.
\return The number of entries in the queue.
*/
int GetAnnouncementCommandQueueSize();
///@}
/*!
Check if this database has been loaded.
\note This flag is set in the derived classes upon successfully loading the database using their implementation of the \ref tUDBBasicDB::Load method.
\return True if the database has been loaded, otherwise false.
*/
virtual bool IsLoaded() const
{
return tUDBBasicDB::IsLoaded();
};
/*! \name Main database interface
These commands are the main way that entries are added, edited, deleted, purged, etc from the database.
Calling any of these functions will ensure that the entry is added to all networked devices that have
registered this database.
\note The commands are not instantaneous and require this instance to be registered with a \ref tUDBClient to be executed.
\note Commands that are called before the instance is registered with a \ref tUDBClient will wait in in a queue until registered and then be executed.
\note The command has been executed once a \ref DBUpdated signal, referencing the given entry, is received.
*/
///@{
/*!
\brief Sends an "Add" command for this entry over the network.
*/
virtual void Add( const tUDBEntry& entry );
/*!
\brief Sends an "Edit" command for this entry over the network.
*/
virtual void Edit( const tUDBEntry& entry );
/*!
\brief Sends an "Delete" command for this entry over the network.
*/
virtual void Delete( const tUDBEntry& entry );
/*!
The non-blocking \e Purge interface (see \ref BlockingNonblocking for more info).
All deleted entries with a timestamp earlier than \a cutoff will be purged from database.
\note This function is thread safe (see \ref ThreadSafe for more info).
*/
virtual void PurgeAllDeleted( uint cutoff = 0 );
/*!
\brief Adds a "Clear" command to the internal command queue.
Once the command is executed all entries in this database are permanently deleted.
\note This function is thread safe (see \ref ThreadSafe for more info).
*/
virtual void Clear( void );
/*!
\brief Adds a "DeleteAll" command to the internal command queue.
Once the command is executed all entries in this database are marked as deleted.
\note This function is thread safe (see \ref ThreadSafe for more info).
*/
virtual void DeleteAll( const tUDBEntry& entry );
///@}
/*!
\brief Resolves a merge conflict situation by updating or deleting the items in \a localList.
The \a localList is the list of actions that need to be taken (commands to be applied) in order
for the conflict to be resolved.
Depending on the value of each \a localList item's \ref tUDBEntry::IsDeleted() flag the item is
either removed or updated.
\see ResolveConflict
*/
virtual void MergeResolved( const QList<tUDBEntry>& localList );
/*!
\brief Stub function.
Derived classes may optionally provide a way to create a "dummy \ref tUDBEntry" object.
*/
virtual void SetDummyEntryData( tUDBEntry&, tUDBEntry::DataType ) {}
public slots:
/*!
Sets the \a isDisabled flag for this UDB database. When the flag is true, UDB
will no longer be queuing commands which effectively disables it from operating.
UDB can be re-enabled by passing false.
*/
void Disable( bool isDisabled );
signals:
//! \name strictly for tUDBClient
///@{
/*!
This signal is emitted when ever the \ref tUDBClient processes pending commands in this database
or a conflict is resolved.
*/
void NewCommand();
/*!
This signal is emitted when the database has been loaded.
\note It is the derived classes responsibility to emit this signal.
*/
void Loaded();
///@}
/*!
This signal is emitted before a DeleteAll command is applied to the database.
It allows listeners to do preprocessing, if necessary.
\note It is emitted before \ref PreDeleteAll() is called.
*/
void PreDeleteAllWpRt();
/*!
This signal is emitted after a DeleteAll command is applied to the database.
It allows listeners to do post processing, if necessary.
\note It is emitted after \ref PostDeleteAll() is called.
*/
void PostDeleteAllWpRt();
/*!
This signal is emitted after a PurgeAll command is applied to the database.
It allows listeners to do post processing, if necessary.
\note It is emitted after \ref PostPurgeAll(uint) is called.
*/
void PostPurgeAll();
protected:
// TODO:
// The DataBaseID's listed have to stay due to legacy support but can be made more
// generic/extensible by turning it into a hash function that uses the
// tUDBBasicDB::GetVersionTableName(), see NSW-22277.
// Lazar Sumar, 9 Feb 2015
/*!
\brief Navico's explicit unique database identifiers.
All network databases require a unique identifier so that the commands can be
applied to the correct database on all clients. If a client does not support a
particular database the commands are ignored.
\sa UID()
*/
enum DataBaseID
{
WpRtDBID = 0x01, //!< Waypoint & Route database unique id. Identifies a \ref tUDBWpRtDB
AlarmDBID = 0x02, //!< Alarms database unique id. Identifies a \ref tUDBAlarmDB
EventLogDBID = 0x03, //!< Event log database unique id. Identifies a \ref tUDBEventLogDB
SettingDBID = 0x04, //!< Shared settings database unique id. Identifies a \ref tUDBSharedSettingDB
VariablesDBID = 0x05 //!< Variables database unique id. Identifies a \ref tUDBVariablesDB
};
//! \name tUDBClient & tUDBServer interface
///@{
// command queue interface (thread safe)
/*!
Returns and removes the next command pending in queue.
\note This function is thread safe (see \ref ThreadSafe for more info).
*/
boost::shared_ptr<tUDBCmdEntry> NextCommand();
/*!
Returns true if this database is in a conflict state, false otherwise.
\see ResolveConflict, MergeResolved, ConflictResolution, ExtraConflictResolution
*/
bool WaitingForConflict() const;
///@}
//! \name error checking callbacks
///@{
/*!
Returns \ref tUDBError::NoError if \a entry passes all error checking for \e Add
(see \ref ErrorFramework for more info); otherwise returns the error code.
The error checking performed at this level includes: \ref tUDBError::DupeUID
Subclasses implementing this function should call the base implementation to
complete the rudimentary error checking.
@see EditCheck(), DeleteCheck()
*/
virtual tUDBErrType AddCheck( const tUDBEntry& entry ) const;
/*!
Returns tUDBError::NoError if \a entry passes all error checking for \e Edit
(see \ref ErrorFramework for more info); otherwise returns the error code.
The error checking performed at this level includes: tUDBError::InvalidUID
Subclasses implementing this function should call the base implementation to
complete the rudimentary error checking.
@see AddCheck(), DeleteCheck()
*/
virtual tUDBErrType EditCheck( const tUDBEntry& entry ) const;
/*!
Returns tUDBError::NoError if \a entry passes all error checking for \e Delete
(see \ref ErrorFramework for more info); otherwise returns the
corresponding error code.
The error checking performed at this level includes: tUDBError::InvalidUID
Subclasses implementing this function should call the base implementation to
complete the rudimentary error checking.
@see AddCheck(), EditCheck()
*/
virtual tUDBErrType DeleteCheck( const tUDBEntry& entry ) const;
///@}
/*! \name Command interface
This is the internal interface that executes the commands which the functions
\ref Add, \ref Edit, \ref Delete, \ref PurgeAllDeleted, \ref Clear, \ref DeleteAll,
had previously sent to the network. These functions get the changes to the disk.
\note This function is called by the \ref tUDBClient or \ref tUDBServer when a command is received from the network to execute that command.
*/
///@{
/*! Adds the given \ref tUDBEntry to the database.
\note Corresponds to the \ref Add command being received.
*/
virtual void AddInternal(const tUDBEntry& entry);
/*! Applies the Edit command by updating the corresponding \a entry in the database
to the values provided in \a entry.
\note Corresponds to the \ref Edit command being received.
*/
virtual void EditInternal( const tUDBEntry& entry );
/*! Deletes the given \ref tUDBEntry from the database.
\note Corresponds to the \ref Delete command being received.
*/
virtual void DeleteInternal( const tUDBEntry& entry );
/*! Purges all entries from the database that are older than \a timeStamp
\note Corresponds to the \ref PurgeAllDeleted command being received.
*/
virtual void PurgeAllInternal( uint timeStamp );
/*! Clears all entries from the database.
\note Corresponds to the \ref Clear command being received.
*/
virtual void ClearInternal();
/*! Deletes all the database entries that are older than the given timestamp
and calls the \ref PreDeleteAll and \ref PostDeleteAll checks
before and after calling the \ref DeleteAll.
\note Corresponds to the \ref DeleteAll command being received.
*/
virtual void DeleteAllInternal( quint32 timestamp, tUDBEntry::DataType type );
/*! Forwarded from base class. @see \ref tUDBBasicDB::DeleteAll
Override to provide the Delete functionality to \ref DeleteAllInternal.
\warning Do not use this function directly. \ref DeleteAllInternal calls this
\warning function after performing pre-processing checks and also performs post-processing checks.
*/
using tUDBBasicDB::DeleteAll;
///@}
//! \name full sync interface (non thread-safe)
///@{
/*!
This function is called towards the end of the full synchronisation process.
At this point the local database has been completed replaced by the one
on the master, and the differences, if any, are classified into the two lists,
\a missingList Contains entries existed locally but not found on master
\a conflictList Contains entries modified locally
Subclasses should implement this function if extra processing,
such as filtering, dependency checking etc, is required.
*/
virtual void PostFullSync( const QList<tUDBEntry>& missingList, const QList<tUDBEntry>& conflictList );
/*!
This function is called at the end of the \ref PostFullSync.
At this point all automatic conflict resolution has been done,
and the remaining list needs to be resolved manually. If the GUI
is to resolve these conflicts, the subclass should emit a signal,
so the conflict can be resolved in the GUI thread.
This function is the default implementation, which just accepts
the masters version.
\a mergeList Contains entries that could not be merged automatically
Subclasses should implement this function if extra processing
is required.
\warning The default conflict resolution is to do nothing and simply
\warning clear the flag.
*/
virtual void ResolveConflict( QList<tUDBEntry> mergeList );
///@}
/*!
This is the primary conflict resolution function called when a conflict, \a err, is discovered for the \a xCmdEntry command entry.
This function further delegates the resolution to:
- \ref ProcessDupeUID when \a err is of \ref tUDBErrType::DupeUID
- \ref ProcessOrphan when \a err is of \ref tUDBErrType::InvalidUID
- \ref ExtraConflictResolution for all other \a err values.
This function is not thread-safe. \see ThreadSafe
\sa ProcessDupeUID, ProcessOrphan, ExtraConflictResolution
*/
void ConflictResolution(boost::shared_ptr<tUDBCmdEntry> xCmdEntry, tUDBErrType err);
//! \name load & reset (thread safe, strictly internal)
///@{
/*!
This function loads the database from disk (or otherwise).
\note The database is not considered ready for use until this function is called and returns true.
\return True when the database has loaded successfully, otherwise false.
*/
virtual bool Load();
/*!
Apart from executing the base class implementation, tUDBBasicDB::Reset(),
this function also clears the history buffer, and command queue.
*/
virtual void Reset();
///@}
//! \name command queue interface (thread safe, strictly internal)
///@{
/*!
Submits a \a cmd for \a entry to the internal command queue. The entry is
automatically time-stamped, and marked as deleted if \a cmd = tUDBCmdEntry::Rmv,
before it is queued.
\note This function is thread safe (see \ref ThreadSafe for more info).
*/
void QueueCommand(tUDBCmdType, const tUDBEntry& entry, bool setTimestamp=true);
///@}
//! \name history interface (non-thread safe, strictly internal)
///@{
/*!
Adds \a cmdEntry to the history buffer. Pops the oldest history entry
if buffer exceeds \ref MAX_CMDBUF_SIZE.
\note This function is not thread safe (see \ref ThreadSafe for more info).
@see HasHistory(), GetHistory().
*/
void AddHistory(tUDBCmdEntry cmdEntry);
/*!
Returns true if the history buffer has an entry with matching \a version;
otherwise returns false.
\note This function is not thread safe (see \ref ThreadSafe for more info).
@see AddHistory(), GetHistory().
*/
bool HasHistory( quint64 version ) const;
/*!
Returns the address of the entry with matching \a version from the history buffer.
Returns 0 if no entry is found.
\note This function is not thread safe (see \ref ThreadSafe for more info).
@see AddHistory(), HasHistory().
*/
const tUDBCmdEntry* GetHistory( quint64 version ) const;
///@}
//! \name pre-command processing (strictly internal)
///@{
/*!
This function is called before an Edit command is executed on the database.
It is intended to allow any pre-processing required by the derived classes.
The \a first \a argument passed is the new entry whose values are about to overwrite
the old entry (the \a second \a argument) which contains the current values for this
entry in the database.
*/
virtual void PreEdit( const tUDBEntry&, const tUDBEntry& )
{}
/*!
This function is called before a Delete command is executed on the database.
The single argument contains the entry that is about to be deleted.
*/
virtual void PreDelete( const tUDBEntry& )
{}
/*!
This function is called before a DeleteAll command is executed on the database.
The single argument contains the entry type which is about to be deleted.
*/
virtual void PreDeleteAll( tUDBEntry::DataType )
{};
///@}
//! \name post-command processing (strictly internal)
///@{
/*!
Post-update processing callback function for \e Add (see \ref ErrorFramework for more info).
Subclasses implementing this function must call the base implementation to complete post-update processing.
@see PostEdit(), PostDelete()
*/
virtual void PostAdd( const tUDBEntry& );
/*!
Post-update processing callback function for \e Edit (see \ref ErrorFramework for more info).
Subclasses implementing this function must call the base implementation to complete post-update processing.
@see PostAdd(), PostDelete()
*/
virtual void PostEdit( const tUDBEntry&, const tUDBEntry& );
/*!
Post-update processing callback function for \e Delete (see \ref ErrorFramework for more info).
Subclasses implementing this function must call the base implementation to complete post-update processing.
@see PostAdd(), PostEdit()
*/
virtual void PostDelete( const tUDBEntry&, const tUDBEntry& );
/*!
Post-update processing callback function for \e Purge (see \ref ErrorFramework for more info).
Subclasses implementing this function must call the base implementation to complete post-update processing.
*/
virtual void PostPurgeAll( uint );
/*!
Post-update processing callback function for \e Clear (see \ref ErrorFramework for more info).
Subclasses implementing this function must call the base implementation to complete post-update processing.
*/
virtual void PostClear();
/*!
Post-update processing callback function for \e DeleteAll (see \ref ErrorFramework for more info).
Subclasses implementing this function must call the base implementation to complete post-update processing.
*/
virtual void PostDeleteAll( tUDBEntry::DataType type = tUDBEntry::IsAny );
///@}
/*!
This function is called by \ref tUDBClient when a FullSync operation has been completed.
Stub function. It is intended for use by the derived classes.
*/
virtual void FullSyncCompleted(){;}
//! \name conflict resolution (non thread-safe, strictly internal)
///@{
/*!
Handles any extra conflict resolution.
Subclasses implementing this function must call the base implementation to handle any unknown conflict.
*/
virtual void ExtraConflictResolution( boost::shared_ptr<tUDBCmdEntry> xCmdEntry, tUDBErrType errorType);
/*!
Conflict resolution for an Add operation on a duplicate \a entry.
When this function is called, the \entry has not been added to the database and this is the last place it will
be available before being discarded.
\note This function can, for example, automatically create an Edit command assuming that the Add command was called
incorrectly and that the intent was to actually Edit the \a entry.
\sa AddCheck(), \sa ConflictResolution()
*/
virtual void ProcessDupeUID( const tUDBEntry& entry );
/*!
Conflict resolution for any operation conducted on a missing \a entry.
When editing an \a entry that no longer exists in the database -- possibly removed and subsequently purged by another
user on the network -- an \e Orphan conflict is raised, asking for a decision on whether the missing entry should
be added back to the database.
\sa AddCheck(), \sa ConflictResolution()
*/
virtual void ProcessOrphan( const tUDBEntry& entry );
///@}
//! \name additional DB parameters (strictly internal)
///@{
QList<tUDBCmdEntry> m_History; //!< The history buffer, a fixed size FIFO.
///@}
//! \name command queue (strictly internal)
///@{
tQReadWriteLock m_CmdLock; //!< Used to serialize multi thread access
QQueue< boost::shared_ptr<tUDBCmdEntry> > m_CmdQueue; //!< Command queue. Protected by tUDBClient::m_CmdLock.
tQReadWriteLock m_AnnCmdLock; //!< Used to serialize multi thread access
QQueue< boost::shared_ptr<tUDBCmdEntry> > m_AnnCmdQueue; //!< Announcement Command queue. Protected by tUDBClient::m_CmdLock.
bool m_WaitConflict; //!< Pending flag for conflict resolution. Protected by tUDBClient::m_CmdLock.
const quint32 m_UID; //!< Unique ID for the database
///@}
private:
static const int MAX_CMDBUF_SIZE = 20; //!< The allowable maximum number of entries in the history buffer.
bool m_IsDisabled; //!< This flag prevents UDB from queuing any more commands, effectively stopping it.
};
#endif // UDBNETDB_H
|
efaac0bc7cc96166f14f51b15c0769a49103e233
|
82f144c9d095217772f8bac0722c4012652fa14f
|
/inst/include/Rfast/matrix.hpp
|
af57700e020b3d189a4f247a369d1adca163c5c3
|
[] |
no_license
|
RfastOfficial/Rfast
|
41cb1a922c3fc77b8045e5e00a031e012374c261
|
11cc9fc68b679eccfd6d0453c7f267e7f163cf41
|
refs/heads/master
| 2023-09-01T08:32:01.112957
| 2023-07-03T13:44:28
| 2023-07-03T13:44:28
| 213,182,742
| 107
| 15
| null | 2023-07-03T13:44:30
| 2019-10-06T14:25:53
|
C++
|
UTF-8
|
C++
| false
| false
| 42,320
|
hpp
|
matrix.hpp
|
#ifndef MATRIX_HPP
#define MATRIX_HPP
#include <RcppArmadillo.h>
#include <algorithm>
#include <vector>
#include <thread>
#include <chrono>
#ifdef _OPENMP
#include <omp.h>
#endif
#include "templates.h"
#include "types.hpp"
#include "helpers.hpp"
#include "vector.hpp"
namespace Rfast
{
using namespace Rcpp;
using namespace arma;
using namespace std;
using namespace chrono;
inline NumericMatrix transpose(NumericMatrix x)
{
const int p = x.ncol(), n = x.nrow();
NumericMatrix f = p == n ? clone(x) : NumericMatrix(p, n);
if (p == n)
{
for (int i = 1; i < p; ++i)
{
for (int u = 0; u < i; ++u)
{
swap(f(u, i), f(i, u));
}
}
}
else
{
mat ff(f.begin(), p, n, false), xx(x.begin(), n, p, false);
#ifdef _OPENMP
#pragma omp parallel for
#endif
for (int i = 0; i < p; ++i)
{
ff.row(i) = xx.col(i).t();
}
}
return f;
}
inline mat transpose(mat x)
{
const int p = x.n_cols, n = x.n_rows;
mat f;
if (p == n)
{
f = x;
for (int i = 1; i < p; ++i)
{
for (int u = 0; u < i; ++u)
{
swap(f(u, i), f(i, u));
}
}
}
else
{
f = mat(p, n);
#ifdef _OPENMP
#pragma omp parallel for
#endif
for (int i = 0; i < p; ++i)
{
f.row(i) = x.col(i).t();
}
}
return f;
}
inline NumericMatrix matrix_multiplication(NumericMatrix X, NumericMatrix Y, const bool tx = false, const bool ty = false)
{
int p, n;
if (!tx)
{
n = X.nrow();
p = ty ? Y.nrow() : Y.ncol();
}
else if (tx)
{
n = X.ncol();
p = Y.ncol();
}
NumericMatrix C(n, p);
mat CC(C.begin(), n, p, false), x(X.begin(), X.nrow(), X.ncol(), false), y(Y.begin(), Y.nrow(), Y.ncol(), false);
colvec yi;
if (!tx and !ty)
{ // matrix multiplication
mat xx = transpose(x);
for (int i = 0; i < p; ++i)
{
yi = y.col(i);
#ifdef _OPENMP
#pragma omp parallel for
#endif
for (int j = 0; j < n; ++j)
{
CC(j, i) = dot(xx.col(j), yi);
}
}
}
else if (tx)
{ // crossprod
for (int i = 0; i < p; ++i)
{
yi = y.col(i);
#ifdef _OPENMP
#pragma omp parallel for
#endif
for (int j = 0; j < n; ++j)
{
CC(j, i) = dot(x.col(j), yi);
}
}
}
else
{ // tcrossprod
mat yy = transpose(y);
mat xx = transpose(x);
for (int i = 0; i < p; ++i)
{
yi = yy.col(i);
#ifdef _OPENMP
#pragma omp parallel for
#endif
for (int j = 0; j < n; ++j)
{
CC(j, i) = dot(xx.col(j), yi);
}
}
}
return C;
}
inline mat matrix_multiplication(mat x, mat y, const bool tx = false, const bool ty = false)
{
int p = 0, n = 0;
if (tx)
{
n = x.n_cols;
p = x.n_cols;
}
else
{
n = x.n_rows;
p = ty ? x.n_rows : x.n_cols;
}
mat C(n, p);
colvec yi;
if (!tx and !ty)
{ // matrix multiplication
mat xx = Rfast::transpose(x);
for (int i = 0; i < p; ++i)
{
yi = y.col(i);
#ifdef _OPENMP
#pragma omp parallel for
#endif
for (int j = 0; j < n; ++j)
{
C(j, i) = dot(xx.col(j), yi);
}
}
}
else if (tx)
{ // crossprod
for (int i = 0; i < p; ++i)
{
yi = y.col(i);
#ifdef _OPENMP
#pragma omp parallel for
#endif
for (int j = 0; j < n; ++j)
{
C(j, i) = dot(x.col(j), yi);
}
}
}
else
{ // tcrossprod
mat yy = Rfast::transpose(y);
mat xx = Rfast::transpose(x);
for (int i = 0; i < p; ++i)
{
yi = yy.col(i);
#ifdef _OPENMP
#pragma omp parallel for
#endif
for (int j = 0; j < n; ++j)
{
C(j, i) = dot(xx.col(j), yi);
}
}
}
return C;
}
inline NumericMatrix colSort(DataFrame x, const bool descend = false, const bool stable = false, const bool parallel = false)
{
NumericMatrix F(x.nrows(), x.size());
mat f(F.begin(), F.nrow(), F.ncol(), false);
if (descend)
{
if (stable)
{
if (parallel)
{
#ifdef _OPENMP
#pragma omp parallel for
#endif
for (DataFrame::iterator s = x.begin(); s < x.end(); ++s)
{
int i = s - x.begin();
switch (Type::type(s->get()))
{
case Type::Types::REAL:
setResultParallelSection<colvec, NumericVector, std::stable_sort>(f, s->get(), i, mgreater<bool, double, double>);
break;
case Type::Types::INT:
setResultParallelSection<colvec, NumericVector, std::stable_sort>(f, s->get(), i, mgreater<bool, double, double>);
break;
case Type::Types::CHAR:
setResultParallelSection<colvec, NumericVector, std::stable_sort>(f, s->get(), i, mgreater<bool, double, double>);
break;
case Type::Types::FACTOR:
f.col(i) = FactorVector::sort<colvec>(s->get(), descend);
break;
default:
break;
}
}
}
else
{
int i = 0;
for (DataFrame::iterator s = x.begin(); s < x.end(); ++s)
{
switch (Type::type(s->get()))
{
case Type::Types::REAL:
setResult<colvec, std::stable_sort>(f, i, s->get(), mgreater<bool, double, double>);
break;
case Type::Types::INT:
setResult<colvec, std::stable_sort>(f, i, s->get(), mgreater<bool, double, double>);
break;
case Type::Types::CHAR:
setResult<colvec, std::stable_sort>(f, i, s->get(), mgreater<bool, double, double>);
break;
case Type::Types::FACTOR:
f.col(i++) = FactorVector::sort<colvec>(s->get(), descend);
break;
default:
break;
}
}
}
}
else
{
if (parallel)
{
#ifdef _OPENMP
#pragma omp parallel for
#endif
for (DataFrame::iterator s = x.begin(); s < x.end(); ++s)
{
int i = s - x.begin();
switch (Type::type(s->get()))
{
case Type::Types::REAL:
setResultParallelSection<colvec, NumericVector, std::sort>(f, s->get(), i, mgreater<bool, double, double>);
break;
case Type::Types::INT:
setResultParallelSection<colvec, NumericVector, std::sort>(f, s->get(), i, mgreater<bool, double, double>);
break;
case Type::Types::CHAR:
setResultParallelSection<colvec, NumericVector, std::sort>(f, s->get(), i, mgreater<bool, double, double>);
break;
case Type::Types::FACTOR:
f.col(i) = FactorVector::sort<colvec>(s->get(), descend);
break;
default:
break;
}
}
}
else
{
int i = 0;
for (DataFrame::iterator s = x.begin(); s < x.end(); ++s)
{
switch (Type::type(s->get()))
{
case Type::Types::REAL:
setResult<colvec, std::sort>(f, i, s->get(), mgreater<bool, double, double>);
break;
case Type::Types::INT:
setResult<colvec, std::sort>(f, i, s->get(), mgreater<bool, double, double>);
break;
case Type::Types::CHAR:
setResult<colvec, std::sort>(f, i, s->get(), mgreater<bool, double, double>);
break;
case Type::Types::FACTOR:
f.col(i++) = FactorVector::sort<colvec>(s->get(), descend);
break;
default:
break;
}
}
}
}
}
else
{
if (stable)
{
if (parallel)
{
#ifdef _OPENMP
#pragma omp parallel for
#endif
for (DataFrame::iterator s = x.begin(); s < x.end(); ++s)
{
int i = s - x.begin();
switch (Type::type(s->get()))
{
case Type::Types::REAL:
setResultParallelSection<colvec, NumericVector, std::stable_sort>(f, s->get(), i);
break;
case Type::Types::INT:
setResultParallelSection<colvec, NumericVector, std::stable_sort>(f, s->get(), i);
break;
case Type::Types::CHAR:
setResultParallelSection<colvec, NumericVector, std::stable_sort>(f, s->get(), i);
break;
case Type::Types::FACTOR:
f.col(i) = FactorVector::sort<colvec>(s->get(), descend);
break;
default:
break;
}
}
}
else
{
int i = 0;
for (DataFrame::iterator s = x.begin(); s < x.end(); ++s)
{
switch (Type::type(s->get()))
{
case Type::Types::REAL:
setResult<colvec, std::stable_sort>(f, i++, s->get());
break;
case Type::Types::INT:
setResult<colvec, std::stable_sort>(f, i++, s->get());
break;
case Type::Types::CHAR:
setResult<colvec, std::stable_sort>(f, i++, s->get());
break;
case Type::Types::FACTOR:
f.col(i++) = FactorVector::sort<colvec>(s->get(), descend);
break;
default:
break;
}
}
}
}
else
{
if (parallel)
{
#ifdef _OPENMP
#pragma omp parallel for
#endif
for (DataFrame::iterator s = x.begin(); s < x.end(); ++s)
{
int i = s - x.begin();
switch (Type::type(s->get()))
{
case Type::Types::REAL:
setResultParallelSection<colvec, NumericVector, std::sort>(f, s->get(), i);
break;
case Type::Types::INT:
setResultParallelSection<colvec, NumericVector, std::sort>(f, s->get(), i);
break;
case Type::Types::CHAR:
setResultParallelSection<colvec, NumericVector, std::sort>(f, s->get(), i);
break;
case Type::Types::FACTOR:
f.col(i) = FactorVector::sort<colvec>(s->get(), descend);
break;
default:
break;
}
}
}
else
{
int i = 0;
for (DataFrame::iterator s = x.begin(); s < x.end(); ++s)
{
switch (Type::type(s->get()))
{
case Type::Types::REAL:
setResult<colvec, std::sort>(f, i++, s->get());
break;
case Type::Types::INT:
setResult<colvec, std::sort>(f, i++, s->get());
break;
case Type::Types::CHAR:
setResult<colvec, std::sort>(f, i++, s->get());
break;
case Type::Types::FACTOR:
f.col(i++) = FactorVector::sort<colvec>(s->get(), descend);
break;
default:
break;
}
}
}
}
}
colnames(F) = static_cast<CharacterVector>(x.names());
return F;
}
inline NumericMatrix colSort(NumericMatrix X, const bool descend = false, const bool stable = false, const bool parallel = false)
{
const int n = X.nrow(), p = X.ncol();
NumericMatrix F(n, p);
mat f(F.begin(),n, p,false),x(X.begin(),n, p,false);
if (descend)
{
if (stable)
{
if (parallel)
{
#ifdef _OPENMP
#pragma omp parallel for
#endif
for (int i = 0; i < p; ++i)
{
colvec coli = x.col(i);
stable_sort(coli.begin(), coli.end(), greater<double>());
f.col(i) = coli;
}
}
else
{
colvec coli(n);
for (int i = 0; i < p; ++i)
{
coli = x.col(i);
stable_sort(coli.begin(), coli.end(), greater<double>());
f.col(i) = coli;
}
}
}
else
{
if (parallel)
{
#ifdef _OPENMP
#pragma omp parallel for
#endif
for (int i = 0; i < p; ++i)
{
colvec coli = x.col(i);
sort(coli.begin(), coli.end(), greater<double>());
f.col(i) = coli;
}
}
else
{
colvec coli(n);
for (int i = 0; i < p; ++i)
{
coli = x.col(i);
sort(coli.begin(), coli.end(), greater<double>());
f.col(i) = coli;
}
}
}
}
else
{
if (stable)
{
if (parallel)
{
#ifdef _OPENMP
#pragma omp parallel for
#endif
for (int i = 0; i < p; ++i)
{
colvec coli = x.col(i);
stable_sort(coli.begin(), coli.end());
f.col(i) = coli;
}
}
else
{
colvec coli(n);
for (int i = 0; i < p; ++i)
{
coli = x.col(i);
stable_sort(coli.begin(), coli.end());
f.col(i) = coli;
}
}
}
else
{
if (parallel)
{
#ifdef _OPENMP
#pragma omp parallel for
#endif
for (int i = 0; i < p; ++i)
{
colvec coli = x.col(i);
sort(coli.begin(), coli.end());
f.col(i) = coli;
}
}
else
{
colvec coli(n);
for (int i = 0; i < p; ++i)
{
coli = x.col(i);
sort(coli.begin(), coli.end());
f.col(i) = coli;
}
}
}
}
return F;
}
inline mat colSort(mat x, const bool descend = false, const bool stable = false, const bool parallel = false)
{
const int n = x.n_rows, p = x.n_cols;
mat f(n, p);
if (descend)
{
if (stable)
{
if (parallel)
{
#ifdef _OPENMP
#pragma omp parallel for
#endif
for (int i = 0; i < p; ++i)
{
colvec coli = x.col(i);
stable_sort(coli.begin(), coli.end(), greater<double>());
f.col(i) = coli;
}
}
else
{
colvec coli(n);
for (int i = 0; i < p; ++i)
{
coli = x.col(i);
stable_sort(coli.begin(), coli.end(), greater<double>());
f.col(i) = coli;
}
}
}
else
{
if (parallel)
{
#ifdef _OPENMP
#pragma omp parallel for
#endif
for (int i = 0; i < p; ++i)
{
colvec coli = x.col(i);
sort(coli.begin(), coli.end(), greater<double>());
f.col(i) = coli;
}
}
else
{
colvec coli(n);
for (int i = 0; i < p; ++i)
{
coli = x.col(i);
sort(coli.begin(), coli.end(), greater<double>());
f.col(i) = coli;
}
}
}
}
else
{
if (stable)
{
if (parallel)
{
#ifdef _OPENMP
#pragma omp parallel for
#endif
for (int i = 0; i < p; ++i)
{
colvec coli = x.col(i);
stable_sort(coli.begin(), coli.end());
f.col(i) = coli;
}
}
else
{
colvec coli(n);
for (int i = 0; i < p; ++i)
{
coli = x.col(i);
stable_sort(coli.begin(), coli.end());
f.col(i) = coli;
}
}
}
else
{
if (parallel)
{
#ifdef _OPENMP
#pragma omp parallel for
#endif
for (int i = 0; i < p; ++i)
{
colvec coli = x.col(i);
sort(coli.begin(), coli.end());
f.col(i) = coli;
}
}
else
{
colvec coli(n);
for (int i = 0; i < p; ++i)
{
coli = x.col(i);
sort(coli.begin(), coli.end());
f.col(i) = coli;
}
}
}
}
return f;
}
inline NumericMatrix rowSort(NumericMatrix x, const bool descend = false, const bool stable = false, const bool parallel = false)
{
const int n = x.nrow(), p = x.ncol();
NumericMatrix f(n, p);
mat xx(x.begin(), n, p, false), ff(f.begin(), n, p, false);
if (descend)
{
if (stable)
{
if (parallel)
{
#ifdef _OPENMP
#pragma omp parallel for
#endif
for (int i = 0; i < n; ++i)
{
rowvec rowi = xx.row(i);
stable_sort(rowi.begin(), rowi.end(), greater<double>());
ff.row(i) = rowi;
}
}
else
{
rowvec rowi(n);
for (int i = 0; i < n; ++i)
{
rowi = xx.row(i);
stable_sort(rowi.begin(), rowi.end(), greater<double>());
ff.row(i) = rowi;
}
}
}
else
{
if (parallel)
{
#ifdef _OPENMP
#pragma omp parallel for
#endif
for (int i = 0; i < n; ++i)
{
rowvec rowi = xx.row(i);
sort(rowi.begin(), rowi.end(), greater<double>());
ff.row(i) = rowi;
}
}
else
{
rowvec rowi(n);
for (int i = 0; i < n; ++i)
{
rowi = xx.row(i);
sort(rowi.begin(), rowi.end(), greater<double>());
ff.row(i) = rowi;
}
}
}
}
else
{
if (stable)
{
if (parallel)
{
#ifdef _OPENMP
#pragma omp parallel for
#endif
for (int i = 0; i < n; ++i)
{
rowvec rowi = xx.row(i);
stable_sort(rowi.begin(), rowi.end());
ff.row(i) = rowi;
}
}
else
{
rowvec rowi(n);
for (int i = 0; i < n; ++i)
{
rowi = xx.row(i);
stable_sort(rowi.begin(), rowi.end());
ff.row(i) = rowi;
}
}
}
else
{
if (parallel)
{
#ifdef _OPENMP
#pragma omp parallel for
#endif
for (int i = 0; i < n; ++i)
{
rowvec rowi = xx.row(i);
sort(rowi.begin(), rowi.end());
ff.row(i) = rowi;
}
}
else
{
rowvec rowi(n);
for (int i = 0; i < n; ++i)
{
rowi = xx.row(i);
sort(rowi.begin(), rowi.end());
ff.row(i) = rowi;
}
}
}
}
return f;
}
inline mat rowSort(mat x, const bool descend = false, const bool stable = false, const bool parallel = false)
{
const int n = x.n_rows, p = x.n_cols;
mat f(n, p);
if (descend)
{
if (stable)
{
if (parallel)
{
#ifdef _OPENMP
#pragma omp parallel for
#endif
for (int i = 0; i < n; ++i)
{
rowvec rowi = x.row(i);
stable_sort(rowi.begin(), rowi.end(), greater<double>());
f.row(i) = rowi;
}
}
else
{
rowvec rowi(n);
for (int i = 0; i < n; ++i)
{
rowi = x.row(i);
stable_sort(rowi.begin(), rowi.end(), greater<double>());
f.row(i) = rowi;
}
}
}
else
{
if (parallel)
{
#ifdef _OPENMP
#pragma omp parallel for
#endif
for (int i = 0; i < n; ++i)
{
rowvec rowi = x.row(i);
sort(rowi.begin(), rowi.end(), greater<double>());
f.row(i) = rowi;
}
}
else
{
rowvec rowi(n);
for (int i = 0; i < n; ++i)
{
rowi = x.row(i);
sort(rowi.begin(), rowi.end(), greater<double>());
f.row(i) = rowi;
}
}
}
}
else
{
if (stable)
{
if (parallel)
{
#ifdef _OPENMP
#pragma omp parallel for
#endif
for (int i = 0; i < n; ++i)
{
rowvec rowi = x.row(i);
stable_sort(rowi.begin(), rowi.end());
f.row(i) = rowi;
}
}
else
{
rowvec rowi(n);
for (int i = 0; i < n; ++i)
{
rowi = x.row(i);
stable_sort(rowi.begin(), rowi.end());
f.row(i) = rowi;
}
}
}
else
{
if (parallel)
{
#ifdef _OPENMP
#pragma omp parallel for
#endif
for (int i = 0; i < n; ++i)
{
rowvec rowi = x.row(i);
sort(rowi.begin(), rowi.end());
f.row(i) = rowi;
}
}
else
{
rowvec rowi(n);
for (int i = 0; i < n; ++i)
{
rowi = x.row(i);
sort(rowi.begin(), rowi.end());
f.row(i) = rowi;
}
}
}
}
return f;
}
inline bool is_symmetric(NumericMatrix x)
{
int ncl = x.ncol(), i, j;
for (i = 1; i < ncl; ++i)
{
for (j = 0; j < i; ++j)
{
if (x(j, i) != x(i, j))
{
return false;
}
}
}
return true;
}
inline bool is_symmetric(mat x)
{
int ncl = x.n_cols, i, j;
for (i = 1; i < ncl; ++i)
{
for (j = 0; j < i; ++j)
{
if (x(j, i) != x(i, j))
{
return false;
}
}
}
return true;
}
inline NumericVector colMedian(DataFrame &x, const bool na_rm = false, const bool parallel = false)
{
NumericVector f(x.size());
if (na_rm)
{
if (parallel)
{
colvec ff(f.begin(), f.size(), false);
#pragma omp parallel for
for (DataFrame::iterator s = x.begin(); s < x.end(); ++s)
{
colvec y;
int i;
#pragma omp critical
{
NumericVector yy;
yy = *s;
y = colvec(yy.begin(), yy.size());
i = s - x.begin();
}
ff[i] = med_helper<colvec>(y.begin(), y.begin() + (int)(std::remove_if(y.begin(), y.end(), R_IsNA) - y.begin()));
}
}
else
{
int i = 0;
NumericVector y(x.nrows());
for (auto c : x)
{
y = c;
f[i++] = med_helper<NumericVector>(y.begin(), y.begin() + (int)(std::remove_if(y.begin(), y.end(), R_IsNA) - y.begin()));
}
}
}
else
{
const int step = x.nrow(), middle = step / 2 - 1;
if (step % 2 == 0)
{
if (parallel)
{
colvec ff(f.begin(), f.size(), false);
#pragma omp parallel for
for (DataFrame::iterator s = x.begin(); s < x.end(); ++s)
{
colvec y;
int i;
#pragma omp critical
{
NumericVector yy;
yy = *s;
y = colvec(yy.begin(), yy.size());
i = s - x.begin();
}
nth_element(y.begin(), y.begin() + middle, y.end());
ff[i] = (y[middle] + *(min_element(y.begin() + middle + 1, y.end()))) / 2.0;
}
}
else
{
int i = 0;
NumericVector y(x.nrows());
for (auto c : x)
{
y = c;
nth_element(y.begin(), y.begin() + middle, y.end());
f[i++] = (y[middle] + *(min_element(y.begin() + middle + 1, y.end()))) / 2.0;
}
}
}
else
{
if (parallel)
{
colvec ff(f.begin(), f.size(), false);
#pragma omp parallel for
for (DataFrame::iterator s = x.begin(); s < x.end(); ++s)
{
colvec y;
int i;
#pragma omp critical
{
NumericVector yy;
yy = *s;
y = colvec(yy.begin(), yy.size());
i = s - x.begin();
}
nth_element(y.begin(), y.begin() + middle + 1, y.end());
ff[i] = y[middle + 1];
}
}
else
{
int i = 0;
NumericVector y(x.nrows());
for (auto c : x)
{
y = c;
nth_element(y.begin(), y.begin() + middle + 1, y.end());
f[i++] = NumericVector(y.begin(), y.end())[middle + 1];
}
}
}
}
f.names() = static_cast<CharacterVector>(x.names());
return f;
}
inline NumericVector colMedian(NumericMatrix &x, const bool na_rm = false, const bool parallel = false)
{
const int p = x.ncol();
NumericVector F(p);
if (na_rm)
{
if (parallel)
{
mat xx(x.begin(), x.nrow(), p, false);
colvec ff(F.begin(), p, false);
#ifdef _OPENMP
#pragma omp parallel for
#endif
for (int i = 0; i < p; ++i)
{
colvec tmp = xx.col(i);
ff[i] = med_helper<colvec>(tmp.begin(), tmp.begin() + (int)(std::remove_if(tmp.begin(), tmp.end(), R_IsNA) - tmp.begin()));
}
}
else
{
NumericVector tmp(x.nrow());
for (int i = 0; i < p; ++i)
{
tmp = x.column(i);
F[i] = med_helper<NumericVector>(tmp.begin(), tmp.begin() + (int)(std::remove_if(tmp.begin(), tmp.end(), R_IsNA) - tmp.begin()));
}
}
}
else
{
const int step = x.nrow(), middle = step / 2 - 1;
if (step % 2 == 0)
{
if (parallel)
{
mat xx(x.begin(), step, p, false);
colvec ff(F.begin(), p, false), tmpp(step);
#ifdef _OPENMP
#pragma omp parallel for
#endif
for (int i = 0; i < p; ++i)
{
colvec tmpp = xx.col(i);
nth_element(tmpp.begin(), tmpp.begin() + middle, tmpp.end());
ff[i] = (tmpp[middle] + *(min_element(tmpp.begin() + middle + 1, tmpp.end()))) / 2.0;
}
}
else
{
NumericVector tmp(step);
for (int i = 0; i < p; ++i)
{
tmp = x.column(i);
nth_element(tmp.begin(), tmp.begin() + middle, tmp.end());
F[i] = (tmp[middle] + *(min_element(tmp.begin() + middle + 1, tmp.end()))) / 2.0;
}
}
}
else
{
if (parallel)
{
mat xx(x.begin(), step, p, false);
colvec ff(F.begin(), p, false);
#ifdef _OPENMP
#pragma omp parallel for
#endif
for (int i = 0; i < p; ++i)
{
colvec tmpp = xx.col(i);
nth_element(tmpp.begin(), tmpp.begin() + middle + 1, tmpp.end());
ff[i] = tmpp[middle + 1];
}
}
else
{
NumericVector tmp(step);
for (int i = 0; i < p; ++i)
{
tmp = x.column(i);
nth_element(tmp.begin(), tmp.begin() + middle + 1, tmp.end());
F[i] = tmp[middle + 1];
}
}
}
}
return F;
}
inline rowvec colMedian(mat &x, const bool na_rm = false, const bool parallel = false)
{
const int p = x.n_cols;
rowvec F(p);
if (na_rm)
{
if (parallel)
{
#ifdef _OPENMP
#pragma omp parallel for
#endif
for (int i = 0; i < p; ++i)
{
colvec tmp = x.col(i);
F[i] = med_helper<colvec>(tmp.begin(), tmp.begin() + (int)(std::remove_if(tmp.begin(), tmp.end(), R_IsNA) - tmp.begin()));
}
}
else
{
colvec tmp(x.n_rows);
for (int i = 0; i < p; ++i)
{
tmp = x.col(i);
F[i] = med_helper<colvec>(tmp.begin(), tmp.begin() + (int)(std::remove_if(tmp.begin(), tmp.end(), R_IsNA) - tmp.begin()));
}
}
}
else
{
const int step = x.n_rows, middle = step / 2 - 1;
if (step % 2 == 0)
{
if (parallel)
{
#ifdef _OPENMP
#pragma omp parallel for
#endif
for (int i = 0; i < p; ++i)
{
colvec tmp = x.col(i);
nth_element(tmp.begin(), tmp.begin() + middle, tmp.end());
F[i] = (tmp[middle] + *(min_element(tmp.begin() + middle + 1, tmp.end()))) / 2.0;
}
}
else
{
colvec tmp(step);
for (int i = 0; i < p; ++i)
{
tmp = x.col(i);
nth_element(tmp.begin(), tmp.begin() + middle, tmp.end());
F[i] = (tmp[middle] + *(min_element(tmp.begin() + middle + 1, tmp.end()))) / 2.0;
}
}
}
else
{
if (parallel)
{
#ifdef _OPENMP
#pragma omp parallel for
#endif
for (int i = 0; i < p; ++i)
{
colvec tmp = x.col(i);
nth_element(tmp.begin(), tmp.begin() + middle + 1, tmp.end());
F[i] = tmp[middle + 1];
}
}
else
{
colvec tmp(step);
for (int i = 0; i < p; ++i)
{
tmp = x.col(i);
nth_element(tmp.begin(), tmp.begin() + middle + 1, tmp.end());
F[i] = tmp[middle + 1];
}
}
}
}
return F;
}
inline NumericVector rowMedian(NumericMatrix x, const bool na_rm = false, const bool parallel = false)
{
const int p = x.nrow();
NumericVector F(p);
if (na_rm)
{
if (parallel)
{
mat xx(x.begin(), x.nrow(), p, false);
colvec ff(F.begin(), p, false);
#ifdef _OPENMP
#pragma omp parallel for
#endif
for (int i = 0; i < p; ++i)
{
rowvec tmp = xx.row(i);
ff[i] = med_helper<rowvec>(tmp.begin(), tmp.begin() + (int)(std::remove_if(tmp.begin(), tmp.end(), R_IsNA) - tmp.begin()));
}
}
else
{
NumericVector tmp(x.ncol());
for (int i = 0; i < p; ++i)
{
tmp = x.row(i);
F[i] = med_helper<rowvec>(tmp.begin(), tmp.begin() + (int)(std::remove_if(tmp.begin(), tmp.end(), R_IsNA) - tmp.begin()));
}
}
}
else
{
const int sz = x.ncol(), middle = sz / 2 - 1;
if (sz % 2 == 0)
{
if (parallel)
{
mat xx(x.begin(), p, sz, false);
colvec ff(F.begin(), p, false);
#ifdef _OPENMP
#pragma omp parallel for
#endif
for (int i = 0; i < p; ++i)
{
rowvec rowii = xx.row(i);
nth_element(rowii.begin(), rowii.begin() + middle, rowii.end());
ff[i] = (rowii[middle] + *(min_element(rowii.begin() + middle + 1, rowii.end()))) / 2.0;
}
}
else
{
NumericVector rowi(sz);
for (int i = 0; i < p; ++i)
{
rowi = x.row(i);
nth_element(rowi.begin(), rowi.begin() + middle, rowi.end());
F[i] = (rowi[middle] + *(min_element(rowi.begin() + middle + 1, rowi.end()))) / 2.0;
}
}
}
else
{
if (parallel)
{
mat xx(x.begin(), p, sz, false);
colvec ff(F.begin(), p, false);
#ifdef _OPENMP
#pragma omp parallel for
#endif
for (int i = 0; i < p; ++i)
{
rowvec rowii = xx.row(i);
nth_element(rowii.begin(), rowii.begin() + middle, rowii.end());
ff[i] = rowii[middle + 1];
}
}
else
{
NumericVector rowi(sz);
for (int i = 0; i < p; ++i)
{
rowi = x.row(i);
nth_element(rowi.begin(), rowi.begin() + middle, rowi.end());
F[i] = rowi[middle + 1];
}
}
}
}
return F;
}
inline colvec rowMedian(mat &x, const bool na_rm = false, const bool parallel = false)
{
const int p = x.n_rows;
colvec F(p);
if (na_rm)
{
if (parallel)
{
#ifdef _OPENMP
#pragma omp parallel for
#endif
for (int i = 0; i < p; ++i)
{
rowvec tmp = x.row(i);
F[i] = med_helper<rowvec>(tmp.begin(), tmp.begin() + (int)(std::remove_if(tmp.begin(), tmp.end(), R_IsNA) - tmp.begin()));
}
}
else
{
rowvec tmp(x.n_cols);
for (int i = 0; i < p; ++i)
{
tmp = x.row(i);
F[i] = med_helper<rowvec>(tmp.begin(), tmp.begin() + (int)(std::remove_if(tmp.begin(), tmp.end(), R_IsNA) - tmp.begin()));
}
}
}
else
{
const int sz = x.n_cols, middle = sz / 2 - 1;
if (sz % 2 == 0)
{
if (parallel)
{
#ifdef _OPENMP
#pragma omp parallel for
#endif
for (int i = 0; i < p; ++i)
{
rowvec rowi = x.row(i);
nth_element(rowi.begin(), rowi.begin() + middle, rowi.end());
F[i] = (rowi[middle] + *(min_element(rowi.begin() + middle + 1, rowi.end()))) / 2.0;
}
}
else
{
rowvec rowi(sz);
for (int i = 0; i < p; ++i)
{
rowi = x.row(i);
nth_element(rowi.begin(), rowi.begin() + middle, rowi.end());
F[i] = (rowi[middle] + *(min_element(rowi.begin() + middle + 1, rowi.end()))) / 2.0;
}
}
}
else
{
if (parallel)
{
#ifdef _OPENMP
#pragma omp parallel for
#endif
for (int i = 0; i < p; ++i)
{
rowvec rowi = x.row(i);
nth_element(rowi.begin(), rowi.begin() + middle, rowi.end());
F[i] = rowi[middle + 1];
}
}
else
{
rowvec rowi(sz);
for (int i = 0; i < p; ++i)
{
rowi = x.row(i);
nth_element(rowi.begin(), rowi.begin() + middle, rowi.end());
F[i] = rowi[middle + 1];
}
}
}
}
return F;
}
inline NumericVector colVars(NumericMatrix x, const bool std = false, const bool na_rm = false, const bool parallel = false)
{
mat xx(x.begin(), x.nrow(), x.ncol(), false);
NumericVector f(xx.n_cols);
rowvec ff(f.begin(), f.size(), false);
if (parallel)
{
#pragma omp parallel for
for (unsigned int i = 0; i < xx.n_cols; ++i)
{
ff[i] = Rfast::var<colvec>(xx.col(i), std, na_rm);
}
}
else
{
for (unsigned int i = 0; i < xx.n_cols; ++i)
{
ff[i] = Rfast::var<colvec>(xx.col(i), std, na_rm);
}
}
return f;
}
inline NumericVector colVars(DataFrame x, const bool std = false, const bool na_rm = false, const bool parallel = false)
{
NumericVector f(x.size());
if (parallel)
{
colvec ff(f.begin(), f.size(), false);
#pragma omp parallel for
for (DataFrame::iterator s = x.begin(); s < x.end(); ++s)
{
colvec y;
int i;
#pragma omp critical
{
NumericVector yy;
yy = *s;
y = colvec(yy.begin(), yy.size(), false);
i = s - x.begin();
}
ff[i] = Rfast::var<colvec>(y, std, na_rm);
}
}
else
{
int i = 0;
NumericVector y(x.nrows());
for (auto c : x)
{
y = c;
f[i++] = Rfast::var<colvec>(y, std, na_rm);
}
}
f.names() = static_cast<CharacterVector>(x.names());
return f;
}
inline NumericVector rowVars(NumericMatrix x, const bool std = false, const bool na_rm = false, const bool parallel = false)
{
mat xx(x.begin(), x.nrow(), x.ncol(), false);
NumericVector f(xx.n_rows);
colvec ff(f.begin(), f.size(), false);
if (parallel)
{
#ifdef _OPENMP
#pragma omp parallel for
#endif
for (unsigned int i = 0; i < xx.n_rows; ++i)
{
ff[i] = Rfast::var<rowvec>(xx.row(i), std, na_rm);
}
}
else
{
for (unsigned int i = 0; i < xx.n_rows; ++i)
{
ff[i] = Rfast::var<rowvec>(xx.row(i), std, na_rm);
}
}
return f;
}
inline rowvec colVars(mat x, const bool std = false, const bool na_rm = false, const bool parallel = false)
{
rowvec f(x.n_cols);
if (parallel)
{
#ifdef _OPENMP
#pragma omp parallel for
#endif
for (unsigned int i = 0; i < x.n_cols; ++i)
{
f[i] = Rfast::var<colvec>(x.col(i), std, na_rm);
}
}
else
{
for (unsigned int i = 0; i < x.n_cols; ++i)
{
f[i] = Rfast::var<colvec>(x.col(i), std, na_rm);
}
}
return f;
}
inline colvec rowVars(mat x, const bool std = false, const bool na_rm = false, const bool parallel = false)
{
colvec f(x.n_rows);
if (parallel)
{
#pragma omp parallel for
for (unsigned int i = 0; i < x.n_rows; ++i)
{
f[i] = Rfast::var<rowvec>(x.row(i), std, na_rm);
}
}
else
{
for (unsigned int i = 0; i < x.n_rows; ++i)
{
f[i] = Rfast::var<rowvec>(x.row(i), std, na_rm);
}
}
return f;
}
inline NumericVector colMads(DataFrame x, const string method = "median", const bool na_rm = false, const bool parallel = false)
{
NumericVector f(x.size());
if (parallel)
{
colvec ff(f.begin(), f.size(), false);
#pragma omp parallel for
for (DataFrame::iterator s = x.begin(); s < x.end(); ++s)
{
colvec y;
int i;
#pragma omp critical
{
NumericVector yy;
yy = *s;
y = colvec(yy.begin(), yy.size(), false);
i = s - x.begin();
}
ff[i] = Rfast::mad<colvec>(y, method, na_rm);
}
}
else
{
int i = 0;
NumericVector y(x.nrows());
for (auto c : x)
{
y = c;
f[i++] = Rfast::mad<colvec>(y, method, na_rm);
}
}
f.names() = static_cast<CharacterVector>(x.names());
return f;
}
inline NumericVector colMads(NumericMatrix x, const string method = "median", const bool na_rm = false, const bool parallel = false)
{
mat xx(x.begin(), x.nrow(), x.ncol(), false);
NumericVector f(xx.n_cols);
rowvec ff(f.begin(), f.size(), false);
if (parallel)
{
#pragma omp parallel for
for (unsigned int i = 0; i < xx.n_cols; ++i)
{
ff[i] = Rfast::mad<colvec>(xx.col(i), method, na_rm);
}
}
else
{
for (unsigned int i = 0; i < xx.n_cols; ++i)
{
ff[i] = Rfast::mad<colvec>(xx.col(i), method, na_rm);
}
}
return f;
}
inline NumericVector rowMads(NumericMatrix x, const string method = "median", const bool na_rm = false, const bool parallel = false)
{
mat xx(x.begin(), x.nrow(), x.ncol(), false);
NumericVector f(xx.n_rows);
colvec ff(f.begin(), f.size(), false);
if (parallel)
{
#pragma omp parallel for
for (unsigned int i = 0; i < xx.n_rows; ++i)
{
ff[i] = Rfast::mad<rowvec>(xx.row(i), method, na_rm);
}
}
else
{
for (unsigned int i = 0; i < xx.n_rows; ++i)
{
ff[i] = Rfast::mad<rowvec>(xx.row(i), method, na_rm);
}
}
return f;
}
inline rowvec colMads(mat x, const string method = "median", const bool na_rm = false, const bool parallel = false)
{
rowvec f(x.n_cols);
if (parallel)
{
#pragma omp parallel for
for (unsigned int i = 0; i < x.n_cols; ++i)
{
f[i] = Rfast::mad<colvec>(x.col(i), method, na_rm);
}
}
else
{
for (unsigned int i = 0; i < x.n_cols; ++i)
{
f[i] = Rfast::mad<colvec>(x.col(i), method, na_rm);
}
}
return f;
}
inline colvec rowMads(mat x, const string method = "median", const bool na_rm = false, const bool parallel = false)
{
colvec f(x.n_rows);
if (parallel)
{
#pragma omp parallel for
for (unsigned int i = 0; i < x.n_rows; ++i)
{
f[i] = Rfast::mad<rowvec>(x.row(i), method, na_rm);
}
}
else
{
for (unsigned int i = 0; i < x.n_rows; ++i)
{
f[i] = Rfast::mad<rowvec>(x.row(i), method, na_rm);
}
}
return f;
}
template <class Engine = std::default_random_engine>
inline DataFrame colShuffle(DataFrame x, Engine engine = Engine())
{
const int n = x.size();
seed_seq seq{get_current_nanoseconds()};
std::vector<long long unsigned int> seeds(n);
seq.generate(seeds.begin(), seeds.end());
List f(n);
// if(parallel){
// colvec ff(f.begin(),f.size(),false);
// #pragma omp parallel for
// for(DataFrame::iterator s = x.begin(); s < x.end(); ++s){
// colvec y;
// int i;
// #pragma omp critical
// {
// engine.seed(seeds[i]);
// NumericVector yy;
// yy=*s;
// y = colvec(yy.begin(),yy.size(),false);
// i = s-x.begin();
// }
// ff[i]=Rfast::shuffle<NumericVector>(y,engine);
// }
// }else{
int i = 0;
NumericVector y(x.nrows());
for (auto c : x)
{
y = c;
engine.seed(seeds[i]);
f[i++] = Rfast::shuffle<NumericVector>(y, engine);
}
// }
f.names() = static_cast<CharacterVector>(x.names());
return f;
}
template <class Engine = std::default_random_engine>
inline NumericMatrix colShuffle(NumericMatrix x, Engine engine = Engine())
{
const int n = x.ncol();
seed_seq seq{get_current_nanoseconds()};
std::vector<long long unsigned int> seeds(n);
seq.generate(seeds.begin(), seeds.end());
NumericMatrix y(x.nrow(), n);
for (int i = 0; i < n; ++i)
{
engine.seed(seeds[i]);
y.column(i) = Rfast::shuffle<NumericVector>(x.column(i), engine);
}
return y;
}
template <class Engine = std::default_random_engine>
NumericMatrix rowShuffle(NumericMatrix x, Engine engine = Engine())
{
const int n = x.ncol();
seed_seq seq{get_current_nanoseconds()};
std::vector<long long unsigned int> seeds(n);
seq.generate(seeds.begin(), seeds.end());
NumericMatrix y(x.nrow(),n);
for (int i = 0; i < n; ++i)
{
engine.seed(seeds[i]);
y.row(i) = Rfast::shuffle<NumericVector>(x.row(i), engine);
}
return y;
}
template <class Engine = std::default_random_engine>
mat colShuffle(mat x, Engine engine = Engine())
{
const int n = x.n_cols;
seed_seq seq{get_current_nanoseconds()};
std::vector<long long unsigned int> seeds(n);
seq.generate(seeds.begin(), seeds.end());
mat y(x.n_rows, n);
for (int i = 0; i < n; ++i)
{
engine.seed(seeds[i]);
y.col(i) = Rfast::shuffle<colvec>(x.col(i), engine);
}
return y;
}
template <class Engine = std::default_random_engine>
mat rowShuffle(mat x, Engine engine = Engine())
{
const int n = x.n_rows;
seed_seq seq{get_current_nanoseconds()};
std::vector<long long unsigned int> seeds(n);
seq.generate(seeds.begin(), seeds.end());
mat y(n, x.n_cols);
for (int i = 0; i < n; ++i)
{
engine.seed(seeds[i]);
y.row(i) = Rfast::shuffle<rowvec>(x.row(i), engine);
}
return y;
}
inline NumericVector colMaxs(DataFrame x, const bool parallel = false)
{
NumericVector F(x.size());
colvec f(F.begin(), F.size(), false);
if (parallel)
{
#ifdef _OPENMP
#pragma omp parallel for
#endif
for (DataFrame::iterator s = x.begin(); s < x.end(); ++s)
{
switch (Type::type(s->get()))
{
case Type::Types::REAL:
f[s - x.begin()] = parallelSingleIteratorWithoutCopy<colvec, NumericVector, std::max_element>(s->get());
break;
case Type::Types::INT:
f[s - x.begin()] = parallelSingleIteratorWithoutCopy<icolvec, IntegerVector, std::max_element>(s->get());
break;
case Type::Types::CHAR:
f[s - x.begin()] = parallelSingleIteratorWithoutCopy<icolvec, IntegerVector, std::max_element>(s->get());
break;
case Type::Types::FACTOR:
#pragma omp critical
{
f[s - x.begin()] = FactorVector(s->get()).maxIndex();
}
break;
default:
break;
}
}
}
else
{
int i = 0;
for (DataFrame::iterator s = x.begin(); s < x.end(); ++s)
{
switch (Type::type(s->get()))
{
case Type::Types::REAL:
f[i++] = singleIteratorWithoutCopy<colvec, NumericVector, std::max_element>(s->get());
break;
case Type::Types::INT:
f[i++] = singleIteratorWithoutCopy<icolvec, IntegerVector, std::max_element>(s->get());
break;
case Type::Types::CHAR:
f[i++] = singleIteratorWithoutCopy<icolvec, IntegerVector, std::max_element>(s->get());
break;
case Type::Types::FACTOR:
f[i++] = FactorVector(s->get()).maxIndex();
break;
default:
break;
}
}
}
colnames(F) = static_cast<CharacterVector>(x.names());
return F;
}
inline NumericVector colMins(DataFrame x, const bool parallel = false)
{
NumericVector F(x.size());
colvec f(F.begin(), F.size(), false);
if (parallel)
{
#ifdef _OPENMP
#pragma omp parallel for
#endif
for (DataFrame::iterator s = x.begin(); s < x.end(); ++s)
{
switch (Type::type(s->get()))
{
case Type::Types::REAL:
f[s - x.begin()] = parallelSingleIteratorWithoutCopy<colvec, NumericVector, std::min_element>(s->get());
break;
case Type::Types::INT:
f[s - x.begin()] = parallelSingleIteratorWithoutCopy<icolvec, IntegerVector, std::min_element>(s->get());
break;
case Type::Types::CHAR:
f[s - x.begin()] = parallelSingleIteratorWithoutCopy<icolvec, IntegerVector, std::min_element>(s->get());
break;
case Type::Types::FACTOR:
#pragma omp critical
{
f[s - x.begin()] = FactorVector(s->get()).maxIndex();
}
break;
default:
break;
}
}
}
else
{
int i = 0;
for (DataFrame::iterator s = x.begin(); s < x.end(); ++s)
{
switch (Type::type(s->get()))
{
case Type::Types::REAL:
f[i++] = singleIteratorWithoutCopy<colvec, NumericVector, std::min_element>(s->get());
break;
case Type::Types::INT:
f[i++] = singleIteratorWithoutCopy<icolvec, IntegerVector, std::min_element>(s->get());
break;
case Type::Types::CHAR:
f[i++] = singleIteratorWithoutCopy<icolvec, IntegerVector, std::min_element>(s->get());
break;
case Type::Types::FACTOR:
f[i++] = FactorVector(s->get()).maxIndex();
break;
default:
break;
}
}
}
colnames(F) = static_cast<CharacterVector>(x.names());
return F;
}
inline NumericMatrix colMinsMaxs(DataFrame x, const bool parallel = false)
{
NumericMatrix F(2, x.size());
mat f(F.begin(), 2, F.size(), false);
if (parallel)
{
#ifdef _OPENMP
#pragma omp parallel for
#endif
for (DataFrame::iterator s = x.begin(); s < x.end(); ++s)
{
switch (Type::type(s->get()))
{
case Type::Types::REAL:
f.col(s - x.begin()) = parallelSingleIteratorWithoutCopy<colvec, colvec, NumericVector, std::minmax_element>(s->get());
break;
case Type::Types::INT:
f.col(s - x.begin()) = parallelSingleIteratorWithoutCopy<colvec, icolvec, IntegerVector, std::minmax_element>(s->get());
break;
case Type::Types::CHAR:
f.col(s - x.begin()) = parallelSingleIteratorWithoutCopy<colvec, icolvec, IntegerVector, std::minmax_element>(s->get());
break;
case Type::Types::FACTOR:
#pragma omp critical
{
f.col(s - x.begin()) = FactorVector(s->get()).minmaxIndex<colvec>();
}
break;
default:
break;
}
}
}
else
{
int i = 0;
for (DataFrame::iterator s = x.begin(); s < x.end(); ++s)
{
switch (Type::type(s->get()))
{
case Type::Types::REAL:
f.col(i++) = singleIteratorWithoutCopy<colvec, colvec, NumericVector, std::minmax_element>(s->get());
break;
case Type::Types::INT:
f.col(i++) = singleIteratorWithoutCopy<colvec, icolvec, IntegerVector, std::minmax_element>(s->get());
break;
case Type::Types::CHAR:
f.col(i++) = singleIteratorWithoutCopy<colvec, icolvec, IntegerVector, std::minmax_element>(s->get());
break;
case Type::Types::FACTOR:
f.col(i++) = FactorVector(s->get()).minmaxIndex<colvec>();
break;
default:
break;
}
}
}
colnames(F) = static_cast<CharacterVector>(x.names());
rownames(F) = CharacterVector::create("min", "max");
return F;
}
}
#endif
|
19c9fa4cf6389297e5836bda74b5f4c0a1248361
|
3038d3d95390ebc6fe2a0e9f7e129746e9af919e
|
/cpp/1/ProcessTools.cpp
|
231339fe9a99886a0de10df5fd32445bf55ad932
|
[] |
no_license
|
code-dreamer/CodeSnippets
|
9954a1f0b036792afa4e33acf5b8574bfb6e98ed
|
e5017f03a2df7b4504b1c2ebc447fc991578429a
|
refs/heads/main
| 2023-01-21T23:51:34.854137
| 2020-12-04T15:06:43
| 2020-12-04T15:06:43
| 303,447,396
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 4,740
|
cpp
|
ProcessTools.cpp
|
#include "stdafx.h"
#include "ProcessTools.h"
namespace ProcessTools {
;
boost::optional<PROCESSENTRY32> FindProcess(std::function<bool(const PROCESSENTRY32& processEntry)> pred)
{
PROCESSENTRY32 processEntry;
HANDLE hSnap = ::CreateToolhelp32Snapshot(TH32CS_SNAPALL, 0);
if (hSnap == INVALID_HANDLE_VALUE)
return boost::none;
auto guard = wxMakeGuard([&]() {
::CloseHandle(hSnap);
});
processEntry.dwSize = sizeof(PROCESSENTRY32);
if (::Process32First(hSnap, &processEntry)) {
do {
if (pred(processEntry))
return processEntry;
} while (::Process32Next(hSnap, &processEntry));
}
return boost::none;
}
std::vector<PROCESSENTRY32> FindProcesses(std::function<bool(const PROCESSENTRY32& processEntry)> pred)
{
std::vector<PROCESSENTRY32> result;
HANDLE hSnap = ::CreateToolhelp32Snapshot(TH32CS_SNAPALL, 0);
if (hSnap == INVALID_HANDLE_VALUE)
return result;
auto guard = wxMakeGuard([&]() {
::CloseHandle(hSnap);
});
PROCESSENTRY32 processEntry;
processEntry.dwSize = sizeof(PROCESSENTRY32);
if (::Process32First(hSnap, &processEntry)) {
do {
if (pred(processEntry)) {
result.push_back(processEntry);
}
} while (::Process32Next(hSnap, &processEntry));
}
return result;
}
size_t GetProcessId(const wxString& processName)
{
boost::optional<PROCESSENTRY32> process = FindProcess([processName](const PROCESSENTRY32& processEntry) {
return (_wcsicmp(processEntry.szExeFile, processName.wc_str()) == 0);
});
return process ? process->th32ProcessID : 0;
}
bool IsProcessExist(const wxString& processName)
{
return (GetProcessId(processName) != 0);
}
bool IsProcessExist(size_t pid)
{
/*
boost::optional<PROCESSENTRY32> process = FindProcess([pid](const PROCESSENTRY32& processEntry) {
return (processEntry.th32ProcessID == pid);
});
return process;*/
return wxProcess::Exists((int)pid);
}
std::vector<size_t> GetProcessIds(const wxString& processName)
{
std::vector<PROCESSENTRY32> procs = FindProcesses([processName](const PROCESSENTRY32& processEntry) {
return (_wcsicmp(processEntry.szExeFile, processName.wc_str()) == 0);
});
std::vector<size_t> pids{procs.size()};
std::transform(procs.begin(), procs.end(), pids.begin(), [](const PROCESSENTRY32& proceEntry) {
return proceEntry.th32ProcessID;
});
return pids;
/*
PROCESSENTRY32 processEntry;
HANDLE hSnap = ::CreateToolhelp32Snapshot(TH32CS_SNAPALL, 0);
if (hSnap == INVALID_HANDLE_VALUE)
return pids;
auto guard = wxMakeGuard([&]() {
::CloseHandle(hSnap);
});
processEntry.dwSize = sizeof(PROCESSENTRY32);
if (::Process32First(hSnap, &processEntry)) {
//const std::wstring procNameStd = processName.wc_str();
do {
if (_wcsicmp(processEntry.szExeFile, processName.wc_str()) == 0) {
pids.push_back(processEntry.th32ProcessID);
}
} while (::Process32Next(hSnap, &processEntry));
}
return pids;*/
}
bool WaitForProcessStart(size_t pid, size_t maxWaitingMs, size_t waitStep)
{
const size_t waitDeltaMs = waitStep;
size_t totalWaitMs = 0;
while (!ProcessTools::IsProcessExist(pid)) {
wxMilliSleep(waitDeltaMs);
if ((totalWaitMs += waitDeltaMs) > maxWaitingMs)
return false;
}
return true;
}
bool WaitForProcessEnd(size_t pid, size_t maxWaitingMs, size_t waitStep)
{
const size_t waitDeltaMs = waitStep;
size_t totalWaitMs = 0;
while (ProcessTools::IsProcessExist(pid)) {
wxMilliSleep(waitDeltaMs);
if ((totalWaitMs += waitDeltaMs) > maxWaitingMs)
return false;
}
return true;
}
size_t GetCurrentProcessId()
{
return wxGetProcessId();
}
size_t GetProcessIdWithImagePath(const wxString& imageFullPath)
{
wxFileName filename{imageFullPath};
if (!filename.IsAbsolute()) {
FAIL;
return 0;
}
wxString fullname = filename.GetFullName();
std::vector<PROCESSENTRY32> procs = FindProcesses([&](const PROCESSENTRY32& processEntry) {
return (_wcsicmp(processEntry.szExeFile, fullname.wc_str()) == 0);
});
DWORD result = 0;
for (const PROCESSENTRY32& procEntry : procs) {
DWORD currPid = procEntry.th32ProcessID;
HANDLE prochHandle = ::OpenProcess(PROCESS_QUERY_INFORMATION | PROCESS_VM_READ, FALSE, currPid);
if (!prochHandle)
continue;
auto guard = wxMakeGuard([&]() {
::CloseHandle(prochHandle);
});
wchar_t buff[MAX_PATH] = {};
DWORD buffLen = GetModuleFileNameEx(prochHandle, 0, buff, MAX_PATH);
if (buffLen > 0) {
wxString currImageFullPath{buff, buffLen};
if (currImageFullPath.CmpNoCase(imageFullPath) == 0) {
result = currPid;
break;
}
}
}
return result;
}
} // namespace ProcessTools
|
391bddc82fe1ca1891d0ad5c276fbe02cb1f8d21
|
859edb9239ea337ed4797837a0df87c74ce9c956
|
/dronedoc/src/gazebo/request_publisher.cpp
|
b27384cc7f796a0950c4f7a1c7d9f0438e551313
|
[
"CC-BY-4.0"
] |
permissive
|
uenota/dronedoc
|
91bcd1f1d24c47e2f87d278eecf104ccab4d7ca2
|
c307d3e9669ebd64d2062fb0c089fae03391c5a3
|
refs/heads/master
| 2021-06-04T15:15:56.746464
| 2021-01-05T17:31:43
| 2021-01-05T17:31:43
| 151,891,731
| 16
| 5
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 3,693
|
cpp
|
request_publisher.cpp
|
#include <iostream>
#include <math.h>
#include <deque>
#include <sdf/sdf.hh>
#include "gazebo/gazebo.hh"
#include "gazebo/common/common.hh"
#include "gazebo/math/Vector3.hh"
#include "gazebo/transport/transport.hh"
#include "gazebo/physics/physics.hh"
#include "gazebo/msgs/msgs.hh"
#include "map_request.pb.h"
#include "vector2d.pb.h"
#include <ros/ros.h>
#include <boost/filesystem/path.hpp>
using namespace std;
bool createVector(const char * vectorString,
gazebo::msgs::Vector2d* origin)
{
string cornersStr = vectorString;
size_t opening=0;
size_t closing=0;
opening = cornersStr.find('(', closing);
closing = cornersStr.find(')', opening);
if (opening == string::npos || closing == string::npos)
{
ROS_ERROR("Poorly formed string: %s", cornersStr.c_str());
ROS_ERROR("( found at: %ld ) found at: %ld", opening, closing);
return false;
}
string oneCornerStr = cornersStr.substr(opening + 1, closing - opening - 1);
size_t commaLoc = oneCornerStr.find(",");
string x = oneCornerStr.substr(0,commaLoc);
string y = oneCornerStr.substr(commaLoc + 1, oneCornerStr.length() - commaLoc);
origin->set_x(atof(x.c_str()));
origin->set_y(atof(y.c_str()));
return true;
}
int main(int argc, char * argv[])
{
if (argc > 6)
{
dronedoc::msgs::MapRequest request;
gazebo::msgs::Vector2d* origin = request.mutable_origin();
if (!createVector(argv[3], origin))
{
ROS_ERROR("Failed to create rasterize region.");
return -1;
}
request.set_height(atof(argv[1]));
request.set_resolution(atof(argv[2]));
request.set_map_width(atof(argv[4]));
request.set_map_height(atof(argv[5]));
std::string filename;
if(argc < 7){
filename = "map.png";
} else {
filename = argv[6];
}
boost::filesystem::path fname(filename);
fname = boost::filesystem::absolute(fname);
request.set_filename(fname.string());
if (argc == 8)
{
request.set_threshold(atoi(argv[7]));
}
gazebo::transport::init();
gazebo::transport::run();
gazebo::transport::NodePtr node(new gazebo::transport::Node());
node->Init("default");
ROS_INFO("\nRequest: \n"
" origin.x: %f origin.y: %f\n"
" map_width: %f map_height: %f\n"
" Height: %f\n Resolution: %f\n Filename: %s\n Threshold: %d",
request.origin().x(),
request.origin().y(),
request.map_width(),
request.map_height(),
request.height(),
request.resolution(),
request.filename().c_str(),
request.threshold());
gazebo::transport::PublisherPtr imagePub =
node->Advertise<dronedoc::msgs::MapRequest>("~/collision_map/command");
imagePub->WaitForConnection();
imagePub->Publish(request);
gazebo::transport::fini();
return 0;
}
std::cout << "Usage: " <<
"rosrun dronedoc request_publisher a1 a2 a3 a4 a5 [a6 a7]\n" <<
"\ta1: height\n" <<
"\ta2: resolution\n" <<
"\ta3: \"(origin.x, origin.y)\"\n" <<
"\t Origin is the point on lower left corner of map image\n"
"\ta4: map_width\n" <<
"\ta5: map_height\n" <<
"\ta6: filename\t[default=\"map\"]\n" <<
"\ta7: threshold\t[default=255]\n" << std::endl;
return -1;
}
|
b8a5b3141804b893346674f6bb26eeb335aaf579
|
8e251e452449d2aa219d72ed9871bb6030f6eea8
|
/test_inlet/3500/U
|
a00514a7c7fad83c4b5c0263a1f8e7721788ee0c
|
[] |
no_license
|
glaciercoder/sky_cooling
|
e1a1482ecd900fe7df9bc8f71fb59fbf9c39428f
|
0af1390bb7aaca9e828d980ed4aa92299071b37d
|
refs/heads/master
| 2023-03-29T20:02:11.619786
| 2021-04-09T01:15:33
| 2021-04-09T01:15:33
| 349,085,961
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,562,264
|
U
|
/*--------------------------------*- C++ -*----------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Version: 8
\\/ M anipulation |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volVectorField;
location "3500";
object U;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 1 -1 0 0 0 0];
internalField nonuniform List<vector>
46000
(
(0.00151485 6.50569e-07 -0.00154898)
(0.00786531 2.48798e-07 -0.00457143)
(0.0146449 1.89388e-07 -0.00449278)
(0.0194507 1.36187e-07 -0.00289169)
(0.0217925 1.08066e-07 -0.00115349)
(0.0219283 9.24701e-08 0.000366177)
(0.0202125 8.31005e-08 0.00159684)
(0.0170237 7.83265e-08 0.00255761)
(0.0126764 7.53669e-08 0.00329733)
(0.00742818 7.28078e-08 0.00386473)
(0.00148299 7.02817e-08 0.0042946)
(-0.00500849 6.72715e-08 0.00460756)
(-0.0118889 6.43769e-08 0.00482884)
(-0.0190759 6.21712e-08 0.00498534)
(-0.0264826 6.05426e-08 0.00509114)
(-0.034046 5.9452e-08 0.00515668)
(-0.0417135 5.87445e-08 0.00518997)
(-0.0494423 5.82225e-08 0.00519721)
(-0.0571969 5.77318e-08 0.00518321)
(-0.0649475 5.72088e-08 0.00515177)
(-0.072669 5.66318e-08 0.00510586)
(-0.0803401 5.59589e-08 0.00504785)
(-0.0879423 5.51634e-08 0.00497965)
(-0.0954596 5.4247e-08 0.00490275)
(-0.102878 5.32063e-08 0.00481839)
(-0.110185 5.20614e-08 0.00472755)
(-0.117369 5.08323e-08 0.00463105)
(-0.124421 4.95623e-08 0.00452955)
(-0.131331 4.82565e-08 0.00442361)
(-0.138092 4.69465e-08 0.00431369)
(-0.144694 4.56238e-08 0.00420018)
(-0.151132 4.43219e-08 0.00408342)
(-0.157399 4.30356e-08 0.0039637)
(-0.163489 4.17699e-08 0.00384128)
(-0.169396 4.05339e-08 0.00371639)
(-0.175114 3.93318e-08 0.00358925)
(-0.18064 3.81669e-08 0.00346005)
(-0.185969 3.70432e-08 0.00332898)
(-0.191095 3.59641e-08 0.00319621)
(-0.196017 3.49303e-08 0.00306192)
(-0.200729 3.39394e-08 0.00292628)
(-0.205229 3.29871e-08 0.00278944)
(-0.209514 3.2076e-08 0.00265159)
(-0.213582 3.11992e-08 0.00251287)
(-0.21743 3.03577e-08 0.00237346)
(-0.221056 2.95414e-08 0.00223352)
(-0.22446 2.87452e-08 0.00209322)
(-0.227639 2.79651e-08 0.00195272)
(-0.230593 2.71911e-08 0.0018122)
(-0.233321 2.64147e-08 0.00167182)
(-0.235824 2.56443e-08 0.00153174)
(-0.2381 2.4864e-08 0.00139214)
(-0.240152 2.40798e-08 0.00125318)
(-0.241979 2.32965e-08 0.00111503)
(-0.243583 2.2515e-08 0.000977854)
(-0.244964 2.17411e-08 0.000841821)
(-0.246126 2.09823e-08 0.000707093)
(-0.24707 2.02303e-08 0.000573827)
(-0.247798 1.9495e-08 0.000442167)
(-0.248313 1.87665e-08 0.000312216)
(-0.248618 1.80496e-08 0.000184011)
(-0.248717 1.73637e-08 5.75516e-05)
(-0.248612 1.67094e-08 -6.66585e-05)
(-0.248307 1.60535e-08 -0.000188235)
(-0.247808 1.54126e-08 -0.00030733)
(-0.247116 1.47843e-08 -0.000423932)
(-0.246238 1.4171e-08 -0.000537943)
(-0.245177 1.3576e-08 -0.000649244)
(-0.243938 1.3001e-08 -0.000757722)
(-0.242526 1.24468e-08 -0.000863277)
(-0.240947 1.19177e-08 -0.000965815)
(-0.239205 1.13994e-08 -0.00106526)
(-0.237306 1.09035e-08 -0.00116152)
(-0.235256 1.04326e-08 -0.00125455)
(-0.23306 9.98675e-09 -0.00134427)
(-0.230725 9.55418e-09 -0.00143065)
(-0.228254 9.13992e-09 -0.00151363)
(-0.225656 8.74148e-09 -0.00159317)
(-0.222935 8.363e-09 -0.00166924)
(-0.220098 8.002e-09 -0.00174182)
(-0.21715 7.66015e-09 -0.00181089)
(-0.214098 7.32744e-09 -0.00187644)
(-0.210948 7.01803e-09 -0.00193846)
(-0.207705 6.72109e-09 -0.00199696)
(-0.204376 6.43997e-09 -0.00205194)
(-0.200966 6.18464e-09 -0.00210342)
(-0.197482 5.93597e-09 -0.00215141)
(-0.193928 5.7106e-09 -0.00219594)
(-0.190312 5.50853e-09 -0.00223704)
(-0.186638 5.32227e-09 -0.00227476)
(-0.182913 5.16099e-09 -0.00230912)
(-0.179141 5.02301e-09 -0.00234018)
(-0.175328 4.90836e-09 -0.00236798)
(-0.17148 4.82035e-09 -0.0023926)
(-0.167601 4.75066e-09 -0.00241407)
(-0.163696 4.71263e-09 -0.00243247)
(-0.159771 4.69959e-09 -0.00244788)
(-0.15583 4.71489e-09 -0.00246035)
(-0.151878 4.75686e-09 -0.00246996)
(-0.147919 4.82385e-09 -0.0024768)
(-0.143957 4.92251e-09 -0.00248094)
(-0.139997 5.05954e-09 -0.00248247)
(-0.136043 5.20992e-09 -0.00248148)
(-0.132099 5.40202e-09 -0.00247804)
(-0.128167 5.62416e-09 -0.00247226)
(-0.124253 5.87969e-09 -0.00246422)
(-0.120358 6.17028e-09 -0.00245401)
(-0.116487 6.49261e-09 -0.00244172)
(-0.112642 6.84836e-09 -0.00242745)
(-0.108827 7.24588e-09 -0.00241128)
(-0.105043 7.67517e-09 -0.00239331)
(-0.101294 8.14624e-09 -0.00237363)
(-0.0975823 8.65578e-09 -0.00235233)
(-0.0939095 9.20379e-09 -0.00232948)
(-0.0902782 9.78696e-09 -0.00230519)
(-0.0866904 1.04186e-08 -0.00227952)
(-0.0831478 1.10872e-08 -0.00225256)
(-0.0796523 1.18092e-08 -0.00222438)
(-0.0762054 1.25615e-08 -0.00219506)
(-0.0728088 1.33607e-08 -0.00216466)
(-0.0694638 1.42068e-08 -0.00213326)
(-0.0661717 1.50965e-08 -0.0021009)
(-0.0629337 1.60248e-08 -0.00206764)
(-0.0597511 1.69984e-08 -0.00203354)
(-0.0566248 1.80206e-08 -0.00199864)
(-0.0535559 1.90815e-08 -0.00196297)
(-0.0505453 2.01928e-08 -0.00192658)
(-0.047594 2.13528e-08 -0.00188948)
(-0.0447029 2.25498e-08 -0.00185171)
(-0.0418726 2.38006e-08 -0.00181327)
(-0.0391042 2.50918e-08 -0.00177418)
(-0.0363985 2.64301e-08 -0.00173445)
(-0.0337561 2.78122e-08 -0.00169407)
(-0.031178 2.92331e-08 -0.00165304)
(-0.0286651 3.07012e-08 -0.00161134)
(-0.0262181 3.22166e-08 -0.00156896)
(-0.023838 3.37725e-08 -0.00152588)
(-0.0215257 3.53789e-08 -0.00148208)
(-0.0192822 3.70227e-08 -0.00143752)
(-0.0171086 3.87104e-08 -0.00139218)
(-0.0150059 4.04521e-08 -0.00134602)
(-0.0129752 4.22312e-08 -0.00129902)
(-0.0110178 4.40509e-08 -0.00125112)
(-0.00913487 4.59349e-08 -0.0012023)
(-0.00732776 4.78596e-08 -0.00115252)
(-0.0055978 4.98184e-08 -0.00110177)
(-0.00394643 5.18247e-08 -0.00105)
(-0.00237498 5.38786e-08 -0.000997308)
(-0.000885064 5.59734e-08 -0.000943973)
(0.000523339 5.79047e-08 -0.00088918)
(0.00184638 5.97463e-08 -0.000832675)
(0.00308371 6.17394e-08 -0.000775121)
(0.0042333 6.38137e-08 -0.00071663)
(0.00529372 6.5949e-08 -0.000657243)
(0.00626348 6.81557e-08 -0.000597004)
(0.00714118 7.04303e-08 -0.000535968)
(0.00792548 7.27628e-08 -0.000474203)
(0.00861518 7.51801e-08 -0.000411794)
(0.00920918 7.76656e-08 -0.000348843)
(0.00970654 8.02192e-08 -0.000285473)
(0.0101065 8.2841e-08 -0.000221828)
(0.0104086 8.55346e-08 -0.000158075)
(0.0106124 8.83031e-08 -9.44073e-05)
(0.0107182 9.10965e-08 -3.10401e-05)
(0.0107261 9.40483e-08 3.18375e-05)
(0.0106369 9.71499e-08 9.40035e-05)
(0.0104515 1.00313e-07 0.00015517)
(0.0101714 1.03563e-07 0.000215038)
(0.00979859 1.06894e-07 0.000273277)
(0.00933542 1.10331e-07 0.000329529)
(0.00878493 1.13844e-07 0.000383406)
(0.00815072 1.1744e-07 0.000434492)
(0.00743707 1.21094e-07 0.000482342)
(0.00664894 1.24785e-07 0.000526475)
(0.00579208 1.28484e-07 0.000566377)
(0.00487303 1.32205e-07 0.000601495)
(0.00389923 1.35899e-07 0.000631235)
(0.0028791 1.39564e-07 0.000654957)
(0.00182198 1.43239e-07 0.000671971)
(0.000738891 1.46842e-07 0.000681514)
(-0.000359507 1.49932e-07 0.000682296)
(-0.00145822 1.52694e-07 0.000673217)
(-0.00254311 1.55715e-07 0.000653672)
(-0.00359779 1.58935e-07 0.000622962)
(-0.00460384 1.62286e-07 0.000579922)
(-0.00554107 1.65756e-07 0.000522994)
(-0.00638665 1.69311e-07 0.00045076)
(-0.0071153 1.72898e-07 0.000361615)
(-0.00769883 1.76625e-07 0.000253874)
(-0.00810606 1.80536e-07 0.000125897)
(-0.00830297 1.84873e-07 -2.36716e-05)
(-0.00825311 1.89583e-07 -0.000194897)
(-0.00792009 1.94973e-07 -0.00038589)
(-0.00727076 2.01111e-07 -0.000590853)
(-0.00628219 2.07681e-07 -0.000795261)
(-0.00495804 2.14315e-07 -0.000967123)
(-0.0033568 2.21416e-07 -0.00104078)
(-0.0016526 2.29017e-07 -0.000886332)
(-0.000226021 2.56075e-07 -0.000355055)
(0.000179397 1.14337e-07 0.000190991)
(0.00151335 6.50562e-07 -0.00155063)
(0.00786403 2.48795e-07 -0.00457283)
(0.0146444 1.89385e-07 -0.00449363)
(0.0194503 1.36185e-07 -0.00289234)
(0.0217922 1.08065e-07 -0.00115404)
(0.0219281 9.24691e-08 0.000365682)
(0.0202123 8.30997e-08 0.00159639)
(0.0170235 7.83258e-08 0.0025572)
(0.0126762 7.53662e-08 0.00329695)
(0.00742805 7.28072e-08 0.00386438)
(0.00148289 7.02811e-08 0.00429427)
(-0.00500857 6.7271e-08 0.00460726)
(-0.011889 6.43764e-08 0.00482857)
(-0.0190759 6.21707e-08 0.00498508)
(-0.0264826 6.05422e-08 0.0050909)
(-0.0340459 5.94516e-08 0.00515645)
(-0.0417134 5.87441e-08 0.00518976)
(-0.0494422 5.82221e-08 0.00519701)
(-0.0571968 5.77314e-08 0.00518302)
(-0.0649474 5.72085e-08 0.00515158)
(-0.0726689 5.66315e-08 0.00510568)
(-0.08034 5.59586e-08 0.00504769)
(-0.0879421 5.51631e-08 0.00497949)
(-0.0954594 5.42467e-08 0.0049026)
(-0.102878 5.32061e-08 0.00481824)
(-0.110185 5.20612e-08 0.00472741)
(-0.117369 5.08321e-08 0.00463091)
(-0.124421 4.95621e-08 0.00452942)
(-0.131331 4.82563e-08 0.00442348)
(-0.138091 4.69463e-08 0.00431356)
(-0.144694 4.56236e-08 0.00420005)
(-0.151132 4.43217e-08 0.00408329)
(-0.157399 4.30354e-08 0.00396358)
(-0.163488 4.17697e-08 0.00384116)
(-0.169395 4.05338e-08 0.00371628)
(-0.175114 3.93317e-08 0.00358914)
(-0.18064 3.81667e-08 0.00345994)
(-0.185968 3.70431e-08 0.00332886)
(-0.191095 3.59639e-08 0.0031961)
(-0.196016 3.49302e-08 0.00306181)
(-0.200728 3.39393e-08 0.00292616)
(-0.205229 3.2987e-08 0.00278933)
(-0.209514 3.20758e-08 0.00265147)
(-0.213582 3.11991e-08 0.00251275)
(-0.21743 3.03576e-08 0.00237334)
(-0.221056 2.95413e-08 0.00223341)
(-0.224459 2.87451e-08 0.00209311)
(-0.227639 2.79651e-08 0.00195261)
(-0.230592 2.7191e-08 0.00181208)
(-0.233321 2.64146e-08 0.0016717)
(-0.235823 2.56442e-08 0.00153162)
(-0.2381 2.4864e-08 0.00139202)
(-0.240151 2.40797e-08 0.00125306)
(-0.241978 2.32964e-08 0.00111491)
(-0.243582 2.25149e-08 0.000977733)
(-0.244964 2.17411e-08 0.000841699)
(-0.246126 2.09823e-08 0.00070697)
(-0.247069 2.02302e-08 0.000573703)
(-0.247797 1.9495e-08 0.000442042)
(-0.248313 1.87664e-08 0.00031209)
(-0.248618 1.80496e-08 0.000183884)
(-0.248716 1.73636e-08 5.74234e-05)
(-0.248611 1.67093e-08 -6.67875e-05)
(-0.248307 1.60534e-08 -0.000188365)
(-0.247807 1.54126e-08 -0.000307461)
(-0.247116 1.47842e-08 -0.000424064)
(-0.246237 1.41709e-08 -0.000538076)
(-0.245176 1.35759e-08 -0.000649377)
(-0.243937 1.3001e-08 -0.000757857)
(-0.242526 1.24468e-08 -0.000863412)
(-0.240946 1.19177e-08 -0.000965952)
(-0.239205 1.13993e-08 -0.00106539)
(-0.237306 1.09035e-08 -0.00116166)
(-0.235256 1.04326e-08 -0.00125469)
(-0.23306 9.98673e-09 -0.00134441)
(-0.230724 9.55416e-09 -0.00143079)
(-0.228254 9.1399e-09 -0.00151377)
(-0.225656 8.74145e-09 -0.00159331)
(-0.222935 8.36298e-09 -0.00166938)
(-0.220098 8.00198e-09 -0.00174196)
(-0.21715 7.66012e-09 -0.00181104)
(-0.214098 7.32742e-09 -0.00187659)
(-0.210948 7.01801e-09 -0.00193861)
(-0.207705 6.72108e-09 -0.00199711)
(-0.204376 6.43995e-09 -0.00205209)
(-0.200966 6.18463e-09 -0.00210357)
(-0.197481 5.93595e-09 -0.00215156)
(-0.193928 5.71058e-09 -0.00219609)
(-0.190312 5.50851e-09 -0.0022372)
(-0.186638 5.32226e-09 -0.00227491)
(-0.182912 5.16097e-09 -0.00230927)
(-0.179141 5.023e-09 -0.00234033)
(-0.175328 4.90834e-09 -0.00236814)
(-0.171479 4.82033e-09 -0.00239275)
(-0.1676 4.75065e-09 -0.00241423)
(-0.163696 4.71262e-09 -0.00243263)
(-0.159771 4.69958e-09 -0.00244804)
(-0.15583 4.71488e-09 -0.00246051)
(-0.151877 4.75685e-09 -0.00247012)
(-0.147918 4.82383e-09 -0.00247696)
(-0.143957 4.9225e-09 -0.00248111)
(-0.139997 5.05952e-09 -0.00248264)
(-0.136043 5.20991e-09 -0.00248165)
(-0.132098 5.402e-09 -0.00247821)
(-0.128167 5.62414e-09 -0.00247243)
(-0.124252 5.87967e-09 -0.00246439)
(-0.120358 6.17026e-09 -0.00245418)
(-0.116487 6.4926e-09 -0.0024419)
(-0.112642 6.84835e-09 -0.00242762)
(-0.108827 7.24586e-09 -0.00241146)
(-0.105043 7.67515e-09 -0.0023935)
(-0.101294 8.14622e-09 -0.00237382)
(-0.097582 8.65576e-09 -0.00235251)
(-0.0939093 9.20377e-09 -0.00232967)
(-0.090278 9.78693e-09 -0.00230538)
(-0.0866901 1.04186e-08 -0.00227971)
(-0.0831476 1.10871e-08 -0.00225276)
(-0.079652 1.18092e-08 -0.00222458)
(-0.0762052 1.25615e-08 -0.00219526)
(-0.0728086 1.33606e-08 -0.00216487)
(-0.0694635 1.42067e-08 -0.00213347)
(-0.0661714 1.50964e-08 -0.00210111)
(-0.0629335 1.60247e-08 -0.00206786)
(-0.0597508 1.69983e-08 -0.00203376)
(-0.0566245 1.80206e-08 -0.00199886)
(-0.0535557 1.90815e-08 -0.0019632)
(-0.0505451 2.01927e-08 -0.00192681)
(-0.0475938 2.13527e-08 -0.00188972)
(-0.0447026 2.25497e-08 -0.00185195)
(-0.0418724 2.38005e-08 -0.00181351)
(-0.039104 2.50917e-08 -0.00177443)
(-0.0363982 2.643e-08 -0.0017347)
(-0.0337559 2.78121e-08 -0.00169433)
(-0.0311778 2.92331e-08 -0.0016533)
(-0.0286649 3.07012e-08 -0.00161161)
(-0.0262179 3.22165e-08 -0.00156923)
(-0.0238378 3.37724e-08 -0.00152616)
(-0.0215255 3.53789e-08 -0.00148236)
(-0.019282 3.70226e-08 -0.00143781)
(-0.0171084 3.87103e-08 -0.00139248)
(-0.0150057 4.0452e-08 -0.00134633)
(-0.012975 4.22311e-08 -0.00129932)
(-0.0110176 4.40509e-08 -0.00125143)
(-0.00913465 4.59348e-08 -0.00120262)
(-0.00732754 4.78595e-08 -0.00115285)
(-0.00559759 4.98183e-08 -0.0011021)
(-0.00394621 5.18246e-08 -0.00105034)
(-0.00237476 5.38785e-08 -0.000997658)
(-0.000884848 5.59733e-08 -0.000944331)
(0.000523555 5.79046e-08 -0.000889545)
(0.0018466 5.97462e-08 -0.000833047)
(0.00308393 6.17392e-08 -0.000775501)
(0.00423352 6.38135e-08 -0.000717018)
(0.00529394 6.59489e-08 -0.000657639)
(0.0062637 6.81555e-08 -0.000597409)
(0.0071414 7.04301e-08 -0.000536382)
(0.00792571 7.27626e-08 -0.000474626)
(0.0086154 7.518e-08 -0.000412226)
(0.0092094 7.76654e-08 -0.000349285)
(0.00970676 8.0219e-08 -0.000285925)
(0.0101067 8.28409e-08 -0.00022229)
(0.0104088 8.55344e-08 -0.000158547)
(0.0106127 8.83029e-08 -9.48907e-05)
(0.0107184 9.10962e-08 -3.15345e-05)
(0.0107263 9.40482e-08 3.13316e-05)
(0.0106371 9.71497e-08 9.34854e-05)
(0.0104517 1.00313e-07 0.00015464)
(0.0101716 1.03562e-07 0.000214495)
(0.00979879 1.06894e-07 0.000272721)
(0.00933562 1.10331e-07 0.000328959)
(0.00878512 1.13844e-07 0.000382822)
(0.00815091 1.17439e-07 0.000433894)
(0.00743725 1.21094e-07 0.000481728)
(0.00664912 1.24784e-07 0.000525846)
(0.00579225 1.28484e-07 0.000565732)
(0.00487319 1.32205e-07 0.000600833)
(0.00389939 1.35899e-07 0.000630556)
(0.00287924 1.39564e-07 0.00065426)
(0.00182212 1.43239e-07 0.000671256)
(0.00073902 1.46842e-07 0.000680779)
(-0.000359389 1.49932e-07 0.000681543)
(-0.00145811 1.52694e-07 0.000672447)
(-0.00254301 1.55715e-07 0.000652883)
(-0.00359769 1.58935e-07 0.000622154)
(-0.00460376 1.62286e-07 0.000579094)
(-0.00554099 1.65755e-07 0.000522144)
(-0.00638659 1.6931e-07 0.000449887)
(-0.00711525 1.72897e-07 0.000360718)
(-0.00769879 1.76625e-07 0.000252951)
(-0.00810603 1.80535e-07 0.000124945)
(-0.00830296 1.84873e-07 -2.46554e-05)
(-0.00825311 1.89583e-07 -0.000195914)
(-0.0079201 1.94972e-07 -0.000386945)
(-0.00727078 2.0111e-07 -0.00059195)
(-0.00628224 2.0768e-07 -0.000796406)
(-0.00495812 2.14314e-07 -0.000968322)
(-0.00335695 2.21415e-07 -0.00104203)
(-0.00165286 2.29015e-07 -0.000887641)
(-0.000226751 2.56074e-07 -0.00035639)
(0.000178829 1.14338e-07 0.000189917)
(0.00436503 1.91659e-07 -0.0083163)
(0.00966495 -2.6657e-09 -0.0101288)
(0.012513 1.74787e-08 -0.00805874)
(0.0138083 5.13447e-09 -0.00467716)
(0.0135261 -1.24716e-09 -0.00127362)
(0.011891 -4.73409e-09 0.00171641)
(0.00906816 -6.36086e-09 0.00418838)
(0.00522903 -6.65389e-09 0.00617262)
(0.000538015 -6.53121e-09 0.00774251)
(-0.00485301 -6.48962e-09 0.00897304)
(-0.0108054 -6.46731e-09 0.00992862)
(-0.0172102 -6.34171e-09 0.0106598)
(-0.0239708 -6.09622e-09 0.0112121)
(-0.0310087 -5.75926e-09 0.0116247)
(-0.0382555 -5.29089e-09 0.0119245)
(-0.0456549 -4.72532e-09 0.0121327)
(-0.0531597 -4.11797e-09 0.0122659)
(-0.0607301 -3.53421e-09 0.0123369)
(-0.0683324 -3.00397e-09 0.012356)
(-0.0759379 -2.5376e-09 0.0123315)
(-0.0835219 -2.1388e-09 0.0122698)
(-0.0910631 -1.80752e-09 0.0121763)
(-0.0985429 -1.54081e-09 0.0120552)
(-0.105945 -1.3374e-09 0.01191)
(-0.113255 -1.18394e-09 0.0117435)
(-0.12046 -1.06835e-09 0.011558)
(-0.127549 -9.78984e-10 0.0113556)
(-0.134512 -9.03765e-10 0.0111377)
(-0.141338 -8.34795e-10 0.0109059)
(-0.148019 -7.66253e-10 0.0106612)
(-0.154548 -6.97308e-10 0.0104048)
(-0.160917 -6.28789e-10 0.0101374)
(-0.167119 -5.61942e-10 0.00985981)
(-0.173149 -4.98427e-10 0.00957286)
(-0.178999 -4.39489e-10 0.00927716)
(-0.184666 -3.84296e-10 0.00897332)
(-0.190143 -3.36584e-10 0.00866192)
(-0.195427 -2.92613e-10 0.00834354)
(-0.200512 -2.54873e-10 0.0080187)
(-0.205395 -2.22533e-10 0.00768795)
(-0.210073 -1.96007e-10 0.0073518)
(-0.214542 -1.74878e-10 0.0070108)
(-0.218799 -1.579e-10 0.00666546)
(-0.222841 -1.47978e-10 0.0063163)
(-0.226667 -1.45111e-10 0.00596385)
(-0.230274 -1.50128e-10 0.00560865)
(-0.23366 -1.63858e-10 0.00525122)
(-0.236825 -1.87129e-10 0.0048921)
(-0.239767 -2.20772e-10 0.00453181)
(-0.242485 -2.63125e-10 0.00417091)
(-0.24498 -3.11697e-10 0.00380991)
(-0.247251 -3.68978e-10 0.00344935)
(-0.249299 -4.29159e-10 0.00308977)
(-0.251124 -4.93485e-10 0.00273168)
(-0.252727 -5.57805e-10 0.00237561)
(-0.25411 -6.22122e-10 0.00202207)
(-0.255274 -6.8436e-10 0.00167156)
(-0.256221 -7.46181e-10 0.00132459)
(-0.256953 -8.05924e-10 0.000981648)
(-0.257473 -8.66495e-10 0.000643197)
(-0.257783 -9.19597e-10 0.000309691)
(-0.257887 -9.78508e-10 -1.84127e-05)
(-0.257787 -1.04198e-09 -0.000340815)
(-0.257488 -1.09757e-09 -0.000657237)
(-0.256993 -1.14901e-09 -0.000967279)
(-0.256306 -1.19713e-09 -0.00127057)
(-0.255431 -1.24234e-09 -0.00156676)
(-0.254374 -1.28424e-09 -0.00185551)
(-0.253137 -1.32075e-09 -0.0021365)
(-0.251727 -1.3527e-09 -0.00240945)
(-0.250148 -1.38092e-09 -0.00267411)
(-0.248405 -1.4054e-09 -0.00293025)
(-0.246503 -1.42574e-09 -0.00317767)
(-0.244449 -1.44318e-09 -0.00341617)
(-0.242246 -1.4573e-09 -0.0036456)
(-0.239902 -1.46851e-09 -0.00386582)
(-0.237421 -1.47683e-09 -0.00407673)
(-0.234809 -1.48391e-09 -0.00427823)
(-0.232071 -1.48725e-09 -0.00447025)
(-0.229215 -1.4906e-09 -0.00465274)
(-0.226245 -1.4898e-09 -0.00482569)
(-0.223167 -1.48693e-09 -0.00498907)
(-0.219987 -1.4824e-09 -0.0051429)
(-0.216712 -1.47373e-09 -0.00528723)
(-0.213346 -1.46256e-09 -0.00542209)
(-0.209895 -1.44601e-09 -0.00554755)
(-0.206366 -1.42863e-09 -0.00566371)
(-0.202764 -1.40585e-09 -0.00577066)
(-0.199094 -1.37976e-09 -0.00586853)
(-0.195362 -1.3462e-09 -0.00595744)
(-0.191573 -1.31056e-09 -0.00603754)
(-0.187734 -1.27036e-09 -0.00610899)
(-0.183848 -1.22518e-09 -0.00617197)
(-0.179922 -1.17668e-09 -0.00622665)
(-0.17596 -1.12528e-09 -0.00627324)
(-0.171967 -1.07014e-09 -0.00631194)
(-0.167949 -1.01084e-09 -0.00634295)
(-0.163909 -9.49881e-10 -0.0063665)
(-0.159852 -8.85184e-10 -0.00638283)
(-0.155783 -8.17993e-10 -0.00639216)
(-0.151707 -7.46646e-10 -0.00639473)
(-0.147626 -6.7488e-10 -0.00639079)
(-0.143546 -6.03938e-10 -0.00638059)
(-0.13947 -5.28009e-10 -0.00636437)
(-0.135401 -4.51659e-10 -0.00634239)
(-0.131344 -3.73641e-10 -0.0063149)
(-0.127301 -2.95616e-10 -0.00628214)
(-0.123277 -2.17168e-10 -0.00624438)
(-0.119274 -1.37881e-10 -0.00620186)
(-0.115295 -6.06627e-11 -0.00615482)
(-0.111343 1.98863e-11 -0.00610351)
(-0.10742 9.50461e-11 -0.00604817)
(-0.10353 1.71461e-10 -0.00598902)
(-0.0996749 2.46223e-10 -0.00592628)
(-0.0958565 3.17257e-10 -0.00586019)
(-0.0920773 3.87885e-10 -0.00579093)
(-0.0883394 4.55615e-10 -0.00571873)
(-0.0846446 5.22107e-10 -0.00564376)
(-0.0809949 5.83625e-10 -0.0055662)
(-0.0773919 6.41412e-10 -0.00548622)
(-0.0738373 6.95468e-10 -0.00540399)
(-0.0703327 7.44962e-10 -0.00531964)
(-0.0668795 7.88647e-10 -0.00523331)
(-0.0634791 8.26521e-10 -0.00514511)
(-0.0601328 8.59414e-10 -0.00505516)
(-0.056842 8.8691e-10 -0.00496353)
(-0.0536078 9.07761e-10 -0.00487031)
(-0.0504314 9.22796e-10 -0.00477556)
(-0.047314 9.30351e-10 -0.00467932)
(-0.0442566 9.30425e-10 -0.00458163)
(-0.0412605 9.23015e-10 -0.00448251)
(-0.0383267 9.05625e-10 -0.00438196)
(-0.0354562 8.84073e-10 -0.00427996)
(-0.0326503 8.50041e-10 -0.00417651)
(-0.0299101 8.09348e-10 -0.00407156)
(-0.0272366 7.60327e-10 -0.00396506)
(-0.0246312 7.02145e-10 -0.00385696)
(-0.0220949 6.33965e-10 -0.00374719)
(-0.0196292 5.55784e-10 -0.00363567)
(-0.0172353 4.70095e-10 -0.00352232)
(-0.0149145 3.7523e-10 -0.00340705)
(-0.0126683 2.70354e-10 -0.00328977)
(-0.0104982 1.60455e-10 -0.00317039)
(-0.00840561 3.72069e-11 -0.00304881)
(-0.00639222 -9.35686e-11 -0.00292495)
(-0.00445962 -2.38537e-10 -0.00279875)
(-0.00260945 -3.94372e-10 -0.00267017)
(-0.0008434 -5.61908e-10 -0.00253932)
(0.000837101 -7.50312e-10 -0.00240611)
(0.00242932 -9.31276e-10 -0.00226997)
(0.00393186 -1.0973e-09 -0.00213079)
(0.0053429 -1.25923e-09 -0.00198894)
(0.00666054 -1.4287e-09 -0.00184445)
(0.00788299 -1.61325e-09 -0.00169741)
(0.00900847 -1.80536e-09 -0.0015479)
(0.0100353 -2.00505e-09 -0.00139602)
(0.0109617 -2.20815e-09 -0.00124193)
(0.0117863 -2.4255e-09 -0.0010858)
(0.0125076 -2.65212e-09 -0.000927877)
(0.0131244 -2.89218e-09 -0.000768419)
(0.0136356 -3.14235e-09 -0.000607757)
(0.0140404 -3.40013e-09 -0.000446269)
(0.0143381 -3.6722e-09 -0.000284394)
(0.0145284 -3.94689e-09 -0.000122631)
(0.0146113 -4.23663e-09 3.85016e-05)
(0.0145873 -4.54078e-09 0.000198469)
(0.0144569 -4.84424e-09 0.000356629)
(0.0142214 -5.16038e-09 0.00051223)
(0.0138825 -5.48921e-09 0.000664469)
(0.0134423 -5.83072e-09 0.00081247)
(0.0129036 -6.18911e-09 0.000955284)
(0.0122698 -6.56607e-09 0.00109188)
(0.0115449 -6.96076e-09 0.00122116)
(0.0107336 -7.38073e-09 0.00134191)
(0.0098415 -7.82349e-09 0.00145285)
(0.00887497 -8.2949e-09 0.00155257)
(0.00784127 -8.7975e-09 0.00163958)
(0.00674865 -9.32044e-09 0.00171223)
(0.00560635 -9.86205e-09 0.00176873)
(0.00442487 -1.04307e-08 0.00180715)
(0.0032157 -1.09629e-08 0.00182512)
(0.00199179 -1.13864e-08 0.00182017)
(0.000767437 -1.17516e-08 0.00178994)
(-0.000441886 -1.20852e-08 0.00173161)
(-0.00161788 -1.23804e-08 0.00164201)
(-0.00274164 -1.26506e-08 0.0015177)
(-0.00379205 -1.2916e-08 0.00135484)
(-0.00474614 -1.31867e-08 0.00114911)
(-0.00557892 -1.34659e-08 0.000895994)
(-0.0062635 -1.37e-08 0.000590978)
(-0.00677134 -1.38657e-08 0.000230091)
(-0.00707299 -1.39233e-08 -0.000188686)
(-0.00713827 -1.38728e-08 -0.000663233)
(-0.00693998 -1.38523e-08 -0.00118389)
(-0.00645584 -1.40349e-08 -0.0017251)
(-0.00567417 -1.46595e-08 -0.00222983)
(-0.00459819 -1.5756e-08 -0.00258186)
(-0.00325956 -1.70299e-08 -0.00255756)
(-0.00174059 -1.23363e-08 -0.00180205)
(-0.000354493 -1.54857e-07 -0.000267484)
(0.00436389 1.91656e-07 -0.00831765)
(0.00966427 -2.66562e-09 -0.0101295)
(0.0125127 1.74782e-08 -0.00805908)
(0.0138081 5.13434e-09 -0.00467737)
(0.0135259 -1.24713e-09 -0.00127378)
(0.0118908 -4.73399e-09 0.00171627)
(0.00906803 -6.36074e-09 0.00418825)
(0.00522893 -6.65377e-09 0.0061725)
(0.000537943 -6.53109e-09 0.0077424)
(-0.00485306 -6.48951e-09 0.00897294)
(-0.0108054 -6.4672e-09 0.00992852)
(-0.0172102 -6.34161e-09 0.0106597)
(-0.0239707 -6.09613e-09 0.011212)
(-0.0310087 -5.75918e-09 0.0116246)
(-0.0382554 -5.29081e-09 0.0119244)
(-0.0456548 -4.72525e-09 0.0121326)
(-0.0531596 -4.11792e-09 0.0122658)
(-0.06073 -3.53417e-09 0.0123368)
(-0.0683323 -3.00393e-09 0.012356)
(-0.0759378 -2.53756e-09 0.0123314)
(-0.0835217 -2.13877e-09 0.0122698)
(-0.0910629 -1.80749e-09 0.0121763)
(-0.0985426 -1.54079e-09 0.0120552)
(-0.105945 -1.33738e-09 0.0119099)
(-0.113255 -1.18393e-09 0.0117434)
(-0.12046 -1.06834e-09 0.011558)
(-0.127549 -9.78972e-10 0.0113555)
(-0.134511 -9.03754e-10 0.0111377)
(-0.141337 -8.34784e-10 0.0109059)
(-0.148019 -7.66244e-10 0.0106612)
(-0.154548 -6.97299e-10 0.0104047)
(-0.160917 -6.28781e-10 0.0101373)
(-0.167119 -5.61935e-10 0.00985977)
(-0.173148 -4.98421e-10 0.00957282)
(-0.178999 -4.39484e-10 0.00927711)
(-0.184665 -3.84291e-10 0.00897327)
(-0.190143 -3.3658e-10 0.00866188)
(-0.195426 -2.92609e-10 0.00834349)
(-0.200512 -2.5487e-10 0.00801865)
(-0.205395 -2.22531e-10 0.0076879)
(-0.210073 -1.96005e-10 0.00735176)
(-0.214542 -1.74876e-10 0.00701076)
(-0.218799 -1.57899e-10 0.00666541)
(-0.222841 -1.47977e-10 0.00631625)
(-0.226667 -1.4511e-10 0.00596381)
(-0.230273 -1.50126e-10 0.00560861)
(-0.23366 -1.63856e-10 0.00525118)
(-0.236824 -1.87127e-10 0.00489205)
(-0.239766 -2.20769e-10 0.00453177)
(-0.242485 -2.63122e-10 0.00417086)
(-0.24498 -3.11693e-10 0.00380986)
(-0.247251 -3.68974e-10 0.00344931)
(-0.249298 -4.29154e-10 0.00308972)
(-0.251123 -4.93479e-10 0.00273163)
(-0.252726 -5.57799e-10 0.00237556)
(-0.254109 -6.22115e-10 0.00202202)
(-0.255273 -6.84353e-10 0.00167152)
(-0.25622 -7.46172e-10 0.00132455)
(-0.256952 -8.05915e-10 0.000981602)
(-0.257472 -8.66486e-10 0.000643151)
(-0.257782 -9.19587e-10 0.000309645)
(-0.257886 -9.78497e-10 -1.84592e-05)
(-0.257787 -1.04197e-09 -0.000340862)
(-0.257488 -1.09755e-09 -0.000657284)
(-0.256993 -1.14899e-09 -0.000967326)
(-0.256306 -1.19711e-09 -0.00127062)
(-0.255431 -1.24233e-09 -0.00156681)
(-0.254373 -1.28423e-09 -0.00185555)
(-0.253137 -1.32074e-09 -0.00213654)
(-0.251726 -1.35269e-09 -0.0024095)
(-0.250147 -1.3809e-09 -0.00267416)
(-0.248404 -1.40539e-09 -0.0029303)
(-0.246503 -1.42572e-09 -0.00317771)
(-0.244448 -1.44316e-09 -0.00341621)
(-0.242246 -1.45728e-09 -0.00364565)
(-0.239901 -1.4685e-09 -0.00386587)
(-0.23742 -1.47682e-09 -0.00407678)
(-0.234808 -1.48389e-09 -0.00427828)
(-0.232071 -1.48724e-09 -0.0044703)
(-0.229214 -1.49058e-09 -0.00465279)
(-0.226244 -1.48979e-09 -0.00482573)
(-0.223167 -1.48691e-09 -0.00498912)
(-0.219987 -1.48239e-09 -0.00514295)
(-0.216711 -1.47371e-09 -0.00528728)
(-0.213345 -1.46255e-09 -0.00542214)
(-0.209895 -1.44599e-09 -0.0055476)
(-0.206366 -1.42861e-09 -0.00566376)
(-0.202763 -1.40584e-09 -0.00577071)
(-0.199093 -1.37975e-09 -0.00586858)
(-0.195361 -1.34619e-09 -0.00595749)
(-0.191573 -1.31055e-09 -0.00603759)
(-0.187733 -1.27035e-09 -0.00610904)
(-0.183848 -1.22517e-09 -0.00617202)
(-0.179922 -1.17667e-09 -0.0062267)
(-0.17596 -1.12527e-09 -0.00627329)
(-0.171967 -1.07013e-09 -0.00631198)
(-0.167948 -1.01083e-09 -0.006343)
(-0.163908 -9.49873e-10 -0.00636655)
(-0.159852 -8.85176e-10 -0.00638288)
(-0.155783 -8.17985e-10 -0.00639221)
(-0.151706 -7.4664e-10 -0.00639478)
(-0.147626 -6.74874e-10 -0.00639084)
(-0.143546 -6.03933e-10 -0.00638064)
(-0.139469 -5.28004e-10 -0.00636442)
(-0.135401 -4.51655e-10 -0.00634244)
(-0.131344 -3.73638e-10 -0.00631495)
(-0.127301 -2.95613e-10 -0.00628219)
(-0.123277 -2.17166e-10 -0.00624443)
(-0.119274 -1.3788e-10 -0.00620191)
(-0.115295 -6.06622e-11 -0.00615488)
(-0.111342 1.98861e-11 -0.00610357)
(-0.10742 9.50453e-11 -0.00604822)
(-0.10353 1.71459e-10 -0.00598907)
(-0.0996747 2.46221e-10 -0.00592634)
(-0.0958563 3.17255e-10 -0.00586024)
(-0.0920771 3.87882e-10 -0.00579099)
(-0.0883391 4.55611e-10 -0.00571879)
(-0.0846444 5.22104e-10 -0.00564381)
(-0.0809946 5.8362e-10 -0.00556626)
(-0.0773916 6.41407e-10 -0.00548628)
(-0.0738371 6.95463e-10 -0.00540405)
(-0.0703324 7.44957e-10 -0.0053197)
(-0.0668792 7.88641e-10 -0.00523337)
(-0.0634788 8.26515e-10 -0.00514518)
(-0.0601326 8.59408e-10 -0.00505522)
(-0.0568418 8.86904e-10 -0.0049636)
(-0.0536076 9.07754e-10 -0.00487038)
(-0.0504312 9.2279e-10 -0.00477563)
(-0.0473137 9.30345e-10 -0.00467939)
(-0.0442564 9.30419e-10 -0.0045817)
(-0.0412603 9.23009e-10 -0.00448258)
(-0.0383265 9.05619e-10 -0.00438203)
(-0.035456 8.84068e-10 -0.00428004)
(-0.0326501 8.50036e-10 -0.00417659)
(-0.0299099 8.09343e-10 -0.00407164)
(-0.0272364 7.60323e-10 -0.00396514)
(-0.024631 7.02141e-10 -0.00385705)
(-0.0220948 6.33961e-10 -0.00374728)
(-0.019629 5.55781e-10 -0.00363576)
(-0.0172351 4.70092e-10 -0.00352241)
(-0.0149143 3.75228e-10 -0.00340714)
(-0.0126681 2.70352e-10 -0.00328987)
(-0.010498 1.60454e-10 -0.00317048)
(-0.00840541 3.72067e-11 -0.0030489)
(-0.00639203 -9.35681e-11 -0.00292505)
(-0.00445942 -2.38535e-10 -0.00279885)
(-0.00260926 -3.9437e-10 -0.00267027)
(-0.000843209 -5.61905e-10 -0.00253943)
(0.000837292 -7.50309e-10 -0.00240621)
(0.00242951 -9.31271e-10 -0.00227007)
(0.00393205 -1.0973e-09 -0.0021309)
(0.00534309 -1.25922e-09 -0.00198905)
(0.00666074 -1.4287e-09 -0.00184457)
(0.00788319 -1.61324e-09 -0.00169753)
(0.00900866 -1.80535e-09 -0.00154802)
(0.0100354 -2.00504e-09 -0.00139614)
(0.0109619 -2.20814e-09 -0.00124205)
(0.0117865 -2.42549e-09 -0.00108593)
(0.0125078 -2.65211e-09 -0.000928006)
(0.0131246 -2.89217e-09 -0.000768551)
(0.0136358 -3.14233e-09 -0.000607891)
(0.0140406 -3.40012e-09 -0.000446406)
(0.0143383 -3.67219e-09 -0.000284533)
(0.0145286 -3.94687e-09 -0.000122772)
(0.0146115 -4.23662e-09 3.83574e-05)
(0.0145875 -4.54076e-09 0.000198322)
(0.0144571 -4.84423e-09 0.000356479)
(0.0142216 -5.16037e-09 0.000512077)
(0.0138827 -5.48919e-09 0.000664313)
(0.0134425 -5.8307e-09 0.000812311)
(0.0129038 -6.18909e-09 0.000955122)
(0.01227 -6.56604e-09 0.00109172)
(0.011545 -6.96074e-09 0.00122099)
(0.0107337 -7.38071e-09 0.00134174)
(0.00984164 -7.82346e-09 0.00145267)
(0.00887511 -8.29488e-09 0.00155239)
(0.00784141 -8.79748e-09 0.00163939)
(0.00674877 -9.32041e-09 0.00171203)
(0.00560648 -9.86202e-09 0.00176853)
(0.00442498 -1.04307e-08 0.00180695)
(0.00321581 -1.09628e-08 0.00182491)
(0.00199189 -1.13864e-08 0.00181995)
(0.000767529 -1.17516e-08 0.00178972)
(-0.000441802 -1.20851e-08 0.00173138)
(-0.00161781 -1.23804e-08 0.00164178)
(-0.00274157 -1.26506e-08 0.00151746)
(-0.00379199 -1.2916e-08 0.00135459)
(-0.00474609 -1.31866e-08 0.00114885)
(-0.00557888 -1.34658e-08 0.000895717)
(-0.00626347 -1.37e-08 0.000590685)
(-0.00677132 -1.38657e-08 0.00022978)
(-0.00707297 -1.39232e-08 -0.000189019)
(-0.00713826 -1.38727e-08 -0.000663592)
(-0.00693998 -1.38523e-08 -0.00118428)
(-0.00645586 -1.40349e-08 -0.00172554)
(-0.0056742 -1.46594e-08 -0.00223032)
(-0.00459826 -1.57559e-08 -0.00258242)
(-0.00325971 -1.70299e-08 -0.00255822)
(-0.0017411 -1.23363e-08 -0.00180292)
(-0.000355221 -1.54858e-07 -0.000268608)
(0.00406509 1.26912e-07 -0.0153789)
(0.00744972 7.03986e-09 -0.0131273)
(0.00807072 2.43404e-08 -0.00870869)
(0.00745256 1.44358e-08 -0.00390657)
(0.00572603 8.92737e-09 0.000621158)
(0.00312579 5.17138e-09 0.00459962)
(-0.000266896 2.82738e-09 0.00795808)
(-0.00436945 1.61665e-09 0.0107249)
(-0.00909772 7.00706e-10 0.0129686)
(-0.0143667 -1.7136e-10 0.0147673)
(-0.0200933 -8.07407e-10 0.0161943)
(-0.026202 -1.18062e-09 0.0173133)
(-0.0326248 -1.41474e-09 0.0181789)
(-0.0393003 -1.566e-09 0.0188373)
(-0.0461733 -1.63072e-09 0.019325)
(-0.0531965 -1.60772e-09 0.0196714)
(-0.0603284 -1.52614e-09 0.0199001)
(-0.0675332 -1.42049e-09 0.02003)
(-0.0747799 -1.31632e-09 0.0200764)
(-0.0820411 -1.22092e-09 0.0200517)
(-0.0892933 -1.13551e-09 0.0199661)
(-0.0965155 -1.06176e-09 0.0198277)
(-0.103689 -9.99655e-10 0.0196433)
(-0.110798 -9.46076e-10 0.0194186)
(-0.117828 -9.0019e-10 0.019158)
(-0.124765 -8.5556e-10 0.0188655)
(-0.131598 -8.04715e-10 0.0185442)
(-0.138315 -7.43091e-10 0.0181968)
(-0.144908 -6.68409e-10 0.0178258)
(-0.151367 -5.81916e-10 0.017433)
(-0.157683 -4.8403e-10 0.0170202)
(-0.16385 -3.78901e-10 0.0165889)
(-0.169859 -2.69847e-10 0.0161404)
(-0.175706 -1.60394e-10 0.0156761)
(-0.181382 -5.2199e-11 0.0151969)
(-0.186883 5.22502e-11 0.0147041)
(-0.192203 1.52748e-10 0.0141984)
(-0.197338 2.48261e-10 0.0136811)
(-0.202282 3.39618e-10 0.0131528)
(-0.207033 4.27029e-10 0.0126146)
(-0.211585 5.09666e-10 0.0120672)
(-0.215935 5.88566e-10 0.0115117)
(-0.220081 6.60415e-10 0.0109488)
(-0.224019 7.26458e-10 0.0103794)
(-0.227747 7.86695e-10 0.00980446)
(-0.231263 8.38641e-10 0.00922476)
(-0.234564 8.84369e-10 0.00864119)
(-0.23765 9.24503e-10 0.00805465)
(-0.24052 9.60492e-10 0.007466)
(-0.243171 9.93582e-10 0.00687611)
(-0.245605 1.02605e-09 0.00628587)
(-0.24782 1.05811e-09 0.00569614)
(-0.249817 1.08975e-09 0.00510779)
(-0.251597 1.12181e-09 0.00452167)
(-0.253159 1.15345e-09 0.00393863)
(-0.254506 1.18427e-09 0.0033595)
(-0.255638 1.21488e-09 0.0027851)
(-0.256558 1.24342e-09 0.00221623)
(-0.257266 1.26968e-09 0.00165365)
(-0.257767 1.29408e-09 0.00109813)
(-0.258061 1.31682e-09 0.000550359)
(-0.258153 1.33853e-09 1.10427e-05)
(-0.258044 1.35838e-09 -0.000519151)
(-0.257739 1.37885e-09 -0.00103958)
(-0.257241 1.39974e-09 -0.00154965)
(-0.256553 1.42146e-09 -0.00204878)
(-0.25568 1.44297e-09 -0.00253643)
(-0.254627 1.46552e-09 -0.00301207)
(-0.253397 1.49034e-09 -0.00347522)
(-0.251995 1.5158e-09 -0.0039254)
(-0.250425 1.54208e-09 -0.00436222)
(-0.248694 1.56878e-09 -0.00478529)
(-0.246805 1.59734e-09 -0.00519428)
(-0.244765 1.62611e-09 -0.00558887)
(-0.242577 1.65551e-09 -0.00596881)
(-0.240248 1.68574e-09 -0.00633387)
(-0.237783 1.71534e-09 -0.00668386)
(-0.235188 1.74557e-09 -0.00701862)
(-0.232468 1.77622e-09 -0.00733804)
(-0.229629 1.80687e-09 -0.00764202)
(-0.226676 1.83753e-09 -0.00793052)
(-0.223615 1.86942e-09 -0.00820352)
(-0.220452 1.90112e-09 -0.00846103)
(-0.217193 1.93571e-09 -0.00870309)
(-0.213842 1.9699e-09 -0.00892978)
(-0.210406 2.00802e-09 -0.00914121)
(-0.206891 2.04574e-09 -0.00933749)
(-0.203301 2.08656e-09 -0.00951879)
(-0.199643 2.12966e-09 -0.00968529)
(-0.195921 2.17526e-09 -0.0098372)
(-0.192142 2.22251e-09 -0.00997474)
(-0.18831 2.27288e-09 -0.0100982)
(-0.18443 2.32429e-09 -0.0102077)
(-0.180508 2.37902e-09 -0.0103038)
(-0.176549 2.43582e-09 -0.0103865)
(-0.172557 2.49346e-09 -0.0104563)
(-0.168538 2.554e-09 -0.0105136)
(-0.164495 2.61538e-09 -0.0105586)
(-0.160434 2.68008e-09 -0.0105917)
(-0.156358 2.74458e-09 -0.0106132)
(-0.152272 2.81199e-09 -0.0106237)
(-0.148181 2.87982e-09 -0.0106234)
(-0.144088 2.94869e-09 -0.0106127)
(-0.139997 3.0184e-09 -0.010592)
(-0.135911 3.09102e-09 -0.0105618)
(-0.131835 3.16365e-09 -0.0105224)
(-0.127771 3.2367e-09 -0.0104743)
(-0.123724 3.30977e-09 -0.0104177)
(-0.119695 3.38491e-09 -0.0103532)
(-0.115689 3.46007e-09 -0.0102811)
(-0.111708 3.53627e-09 -0.0102018)
(-0.107755 3.61186e-09 -0.0101157)
(-0.103832 3.68705e-09 -0.0100231)
(-0.0999426 3.76246e-09 -0.00992435)
(-0.0960881 3.83788e-09 -0.00981988)
(-0.0922713 3.91311e-09 -0.00970999)
(-0.0884941 3.98856e-09 -0.00959499)
(-0.0847587 4.06401e-09 -0.00947519)
(-0.081067 4.13679e-09 -0.00935087)
(-0.0774208 4.20896e-09 -0.00922231)
(-0.0738218 4.28052e-09 -0.00908976)
(-0.0702716 4.35127e-09 -0.00895345)
(-0.066772 4.42078e-09 -0.00881358)
(-0.0633242 4.48824e-09 -0.00867037)
(-0.0599299 4.55488e-09 -0.00852396)
(-0.0565902 4.61863e-09 -0.00837452)
(-0.0533067 4.68198e-09 -0.00822216)
(-0.0500805 4.74286e-09 -0.00806698)
(-0.0469129 4.80416e-09 -0.00790907)
(-0.0438051 4.86175e-09 -0.00774848)
(-0.0407584 4.91853e-09 -0.00758524)
(-0.0377739 4.97282e-09 -0.00741937)
(-0.0348528 5.02548e-09 -0.00725085)
(-0.0319964 5.07441e-09 -0.00707964)
(-0.0292059 5.12419e-09 -0.0069057)
(-0.0264824 5.169e-09 -0.00672896)
(-0.0238273 5.21383e-09 -0.00654933)
(-0.0212419 5.25493e-09 -0.00636669)
(-0.0187274 5.29688e-09 -0.00618095)
(-0.0162853 5.33511e-09 -0.00599196)
(-0.013917 5.37377e-09 -0.00579959)
(-0.0116239 5.41036e-09 -0.00560371)
(-0.00940753 5.44572e-09 -0.00540416)
(-0.00726948 5.47861e-09 -0.00520083)
(-0.00521131 5.50652e-09 -0.00499357)
(-0.00323468 5.53735e-09 -0.00478229)
(-0.00134129 5.56363e-09 -0.00456697)
(0.00046734 5.58328e-09 -0.00434753)
(0.00218894 5.60418e-09 -0.00412367)
(0.0038218 5.61969e-09 -0.0038951)
(0.00536425 5.63146e-09 -0.00366187)
(0.00681452 5.64407e-09 -0.00342409)
(0.00817077 5.65627e-09 -0.00318182)
(0.00943124 5.66308e-09 -0.00293518)
(0.0105942 5.67072e-09 -0.0026843)
(0.011658 5.67837e-09 -0.00242937)
(0.012621 5.68311e-09 -0.00217063)
(0.0134817 5.68869e-09 -0.0019084)
(0.0142389 5.6922e-09 -0.00164306)
(0.0148914 5.69445e-09 -0.00137506)
(0.0154381 5.6938e-09 -0.00110492)
(0.0158782 5.69356e-09 -0.000833264)
(0.0162113 5.69e-09 -0.0005608)
(0.0164371 5.68019e-09 -0.000288318)
(0.0165555 5.67913e-09 -1.66938e-05)
(0.0165671 5.68306e-09 0.000253126)
(0.0164726 5.68657e-09 0.000520081)
(0.0162733 5.69174e-09 0.000782967)
(0.0159708 5.69524e-09 0.00104048)
(0.0155674 5.69916e-09 0.00129119)
(0.0150657 5.70058e-09 0.00153356)
(0.0144692 5.70282e-09 0.00176592)
(0.0137817 5.70423e-09 0.00198647)
(0.0130079 5.70105e-09 0.00219326)
(0.0121532 5.69995e-09 0.00238421)
(0.0112239 5.69594e-09 0.00255709)
(0.0102267 5.69233e-09 0.00270946)
(0.00916972 5.69457e-09 0.00283874)
(0.00806164 5.70058e-09 0.0029421)
(0.00691229 5.71786e-09 0.0030165)
(0.00573248 5.74977e-09 0.00305856)
(0.00453403 5.80636e-09 0.00306468)
(0.00332992 5.89307e-09 0.00303105)
(0.00213434 6.01577e-09 0.00295338)
(0.000962773 6.17702e-09 0.00282707)
(-0.000168289 6.35763e-09 0.00264722)
(-0.00124078 6.55679e-09 0.00240853)
(-0.00223575 6.78042e-09 0.00210543)
(-0.00313334 7.03943e-09 0.00173222)
(-0.00391302 7.36905e-09 0.0012835)
(-0.00455401 7.78865e-09 0.00075499)
(-0.00503589 8.29753e-09 0.000144993)
(-0.00533939 8.87183e-09 -0.000542953)
(-0.00544693 9.43064e-09 -0.00129594)
(-0.00534414 9.85636e-09 -0.00208453)
(-0.00501825 9.96547e-09 -0.00284962)
(-0.00445015 9.60471e-09 -0.00348153)
(-0.00360045 8.75363e-09 -0.00378628)
(-0.00243524 1.32543e-08 -0.00342422)
(-0.000830472 -1.20108e-07 -0.0018038)
(0.00406438 1.2691e-07 -0.0153792)
(0.00744936 7.03967e-09 -0.0131275)
(0.00807056 2.43397e-08 -0.00870875)
(0.00745241 1.44354e-08 -0.0039066)
(0.00572591 8.92714e-09 0.000621133)
(0.00312571 5.17126e-09 0.00459959)
(-0.000266948 2.82732e-09 0.00795806)
(-0.00436948 1.61662e-09 0.0107249)
(-0.00909773 7.00693e-10 0.0129686)
(-0.0143667 -1.71357e-10 0.0147673)
(-0.0200932 -8.07393e-10 0.0161943)
(-0.026202 -1.1806e-09 0.0173133)
(-0.0326248 -1.41471e-09 0.0181789)
(-0.0393002 -1.56598e-09 0.0188373)
(-0.0461732 -1.6307e-09 0.019325)
(-0.0531963 -1.6077e-09 0.0196714)
(-0.0603283 -1.52612e-09 0.0199)
(-0.0675331 -1.42047e-09 0.0200299)
(-0.0747797 -1.31631e-09 0.0200763)
(-0.082041 -1.2209e-09 0.0200517)
(-0.0892931 -1.1355e-09 0.019966)
(-0.0965153 -1.06175e-09 0.0198277)
(-0.103689 -9.99643e-10 0.0196433)
(-0.110798 -9.46065e-10 0.0194186)
(-0.117828 -9.0018e-10 0.019158)
(-0.124765 -8.5555e-10 0.0188654)
(-0.131597 -8.04705e-10 0.0185442)
(-0.138315 -7.43082e-10 0.0181968)
(-0.144908 -6.68401e-10 0.0178258)
(-0.151367 -5.8191e-10 0.017433)
(-0.157683 -4.84025e-10 0.0170202)
(-0.16385 -3.78896e-10 0.0165888)
(-0.169859 -2.69844e-10 0.0161404)
(-0.175705 -1.60392e-10 0.015676)
(-0.181382 -5.21985e-11 0.0151969)
(-0.186882 5.22496e-11 0.014704)
(-0.192203 1.52747e-10 0.0141984)
(-0.197337 2.48258e-10 0.013681)
(-0.202282 3.39615e-10 0.0131528)
(-0.207032 4.27025e-10 0.0126145)
(-0.211584 5.09661e-10 0.0120672)
(-0.215935 5.8856e-10 0.0115117)
(-0.220081 6.60409e-10 0.0109488)
(-0.224019 7.2645e-10 0.0103794)
(-0.227747 7.86687e-10 0.00980445)
(-0.231262 8.38632e-10 0.00922474)
(-0.234564 8.8436e-10 0.00864118)
(-0.23765 9.24494e-10 0.00805464)
(-0.240519 9.60483e-10 0.00746599)
(-0.243171 9.93573e-10 0.0068761)
(-0.245605 1.02604e-09 0.00628586)
(-0.24782 1.0581e-09 0.00569613)
(-0.249817 1.08974e-09 0.00510778)
(-0.251596 1.12179e-09 0.00452166)
(-0.253159 1.15344e-09 0.00393862)
(-0.254505 1.18425e-09 0.00335949)
(-0.255638 1.21486e-09 0.00278509)
(-0.256557 1.2434e-09 0.00221622)
(-0.257266 1.26967e-09 0.00165364)
(-0.257766 1.29407e-09 0.00109812)
(-0.258061 1.31681e-09 0.00055035)
(-0.258152 1.33852e-09 1.10331e-05)
(-0.258044 1.35837e-09 -0.00051916)
(-0.257738 1.37884e-09 -0.00103959)
(-0.25724 1.39973e-09 -0.00154966)
(-0.256553 1.42144e-09 -0.00204879)
(-0.25568 1.44296e-09 -0.00253644)
(-0.254626 1.4655e-09 -0.00301208)
(-0.253396 1.49033e-09 -0.00347522)
(-0.251994 1.51578e-09 -0.00392541)
(-0.250425 1.54207e-09 -0.00436223)
(-0.248694 1.56876e-09 -0.0047853)
(-0.246805 1.59733e-09 -0.00519428)
(-0.244764 1.6261e-09 -0.00558888)
(-0.242577 1.6555e-09 -0.00596882)
(-0.240248 1.68572e-09 -0.00633388)
(-0.237783 1.71533e-09 -0.00668387)
(-0.235188 1.74556e-09 -0.00701863)
(-0.232468 1.77621e-09 -0.00733805)
(-0.229629 1.80686e-09 -0.00764203)
(-0.226676 1.83751e-09 -0.00793053)
(-0.223615 1.86941e-09 -0.00820353)
(-0.220452 1.9011e-09 -0.00846104)
(-0.217192 1.9357e-09 -0.0087031)
(-0.213842 1.96989e-09 -0.00892979)
(-0.210406 2.00801e-09 -0.00914121)
(-0.206891 2.04572e-09 -0.0093375)
(-0.203301 2.08654e-09 -0.0095188)
(-0.199643 2.12965e-09 -0.0096853)
(-0.195921 2.17524e-09 -0.00983721)
(-0.192142 2.2225e-09 -0.00997475)
(-0.18831 2.27287e-09 -0.0100982)
(-0.18443 2.32427e-09 -0.0102077)
(-0.180508 2.379e-09 -0.0103038)
(-0.176549 2.4358e-09 -0.0103865)
(-0.172557 2.49344e-09 -0.0104564)
(-0.168537 2.55399e-09 -0.0105136)
(-0.164495 2.61536e-09 -0.0105586)
(-0.160433 2.68006e-09 -0.0105917)
(-0.156358 2.74456e-09 -0.0106133)
(-0.152272 2.81197e-09 -0.0106237)
(-0.148181 2.8798e-09 -0.0106234)
(-0.144088 2.94868e-09 -0.0106127)
(-0.139996 3.01839e-09 -0.010592)
(-0.135911 3.09101e-09 -0.0105618)
(-0.131835 3.16363e-09 -0.0105224)
(-0.127771 3.23669e-09 -0.0104743)
(-0.123724 3.30975e-09 -0.0104177)
(-0.119695 3.3849e-09 -0.0103532)
(-0.115689 3.46005e-09 -0.0102811)
(-0.111708 3.53626e-09 -0.0102018)
(-0.107755 3.61185e-09 -0.0101157)
(-0.103832 3.68704e-09 -0.0100231)
(-0.0999424 3.76245e-09 -0.00992436)
(-0.0960879 3.83787e-09 -0.00981989)
(-0.0922711 3.91309e-09 -0.00971)
(-0.0884939 3.98854e-09 -0.009595)
(-0.0847585 4.064e-09 -0.0094752)
(-0.0810668 4.13677e-09 -0.00935088)
(-0.0774206 4.20894e-09 -0.00922232)
(-0.0738216 4.2805e-09 -0.00908977)
(-0.0702715 4.35125e-09 -0.00895346)
(-0.0667718 4.42076e-09 -0.0088136)
(-0.0633241 4.48822e-09 -0.00867038)
(-0.0599297 4.55486e-09 -0.00852398)
(-0.0565901 4.61861e-09 -0.00837453)
(-0.0533065 4.68197e-09 -0.00822217)
(-0.0500803 4.74284e-09 -0.008067)
(-0.0469127 4.80415e-09 -0.00790909)
(-0.043805 4.86174e-09 -0.0077485)
(-0.0407582 4.91851e-09 -0.00758526)
(-0.0377737 4.97281e-09 -0.00741939)
(-0.0348527 5.02547e-09 -0.00725087)
(-0.0319963 5.0744e-09 -0.00707966)
(-0.0292057 5.12418e-09 -0.00690572)
(-0.0264823 5.16899e-09 -0.00672898)
(-0.0238272 5.21382e-09 -0.00654935)
(-0.0212417 5.25492e-09 -0.00636671)
(-0.0187273 5.29687e-09 -0.00618097)
(-0.0162852 5.3351e-09 -0.00599198)
(-0.0139168 5.37376e-09 -0.00579961)
(-0.0116237 5.41035e-09 -0.00560373)
(-0.00940739 5.44572e-09 -0.00540419)
(-0.00726933 5.4786e-09 -0.00520085)
(-0.00521117 5.50651e-09 -0.0049936)
(-0.00323453 5.53735e-09 -0.00478232)
(-0.00134114 5.56362e-09 -0.004567)
(0.000467487 5.58327e-09 -0.00434756)
(0.00218908 5.60417e-09 -0.00412369)
(0.00382194 5.61968e-09 -0.00389512)
(0.0053644 5.63145e-09 -0.0036619)
(0.00681466 5.64406e-09 -0.00342412)
(0.00817092 5.65627e-09 -0.00318185)
(0.00943139 5.66307e-09 -0.0029352)
(0.0105943 5.67072e-09 -0.00268432)
(0.0116581 5.67837e-09 -0.00242939)
(0.0126211 5.68311e-09 -0.00217066)
(0.0134819 5.68869e-09 -0.00190843)
(0.0142391 5.69219e-09 -0.00164309)
(0.0148915 5.69445e-09 -0.00137508)
(0.0154382 5.6938e-09 -0.00110494)
(0.0158784 5.69356e-09 -0.000833288)
(0.0162114 5.69e-09 -0.000560824)
(0.0164372 5.68019e-09 -0.000288341)
(0.0165557 5.67913e-09 -1.67165e-05)
(0.0165672 5.68306e-09 0.000253104)
(0.0164728 5.68657e-09 0.000520059)
(0.0162734 5.69174e-09 0.000782946)
(0.015971 5.69524e-09 0.00104046)
(0.0155675 5.69916e-09 0.00129117)
(0.0150658 5.70058e-09 0.00153354)
(0.0144693 5.70282e-09 0.0017659)
(0.0137818 5.70423e-09 0.00198645)
(0.013008 5.70105e-09 0.00219324)
(0.0121534 5.69996e-09 0.0023842)
(0.011224 5.69594e-09 0.00255707)
(0.0102268 5.69233e-09 0.00270945)
(0.00916981 5.69458e-09 0.00283872)
(0.00806172 5.70058e-09 0.00294209)
(0.00691237 5.71786e-09 0.00301648)
(0.00573256 5.74978e-09 0.00305855)
(0.0045341 5.80636e-09 0.00306467)
(0.00332998 5.89307e-09 0.00303104)
(0.0021344 6.01577e-09 0.00295337)
(0.000962824 6.17702e-09 0.00282706)
(-0.000168244 6.35763e-09 0.0026472)
(-0.00124074 6.55679e-09 0.00240851)
(-0.00223571 6.78042e-09 0.0021054)
(-0.00313332 7.03943e-09 0.00173219)
(-0.003913 7.36905e-09 0.00128347)
(-0.004554 7.78865e-09 0.000754945)
(-0.00503588 8.29753e-09 0.000144939)
(-0.00533939 8.87183e-09 -0.000543019)
(-0.00544695 9.43064e-09 -0.00129602)
(-0.00534417 9.85636e-09 -0.00208463)
(-0.00501831 9.96546e-09 -0.00284975)
(-0.00445026 9.60469e-09 -0.00348168)
(-0.00360065 8.75363e-09 -0.00378646)
(-0.00243575 1.32543e-08 -0.00342441)
(-0.000831264 -1.20109e-07 -0.001804)
(0.00240093 6.40973e-08 -0.0200743)
(0.00399609 -8.23492e-09 -0.0144037)
(0.00324499 1.10718e-08 -0.00803913)
(0.00151403 5.87217e-09 -0.00208447)
(-0.00105085 2.97376e-09 0.00330544)
(-0.00423663 7.0722e-10 0.00801955)
(-0.00798414 -7.85646e-10 0.0120407)
(-0.0122451 -1.47638e-09 0.0154074)
(-0.0169751 -2.04538e-09 0.0181864)
(-0.0221259 -2.63407e-09 0.0204536)
(-0.0276466 -2.98357e-09 0.0222828)
(-0.0334866 -3.06018e-09 0.0237412)
(-0.0395974 -3.02317e-09 0.0248876)
(-0.0459326 -2.96812e-09 0.025773)
(-0.0524491 -2.89215e-09 0.0264394)
(-0.0591078 -2.77968e-09 0.0269217)
(-0.0658734 -2.64319e-09 0.0272482)
(-0.0727145 -2.50738e-09 0.0274426)
(-0.079603 -2.38304e-09 0.0275241)
(-0.086514 -2.27326e-09 0.0275085)
(-0.093425 -2.16995e-09 0.027409)
(-0.100316 -2.06937e-09 0.0272363)
(-0.10717 -1.96924e-09 0.0269994)
(-0.113969 -1.87039e-09 0.0267057)
(-0.120701 -1.77115e-09 0.0263616)
(-0.12735 -1.67152e-09 0.0259722)
(-0.133907 -1.56756e-09 0.0255419)
(-0.140359 -1.45803e-09 0.0250745)
(-0.146696 -1.34273e-09 0.0245734)
(-0.15291 -1.22371e-09 0.0240411)
(-0.158992 -1.10182e-09 0.0234802)
(-0.164934 -9.82228e-10 0.0228928)
(-0.170728 -8.67835e-10 0.0222809)
(-0.176368 -7.61332e-10 0.0216463)
(-0.181847 -6.6313e-10 0.0209904)
(-0.18716 -5.74678e-10 0.0203148)
(-0.192301 -4.95764e-10 0.019621)
(-0.197264 -4.24936e-10 0.0189102)
(-0.202046 -3.60537e-10 0.0181839)
(-0.206642 -3.01735e-10 0.0174432)
(-0.211048 -2.47908e-10 0.0166894)
(-0.215259 -1.99677e-10 0.0159237)
(-0.219274 -1.54555e-10 0.0151474)
(-0.223088 -1.15027e-10 0.0143617)
(-0.2267 -8.04696e-11 0.0135679)
(-0.230106 -5.00546e-11 0.0127671)
(-0.233305 -2.31602e-11 0.0119605)
(-0.236296 1.04211e-12 0.0111495)
(-0.239076 2.41053e-11 0.0103352)
(-0.241646 4.80994e-11 0.00951881)
(-0.244003 7.22999e-11 0.00870161)
(-0.246148 9.66034e-11 0.00788479)
(-0.248082 1.2132e-10 0.00706956)
(-0.249803 1.44899e-10 0.00625712)
(-0.251313 1.67959e-10 0.00544864)
(-0.252613 1.88846e-10 0.00464529)
(-0.253704 2.06733e-10 0.00384819)
(-0.254587 2.21826e-10 0.00305847)
(-0.255264 2.34229e-10 0.00227721)
(-0.255738 2.4477e-10 0.00150544)
(-0.25601 2.54587e-10 0.000744186)
(-0.256083 2.62853e-10 -5.59523e-06)
(-0.255961 2.71429e-10 -0.000742966)
(-0.255646 2.80317e-10 -0.00146702)
(-0.255142 2.9055e-10 -0.00217691)
(-0.254452 3.01197e-10 -0.00287182)
(-0.253581 3.11948e-10 -0.00355097)
(-0.252532 3.23734e-10 -0.00421364)
(-0.251309 3.36451e-10 -0.00485915)
(-0.249917 3.48858e-10 -0.00548686)
(-0.248361 3.62714e-10 -0.00609618)
(-0.246645 3.76261e-10 -0.0066866)
(-0.244774 3.90014e-10 -0.00725763)
(-0.242754 4.03872e-10 -0.00780885)
(-0.240588 4.1773e-10 -0.00833989)
(-0.238283 4.32209e-10 -0.00885041)
(-0.235843 4.46482e-10 -0.00934016)
(-0.233274 4.60549e-10 -0.0098089)
(-0.230582 4.7503e-10 -0.0102565)
(-0.227771 4.89926e-10 -0.0106827)
(-0.224848 5.05651e-10 -0.0110876)
(-0.221818 5.21376e-10 -0.011471)
(-0.218686 5.38343e-10 -0.0118331)
(-0.215458 5.55518e-10 -0.0121738)
(-0.21214 5.74142e-10 -0.0124932)
(-0.208736 5.94837e-10 -0.0127915)
(-0.205253 6.1636e-10 -0.0130689)
(-0.201695 6.38919e-10 -0.0133255)
(-0.198069 6.63342e-10 -0.0135616)
(-0.194379 6.89628e-10 -0.0137775)
(-0.190631 7.1633e-10 -0.0139735)
(-0.186829 7.45723e-10 -0.0141499)
(-0.18298 7.75946e-10 -0.014307)
(-0.179087 8.07412e-10 -0.0144454)
(-0.175157 8.4095e-10 -0.0145653)
(-0.171193 8.74697e-10 -0.0146673)
(-0.1672 9.10517e-10 -0.0147517)
(-0.163184 9.47166e-10 -0.0148191)
(-0.159147 9.85061e-10 -0.01487)
(-0.155096 1.02379e-09 -0.0149048)
(-0.151033 1.06376e-09 -0.014924)
(-0.146963 1.10456e-09 -0.0149282)
(-0.14289 1.14557e-09 -0.014918)
(-0.138818 1.18762e-09 -0.0148938)
(-0.134751 1.23154e-09 -0.0148562)
(-0.130691 1.27567e-09 -0.0148057)
(-0.126643 1.3198e-09 -0.0147429)
(-0.12261 1.36518e-09 -0.0146684)
(-0.118595 1.40995e-09 -0.0145826)
(-0.1146 1.45617e-09 -0.0144861)
(-0.11063 1.5026e-09 -0.0143794)
(-0.106686 1.54862e-09 -0.014263)
(-0.102771 1.59527e-09 -0.0141375)
(-0.0988886 1.64152e-09 -0.0140033)
(-0.0950401 1.68797e-09 -0.0138608)
(-0.0912281 1.73505e-09 -0.0137106)
(-0.0874548 1.78069e-09 -0.0135531)
(-0.0837223 1.828e-09 -0.0133887)
(-0.0800326 1.87324e-09 -0.0132178)
(-0.0763875 1.91828e-09 -0.0130407)
(-0.0727887 1.96374e-09 -0.0128578)
(-0.0692382 2.00838e-09 -0.0126694)
(-0.0657373 2.05158e-09 -0.0124759)
(-0.0622877 2.09478e-09 -0.0122774)
(-0.058891 2.13613e-09 -0.0120742)
(-0.0555484 2.17831e-09 -0.0118666)
(-0.0522615 2.21781e-09 -0.0116546)
(-0.0490315 2.25732e-09 -0.0114384)
(-0.0458597 2.29622e-09 -0.0112182)
(-0.0427475 2.33305e-09 -0.0109939)
(-0.0396961 2.36926e-09 -0.0107658)
(-0.0367067 2.40486e-09 -0.0105337)
(-0.0337806 2.43778e-09 -0.0102976)
(-0.0309191 2.4705e-09 -0.0100576)
(-0.0281233 2.50198e-09 -0.00981357)
(-0.0253947 2.53181e-09 -0.00956538)
(-0.0227343 2.55957e-09 -0.00931293)
(-0.0201436 2.58713e-09 -0.00905609)
(-0.017624 2.61222e-09 -0.00879471)
(-0.0151767 2.6371e-09 -0.00852861)
(-0.0128033 2.6595e-09 -0.00825762)
(-0.0105051 2.68149e-09 -0.00798156)
(-0.00828365 2.70121e-09 -0.00770023)
(-0.00614051 2.71886e-09 -0.00741346)
(-0.00407724 2.73589e-09 -0.00712108)
(-0.00209547 2.75148e-09 -0.00682296)
(-0.000196778 2.76313e-09 -0.00651901)
(0.00161705 2.77043e-09 -0.00620899)
(0.00334411 2.77732e-09 -0.0058926)
(0.00498282 2.78151e-09 -0.00556976)
(0.00653149 2.783e-09 -0.00524044)
(0.00798843 2.78428e-09 -0.00490472)
(0.00935193 2.78349e-09 -0.0045627)
(0.0106203 2.77896e-09 -0.00421451)
(0.011792 2.77153e-09 -0.00386037)
(0.0128653 2.76263e-09 -0.00350054)
(0.013839 2.75166e-09 -0.00313538)
(0.0147115 2.73653e-09 -0.00276532)
(0.0154817 2.71911e-09 -0.0023909)
(0.0161486 2.69939e-09 -0.00201275)
(0.0167113 2.6751e-09 -0.00163162)
(0.017169 2.64872e-09 -0.00124837)
(0.0175215 2.61734e-09 -0.000863966)
(0.0177685 2.58511e-09 -0.000479518)
(0.0179103 2.55246e-09 -9.62436e-05)
(0.0179472 2.51896e-09 0.000284515)
(0.0178804 2.48504e-09 0.00066127)
(0.0177109 2.4486e-09 0.00103237)
(0.0174406 2.41214e-09 0.001396)
(0.0170718 2.37317e-09 0.0017502)
(0.016607 2.33293e-09 0.00209285)
(0.0160498 2.28726e-09 0.00242164)
(0.0154038 2.24116e-09 0.0027341)
(0.0146738 2.19171e-09 0.00302757)
(0.0138649 2.13807e-09 0.00329922)
(0.012983 2.07858e-09 0.00354599)
(0.0120348 2.02031e-09 0.00376462)
(0.0110277 1.96119e-09 0.00395161)
(0.00996995 1.90497e-09 0.0041032)
(0.00887073 1.85832e-09 0.00421538)
(0.00773996 1.82416e-09 0.0042838)
(0.00658842 1.80752e-09 0.00430382)
(0.00542782 1.80881e-09 0.00427054)
(0.00427074 1.82472e-09 0.00417865)
(0.00313061 1.85569e-09 0.00402254)
(0.00202164 1.89212e-09 0.00379626)
(0.000958766 1.93153e-09 0.00349359)
(-4.25953e-05 1.97436e-09 0.00310825)
(-0.000966597 2.0269e-09 0.00263416)
(-0.00179741 2.10965e-09 0.00206599)
(-0.00251968 2.2398e-09 0.00139994)
(-0.00311874 2.40744e-09 0.000635378)
(-0.00358105 2.5655e-09 -0.000222841)
(-0.00389357 2.62601e-09 -0.00116034)
(-0.00404327 2.46345e-09 -0.00214791)
(-0.00401295 1.85853e-09 -0.00313274)
(-0.00377045 5.49624e-10 -0.0040256)
(-0.00324944 -1.52424e-09 -0.00468189)
(-0.00239319 2.02133e-09 -0.00483542)
(-0.000942373 -1.25865e-07 -0.00357225)
(0.00240033 6.40964e-08 -0.0200745)
(0.00399585 -8.23472e-09 -0.0144037)
(0.0032449 1.10715e-08 -0.00803916)
(0.00151395 5.87202e-09 -0.00208451)
(-0.0010509 2.97368e-09 0.0033054)
(-0.00423666 7.07203e-10 0.00801951)
(-0.00798414 -7.85629e-10 0.0120407)
(-0.0122451 -1.47635e-09 0.0154073)
(-0.0169751 -2.04535e-09 0.0181864)
(-0.0221258 -2.63403e-09 0.0204536)
(-0.0276465 -2.98352e-09 0.0222828)
(-0.0334866 -3.06013e-09 0.0237411)
(-0.0395974 -3.02312e-09 0.0248876)
(-0.0459325 -2.96808e-09 0.025773)
(-0.052449 -2.89211e-09 0.0264394)
(-0.0591076 -2.77965e-09 0.0269216)
(-0.0658732 -2.64316e-09 0.0272482)
(-0.0727143 -2.50735e-09 0.0274426)
(-0.0796029 -2.38301e-09 0.0275241)
(-0.0865138 -2.27323e-09 0.0275085)
(-0.0934248 -2.16992e-09 0.027409)
(-0.100316 -2.06935e-09 0.0272363)
(-0.107169 -1.96922e-09 0.0269993)
(-0.113969 -1.87037e-09 0.0267057)
(-0.1207 -1.77113e-09 0.0263615)
(-0.12735 -1.6715e-09 0.0259721)
(-0.133907 -1.56755e-09 0.0255419)
(-0.140359 -1.45802e-09 0.0250745)
(-0.146696 -1.34271e-09 0.0245733)
(-0.15291 -1.2237e-09 0.0240411)
(-0.158992 -1.10181e-09 0.0234802)
(-0.164933 -9.82218e-10 0.0228928)
(-0.170728 -8.67827e-10 0.0222809)
(-0.176367 -7.61325e-10 0.0216462)
(-0.181847 -6.63124e-10 0.0209904)
(-0.18716 -5.74672e-10 0.0203148)
(-0.1923 -4.95759e-10 0.019621)
(-0.197264 -4.24933e-10 0.0189102)
(-0.202046 -3.60534e-10 0.0181839)
(-0.206642 -3.01732e-10 0.0174431)
(-0.211047 -2.47906e-10 0.0166893)
(-0.215259 -1.99675e-10 0.0159237)
(-0.219273 -1.54554e-10 0.0151474)
(-0.223088 -1.15026e-10 0.0143617)
(-0.226699 -8.04689e-11 0.0135679)
(-0.230106 -5.00542e-11 0.0127671)
(-0.233305 -2.31601e-11 0.0119605)
(-0.236296 1.0421e-12 0.0111495)
(-0.239076 2.41051e-11 0.0103352)
(-0.241645 4.8099e-11 0.0095188)
(-0.244003 7.22994e-11 0.0087016)
(-0.246148 9.66027e-11 0.00788478)
(-0.248081 1.21319e-10 0.00706956)
(-0.249803 1.44898e-10 0.00625711)
(-0.251313 1.67958e-10 0.00544864)
(-0.252613 1.88845e-10 0.00464528)
(-0.253703 2.06731e-10 0.00384819)
(-0.254586 2.21824e-10 0.00305847)
(-0.255264 2.34227e-10 0.0022772)
(-0.255737 2.44768e-10 0.00150544)
(-0.25601 2.54585e-10 0.000744181)
(-0.256083 2.62851e-10 -5.60071e-06)
(-0.255961 2.71427e-10 -0.000742971)
(-0.255646 2.80315e-10 -0.00146703)
(-0.255142 2.90548e-10 -0.00217691)
(-0.254452 3.01195e-10 -0.00287182)
(-0.253581 3.11946e-10 -0.00355098)
(-0.252532 3.23732e-10 -0.00421365)
(-0.251309 3.36449e-10 -0.00485915)
(-0.249917 3.48856e-10 -0.00548686)
(-0.248361 3.62712e-10 -0.00609619)
(-0.246645 3.76258e-10 -0.00668661)
(-0.244774 3.90012e-10 -0.00725764)
(-0.242753 4.03869e-10 -0.00780886)
(-0.240588 4.17727e-10 -0.00833989)
(-0.238282 4.32207e-10 -0.00885042)
(-0.235843 4.4648e-10 -0.00934016)
(-0.233274 4.60547e-10 -0.0098089)
(-0.230582 4.75028e-10 -0.0102565)
(-0.227771 4.89924e-10 -0.0106827)
(-0.224848 5.05648e-10 -0.0110876)
(-0.221818 5.21373e-10 -0.011471)
(-0.218686 5.3834e-10 -0.0118331)
(-0.215458 5.55515e-10 -0.0121738)
(-0.212139 5.7414e-10 -0.0124932)
(-0.208736 5.94834e-10 -0.0127915)
(-0.205252 6.16357e-10 -0.0130689)
(-0.201695 6.38916e-10 -0.0133255)
(-0.198068 6.63339e-10 -0.0135616)
(-0.194379 6.89625e-10 -0.0137775)
(-0.19063 7.16326e-10 -0.0139735)
(-0.186829 7.4572e-10 -0.0141499)
(-0.18298 7.75942e-10 -0.014307)
(-0.179087 8.07409e-10 -0.0144454)
(-0.175157 8.40947e-10 -0.0145653)
(-0.171193 8.74694e-10 -0.0146673)
(-0.1672 9.10513e-10 -0.0147517)
(-0.163183 9.47163e-10 -0.0148191)
(-0.159147 9.85057e-10 -0.01487)
(-0.155095 1.02378e-09 -0.0149048)
(-0.151033 1.06375e-09 -0.014924)
(-0.146963 1.10455e-09 -0.0149282)
(-0.14289 1.14557e-09 -0.014918)
(-0.138818 1.18762e-09 -0.0148938)
(-0.13475 1.23154e-09 -0.0148562)
(-0.130691 1.27567e-09 -0.0148057)
(-0.126643 1.3198e-09 -0.0147429)
(-0.12261 1.36518e-09 -0.0146684)
(-0.118594 1.40995e-09 -0.0145826)
(-0.1146 1.45616e-09 -0.0144861)
(-0.11063 1.5026e-09 -0.0143794)
(-0.106686 1.54862e-09 -0.014263)
(-0.102771 1.59527e-09 -0.0141375)
(-0.0988884 1.64151e-09 -0.0140033)
(-0.0950399 1.68797e-09 -0.0138608)
(-0.091228 1.73505e-09 -0.0137106)
(-0.0874547 1.78069e-09 -0.0135531)
(-0.0837222 1.82799e-09 -0.0133887)
(-0.0800325 1.87323e-09 -0.0132178)
(-0.0763873 1.91827e-09 -0.0130407)
(-0.0727886 1.96373e-09 -0.0128578)
(-0.069238 2.00837e-09 -0.0126694)
(-0.0657372 2.05157e-09 -0.0124759)
(-0.0622876 2.09478e-09 -0.0122774)
(-0.0588908 2.13613e-09 -0.0120742)
(-0.0555483 2.17831e-09 -0.0118666)
(-0.0522613 2.21781e-09 -0.0116546)
(-0.0490313 2.25732e-09 -0.0114384)
(-0.0458596 2.29621e-09 -0.0112182)
(-0.0427474 2.33304e-09 -0.0109939)
(-0.039696 2.36926e-09 -0.0107658)
(-0.0367066 2.40486e-09 -0.0105337)
(-0.0337805 2.43778e-09 -0.0102977)
(-0.030919 2.47049e-09 -0.0100576)
(-0.0281232 2.50197e-09 -0.00981359)
(-0.0253945 2.5318e-09 -0.0095654)
(-0.0227342 2.55957e-09 -0.00931295)
(-0.0201435 2.58713e-09 -0.00905611)
(-0.0176239 2.61222e-09 -0.00879473)
(-0.0151766 2.6371e-09 -0.00852863)
(-0.0128032 2.6595e-09 -0.00825765)
(-0.010505 2.68149e-09 -0.00798158)
(-0.00828354 2.70121e-09 -0.00770025)
(-0.0061404 2.71886e-09 -0.00741348)
(-0.00407713 2.73589e-09 -0.00712111)
(-0.00209536 2.75148e-09 -0.00682298)
(-0.000196669 2.76313e-09 -0.00651903)
(0.00161715 2.77043e-09 -0.00620901)
(0.00334422 2.77732e-09 -0.00589263)
(0.00498293 2.78151e-09 -0.00556978)
(0.0065316 2.783e-09 -0.00524047)
(0.00798854 2.78429e-09 -0.00490475)
(0.00935204 2.78349e-09 -0.00456273)
(0.0106204 2.77897e-09 -0.00421454)
(0.0117921 2.77153e-09 -0.00386039)
(0.0128655 2.76264e-09 -0.00350057)
(0.0138391 2.75166e-09 -0.0031354)
(0.0147116 2.73653e-09 -0.00276534)
(0.0154819 2.71911e-09 -0.00239092)
(0.0161487 2.6994e-09 -0.00201278)
(0.0167114 2.6751e-09 -0.00163165)
(0.0171691 2.64872e-09 -0.00124839)
(0.0175216 2.61734e-09 -0.000863987)
(0.0177686 2.58512e-09 -0.000479538)
(0.0179104 2.55247e-09 -9.62628e-05)
(0.0179473 2.51897e-09 0.000284497)
(0.0178805 2.48504e-09 0.000661253)
(0.017711 2.4486e-09 0.00103235)
(0.0174407 2.41214e-09 0.00139598)
(0.0170719 2.37317e-09 0.00175019)
(0.0166071 2.33294e-09 0.00209283)
(0.0160499 2.28727e-09 0.00242162)
(0.0154039 2.24117e-09 0.00273408)
(0.0146739 2.19171e-09 0.00302756)
(0.013865 2.13807e-09 0.00329921)
(0.0129831 2.07858e-09 0.00354598)
(0.0120348 2.02032e-09 0.00376461)
(0.0110277 1.9612e-09 0.0039516)
(0.00997 1.90498e-09 0.0041032)
(0.00887078 1.85832e-09 0.00421538)
(0.00774001 1.82417e-09 0.00428379)
(0.00658846 1.80752e-09 0.00430382)
(0.00542786 1.80882e-09 0.00427053)
(0.00427077 1.82473e-09 0.00417865)
(0.00313065 1.85569e-09 0.00402253)
(0.00202167 1.89212e-09 0.00379625)
(0.000958792 1.93154e-09 0.00349357)
(-4.25737e-05 1.97437e-09 0.00310823)
(-0.00096658 2.0269e-09 0.00263414)
(-0.0017974 2.10965e-09 0.00206596)
(-0.00251967 2.2398e-09 0.0013999)
(-0.00311873 2.40744e-09 0.000635336)
(-0.00358106 2.56551e-09 -0.000222894)
(-0.00389359 2.62601e-09 -0.00116041)
(-0.00404331 2.46345e-09 -0.00214799)
(-0.00401301 1.85853e-09 -0.00313284)
(-0.00377055 5.49624e-10 -0.00402572)
(-0.00324962 -1.52424e-09 -0.00468202)
(-0.00239364 2.02134e-09 -0.00483555)
(-0.000943099 -1.25865e-07 -0.00357238)
(0.000735069 1.22608e-08 -0.0220867)
(0.000685732 -1.54342e-08 -0.0139512)
(-0.00117562 5.7249e-09 -0.00617596)
(-0.00375125 2.66684e-09 0.000631204)
(-0.00692226 8.74894e-10 0.00663696)
(-0.0105342 -7.3115e-10 0.0118701)
(-0.0145463 -1.84775e-09 0.0163638)
(-0.0189311 -2.34267e-09 0.0201694)
(-0.0236662 -2.80769e-09 0.0233531)
(-0.028726 -3.31718e-09 0.025987)
(-0.0340807 -3.59047e-09 0.028142)
(-0.0396979 -3.58974e-09 0.0298842)
(-0.0455441 -3.48361e-09 0.0312727)
(-0.0515852 -3.3738e-09 0.0323597)
(-0.0577881 -3.26467e-09 0.0331894)
(-0.0641214 -3.13982e-09 0.0337996)
(-0.0705558 -3.00362e-09 0.0342219)
(-0.0770643 -2.87432e-09 0.0344827)
(-0.083622 -2.75792e-09 0.034604)
(-0.0902063 -2.65026e-09 0.0346044)
(-0.0967967 -2.54182e-09 0.0344993)
(-0.103374 -2.42916e-09 0.0343015)
(-0.109922 -2.31011e-09 0.034022)
(-0.116425 -2.18851e-09 0.0336698)
(-0.122869 -2.06507e-09 0.0332525)
(-0.12924 -1.94177e-09 0.0327767)
(-0.135527 -1.81716e-09 0.032248)
(-0.141718 -1.69029e-09 0.0316711)
(-0.147805 -1.56117e-09 0.0310501)
(-0.153777 -1.43063e-09 0.0303885)
(-0.159625 -1.30176e-09 0.0296896)
(-0.165343 -1.17727e-09 0.028956)
(-0.170921 -1.06108e-09 0.0281903)
(-0.176354 -9.55876e-10 0.0273948)
(-0.181635 -8.6342e-10 0.0265715)
(-0.186757 -7.83084e-10 0.0257225)
(-0.191716 -7.15281e-10 0.0248495)
(-0.196505 -6.56799e-10 0.0239543)
(-0.201121 -6.06913e-10 0.0230387)
(-0.205558 -5.63343e-10 0.0221042)
(-0.209812 -5.25054e-10 0.0211525)
(-0.21388 -4.9039e-10 0.0201852)
(-0.217759 -4.5904e-10 0.0192038)
(-0.221444 -4.30588e-10 0.0182101)
(-0.224934 -4.04414e-10 0.0172054)
(-0.228225 -3.80001e-10 0.0161914)
(-0.231316 -3.56003e-10 0.0151698)
(-0.234206 -3.32937e-10 0.0141419)
(-0.236891 -3.08942e-10 0.0131095)
(-0.239373 -2.84121e-10 0.0120741)
(-0.241648 -2.5775e-10 0.0110372)
(-0.243718 -2.3107e-10 0.0100004)
(-0.245582 -2.04701e-10 0.00896526)
(-0.247239 -1.79678e-10 0.00793329)
(-0.248692 -1.56206e-10 0.006906)
(-0.249939 -1.36252e-10 0.00588486)
(-0.250983 -1.18366e-10 0.00487133)
(-0.251825 -1.04099e-10 0.00386682)
(-0.252466 -9.15906e-11 0.00287273)
(-0.252908 -8.11498e-11 0.00189038)
(-0.253153 -7.15363e-11 0.000921079)
(-0.253205 -6.18193e-11 -3.3939e-05)
(-0.253065 -5.10684e-11 -0.000973463)
(-0.252737 -3.91804e-11 -0.00189633)
(-0.252224 -2.61554e-11 -0.00280143)
(-0.251529 -1.2717e-11 -0.00368771)
(-0.250656 6.17948e-13 -0.0045542)
(-0.249609 1.57102e-11 -0.00539995)
(-0.248392 3.08023e-11 -0.00622409)
(-0.247009 4.55843e-11 -0.00702582)
(-0.245464 6.04696e-11 -0.00780437)
(-0.243763 7.54583e-11 -0.00855907)
(-0.241909 9.03437e-11 -0.00928931)
(-0.239908 1.05022e-10 -0.00999454)
(-0.237764 1.20218e-10 -0.0106743)
(-0.235483 1.35207e-10 -0.0113281)
(-0.233069 1.50197e-10 -0.0119556)
(-0.230529 1.6529e-10 -0.0125565)
(-0.227866 1.80383e-10 -0.0131307)
(-0.225086 1.962e-10 -0.0136778)
(-0.222195 2.12742e-10 -0.0141979)
(-0.219199 2.29903e-10 -0.0146908)
(-0.216101 2.47479e-10 -0.0151566)
(-0.212909 2.65986e-10 -0.0155953)
(-0.209626 2.8501e-10 -0.016007)
(-0.20626 3.05586e-10 -0.0163919)
(-0.202814 3.27506e-10 -0.0167501)
(-0.199294 3.50254e-10 -0.0170821)
(-0.195705 3.74243e-10 -0.0173879)
(-0.192054 3.99163e-10 -0.0176681)
(-0.188344 4.25222e-10 -0.0179229)
(-0.184581 4.51903e-10 -0.0181527)
(-0.180769 4.79722e-10 -0.0183582)
(-0.176915 5.08576e-10 -0.0185396)
(-0.173021 5.38569e-10 -0.0186975)
(-0.169095 5.69391e-10 -0.0188326)
(-0.165138 6.00939e-10 -0.0189452)
(-0.161158 6.33832e-10 -0.0190361)
(-0.157157 6.67038e-10 -0.0191059)
(-0.15314 7.01281e-10 -0.0191551)
(-0.149111 7.36042e-10 -0.0191844)
(-0.145075 7.71427e-10 -0.0191945)
(-0.141035 8.08159e-10 -0.019186)
(-0.136995 8.44687e-10 -0.0191596)
(-0.132958 8.82045e-10 -0.019116)
(-0.128929 9.20027e-10 -0.0190559)
(-0.12491 9.58633e-10 -0.0189799)
(-0.120905 9.97657e-10 -0.0188887)
(-0.116917 1.03761e-09 -0.018783)
(-0.11295 1.07716e-09 -0.0186635)
(-0.109005 1.11754e-09 -0.0185308)
(-0.105086 1.15782e-09 -0.0183856)
(-0.101195 1.19801e-09 -0.0182284)
(-0.0973359 1.23819e-09 -0.01806)
(-0.0935098 1.2789e-09 -0.0178809)
(-0.0897194 1.32003e-09 -0.0176916)
(-0.0859669 1.36116e-09 -0.0174927)
(-0.0822545 1.40096e-09 -0.0172848)
(-0.0785841 1.44241e-09 -0.0170683)
(-0.0749576 1.48325e-09 -0.0168437)
(-0.071377 1.52327e-09 -0.0166115)
(-0.0678438 1.56288e-09 -0.0163719)
(-0.0643598 1.60249e-09 -0.0161255)
(-0.0609266 1.64128e-09 -0.0158726)
(-0.0575457 1.67988e-09 -0.0156133)
(-0.0542186 1.71765e-09 -0.0153481)
(-0.0509467 1.75584e-09 -0.0150771)
(-0.0477313 1.79197e-09 -0.0148005)
(-0.0445739 1.82852e-09 -0.0145184)
(-0.0414757 1.86363e-09 -0.014231)
(-0.0384381 1.89832e-09 -0.0139383)
(-0.0354623 1.93179e-09 -0.0136403)
(-0.0325495 1.96485e-09 -0.0133371)
(-0.0297011 1.99646e-09 -0.0130285)
(-0.0269183 2.02704e-09 -0.0127146)
(-0.0242025 2.05619e-09 -0.0123952)
(-0.0215548 2.08471e-09 -0.0120701)
(-0.0189766 2.1118e-09 -0.0117392)
(-0.0164693 2.13744e-09 -0.0114024)
(-0.0140343 2.16226e-09 -0.0110594)
(-0.0116728 2.18625e-09 -0.01071)
(-0.00938646 2.20818e-09 -0.0103539)
(-0.00717659 2.22722e-09 -0.00999105)
(-0.00504474 2.24543e-09 -0.00962112)
(-0.00299244 2.2622e-09 -0.00924392)
(-0.00102128 2.27669e-09 -0.00885932)
(0.000867297 2.28787e-09 -0.00846708)
(0.00267133 2.29553e-09 -0.00806694)
(0.00438935 2.30174e-09 -0.0076587)
(0.00601972 2.30567e-09 -0.00724229)
(0.00756087 2.3067e-09 -0.00681768)
(0.00901118 2.30462e-09 -0.00638495)
(0.0103691 2.29902e-09 -0.0059442)
(0.011633 2.29133e-09 -0.00549563)
(0.0128015 2.27992e-09 -0.00503951)
(0.0138731 2.26559e-09 -0.0045762)
(0.0148465 2.24836e-09 -0.00410615)
(0.0157205 2.22697e-09 -0.00362994)
(0.016494 2.20246e-09 -0.00314827)
(0.0171662 2.17379e-09 -0.00266194)
(0.0177362 2.142e-09 -0.00217191)
(0.0182036 2.10563e-09 -0.00167928)
(0.0185681 2.06614e-09 -0.0011853)
(0.0188297 2.02455e-09 -0.000691358)
(0.0189887 1.97963e-09 -0.000199024)
(0.0190457 1.93386e-09 0.000289987)
(0.0190016 1.88704e-09 0.000773776)
(0.0188579 1.83853e-09 0.00125026)
(0.0186164 1.78814e-09 0.00171714)
(0.0182793 1.73482e-09 0.00217196)
(0.0178494 1.67982e-09 0.00261202)
(0.01733 1.62168e-09 0.00303446)
(0.0167248 1.56081e-09 0.00343617)
(0.0160383 1.49535e-09 0.00381384)
(0.0152755 1.42571e-09 0.00416394)
(0.014442 1.35042e-09 0.00448269)
(0.0135443 1.27386e-09 0.00476608)
(0.0125892 1.19603e-09 0.00500983)
(0.0115845 1.11963e-09 0.00520939)
(0.0105386 1.04924e-09 0.00535993)
(0.00946057 9.88005e-10 0.00545631)
(0.00836024 9.36337e-10 0.00549309)
(0.00724804 8.96329e-10 0.00546456)
(0.00613508 8.64658e-10 0.00536468)
(0.00503298 8.36749e-10 0.00518714)
(0.00395387 8.05106e-10 0.00492545)
(0.0029102 7.61399e-10 0.00457299)
(0.00191458 7.07299e-10 0.00412327)
(0.000979582 6.52833e-10 0.00357026)
(0.000117481 6.09291e-10 0.00290895)
(-0.000659937 5.92165e-10 0.00213626)
(-0.00134145 5.76507e-10 0.00125242)
(-0.00191638 5.06917e-10 0.000262737)
(-0.00237367 2.8006e-10 -0.000819307)
(-0.00269955 -2.13948e-10 -0.00196842)
(-0.00287372 -1.20604e-09 -0.00314291)
(-0.00285964 -3.00079e-09 -0.00427818)
(-0.00258718 -5.79602e-09 -0.00527712)
(-0.00200576 -4.21126e-09 -0.0059449)
(-0.000851321 -1.29677e-07 -0.00518506)
(0.000734561 1.22607e-08 -0.0220868)
(0.00068554 -1.54339e-08 -0.0139512)
(-0.00117567 5.72476e-09 -0.00617596)
(-0.00375129 2.66677e-09 0.000631181)
(-0.00692227 8.74873e-10 0.00663693)
(-0.0105342 -7.31134e-10 0.0118701)
(-0.0145463 -1.84771e-09 0.0163638)
(-0.018931 -2.34262e-09 0.0201694)
(-0.0236662 -2.80764e-09 0.0233531)
(-0.0287259 -3.31712e-09 0.025987)
(-0.0340806 -3.59041e-09 0.028142)
(-0.0396978 -3.58968e-09 0.0298841)
(-0.045544 -3.48356e-09 0.0312727)
(-0.051585 -3.37375e-09 0.0323596)
(-0.057788 -3.26462e-09 0.0331894)
(-0.0641213 -3.13978e-09 0.0337996)
(-0.0705557 -3.00358e-09 0.0342219)
(-0.0770642 -2.87428e-09 0.0344826)
(-0.0836218 -2.75788e-09 0.034604)
(-0.0902062 -2.65023e-09 0.0346044)
(-0.0967965 -2.54179e-09 0.0344993)
(-0.103374 -2.42913e-09 0.0343015)
(-0.109922 -2.31008e-09 0.034022)
(-0.116425 -2.18848e-09 0.0336697)
(-0.122868 -2.06505e-09 0.0332525)
(-0.12924 -1.94175e-09 0.0327767)
(-0.135526 -1.81714e-09 0.032248)
(-0.141718 -1.69027e-09 0.0316711)
(-0.147805 -1.56115e-09 0.0310501)
(-0.153776 -1.43061e-09 0.0303885)
(-0.159625 -1.30175e-09 0.0296895)
(-0.165342 -1.17726e-09 0.028956)
(-0.170921 -1.06107e-09 0.0281903)
(-0.176354 -9.55868e-10 0.0273948)
(-0.181635 -8.63412e-10 0.0265715)
(-0.186757 -7.83078e-10 0.0257225)
(-0.191716 -7.15275e-10 0.0248495)
(-0.196505 -6.56794e-10 0.0239543)
(-0.201121 -6.06908e-10 0.0230387)
(-0.205558 -5.63339e-10 0.0221042)
(-0.209812 -5.2505e-10 0.0211525)
(-0.21388 -4.90386e-10 0.0201852)
(-0.217759 -4.59036e-10 0.0192038)
(-0.221444 -4.30585e-10 0.01821)
(-0.224934 -4.04411e-10 0.0172054)
(-0.228225 -3.79998e-10 0.0161914)
(-0.231316 -3.56001e-10 0.0151697)
(-0.234205 -3.32935e-10 0.0141419)
(-0.236891 -3.0894e-10 0.0131095)
(-0.239372 -2.84119e-10 0.0120741)
(-0.241648 -2.57748e-10 0.0110372)
(-0.243718 -2.31068e-10 0.0100004)
(-0.245581 -2.04699e-10 0.00896526)
(-0.247239 -1.79676e-10 0.00793329)
(-0.248691 -1.56205e-10 0.006906)
(-0.249939 -1.36251e-10 0.00588486)
(-0.250983 -1.18365e-10 0.00487132)
(-0.251824 -1.04099e-10 0.00386682)
(-0.252465 -9.159e-11 0.00287273)
(-0.252908 -8.11493e-11 0.00189038)
(-0.253153 -7.15358e-11 0.000921078)
(-0.253205 -6.18189e-11 -3.39397e-05)
(-0.253065 -5.10681e-11 -0.000973464)
(-0.252737 -3.91802e-11 -0.00189633)
(-0.252224 -2.61552e-11 -0.00280143)
(-0.251529 -1.27169e-11 -0.00368771)
(-0.250656 6.17945e-13 -0.0045542)
(-0.249609 1.57101e-11 -0.00539995)
(-0.248392 3.08022e-11 -0.00622409)
(-0.247009 4.55841e-11 -0.00702581)
(-0.245464 6.04693e-11 -0.00780437)
(-0.243763 7.5458e-11 -0.00855907)
(-0.241909 9.03433e-11 -0.00928931)
(-0.239908 1.05022e-10 -0.00999454)
(-0.237764 1.20218e-10 -0.0106743)
(-0.235483 1.35207e-10 -0.0113281)
(-0.233069 1.50196e-10 -0.0119556)
(-0.230528 1.65289e-10 -0.0125565)
(-0.227866 1.80382e-10 -0.0131306)
(-0.225086 1.962e-10 -0.0136778)
(-0.222195 2.12741e-10 -0.0141979)
(-0.219199 2.29903e-10 -0.0146908)
(-0.216101 2.47478e-10 -0.0151566)
(-0.212909 2.65985e-10 -0.0155953)
(-0.209626 2.85009e-10 -0.016007)
(-0.206259 3.05584e-10 -0.0163919)
(-0.202814 3.27504e-10 -0.0167501)
(-0.199294 3.50252e-10 -0.0170821)
(-0.195705 3.74241e-10 -0.0173879)
(-0.192054 3.99162e-10 -0.0176681)
(-0.188344 4.25221e-10 -0.0179229)
(-0.18458 4.51901e-10 -0.0181527)
(-0.180769 4.7972e-10 -0.0183581)
(-0.176914 5.08574e-10 -0.0185396)
(-0.173021 5.38568e-10 -0.0186975)
(-0.169094 5.69389e-10 -0.0188326)
(-0.165138 6.00937e-10 -0.0189452)
(-0.161158 6.3383e-10 -0.0190361)
(-0.157157 6.67036e-10 -0.0191059)
(-0.15314 7.01279e-10 -0.0191551)
(-0.149111 7.3604e-10 -0.0191844)
(-0.145075 7.71425e-10 -0.0191945)
(-0.141035 8.08157e-10 -0.019186)
(-0.136995 8.44685e-10 -0.0191596)
(-0.132958 8.82043e-10 -0.019116)
(-0.128929 9.20025e-10 -0.0190559)
(-0.12491 9.58631e-10 -0.0189799)
(-0.120905 9.97655e-10 -0.0188887)
(-0.116917 1.03761e-09 -0.018783)
(-0.11295 1.07716e-09 -0.0186635)
(-0.109005 1.11754e-09 -0.0185308)
(-0.105086 1.15782e-09 -0.0183856)
(-0.101195 1.198e-09 -0.0182284)
(-0.0973358 1.23819e-09 -0.01806)
(-0.0935097 1.2789e-09 -0.0178809)
(-0.0897193 1.32003e-09 -0.0176916)
(-0.0859668 1.36116e-09 -0.0174927)
(-0.0822544 1.40095e-09 -0.0172848)
(-0.078584 1.44241e-09 -0.0170683)
(-0.0749576 1.48325e-09 -0.0168437)
(-0.0713769 1.52326e-09 -0.0166115)
(-0.0678437 1.56287e-09 -0.0163719)
(-0.0643597 1.60249e-09 -0.0161255)
(-0.0609265 1.64128e-09 -0.0158726)
(-0.0575456 1.67988e-09 -0.0156133)
(-0.0542185 1.71765e-09 -0.0153481)
(-0.0509466 1.75584e-09 -0.0150771)
(-0.0477312 1.79197e-09 -0.0148005)
(-0.0445738 1.82852e-09 -0.0145184)
(-0.0414757 1.86362e-09 -0.014231)
(-0.038438 1.89832e-09 -0.0139383)
(-0.0354622 1.93179e-09 -0.0136403)
(-0.0325494 1.96484e-09 -0.0133371)
(-0.029701 1.99646e-09 -0.0130285)
(-0.0269183 2.02704e-09 -0.0127146)
(-0.0242024 2.05619e-09 -0.0123952)
(-0.0215547 2.08471e-09 -0.0120701)
(-0.0189766 2.1118e-09 -0.0117393)
(-0.0164693 2.13744e-09 -0.0114024)
(-0.0140342 2.16226e-09 -0.0110594)
(-0.0116728 2.18625e-09 -0.01071)
(-0.00938637 2.20818e-09 -0.0103539)
(-0.00717651 2.22722e-09 -0.00999107)
(-0.00504466 2.24543e-09 -0.00962113)
(-0.00299236 2.2622e-09 -0.00924394)
(-0.0010212 2.27669e-09 -0.00885934)
(0.00086738 2.28787e-09 -0.0084671)
(0.00267141 2.29553e-09 -0.00806696)
(0.00438943 2.30174e-09 -0.00765872)
(0.00601981 2.30568e-09 -0.00724231)
(0.00756095 2.30671e-09 -0.0068177)
(0.00901126 2.30462e-09 -0.00638497)
(0.0103692 2.29902e-09 -0.00594422)
(0.0116331 2.29134e-09 -0.00549565)
(0.0128016 2.27992e-09 -0.00503953)
(0.0138732 2.26559e-09 -0.00457621)
(0.0148466 2.24836e-09 -0.00410617)
(0.0157206 2.22697e-09 -0.00362996)
(0.0164941 2.20246e-09 -0.00314828)
(0.0171663 2.1738e-09 -0.00266195)
(0.0177363 2.14201e-09 -0.00217192)
(0.0182037 2.10564e-09 -0.00167929)
(0.0185682 2.06614e-09 -0.00118531)
(0.0188298 2.02456e-09 -0.000691367)
(0.0189888 1.97963e-09 -0.000199032)
(0.0190457 1.93386e-09 0.00028998)
(0.0190017 1.88704e-09 0.000773771)
(0.018858 1.83854e-09 0.00125025)
(0.0186165 1.78815e-09 0.00171714)
(0.0182794 1.73483e-09 0.00217195)
(0.0178495 1.67982e-09 0.00261202)
(0.01733 1.62168e-09 0.00303446)
(0.0167249 1.56082e-09 0.00343617)
(0.0160384 1.49535e-09 0.00381385)
(0.0152755 1.42571e-09 0.00416394)
(0.0144421 1.35042e-09 0.0044827)
(0.0135443 1.27386e-09 0.00476609)
(0.0125892 1.19603e-09 0.00500983)
(0.0115845 1.11963e-09 0.0052094)
(0.0105386 1.04924e-09 0.00535994)
(0.0094606 9.88007e-10 0.00545632)
(0.00836027 9.36339e-10 0.00549311)
(0.00724807 8.96331e-10 0.00546457)
(0.0061351 8.6466e-10 0.00536469)
(0.005033 8.3675e-10 0.00518715)
(0.00395389 8.05108e-10 0.00492545)
(0.00291022 7.614e-10 0.00457299)
(0.0019146 7.073e-10 0.00412327)
(0.000979592 6.52834e-10 0.00357026)
(0.000117488 6.09291e-10 0.00290895)
(-0.000659934 5.92166e-10 0.00213624)
(-0.00134145 5.76508e-10 0.00125239)
(-0.00191639 5.06917e-10 0.000262707)
(-0.00237368 2.8006e-10 -0.000819347)
(-0.00269958 -2.13948e-10 -0.00196847)
(-0.00287377 -1.20604e-09 -0.00314298)
(-0.00285973 -3.00078e-09 -0.00427826)
(-0.00258734 -5.79602e-09 -0.0052772)
(-0.00200615 -4.21127e-09 -0.00594499)
(-0.000851993 -1.29677e-07 -0.00518514)
(-0.000655424 -3.12799e-08 -0.0218102)
(-0.00210421 -2.03895e-08 -0.0120491)
(-0.00492977 2.40291e-09 -0.00336854)
(-0.00822769 8.52991e-10 0.00401585)
(-0.0119121 -2.32213e-10 0.010447)
(-0.015888 -1.41513e-09 0.0160424)
(-0.020135 -2.25521e-09 0.0208715)
(-0.0246428 -2.59157e-09 0.024997)
(-0.0294045 -2.97842e-09 0.0284851)
(-0.0344101 -3.44645e-09 0.0314039)
(-0.0396448 -3.68701e-09 0.03382)
(-0.0450898 -3.65543e-09 0.0357961)
(-0.0507233 -3.52102e-09 0.0373896)
(-0.0565216 -3.3932e-09 0.0386517)
(-0.06246 -3.27786e-09 0.039627)
(-0.0685141 -3.15863e-09 0.0403542)
(-0.0746601 -3.03623e-09 0.0408664)
(-0.0808751 -2.9206e-09 0.0411919)
(-0.0871378 -2.81382e-09 0.0413546)
(-0.0934281 -2.70884e-09 0.0413747)
(-0.0997273 -2.59643e-09 0.0412694)
(-0.106018 -2.47329e-09 0.0410532)
(-0.112285 -2.34107e-09 0.0407386)
(-0.118513 -2.20661e-09 0.0403358)
(-0.124688 -2.07321e-09 0.039854)
(-0.130798 -1.9442e-09 0.0393006)
(-0.136831 -1.81718e-09 0.0386823)
(-0.142777 -1.69142e-09 0.0380047)
(-0.148625 -1.56569e-09 0.0372728)
(-0.154366 -1.43958e-09 0.0364908)
(-0.159992 -1.31545e-09 0.0356625)
(-0.165493 -1.19682e-09 0.0347914)
(-0.170864 -1.08659e-09 0.0338805)
(-0.176097 -9.87652e-10 0.0329326)
(-0.181185 -9.02175e-10 0.0319503)
(-0.186122 -8.31087e-10 0.030936)
(-0.190903 -7.72832e-10 0.0298919)
(-0.195521 -7.25857e-10 0.0288203)
(-0.199973 -6.88918e-10 0.0277232)
(-0.204253 -6.58499e-10 0.0266026)
(-0.208358 -6.33459e-10 0.0254607)
(-0.212284 -6.11214e-10 0.0242992)
(-0.216026 -5.90418e-10 0.0231202)
(-0.219582 -5.71175e-10 0.0219256)
(-0.222949 -5.51106e-10 0.0207173)
(-0.226125 -5.30626e-10 0.0194972)
(-0.229107 -5.09527e-10 0.0182673)
(-0.231893 -4.87292e-10 0.0170295)
(-0.234482 -4.63923e-10 0.0157856)
(-0.236873 -4.39314e-10 0.0145377)
(-0.239064 -4.1388e-10 0.0132876)
(-0.241055 -3.8855e-10 0.0120371)
(-0.242846 -3.63843e-10 0.0107882)
(-0.244437 -3.4048e-10 0.00954269)
(-0.245828 -3.19599e-10 0.00830243)
(-0.24702 -3.01819e-10 0.00706921)
(-0.248013 -2.87347e-10 0.00584478)
(-0.248809 -2.75459e-10 0.00463088)
(-0.24941 -2.65741e-10 0.00342918)
(-0.249817 -2.5747e-10 0.00224132)
(-0.250032 -2.49509e-10 0.00106887)
(-0.250057 -2.41032e-10 -8.6651e-05)
(-0.249896 -2.31625e-10 -0.00122377)
(-0.249551 -2.20772e-10 -0.00234105)
(-0.249025 -2.0899e-10 -0.00343716)
(-0.248321 -1.96484e-10 -0.00451082)
(-0.247442 -1.83669e-10 -0.0055608)
(-0.246394 -1.70441e-10 -0.00658598)
(-0.245178 -1.57523e-10 -0.00758528)
(-0.2438 -1.44089e-10 -0.00855772)
(-0.242264 -1.31378e-10 -0.00950239)
(-0.240573 -1.18977e-10 -0.0104184)
(-0.238733 -1.0637e-10 -0.0113051)
(-0.236749 -9.41762e-11 -0.0121617)
(-0.234624 -8.20858e-11 -0.0129877)
(-0.232364 -7.0202e-11 -0.0137825)
(-0.229974 -5.80084e-11 -0.0145457)
(-0.227459 -4.56081e-11 -0.0152769)
(-0.224823 -3.30011e-11 -0.0159759)
(-0.222073 -1.92577e-11 -0.0166423)
(-0.219213 -5.51411e-12 -0.0172761)
(-0.216248 9.15936e-12 -0.0178772)
(-0.213184 2.45562e-11 -0.0184455)
(-0.210026 4.06764e-11 -0.0189811)
(-0.206779 5.80366e-11 -0.0194842)
(-0.203448 7.57071e-11 -0.0199549)
(-0.200039 9.50309e-11 -0.0203934)
(-0.196557 1.14872e-10 -0.0208001)
(-0.193007 1.35746e-10 -0.0211753)
(-0.189394 1.57035e-10 -0.0215194)
(-0.185723 1.79254e-10 -0.0218328)
(-0.181999 2.0261e-10 -0.0221161)
(-0.178227 2.2638e-10 -0.0223697)
(-0.174412 2.51185e-10 -0.0225943)
(-0.170558 2.76507e-10 -0.0227904)
(-0.166671 3.02657e-10 -0.0229587)
(-0.162754 3.29738e-10 -0.0230999)
(-0.158812 3.57544e-10 -0.0232147)
(-0.15485 3.86281e-10 -0.0233038)
(-0.150872 4.15227e-10 -0.0233679)
(-0.146881 4.45105e-10 -0.0234078)
(-0.142882 4.75191e-10 -0.0234243)
(-0.138879 5.06829e-10 -0.0234182)
(-0.134875 5.38262e-10 -0.0233902)
(-0.130875 5.70732e-10 -0.0233413)
(-0.126881 6.03307e-10 -0.0232722)
(-0.122897 6.36918e-10 -0.0231837)
(-0.118926 6.70326e-10 -0.0230766)
(-0.114972 7.04149e-10 -0.0229518)
(-0.111037 7.38803e-10 -0.02281)
(-0.107125 7.73873e-10 -0.022652)
(-0.103237 8.0936e-10 -0.0224786)
(-0.0993779 8.44747e-10 -0.0222906)
(-0.0955488 8.80448e-10 -0.0220886)
(-0.0917525 9.16359e-10 -0.0218735)
(-0.0879913 9.52068e-10 -0.0216458)
(-0.0842675 9.88711e-10 -0.0214062)
(-0.0805832 1.02515e-09 -0.0211554)
(-0.0769404 1.06149e-09 -0.0208939)
(-0.073341 1.09805e-09 -0.0206224)
(-0.0697869 1.1345e-09 -0.0203413)
(-0.0662799 1.17096e-09 -0.0200511)
(-0.0628216 1.20732e-09 -0.0197524)
(-0.0594136 1.24296e-09 -0.0194453)
(-0.0560577 1.27913e-09 -0.0191305)
(-0.0527551 1.31457e-09 -0.018808)
(-0.0495074 1.34982e-09 -0.0184783)
(-0.046316 1.38403e-09 -0.0181416)
(-0.0431822 1.41877e-09 -0.0177979)
(-0.0401075 1.45238e-09 -0.0174476)
(-0.037093 1.48557e-09 -0.0170906)
(-0.0341401 1.51836e-09 -0.0167269)
(-0.0312501 1.55085e-09 -0.0163567)
(-0.0284243 1.58138e-09 -0.0159798)
(-0.0256639 1.61191e-09 -0.0155961)
(-0.0229702 1.64069e-09 -0.0152056)
(-0.0203445 1.66895e-09 -0.0148081)
(-0.0177882 1.69588e-09 -0.0144034)
(-0.0153024 1.72229e-09 -0.0139913)
(-0.0128887 1.74706e-09 -0.0135716)
(-0.0105483 1.77069e-09 -0.013144)
(-0.00828265 1.79174e-09 -0.0127083)
(-0.00609318 1.81176e-09 -0.0122642)
(-0.00398133 1.83033e-09 -0.0118115)
(-0.00194858 1.84705e-09 -0.0113499)
(3.60804e-06 1.86046e-09 -0.0108793)
(0.00187363 1.87159e-09 -0.0103994)
(0.00365991 1.87858e-09 -0.00990981)
(0.00536098 1.88392e-09 -0.00941054)
(0.00697529 1.88801e-09 -0.00890147)
(0.00850137 1.88755e-09 -0.00838258)
(0.00993772 1.88294e-09 -0.00785396)
(0.0112829 1.87605e-09 -0.00731575)
(0.0125354 1.86523e-09 -0.0067682)
(0.013694 1.8517e-09 -0.00621165)
(0.0147574 1.83403e-09 -0.00564654)
(0.0157243 1.81303e-09 -0.00507346)
(0.0165938 1.78767e-09 -0.00449311)
(0.0173649 1.75878e-09 -0.00390634)
(0.0180368 1.72532e-09 -0.00331414)
(0.0186089 1.68791e-09 -0.00271769)
(0.019081 1.64654e-09 -0.0021183)
(0.0194527 1.60163e-09 -0.0015175)
(0.0197244 1.55381e-09 -0.000916981)
(0.0198963 1.50327e-09 -0.000318622)
(0.0199693 1.45147e-09 0.000275496)
(0.0199443 1.39716e-09 0.000863083)
(0.0198229 1.34159e-09 0.00144163)
(0.0196069 1.28393e-09 0.00200841)
(0.0192985 1.22541e-09 0.00256046)
(0.0189006 1.16314e-09 0.00309458)
(0.0184164 1.09876e-09 0.00360737)
(0.0178495 1.03042e-09 0.00409514)
(0.0172044 9.57489e-10 0.00455398)
(0.0164856 8.79543e-10 0.00497975)
(0.0156988 7.96167e-10 0.00536802)
(0.0148498 7.10271e-10 0.00571412)
(0.0139452 6.22687e-10 0.00601311)
(0.0129921 5.34455e-10 0.00625977)
(0.0119983 4.49737e-10 0.0064486)
(0.010972 3.72698e-10 0.00657383)
(0.0099221 3.02719e-10 0.00662942)
(0.00885788 2.396e-10 0.00660906)
(0.00778906 1.80849e-10 0.00650623)
(0.00672571 1.18144e-10 0.00631424)
(0.00567813 4.27429e-11 0.00602631)
(0.00465673 -4.97256e-11 0.00563574)
(0.00367184 -1.628e-10 0.0051361)
(0.00273358 -2.86888e-10 0.00452169)
(0.00185168 -4.0592e-10 0.00378796)
(0.00103541 -5.11507e-10 0.00293237)
(0.000293705 -6.30666e-10 0.00195542)
(-0.000364415 -8.4e-10 0.000862043)
(-0.000928755 -1.24481e-09 -0.000336343)
(-0.0013856 -1.95522e-09 -0.00161991)
(-0.0017142 -3.19587e-09 -0.00295839)
(-0.00188014 -5.33719e-09 -0.00430874)
(-0.00182071 -8.73338e-09 -0.00561036)
(-0.00149776 -8.90256e-09 -0.00672445)
(-0.000679639 -1.31973e-07 -0.00647912)
(-0.000655866 -3.12796e-08 -0.0218101)
(-0.00210436 -2.0389e-08 -0.012049)
(-0.00492981 2.40285e-09 -0.00336852)
(-0.00822772 8.52971e-10 0.00401583)
(-0.0119121 -2.32208e-10 0.010447)
(-0.0158879 -1.4151e-09 0.0160424)
(-0.020135 -2.25517e-09 0.0208714)
(-0.0246427 -2.59152e-09 0.0249969)
(-0.0294045 -2.97837e-09 0.0284851)
(-0.03441 -3.44639e-09 0.0314038)
(-0.0396447 -3.68695e-09 0.0338199)
(-0.0450897 -3.65537e-09 0.0357961)
(-0.0507232 -3.52097e-09 0.0373896)
(-0.0565215 -3.39315e-09 0.0386516)
(-0.0624599 -3.27781e-09 0.0396269)
(-0.068514 -3.15858e-09 0.0403541)
(-0.07466 -3.03619e-09 0.0408664)
(-0.080875 -2.92056e-09 0.0411919)
(-0.0871377 -2.81379e-09 0.0413545)
(-0.093428 -2.7088e-09 0.0413746)
(-0.0997272 -2.5964e-09 0.0412693)
(-0.106018 -2.47326e-09 0.0410532)
(-0.112285 -2.34104e-09 0.0407385)
(-0.118513 -2.20658e-09 0.0403358)
(-0.124688 -2.07319e-09 0.0398539)
(-0.130798 -1.94418e-09 0.0393006)
(-0.136831 -1.81716e-09 0.0386823)
(-0.142777 -1.69141e-09 0.0380047)
(-0.148625 -1.56568e-09 0.0372728)
(-0.154366 -1.43956e-09 0.0364908)
(-0.159991 -1.31543e-09 0.0356625)
(-0.165493 -1.19681e-09 0.0347914)
(-0.170864 -1.08658e-09 0.0338805)
(-0.176097 -9.87643e-10 0.0329326)
(-0.181185 -9.02167e-10 0.0319503)
(-0.186122 -8.3108e-10 0.030936)
(-0.190902 -7.72826e-10 0.0298919)
(-0.195521 -7.25851e-10 0.0288203)
(-0.199973 -6.88913e-10 0.0277232)
(-0.204253 -6.58494e-10 0.0266026)
(-0.208358 -6.33454e-10 0.0254606)
(-0.212283 -6.11209e-10 0.0242992)
(-0.216026 -5.90414e-10 0.0231202)
(-0.219582 -5.71171e-10 0.0219255)
(-0.222949 -5.51102e-10 0.0207172)
(-0.226125 -5.30622e-10 0.0194972)
(-0.229107 -5.09524e-10 0.0182673)
(-0.231893 -4.87289e-10 0.0170295)
(-0.234482 -4.63919e-10 0.0157856)
(-0.236872 -4.39311e-10 0.0145377)
(-0.239064 -4.13877e-10 0.0132875)
(-0.241055 -3.88548e-10 0.0120371)
(-0.242846 -3.63841e-10 0.0107882)
(-0.244437 -3.40478e-10 0.00954269)
(-0.245828 -3.19597e-10 0.00830243)
(-0.247019 -3.01817e-10 0.00706921)
(-0.248013 -2.87345e-10 0.00584478)
(-0.248809 -2.75457e-10 0.00463088)
(-0.24941 -2.65739e-10 0.00342918)
(-0.249817 -2.57469e-10 0.00224132)
(-0.250032 -2.49508e-10 0.00106887)
(-0.250057 -2.41031e-10 -8.66489e-05)
(-0.249896 -2.31624e-10 -0.00122376)
(-0.249551 -2.20771e-10 -0.00234105)
(-0.249024 -2.08989e-10 -0.00343716)
(-0.24832 -1.96483e-10 -0.00451081)
(-0.247442 -1.83668e-10 -0.0055608)
(-0.246393 -1.7044e-10 -0.00658598)
(-0.245178 -1.57522e-10 -0.00758528)
(-0.2438 -1.44088e-10 -0.00855772)
(-0.242264 -1.31377e-10 -0.00950238)
(-0.240573 -1.18977e-10 -0.0104184)
(-0.238733 -1.0637e-10 -0.0113051)
(-0.236749 -9.41758e-11 -0.0121617)
(-0.234624 -8.20854e-11 -0.0129877)
(-0.232364 -7.02017e-11 -0.0137825)
(-0.229974 -5.80081e-11 -0.0145457)
(-0.227459 -4.56079e-11 -0.0152769)
(-0.224823 -3.3001e-11 -0.0159759)
(-0.222073 -1.92576e-11 -0.0166423)
(-0.219212 -5.51409e-12 -0.0172761)
(-0.216248 9.15932e-12 -0.0178772)
(-0.213184 2.45561e-11 -0.0184455)
(-0.210025 4.06762e-11 -0.0189811)
(-0.206779 5.80364e-11 -0.0194842)
(-0.203448 7.57068e-11 -0.0199549)
(-0.200039 9.50306e-11 -0.0203934)
(-0.196557 1.14871e-10 -0.0208001)
(-0.193007 1.35746e-10 -0.0211753)
(-0.189394 1.57034e-10 -0.0215194)
(-0.185723 1.79253e-10 -0.0218328)
(-0.181999 2.02609e-10 -0.0221161)
(-0.178227 2.2638e-10 -0.0223697)
(-0.174412 2.51184e-10 -0.0225943)
(-0.170558 2.76506e-10 -0.0227904)
(-0.166671 3.02656e-10 -0.0229587)
(-0.162754 3.29737e-10 -0.0230999)
(-0.158812 3.57543e-10 -0.0232147)
(-0.15485 3.8628e-10 -0.0233037)
(-0.150872 4.15226e-10 -0.0233678)
(-0.146881 4.45104e-10 -0.0234078)
(-0.142882 4.7519e-10 -0.0234243)
(-0.138879 5.06828e-10 -0.0234181)
(-0.134875 5.38261e-10 -0.0233902)
(-0.130875 5.70731e-10 -0.0233413)
(-0.126881 6.03306e-10 -0.0232722)
(-0.122897 6.36917e-10 -0.0231837)
(-0.118926 6.70324e-10 -0.0230766)
(-0.114972 7.04148e-10 -0.0229518)
(-0.111037 7.38801e-10 -0.02281)
(-0.107125 7.73872e-10 -0.022652)
(-0.103237 8.09358e-10 -0.0224786)
(-0.0993778 8.44746e-10 -0.0222906)
(-0.0955487 8.80447e-10 -0.0220886)
(-0.0917524 9.16358e-10 -0.0218735)
(-0.0879913 9.52067e-10 -0.0216458)
(-0.0842675 9.8871e-10 -0.0214062)
(-0.0805831 1.02515e-09 -0.0211554)
(-0.0769403 1.06149e-09 -0.0208939)
(-0.0733409 1.09805e-09 -0.0206224)
(-0.0697868 1.1345e-09 -0.0203413)
(-0.0662798 1.17096e-09 -0.0200511)
(-0.0628215 1.20732e-09 -0.0197524)
(-0.0594136 1.24296e-09 -0.0194453)
(-0.0560576 1.27913e-09 -0.0191305)
(-0.052755 1.31457e-09 -0.018808)
(-0.0495073 1.34982e-09 -0.0184783)
(-0.0463159 1.38403e-09 -0.0181416)
(-0.0431822 1.41877e-09 -0.017798)
(-0.0401074 1.45238e-09 -0.0174476)
(-0.0370929 1.48557e-09 -0.0170906)
(-0.0341401 1.51836e-09 -0.0167269)
(-0.0312501 1.55085e-09 -0.0163567)
(-0.0284242 1.58138e-09 -0.0159798)
(-0.0256638 1.61191e-09 -0.0155961)
(-0.0229701 1.64069e-09 -0.0152056)
(-0.0203445 1.66895e-09 -0.0148081)
(-0.0177881 1.69588e-09 -0.0144034)
(-0.0153024 1.72229e-09 -0.0139913)
(-0.0128886 1.74706e-09 -0.0135716)
(-0.0105482 1.77069e-09 -0.013144)
(-0.00828258 1.79174e-09 -0.0127083)
(-0.00609311 1.81176e-09 -0.0122642)
(-0.00398126 1.83033e-09 -0.0118115)
(-0.00194852 1.84705e-09 -0.0113499)
(3.672e-06 1.86046e-09 -0.0108793)
(0.0018737 1.87159e-09 -0.0103994)
(0.00365998 1.87858e-09 -0.00990983)
(0.00536104 1.88392e-09 -0.00941056)
(0.00697536 1.88802e-09 -0.00890148)
(0.00850143 1.88755e-09 -0.0083826)
(0.00993778 1.88294e-09 -0.00785397)
(0.0112829 1.87606e-09 -0.00731577)
(0.0125355 1.86523e-09 -0.00676821)
(0.0136941 1.8517e-09 -0.00621166)
(0.0147575 1.83403e-09 -0.00564656)
(0.0157244 1.81303e-09 -0.00507348)
(0.0165939 1.78767e-09 -0.00449312)
(0.0173649 1.75878e-09 -0.00390635)
(0.0180368 1.72532e-09 -0.00331415)
(0.018609 1.68791e-09 -0.00271769)
(0.019081 1.64654e-09 -0.00211831)
(0.0194528 1.60164e-09 -0.00151751)
(0.0197244 1.55381e-09 -0.000916984)
(0.0198964 1.50327e-09 -0.000318624)
(0.0199693 1.45147e-09 0.000275495)
(0.0199443 1.39717e-09 0.000863084)
(0.0198229 1.34159e-09 0.00144163)
(0.0196069 1.28393e-09 0.00200841)
(0.0192986 1.22541e-09 0.00256046)
(0.0189007 1.16314e-09 0.00309459)
(0.0184164 1.09877e-09 0.00360737)
(0.0178496 1.03043e-09 0.00409515)
(0.0172044 9.57491e-10 0.004554)
(0.0164857 8.79544e-10 0.00497976)
(0.0156988 7.96168e-10 0.00536804)
(0.0148498 7.10273e-10 0.00571414)
(0.0139452 6.22688e-10 0.00601313)
(0.0129921 5.34456e-10 0.00625979)
(0.0119983 4.49738e-10 0.00644862)
(0.010972 3.72698e-10 0.00657385)
(0.00992212 3.0272e-10 0.00662943)
(0.00885789 2.396e-10 0.00660908)
(0.00778907 1.80849e-10 0.00650625)
(0.00672572 1.18144e-10 0.00631426)
(0.00567814 4.2743e-11 0.00602633)
(0.00465674 -4.97257e-11 0.00563575)
(0.00367185 -1.628e-10 0.00513611)
(0.00273358 -2.86888e-10 0.00452169)
(0.00185168 -4.0592e-10 0.00378796)
(0.0010354 -5.11507e-10 0.00293237)
(0.000293699 -6.30666e-10 0.00195541)
(-0.000364426 -8.4e-10 0.000862024)
(-0.000928775 -1.24481e-09 -0.000336371)
(-0.00138564 -1.95522e-09 -0.00161995)
(-0.00171425 -3.19586e-09 -0.00295844)
(-0.00188022 -5.33718e-09 -0.00430879)
(-0.00182085 -8.73337e-09 -0.00561043)
(-0.00149811 -8.90258e-09 -0.00672452)
(-0.000680268 -1.31973e-07 -0.00647918)
(-0.00173873 -6.61376e-08 -0.0196846)
(-0.00432499 -2.34205e-08 -0.00890847)
(-0.00799085 2.35838e-10 0.000287166)
(-0.0119298 -2.84154e-10 0.00800755)
(-0.0160794 -8.91859e-10 0.014695)
(-0.0203923 -1.78141e-09 0.0205177)
(-0.0248684 -2.41827e-09 0.0255671)
(-0.0295116 -2.63418e-09 0.0299126)
(-0.0343274 -2.96692e-09 0.0336195)
(-0.039317 -3.40816e-09 0.036751)
(-0.0444771 -3.62988e-09 0.039369)
(-0.0497992 -3.58233e-09 0.0415318)
(-0.0552711 -3.43482e-09 0.0432932)
(-0.0608773 -3.3032e-09 0.0447024)
(-0.0666005 -3.19544e-09 0.0458028)
(-0.0724225 -3.09259e-09 0.0466328)
(-0.0783243 -2.98945e-09 0.0472259)
(-0.0842874 -2.89112e-09 0.047611)
(-0.0902935 -2.7956e-09 0.0478129)
(-0.0963254 -2.69298e-09 0.0478532)
(-0.102366 -2.57454e-09 0.04775)
(-0.108401 -2.43969e-09 0.0475193)
(-0.114414 -2.294e-09 0.0471743)
(-0.120392 -2.14762e-09 0.0467268)
(-0.126322 -2.00738e-09 0.0461866)
(-0.132193 -1.87606e-09 0.0455623)
(-0.137992 -1.75336e-09 0.0448614)
(-0.143709 -1.63606e-09 0.0440904)
(-0.149336 -1.52127e-09 0.0432548)
(-0.154861 -1.4069e-09 0.0423598)
(-0.160277 -1.29421e-09 0.0414096)
(-0.165576 -1.18496e-09 0.0404084)
(-0.170751 -1.08316e-09 0.0393597)
(-0.175793 -9.91713e-10 0.0382668)
(-0.180698 -9.13308e-10 0.0371328)
(-0.185457 -8.48559e-10 0.0359605)
(-0.190067 -7.9767e-10 0.0347526)
(-0.194521 -7.58674e-10 0.0335117)
(-0.198815 -7.29295e-10 0.0322403)
(-0.202944 -7.07258e-10 0.0309408)
(-0.206903 -6.90081e-10 0.0296155)
(-0.210689 -6.74972e-10 0.0282669)
(-0.214299 -6.60279e-10 0.0268971)
(-0.217728 -6.44347e-10 0.0255085)
(-0.220975 -6.26763e-10 0.0241033)
(-0.224035 -6.07527e-10 0.0226838)
(-0.226908 -5.85813e-10 0.0212523)
(-0.229592 -5.62448e-10 0.019811)
(-0.232084 -5.38362e-10 0.0183621)
(-0.234383 -5.13347e-10 0.016908)
(-0.236488 -4.88024e-10 0.0154508)
(-0.2384 -4.6322e-10 0.0139928)
(-0.240116 -4.3914e-10 0.0125361)
(-0.241638 -4.16714e-10 0.011083)
(-0.242965 -3.96872e-10 0.00963556)
(-0.244098 -3.80234e-10 0.00819589)
(-0.245038 -3.65661e-10 0.00676607)
(-0.245785 -3.54189e-10 0.00534814)
(-0.246342 -3.44782e-10 0.00394407)
(-0.24671 -3.37029e-10 0.00255577)
(-0.24689 -3.29379e-10 0.0011851)
(-0.246886 -3.21109e-10 -0.00016615)
(-0.246699 -3.12014e-10 -0.00149624)
(-0.246332 -3.01577e-10 -0.0028035)
(-0.245788 -2.90107e-10 -0.00408633)
(-0.245071 -2.78328e-10 -0.00534322)
(-0.244183 -2.66239e-10 -0.00657275)
(-0.243127 -2.53738e-10 -0.00777358)
(-0.241909 -2.41754e-10 -0.00894444)
(-0.240532 -2.29873e-10 -0.0100842)
(-0.238999 -2.19025e-10 -0.0111917)
(-0.237315 -2.08074e-10 -0.012266)
(-0.235484 -1.97846e-10 -0.0133061)
(-0.233512 -1.87825e-10 -0.0143114)
(-0.231402 -1.77908e-10 -0.0152811)
(-0.229159 -1.6799e-10 -0.0162144)
(-0.226788 -1.57866e-10 -0.017111)
(-0.224293 -1.4733e-10 -0.0179704)
(-0.221681 -1.36999e-10 -0.0187922)
(-0.218956 -1.25946e-10 -0.0195761)
(-0.216122 -1.13654e-10 -0.0203219)
(-0.213186 -1.00743e-10 -0.0210296)
(-0.210151 -8.73147e-11 -0.0216991)
(-0.207024 -7.26476e-11 -0.0223305)
(-0.203809 -5.78772e-11 -0.0229238)
(-0.200512 -4.19707e-11 -0.0234793)
(-0.197137 -2.49283e-11 -0.0239973)
(-0.19369 -7.78225e-12 -0.024478)
(-0.190176 1.07064e-11 -0.0249219)
(-0.1866 2.91956e-11 -0.0253294)
(-0.182966 4.84079e-11 -0.0257011)
(-0.179279 6.81372e-11 -0.0260374)
(-0.175545 8.86931e-11 -0.026339)
(-0.171768 1.09973e-10 -0.0266066)
(-0.167952 1.31769e-10 -0.0268408)
(-0.164103 1.54496e-10 -0.0270425)
(-0.160225 1.77843e-10 -0.0272123)
(-0.156322 2.02018e-10 -0.027351)
(-0.152398 2.264e-10 -0.0274596)
(-0.148458 2.51713e-10 -0.0275389)
(-0.144505 2.77647e-10 -0.0275897)
(-0.140544 3.03996e-10 -0.027613)
(-0.136579 3.31378e-10 -0.0276097)
(-0.132613 3.5897e-10 -0.0275807)
(-0.128649 3.87285e-10 -0.0275269)
(-0.124692 4.1581e-10 -0.0274493)
(-0.120745 4.44853e-10 -0.0273488)
(-0.11681 4.74827e-10 -0.0272264)
(-0.112892 5.05114e-10 -0.027083)
(-0.108992 5.3561e-10 -0.0269195)
(-0.105115 5.66832e-10 -0.0267368)
(-0.101262 5.98056e-10 -0.0265359)
(-0.0974364 6.3011e-10 -0.0263175)
(-0.0936409 6.62166e-10 -0.0260826)
(-0.0898779 6.94743e-10 -0.0258319)
(-0.0861495 7.27425e-10 -0.0255663)
(-0.0824582 7.60628e-10 -0.0252866)
(-0.0788059 7.93628e-10 -0.0249934)
(-0.0751948 8.27664e-10 -0.0246874)
(-0.0716267 8.61085e-10 -0.0243694)
(-0.0681036 8.94923e-10 -0.0240399)
(-0.0646273 9.28661e-10 -0.0236995)
(-0.0611994 9.62507e-10 -0.0233488)
(-0.0578216 9.96461e-10 -0.0229881)
(-0.0544954 1.03021e-09 -0.0226179)
(-0.0512224 1.06397e-09 -0.0222386)
(-0.0480041 1.09763e-09 -0.0218505)
(-0.0448419 1.13077e-09 -0.0214539)
(-0.0417371 1.16392e-09 -0.0210489)
(-0.0386911 1.19635e-09 -0.0206359)
(-0.0357052 1.2291e-09 -0.0202147)
(-0.0327808 1.26113e-09 -0.0197857)
(-0.0299191 1.29265e-09 -0.0193486)
(-0.0271214 1.32313e-09 -0.0189036)
(-0.024389 1.35342e-09 -0.0184504)
(-0.0217231 1.38257e-09 -0.0179891)
(-0.019125 1.4107e-09 -0.0175193)
(-0.016596 1.43831e-09 -0.017041)
(-0.0141374 1.46479e-09 -0.016554)
(-0.0117506 1.48994e-09 -0.0160578)
(-0.0094368 1.51425e-09 -0.0155524)
(-0.00719742 1.53537e-09 -0.0150374)
(-0.00503383 1.55598e-09 -0.0145125)
(-0.00294742 1.57524e-09 -0.0139775)
(-0.000939613 1.5912e-09 -0.0134321)
(0.000988258 1.60519e-09 -0.0128761)
(0.00283454 1.61671e-09 -0.0123092)
(0.00459791 1.62419e-09 -0.0117311)
(0.00627693 1.63001e-09 -0.0111418)
(0.00787019 1.63284e-09 -0.0105411)
(0.00937628 1.63214e-09 -0.00992911)
(0.0107938 1.62761e-09 -0.0093059)
(0.0121215 1.61925e-09 -0.00867167)
(0.0133581 1.6082e-09 -0.00802671)
(0.0145023 1.59362e-09 -0.00737145)
(0.0155529 1.57479e-09 -0.00670644)
(0.0165091 1.55191e-09 -0.00603235)
(0.0173698 1.52509e-09 -0.00535004)
(0.0181342 1.49381e-09 -0.00466051)
(0.0188018 1.45837e-09 -0.00396494)
(0.0193722 1.4192e-09 -0.00326471)
(0.019845 1.37617e-09 -0.00256137)
(0.0202203 1.32919e-09 -0.00185669)
(0.0204983 1.2793e-09 -0.00115265)
(0.0206797 1.2269e-09 -0.000451456)
(0.0207651 1.17324e-09 0.000244476)
(0.0207558 1.11749e-09 0.000932483)
(0.0206533 1.0609e-09 0.00160966)
(0.0204595 1.00242e-09 0.00227285)
(0.0201767 9.42048e-10 0.00291865)
(0.0198076 8.78548e-10 0.0035434)
(0.0193554 8.13576e-10 0.00414315)
(0.0188238 7.44431e-10 0.00471374)
(0.0182168 6.71528e-10 0.00525071)
(0.017539 5.92164e-10 0.00574934)
(0.0167957 5.08623e-10 0.00620467)
(0.0159922 4.19864e-10 0.00661144)
(0.0151349 3.2838e-10 0.00696415)
(0.0142303 2.3625e-10 0.00725703)
(0.0132855 1.45969e-10 0.00748405)
(0.012308 6.16986e-11 0.00763894)
(0.0113056 -1.67633e-11 0.00771521)
(0.0102867 -9.14911e-11 0.00770618)
(0.00925972 -1.67472e-10 0.00760503)
(0.00823338 -2.51152e-10 0.00740486)
(0.00721642 -3.51891e-10 0.00709884)
(0.00621753 -4.77183e-10 0.00668033)
(0.00524523 -6.27858e-10 0.00614317)
(0.0043077 -7.95163e-10 0.00548199)
(0.00341278 -9.6221e-10 0.00469268)
(0.00256794 -1.12499e-09 0.00377304)
(0.00178051 -1.31778e-09 0.00272357)
(0.00105823 -1.62731e-09 0.00154836)
(0.000410302 -2.1638e-09 0.000256126)
(-0.000150811 -3.03173e-09 -0.0011388)
(-0.000605977 -4.45745e-09 -0.00261575)
(-0.000926217 -6.86811e-09 -0.00414814)
(-0.00105979 -1.07996e-08 -0.00570132)
(-0.000978766 -1.23522e-08 -0.00717938)
(-0.000487005 -1.3212e-07 -0.0074117)
(-0.00173912 -6.61368e-08 -0.0196845)
(-0.00432512 -2.34201e-08 -0.00890839)
(-0.00799087 2.35834e-10 0.000287178)
(-0.0119298 -2.84148e-10 0.00800752)
(-0.0160794 -8.91841e-10 0.0146949)
(-0.0203923 -1.78137e-09 0.0205177)
(-0.0248684 -2.41822e-09 0.025567)
(-0.0295116 -2.63413e-09 0.0299126)
(-0.0343273 -2.96687e-09 0.0336194)
(-0.0393169 -3.40811e-09 0.036751)
(-0.044477 -3.62982e-09 0.039369)
(-0.0497991 -3.58227e-09 0.0415317)
(-0.055271 -3.43477e-09 0.0432932)
(-0.0608772 -3.30315e-09 0.0447023)
(-0.0666004 -3.1954e-09 0.0458027)
(-0.0724224 -3.09255e-09 0.0466328)
(-0.0783242 -2.98942e-09 0.0472259)
(-0.0842872 -2.89108e-09 0.047611)
(-0.0902934 -2.79557e-09 0.0478129)
(-0.0963253 -2.69294e-09 0.0478531)
(-0.102366 -2.57451e-09 0.04775)
(-0.108401 -2.43966e-09 0.0475192)
(-0.114414 -2.29397e-09 0.0471743)
(-0.120392 -2.1476e-09 0.0467267)
(-0.126322 -2.00736e-09 0.0461866)
(-0.132193 -1.87605e-09 0.0455623)
(-0.137992 -1.75334e-09 0.0448614)
(-0.143709 -1.63605e-09 0.0440904)
(-0.149335 -1.52125e-09 0.0432548)
(-0.154861 -1.40689e-09 0.0423597)
(-0.160277 -1.2942e-09 0.0414096)
(-0.165576 -1.18494e-09 0.0404084)
(-0.17075 -1.08315e-09 0.0393597)
(-0.175793 -9.91705e-10 0.0382668)
(-0.180697 -9.13301e-10 0.0371328)
(-0.185457 -8.48552e-10 0.0359605)
(-0.190067 -7.97663e-10 0.0347526)
(-0.194521 -7.58668e-10 0.0335117)
(-0.198815 -7.2929e-10 0.0322403)
(-0.202944 -7.07253e-10 0.0309408)
(-0.206903 -6.90076e-10 0.0296155)
(-0.210689 -6.74967e-10 0.0282669)
(-0.214299 -6.60274e-10 0.0268971)
(-0.217728 -6.44342e-10 0.0255084)
(-0.220974 -6.26759e-10 0.0241033)
(-0.224035 -6.07523e-10 0.0226838)
(-0.226908 -5.8581e-10 0.0212523)
(-0.229592 -5.62445e-10 0.019811)
(-0.232083 -5.38358e-10 0.0183621)
(-0.234383 -5.13344e-10 0.016908)
(-0.236488 -4.88022e-10 0.0154508)
(-0.238399 -4.63217e-10 0.0139928)
(-0.240116 -4.39137e-10 0.0125361)
(-0.241638 -4.16712e-10 0.011083)
(-0.242965 -3.9687e-10 0.00963556)
(-0.244098 -3.80232e-10 0.00819589)
(-0.245037 -3.6566e-10 0.00676607)
(-0.245785 -3.54187e-10 0.00534814)
(-0.246342 -3.4478e-10 0.00394407)
(-0.24671 -3.37027e-10 0.00255577)
(-0.24689 -3.29377e-10 0.0011851)
(-0.246886 -3.21108e-10 -0.000166146)
(-0.246699 -3.12013e-10 -0.00149624)
(-0.246332 -3.01575e-10 -0.00280349)
(-0.245788 -2.90106e-10 -0.00408632)
(-0.245071 -2.78327e-10 -0.00534322)
(-0.244182 -2.66238e-10 -0.00657275)
(-0.243127 -2.53737e-10 -0.00777357)
(-0.241909 -2.41753e-10 -0.00894443)
(-0.240531 -2.29872e-10 -0.0100841)
(-0.238999 -2.19024e-10 -0.0111917)
(-0.237315 -2.08073e-10 -0.0122659)
(-0.235484 -1.97846e-10 -0.0133061)
(-0.233512 -1.87825e-10 -0.0143114)
(-0.231401 -1.77907e-10 -0.0152811)
(-0.229158 -1.6799e-10 -0.0162144)
(-0.226787 -1.57866e-10 -0.017111)
(-0.224293 -1.47329e-10 -0.0179704)
(-0.221681 -1.36999e-10 -0.0187922)
(-0.218956 -1.25946e-10 -0.0195761)
(-0.216122 -1.13654e-10 -0.0203219)
(-0.213186 -1.00742e-10 -0.0210296)
(-0.210151 -8.73144e-11 -0.0216991)
(-0.207024 -7.26474e-11 -0.0223305)
(-0.203809 -5.7877e-11 -0.0229238)
(-0.200512 -4.19706e-11 -0.0234793)
(-0.197137 -2.49282e-11 -0.0239973)
(-0.19369 -7.78223e-12 -0.024478)
(-0.190176 1.07064e-11 -0.0249219)
(-0.186599 2.91955e-11 -0.0253294)
(-0.182965 4.84078e-11 -0.025701)
(-0.179279 6.8137e-11 -0.0260374)
(-0.175545 8.86929e-11 -0.026339)
(-0.171768 1.09972e-10 -0.0266066)
(-0.167952 1.31769e-10 -0.0268408)
(-0.164103 1.54496e-10 -0.0270424)
(-0.160225 1.77843e-10 -0.0272122)
(-0.156322 2.02017e-10 -0.027351)
(-0.152398 2.264e-10 -0.0274596)
(-0.148458 2.51712e-10 -0.0275389)
(-0.144505 2.77646e-10 -0.0275897)
(-0.140544 3.03995e-10 -0.027613)
(-0.136579 3.31378e-10 -0.0276097)
(-0.132613 3.58969e-10 -0.0275807)
(-0.128649 3.87285e-10 -0.0275269)
(-0.124692 4.15809e-10 -0.0274493)
(-0.120745 4.44852e-10 -0.0273488)
(-0.11681 4.74827e-10 -0.0272264)
(-0.112891 5.05113e-10 -0.027083)
(-0.108992 5.35609e-10 -0.0269195)
(-0.105114 5.66831e-10 -0.0267368)
(-0.101262 5.98055e-10 -0.0265359)
(-0.0974363 6.30109e-10 -0.0263175)
(-0.0936409 6.62165e-10 -0.0260826)
(-0.0898778 6.94741e-10 -0.0258319)
(-0.0861495 7.27424e-10 -0.0255663)
(-0.0824581 7.60627e-10 -0.0252866)
(-0.0788058 7.93627e-10 -0.0249934)
(-0.0751947 8.27663e-10 -0.0246874)
(-0.0716267 8.61084e-10 -0.0243694)
(-0.0681036 8.94922e-10 -0.0240399)
(-0.0646272 9.2866e-10 -0.0236995)
(-0.0611993 9.62506e-10 -0.0233488)
(-0.0578215 9.9646e-10 -0.0229881)
(-0.0544954 1.03021e-09 -0.0226179)
(-0.0512224 1.06397e-09 -0.0222386)
(-0.0480041 1.09762e-09 -0.0218505)
(-0.0448418 1.13077e-09 -0.0214539)
(-0.041737 1.16392e-09 -0.0210489)
(-0.0386911 1.19635e-09 -0.0206359)
(-0.0357052 1.2291e-09 -0.0202148)
(-0.0327808 1.26113e-09 -0.0197857)
(-0.0299191 1.29264e-09 -0.0193486)
(-0.0271214 1.32313e-09 -0.0189036)
(-0.0243889 1.35342e-09 -0.0184504)
(-0.021723 1.38257e-09 -0.0179891)
(-0.0191249 1.4107e-09 -0.0175193)
(-0.0165959 1.43831e-09 -0.0170411)
(-0.0141374 1.46479e-09 -0.016554)
(-0.0117505 1.48993e-09 -0.0160578)
(-0.00943675 1.51425e-09 -0.0155524)
(-0.00719737 1.53537e-09 -0.0150374)
(-0.00503378 1.55598e-09 -0.0145125)
(-0.00294737 1.57524e-09 -0.0139775)
(-0.000939563 1.5912e-09 -0.0134322)
(0.000988308 1.60519e-09 -0.0128761)
(0.00283459 1.61671e-09 -0.0123092)
(0.00459796 1.62419e-09 -0.0117311)
(0.00627698 1.63001e-09 -0.0111418)
(0.00787023 1.63284e-09 -0.0105411)
(0.00937633 1.63214e-09 -0.00992912)
(0.0107939 1.62761e-09 -0.00930591)
(0.0121216 1.61925e-09 -0.00867168)
(0.0133581 1.6082e-09 -0.00802672)
(0.0145023 1.59362e-09 -0.00737146)
(0.015553 1.57479e-09 -0.00670645)
(0.0165091 1.55191e-09 -0.00603236)
(0.0173698 1.52509e-09 -0.00535005)
(0.0181343 1.49381e-09 -0.00466052)
(0.0188019 1.45838e-09 -0.00396495)
(0.0193722 1.4192e-09 -0.00326471)
(0.019845 1.37617e-09 -0.00256137)
(0.0202203 1.32919e-09 -0.00185669)
(0.0204984 1.2793e-09 -0.00115265)
(0.0206797 1.2269e-09 -0.000451453)
(0.0207651 1.17324e-09 0.00024448)
(0.0207558 1.11749e-09 0.000932488)
(0.0206533 1.0609e-09 0.00160967)
(0.0204595 1.00242e-09 0.00227286)
(0.0201767 9.42049e-10 0.00291866)
(0.0198076 8.78549e-10 0.00354341)
(0.0193555 8.13577e-10 0.00414317)
(0.0188238 7.44432e-10 0.00471375)
(0.0182168 6.71529e-10 0.00525072)
(0.0175391 5.92165e-10 0.00574936)
(0.0167957 5.08624e-10 0.00620468)
(0.0159923 4.19865e-10 0.00661146)
(0.015135 3.2838e-10 0.00696417)
(0.0142303 2.3625e-10 0.00725705)
(0.0132855 1.45969e-10 0.00748407)
(0.012308 6.16986e-11 0.00763896)
(0.0113056 -1.67633e-11 0.00771524)
(0.0102867 -9.14912e-11 0.00770621)
(0.00925972 -1.67472e-10 0.00760505)
(0.00823338 -2.51152e-10 0.00740488)
(0.00721642 -3.51892e-10 0.00709886)
(0.00621754 -4.77183e-10 0.00668035)
(0.00524523 -6.27858e-10 0.00614319)
(0.0043077 -7.95164e-10 0.005482)
(0.00341278 -9.6221e-10 0.00469268)
(0.00256793 -1.12499e-09 0.00377304)
(0.0017805 -1.31778e-09 0.00272357)
(0.00105821 -1.62731e-09 0.00154835)
(0.000410279 -2.16379e-09 0.000256106)
(-0.000150846 -3.03173e-09 -0.00113883)
(-0.000606028 -4.45744e-09 -0.00261579)
(-0.000926295 -6.86809e-09 -0.00414818)
(-0.00105992 -1.07996e-08 -0.00570137)
(-0.000979089 -1.23522e-08 -0.00717944)
(-0.000487597 -1.3212e-07 -0.00741176)
(-0.00255776 -9.58312e-08 -0.0161368)
(-0.00604817 -2.54368e-08 -0.00474635)
(-0.0104303 -1.40311e-09 0.00468062)
(-0.0149356 -1.33842e-09 0.0125451)
(-0.0195111 -1.65096e-09 0.019348)
(-0.0241438 -2.32504e-09 0.0252845)
(-0.0288491 -2.78869e-09 0.0304573)
(-0.0336425 -2.88909e-09 0.0349384)
(-0.0385388 -3.15558e-09 0.0387901)
(-0.0435481 -3.55392e-09 0.042071)
(-0.0486752 -3.73827e-09 0.0448373)
(-0.05392 -3.66025e-09 0.0471422)
(-0.0592775 -3.49164e-09 0.0490357)
(-0.0647394 -3.3503e-09 0.0505635)
(-0.0702945 -3.2447e-09 0.0517671)
(-0.0759297 -3.15383e-09 0.0526836)
(-0.0816308 -3.06558e-09 0.0533458)
(-0.087383 -2.979e-09 0.0537825)
(-0.0931713 -2.88861e-09 0.0540189)
(-0.0989809 -2.78181e-09 0.0540769)
(-0.104797 -2.65051e-09 0.0539756)
(-0.110607 -2.49628e-09 0.0537314)
(-0.116396 -2.32843e-09 0.0533587)
(-0.122151 -2.16114e-09 0.0528698)
(-0.127862 -2.00442e-09 0.0522754)
(-0.133515 -1.86397e-09 0.051585)
(-0.139102 -1.73947e-09 0.0508067)
(-0.144611 -1.62637e-09 0.0499477)
(-0.150034 -1.5201e-09 0.0490143)
(-0.15536 -1.41561e-09 0.0480121)
(-0.160583 -1.3128e-09 0.0469461)
(-0.165693 -1.21248e-09 0.045821)
(-0.170684 -1.11734e-09 0.0446407)
(-0.175548 -1.03058e-09 0.043409)
(-0.18028 -9.54999e-10 0.0421296)
(-0.184872 -8.91515e-10 0.0408056)
(-0.18932 -8.40852e-10 0.0394402)
(-0.193618 -8.02179e-10 0.0380363)
(-0.197761 -7.73223e-10 0.0365969)
(-0.201745 -7.51915e-10 0.0351246)
(-0.205564 -7.35259e-10 0.0336223)
(-0.209216 -7.20463e-10 0.0320927)
(-0.212697 -7.05359e-10 0.0305382)
(-0.216002 -6.88656e-10 0.0289617)
(-0.219131 -6.69011e-10 0.0273658)
(-0.222079 -6.46372e-10 0.0257529)
(-0.224845 -6.21618e-10 0.0241257)
(-0.227427 -5.95007e-10 0.0224869)
(-0.229822 -5.67676e-10 0.0208389)
(-0.23203 -5.40139e-10 0.0191844)
(-0.234049 -5.1276e-10 0.017526)
(-0.23588 -4.86208e-10 0.015866)
(-0.23752 -4.60691e-10 0.0142072)
(-0.238971 -4.36776e-10 0.0125519)
(-0.240232 -4.15289e-10 0.0109026)
(-0.241304 -3.96229e-10 0.00926174)
(-0.242188 -3.79648e-10 0.0076317)
(-0.242884 -3.66217e-10 0.00601478)
(-0.243393 -3.54387e-10 0.00441326)
(-0.243718 -3.44262e-10 0.00282932)
(-0.243861 -3.34497e-10 0.00126511)
(-0.243822 -3.24424e-10 -0.00027732)
(-0.243605 -3.13835e-10 -0.00179598)
(-0.243212 -3.02007e-10 -0.00328893)
(-0.242646 -2.8951e-10 -0.00475437)
(-0.24191 -2.76548e-10 -0.00619053)
(-0.241007 -2.63535e-10 -0.00759579)
(-0.239941 -2.5047e-10 -0.00896858)
(-0.238714 -2.38026e-10 -0.0103075)
(-0.237332 -2.25892e-10 -0.0116111)
(-0.235797 -2.1479e-10 -0.0128782)
(-0.234115 -2.04101e-10 -0.0141077)
(-0.232288 -1.94032e-10 -0.0152985)
(-0.230322 -1.84428e-10 -0.0164496)
(-0.228221 -1.74772e-10 -0.0175603)
(-0.22599 -1.65426e-10 -0.0186298)
(-0.223632 -1.55925e-10 -0.0196575)
(-0.221154 -1.46012e-10 -0.0206428)
(-0.21856 -1.35737e-10 -0.0215854)
(-0.215854 -1.24843e-10 -0.0224848)
(-0.213043 -1.13589e-10 -0.023341)
(-0.210129 -1.01405e-10 -0.0241537)
(-0.20712 -8.81888e-11 -0.0249228)
(-0.204019 -7.456e-11 -0.0256485)
(-0.200831 -6.00022e-11 -0.0263308)
(-0.197563 -4.5341e-11 -0.02697)
(-0.194218 -2.97509e-11 -0.0275663)
(-0.190802 -1.37476e-11 -0.0281201)
(-0.187319 2.87519e-12 -0.0286319)
(-0.183775 1.99112e-11 -0.0291021)
(-0.180174 3.71539e-11 -0.0295313)
(-0.176522 5.51196e-11 -0.0299202)
(-0.172822 7.33955e-11 -0.0302693)
(-0.16908 9.22912e-11 -0.0305796)
(-0.1653 1.11497e-10 -0.0308516)
(-0.161486 1.31117e-10 -0.0310863)
(-0.157644 1.51666e-10 -0.0312846)
(-0.153777 1.72629e-10 -0.0314473)
(-0.149889 1.9411e-10 -0.0315754)
(-0.145985 2.16107e-10 -0.0316698)
(-0.142069 2.39034e-10 -0.0317317)
(-0.138145 2.62273e-10 -0.0317619)
(-0.134216 2.85925e-10 -0.0317615)
(-0.130286 3.09992e-10 -0.0317315)
(-0.126359 3.34887e-10 -0.0316731)
(-0.122438 3.59576e-10 -0.0315873)
(-0.118527 3.85196e-10 -0.0314751)
(-0.114628 4.11025e-10 -0.0313377)
(-0.110745 4.37475e-10 -0.031176)
(-0.106882 4.64133e-10 -0.0309911)
(-0.103039 4.91414e-10 -0.030784)
(-0.0992217 5.18903e-10 -0.0305558)
(-0.0954312 5.46704e-10 -0.0303074)
(-0.0916704 5.75024e-10 -0.0300399)
(-0.0879419 6.03656e-10 -0.0297541)
(-0.0842478 6.32084e-10 -0.0294509)
(-0.0805905 6.61135e-10 -0.0291313)
(-0.076972 6.90602e-10 -0.0287961)
(-0.0733945 7.20279e-10 -0.0284459)
(-0.0698599 7.50062e-10 -0.0280817)
(-0.0663701 7.79849e-10 -0.0277041)
(-0.0629268 8.09846e-10 -0.0273137)
(-0.0595318 8.39949e-10 -0.0269112)
(-0.0561868 8.6985e-10 -0.026497)
(-0.0528933 9.00374e-10 -0.0260718)
(-0.0496528 9.30282e-10 -0.0256358)
(-0.0464669 9.60298e-10 -0.0251895)
(-0.0433369 9.90421e-10 -0.0247332)
(-0.0402643 1.02013e-09 -0.0242671)
(-0.0372504 1.04954e-09 -0.0237915)
(-0.0342965 1.07947e-09 -0.0233064)
(-0.031404 1.10827e-09 -0.022812)
(-0.0285741 1.13707e-09 -0.0223083)
(-0.025808 1.16474e-09 -0.0217953)
(-0.0231071 1.19221e-09 -0.0212728)
(-0.0204727 1.21875e-09 -0.0207408)
(-0.0179059 1.24457e-09 -0.020199)
(-0.015408 1.26957e-09 -0.0196474)
(-0.0129804 1.29427e-09 -0.0190856)
(-0.0106242 1.31731e-09 -0.0185133)
(-0.00834076 1.33881e-09 -0.0179304)
(-0.00613143 1.35856e-09 -0.0173365)
(-0.00399749 1.37727e-09 -0.0167313)
(-0.00194029 1.39351e-09 -0.0161145)
(3.88733e-05 1.408e-09 -0.0154859)
(0.00193859 1.42052e-09 -0.0148452)
(0.00375749 1.43004e-09 -0.014192)
(0.00549428 1.43605e-09 -0.0135263)
(0.0071476 1.44092e-09 -0.0128479)
(0.00871616 1.44196e-09 -0.0121568)
(0.0101987 1.43918e-09 -0.0114529)
(0.0115939 1.4335e-09 -0.0107365)
(0.0129006 1.42357e-09 -0.0100077)
(0.0141176 1.41125e-09 -0.00926699)
(0.0152439 1.39604e-09 -0.00851481)
(0.0162784 1.37627e-09 -0.00775182)
(0.0172204 1.35276e-09 -0.00697882)
(0.0180689 1.32511e-09 -0.0061968)
(0.0188234 1.2932e-09 -0.00540691)
(0.0194834 1.25797e-09 -0.00461052)
(0.0200486 1.21879e-09 -0.00380921)
(0.0205189 1.17587e-09 -0.00300476)
(0.0208945 1.13035e-09 -0.00219918)
(0.0211756 1.08202e-09 -0.00139474)
(0.0213631 1.0316e-09 -0.000593938)
(0.0214577 9.79714e-10 0.000200484)
(0.0214608 9.27608e-10 0.000985512)
(0.0213739 8.73413e-10 0.00175787)
(0.021199 8.1889e-10 0.002514)
(0.0209383 7.629e-10 0.00325007)
(0.0205946 7.04197e-10 0.003962)
(0.0201709 6.4361e-10 0.00464538)
(0.0196709 5.79063e-10 0.00529558)
(0.0190984 5.09724e-10 0.00590765)
(0.0184579 4.34138e-10 0.0064764)
(0.0177542 3.53135e-10 0.00699636)
(0.0169924 2.66088e-10 0.0074618)
(0.0161785 1.75282e-10 0.00786674)
(0.0153183 8.23783e-11 0.00820497)
(0.0144184 -1.05454e-11 0.00847004)
(0.0134855 -9.97461e-11 0.00865532)
(0.0125268 -1.86259e-10 0.00875399)
(0.0115494 -2.73405e-10 0.00875914)
(0.0105609 -3.6534e-10 0.0086638)
(0.00956862 -4.71623e-10 0.00846103)
(0.00858007 -5.9995e-10 0.00814405)
(0.00760249 -7.59263e-10 0.00770644)
(0.00664289 -9.49562e-10 0.00714233)
(0.00570795 -1.16064e-09 0.00644672)
(0.00480399 -1.37667e-09 0.00561587)
(0.00393705 -1.59134e-09 0.00464778)
(0.00311318 -1.84744e-09 0.00354272)
(0.00233889 -2.24578e-09 0.00230375)
(0.00162215 -2.9033e-09 0.000937234)
(0.000973557 -3.9098e-09 -0.000547084)
(0.000409093 -5.5021e-09 -0.00213621)
(-4.84913e-05 -8.18114e-09 -0.00381538)
(-0.000358257 -1.26252e-08 -0.00556809)
(-0.000498193 -1.53589e-08 -0.00733281)
(-0.000300972 -1.31549e-07 -0.00799423)
(-0.00255812 -9.58302e-08 -0.0161367)
(-0.00604829 -2.54364e-08 -0.00474627)
(-0.0104304 -1.40309e-09 0.00468062)
(-0.0149356 -1.33839e-09 0.012545)
(-0.0195111 -1.65093e-09 0.019348)
(-0.0241437 -2.325e-09 0.0252845)
(-0.028849 -2.78864e-09 0.0304572)
(-0.0336425 -2.88904e-09 0.0349383)
(-0.0385388 -3.15553e-09 0.0387901)
(-0.043548 -3.55386e-09 0.042071)
(-0.0486751 -3.73821e-09 0.0448372)
(-0.0539199 -3.66019e-09 0.0471422)
(-0.0592774 -3.49159e-09 0.0490356)
(-0.0647393 -3.35025e-09 0.0505634)
(-0.0702944 -3.24466e-09 0.051767)
(-0.0759296 -3.15379e-09 0.0526835)
(-0.0816307 -3.06554e-09 0.0533457)
(-0.0873829 -2.97896e-09 0.0537824)
(-0.0931712 -2.88858e-09 0.0540188)
(-0.0989808 -2.78177e-09 0.0540769)
(-0.104797 -2.65048e-09 0.0539756)
(-0.110607 -2.49625e-09 0.0537314)
(-0.116395 -2.32841e-09 0.0533587)
(-0.122151 -2.16111e-09 0.0528697)
(-0.127861 -2.0044e-09 0.0522754)
(-0.133515 -1.86395e-09 0.051585)
(-0.139102 -1.73945e-09 0.0508067)
(-0.144611 -1.62635e-09 0.0499477)
(-0.150033 -1.52009e-09 0.0490142)
(-0.15536 -1.4156e-09 0.0480121)
(-0.160582 -1.31279e-09 0.0469461)
(-0.165693 -1.21247e-09 0.0458209)
(-0.170684 -1.11733e-09 0.0446407)
(-0.175548 -1.03057e-09 0.043409)
(-0.18028 -9.54991e-10 0.0421296)
(-0.184872 -8.91508e-10 0.0408056)
(-0.18932 -8.40845e-10 0.0394402)
(-0.193618 -8.02173e-10 0.0380363)
(-0.197761 -7.73218e-10 0.0365968)
(-0.201745 -7.5191e-10 0.0351246)
(-0.205564 -7.35254e-10 0.0336223)
(-0.209216 -7.20458e-10 0.0320926)
(-0.212696 -7.05355e-10 0.0305382)
(-0.216002 -6.88652e-10 0.0289617)
(-0.219131 -6.69007e-10 0.0273658)
(-0.222079 -6.46368e-10 0.0257529)
(-0.224845 -6.21614e-10 0.0241257)
(-0.227426 -5.95004e-10 0.0224869)
(-0.229822 -5.67672e-10 0.0208389)
(-0.23203 -5.40136e-10 0.0191844)
(-0.234049 -5.12757e-10 0.017526)
(-0.23588 -4.86206e-10 0.015866)
(-0.23752 -4.60689e-10 0.0142072)
(-0.238971 -4.36774e-10 0.0125519)
(-0.240232 -4.15287e-10 0.0109026)
(-0.241304 -3.96227e-10 0.00926174)
(-0.242188 -3.79646e-10 0.0076317)
(-0.242884 -3.66216e-10 0.00601479)
(-0.243393 -3.54386e-10 0.00441326)
(-0.243718 -3.4426e-10 0.00282933)
(-0.243861 -3.34496e-10 0.00126512)
(-0.243822 -3.24423e-10 -0.000277315)
(-0.243605 -3.13833e-10 -0.00179597)
(-0.243212 -3.02006e-10 -0.00328893)
(-0.242646 -2.89508e-10 -0.00475436)
(-0.24191 -2.76546e-10 -0.00619052)
(-0.241007 -2.63533e-10 -0.00759578)
(-0.239941 -2.50469e-10 -0.00896857)
(-0.238714 -2.38025e-10 -0.0103075)
(-0.237332 -2.25891e-10 -0.0116111)
(-0.235797 -2.14789e-10 -0.0128782)
(-0.234115 -2.041e-10 -0.0141077)
(-0.232288 -1.94031e-10 -0.0152985)
(-0.230322 -1.84427e-10 -0.0164496)
(-0.228221 -1.74771e-10 -0.0175603)
(-0.22599 -1.65425e-10 -0.0186298)
(-0.223632 -1.55925e-10 -0.0196575)
(-0.221154 -1.46011e-10 -0.0206428)
(-0.21856 -1.35737e-10 -0.0215854)
(-0.215854 -1.24843e-10 -0.0224848)
(-0.213042 -1.13588e-10 -0.023341)
(-0.210129 -1.01404e-10 -0.0241536)
(-0.20712 -8.81885e-11 -0.0249228)
(-0.204019 -7.45597e-11 -0.0256485)
(-0.200831 -6.0002e-11 -0.0263308)
(-0.197563 -4.53409e-11 -0.02697)
(-0.194218 -2.97508e-11 -0.0275663)
(-0.190802 -1.37476e-11 -0.0281201)
(-0.187319 2.87518e-12 -0.0286319)
(-0.183775 1.99111e-11 -0.0291021)
(-0.180174 3.71538e-11 -0.0295313)
(-0.176522 5.51195e-11 -0.0299202)
(-0.172822 7.33953e-11 -0.0302693)
(-0.16908 9.2291e-11 -0.0305795)
(-0.1653 1.11497e-10 -0.0308516)
(-0.161486 1.31117e-10 -0.0310863)
(-0.157644 1.51666e-10 -0.0312846)
(-0.153777 1.72629e-10 -0.0314473)
(-0.149889 1.94109e-10 -0.0315754)
(-0.145985 2.16106e-10 -0.0316698)
(-0.142069 2.39034e-10 -0.0317317)
(-0.138145 2.62272e-10 -0.0317619)
(-0.134216 2.85925e-10 -0.0317615)
(-0.130286 3.09992e-10 -0.0317315)
(-0.126359 3.34886e-10 -0.0316731)
(-0.122438 3.59575e-10 -0.0315873)
(-0.118527 3.85196e-10 -0.0314751)
(-0.114628 4.11024e-10 -0.0313377)
(-0.110745 4.37474e-10 -0.0311759)
(-0.106881 4.64133e-10 -0.030991)
(-0.103039 4.91413e-10 -0.030784)
(-0.0992216 5.18902e-10 -0.0305558)
(-0.0954312 5.46703e-10 -0.0303074)
(-0.0916704 5.75023e-10 -0.0300399)
(-0.0879418 6.03655e-10 -0.0297541)
(-0.0842477 6.32083e-10 -0.0294509)
(-0.0805904 6.61134e-10 -0.0291313)
(-0.076972 6.90601e-10 -0.0287961)
(-0.0733945 7.20278e-10 -0.0284459)
(-0.0698599 7.50061e-10 -0.0280817)
(-0.06637 7.79848e-10 -0.0277041)
(-0.0629268 8.09844e-10 -0.0273137)
(-0.0595318 8.39948e-10 -0.0269112)
(-0.0561867 8.69848e-10 -0.026497)
(-0.0528932 9.00372e-10 -0.0260718)
(-0.0496528 9.30281e-10 -0.0256358)
(-0.0464668 9.60296e-10 -0.0251895)
(-0.0433369 9.90419e-10 -0.0247332)
(-0.0402642 1.02013e-09 -0.0242671)
(-0.0372503 1.04954e-09 -0.0237915)
(-0.0342965 1.07947e-09 -0.0233064)
(-0.0314039 1.10827e-09 -0.022812)
(-0.028574 1.13707e-09 -0.0223083)
(-0.025808 1.16474e-09 -0.0217953)
(-0.0231071 1.19221e-09 -0.0212728)
(-0.0204726 1.21875e-09 -0.0207408)
(-0.0179058 1.24457e-09 -0.020199)
(-0.015408 1.26957e-09 -0.0196474)
(-0.0129803 1.29427e-09 -0.0190856)
(-0.0106241 1.31731e-09 -0.0185133)
(-0.00834073 1.33881e-09 -0.0179304)
(-0.00613139 1.35856e-09 -0.0173365)
(-0.00399746 1.37727e-09 -0.0167313)
(-0.00194026 1.39351e-09 -0.0161145)
(3.89114e-05 1.408e-09 -0.0154859)
(0.00193863 1.42052e-09 -0.0148452)
(0.00375753 1.43004e-09 -0.014192)
(0.00549431 1.43605e-09 -0.0135263)
(0.00714764 1.44092e-09 -0.0128479)
(0.0087162 1.44196e-09 -0.0121568)
(0.0101987 1.43918e-09 -0.0114529)
(0.0115939 1.43349e-09 -0.0107365)
(0.0129006 1.42357e-09 -0.0100077)
(0.0141176 1.41125e-09 -0.009267)
(0.0152439 1.39604e-09 -0.00851482)
(0.0162785 1.37627e-09 -0.00775182)
(0.0172204 1.35276e-09 -0.00697883)
(0.0180689 1.32511e-09 -0.0061968)
(0.0188234 1.2932e-09 -0.00540691)
(0.0194834 1.25797e-09 -0.00461053)
(0.0200486 1.21879e-09 -0.00380921)
(0.0205189 1.17587e-09 -0.00300476)
(0.0208945 1.13035e-09 -0.00219918)
(0.0211757 1.08202e-09 -0.00139474)
(0.0213631 1.0316e-09 -0.000593933)
(0.0214577 9.79715e-10 0.000200492)
(0.0214608 9.27608e-10 0.000985521)
(0.0213739 8.73413e-10 0.00175788)
(0.021199 8.18891e-10 0.00251401)
(0.0209383 7.62901e-10 0.00325009)
(0.0205946 7.04198e-10 0.00396201)
(0.020171 6.4361e-10 0.0046454)
(0.0196709 5.79063e-10 0.0052956)
(0.0190984 5.09724e-10 0.00590767)
(0.0184579 4.34139e-10 0.00647642)
(0.0177542 3.53135e-10 0.00699638)
(0.0169925 2.66088e-10 0.00746182)
(0.0161785 1.75282e-10 0.00786677)
(0.0153183 8.23783e-11 0.008205)
(0.0144184 -1.05454e-11 0.00847007)
(0.0134855 -9.97462e-11 0.00865534)
(0.0125268 -1.86259e-10 0.00875402)
(0.0115494 -2.73406e-10 0.00875917)
(0.0105609 -3.6534e-10 0.00866383)
(0.00956862 -4.71623e-10 0.00846105)
(0.00858007 -5.9995e-10 0.00814408)
(0.00760249 -7.59263e-10 0.00770646)
(0.00664289 -9.49562e-10 0.00714235)
(0.00570794 -1.16064e-09 0.00644673)
(0.00480398 -1.37667e-09 0.00561588)
(0.00393704 -1.59134e-09 0.00464778)
(0.00311316 -1.84744e-09 0.00354271)
(0.00233887 -2.24577e-09 0.00230374)
(0.00162212 -2.9033e-09 0.000937219)
(0.00097352 -3.90979e-09 -0.000547107)
(0.000409041 -5.50208e-09 -0.00213624)
(-4.85679e-05 -8.18111e-09 -0.00381542)
(-0.00035838 -1.26252e-08 -0.00556814)
(-0.000498493 -1.53589e-08 -0.00733286)
(-0.000301533 -1.31549e-07 -0.00799428)
(-0.00317062 -1.20184e-07 -0.0115033)
(-0.00736978 -2.61989e-08 0.000245255)
(-0.0123483 -1.99636e-09 0.00970571)
(-0.0173464 -1.7399e-09 0.0175713)
(-0.0223082 -1.93513e-09 0.0243779)
(-0.0272427 -2.47744e-09 0.030335)
(-0.032176 -2.80878e-09 0.0355503)
(-0.0371316 -2.81003e-09 0.0400951)
(-0.0421308 -3.01216e-09 0.044028)
(-0.04719 -3.36035e-09 0.0474022)
(-0.0523205 -3.50318e-09 0.0502682)
(-0.0575281 -3.39413e-09 0.052674)
(-0.0628138 -3.208e-09 0.0546649)
(-0.0681749 -3.06422e-09 0.056283)
(-0.0736052 -2.97116e-09 0.057567)
(-0.0790962 -2.9016e-09 0.0585521)
(-0.0846378 -2.84003e-09 0.0592696)
(-0.0902186 -2.78002e-09 0.0597478)
(-0.0958265 -2.71009e-09 0.0600115)
(-0.101449 -2.61567e-09 0.0600826)
(-0.107075 -2.48747e-09 0.0599804)
(-0.11269 -2.32785e-09 0.0597218)
(-0.118284 -2.14987e-09 0.0593215)
(-0.123844 -1.96996e-09 0.0587926)
(-0.129361 -1.80351e-09 0.0581463)
(-0.134822 -1.65943e-09 0.0573926)
(-0.140218 -1.53851e-09 0.0565403)
(-0.145539 -1.43622e-09 0.0555972)
(-0.150777 -1.34583e-09 0.0545702)
(-0.155923 -1.26083e-09 0.0534654)
(-0.160967 -1.17816e-09 0.0522883)
(-0.165904 -1.09659e-09 0.051044)
(-0.170726 -1.01735e-09 0.0497371)
(-0.175425 -9.43502e-10 0.0483719)
(-0.179996 -8.77406e-10 0.0469522)
(-0.184432 -8.20975e-10 0.0454817)
(-0.188728 -7.75345e-10 0.0439641)
(-0.192878 -7.40202e-10 0.0424026)
(-0.196879 -7.14616e-10 0.0408005)
(-0.200724 -6.9621e-10 0.0391609)
(-0.20441 -6.82867e-10 0.037487)
(-0.207933 -6.71899e-10 0.0357818)
(-0.21129 -6.60623e-10 0.0340482)
(-0.214477 -6.47076e-10 0.0322892)
(-0.217491 -6.30537e-10 0.0305078)
(-0.220329 -6.10437e-10 0.028707)
(-0.22299 -5.87293e-10 0.0268896)
(-0.225472 -5.62861e-10 0.0250585)
(-0.227772 -5.37605e-10 0.0232168)
(-0.229889 -5.12195e-10 0.0213672)
(-0.231823 -4.8751e-10 0.0195126)
(-0.233572 -4.63343e-10 0.0176559)
(-0.235135 -4.40777e-10 0.0158)
(-0.236514 -4.19193e-10 0.0139475)
(-0.237708 -3.9983e-10 0.0121014)
(-0.238716 -3.82531e-10 0.0102643)
(-0.239541 -3.67195e-10 0.00843878)
(-0.240182 -3.54543e-10 0.00662759)
(-0.240642 -3.43904e-10 0.00483323)
(-0.24092 -3.3471e-10 0.00305817)
(-0.24102 -3.26394e-10 0.00130482)
(-0.240944 -3.18233e-10 -0.000424507)
(-0.240692 -3.09763e-10 -0.00212755)
(-0.240269 -3.00055e-10 -0.00380216)
(-0.239676 -2.89832e-10 -0.00544626)
(-0.238916 -2.79505e-10 -0.00705789)
(-0.237993 -2.6887e-10 -0.00863519)
(-0.23691 -2.58235e-10 -0.0101764)
(-0.23567 -2.4822e-10 -0.0116799)
(-0.234277 -2.38772e-10 -0.0131442)
(-0.232735 -2.30305e-10 -0.0145678)
(-0.231048 -2.22199e-10 -0.0159494)
(-0.229219 -2.14919e-10 -0.0172879)
(-0.227254 -2.08001e-10 -0.0185822)
(-0.225156 -2.01237e-10 -0.0198313)
(-0.22293 -1.94525e-10 -0.0210345)
(-0.220581 -1.87606e-10 -0.0221909)
(-0.218113 -1.80173e-10 -0.0232999)
(-0.215531 -1.72274e-10 -0.0243612)
(-0.212839 -1.63809e-10 -0.0253743)
(-0.210043 -1.54621e-10 -0.0263389)
(-0.207147 -1.44557e-10 -0.0272548)
(-0.204157 -1.33925e-10 -0.028122)
(-0.201076 -1.22158e-10 -0.0289405)
(-0.197911 -1.09928e-10 -0.0297104)
(-0.194666 -9.73355e-11 -0.030432)
(-0.191345 -8.39696e-11 -0.0311055)
(-0.187955 -7.04488e-11 -0.0317313)
(-0.184499 -5.6051e-11 -0.03231)
(-0.180982 -4.16013e-11 -0.032842)
(-0.17741 -2.69966e-11 -0.033328)
(-0.173786 -1.13599e-11 -0.0337686)
(-0.170117 3.96762e-12 -0.0341647)
(-0.166405 2.00178e-11 -0.034517)
(-0.162656 3.70485e-11 -0.0348263)
(-0.158875 5.40798e-11 -0.0350937)
(-0.155064 7.16276e-11 -0.03532)
(-0.15123 9.01046e-11 -0.0355064)
(-0.147376 1.09047e-10 -0.0356537)
(-0.143505 1.28247e-10 -0.0357632)
(-0.139623 1.48584e-10 -0.0358358)
(-0.135732 1.69077e-10 -0.0358728)
(-0.131837 1.90344e-10 -0.0358753)
(-0.127941 2.11922e-10 -0.0358444)
(-0.124049 2.33811e-10 -0.0357814)
(-0.120162 2.56527e-10 -0.0356873)
(-0.116285 2.79553e-10 -0.0355635)
(-0.112421 3.02581e-10 -0.0354111)
(-0.108573 3.2685e-10 -0.0352312)
(-0.104743 3.51016e-10 -0.035025)
(-0.100936 3.75598e-10 -0.0347936)
(-0.0971526 4.01316e-10 -0.0345383)
(-0.0933966 4.2683e-10 -0.0342601)
(-0.0896703 4.52965e-10 -0.0339601)
(-0.0859761 4.79103e-10 -0.0336393)
(-0.0823164 5.05759e-10 -0.0332987)
(-0.0786935 5.32934e-10 -0.0329394)
(-0.0751093 5.60214e-10 -0.0325622)
(-0.0715661 5.88014e-10 -0.032168)
(-0.0680658 6.15919e-10 -0.0317577)
(-0.0646101 6.43724e-10 -0.0313321)
(-0.0612011 6.72151e-10 -0.0308918)
(-0.0578403 7.00582e-10 -0.0304377)
(-0.0545294 7.29429e-10 -0.0299701)
(-0.05127 7.58072e-10 -0.0294898)
(-0.0480637 7.86926e-10 -0.0289973)
(-0.0449119 8.15577e-10 -0.0284928)
(-0.0418161 8.44644e-10 -0.0279769)
(-0.0387776 8.73509e-10 -0.0274497)
(-0.0357979 9.02275e-10 -0.0269116)
(-0.0328782 9.31044e-10 -0.0263627)
(-0.0300198 9.58888e-10 -0.0258031)
(-0.027224 9.86839e-10 -0.0252328)
(-0.024492 1.01407e-09 -0.0246518)
(-0.0218252 1.0412e-09 -0.0240601)
(-0.0192247 1.0669e-09 -0.0234575)
(-0.0166918 1.09311e-09 -0.0228439)
(-0.0142276 1.11777e-09 -0.0222191)
(-0.0118335 1.14203e-09 -0.0215828)
(-0.00951072 1.16443e-09 -0.0209347)
(-0.00726043 1.18529e-09 -0.0202746)
(-0.00508391 1.20511e-09 -0.0196022)
(-0.00298241 1.22391e-09 -0.0189171)
(-0.000957228 1.24002e-09 -0.0182191)
(0.000990464 1.25376e-09 -0.0175078)
(0.00285923 1.26574e-09 -0.0167831)
(0.00464793 1.27442e-09 -0.0160446)
(0.00635527 1.28124e-09 -0.0152921)
(0.00798005 1.28495e-09 -0.0145256)
(0.00952106 1.28484e-09 -0.0137451)
(0.0109771 1.28152e-09 -0.0129506)
(0.0123471 1.27479e-09 -0.0121424)
(0.0136299 1.26526e-09 -0.0113206)
(0.0148246 1.25159e-09 -0.0104858)
(0.0159301 1.23533e-09 -0.00963846)
(0.0169457 1.21524e-09 -0.00877944)
(0.0178705 1.19069e-09 -0.00790963)
(0.0187039 1.16241e-09 -0.00703014)
(0.0194455 1.13009e-09 -0.0061423)
(0.020095 1.09392e-09 -0.00524764)
(0.0206521 1.05433e-09 -0.00434795)
(0.0211169 1.01163e-09 -0.00344522)
(0.0214896 9.65902e-10 -0.00254171)
(0.0217708 9.17887e-10 -0.00163995)
(0.0219612 8.68616e-10 -0.000742726)
(0.0220619 8.17881e-10 0.00014691)
(0.0220741 7.66406e-10 0.00102561)
(0.0219994 7.14192e-10 0.00188975)
(0.0218399 6.61549e-10 0.00273541)
(0.0215978 6.07129e-10 0.00355838)
(0.0212758 5.5031e-10 0.00435414)
(0.0208769 4.91194e-10 0.00511791)
(0.0204046 4.27914e-10 0.00584462)
(0.0198627 3.59327e-10 0.0065289)
(0.0192552 2.83461e-10 0.00716512)
(0.0185869 2.00936e-10 0.00774741)
(0.0178625 1.11127e-10 0.00826963)
(0.0170874 1.57961e-11 0.0087254)
(0.0162671 -8.30844e-11 0.00910817)
(0.0154076 -1.81984e-10 0.00941116)
(0.0145148 -2.81109e-10 0.00962749)
(0.0135952 -3.78587e-10 0.00975014)
(0.0126551 -4.80023e-10 0.00977207)
(0.0117011 -5.8957e-10 0.00968626)
(0.0107394 -7.17616e-10 0.00948585)
(0.00977635 -8.7102e-10 0.00916423)
(0.00881808 -1.05913e-09 0.00871522)
(0.00787032 -1.2803e-09 0.00813329)
(0.00693849 -1.52639e-09 0.0074138)
(0.00602768 -1.77907e-09 0.00655335)
(0.00514275 -2.02998e-09 0.00555005)
(0.00428857 -2.33205e-09 0.00440391)
(0.00347044 -2.80098e-09 0.00311709)
(0.00269484 -3.56027e-09 0.00169397)
(0.00197032 -4.69398e-09 0.000140788)
(0.00130928 -6.44319e-09 -0.00153507)
(0.000728789 -9.38595e-09 -0.00332702)
(0.000260649 -1.43425e-08 -0.00523179)
(-7.54353e-05 -1.80974e-08 -0.00721759)
(-0.000133077 -1.30564e-07 -0.00826171)
(-0.00317096 -1.20183e-07 -0.0115032)
(-0.00736989 -2.61985e-08 0.000245321)
(-0.0123483 -1.99633e-09 0.0097057)
(-0.0173464 -1.73987e-09 0.0175712)
(-0.0223082 -1.9351e-09 0.0243779)
(-0.0272427 -2.47739e-09 0.030335)
(-0.0321759 -2.80873e-09 0.0355502)
(-0.0371315 -2.80998e-09 0.040095)
(-0.0421307 -3.01211e-09 0.0440279)
(-0.04719 -3.3603e-09 0.0474021)
(-0.0523205 -3.50313e-09 0.0502681)
(-0.057528 -3.39408e-09 0.0526739)
(-0.0628138 -3.20795e-09 0.0546648)
(-0.0681748 -3.06418e-09 0.0562829)
(-0.0736051 -2.97112e-09 0.057567)
(-0.0790961 -2.90157e-09 0.058552)
(-0.0846377 -2.83999e-09 0.0592696)
(-0.0902185 -2.77998e-09 0.0597478)
(-0.0958264 -2.71006e-09 0.0600115)
(-0.101449 -2.61564e-09 0.0600826)
(-0.107075 -2.48744e-09 0.0599804)
(-0.11269 -2.32783e-09 0.0597218)
(-0.118284 -2.14985e-09 0.0593215)
(-0.123844 -1.96994e-09 0.0587925)
(-0.12936 -1.8035e-09 0.0581462)
(-0.134822 -1.65941e-09 0.0573926)
(-0.140218 -1.5385e-09 0.0565403)
(-0.145539 -1.43621e-09 0.0555972)
(-0.150777 -1.34582e-09 0.0545701)
(-0.155922 -1.26082e-09 0.0534653)
(-0.160967 -1.17815e-09 0.0522883)
(-0.165904 -1.09658e-09 0.051044)
(-0.170726 -1.01735e-09 0.0497371)
(-0.175425 -9.43495e-10 0.0483719)
(-0.179996 -8.77399e-10 0.0469522)
(-0.184432 -8.20969e-10 0.0454817)
(-0.188728 -7.75339e-10 0.0439641)
(-0.192878 -7.40197e-10 0.0424026)
(-0.196878 -7.14611e-10 0.0408005)
(-0.200724 -6.96206e-10 0.0391609)
(-0.20441 -6.82862e-10 0.037487)
(-0.207933 -6.71895e-10 0.0357817)
(-0.21129 -6.60619e-10 0.0340482)
(-0.214476 -6.47072e-10 0.0322892)
(-0.21749 -6.30533e-10 0.0305078)
(-0.220329 -6.10433e-10 0.028707)
(-0.22299 -5.8729e-10 0.0268896)
(-0.225472 -5.62858e-10 0.0250585)
(-0.227772 -5.37602e-10 0.0232168)
(-0.229889 -5.12192e-10 0.0213672)
(-0.231823 -4.87507e-10 0.0195126)
(-0.233571 -4.6334e-10 0.0176559)
(-0.235135 -4.40775e-10 0.0158)
(-0.236514 -4.19191e-10 0.0139475)
(-0.237707 -3.99828e-10 0.0121014)
(-0.238716 -3.82529e-10 0.0102643)
(-0.239541 -3.67193e-10 0.00843879)
(-0.240182 -3.54541e-10 0.0066276)
(-0.240641 -3.43902e-10 0.00483323)
(-0.24092 -3.34709e-10 0.00305817)
(-0.24102 -3.26393e-10 0.00130482)
(-0.240944 -3.18232e-10 -0.000424501)
(-0.240692 -3.09762e-10 -0.00212755)
(-0.240269 -3.00054e-10 -0.00380215)
(-0.239676 -2.8983e-10 -0.00544625)
(-0.238916 -2.79504e-10 -0.00705788)
(-0.237993 -2.68869e-10 -0.00863518)
(-0.23691 -2.58234e-10 -0.0101764)
(-0.23567 -2.48219e-10 -0.0116799)
(-0.234277 -2.38771e-10 -0.0131442)
(-0.232735 -2.30304e-10 -0.0145678)
(-0.231048 -2.22198e-10 -0.0159494)
(-0.229219 -2.14918e-10 -0.0172879)
(-0.227254 -2.08e-10 -0.0185822)
(-0.225156 -2.01236e-10 -0.0198313)
(-0.22293 -1.94524e-10 -0.0210344)
(-0.220581 -1.87606e-10 -0.0221909)
(-0.218113 -1.80172e-10 -0.0232999)
(-0.215531 -1.72274e-10 -0.0243612)
(-0.212839 -1.63808e-10 -0.0253743)
(-0.210043 -1.54621e-10 -0.0263388)
(-0.207147 -1.44557e-10 -0.0272548)
(-0.204156 -1.33925e-10 -0.028122)
(-0.201076 -1.22158e-10 -0.0289405)
(-0.197911 -1.09927e-10 -0.0297104)
(-0.194665 -9.73352e-11 -0.030432)
(-0.191345 -8.39694e-11 -0.0311055)
(-0.187954 -7.04486e-11 -0.0317313)
(-0.184498 -5.60508e-11 -0.03231)
(-0.180982 -4.16012e-11 -0.032842)
(-0.17741 -2.69965e-11 -0.033328)
(-0.173786 -1.13599e-11 -0.0337686)
(-0.170117 3.96761e-12 -0.0341647)
(-0.166405 2.00177e-11 -0.0345169)
(-0.162656 3.70484e-11 -0.0348263)
(-0.158874 5.40797e-11 -0.0350937)
(-0.155064 7.16274e-11 -0.03532)
(-0.15123 9.01044e-11 -0.0355064)
(-0.147375 1.09046e-10 -0.0356537)
(-0.143505 1.28247e-10 -0.0357632)
(-0.139623 1.48584e-10 -0.0358358)
(-0.135732 1.69076e-10 -0.0358728)
(-0.131837 1.90344e-10 -0.0358753)
(-0.127941 2.11922e-10 -0.0358444)
(-0.124049 2.3381e-10 -0.0357814)
(-0.120162 2.56526e-10 -0.0356873)
(-0.116285 2.79553e-10 -0.0355635)
(-0.112421 3.02581e-10 -0.035411)
(-0.108573 3.26849e-10 -0.0352311)
(-0.104743 3.51016e-10 -0.035025)
(-0.100936 3.75597e-10 -0.0347936)
(-0.0971525 4.01315e-10 -0.0345383)
(-0.0933965 4.26829e-10 -0.0342601)
(-0.0896703 4.52965e-10 -0.0339601)
(-0.0859761 4.79102e-10 -0.0336393)
(-0.0823164 5.05758e-10 -0.0332987)
(-0.0786934 5.32933e-10 -0.0329394)
(-0.0751093 5.60213e-10 -0.0325622)
(-0.0715661 5.88013e-10 -0.032168)
(-0.0680657 6.15918e-10 -0.0317577)
(-0.0646101 6.43723e-10 -0.0313321)
(-0.061201 6.7215e-10 -0.0308918)
(-0.0578402 7.00581e-10 -0.0304377)
(-0.0545293 7.29428e-10 -0.0299701)
(-0.05127 7.58071e-10 -0.0294898)
(-0.0480637 7.86925e-10 -0.0289973)
(-0.0449119 8.15576e-10 -0.0284928)
(-0.0418161 8.44643e-10 -0.0279769)
(-0.0387776 8.73508e-10 -0.0274497)
(-0.0357979 9.02273e-10 -0.0269116)
(-0.0328781 9.31043e-10 -0.0263627)
(-0.0300197 9.58887e-10 -0.0258031)
(-0.0272239 9.86838e-10 -0.0252328)
(-0.024492 1.01407e-09 -0.0246518)
(-0.0218252 1.0412e-09 -0.0240601)
(-0.0192247 1.06689e-09 -0.0234575)
(-0.0166917 1.09311e-09 -0.0228439)
(-0.0142276 1.11777e-09 -0.0222191)
(-0.0118335 1.14203e-09 -0.0215828)
(-0.00951069 1.16443e-09 -0.0209347)
(-0.0072604 1.18529e-09 -0.0202746)
(-0.00508388 1.20511e-09 -0.0196022)
(-0.00298238 1.22391e-09 -0.0189171)
(-0.000957199 1.24002e-09 -0.0182191)
(0.000990492 1.25376e-09 -0.0175078)
(0.00285926 1.26574e-09 -0.0167831)
(0.00464795 1.27442e-09 -0.0160446)
(0.0063553 1.28124e-09 -0.0152921)
(0.00798008 1.28495e-09 -0.0145257)
(0.00952109 1.28484e-09 -0.0137451)
(0.0109772 1.28152e-09 -0.0129506)
(0.0123471 1.27479e-09 -0.0121424)
(0.01363 1.26526e-09 -0.0113206)
(0.0148246 1.25159e-09 -0.0104858)
(0.0159302 1.23533e-09 -0.00963846)
(0.0169457 1.21524e-09 -0.00877944)
(0.0178705 1.19069e-09 -0.00790963)
(0.018704 1.16241e-09 -0.00703014)
(0.0194456 1.13009e-09 -0.0061423)
(0.020095 1.09392e-09 -0.00524764)
(0.0206521 1.05433e-09 -0.00434794)
(0.0211169 1.01163e-09 -0.00344521)
(0.0214896 9.65902e-10 -0.00254171)
(0.0217709 9.17887e-10 -0.00163995)
(0.0219613 8.68615e-10 -0.000742718)
(0.0220619 8.1788e-10 0.00014692)
(0.0220741 7.66406e-10 0.00102562)
(0.0219994 7.14192e-10 0.00188977)
(0.0218399 6.61549e-10 0.00273543)
(0.0215978 6.07129e-10 0.00355839)
(0.0212758 5.5031e-10 0.00435416)
(0.0208769 4.91194e-10 0.00511793)
(0.0204046 4.27914e-10 0.00584464)
(0.0198627 3.59327e-10 0.00652892)
(0.0192553 2.83461e-10 0.00716515)
(0.0185869 2.00936e-10 0.00774744)
(0.0178625 1.11127e-10 0.00826965)
(0.0170874 1.57961e-11 0.00872543)
(0.0162671 -8.30844e-11 0.00910819)
(0.0154076 -1.81984e-10 0.00941119)
(0.0145148 -2.81109e-10 0.00962752)
(0.0135952 -3.78587e-10 0.00975017)
(0.0126551 -4.80023e-10 0.00977209)
(0.011701 -5.8957e-10 0.00968629)
(0.0107394 -7.17616e-10 0.00948588)
(0.00977634 -8.71019e-10 0.00916426)
(0.00881807 -1.05913e-09 0.00871524)
(0.00787031 -1.2803e-09 0.0081333)
(0.00693848 -1.52638e-09 0.00741382)
(0.00602767 -1.77907e-09 0.00655336)
(0.00514274 -2.02998e-09 0.00555005)
(0.00428855 -2.33204e-09 0.00440391)
(0.00347041 -2.80097e-09 0.00311709)
(0.0026948 -3.56026e-09 0.00169396)
(0.00197028 -4.69397e-09 0.000140768)
(0.00130923 -6.44317e-09 -0.0015351)
(0.000728713 -9.38592e-09 -0.00332706)
(0.000260531 -1.43425e-08 -0.00523183)
(-7.57175e-05 -1.80974e-08 -0.00721765)
(-0.00013361 -1.30564e-07 -0.00826177)
(-0.00362816 -1.39201e-07 -0.00605236)
(-0.00837683 -2.57553e-08 0.00589418)
(-0.013844 -1.64398e-09 0.0152617)
(-0.0192645 -1.54179e-09 0.0230274)
(-0.0245718 -1.77995e-09 0.0297534)
(-0.0297878 -2.27993e-09 0.0356576)
(-0.0349441 -2.53216e-09 0.0408494)
(-0.0400691 -2.46844e-09 0.0453981)
(-0.0451882 -2.62203e-09 0.0493579)
(-0.0503221 -2.92472e-09 0.0527766)
(-0.0554864 -3.02619e-09 0.0556989)
(-0.0606913 -2.88802e-09 0.0581677)
(-0.0659424 -2.68739e-09 0.0602235)
(-0.0712413 -2.54397e-09 0.0619044)
(-0.0765859 -2.46521e-09 0.0632459)
(-0.0819717 -2.42213e-09 0.0642808)
(-0.087392 -2.39467e-09 0.0650387)
(-0.0928383 -2.37134e-09 0.0655466)
(-0.0983015 -2.33707e-09 0.0658285)
(-0.103771 -2.27334e-09 0.065906)
(-0.109238 -2.16776e-09 0.0657983)
(-0.11469 -2.02179e-09 0.0655221)
(-0.120117 -1.84929e-09 0.0650927)
(-0.12551 -1.66974e-09 0.0645231)
(-0.130857 -1.50102e-09 0.0638253)
(-0.136149 -1.35717e-09 0.0630095)
(-0.141377 -1.24144e-09 0.0620851)
(-0.146532 -1.15156e-09 0.0610602)
(-0.151604 -1.08039e-09 0.0599422)
(-0.156587 -1.01873e-09 0.0587379)
(-0.161471 -9.6074e-10 0.0574531)
(-0.16625 -9.03175e-10 0.0560933)
(-0.170916 -8.45308e-10 0.0546637)
(-0.175464 -7.89409e-10 0.0531687)
(-0.179886 -7.3708e-10 0.0516129)
(-0.184177 -6.90796e-10 0.0500002)
(-0.188331 -6.52416e-10 0.0483347)
(-0.192344 -6.22454e-10 0.0466199)
(-0.19621 -6.00806e-10 0.0448596)
(-0.199925 -5.86696e-10 0.0430573)
(-0.203484 -5.77903e-10 0.0412163)
(-0.206885 -5.72363e-10 0.0393401)
(-0.210123 -5.67236e-10 0.037432)
(-0.213195 -5.60303e-10 0.0354952)
(-0.216099 -5.5012e-10 0.0335332)
(-0.218832 -5.36377e-10 0.0315491)
(-0.22139 -5.19126e-10 0.0295461)
(-0.223774 -4.99761e-10 0.0275276)
(-0.22598 -4.7952e-10 0.0254967)
(-0.228008 -4.59435e-10 0.0234567)
(-0.229855 -4.39867e-10 0.0214107)
(-0.231523 -4.21127e-10 0.0193619)
(-0.233009 -4.03367e-10 0.0173135)
(-0.234315 -3.86486e-10 0.0152685)
(-0.235439 -3.70999e-10 0.01323)
(-0.236383 -3.57421e-10 0.011201)
(-0.237146 -3.45443e-10 0.00918452)
(-0.23773 -3.35684e-10 0.00718337)
(-0.238136 -3.27938e-10 0.00520042)
(-0.238365 -3.22151e-10 0.0032384)
(-0.238419 -3.175e-10 0.00129999)
(-0.2383 -3.13004e-10 -0.000612233)
(-0.238009 -3.08457e-10 -0.00249577)
(-0.237551 -3.0329e-10 -0.00434823)
(-0.236926 -2.9766e-10 -0.0061673)
(-0.236138 -2.91515e-10 -0.0079508)
(-0.235189 -2.85266e-10 -0.00969668)
(-0.234084 -2.79121e-10 -0.011403)
(-0.232825 -2.73338e-10 -0.0130678)
(-0.231416 -2.68019e-10 -0.0146896)
(-0.22986 -2.63576e-10 -0.0162666)
(-0.228162 -2.59702e-10 -0.0177975)
(-0.226325 -2.56291e-10 -0.019281)
(-0.224355 -2.53087e-10 -0.0207157)
(-0.222254 -2.50244e-10 -0.0221007)
(-0.220027 -2.4735e-10 -0.023435)
(-0.217679 -2.44198e-10 -0.0247178)
(-0.215215 -2.40118e-10 -0.0259484)
(-0.212638 -2.3578e-10 -0.0271263)
(-0.209954 -2.30514e-10 -0.0282509)
(-0.207167 -2.2432e-10 -0.0293221)
(-0.204282 -2.17301e-10 -0.0303395)
(-0.201305 -2.09406e-10 -0.031303)
(-0.198239 -2.00685e-10 -0.0322128)
(-0.195089 -1.91656e-10 -0.0330688)
(-0.191861 -1.81543e-10 -0.0338714)
(-0.188559 -1.7107e-10 -0.0346208)
(-0.185188 -1.60235e-10 -0.0353174)
(-0.181753 -1.48524e-10 -0.0359618)
(-0.178259 -1.37123e-10 -0.0365546)
(-0.17471 -1.24896e-10 -0.0370964)
(-0.17111 -1.12514e-10 -0.0375879)
(-0.167465 -9.93588e-11 -0.0380301)
(-0.163779 -8.5636e-11 -0.0384237)
(-0.160057 -7.1655e-11 -0.0387696)
(-0.156303 -5.67455e-11 -0.0390691)
(-0.15252 -4.13715e-11 -0.0393229)
(-0.148714 -2.57392e-11 -0.0395324)
(-0.144889 -9.07497e-12 -0.0396985)
(-0.141048 8.36336e-12 -0.0398225)
(-0.137195 2.63696e-11 -0.0399056)
(-0.133335 4.50986e-11 -0.0399491)
(-0.129471 6.46535e-11 -0.0399542)
(-0.125606 8.42093e-11 -0.0399221)
(-0.121745 1.0454e-10 -0.0398542)
(-0.11789 1.25284e-10 -0.0397518)
(-0.114045 1.46751e-10 -0.0396161)
(-0.110213 1.68684e-10 -0.0394485)
(-0.106397 1.91288e-10 -0.0392503)
(-0.102601 2.14255e-10 -0.0390227)
(-0.0988258 2.37945e-10 -0.0387671)
(-0.0950757 2.61586e-10 -0.0384846)
(-0.091353 2.8626e-10 -0.0381764)
(-0.0876601 3.11555e-10 -0.0378438)
(-0.0839994 3.36954e-10 -0.037488)
(-0.0803734 3.62717e-10 -0.0371099)
(-0.0767843 3.89256e-10 -0.0367108)
(-0.0732341 4.16004e-10 -0.0362916)
(-0.069725 4.43579e-10 -0.0358534)
(-0.0662588 4.70641e-10 -0.035397)
(-0.0628376 4.98428e-10 -0.0349233)
(-0.059463 5.26734e-10 -0.0344331)
(-0.0561368 5.55042e-10 -0.0339272)
(-0.0528607 5.84076e-10 -0.0334063)
(-0.0496362 6.12804e-10 -0.0328709)
(-0.0464649 6.4205e-10 -0.0323217)
(-0.0433482 6.7099e-10 -0.031759)
(-0.0402876 7.0045e-10 -0.0311834)
(-0.0372845 7.29604e-10 -0.0305951)
(-0.0343402 7.59381e-10 -0.0299945)
(-0.0314561 7.88541e-10 -0.0293817)
(-0.0286333 8.175e-10 -0.0287568)
(-0.0258732 8.45842e-10 -0.0281199)
(-0.023177 8.73982e-10 -0.027471)
(-0.020546 9.02023e-10 -0.0268101)
(-0.0179813 9.29345e-10 -0.0261371)
(-0.0154841 9.55948e-10 -0.0254517)
(-0.0130556 9.82246e-10 -0.0247538)
(-0.0106971 1.00731e-09 -0.0240432)
(-0.00840971 1.03051e-09 -0.0233195)
(-0.00619463 1.05269e-09 -0.0225826)
(-0.00405305 1.07291e-09 -0.0218319)
(-0.00198618 1.0922e-09 -0.0210674)
(4.81901e-06 1.10871e-09 -0.0202886)
(0.00191872 1.12346e-09 -0.0194953)
(0.00375433 1.13522e-09 -0.0186872)
(0.0055105 1.14419e-09 -0.0178641)
(0.0071861 1.1514e-09 -0.0170258)
(0.00877998 1.15459e-09 -0.0161722)
(0.0102911 1.15425e-09 -0.0153035)
(0.0117183 1.1501e-09 -0.0144196)
(0.0130606 1.14345e-09 -0.0135208)
(0.0143171 1.13288e-09 -0.0126075)
(0.0154869 1.11879e-09 -0.0116802)
(0.0165691 1.10087e-09 -0.0107396)
(0.0175631 1.07922e-09 -0.00978645)
(0.0184682 1.05405e-09 -0.00882189)
(0.0192839 1.02462e-09 -0.00784716)
(0.02001 9.90538e-10 -0.00686373)
(0.0206461 9.53442e-10 -0.00587331)
(0.0211923 9.12197e-10 -0.00487787)
(0.0216487 8.68249e-10 -0.00387964)
(0.0220157 8.21701e-10 -0.00288111)
(0.0222939 7.72553e-10 -0.00188504)
(0.0224842 7.2277e-10 -0.000894502)
(0.0225876 6.71213e-10 8.71572e-05)
(0.0226056 6.19436e-10 0.00105629)
(0.0225397 5.66506e-10 0.00200893)
(0.0223921 5.12939e-10 0.00294082)
(0.0221649 4.57908e-10 0.0038474)
(0.0218609 4.00376e-10 0.0047238)
(0.0214829 3.39926e-10 0.00556486)
(0.0210342 2.73656e-10 0.00636512)
(0.0205186 2.01771e-10 0.00711885)
(0.0199399 1.21158e-10 0.00782006)
(0.0193024 3.2852e-11 0.0084625)
(0.0186107 -6.41873e-11 0.00903971)
(0.0178698 -1.68198e-10 0.00954501)
(0.0170846 -2.769e-10 0.00997156)
(0.0162606 -3.87905e-10 0.0103124)
(0.0154032 -5.00382e-10 0.0105603)
(0.014518 -6.13187e-10 0.0107084)
(0.0136107 -7.30572e-10 0.0107494)
(0.0126868 -8.58766e-10 0.0106765)
(0.0117519 -1.00607e-09 0.0104829)
(0.0108112 -1.18039e-09 0.0101621)
(0.00986986 -1.39022e-09 0.00970845)
(0.00893253 -1.63454e-09 0.00911661)
(0.0080036 -1.90647e-09 0.00838235)
(0.0070871 -2.18187e-09 0.00750256)
(0.00618687 -2.459e-09 0.00647549)
(0.0053067 -2.79245e-09 0.00530094)
(0.00445071 -3.31944e-09 0.00398036)
(0.00362387 -4.17148e-09 0.00251663)
(0.00283268 -5.42565e-09 0.000913526)
(0.0020863 -7.32921e-09 -0.000825614)
(0.001397 -1.05356e-08 -0.00270013)
(0.000789666 -1.59743e-08 -0.00471676)
(0.000284323 -2.06703e-08 -0.00687033)
(1.26778e-05 -1.29308e-07 -0.00825666)
(-0.00362848 -1.392e-07 -0.00605227)
(-0.00837693 -2.5755e-08 0.00589421)
(-0.013844 -1.64396e-09 0.0152617)
(-0.0192644 -1.54177e-09 0.0230274)
(-0.0245717 -1.77992e-09 0.0297533)
(-0.0297878 -2.27989e-09 0.0356575)
(-0.034944 -2.53212e-09 0.0408493)
(-0.040069 -2.4684e-09 0.0453981)
(-0.0451881 -2.62199e-09 0.0493578)
(-0.0503221 -2.92468e-09 0.0527765)
(-0.0554863 -3.02615e-09 0.0556989)
(-0.0606912 -2.88798e-09 0.0581677)
(-0.0659423 -2.68735e-09 0.0602234)
(-0.0712412 -2.54393e-09 0.0619043)
(-0.0765858 -2.46517e-09 0.0632458)
(-0.0819716 -2.4221e-09 0.0642807)
(-0.0873919 -2.39464e-09 0.0650386)
(-0.0928382 -2.37131e-09 0.0655465)
(-0.0983014 -2.33704e-09 0.0658285)
(-0.103771 -2.27331e-09 0.065906)
(-0.109238 -2.16773e-09 0.0657982)
(-0.11469 -2.02177e-09 0.0655221)
(-0.120117 -1.84927e-09 0.0650926)
(-0.12551 -1.66972e-09 0.0645231)
(-0.130857 -1.501e-09 0.0638252)
(-0.136149 -1.35716e-09 0.0630095)
(-0.141377 -1.24143e-09 0.062085)
(-0.146532 -1.15155e-09 0.0610602)
(-0.151604 -1.08038e-09 0.0599422)
(-0.156587 -1.01872e-09 0.0587379)
(-0.161471 -9.60732e-10 0.0574531)
(-0.16625 -9.03168e-10 0.0560933)
(-0.170916 -8.45301e-10 0.0546636)
(-0.175464 -7.89403e-10 0.0531687)
(-0.179886 -7.37074e-10 0.0516129)
(-0.184177 -6.90791e-10 0.0500002)
(-0.188331 -6.52411e-10 0.0483346)
(-0.192344 -6.2245e-10 0.0466199)
(-0.19621 -6.00802e-10 0.0448596)
(-0.199925 -5.86692e-10 0.0430573)
(-0.203484 -5.77899e-10 0.0412163)
(-0.206885 -5.72359e-10 0.0393401)
(-0.210123 -5.67232e-10 0.037432)
(-0.213195 -5.603e-10 0.0354952)
(-0.216099 -5.50117e-10 0.0335332)
(-0.218831 -5.36374e-10 0.0315491)
(-0.22139 -5.19123e-10 0.0295461)
(-0.223774 -4.99758e-10 0.0275276)
(-0.22598 -4.79517e-10 0.0254967)
(-0.228007 -4.59432e-10 0.0234567)
(-0.229855 -4.39865e-10 0.0214107)
(-0.231523 -4.21125e-10 0.0193619)
(-0.233009 -4.03365e-10 0.0173135)
(-0.234315 -3.86484e-10 0.0152685)
(-0.235439 -3.70997e-10 0.01323)
(-0.236382 -3.5742e-10 0.011201)
(-0.237146 -3.45442e-10 0.00918453)
(-0.23773 -3.35683e-10 0.00718338)
(-0.238136 -3.27936e-10 0.00520042)
(-0.238365 -3.2215e-10 0.00323841)
(-0.238419 -3.17499e-10 0.0013)
(-0.2383 -3.13003e-10 -0.000612225)
(-0.238009 -3.08455e-10 -0.00249577)
(-0.237551 -3.03289e-10 -0.00434822)
(-0.236926 -2.97659e-10 -0.00616729)
(-0.236138 -2.91514e-10 -0.00795079)
(-0.235189 -2.85265e-10 -0.00969667)
(-0.234084 -2.7912e-10 -0.011403)
(-0.232825 -2.73337e-10 -0.0130678)
(-0.231416 -2.68018e-10 -0.0146896)
(-0.22986 -2.63575e-10 -0.0162666)
(-0.228162 -2.59701e-10 -0.0177975)
(-0.226325 -2.5629e-10 -0.019281)
(-0.224355 -2.53086e-10 -0.0207157)
(-0.222254 -2.50243e-10 -0.0221007)
(-0.220027 -2.47349e-10 -0.023435)
(-0.217679 -2.44197e-10 -0.0247178)
(-0.215214 -2.40117e-10 -0.0259484)
(-0.212638 -2.35779e-10 -0.0271263)
(-0.209954 -2.30513e-10 -0.0282509)
(-0.207167 -2.24319e-10 -0.0293221)
(-0.204282 -2.17301e-10 -0.0303395)
(-0.201305 -2.09405e-10 -0.031303)
(-0.198238 -2.00685e-10 -0.0322127)
(-0.195089 -1.91655e-10 -0.0330688)
(-0.191861 -1.81543e-10 -0.0338713)
(-0.188559 -1.71069e-10 -0.0346208)
(-0.185188 -1.60235e-10 -0.0353174)
(-0.181753 -1.48524e-10 -0.0359618)
(-0.178259 -1.37122e-10 -0.0365546)
(-0.174709 -1.24896e-10 -0.0370964)
(-0.17111 -1.12514e-10 -0.0375879)
(-0.167465 -9.93586e-11 -0.03803)
(-0.163779 -8.56358e-11 -0.0384236)
(-0.160057 -7.16548e-11 -0.0387696)
(-0.156302 -5.67454e-11 -0.039069)
(-0.15252 -4.13714e-11 -0.0393229)
(-0.148714 -2.57391e-11 -0.0395323)
(-0.144889 -9.07495e-12 -0.0396985)
(-0.141048 8.36334e-12 -0.0398225)
(-0.137195 2.63695e-11 -0.0399056)
(-0.133335 4.50985e-11 -0.0399491)
(-0.129471 6.46534e-11 -0.0399541)
(-0.125606 8.42091e-11 -0.0399221)
(-0.121745 1.04539e-10 -0.0398542)
(-0.11789 1.25283e-10 -0.0397518)
(-0.114045 1.46751e-10 -0.0396161)
(-0.110213 1.68683e-10 -0.0394485)
(-0.106397 1.91288e-10 -0.0392503)
(-0.102601 2.14254e-10 -0.0390227)
(-0.0988258 2.37945e-10 -0.0387671)
(-0.0950757 2.61585e-10 -0.0384845)
(-0.0913529 2.86259e-10 -0.0381764)
(-0.08766 3.11554e-10 -0.0378438)
(-0.0839994 3.36954e-10 -0.037488)
(-0.0803734 3.62717e-10 -0.0371099)
(-0.0767843 3.89256e-10 -0.0367108)
(-0.0732341 4.16003e-10 -0.0362916)
(-0.069725 4.43579e-10 -0.0358534)
(-0.0662588 4.7064e-10 -0.035397)
(-0.0628376 4.98427e-10 -0.0349233)
(-0.059463 5.26733e-10 -0.0344331)
(-0.0561368 5.55041e-10 -0.0339272)
(-0.0528606 5.84075e-10 -0.0334063)
(-0.0496362 6.12803e-10 -0.0328709)
(-0.0464648 6.42049e-10 -0.0323217)
(-0.0433482 6.70989e-10 -0.031759)
(-0.0402876 7.00449e-10 -0.0311834)
(-0.0372845 7.29603e-10 -0.0305951)
(-0.0343402 7.59379e-10 -0.0299945)
(-0.0314561 7.8854e-10 -0.0293817)
(-0.0286333 8.17498e-10 -0.0287568)
(-0.0258732 8.45841e-10 -0.0281199)
(-0.023177 8.73981e-10 -0.027471)
(-0.020546 9.02022e-10 -0.0268101)
(-0.0179812 9.29344e-10 -0.0261371)
(-0.0154841 9.55947e-10 -0.0254517)
(-0.0130556 9.82244e-10 -0.0247539)
(-0.0106971 1.00731e-09 -0.0240432)
(-0.00840969 1.03051e-09 -0.0233196)
(-0.00619461 1.05269e-09 -0.0225826)
(-0.00405303 1.07291e-09 -0.0218319)
(-0.00198616 1.0922e-09 -0.0210674)
(4.83979e-06 1.10871e-09 -0.0202886)
(0.00191874 1.12346e-09 -0.0194953)
(0.00375435 1.13522e-09 -0.0186872)
(0.00551053 1.14419e-09 -0.0178641)
(0.00718612 1.1514e-09 -0.0170258)
(0.00878 1.15458e-09 -0.0161722)
(0.0102911 1.15425e-09 -0.0153035)
(0.0117183 1.15009e-09 -0.0144196)
(0.0130606 1.14345e-09 -0.0135208)
(0.0143171 1.13288e-09 -0.0126075)
(0.0154869 1.11879e-09 -0.0116802)
(0.0165691 1.10087e-09 -0.0107396)
(0.0175631 1.07922e-09 -0.00978645)
(0.0184682 1.05404e-09 -0.00882189)
(0.019284 1.02462e-09 -0.00784716)
(0.02001 9.90537e-10 -0.00686372)
(0.0206461 9.53442e-10 -0.00587331)
(0.0211923 9.12196e-10 -0.00487787)
(0.0216487 8.68248e-10 -0.00387964)
(0.0220157 8.21701e-10 -0.0028811)
(0.0222939 7.72552e-10 -0.00188503)
(0.0224842 7.2277e-10 -0.000894493)
(0.0225876 6.71213e-10 8.71686e-05)
(0.0226056 6.19436e-10 0.0010563)
(0.0225397 5.66505e-10 0.00200894)
(0.0223921 5.12939e-10 0.00294084)
(0.0221649 4.57908e-10 0.00384742)
(0.0218609 4.00376e-10 0.00472382)
(0.0214829 3.39926e-10 0.00556488)
(0.0210342 2.73656e-10 0.00636514)
(0.0205186 2.01771e-10 0.00711887)
(0.0199399 1.21158e-10 0.00782008)
(0.0193024 3.2852e-11 0.00846253)
(0.0186107 -6.41873e-11 0.00903974)
(0.0178698 -1.68198e-10 0.00954504)
(0.0170846 -2.769e-10 0.00997159)
(0.0162606 -3.87905e-10 0.0103124)
(0.0154032 -5.00382e-10 0.0105604)
(0.014518 -6.13187e-10 0.0107084)
(0.0136107 -7.30572e-10 0.0107495)
(0.0126868 -8.58765e-10 0.0106765)
(0.0117519 -1.00607e-09 0.0104829)
(0.0108112 -1.18039e-09 0.0101622)
(0.00986985 -1.39022e-09 0.00970847)
(0.00893252 -1.63454e-09 0.00911663)
(0.00800358 -1.90647e-09 0.00838237)
(0.00708708 -2.18186e-09 0.00750258)
(0.00618685 -2.459e-09 0.0064755)
(0.00530667 -2.79244e-09 0.00530095)
(0.00445068 -3.31943e-09 0.00398035)
(0.00362384 -4.17147e-09 0.00251662)
(0.00283263 -5.42564e-09 0.000913509)
(0.00208624 -7.32918e-09 -0.000825638)
(0.00139692 -1.05356e-08 -0.00270016)
(0.000789552 -1.59743e-08 -0.0047168)
(0.000284056 -2.06703e-08 -0.00687039)
(1.21699e-05 -1.29308e-07 -0.00825673)
(-0.00396328 -1.5353e-07 2.4492e-05)
(-0.00913922 -2.46169e-08 0.0120593)
(-0.0150044 -9.32008e-10 0.0212582)
(-0.0207829 -1.23947e-09 0.0288569)
(-0.026396 -1.62957e-09 0.0354416)
(-0.0318713 -2.15163e-09 0.0412374)
(-0.0372423 -2.3719e-09 0.0463538)
(-0.0425395 -2.27707e-09 0.0508577)
(-0.0477904 -2.39643e-09 0.054799)
(-0.0530181 -2.65707e-09 0.0582202)
(-0.0582409 -2.71533e-09 0.0611608)
(-0.063472 -2.54069e-09 0.0636583)
(-0.0687204 -2.31405e-09 0.0657488)
(-0.0739909 -2.15567e-09 0.0674662)
(-0.0792847 -2.07369e-09 0.0688428)
(-0.0846004 -2.03958e-09 0.0699085)
(-0.0899342 -2.03161e-09 0.070691)
(-0.0952803 -2.03677e-09 0.0712157)
(-0.100632 -2.03489e-09 0.0715055)
(-0.105981 -2.00512e-09 0.0715812)
(-0.111319 -1.93066e-09 0.0714615)
(-0.116637 -1.80962e-09 0.0711631)
(-0.121926 -1.65343e-09 0.0707011)
(-0.127176 -1.48141e-09 0.0700888)
(-0.132379 -1.31442e-09 0.0693381)
(-0.137526 -1.16842e-09 0.0684599)
(-0.142608 -1.05234e-09 0.0674635)
(-0.147616 -9.67105e-10 0.0663578)
(-0.152543 -9.05626e-10 0.0651503)
(-0.15738 -8.59488e-10 0.0638481)
(-0.16212 -8.19292e-10 0.0624577)
(-0.166757 -7.80134e-10 0.0609848)
(-0.171283 -7.39121e-10 0.059435)
(-0.175692 -6.96462e-10 0.0578133)
(-0.179978 -6.53807e-10 0.0561243)
(-0.184135 -6.13169e-10 0.0543726)
(-0.188159 -5.77179e-10 0.0525625)
(-0.192043 -5.47283e-10 0.050698)
(-0.195784 -5.24819e-10 0.0487831)
(-0.199376 -5.09943e-10 0.0468216)
(-0.202817 -5.01621e-10 0.0448173)
(-0.206101 -4.97633e-10 0.0427739)
(-0.209226 -4.95451e-10 0.0406952)
(-0.212189 -4.92547e-10 0.0385846)
(-0.214987 -4.86651e-10 0.0364458)
(-0.217616 -4.77145e-10 0.0342825)
(-0.220076 -4.64028e-10 0.0320981)
(-0.222363 -4.48075e-10 0.0298961)
(-0.224477 -4.30833e-10 0.0276802)
(-0.226416 -4.1318e-10 0.0254539)
(-0.228179 -3.96354e-10 0.0232206)
(-0.229765 -3.80302e-10 0.0209838)
(-0.231174 -3.64818e-10 0.018747)
(-0.232405 -3.50316e-10 0.0165135)
(-0.233459 -3.36794e-10 0.0142867)
(-0.234335 -3.24355e-10 0.0120698)
(-0.235035 -3.13671e-10 0.00986624)
(-0.235559 -3.04844e-10 0.00767905)
(-0.235908 -2.9808e-10 0.00551136)
(-0.236084 -2.93327e-10 0.00336619)
(-0.236088 -2.90224e-10 0.00124646)
(-0.235922 -2.87689e-10 -0.000845)
(-0.235589 -2.85412e-10 -0.00290544)
(-0.23509 -2.82774e-10 -0.00493222)
(-0.234428 -2.79672e-10 -0.00692283)
(-0.233606 -2.76571e-10 -0.00887486)
(-0.232627 -2.73108e-10 -0.010786)
(-0.231494 -2.69595e-10 -0.0126542)
(-0.23021 -2.66236e-10 -0.0144774)
(-0.228778 -2.63393e-10 -0.0162536)
(-0.227203 -2.61427e-10 -0.0179813)
(-0.225488 -2.59564e-10 -0.0196586)
(-0.223637 -2.58216e-10 -0.0212843)
(-0.221654 -2.57333e-10 -0.0228569)
(-0.219543 -2.56553e-10 -0.0243753)
(-0.217309 -2.5536e-10 -0.0258384)
(-0.214956 -2.5391e-10 -0.0272453)
(-0.212488 -2.52099e-10 -0.0285952)
(-0.209911 -2.49103e-10 -0.0298876)
(-0.207227 -2.45643e-10 -0.0311218)
(-0.204443 -2.411e-10 -0.0322975)
(-0.201563 -2.35785e-10 -0.0334146)
(-0.198591 -2.2949e-10 -0.0344728)
(-0.195533 -2.22318e-10 -0.0354721)
(-0.192393 -2.14477e-10 -0.0364127)
(-0.189176 -2.06121e-10 -0.0372947)
(-0.185886 -1.96991e-10 -0.0381186)
(-0.182529 -1.87501e-10 -0.0388847)
(-0.179108 -1.77752e-10 -0.0395937)
(-0.17563 -1.67489e-10 -0.040246)
(-0.172098 -1.56812e-10 -0.0408425)
(-0.168517 -1.45724e-10 -0.0413839)
(-0.164891 -1.34326e-10 -0.0418711)
(-0.161226 -1.22464e-10 -0.0423051)
(-0.157524 -1.09674e-10 -0.0426868)
(-0.153792 -9.64192e-11 -0.0430175)
(-0.150032 -8.25975e-11 -0.0432981)
(-0.14625 -6.82084e-11 -0.0435299)
(-0.142449 -5.29941e-11 -0.0437142)
(-0.138633 -3.71092e-11 -0.0438522)
(-0.134806 -2.06567e-11 -0.0439452)
(-0.130972 -3.53336e-12 -0.0439946)
(-0.127135 1.4467e-11 -0.0440017)
(-0.123298 3.27775e-11 -0.043968)
(-0.119464 5.16042e-11 -0.0438949)
(-0.115638 7.10506e-11 -0.0437836)
(-0.111822 9.11166e-11 -0.0436358)
(-0.10802 1.11596e-10 -0.0434527)
(-0.104234 1.32695e-10 -0.0432358)
(-0.100467 1.54311e-10 -0.0429865)
(-0.0967231 1.76496e-10 -0.0427062)
(-0.0930041 1.99301e-10 -0.0423962)
(-0.0893127 2.22365e-10 -0.0420579)
(-0.0856515 2.46256e-10 -0.0416925)
(-0.082023 2.70354e-10 -0.0413013)
(-0.0784294 2.9528e-10 -0.0408856)
(-0.074873 3.20362e-10 -0.0404465)
(-0.0713558 3.46014e-10 -0.0399851)
(-0.0678801 3.71977e-10 -0.0395025)
(-0.0644476 3.98561e-10 -0.0389998)
(-0.0610602 4.25044e-10 -0.0384778)
(-0.0577199 4.52201e-10 -0.0379375)
(-0.0544282 4.79669e-10 -0.0373797)
(-0.0511868 5.07347e-10 -0.0368051)
(-0.0479974 5.3513e-10 -0.0362145)
(-0.0448614 5.63432e-10 -0.0356084)
(-0.0417803 5.91996e-10 -0.0349874)
(-0.0387555 6.20356e-10 -0.0343519)
(-0.0357884 6.48977e-10 -0.0337023)
(-0.0328804 6.77601e-10 -0.033039)
(-0.0300327 7.06023e-10 -0.0323621)
(-0.0272466 7.34242e-10 -0.0316718)
(-0.0245233 7.62257e-10 -0.0309683)
(-0.021864 7.89554e-10 -0.0302514)
(-0.01927 8.16958e-10 -0.0295213)
(-0.0167424 8.43746e-10 -0.0287778)
(-0.0142824 8.69712e-10 -0.0280207)
(-0.0118911 8.95269e-10 -0.0272498)
(-0.00956968 9.19488e-10 -0.026465)
(-0.00731931 9.41541e-10 -0.0256659)
(-0.0051411 9.63082e-10 -0.0248522)
(-0.00303618 9.83078e-10 -0.0240237)
(-0.00100571 1.0006e-09 -0.0231801)
(0.000949282 1.01637e-09 -0.022321)
(0.00282755 1.02966e-09 -0.0214462)
(0.00462809 1.04006e-09 -0.0205553)
(0.00634981 1.04829e-09 -0.0196483)
(0.00799167 1.05353e-09 -0.0187251)
(0.00955262 1.05525e-09 -0.0177854)
(0.0110317 1.05315e-09 -0.0168295)
(0.0124279 1.04795e-09 -0.0158574)
(0.0137405 1.03923e-09 -0.0148694)
(0.0149684 1.027e-09 -0.0138661)
(0.0161111 1.01125e-09 -0.0128479)
(0.0171677 9.92078e-10 -0.0118156)
(0.0181378 9.68976e-10 -0.0107703)
(0.0190207 9.41628e-10 -0.00971297)
(0.0198163 9.10757e-10 -0.00864514)
(0.0205242 8.75844e-10 -0.00756842)
(0.0211443 8.37508e-10 -0.00648467)
(0.0216769 7.95645e-10 -0.00539607)
(0.0221221 7.51185e-10 -0.00430503)
(0.0224805 7.04332e-10 -0.00321427)
(0.0227527 6.55605e-10 -0.00212681)
(0.0229398 6.05933e-10 -0.00104596)
(0.0230428 5.54696e-10 2.46527e-05)
(0.0230632 5.03135e-10 0.00108108)
(0.0230027 4.51044e-10 0.00211908)
(0.0228633 3.9811e-10 0.00313406)
(0.0226473 3.43505e-10 0.00412113)
(0.0223572 2.85987e-10 0.00507511)
(0.021996 2.23688e-10 0.0059905)
(0.0215668 1.56194e-10 0.00686151)
(0.0210731 8.08068e-11 0.00768209)
(0.0205187 -4.13328e-12 0.00844593)
(0.0199074 -9.9459e-11 0.0091465)
(0.0192437 -2.04448e-10 0.00977704)
(0.0185321 -3.18687e-10 0.0103306)
(0.0177771 -4.38965e-10 0.0108003)
(0.0169837 -5.62894e-10 0.0111788)
(0.0161567 -6.89438e-10 0.0114589)
(0.0153012 -8.18594e-10 0.0116337)
(0.014422 -9.54301e-10 0.0116959)
(0.0135241 -1.10247e-09 0.0116388)
(0.0126122 -1.27048e-09 0.0114558)
(0.0116906 -1.46569e-09 0.0111408)
(0.0107637 -1.69577e-09 0.0106883)
(0.00983511 -1.96157e-09 0.0100934)
(0.00890848 -2.25516e-09 0.00935218)
(0.00798693 -2.55429e-09 0.00846192)
(0.00707337 -2.85348e-09 0.00742098)
(0.00617064 -3.21641e-09 0.00622906)
(0.00528177 -3.79559e-09 0.00488712)
(0.00441035 -4.73325e-09 0.00339703)
(0.00356101 -6.09993e-09 0.0017608)
(0.00274032 -8.15531e-09 -2.10341e-05)
(0.00195672 -1.1622e-08 -0.00195237)
(0.00123009 -1.75182e-08 -0.00404816)
(0.000582381 -2.30814e-08 -0.00632829)
(0.000135624 -1.27711e-07 -0.00802275)
(-0.00396359 -1.53529e-07 2.45184e-05)
(-0.00913932 -2.46166e-08 0.0120593)
(-0.0150044 -9.31994e-10 0.0212582)
(-0.0207829 -1.23946e-09 0.0288568)
(-0.0263959 -1.62955e-09 0.0354415)
(-0.0318713 -2.1516e-09 0.0412373)
(-0.0372422 -2.37187e-09 0.0463537)
(-0.0425394 -2.27704e-09 0.0508577)
(-0.0477903 -2.3964e-09 0.0547989)
(-0.0530181 -2.65703e-09 0.0582201)
(-0.0582408 -2.7153e-09 0.0611607)
(-0.063472 -2.54066e-09 0.0636583)
(-0.0687204 -2.31402e-09 0.0657487)
(-0.0739908 -2.15564e-09 0.0674661)
(-0.0792847 -2.07367e-09 0.0688427)
(-0.0846004 -2.03955e-09 0.0699085)
(-0.0899341 -2.03159e-09 0.070691)
(-0.0952802 -2.03674e-09 0.0712156)
(-0.100632 -2.03487e-09 0.0715054)
(-0.105981 -2.0051e-09 0.0715811)
(-0.111319 -1.93064e-09 0.0714614)
(-0.116637 -1.80961e-09 0.0711631)
(-0.121926 -1.65342e-09 0.070701)
(-0.127176 -1.4814e-09 0.0700887)
(-0.132379 -1.31441e-09 0.0693381)
(-0.137526 -1.16841e-09 0.0684598)
(-0.142608 -1.05234e-09 0.0674635)
(-0.147616 -9.67097e-10 0.0663577)
(-0.152543 -9.05619e-10 0.0651502)
(-0.15738 -8.59481e-10 0.0638481)
(-0.16212 -8.19286e-10 0.0624576)
(-0.166757 -7.80128e-10 0.0609848)
(-0.171283 -7.39116e-10 0.059435)
(-0.175692 -6.96457e-10 0.0578132)
(-0.179978 -6.53802e-10 0.0561243)
(-0.184135 -6.13165e-10 0.0543726)
(-0.188159 -5.77176e-10 0.0525625)
(-0.192043 -5.47279e-10 0.050698)
(-0.195784 -5.24816e-10 0.048783)
(-0.199376 -5.0994e-10 0.0468216)
(-0.202817 -5.01617e-10 0.0448173)
(-0.206101 -4.9763e-10 0.0427739)
(-0.209226 -4.95448e-10 0.0406952)
(-0.212189 -4.92544e-10 0.0385846)
(-0.214987 -4.86648e-10 0.0364458)
(-0.217616 -4.77142e-10 0.0342825)
(-0.220076 -4.64025e-10 0.032098)
(-0.222363 -4.48072e-10 0.0298961)
(-0.224477 -4.30831e-10 0.0276802)
(-0.226416 -4.13178e-10 0.0254539)
(-0.228179 -3.96352e-10 0.0232206)
(-0.229765 -3.803e-10 0.0209838)
(-0.231174 -3.64817e-10 0.018747)
(-0.232405 -3.50314e-10 0.0165135)
(-0.233459 -3.36792e-10 0.0142867)
(-0.234335 -3.24354e-10 0.0120698)
(-0.235035 -3.1367e-10 0.00986624)
(-0.235559 -3.04842e-10 0.00767906)
(-0.235908 -2.98078e-10 0.00551137)
(-0.236084 -2.93326e-10 0.00336619)
(-0.236088 -2.90223e-10 0.00124646)
(-0.235922 -2.87688e-10 -0.000844992)
(-0.235589 -2.85411e-10 -0.00290543)
(-0.23509 -2.82773e-10 -0.00493221)
(-0.234428 -2.79671e-10 -0.00692282)
(-0.233606 -2.7657e-10 -0.00887485)
(-0.232627 -2.73107e-10 -0.010786)
(-0.231494 -2.69594e-10 -0.0126542)
(-0.23021 -2.66235e-10 -0.0144774)
(-0.228778 -2.63392e-10 -0.0162536)
(-0.227203 -2.61426e-10 -0.0179812)
(-0.225488 -2.59563e-10 -0.0196586)
(-0.223637 -2.58215e-10 -0.0212843)
(-0.221654 -2.57332e-10 -0.0228569)
(-0.219543 -2.56552e-10 -0.0243753)
(-0.217309 -2.55359e-10 -0.0258384)
(-0.214956 -2.53909e-10 -0.0272453)
(-0.212488 -2.52099e-10 -0.0285952)
(-0.209911 -2.49102e-10 -0.0298875)
(-0.207227 -2.45642e-10 -0.0311218)
(-0.204443 -2.411e-10 -0.0322975)
(-0.201563 -2.35784e-10 -0.0334146)
(-0.198591 -2.29489e-10 -0.0344727)
(-0.195533 -2.22318e-10 -0.0354721)
(-0.192393 -2.14477e-10 -0.0364126)
(-0.189176 -2.0612e-10 -0.0372947)
(-0.185886 -1.96991e-10 -0.0381186)
(-0.182529 -1.875e-10 -0.0388847)
(-0.179108 -1.77752e-10 -0.0395937)
(-0.17563 -1.67488e-10 -0.040246)
(-0.172098 -1.56812e-10 -0.0408425)
(-0.168517 -1.45723e-10 -0.0413839)
(-0.164891 -1.34326e-10 -0.0418711)
(-0.161225 -1.22463e-10 -0.0423051)
(-0.157524 -1.09673e-10 -0.0426868)
(-0.153792 -9.6419e-11 -0.0430175)
(-0.150032 -8.25973e-11 -0.0432981)
(-0.14625 -6.82083e-11 -0.0435299)
(-0.142449 -5.2994e-11 -0.0437142)
(-0.138633 -3.71091e-11 -0.0438522)
(-0.134806 -2.06566e-11 -0.0439452)
(-0.130972 -3.53335e-12 -0.0439946)
(-0.127135 1.4467e-11 -0.0440017)
(-0.123298 3.27774e-11 -0.043968)
(-0.119464 5.16041e-11 -0.0438948)
(-0.115638 7.10504e-11 -0.0437836)
(-0.111822 9.11163e-11 -0.0436358)
(-0.10802 1.11596e-10 -0.0434527)
(-0.104234 1.32695e-10 -0.0432358)
(-0.100467 1.54311e-10 -0.0429865)
(-0.0967231 1.76496e-10 -0.0427062)
(-0.093004 1.993e-10 -0.0423962)
(-0.0893127 2.22364e-10 -0.0420579)
(-0.0856515 2.46255e-10 -0.0416925)
(-0.082023 2.70354e-10 -0.0413013)
(-0.0784294 2.95279e-10 -0.0408856)
(-0.0748729 3.20362e-10 -0.0404465)
(-0.0713558 3.46013e-10 -0.0399851)
(-0.06788 3.71976e-10 -0.0395025)
(-0.0644475 3.9856e-10 -0.0389998)
(-0.0610602 4.25044e-10 -0.0384778)
(-0.0577199 4.522e-10 -0.0379375)
(-0.0544282 4.79668e-10 -0.0373797)
(-0.0511868 5.07346e-10 -0.0368051)
(-0.0479974 5.35129e-10 -0.0362145)
(-0.0448614 5.63431e-10 -0.0356084)
(-0.0417803 5.91995e-10 -0.0349874)
(-0.0387555 6.20354e-10 -0.0343519)
(-0.0357884 6.48976e-10 -0.0337023)
(-0.0328804 6.776e-10 -0.033039)
(-0.0300327 7.06022e-10 -0.0323621)
(-0.0272465 7.3424e-10 -0.0316718)
(-0.0245233 7.62256e-10 -0.0309683)
(-0.021864 7.89553e-10 -0.0302514)
(-0.01927 8.16957e-10 -0.0295213)
(-0.0167424 8.43745e-10 -0.0287778)
(-0.0142824 8.69711e-10 -0.0280207)
(-0.0118911 8.95268e-10 -0.0272498)
(-0.00956967 9.19486e-10 -0.026465)
(-0.00731929 9.4154e-10 -0.0256659)
(-0.00514108 9.63081e-10 -0.0248522)
(-0.00303617 9.83076e-10 -0.0240237)
(-0.0010057 1.0006e-09 -0.0231801)
(0.000949296 1.01637e-09 -0.022321)
(0.00282757 1.02966e-09 -0.0214462)
(0.00462811 1.04006e-09 -0.0205553)
(0.00634983 1.04829e-09 -0.0196484)
(0.00799168 1.05352e-09 -0.0187251)
(0.00955264 1.05525e-09 -0.0177854)
(0.0110317 1.05315e-09 -0.0168295)
(0.012428 1.04795e-09 -0.0158574)
(0.0137405 1.03923e-09 -0.0148694)
(0.0149685 1.027e-09 -0.0138661)
(0.0161111 1.01124e-09 -0.0128479)
(0.0171677 9.92076e-10 -0.0118156)
(0.0181378 9.68975e-10 -0.0107703)
(0.0190208 9.41627e-10 -0.00971297)
(0.0198163 9.10756e-10 -0.00864514)
(0.0205242 8.75843e-10 -0.00756841)
(0.0211443 8.37507e-10 -0.00648467)
(0.0216769 7.95644e-10 -0.00539606)
(0.0221221 7.51184e-10 -0.00430502)
(0.0224805 7.04331e-10 -0.00321426)
(0.0227528 6.55604e-10 -0.0021268)
(0.0229398 6.05933e-10 -0.00104595)
(0.0230428 5.54696e-10 2.46656e-05)
(0.0230632 5.03135e-10 0.0010811)
(0.0230027 4.51043e-10 0.00211909)
(0.0228633 3.98109e-10 0.00313407)
(0.0226473 3.43505e-10 0.00412115)
(0.0223572 2.85987e-10 0.00507513)
(0.021996 2.23688e-10 0.00599052)
(0.0215668 1.56194e-10 0.00686153)
(0.0210731 8.08068e-11 0.00768212)
(0.0205187 -4.13328e-12 0.00844596)
(0.0199074 -9.9459e-11 0.00914653)
(0.0192437 -2.04448e-10 0.00977707)
(0.0185321 -3.18687e-10 0.0103307)
(0.0177771 -4.38964e-10 0.0108003)
(0.0169837 -5.62894e-10 0.0111788)
(0.0161567 -6.89438e-10 0.011459)
(0.0153012 -8.18593e-10 0.0116337)
(0.014422 -9.54301e-10 0.0116959)
(0.0135241 -1.10247e-09 0.0116388)
(0.0126122 -1.27048e-09 0.0114558)
(0.0116906 -1.46568e-09 0.0111408)
(0.0107636 -1.69577e-09 0.0106883)
(0.00983509 -1.96157e-09 0.0100934)
(0.00890846 -2.25516e-09 0.0093522)
(0.00798691 -2.55428e-09 0.00846193)
(0.00707334 -2.85347e-09 0.00742098)
(0.00617061 -3.2164e-09 0.00622906)
(0.00528174 -3.79558e-09 0.00488712)
(0.00441031 -4.73323e-09 0.00339702)
(0.00356096 -6.0999e-09 0.00176078)
(0.00274026 -8.15528e-09 -2.10587e-05)
(0.00195664 -1.1622e-08 -0.00195241)
(0.00122998 -1.75182e-08 -0.00404821)
(0.000582129 -2.30814e-08 -0.00632836)
(0.00013514 -1.27711e-07 -0.00802284)
(-0.00419909 -1.62906e-07 0.00656592)
(-0.00971218 -2.31003e-08 0.0186318)
(-0.0159019 -1.53374e-10 0.027619)
(-0.0219826 -9.77015e-10 0.0350081)
(-0.0278644 -1.56668e-09 0.0414104)
(-0.0335766 -2.15321e-09 0.0470573)
(-0.0391518 -2.38156e-09 0.0520588)
(-0.0446206 -2.2881e-09 0.0564793)
(-0.0500108 -2.39443e-09 0.0603648)
(-0.0553466 -2.62471e-09 0.0637533)
(-0.0606475 -2.64516e-09 0.0666791)
(-0.0659288 -2.4326e-09 0.0691751)
(-0.0712015 -2.16847e-09 0.0712728)
(-0.0764727 -1.97464e-09 0.0730023)
(-0.0817463 -1.86297e-09 0.0743924)
(-0.0870231 -1.80814e-09 0.0754703)
(-0.0923017 -1.79133e-09 0.0762614)
(-0.0975788 -1.79982e-09 0.0767892)
(-0.102849 -1.81368e-09 0.0770755)
(-0.108107 -1.80899e-09 0.07714)
(-0.113346 -1.76526e-09 0.0770007)
(-0.118557 -1.67563e-09 0.076674)
(-0.123734 -1.54621e-09 0.0761746)
(-0.128867 -1.39316e-09 0.0755159)
(-0.13395 -1.23512e-09 0.0747099)
(-0.138974 -1.09083e-09 0.0737673)
(-0.143931 -9.72424e-10 0.072698)
(-0.148812 -8.85157e-10 0.0715108)
(-0.153612 -8.25718e-10 0.0702138)
(-0.158322 -7.8564e-10 0.0688143)
(-0.162935 -7.55733e-10 0.0673192)
(-0.167445 -7.27944e-10 0.0657345)
(-0.171845 -6.97475e-10 0.064066)
(-0.176129 -6.63139e-10 0.0623192)
(-0.180291 -6.25659e-10 0.0604992)
(-0.184327 -5.86481e-10 0.0586107)
(-0.18823 -5.48595e-10 0.0566584)
(-0.191996 -5.1484e-10 0.0546466)
(-0.19562 -4.87588e-10 0.0525797)
(-0.199098 -4.67817e-10 0.0504619)
(-0.202426 -4.55785e-10 0.0482972)
(-0.205601 -4.49943e-10 0.0460898)
(-0.208619 -4.47661e-10 0.0438434)
(-0.211478 -4.46306e-10 0.0415622)
(-0.214173 -4.43044e-10 0.03925)
(-0.216704 -4.36326e-10 0.0369107)
(-0.219067 -4.25329e-10 0.0345482)
(-0.221262 -4.11032e-10 0.0321663)
(-0.223285 -3.9457e-10 0.0297689)
(-0.225137 -3.77439e-10 0.0273597)
(-0.226815 -3.60618e-10 0.0249426)
(-0.22832 -3.44572e-10 0.0225214)
(-0.22965 -3.29403e-10 0.0200997)
(-0.230806 -3.14647e-10 0.0176812)
(-0.231788 -3.00872e-10 0.0152696)
(-0.232595 -2.87922e-10 0.0128685)
(-0.233229 -2.76314e-10 0.0104813)
(-0.23369 -2.6651e-10 0.00811157)
(-0.23398 -2.58769e-10 0.0057626)
(-0.234099 -2.53142e-10 0.00343769)
(-0.234049 -2.49526e-10 0.00114002)
(-0.233833 -2.47353e-10 -0.00112734)
(-0.233452 -2.45386e-10 -0.0033614)
(-0.232908 -2.43574e-10 -0.0055593)
(-0.232205 -2.41659e-10 -0.00771828)
(-0.231343 -2.39642e-10 -0.00983574)
(-0.230328 -2.37057e-10 -0.0119092)
(-0.229161 -2.34627e-10 -0.0139363)
(-0.227846 -2.32043e-10 -0.0159149)
(-0.226386 -2.29716e-10 -0.0178428)
(-0.224785 -2.27802e-10 -0.0197183)
(-0.223046 -2.26713e-10 -0.0215395)
(-0.221174 -2.25573e-10 -0.0233048)
(-0.219173 -2.24741e-10 -0.0250128)
(-0.217045 -2.24065e-10 -0.0266621)
(-0.214797 -2.23285e-10 -0.0282517)
(-0.212432 -2.2199e-10 -0.0297804)
(-0.209954 -2.2018e-10 -0.0312475)
(-0.207368 -2.17545e-10 -0.0326523)
(-0.204679 -2.14035e-10 -0.0339941)
(-0.20189 -2.09494e-10 -0.0352725)
(-0.199007 -2.04438e-10 -0.0364873)
(-0.196035 -1.98145e-10 -0.0376383)
(-0.192978 -1.91182e-10 -0.0387255)
(-0.18984 -1.83549e-10 -0.039749)
(-0.186627 -1.75041e-10 -0.040709)
(-0.183342 -1.66378e-10 -0.0416059)
(-0.179992 -1.57096e-10 -0.04244)
(-0.17658 -1.47609e-10 -0.0432121)
(-0.173111 -1.37709e-10 -0.0439227)
(-0.16959 -1.27397e-10 -0.0445726)
(-0.166021 -1.16879e-10 -0.0451627)
(-0.162409 -1.05896e-10 -0.0456938)
(-0.158758 -9.43987e-11 -0.0461671)
(-0.155072 -8.2437e-11 -0.0465836)
(-0.151356 -6.97537e-11 -0.0469445)
(-0.147614 -5.6967e-11 -0.0472509)
(-0.14385 -4.30978e-11 -0.0475043)
(-0.140068 -2.87644e-11 -0.0477058)
(-0.136273 -1.39668e-11 -0.047857)
(-0.132467 1.81051e-12 -0.0479591)
(-0.128655 1.79491e-11 -0.0480137)
(-0.124841 3.45521e-11 -0.0480222)
(-0.121027 5.16197e-11 -0.0479862)
(-0.117218 6.9461e-11 -0.0479071)
(-0.113416 8.7767e-11 -0.0477864)
(-0.109626 1.06589e-10 -0.0476258)
(-0.10585 1.25722e-10 -0.0474267)
(-0.102091 1.45268e-10 -0.0471906)
(-0.0983515 1.65382e-10 -0.0469191)
(-0.0946355 1.86167e-10 -0.0466136)
(-0.090945 2.07211e-10 -0.0462756)
(-0.0872828 2.28927e-10 -0.0459066)
(-0.0836513 2.51005e-10 -0.045508)
(-0.080053 2.736e-10 -0.0450811)
(-0.0764901 2.96196e-10 -0.0446272)
(-0.072965 3.19413e-10 -0.0441476)
(-0.0694796 3.4356e-10 -0.0436436)
(-0.066036 3.67451e-10 -0.0431163)
(-0.0626361 3.91911e-10 -0.0425668)
(-0.059282 4.16683e-10 -0.0419962)
(-0.0559752 4.41818e-10 -0.0414054)
(-0.0527175 4.67058e-10 -0.0407953)
(-0.0495105 4.92558e-10 -0.0401668)
(-0.0463559 5.18319e-10 -0.0395205)
(-0.0432552 5.44701e-10 -0.0388573)
(-0.0402097 5.70725e-10 -0.0381775)
(-0.0372209 5.97165e-10 -0.0374819)
(-0.0342902 6.23504e-10 -0.0367707)
(-0.0314188 6.49949e-10 -0.0360444)
(-0.0286081 6.75882e-10 -0.0353032)
(-0.0258592 7.01766e-10 -0.0345474)
(-0.0231734 7.2755e-10 -0.0337769)
(-0.0205519 7.52718e-10 -0.032992)
(-0.0179959 7.7758e-10 -0.0321924)
(-0.0155064 8.0193e-10 -0.0313783)
(-0.0130846 8.25973e-10 -0.0305494)
(-0.0107317 8.4842e-10 -0.0297056)
(-0.00844862 8.69734e-10 -0.0288466)
(-0.00623657 8.894e-10 -0.0279722)
(-0.0040966 9.08657e-10 -0.027082)
(-0.00202979 9.25646e-10 -0.0261759)
(-3.71608e-05 9.4047e-10 -0.0252535)
(0.00188022 9.5354e-10 -0.0243145)
(0.00372131 9.63721e-10 -0.0233586)
(0.00548513 9.71321e-10 -0.0223856)
(0.00717069 9.76857e-10 -0.0213955)
(0.00877704 9.78674e-10 -0.020388)
(0.0103033 9.77083e-10 -0.0193631)
(0.0117485 9.72082e-10 -0.018321)
(0.0131118 9.64497e-10 -0.0172619)
(0.0143926 9.53603e-10 -0.016186)
(0.01559 9.38884e-10 -0.015094)
(0.0167034 9.20853e-10 -0.0139864)
(0.0177323 8.99615e-10 -0.0128642)
(0.0186761 8.74133e-10 -0.0117284)
(0.0195346 8.45543e-10 -0.0105803)
(0.0203076 8.13328e-10 -0.0094215)
(0.0209949 7.77693e-10 -0.00825369)
(0.0215965 7.38326e-10 -0.00707897)
(0.0221128 6.96674e-10 -0.00589966)
(0.0225441 6.52529e-10 -0.0047184)
(0.0228909 6.06201e-10 -0.00353811)
(0.0231542 5.58826e-10 -0.00236205)
(0.0233349 5.10508e-10 -0.00119376)
(0.0234342 4.61454e-10 -3.71377e-05)
(0.0234536 4.11767e-10 0.00110361)
(0.023395 3.6186e-10 0.00222395)
(0.0232602 3.10387e-10 0.00331902)
(0.0230515 2.56936e-10 0.00438363)
(0.0227715 1.99743e-10 0.0054123)
(0.0224229 1.37773e-10 0.00639923)
(0.0220089 6.85381e-11 0.00733835)
(0.0215327 -9.82871e-12 0.00822334)
(0.0209978 -9.87809e-11 0.00904761)
(0.0204082 -2.00394e-10 0.00980439)
(0.0197676 -3.13325e-10 0.0104867)
(0.0190804 -4.37784e-10 0.0110875)
(0.0183507 -5.69939e-10 0.0115995)
(0.0175829 -7.07715e-10 0.0120155)
(0.0167816 -8.48728e-10 0.0123283)
(0.015951 -9.95153e-10 0.0125308)
(0.0150955 -1.14917e-09 0.0126161)
(0.0142194 -1.3173e-09 0.0125774)
(0.0133267 -1.50609e-09 0.0124084)
(0.012421 -1.72093e-09 0.0121033)
(0.011506 -1.97e-09 0.0116569)
(0.0105846 -2.2556e-09 0.0110648)
(0.00965958 -2.56959e-09 0.0103234)
(0.00873342 -2.89119e-09 0.00943022)
(0.00780823 -3.21076e-09 0.00838389)
(0.00688604 -3.599e-09 0.00718411)
(0.00596891 -4.22474e-09 0.00583153)
(0.00505928 -5.24215e-09 0.00432736)
(0.00416025 -6.7136e-09 0.00267237)
(0.0032764 -8.91618e-09 0.000865103)
(0.00241338 -1.26348e-08 -0.00110204)
(0.00158748 -1.89619e-08 -0.00325128)
(0.000823346 -2.52925e-08 -0.00562649)
(0.000236822 -1.2577e-07 -0.00760138)
(-0.00419939 -1.62905e-07 0.00656587)
(-0.00971227 -2.31e-08 0.0186317)
(-0.0159019 -1.53372e-10 0.0276189)
(-0.0219826 -9.77001e-10 0.035008)
(-0.0278644 -1.56666e-09 0.0414103)
(-0.0335766 -2.15318e-09 0.0470572)
(-0.0391518 -2.38153e-09 0.0520587)
(-0.0446205 -2.28806e-09 0.0564792)
(-0.0500108 -2.3944e-09 0.0603647)
(-0.0553465 -2.62467e-09 0.0637532)
(-0.0606475 -2.64513e-09 0.066679)
(-0.0659287 -2.43257e-09 0.069175)
(-0.0712014 -2.16845e-09 0.0712727)
(-0.0764726 -1.97462e-09 0.0730022)
(-0.0817462 -1.86295e-09 0.0743923)
(-0.087023 -1.80812e-09 0.0754702)
(-0.0923017 -1.79131e-09 0.0762613)
(-0.0975787 -1.7998e-09 0.0767892)
(-0.102849 -1.81366e-09 0.0770754)
(-0.108107 -1.80897e-09 0.0771399)
(-0.113346 -1.76524e-09 0.0770007)
(-0.118557 -1.67561e-09 0.076674)
(-0.123734 -1.54619e-09 0.0761746)
(-0.128867 -1.39314e-09 0.0755159)
(-0.13395 -1.23511e-09 0.0747098)
(-0.138974 -1.09082e-09 0.0737672)
(-0.143931 -9.72416e-10 0.0726979)
(-0.148812 -8.85149e-10 0.0715108)
(-0.153612 -8.25711e-10 0.0702138)
(-0.158322 -7.85634e-10 0.0688143)
(-0.162935 -7.55727e-10 0.0673191)
(-0.167445 -7.27939e-10 0.0657344)
(-0.171845 -6.9747e-10 0.064066)
(-0.176129 -6.63134e-10 0.0623192)
(-0.180291 -6.25655e-10 0.0604992)
(-0.184327 -5.86477e-10 0.0586107)
(-0.18823 -5.48592e-10 0.0566583)
(-0.191995 -5.14837e-10 0.0546466)
(-0.19562 -4.87585e-10 0.0525797)
(-0.199098 -4.67814e-10 0.0504619)
(-0.202426 -4.55782e-10 0.0482972)
(-0.205601 -4.49941e-10 0.0460898)
(-0.208619 -4.47658e-10 0.0438434)
(-0.211477 -4.46304e-10 0.0415622)
(-0.214173 -4.43041e-10 0.03925)
(-0.216704 -4.36324e-10 0.0369107)
(-0.219067 -4.25326e-10 0.0345482)
(-0.221261 -4.11029e-10 0.0321663)
(-0.223285 -3.94568e-10 0.0297689)
(-0.225137 -3.77437e-10 0.0273597)
(-0.226815 -3.60616e-10 0.0249426)
(-0.22832 -3.4457e-10 0.0225214)
(-0.22965 -3.29401e-10 0.0200997)
(-0.230806 -3.14646e-10 0.0176812)
(-0.231788 -3.00871e-10 0.0152696)
(-0.232595 -2.87921e-10 0.0128685)
(-0.233229 -2.76313e-10 0.0104813)
(-0.23369 -2.66509e-10 0.00811158)
(-0.23398 -2.58768e-10 0.00576261)
(-0.234099 -2.53141e-10 0.0034377)
(-0.234049 -2.49525e-10 0.00114003)
(-0.233833 -2.47352e-10 -0.00112733)
(-0.233452 -2.45385e-10 -0.00336139)
(-0.232908 -2.43573e-10 -0.00555928)
(-0.232205 -2.41658e-10 -0.00771827)
(-0.231343 -2.39641e-10 -0.00983573)
(-0.230328 -2.37056e-10 -0.0119092)
(-0.229161 -2.34626e-10 -0.0139363)
(-0.227846 -2.32042e-10 -0.0159149)
(-0.226386 -2.29716e-10 -0.0178428)
(-0.224785 -2.27802e-10 -0.0197183)
(-0.223046 -2.26712e-10 -0.0215395)
(-0.221174 -2.25572e-10 -0.0233048)
(-0.219173 -2.2474e-10 -0.0250128)
(-0.217045 -2.24064e-10 -0.0266621)
(-0.214797 -2.23284e-10 -0.0282517)
(-0.212432 -2.21989e-10 -0.0297804)
(-0.209954 -2.20179e-10 -0.0312475)
(-0.207368 -2.17545e-10 -0.0326523)
(-0.204679 -2.14034e-10 -0.0339941)
(-0.20189 -2.09493e-10 -0.0352725)
(-0.199007 -2.04437e-10 -0.0364873)
(-0.196035 -1.98144e-10 -0.0376383)
(-0.192978 -1.91181e-10 -0.0387255)
(-0.18984 -1.83549e-10 -0.039749)
(-0.186627 -1.7504e-10 -0.040709)
(-0.183342 -1.66377e-10 -0.0416059)
(-0.179992 -1.57096e-10 -0.04244)
(-0.17658 -1.47608e-10 -0.0432121)
(-0.173111 -1.37709e-10 -0.0439227)
(-0.16959 -1.27397e-10 -0.0445726)
(-0.166021 -1.16878e-10 -0.0451626)
(-0.162409 -1.05896e-10 -0.0456938)
(-0.158758 -9.43984e-11 -0.0461671)
(-0.155072 -8.24368e-11 -0.0465836)
(-0.151356 -6.97535e-11 -0.0469445)
(-0.147614 -5.69669e-11 -0.0472509)
(-0.14385 -4.30977e-11 -0.0475043)
(-0.140068 -2.87643e-11 -0.0477058)
(-0.136273 -1.39667e-11 -0.047857)
(-0.132467 1.81051e-12 -0.0479591)
(-0.128655 1.79491e-11 -0.0480137)
(-0.124841 3.4552e-11 -0.0480222)
(-0.121027 5.16195e-11 -0.0479862)
(-0.117218 6.94608e-11 -0.047907)
(-0.113416 8.77668e-11 -0.0477864)
(-0.109626 1.06589e-10 -0.0476258)
(-0.10585 1.25722e-10 -0.0474266)
(-0.102091 1.45267e-10 -0.0471906)
(-0.0983515 1.65381e-10 -0.0469191)
(-0.0946354 1.86166e-10 -0.0466136)
(-0.090945 2.07211e-10 -0.0462756)
(-0.0872828 2.28926e-10 -0.0459066)
(-0.0836513 2.51004e-10 -0.045508)
(-0.080053 2.73599e-10 -0.045081)
(-0.0764901 2.96196e-10 -0.0446272)
(-0.0729649 3.19413e-10 -0.0441476)
(-0.0694795 3.43559e-10 -0.0436436)
(-0.066036 3.6745e-10 -0.0431163)
(-0.0626361 3.9191e-10 -0.0425668)
(-0.0592819 4.16682e-10 -0.0419962)
(-0.0559751 4.41817e-10 -0.0414054)
(-0.0527175 4.67057e-10 -0.0407953)
(-0.0495105 4.92557e-10 -0.0401668)
(-0.0463559 5.18318e-10 -0.0395205)
(-0.0432552 5.447e-10 -0.0388572)
(-0.0402097 5.70724e-10 -0.0381775)
(-0.0372209 5.97163e-10 -0.0374819)
(-0.0342902 6.23503e-10 -0.0367707)
(-0.0314188 6.49948e-10 -0.0360444)
(-0.0286081 6.7588e-10 -0.0353032)
(-0.0258592 7.01764e-10 -0.0345474)
(-0.0231734 7.27548e-10 -0.0337769)
(-0.0205519 7.52717e-10 -0.032992)
(-0.0179959 7.77579e-10 -0.0321925)
(-0.0155064 8.01928e-10 -0.0313783)
(-0.0130846 8.25971e-10 -0.0305494)
(-0.0107317 8.48418e-10 -0.0297056)
(-0.00844861 8.69733e-10 -0.0288466)
(-0.00623657 8.89399e-10 -0.0279722)
(-0.0040966 9.08655e-10 -0.027082)
(-0.00202978 9.25644e-10 -0.0261759)
(-3.71526e-05 9.40468e-10 -0.0252535)
(0.00188023 9.53539e-10 -0.0243145)
(0.00372131 9.63719e-10 -0.0233586)
(0.00548514 9.71319e-10 -0.0223857)
(0.0071707 9.76855e-10 -0.0213955)
(0.00877705 9.78673e-10 -0.020388)
(0.0103033 9.77082e-10 -0.0193631)
(0.0117485 9.72081e-10 -0.018321)
(0.0131118 9.64495e-10 -0.0172619)
(0.0143926 9.53602e-10 -0.016186)
(0.01559 9.38882e-10 -0.015094)
(0.0167034 9.20852e-10 -0.0139864)
(0.0177323 8.99613e-10 -0.0128642)
(0.0186761 8.74131e-10 -0.0117284)
(0.0195347 8.45542e-10 -0.0105803)
(0.0203076 8.13327e-10 -0.0094215)
(0.0209949 7.77692e-10 -0.00825369)
(0.0215965 7.38325e-10 -0.00707896)
(0.0221128 6.96673e-10 -0.00589965)
(0.0225441 6.52528e-10 -0.00471839)
(0.0228909 6.062e-10 -0.0035381)
(0.0231542 5.58825e-10 -0.00236204)
(0.0233349 5.10508e-10 -0.00119375)
(0.0234342 4.61453e-10 -3.71236e-05)
(0.0234536 4.11766e-10 0.00110363)
(0.023395 3.61859e-10 0.00222397)
(0.0232602 3.10387e-10 0.00331904)
(0.0230515 2.56935e-10 0.00438365)
(0.0227715 1.99743e-10 0.00541232)
(0.0224229 1.37773e-10 0.00639925)
(0.0220089 6.8538e-11 0.00733838)
(0.0215327 -9.8287e-12 0.00822337)
(0.0209978 -9.87808e-11 0.00904764)
(0.0204081 -2.00394e-10 0.00980442)
(0.0197676 -3.13325e-10 0.0104867)
(0.0190803 -4.37784e-10 0.0110875)
(0.0183507 -5.69938e-10 0.0115995)
(0.0175829 -7.07714e-10 0.0120155)
(0.0167815 -8.48727e-10 0.0123284)
(0.015951 -9.95153e-10 0.0125309)
(0.0150955 -1.14917e-09 0.0126161)
(0.0142194 -1.3173e-09 0.0125774)
(0.0133267 -1.50609e-09 0.0124084)
(0.012421 -1.72093e-09 0.0121033)
(0.0115059 -1.97e-09 0.0116569)
(0.0105845 -2.25559e-09 0.0110648)
(0.00965955 -2.56959e-09 0.0103234)
(0.00873339 -2.89118e-09 0.00943023)
(0.00780821 -3.21075e-09 0.0083839)
(0.00688601 -3.59899e-09 0.00718411)
(0.00596888 -4.22473e-09 0.00583153)
(0.00505924 -5.24213e-09 0.00432735)
(0.0041602 -6.71357e-09 0.00267235)
(0.00327634 -8.91615e-09 0.000865078)
(0.0024133 -1.26348e-08 -0.00110208)
(0.00158738 -1.89619e-08 -0.00325133)
(0.000823106 -2.52925e-08 -0.00562657)
(0.000236361 -1.25771e-07 -0.00760148)
(-0.00436378 -1.6718e-07 0.0134466)
(-0.0101445 -2.12198e-08 0.0255237)
(-0.0165975 6.77853e-10 0.03428)
(-0.0229327 -6.37518e-10 0.0414358)
(-0.02905 -1.41832e-09 0.0476295)
(-0.0349775 -2.08727e-09 0.0530997)
(-0.0407453 -2.35677e-09 0.0579573)
(-0.0463826 -2.30093e-09 0.0622649)
(-0.0519165 -2.4264e-09 0.0660649)
(-0.0573707 -2.65817e-09 0.0693914)
(-0.0627652 -2.67069e-09 0.0722744)
(-0.0681161 -2.44099e-09 0.0747424)
(-0.0734356 -2.14724e-09 0.0768227)
(-0.0787325 -1.91249e-09 0.0785418)
(-0.0840124 -1.75275e-09 0.0799251)
(-0.089278 -1.65097e-09 0.0809972)
(-0.0945296 -1.5936e-09 0.081781)
(-0.0997656 -1.57418e-09 0.0822982)
(-0.104983 -1.57629e-09 0.082569)
(-0.110177 -1.57643e-09 0.0826121)
(-0.115343 -1.55314e-09 0.0824447)
(-0.120473 -1.49422e-09 0.0820825)
(-0.125562 -1.39996e-09 0.0815398)
(-0.130603 -1.27861e-09 0.0808298)
(-0.135588 -1.14443e-09 0.0799644)
(-0.140511 -1.01326e-09 0.0789544)
(-0.145363 -8.99749e-10 0.0778098)
(-0.150138 -8.13238e-10 0.0765395)
(-0.154829 -7.54754e-10 0.0751519)
(-0.159428 -7.18408e-10 0.0736545)
(-0.16393 -6.95377e-10 0.0720543)
(-0.168329 -6.76164e-10 0.0703579)
(-0.172617 -6.54374e-10 0.0685713)
(-0.176789 -6.2717e-10 0.0667003)
(-0.18084 -5.94295e-10 0.0647501)
(-0.184765 -5.56729e-10 0.0627261)
(-0.188558 -5.17618e-10 0.060633)
(-0.192215 -4.79956e-10 0.0584756)
(-0.195731 -4.47453e-10 0.0562586)
(-0.199103 -4.2279e-10 0.0539864)
(-0.202327 -4.06638e-10 0.0516634)
(-0.205399 -3.98789e-10 0.0492941)
(-0.208316 -3.9656e-10 0.0468825)
(-0.211074 -3.97373e-10 0.0444331)
(-0.213673 -3.97361e-10 0.04195)
(-0.216108 -3.94256e-10 0.0394374)
(-0.218378 -3.86614e-10 0.0368995)
(-0.220481 -3.74642e-10 0.0343404)
(-0.222417 -3.5968e-10 0.0317643)
(-0.224182 -3.43276e-10 0.0291752)
(-0.225777 -3.26667e-10 0.0265773)
(-0.2272 -3.10472e-10 0.0239745)
(-0.228452 -2.94999e-10 0.0213709)
(-0.229532 -2.80403e-10 0.0187705)
(-0.23044 -2.66374e-10 0.0161772)
(-0.231177 -2.5312e-10 0.0135948)
(-0.231742 -2.40793e-10 0.0110272)
(-0.232138 -2.3022e-10 0.00847791)
(-0.232365 -2.21606e-10 0.00595071)
(-0.232424 -2.15362e-10 0.00344909)
(-0.232317 -2.11541e-10 0.00097648)
(-0.232046 -2.09163e-10 -0.0014638)
(-0.231613 -2.07765e-10 -0.00386854)
(-0.231019 -2.06624e-10 -0.00623463)
(-0.230269 -2.05534e-10 -0.00855912)
(-0.229363 -2.04342e-10 -0.0108392)
(-0.228305 -2.02944e-10 -0.0130721)
(-0.227099 -2.0103e-10 -0.0152555)
(-0.225747 -1.99117e-10 -0.0173868)
(-0.224252 -1.97358e-10 -0.0194638)
(-0.222619 -1.95909e-10 -0.0214845)
(-0.22085 -1.9446e-10 -0.023447)
(-0.21895 -1.93577e-10 -0.0253496)
(-0.216923 -1.9254e-10 -0.0271906)
(-0.214773 -1.91606e-10 -0.0289685)
(-0.212503 -1.90467e-10 -0.0306823)
(-0.210119 -1.89069e-10 -0.0323307)
(-0.207623 -1.86693e-10 -0.0339128)
(-0.205022 -1.84008e-10 -0.0354279)
(-0.202319 -1.80447e-10 -0.0368752)
(-0.19952 -1.75908e-10 -0.0382544)
(-0.196627 -1.70389e-10 -0.0395651)
(-0.193647 -1.64047e-10 -0.0408072)
(-0.190583 -1.56829e-10 -0.0419805)
(-0.187441 -1.49095e-10 -0.0430851)
(-0.184225 -1.40744e-10 -0.0441214)
(-0.180939 -1.31826e-10 -0.0450897)
(-0.177589 -1.22444e-10 -0.0459903)
(-0.174179 -1.12702e-10 -0.046824)
(-0.170713 -1.03011e-10 -0.0475915)
(-0.167196 -9.2599e-11 -0.0482934)
(-0.163633 -8.21868e-11 -0.0489308)
(-0.160028 -7.13109e-11 -0.0495046)
(-0.156385 -6.00742e-11 -0.050016)
(-0.152709 -4.83221e-11 -0.050466)
(-0.149004 -3.62092e-11 -0.0508559)
(-0.145273 -2.33748e-11 -0.0511871)
(-0.141523 -1.00764e-11 -0.0514609)
(-0.137755 3.53153e-12 -0.0516787)
(-0.133975 1.79126e-11 -0.0518419)
(-0.130185 3.28094e-11 -0.0519522)
(-0.126391 4.82219e-11 -0.0520111)
(-0.122594 6.44078e-11 -0.0520201)
(-0.1188 8.06458e-11 -0.0519808)
(-0.115011 9.73483e-11 -0.0518949)
(-0.11123 1.1467e-10 -0.051764)
(-0.107462 1.32353e-10 -0.0515898)
(-0.103708 1.50449e-10 -0.0513739)
(-0.0999724 1.69319e-10 -0.0511178)
(-0.0962577 1.88035e-10 -0.0508234)
(-0.0925668 2.07526e-10 -0.050492)
(-0.0889022 2.27275e-10 -0.0501254)
(-0.0852666 2.47335e-10 -0.049725)
(-0.0816625 2.67963e-10 -0.0492925)
(-0.0780922 2.88953e-10 -0.0488292)
(-0.0745582 3.10356e-10 -0.0483365)
(-0.0710624 3.3202e-10 -0.0478159)
(-0.0676071 3.53788e-10 -0.0472687)
(-0.0641943 3.76485e-10 -0.0466961)
(-0.0608259 3.98978e-10 -0.0460993)
(-0.0575037 4.21782e-10 -0.0454795)
(-0.0542296 4.45001e-10 -0.0448376)
(-0.0510051 4.6817e-10 -0.0441747)
(-0.047832 4.92063e-10 -0.0434917)
(-0.0447117 5.15752e-10 -0.0427893)
(-0.0416458 5.39495e-10 -0.0420684)
(-0.0386357 5.64066e-10 -0.0413295)
(-0.0356829 5.87917e-10 -0.0405733)
(-0.0327885 6.12338e-10 -0.0398001)
(-0.029954 6.36246e-10 -0.0390105)
(-0.0271805 6.60105e-10 -0.0382046)
(-0.0244693 6.83606e-10 -0.0373828)
(-0.0218215 7.07007e-10 -0.0365452)
(-0.0192383 7.2974e-10 -0.0356918)
(-0.0167209 7.52063e-10 -0.0348227)
(-0.0142703 7.73977e-10 -0.0339378)
(-0.0118876 7.9512e-10 -0.033037)
(-0.00957393 8.15131e-10 -0.0321201)
(-0.00733024 8.33287e-10 -0.0311869)
(-0.0051576 8.50311e-10 -0.0302372)
(-0.00305702 8.66977e-10 -0.0292706)
(-0.00102952 8.80652e-10 -0.028287)
(0.000923983 8.92318e-10 -0.027286)
(0.00280242 9.0223e-10 -0.0262674)
(0.00460492 9.09097e-10 -0.025231)
(0.00633055 9.13901e-10 -0.0241765)
(0.00797842 9.15607e-10 -0.0231037)
(0.00954768 9.1401e-10 -0.0220127)
(0.0110375 9.0921e-10 -0.0209035)
(0.0124471 9.01414e-10 -0.0197762)
(0.0137758 8.91035e-10 -0.018631)
(0.0150229 8.77037e-10 -0.0174685)
(0.0161878 8.59731e-10 -0.0162891)
(0.01727 8.39425e-10 -0.0150936)
(0.018269 8.15807e-10 -0.0138831)
(0.0191846 7.88464e-10 -0.0126586)
(0.0200164 7.58221e-10 -0.0114216)
(0.0207644 7.24663e-10 -0.0101737)
(0.0214286 6.88307e-10 -0.00891693)
(0.0220093 6.4884e-10 -0.00765346)
(0.0225066 6.07088e-10 -0.00638581)
(0.0229212 5.63362e-10 -0.00511679)
(0.0232536 5.18178e-10 -0.00384955)
(0.0235049 4.72258e-10 -0.00258754)
(0.0236761 4.24983e-10 -0.00133455)
(0.0237684 3.77592e-10 -9.47088e-05)
(0.0237835 3.29156e-10 0.00112753)
(0.0237231 2.80397e-10 0.00232737)
(0.0235891 2.2966e-10 0.00349969)
(0.0233839 1.7591e-10 0.00463904)
(0.0231099 1.17696e-10 0.00573966)
(0.0227698 5.35682e-11 0.00679551)
(0.0223666 -1.88572e-11 0.00780027)
(0.0219034 -1.02068e-10 0.00874736)
(0.0213836 -1.98243e-10 0.00962999)
(0.0208108 -3.0811e-10 0.0104412)
(0.0201886 -4.31364e-10 0.0111738)
(0.0195209 -5.6749e-10 0.0118206)
(0.0188116 -7.12449e-10 0.0123743)
(0.0180647 -8.64376e-10 0.0128277)
(0.0172842 -1.02058e-09 0.0131735)
(0.016474 -1.18281e-09 0.0134047)
(0.0156379 -1.35398e-09 0.0135144)
(0.0147796 -1.53978e-09 0.0134962)
(0.0139025 -1.74499e-09 0.0133441)
(0.0130097 -1.97571e-09 0.0130524)
(0.0121042 -2.23764e-09 0.0126164)
(0.0111884 -2.53721e-09 0.012032)
(0.0102645 -2.86537e-09 0.011296)
(0.00933423 -3.20237e-09 0.0104064)
(0.00839912 -3.53733e-09 0.00936177)
(0.00746052 -3.94671e-09 0.00816209)
(0.00651973 -4.61069e-09 0.00680785)
(0.00557827 -5.6966e-09 0.00529979)
(0.00463811 -7.26468e-09 0.00363785)
(0.00370236 -9.60571e-09 0.001819)
(0.00277482 -1.35613e-08 -0.000167408)
(0.0018692 -2.02823e-08 -0.00235053)
(0.00101302 -2.72957e-08 -0.00479744)
(0.000318197 -1.23372e-07 -0.00703002)
(-0.00436406 -1.67179e-07 0.0134465)
(-0.0101446 -2.12195e-08 0.0255236)
(-0.0165975 6.77844e-10 0.0342798)
(-0.0229327 -6.3751e-10 0.0414357)
(-0.02905 -1.4183e-09 0.0476294)
(-0.0349775 -2.08724e-09 0.0530996)
(-0.0407453 -2.35674e-09 0.0579572)
(-0.0463826 -2.3009e-09 0.0622647)
(-0.0519165 -2.42636e-09 0.0660648)
(-0.0573706 -2.65813e-09 0.0693913)
(-0.0627651 -2.67065e-09 0.0722743)
(-0.068116 -2.44096e-09 0.0747423)
(-0.0734355 -2.14721e-09 0.0768226)
(-0.0787325 -1.91247e-09 0.0785417)
(-0.0840123 -1.75273e-09 0.0799251)
(-0.0892779 -1.65095e-09 0.0809971)
(-0.0945295 -1.59358e-09 0.0817809)
(-0.0997656 -1.57417e-09 0.0822981)
(-0.104983 -1.57628e-09 0.082569)
(-0.110177 -1.57642e-09 0.0826121)
(-0.115342 -1.55312e-09 0.0824447)
(-0.120473 -1.49421e-09 0.0820824)
(-0.125562 -1.39995e-09 0.0815398)
(-0.130603 -1.2786e-09 0.0808298)
(-0.135588 -1.14442e-09 0.0799644)
(-0.140511 -1.01325e-09 0.0789544)
(-0.145363 -8.99741e-10 0.0778098)
(-0.150138 -8.13232e-10 0.0765395)
(-0.154829 -7.54748e-10 0.0751519)
(-0.159428 -7.18403e-10 0.0736545)
(-0.16393 -6.95372e-10 0.0720543)
(-0.168329 -6.76159e-10 0.0703579)
(-0.172617 -6.5437e-10 0.0685713)
(-0.176789 -6.27166e-10 0.0667003)
(-0.18084 -5.94291e-10 0.0647501)
(-0.184765 -5.56725e-10 0.062726)
(-0.188558 -5.17615e-10 0.060633)
(-0.192215 -4.79953e-10 0.0584756)
(-0.195731 -4.4745e-10 0.0562586)
(-0.199103 -4.22788e-10 0.0539864)
(-0.202327 -4.06636e-10 0.0516634)
(-0.205399 -3.98787e-10 0.0492941)
(-0.208315 -3.96558e-10 0.0468825)
(-0.211074 -3.97371e-10 0.0444331)
(-0.213672 -3.97359e-10 0.04195)
(-0.216108 -3.94254e-10 0.0394374)
(-0.218378 -3.86612e-10 0.0368995)
(-0.220481 -3.7464e-10 0.0343404)
(-0.222417 -3.59679e-10 0.0317643)
(-0.224182 -3.43275e-10 0.0291752)
(-0.225777 -3.26666e-10 0.0265773)
(-0.2272 -3.1047e-10 0.0239745)
(-0.228452 -2.94997e-10 0.0213709)
(-0.229532 -2.80401e-10 0.0187706)
(-0.23044 -2.66373e-10 0.0161772)
(-0.231177 -2.53119e-10 0.0135948)
(-0.231742 -2.40792e-10 0.0110272)
(-0.232138 -2.30219e-10 0.00847792)
(-0.232365 -2.21605e-10 0.00595072)
(-0.232424 -2.15362e-10 0.0034491)
(-0.232317 -2.11541e-10 0.00097649)
(-0.232046 -2.09163e-10 -0.00146379)
(-0.231613 -2.07764e-10 -0.00386853)
(-0.231019 -2.06623e-10 -0.00623462)
(-0.230268 -2.05534e-10 -0.00855911)
(-0.229363 -2.04341e-10 -0.0108392)
(-0.228305 -2.02943e-10 -0.0130721)
(-0.227099 -2.0103e-10 -0.0152554)
(-0.225747 -1.99116e-10 -0.0173867)
(-0.224252 -1.97358e-10 -0.0194638)
(-0.222619 -1.95908e-10 -0.0214845)
(-0.22085 -1.94459e-10 -0.023447)
(-0.21895 -1.93576e-10 -0.0253496)
(-0.216923 -1.9254e-10 -0.0271905)
(-0.214773 -1.91606e-10 -0.0289685)
(-0.212503 -1.90466e-10 -0.0306823)
(-0.210118 -1.89069e-10 -0.0323307)
(-0.207623 -1.86693e-10 -0.0339128)
(-0.205022 -1.84008e-10 -0.0354279)
(-0.202319 -1.80447e-10 -0.0368752)
(-0.19952 -1.75907e-10 -0.0382544)
(-0.196627 -1.70389e-10 -0.0395651)
(-0.193647 -1.64046e-10 -0.0408071)
(-0.190583 -1.56828e-10 -0.0419804)
(-0.187441 -1.49095e-10 -0.0430851)
(-0.184225 -1.40744e-10 -0.0441214)
(-0.180939 -1.31826e-10 -0.0450897)
(-0.177589 -1.22444e-10 -0.0459903)
(-0.174179 -1.12702e-10 -0.046824)
(-0.170713 -1.03011e-10 -0.0475914)
(-0.167196 -9.25988e-11 -0.0482934)
(-0.163633 -8.21866e-11 -0.0489308)
(-0.160028 -7.13107e-11 -0.0495046)
(-0.156385 -6.00741e-11 -0.050016)
(-0.152709 -4.8322e-11 -0.050466)
(-0.149003 -3.62091e-11 -0.0508559)
(-0.145273 -2.33747e-11 -0.0511871)
(-0.141523 -1.00763e-11 -0.0514609)
(-0.137755 3.53152e-12 -0.0516787)
(-0.133975 1.79126e-11 -0.0518419)
(-0.130185 3.28093e-11 -0.0519522)
(-0.126391 4.82218e-11 -0.0520111)
(-0.122594 6.44076e-11 -0.0520201)
(-0.1188 8.06456e-11 -0.0519808)
(-0.115011 9.7348e-11 -0.0518949)
(-0.11123 1.14669e-10 -0.051764)
(-0.107462 1.32352e-10 -0.0515898)
(-0.103708 1.50448e-10 -0.0513739)
(-0.0999724 1.69318e-10 -0.0511178)
(-0.0962577 1.88035e-10 -0.0508233)
(-0.0925667 2.07525e-10 -0.050492)
(-0.0889022 2.27274e-10 -0.0501254)
(-0.0852666 2.47334e-10 -0.049725)
(-0.0816625 2.67962e-10 -0.0492925)
(-0.0780922 2.88952e-10 -0.0488291)
(-0.0745581 3.10356e-10 -0.0483365)
(-0.0710624 3.32019e-10 -0.0478159)
(-0.0676071 3.53787e-10 -0.0472687)
(-0.0641943 3.76484e-10 -0.0466961)
(-0.0608259 3.98977e-10 -0.0460993)
(-0.0575037 4.21781e-10 -0.0454795)
(-0.0542296 4.45e-10 -0.0448376)
(-0.0510051 4.68169e-10 -0.0441747)
(-0.047832 4.92062e-10 -0.0434917)
(-0.0447117 5.15751e-10 -0.0427893)
(-0.0416458 5.39494e-10 -0.0420684)
(-0.0386357 5.64064e-10 -0.0413295)
(-0.0356829 5.87916e-10 -0.0405733)
(-0.0327885 6.12336e-10 -0.0398001)
(-0.0299539 6.36244e-10 -0.0390105)
(-0.0271805 6.60104e-10 -0.0382046)
(-0.0244693 6.83604e-10 -0.0373828)
(-0.0218215 7.07005e-10 -0.0365452)
(-0.0192383 7.29738e-10 -0.0356918)
(-0.0167209 7.52062e-10 -0.0348227)
(-0.0142703 7.73975e-10 -0.0339378)
(-0.0118876 7.95118e-10 -0.033037)
(-0.00957393 8.15129e-10 -0.0321201)
(-0.00733024 8.33285e-10 -0.0311869)
(-0.0051576 8.50309e-10 -0.0302372)
(-0.00305702 8.66975e-10 -0.0292706)
(-0.00102952 8.8065e-10 -0.028287)
(0.000923986 8.92316e-10 -0.027286)
(0.00280242 9.02228e-10 -0.0262674)
(0.00460492 9.09095e-10 -0.025231)
(0.00633055 9.13899e-10 -0.0241765)
(0.00797842 9.15605e-10 -0.0231037)
(0.00954768 9.14008e-10 -0.0220127)
(0.0110375 9.09208e-10 -0.0209035)
(0.0124471 9.01413e-10 -0.0197762)
(0.0137758 8.91033e-10 -0.018631)
(0.0150229 8.77036e-10 -0.0174685)
(0.0161878 8.59729e-10 -0.0162891)
(0.01727 8.39423e-10 -0.0150936)
(0.018269 8.15806e-10 -0.0138831)
(0.0191846 7.88463e-10 -0.0126586)
(0.0200164 7.5822e-10 -0.0114216)
(0.0207644 7.24662e-10 -0.0101737)
(0.0214286 6.88305e-10 -0.00891692)
(0.0220093 6.48838e-10 -0.00765345)
(0.0225066 6.07087e-10 -0.0063858)
(0.0229212 5.63362e-10 -0.00511679)
(0.0232536 5.18177e-10 -0.00384954)
(0.0235049 4.72258e-10 -0.00258753)
(0.0236761 4.24982e-10 -0.00133454)
(0.0237684 3.77592e-10 -9.46938e-05)
(0.0237835 3.29155e-10 0.00112755)
(0.0237231 2.80396e-10 0.00232739)
(0.0235891 2.2966e-10 0.00349971)
(0.0233839 1.7591e-10 0.00463906)
(0.0231099 1.17696e-10 0.00573968)
(0.0227698 5.35681e-11 0.00679554)
(0.0223666 -1.88572e-11 0.00780029)
(0.0219034 -1.02068e-10 0.00874739)
(0.0213836 -1.98243e-10 0.00963002)
(0.0208107 -3.0811e-10 0.0104412)
(0.0201885 -4.31364e-10 0.0111738)
(0.0195208 -5.67489e-10 0.0118206)
(0.0188116 -7.12448e-10 0.0123744)
(0.0180647 -8.64375e-10 0.0128277)
(0.0172842 -1.02058e-09 0.0131735)
(0.0164739 -1.18281e-09 0.0134047)
(0.0156378 -1.35398e-09 0.0135145)
(0.0147795 -1.53978e-09 0.0134963)
(0.0139024 -1.74498e-09 0.0133441)
(0.0130097 -1.97571e-09 0.0130524)
(0.0121042 -2.23764e-09 0.0126164)
(0.0111884 -2.53721e-09 0.012032)
(0.0102645 -2.86537e-09 0.0112961)
(0.0093342 -3.20236e-09 0.0104064)
(0.00839909 -3.53732e-09 0.00936178)
(0.00746048 -3.9467e-09 0.00816209)
(0.00651969 -4.61067e-09 0.00680784)
(0.00557823 -5.69658e-09 0.00529978)
(0.00463805 -7.26466e-09 0.00363784)
(0.0037023 -9.60567e-09 0.00181898)
(0.00277475 -1.35613e-08 -0.000167447)
(0.00186909 -2.02823e-08 -0.00235058)
(0.00101279 -2.72957e-08 -0.00479753)
(0.000317758 -1.23372e-07 -0.00703013)
(-0.00448031 -1.65939e-07 0.0205911)
(-0.0104746 -1.88391e-08 0.0326672)
(-0.0171407 1.56085e-09 0.0411881)
(-0.0236907 -1.28064e-10 0.0481005)
(-0.0300146 -1.0358e-09 0.0540715)
(-0.0361378 -1.77587e-09 0.0593475)
(-0.0420868 -2.1053e-09 0.0640412)
(-0.0478884 -2.11961e-09 0.0682138)
(-0.0535679 -2.30572e-09 0.0719053)
(-0.0591479 -2.59312e-09 0.0751463)
(-0.064648 -2.65773e-09 0.0779631)
(-0.0700843 -2.46471e-09 0.0803803)
(-0.0754695 -2.18141e-09 0.0824215)
(-0.0808134 -1.92829e-09 0.0841098)
(-0.0861225 -1.72686e-09 0.0854677)
(-0.091401 -1.56818e-09 0.0865168)
(-0.0966505 -1.44885e-09 0.0872778)
(-0.101871 -1.37165e-09 0.0877707)
(-0.10706 -1.32898e-09 0.0880139)
(-0.112216 -1.30407e-09 0.088025)
(-0.117333 -1.27663e-09 0.0878201)
(-0.122406 -1.2335e-09 0.0874143)
(-0.127431 -1.16911e-09 0.0868214)
(-0.132402 -1.08425e-09 0.0860543)
(-0.137311 -9.84485e-10 0.0851246)
(-0.142152 -8.79676e-10 0.0840431)
(-0.146919 -7.8241e-10 0.0828197)
(-0.151606 -7.04291e-10 0.0814635)
(-0.156205 -6.50939e-10 0.079983)
(-0.160712 -6.20285e-10 0.078386)
(-0.165118 -6.04745e-10 0.0766795)
(-0.16942 -5.94775e-10 0.0748705)
(-0.17361 -5.82485e-10 0.0729652)
(-0.177683 -5.63698e-10 0.0709697)
(-0.181635 -5.36972e-10 0.0688895)
(-0.18546 -5.03081e-10 0.0667302)
(-0.189153 -4.64448e-10 0.0644969)
(-0.192711 -4.24994e-10 0.0621947)
(-0.196128 -3.89152e-10 0.0598285)
(-0.199402 -3.60478e-10 0.0574031)
(-0.202528 -3.41652e-10 0.0549231)
(-0.205503 -3.32673e-10 0.0523933)
(-0.208324 -3.31684e-10 0.0498182)
(-0.210988 -3.35437e-10 0.0472023)
(-0.213493 -3.40272e-10 0.0445501)
(-0.215837 -3.42839e-10 0.0418662)
(-0.218017 -3.40612e-10 0.0391549)
(-0.220032 -3.33283e-10 0.0364208)
(-0.22188 -3.21522e-10 0.0336681)
(-0.223561 -3.07082e-10 0.0309014)
(-0.225073 -2.91869e-10 0.028125)
(-0.226415 -2.76555e-10 0.0253431)
(-0.227588 -2.61962e-10 0.0225602)
(-0.228591 -2.47938e-10 0.0197804)
(-0.229425 -2.3479e-10 0.0170078)
(-0.230089 -2.21952e-10 0.0142468)
(-0.230584 -2.0999e-10 0.0115012)
(-0.230911 -1.99626e-10 0.00877505)
(-0.231072 -1.9122e-10 0.00607224)
(-0.231068 -1.85134e-10 0.00339654)
(-0.230899 -1.81469e-10 0.000751618)
(-0.230569 -1.79762e-10 -0.00185897)
(-0.230079 -1.79136e-10 -0.00443177)
(-0.229431 -1.79335e-10 -0.00696346)
(-0.228628 -1.79741e-10 -0.00945089)
(-0.227673 -1.80146e-10 -0.011891)
(-0.226568 -1.80036e-10 -0.0142809)
(-0.225316 -1.79514e-10 -0.016618)
(-0.22392 -1.78735e-10 -0.0188995)
(-0.222385 -1.77698e-10 -0.0211232)
(-0.220713 -1.76713e-10 -0.0232869)
(-0.218908 -1.75985e-10 -0.0253883)
(-0.216973 -1.75e-10 -0.0274258)
(-0.214914 -1.74169e-10 -0.0293975)
(-0.212733 -1.73442e-10 -0.0313019)
(-0.210435 -1.72303e-10 -0.0331377)
(-0.208024 -1.70854e-10 -0.0349036)
(-0.205504 -1.68788e-10 -0.0365987)
(-0.20288 -1.65949e-10 -0.038222)
(-0.200157 -1.62595e-10 -0.039773)
(-0.197338 -1.57954e-10 -0.041251)
(-0.194429 -1.52592e-10 -0.0426557)
(-0.191433 -1.46406e-10 -0.0439868)
(-0.188356 -1.39241e-10 -0.0452444)
(-0.185202 -1.31665e-10 -0.0464286)
(-0.181976 -1.23316e-10 -0.0475394)
(-0.178682 -1.14349e-10 -0.0485773)
(-0.175325 -1.05176e-10 -0.0495429)
(-0.171909 -9.55392e-11 -0.0504366)
(-0.16844 -8.56452e-11 -0.0512593)
(-0.164921 -7.55966e-11 -0.0520118)
(-0.161357 -6.5342e-11 -0.0526951)
(-0.157752 -5.46752e-11 -0.0533101)
(-0.154111 -4.37508e-11 -0.0538581)
(-0.150439 -3.20536e-11 -0.0543403)
(-0.146738 -2.05108e-11 -0.054758)
(-0.143014 -7.98912e-12 -0.0551126)
(-0.139271 4.84186e-12 -0.0554055)
(-0.135512 1.80337e-11 -0.0556383)
(-0.131742 3.1844e-11 -0.0558125)
(-0.127963 4.63758e-11 -0.0559298)
(-0.124181 6.11141e-11 -0.0559917)
(-0.120398 7.6368e-11 -0.0560001)
(-0.116618 9.19316e-11 -0.0559565)
(-0.112845 1.08217e-10 -0.0558628)
(-0.109082 1.2476e-10 -0.0557206)
(-0.105331 1.41511e-10 -0.0555318)
(-0.101596 1.5888e-10 -0.055298)
(-0.0978807 1.76714e-10 -0.0550211)
(-0.094187 1.94549e-10 -0.0547027)
(-0.090518 2.13054e-10 -0.0543446)
(-0.0868764 2.31715e-10 -0.0539484)
(-0.0832647 2.50944e-10 -0.0535158)
(-0.0796854 2.70587e-10 -0.0530485)
(-0.0761408 2.90385e-10 -0.0525479)
(-0.0726334 3.10494e-10 -0.0520157)
(-0.0691651 3.31068e-10 -0.0514533)
(-0.0657381 3.51695e-10 -0.0508621)
(-0.0623544 3.72684e-10 -0.0502434)
(-0.0590159 3.94242e-10 -0.0495986)
(-0.0557245 4.15853e-10 -0.0489288)
(-0.0524818 4.37723e-10 -0.0482352)
(-0.0492895 4.59647e-10 -0.0475188)
(-0.0461493 4.81934e-10 -0.0467806)
(-0.0430627 5.0412e-10 -0.0460215)
(-0.0400312 5.26669e-10 -0.0452423)
(-0.0370561 5.49323e-10 -0.0444436)
(-0.0341388 5.71979e-10 -0.0436262)
(-0.0312806 5.94844e-10 -0.0427905)
(-0.0284829 6.1699e-10 -0.041937)
(-0.0257467 6.39447e-10 -0.041066)
(-0.0230733 6.61289e-10 -0.0401778)
(-0.0204639 6.82823e-10 -0.0392726)
(-0.0179195 7.03897e-10 -0.0383504)
(-0.0154411 7.24663e-10 -0.0374114)
(-0.01303 7.44865e-10 -0.0364554)
(-0.0106871 7.63883e-10 -0.0354824)
(-0.00841338 7.81151e-10 -0.0344923)
(-0.00620987 7.97338e-10 -0.0334848)
(-0.00407754 8.12495e-10 -0.0324597)
(-0.00201734 8.26211e-10 -0.0314168)
(-3.01829e-05 8.3766e-10 -0.0303559)
(0.00188301 8.47201e-10 -0.0292765)
(0.00372134 8.53905e-10 -0.0281786)
(0.00548398 8.58133e-10 -0.0270619)
(0.00717009 8.60142e-10 -0.0259263)
(0.00877887 8.59158e-10 -0.0247715)
(0.0103096 8.5487e-10 -0.0235977)
(0.0117614 8.47175e-10 -0.0224049)
(0.0131339 8.36897e-10 -0.0211932)
(0.0144262 8.23725e-10 -0.0199631)
(0.0156379 8.07556e-10 -0.018715)
(0.0167684 7.87871e-10 -0.0174495)
(0.0178174 7.65291e-10 -0.0161675)
(0.0187846 7.39297e-10 -0.01487)
(0.0196697 7.10611e-10 -0.0135585)
(0.0204727 6.79129e-10 -0.0122343)
(0.0211935 6.44229e-10 -0.0108993)
(0.0218323 6.07152e-10 -0.00955553)
(0.0223893 5.67482e-10 -0.00820544)
(0.0228651 5.25942e-10 -0.00685168)
(0.0232602 4.82738e-10 -0.00549725)
(0.0235754 4.37767e-10 -0.00414549)
(0.0238117 3.92267e-10 -0.00280005)
(0.0239702 3.45826e-10 -0.00146495)
(0.0240523 2.98547e-10 -0.000144522)
(0.0240595 2.50429e-10 0.00115653)
(0.0239937 2.00748e-10 0.00243319)
(0.0238569 1.48158e-10 0.00368008)
(0.0236512 9.19358e-11 0.00489153)
(0.0233791 2.9699e-11 0.00606154)
(0.0230433 -3.96923e-11 0.00718385)
(0.0226465 -1.19552e-10 0.0082519)
(0.0221919 -2.11334e-10 0.00925893)
(0.0216825 -3.17422e-10 0.010198)
(0.0211218 -4.39477e-10 0.0110619)
(0.0205132 -5.76055e-10 0.0118434)
(0.0198603 -7.26537e-10 0.0125352)
(0.0191666 -8.86783e-10 0.0131299)
(0.0184359 -1.0541e-09 0.0136203)
(0.0176716 -1.22569e-09 0.0139993)
(0.0168774 -1.40311e-09 0.0142598)
(0.0160565 -1.58873e-09 0.0143952)
(0.0152122 -1.78784e-09 0.0143993)
(0.0143474 -2.00479e-09 0.0142663)
(0.0134648 -2.24433e-09 0.0139909)
(0.0125668 -2.51197e-09 0.0135687)
(0.0116553 -2.81432e-09 0.0129961)
(0.010732 -3.14813e-09 0.0122702)
(0.00979821 -3.49243e-09 0.0113891)
(0.00885498 -3.83614e-09 0.0103521)
(0.00790311 -4.25857e-09 0.00915894)
(0.00694335 -4.95226e-09 0.00781024)
(0.00597653 -6.09711e-09 0.00630643)
(0.00500383 -7.75225e-09 0.0046468)
(0.00402737 -1.02195e-08 0.002827)
(0.00304985 -1.43904e-08 0.000833726)
(0.0020831 -2.14638e-08 -0.00136894)
(0.00115731 -2.90664e-08 -0.00387057)
(0.000381814 -1.20409e-07 -0.00634194)
(-0.00448055 -1.65938e-07 0.0205909)
(-0.0104746 -1.88389e-08 0.0326671)
(-0.0171407 1.56083e-09 0.041188)
(-0.0236907 -1.28062e-10 0.0481003)
(-0.0300146 -1.03579e-09 0.0540714)
(-0.0361377 -1.77584e-09 0.0593474)
(-0.0420867 -2.10528e-09 0.064041)
(-0.0478884 -2.11958e-09 0.0682136)
(-0.0535679 -2.30569e-09 0.0719052)
(-0.0591479 -2.59309e-09 0.0751462)
(-0.0646479 -2.6577e-09 0.077963)
(-0.0700842 -2.46468e-09 0.0803802)
(-0.0754695 -2.18139e-09 0.0824214)
(-0.0808133 -1.92826e-09 0.0841098)
(-0.0861225 -1.72684e-09 0.0854676)
(-0.0914009 -1.56816e-09 0.0865167)
(-0.0966504 -1.44884e-09 0.0872778)
(-0.101871 -1.37164e-09 0.0877706)
(-0.10706 -1.32897e-09 0.0880138)
(-0.112216 -1.30406e-09 0.0880249)
(-0.117333 -1.27661e-09 0.08782)
(-0.122406 -1.23349e-09 0.0874142)
(-0.127431 -1.1691e-09 0.0868214)
(-0.132402 -1.08424e-09 0.0860542)
(-0.137311 -9.84476e-10 0.0851245)
(-0.142152 -8.79669e-10 0.084043)
(-0.146919 -7.82404e-10 0.0828197)
(-0.151606 -7.04286e-10 0.0814635)
(-0.156205 -6.50934e-10 0.079983)
(-0.160712 -6.2028e-10 0.0783859)
(-0.165118 -6.0474e-10 0.0766795)
(-0.16942 -5.94771e-10 0.0748705)
(-0.17361 -5.82481e-10 0.0729652)
(-0.177683 -5.63695e-10 0.0709697)
(-0.181635 -5.36969e-10 0.0688895)
(-0.18546 -5.03077e-10 0.0667302)
(-0.189153 -4.64446e-10 0.0644969)
(-0.192711 -4.24992e-10 0.0621947)
(-0.196128 -3.89149e-10 0.0598285)
(-0.199402 -3.60476e-10 0.057403)
(-0.202528 -3.4165e-10 0.0549231)
(-0.205503 -3.32671e-10 0.0523933)
(-0.208324 -3.31682e-10 0.0498182)
(-0.210988 -3.35435e-10 0.0472023)
(-0.213493 -3.4027e-10 0.0445501)
(-0.215837 -3.42837e-10 0.0418662)
(-0.218017 -3.4061e-10 0.0391549)
(-0.220032 -3.33281e-10 0.0364208)
(-0.22188 -3.2152e-10 0.0336681)
(-0.223561 -3.0708e-10 0.0309014)
(-0.225073 -2.91868e-10 0.028125)
(-0.226415 -2.76554e-10 0.0253431)
(-0.227588 -2.61961e-10 0.0225602)
(-0.228591 -2.47937e-10 0.0197804)
(-0.229425 -2.34789e-10 0.0170079)
(-0.230089 -2.21951e-10 0.0142468)
(-0.230584 -2.09989e-10 0.0115012)
(-0.230911 -1.99625e-10 0.00877506)
(-0.231072 -1.9122e-10 0.00607225)
(-0.231068 -1.85133e-10 0.00339655)
(-0.230899 -1.81468e-10 0.000751628)
(-0.230569 -1.79761e-10 -0.00185896)
(-0.230079 -1.79136e-10 -0.00443176)
(-0.229431 -1.79335e-10 -0.00696345)
(-0.228628 -1.7974e-10 -0.00945087)
(-0.227673 -1.80145e-10 -0.011891)
(-0.226568 -1.80035e-10 -0.0142809)
(-0.225316 -1.79514e-10 -0.016618)
(-0.22392 -1.78734e-10 -0.0188995)
(-0.222385 -1.77697e-10 -0.0211232)
(-0.220713 -1.76712e-10 -0.0232869)
(-0.218908 -1.75984e-10 -0.0253883)
(-0.216973 -1.74999e-10 -0.0274258)
(-0.214914 -1.74169e-10 -0.0293975)
(-0.212733 -1.73441e-10 -0.0313019)
(-0.210435 -1.72302e-10 -0.0331377)
(-0.208024 -1.70854e-10 -0.0349036)
(-0.205504 -1.68788e-10 -0.0365987)
(-0.20288 -1.65949e-10 -0.038222)
(-0.200157 -1.62595e-10 -0.039773)
(-0.197338 -1.57954e-10 -0.041251)
(-0.194429 -1.52592e-10 -0.0426556)
(-0.191433 -1.46405e-10 -0.0439868)
(-0.188356 -1.39241e-10 -0.0452444)
(-0.185202 -1.31664e-10 -0.0464285)
(-0.181976 -1.23315e-10 -0.0475394)
(-0.178682 -1.14348e-10 -0.0485773)
(-0.175325 -1.05175e-10 -0.0495429)
(-0.171909 -9.5539e-11 -0.0504366)
(-0.16844 -8.5645e-11 -0.0512593)
(-0.164921 -7.55965e-11 -0.0520118)
(-0.161357 -6.53418e-11 -0.052695)
(-0.157752 -5.46751e-11 -0.0533101)
(-0.154111 -4.37507e-11 -0.0538581)
(-0.150439 -3.20536e-11 -0.0543403)
(-0.146738 -2.05107e-11 -0.054758)
(-0.143014 -7.9891e-12 -0.0551126)
(-0.139271 4.84185e-12 -0.0554055)
(-0.135512 1.80337e-11 -0.0556383)
(-0.131742 3.18439e-11 -0.0558125)
(-0.127963 4.63757e-11 -0.0559298)
(-0.124181 6.1114e-11 -0.0559917)
(-0.120398 7.63678e-11 -0.0560001)
(-0.116618 9.19314e-11 -0.0559565)
(-0.112845 1.08217e-10 -0.0558628)
(-0.109082 1.2476e-10 -0.0557206)
(-0.105331 1.4151e-10 -0.0555318)
(-0.101596 1.5888e-10 -0.055298)
(-0.0978807 1.76714e-10 -0.0550211)
(-0.094187 1.94548e-10 -0.0547027)
(-0.090518 2.13054e-10 -0.0543446)
(-0.0868764 2.31715e-10 -0.0539484)
(-0.0832647 2.50944e-10 -0.0535158)
(-0.0796854 2.70586e-10 -0.0530485)
(-0.0761408 2.90384e-10 -0.0525479)
(-0.0726334 3.10493e-10 -0.0520157)
(-0.0691651 3.31067e-10 -0.0514533)
(-0.0657381 3.51694e-10 -0.050862)
(-0.0623544 3.72683e-10 -0.0502434)
(-0.0590159 3.94241e-10 -0.0495985)
(-0.0557245 4.15852e-10 -0.0489288)
(-0.0524818 4.37722e-10 -0.0482352)
(-0.0492895 4.59646e-10 -0.0475188)
(-0.0461493 4.81933e-10 -0.0467806)
(-0.0430627 5.04119e-10 -0.0460215)
(-0.0400312 5.26667e-10 -0.0452423)
(-0.0370561 5.49321e-10 -0.0444436)
(-0.0341388 5.71978e-10 -0.0436262)
(-0.0312806 5.94842e-10 -0.0427905)
(-0.0284829 6.16988e-10 -0.041937)
(-0.0257467 6.39446e-10 -0.041066)
(-0.0230733 6.61287e-10 -0.0401778)
(-0.0204639 6.82822e-10 -0.0392726)
(-0.0179195 7.03895e-10 -0.0383504)
(-0.0154411 7.24661e-10 -0.0374114)
(-0.01303 7.44863e-10 -0.0364554)
(-0.0106871 7.63881e-10 -0.0354824)
(-0.00841338 7.81149e-10 -0.0344923)
(-0.00620987 7.97336e-10 -0.0334848)
(-0.00407754 8.12493e-10 -0.0324597)
(-0.00201734 8.26209e-10 -0.0314168)
(-3.01844e-05 8.37658e-10 -0.0303559)
(0.00188301 8.47199e-10 -0.0292765)
(0.00372134 8.53903e-10 -0.0281786)
(0.00548398 8.58131e-10 -0.0270619)
(0.00717009 8.6014e-10 -0.0259263)
(0.00877887 8.59156e-10 -0.0247715)
(0.0103096 8.54869e-10 -0.0235977)
(0.0117614 8.47173e-10 -0.0224049)
(0.0131339 8.36895e-10 -0.0211932)
(0.0144262 8.23723e-10 -0.0199631)
(0.0156379 8.07554e-10 -0.018715)
(0.0167684 7.8787e-10 -0.0174495)
(0.0178174 7.65289e-10 -0.0161675)
(0.0187846 7.39295e-10 -0.01487)
(0.0196697 7.10609e-10 -0.0135585)
(0.0204727 6.79127e-10 -0.0122343)
(0.0211935 6.44228e-10 -0.0108993)
(0.0218322 6.07151e-10 -0.00955552)
(0.0223893 5.67481e-10 -0.00820543)
(0.0228651 5.25941e-10 -0.00685167)
(0.0232602 4.82737e-10 -0.00549724)
(0.0235754 4.37766e-10 -0.00414548)
(0.0238117 3.92266e-10 -0.00280004)
(0.0239702 3.45825e-10 -0.00146493)
(0.0240522 2.98546e-10 -0.000144506)
(0.0240595 2.50428e-10 0.00115655)
(0.0239937 2.00747e-10 0.00243321)
(0.0238569 1.48158e-10 0.0036801)
(0.0236512 9.19357e-11 0.00489155)
(0.0233791 2.9699e-11 0.00606157)
(0.0230433 -3.96922e-11 0.00718387)
(0.0226465 -1.19552e-10 0.00825192)
(0.0221918 -2.11334e-10 0.00925895)
(0.0216825 -3.17421e-10 0.010198)
(0.0211218 -4.39477e-10 0.0110619)
(0.0205132 -5.76054e-10 0.0118434)
(0.0198603 -7.26536e-10 0.0125352)
(0.0191666 -8.86781e-10 0.0131299)
(0.0184359 -1.0541e-09 0.0136204)
(0.0176716 -1.22569e-09 0.0139993)
(0.0168774 -1.4031e-09 0.0142598)
(0.0160565 -1.58873e-09 0.0143952)
(0.0152122 -1.78784e-09 0.0143993)
(0.0143474 -2.00478e-09 0.0142663)
(0.0134648 -2.24433e-09 0.0139909)
(0.0125668 -2.51197e-09 0.0135688)
(0.0116553 -2.81431e-09 0.0129961)
(0.010732 -3.14813e-09 0.0122702)
(0.00979818 -3.49242e-09 0.0113891)
(0.00885494 -3.83613e-09 0.0103521)
(0.00790308 -4.25856e-09 0.00915894)
(0.00694331 -4.95224e-09 0.00781023)
(0.00597649 -6.09709e-09 0.00630642)
(0.00500377 -7.75222e-09 0.00464678)
(0.00402731 -1.02194e-08 0.00282697)
(0.00304977 -1.43903e-08 0.000833684)
(0.002083 -2.14638e-08 -0.00136901)
(0.00115709 -2.90665e-08 -0.00387066)
(0.000381397 -1.20409e-07 -0.00634206)
(-0.00456195 -1.58128e-07 0.0279338)
(-0.0107298 -1.57644e-08 0.0400093)
(-0.0175705 2.45925e-09 0.0483009)
(-0.0243037 5.87323e-10 0.0549697)
(-0.0308102 -3.28296e-10 0.0607128)
(-0.0371121 -1.08749e-09 0.0657852)
(-0.0432318 -1.47013e-09 0.0703021)
(-0.0491931 -1.56911e-09 0.0743242)
(-0.0550188 -1.85229e-09 0.0778899)
(-0.0607301 -2.25849e-09 0.0810267)
(-0.0663451 -2.45445e-09 0.0837581)
(-0.0718797 -2.38129e-09 0.0861053)
(-0.0773464 -2.18474e-09 0.0880886)
(-0.0827553 -1.97549e-09 0.089728)
(-0.0881135 -1.77733e-09 0.0910432)
(-0.093426 -1.58652e-09 0.0920533)
(-0.0986954 -1.40991e-09 0.0927769)
(-0.103923 -1.26293e-09 0.0932319)
(-0.109107 -1.15183e-09 0.0934354)
(-0.114246 -1.07075e-09 0.0934034)
(-0.119337 -1.00769e-09 0.0931513)
(-0.124376 -9.52114e-10 0.0926933)
(-0.129359 -8.97571e-10 0.0920426)
(-0.134279 -8.38802e-10 0.0912116)
(-0.139132 -7.72405e-10 0.0902118)
(-0.143911 -6.98793e-10 0.0890537)
(-0.148612 -6.2493e-10 0.0877472)
(-0.153228 -5.61696e-10 0.0863014)
(-0.157753 -5.18268e-10 0.0847248)
(-0.162182 -4.96552e-10 0.0830254)
(-0.166508 -4.90716e-10 0.0812104)
(-0.170726 -4.91686e-10 0.079287)
(-0.174832 -4.90695e-10 0.0772615)
(-0.178819 -4.82126e-10 0.0751403)
(-0.182683 -4.63762e-10 0.0729293)
(-0.186419 -4.35399e-10 0.0706342)
(-0.190023 -3.99616e-10 0.0682604)
(-0.19349 -3.60278e-10 0.0658133)
(-0.196817 -3.22387e-10 0.063298)
(-0.199999 -2.90631e-10 0.0607197)
(-0.203035 -2.68927e-10 0.0580833)
(-0.205919 -2.58716e-10 0.0553938)
(-0.20865 -2.58657e-10 0.0526559)
(-0.211225 -2.6607e-10 0.0498745)
(-0.213641 -2.76574e-10 0.0470545)
(-0.215897 -2.85635e-10 0.0442004)
(-0.21799 -2.90417e-10 0.0413172)
(-0.219918 -2.8912e-10 0.0384095)
(-0.221682 -2.82155e-10 0.035482)
(-0.223279 -2.71171e-10 0.0325393)
(-0.224708 -2.57818e-10 0.0295862)
(-0.22597 -2.44312e-10 0.0266271)
(-0.227063 -2.31012e-10 0.0236667)
(-0.227988 -2.18228e-10 0.0207095)
(-0.228745 -2.06268e-10 0.0177598)
(-0.229335 -1.94722e-10 0.0148221)
(-0.229758 -1.83794e-10 0.0119008)
(-0.230014 -1.74206e-10 0.00899993)
(-0.230106 -1.66472e-10 0.00612371)
(-0.230034 -1.60902e-10 0.00327616)
(-0.229801 -1.58011e-10 0.000461173)
(-0.229407 -1.56974e-10 -0.00231745)
(-0.228856 -1.5738e-10 -0.00505605)
(-0.228149 -1.5897e-10 -0.00775107)
(-0.227289 -1.61177e-10 -0.0103992)
(-0.226278 -1.63231e-10 -0.0129971)
(-0.225119 -1.6482e-10 -0.0155417)
(-0.223816 -1.65844e-10 -0.0180302)
(-0.222371 -1.66301e-10 -0.0204598)
(-0.220788 -1.66294e-10 -0.0228279)
(-0.219071 -1.66236e-10 -0.0251322)
(-0.217222 -1.65766e-10 -0.0273705)
(-0.215246 -1.65245e-10 -0.0295407)
(-0.213147 -1.64672e-10 -0.031641)
(-0.210929 -1.64048e-10 -0.0336698)
(-0.208595 -1.63063e-10 -0.0356255)
(-0.20615 -1.61718e-10 -0.0375069)
(-0.203599 -1.59858e-10 -0.0393129)
(-0.200945 -1.57278e-10 -0.0410425)
(-0.198194 -1.53925e-10 -0.042695)
(-0.195349 -1.49697e-10 -0.0442699)
(-0.192415 -1.44388e-10 -0.0457667)
(-0.189397 -1.38667e-10 -0.0471851)
(-0.186299 -1.31865e-10 -0.0485252)
(-0.183126 -1.24445e-10 -0.0497869)
(-0.179882 -1.16458e-10 -0.0509705)
(-0.176573 -1.07648e-10 -0.0520764)
(-0.173201 -9.86322e-11 -0.0531051)
(-0.169774 -8.92559e-11 -0.0540572)
(-0.166293 -7.95706e-11 -0.0549335)
(-0.162765 -6.97823e-11 -0.0557349)
(-0.159194 -5.94275e-11 -0.0564623)
(-0.155583 -4.91242e-11 -0.057117)
(-0.151938 -3.85118e-11 -0.0577001)
(-0.148263 -2.72299e-11 -0.0582129)
(-0.144561 -1.58963e-11 -0.0586569)
(-0.140838 -3.9961e-12 -0.0590334)
(-0.137096 8.41926e-12 -0.0593441)
(-0.13334 2.09894e-11 -0.0595904)
(-0.129574 3.44867e-11 -0.0597742)
(-0.125802 4.80359e-11 -0.0598971)
(-0.122027 6.22034e-11 -0.0599608)
(-0.118253 7.69894e-11 -0.0599672)
(-0.114483 9.20848e-11 -0.0599181)
(-0.110721 1.07387e-10 -0.0598152)
(-0.10697 1.23359e-10 -0.0596605)
(-0.103233 1.39332e-10 -0.0594559)
(-0.0995135 1.56026e-10 -0.0592031)
(-0.0958143 1.72979e-10 -0.0589041)
(-0.0921381 1.90087e-10 -0.0585607)
(-0.0884879 2.07866e-10 -0.0581746)
(-0.0848661 2.25852e-10 -0.0577478)
(-0.0812754 2.44096e-10 -0.0572819)
(-0.0777182 2.62805e-10 -0.0567787)
(-0.0741969 2.81875e-10 -0.0562399)
(-0.0707136 3.01256e-10 -0.0556671)
(-0.0672706 3.20896e-10 -0.0550618)
(-0.06387 3.40383e-10 -0.0544256)
(-0.0605136 3.60592e-10 -0.0537599)
(-0.0572034 3.81164e-10 -0.0530661)
(-0.0539412 4.01737e-10 -0.0523455)
(-0.0507287 4.22518e-10 -0.0515993)
(-0.0475675 4.4361e-10 -0.0508286)
(-0.0444593 4.64703e-10 -0.0500344)
(-0.0414055 4.86005e-10 -0.0492178)
(-0.0384075 5.07824e-10 -0.0483795)
(-0.0354668 5.29336e-10 -0.0475204)
(-0.0325847 5.51056e-10 -0.0466411)
(-0.0297625 5.72624e-10 -0.0457421)
(-0.0270013 5.93988e-10 -0.0448241)
(-0.0243024 6.15199e-10 -0.0438874)
(-0.0216668 6.35795e-10 -0.0429322)
(-0.0190958 6.56032e-10 -0.0419588)
(-0.0165904 6.76013e-10 -0.0409674)
(-0.0141515 6.95379e-10 -0.039958)
(-0.0117803 7.14334e-10 -0.0389306)
(-0.00947764 7.31539e-10 -0.0378852)
(-0.00724454 7.47457e-10 -0.0368216)
(-0.00508192 7.62088e-10 -0.0357396)
(-0.00299068 7.75794e-10 -0.034639)
(-0.000971726 7.87078e-10 -0.0335197)
(0.000974157 7.97023e-10 -0.0323814)
(0.00284604 8.0408e-10 -0.0312238)
(0.00464318 8.08507e-10 -0.0300468)
(0.0063648 8.11026e-10 -0.0288501)
(0.00801015 8.1076e-10 -0.0276337)
(0.00957853 8.07087e-10 -0.0263974)
(0.0110693 8.00318e-10 -0.0251414)
(0.0124818 7.90864e-10 -0.0238656)
(0.0138154 7.7826e-10 -0.0225705)
(0.0150698 7.6297e-10 -0.0212562)
(0.0162443 7.44475e-10 -0.0199236)
(0.0173388 7.23138e-10 -0.0185731)
(0.0183528 6.98544e-10 -0.0172059)
(0.0192861 6.71207e-10 -0.015823)
(0.0201387 6.41283e-10 -0.0144258)
(0.0209106 6.08667e-10 -0.0130161)
(0.0216019 5.73564e-10 -0.0115957)
(0.0222129 5.35973e-10 -0.0101669)
(0.0227438 4.96101e-10 -0.00873221)
(0.0231954 4.54669e-10 -0.00729444)
(0.0235683 4.11678e-10 -0.00585681)
(0.0238633 3.67023e-10 -0.00442281)
(0.0240816 3.21427e-10 -0.00299632)
(0.0242242 2.74579e-10 -0.00158154)
(0.0242927 2.26791e-10 -0.000183012)
(0.0242887 1.7651e-10 0.00119435)
(0.0242139 1.23942e-10 0.00254529)
(0.0240704 6.77431e-11 0.00386425)
(0.0238603 5.42898e-12 0.00514532)
(0.0235861 -6.37259e-11 0.00638231)
(0.0232503 -1.42621e-10 0.00756873)
(0.0228557 -2.32706e-10 0.00869788)
(0.0224051 -3.36988e-10 0.0097628)
(0.0219016 -4.57022e-10 0.0107564)
(0.0213485 -5.93951e-10 0.0116713)
(0.0207488 -7.46539e-10 0.0125004)
(0.020106 -9.12925e-10 0.013236)
(0.0194234 -1.0898e-09 0.0138711)
(0.0187042 -1.2726e-09 0.0143982)
(0.0179518 -1.45937e-09 0.0148102)
(0.0171693 -1.64927e-09 0.0151005)
(0.0163597 -1.84592e-09 0.0152625)
(0.0155259 -2.05429e-09 0.0152902)
(0.0146703 -2.27707e-09 0.0151781)
(0.0137953 -2.51767e-09 0.0149212)
(0.0129028 -2.78293e-09 0.0145156)
(0.0119945 -3.07966e-09 0.0139578)
(0.0110716 -3.40918e-09 0.0132455)
(0.0101351 -3.75249e-09 0.0123772)
(0.00918571 -4.09913e-09 0.0113521)
(0.00822383 -4.5284e-09 0.0101705)
(0.00724984 -5.24516e-09 0.00883279)
(0.00626413 -6.43731e-09 0.00733934)
(0.00526737 -8.16891e-09 0.00568883)
(0.00426111 -1.07525e-08 0.00387577)
(0.00324741 -1.51122e-08 0.00188431)
(0.00223688 -2.24893e-08 -0.000327792)
(0.0012618 -3.0572e-08 -0.00287223)
(0.000429666 -1.16768e-07 -0.0055664)
(-0.00456213 -1.58127e-07 0.0279336)
(-0.0107298 -1.57643e-08 0.0400091)
(-0.0175705 2.45922e-09 0.0483008)
(-0.0243036 5.87316e-10 0.0549695)
(-0.0308102 -3.28292e-10 0.0607126)
(-0.037112 -1.08748e-09 0.0657851)
(-0.0432317 -1.47011e-09 0.0703019)
(-0.049193 -1.56909e-09 0.0743241)
(-0.0550188 -1.85227e-09 0.0778897)
(-0.06073 -2.25846e-09 0.0810266)
(-0.0663451 -2.45442e-09 0.083758)
(-0.0718796 -2.38127e-09 0.0861052)
(-0.0773463 -2.18471e-09 0.0880885)
(-0.0827552 -1.97546e-09 0.089728)
(-0.0881134 -1.77731e-09 0.0910432)
(-0.0934259 -1.5865e-09 0.0920533)
(-0.0986954 -1.4099e-09 0.0927769)
(-0.103923 -1.26292e-09 0.0932319)
(-0.109107 -1.15182e-09 0.0934353)
(-0.114246 -1.07074e-09 0.0934034)
(-0.119337 -1.00768e-09 0.0931513)
(-0.124376 -9.52106e-10 0.0926933)
(-0.129358 -8.97563e-10 0.0920426)
(-0.134279 -8.38795e-10 0.0912116)
(-0.139132 -7.72399e-10 0.0902118)
(-0.143911 -6.98787e-10 0.0890537)
(-0.148612 -6.24925e-10 0.0877472)
(-0.153228 -5.61692e-10 0.0863014)
(-0.157753 -5.18265e-10 0.0847248)
(-0.162182 -4.96548e-10 0.0830254)
(-0.166508 -4.90713e-10 0.0812104)
(-0.170726 -4.91683e-10 0.079287)
(-0.174832 -4.90692e-10 0.0772615)
(-0.178819 -4.82123e-10 0.0751403)
(-0.182683 -4.63759e-10 0.0729293)
(-0.186419 -4.35397e-10 0.0706342)
(-0.190023 -3.99614e-10 0.0682604)
(-0.19349 -3.60276e-10 0.0658133)
(-0.196817 -3.22385e-10 0.063298)
(-0.199999 -2.90629e-10 0.0607197)
(-0.203035 -2.68925e-10 0.0580833)
(-0.205919 -2.58714e-10 0.0553938)
(-0.20865 -2.58656e-10 0.0526559)
(-0.211225 -2.66069e-10 0.0498745)
(-0.213641 -2.76573e-10 0.0470545)
(-0.215897 -2.85633e-10 0.0442004)
(-0.21799 -2.90416e-10 0.0413172)
(-0.219918 -2.89118e-10 0.0384095)
(-0.221682 -2.82153e-10 0.035482)
(-0.223279 -2.7117e-10 0.0325393)
(-0.224708 -2.57817e-10 0.0295862)
(-0.22597 -2.44311e-10 0.0266271)
(-0.227063 -2.31011e-10 0.0236667)
(-0.227988 -2.18227e-10 0.0207095)
(-0.228745 -2.06268e-10 0.0177598)
(-0.229335 -1.94721e-10 0.0148222)
(-0.229758 -1.83793e-10 0.0119008)
(-0.230014 -1.74205e-10 0.00899994)
(-0.230106 -1.66472e-10 0.00612372)
(-0.230034 -1.60902e-10 0.00327617)
(-0.229801 -1.58011e-10 0.000461184)
(-0.229407 -1.56974e-10 -0.00231744)
(-0.228856 -1.57379e-10 -0.00505604)
(-0.228149 -1.58969e-10 -0.00775106)
(-0.227288 -1.61177e-10 -0.0103991)
(-0.226278 -1.6323e-10 -0.012997)
(-0.225119 -1.6482e-10 -0.0155417)
(-0.223816 -1.65843e-10 -0.0180302)
(-0.222371 -1.663e-10 -0.0204598)
(-0.220788 -1.66294e-10 -0.0228279)
(-0.219071 -1.66236e-10 -0.0251322)
(-0.217222 -1.65766e-10 -0.0273705)
(-0.215246 -1.65244e-10 -0.0295407)
(-0.213147 -1.64671e-10 -0.031641)
(-0.210929 -1.64047e-10 -0.0336697)
(-0.208595 -1.63063e-10 -0.0356255)
(-0.20615 -1.61718e-10 -0.0375069)
(-0.203599 -1.59858e-10 -0.0393128)
(-0.200945 -1.57278e-10 -0.0410425)
(-0.198194 -1.53925e-10 -0.042695)
(-0.195349 -1.49697e-10 -0.0442699)
(-0.192415 -1.44387e-10 -0.0457666)
(-0.189397 -1.38666e-10 -0.0471851)
(-0.186299 -1.31864e-10 -0.0485251)
(-0.183126 -1.24444e-10 -0.0497869)
(-0.179882 -1.16458e-10 -0.0509705)
(-0.176573 -1.07648e-10 -0.0520764)
(-0.173201 -9.8632e-11 -0.0531051)
(-0.169774 -8.92557e-11 -0.0540572)
(-0.166293 -7.95704e-11 -0.0549335)
(-0.162765 -6.97821e-11 -0.0557348)
(-0.159194 -5.94274e-11 -0.0564623)
(-0.155583 -4.91241e-11 -0.057117)
(-0.151938 -3.85117e-11 -0.0577001)
(-0.148263 -2.72298e-11 -0.0582129)
(-0.144561 -1.58962e-11 -0.0586569)
(-0.140838 -3.99609e-12 -0.0590334)
(-0.137096 8.41924e-12 -0.059344)
(-0.13334 2.09893e-11 -0.0595904)
(-0.129574 3.44866e-11 -0.0597742)
(-0.125802 4.80358e-11 -0.0598971)
(-0.122027 6.22033e-11 -0.0599608)
(-0.118253 7.69892e-11 -0.0599672)
(-0.114483 9.20846e-11 -0.059918)
(-0.110721 1.07387e-10 -0.0598152)
(-0.10697 1.23359e-10 -0.0596605)
(-0.103233 1.39331e-10 -0.0594559)
(-0.0995135 1.56026e-10 -0.0592031)
(-0.0958143 1.72979e-10 -0.0589041)
(-0.0921381 1.90087e-10 -0.0585607)
(-0.0884879 2.07865e-10 -0.0581746)
(-0.0848661 2.25851e-10 -0.0577478)
(-0.0812754 2.44095e-10 -0.0572819)
(-0.0777182 2.62804e-10 -0.0567787)
(-0.0741969 2.81875e-10 -0.0562399)
(-0.0707136 3.01256e-10 -0.0556671)
(-0.0672706 3.20895e-10 -0.0550618)
(-0.06387 3.40382e-10 -0.0544256)
(-0.0605136 3.60591e-10 -0.0537599)
(-0.0572034 3.81163e-10 -0.0530661)
(-0.0539412 4.01736e-10 -0.0523455)
(-0.0507287 4.22517e-10 -0.0515993)
(-0.0475676 4.43609e-10 -0.0508286)
(-0.0444593 4.64702e-10 -0.0500344)
(-0.0414055 4.86004e-10 -0.0492178)
(-0.0384075 5.07823e-10 -0.0483795)
(-0.0354669 5.29335e-10 -0.0475204)
(-0.0325847 5.51055e-10 -0.0466411)
(-0.0297625 5.72622e-10 -0.0457421)
(-0.0270013 5.93986e-10 -0.0448241)
(-0.0243024 6.15198e-10 -0.0438874)
(-0.0216668 6.35793e-10 -0.0429322)
(-0.0190958 6.5603e-10 -0.0419588)
(-0.0165904 6.76012e-10 -0.0409674)
(-0.0141515 6.95377e-10 -0.039958)
(-0.0117803 7.14332e-10 -0.0389306)
(-0.00947764 7.31537e-10 -0.0378852)
(-0.00724455 7.47455e-10 -0.0368216)
(-0.00508193 7.62087e-10 -0.0357396)
(-0.00299069 7.75792e-10 -0.034639)
(-0.000971731 7.87076e-10 -0.0335197)
(0.000974152 7.97021e-10 -0.0323814)
(0.00284603 8.04078e-10 -0.0312238)
(0.00464318 8.08505e-10 -0.0300468)
(0.0063648 8.11024e-10 -0.0288501)
(0.00801015 8.10758e-10 -0.0276337)
(0.00957853 8.07085e-10 -0.0263974)
(0.0110693 8.00316e-10 -0.0251414)
(0.0124818 7.90862e-10 -0.0238656)
(0.0138154 7.78258e-10 -0.0225705)
(0.0150698 7.62968e-10 -0.0212562)
(0.0162443 7.44474e-10 -0.0199236)
(0.0173388 7.23137e-10 -0.0185731)
(0.0183527 6.98542e-10 -0.0172059)
(0.0192861 6.71206e-10 -0.015823)
(0.0201387 6.41282e-10 -0.0144258)
(0.0209106 6.08665e-10 -0.0130161)
(0.0216019 5.73562e-10 -0.0115957)
(0.0222128 5.35972e-10 -0.0101669)
(0.0227438 4.961e-10 -0.0087322)
(0.0231954 4.54668e-10 -0.00729444)
(0.0235683 4.11677e-10 -0.0058568)
(0.0238633 3.67022e-10 -0.0044228)
(0.0240815 3.21426e-10 -0.00299631)
(0.0242242 2.74579e-10 -0.00158152)
(0.0242927 2.2679e-10 -0.000182996)
(0.0242887 1.76509e-10 0.00119436)
(0.0242139 1.23942e-10 0.00254531)
(0.0240704 6.77429e-11 0.00386427)
(0.0238603 5.42897e-12 0.00514534)
(0.0235861 -6.37258e-11 0.00638233)
(0.0232503 -1.4262e-10 0.00756876)
(0.0228556 -2.32706e-10 0.0086979)
(0.0224051 -3.36987e-10 0.00976282)
(0.0219016 -4.57021e-10 0.0107564)
(0.0213484 -5.9395e-10 0.0116714)
(0.0207488 -7.46538e-10 0.0125004)
(0.020106 -9.12924e-10 0.0132361)
(0.0194233 -1.0898e-09 0.0138711)
(0.0187042 -1.2726e-09 0.0143982)
(0.0179518 -1.45937e-09 0.0148103)
(0.0171693 -1.64927e-09 0.0151006)
(0.0163597 -1.84592e-09 0.0152626)
(0.0155258 -2.05429e-09 0.0152902)
(0.0146703 -2.27707e-09 0.0151781)
(0.0137953 -2.51767e-09 0.0149213)
(0.0129028 -2.78292e-09 0.0145156)
(0.0119945 -3.07965e-09 0.0139579)
(0.0110716 -3.40917e-09 0.0132455)
(0.0101351 -3.75248e-09 0.0123772)
(0.00918567 -4.09912e-09 0.0113521)
(0.0082238 -4.52839e-09 0.0101705)
(0.0072498 -5.24514e-09 0.00883279)
(0.00626408 -6.43729e-09 0.00733933)
(0.00526732 -8.16888e-09 0.00568881)
(0.00426105 -1.07525e-08 0.00387573)
(0.00324734 -1.51122e-08 0.00188426)
(0.00223678 -2.24892e-08 -0.000327859)
(0.00126159 -3.0572e-08 -0.00287233)
(0.000429271 -1.16768e-07 -0.00556653)
(-0.00461877 -1.43529e-07 0.0354311)
(-0.0109316 -1.20954e-08 0.0475112)
(-0.017918 3.20955e-09 0.055586)
(-0.0248099 1.43101e-09 0.0620174)
(-0.0314801 6.98913e-10 0.0675338)
(-0.0379467 2.96939e-11 0.0723994)
(-0.0442281 -3.5099e-10 0.0767324)
(-0.0503447 -5.0311e-10 0.080594)
(-0.0563168 -8.87964e-10 0.0840211)
(-0.0621632 -1.45368e-09 0.0870395)
(-0.0679008 -1.85225e-09 0.08967)
(-0.0735442 -1.98806e-09 0.091931)
(-0.0791056 -1.97572e-09 0.0938402)
(-0.0845949 -1.90768e-09 0.0954148)
(-0.0900194 -1.79928e-09 0.0966718)
(-0.0953843 -1.64475e-09 0.0976282)
(-0.100693 -1.45711e-09 0.0983004)
(-0.105947 -1.2633e-09 0.0987045)
(-0.111147 -1.08636e-09 0.0988562)
(-0.116291 -9.3709e-10 0.0987703)
(-0.121376 -8.16195e-10 0.098461)
(-0.126401 -7.21301e-10 0.0979417)
(-0.13136 -6.49826e-10 0.097225)
(-0.13625 -5.95835e-10 0.0963228)
(-0.141065 -5.49531e-10 0.0952462)
(-0.145801 -5.0194e-10 0.0940056)
(-0.150453 -4.50949e-10 0.0926108)
(-0.155015 -4.04138e-10 0.0910708)
(-0.159481 -3.72279e-10 0.089394)
(-0.163847 -3.60164e-10 0.0875886)
(-0.168107 -3.65575e-10 0.0856621)
(-0.172256 -3.79539e-10 0.0836214)
(-0.176289 -3.92419e-10 0.0814735)
(-0.180202 -3.96844e-10 0.0792247)
(-0.183989 -3.8926e-10 0.0768811)
(-0.187646 -3.69051e-10 0.0744488)
(-0.19117 -3.37711e-10 0.0719334)
(-0.194556 -2.9983e-10 0.0693405)
(-0.1978 -2.60611e-10 0.0666756)
(-0.2009 -2.25774e-10 0.063944)
(-0.203851 -2.00574e-10 0.0611509)
(-0.206651 -1.87586e-10 0.0583016)
(-0.209297 -1.87684e-10 0.0554011)
(-0.211787 -1.97467e-10 0.0524546)
(-0.214118 -2.12916e-10 0.0494671)
(-0.216289 -2.28827e-10 0.0464436)
(-0.218297 -2.40925e-10 0.0433892)
(-0.220142 -2.46634e-10 0.0403088)
(-0.221822 -2.4539e-10 0.0372074)
(-0.223336 -2.38685e-10 0.0340899)
(-0.224684 -2.28478e-10 0.0309613)
(-0.225865 -2.16726e-10 0.0278263)
(-0.226878 -2.04666e-10 0.0246898)
(-0.227725 -1.93122e-10 0.0215566)
(-0.228404 -1.82505e-10 0.0184314)
(-0.228917 -1.72249e-10 0.0153187)
(-0.229265 -1.62457e-10 0.0122233)
(-0.229448 -1.53696e-10 0.00914944)
(-0.229467 -1.4648e-10 0.00610161)
(-0.229325 -1.41581e-10 0.00308403)
(-0.229022 -1.39102e-10 0.000100841)
(-0.228561 -1.38684e-10 -0.00284393)
(-0.227944 -1.40222e-10 -0.00574639)
(-0.227172 -1.42944e-10 -0.00860279)
(-0.22625 -1.46594e-10 -0.0114096)
(-0.225178 -1.50243e-10 -0.0141632)
(-0.22396 -1.53428e-10 -0.0168606)
(-0.222599 -1.55841e-10 -0.0194986)
(-0.221099 -1.57431e-10 -0.0220742)
(-0.219462 -1.58299e-10 -0.0245847)
(-0.217693 -1.58756e-10 -0.0270277)
(-0.215794 -1.58853e-10 -0.0294007)
(-0.21377 -1.58589e-10 -0.0317017)
(-0.211624 -1.57965e-10 -0.0339286)
(-0.209361 -1.57238e-10 -0.0360796)
(-0.206985 -1.56202e-10 -0.0381533)
(-0.204499 -1.5496e-10 -0.0401482)
(-0.201908 -1.52998e-10 -0.0420631)
(-0.199217 -1.5047e-10 -0.0438971)
(-0.19643 -1.47221e-10 -0.0456493)
(-0.193552 -1.432e-10 -0.0473191)
(-0.190586 -1.38304e-10 -0.048906)
(-0.187537 -1.32739e-10 -0.0504098)
(-0.184411 -1.26093e-10 -0.0518304)
(-0.181212 -1.18829e-10 -0.0531679)
(-0.177943 -1.10897e-10 -0.0544224)
(-0.174611 -1.02346e-10 -0.0555944)
(-0.171218 -9.36415e-11 -0.0566844)
(-0.167771 -8.44221e-11 -0.0576931)
(-0.164273 -7.48424e-11 -0.0586212)
(-0.160729 -6.51596e-11 -0.0594697)
(-0.157143 -5.52195e-11 -0.0602397)
(-0.15352 -4.50734e-11 -0.0609323)
(-0.149865 -3.45154e-11 -0.0615488)
(-0.14618 -2.37514e-11 -0.0620905)
(-0.142471 -1.29872e-11 -0.0625591)
(-0.138741 -1.50214e-12 -0.0629559)
(-0.134995 1.03435e-11 -0.0632826)
(-0.131237 2.26012e-11 -0.063541)
(-0.12747 3.54255e-11 -0.0637327)
(-0.123698 4.84046e-11 -0.0638596)
(-0.119926 6.20018e-11 -0.0639236)
(-0.116155 7.60112e-11 -0.0639265)
(-0.112391 9.0639e-11 -0.0638703)
(-0.108635 1.0537e-10 -0.0637569)
(-0.104892 1.20462e-10 -0.0635882)
(-0.101165 1.35916e-10 -0.0633663)
(-0.0974569 1.51781e-10 -0.0630932)
(-0.0937702 1.68163e-10 -0.0627707)
(-0.090108 1.84751e-10 -0.0624008)
(-0.0864731 2.01494e-10 -0.0619855)
(-0.082868 2.18702e-10 -0.0615267)
(-0.0792952 2.36065e-10 -0.0610263)
(-0.0757573 2.54048e-10 -0.060486)
(-0.0722566 2.72288e-10 -0.0599077)
(-0.0687951 2.90633e-10 -0.0592931)
(-0.0653752 3.0934e-10 -0.0586438)
(-0.0619988 3.28254e-10 -0.0579615)
(-0.0586678 3.47735e-10 -0.0572477)
(-0.0553842 3.67115e-10 -0.0565038)
(-0.0521496 3.87115e-10 -0.0557313)
(-0.0489659 4.06859e-10 -0.0549314)
(-0.0458345 4.27068e-10 -0.0541053)
(-0.0427571 4.47536e-10 -0.0532542)
(-0.0397351 4.67954e-10 -0.052379)
(-0.03677 4.88632e-10 -0.0514808)
(-0.033863 5.09312e-10 -0.0505603)
(-0.0310155 5.29994e-10 -0.0496183)
(-0.0282286 5.50677e-10 -0.0486553)
(-0.0255037 5.7126e-10 -0.047672)
(-0.0228419 5.91433e-10 -0.0466688)
(-0.0202441 6.11041e-10 -0.045646)
(-0.0177115 6.30394e-10 -0.0446039)
(-0.0152452 6.49233e-10 -0.0435426)
(-0.012846 6.67663e-10 -0.0424623)
(-0.010515 6.85012e-10 -0.041363)
(-0.00825306 7.00972e-10 -0.0402447)
(-0.00606108 7.15026e-10 -0.0391072)
(-0.00393994 7.28825e-10 -0.0379504)
(-0.00189047 7.40358e-10 -0.0367742)
(8.65197e-05 7.50346e-10 -0.0355783)
(0.00199024 7.58066e-10 -0.0343626)
(0.00381993 7.63054e-10 -0.0331268)
(0.00557489 7.65877e-10 -0.0318707)
(0.00725441 7.66379e-10 -0.0305943)
(0.00885786 7.63941e-10 -0.0292974)
(0.0103846 7.58047e-10 -0.0279801)
(0.0118341 7.49469e-10 -0.0266422)
(0.0132058 7.37948e-10 -0.0252842)
(0.0144992 7.23433e-10 -0.0239062)
(0.015714 7.06231e-10 -0.0225088)
(0.0168498 6.86033e-10 -0.0210925)
(0.0179064 6.63044e-10 -0.0196581)
(0.0188835 6.37418e-10 -0.0182068)
(0.0197811 6.09256e-10 -0.0167398)
(0.0205992 5.78456e-10 -0.0152585)
(0.0213379 5.45223e-10 -0.0137648)
(0.0219974 5.09968e-10 -0.0122606)
(0.0225781 4.72382e-10 -0.0107485)
(0.0230805 4.32411e-10 -0.00923106)
(0.0235053 3.91295e-10 -0.00771126)
(0.0238532 3.48413e-10 -0.00619248)
(0.0241251 3.03454e-10 -0.00467841)
(0.0243223 2.57555e-10 -0.00317308)
(0.0244459 2.09579e-10 -0.00168089)
(0.0244975 1.59215e-10 -0.000206597)
(0.0244787 1.05739e-10 0.00124471)
(0.0243913 4.80117e-11 0.00266758)
(0.0242373 -1.50005e-11 0.00405624)
(0.0240189 -8.56779e-11 0.0054046)
(0.0237385 -1.65057e-10 0.00670629)
(0.0233986 -2.56139e-10 0.00795466)
(0.0230017 -3.59859e-10 0.00914281)
(0.0225509 -4.79015e-10 0.0102637)
(0.0220488 -6.15057e-10 0.01131)
(0.0214986 -7.68303e-10 0.0122745)
(0.0209034 -9.37618e-10 0.0131496)
(0.0202661 -1.12094e-09 0.0139281)
(0.0195899 -1.31267e-09 0.0146026)
(0.018878 -1.50961e-09 0.0151658)
(0.0181332 -1.70803e-09 0.0156109)
(0.0173585 -1.9074e-09 0.0159311)
(0.0165565 -2.1102e-09 0.0161202)
(0.0157297 -2.32141e-09 0.0161723)
(0.0148805 -2.54277e-09 0.0160823)
(0.0140108 -2.7777e-09 0.0158456)
(0.0131222 -3.03208e-09 0.0154584)
(0.0122161 -3.31615e-09 0.0149178)
(0.0112936 -3.63321e-09 0.0142217)
(0.0103554 -3.96828e-09 0.0133689)
(0.00940185 -4.31123e-09 0.0123591)
(0.00843327 -4.7436e-09 0.0111924)
(0.00744977 -5.477e-09 0.00986962)
(0.00645151 -6.7092e-09 0.0083907)
(0.00543892 -8.50813e-09 0.00675392)
(0.00441324 -1.11968e-08 0.00495266)
(0.00337624 -1.57212e-08 0.00296866)
(0.00233777 -2.3343e-08 0.000753666)
(0.0013317 -3.17942e-08 -0.00182569)
(0.000463656 -1.12362e-07 -0.00472882)
(-0.0046189 -1.43528e-07 0.0354308)
(-0.0109317 -1.20953e-08 0.0475111)
(-0.0179179 3.20951e-09 0.0555858)
(-0.0248099 1.431e-09 0.0620173)
(-0.03148 6.98905e-10 0.0675337)
(-0.0379466 2.96936e-11 0.0723993)
(-0.044228 -3.50986e-10 0.0767323)
(-0.0503447 -5.03105e-10 0.0805939)
(-0.0563168 -8.87954e-10 0.084021)
(-0.0621632 -1.45366e-09 0.0870394)
(-0.0679007 -1.85223e-09 0.0896699)
(-0.0735441 -1.98804e-09 0.091931)
(-0.0791056 -1.9757e-09 0.0938401)
(-0.0845948 -1.90766e-09 0.0954147)
(-0.0900193 -1.79926e-09 0.0966718)
(-0.0953843 -1.64473e-09 0.0976281)
(-0.100693 -1.4571e-09 0.0983003)
(-0.105947 -1.26328e-09 0.0987045)
(-0.111147 -1.08635e-09 0.0988562)
(-0.116291 -9.37082e-10 0.0987703)
(-0.121376 -8.16188e-10 0.0984609)
(-0.126401 -7.21295e-10 0.0979416)
(-0.13136 -6.4982e-10 0.0972249)
(-0.13625 -5.95831e-10 0.0963227)
(-0.141065 -5.49527e-10 0.0952462)
(-0.145801 -5.01936e-10 0.0940056)
(-0.150453 -4.50946e-10 0.0926108)
(-0.155015 -4.04135e-10 0.0910707)
(-0.159481 -3.72276e-10 0.089394)
(-0.163847 -3.60162e-10 0.0875886)
(-0.168107 -3.65572e-10 0.0856621)
(-0.172256 -3.79537e-10 0.0836214)
(-0.176289 -3.92416e-10 0.0814735)
(-0.180202 -3.96842e-10 0.0792247)
(-0.183989 -3.89258e-10 0.0768811)
(-0.187646 -3.69049e-10 0.0744488)
(-0.19117 -3.3771e-10 0.0719334)
(-0.194556 -2.99828e-10 0.0693405)
(-0.1978 -2.60609e-10 0.0666756)
(-0.2009 -2.25773e-10 0.063944)
(-0.203851 -2.00573e-10 0.0611509)
(-0.206651 -1.87585e-10 0.0583016)
(-0.209297 -1.87683e-10 0.0554011)
(-0.211787 -1.97466e-10 0.0524546)
(-0.214118 -2.12915e-10 0.0494671)
(-0.216289 -2.28826e-10 0.0464436)
(-0.218297 -2.40924e-10 0.0433892)
(-0.220142 -2.46633e-10 0.0403088)
(-0.221822 -2.45389e-10 0.0372074)
(-0.223336 -2.38684e-10 0.0340899)
(-0.224684 -2.28477e-10 0.0309613)
(-0.225865 -2.16726e-10 0.0278263)
(-0.226878 -2.04666e-10 0.0246898)
(-0.227725 -1.93121e-10 0.0215566)
(-0.228404 -1.82505e-10 0.0184314)
(-0.228917 -1.72249e-10 0.0153187)
(-0.229265 -1.62457e-10 0.0122233)
(-0.229448 -1.53695e-10 0.00914945)
(-0.229467 -1.46479e-10 0.00610162)
(-0.229325 -1.4158e-10 0.00308404)
(-0.229022 -1.39102e-10 0.000100853)
(-0.228561 -1.38683e-10 -0.00284392)
(-0.227944 -1.40222e-10 -0.00574637)
(-0.227172 -1.42944e-10 -0.00860278)
(-0.226249 -1.46593e-10 -0.0114095)
(-0.225178 -1.50242e-10 -0.0141632)
(-0.22396 -1.53428e-10 -0.0168606)
(-0.222599 -1.55841e-10 -0.0194985)
(-0.221099 -1.5743e-10 -0.0220742)
(-0.219462 -1.58299e-10 -0.0245847)
(-0.217693 -1.58756e-10 -0.0270277)
(-0.215794 -1.58852e-10 -0.0294007)
(-0.21377 -1.58589e-10 -0.0317017)
(-0.211624 -1.57964e-10 -0.0339286)
(-0.209361 -1.57237e-10 -0.0360796)
(-0.206985 -1.56202e-10 -0.0381533)
(-0.204499 -1.5496e-10 -0.0401482)
(-0.201908 -1.52998e-10 -0.0420631)
(-0.199217 -1.5047e-10 -0.0438971)
(-0.19643 -1.47221e-10 -0.0456492)
(-0.193552 -1.432e-10 -0.047319)
(-0.190586 -1.38304e-10 -0.048906)
(-0.187537 -1.32739e-10 -0.0504098)
(-0.184411 -1.26093e-10 -0.0518304)
(-0.181212 -1.18829e-10 -0.0531679)
(-0.177943 -1.10896e-10 -0.0544224)
(-0.174611 -1.02346e-10 -0.0555944)
(-0.171218 -9.36413e-11 -0.0566844)
(-0.167771 -8.44219e-11 -0.0576931)
(-0.164273 -7.48422e-11 -0.0586212)
(-0.160729 -6.51595e-11 -0.0594697)
(-0.157143 -5.52194e-11 -0.0602397)
(-0.15352 -4.50733e-11 -0.0609323)
(-0.149865 -3.45153e-11 -0.0615488)
(-0.14618 -2.37513e-11 -0.0620905)
(-0.142471 -1.29872e-11 -0.0625591)
(-0.138741 -1.50213e-12 -0.0629559)
(-0.134995 1.03435e-11 -0.0632826)
(-0.131237 2.26012e-11 -0.063541)
(-0.12747 3.54254e-11 -0.0637327)
(-0.123698 4.84044e-11 -0.0638596)
(-0.119926 6.20016e-11 -0.0639236)
(-0.116155 7.60111e-11 -0.0639265)
(-0.112391 9.06388e-11 -0.0638703)
(-0.108635 1.0537e-10 -0.0637569)
(-0.104892 1.20462e-10 -0.0635882)
(-0.101165 1.35915e-10 -0.0633663)
(-0.0974569 1.51781e-10 -0.0630931)
(-0.0937702 1.68162e-10 -0.0627707)
(-0.090108 1.84751e-10 -0.0624008)
(-0.0864731 2.01494e-10 -0.0619855)
(-0.082868 2.18702e-10 -0.0615267)
(-0.0792952 2.36065e-10 -0.0610263)
(-0.0757573 2.54047e-10 -0.060486)
(-0.0722566 2.72288e-10 -0.0599077)
(-0.0687951 2.90632e-10 -0.0592931)
(-0.0653752 3.09339e-10 -0.0586438)
(-0.0619988 3.28253e-10 -0.0579615)
(-0.0586678 3.47734e-10 -0.0572477)
(-0.0553842 3.67115e-10 -0.0565038)
(-0.0521496 3.87114e-10 -0.0557313)
(-0.0489659 4.06858e-10 -0.0549314)
(-0.0458345 4.27067e-10 -0.0541053)
(-0.0427571 4.47535e-10 -0.0532542)
(-0.0397351 4.67953e-10 -0.052379)
(-0.03677 4.88631e-10 -0.0514808)
(-0.033863 5.09311e-10 -0.0505603)
(-0.0310155 5.29992e-10 -0.0496183)
(-0.0282287 5.50676e-10 -0.0486553)
(-0.0255037 5.71259e-10 -0.047672)
(-0.0228419 5.91431e-10 -0.0466688)
(-0.0202441 6.11039e-10 -0.045646)
(-0.0177115 6.30392e-10 -0.0446039)
(-0.0152452 6.49231e-10 -0.0435426)
(-0.012846 6.67661e-10 -0.0424623)
(-0.010515 6.8501e-10 -0.041363)
(-0.00825307 7.0097e-10 -0.0402447)
(-0.00606109 7.15024e-10 -0.0391072)
(-0.00393995 7.28823e-10 -0.0379504)
(-0.00189048 7.40356e-10 -0.0367742)
(8.65101e-05 7.50344e-10 -0.0355783)
(0.00199023 7.58064e-10 -0.0343626)
(0.00381992 7.63053e-10 -0.0331268)
(0.00557488 7.65875e-10 -0.0318707)
(0.0072544 7.66377e-10 -0.0305943)
(0.00885785 7.63939e-10 -0.0292974)
(0.0103846 7.58045e-10 -0.0279801)
(0.0118341 7.49467e-10 -0.0266423)
(0.0132058 7.37946e-10 -0.0252842)
(0.0144992 7.23431e-10 -0.0239062)
(0.015714 7.06229e-10 -0.0225088)
(0.0168498 6.86031e-10 -0.0210925)
(0.0179064 6.63042e-10 -0.0196581)
(0.0188835 6.37416e-10 -0.0182068)
(0.0197811 6.09255e-10 -0.0167398)
(0.0205992 5.78455e-10 -0.0152585)
(0.0213379 5.45221e-10 -0.0137647)
(0.0219974 5.09967e-10 -0.0122606)
(0.0225781 4.72381e-10 -0.0107485)
(0.0230805 4.3241e-10 -0.00923105)
(0.0235053 3.91294e-10 -0.00771125)
(0.0238532 3.48412e-10 -0.00619247)
(0.0241251 3.03454e-10 -0.00467839)
(0.0243223 2.57555e-10 -0.00317306)
(0.0244459 2.09579e-10 -0.00168088)
(0.0244975 1.59215e-10 -0.000206581)
(0.0244787 1.05738e-10 0.00124473)
(0.0243913 4.80116e-11 0.0026676)
(0.0242373 -1.50005e-11 0.00405626)
(0.0240189 -8.56777e-11 0.00540463)
(0.0237385 -1.65056e-10 0.00670632)
(0.0233985 -2.56139e-10 0.00795468)
(0.0230017 -3.59859e-10 0.00914284)
(0.0225508 -4.79014e-10 0.0102637)
(0.0220488 -6.15056e-10 0.01131)
(0.0214986 -7.68302e-10 0.0122745)
(0.0209033 -9.37616e-10 0.0131497)
(0.0202661 -1.12093e-09 0.0139282)
(0.0195899 -1.31267e-09 0.0146026)
(0.018878 -1.50961e-09 0.0151659)
(0.0181332 -1.70802e-09 0.0156109)
(0.0173584 -1.90739e-09 0.0159311)
(0.0165565 -2.1102e-09 0.0161202)
(0.0157297 -2.32141e-09 0.0161723)
(0.0148805 -2.54277e-09 0.0160823)
(0.0140107 -2.77769e-09 0.0158456)
(0.0131222 -3.03207e-09 0.0154584)
(0.0122161 -3.31614e-09 0.0149178)
(0.0112936 -3.6332e-09 0.0142217)
(0.0103553 -3.96827e-09 0.0133689)
(0.00940182 -4.31122e-09 0.0123591)
(0.00843323 -4.74359e-09 0.0111924)
(0.00744972 -5.47698e-09 0.00986961)
(0.00645147 -6.70918e-09 0.00839069)
(0.00543887 -8.5081e-09 0.0067539)
(0.00441318 -1.11967e-08 0.00495262)
(0.00337616 -1.57211e-08 0.00296861)
(0.00233768 -2.33429e-08 0.000753594)
(0.0013315 -3.17942e-08 -0.0018258)
(0.000463283 -1.12362e-07 -0.00472895)
(-0.00465858 -1.23959e-07 0.0430517)
(-0.0110969 -8.65977e-09 0.0551452)
(-0.0182079 3.255e-09 0.0630191)
(-0.0252407 2.00865e-09 0.069224)
(-0.0320599 1.76296e-09 0.0745194)
(-0.0386804 1.37364e-09 0.0791794)
(-0.0451164 1.12585e-09 0.0833258)
(-0.0513849 1.02453e-09 0.0870208)
(-0.0575033 6.05021e-10 0.0903008)
(-0.0634881 -9.24761e-11 0.0931901)
(-0.0693544 -7.02933e-10 0.0957074)
(-0.0751156 -1.09335e-09 0.0978691)
(-0.080783 -1.34168e-09 0.0996903)
(-0.0863658 -1.51381e-09 0.101186)
(-0.0918713 -1.60337e-09 0.102371)
(-0.097305 -1.58822e-09 0.10326)
(-0.10267 -1.47372e-09 0.103868)
(-0.107969 -1.29374e-09 0.104209)
(-0.113202 -1.08933e-09 0.104297)
(-0.118369 -8.9107e-10 0.104146)
(-0.123468 -7.15308e-10 0.103769)
(-0.128496 -5.72401e-10 0.10318)
(-0.133451 -4.67757e-10 0.102388)
(-0.138328 -3.99721e-10 0.101407)
(-0.143123 -3.56689e-10 0.100247)
(-0.147832 -3.2304e-10 0.098917)
(-0.152451 -2.87691e-10 0.0974279)
(-0.156974 -2.52962e-10 0.0957882)
(-0.161397 -2.28747e-10 0.0940065)
(-0.165714 -2.23703e-10 0.0920908)
(-0.169921 -2.38755e-10 0.0900487)
(-0.174014 -2.66016e-10 0.0878874)
(-0.177987 -2.94407e-10 0.0856138)
(-0.181836 -3.14654e-10 0.0832346)
(-0.185557 -3.21038e-10 0.080756)
(-0.189146 -3.1181e-10 0.0781843)
(-0.192598 -2.88158e-10 0.0755255)
(-0.195911 -2.53585e-10 0.0727852)
(-0.199081 -2.14017e-10 0.0699692)
(-0.202104 -1.75997e-10 0.0670832)
(-0.204977 -1.46014e-10 0.0641325)
(-0.207698 -1.28704e-10 0.0611227)
(-0.210265 -1.2592e-10 0.0580591)
(-0.212674 -1.36114e-10 0.054947)
(-0.214924 -1.54909e-10 0.0517919)
(-0.217013 -1.76688e-10 0.0485989)
(-0.21894 -1.95995e-10 0.0453735)
(-0.220703 -2.08914e-10 0.0421207)
(-0.222301 -2.14313e-10 0.0388458)
(-0.223734 -2.12554e-10 0.035554)
(-0.225 -2.05543e-10 0.0322505)
(-0.2261 -1.95957e-10 0.0289403)
(-0.227033 -1.85291e-10 0.0256287)
(-0.227799 -1.75088e-10 0.0223205)
(-0.228399 -1.65298e-10 0.0190207)
(-0.228834 -1.56074e-10 0.0157343)
(-0.229104 -1.47211e-10 0.0124659)
(-0.22921 -1.3907e-10 0.00922042)
(-0.229155 -1.3237e-10 0.00600233)
(-0.228938 -1.2773e-10 0.00281615)
(-0.228562 -1.25356e-10 -0.000333744)
(-0.228029 -1.25195e-10 -0.00344311)
(-0.227341 -1.27144e-10 -0.00650785)
(-0.2265 -1.3069e-10 -0.00952401)
(-0.225509 -1.35265e-10 -0.0124878)
(-0.224371 -1.39994e-10 -0.0153956)
(-0.223088 -1.44363e-10 -0.0182439)
(-0.221664 -1.47856e-10 -0.0210295)
(-0.220102 -1.50372e-10 -0.0237494)
(-0.218405 -1.51858e-10 -0.0264005)
(-0.216577 -1.52572e-10 -0.0289804)
(-0.214621 -1.5272e-10 -0.0314863)
(-0.212542 -1.52199e-10 -0.0339161)
(-0.210342 -1.51472e-10 -0.0362677)
(-0.208027 -1.50539e-10 -0.0385392)
(-0.2056 -1.49246e-10 -0.0407289)
(-0.203066 -1.47542e-10 -0.0428354)
(-0.200429 -1.45374e-10 -0.0448573)
(-0.197693 -1.42692e-10 -0.0467937)
(-0.194863 -1.39341e-10 -0.0486436)
(-0.191943 -1.35321e-10 -0.0504064)
(-0.188938 -1.30375e-10 -0.0520816)
(-0.185852 -1.24657e-10 -0.0536689)
(-0.18269 -1.18167e-10 -0.0551681)
(-0.179456 -1.1106e-10 -0.0565794)
(-0.176155 -1.03078e-10 -0.057903)
(-0.172792 -9.46327e-11 -0.0591392)
(-0.169372 -8.58274e-11 -0.0602886)
(-0.165898 -7.67133e-11 -0.0613518)
(-0.162375 -6.7239e-11 -0.0623299)
(-0.158808 -5.74559e-11 -0.0632236)
(-0.155201 -4.76728e-11 -0.0640342)
(-0.151559 -3.76838e-11 -0.0647628)
(-0.147886 -2.75403e-11 -0.0654109)
(-0.144186 -1.70879e-11 -0.0659798)
(-0.140463 -6.32661e-12 -0.066471)
(-0.136721 4.64072e-12 -0.0668863)
(-0.132965 1.59685e-11 -0.0672273)
(-0.129199 2.77597e-11 -0.0674959)
(-0.125425 3.99115e-11 -0.0676938)
(-0.121649 5.25782e-11 -0.067823)
(-0.117873 6.5657e-11 -0.0678855)
(-0.114101 7.87877e-11 -0.0678832)
(-0.110337 9.28452e-11 -0.0678182)
(-0.106584 1.068e-10 -0.0676925)
(-0.102845 1.21477e-10 -0.0675082)
(-0.099123 1.3605e-10 -0.0672675)
(-0.0954217 1.5114e-10 -0.0669723)
(-0.0917437 1.6659e-10 -0.0666247)
(-0.0880918 1.82452e-10 -0.0662269)
(-0.0844687 1.98522e-10 -0.0657809)
(-0.080877 2.1485e-10 -0.0652886)
(-0.0773192 2.31641e-10 -0.0647521)
(-0.0737977 2.48743e-10 -0.0641733)
(-0.0703147 2.65846e-10 -0.063554)
(-0.0668726 2.83464e-10 -0.0628962)
(-0.0634734 3.01341e-10 -0.0622016)
(-0.060119 3.1958e-10 -0.0614718)
(-0.0568115 3.37768e-10 -0.0607085)
(-0.0535526 3.56216e-10 -0.0599133)
(-0.050344 3.75179e-10 -0.0590877)
(-0.0471875 3.94144e-10 -0.0582329)
(-0.0440846 4.13316e-10 -0.0573503)
(-0.0410368 4.32799e-10 -0.0564411)
(-0.0380456 4.52387e-10 -0.0555064)
(-0.0351123 4.72079e-10 -0.0545471)
(-0.0322382 4.91773e-10 -0.0535642)
(-0.0294247 5.1152e-10 -0.0525584)
(-0.0266728 5.31063e-10 -0.0515305)
(-0.0239837 5.50557e-10 -0.050481)
(-0.0213586 5.69743e-10 -0.0494105)
(-0.0187985 5.88313e-10 -0.0483193)
(-0.0163043 6.06473e-10 -0.0472076)
(-0.0138771 6.24275e-10 -0.0460759)
(-0.0115177 6.41512e-10 -0.0449241)
(-0.00922715 6.57101e-10 -0.0437523)
(-0.00700623 6.71147e-10 -0.0425605)
(-0.00485579 6.84319e-10 -0.0413487)
(-0.00277663 6.96307e-10 -0.0401168)
(-0.000769527 7.06184e-10 -0.0388646)
(0.00116482 7.14567e-10 -0.0375919)
(0.00302563 7.19807e-10 -0.0362986)
(0.00481229 7.23089e-10 -0.0349845)
(0.00652413 7.24205e-10 -0.0336495)
(0.00816057 7.2264e-10 -0.0322934)
(0.00972102 7.17774e-10 -0.0309163)
(0.011205 7.09968e-10 -0.0295181)
(0.0126119 6.99427e-10 -0.028099)
(0.0139415 6.85996e-10 -0.0266591)
(0.0151933 6.6988e-10 -0.025199)
(0.0163671 6.50872e-10 -0.023719)
(0.0174625 6.29384e-10 -0.0222199)
(0.0184795 6.05054e-10 -0.0207027)
(0.0194179 5.78499e-10 -0.0191684)
(0.0202778 5.48998e-10 -0.0176183)
(0.0210594 5.17993e-10 -0.0160542)
(0.0217627 4.84814e-10 -0.0144779)
(0.0223882 4.4946e-10 -0.0128916)
(0.0229363 4.12238e-10 -0.0112978)
(0.0234077 3.72531e-10 -0.0096993)
(0.023803 3.31575e-10 -0.0080993)
(0.0241231 2.88079e-10 -0.0065013)
(0.0243691 2.42818e-10 -0.00490914)
(0.0245421 1.9517e-10 -0.00332704)
(0.0246435 1.44619e-10 -0.00175958)
(0.0246749 9.04405e-11 -0.000211688)
(0.0246378 3.14969e-11 0.00131136)
(0.0245341 -3.34536e-11 0.00280394)
(0.0243659 -1.05343e-10 0.0042601)
(0.0241353 -1.8655e-10 0.00567358)
(0.0238447 -2.7925e-10 0.00703783)
(0.0234964 -3.83962e-10 0.00834607)
(0.0230932 -5.04102e-10 0.00959126)
(0.0226376 -6.39571e-10 0.0107662)
(0.0221326 -7.92443e-10 0.0118636)
(0.0215809 -9.61894e-10 0.012876)
(0.0209856 -1.147e-09 0.013796)
(0.0203494 -1.34413e-09 0.0146161)
(0.0196754 -1.54855e-09 0.0153291)
(0.0189664 -1.75454e-09 0.0159278)
(0.0182252 -1.95902e-09 0.0164054)
(0.0174544 -2.16133e-09 0.0167554)
(0.0166565 -2.36398e-09 0.0169717)
(0.0158338 -2.56964e-09 0.0170487)
(0.0149882 -2.78244e-09 0.0169816)
(0.0141216 -3.00392e-09 0.016766)
(0.0132355 -3.24029e-09 0.0163985)
(0.0123309 -3.50385e-09 0.0158765)
(0.0114089 -3.80224e-09 0.0151982)
(0.0104699 -4.12328e-09 0.0143628)
(0.00951434 -4.46069e-09 0.0133701)
(0.00854232 -4.89409e-09 0.0122206)
(0.0075539 -5.64207e-09 0.010915)
(0.00654919 -6.90996e-09 0.00945302)
(0.00552854 -8.77103e-09 0.00783255)
(0.00449311 -1.15543e-08 0.00604586)
(0.00344464 -1.62206e-08 0.00407232)
(0.00239251 -2.40309e-08 0.00185776)
(0.00137159 -3.27417e-08 -0.000751558)
(0.000485395 -1.07193e-07 -0.0038514)
(-0.00465864 -1.23958e-07 0.0430514)
(-0.0110969 -8.65968e-09 0.0551451)
(-0.0182079 3.25497e-09 0.0630189)
(-0.0252407 2.00863e-09 0.0692239)
(-0.0320599 1.76294e-09 0.0745192)
(-0.0386804 1.37362e-09 0.0791792)
(-0.0451163 1.12584e-09 0.0833257)
(-0.0513849 1.02452e-09 0.0870207)
(-0.0575032 6.05015e-10 0.0903007)
(-0.063488 -9.24751e-11 0.09319)
(-0.0693544 -7.02925e-10 0.0957074)
(-0.0751155 -1.09334e-09 0.097869)
(-0.0807829 -1.34166e-09 0.0996902)
(-0.0863657 -1.51379e-09 0.101186)
(-0.0918713 -1.60336e-09 0.102371)
(-0.0973049 -1.5882e-09 0.10326)
(-0.10267 -1.47371e-09 0.103868)
(-0.107969 -1.29373e-09 0.104209)
(-0.113202 -1.08932e-09 0.104297)
(-0.118369 -8.91063e-10 0.104146)
(-0.123468 -7.15302e-10 0.103769)
(-0.128496 -5.72396e-10 0.103179)
(-0.133451 -4.67753e-10 0.102388)
(-0.138328 -3.99718e-10 0.101407)
(-0.143123 -3.56687e-10 0.100246)
(-0.147832 -3.23038e-10 0.0989169)
(-0.152451 -2.87689e-10 0.0974278)
(-0.156974 -2.5296e-10 0.0957882)
(-0.161397 -2.28745e-10 0.0940065)
(-0.165714 -2.23701e-10 0.0920908)
(-0.169921 -2.38753e-10 0.0900486)
(-0.174014 -2.66015e-10 0.0878873)
(-0.177987 -2.94405e-10 0.0856138)
(-0.181836 -3.14652e-10 0.0832345)
(-0.185557 -3.21036e-10 0.080756)
(-0.189146 -3.11809e-10 0.0781843)
(-0.192598 -2.88156e-10 0.0755255)
(-0.195911 -2.53583e-10 0.0727852)
(-0.199081 -2.14016e-10 0.0699692)
(-0.202103 -1.75996e-10 0.0670832)
(-0.204977 -1.46013e-10 0.0641325)
(-0.207698 -1.28704e-10 0.0611227)
(-0.210264 -1.25919e-10 0.0580591)
(-0.212674 -1.36114e-10 0.054947)
(-0.214924 -1.54908e-10 0.0517919)
(-0.217013 -1.76688e-10 0.048599)
(-0.21894 -1.95994e-10 0.0453735)
(-0.220703 -2.08913e-10 0.0421207)
(-0.222301 -2.14312e-10 0.0388458)
(-0.223734 -2.12553e-10 0.035554)
(-0.225 -2.05542e-10 0.0322505)
(-0.2261 -1.95956e-10 0.0289404)
(-0.227033 -1.8529e-10 0.0256287)
(-0.227799 -1.75087e-10 0.0223205)
(-0.228399 -1.65297e-10 0.0190207)
(-0.228834 -1.56074e-10 0.0157343)
(-0.229104 -1.47211e-10 0.0124659)
(-0.22921 -1.3907e-10 0.00922043)
(-0.229154 -1.3237e-10 0.00600234)
(-0.228938 -1.2773e-10 0.00281616)
(-0.228562 -1.25355e-10 -0.000333732)
(-0.228029 -1.25194e-10 -0.0034431)
(-0.227341 -1.27144e-10 -0.00650784)
(-0.2265 -1.30689e-10 -0.00952399)
(-0.225509 -1.35264e-10 -0.0124878)
(-0.224371 -1.39993e-10 -0.0153956)
(-0.223088 -1.44362e-10 -0.0182439)
(-0.221664 -1.47856e-10 -0.0210295)
(-0.220102 -1.50371e-10 -0.0237494)
(-0.218405 -1.51857e-10 -0.0264005)
(-0.216577 -1.52572e-10 -0.0289803)
(-0.214621 -1.52719e-10 -0.0314863)
(-0.212542 -1.52198e-10 -0.0339161)
(-0.210342 -1.51472e-10 -0.0362677)
(-0.208027 -1.50539e-10 -0.0385392)
(-0.2056 -1.49246e-10 -0.0407289)
(-0.203066 -1.47542e-10 -0.0428354)
(-0.200429 -1.45374e-10 -0.0448573)
(-0.197693 -1.42692e-10 -0.0467937)
(-0.194863 -1.39341e-10 -0.0486436)
(-0.191943 -1.35321e-10 -0.0504064)
(-0.188938 -1.30375e-10 -0.0520816)
(-0.185852 -1.24657e-10 -0.0536689)
(-0.18269 -1.18167e-10 -0.0551681)
(-0.179456 -1.1106e-10 -0.0565794)
(-0.176155 -1.03078e-10 -0.057903)
(-0.172792 -9.46325e-11 -0.0591391)
(-0.169372 -8.58272e-11 -0.0602885)
(-0.165898 -7.67131e-11 -0.0613518)
(-0.162375 -6.72388e-11 -0.0623299)
(-0.158808 -5.74558e-11 -0.0632236)
(-0.155201 -4.76727e-11 -0.0640342)
(-0.151559 -3.76837e-11 -0.0647628)
(-0.147886 -2.75402e-11 -0.0654109)
(-0.144186 -1.70879e-11 -0.0659797)
(-0.140463 -6.3266e-12 -0.066471)
(-0.136721 4.64071e-12 -0.0668863)
(-0.132965 1.59685e-11 -0.0672273)
(-0.129199 2.77597e-11 -0.0674959)
(-0.125425 3.99114e-11 -0.0676938)
(-0.121649 5.25781e-11 -0.067823)
(-0.117873 6.56568e-11 -0.0678855)
(-0.114101 7.87875e-11 -0.0678832)
(-0.110337 9.2845e-11 -0.0678182)
(-0.106584 1.068e-10 -0.0676925)
(-0.102845 1.21476e-10 -0.0675082)
(-0.099123 1.3605e-10 -0.0672675)
(-0.0954217 1.51139e-10 -0.0669723)
(-0.0917437 1.66589e-10 -0.0666247)
(-0.0880918 1.82452e-10 -0.0662269)
(-0.0844687 1.98521e-10 -0.0657809)
(-0.080877 2.14849e-10 -0.0652886)
(-0.0773192 2.31641e-10 -0.0647521)
(-0.0737977 2.48742e-10 -0.0641733)
(-0.0703148 2.65845e-10 -0.063554)
(-0.0668726 2.83463e-10 -0.0628962)
(-0.0634734 3.0134e-10 -0.0622016)
(-0.060119 3.19579e-10 -0.0614718)
(-0.0568115 3.37767e-10 -0.0607085)
(-0.0535526 3.56215e-10 -0.0599133)
(-0.050344 3.75178e-10 -0.0590876)
(-0.0471875 3.94143e-10 -0.0582329)
(-0.0440846 4.13315e-10 -0.0573503)
(-0.0410368 4.32798e-10 -0.0564411)
(-0.0380456 4.52385e-10 -0.0555063)
(-0.0351123 4.72078e-10 -0.0545471)
(-0.0322382 4.91771e-10 -0.0535642)
(-0.0294247 5.11519e-10 -0.0525584)
(-0.0266728 5.31062e-10 -0.0515305)
(-0.0239838 5.50555e-10 -0.050481)
(-0.0213586 5.69742e-10 -0.0494105)
(-0.0187985 5.88312e-10 -0.0483193)
(-0.0163043 6.06472e-10 -0.0472076)
(-0.0138771 6.24273e-10 -0.0460759)
(-0.0115177 6.4151e-10 -0.0449241)
(-0.00922716 6.571e-10 -0.0437523)
(-0.00700624 6.71145e-10 -0.0425605)
(-0.0048558 6.84317e-10 -0.0413488)
(-0.00277664 6.96305e-10 -0.0401168)
(-0.00076954 7.06182e-10 -0.0388646)
(0.0011648 7.14566e-10 -0.0375919)
(0.00302562 7.19805e-10 -0.0362986)
(0.00481227 7.23087e-10 -0.0349845)
(0.00652412 7.24203e-10 -0.0336495)
(0.00816055 7.22638e-10 -0.0322934)
(0.009721 7.17772e-10 -0.0309163)
(0.011205 7.09966e-10 -0.0295181)
(0.0126119 6.99426e-10 -0.028099)
(0.0139415 6.85995e-10 -0.0266591)
(0.0151933 6.69879e-10 -0.025199)
(0.016367 6.50871e-10 -0.023719)
(0.0174625 6.29382e-10 -0.0222199)
(0.0184794 6.05052e-10 -0.0207027)
(0.0194179 5.78498e-10 -0.0191684)
(0.0202778 5.48996e-10 -0.0176183)
(0.0210593 5.17992e-10 -0.0160542)
(0.0217627 4.84813e-10 -0.0144779)
(0.0223882 4.49458e-10 -0.0128916)
(0.0229363 4.12237e-10 -0.0112978)
(0.0234077 3.7253e-10 -0.00969929)
(0.023803 3.31574e-10 -0.00809929)
(0.0241231 2.88079e-10 -0.00650128)
(0.0243691 2.42817e-10 -0.00490912)
(0.0245421 1.9517e-10 -0.00332703)
(0.0246435 1.44619e-10 -0.00175957)
(0.0246748 9.04403e-11 -0.000211671)
(0.0246378 3.14968e-11 0.00131138)
(0.0245341 -3.34535e-11 0.00280396)
(0.0243659 -1.05343e-10 0.00426012)
(0.0241353 -1.8655e-10 0.0056736)
(0.0238446 -2.79249e-10 0.00703786)
(0.0234964 -3.83961e-10 0.00834609)
(0.0230931 -5.04101e-10 0.00959129)
(0.0226376 -6.3957e-10 0.0107662)
(0.0221326 -7.92441e-10 0.0118636)
(0.0215809 -9.61892e-10 0.012876)
(0.0209855 -1.14699e-09 0.013796)
(0.0203494 -1.34413e-09 0.0146161)
(0.0196754 -1.54854e-09 0.0153291)
(0.0189664 -1.75454e-09 0.0159278)
(0.0182252 -1.95901e-09 0.0164055)
(0.0174544 -2.16133e-09 0.0167554)
(0.0166565 -2.36398e-09 0.0169717)
(0.0158337 -2.56963e-09 0.0170488)
(0.0149882 -2.78243e-09 0.0169816)
(0.0141216 -3.00392e-09 0.016766)
(0.0132354 -3.24029e-09 0.0163985)
(0.0123309 -3.50384e-09 0.0158765)
(0.0114089 -3.80223e-09 0.0151982)
(0.0104699 -4.12327e-09 0.0143628)
(0.0095143 -4.46068e-09 0.0133701)
(0.00854228 -4.89408e-09 0.0122206)
(0.00755386 -5.64205e-09 0.010915)
(0.00654915 -6.90993e-09 0.009453)
(0.00552849 -8.771e-09 0.00783252)
(0.00449305 -1.15542e-08 0.00604582)
(0.00344456 -1.62206e-08 0.00407226)
(0.00239242 -2.40309e-08 0.00185769)
(0.00137141 -3.27417e-08 -0.000751675)
(0.000485046 -1.07193e-07 -0.00385154)
(-0.00468744 -1.04023e-07 0.050775)
(-0.0112388 -7.23842e-09 0.0628922)
(-0.0184601 1.50719e-09 0.0705832)
(-0.0256214 1.47389e-09 0.076575)
(-0.0325794 2.15218e-09 0.0816581)
(-0.039346 2.32259e-09 0.0861169)
(-0.0459313 2.4253e-09 0.0900774)
(-0.0523492 2.56519e-09 0.0936032)
(-0.0586142 2.27703e-09 0.0967306)
(-0.0647403 1.58749e-09 0.099483)
(-0.0707407 8.72332e-10 0.101878)
(-0.0766274 2.9e-10 0.103929)
(-0.0824104 -2.10337e-10 0.105651)
(-0.0880982 -6.66757e-10 0.107055)
(-0.0936978 -1.03823e-09 0.108156)
(-0.0992143 -1.26364e-09 0.108965)
(-0.104651 -1.32011e-09 0.109496)
(-0.110011 -1.23531e-09 0.109762)
(-0.115294 -1.06442e-09 0.109776)
(-0.1205 -8.59985e-10 0.10955)
(-0.125629 -6.58712e-10 0.109095)
(-0.130678 -4.84205e-10 0.108425)
(-0.135644 -3.51096e-10 0.107551)
(-0.140525 -2.65101e-10 0.106482)
(-0.145316 -2.17915e-10 0.10523)
(-0.150014 -1.89487e-10 0.103804)
(-0.154615 -1.62244e-10 0.102215)
(-0.159114 -1.31807e-10 0.100469)
(-0.163506 -1.07502e-10 0.098577)
(-0.167789 -1.01795e-10 0.0965459)
(-0.171956 -1.20352e-10 0.0943836)
(-0.176003 -1.57142e-10 0.0920974)
(-0.179928 -2.00418e-10 0.0896943)
(-0.183724 -2.37817e-10 0.0871811)
(-0.187389 -2.61355e-10 0.0845644)
(-0.190918 -2.66657e-10 0.0818505)
(-0.194308 -2.53982e-10 0.0790455)
(-0.197556 -2.26012e-10 0.0761555)
(-0.200658 -1.87999e-10 0.0731864)
(-0.203611 -1.47311e-10 0.0701441)
(-0.206413 -1.11672e-10 0.0670342)
(-0.20906 -8.81365e-11 0.0638625)
(-0.211552 -8.005e-11 0.0606346)
(-0.213885 -8.74625e-11 0.057356)
(-0.216057 -1.06974e-10 0.0540324)
(-0.218068 -1.32457e-10 0.0506694)
(-0.219915 -1.57887e-10 0.0472723)
(-0.221598 -1.78063e-10 0.0438468)
(-0.223116 -1.90155e-10 0.0403983)
(-0.224467 -1.93751e-10 0.0369322)
(-0.225652 -1.90603e-10 0.0334539)
(-0.226671 -1.83182e-10 0.0299689)
(-0.227522 -1.73959e-10 0.0264823)
(-0.228208 -1.64376e-10 0.0229996)
(-0.228727 -1.55103e-10 0.0195259)
(-0.229081 -1.46242e-10 0.0160663)
(-0.229271 -1.37999e-10 0.0126259)
(-0.229298 -1.30066e-10 0.0092096)
(-0.229163 -1.23368e-10 0.00582221)
(-0.228869 -1.18574e-10 0.00246847)
(-0.228415 -1.15685e-10 -0.000847021)
(-0.227806 -1.15267e-10 -0.00411981)
(-0.227043 -1.16959e-10 -0.00734558)
(-0.226127 -1.20555e-10 -0.0105202)
(-0.225063 -1.25335e-10 -0.0136396)
(-0.223853 -1.30681e-10 -0.0167)
(-0.2225 -1.35563e-10 -0.0196979)
(-0.221006 -1.39673e-10 -0.0226297)
(-0.219375 -1.42703e-10 -0.0254922)
(-0.217612 -1.44292e-10 -0.0282823)
(-0.215718 -1.45057e-10 -0.0309973)
(-0.213698 -1.44845e-10 -0.0336345)
(-0.211556 -1.43912e-10 -0.0361915)
(-0.209296 -1.42568e-10 -0.0386661)
(-0.206922 -1.40915e-10 -0.0410562)
(-0.204437 -1.39005e-10 -0.0433602)
(-0.201847 -1.36478e-10 -0.0455764)
(-0.199156 -1.339e-10 -0.0477035)
(-0.196367 -1.30601e-10 -0.0497404)
(-0.193487 -1.27045e-10 -0.0516862)
(-0.190518 -1.22614e-10 -0.05354)
(-0.187465 -1.17361e-10 -0.0553015)
(-0.184334 -1.11387e-10 -0.0569703)
(-0.181129 -1.04745e-10 -0.0585462)
(-0.177853 -9.74333e-11 -0.0600294)
(-0.174513 -8.94019e-11 -0.0614199)
(-0.171113 -8.0856e-11 -0.0627183)
(-0.167656 -7.195e-11 -0.0639251)
(-0.164148 -6.26324e-11 -0.065041)
(-0.160594 -5.31091e-11 -0.066067)
(-0.156997 -4.31742e-11 -0.0670039)
(-0.153362 -3.33422e-11 -0.0678531)
(-0.149694 -2.34072e-11 -0.0686158)
(-0.145997 -1.33178e-11 -0.0692933)
(-0.142275 -3.07393e-12 -0.0698873)
(-0.138532 7.47878e-12 -0.0703993)
(-0.134772 1.81346e-11 -0.0708311)
(-0.131 2.90478e-11 -0.0711844)
(-0.127219 4.04243e-11 -0.0714612)
(-0.123433 5.21613e-11 -0.0716633)
(-0.119647 6.42073e-11 -0.0717929)
(-0.115863 7.66138e-11 -0.0718519)
(-0.112084 8.93808e-11 -0.0718425)
(-0.108316 1.0256e-10 -0.0717668)
(-0.10456 1.16151e-10 -0.071627)
(-0.10082 1.29691e-10 -0.0714252)
(-0.0970999 1.4385e-10 -0.0711637)
(-0.0934016 1.58009e-10 -0.0708447)
(-0.0897284 1.72837e-10 -0.0704703)
(-0.0860831 1.87769e-10 -0.0700428)
(-0.0824683 2.03217e-10 -0.0695642)
(-0.0788867 2.18511e-10 -0.0690368)
(-0.0753407 2.34268e-10 -0.0684625)
(-0.0718327 2.50284e-10 -0.0678435)
(-0.0683649 2.66507e-10 -0.0671817)
(-0.0649395 2.8304e-10 -0.0664791)
(-0.0615585 2.99883e-10 -0.0657375)
(-0.058224 3.16932e-10 -0.0649588)
(-0.0549379 3.34086e-10 -0.0641446)
(-0.0517018 3.51704e-10 -0.0632966)
(-0.0485175 3.69477e-10 -0.0624164)
(-0.0453867 3.87407e-10 -0.0615054)
(-0.0423108 4.05544e-10 -0.0605649)
(-0.0392914 4.23939e-10 -0.0595963)
(-0.0363298 4.42182e-10 -0.0586008)
(-0.0334274 4.60838e-10 -0.0575793)
(-0.0305854 4.79444e-10 -0.0565328)
(-0.0278051 4.97795e-10 -0.0554622)
(-0.0250875 5.16198e-10 -0.0543683)
(-0.0224339 5.34346e-10 -0.0532516)
(-0.0198451 5.52187e-10 -0.0521128)
(-0.0173223 5.69514e-10 -0.0509522)
(-0.0148664 5.86122e-10 -0.0497702)
(-0.0124783 6.02526e-10 -0.0485671)
(-0.0101588 6.1785e-10 -0.0473431)
(-0.00790886 6.31836e-10 -0.0460981)
(-0.00572922 6.44382e-10 -0.0448324)
(-0.00362065 6.55847e-10 -0.0435457)
(-0.00158392 6.65459e-10 -0.0422382)
(0.000380331 6.73578e-10 -0.0409095)
(0.00227138 6.79792e-10 -0.0395597)
(0.00408863 6.8312e-10 -0.0381887)
(0.00583147 6.84334e-10 -0.0367961)
(0.00749935 6.83281e-10 -0.0353821)
(0.00909174 6.79187e-10 -0.0339464)
(0.0106082 6.72204e-10 -0.0324892)
(0.0120482 6.62385e-10 -0.0310104)
(0.0134115 6.49574e-10 -0.0295102)
(0.0146976 6.34336e-10 -0.027989)
(0.0159064 6.1662e-10 -0.0264472)
(0.0170376 5.96168e-10 -0.0248853)
(0.0180911 5.72874e-10 -0.0233042)
(0.0190668 5.47822e-10 -0.0217049)
(0.0199648 5.20341e-10 -0.0200885)
(0.0207852 4.90583e-10 -0.0184566)
(0.0215281 4.59374e-10 -0.0168108)
(0.022194 4.26094e-10 -0.0151532)
(0.0227833 3.90743e-10 -0.0134861)
(0.0232965 3.53578e-10 -0.0118121)
(0.0237343 3.14391e-10 -0.0101342)
(0.0240975 2.72563e-10 -0.00845573)
(0.0243871 2.2835e-10 -0.00678027)
(0.0246042 1.81444e-10 -0.00511187)
(0.02475 1.31273e-10 -0.00345493)
(0.024826 7.65993e-11 -0.00181417)
(0.0248338 1.69555e-11 -0.000194695)
(0.0247749 -4.94157e-11 0.00139805)
(0.0246514 -1.2324e-10 0.00295828)
(0.0244652 -2.06998e-10 0.00447987)
(0.0242185 -3.01314e-10 0.00595641)
(0.0239136 -4.08569e-10 0.00738122)
(0.023553 -5.29694e-10 0.00874737)
(0.0231391 -6.65833e-10 0.0100477)
(0.0226746 -8.1792e-10 0.011275)
(0.0221622 -9.86992e-10 0.0124217)
(0.0216047 -1.17099e-09 0.0134806)
(0.0210049 -1.36784e-09 0.0144439)
(0.0203656 -1.57434e-09 0.0153045)
(0.0196896 -1.78532e-09 0.016055)
(0.0189795 -1.99385e-09 0.0166884)
(0.0182379 -2.19744e-09 0.0171979)
(0.0174674 -2.39433e-09 0.0175773)
(0.0166702 -2.58708e-09 0.0178206)
(0.0158485 -2.77995e-09 0.0179225)
(0.0150041 -2.97519e-09 0.0178783)
(0.0141387 -3.17527e-09 0.0176841)
(0.0132537 -3.38743e-09 0.0173368)
(0.01235 -3.625e-09 0.0168341)
(0.0114286 -3.90028e-09 0.0161744)
(0.0104899 -4.20648e-09 0.0153571)
(0.00953431 -4.537e-09 0.0143825)
(0.00856198 -4.97394e-09 0.013251)
(0.007573 -5.73856e-09 0.0119633)
(0.00656753 -7.0411e-09 0.0105192)
(0.00554601 -8.96121e-09 0.00891587)
(0.00450967 -1.18335e-08 0.00714457)
(0.00346039 -1.66165e-08 0.00518232)
(0.0024072 -2.45625e-08 0.00296934)
(0.00138558 -3.33755e-08 0.00033274)
(0.000496562 -1.01215e-07 -0.00295313)
(-0.00468742 -1.04023e-07 0.0507748)
(-0.0112388 -7.23835e-09 0.0628921)
(-0.0184601 1.50718e-09 0.070583)
(-0.0256214 1.47388e-09 0.0765749)
(-0.0325793 2.15216e-09 0.0816579)
(-0.0393459 2.32257e-09 0.0861168)
(-0.0459312 2.42528e-09 0.0900773)
(-0.0523492 2.56516e-09 0.0936031)
(-0.0586141 2.27701e-09 0.0967305)
(-0.0647402 1.58747e-09 0.0994829)
(-0.0707407 8.72323e-10 0.101878)
(-0.0766273 2.89997e-10 0.103929)
(-0.0824103 -2.10335e-10 0.105651)
(-0.0880982 -6.6675e-10 0.107055)
(-0.0936978 -1.03822e-09 0.108156)
(-0.0992142 -1.26363e-09 0.108965)
(-0.104651 -1.32009e-09 0.109496)
(-0.110011 -1.2353e-09 0.109762)
(-0.115294 -1.06441e-09 0.109776)
(-0.1205 -8.59978e-10 0.10955)
(-0.125629 -6.58707e-10 0.109095)
(-0.130678 -4.84201e-10 0.108425)
(-0.135644 -3.51094e-10 0.107551)
(-0.140525 -2.65099e-10 0.106482)
(-0.145316 -2.17913e-10 0.10523)
(-0.150014 -1.89486e-10 0.103804)
(-0.154615 -1.62243e-10 0.102214)
(-0.159114 -1.31806e-10 0.100469)
(-0.163506 -1.07501e-10 0.098577)
(-0.167789 -1.01794e-10 0.0965459)
(-0.171956 -1.20351e-10 0.0943836)
(-0.176003 -1.57141e-10 0.0920974)
(-0.179927 -2.00417e-10 0.0896943)
(-0.183724 -2.37815e-10 0.0871811)
(-0.187389 -2.61354e-10 0.0845644)
(-0.190918 -2.66656e-10 0.0818505)
(-0.194308 -2.53981e-10 0.0790455)
(-0.197556 -2.26011e-10 0.0761555)
(-0.200658 -1.87999e-10 0.0731864)
(-0.203611 -1.47311e-10 0.0701441)
(-0.206413 -1.11672e-10 0.0670342)
(-0.20906 -8.81362e-11 0.0638625)
(-0.211552 -8.00496e-11 0.0606346)
(-0.213885 -8.74622e-11 0.057356)
(-0.216057 -1.06974e-10 0.0540324)
(-0.218068 -1.32457e-10 0.0506694)
(-0.219915 -1.57886e-10 0.0472723)
(-0.221598 -1.78062e-10 0.0438468)
(-0.223116 -1.90154e-10 0.0403983)
(-0.224467 -1.9375e-10 0.0369322)
(-0.225652 -1.90602e-10 0.0334539)
(-0.226671 -1.83181e-10 0.0299689)
(-0.227522 -1.73958e-10 0.0264824)
(-0.228208 -1.64376e-10 0.0229996)
(-0.228727 -1.55103e-10 0.0195259)
(-0.229081 -1.46242e-10 0.0160664)
(-0.229271 -1.37999e-10 0.0126259)
(-0.229298 -1.30065e-10 0.00920961)
(-0.229163 -1.23367e-10 0.00582222)
(-0.228869 -1.18574e-10 0.00246849)
(-0.228415 -1.15685e-10 -0.000847008)
(-0.227806 -1.15267e-10 -0.0041198)
(-0.227043 -1.16959e-10 -0.00734556)
(-0.226127 -1.20555e-10 -0.0105202)
(-0.225063 -1.25335e-10 -0.0136396)
(-0.223853 -1.3068e-10 -0.0167)
(-0.2225 -1.35563e-10 -0.0196979)
(-0.221006 -1.39673e-10 -0.0226297)
(-0.219375 -1.42703e-10 -0.0254922)
(-0.217612 -1.44291e-10 -0.0282823)
(-0.215718 -1.45057e-10 -0.0309973)
(-0.213698 -1.44844e-10 -0.0336345)
(-0.211556 -1.43912e-10 -0.0361915)
(-0.209296 -1.42568e-10 -0.038666)
(-0.206922 -1.40915e-10 -0.0410562)
(-0.204437 -1.39005e-10 -0.0433601)
(-0.201847 -1.36478e-10 -0.0455764)
(-0.199156 -1.33899e-10 -0.0477035)
(-0.196367 -1.30601e-10 -0.0497404)
(-0.193487 -1.27045e-10 -0.0516861)
(-0.190518 -1.22614e-10 -0.05354)
(-0.187465 -1.17361e-10 -0.0553015)
(-0.184334 -1.11387e-10 -0.0569703)
(-0.181129 -1.04744e-10 -0.0585462)
(-0.177853 -9.74331e-11 -0.0600293)
(-0.174513 -8.94017e-11 -0.0614199)
(-0.171113 -8.08558e-11 -0.0627183)
(-0.167656 -7.19498e-11 -0.0639251)
(-0.164148 -6.26323e-11 -0.065041)
(-0.160594 -5.3109e-11 -0.0660669)
(-0.156997 -4.31741e-11 -0.0670039)
(-0.153362 -3.33421e-11 -0.0678531)
(-0.149694 -2.34072e-11 -0.0686158)
(-0.145997 -1.33178e-11 -0.0692933)
(-0.142275 -3.07392e-12 -0.0698873)
(-0.138532 7.47877e-12 -0.0703993)
(-0.134772 1.81345e-11 -0.0708311)
(-0.131 2.90477e-11 -0.0711844)
(-0.127219 4.04242e-11 -0.0714611)
(-0.123434 5.21612e-11 -0.0716633)
(-0.119647 6.42071e-11 -0.0717929)
(-0.115863 7.66136e-11 -0.0718519)
(-0.112084 8.93806e-11 -0.0718425)
(-0.108316 1.0256e-10 -0.0717668)
(-0.10456 1.16151e-10 -0.071627)
(-0.10082 1.29691e-10 -0.0714252)
(-0.0970999 1.43849e-10 -0.0711637)
(-0.0934016 1.58008e-10 -0.0708447)
(-0.0897284 1.72837e-10 -0.0704703)
(-0.0860831 1.87769e-10 -0.0700428)
(-0.0824683 2.03216e-10 -0.0695642)
(-0.0788867 2.1851e-10 -0.0690368)
(-0.0753407 2.34268e-10 -0.0684625)
(-0.0718327 2.50284e-10 -0.0678435)
(-0.0683649 2.66507e-10 -0.0671817)
(-0.0649395 2.83039e-10 -0.0664791)
(-0.0615586 2.99882e-10 -0.0657375)
(-0.0582241 3.16931e-10 -0.0649588)
(-0.0549379 3.34085e-10 -0.0641446)
(-0.0517018 3.51703e-10 -0.0632966)
(-0.0485175 3.69476e-10 -0.0624164)
(-0.0453867 3.87406e-10 -0.0615054)
(-0.0423108 4.05543e-10 -0.0605649)
(-0.0392914 4.23938e-10 -0.0595963)
(-0.0363298 4.42181e-10 -0.0586008)
(-0.0334274 4.60837e-10 -0.0575793)
(-0.0305854 4.79443e-10 -0.0565328)
(-0.0278051 4.97793e-10 -0.0554622)
(-0.0250876 5.16197e-10 -0.0543683)
(-0.0224339 5.34345e-10 -0.0532516)
(-0.0198451 5.52185e-10 -0.0521128)
(-0.0173223 5.69513e-10 -0.0509522)
(-0.0148664 5.86121e-10 -0.0497702)
(-0.0124783 6.02524e-10 -0.0485671)
(-0.0101588 6.17848e-10 -0.0473431)
(-0.00790887 6.31835e-10 -0.0460981)
(-0.00572923 6.4438e-10 -0.0448324)
(-0.00362067 6.55845e-10 -0.0435457)
(-0.00158393 6.65457e-10 -0.0422382)
(0.000380315 6.73576e-10 -0.0409095)
(0.00227137 6.7979e-10 -0.0395598)
(0.00408861 6.83118e-10 -0.0381887)
(0.00583145 6.84333e-10 -0.0367961)
(0.00749933 6.83279e-10 -0.0353821)
(0.00909173 6.79185e-10 -0.0339464)
(0.0106082 6.72202e-10 -0.0324892)
(0.0120482 6.62383e-10 -0.0310104)
(0.0134115 6.49572e-10 -0.0295102)
(0.0146976 6.34334e-10 -0.027989)
(0.0159064 6.16619e-10 -0.0264472)
(0.0170376 5.96166e-10 -0.0248853)
(0.0180911 5.72873e-10 -0.0233042)
(0.0190668 5.47821e-10 -0.0217049)
(0.0199648 5.20339e-10 -0.0200885)
(0.0207852 4.90582e-10 -0.0184566)
(0.0215281 4.59373e-10 -0.0168108)
(0.022194 4.26093e-10 -0.0151532)
(0.0227833 3.90742e-10 -0.0134861)
(0.0232965 3.53577e-10 -0.0118121)
(0.0237342 3.1439e-10 -0.0101342)
(0.0240975 2.72562e-10 -0.00845572)
(0.0243871 2.2835e-10 -0.00678025)
(0.0246042 1.81443e-10 -0.00511186)
(0.02475 1.31273e-10 -0.00345491)
(0.024826 7.65991e-11 -0.00181415)
(0.0248338 1.69554e-11 -0.000194678)
(0.0247749 -4.94156e-11 0.00139807)
(0.0246514 -1.23239e-10 0.0029583)
(0.0244652 -2.06998e-10 0.00447989)
(0.0242185 -3.01314e-10 0.00595644)
(0.0239136 -4.08568e-10 0.00738125)
(0.0235529 -5.29693e-10 0.0087474)
(0.023139 -6.65832e-10 0.0100478)
(0.0226746 -8.17918e-10 0.011275)
(0.0221622 -9.8699e-10 0.0124218)
(0.0216047 -1.17098e-09 0.0134806)
(0.0210049 -1.36783e-09 0.014444)
(0.0203656 -1.57434e-09 0.0153045)
(0.0196895 -1.78532e-09 0.016055)
(0.0189794 -1.99385e-09 0.0166884)
(0.0182379 -2.19744e-09 0.0171979)
(0.0174674 -2.39432e-09 0.0175773)
(0.0166702 -2.58708e-09 0.0178206)
(0.0158485 -2.77994e-09 0.0179225)
(0.0150041 -2.97518e-09 0.0178783)
(0.0141387 -3.17526e-09 0.0176842)
(0.0132536 -3.38742e-09 0.0173369)
(0.01235 -3.625e-09 0.0168341)
(0.0114285 -3.90027e-09 0.0161744)
(0.0104899 -4.20647e-09 0.0153571)
(0.00953427 -4.53699e-09 0.0143825)
(0.00856194 -4.97392e-09 0.013251)
(0.00757296 -5.73854e-09 0.0119633)
(0.00656748 -7.04108e-09 0.0105192)
(0.00554595 -8.96117e-09 0.00891585)
(0.00450961 -1.18334e-08 0.00714453)
(0.00346032 -1.66165e-08 0.00518227)
(0.00240711 -2.45624e-08 0.00296925)
(0.00138541 -3.33756e-08 0.000332618)
(0.000496235 -1.01215e-07 -0.00295327)
(-0.00471008 -9.01423e-08 0.0585889)
(-0.0113679 -1.00404e-08 0.0707404)
(-0.0186907 -3.34296e-09 0.0782673)
(-0.0259726 -1.25291e-09 0.0840608)
(-0.0330627 8.82695e-10 0.0889422)
(-0.0399703 1.93712e-09 0.0932065)
(-0.0467018 2.65253e-09 0.0969841)
(-0.0532679 3.27515e-09 0.10034)
(-0.0596803 3.35877e-09 0.103312)
(-0.0659507 2.92882e-09 0.105922)
(-0.0720902 2.35537e-09 0.108187)
(-0.0781091 1.79592e-09 0.11012)
(-0.0840162 1.19703e-09 0.111732)
(-0.0898193 5.31023e-10 0.113035)
(-0.0955243 -1.23552e-10 0.11404)
(-0.101136 -6.43512e-10 0.114759)
(-0.106658 -9.44614e-10 0.115202)
(-0.112093 -1.02478e-09 0.115382)
(-0.11744 -9.42753e-10 0.11531)
(-0.122702 -7.75026e-10 0.114997)
(-0.127875 -5.82781e-10 0.114456)
(-0.13296 -4.04618e-10 0.113696)
(-0.137953 -2.64749e-10 0.112729)
(-0.142852 -1.74918e-10 0.111564)
(-0.147654 -1.30738e-10 0.110213)
(-0.152355 -1.11028e-10 0.108683)
(-0.156952 -9.17814e-11 0.106986)
(-0.16144 -6.21281e-11 0.105128)
(-0.165815 -3.05693e-11 0.103119)
(-0.170075 -1.44115e-11 0.100967)
(-0.174213 -2.60657e-11 0.0986794)
(-0.178227 -6.37774e-11 0.0962634)
(-0.182113 -1.16265e-10 0.0937263)
(-0.185867 -1.69107e-10 0.091075)
(-0.189485 -2.10306e-10 0.0883162)
(-0.192963 -2.33168e-10 0.0854564)
(-0.196299 -2.35328e-10 0.0825021)
(-0.199489 -2.17405e-10 0.0794593)
(-0.20253 -1.84293e-10 0.0763344)
(-0.20542 -1.4274e-10 0.0731333)
(-0.208155 -1.02063e-10 0.0698619)
(-0.210734 -7.07077e-11 0.0665262)
(-0.213155 -5.44376e-11 0.0631321)
(-0.215415 -5.59287e-11 0.0596855)
(-0.217514 -7.25024e-11 0.056192)
(-0.219449 -9.90096e-11 0.0526576)
(-0.221219 -1.28603e-10 0.0490879)
(-0.222823 -1.54695e-10 0.0454888)
(-0.224261 -1.73218e-10 0.0418659)
(-0.225532 -1.82321e-10 0.0382249)
(-0.226636 -1.83343e-10 0.0345715)
(-0.227573 -1.78548e-10 0.0309112)
(-0.228342 -1.70305e-10 0.0272497)
(-0.228945 -1.61239e-10 0.0235925)
(-0.229382 -1.5202e-10 0.019945)
(-0.229653 -1.43161e-10 0.0163125)
(-0.229761 -1.34508e-10 0.0127003)
(-0.229705 -1.26112e-10 0.00911361)
(-0.229488 -1.1885e-10 0.00555748)
(-0.229111 -1.12977e-10 0.00203684)
(-0.228576 -1.09111e-10 -0.00144352)
(-0.227886 -1.07252e-10 -0.00487889)
(-0.227042 -1.07966e-10 -0.00826477)
(-0.226048 -1.10892e-10 -0.0115968)
(-0.224905 -1.15414e-10 -0.0148708)
(-0.223617 -1.20244e-10 -0.0180828)
(-0.222186 -1.25125e-10 -0.0212289)
(-0.220617 -1.29131e-10 -0.0243056)
(-0.218912 -1.31903e-10 -0.0273094)
(-0.217075 -1.33183e-10 -0.0302372)
(-0.215109 -1.33125e-10 -0.0330859)
(-0.213018 -1.32296e-10 -0.0358528)
(-0.210807 -1.3054e-10 -0.0385353)
(-0.208478 -1.28116e-10 -0.0411312)
(-0.206038 -1.25332e-10 -0.0436383)
(-0.203488 -1.2224e-10 -0.0460548)
(-0.200835 -1.18788e-10 -0.048379)
(-0.198082 -1.15027e-10 -0.0506095)
(-0.195233 -1.10957e-10 -0.0527451)
(-0.192294 -1.06476e-10 -0.0547848)
(-0.189268 -1.01378e-10 -0.0567279)
(-0.186161 -9.57148e-11 -0.0585738)
(-0.182977 -8.91254e-11 -0.0603221)
(-0.179721 -8.20731e-11 -0.0619727)
(-0.176396 -7.43008e-11 -0.0635256)
(-0.173009 -6.58085e-11 -0.0649811)
(-0.169563 -5.7059e-11 -0.0663396)
(-0.166064 -4.75895e-11 -0.0676017)
(-0.162515 -3.78628e-11 -0.0687682)
(-0.158921 -2.80848e-11 -0.0698399)
(-0.155288 -1.79466e-11 -0.070818)
(-0.151618 -8.01419e-12 -0.0717036)
(-0.147917 2.0726e-12 -0.0724981)
(-0.144189 1.21595e-11 -0.073203)
(-0.140439 2.24008e-11 -0.0738199)
(-0.136669 3.27451e-11 -0.0743505)
(-0.132886 4.31925e-11 -0.0747966)
(-0.129091 5.40001e-11 -0.07516)
(-0.125291 6.48594e-11 -0.0754428)
(-0.121487 7.61305e-11 -0.0756471)
(-0.117685 8.77106e-11 -0.0757748)
(-0.113887 9.95996e-11 -0.0758283)
(-0.110098 1.11746e-10 -0.0758096)
(-0.10632 1.2415e-10 -0.0757211)
(-0.102557 1.36812e-10 -0.0755651)
(-0.0988119 1.49783e-10 -0.0753438)
(-0.0950883 1.63012e-10 -0.0750595)
(-0.0913889 1.7655e-10 -0.0747146)
(-0.0877167 1.90295e-10 -0.0743114)
(-0.0840742 2.04348e-10 -0.0738522)
(-0.0804643 2.18506e-10 -0.0733392)
(-0.0768895 2.32921e-10 -0.0727746)
(-0.0733521 2.47543e-10 -0.0721608)
(-0.0698546 2.62526e-10 -0.0714997)
(-0.0663992 2.77561e-10 -0.0707936)
(-0.0629879 2.92906e-10 -0.0700444)
(-0.0596229 3.08457e-10 -0.0692542)
(-0.056306 3.24216e-10 -0.0684248)
(-0.0530391 3.40233e-10 -0.067558)
(-0.049824 3.56302e-10 -0.0666556)
(-0.0466622 3.72836e-10 -0.0657193)
(-0.0435555 3.89422e-10 -0.0647505)
(-0.0405052 4.06216e-10 -0.0637507)
(-0.0375128 4.23113e-10 -0.0627213)
(-0.0345797 4.40167e-10 -0.0616635)
(-0.0317072 4.57222e-10 -0.0605784)
(-0.0288964 4.74175e-10 -0.0594671)
(-0.0261485 4.9113e-10 -0.0583304)
(-0.0234646 5.08137e-10 -0.0571693)
(-0.0208458 5.24529e-10 -0.0559843)
(-0.0182931 5.40459e-10 -0.0547761)
(-0.0158073 5.56287e-10 -0.0535451)
(-0.0133894 5.71447e-10 -0.0522918)
(-0.0110403 5.85734e-10 -0.0510165)
(-0.00876071 5.98735e-10 -0.0497193)
(-0.00655147 6.10604e-10 -0.0484004)
(-0.0044133 6.21135e-10 -0.0470599)
(-0.0023469 6.30329e-10 -0.0456978)
(-0.000352945 6.37721e-10 -0.044314)
(0.00156796 6.43569e-10 -0.0429085)
(0.00341519 6.47047e-10 -0.0414812)
(0.00518823 6.48206e-10 -0.040032)
(0.00688654 6.46995e-10 -0.0385608)
(0.00850965 6.43311e-10 -0.0370676)
(0.0100571 6.36843e-10 -0.0355522)
(0.0115285 6.27333e-10 -0.0340149)
(0.0129236 6.15089e-10 -0.0324556)
(0.014242 6.00575e-10 -0.0308747)
(0.0154835 5.83326e-10 -0.0292724)
(0.0166479 5.63805e-10 -0.0276494)
(0.0177351 5.42115e-10 -0.0260062)
(0.0187451 5.1743e-10 -0.0243437)
(0.019678 4.91296e-10 -0.022663)
(0.0205337 4.63197e-10 -0.0209655)
(0.0213127 4.33131e-10 -0.0192526)
(0.0220151 4.01821e-10 -0.0175262)
(0.0226415 3.68493e-10 -0.0157885)
(0.0231923 3.33403e-10 -0.0140419)
(0.0236681 2.9619e-10 -0.0122891)
(0.0240699 2.5675e-10 -0.0105332)
(0.0243984 2.13998e-10 -0.0087777)
(0.0246547 1.67883e-10 -0.00702641)
(0.02484 1.18402e-10 -0.00528349)
(0.0249557 6.3955e-11 -0.00355346)
(0.0250031 3.55956e-12 -0.00184123)
(0.0249839 -6.34059e-11 -0.000152039)
(0.0248999 -1.39163e-10 0.0015085)
(0.0247529 -2.24852e-10 0.00313445)
(0.024545 -3.21714e-10 0.00471955)
(0.0242783 -4.30992e-10 0.00625724)
(0.0239552 -5.54344e-10 0.00774071)
(0.023578 -6.91876e-10 0.00916292)
(0.0231494 -8.44213e-10 0.0105166)
(0.0226717 -1.01167e-09 0.0117945)
(0.0221478 -1.19363e-09 0.012989)
(0.0215802 -1.38792e-09 0.0140927)
(0.0209717 -1.59258e-09 0.015098)
(0.0203251 -1.80214e-09 0.0159977)
(0.0196428 -2.01111e-09 0.0167846)
(0.0189276 -2.21452e-09 0.0174516)
(0.018182 -2.40833e-09 0.0179922)
(0.0174083 -2.59078e-09 0.0184002)
(0.0166086 -2.76528e-09 0.0186699)
(0.0157851 -2.93656e-09 0.0187963)
(0.0149396 -3.1069e-09 0.0187748)
(0.0140735 -3.28032e-09 0.0186018)
(0.0131882 -3.46363e-09 0.0182745)
(0.0122848 -3.67409e-09 0.0177908)
(0.0113641 -3.92638e-09 0.0171496)
(0.0104267 -4.21826e-09 0.0163504)
(0.00947298 -4.54564e-09 0.0153935)
(0.00850322 -4.99231e-09 0.0142798)
(0.00751766 -5.77794e-09 0.0130096)
(0.00651662 -7.11824e-09 0.0115828)
(0.00550072 -9.09697e-09 0.00999587)
(0.00447138 -1.20498e-08 0.00823909)
(0.00343072 -1.69285e-08 0.00628718)
(0.00238751 -2.49544e-08 0.00407488)
(0.00137743 -3.37121e-08 0.00141113)
(0.000498602 -9.44523e-08 -0.00205047)
(-0.00470998 -9.0142e-08 0.0585887)
(-0.0113678 -1.00403e-08 0.0707402)
(-0.0186907 -3.34293e-09 0.0782671)
(-0.0259726 -1.2529e-09 0.0840606)
(-0.0330627 8.82687e-10 0.088942)
(-0.0399703 1.9371e-09 0.0932064)
(-0.0467018 2.6525e-09 0.096984)
(-0.0532679 3.27512e-09 0.10034)
(-0.0596802 3.35874e-09 0.103312)
(-0.0659506 2.92879e-09 0.105922)
(-0.0720901 2.35535e-09 0.108187)
(-0.078109 1.7959e-09 0.11012)
(-0.0840162 1.19702e-09 0.111732)
(-0.0898192 5.31019e-10 0.113035)
(-0.0955243 -1.23551e-10 0.11404)
(-0.101136 -6.43507e-10 0.114758)
(-0.106658 -9.44606e-10 0.115202)
(-0.112093 -1.02477e-09 0.115382)
(-0.11744 -9.42745e-10 0.11531)
(-0.122701 -7.7502e-10 0.114997)
(-0.127875 -5.82777e-10 0.114456)
(-0.13296 -4.04615e-10 0.113696)
(-0.137953 -2.64748e-10 0.112729)
(-0.142852 -1.74917e-10 0.111564)
(-0.147654 -1.30737e-10 0.110213)
(-0.152355 -1.11028e-10 0.108683)
(-0.156952 -9.17808e-11 0.106986)
(-0.16144 -6.21278e-11 0.105128)
(-0.165815 -3.05691e-11 0.103119)
(-0.170075 -1.44114e-11 0.100967)
(-0.174213 -2.60656e-11 0.0986794)
(-0.178227 -6.37771e-11 0.0962634)
(-0.182113 -1.16264e-10 0.0937263)
(-0.185867 -1.69106e-10 0.091075)
(-0.189485 -2.10305e-10 0.0883162)
(-0.192963 -2.33167e-10 0.0854564)
(-0.196299 -2.35327e-10 0.0825021)
(-0.199489 -2.17404e-10 0.0794593)
(-0.20253 -1.84293e-10 0.0763344)
(-0.20542 -1.42739e-10 0.0731333)
(-0.208155 -1.02063e-10 0.0698619)
(-0.210734 -7.07074e-11 0.0665262)
(-0.213155 -5.44374e-11 0.0631321)
(-0.215415 -5.59285e-11 0.0596855)
(-0.217514 -7.25021e-11 0.056192)
(-0.219449 -9.90093e-11 0.0526576)
(-0.221219 -1.28603e-10 0.0490879)
(-0.222823 -1.54694e-10 0.0454888)
(-0.224261 -1.73218e-10 0.0418659)
(-0.225532 -1.8232e-10 0.0382249)
(-0.226636 -1.83342e-10 0.0345715)
(-0.227573 -1.78547e-10 0.0309112)
(-0.228342 -1.70305e-10 0.0272497)
(-0.228945 -1.61239e-10 0.0235925)
(-0.229382 -1.52019e-10 0.019945)
(-0.229653 -1.4316e-10 0.0163125)
(-0.229761 -1.34507e-10 0.0127003)
(-0.229705 -1.26112e-10 0.00911362)
(-0.229488 -1.18849e-10 0.00555749)
(-0.229111 -1.12976e-10 0.00203685)
(-0.228576 -1.0911e-10 -0.0014435)
(-0.227886 -1.07252e-10 -0.00487888)
(-0.227042 -1.07965e-10 -0.00826476)
(-0.226048 -1.10892e-10 -0.0115968)
(-0.224905 -1.15413e-10 -0.0148708)
(-0.223617 -1.20243e-10 -0.0180828)
(-0.222186 -1.25125e-10 -0.0212289)
(-0.220617 -1.29131e-10 -0.0243056)
(-0.218912 -1.31903e-10 -0.0273094)
(-0.217075 -1.33183e-10 -0.0302371)
(-0.215109 -1.33125e-10 -0.0330859)
(-0.213018 -1.32295e-10 -0.0358528)
(-0.210807 -1.3054e-10 -0.0385353)
(-0.208478 -1.28116e-10 -0.0411312)
(-0.206038 -1.25332e-10 -0.0436383)
(-0.203488 -1.2224e-10 -0.0460548)
(-0.200835 -1.18787e-10 -0.048379)
(-0.198082 -1.15026e-10 -0.0506095)
(-0.195233 -1.10957e-10 -0.0527451)
(-0.192294 -1.06476e-10 -0.0547848)
(-0.189268 -1.01378e-10 -0.0567279)
(-0.186161 -9.57146e-11 -0.0585737)
(-0.182977 -8.91252e-11 -0.0603221)
(-0.179721 -8.20729e-11 -0.0619726)
(-0.176396 -7.43006e-11 -0.0635256)
(-0.173009 -6.58083e-11 -0.0649811)
(-0.169563 -5.70589e-11 -0.0663396)
(-0.166064 -4.75894e-11 -0.0676017)
(-0.162515 -3.78627e-11 -0.0687682)
(-0.158921 -2.80847e-11 -0.0698399)
(-0.155288 -1.79466e-11 -0.070818)
(-0.151618 -8.01417e-12 -0.0717036)
(-0.147917 2.0726e-12 -0.0724981)
(-0.144189 1.21595e-11 -0.073203)
(-0.140439 2.24007e-11 -0.0738199)
(-0.136669 3.2745e-11 -0.0743505)
(-0.132886 4.31924e-11 -0.0747966)
(-0.129091 5.4e-11 -0.07516)
(-0.125291 6.48593e-11 -0.0754428)
(-0.121487 7.61304e-11 -0.075647)
(-0.117685 8.77104e-11 -0.0757748)
(-0.113887 9.95994e-11 -0.0758282)
(-0.110098 1.11746e-10 -0.0758096)
(-0.10632 1.2415e-10 -0.0757211)
(-0.102557 1.36812e-10 -0.0755651)
(-0.0988119 1.49783e-10 -0.0753438)
(-0.0950883 1.63012e-10 -0.0750595)
(-0.091389 1.7655e-10 -0.0747146)
(-0.0877167 1.90294e-10 -0.0743114)
(-0.0840743 2.04348e-10 -0.0738522)
(-0.0804643 2.18505e-10 -0.0733392)
(-0.0768895 2.3292e-10 -0.0727746)
(-0.0733522 2.47542e-10 -0.0721608)
(-0.0698546 2.62525e-10 -0.0714997)
(-0.0663992 2.7756e-10 -0.0707936)
(-0.0629879 2.92905e-10 -0.0700444)
(-0.0596229 3.08457e-10 -0.0692542)
(-0.056306 3.24215e-10 -0.0684248)
(-0.0530391 3.40232e-10 -0.067558)
(-0.049824 3.56301e-10 -0.0666556)
(-0.0466622 3.72835e-10 -0.0657193)
(-0.0435555 3.89421e-10 -0.0647505)
(-0.0405052 4.06214e-10 -0.0637507)
(-0.0375128 4.23112e-10 -0.0627213)
(-0.0345797 4.40165e-10 -0.0616635)
(-0.0317072 4.5722e-10 -0.0605784)
(-0.0288964 4.74174e-10 -0.0594671)
(-0.0261485 4.91128e-10 -0.0583304)
(-0.0234646 5.08136e-10 -0.0571693)
(-0.0208458 5.24528e-10 -0.0559843)
(-0.0182931 5.40457e-10 -0.0547761)
(-0.0158073 5.56285e-10 -0.0535451)
(-0.0133894 5.71446e-10 -0.0522918)
(-0.0110403 5.85732e-10 -0.0510165)
(-0.00876073 5.98733e-10 -0.0497193)
(-0.00655149 6.10602e-10 -0.0484004)
(-0.00441332 6.21133e-10 -0.0470599)
(-0.00234692 6.30327e-10 -0.0456978)
(-0.000352964 6.37719e-10 -0.044314)
(0.00156794 6.43567e-10 -0.0429085)
(0.00341517 6.47045e-10 -0.0414812)
(0.00518821 6.48204e-10 -0.040032)
(0.00688652 6.46994e-10 -0.0385608)
(0.00850963 6.43309e-10 -0.0370676)
(0.0100571 6.36841e-10 -0.0355523)
(0.0115285 6.27331e-10 -0.0340149)
(0.0129236 6.15087e-10 -0.0324556)
(0.014242 6.00573e-10 -0.0308747)
(0.0154835 5.83324e-10 -0.0292724)
(0.0166479 5.63804e-10 -0.0276494)
(0.0177351 5.42114e-10 -0.0260062)
(0.0187451 5.17429e-10 -0.0243437)
(0.0196779 4.91295e-10 -0.022663)
(0.0205337 4.63195e-10 -0.0209655)
(0.0213127 4.3313e-10 -0.0192526)
(0.0220151 4.0182e-10 -0.0175262)
(0.0226414 3.68492e-10 -0.0157885)
(0.0231922 3.33402e-10 -0.0140419)
(0.0236681 2.96189e-10 -0.012289)
(0.0240699 2.56749e-10 -0.0105332)
(0.0243984 2.13998e-10 -0.00877769)
(0.0246547 1.67882e-10 -0.0070264)
(0.02484 1.18402e-10 -0.00528348)
(0.0249557 6.39549e-11 -0.00355345)
(0.0250031 3.55955e-12 -0.00184121)
(0.0249839 -6.34057e-11 -0.000152022)
(0.0248998 -1.39163e-10 0.00150852)
(0.0247528 -2.24851e-10 0.00313447)
(0.0245449 -3.21713e-10 0.00471957)
(0.0242783 -4.30991e-10 0.00625726)
(0.0239552 -5.54343e-10 0.00774074)
(0.023578 -6.91875e-10 0.00916295)
(0.0231493 -8.44211e-10 0.0105167)
(0.0226717 -1.01167e-09 0.0117945)
(0.0221477 -1.19362e-09 0.012989)
(0.0215802 -1.38791e-09 0.0140927)
(0.0209717 -1.59258e-09 0.0150981)
(0.020325 -1.80213e-09 0.0159978)
(0.0196428 -2.0111e-09 0.0167846)
(0.0189276 -2.21451e-09 0.0174516)
(0.018182 -2.40833e-09 0.0179922)
(0.0174082 -2.59078e-09 0.0184003)
(0.0166086 -2.76527e-09 0.01867)
(0.0157851 -2.93655e-09 0.0187963)
(0.0149395 -3.10689e-09 0.0187748)
(0.0140735 -3.28031e-09 0.0186019)
(0.0131882 -3.46362e-09 0.0182745)
(0.0122848 -3.67408e-09 0.0177908)
(0.0113641 -3.92637e-09 0.0171496)
(0.0104267 -4.21825e-09 0.0163504)
(0.00947294 -4.54563e-09 0.0153935)
(0.00850318 -4.9923e-09 0.0142798)
(0.00751762 -5.77792e-09 0.0130096)
(0.00651657 -7.11822e-09 0.0115828)
(0.00550067 -9.09693e-09 0.00999585)
(0.00447132 -1.20498e-08 0.00823905)
(0.00343065 -1.69284e-08 0.00628712)
(0.00238742 -2.49543e-08 0.00407479)
(0.00137727 -3.37121e-08 0.00141101)
(0.000498299 -9.44524e-08 -0.00205061)
(-0.00473017 -8.68547e-08 0.0664876)
(-0.0114922 -1.81432e-08 0.0786835)
(-0.0189124 -1.18198e-08 0.0860651)
(-0.026311 -6.72763e-09 0.0916758)
(-0.0335298 -2.6819e-09 0.0963672)
(-0.0405759 -5.08319e-10 0.100445)
(-0.0474522 1.00683e-09 0.104044)
(-0.0541666 2.28446e-09 0.107233)
(-0.060728 2.9527e-09 0.110048)
(-0.0671457 3.05862e-09 0.112513)
(-0.0734291 2.95492e-09 0.114642)
(-0.0795865 2.76059e-09 0.116449)
(-0.0856255 2.37307e-09 0.117943)
(-0.0915527 1.72652e-09 0.119136)
(-0.0973734 9.12729e-10 0.120035)
(-0.103092 1.3063e-10 0.120653)
(-0.108711 -4.36614e-10 0.120998)
(-0.114233 -7.15515e-10 0.121081)
(-0.119658 -7.47852e-10 0.120913)
(-0.124988 -6.32576e-10 0.120505)
(-0.13022 -4.61462e-10 0.119866)
(-0.135354 -2.94635e-10 0.119007)
(-0.140388 -1.65575e-10 0.117938)
(-0.14532 -9.04525e-11 0.116669)
(-0.150145 -6.66324e-11 0.115209)
(-0.154862 -7.07259e-11 0.113568)
(-0.159468 -7.09016e-11 0.111755)
(-0.163957 -4.85695e-11 0.109779)
(-0.168328 -9.65497e-12 0.107647)
(-0.172575 2.36457e-11 0.105367)
(-0.176696 3.03243e-11 0.102948)
(-0.180687 3.38116e-12 0.100396)
(-0.184544 -4.86327e-11 0.0977201)
(-0.188264 -1.10372e-10 0.0949258)
(-0.191844 -1.66699e-10 0.0920205)
(-0.195279 -2.07319e-10 0.0890107)
(-0.198568 -2.26724e-10 0.085903)
(-0.201707 -2.2286e-10 0.0827039)
(-0.204694 -1.98712e-10 0.0794197)
(-0.207526 -1.59896e-10 0.0760567)
(-0.210201 -1.15676e-10 0.0726209)
(-0.212716 -7.64007e-11 0.0691187)
(-0.21507 -5.03031e-11 0.065556)
(-0.217261 -4.23235e-11 0.061939)
(-0.219288 -5.2563e-11 0.0582737)
(-0.22115 -7.67485e-11 0.0545661)
(-0.222844 -1.07571e-10 0.0508222)
(-0.224372 -1.37954e-10 0.0470479)
(-0.225731 -1.61928e-10 0.0432494)
(-0.226922 -1.76458e-10 0.0394324)
(-0.227945 -1.81699e-10 0.0356029)
(-0.228799 -1.79529e-10 0.0317667)
(-0.229485 -1.72677e-10 0.0279296)
(-0.230004 -1.6369e-10 0.0240973)
(-0.230356 -1.54061e-10 0.0202756)
(-0.230542 -1.44329e-10 0.01647)
(-0.230564 -1.34854e-10 0.012686)
(-0.230422 -1.25535e-10 0.00892897)
(-0.230119 -1.16884e-10 0.00520425)
(-0.229657 -1.09263e-10 0.00151697)
(-0.229036 -1.03392e-10 -0.00212785)
(-0.22826 -9.97324e-11 -0.00572533)
(-0.227331 -9.84656e-11 -0.00927074)
(-0.226252 -9.95652e-11 -0.0127595)
(-0.225025 -1.0262e-10 -0.0161873)
(-0.223653 -1.06574e-10 -0.0195499)
(-0.22214 -1.10426e-10 -0.0228434)
(-0.220489 -1.1366e-10 -0.0260639)
(-0.218703 -1.15583e-10 -0.0292079)
(-0.216785 -1.15859e-10 -0.032272)
(-0.21474 -1.14979e-10 -0.0352532)
(-0.212572 -1.12658e-10 -0.0381485)
(-0.210284 -1.09463e-10 -0.0409552)
(-0.20788 -1.05651e-10 -0.0436709)
(-0.205365 -1.01377e-10 -0.0462934)
(-0.202744 -9.66396e-11 -0.0488208)
(-0.200019 -9.16968e-11 -0.0512513)
(-0.197197 -8.65999e-11 -0.0535835)
(-0.19428 -8.1246e-11 -0.0558159)
(-0.191275 -7.54808e-11 -0.0579478)
(-0.188185 -6.92529e-11 -0.0599781)
(-0.185016 -6.25623e-11 -0.0619064)
(-0.181771 -5.52547e-11 -0.0637322)
(-0.178456 -4.74329e-11 -0.0654554)
(-0.175076 -3.89427e-11 -0.0670761)
(-0.171634 -2.98354e-11 -0.0685945)
(-0.168135 -2.0214e-11 -0.0700109)
(-0.164585 -1.02841e-11 -0.0713262)
(-0.160988 -9.70422e-14 -0.0725409)
(-0.157349 1.01928e-11 -0.0736562)
(-0.153671 2.0637e-11 -0.0746731)
(-0.14996 3.10812e-11 -0.0755928)
(-0.146219 4.13712e-11 -0.0764169)
(-0.142454 5.16099e-11 -0.0771469)
(-0.138669 6.19516e-11 -0.0777844)
(-0.134867 7.22934e-11 -0.0783312)
(-0.131053 8.26354e-11 -0.0787892)
(-0.127231 9.30291e-11 -0.0791604)
(-0.123404 1.03732e-10 -0.0794469)
(-0.119577 1.14434e-10 -0.0796509)
(-0.115754 1.25343e-10 -0.0797745)
(-0.111938 1.36561e-10 -0.07982)
(-0.108132 1.4819e-10 -0.0797898)
(-0.10434 1.59769e-10 -0.0796862)
(-0.100565 1.71759e-10 -0.0795117)
(-0.0968102 1.83699e-10 -0.0792685)
(-0.0930793 1.96101e-10 -0.0789593)
(-0.0893748 2.08608e-10 -0.0785863)
(-0.0856995 2.21475e-10 -0.0781521)
(-0.0820563 2.34342e-10 -0.077659)
(-0.0784478 2.47365e-10 -0.0771094)
(-0.0748764 2.60593e-10 -0.0765056)
(-0.0713446 2.73977e-10 -0.0758501)
(-0.0678547 2.87311e-10 -0.075145)
(-0.0644088 3.01159e-10 -0.0743925)
(-0.0610091 3.15009e-10 -0.0735948)
(-0.0576576 3.29065e-10 -0.072754)
(-0.0543561 3.43225e-10 -0.071872)
(-0.0511064 3.57797e-10 -0.0709508)
(-0.0479102 3.7237e-10 -0.0699923)
(-0.0447693 3.87151e-10 -0.0689981)
(-0.041685 4.02189e-10 -0.0679698)
(-0.0386588 4.1728e-10 -0.066909)
(-0.0356922 4.32424e-10 -0.0658172)
(-0.0327864 4.47569e-10 -0.0646956)
(-0.0299426 4.6287e-10 -0.0635455)
(-0.0271621 4.77914e-10 -0.0623679)
(-0.0244459 4.93166e-10 -0.0611638)
(-0.021795 5.07956e-10 -0.0599341)
(-0.0192105 5.22489e-10 -0.0586795)
(-0.0166932 5.36613e-10 -0.0574007)
(-0.0142442 5.5012e-10 -0.0560982)
(-0.0118641 5.63061e-10 -0.0547725)
(-0.00955381 5.74821e-10 -0.0534239)
(-0.00731408 5.85345e-10 -0.0520527)
(-0.0051456 5.94481e-10 -0.050659)
(-0.00304904 6.02948e-10 -0.049243)
(-0.00102506 6.09666e-10 -0.0478047)
(0.00092582 6.14376e-10 -0.046344)
(0.00280296 6.17233e-10 -0.0448611)
(0.00460589 6.17977e-10 -0.0433558)
(0.00633413 6.16352e-10 -0.041828)
(0.00798724 6.12563e-10 -0.0402778)
(0.00956481 6.05785e-10 -0.0387051)
(0.0110665 5.96327e-10 -0.03711)
(0.012492 5.84548e-10 -0.0354925)
(0.0138411 5.69984e-10 -0.0338528)
(0.0151135 5.53151e-10 -0.0321912)
(0.0163091 5.33995e-10 -0.0305081)
(0.0174278 5.12515e-10 -0.0288041)
(0.0184697 4.89022e-10 -0.02708)
(0.0194347 4.63616e-10 -0.0253367)
(0.020323 4.36606e-10 -0.0235753)
(0.0211349 4.0789e-10 -0.0217973)
(0.0218705 3.77878e-10 -0.0200043)
(0.0225305 3.46261e-10 -0.0181983)
(0.0231152 3.12833e-10 -0.0163815)
(0.0236253 2.77488e-10 -0.0145564)
(0.0240616 2.39763e-10 -0.012726)
(0.0244248 1.99038e-10 -0.0108935)
(0.024716 1.54796e-10 -0.00906241)
(0.0249363 1.05953e-10 -0.00723678)
(0.025087 5.20934e-11 -0.00542087)
(0.0251694 -8.02145e-12 -0.00361938)
(0.025185 -7.58906e-11 -0.00183734)
(0.0251356 -1.52755e-10 -8.01574e-05)
(0.0250229 -2.39908e-10 0.00164642)
(0.0248489 -3.38643e-10 0.00333631)
(0.0246156 -4.501e-10 0.00498312)
(0.0243251 -5.75367e-10 0.00658016)
(0.0239799 -7.14912e-10 0.00812051)
(0.0235822 -8.68429e-10 0.00959702)
(0.0231347 -1.03541e-09 0.0110024)
(0.0226397 -1.21481e-09 0.0123291)
(0.0221 -1.40562e-09 0.0135698)
(0.0215182 -1.60463e-09 0.0147168)
(0.0208969 -1.80904e-09 0.0157627)
(0.0202387 -2.01389e-09 0.0167001)
(0.0195463 -2.21351e-09 0.017522)
(0.0188222 -2.40239e-09 0.0182215)
(0.0180689 -2.57713e-09 0.0187921)
(0.0172885 -2.73709e-09 0.0192278)
(0.0164833 -2.88629e-09 0.019523)
(0.0156553 -3.02918e-09 0.0196729)
(0.0148062 -3.17091e-09 0.0196732)
(0.0139376 -3.31468e-09 0.0195207)
(0.0130508 -3.46946e-09 0.0192125)
(0.012147 -3.65377e-09 0.018747)
(0.0112271 -3.88701e-09 0.0181233)
(0.0102917 -4.16988e-09 0.0173411)
(0.00934152 -4.50197e-09 0.0164009)
(0.00837688 -4.96543e-09 0.0153034)
(0.00739826 -5.78075e-09 0.0140493)
(0.00640623 -7.16233e-09 0.0126379)
(0.00540166 -9.19988e-09 0.0110654)
(0.00438624 -1.22248e-08 0.00932088)
(0.00336238 -1.71718e-08 0.00737686)
(0.00233868 -2.52257e-08 0.00516285)
(0.00135053 -3.37844e-08 0.00247075)
(0.000492594 -8.69525e-08 -0.00115731)
(-0.00473001 -8.68544e-08 0.0664874)
(-0.0114921 -1.81431e-08 0.0786834)
(-0.0189124 -1.18197e-08 0.0860649)
(-0.026311 -6.72757e-09 0.0916756)
(-0.0335298 -2.68188e-09 0.096367)
(-0.0405759 -5.08315e-10 0.100445)
(-0.0474522 1.00682e-09 0.104044)
(-0.0541666 2.28444e-09 0.107233)
(-0.0607279 2.95267e-09 0.110048)
(-0.0671457 3.05859e-09 0.112512)
(-0.073429 2.95489e-09 0.114642)
(-0.0795864 2.76057e-09 0.116449)
(-0.0856255 2.37305e-09 0.117943)
(-0.0915527 1.7265e-09 0.119136)
(-0.0973734 9.12721e-10 0.120035)
(-0.103092 1.30629e-10 0.120653)
(-0.108711 -4.3661e-10 0.120998)
(-0.114233 -7.1551e-10 0.121081)
(-0.119658 -7.47846e-10 0.120913)
(-0.124988 -6.32572e-10 0.120504)
(-0.13022 -4.61459e-10 0.119865)
(-0.135354 -2.94633e-10 0.119006)
(-0.140388 -1.65574e-10 0.117938)
(-0.145319 -9.04519e-11 0.116669)
(-0.150145 -6.6632e-11 0.115209)
(-0.154862 -7.07254e-11 0.113568)
(-0.159468 -7.09012e-11 0.111755)
(-0.163957 -4.85693e-11 0.109779)
(-0.168328 -9.65491e-12 0.107647)
(-0.172575 2.36456e-11 0.105367)
(-0.176696 3.03241e-11 0.102948)
(-0.180687 3.38115e-12 0.100396)
(-0.184544 -4.86325e-11 0.0977201)
(-0.188264 -1.10371e-10 0.0949258)
(-0.191844 -1.66698e-10 0.0920204)
(-0.195279 -2.07318e-10 0.0890107)
(-0.198568 -2.26723e-10 0.085903)
(-0.201707 -2.22859e-10 0.0827039)
(-0.204694 -1.98712e-10 0.0794197)
(-0.207526 -1.59895e-10 0.0760567)
(-0.210201 -1.15676e-10 0.0726209)
(-0.212716 -7.64004e-11 0.0691187)
(-0.21507 -5.03029e-11 0.065556)
(-0.217261 -4.23233e-11 0.061939)
(-0.219288 -5.25628e-11 0.0582737)
(-0.22115 -7.67482e-11 0.0545661)
(-0.222844 -1.07571e-10 0.0508222)
(-0.224372 -1.37953e-10 0.047048)
(-0.225731 -1.61928e-10 0.0432494)
(-0.226922 -1.76457e-10 0.0394324)
(-0.227945 -1.81698e-10 0.0356029)
(-0.228799 -1.79529e-10 0.0317667)
(-0.229485 -1.72677e-10 0.0279296)
(-0.230004 -1.6369e-10 0.0240973)
(-0.230356 -1.5406e-10 0.0202756)
(-0.230542 -1.44328e-10 0.01647)
(-0.230564 -1.34854e-10 0.012686)
(-0.230422 -1.25534e-10 0.00892899)
(-0.230119 -1.16884e-10 0.00520427)
(-0.229657 -1.09263e-10 0.00151699)
(-0.229036 -1.03391e-10 -0.00212784)
(-0.22826 -9.97322e-11 -0.00572532)
(-0.227331 -9.84654e-11 -0.00927072)
(-0.226252 -9.9565e-11 -0.0127595)
(-0.225025 -1.02619e-10 -0.0161873)
(-0.223653 -1.06574e-10 -0.0195499)
(-0.22214 -1.10426e-10 -0.0228434)
(-0.220489 -1.1366e-10 -0.0260639)
(-0.218703 -1.15582e-10 -0.0292079)
(-0.216785 -1.15859e-10 -0.032272)
(-0.21474 -1.14979e-10 -0.0352532)
(-0.212572 -1.12658e-10 -0.0381484)
(-0.210284 -1.09463e-10 -0.0409552)
(-0.20788 -1.05651e-10 -0.0436709)
(-0.205365 -1.01377e-10 -0.0462934)
(-0.202744 -9.66394e-11 -0.0488208)
(-0.200019 -9.16966e-11 -0.0512513)
(-0.197197 -8.65997e-11 -0.0535834)
(-0.19428 -8.12458e-11 -0.0558159)
(-0.191275 -7.54806e-11 -0.0579477)
(-0.188186 -6.92527e-11 -0.0599781)
(-0.185016 -6.25621e-11 -0.0619064)
(-0.181771 -5.52545e-11 -0.0637322)
(-0.178456 -4.74328e-11 -0.0654554)
(-0.175076 -3.89426e-11 -0.0670761)
(-0.171634 -2.98354e-11 -0.0685944)
(-0.168135 -2.0214e-11 -0.0700109)
(-0.164585 -1.0284e-11 -0.0713262)
(-0.160988 -9.7042e-14 -0.0725409)
(-0.157349 1.01928e-11 -0.0736562)
(-0.153671 2.06369e-11 -0.0746731)
(-0.14996 3.10811e-11 -0.0755928)
(-0.146219 4.13711e-11 -0.0764169)
(-0.142454 5.16098e-11 -0.0771469)
(-0.138669 6.19514e-11 -0.0777843)
(-0.134867 7.22932e-11 -0.0783312)
(-0.131053 8.26352e-11 -0.0787892)
(-0.127231 9.30288e-11 -0.0791604)
(-0.123404 1.03731e-10 -0.0794469)
(-0.119577 1.14434e-10 -0.0796509)
(-0.115754 1.25343e-10 -0.0797745)
(-0.111938 1.3656e-10 -0.07982)
(-0.108132 1.4819e-10 -0.0797898)
(-0.10434 1.59768e-10 -0.0796862)
(-0.100565 1.71759e-10 -0.0795117)
(-0.0968103 1.83698e-10 -0.0792685)
(-0.0930793 1.96101e-10 -0.0789593)
(-0.0893748 2.08607e-10 -0.0785863)
(-0.0856996 2.21474e-10 -0.0781521)
(-0.0820564 2.34341e-10 -0.077659)
(-0.0784478 2.47364e-10 -0.0771094)
(-0.0748764 2.60593e-10 -0.0765056)
(-0.0713446 2.73977e-10 -0.0758501)
(-0.0678547 2.8731e-10 -0.0751449)
(-0.0644088 3.01158e-10 -0.0743925)
(-0.0610091 3.15008e-10 -0.0735948)
(-0.0576576 3.29064e-10 -0.072754)
(-0.0543561 3.43224e-10 -0.071872)
(-0.0511064 3.57796e-10 -0.0709508)
(-0.0479103 3.72369e-10 -0.0699923)
(-0.0447693 3.8715e-10 -0.068998)
(-0.041685 4.02188e-10 -0.0679698)
(-0.0386588 4.17279e-10 -0.066909)
(-0.0356922 4.32423e-10 -0.0658172)
(-0.0327864 4.47568e-10 -0.0646956)
(-0.0299427 4.62868e-10 -0.0635455)
(-0.0271621 4.77913e-10 -0.0623679)
(-0.0244459 4.93164e-10 -0.0611638)
(-0.021795 5.07954e-10 -0.0599341)
(-0.0192105 5.22488e-10 -0.0586795)
(-0.0166933 5.36611e-10 -0.0574007)
(-0.0142442 5.50118e-10 -0.0560982)
(-0.0118641 5.6306e-10 -0.0547725)
(-0.00955384 5.74819e-10 -0.0534239)
(-0.0073141 5.85344e-10 -0.0520527)
(-0.00514562 5.94479e-10 -0.050659)
(-0.00304907 6.02947e-10 -0.049243)
(-0.00102508 6.09664e-10 -0.0478047)
(0.000925798 6.14374e-10 -0.046344)
(0.00280293 6.17231e-10 -0.0448611)
(0.00460587 6.17975e-10 -0.0433558)
(0.00633411 6.1635e-10 -0.041828)
(0.00798721 6.12561e-10 -0.0402778)
(0.00956479 6.05783e-10 -0.0387051)
(0.0110665 5.96325e-10 -0.03711)
(0.012492 5.84546e-10 -0.0354925)
(0.013841 5.69983e-10 -0.0338528)
(0.0151135 5.53149e-10 -0.0321912)
(0.0163091 5.33993e-10 -0.0305081)
(0.0174278 5.12514e-10 -0.0288041)
(0.0184696 4.8902e-10 -0.02708)
(0.0194347 4.63614e-10 -0.0253367)
(0.020323 4.36605e-10 -0.0235753)
(0.0211348 4.07889e-10 -0.0217973)
(0.0218705 3.77877e-10 -0.0200043)
(0.0225305 3.4626e-10 -0.0181983)
(0.0231152 3.12832e-10 -0.0163814)
(0.0236253 2.77487e-10 -0.0145564)
(0.0240615 2.39763e-10 -0.012726)
(0.0244248 1.99038e-10 -0.0108935)
(0.024716 1.54796e-10 -0.0090624)
(0.0249363 1.05952e-10 -0.00723677)
(0.025087 5.20933e-11 -0.00542086)
(0.0251694 -8.02143e-12 -0.00361937)
(0.025185 -7.58904e-11 -0.00183732)
(0.0251356 -1.52755e-10 -8.01399e-05)
(0.0250229 -2.39907e-10 0.00164644)
(0.0248489 -3.38642e-10 0.00333633)
(0.0246155 -4.50099e-10 0.00498314)
(0.0243251 -5.75365e-10 0.00658018)
(0.0239799 -7.1491e-10 0.00812053)
(0.0235822 -8.68427e-10 0.00959704)
(0.0231346 -1.0354e-09 0.0110024)
(0.0226397 -1.21481e-09 0.0123291)
(0.0221 -1.40562e-09 0.0135698)
(0.0215181 -1.60462e-09 0.0147168)
(0.0208968 -1.80903e-09 0.0157627)
(0.0202387 -2.01389e-09 0.0167002)
(0.0195463 -2.2135e-09 0.0175221)
(0.0188222 -2.40239e-09 0.0182216)
(0.0180688 -2.57712e-09 0.0187922)
(0.0172885 -2.73708e-09 0.0192278)
(0.0164833 -2.88629e-09 0.019523)
(0.0156552 -3.02918e-09 0.0196729)
(0.0148061 -3.1709e-09 0.0196733)
(0.0139375 -3.31467e-09 0.0195207)
(0.0130508 -3.46946e-09 0.0192125)
(0.012147 -3.65376e-09 0.0187471)
(0.011227 -3.887e-09 0.0181233)
(0.0102917 -4.16987e-09 0.0173411)
(0.00934148 -4.50196e-09 0.0164009)
(0.00837684 -4.96541e-09 0.0153034)
(0.00739822 -5.78073e-09 0.0140493)
(0.00640618 -7.1623e-09 0.0126379)
(0.00540161 -9.19984e-09 0.0110654)
(0.00438618 -1.22248e-08 0.00932084)
(0.00336232 -1.71718e-08 0.00737679)
(0.0023386 -2.52256e-08 0.00516276)
(0.00135039 -3.37845e-08 0.00247062)
(0.000492316 -8.69526e-08 -0.00115745)
(-0.00475057 -9.09227e-08 0.0744704)
(-0.0116182 -2.91765e-08 0.0867203)
(-0.0191354 -2.21765e-08 0.0939747)
(-0.0266501 -1.38366e-08 0.099418)
(-0.0339969 -7.85595e-09 0.103931)
(-0.0411812 -4.64481e-09 0.107832)
(-0.0482028 -2.42193e-09 0.111258)
(-0.0550667 -5.75039e-10 0.114282)
(-0.0617794 6.71997e-10 0.116941)
(-0.0683481 1.42939e-09 0.119258)
(-0.07478 2.03303e-09 0.121248)
(-0.0810819 2.54226e-09 0.122923)
(-0.0872599 2.75184e-09 0.124293)
(-0.0933195 2.4787e-09 0.125367)
(-0.099265 1.75649e-09 0.126152)
(-0.1051 8.38099e-10 0.126659)
(-0.110827 3.91149e-11 0.126896)
(-0.116447 -4.41656e-10 0.126873)
(-0.121963 -5.88758e-10 0.1266)
(-0.127372 -5.10658e-10 0.126085)
(-0.132676 -3.38153e-10 0.125339)
(-0.137872 -1.64371e-10 0.124371)
(-0.142959 -3.80806e-11 0.123191)
(-0.147935 1.93542e-11 0.121809)
(-0.152797 1.10315e-11 0.120233)
(-0.157542 -3.37935e-11 0.118472)
(-0.162167 -7.25872e-11 0.116536)
(-0.16667 -7.39956e-11 0.114433)
(-0.171046 -3.74574e-11 0.11217)
(-0.175292 1.17446e-11 0.109756)
(-0.179406 4.25665e-11 0.1072)
(-0.183383 3.70959e-11 0.104507)
(-0.18722 -3.01569e-12 0.101685)
(-0.190915 -6.39182e-11 0.0987428)
(-0.194464 -1.28675e-10 0.0956858)
(-0.197864 -1.83801e-10 0.0925211)
(-0.201113 -2.20239e-10 0.0892557)
(-0.204208 -2.32999e-10 0.085896)
(-0.207146 -2.21723e-10 0.0824485)
(-0.209925 -1.90016e-10 0.0789198)
(-0.212544 -1.45986e-10 0.0753163)
(-0.214999 -1.00542e-10 0.0716442)
(-0.21729 -6.43895e-11 0.0679099)
(-0.219416 -4.51933e-11 0.0641198)
(-0.221374 -4.59881e-11 0.06028)
(-0.223164 -6.40965e-11 0.0563968)
(-0.224784 -9.33172e-11 0.0524765)
(-0.226236 -1.25649e-10 0.0485253)
(-0.227517 -1.53836e-10 0.0445493)
(-0.228628 -1.73456e-10 0.0405547)
(-0.229569 -1.82991e-10 0.0365476)
(-0.23034 -1.83626e-10 0.0325342)
(-0.230941 -1.78267e-10 0.0285204)
(-0.231374 -1.69436e-10 0.0245122)
(-0.23164 -1.5914e-10 0.0205155)
(-0.231738 -1.48458e-10 0.0165361)
(-0.231671 -1.37493e-10 0.0125797)
(-0.231441 -1.26504e-10 0.00865206)
(-0.231048 -1.16029e-10 0.00475852)
(-0.230495 -1.06018e-10 0.0009045)
(-0.229785 -9.74983e-11 -0.00290477)
(-0.228919 -9.10111e-11 -0.0066642)
(-0.227899 -8.72244e-11 -0.0103689)
(-0.22673 -8.58809e-11 -0.014014)
(-0.225413 -8.66205e-11 -0.0175951)
(-0.223952 -8.86715e-11 -0.0211078)
(-0.22235 -9.11083e-11 -0.0245478)
(-0.22061 -9.2825e-11 -0.0279114)
(-0.218736 -9.32819e-11 -0.0311946)
(-0.216732 -9.22475e-11 -0.0343941)
(-0.214601 -8.98504e-11 -0.0375066)
(-0.212348 -8.59365e-11 -0.040529)
(-0.209976 -8.12e-11 -0.0434586)
(-0.20749 -7.53068e-11 -0.0462928)
(-0.204894 -6.90281e-11 -0.0490293)
(-0.202192 -6.23897e-11 -0.051666)
(-0.199389 -5.5623e-11 -0.0542012)
(-0.19649 -4.86765e-11 -0.0566333)
(-0.193498 -4.17817e-11 -0.0589609)
(-0.190419 -3.44756e-11 -0.061183)
(-0.187258 -2.6707e-11 -0.0632987)
(-0.184018 -1.899e-11 -0.0653074)
(-0.180706 -1.0399e-11 -0.0672087)
(-0.177325 -1.44824e-12 -0.0690025)
(-0.17388 7.75951e-12 -0.0706888)
(-0.170376 1.76356e-11 -0.0722678)
(-0.166818 2.818e-11 -0.07374)
(-0.16321 3.87758e-11 -0.075106)
(-0.159557 4.968e-11 -0.0763668)
(-0.155864 6.06871e-11 -0.0775232)
(-0.152136 7.15914e-11 -0.0785765)
(-0.148376 8.24958e-11 -0.079528)
(-0.14459 9.31432e-11 -0.0803792)
(-0.140781 1.03585e-10 -0.0811317)
(-0.136954 1.14181e-10 -0.0817873)
(-0.133113 1.24264e-10 -0.0823478)
(-0.129263 1.345e-10 -0.0828153)
(-0.125407 1.44686e-10 -0.0831917)
(-0.121549 1.54821e-10 -0.0834794)
(-0.117693 1.65212e-10 -0.0836805)
(-0.113844 1.75707e-10 -0.0837975)
(-0.110003 1.861e-10 -0.0838326)
(-0.106176 1.96956e-10 -0.0837883)
(-0.102365 2.07863e-10 -0.0836671)
(-0.0985736 2.18926e-10 -0.0834715)
(-0.0948052 2.29988e-10 -0.0832041)
(-0.0910627 2.4136e-10 -0.0828674)
(-0.087349 2.52835e-10 -0.0824639)
(-0.083667 2.64363e-10 -0.0819963)
(-0.0800194 2.75839e-10 -0.0814669)
(-0.0764087 2.87728e-10 -0.0808784)
(-0.0728376 2.99462e-10 -0.0802332)
(-0.0693082 3.11301e-10 -0.0795336)
(-0.065823 3.23397e-10 -0.0787822)
(-0.062384 3.35546e-10 -0.0779812)
(-0.0589933 3.47798e-10 -0.0771329)
(-0.0556528 3.60102e-10 -0.0762394)
(-0.0523645 3.7251e-10 -0.0753028)
(-0.0491299 3.85433e-10 -0.0743253)
(-0.0459509 3.98101e-10 -0.0733086)
(-0.0428289 4.11129e-10 -0.0722546)
(-0.0397655 4.24055e-10 -0.071165)
(-0.036762 4.37085e-10 -0.0700415)
(-0.0338198 4.5027e-10 -0.0688855)
(-0.0309401 4.63456e-10 -0.0676984)
(-0.028124 4.76592e-10 -0.0664816)
(-0.0253728 4.89627e-10 -0.0652361)
(-0.0226874 5.02559e-10 -0.0639631)
(-0.0200688 5.15132e-10 -0.0626634)
(-0.017518 5.27347e-10 -0.0613378)
(-0.0150358 5.38996e-10 -0.0599872)
(-0.012623 5.49977e-10 -0.0586119)
(-0.0102805 5.60187e-10 -0.0572126)
(-0.00800889 5.69266e-10 -0.0557897)
(-0.00580891 5.76802e-10 -0.0543433)
(-0.0036812 5.8367e-10 -0.0528739)
(-0.00162636 5.89148e-10 -0.0513814)
(0.000355059 5.92722e-10 -0.049866)
(0.00226252 5.94494e-10 -0.0483278)
(0.00409556 5.94207e-10 -0.0467667)
(0.00585373 5.91962e-10 -0.0451828)
(0.00753664 5.87503e-10 -0.0435761)
(0.00914392 5.80313e-10 -0.0419464)
(0.0106753 5.70546e-10 -0.040294)
(0.0121304 5.58357e-10 -0.0386187)
(0.0135091 5.43744e-10 -0.0369209)
(0.0148111 5.26811e-10 -0.0352007)
(0.0160365 5.07762e-10 -0.0334585)
(0.0171851 4.86339e-10 -0.0316947)
(0.0182568 4.63006e-10 -0.02991)
(0.0192519 4.38431e-10 -0.0281053)
(0.0201705 4.11893e-10 -0.0262815)
(0.0210127 3.83957e-10 -0.02444)
(0.0217789 3.54985e-10 -0.0225821)
(0.0224696 3.24769e-10 -0.0207097)
(0.0230851 2.92691e-10 -0.0188248)
(0.0236261 2.59007e-10 -0.0169298)
(0.0240934 2.231e-10 -0.0150273)
(0.0244877 1.84193e-10 -0.0131204)
(0.0248099 1.4141e-10 -0.0112124)
(0.0250613 9.42343e-11 -0.00930706)
(0.0252428 4.12198e-11 -0.0074084)
(0.025356 -1.86667e-11 -0.00552092)
(0.0254021 -8.66655e-11 -0.00364943)
(0.0253829 -1.64069e-10 -0.00179911)
(0.0253 -2.52376e-10 2.44908e-05)
(0.0251552 -3.52571e-10 0.00181549)
(0.0249506 -4.66101e-10 0.00356768)
(0.0246882 -5.93076e-10 0.00527452)
(0.0243702 -7.34375e-10 0.00692923)
(0.0239989 -8.89074e-10 0.00852477)
(0.0235768 -1.05635e-09 0.0100539)
(0.0231063 -1.23424e-09 0.0115092)
(0.0225899 -1.42116e-09 0.0128833)
(0.0220303 -1.61451e-09 0.0141684)
(0.0214301 -1.8113e-09 0.0153572)
(0.0207919 -2.0076e-09 0.0164421)
(0.0201183 -2.19908e-09 0.0174159)
(0.0194118 -2.38004e-09 0.0182715)
(0.018675 -2.54614e-09 0.0190021)
(0.0179103 -2.69437e-09 0.0196013)
(0.01712 -2.82523e-09 0.0200633)
(0.0163062 -2.94348e-09 0.0203827)
(0.0154709 -3.0556e-09 0.0205549)
(0.0146159 -3.16667e-09 0.0205758)
(0.013743 -3.28204e-09 0.0204423)
(0.0128534 -3.41215e-09 0.0201519)
(0.0119484 -3.57621e-09 0.0197031)
(0.0110291 -3.79797e-09 0.0190952)
(0.0100964 -4.08072e-09 0.0183281)
(0.00915098 -4.42591e-09 0.0174025)
(0.00819357 -4.91629e-09 0.0163191)
(0.00722488 -5.76874e-09 0.0150785)
(0.00624576 -7.19656e-09 0.0136797)
(0.0052574 -9.29045e-09 0.0121184)
(0.00426177 -1.23761e-08 0.0103826)
(0.00326163 -1.73624e-08 0.00844279)
(0.00226545 -2.5384e-08 0.00622343)
(0.00130792 -3.35917e-08 0.00350051)
(0.000479636 -7.86224e-08 -0.000285632)
(-0.00475036 -9.09225e-08 0.0744703)
(-0.0116182 -2.91762e-08 0.0867201)
(-0.0191353 -2.21764e-08 0.0939745)
(-0.0266501 -1.38365e-08 0.0994178)
(-0.0339969 -7.85589e-09 0.103931)
(-0.0411812 -4.64477e-09 0.107831)
(-0.0482027 -2.42191e-09 0.111258)
(-0.0550666 -5.75034e-10 0.114282)
(-0.0617793 6.71991e-10 0.116941)
(-0.0683481 1.42938e-09 0.119257)
(-0.07478 2.03302e-09 0.121248)
(-0.0810818 2.54224e-09 0.122923)
(-0.0872599 2.75181e-09 0.124293)
(-0.0933194 2.47868e-09 0.125367)
(-0.0992649 1.75648e-09 0.126152)
(-0.1051 8.38092e-10 0.126659)
(-0.110827 3.91146e-11 0.126896)
(-0.116447 -4.41653e-10 0.126873)
(-0.121963 -5.88753e-10 0.1266)
(-0.127372 -5.10654e-10 0.126085)
(-0.132676 -3.38151e-10 0.125339)
(-0.137872 -1.6437e-10 0.124371)
(-0.142959 -3.80804e-11 0.123191)
(-0.147935 1.9354e-11 0.121809)
(-0.152797 1.10315e-11 0.120233)
(-0.157542 -3.37933e-11 0.118472)
(-0.162167 -7.25868e-11 0.116536)
(-0.166669 -7.39952e-11 0.114433)
(-0.171046 -3.74572e-11 0.11217)
(-0.175292 1.17445e-11 0.109756)
(-0.179406 4.25663e-11 0.1072)
(-0.183383 3.70958e-11 0.104507)
(-0.18722 -3.01568e-12 0.101685)
(-0.190915 -6.39179e-11 0.0987428)
(-0.194464 -1.28675e-10 0.0956858)
(-0.197864 -1.838e-10 0.0925211)
(-0.201113 -2.20238e-10 0.0892557)
(-0.204208 -2.32998e-10 0.085896)
(-0.207146 -2.21722e-10 0.0824485)
(-0.209925 -1.90016e-10 0.0789198)
(-0.212544 -1.45985e-10 0.0753163)
(-0.214999 -1.00542e-10 0.0716442)
(-0.21729 -6.43893e-11 0.0679099)
(-0.219416 -4.51932e-11 0.0641198)
(-0.221374 -4.59879e-11 0.06028)
(-0.223164 -6.40963e-11 0.0563968)
(-0.224784 -9.33169e-11 0.0524765)
(-0.226236 -1.25648e-10 0.0485253)
(-0.227517 -1.53836e-10 0.0445493)
(-0.228628 -1.73456e-10 0.0405547)
(-0.229569 -1.82991e-10 0.0365477)
(-0.23034 -1.83625e-10 0.0325342)
(-0.230941 -1.78267e-10 0.0285204)
(-0.231374 -1.69436e-10 0.0245122)
(-0.23164 -1.59139e-10 0.0205155)
(-0.231738 -1.48457e-10 0.0165361)
(-0.231671 -1.37493e-10 0.0125798)
(-0.231441 -1.26503e-10 0.00865207)
(-0.231048 -1.16029e-10 0.00475853)
(-0.230495 -1.06017e-10 0.000904514)
(-0.229785 -9.74981e-11 -0.00290476)
(-0.228919 -9.10109e-11 -0.00666418)
(-0.227899 -8.72242e-11 -0.0103688)
(-0.22673 -8.58807e-11 -0.014014)
(-0.225413 -8.66203e-11 -0.0175951)
(-0.223952 -8.86713e-11 -0.0211077)
(-0.22235 -9.11081e-11 -0.0245478)
(-0.22061 -9.28248e-11 -0.0279113)
(-0.218736 -9.32817e-11 -0.0311946)
(-0.216732 -9.22473e-11 -0.0343941)
(-0.214601 -8.98502e-11 -0.0375066)
(-0.212348 -8.59363e-11 -0.040529)
(-0.209976 -8.11999e-11 -0.0434586)
(-0.20749 -7.53066e-11 -0.0462928)
(-0.204894 -6.90279e-11 -0.0490293)
(-0.202192 -6.23896e-11 -0.051666)
(-0.199389 -5.56229e-11 -0.0542012)
(-0.19649 -4.86764e-11 -0.0566333)
(-0.193498 -4.17816e-11 -0.0589609)
(-0.19042 -3.44756e-11 -0.061183)
(-0.187258 -2.6707e-11 -0.0632987)
(-0.184018 -1.899e-11 -0.0653074)
(-0.180706 -1.0399e-11 -0.0672087)
(-0.177325 -1.44824e-12 -0.0690025)
(-0.17388 7.75949e-12 -0.0706887)
(-0.170376 1.76355e-11 -0.0722677)
(-0.166818 2.81799e-11 -0.07374)
(-0.16321 3.87757e-11 -0.075106)
(-0.159557 4.96799e-11 -0.0763668)
(-0.155864 6.0687e-11 -0.0775232)
(-0.152136 7.15913e-11 -0.0785765)
(-0.148376 8.24956e-11 -0.079528)
(-0.14459 9.3143e-11 -0.0803792)
(-0.140781 1.03585e-10 -0.0811317)
(-0.136954 1.14181e-10 -0.0817873)
(-0.133113 1.24263e-10 -0.0823478)
(-0.129263 1.345e-10 -0.0828152)
(-0.125407 1.44686e-10 -0.0831917)
(-0.121549 1.5482e-10 -0.0834794)
(-0.117693 1.65212e-10 -0.0836805)
(-0.113844 1.75707e-10 -0.0837974)
(-0.110003 1.861e-10 -0.0838325)
(-0.106176 1.96955e-10 -0.0837883)
(-0.102365 2.07863e-10 -0.0836671)
(-0.0985736 2.18925e-10 -0.0834715)
(-0.0948052 2.29988e-10 -0.0832041)
(-0.0910627 2.4136e-10 -0.0828674)
(-0.087349 2.52835e-10 -0.0824639)
(-0.083667 2.64362e-10 -0.0819962)
(-0.0800194 2.75838e-10 -0.0814669)
(-0.0764088 2.87727e-10 -0.0808784)
(-0.0728376 2.99462e-10 -0.0802331)
(-0.0693083 3.113e-10 -0.0795336)
(-0.065823 3.23396e-10 -0.0787822)
(-0.062384 3.35545e-10 -0.0779812)
(-0.0589933 3.47797e-10 -0.0771329)
(-0.0556529 3.60101e-10 -0.0762394)
(-0.0523645 3.72509e-10 -0.0753028)
(-0.0491299 3.85432e-10 -0.0743253)
(-0.0459509 3.98099e-10 -0.0733086)
(-0.0428289 4.11127e-10 -0.0722546)
(-0.0397655 4.24053e-10 -0.071165)
(-0.036762 4.37083e-10 -0.0700415)
(-0.0338198 4.50269e-10 -0.0688855)
(-0.0309401 4.63455e-10 -0.0676984)
(-0.0281241 4.76591e-10 -0.0664816)
(-0.0253728 4.89625e-10 -0.0652361)
(-0.0226874 5.02558e-10 -0.0639631)
(-0.0200689 5.15131e-10 -0.0626634)
(-0.017518 5.27345e-10 -0.0613378)
(-0.0150358 5.38994e-10 -0.0599872)
(-0.0126231 5.49975e-10 -0.0586119)
(-0.0102805 5.60186e-10 -0.0572126)
(-0.00800891 5.69265e-10 -0.0557897)
(-0.00580893 5.768e-10 -0.0543433)
(-0.00368122 5.83668e-10 -0.0528739)
(-0.00162639 5.89146e-10 -0.0513814)
(0.000355034 5.9272e-10 -0.049866)
(0.0022625 5.94492e-10 -0.0483278)
(0.00409553 5.94205e-10 -0.0467667)
(0.00585371 5.9196e-10 -0.0451828)
(0.00753661 5.87501e-10 -0.0435761)
(0.00914389 5.80311e-10 -0.0419464)
(0.0106752 5.70544e-10 -0.040294)
(0.0121303 5.58355e-10 -0.0386187)
(0.013509 5.43743e-10 -0.0369209)
(0.0148111 5.26809e-10 -0.0352007)
(0.0160365 5.0776e-10 -0.0334585)
(0.017185 4.86338e-10 -0.0316947)
(0.0182568 4.63004e-10 -0.02991)
(0.0192519 4.3843e-10 -0.0281053)
(0.0201705 4.11891e-10 -0.0262815)
(0.0210127 3.83956e-10 -0.02444)
(0.0217789 3.54984e-10 -0.0225821)
(0.0224695 3.24768e-10 -0.0207097)
(0.0230851 2.9269e-10 -0.0188248)
(0.0236261 2.59007e-10 -0.0169298)
(0.0240933 2.23099e-10 -0.0150273)
(0.0244876 1.84192e-10 -0.0131204)
(0.0248099 1.4141e-10 -0.0112124)
(0.0250612 9.4234e-11 -0.00930705)
(0.0252428 4.12197e-11 -0.00740839)
(0.025356 -1.86666e-11 -0.00552091)
(0.0254021 -8.66652e-11 -0.00364941)
(0.0253829 -1.64068e-10 -0.0017991)
(0.0252999 -2.52375e-10 2.45083e-05)
(0.0251552 -3.5257e-10 0.00181551)
(0.0249505 -4.661e-10 0.0035677)
(0.0246881 -5.93074e-10 0.00527454)
(0.0243701 -7.34373e-10 0.00692926)
(0.0239989 -8.89071e-10 0.0085248)
(0.0235768 -1.05635e-09 0.0100539)
(0.0231062 -1.23424e-09 0.0115093)
(0.0225899 -1.42115e-09 0.0128833)
(0.0220303 -1.6145e-09 0.0141685)
(0.0214301 -1.81129e-09 0.0153572)
(0.0207919 -2.0076e-09 0.0164422)
(0.0201182 -2.19908e-09 0.017416)
(0.0194118 -2.38004e-09 0.0182715)
(0.018675 -2.54614e-09 0.0190021)
(0.0179103 -2.69436e-09 0.0196013)
(0.0171199 -2.82523e-09 0.0200633)
(0.0163061 -2.94347e-09 0.0203828)
(0.0154709 -3.0556e-09 0.0205549)
(0.0146159 -3.16667e-09 0.0205758)
(0.0137429 -3.28204e-09 0.0204423)
(0.0128533 -3.41214e-09 0.0201519)
(0.0119484 -3.5762e-09 0.0197031)
(0.0110291 -3.79796e-09 0.0190952)
(0.0100964 -4.08071e-09 0.0183281)
(0.00915094 -4.4259e-09 0.0174025)
(0.00819353 -4.91627e-09 0.0163191)
(0.00722484 -5.76872e-09 0.0150784)
(0.00624571 -7.19654e-09 0.0136796)
(0.00525735 -9.29041e-09 0.0121183)
(0.00426171 -1.2376e-08 0.0103826)
(0.00326157 -1.73623e-08 0.00844272)
(0.00226538 -2.53839e-08 0.00622333)
(0.00130778 -3.35918e-08 0.00350038)
(0.000479382 -7.86225e-08 -0.000285769)
(-0.00477341 -8.63629e-08 0.0825408)
(-0.011751 -3.56224e-08 0.094853)
(-0.0193675 -2.93229e-08 0.101997)
(-0.0270005 -1.89781e-08 0.107288)
(-0.034477 -1.18887e-08 0.111636)
(-0.0418012 -8.29223e-09 0.115367)
(-0.0489699 -5.93741e-09 0.118628)
(-0.0559858 -4.05602e-09 0.12149)
(-0.0628531 -2.66033e-09 0.123994)
(-0.0695767 -1.53289e-09 0.126162)
(-0.0761621 -3.2707e-10 0.12801)
(-0.0826142 9.79594e-10 0.12955)
(-0.088938 2.06116e-09 0.130789)
(-0.0951375 2.52543e-09 0.131737)
(-0.101216 2.21853e-09 0.132401)
(-0.107177 1.35933e-09 0.132789)
(-0.113021 3.95371e-10 0.132909)
(-0.118751 -2.90713e-10 0.13277)
(-0.124366 -5.62814e-10 0.132381)
(-0.129867 -5.07651e-10 0.13175)
(-0.135253 -2.95751e-10 0.130888)
(-0.140522 -6.92916e-11 0.129802)
(-0.145674 9.16127e-11 0.128502)
(-0.150705 1.54691e-10 0.126997)
(-0.155614 1.22581e-10 0.125295)
(-0.160398 3.10193e-11 0.123407)
(-0.165054 -6.21265e-11 0.121339)
(-0.169579 -1.07391e-10 0.119101)
(-0.173971 -9.06251e-11 0.116701)
(-0.178226 -3.56676e-11 0.114146)
(-0.182341 1.73835e-11 0.111444)
(-0.186313 3.84206e-11 0.108604)
(-0.190139 1.91615e-11 0.105631)
(-0.193817 -3.09719e-11 0.102534)
(-0.197343 -9.53549e-11 0.0993198)
(-0.200714 -1.586e-10 0.095995)
(-0.203929 -2.09181e-10 0.0925667)
(-0.206985 -2.38738e-10 0.0890416)
(-0.20988 -2.43158e-10 0.0854264)
(-0.212611 -2.22802e-10 0.0817278)
(-0.215177 -1.83565e-10 0.0779523)
(-0.217577 -1.35687e-10 0.0741067)
(-0.219808 -9.10257e-11 0.0701973)
(-0.22187 -6.03087e-11 0.0662306)
(-0.223762 -4.94504e-11 0.0622133)
(-0.225482 -5.88864e-11 0.0581517)
(-0.22703 -8.33423e-11 0.0540523)
(-0.228406 -1.15178e-10 0.0499215)
(-0.229609 -1.46137e-10 0.0457658)
(-0.23064 -1.69817e-10 0.0415915)
(-0.231498 -1.83722e-10 0.037405)
(-0.232185 -1.87802e-10 0.0332126)
(-0.232701 -1.84295e-10 0.0290205)
(-0.233046 -1.76058e-10 0.0248349)
(-0.233222 -1.65351e-10 0.020662)
(-0.23323 -1.5354e-10 0.0165078)
(-0.233071 -1.40983e-10 0.0123782)
(-0.232748 -1.2817e-10 0.00827908)
(-0.232262 -1.15254e-10 0.00421612)
(-0.231615 -1.02725e-10 0.000194903)
(-0.23081 -9.13023e-11 -0.00377913)
(-0.229848 -8.14483e-11 -0.00770068)
(-0.228734 -7.43715e-11 -0.0115646)
(-0.227469 -6.99433e-11 -0.0153661)
(-0.226057 -6.79576e-11 -0.0191002)
(-0.2245 -6.75919e-11 -0.0227626)
(-0.222803 -6.78432e-11 -0.0263488)
(-0.220969 -6.76832e-11 -0.0298547)
(-0.219001 -6.65208e-11 -0.0332766)
(-0.216903 -6.38674e-11 -0.0366106)
(-0.214679 -5.96718e-11 -0.0398535)
(-0.212334 -5.3934e-11 -0.043002)
(-0.209871 -4.71169e-11 -0.0460533)
(-0.207295 -3.92717e-11 -0.0490047)
(-0.20461 -3.08099e-11 -0.0518537)
(-0.201821 -2.21685e-11 -0.0545984)
(-0.198932 -1.32702e-11 -0.0572367)
(-0.195948 -4.39796e-12 -0.059767)
(-0.192874 4.44838e-12 -0.062188)
(-0.189714 1.3423e-11 -0.0644986)
(-0.186473 2.24746e-11 -0.0666977)
(-0.183156 3.18087e-11 -0.0687849)
(-0.179767 4.1554e-11 -0.0707596)
(-0.176312 5.15562e-11 -0.0726218)
(-0.172796 6.19952e-11 -0.0743715)
(-0.169223 7.28967e-11 -0.0760088)
(-0.165597 8.40553e-11 -0.0775345)
(-0.161925 9.54709e-11 -0.078949)
(-0.158209 1.07041e-10 -0.0802532)
(-0.154456 1.18508e-10 -0.0814484)
(-0.15067 1.30129e-10 -0.0825355)
(-0.146855 1.41288e-10 -0.0835162)
(-0.143016 1.52241e-10 -0.0843919)
(-0.139157 1.63143e-10 -0.0851643)
(-0.135282 1.73583e-10 -0.0858353)
(-0.131397 1.83868e-10 -0.0864069)
(-0.127504 1.93948e-10 -0.0868811)
(-0.123608 2.03772e-10 -0.0872601)
(-0.119713 2.13647e-10 -0.0875462)
(-0.115823 2.23266e-10 -0.0877418)
(-0.111942 2.33193e-10 -0.0878493)
(-0.108073 2.43018e-10 -0.0878712)
(-0.104219 2.531e-10 -0.0878101)
(-0.100384 2.63029e-10 -0.0876686)
(-0.0965722 2.73009e-10 -0.0874494)
(-0.0927854 2.83145e-10 -0.087155)
(-0.0890272 2.9328e-10 -0.0867882)
(-0.0853004 3.03571e-10 -0.0863516)
(-0.0816079 3.13656e-10 -0.0858479)
(-0.0779523 3.24e-10 -0.0852797)
(-0.0743362 3.34241e-10 -0.0846497)
(-0.0707621 3.44534e-10 -0.0839605)
(-0.0672322 3.54776e-10 -0.0832146)
(-0.0637487 3.65019e-10 -0.0824145)
(-0.0603139 3.75571e-10 -0.0815626)
(-0.0569297 3.86021e-10 -0.0806613)
(-0.053598 3.96472e-10 -0.0797129)
(-0.0503206 4.07027e-10 -0.0787195)
(-0.0470992 4.17839e-10 -0.0776834)
(-0.0439354 4.28601e-10 -0.0766064)
(-0.0408306 4.39363e-10 -0.0754906)
(-0.0377865 4.50435e-10 -0.0743377)
(-0.0348042 4.612e-10 -0.0731495)
(-0.0318851 4.72325e-10 -0.0719275)
(-0.0290302 4.83194e-10 -0.0706732)
(-0.0262409 4.93858e-10 -0.0693879)
(-0.023518 5.04523e-10 -0.0680729)
(-0.0208626 5.14983e-10 -0.0667292)
(-0.0182756 5.25187e-10 -0.065358)
(-0.0157579 5.34723e-10 -0.06396)
(-0.0133102 5.43848e-10 -0.062536)
(-0.0109334 5.52151e-10 -0.0610866)
(-0.00862804 5.59425e-10 -0.0596124)
(-0.00639491 5.65466e-10 -0.0581139)
(-0.00423457 5.70529e-10 -0.0565913)
(-0.00214761 5.74254e-10 -0.0550449)
(-0.000134551 5.76488e-10 -0.053475)
(0.00180412 5.76817e-10 -0.0518817)
(0.00366796 5.75344e-10 -0.050265)
(0.00545656 5.7176e-10 -0.0486251)
(0.00716956 5.66631e-10 -0.0469619)
(0.00880663 5.58875e-10 -0.0452755)
(0.0103675 5.48337e-10 -0.0435659)
(0.0118519 5.35687e-10 -0.0418333)
(0.0132597 5.20562e-10 -0.0400776)
(0.0145907 5.0322e-10 -0.0382992)
(0.0158449 4.84021e-10 -0.0364983)
(0.0170221 4.62758e-10 -0.0346754)
(0.0181225 4.39534e-10 -0.032831)
(0.0191461 4.14708e-10 -0.0309657)
(0.0200932 3.88692e-10 -0.0290806)
(0.0209638 3.61382e-10 -0.0271767)
(0.0217584 3.32727e-10 -0.0252553)
(0.0224773 3.03345e-10 -0.0233181)
(0.0231211 2.72513e-10 -0.0213669)
(0.0236903 2.40283e-10 -0.0194038)
(0.0241856 2.05778e-10 -0.0174314)
(0.0246079 1.68276e-10 -0.0154524)
(0.0249579 1.27003e-10 -0.0134699)
(0.0252368 8.12351e-11 -0.0114874)
(0.0254457 2.94252e-11 -0.00950885)
(0.0255858 -2.9718e-11 -0.00753837)
(0.0256586 -9.77438e-11 -0.00558056)
(0.0256655 -1.75222e-10 -0.00364039)
(0.0256083 -2.64167e-10 -0.00172317)
(0.0254886 -3.65563e-10 0.000165418)
(0.0253084 -4.80084e-10 0.00201936)
(0.0250696 -6.08611e-10 0.00383233)
(0.0247745 -7.51302e-10 0.00559766)
(0.0244252 -9.06975e-10 0.00730847)
(0.0240241 -1.0744e-09 0.00895762)
(0.0235736 -1.25155e-09 0.0105378)
(0.0230761 -1.43545e-09 0.0120415)
(0.0225343 -1.62377e-09 0.0134612)
(0.0219508 -1.81254e-09 0.0147893)
(0.0213281 -1.99917e-09 0.0160183)
(0.020669 -2.1789e-09 0.0171407)
(0.0199759 -2.34844e-09 0.0181492)
(0.0192515 -2.5027e-09 0.0190369)
(0.0184983 -2.63847e-09 0.0197971)
(0.0177187 -2.75442e-09 0.0204234)
(0.0169151 -2.85237e-09 0.0209102)
(0.0160896 -2.93812e-09 0.0212522)
(0.0152443 -3.01982e-09 0.021445)
(0.0143812 -3.10375e-09 0.0214847)
(0.0135019 -3.19633e-09 0.0213684)
(0.012608 -3.30849e-09 0.0210938)
(0.0117009 -3.46223e-09 0.0206596)
(0.0107819 -3.68122e-09 0.0200652)
(0.00985198 -3.9744e-09 0.0193107)
(0.00891227 -4.34396e-09 0.0183968)
(0.00796371 -4.87075e-09 0.0173243)
(0.00700731 -5.76592e-09 0.0160937)
(0.00604424 -7.2406e-09 0.0147038)
(0.00507605 -9.38379e-09 0.0131496)
(0.00410502 -1.25138e-08 0.0114182)
(0.00313427 -1.75043e-08 0.00947787)
(0.00217215 -2.54315e-08 0.00724852)
(0.00125224 -3.31501e-08 0.00449139)
(0.000460597 -6.9481e-08 0.000555058)
(-0.00477319 -8.63627e-08 0.0825408)
(-0.0117509 -3.56221e-08 0.0948528)
(-0.0193675 -2.93226e-08 0.101997)
(-0.0270004 -1.8978e-08 0.107288)
(-0.034477 -1.18886e-08 0.111636)
(-0.0418012 -8.29217e-09 0.115367)
(-0.0489699 -5.93736e-09 0.118628)
(-0.0559858 -4.05598e-09 0.12149)
(-0.062853 -2.66031e-09 0.123994)
(-0.0695767 -1.53288e-09 0.126162)
(-0.076162 -3.27068e-10 0.12801)
(-0.0826142 9.79585e-10 0.12955)
(-0.0889379 2.06115e-09 0.130789)
(-0.0951374 2.52541e-09 0.131737)
(-0.101216 2.21851e-09 0.132401)
(-0.107177 1.35932e-09 0.132789)
(-0.113021 3.95368e-10 0.132909)
(-0.118751 -2.90711e-10 0.13277)
(-0.124366 -5.6281e-10 0.132381)
(-0.129867 -5.07648e-10 0.13175)
(-0.135253 -2.95749e-10 0.130888)
(-0.140522 -6.92912e-11 0.129802)
(-0.145674 9.16122e-11 0.128502)
(-0.150705 1.5469e-10 0.126997)
(-0.155614 1.2258e-10 0.125295)
(-0.160398 3.10192e-11 0.123407)
(-0.165054 -6.21262e-11 0.121339)
(-0.169579 -1.0739e-10 0.119101)
(-0.173971 -9.06247e-11 0.116701)
(-0.178226 -3.56674e-11 0.114146)
(-0.182341 1.73834e-11 0.111444)
(-0.186313 3.84204e-11 0.108604)
(-0.190139 1.91614e-11 0.105631)
(-0.193817 -3.09718e-11 0.102534)
(-0.197343 -9.53545e-11 0.0993198)
(-0.200714 -1.58599e-10 0.095995)
(-0.203929 -2.0918e-10 0.0925667)
(-0.206985 -2.38737e-10 0.0890416)
(-0.20988 -2.43157e-10 0.0854264)
(-0.212611 -2.22802e-10 0.0817278)
(-0.215177 -1.83565e-10 0.0779524)
(-0.217577 -1.35686e-10 0.0741067)
(-0.219808 -9.10254e-11 0.0701973)
(-0.22187 -6.03085e-11 0.0662306)
(-0.223761 -4.94503e-11 0.0622133)
(-0.225482 -5.88863e-11 0.0581517)
(-0.22703 -8.33421e-11 0.0540523)
(-0.228406 -1.15178e-10 0.0499215)
(-0.229609 -1.46137e-10 0.0457658)
(-0.23064 -1.69816e-10 0.0415915)
(-0.231498 -1.83721e-10 0.037405)
(-0.232185 -1.87801e-10 0.0332126)
(-0.232701 -1.84295e-10 0.0290205)
(-0.233046 -1.76057e-10 0.0248349)
(-0.233222 -1.65351e-10 0.020662)
(-0.23323 -1.53539e-10 0.0165078)
(-0.233071 -1.40983e-10 0.0123782)
(-0.232748 -1.2817e-10 0.00827909)
(-0.232262 -1.15254e-10 0.00421613)
(-0.231615 -1.02725e-10 0.000194919)
(-0.23081 -9.13021e-11 -0.00377911)
(-0.229849 -8.14482e-11 -0.00770067)
(-0.228734 -7.43714e-11 -0.0115646)
(-0.227469 -6.99431e-11 -0.0153661)
(-0.226057 -6.79575e-11 -0.0191002)
(-0.2245 -6.75917e-11 -0.0227626)
(-0.222803 -6.7843e-11 -0.0263488)
(-0.220969 -6.76831e-11 -0.0298547)
(-0.219001 -6.65206e-11 -0.0332765)
(-0.216903 -6.38673e-11 -0.0366106)
(-0.214679 -5.96717e-11 -0.0398534)
(-0.212334 -5.39339e-11 -0.043002)
(-0.209871 -4.71168e-11 -0.0460533)
(-0.207295 -3.92716e-11 -0.0490046)
(-0.20461 -3.08098e-11 -0.0518537)
(-0.201821 -2.21684e-11 -0.0545984)
(-0.198932 -1.32702e-11 -0.0572367)
(-0.195948 -4.39795e-12 -0.059767)
(-0.192874 4.44837e-12 -0.062188)
(-0.189714 1.3423e-11 -0.0644985)
(-0.186473 2.24745e-11 -0.0666977)
(-0.183156 3.18087e-11 -0.0687849)
(-0.179767 4.15539e-11 -0.0707596)
(-0.176312 5.1556e-11 -0.0726218)
(-0.172796 6.1995e-11 -0.0743714)
(-0.169223 7.28966e-11 -0.0760088)
(-0.165597 8.40551e-11 -0.0775344)
(-0.161925 9.54706e-11 -0.0789489)
(-0.158209 1.0704e-10 -0.0802532)
(-0.154456 1.18507e-10 -0.0814483)
(-0.15067 1.30129e-10 -0.0825355)
(-0.146855 1.41287e-10 -0.0835162)
(-0.143016 1.52241e-10 -0.0843919)
(-0.139157 1.63143e-10 -0.0851643)
(-0.135282 1.73582e-10 -0.0858353)
(-0.131397 1.83868e-10 -0.0864069)
(-0.127504 1.93948e-10 -0.0868811)
(-0.123608 2.03771e-10 -0.0872601)
(-0.119713 2.13647e-10 -0.0875462)
(-0.115823 2.23265e-10 -0.0877418)
(-0.111942 2.33192e-10 -0.0878493)
(-0.108073 2.43017e-10 -0.0878712)
(-0.104219 2.531e-10 -0.0878101)
(-0.100384 2.63028e-10 -0.0876686)
(-0.0965722 2.73009e-10 -0.0874493)
(-0.0927855 2.83144e-10 -0.087155)
(-0.0890272 2.9328e-10 -0.0867881)
(-0.0853005 3.0357e-10 -0.0863516)
(-0.0816079 3.13656e-10 -0.0858479)
(-0.0779524 3.23999e-10 -0.0852797)
(-0.0743362 3.3424e-10 -0.0846497)
(-0.0707621 3.44533e-10 -0.0839605)
(-0.0672322 3.54775e-10 -0.0832146)
(-0.0637488 3.65018e-10 -0.0824145)
(-0.060314 3.7557e-10 -0.0815626)
(-0.0569297 3.8602e-10 -0.0806613)
(-0.053598 3.96471e-10 -0.0797129)
(-0.0503206 4.07025e-10 -0.0787195)
(-0.0470992 4.17838e-10 -0.0776834)
(-0.0439354 4.28599e-10 -0.0766064)
(-0.0408307 4.39362e-10 -0.0754906)
(-0.0377865 4.50434e-10 -0.0743377)
(-0.0348042 4.61198e-10 -0.0731495)
(-0.0318851 4.72324e-10 -0.0719275)
(-0.0290303 4.83192e-10 -0.0706731)
(-0.0262409 4.93857e-10 -0.0693879)
(-0.023518 5.04522e-10 -0.0680729)
(-0.0208627 5.14982e-10 -0.0667292)
(-0.0182757 5.25185e-10 -0.065358)
(-0.0157579 5.34721e-10 -0.06396)
(-0.0133102 5.43846e-10 -0.062536)
(-0.0109334 5.52149e-10 -0.0610866)
(-0.00862807 5.59424e-10 -0.0596124)
(-0.00639493 5.65464e-10 -0.0581139)
(-0.0042346 5.70527e-10 -0.0565913)
(-0.00214764 5.74252e-10 -0.0550449)
(-0.000134578 5.76486e-10 -0.053475)
(0.0018041 5.76815e-10 -0.0518817)
(0.00366793 5.75342e-10 -0.050265)
(0.00545653 5.71758e-10 -0.0486251)
(0.00716953 5.66629e-10 -0.0469619)
(0.0088066 5.58873e-10 -0.0452755)
(0.0103675 5.48336e-10 -0.0435659)
(0.0118519 5.35685e-10 -0.0418333)
(0.0132597 5.20561e-10 -0.0400776)
(0.0145907 5.03219e-10 -0.0382992)
(0.0158449 4.8402e-10 -0.0364983)
(0.0170221 4.62757e-10 -0.0346754)
(0.0181225 4.39532e-10 -0.032831)
(0.0191461 4.14706e-10 -0.0309657)
(0.0200931 3.8869e-10 -0.0290806)
(0.0209638 3.61381e-10 -0.0271767)
(0.0217584 3.32726e-10 -0.0252553)
(0.0224773 3.03344e-10 -0.0233181)
(0.0231211 2.72512e-10 -0.0213669)
(0.0236903 2.40282e-10 -0.0194038)
(0.0241856 2.05778e-10 -0.0174314)
(0.0246078 1.68276e-10 -0.0154524)
(0.0249579 1.27002e-10 -0.0134699)
(0.0252368 8.12349e-11 -0.0114874)
(0.0254457 2.94251e-11 -0.00950884)
(0.0255858 -2.97179e-11 -0.00753836)
(0.0256586 -9.77435e-11 -0.00558055)
(0.0256655 -1.75222e-10 -0.00364037)
(0.0256082 -2.64167e-10 -0.00172316)
(0.0254886 -3.65562e-10 0.000165435)
(0.0253083 -4.80083e-10 0.00201938)
(0.0250696 -6.08609e-10 0.00383235)
(0.0247745 -7.513e-10 0.00559768)
(0.0244252 -9.06973e-10 0.00730849)
(0.024024 -1.07439e-09 0.00895764)
(0.0235735 -1.25155e-09 0.0105378)
(0.0230761 -1.43545e-09 0.0120415)
(0.0225343 -1.62377e-09 0.0134612)
(0.0219508 -1.81254e-09 0.0147893)
(0.0213281 -1.99916e-09 0.0160183)
(0.0206689 -2.1789e-09 0.0171407)
(0.0199759 -2.34843e-09 0.0181493)
(0.0192515 -2.50269e-09 0.0190369)
(0.0184983 -2.63847e-09 0.0197971)
(0.0177187 -2.75441e-09 0.0204234)
(0.016915 -2.85237e-09 0.0209102)
(0.0160896 -2.93811e-09 0.0212522)
(0.0152443 -3.01981e-09 0.021445)
(0.0143811 -3.10374e-09 0.0214848)
(0.0135018 -3.19632e-09 0.0213684)
(0.0126079 -3.30848e-09 0.0210938)
(0.0117009 -3.46223e-09 0.0206596)
(0.0107818 -3.68121e-09 0.0200652)
(0.00985194 -3.97438e-09 0.0193107)
(0.00891224 -4.34395e-09 0.0183968)
(0.00796367 -4.87074e-09 0.0173243)
(0.00700727 -5.7659e-09 0.0160937)
(0.0060442 -7.24057e-09 0.0147037)
(0.00507601 -9.38375e-09 0.0131495)
(0.00410497 -1.25138e-08 0.0114181)
(0.0031342 -1.75042e-08 0.00947781)
(0.00217207 -2.54314e-08 0.00724842)
(0.00125212 -3.31502e-08 0.00449126)
(0.000460366 -6.94811e-08 0.000554922)
(-0.00480031 -4.53116e-08 0.0907053)
(-0.0118943 -2.58474e-08 0.103087)
(-0.0196151 -2.56156e-08 0.110137)
(-0.0273706 -1.66482e-08 0.115289)
(-0.0349804 -1.03877e-08 0.119483)
(-0.0424479 -7.7225e-09 0.123055)
(-0.0497671 -6.34662e-09 0.126156)
(-0.0569386 -5.44653e-09 0.128861)
(-0.0639644 -4.82497e-09 0.131211)
(-0.0708474 -4.14083e-09 0.133231)
(-0.0775913 -2.98828e-09 0.134935)
(-0.0841996 -1.29218e-09 0.136335)
(-0.0906755 5.70689e-10 0.137439)
(-0.097022 1.95786e-09 0.138255)
(-0.103242 2.36209e-09 0.138789)
(-0.109336 1.78814e-09 0.13905)
(-0.115307 7.38266e-10 0.139045)
(-0.121155 -1.84695e-10 0.138782)
(-0.12688 -6.44179e-10 0.138268)
(-0.132482 -6.45139e-10 0.137512)
(-0.13796 -3.83405e-10 0.136523)
(-0.143313 -6.3519e-11 0.13531)
(-0.148539 1.81556e-10 0.133881)
(-0.153636 2.92637e-10 0.132244)
(-0.158602 2.64441e-10 0.130409)
(-0.163434 1.37435e-10 0.128383)
(-0.168131 -1.4774e-11 0.126176)
(-0.172688 -1.18851e-10 0.123795)
(-0.177104 -1.40426e-10 0.121249)
(-0.181376 -9.4999e-11 0.118545)
(-0.185501 -2.84244e-11 0.115691)
(-0.189476 1.76169e-11 0.112696)
(-0.193298 2.29062e-11 0.109565)
(-0.196965 -9.97979e-12 0.106308)
(-0.200474 -6.64514e-11 0.10293)
(-0.203824 -1.30764e-10 0.0994389)
(-0.20701 -1.89874e-10 0.0958421)
(-0.210033 -2.33521e-10 0.0921463)
(-0.212888 -2.54247e-10 0.0883583)
(-0.215576 -2.48582e-10 0.0844849)
(-0.218094 -2.18714e-10 0.0805331)
(-0.220441 -1.72928e-10 0.0765095)
(-0.222615 -1.2308e-10 0.0724209)
(-0.224616 -8.23384e-11 0.0682739)
(-0.226442 -5.94461e-11 0.0640754)
(-0.228094 -5.79503e-11 0.059832)
(-0.22957 -7.54577e-11 0.0555503)
(-0.230871 -1.04278e-10 0.051237)
(-0.231996 -1.36131e-10 0.0468988)
(-0.232946 -1.63174e-10 0.0425422)
(-0.233722 -1.81215e-10 0.0381739)
(-0.234323 -1.89177e-10 0.0338003)
(-0.23475 -1.88191e-10 0.0294279)
(-0.235006 -1.81291e-10 0.0250632)
(-0.23509 -1.70587e-10 0.0207124)
(-0.235004 -1.58032e-10 0.0163819)
(-0.234751 -1.44295e-10 0.0120778)
(-0.234331 -1.2953e-10 0.00780609)
(-0.233748 -1.14509e-10 0.00357274)
(-0.233002 -9.93349e-11 -0.000616478)
(-0.232098 -8.46495e-11 -0.00475591)
(-0.231036 -7.13273e-11 -0.00884008)
(-0.229821 -6.06019e-11 -0.0128637)
(-0.228455 -5.29358e-11 -0.0168216)
(-0.226942 -4.78406e-11 -0.0207089)
(-0.225284 -4.45193e-11 -0.0245208)
(-0.223485 -4.23805e-11 -0.0282529)
(-0.22155 -4.01133e-11 -0.0319009)
(-0.219481 -3.70496e-11 -0.0354607)
(-0.217283 -3.26752e-11 -0.0389287)
(-0.214959 -2.66304e-11 -0.0423011)
(-0.212515 -1.91724e-11 -0.0455749)
(-0.209954 -1.04039e-11 -0.0487468)
(-0.207281 -5.8194e-13 -0.0518142)
(-0.2045 9.80505e-12 -0.0547746)
(-0.201616 2.05772e-11 -0.0576258)
(-0.198634 3.15547e-11 -0.0603657)
(-0.195557 4.25061e-11 -0.0629927)
(-0.192393 5.33031e-11 -0.0655054)
(-0.189144 6.39714e-11 -0.0679025)
(-0.185816 7.4511e-11 -0.0701832)
(-0.182413 8.52303e-11 -0.0723468)
(-0.178942 9.6155e-11 -0.0743929)
(-0.175406 1.07234e-10 -0.0763213)
(-0.17181 1.18724e-10 -0.078132)
(-0.16816 1.30445e-10 -0.0798254)
(-0.16446 1.42166e-10 -0.081402)
(-0.160715 1.54324e-10 -0.0828625)
(-0.156931 1.66482e-10 -0.0842077)
(-0.15311 1.7846e-10 -0.0854389)
(-0.14926 1.90489e-10 -0.0865573)
(-0.145383 2.01954e-10 -0.0875644)
(-0.141484 2.13213e-10 -0.0884619)
(-0.137569 2.24061e-10 -0.0892514)
(-0.13364 2.34601e-10 -0.089935)
(-0.129704 2.44833e-10 -0.0905148)
(-0.125763 2.545e-10 -0.0909928)
(-0.121822 2.64013e-10 -0.0913714)
(-0.117884 2.73372e-10 -0.091653)
(-0.113955 2.82628e-10 -0.0918402)
(-0.110036 2.9168e-10 -0.0919353)
(-0.106133 3.00886e-10 -0.0919412)
(-0.102248 3.09784e-10 -0.0918604)
(-0.0983856 3.18786e-10 -0.0916957)
(-0.094548 3.27736e-10 -0.0914498)
(-0.0907387 3.36688e-10 -0.0911256)
(-0.0869607 3.45588e-10 -0.0907258)
(-0.083217 3.54437e-10 -0.0902533)
(-0.0795103 3.63236e-10 -0.0897108)
(-0.0758433 3.72138e-10 -0.0891011)
(-0.0722184 3.80732e-10 -0.0884269)
(-0.0686381 3.8943e-10 -0.087691)
(-0.0651047 3.98077e-10 -0.0868961)
(-0.0616203 4.06519e-10 -0.0860447)
(-0.0581871 4.15218e-10 -0.0851393)
(-0.0548069 4.23816e-10 -0.0841826)
(-0.0514817 4.32414e-10 -0.0831768)
(-0.0482131 4.41167e-10 -0.0821242)
(-0.0450028 4.49818e-10 -0.0810272)
(-0.0418524 4.58367e-10 -0.0798878)
(-0.0387632 4.67071e-10 -0.0787079)
(-0.0357368 4.75827e-10 -0.0774896)
(-0.0327743 4.84533e-10 -0.0762346)
(-0.0298769 4.93239e-10 -0.0749445)
(-0.0270459 5.01843e-10 -0.073621)
(-0.0242821 5.10293e-10 -0.0722654)
(-0.0215867 5.18436e-10 -0.070879)
(-0.0189605 5.26271e-10 -0.069463)
(-0.0164043 5.34106e-10 -0.0680185)
(-0.0139191 5.41017e-10 -0.0665465)
(-0.0115054 5.47105e-10 -0.0650476)
(-0.00916405 5.52627e-10 -0.0635226)
(-0.00689563 5.56813e-10 -0.0619722)
(-0.00470074 5.60124e-10 -0.0603967)
(-0.00257991 5.62098e-10 -0.0587966)
(-0.000533655 5.62889e-10 -0.0571723)
(0.0014376 5.62085e-10 -0.0555238)
(0.00333339 5.59016e-10 -0.0538516)
(0.0051534 5.54197e-10 -0.0521555)
(0.00689727 5.47884e-10 -0.0504358)
(0.00856471 5.39306e-10 -0.0486926)
(0.0101555 5.28358e-10 -0.0469259)
(0.0116694 5.14732e-10 -0.0451357)
(0.0131063 4.99147e-10 -0.0433223)
(0.014466 4.81603e-10 -0.0414858)
(0.0157486 4.61739e-10 -0.0396265)
(0.0169539 4.4007e-10 -0.0377447)
(0.018082 4.16954e-10 -0.0358409)
(0.0191332 3.91825e-10 -0.0339157)
(0.0201074 3.66125e-10 -0.0319699)
(0.0210051 3.39029e-10 -0.0300045)
(0.0218264 3.10692e-10 -0.0280206)
(0.0225718 2.81987e-10 -0.0260197)
(0.0232418 2.51783e-10 -0.0240035)
(0.023837 2.20232e-10 -0.0219739)
(0.024358 1.86975e-10 -0.0199332)
(0.0248056 1.50928e-10 -0.017884)
(0.0251807 1.11317e-10 -0.0158291)
(0.0254843 6.66468e-11 -0.0137719)
(0.0257174 1.58855e-11 -0.0117159)
(0.0258813 -4.2464e-11 -0.00966505)
(0.0259774 -1.09899e-10 -0.00762376)
(0.026007 -1.87246e-10 -0.00559674)
(0.0259717 -2.76366e-10 -0.00358906)
(0.0258734 -3.78241e-10 -0.00160618)
(0.0257137 -4.93752e-10 0.000346105)
(0.0254947 -6.23315e-10 0.00226165)
(0.0252183 -7.66728e-10 0.004134)
(0.0248869 -9.23169e-10 0.00595641)
(0.0245026 -1.09063e-09 0.00772185)
(0.0240678 -1.26705e-09 0.00942311)
(0.023585 -1.44913e-09 0.0110528)
(0.0230567 -1.63284e-09 0.0126033)
(0.0224855 -1.81509e-09 0.0140672)
(0.021874 -1.99148e-09 0.0154366)
(0.0212248 -2.15907e-09 0.0167042)
(0.0205407 -2.31439e-09 0.0178625)
(0.0198243 -2.45393e-09 0.0189042)
(0.0190781 -2.57489e-09 0.0198223)
(0.0183048 -2.67541e-09 0.0206103)
(0.0175067 -2.75608e-09 0.021262)
(0.0166865 -2.82053e-09 0.0217718)
(0.0158462 -2.87566e-09 0.0221345)
(0.0149882 -2.93127e-09 0.0223459)
(0.0141143 -2.99439e-09 0.0224024)
(0.0132266 -3.07307e-09 0.0223009)
(0.0123267 -3.17846e-09 0.0220397)
(0.0114163 -3.33286e-09 0.0216173)
(0.0104968 -3.56137e-09 0.0210335)
(0.00956966 -3.87459e-09 0.0202884)
(0.00863609 -4.27699e-09 0.0193827)
(0.00769742 -4.8464e-09 0.0183174)
(0.006755 -5.78674e-09 0.0170926)
(0.00581036 -7.3031e-09 0.0157069)
(0.00486538 -9.48319e-09 0.0141549)
(0.00392269 -1.2631e-08 0.0124226)
(0.00298575 -1.75835e-08 0.0104764)
(0.00206284 -2.53517e-08 0.00823166)
(0.00118614 -3.24374e-08 0.00543604)
(0.000436619 -5.96529e-08 0.00135573)
(-0.0048001 -4.53115e-08 0.0907053)
(-0.0118942 -2.58472e-08 0.103086)
(-0.0196151 -2.56154e-08 0.110137)
(-0.0273706 -1.66481e-08 0.115289)
(-0.0349804 -1.03876e-08 0.119483)
(-0.0424479 -7.72244e-09 0.123055)
(-0.0497671 -6.34657e-09 0.126156)
(-0.0569386 -5.44648e-09 0.128861)
(-0.0639643 -4.82493e-09 0.131211)
(-0.0708474 -4.1408e-09 0.133231)
(-0.0775913 -2.98825e-09 0.134935)
(-0.0841995 -1.29217e-09 0.136335)
(-0.0906754 5.70685e-10 0.137439)
(-0.097022 1.95784e-09 0.138255)
(-0.103242 2.36207e-09 0.138789)
(-0.109336 1.78812e-09 0.13905)
(-0.115307 7.3826e-10 0.139045)
(-0.121155 -1.84694e-10 0.138781)
(-0.12688 -6.44175e-10 0.138268)
(-0.132482 -6.45135e-10 0.137512)
(-0.13796 -3.83402e-10 0.136523)
(-0.143313 -6.35186e-11 0.13531)
(-0.148539 1.81555e-10 0.13388)
(-0.153636 2.92636e-10 0.132244)
(-0.158602 2.64439e-10 0.130408)
(-0.163434 1.37435e-10 0.128383)
(-0.168131 -1.47739e-11 0.126176)
(-0.172688 -1.1885e-10 0.123795)
(-0.177104 -1.40426e-10 0.121249)
(-0.181376 -9.49986e-11 0.118545)
(-0.185501 -2.84243e-11 0.115691)
(-0.189476 1.76168e-11 0.112696)
(-0.193298 2.29061e-11 0.109565)
(-0.196965 -9.97975e-12 0.106308)
(-0.200474 -6.64512e-11 0.10293)
(-0.203823 -1.30763e-10 0.0994389)
(-0.20701 -1.89874e-10 0.0958421)
(-0.210033 -2.33521e-10 0.0921463)
(-0.212888 -2.54246e-10 0.0883583)
(-0.215576 -2.48581e-10 0.0844849)
(-0.218094 -2.18713e-10 0.0805331)
(-0.220441 -1.72927e-10 0.0765095)
(-0.222615 -1.23079e-10 0.0724209)
(-0.224616 -8.23381e-11 0.0682739)
(-0.226442 -5.9446e-11 0.0640754)
(-0.228094 -5.79501e-11 0.059832)
(-0.22957 -7.54575e-11 0.0555503)
(-0.230871 -1.04278e-10 0.051237)
(-0.231996 -1.36131e-10 0.0468988)
(-0.232946 -1.63173e-10 0.0425422)
(-0.233722 -1.81215e-10 0.0381739)
(-0.234323 -1.89177e-10 0.0338003)
(-0.23475 -1.8819e-10 0.0294279)
(-0.235006 -1.81291e-10 0.0250632)
(-0.23509 -1.70586e-10 0.0207124)
(-0.235004 -1.58032e-10 0.0163819)
(-0.234751 -1.44295e-10 0.0120778)
(-0.234331 -1.2953e-10 0.00780611)
(-0.233748 -1.14509e-10 0.00357276)
(-0.233002 -9.93347e-11 -0.000616462)
(-0.232098 -8.46494e-11 -0.0047559)
(-0.231036 -7.13271e-11 -0.00884007)
(-0.229821 -6.06017e-11 -0.0128637)
(-0.228455 -5.29357e-11 -0.0168216)
(-0.226942 -4.78405e-11 -0.0207088)
(-0.225284 -4.45192e-11 -0.0245208)
(-0.223485 -4.23804e-11 -0.0282529)
(-0.22155 -4.01133e-11 -0.0319009)
(-0.219481 -3.70495e-11 -0.0354607)
(-0.217283 -3.26751e-11 -0.0389286)
(-0.214959 -2.66304e-11 -0.0423011)
(-0.212515 -1.91723e-11 -0.0455748)
(-0.209954 -1.04038e-11 -0.0487468)
(-0.207281 -5.81938e-13 -0.0518142)
(-0.2045 9.80503e-12 -0.0547746)
(-0.201616 2.05772e-11 -0.0576257)
(-0.198634 3.15546e-11 -0.0603657)
(-0.195557 4.2506e-11 -0.0629927)
(-0.192393 5.3303e-11 -0.0655053)
(-0.189144 6.39713e-11 -0.0679025)
(-0.185816 7.45108e-11 -0.0701832)
(-0.182413 8.52301e-11 -0.0723468)
(-0.178942 9.61548e-11 -0.0743929)
(-0.175406 1.07234e-10 -0.0763212)
(-0.17181 1.18723e-10 -0.078132)
(-0.16816 1.30445e-10 -0.0798254)
(-0.16446 1.42166e-10 -0.081402)
(-0.160715 1.54323e-10 -0.0828625)
(-0.156931 1.66481e-10 -0.0842077)
(-0.15311 1.78459e-10 -0.0854389)
(-0.14926 1.90489e-10 -0.0865573)
(-0.145383 2.01953e-10 -0.0875644)
(-0.141484 2.13212e-10 -0.0884619)
(-0.137569 2.2406e-10 -0.0892514)
(-0.13364 2.346e-10 -0.089935)
(-0.129704 2.44832e-10 -0.0905147)
(-0.125763 2.54499e-10 -0.0909928)
(-0.121822 2.64012e-10 -0.0913714)
(-0.117884 2.73371e-10 -0.091653)
(-0.113955 2.82628e-10 -0.0918402)
(-0.110036 2.91679e-10 -0.0919353)
(-0.106133 3.00885e-10 -0.0919412)
(-0.102248 3.09783e-10 -0.0918604)
(-0.0983856 3.18785e-10 -0.0916957)
(-0.094548 3.27735e-10 -0.0914498)
(-0.0907387 3.36687e-10 -0.0911256)
(-0.0869608 3.45587e-10 -0.0907258)
(-0.0832171 3.54436e-10 -0.0902533)
(-0.0795104 3.63235e-10 -0.0897108)
(-0.0758433 3.72137e-10 -0.0891011)
(-0.0722184 3.80731e-10 -0.0884269)
(-0.0686381 3.89429e-10 -0.087691)
(-0.0651047 3.98076e-10 -0.0868961)
(-0.0616204 4.06518e-10 -0.0860447)
(-0.0581871 4.15217e-10 -0.0851393)
(-0.054807 4.23815e-10 -0.0841826)
(-0.0514817 4.32413e-10 -0.0831768)
(-0.0482131 4.41166e-10 -0.0821242)
(-0.0450028 4.49817e-10 -0.0810272)
(-0.0418524 4.58366e-10 -0.0798877)
(-0.0387633 4.6707e-10 -0.0787079)
(-0.0357368 4.75826e-10 -0.0774896)
(-0.0327743 4.84531e-10 -0.0762346)
(-0.029877 4.93237e-10 -0.0749445)
(-0.0270459 5.01841e-10 -0.073621)
(-0.0242821 5.10292e-10 -0.0722653)
(-0.0215867 5.18435e-10 -0.070879)
(-0.0189605 5.26269e-10 -0.069463)
(-0.0164044 5.34105e-10 -0.0680185)
(-0.0139191 5.41015e-10 -0.0665465)
(-0.0115054 5.47103e-10 -0.0650476)
(-0.00916408 5.52626e-10 -0.0635226)
(-0.00689566 5.56811e-10 -0.0619722)
(-0.00470077 5.60123e-10 -0.0603967)
(-0.00257994 5.62097e-10 -0.0587966)
(-0.000533684 5.62888e-10 -0.0571723)
(0.00143757 5.62083e-10 -0.0555239)
(0.00333336 5.59015e-10 -0.0538516)
(0.00515337 5.54195e-10 -0.0521555)
(0.00689724 5.47883e-10 -0.0504358)
(0.00856469 5.39304e-10 -0.0486926)
(0.0101555 5.28357e-10 -0.0469259)
(0.0116694 5.1473e-10 -0.0451357)
(0.0131063 4.99146e-10 -0.0433223)
(0.014466 4.81602e-10 -0.0414858)
(0.0157485 4.61738e-10 -0.0396265)
(0.0169539 4.40068e-10 -0.0377447)
(0.018082 4.16953e-10 -0.0358409)
(0.0191331 3.91824e-10 -0.0339157)
(0.0201074 3.66124e-10 -0.0319699)
(0.021005 3.39028e-10 -0.0300045)
(0.0218264 3.10691e-10 -0.0280206)
(0.0225718 2.81986e-10 -0.0260197)
(0.0232418 2.51782e-10 -0.0240035)
(0.023837 2.20232e-10 -0.0219739)
(0.024358 1.86974e-10 -0.0199332)
(0.0248056 1.50927e-10 -0.017884)
(0.0251807 1.11316e-10 -0.0158291)
(0.0254843 6.66466e-11 -0.0137719)
(0.0257174 1.58854e-11 -0.0117159)
(0.0258813 -4.24638e-11 -0.00966504)
(0.0259773 -1.09898e-10 -0.00762375)
(0.0260069 -1.87246e-10 -0.00559673)
(0.0259717 -2.76365e-10 -0.00358905)
(0.0258733 -3.7824e-10 -0.00160617)
(0.0257137 -4.9375e-10 0.000346123)
(0.0254946 -6.23313e-10 0.00226167)
(0.0252183 -7.66726e-10 0.00413402)
(0.0248868 -9.23167e-10 0.00595643)
(0.0245025 -1.09063e-09 0.00772187)
(0.0240678 -1.26705e-09 0.00942313)
(0.023585 -1.44913e-09 0.0110528)
(0.0230567 -1.63284e-09 0.0126033)
(0.0224855 -1.81508e-09 0.0140672)
(0.021874 -1.99147e-09 0.0154367)
(0.0212248 -2.15906e-09 0.0167043)
(0.0205407 -2.31439e-09 0.0178625)
(0.0198242 -2.45393e-09 0.0189042)
(0.0190781 -2.57489e-09 0.0198223)
(0.0183047 -2.6754e-09 0.0206103)
(0.0175067 -2.75608e-09 0.021262)
(0.0166864 -2.82052e-09 0.0217718)
(0.0158462 -2.87565e-09 0.0221345)
(0.0149881 -2.93127e-09 0.022346)
(0.0141143 -2.99439e-09 0.0224024)
(0.0132266 -3.07307e-09 0.022301)
(0.0123267 -3.17845e-09 0.0220397)
(0.0114163 -3.33285e-09 0.0216173)
(0.0104968 -3.56136e-09 0.0210335)
(0.00956963 -3.87458e-09 0.0202884)
(0.00863606 -4.27698e-09 0.0193828)
(0.00769739 -4.84638e-09 0.0183174)
(0.00675496 -5.78672e-09 0.0170926)
(0.00581032 -7.30307e-09 0.0157069)
(0.00486534 -9.48315e-09 0.0141549)
(0.00392264 -1.26309e-08 0.0124226)
(0.00298569 -1.75835e-08 0.0104764)
(0.00206277 -2.53516e-08 0.00823156)
(0.00118602 -3.24375e-08 0.0054359)
(0.00043641 -5.9653e-08 0.00135559)
(-0.00483241 6.0205e-08 0.0989722)
(-0.0120509 1.02283e-08 0.111429)
(-0.0198829 -4.68126e-09 0.118399)
(-0.0277669 -2.3017e-09 0.123427)
(-0.0355153 3.74037e-10 0.127478)
(-0.0431308 4.14943e-10 0.130899)
(-0.0506051 -5.28658e-10 0.133847)
(-0.0579367 -1.80046e-09 0.136399)
(-0.0651256 -3.10218e-09 0.138598)
(-0.0721731 -4.02519e-09 0.140469)
(-0.079081 -4.07381e-09 0.142028)
(-0.0858511 -2.98788e-09 0.143285)
(-0.0924855 -9.9028e-10 0.144249)
(-0.0989859 1.13472e-09 0.144928)
(-0.105354 2.39954e-09 0.145326)
(-0.11159 2.33416e-09 0.145453)
(-0.117695 1.30217e-09 0.145314)
(-0.12367 9.63209e-11 0.144917)
(-0.129514 -6.68484e-10 0.14427)
(-0.135225 -8.30845e-10 0.14338)
(-0.140805 -5.68343e-10 0.142256)
(-0.14625 -1.51929e-10 0.140906)
(-0.151559 2.11349e-10 0.139338)
(-0.156731 4.12971e-10 0.13756)
(-0.161763 4.24192e-10 0.135582)
(-0.166653 2.82854e-10 0.13341)
(-0.171398 7.78326e-11 0.131055)
(-0.175996 -9.22869e-11 0.128523)
(-0.180445 -1.66748e-10 0.125822)
(-0.184742 -1.46024e-10 0.122962)
(-0.188883 -7.66838e-11 0.119949)
(-0.192868 -1.14365e-11 0.11679)
(-0.196693 1.70788e-11 0.113495)
(-0.200356 3.54189e-12 0.11007)
(-0.203854 -4.04954e-11 0.106522)
(-0.207186 -1.00371e-10 0.102859)
(-0.21035 -1.62633e-10 0.0990873)
(-0.213343 -2.16018e-10 0.0952149)
(-0.216164 -2.51423e-10 0.0912485)
(-0.218811 -2.61496e-10 0.0871952)
(-0.221284 -2.4462e-10 0.0830619)
(-0.22358 -2.05605e-10 0.0788556)
(-0.2257 -1.54918e-10 0.0745832)
(-0.227641 -1.06753e-10 0.0702516)
(-0.229404 -7.268e-11 0.0658678)
(-0.230988 -5.9717e-11 0.0614386)
(-0.232393 -6.79391e-11 0.056971)
(-0.233619 -9.17403e-11 0.0524718)
(-0.234666 -1.22584e-10 0.0479478)
(-0.235535 -1.51986e-10 0.043406)
(-0.236226 -1.73804e-10 0.038853)
(-0.236739 -1.85825e-10 0.0342956)
(-0.237077 -1.88258e-10 0.0297405)
(-0.23724 -1.83288e-10 0.0251944)
(-0.237229 -1.73536e-10 0.0206637)
(-0.237047 -1.60804e-10 0.0161551)
(-0.236695 -1.46221e-10 0.0116747)
(-0.236176 -1.30251e-10 0.00722897)
(-0.23549 -1.13151e-10 0.00282391)
(-0.234642 -9.5358e-11 -0.00153445)
(-0.233633 -7.76942e-11 -0.00584026)
(-0.232467 -6.10078e-11 -0.0100878)
(-0.231146 -4.68666e-11 -0.0142717)
(-0.229673 -3.54758e-11 -0.0183865)
(-0.228052 -2.7041e-11 -0.0224272)
(-0.226287 -2.07909e-11 -0.0263889)
(-0.224381 -1.59546e-11 -0.0302668)
(-0.222338 -1.16326e-11 -0.0340567)
(-0.220161 -6.69397e-12 -0.0377543)
(-0.217856 -5.47881e-13 -0.0413556)
(-0.215426 6.98555e-12 -0.044857)
(-0.212875 1.61889e-11 -0.0482552)
(-0.210209 2.67538e-11 -0.0515469)
(-0.207431 3.84746e-11 -0.0547293)
(-0.204547 5.07861e-11 -0.0577998)
(-0.20156 6.34312e-11 -0.0607561)
(-0.198477 7.62044e-11 -0.0635962)
(-0.195301 8.89259e-11 -0.0663183)
(-0.192038 1.01339e-10 -0.0689209)
(-0.188693 1.13623e-10 -0.0714028)
(-0.18527 1.25727e-10 -0.0737631)
(-0.181775 1.37651e-10 -0.0760011)
(-0.178213 1.49601e-10 -0.0781164)
(-0.174588 1.61627e-10 -0.0801087)
(-0.170906 1.73757e-10 -0.0819782)
(-0.167172 1.86117e-10 -0.0837252)
(-0.163391 1.98657e-10 -0.0853502)
(-0.159567 2.11198e-10 -0.0868541)
(-0.155706 2.23712e-10 -0.0882376)
(-0.151811 2.3615e-10 -0.0895021)
(-0.147889 2.4828e-10 -0.090649)
(-0.143944 2.6005e-10 -0.0916796)
(-0.13998 2.7128e-10 -0.0925959)
(-0.136001 2.82126e-10 -0.0933996)
(-0.132013 2.92458e-10 -0.0940928)
(-0.12802 3.02328e-10 -0.0946777)
(-0.124025 3.11684e-10 -0.0951565)
(-0.120033 3.20732e-10 -0.0955316)
(-0.116047 3.29421e-10 -0.0958057)
(-0.112073 3.37957e-10 -0.0959812)
(-0.108113 3.46236e-10 -0.0960609)
(-0.104171 3.54258e-10 -0.0960476)
(-0.10025 3.62332e-10 -0.095944)
(-0.0963549 3.70099e-10 -0.0957529)
(-0.0924876 3.77866e-10 -0.0954774)
(-0.0886517 3.85633e-10 -0.0951203)
(-0.0848501 3.93299e-10 -0.0946845)
(-0.0810858 4.00759e-10 -0.094173)
(-0.0773613 4.08117e-10 -0.0935887)
(-0.0736794 4.15219e-10 -0.0929345)
(-0.0700426 4.22424e-10 -0.0922133)
(-0.0664532 4.29373e-10 -0.0914278)
(-0.0629134 4.36219e-10 -0.090581)
(-0.0594254 4.43015e-10 -0.0896756)
(-0.0559912 4.4976e-10 -0.0887141)
(-0.0526128 4.56506e-10 -0.0876992)
(-0.0492918 4.63149e-10 -0.0866335)
(-0.0460299 4.69691e-10 -0.0855192)
(-0.0428289 4.76592e-10 -0.0843588)
(-0.03969 4.82929e-10 -0.0831544)
(-0.0366148 4.89524e-10 -0.0819082)
(-0.0336046 4.96016e-10 -0.0806222)
(-0.0306605 5.02509e-10 -0.0792981)
(-0.0277837 5.09055e-10 -0.0779379)
(-0.0249752 5.15189e-10 -0.076543)
(-0.022236 5.21375e-10 -0.0751151)
(-0.0195671 5.27151e-10 -0.0736554)
(-0.0169693 5.3267e-10 -0.0721653)
(-0.0144433 5.37572e-10 -0.0706458)
(-0.0119899 5.41961e-10 -0.0690979)
(-0.00960976 5.45321e-10 -0.0675226)
(-0.00730349 5.47911e-10 -0.0659204)
(-0.00507166 5.49266e-10 -0.0642922)
(-0.00291477 5.49901e-10 -0.0626384)
(-0.000833306 5.48993e-10 -0.0609596)
(0.00117234 5.46748e-10 -0.0592559)
(0.00310173 5.42547e-10 -0.0575278)
(0.00495457 5.36802e-10 -0.0557754)
(0.00673055 5.29255e-10 -0.053999)
(0.00842942 5.19545e-10 -0.0521986)
(0.010051 5.07571e-10 -0.0503744)
(0.011595 4.93844e-10 -0.0485266)
(0.0130615 4.77593e-10 -0.0466552)
(0.0144502 4.59333e-10 -0.0447605)
(0.0157612 4.39319e-10 -0.0428426)
(0.0169945 4.17346e-10 -0.0409019)
(0.0181501 3.93824e-10 -0.0389388)
(0.0192283 3.68959e-10 -0.0369539)
(0.0202291 3.42957e-10 -0.0349477)
(0.0211528 3.15817e-10 -0.0329212)
(0.0219998 2.87848e-10 -0.0308755)
(0.0227705 2.59151e-10 -0.0288117)
(0.0234653 2.29574e-10 -0.0267315)
(0.0240848 1.9865e-10 -0.0246365)
(0.0246297 1.66227e-10 -0.0225289)
(0.0251006 1.31376e-10 -0.020411)
(0.0254986 9.29623e-11 -0.0182855)
(0.0258245 4.96979e-11 -0.0161554)
(0.0260793 8.68996e-14 -0.014024)
(0.0262643 -5.70576e-11 -0.0118952)
(0.0263807 -1.23645e-10 -0.00977292)
(0.02643 -2.00811e-10 -0.00766173)
(0.0264137 -2.89848e-10 -0.00556645)
(0.0263334 -3.91893e-10 -0.00349229)
(0.0261908 -5.07517e-10 -0.00144484)
(0.025988 -6.37859e-10 0.000569998)
(0.0257268 -7.81427e-10 0.00254594)
(0.0254095 -9.37761e-10 0.00447642)
(0.0250381 -1.10506e-09 0.00635458)
(0.0246152 -1.2808e-09 0.0081733)
(0.024143 -1.46064e-09 0.00992528)
(0.023624 -1.64124e-09 0.011603)
(0.0230609 -1.81759e-09 0.0131989)
(0.0224563 -1.98556e-09 0.0147054)
(0.0218129 -2.14174e-09 0.0161147)
(0.0211333 -2.28266e-09 0.0174193)
(0.0204202 -2.40584e-09 0.0186117)
(0.0196765 -2.50972e-09 0.0196848)
(0.0189046 -2.59317e-09 0.0206316)
(0.0181074 -2.65719e-09 0.0214457)
(0.0172874 -2.70324e-09 0.0221208)
(0.0164471 -2.73729e-09 0.0226515)
(0.0155889 -2.76749e-09 0.0230328)
(0.0147151 -2.805e-09 0.0232605)
(0.013828 -2.85734e-09 0.0233311)
(0.0129295 -2.93339e-09 0.023242)
(0.0120218 -3.04379e-09 0.0229911)
(0.0111065 -3.21042e-09 0.0225775)
(0.0101855 -3.45857e-09 0.0220008)
(0.00926045 -3.80031e-09 0.0212613)
(0.00833293 -4.23988e-09 0.0203599)
(0.00740458 -4.85208e-09 0.0192972)
(0.00647711 -5.83345e-09 0.0180734)
(0.00555243 -7.37991e-09 0.0166868)
(0.00463277 -9.57562e-09 0.0151315)
(0.00372109 -1.27079e-08 0.0133924)
(0.0028212 -1.75679e-08 0.0114341)
(0.00194133 -2.50995e-08 0.00916783)
(0.00111208 -3.14153e-08 0.00632884)
(0.00040885 -4.93116e-08 0.00211062)
(-0.00483224 6.02049e-08 0.0989723)
(-0.0120508 1.02282e-08 0.111428)
(-0.0198829 -4.68123e-09 0.118399)
(-0.0277669 -2.30168e-09 0.123427)
(-0.0355153 3.74035e-10 0.127477)
(-0.0431308 4.1494e-10 0.130899)
(-0.0506051 -5.28654e-10 0.133847)
(-0.0579367 -1.80045e-09 0.136399)
(-0.0651256 -3.10216e-09 0.138598)
(-0.0721731 -4.02516e-09 0.140469)
(-0.0790809 -4.07378e-09 0.142028)
(-0.0858511 -2.98786e-09 0.143285)
(-0.0924855 -9.90272e-10 0.144249)
(-0.0989859 1.13471e-09 0.144927)
(-0.105354 2.39953e-09 0.145326)
(-0.11159 2.33414e-09 0.145453)
(-0.117695 1.30217e-09 0.145314)
(-0.12367 9.63202e-11 0.144917)
(-0.129514 -6.6848e-10 0.14427)
(-0.135225 -8.3084e-10 0.14338)
(-0.140805 -5.68339e-10 0.142256)
(-0.14625 -1.51929e-10 0.140906)
(-0.151559 2.11347e-10 0.139338)
(-0.156731 4.12969e-10 0.13756)
(-0.161763 4.2419e-10 0.135582)
(-0.166653 2.82853e-10 0.13341)
(-0.171398 7.78322e-11 0.131055)
(-0.175996 -9.22865e-11 0.128523)
(-0.180445 -1.66747e-10 0.125822)
(-0.184742 -1.46023e-10 0.122962)
(-0.188883 -7.66835e-11 0.119949)
(-0.192868 -1.14365e-11 0.11679)
(-0.196693 1.70787e-11 0.113495)
(-0.200356 3.54187e-12 0.11007)
(-0.203854 -4.04952e-11 0.106522)
(-0.207186 -1.0037e-10 0.102859)
(-0.21035 -1.62632e-10 0.0990873)
(-0.213343 -2.16017e-10 0.0952149)
(-0.216164 -2.51422e-10 0.0912485)
(-0.218811 -2.61496e-10 0.0871952)
(-0.221284 -2.44619e-10 0.0830619)
(-0.22358 -2.05604e-10 0.0788556)
(-0.2257 -1.54917e-10 0.0745832)
(-0.227641 -1.06753e-10 0.0702516)
(-0.229404 -7.26799e-11 0.0658678)
(-0.230988 -5.97168e-11 0.0614386)
(-0.232393 -6.7939e-11 0.056971)
(-0.233619 -9.17401e-11 0.0524718)
(-0.234666 -1.22584e-10 0.0479479)
(-0.235535 -1.51986e-10 0.043406)
(-0.236226 -1.73803e-10 0.038853)
(-0.236739 -1.85825e-10 0.0342956)
(-0.237077 -1.88258e-10 0.0297405)
(-0.23724 -1.83287e-10 0.0251944)
(-0.237229 -1.73536e-10 0.0206638)
(-0.237047 -1.60803e-10 0.0161551)
(-0.236695 -1.46221e-10 0.0116747)
(-0.236176 -1.30251e-10 0.00722898)
(-0.23549 -1.13151e-10 0.00282393)
(-0.234642 -9.53578e-11 -0.00153443)
(-0.233633 -7.7694e-11 -0.00584024)
(-0.232467 -6.10077e-11 -0.0100878)
(-0.231146 -4.68665e-11 -0.0142717)
(-0.229673 -3.54757e-11 -0.0183865)
(-0.228052 -2.70409e-11 -0.0224272)
(-0.226287 -2.07909e-11 -0.0263889)
(-0.224381 -1.59546e-11 -0.0302668)
(-0.222338 -1.16325e-11 -0.0340567)
(-0.220161 -6.69396e-12 -0.0377542)
(-0.217856 -5.4788e-13 -0.0413556)
(-0.215426 6.98553e-12 -0.044857)
(-0.212875 1.61889e-11 -0.0482552)
(-0.210209 2.67538e-11 -0.0515469)
(-0.207431 3.84746e-11 -0.0547293)
(-0.204547 5.0786e-11 -0.0577998)
(-0.20156 6.34311e-11 -0.0607561)
(-0.198477 7.62043e-11 -0.0635962)
(-0.195301 8.89257e-11 -0.0663183)
(-0.192038 1.01339e-10 -0.0689209)
(-0.188693 1.13623e-10 -0.0714028)
(-0.18527 1.25727e-10 -0.0737631)
(-0.181775 1.37651e-10 -0.0760011)
(-0.178213 1.496e-10 -0.0781163)
(-0.174588 1.61627e-10 -0.0801087)
(-0.170907 1.73756e-10 -0.0819782)
(-0.167172 1.86117e-10 -0.0837252)
(-0.163391 1.98657e-10 -0.0853502)
(-0.159567 2.11197e-10 -0.086854)
(-0.155706 2.23712e-10 -0.0882376)
(-0.151811 2.3615e-10 -0.0895021)
(-0.147889 2.48279e-10 -0.0906489)
(-0.143944 2.60049e-10 -0.0916796)
(-0.13998 2.7128e-10 -0.0925959)
(-0.136001 2.82125e-10 -0.0933996)
(-0.132013 2.92457e-10 -0.0940928)
(-0.12802 3.02327e-10 -0.0946776)
(-0.124025 3.11683e-10 -0.0951565)
(-0.120033 3.20732e-10 -0.0955316)
(-0.116047 3.29421e-10 -0.0958057)
(-0.112073 3.37956e-10 -0.0959812)
(-0.108113 3.46235e-10 -0.0960609)
(-0.104171 3.54257e-10 -0.0960476)
(-0.10025 3.62331e-10 -0.0959439)
(-0.0963549 3.70098e-10 -0.0957529)
(-0.0924876 3.77865e-10 -0.0954774)
(-0.0886517 3.85632e-10 -0.0951203)
(-0.0848502 3.93297e-10 -0.0946845)
(-0.0810858 4.00758e-10 -0.094173)
(-0.0773613 4.08116e-10 -0.0935887)
(-0.0736795 4.15217e-10 -0.0929345)
(-0.0700426 4.22423e-10 -0.0922132)
(-0.0664532 4.29371e-10 -0.0914278)
(-0.0629134 4.36218e-10 -0.090581)
(-0.0594255 4.43014e-10 -0.0896756)
(-0.0559913 4.49759e-10 -0.0887141)
(-0.0526128 4.56504e-10 -0.0876992)
(-0.0492918 4.63148e-10 -0.0866335)
(-0.04603 4.69689e-10 -0.0855192)
(-0.0428289 4.76591e-10 -0.0843588)
(-0.0396901 4.82928e-10 -0.0831544)
(-0.0366149 4.89522e-10 -0.0819082)
(-0.0336046 4.96015e-10 -0.0806222)
(-0.0306605 5.02508e-10 -0.0792981)
(-0.0277837 5.09053e-10 -0.0779379)
(-0.0249752 5.15187e-10 -0.076543)
(-0.0222361 5.21374e-10 -0.0751151)
(-0.0195671 5.27149e-10 -0.0736554)
(-0.0169693 5.32668e-10 -0.0721653)
(-0.0144433 5.3757e-10 -0.0706458)
(-0.0119899 5.41959e-10 -0.0690979)
(-0.00960979 5.45319e-10 -0.0675226)
(-0.00730352 5.47909e-10 -0.0659204)
(-0.00507169 5.49264e-10 -0.0642922)
(-0.0029148 5.49899e-10 -0.0626384)
(-0.000833337 5.48991e-10 -0.0609596)
(0.0011723 5.46746e-10 -0.0592559)
(0.00310169 5.42545e-10 -0.0575278)
(0.00495453 5.368e-10 -0.0557754)
(0.00673052 5.29253e-10 -0.053999)
(0.00842939 5.19544e-10 -0.0521986)
(0.0100509 5.07569e-10 -0.0503744)
(0.011595 4.93842e-10 -0.0485266)
(0.0130614 4.77592e-10 -0.0466552)
(0.0144502 4.59331e-10 -0.0447605)
(0.0157612 4.39318e-10 -0.0428426)
(0.0169945 4.17344e-10 -0.0409019)
(0.0181501 3.93823e-10 -0.0389388)
(0.0192282 3.68958e-10 -0.0369539)
(0.020229 3.42956e-10 -0.0349477)
(0.0211528 3.15816e-10 -0.0329212)
(0.0219998 2.87847e-10 -0.0308755)
(0.0227704 2.59151e-10 -0.0288117)
(0.0234652 2.29573e-10 -0.0267315)
(0.0240848 1.9865e-10 -0.0246365)
(0.0246296 1.66227e-10 -0.0225289)
(0.0251006 1.31375e-10 -0.020411)
(0.0254986 9.2962e-11 -0.0182855)
(0.0258244 4.96977e-11 -0.0161554)
(0.0260793 8.68993e-14 -0.014024)
(0.0262643 -5.70575e-11 -0.0118952)
(0.0263807 -1.23644e-10 -0.00977291)
(0.02643 -2.0081e-10 -0.00766172)
(0.0264136 -2.89847e-10 -0.00556644)
(0.0263333 -3.91892e-10 -0.00349228)
(0.0261908 -5.07516e-10 -0.00144482)
(0.025988 -6.37857e-10 0.000570015)
(0.0257268 -7.81425e-10 0.00254596)
(0.0254094 -9.37759e-10 0.00447644)
(0.0250381 -1.10506e-09 0.0063546)
(0.0246151 -1.28079e-09 0.00817332)
(0.0241429 -1.46064e-09 0.0099253)
(0.023624 -1.64124e-09 0.011603)
(0.0230609 -1.81759e-09 0.013199)
(0.0224563 -1.98556e-09 0.0147054)
(0.0218128 -2.14173e-09 0.0161147)
(0.0211332 -2.28265e-09 0.0174193)
(0.0204202 -2.40583e-09 0.0186117)
(0.0196764 -2.50972e-09 0.0196848)
(0.0189046 -2.59316e-09 0.0206317)
(0.0181074 -2.65719e-09 0.0214457)
(0.0172874 -2.70323e-09 0.0221208)
(0.0164471 -2.73728e-09 0.0226515)
(0.0155889 -2.76749e-09 0.0230328)
(0.0147151 -2.80499e-09 0.0232605)
(0.0138279 -2.85733e-09 0.0233312)
(0.0129295 -2.93338e-09 0.023242)
(0.0120217 -3.04378e-09 0.0229911)
(0.0111065 -3.21041e-09 0.0225775)
(0.0101855 -3.45857e-09 0.0220008)
(0.00926042 -3.80029e-09 0.0212613)
(0.00833289 -4.23986e-09 0.0203599)
(0.00740454 -4.85206e-09 0.0192972)
(0.00647708 -5.83343e-09 0.0180734)
(0.00555239 -7.37988e-09 0.0166868)
(0.00463272 -9.57559e-09 0.0151314)
(0.00372104 -1.27079e-08 0.0133923)
(0.00282114 -1.75678e-08 0.011434)
(0.00194127 -2.50995e-08 0.00916772)
(0.00111198 -3.14153e-08 0.0063287)
(0.000408664 -4.93117e-08 0.00211047)
(-0.00487052 2.36121e-07 0.107352)
(-0.0122228 7.15799e-08 0.119888)
(-0.0201742 3.2316e-08 0.126792)
(-0.0281942 2.3037e-08 0.131708)
(-0.0360877 1.96757e-08 0.135626)
(-0.0438572 1.58378e-08 0.138905)
(-0.0514921 1.17509e-08 0.141706)
(-0.0589892 7.66449e-09 0.14411)
(-0.0663468 3.75437e-09 0.14616)
(-0.0735642 3.49268e-10 0.147883)
(-0.0806417 -2.01969e-09 0.149295)
(-0.0875797 -2.83104e-09 0.150407)
(-0.0943789 -1.84325e-09 0.151227)
(-0.10104 3.76635e-10 0.151763)
(-0.107563 2.41497e-09 0.15202)
(-0.113948 3.0584e-09 0.152005)
(-0.120195 2.21869e-09 0.151725)
(-0.126304 7.37312e-10 0.151186)
(-0.132274 -4.56597e-10 0.150397)
(-0.138104 -9.31315e-10 0.149364)
(-0.143792 -7.72393e-10 0.148095)
(-0.149338 -2.987e-10 0.146599)
(-0.154739 1.91169e-10 0.144882)
(-0.159993 5.13442e-10 0.142955)
(-0.165099 5.96836e-10 0.140824)
(-0.170054 4.65607e-10 0.138497)
(-0.174856 2.17259e-10 0.135984)
(-0.179502 -2.222e-11 0.133292)
(-0.183991 -1.60964e-10 0.13043)
(-0.188319 -1.78359e-10 0.127404)
(-0.192484 -1.16567e-10 0.124223)
(-0.196485 -3.83712e-11 0.120895)
(-0.200318 1.07373e-11 0.117427)
(-0.203982 1.59754e-11 0.113827)
(-0.207475 -1.51444e-11 0.110102)
(-0.210795 -6.80138e-11 0.106259)
(-0.213939 -1.29312e-10 0.102307)
(-0.216907 -1.88498e-10 0.0982517)
(-0.219697 -2.35415e-10 0.094101)
(-0.222307 -2.60681e-10 0.0898619)
(-0.224737 -2.58641e-10 0.0855416)
(-0.226986 -2.30174e-10 0.0811473)
(-0.229052 -1.82941e-10 0.0766861)
(-0.230935 -1.30878e-10 0.0721651)
(-0.232636 -8.75823e-11 0.0675914)
(-0.234153 -6.30794e-11 0.0629722)
(-0.235487 -6.08635e-11 0.0583146)
(-0.236637 -7.77454e-11 0.0536255)
(-0.237605 -1.05833e-10 0.0489121)
(-0.238391 -1.36155e-10 0.0441815)
(-0.238996 -1.61335e-10 0.0394406)
(-0.23942 -1.77338e-10 0.0346964)
(-0.239665 -1.83445e-10 0.0299558)
(-0.239733 -1.81354e-10 0.0252256)
(-0.239625 -1.73327e-10 0.0205127)
(-0.239343 -1.61162e-10 0.0158236)
(-0.238889 -1.46428e-10 0.011165)
(-0.238265 -1.29587e-10 0.00654338)
(-0.237474 -1.11e-10 0.00196497)
(-0.236518 -9.11289e-11 -0.00256399)
(-0.2354 -7.06419e-11 -0.00703745)
(-0.234123 -5.07726e-11 -0.0114495)
(-0.23269 -3.30626e-11 -0.0157946)
(-0.231105 -1.8077e-11 -0.020067)
(-0.229371 -6.22674e-12 -0.0242617)
(-0.227492 3.02789e-12 -0.0283734)
(-0.225472 1.0278e-11 -0.0323975)
(-0.223315 1.69369e-11 -0.0363292)
(-0.221024 2.35954e-11 -0.0401643)
(-0.218605 3.1307e-11 -0.0438987)
(-0.216061 4.03028e-11 -0.0475286)
(-0.213397 5.1071e-11 -0.0510505)
(-0.210618 6.30462e-11 -0.0544612)
(-0.207728 7.63056e-11 -0.0577576)
(-0.204733 9.01554e-11 -0.0609371)
(-0.201637 1.04467e-10 -0.0639973)
(-0.198445 1.18959e-10 -0.0669361)
(-0.195162 1.33193e-10 -0.0697517)
(-0.191793 1.47118e-10 -0.0724426)
(-0.188344 1.60761e-10 -0.0750075)
(-0.18482 1.74043e-10 -0.0774454)
(-0.181224 1.87018e-10 -0.0797557)
(-0.177564 1.99735e-10 -0.0819379)
(-0.173844 2.12504e-10 -0.0839919)
(-0.170068 2.25246e-10 -0.0859177)
(-0.166243 2.37964e-10 -0.0877158)
(-0.162373 2.50809e-10 -0.0893866)
(-0.158463 2.63552e-10 -0.090931)
(-0.154518 2.76295e-10 -0.0923501)
(-0.150543 2.88781e-10 -0.0936451)
(-0.146543 3.0101e-10 -0.0948173)
(-0.142523 3.12649e-10 -0.0958686)
(-0.138487 3.23774e-10 -0.0968006)
(-0.134439 3.34412e-10 -0.0976153)
(-0.130385 3.44305e-10 -0.0983149)
(-0.126329 3.53736e-10 -0.0989017)
(-0.122275 3.62628e-10 -0.099378)
(-0.118226 3.70801e-10 -0.0997465)
(-0.114188 3.78923e-10 -0.10001)
(-0.110163 3.8648e-10 -0.10017)
(-0.106156 3.93935e-10 -0.100231)
(-0.102171 4.00929e-10 -0.100195)
(-0.0982104 4.07768e-10 -0.100066)
(-0.0942779 4.14403e-10 -0.099845)
(-0.0903769 4.20935e-10 -0.0995365)
(-0.0865104 4.27211e-10 -0.0991432)
(-0.0826814 4.33385e-10 -0.0986682)
(-0.0788928 4.39559e-10 -0.0981145)
(-0.0751472 4.45375e-10 -0.0974852)
(-0.0714473 4.50934e-10 -0.0967834)
(-0.0677954 4.56339e-10 -0.096012)
(-0.064194 4.61591e-10 -0.095174)
(-0.0606451 4.66689e-10 -0.0942724)
(-0.057151 4.71788e-10 -0.0933099)
(-0.0537134 4.76579e-10 -0.0922894)
(-0.0503343 4.81268e-10 -0.0912136)
(-0.0470155 4.86009e-10 -0.0900851)
(-0.0437585 4.90648e-10 -0.0889065)
(-0.0405648 4.95235e-10 -0.0876801)
(-0.0374359 4.9967e-10 -0.0864082)
(-0.034373 5.04156e-10 -0.0850932)
(-0.0313775 5.08591e-10 -0.083737)
(-0.0284505 5.12769e-10 -0.0823416)
(-0.025593 5.17154e-10 -0.0809089)
(-0.0228061 5.21025e-10 -0.0794405)
(-0.0200905 5.24794e-10 -0.0779382)
(-0.0174472 5.28255e-10 -0.0764032)
(-0.014877 5.31304e-10 -0.0748369)
(-0.0123805 5.3384e-10 -0.0732404)
(-0.00995839 5.35348e-10 -0.071615)
(-0.00761128 5.36085e-10 -0.0699614)
(-0.00533968 5.36102e-10 -0.0682804)
(-0.00314411 5.35142e-10 -0.0665729)
(-0.001025 5.32793e-10 -0.0648393)
(0.00101729 5.29364e-10 -0.0630801)
(0.00298234 5.23877e-10 -0.0612958)
(0.0048699 5.17053e-10 -0.0594867)
(0.00667969 5.08478e-10 -0.0576531)
(0.00841149 4.98153e-10 -0.0557952)
(0.0100651 4.85357e-10 -0.0539131)
(0.0116405 4.70964e-10 -0.0520071)
(0.0131374 4.54305e-10 -0.0500773)
(0.0145559 4.35688e-10 -0.0481239)
(0.0158959 4.15216e-10 -0.0461471)
(0.0171576 3.92836e-10 -0.0441472)
(0.0183409 3.6932e-10 -0.0421246)
(0.019446 3.44307e-10 -0.0400798)
(0.0204732 3.18157e-10 -0.0380133)
(0.0214226 2.91282e-10 -0.0359259)
(0.0222948 2.63474e-10 -0.0338185)
(0.0230899 2.35146e-10 -0.0316923)
(0.0238086 2.05886e-10 -0.0295487)
(0.0244513 1.75692e-10 -0.0273891)
(0.0250188 1.4369e-10 -0.0252155)
(0.0255117 1.09622e-10 -0.0230301)
(0.0259309 7.23532e-11 -0.0208352)
(0.0262772 3.01325e-11 -0.0186338)
(0.0265518 -1.79172e-11 -0.0164288)
(0.0267558 -7.40128e-11 -0.0142239)
(0.0268903 -1.39444e-10 -0.0120228)
(0.0269568 -2.15863e-10 -0.0098298)
(0.0269568 -3.04354e-10 -0.00764944)
(0.0268918 -4.06467e-10 -0.00548671)
(0.0267635 -5.22206e-10 -0.00334696)
(0.0265738 -6.52142e-10 -0.00123587)
(0.0263246 -7.95711e-10 0.000840505)
(0.0260181 -9.51784e-10 0.00287578)
(0.0256563 -1.1182e-09 0.00486325)
(0.0252415 -1.29227e-09 0.00679598)
(0.0247762 -1.47015e-09 0.00866673)
(0.0242629 -1.64749e-09 0.0104681)
(0.023704 -1.81903e-09 0.0121926)
(0.0231022 -1.98008e-09 0.0138324)
(0.0224603 -2.12629e-09 0.01538)
(0.0217809 -2.25427e-09 0.0168276)
(0.0210668 -2.36198e-09 0.0181676)
(0.0203208 -2.44833e-09 0.0193925)
(0.0195458 -2.51348e-09 0.0204953)
(0.0187445 -2.55901e-09 0.0214689)
(0.0179196 -2.5876e-09 0.022307)
(0.017074 -2.60337e-09 0.0230035)
(0.0162101 -2.61405e-09 0.0235528)
(0.0153306 -2.62905e-09 0.0239503)
(0.014438 -2.65929e-09 0.0241918)
(0.0135347 -2.71336e-09 0.0242738)
(0.012623 -2.79866e-09 0.0241939)
(0.0117052 -2.92564e-09 0.0239501)
(0.0107832 -3.11369e-09 0.0235417)
(0.0098592 -3.38862e-09 0.0229682)
(0.00893515 -3.76081e-09 0.0222302)
(0.00801301 -4.23691e-09 0.0213283)
(0.00709476 -4.88683e-09 0.0202633)
(0.00618248 -5.89734e-09 0.0190352)
(0.00527844 -7.45427e-09 0.017642)
(0.00438525 -9.63649e-09 0.0160771)
(0.0035062 -1.27118e-08 0.0143248)
(0.00264542 -1.7419e-08 0.0123478)
(0.00181113 -2.46248e-08 0.0100535)
(0.00103223 -3.00294e-08 0.00716565)
(0.000378142 -3.83577e-08 0.00281458)
(-0.00487041 2.36121e-07 0.107352)
(-0.0122227 7.15793e-08 0.119888)
(-0.0201742 3.23158e-08 0.126792)
(-0.0281942 2.30369e-08 0.131708)
(-0.0360877 1.96755e-08 0.135625)
(-0.0438572 1.58377e-08 0.138905)
(-0.0514921 1.17508e-08 0.141706)
(-0.0589892 7.66444e-09 0.14411)
(-0.0663467 3.75434e-09 0.14616)
(-0.0735642 3.49265e-10 0.147883)
(-0.0806417 -2.01967e-09 0.149295)
(-0.0875797 -2.83102e-09 0.150407)
(-0.0943788 -1.84324e-09 0.151227)
(-0.10104 3.76632e-10 0.151763)
(-0.107563 2.41495e-09 0.15202)
(-0.113948 3.05838e-09 0.152005)
(-0.120195 2.21867e-09 0.151725)
(-0.126304 7.37308e-10 0.151186)
(-0.132274 -4.56594e-10 0.150397)
(-0.138104 -9.31309e-10 0.149364)
(-0.143792 -7.72389e-10 0.148095)
(-0.149338 -2.98698e-10 0.146599)
(-0.154739 1.91168e-10 0.144882)
(-0.159993 5.1344e-10 0.142955)
(-0.165099 5.96833e-10 0.140824)
(-0.170054 4.65604e-10 0.138497)
(-0.174856 2.17258e-10 0.135984)
(-0.179502 -2.22199e-11 0.133292)
(-0.183991 -1.60963e-10 0.13043)
(-0.188319 -1.78358e-10 0.127404)
(-0.192484 -1.16567e-10 0.124223)
(-0.196485 -3.83711e-11 0.120895)
(-0.200318 1.07372e-11 0.117427)
(-0.203982 1.59753e-11 0.113827)
(-0.207475 -1.51444e-11 0.110102)
(-0.210795 -6.80136e-11 0.106259)
(-0.213939 -1.29312e-10 0.102307)
(-0.216907 -1.88497e-10 0.0982517)
(-0.219697 -2.35414e-10 0.094101)
(-0.222307 -2.6068e-10 0.0898619)
(-0.224737 -2.58641e-10 0.0855416)
(-0.226986 -2.30173e-10 0.0811473)
(-0.229052 -1.82941e-10 0.0766861)
(-0.230935 -1.30877e-10 0.0721651)
(-0.232636 -8.7582e-11 0.0675915)
(-0.234153 -6.30793e-11 0.0629722)
(-0.235487 -6.08633e-11 0.0583146)
(-0.236637 -7.77452e-11 0.0536255)
(-0.237605 -1.05833e-10 0.0489122)
(-0.238391 -1.36155e-10 0.0441815)
(-0.238996 -1.61334e-10 0.0394406)
(-0.23942 -1.77338e-10 0.0346964)
(-0.239665 -1.83445e-10 0.0299558)
(-0.239733 -1.81354e-10 0.0252256)
(-0.239625 -1.73326e-10 0.0205127)
(-0.239343 -1.61162e-10 0.0158236)
(-0.238889 -1.46428e-10 0.0111651)
(-0.238265 -1.29587e-10 0.00654339)
(-0.237474 -1.11e-10 0.00196499)
(-0.236518 -9.11287e-11 -0.00256398)
(-0.2354 -7.06418e-11 -0.00703744)
(-0.234123 -5.07725e-11 -0.0114495)
(-0.23269 -3.30625e-11 -0.0157945)
(-0.231105 -1.8077e-11 -0.020067)
(-0.229371 -6.22673e-12 -0.0242617)
(-0.227492 3.02789e-12 -0.0283734)
(-0.225472 1.0278e-11 -0.0323974)
(-0.223315 1.69368e-11 -0.0363292)
(-0.221024 2.35953e-11 -0.0401643)
(-0.218605 3.13069e-11 -0.0438987)
(-0.216061 4.03027e-11 -0.0475286)
(-0.213397 5.10709e-11 -0.0510505)
(-0.210618 6.30461e-11 -0.0544612)
(-0.207728 7.63055e-11 -0.0577576)
(-0.204733 9.01553e-11 -0.0609371)
(-0.201637 1.04467e-10 -0.0639973)
(-0.198445 1.18958e-10 -0.0669361)
(-0.195162 1.33192e-10 -0.0697517)
(-0.191794 1.47118e-10 -0.0724426)
(-0.188344 1.6076e-10 -0.0750074)
(-0.18482 1.74043e-10 -0.0774454)
(-0.181224 1.87017e-10 -0.0797556)
(-0.177564 1.99735e-10 -0.0819379)
(-0.173844 2.12503e-10 -0.0839918)
(-0.170068 2.25246e-10 -0.0859177)
(-0.166243 2.37963e-10 -0.0877157)
(-0.162373 2.50808e-10 -0.0893866)
(-0.158463 2.63551e-10 -0.090931)
(-0.154518 2.76294e-10 -0.0923501)
(-0.150543 2.8878e-10 -0.0936451)
(-0.146543 3.0101e-10 -0.0948173)
(-0.142523 3.12648e-10 -0.0958686)
(-0.138487 3.23774e-10 -0.0968005)
(-0.134439 3.34411e-10 -0.0976153)
(-0.130385 3.44304e-10 -0.0983149)
(-0.126329 3.53735e-10 -0.0989017)
(-0.122275 3.62627e-10 -0.099378)
(-0.118226 3.708e-10 -0.0997465)
(-0.114188 3.78922e-10 -0.10001)
(-0.110163 3.86479e-10 -0.10017)
(-0.106157 3.93934e-10 -0.100231)
(-0.102171 4.00928e-10 -0.100195)
(-0.0982104 4.07767e-10 -0.100066)
(-0.0942779 4.14402e-10 -0.099845)
(-0.0903769 4.20934e-10 -0.0995365)
(-0.0865104 4.2721e-10 -0.0991432)
(-0.0826815 4.33384e-10 -0.0986682)
(-0.0788928 4.39558e-10 -0.0981145)
(-0.0751473 4.45373e-10 -0.0974852)
(-0.0714473 4.50932e-10 -0.0967834)
(-0.0677955 4.56338e-10 -0.096012)
(-0.064194 4.6159e-10 -0.095174)
(-0.0606452 4.66688e-10 -0.0942724)
(-0.057151 4.71787e-10 -0.0933099)
(-0.0537134 4.76578e-10 -0.0922894)
(-0.0503344 4.81267e-10 -0.0912136)
(-0.0470155 4.86008e-10 -0.0900851)
(-0.0437585 4.90646e-10 -0.0889065)
(-0.0405648 4.95234e-10 -0.0876801)
(-0.0374359 4.99668e-10 -0.0864082)
(-0.0343731 5.04154e-10 -0.0850932)
(-0.0313776 5.08589e-10 -0.083737)
(-0.0284506 5.12768e-10 -0.0823416)
(-0.0255931 5.17152e-10 -0.0809089)
(-0.0228061 5.21024e-10 -0.0794405)
(-0.0200906 5.24792e-10 -0.0779382)
(-0.0174473 5.28253e-10 -0.0764032)
(-0.014877 5.31303e-10 -0.0748369)
(-0.0123805 5.33838e-10 -0.0732404)
(-0.00995843 5.35346e-10 -0.071615)
(-0.00761131 5.36083e-10 -0.0699614)
(-0.00533972 5.361e-10 -0.0682804)
(-0.00314414 5.3514e-10 -0.0665729)
(-0.00102503 5.32791e-10 -0.0648393)
(0.00101725 5.29363e-10 -0.0630801)
(0.00298231 5.23876e-10 -0.0612958)
(0.00486986 5.17051e-10 -0.0594867)
(0.00667966 5.08476e-10 -0.0576531)
(0.00841146 4.98151e-10 -0.0557952)
(0.0100651 4.85355e-10 -0.0539131)
(0.0116404 4.70962e-10 -0.0520071)
(0.0131374 4.54304e-10 -0.0500773)
(0.0145559 4.35687e-10 -0.0481239)
(0.0158959 4.15215e-10 -0.0461471)
(0.0171575 3.92835e-10 -0.0441472)
(0.0183408 3.69319e-10 -0.0421246)
(0.019446 3.44306e-10 -0.0400798)
(0.0204731 3.18156e-10 -0.0380133)
(0.0214226 2.91281e-10 -0.0359259)
(0.0222947 2.63473e-10 -0.0338185)
(0.0230899 2.35146e-10 -0.0316923)
(0.0238085 2.05885e-10 -0.0295487)
(0.0244513 1.75692e-10 -0.0273891)
(0.0250187 1.4369e-10 -0.0252155)
(0.0255116 1.09622e-10 -0.0230301)
(0.0259308 7.2353e-11 -0.0208352)
(0.0262772 3.01325e-11 -0.0186338)
(0.0265518 -1.79172e-11 -0.0164288)
(0.0267557 -7.40125e-11 -0.0142239)
(0.0268903 -1.39444e-10 -0.0120228)
(0.0269568 -2.15862e-10 -0.00982979)
(0.0269567 -3.04353e-10 -0.00764943)
(0.0268917 -4.06466e-10 -0.0054867)
(0.0267635 -5.22205e-10 -0.00334694)
(0.0265738 -6.5214e-10 -0.00123585)
(0.0263246 -7.95709e-10 0.000840522)
(0.026018 -9.51781e-10 0.00287579)
(0.0256562 -1.11819e-09 0.00486327)
(0.0252415 -1.29227e-09 0.006796)
(0.0247762 -1.47014e-09 0.00866676)
(0.0242628 -1.64748e-09 0.0104681)
(0.023704 -1.81902e-09 0.0121926)
(0.0231022 -1.98007e-09 0.0138325)
(0.0224602 -2.12629e-09 0.01538)
(0.0217808 -2.25426e-09 0.0168276)
(0.0210668 -2.36197e-09 0.0181676)
(0.0203208 -2.44832e-09 0.0193926)
(0.0195458 -2.51347e-09 0.0204953)
(0.0187445 -2.559e-09 0.021469)
(0.0179196 -2.58759e-09 0.022307)
(0.0170739 -2.60336e-09 0.0230035)
(0.0162101 -2.61405e-09 0.0235529)
(0.0153306 -2.62904e-09 0.0239503)
(0.014438 -2.65929e-09 0.0241918)
(0.0135347 -2.71335e-09 0.0242738)
(0.012623 -2.79866e-09 0.0241939)
(0.0117051 -2.92563e-09 0.0239502)
(0.0107832 -3.11368e-09 0.0235417)
(0.00985917 -3.38861e-09 0.0229682)
(0.00893512 -3.7608e-09 0.0222302)
(0.00801298 -4.2369e-09 0.0213283)
(0.00709473 -4.88682e-09 0.0202633)
(0.00618245 -5.89732e-09 0.0190352)
(0.0052784 -7.45424e-09 0.0176419)
(0.0043852 -9.63645e-09 0.0160771)
(0.00350615 -1.27117e-08 0.0143248)
(0.00264537 -1.74189e-08 0.0123478)
(0.00181107 -2.46247e-08 0.0100533)
(0.00103214 -3.00295e-08 0.0071655)
(0.000377978 -3.83578e-08 0.00281444)
(-0.00491521 4.43397e-07 0.115854)
(-0.0124113 1.37463e-07 0.128474)
(-0.0204915 7.14681e-08 0.135325)
(-0.0286559 4.91166e-08 0.140139)
(-0.036702 3.93806e-08 0.143934)
(-0.0446324 3.20051e-08 0.147079)
(-0.0524344 2.54381e-08 0.149739)
(-0.0601033 1.93226e-08 0.151999)
(-0.0676354 1.34815e-08 0.153903)
(-0.0750288 7.94053e-09 0.155479)
(-0.0822819 3.09414e-09 0.156743)
(-0.089394 -4.18323e-10 0.157707)
(-0.0963641 -1.63535e-09 0.15838)
(-0.103192 -2.90533e-10 0.158767)
(-0.109876 2.17333e-09 0.158876)
(-0.116417 3.68179e-09 0.158713)
(-0.122813 3.3179e-09 0.158284)
(-0.129064 1.69935e-09 0.157596)
(-0.135167 2.81058e-11 0.156656)
(-0.141122 -8.96863e-10 0.155471)
(-0.146927 -9.64837e-10 0.154048)
(-0.152581 -4.94277e-10 0.152396)
(-0.158081 1.19354e-10 0.150523)
(-0.163425 5.90672e-10 0.148435)
(-0.168612 7.81543e-10 0.146142)
(-0.173639 6.8675e-10 0.143652)
(-0.178504 4.07179e-10 0.140973)
(-0.183204 9.53339e-11 0.138112)
(-0.187739 -1.19727e-10 0.135078)
(-0.192104 -1.89059e-10 0.131878)
(-0.196299 -1.45432e-10 0.128521)
(-0.200321 -5.96665e-11 0.125015)
(-0.204168 8.02117e-12 0.121366)
(-0.207838 3.12293e-11 0.117583)
(-0.211329 1.27644e-11 0.113674)
(-0.21464 -3.28195e-11 0.109645)
(-0.21777 -9.19726e-11 0.105505)
(-0.220715 -1.53974e-10 0.10126)
(-0.223477 -2.09571e-10 0.0969188)
(-0.226053 -2.4825e-10 0.0924877)
(-0.228442 -2.61403e-10 0.0879745)
(-0.230644 -2.45895e-10 0.0833865)
(-0.232659 -2.05919e-10 0.078731)
(-0.234485 -1.53633e-10 0.0740154)
(-0.236123 -1.03458e-10 0.0692469)
(-0.237573 -6.83965e-11 0.0644328)
(-0.238835 -5.52582e-11 0.0595806)
(-0.23991 -6.35276e-11 0.0546974)
(-0.240798 -8.70097e-11 0.0497905)
(-0.241499 -1.16555e-10 0.0448673)
(-0.242016 -1.44069e-10 0.0399348)
(-0.242349 -1.63924e-10 0.0350004)
(-0.242499 -1.74013e-10 0.030071)
(-0.242469 -1.75186e-10 0.0251538)
(-0.24226 -1.69472e-10 0.0202558)
(-0.241874 -1.588e-10 0.0153837)
(-0.241314 -1.44557e-10 0.0105445)
(-0.240581 -1.27462e-10 0.00574478)
(-0.23968 -1.07954e-10 0.000991065)
(-0.238611 -8.63393e-11 -0.00371026)
(-0.237379 -6.34927e-11 -0.00835293)
(-0.235986 -4.06214e-11 -0.0129309)
(-0.234436 -1.94467e-11 -0.0174382)
(-0.232733 -1.12446e-12 -0.0218693)
(-0.23088 1.40629e-11 -0.0262187)
(-0.228881 2.63981e-11 -0.0304811)
(-0.22674 3.64721e-11 -0.0346516)
(-0.224462 4.52357e-11 -0.0387254)
(-0.22205 5.37162e-11 -0.0426981)
(-0.21951 6.28129e-11 -0.0465654)
(-0.216845 7.32707e-11 -0.0503234)
(-0.214061 8.50894e-11 -0.0539685)
(-0.211162 9.83717e-11 -0.0574974)
(-0.208153 1.12758e-10 -0.0609069)
(-0.20504 1.28069e-10 -0.0641943)
(-0.201826 1.43559e-10 -0.0673572)
(-0.198518 1.59305e-10 -0.0703933)
(-0.195121 1.74897e-10 -0.0733009)
(-0.191639 1.90155e-10 -0.0760783)
(-0.188079 2.0477e-10 -0.0787243)
(-0.184445 2.19077e-10 -0.0812378)
(-0.180742 2.32768e-10 -0.0836183)
(-0.176976 2.46201e-10 -0.0858652)
(-0.173153 2.59455e-10 -0.0879784)
(-0.169276 2.72502e-10 -0.089958)
(-0.165353 2.85525e-10 -0.0918045)
(-0.161387 2.98342e-10 -0.0935184)
(-0.157384 3.11184e-10 -0.0951006)
(-0.153349 3.23821e-10 -0.0965523)
(-0.149287 3.36125e-10 -0.0978746)
(-0.145203 3.4812e-10 -0.0990693)
(-0.141102 3.59397e-10 -0.100138)
(-0.136987 3.70135e-10 -0.101082)
(-0.132865 3.80333e-10 -0.101905)
(-0.12874 3.89762e-10 -0.102607)
(-0.124615 3.986e-10 -0.103193)
(-0.120496 4.06694e-10 -0.103663)
(-0.116386 4.14171e-10 -0.104021)
(-0.112289 4.21264e-10 -0.10427)
(-0.10821 4.27947e-10 -0.104413)
(-0.104152 4.34219e-10 -0.104451)
(-0.100118 4.40183e-10 -0.104389)
(-0.0961131 4.45737e-10 -0.10423)
(-0.0921395 4.50932e-10 -0.103976)
(-0.0882008 4.56128e-10 -0.103631)
(-0.0843 4.61118e-10 -0.103198)
(-0.08044 4.65699e-10 -0.102681)
(-0.0766237 4.70331e-10 -0.102081)
(-0.0728537 4.74552e-10 -0.101404)
(-0.0691327 4.78415e-10 -0.100651)
(-0.0654629 4.82021e-10 -0.0998262)
(-0.0618467 4.85577e-10 -0.0989325)
(-0.0582861 4.88876e-10 -0.0979728)
(-0.0547833 4.92124e-10 -0.0969503)
(-0.0513401 4.95065e-10 -0.0958678)
(-0.0479583 4.97903e-10 -0.0947281)
(-0.0446396 5.00588e-10 -0.0935339)
(-0.0413855 5.0317e-10 -0.092288)
(-0.0381975 5.05805e-10 -0.0909928)
(-0.0350769 5.08182e-10 -0.0896508)
(-0.032025 5.10509e-10 -0.0882643)
(-0.0290429 5.12734e-10 -0.0868354)
(-0.0261317 5.14958e-10 -0.0853662)
(-0.0232924 5.1708e-10 -0.0838587)
(-0.0205259 5.18792e-10 -0.0823146)
(-0.0178331 5.20298e-10 -0.0807355)
(-0.0152146 5.2165e-10 -0.079123)
(-0.0126712 5.22128e-10 -0.0774785)
(-0.0102036 5.22093e-10 -0.0758032)
(-0.00781217 5.21286e-10 -0.0740982)
(-0.0054976 5.19657e-10 -0.0723645)
(-0.00326029 5.1736e-10 -0.070603)
(-0.00110068 5.13725e-10 -0.0688144)
(0.00098092 5.08908e-10 -0.0669994)
(0.00298412 5.02547e-10 -0.0651585)
(0.00490871 4.94489e-10 -0.0632922)
(0.00675443 4.85246e-10 -0.0614008)
(0.0085211 4.73997e-10 -0.0594846)
(0.0102086 4.6074e-10 -0.057544)
(0.0118168 4.45527e-10 -0.0555791)
(0.0133456 4.28409e-10 -0.0535902)
(0.0147951 4.09487e-10 -0.0515775)
(0.0161652 3.88762e-10 -0.0495412)
(0.017456 3.66542e-10 -0.0474816)
(0.0186676 3.42671e-10 -0.045399)
(0.0198002 3.17716e-10 -0.0432938)
(0.0208541 2.91521e-10 -0.0411667)
(0.0218294 2.64652e-10 -0.0390182)
(0.0227266 2.37212e-10 -0.0368492)
(0.023546 2.0884e-10 -0.0346606)
(0.0242882 1.80205e-10 -0.0324537)
(0.0249536 1.50278e-10 -0.0302299)
(0.0255429 1.19314e-10 -0.027991)
(0.0260568 8.61309e-11 -0.0257388)
(0.0264961 4.94913e-11 -0.0234756)
(0.0268617 8.57065e-12 -0.0212039)
(0.0271546 -3.82798e-11 -0.0189268)
(0.027376 -9.30701e-11 -0.0166473)
(0.0275269 -1.57141e-10 -0.0143692)
(0.0276087 -2.32453e-10 -0.0120963)
(0.0276229 -3.20297e-10 -0.00983304)
(0.027571 -4.21551e-10 -0.00758411)
(0.0274546 -5.36942e-10 -0.0053546)
(0.0272755 -6.66369e-10 -0.00314997)
(0.0270357 -8.09271e-10 -0.000976051)
(0.0267371 -9.64619e-10 0.00116099)
(0.0263818 -1.12964e-09 0.00325465)
(0.0259722 -1.30169e-09 0.00529813)
(0.0255106 -1.47698e-09 0.00728436)
(0.0249994 -1.6507e-09 0.00920602)
(0.0244412 -1.81775e-09 0.0110556)
(0.0238385 -1.97286e-09 0.0128255)
(0.0231942 -2.11093e-09 0.014508)
(0.022511 -2.22833e-09 0.0160952)
(0.0217916 -2.32265e-09 0.0175796)
(0.0210391 -2.39293e-09 0.0189534)
(0.0202562 -2.4402e-09 0.0202092)
(0.019446 -2.46699e-09 0.0213398)
(0.0186112 -2.47751e-09 0.0223383)
(0.0177548 -2.47625e-09 0.0231983)
(0.0168797 -2.47064e-09 0.0239139)
(0.0159886 -2.46799e-09 0.0244795)
(0.0150844 -2.47914e-09 0.0248906)
(0.0141698 -2.51431e-09 0.0251429)
(0.0132472 -2.58197e-09 0.0252333)
(0.0123195 -2.68706e-09 0.0251593)
(0.0113889 -2.83928e-09 0.0249191)
(0.010458 -3.05463e-09 0.0245118)
(0.00952901 -3.35704e-09 0.0239374)
(0.00860435 -3.75679e-09 0.0231961)
(0.00768633 -4.26094e-09 0.0222888)
(0.00677727 -4.93576e-09 0.0212162)
(0.00587963 -5.95547e-09 0.0199779)
(0.00499606 -7.49644e-09 0.0185719)
(0.00412954 -9.62966e-09 0.0169911)
(0.00328369 -1.25993e-08 0.0152187)
(0.00246295 -1.70841e-08 0.0132159)
(0.00167554 -2.38686e-08 0.0108864)
(0.000948606 -2.8223e-08 0.00794382)
(0.000345296 -2.68639e-08 0.00346417)
(-0.00491519 4.43396e-07 0.115854)
(-0.0124113 1.37462e-07 0.128474)
(-0.0204915 7.14676e-08 0.135325)
(-0.028656 4.91163e-08 0.140139)
(-0.036702 3.93804e-08 0.143934)
(-0.0446324 3.20049e-08 0.147079)
(-0.0524344 2.5438e-08 0.149739)
(-0.0601032 1.93225e-08 0.151999)
(-0.0676354 1.34814e-08 0.153903)
(-0.0750288 7.94048e-09 0.155479)
(-0.0822819 3.09412e-09 0.156743)
(-0.0893939 -4.1832e-10 0.157707)
(-0.0963641 -1.63534e-09 0.15838)
(-0.103192 -2.90531e-10 0.158767)
(-0.109876 2.17332e-09 0.158876)
(-0.116417 3.68177e-09 0.158713)
(-0.122813 3.31788e-09 0.158284)
(-0.129064 1.69934e-09 0.157596)
(-0.135167 2.81056e-11 0.156656)
(-0.141122 -8.96858e-10 0.155471)
(-0.146927 -9.64832e-10 0.154048)
(-0.152581 -4.94274e-10 0.152396)
(-0.158081 1.19353e-10 0.150523)
(-0.163425 5.90669e-10 0.148435)
(-0.168612 7.81539e-10 0.146142)
(-0.173639 6.86747e-10 0.143652)
(-0.178504 4.07177e-10 0.140973)
(-0.183204 9.53335e-11 0.138112)
(-0.187739 -1.19727e-10 0.135078)
(-0.192104 -1.89058e-10 0.131878)
(-0.196299 -1.45432e-10 0.128521)
(-0.200321 -5.96663e-11 0.125015)
(-0.204168 8.02115e-12 0.121366)
(-0.207838 3.12292e-11 0.117583)
(-0.211329 1.27643e-11 0.113674)
(-0.21464 -3.28194e-11 0.109645)
(-0.21777 -9.19723e-11 0.105505)
(-0.220715 -1.53974e-10 0.10126)
(-0.223477 -2.09571e-10 0.0969188)
(-0.226053 -2.4825e-10 0.0924877)
(-0.228442 -2.61402e-10 0.0879746)
(-0.230644 -2.45894e-10 0.0833865)
(-0.232659 -2.05918e-10 0.0787311)
(-0.234485 -1.53633e-10 0.0740154)
(-0.236123 -1.03458e-10 0.0692469)
(-0.237573 -6.83963e-11 0.0644329)
(-0.238835 -5.52581e-11 0.0595806)
(-0.23991 -6.35275e-11 0.0546974)
(-0.240798 -8.70095e-11 0.0497906)
(-0.241499 -1.16555e-10 0.0448673)
(-0.242016 -1.44069e-10 0.0399348)
(-0.242349 -1.63923e-10 0.0350004)
(-0.242499 -1.74013e-10 0.030071)
(-0.242469 -1.75185e-10 0.0251538)
(-0.24226 -1.69472e-10 0.0202558)
(-0.241874 -1.58799e-10 0.0153837)
(-0.241314 -1.44556e-10 0.0105445)
(-0.240581 -1.27462e-10 0.0057448)
(-0.23968 -1.07953e-10 0.000991083)
(-0.238611 -8.63391e-11 -0.00371024)
(-0.237379 -6.34926e-11 -0.00835291)
(-0.235986 -4.06213e-11 -0.0129309)
(-0.234436 -1.94466e-11 -0.0174382)
(-0.232733 -1.12446e-12 -0.0218693)
(-0.23088 1.40628e-11 -0.0262187)
(-0.228881 2.6398e-11 -0.0304811)
(-0.22674 3.64721e-11 -0.0346516)
(-0.224462 4.52356e-11 -0.0387254)
(-0.22205 5.37161e-11 -0.042698)
(-0.21951 6.28128e-11 -0.0465653)
(-0.216845 7.32705e-11 -0.0503234)
(-0.214061 8.50892e-11 -0.0539685)
(-0.211162 9.83716e-11 -0.0574973)
(-0.208153 1.12758e-10 -0.0609069)
(-0.20504 1.28069e-10 -0.0641943)
(-0.201826 1.43559e-10 -0.0673572)
(-0.198518 1.59305e-10 -0.0703933)
(-0.195121 1.74897e-10 -0.0733009)
(-0.191639 1.90155e-10 -0.0760783)
(-0.188079 2.0477e-10 -0.0787243)
(-0.184445 2.19077e-10 -0.0812378)
(-0.180742 2.32767e-10 -0.0836182)
(-0.176976 2.46201e-10 -0.0858651)
(-0.173153 2.59454e-10 -0.0879784)
(-0.169276 2.72502e-10 -0.089958)
(-0.165353 2.85524e-10 -0.0918045)
(-0.161387 2.98341e-10 -0.0935184)
(-0.157384 3.11183e-10 -0.0951006)
(-0.153349 3.23821e-10 -0.0965523)
(-0.149287 3.36124e-10 -0.0978746)
(-0.145203 3.4812e-10 -0.0990692)
(-0.141102 3.59396e-10 -0.100138)
(-0.136988 3.70134e-10 -0.101082)
(-0.132865 3.80332e-10 -0.101905)
(-0.12874 3.89761e-10 -0.102607)
(-0.124615 3.98599e-10 -0.103193)
(-0.120496 4.06692e-10 -0.103663)
(-0.116386 4.1417e-10 -0.104021)
(-0.112289 4.21263e-10 -0.10427)
(-0.10821 4.27946e-10 -0.104413)
(-0.104152 4.34218e-10 -0.104451)
(-0.100118 4.40182e-10 -0.104389)
(-0.0961132 4.45736e-10 -0.10423)
(-0.0921396 4.50931e-10 -0.103976)
(-0.0882008 4.56127e-10 -0.103631)
(-0.0843 4.61117e-10 -0.103198)
(-0.08044 4.65697e-10 -0.102681)
(-0.0766237 4.70329e-10 -0.102081)
(-0.0728538 4.74551e-10 -0.101404)
(-0.0691327 4.78414e-10 -0.100651)
(-0.0654629 4.8202e-10 -0.0998262)
(-0.0618467 4.85575e-10 -0.0989325)
(-0.0582862 4.88875e-10 -0.0979728)
(-0.0547834 4.92123e-10 -0.0969503)
(-0.0513402 4.95064e-10 -0.0958678)
(-0.0479584 4.97902e-10 -0.0947281)
(-0.0446397 5.00587e-10 -0.0935339)
(-0.0413856 5.03169e-10 -0.092288)
(-0.0381975 5.05803e-10 -0.0909928)
(-0.035077 5.08181e-10 -0.0896508)
(-0.032025 5.10508e-10 -0.0882643)
(-0.0290429 5.12732e-10 -0.0868354)
(-0.0261318 5.14957e-10 -0.0853662)
(-0.0232925 5.17079e-10 -0.0838587)
(-0.020526 5.1879e-10 -0.0823145)
(-0.0178331 5.20296e-10 -0.0807355)
(-0.0152146 5.21648e-10 -0.079123)
(-0.0126713 5.22127e-10 -0.0774785)
(-0.0102036 5.22091e-10 -0.0758032)
(-0.00781221 5.21285e-10 -0.0740982)
(-0.00549764 5.19656e-10 -0.0723645)
(-0.00326033 5.17358e-10 -0.070603)
(-0.00110071 5.13724e-10 -0.0688144)
(0.000980885 5.08906e-10 -0.0669994)
(0.00298409 5.02546e-10 -0.0651585)
(0.00490867 4.94487e-10 -0.0632922)
(0.00675439 4.85245e-10 -0.0614008)
(0.00852107 4.73995e-10 -0.0594846)
(0.0102086 4.60739e-10 -0.057544)
(0.0118167 4.45526e-10 -0.0555791)
(0.0133456 4.28407e-10 -0.0535902)
(0.014795 4.09486e-10 -0.0515775)
(0.0161651 3.88761e-10 -0.0495412)
(0.0174559 3.66541e-10 -0.0474816)
(0.0186676 3.4267e-10 -0.045399)
(0.0198002 3.17715e-10 -0.0432938)
(0.020854 2.9152e-10 -0.0411667)
(0.0218294 2.64652e-10 -0.0390182)
(0.0227266 2.37212e-10 -0.0368492)
(0.023546 2.0884e-10 -0.0346606)
(0.0242881 1.80205e-10 -0.0324537)
(0.0249535 1.50277e-10 -0.0302299)
(0.0255428 1.19314e-10 -0.027991)
(0.0260567 8.61307e-11 -0.0257388)
(0.026496 4.94911e-11 -0.0234756)
(0.0268617 8.57062e-12 -0.0212039)
(0.0271546 -3.82797e-11 -0.0189268)
(0.0273759 -9.30698e-11 -0.0166473)
(0.0275268 -1.57141e-10 -0.0143692)
(0.0276087 -2.32452e-10 -0.0120963)
(0.0276229 -3.20296e-10 -0.00983303)
(0.0275709 -4.2155e-10 -0.0075841)
(0.0274545 -5.3694e-10 -0.00535458)
(0.0272755 -6.66367e-10 -0.00314996)
(0.0270356 -8.09268e-10 -0.000976036)
(0.026737 -9.64617e-10 0.00116101)
(0.0263818 -1.12963e-09 0.00325467)
(0.0259722 -1.30169e-09 0.00529815)
(0.0255106 -1.47697e-09 0.00728438)
(0.0249994 -1.65069e-09 0.00920604)
(0.0244411 -1.81774e-09 0.0110556)
(0.0238385 -1.97285e-09 0.0128255)
(0.0231942 -2.11092e-09 0.014508)
(0.0225109 -2.22833e-09 0.0160953)
(0.0217916 -2.32264e-09 0.0175796)
(0.0210391 -2.39292e-09 0.0189534)
(0.0202562 -2.4402e-09 0.0202092)
(0.0194459 -2.46698e-09 0.0213398)
(0.0186112 -2.47751e-09 0.0223383)
(0.0177548 -2.47625e-09 0.0231983)
(0.0168797 -2.47063e-09 0.0239139)
(0.0159886 -2.46798e-09 0.0244795)
(0.0150844 -2.47913e-09 0.0248906)
(0.0141697 -2.51431e-09 0.0251429)
(0.0132472 -2.58196e-09 0.0252333)
(0.0123194 -2.68705e-09 0.0251593)
(0.0113889 -2.83928e-09 0.0249191)
(0.0104579 -3.05462e-09 0.0245118)
(0.00952898 -3.35703e-09 0.0239374)
(0.00860433 -3.75678e-09 0.0231961)
(0.0076863 -4.26093e-09 0.0222888)
(0.00677724 -4.93575e-09 0.0212162)
(0.0058796 -5.95545e-09 0.0199779)
(0.00499603 -7.49641e-09 0.0185719)
(0.0041295 -9.62963e-09 0.016991)
(0.00328364 -1.25993e-08 0.0152186)
(0.0024629 -1.7084e-08 0.0132158)
(0.00167549 -2.38685e-08 0.0108862)
(0.000948522 -2.82231e-08 0.00794367)
(0.000345152 -2.68639e-08 0.00346401)
(-0.00496687 5.93129e-07 0.124491)
(-0.0126171 1.68473e-07 0.137199)
(-0.0208361 8.77827e-08 0.144007)
(-0.0291542 5.81102e-08 0.14873)
(-0.0373612 4.53635e-08 0.152411)
(-0.0454601 3.72363e-08 0.155429)
(-0.0534364 3.08923e-08 0.157954)
(-0.0612839 2.53664e-08 0.160073)
(-0.0689972 2.00933e-08 0.161833)
(-0.076573 1.45895e-08 0.163262)
(-0.0840082 8.89678e-09 0.164378)
(-0.0913005 3.29438e-09 0.165192)
(-0.098448 -6.29283e-10 0.165713)
(-0.105449 -1.08123e-09 0.165948)
(-0.112301 1.26997e-09 0.165903)
(-0.119004 3.71176e-09 0.165585)
(-0.125556 4.19319e-09 0.165)
(-0.131954 2.73452e-09 0.164154)
(-0.138197 6.60978e-10 0.163054)
(-0.144284 -7.98504e-10 0.161708)
(-0.150212 -1.21002e-09 0.160123)
(-0.15598 -8.07803e-10 0.158306)
(-0.161585 -6.90174e-11 0.156265)
(-0.167026 5.95e-10 0.154009)
(-0.172299 9.48123e-10 0.151545)
(-0.177404 9.34488e-10 0.148881)
(-0.182338 6.4777e-10 0.146026)
(-0.187099 2.66465e-10 0.142987)
(-0.191685 -3.74809e-11 0.139772)
(-0.196093 -1.76184e-10 0.13639)
(-0.200322 -1.64545e-10 0.132848)
(-0.20437 -7.77167e-11 0.129155)
(-0.208235 7.66872e-12 0.125318)
(-0.211915 4.99193e-11 0.121345)
(-0.215408 4.47978e-11 0.117243)
(-0.218714 6.0336e-12 0.11302)
(-0.221831 -5.10781e-11 0.108685)
(-0.224757 -1.1497e-10 0.104244)
(-0.227493 -1.77239e-10 0.0997044)
(-0.230036 -2.27425e-10 0.0950748)
(-0.232386 -2.55377e-10 0.0903623)
(-0.234543 -2.54032e-10 0.0855745)
(-0.236506 -2.2424e-10 0.0807189)
(-0.238276 -1.75047e-10 0.0758029)
(-0.239852 -1.20846e-10 0.0708342)
(-0.241234 -7.65921e-11 0.0658201)
(-0.242424 -5.24329e-11 0.0607683)
(-0.243421 -5.07312e-11 0.0556863)
(-0.244227 -6.75799e-11 0.0505815)
(-0.244843 -9.46791e-11 0.0454613)
(-0.245269 -1.23036e-10 0.0403333)
(-0.245508 -1.45842e-10 0.0352048)
(-0.245561 -1.59912e-10 0.0300831)
(-0.245429 -1.64835e-10 0.0249755)
(-0.245116 -1.61923e-10 0.0198892)
(-0.244623 -1.53128e-10 0.0148313)
(-0.243952 -1.40018e-10 0.00980874)
(-0.243106 -1.23338e-10 0.00482845)
(-0.242089 -1.03293e-10 -0.000102864)
(-0.240903 -8.04756e-11 -0.0049786)
(-0.239551 -5.55784e-11 -0.00979232)
(-0.238037 -3.01943e-11 -0.0145378)
(-0.236364 -5.89003e-12 -0.0192088)
(-0.234537 1.58447e-11 -0.0237997)
(-0.232559 3.4522e-11 -0.0283048)
(-0.230433 4.99366e-11 -0.0327187)
(-0.228166 6.27309e-11 -0.0370362)
(-0.22576 7.35983e-11 -0.0412524)
(-0.22322 8.38233e-11 -0.0453628)
(-0.220552 9.4433e-11 -0.0493629)
(-0.217759 1.0589e-10 -0.0532488)
(-0.214847 1.18836e-10 -0.0570167)
(-0.211821 1.32988e-10 -0.0606631)
(-0.208686 1.48373e-10 -0.0641849)
(-0.205447 1.64707e-10 -0.0675793)
(-0.202109 1.81375e-10 -0.0708436)
(-0.198677 1.9812e-10 -0.0739757)
(-0.195158 2.14735e-10 -0.0769737)
(-0.191556 2.31042e-10 -0.0798359)
(-0.187877 2.46605e-10 -0.0825611)
(-0.184126 2.61447e-10 -0.0851482)
(-0.180308 2.75802e-10 -0.0875966)
(-0.17643 2.89772e-10 -0.0899058)
(-0.172496 3.03202e-10 -0.0920758)
(-0.168512 3.16427e-10 -0.0941066)
(-0.164484 3.29292e-10 -0.0959988)
(-0.160415 3.42157e-10 -0.0977529)
(-0.156313 3.54637e-10 -0.0993699)
(-0.152181 3.67092e-10 -0.100851)
(-0.148026 3.79008e-10 -0.102198)
(-0.143851 3.90513e-10 -0.103411)
(-0.139662 4.01427e-10 -0.104494)
(-0.135464 4.11649e-10 -0.105448)
(-0.131262 4.21101e-10 -0.106274)
(-0.127059 4.29885e-10 -0.106976)
(-0.122861 4.38002e-10 -0.107557)
(-0.118671 4.45247e-10 -0.108018)
(-0.114494 4.51747e-10 -0.108362)
(-0.110335 4.57812e-10 -0.108593)
(-0.106196 4.63466e-10 -0.108713)
(-0.102082 4.68452e-10 -0.108726)
(-0.0979964 4.73132e-10 -0.108634)
(-0.0939425 4.77426e-10 -0.108441)
(-0.0899239 4.81233e-10 -0.108151)
(-0.0859436 4.8499e-10 -0.107766)
(-0.0820049 4.88284e-10 -0.10729)
(-0.0781105 4.91323e-10 -0.106726)
(-0.0742633 4.94259e-10 -0.106077)
(-0.0704659 4.96682e-10 -0.105348)
(-0.0667208 4.98849e-10 -0.104541)
(-0.0630303 5.0076e-10 -0.103659)
(-0.0593968 5.02414e-10 -0.102706)
(-0.0558221 5.03864e-10 -0.101685)
(-0.0523084 5.05211e-10 -0.100599)
(-0.0488574 5.06353e-10 -0.0994514)
(-0.0454709 5.07187e-10 -0.0982447)
(-0.0421505 5.07816e-10 -0.0969818)
(-0.0388976 5.08497e-10 -0.0956657)
(-0.0357136 5.09024e-10 -0.0942989)
(-0.0325999 5.09398e-10 -0.0928839)
(-0.0295575 5.09874e-10 -0.0914231)
(-0.0265875 5.0994e-10 -0.0899189)
(-0.023691 5.10108e-10 -0.0883733)
(-0.0208689 5.1002e-10 -0.0867884)
(-0.0181219 5.09573e-10 -0.0851661)
(-0.0154508 5.09022e-10 -0.083508)
(-0.0128564 5.07701e-10 -0.0818158)
(-0.0103392 5.06226e-10 -0.0800909)
(-0.00789977 5.03774e-10 -0.0783346)
(-0.0055386 5.00808e-10 -0.0765481)
(-0.00325613 4.96814e-10 -0.0747324)
(-0.00105276 4.92048e-10 -0.0728886)
(0.00107123 4.86048e-10 -0.0710172)
(0.00311547 4.78506e-10 -0.0691191)
(0.00507979 4.6978e-10 -0.0671949)
(0.00696397 4.5951e-10 -0.065245)
(0.00876786 4.47697e-10 -0.0632698)
(0.0104914 4.3398e-10 -0.0612698)
(0.0121344 4.18255e-10 -0.0592452)
(0.0136969 4.0078e-10 -0.0571964)
(0.015179 3.81348e-10 -0.0551235)
(0.0165806 3.60473e-10 -0.0530268)
(0.0179019 3.38001e-10 -0.0509066)
(0.019143 3.14136e-10 -0.0487633)
(0.0203041 2.89238e-10 -0.0465972)
(0.0213854 2.63358e-10 -0.0444088)
(0.0223872 2.36496e-10 -0.0421987)
(0.0233099 2.09165e-10 -0.0399676)
(0.0241538 1.81367e-10 -0.0377165)
(0.0249195 1.52894e-10 -0.0354463)
(0.0256075 1.23849e-10 -0.0331584)
(0.0262185 9.34087e-11 -0.0308542)
(0.026753 6.08009e-11 -0.0285356)
(0.0272119 2.53041e-11 -0.0262047)
(0.0275961 -1.44205e-11 -0.0238637)
(0.0279064 -6.01756e-11 -0.0215153)
(0.0281441 -1.13353e-10 -0.0191625)
(0.0283102 -1.76014e-10 -0.0168087)
(0.028406 -2.49757e-10 -0.0144576)
(0.0284329 -3.36284e-10 -0.0121132)
(0.0283924 -4.36321e-10 -0.00978007)
(0.0282861 -5.50746e-10 -0.007463)
(0.0281157 -6.7946e-10 -0.00516722)
(0.0278831 -8.21489e-10 -0.0028983)
(0.0275901 -9.75291e-10 -0.000662204)
(0.0272391 -1.13871e-09 0.00153479)
(0.026832 -1.30828e-09 0.00368605)
(0.0263712 -1.48036e-09 0.00578466)
(0.0258592 -1.65021e-09 0.00782344)
(0.0252985 -1.81235e-09 0.00979499)
(0.0246917 -1.96184e-09 0.0116917)
(0.0240416 -2.09306e-09 0.0135059)
(0.0233508 -2.20181e-09 0.0152297)
(0.0226223 -2.28521e-09 0.0168553)
(0.0218591 -2.34206e-09 0.0183749)
(0.0210641 -2.37396e-09 0.0197809)
(0.0202402 -2.38351e-09 0.0210658)
(0.0193907 -2.37634e-09 0.0222224)
(0.0185184 -2.35832e-09 0.0232438)
(0.0176266 -2.33682e-09 0.0241237)
(0.0167181 -2.32004e-09 0.024856)
(0.0157961 -2.31654e-09 0.0254354)
(0.0148634 -2.33603e-09 0.0258572)
(0.0139231 -2.38852e-09 0.0261175)
(0.0129781 -2.47936e-09 0.0262129)
(0.012031 -2.61208e-09 0.0261412)
(0.0110848 -2.79274e-09 0.0259007)
(0.0101422 -3.03413e-09 0.0254904)
(0.00920586 -3.35751e-09 0.0249104)
(0.00827843 -3.77438e-09 0.024161)
(0.00736261 -4.29046e-09 0.023243)
(0.00646113 -4.96912e-09 0.0221569)
(0.00557681 -5.97355e-09 0.0209025)
(0.00471268 -7.46781e-09 0.0194771)
(0.00387208 -9.51451e-09 0.0178734)
(0.00305896 -1.2329e-08 0.0160738)
(0.00227808 -1.65216e-08 0.0140377)
(0.00153766 -2.27897e-08 0.0116657)
(0.000863108 -2.59941e-08 0.00866209)
(0.000311078 -1.50217e-08 0.00405717)
(-0.00496695 5.93127e-07 0.124491)
(-0.0126172 1.68472e-07 0.137198)
(-0.0208361 8.77822e-08 0.144006)
(-0.0291542 5.81099e-08 0.14873)
(-0.0373612 4.53632e-08 0.152411)
(-0.0454601 3.72361e-08 0.155429)
(-0.0534364 3.08921e-08 0.157954)
(-0.0612838 2.53663e-08 0.160073)
(-0.0689972 2.00932e-08 0.161833)
(-0.0765729 1.45894e-08 0.163262)
(-0.0840081 8.89673e-09 0.164378)
(-0.0913004 3.29436e-09 0.165192)
(-0.0984479 -6.29278e-10 0.165713)
(-0.105449 -1.08122e-09 0.165948)
(-0.112301 1.26996e-09 0.165903)
(-0.119004 3.71174e-09 0.165585)
(-0.125556 4.19316e-09 0.165)
(-0.131954 2.73451e-09 0.164154)
(-0.138197 6.60974e-10 0.163054)
(-0.144284 -7.985e-10 0.161708)
(-0.150212 -1.21002e-09 0.160123)
(-0.15598 -8.07799e-10 0.158306)
(-0.161585 -6.9017e-11 0.156265)
(-0.167026 5.94998e-10 0.154009)
(-0.172299 9.48119e-10 0.151545)
(-0.177404 9.34485e-10 0.148881)
(-0.182338 6.47767e-10 0.146026)
(-0.187099 2.66464e-10 0.142987)
(-0.191685 -3.74807e-11 0.139772)
(-0.196093 -1.76184e-10 0.13639)
(-0.200322 -1.64545e-10 0.132848)
(-0.20437 -7.77165e-11 0.129155)
(-0.208235 7.6687e-12 0.125318)
(-0.211915 4.99191e-11 0.121345)
(-0.215408 4.47977e-11 0.117243)
(-0.218714 6.03358e-12 0.11302)
(-0.221831 -5.10779e-11 0.108685)
(-0.224757 -1.1497e-10 0.104244)
(-0.227493 -1.77239e-10 0.0997044)
(-0.230036 -2.27424e-10 0.0950748)
(-0.232386 -2.55377e-10 0.0903623)
(-0.234543 -2.54032e-10 0.0855745)
(-0.236506 -2.24239e-10 0.0807189)
(-0.238276 -1.75047e-10 0.0758029)
(-0.239852 -1.20846e-10 0.0708342)
(-0.241234 -7.65919e-11 0.0658201)
(-0.242424 -5.24328e-11 0.0607684)
(-0.243421 -5.07311e-11 0.0556863)
(-0.244227 -6.75798e-11 0.0505815)
(-0.244843 -9.4679e-11 0.0454613)
(-0.245269 -1.23036e-10 0.0403333)
(-0.245508 -1.45841e-10 0.0352048)
(-0.245561 -1.59911e-10 0.0300831)
(-0.245429 -1.64835e-10 0.0249755)
(-0.245116 -1.61922e-10 0.0198892)
(-0.244623 -1.53128e-10 0.0148313)
(-0.243952 -1.40018e-10 0.00980876)
(-0.243106 -1.23337e-10 0.00482847)
(-0.242089 -1.03293e-10 -0.000102846)
(-0.240903 -8.04755e-11 -0.00497858)
(-0.239551 -5.55783e-11 -0.0097923)
(-0.238037 -3.01942e-11 -0.0145377)
(-0.236364 -5.89002e-12 -0.0192088)
(-0.234537 1.58446e-11 -0.0237997)
(-0.232559 3.45219e-11 -0.0283048)
(-0.230433 4.99365e-11 -0.0327187)
(-0.228166 6.27308e-11 -0.0370361)
(-0.22576 7.35982e-11 -0.0412524)
(-0.22322 8.38231e-11 -0.0453627)
(-0.220552 9.44328e-11 -0.0493629)
(-0.217759 1.0589e-10 -0.0532488)
(-0.214847 1.18836e-10 -0.0570167)
(-0.211821 1.32988e-10 -0.0606631)
(-0.208686 1.48373e-10 -0.0641849)
(-0.205447 1.64707e-10 -0.0675792)
(-0.202109 1.81375e-10 -0.0708436)
(-0.198677 1.98119e-10 -0.0739757)
(-0.195158 2.14735e-10 -0.0769736)
(-0.191556 2.31042e-10 -0.0798359)
(-0.187877 2.46604e-10 -0.082561)
(-0.184126 2.61447e-10 -0.0851482)
(-0.180308 2.75802e-10 -0.0875966)
(-0.17643 2.89771e-10 -0.0899058)
(-0.172496 3.03201e-10 -0.0920758)
(-0.168512 3.16426e-10 -0.0941066)
(-0.164484 3.29291e-10 -0.0959987)
(-0.160415 3.42156e-10 -0.0977529)
(-0.156313 3.54637e-10 -0.0993699)
(-0.152181 3.67091e-10 -0.100851)
(-0.148026 3.79007e-10 -0.102198)
(-0.143851 3.90512e-10 -0.103411)
(-0.139662 4.01426e-10 -0.104494)
(-0.135464 4.11648e-10 -0.105447)
(-0.131262 4.21099e-10 -0.106274)
(-0.127059 4.29884e-10 -0.106976)
(-0.122861 4.38001e-10 -0.107557)
(-0.118671 4.45246e-10 -0.108018)
(-0.114495 4.51746e-10 -0.108362)
(-0.110335 4.5781e-10 -0.108593)
(-0.106196 4.63464e-10 -0.108713)
(-0.102082 4.68451e-10 -0.108726)
(-0.0979964 4.7313e-10 -0.108634)
(-0.0939425 4.77425e-10 -0.108441)
(-0.0899239 4.81232e-10 -0.108151)
(-0.0859437 4.84988e-10 -0.107766)
(-0.0820049 4.88283e-10 -0.10729)
(-0.0781105 4.91321e-10 -0.106726)
(-0.0742633 4.94258e-10 -0.106077)
(-0.0704659 4.96681e-10 -0.105348)
(-0.0667208 4.98848e-10 -0.104541)
(-0.0630304 5.00758e-10 -0.103659)
(-0.0593968 5.02413e-10 -0.102706)
(-0.0558222 5.03862e-10 -0.101685)
(-0.0523084 5.05209e-10 -0.100599)
(-0.0488575 5.06351e-10 -0.0994514)
(-0.045471 5.07185e-10 -0.0982447)
(-0.0421505 5.07815e-10 -0.0969818)
(-0.0388976 5.08496e-10 -0.0956657)
(-0.0357137 5.09023e-10 -0.0942989)
(-0.0325999 5.09396e-10 -0.0928839)
(-0.0295575 5.09872e-10 -0.0914231)
(-0.0265876 5.09938e-10 -0.0899189)
(-0.023691 5.10107e-10 -0.0883733)
(-0.0208689 5.10019e-10 -0.0867884)
(-0.0181219 5.09571e-10 -0.0851661)
(-0.0154509 5.0902e-10 -0.083508)
(-0.0128564 5.07699e-10 -0.0818158)
(-0.0103392 5.06224e-10 -0.0800909)
(-0.0078998 5.03772e-10 -0.0783346)
(-0.00553864 5.00806e-10 -0.0765481)
(-0.00325617 4.96812e-10 -0.0747324)
(-0.00105279 4.92047e-10 -0.0728886)
(0.00107119 4.86047e-10 -0.0710172)
(0.00311543 4.78504e-10 -0.0691191)
(0.00507975 4.69778e-10 -0.0671949)
(0.00696393 4.59509e-10 -0.065245)
(0.00876783 4.47696e-10 -0.0632698)
(0.0104913 4.33978e-10 -0.0612698)
(0.0121344 4.18254e-10 -0.0592452)
(0.0136969 4.00779e-10 -0.0571964)
(0.015179 3.81347e-10 -0.0551235)
(0.0165806 3.60472e-10 -0.0530268)
(0.0179019 3.38e-10 -0.0509066)
(0.0191429 3.14135e-10 -0.0487633)
(0.020304 2.89237e-10 -0.0465972)
(0.0213853 2.63357e-10 -0.0444088)
(0.0223871 2.36495e-10 -0.0421987)
(0.0233098 2.09165e-10 -0.0399676)
(0.0241538 1.81366e-10 -0.0377165)
(0.0249195 1.52893e-10 -0.0354463)
(0.0256075 1.23849e-10 -0.0331584)
(0.0262184 9.34084e-11 -0.0308542)
(0.0267529 6.08007e-11 -0.0285356)
(0.0272119 2.5304e-11 -0.0262047)
(0.027596 -1.44204e-11 -0.0238637)
(0.0279064 -6.01754e-11 -0.0215153)
(0.0281441 -1.13353e-10 -0.0191625)
(0.0283102 -1.76013e-10 -0.0168087)
(0.028406 -2.49756e-10 -0.0144575)
(0.0284329 -3.36283e-10 -0.0121132)
(0.0283924 -4.36319e-10 -0.00978006)
(0.0282861 -5.50744e-10 -0.00746299)
(0.0281157 -6.79458e-10 -0.0051672)
(0.027883 -8.21487e-10 -0.00289829)
(0.0275901 -9.75288e-10 -0.000662189)
(0.027239 -1.1387e-09 0.0015348)
(0.0268319 -1.30828e-09 0.00368606)
(0.0263712 -1.48036e-09 0.00578468)
(0.0258592 -1.6502e-09 0.00782346)
(0.0252985 -1.81235e-09 0.00979501)
(0.0246917 -1.96184e-09 0.0116917)
(0.0240415 -2.09305e-09 0.0135059)
(0.0233508 -2.20181e-09 0.0152297)
(0.0226223 -2.28521e-09 0.0168553)
(0.0218591 -2.34206e-09 0.0183749)
(0.021064 -2.37395e-09 0.0197809)
(0.0202402 -2.3835e-09 0.0210658)
(0.0193907 -2.37633e-09 0.0222224)
(0.0185184 -2.35831e-09 0.0232439)
(0.0176265 -2.33681e-09 0.0241237)
(0.0167181 -2.32003e-09 0.024856)
(0.015796 -2.31654e-09 0.0254354)
(0.0148634 -2.33603e-09 0.0258572)
(0.0139231 -2.38851e-09 0.0261175)
(0.012978 -2.47936e-09 0.026213)
(0.012031 -2.61207e-09 0.0261412)
(0.0110848 -2.79273e-09 0.0259007)
(0.0101422 -3.03413e-09 0.0254904)
(0.00920583 -3.3575e-09 0.0249104)
(0.0082784 -3.77437e-09 0.024161)
(0.00736258 -4.29045e-09 0.023243)
(0.0064611 -4.9691e-09 0.0221569)
(0.00557678 -5.97353e-09 0.0209025)
(0.00471265 -7.46778e-09 0.0194771)
(0.00387204 -9.51447e-09 0.0178734)
(0.00305891 -1.2329e-08 0.0160737)
(0.00227803 -1.65215e-08 0.0140377)
(0.00153761 -2.27897e-08 0.0116656)
(0.000863034 -2.59941e-08 0.00866193)
(0.000310954 -1.50217e-08 0.00405701)
(-0.00502573 5.7808e-07 0.133275)
(-0.0128406 1.2445e-07 0.146073)
(-0.0212086 5.80061e-08 0.152848)
(-0.02969 3.44639e-08 0.15749)
(-0.0380667 2.56325e-08 0.161065)
(-0.0463426 2.15261e-08 0.163963)
(-0.054501 1.94364e-08 0.166358)
(-0.0625345 1.80742e-08 0.16834)
(-0.0704362 1.69317e-08 0.169958)
(-0.0782012 1.49088e-08 0.171241)
(-0.0858251 1.16504e-08 0.172207)
(-0.0933042 6.3595e-09 0.172868)
(-0.100635 5.39429e-10 0.173234)
(-0.107816 -2.11969e-09 0.173311)
(-0.114842 -4.57836e-10 0.173107)
(-0.121713 2.84204e-09 0.172627)
(-0.128426 4.53019e-09 0.171878)
(-0.134978 3.63601e-09 0.170866)
(-0.141367 1.34428e-09 0.169599)
(-0.147592 -6.8986e-10 0.168083)
(-0.153649 -1.57374e-09 0.166325)
(-0.159536 -1.33505e-09 0.164334)
(-0.165252 -4.85702e-10 0.162117)
(-0.170794 4.21948e-10 0.159682)
(-0.176161 1.0169e-09 0.157037)
(-0.181349 1.15966e-09 0.15419)
(-0.186357 9.17128e-10 0.151149)
(-0.191182 4.87519e-10 0.147923)
(-0.195824 9.09175e-11 0.144518)
(-0.200279 -1.34686e-10 0.140945)
(-0.204546 -1.72834e-10 0.137209)
(-0.208624 -9.56082e-11 0.133321)
(-0.21251 4.97553e-12 0.129286)
(-0.216203 6.85741e-11 0.125114)
(-0.219702 7.92322e-11 0.120812)
(-0.223005 4.84411e-11 0.116387)
(-0.226112 -6.60455e-12 0.111849)
(-0.229021 -7.25154e-11 0.107204)
(-0.231731 -1.40657e-10 0.10246)
(-0.234243 -2.01214e-10 0.0976246)
(-0.236555 -2.43114e-10 0.0927061)
(-0.238667 -2.56877e-10 0.087712)
(-0.24058 -2.39242e-10 0.0826499)
(-0.242292 -1.96071e-10 0.0775276)
(-0.243806 -1.40595e-10 0.0723528)
(-0.24512 -8.88463e-11 0.0671333)
(-0.246236 -5.36187e-11 0.0618766)
(-0.247155 -4.09735e-11 0.0565906)
(-0.247877 -4.96245e-11 0.051283)
(-0.248404 -7.21207e-11 0.0459613)
(-0.248738 -9.96505e-11 0.0406333)
(-0.248879 -1.2461e-10 0.0353066)
(-0.248831 -1.41811e-10 0.0299886)
(-0.248595 -1.50305e-10 0.024687)
(-0.248173 -1.50501e-10 0.0194089)
(-0.247568 -1.44148e-10 0.0141619)
(-0.246783 -1.32556e-10 0.00895303)
(-0.245819 -1.16495e-10 0.00378939)
(-0.244682 -9.65829e-11 -0.00132207)
(-0.243373 -7.29991e-11 -0.00637454)
(-0.241896 -4.65142e-11 -0.0113614)
(-0.240255 -1.87722e-11 -0.0162762)
(-0.238453 8.40375e-12 -0.0211127)
(-0.236495 3.34213e-11 -0.0258648)
(-0.234385 5.5382e-11 -0.0305267)
(-0.232127 7.39777e-11 -0.035093)
(-0.229726 8.95169e-11 -0.0395582)
(-0.227186 1.02693e-10 -0.0439174)
(-0.224511 1.1479e-10 -0.0481658)
(-0.221708 1.26681e-10 -0.0522988)
(-0.21878 1.39419e-10 -0.0563125)
(-0.215734 1.53055e-10 -0.0602028)
(-0.212573 1.67898e-10 -0.0639662)
(-0.209304 1.84127e-10 -0.0675995)
(-0.205932 2.01202e-10 -0.0710997)
(-0.202462 2.18688e-10 -0.0744643)
(-0.1989 2.36302e-10 -0.077691)
(-0.195251 2.53864e-10 -0.0807778)
(-0.191521 2.70732e-10 -0.0837231)
(-0.187716 2.87087e-10 -0.0865255)
(-0.183841 3.02543e-10 -0.0891841)
(-0.179902 3.17254e-10 -0.0916982)
(-0.175904 3.314e-10 -0.0940673)
(-0.171853 3.44955e-10 -0.0962914)
(-0.167755 3.58049e-10 -0.0983707)
(-0.163614 3.70757e-10 -0.100306)
(-0.159437 3.8326e-10 -0.102097)
(-0.155229 3.95429e-10 -0.103746)
(-0.150994 4.07316e-10 -0.105253)
(-0.146739 4.18665e-10 -0.106621)
(-0.142468 4.29628e-10 -0.10785)
(-0.138186 4.39796e-10 -0.108943)
(-0.133898 4.49425e-10 -0.109902)
(-0.12961 4.58053e-10 -0.110729)
(-0.125324 4.66116e-10 -0.111427)
(-0.121047 4.73231e-10 -0.111999)
(-0.116782 4.79498e-10 -0.112446)
(-0.112534 4.8497e-10 -0.112773)
(-0.108307 4.89903e-10 -0.112982)
(-0.104104 4.94247e-10 -0.113076)
(-0.0999302 4.97975e-10 -0.113059)
(-0.0957881 5.01343e-10 -0.112934)
(-0.0916818 5.04045e-10 -0.112704)
(-0.0876143 5.06594e-10 -0.112373)
(-0.0835891 5.08629e-10 -0.111944)
(-0.079609 5.1046e-10 -0.11142)
(-0.0756771 5.11957e-10 -0.110806)
(-0.071796 5.12941e-10 -0.110105)
(-0.0679683 5.13721e-10 -0.10932)
(-0.0641964 5.1409e-10 -0.108455)
(-0.0604827 5.14151e-10 -0.107513)
(-0.0568294 5.13956e-10 -0.106497)
(-0.0532384 5.13505e-10 -0.105411)
(-0.0497117 5.12746e-10 -0.104259)
(-0.046251 5.11833e-10 -0.103042)
(-0.0428579 5.10664e-10 -0.101765)
(-0.039534 5.09495e-10 -0.100431)
(-0.0362808 5.08224e-10 -0.0990413)
(-0.0330994 5.06645e-10 -0.0975997)
(-0.0299911 5.04861e-10 -0.0961088)
(-0.0269569 5.03128e-10 -0.094571)
(-0.023998 5.01498e-10 -0.0929887)
(-0.0211151 4.99457e-10 -0.091364)
(-0.0183091 4.97365e-10 -0.0896992)
(-0.0155808 4.94707e-10 -0.0879961)
(-0.0129308 4.91998e-10 -0.0862566)
(-0.0103597 4.88621e-10 -0.0844823)
(-0.00786804 4.84679e-10 -0.0826747)
(-0.00545629 4.80274e-10 -0.0808353)
(-0.00312486 4.75047e-10 -0.0789652)
(-0.000874104 4.68945e-10 -0.0770656)
(0.0012957 4.61866e-10 -0.0751374)
(0.00338425 4.53245e-10 -0.0731815)
(0.00539138 4.43595e-10 -0.0711986)
(0.00731693 4.32556e-10 -0.0691893)
(0.00916078 4.20076e-10 -0.0671543)
(0.0109229 4.05642e-10 -0.0650939)
(0.0126031 3.89612e-10 -0.0630086)
(0.0142016 3.7178e-10 -0.0608988)
(0.0157183 3.52198e-10 -0.0587646)
(0.0171533 3.31327e-10 -0.0566066)
(0.0185068 3.08653e-10 -0.0544248)
(0.0197789 2.84639e-10 -0.0522198)
(0.0209698 2.59696e-10 -0.0499918)
(0.0220798 2.33925e-10 -0.0477413)
(0.0231091 2.07429e-10 -0.0454688)
(0.0240582 1.80311e-10 -0.043175)
(0.0249275 1.52674e-10 -0.0408607)
(0.0257173 1.24774e-10 -0.0385268)
(0.0264284 9.61487e-11 -0.0361745)
(0.0270612 6.64885e-11 -0.0338051)
(0.0276164 3.50216e-11 -0.0314202)
(0.0280949 6.15486e-13 -0.0290217)
(0.0284974 -3.80169e-11 -0.0266117)
(0.0288249 -8.2266e-11 -0.0241927)
(0.0290784 -1.33935e-10 -0.0217674)
(0.0292591 -1.94929e-10 -0.019339)
(0.0293681 -2.6695e-10 -0.0169108)
(0.0294068 -3.51545e-10 -0.0144868)
(0.0293766 -4.50159e-10 -0.0120711)
(0.0292791 -5.62899e-10 -0.00966834)
(0.0291159 -6.90181e-10 -0.00728343)
(0.0288889 -8.30618e-10 -0.00492174)
(0.0286 -9.8272e-10 -0.00258897)
(0.0282511 -1.14402e-09 -0.000291191)
(0.0278445 -1.31101e-09 0.00196517)
(0.0273824 -1.47958e-09 0.00417338)
(0.0268672 -1.64515e-09 0.0063264)
(0.0263015 -1.80234e-09 0.00841694)
(0.0256877 -1.94585e-09 0.0104375)
(0.0250287 -2.07058e-09 0.0123803)
(0.0243272 -2.17167e-09 0.0142377)
(0.0235861 -2.24643e-09 0.0160016)
(0.0228085 -2.29352e-09 0.0176643)
(0.0219973 -2.31277e-09 0.0192178)
(0.0211556 -2.3084e-09 0.0206545)
(0.0202868 -2.28571e-09 0.0219668)
(0.0193938 -2.25191e-09 0.0231475)
(0.0184799 -2.21557e-09 0.0241899)
(0.0175485 -2.1857e-09 0.0250873)
(0.0166026 -2.17025e-09 0.0258339)
(0.0156456 -2.17799e-09 0.0264244)
(0.0146806 -2.21695e-09 0.0268542)
(0.0137109 -2.29469e-09 0.0271192)
(0.0127396 -2.41429e-09 0.0272163)
(0.0117698 -2.57626e-09 0.0271431)
(0.0108047 -2.78194e-09 0.0268981)
(0.00984721 -3.04154e-09 0.0264805)
(0.00890047 -3.37276e-09 0.0258901)
(0.00796749 -3.78745e-09 0.0251273)
(0.00705133 -4.2943e-09 0.024193)
(0.00615509 -4.95304e-09 0.0230875)
(0.00528197 -5.91611e-09 0.0218105)
(0.00443539 -7.33376e-09 0.020359)
(0.00361902 -9.25932e-09 0.0187253)
(0.00283716 -1.18736e-08 0.0168909)
(0.00209488 -1.57098e-08 0.014814)
(0.00140043 -2.13782e-08 0.0123918)
(0.000777531 -2.3379e-08 0.00932047)
(0.000276222 -3.14813e-09 0.00459264)
(-0.00502592 5.78078e-07 0.133274)
(-0.0128407 1.24449e-07 0.146072)
(-0.0212086 5.80057e-08 0.152847)
(-0.02969 3.44637e-08 0.157489)
(-0.0380667 2.56324e-08 0.161065)
(-0.0463425 2.1526e-08 0.163962)
(-0.054501 1.94363e-08 0.166358)
(-0.0625345 1.80741e-08 0.16834)
(-0.0704362 1.69316e-08 0.169958)
(-0.0782012 1.49087e-08 0.171241)
(-0.0858251 1.16504e-08 0.172207)
(-0.0933041 6.35946e-09 0.172868)
(-0.100635 5.39425e-10 0.173234)
(-0.107816 -2.11968e-09 0.173311)
(-0.114842 -4.57833e-10 0.173107)
(-0.121713 2.84203e-09 0.172627)
(-0.128426 4.53016e-09 0.171878)
(-0.134978 3.63599e-09 0.170866)
(-0.141367 1.34427e-09 0.169599)
(-0.147592 -6.89856e-10 0.168083)
(-0.153649 -1.57373e-09 0.166325)
(-0.159536 -1.33504e-09 0.164334)
(-0.165252 -4.857e-10 0.162117)
(-0.170794 4.21946e-10 0.159682)
(-0.17616 1.0169e-09 0.157037)
(-0.181349 1.15966e-09 0.15419)
(-0.186357 9.17125e-10 0.151149)
(-0.191182 4.87517e-10 0.147923)
(-0.195824 9.09172e-11 0.144518)
(-0.200279 -1.34686e-10 0.140945)
(-0.204546 -1.72833e-10 0.137209)
(-0.208624 -9.56079e-11 0.133321)
(-0.21251 4.97551e-12 0.129286)
(-0.216203 6.85739e-11 0.125114)
(-0.219702 7.9232e-11 0.120812)
(-0.223005 4.8441e-11 0.116387)
(-0.226112 -6.60454e-12 0.111849)
(-0.229021 -7.25152e-11 0.107204)
(-0.231731 -1.40657e-10 0.10246)
(-0.234243 -2.01214e-10 0.0976246)
(-0.236555 -2.43114e-10 0.0927061)
(-0.238667 -2.56876e-10 0.087712)
(-0.24058 -2.39242e-10 0.0826499)
(-0.242292 -1.9607e-10 0.0775276)
(-0.243806 -1.40594e-10 0.0723528)
(-0.24512 -8.88461e-11 0.0671333)
(-0.246236 -5.36186e-11 0.0618766)
(-0.247155 -4.09734e-11 0.0565906)
(-0.247877 -4.96244e-11 0.051283)
(-0.248404 -7.21206e-11 0.0459613)
(-0.248738 -9.96503e-11 0.0406334)
(-0.248879 -1.2461e-10 0.0353066)
(-0.248831 -1.41811e-10 0.0299887)
(-0.248595 -1.50304e-10 0.024687)
(-0.248173 -1.50501e-10 0.019409)
(-0.247568 -1.44148e-10 0.0141619)
(-0.246783 -1.32555e-10 0.00895305)
(-0.245819 -1.16495e-10 0.00378941)
(-0.244682 -9.65827e-11 -0.00132205)
(-0.243373 -7.2999e-11 -0.00637452)
(-0.241896 -4.65142e-11 -0.0113614)
(-0.240255 -1.87721e-11 -0.0162762)
(-0.238453 8.40373e-12 -0.0211126)
(-0.236496 3.34213e-11 -0.0258648)
(-0.234385 5.53819e-11 -0.0305267)
(-0.232127 7.39776e-11 -0.035093)
(-0.229726 8.95167e-11 -0.0395582)
(-0.227186 1.02693e-10 -0.0439174)
(-0.224511 1.1479e-10 -0.0481657)
(-0.221708 1.26681e-10 -0.0522988)
(-0.21878 1.39419e-10 -0.0563124)
(-0.215734 1.53055e-10 -0.0602027)
(-0.212573 1.67898e-10 -0.0639661)
(-0.209304 1.84126e-10 -0.0675994)
(-0.205932 2.01202e-10 -0.0710997)
(-0.202462 2.18688e-10 -0.0744643)
(-0.1989 2.36301e-10 -0.077691)
(-0.195251 2.53863e-10 -0.0807778)
(-0.191522 2.70732e-10 -0.083723)
(-0.187716 2.87086e-10 -0.0865255)
(-0.183841 3.02542e-10 -0.0891841)
(-0.179902 3.17253e-10 -0.0916981)
(-0.175904 3.31399e-10 -0.0940673)
(-0.171853 3.44955e-10 -0.0962914)
(-0.167755 3.58048e-10 -0.0983707)
(-0.163614 3.70756e-10 -0.100306)
(-0.159437 3.83259e-10 -0.102097)
(-0.155229 3.95428e-10 -0.103746)
(-0.150994 4.07315e-10 -0.105253)
(-0.146739 4.18664e-10 -0.106621)
(-0.142468 4.29627e-10 -0.10785)
(-0.138186 4.39795e-10 -0.108943)
(-0.133898 4.49423e-10 -0.109902)
(-0.12961 4.58052e-10 -0.110729)
(-0.125324 4.66115e-10 -0.111427)
(-0.121047 4.73229e-10 -0.111999)
(-0.116782 4.79497e-10 -0.112446)
(-0.112534 4.84969e-10 -0.112773)
(-0.108307 4.89902e-10 -0.112982)
(-0.104104 4.94245e-10 -0.113076)
(-0.0999302 4.97973e-10 -0.113059)
(-0.0957882 5.01342e-10 -0.112934)
(-0.0916818 5.04044e-10 -0.112704)
(-0.0876144 5.06592e-10 -0.112373)
(-0.0835891 5.08628e-10 -0.111944)
(-0.0796091 5.10458e-10 -0.11142)
(-0.0756771 5.11955e-10 -0.110806)
(-0.071796 5.1294e-10 -0.110105)
(-0.0679683 5.13719e-10 -0.10932)
(-0.0641965 5.14088e-10 -0.108455)
(-0.0604828 5.1415e-10 -0.107513)
(-0.0568294 5.13955e-10 -0.106497)
(-0.0532385 5.13503e-10 -0.105411)
(-0.0497117 5.12744e-10 -0.104259)
(-0.046251 5.11832e-10 -0.103042)
(-0.0428579 5.10663e-10 -0.101765)
(-0.0395341 5.09494e-10 -0.100431)
(-0.0362808 5.08223e-10 -0.0990412)
(-0.0330994 5.06643e-10 -0.0975997)
(-0.0299911 5.04859e-10 -0.0961088)
(-0.026957 5.03126e-10 -0.094571)
(-0.023998 5.01496e-10 -0.0929886)
(-0.0211151 4.99455e-10 -0.091364)
(-0.0183092 4.97363e-10 -0.0896992)
(-0.0155808 4.94706e-10 -0.0879961)
(-0.0129308 4.91997e-10 -0.0862566)
(-0.0103597 4.8862e-10 -0.0844823)
(-0.00786807 4.84678e-10 -0.0826747)
(-0.00545633 4.80273e-10 -0.0808353)
(-0.0031249 4.75045e-10 -0.0789652)
(-0.000874141 4.68944e-10 -0.0770656)
(0.00129566 4.61865e-10 -0.0751374)
(0.00338421 4.53244e-10 -0.0731815)
(0.00539135 4.43594e-10 -0.0711986)
(0.0073169 4.32555e-10 -0.0691893)
(0.00916075 4.20075e-10 -0.0671543)
(0.0109228 4.0564e-10 -0.0650939)
(0.0126031 3.8961e-10 -0.0630086)
(0.0142016 3.71779e-10 -0.0608988)
(0.0157183 3.52196e-10 -0.0587646)
(0.0171533 3.31326e-10 -0.0566066)
(0.0185068 3.08652e-10 -0.0544249)
(0.0197789 2.84638e-10 -0.0522198)
(0.0209698 2.59695e-10 -0.0499918)
(0.0220797 2.33924e-10 -0.0477413)
(0.0231091 2.07428e-10 -0.0454688)
(0.0240582 1.80311e-10 -0.043175)
(0.0249274 1.52674e-10 -0.0408607)
(0.0257173 1.24774e-10 -0.0385268)
(0.0264283 9.61484e-11 -0.0361745)
(0.0270611 6.64883e-11 -0.0338051)
(0.0276164 3.50214e-11 -0.0314202)
(0.0280949 6.15484e-13 -0.0290217)
(0.0284974 -3.80167e-11 -0.0266117)
(0.0288249 -8.22657e-11 -0.0241927)
(0.0290784 -1.33934e-10 -0.0217674)
(0.029259 -1.94928e-10 -0.019339)
(0.029368 -2.66949e-10 -0.0169108)
(0.0294067 -3.51544e-10 -0.0144868)
(0.0293765 -4.50158e-10 -0.0120711)
(0.029279 -5.62897e-10 -0.00966833)
(0.0291159 -6.90179e-10 -0.00728342)
(0.0288889 -8.30615e-10 -0.00492173)
(0.0285999 -9.82717e-10 -0.00258895)
(0.0282511 -1.14402e-09 -0.000291177)
(0.0278445 -1.31101e-09 0.00196519)
(0.0273824 -1.47958e-09 0.0041734)
(0.0268672 -1.64514e-09 0.00632642)
(0.0263014 -1.80233e-09 0.00841695)
(0.0256877 -1.94585e-09 0.0104375)
(0.0250286 -2.07057e-09 0.0123803)
(0.0243271 -2.17166e-09 0.0142377)
(0.0235861 -2.24642e-09 0.0160016)
(0.0228084 -2.29351e-09 0.0176643)
(0.0219972 -2.31276e-09 0.0192178)
(0.0211556 -2.30839e-09 0.0206545)
(0.0202867 -2.2857e-09 0.0219668)
(0.0193937 -2.25191e-09 0.0231476)
(0.0184799 -2.21557e-09 0.0241899)
(0.0175484 -2.1857e-09 0.0250873)
(0.0166026 -2.17025e-09 0.0258339)
(0.0156456 -2.17798e-09 0.0264244)
(0.0146806 -2.21695e-09 0.0268542)
(0.0137109 -2.29468e-09 0.0271192)
(0.0127396 -2.41428e-09 0.0272163)
(0.0117698 -2.57626e-09 0.0271431)
(0.0108047 -2.78194e-09 0.0268981)
(0.00984719 -3.04153e-09 0.0264805)
(0.00890044 -3.37276e-09 0.0258901)
(0.00796747 -3.78744e-09 0.0251273)
(0.0070513 -4.29429e-09 0.024193)
(0.00615506 -4.95303e-09 0.0230875)
(0.00528194 -5.91609e-09 0.0218105)
(0.00443535 -7.33374e-09 0.020359)
(0.00361899 -9.25928e-09 0.0187253)
(0.00283712 -1.18736e-08 0.0168909)
(0.00209483 -1.57097e-08 0.0148139)
(0.00140038 -2.13782e-08 0.0123916)
(0.000777467 -2.33791e-08 0.00932031)
(0.000276118 -3.14814e-09 0.00459247)
(-0.00509178 3.40969e-07 0.142217)
(-0.0130813 -3.60909e-09 0.155108)
(-0.0216087 -1.86891e-08 0.161859)
(-0.0302633 -2.01783e-08 0.166429)
(-0.0388192 -1.7772e-08 0.169906)
(-0.0472807 -1.35445e-08 0.172689)
(-0.0556298 -8.39369e-09 0.174959)
(-0.0638573 -3.49616e-09 0.176807)
(-0.071955 1.91238e-09 0.178285)
(-0.0799165 6.06873e-09 0.179421)
(-0.087736 8.54683e-09 0.180236)
(-0.0954085 6.90271e-09 0.180742)
(-0.10293 1.24292e-09 0.180949)
(-0.110296 -3.25332e-09 0.180864)
(-0.117502 -2.72595e-09 0.180494)
(-0.124547 1.19157e-09 0.179845)
(-0.131427 4.33995e-09 0.178925)
(-0.138138 4.44979e-09 0.177739)
(-0.144678 2.20663e-09 0.176295)
(-0.151045 -4.15827e-10 0.1746)
(-0.157236 -1.9512e-09 0.172661)
(-0.163249 -2.05857e-09 0.170486)
(-0.16908 -1.18978e-09 0.168083)
(-0.174729 -2.87178e-11 0.16546)
(-0.180192 8.82641e-10 0.162624)
(-0.185468 1.27683e-09 0.159584)
(-0.190554 1.1603e-09 0.156348)
(-0.195448 7.32899e-10 0.152924)
(-0.200149 2.59866e-10 0.149321)
(-0.204655 -6.06747e-11 0.145546)
(-0.208964 -1.66424e-10 0.141608)
(-0.213074 -1.13804e-10 0.137515)
(-0.216985 -4.09104e-12 0.133274)
(-0.220693 8.19782e-11 0.128894)
(-0.2242 1.12444e-10 0.124383)
(-0.227502 9.28602e-11 0.119749)
(-0.2306 4.1498e-11 0.114999)
(-0.233493 -2.62255e-11 0.110142)
(-0.23618 -1.00033e-10 0.105186)
(-0.238661 -1.70265e-10 0.100138)
(-0.240935 -2.26081e-10 0.0950063)
(-0.243002 -2.55511e-10 0.089799)
(-0.244863 -2.51854e-10 0.0845239)
(-0.246519 -2.17346e-10 0.0791889)
(-0.247968 -1.63267e-10 0.0738019)
(-0.249213 -1.05825e-10 0.0683709)
(-0.250253 -6.01491e-11 0.0629037)
(-0.251091 -3.56909e-11 0.0574084)
(-0.251728 -3.41951e-11 0.0518927)
(-0.252164 -5.01895e-11 0.0463646)
(-0.252402 -7.50179e-11 0.0408319)
(-0.252443 -1.00333e-10 0.0353024)
(-0.25229 -1.20074e-10 0.0297839)
(-0.251946 -1.31725e-10 0.0242842)
(-0.251411 -1.35106e-10 0.0188107)
(-0.25069 -1.31374e-10 0.0133709)
(-0.249785 -1.21556e-10 0.00797243)
(-0.248699 -1.06859e-10 0.0026224)
(-0.247436 -8.7387e-11 -0.00267203)
(-0.245999 -6.3217e-11 -0.00790382)
(-0.244391 -3.55559e-11 -0.0130662)
(-0.242617 -5.99584e-12 -0.0181524)
(-0.240681 2.38197e-11 -0.0231561)
(-0.238586 5.20164e-11 -0.028071)
(-0.236338 7.73106e-11 -0.0328913)
(-0.233941 9.91376e-11 -0.037611)
(-0.231399 1.17523e-10 -0.0422249)
(-0.228717 1.33187e-10 -0.0467276)
(-0.225901 1.47207e-10 -0.0511144)
(-0.222956 1.60482e-10 -0.0553806)
(-0.219886 1.73987e-10 -0.0595218)
(-0.216697 1.88545e-10 -0.0635342)
(-0.213395 2.04103e-10 -0.0674141)
(-0.209985 2.20944e-10 -0.0711581)
(-0.206473 2.38555e-10 -0.0747633)
(-0.202863 2.56859e-10 -0.078227)
(-0.199163 2.75033e-10 -0.0815469)
(-0.195378 2.93156e-10 -0.0847209)
(-0.191514 3.10663e-10 -0.0877474)
(-0.187575 3.27527e-10 -0.0906251)
(-0.183569 3.43365e-10 -0.093353)
(-0.179501 3.58355e-10 -0.0959304)
(-0.175377 3.72524e-10 -0.0983569)
(-0.171202 3.86154e-10 -0.100633)
(-0.166982 3.98987e-10 -0.102757)
(-0.162724 4.11359e-10 -0.104732)
(-0.158431 4.23449e-10 -0.106558)
(-0.15411 4.35102e-10 -0.108235)
(-0.149767 4.46345e-10 -0.109765)
(-0.145406 4.57075e-10 -0.11115)
(-0.141032 4.6724e-10 -0.112391)
(-0.136652 4.76764e-10 -0.113491)
(-0.132269 4.85467e-10 -0.114452)
(-0.127889 4.93323e-10 -0.115276)
(-0.123516 5.00512e-10 -0.115966)
(-0.119155 5.06444e-10 -0.116525)
(-0.114811 5.11709e-10 -0.116955)
(-0.110487 5.16102e-10 -0.11726)
(-0.106187 5.19648e-10 -0.117443)
(-0.101917 5.22604e-10 -0.117507)
(-0.0976782 5.24971e-10 -0.117456)
(-0.0934761 5.2667e-10 -0.117293)
(-0.0893135 5.28165e-10 -0.117021)
(-0.0851939 5.28967e-10 -0.116646)
(-0.0811203 5.29385e-10 -0.116169)
(-0.0770959 5.29521e-10 -0.115594)
(-0.0731234 5.29118e-10 -0.114926)
(-0.0692055 5.28357e-10 -0.114168)
(-0.0653449 5.27159e-10 -0.113324)
(-0.0615438 5.2568e-10 -0.112397)
(-0.0578046 5.23995e-10 -0.11139)
(-0.0541293 5.21746e-10 -0.110308)
(-0.05052 5.19293e-10 -0.109154)
(-0.0469783 5.16582e-10 -0.107931)
(-0.043506 5.13821e-10 -0.106643)
(-0.0401048 5.10547e-10 -0.105292)
(-0.0367759 5.07426e-10 -0.103882)
(-0.0335208 5.0369e-10 -0.102416)
(-0.0303407 5.00365e-10 -0.100897)
(-0.0272366 4.96629e-10 -0.099327)
(-0.0242096 4.93098e-10 -0.0977091)
(-0.0212606 4.8926e-10 -0.0960458)
(-0.0183904 4.85318e-10 -0.0943393)
(-0.0155998 4.80863e-10 -0.0925918)
(-0.0128894 4.76253e-10 -0.0908054)
(-0.0102597 4.71284e-10 -0.088982)
(-0.00771132 4.65955e-10 -0.0871232)
(-0.00524468 4.60009e-10 -0.0852306)
(-0.00286014 4.53394e-10 -0.0833058)
(-0.00055804 4.45958e-10 -0.08135)
(0.00166137 4.37903e-10 -0.0793644)
(0.00379784 4.28204e-10 -0.0773499)
(0.00585123 4.17682e-10 -0.0753075)
(0.00782141 4.05925e-10 -0.0732379)
(0.00970831 3.92625e-10 -0.071142)
(0.0115119 3.77679e-10 -0.0690202)
(0.0132321 3.61189e-10 -0.066873)
(0.0148691 3.43001e-10 -0.064701)
(0.0164229 3.23268e-10 -0.0625044)
(0.0178936 3.01939e-10 -0.0602837)
(0.0192814 2.79271e-10 -0.0580392)
(0.0205864 2.55365e-10 -0.0557713)
(0.0218089 2.30272e-10 -0.0534802)
(0.0229492 2.0461e-10 -0.0511665)
(0.0240076 1.78275e-10 -0.0488307)
(0.0249844 1.5137e-10 -0.0464732)
(0.0258801 1.24357e-10 -0.0440949)
(0.0266952 9.6824e-11 -0.0416966)
(0.0274301 6.8926e-11 -0.0392793)
(0.0280856 4.00452e-11 -0.0368442)
(0.0286622 9.56418e-12 -0.0343927)
(0.0291607 -2.3752e-11 -0.0319266)
(0.0295818 -6.08813e-11 -0.0294477)
(0.0299266 -1.03471e-10 -0.0269583)
(0.030196 -1.53426e-10 -0.024461)
(0.0303911 -2.12498e-10 -0.0219586)
(0.030513 -2.82439e-10 -0.0194543)
(0.0305631 -3.65051e-10 -0.0169517)
(0.0305427 -4.61575e-10 -0.0144548)
(0.0304533 -5.72323e-10 -0.0119677)
(0.0302966 -6.97504e-10 -0.00949539)
(0.0300742 -8.3599e-10 -0.00704278)
(0.0297881 -9.8588e-10 -0.00461538)
(0.0294402 -1.14465e-09 -0.00221903)
(0.0290325 -1.30891e-09 0.000140077)
(0.0285674 -1.47382e-09 0.00245539)
(0.0280472 -1.63485e-09 0.00472004)
(0.0274743 -1.78678e-09 0.00692689)
(0.0268513 -1.92427e-09 0.00906851)
(0.026181 -2.04262e-09 0.0111373)
(0.0254661 -2.13707e-09 0.0131254)
(0.0247095 -2.20444e-09 0.015025)
(0.0239142 -2.24327e-09 0.016828)
(0.0230834 -2.2538e-09 0.0185265)
(0.0222202 -2.23891e-09 0.0201125)
(0.0213279 -2.20432e-09 0.0215784)
(0.0204097 -2.15729e-09 0.0229165)
(0.0194691 -2.10787e-09 0.0241196)
(0.0185094 -2.06564e-09 0.0251807)
(0.0175341 -2.03932e-09 0.0260935)
(0.0165466 -2.03706e-09 0.0268521)
(0.0155504 -2.06592e-09 0.027451)
(0.014549 -2.13168e-09 0.0278856)
(0.0135458 -2.23847e-09 0.0281521)
(0.0125442 -2.3863e-09 0.0282473)
(0.0115478 -2.57143e-09 0.0281688)
(0.0105599 -2.79129e-09 0.0279151)
(0.00958392 -3.05308e-09 0.0274854)
(0.00862329 -3.37224e-09 0.0268797)
(0.0076814 -3.76267e-09 0.0260982)
(0.00676168 -4.23625e-09 0.0251417)
(0.00586762 -4.85218e-09 0.0240107)
(0.0050028 -5.7508e-09 0.0227045)
(0.00417101 -7.07064e-09 0.02122)
(0.00337628 -8.84996e-09 0.0195489)
(0.00262324 -1.12316e-08 0.0176722)
(0.00191725 -1.46596e-08 0.0155465)
(0.00126665 -1.96698e-08 0.0130662)
(0.000693583 -2.04839e-08 0.00992022)
(0.000241442 8.22872e-09 0.00507082)
(-0.00509211 3.40968e-07 0.142216)
(-0.0130815 -3.60907e-09 0.155108)
(-0.0216088 -1.8689e-08 0.161859)
(-0.0302632 -2.01782e-08 0.166428)
(-0.0388191 -1.77719e-08 0.169905)
(-0.0472807 -1.35444e-08 0.172689)
(-0.0556298 -8.39364e-09 0.174959)
(-0.0638572 -3.49614e-09 0.176807)
(-0.071955 1.91237e-09 0.178284)
(-0.0799165 6.06869e-09 0.179421)
(-0.087736 8.54678e-09 0.180236)
(-0.0954085 6.90267e-09 0.180742)
(-0.10293 1.24291e-09 0.180949)
(-0.110295 -3.2533e-09 0.180864)
(-0.117502 -2.72593e-09 0.180494)
(-0.124547 1.19156e-09 0.179845)
(-0.131427 4.33993e-09 0.178925)
(-0.138138 4.44977e-09 0.177739)
(-0.144678 2.20662e-09 0.176295)
(-0.151045 -4.15825e-10 0.1746)
(-0.157236 -1.95119e-09 0.172661)
(-0.163249 -2.05856e-09 0.170486)
(-0.16908 -1.18978e-09 0.168083)
(-0.174729 -2.87177e-11 0.16546)
(-0.180192 8.82638e-10 0.162624)
(-0.185468 1.27682e-09 0.159584)
(-0.190554 1.16029e-09 0.156348)
(-0.195448 7.32896e-10 0.152924)
(-0.200149 2.59865e-10 0.149321)
(-0.204655 -6.06745e-11 0.145546)
(-0.208964 -1.66423e-10 0.141608)
(-0.213074 -1.13803e-10 0.137515)
(-0.216985 -4.09103e-12 0.133274)
(-0.220693 8.1978e-11 0.128894)
(-0.2242 1.12444e-10 0.124383)
(-0.227502 9.28599e-11 0.119749)
(-0.2306 4.14979e-11 0.114999)
(-0.233493 -2.62254e-11 0.110142)
(-0.23618 -1.00033e-10 0.105186)
(-0.238661 -1.70264e-10 0.100138)
(-0.240935 -2.2608e-10 0.0950063)
(-0.243002 -2.55511e-10 0.0897991)
(-0.244863 -2.51853e-10 0.0845239)
(-0.246519 -2.17346e-10 0.0791889)
(-0.247968 -1.63266e-10 0.073802)
(-0.249213 -1.05825e-10 0.0683709)
(-0.250253 -6.0149e-11 0.0629038)
(-0.251091 -3.56908e-11 0.0574084)
(-0.251728 -3.4195e-11 0.0518927)
(-0.252164 -5.01894e-11 0.0463646)
(-0.252402 -7.50178e-11 0.0408319)
(-0.252443 -1.00333e-10 0.0353024)
(-0.25229 -1.20074e-10 0.029784)
(-0.251946 -1.31725e-10 0.0242842)
(-0.251411 -1.35106e-10 0.0188107)
(-0.25069 -1.31373e-10 0.013371)
(-0.249785 -1.21555e-10 0.00797245)
(-0.248699 -1.06859e-10 0.00262242)
(-0.247436 -8.73869e-11 -0.00267201)
(-0.245999 -6.32169e-11 -0.00790381)
(-0.244391 -3.55558e-11 -0.0130661)
(-0.242617 -5.99583e-12 -0.0181524)
(-0.240681 2.38196e-11 -0.0231561)
(-0.238586 5.20163e-11 -0.028071)
(-0.236338 7.73105e-11 -0.0328912)
(-0.233941 9.91375e-11 -0.037611)
(-0.231399 1.17523e-10 -0.0422249)
(-0.228717 1.33187e-10 -0.0467276)
(-0.225901 1.47207e-10 -0.0511144)
(-0.222956 1.60482e-10 -0.0553805)
(-0.219886 1.73987e-10 -0.0595218)
(-0.216697 1.88544e-10 -0.0635342)
(-0.213395 2.04102e-10 -0.0674141)
(-0.209985 2.20944e-10 -0.0711581)
(-0.206473 2.38555e-10 -0.0747633)
(-0.202864 2.56858e-10 -0.078227)
(-0.199164 2.75033e-10 -0.0815469)
(-0.195378 2.93156e-10 -0.0847209)
(-0.191514 3.10662e-10 -0.0877474)
(-0.187575 3.27527e-10 -0.0906251)
(-0.183569 3.43364e-10 -0.093353)
(-0.179501 3.58354e-10 -0.0959304)
(-0.175377 3.72523e-10 -0.0983569)
(-0.171202 3.86153e-10 -0.100632)
(-0.166982 3.98986e-10 -0.102757)
(-0.162724 4.11358e-10 -0.104732)
(-0.158431 4.23448e-10 -0.106558)
(-0.15411 4.35101e-10 -0.108235)
(-0.149767 4.46344e-10 -0.109765)
(-0.145406 4.57074e-10 -0.11115)
(-0.141032 4.67239e-10 -0.112391)
(-0.136652 4.76763e-10 -0.113491)
(-0.132269 4.85465e-10 -0.114452)
(-0.127889 4.93322e-10 -0.115276)
(-0.123516 5.00511e-10 -0.115966)
(-0.119155 5.06443e-10 -0.116525)
(-0.114811 5.11708e-10 -0.116955)
(-0.110487 5.161e-10 -0.11726)
(-0.106187 5.19647e-10 -0.117443)
(-0.101917 5.22603e-10 -0.117507)
(-0.0976783 5.24969e-10 -0.117456)
(-0.0934761 5.26669e-10 -0.117293)
(-0.0893136 5.28164e-10 -0.117021)
(-0.0851939 5.28966e-10 -0.116646)
(-0.0811204 5.29384e-10 -0.116169)
(-0.0770959 5.29519e-10 -0.115594)
(-0.0731234 5.29117e-10 -0.114926)
(-0.0692056 5.28355e-10 -0.114168)
(-0.0653449 5.27158e-10 -0.113324)
(-0.0615439 5.25678e-10 -0.112397)
(-0.0578047 5.23994e-10 -0.11139)
(-0.0541294 5.21745e-10 -0.110308)
(-0.05052 5.19291e-10 -0.109154)
(-0.0469783 5.16581e-10 -0.107931)
(-0.0435061 5.1382e-10 -0.106643)
(-0.0401048 5.10545e-10 -0.105292)
(-0.036776 5.07425e-10 -0.103882)
(-0.0335209 5.03689e-10 -0.102416)
(-0.0303407 5.00363e-10 -0.100897)
(-0.0272366 4.96627e-10 -0.099327)
(-0.0242097 4.93097e-10 -0.0977091)
(-0.0212607 4.89258e-10 -0.0960458)
(-0.0183905 4.85316e-10 -0.0943393)
(-0.0155998 4.80861e-10 -0.0925918)
(-0.0128894 4.76252e-10 -0.0908054)
(-0.0102597 4.71282e-10 -0.088982)
(-0.00771136 4.65953e-10 -0.0871232)
(-0.00524472 4.60007e-10 -0.0852306)
(-0.00286018 4.53393e-10 -0.0833058)
(-0.000558078 4.45956e-10 -0.08135)
(0.00166133 4.37902e-10 -0.0793644)
(0.0037978 4.28203e-10 -0.0773499)
(0.00585119 4.1768e-10 -0.0753075)
(0.00782137 4.05923e-10 -0.0732379)
(0.00970827 3.92623e-10 -0.071142)
(0.0115118 3.77677e-10 -0.0690202)
(0.0132321 3.61188e-10 -0.066873)
(0.0148691 3.43e-10 -0.064701)
(0.0164229 3.23267e-10 -0.0625044)
(0.0178936 3.01938e-10 -0.0602837)
(0.0192813 2.7927e-10 -0.0580392)
(0.0205864 2.55364e-10 -0.0557713)
(0.0218089 2.30272e-10 -0.0534802)
(0.0229492 2.0461e-10 -0.0511666)
(0.0240076 1.78275e-10 -0.0488307)
(0.0249844 1.51369e-10 -0.0464732)
(0.0258801 1.24356e-10 -0.0440949)
(0.0266952 9.68237e-11 -0.0416966)
(0.0274301 6.89257e-11 -0.0392793)
(0.0280856 4.00451e-11 -0.0368442)
(0.0286621 9.56415e-12 -0.0343927)
(0.0291606 -2.37519e-11 -0.0319266)
(0.0295818 -6.08812e-11 -0.0294477)
(0.0299266 -1.03471e-10 -0.0269583)
(0.030196 -1.53426e-10 -0.024461)
(0.0303911 -2.12497e-10 -0.0219586)
(0.030513 -2.82438e-10 -0.0194543)
(0.0305631 -3.6505e-10 -0.0169517)
(0.0305427 -4.61574e-10 -0.0144547)
(0.0304533 -5.72321e-10 -0.0119677)
(0.0302965 -6.97502e-10 -0.00949538)
(0.0300742 -8.35987e-10 -0.00704277)
(0.029788 -9.85877e-10 -0.00461537)
(0.0294401 -1.14465e-09 -0.00221902)
(0.0290325 -1.30891e-09 0.000140091)
(0.0285674 -1.47382e-09 0.0024554)
(0.0280472 -1.63484e-09 0.00472006)
(0.0274743 -1.78678e-09 0.0069269)
(0.0268513 -1.92427e-09 0.00906852)
(0.026181 -2.04261e-09 0.0111373)
(0.025466 -2.13707e-09 0.0131254)
(0.0247094 -2.20444e-09 0.015025)
(0.0239142 -2.24326e-09 0.016828)
(0.0230834 -2.25379e-09 0.0185265)
(0.0222202 -2.23891e-09 0.0201126)
(0.0213278 -2.20432e-09 0.0215784)
(0.0204097 -2.15729e-09 0.0229165)
(0.0194691 -2.10787e-09 0.0241196)
(0.0185094 -2.06564e-09 0.0251808)
(0.0175341 -2.03932e-09 0.0260936)
(0.0165466 -2.03705e-09 0.0268521)
(0.0155504 -2.06591e-09 0.027451)
(0.014549 -2.13167e-09 0.0278857)
(0.0135457 -2.23847e-09 0.0281522)
(0.0125442 -2.38629e-09 0.0282473)
(0.0115478 -2.57143e-09 0.0281689)
(0.0105599 -2.79129e-09 0.0279151)
(0.0095839 -3.05307e-09 0.0274855)
(0.00862327 -3.37224e-09 0.0268797)
(0.00768137 -3.76266e-09 0.0260982)
(0.00676165 -4.23624e-09 0.0251417)
(0.00586759 -4.85217e-09 0.0240107)
(0.00500278 -5.75078e-09 0.0227045)
(0.00417098 -7.07061e-09 0.02122)
(0.00337625 -8.84992e-09 0.0195489)
(0.0026232 -1.12316e-08 0.0176721)
(0.0019172 -1.46595e-08 0.0155464)
(0.00126661 -1.96697e-08 0.0130661)
(0.000693529 -2.0484e-08 0.00992005)
(0.000241357 8.22873e-09 0.00507064)
(-0.00516466 -5.36033e-08 0.151331)
(-0.0133382 -1.66923e-07 0.164317)
(-0.0220353 -1.06531e-07 0.171052)
(-0.030873 -7.83631e-08 0.175557)
(-0.0396178 -6.2753e-08 0.178943)
(-0.0482746 -5.00973e-08 0.181618)
(-0.0568232 -3.8837e-08 0.183767)
(-0.0652532 -3.00021e-08 0.185484)
(-0.0735551 -1.93646e-08 0.186822)
(-0.0817207 -9.51981e-09 0.187812)
(-0.089743 -3.85741e-10 0.188474)
(-0.0976159 3.97962e-09 0.188822)
(-0.105333 8.62436e-10 0.188865)
(-0.112891 -4.43956e-09 0.188612)
(-0.120284 -5.22469e-09 0.18807)
(-0.127508 -1.0398e-09 0.187245)
(-0.134559 3.69009e-09 0.186146)
(-0.141435 5.27713e-09 0.184778)
(-0.148131 3.48428e-09 0.183149)
(-0.154645 3.60376e-10 0.181265)
(-0.160974 -2.01463e-09 0.179136)
(-0.167116 -2.74861e-09 0.176767)
(-0.173067 -2.08006e-09 0.174168)
(-0.178826 -7.61565e-10 0.171346)
(-0.18439 4.78525e-10 0.16831)
(-0.189756 1.19983e-09 0.165067)
(-0.194924 1.30137e-09 0.161626)
(-0.199891 9.51514e-10 0.157995)
(-0.204654 4.44472e-10 0.154183)
(-0.209213 3.9152e-11 0.150197)
(-0.213566 -1.44502e-10 0.146047)
(-0.217712 -1.31121e-10 0.14174)
(-0.221648 -2.21477e-11 0.137284)
(-0.225374 8.47661e-11 0.132687)
(-0.228889 1.39091e-10 0.127959)
(-0.232192 1.35848e-10 0.123106)
(-0.235283 9.13788e-11 0.118137)
(-0.23816 2.38467e-11 0.11306)
(-0.240824 -5.49055e-11 0.107883)
(-0.243273 -1.3486e-10 0.102615)
(-0.245509 -2.04408e-10 0.0972629)
(-0.247532 -2.50322e-10 0.0918353)
(-0.249341 -2.62589e-10 0.0863401)
(-0.250937 -2.39618e-10 0.0807857)
(-0.252321 -1.89837e-10 0.07518)
(-0.253494 -1.28629e-10 0.0695313)
(-0.254458 -7.34849e-11 0.0638476)
(-0.255212 -3.68069e-11 0.058137)
(-0.25576 -2.33702e-11 0.0524078)
(-0.256102 -3.05026e-11 0.0466679)
(-0.256241 -5.03967e-11 0.0409255)
(-0.256179 -7.45524e-11 0.0351885)
(-0.255917 -9.55229e-11 0.0294649)
(-0.255459 -1.09868e-10 0.0237627)
(-0.254808 -1.16125e-10 0.0180897)
(-0.253966 -1.15038e-10 0.0124535)
(-0.252937 -1.07455e-10 0.00686173)
(-0.251723 -9.39941e-11 0.00132199)
(-0.250329 -7.5219e-11 -0.00415847)
(-0.248757 -5.13101e-11 -0.00957239)
(-0.247013 -2.28067e-11 -0.0149128)
(-0.2451 8.41662e-12 -0.0201727)
(-0.243023 4.05628e-11 -0.0253457)
(-0.240785 7.17322e-11 -0.0304252)
(-0.238393 1.00205e-10 -0.0354053)
(-0.235849 1.25314e-10 -0.0402798)
(-0.23316 1.46648e-10 -0.0450433)
(-0.23033 1.64849e-10 -0.0496904)
(-0.227366 1.80792e-10 -0.0542161)
(-0.224271 1.95629e-10 -0.0586155)
(-0.221052 2.10415e-10 -0.0628845)
(-0.217714 2.25483e-10 -0.0670187)
(-0.214263 2.41679e-10 -0.0710146)
(-0.210705 2.58928e-10 -0.0748686)
(-0.207045 2.77151e-10 -0.0785778)
(-0.203289 2.95759e-10 -0.0821394)
(-0.199444 3.14495e-10 -0.085551)
(-0.195515 3.3305e-10 -0.0888106)
(-0.191509 3.51066e-10 -0.0919165)
(-0.187431 3.68184e-10 -0.0948674)
(-0.183287 3.84301e-10 -0.0976623)
(-0.179083 3.99365e-10 -0.100301)
(-0.174825 4.13607e-10 -0.102782)
(-0.17052 4.2708e-10 -0.105106)
(-0.166173 4.3968e-10 -0.107274)
(-0.161789 4.5169e-10 -0.109285)
(-0.157375 4.63161e-10 -0.111141)
(-0.152936 4.7417e-10 -0.112843)
(-0.148477 4.84744e-10 -0.114393)
(-0.144005 4.9465e-10 -0.115791)
(-0.139524 5.03966e-10 -0.117041)
(-0.135039 5.12487e-10 -0.118144)
(-0.130556 5.20264e-10 -0.119103)
(-0.12608 5.27272e-10 -0.119919)
(-0.121615 5.33253e-10 -0.120597)
(-0.117165 5.38209e-10 -0.121139)
(-0.112736 5.42215e-10 -0.121547)
(-0.108332 5.45349e-10 -0.121826)
(-0.103957 5.47612e-10 -0.121979)
(-0.099614 5.49002e-10 -0.122009)
(-0.0953079 5.49956e-10 -0.12192)
(-0.0910421 5.5009e-10 -0.121715)
(-0.0868199 5.49967e-10 -0.121398)
(-0.0826449 5.48896e-10 -0.120973)
(-0.07852 5.47619e-10 -0.120444)
(-0.0744483 5.45804e-10 -0.119814)
(-0.0704326 5.43605e-10 -0.119088)
(-0.0664755 5.40919e-10 -0.118269)
(-0.0625796 5.37822e-10 -0.117361)
(-0.0587471 5.3434e-10 -0.116368)
(-0.0549802 5.30628e-10 -0.115294)
(-0.051281 5.26352e-10 -0.114142)
(-0.0476514 5.21948e-10 -0.112915)
(-0.0440931 5.17236e-10 -0.111618)
(-0.0406078 5.12318e-10 -0.110254)
(-0.0371968 5.07196e-10 -0.108826)
(-0.0338616 5.01919e-10 -0.107338)
(-0.0306034 4.96438e-10 -0.105792)
(-0.0274234 4.90751e-10 -0.104192)
(-0.0243225 4.85167e-10 -0.10254)
(-0.0213017 4.79479e-10 -0.100839)
(-0.0183618 4.73741e-10 -0.0990913)
(-0.0155035 4.67694e-10 -0.0973001)
(-0.0127274 4.61544e-10 -0.0954672)
(-0.0100342 4.54932e-10 -0.0935948)
(-0.00742432 4.47805e-10 -0.0916848)
(-0.00489815 4.40371e-10 -0.089739)
(-0.00245605 4.3237e-10 -0.0877592)
(-9.83218e-05 4.23804e-10 -0.0857467)
(0.0021748 4.14467e-10 -0.0837029)
(0.00436311 4.03998e-10 -0.081629)
(0.00646651 3.92296e-10 -0.0795262)
(0.00848492 3.79821e-10 -0.0773954)
(0.0104183 3.65958e-10 -0.0752374)
(0.0122666 3.5045e-10 -0.0730529)
(0.01403 3.33398e-10 -0.0708427)
(0.0157084 3.14751e-10 -0.0686071)
(0.017302 2.94765e-10 -0.0663468)
(0.018811 2.73132e-10 -0.0640621)
(0.0202355 2.50263e-10 -0.0617534)
(0.0215758 2.26516e-10 -0.0594212)
(0.0228321 2.01276e-10 -0.0570658)
(0.0240047 1.75414e-10 -0.0546876)
(0.025094 1.49188e-10 -0.0522871)
(0.0261003 1.22546e-10 -0.0498648)
(0.0270241 9.60022e-11 -0.0474214)
(0.0278658 6.89392e-11 -0.0449577)
(0.028626 4.17168e-11 -0.0424745)
(0.0293053 1.37692e-11 -0.039973)
(0.0299042 -1.58808e-11 -0.0374543)
(0.0304237 -4.77478e-11 -0.0349202)
(0.0308643 -8.32209e-11 -0.0323722)
(0.0312271 -1.2405e-10 -0.0298124)
(0.0315129 -1.71933e-10 -0.0272431)
(0.0317228 -2.28723e-10 -0.0246671)
(0.0318579 -2.96481e-10 -0.0220872)
(0.0319195 -3.76496e-10 -0.0195067)
(0.0319089 -4.70417e-10 -0.0169294)
(0.0318275 -5.78609e-10 -0.0143593)
(0.0316769 -7.01176e-10 -0.0118008)
(0.0314587 -8.37353e-10 -0.00925882)
(0.0311748 -9.84929e-10 -0.00673849)
(0.0308271 -1.14097e-09 -0.00424543)
(0.0304175 -1.30178e-09 -0.00178562)
(0.0299483 -1.46303e-09 0.000634632)
(0.0294218 -1.61968e-09 0.00300863)
(0.0288404 -1.76605e-09 0.00532938)
(0.0282065 -1.89777e-09 0.00758962)
(0.027523 -2.00959e-09 0.0097818)
(0.0267926 -2.09752e-09 0.0118982)
(0.0260181 -2.15827e-09 0.0139309)
(0.0252026 -2.19013e-09 0.0158718)
(0.0243493 -2.19416e-09 0.0177129)
(0.0234613 -2.17222e-09 0.0194461)
(0.022542 -2.1296e-09 0.0210635)
(0.0215947 -2.07377e-09 0.0225571)
(0.020623 -2.01447e-09 0.0239194)
(0.0196304 -1.96143e-09 0.0251431)
(0.0186205 -1.92487e-09 0.0262211)
(0.0175969 -1.91343e-09 0.027147)
(0.0165634 -1.93373e-09 0.027915)
(0.0155235 -1.98949e-09 0.0285195)
(0.0144812 -2.08399e-09 0.0289561)
(0.0134401 -2.21622e-09 0.0292208)
(0.012404 -2.38391e-09 0.0293104)
(0.0113766 -2.5792e-09 0.0292226)
(0.0103617 -2.79642e-09 0.0289559)
(0.00936311 -3.03895e-09 0.0285094)
(0.00838452 -3.32264e-09 0.0278831)
(0.00742974 -3.66509e-09 0.0270775)
(0.00650258 -4.08509e-09 0.026093)
(0.00560692 -4.64061e-09 0.0249301)
(0.00474672 -5.46325e-09 0.023588)
(0.00392612 -6.67524e-09 0.0220633)
(0.00314954 -8.30078e-09 0.0203475)
(0.00242191 -1.04348e-08 0.0184206)
(0.00174892 -1.34294e-08 0.0162382)
(0.00113901 -1.77595e-08 0.0136918)
(0.000612896 -1.74863e-08 0.0104638)
(0.000207428 1.8456e-08 0.00549305)
(-0.00516515 -5.36032e-08 0.15133)
(-0.0133385 -1.66922e-07 0.164317)
(-0.0220353 -1.06531e-07 0.171052)
(-0.030873 -7.83627e-08 0.175557)
(-0.0396178 -6.27527e-08 0.178943)
(-0.0482745 -5.0097e-08 0.181618)
(-0.0568231 -3.88368e-08 0.183767)
(-0.0652532 -3.00019e-08 0.185484)
(-0.073555 -1.93645e-08 0.186821)
(-0.0817207 -9.51975e-09 0.187812)
(-0.089743 -3.85738e-10 0.188474)
(-0.0976158 3.9796e-09 0.188821)
(-0.105333 8.62431e-10 0.188865)
(-0.112891 -4.43954e-09 0.188612)
(-0.120284 -5.22466e-09 0.18807)
(-0.127508 -1.03979e-09 0.187245)
(-0.134559 3.69007e-09 0.186146)
(-0.141435 5.27711e-09 0.184778)
(-0.148131 3.48426e-09 0.183149)
(-0.154645 3.60374e-10 0.181265)
(-0.160974 -2.01462e-09 0.179136)
(-0.167116 -2.7486e-09 0.176767)
(-0.173067 -2.08005e-09 0.174168)
(-0.178826 -7.61562e-10 0.171346)
(-0.18439 4.78523e-10 0.16831)
(-0.189756 1.19983e-09 0.165067)
(-0.194924 1.30136e-09 0.161626)
(-0.199891 9.51511e-10 0.157995)
(-0.204654 4.4447e-10 0.154183)
(-0.209213 3.91519e-11 0.150197)
(-0.213566 -1.44501e-10 0.146047)
(-0.217712 -1.31121e-10 0.14174)
(-0.221648 -2.21476e-11 0.137284)
(-0.225374 8.47659e-11 0.132687)
(-0.228889 1.39091e-10 0.127959)
(-0.232192 1.35848e-10 0.123106)
(-0.235283 9.13787e-11 0.118137)
(-0.23816 2.38467e-11 0.11306)
(-0.240824 -5.49054e-11 0.107883)
(-0.243273 -1.3486e-10 0.102615)
(-0.245509 -2.04407e-10 0.0972629)
(-0.247532 -2.50322e-10 0.0918353)
(-0.249341 -2.62588e-10 0.0863402)
(-0.250937 -2.39618e-10 0.0807857)
(-0.252321 -1.89836e-10 0.07518)
(-0.253494 -1.28629e-10 0.0695313)
(-0.254458 -7.34848e-11 0.0638476)
(-0.255212 -3.68068e-11 0.058137)
(-0.25576 -2.33701e-11 0.0524078)
(-0.256102 -3.05026e-11 0.0466679)
(-0.256241 -5.03967e-11 0.0409255)
(-0.256179 -7.45523e-11 0.0351885)
(-0.255917 -9.55228e-11 0.029465)
(-0.255459 -1.09868e-10 0.0237627)
(-0.254808 -1.16124e-10 0.0180897)
(-0.253966 -1.15038e-10 0.0124535)
(-0.252937 -1.07455e-10 0.00686175)
(-0.251723 -9.3994e-11 0.001322)
(-0.250329 -7.52189e-11 -0.00415845)
(-0.248757 -5.131e-11 -0.00957237)
(-0.247013 -2.28067e-11 -0.0149127)
(-0.2451 8.41661e-12 -0.0201727)
(-0.243023 4.05628e-11 -0.0253457)
(-0.240785 7.17321e-11 -0.0304252)
(-0.238393 1.00205e-10 -0.0354052)
(-0.235849 1.25313e-10 -0.0402798)
(-0.23316 1.46648e-10 -0.0450433)
(-0.230331 1.64849e-10 -0.0496904)
(-0.227366 1.80791e-10 -0.054216)
(-0.224271 1.95629e-10 -0.0586155)
(-0.221052 2.10415e-10 -0.0628844)
(-0.217714 2.25482e-10 -0.0670187)
(-0.214263 2.41679e-10 -0.0710146)
(-0.210705 2.58927e-10 -0.0748686)
(-0.207045 2.77151e-10 -0.0785778)
(-0.203289 2.95758e-10 -0.0821394)
(-0.199444 3.14494e-10 -0.085551)
(-0.195515 3.33049e-10 -0.0888106)
(-0.191509 3.51066e-10 -0.0919165)
(-0.187431 3.68183e-10 -0.0948674)
(-0.183287 3.843e-10 -0.0976623)
(-0.179083 3.99364e-10 -0.100301)
(-0.174825 4.13606e-10 -0.102782)
(-0.17052 4.27079e-10 -0.105106)
(-0.166173 4.39679e-10 -0.107274)
(-0.161789 4.51689e-10 -0.109285)
(-0.157375 4.6316e-10 -0.111141)
(-0.152936 4.74169e-10 -0.112843)
(-0.148477 4.84743e-10 -0.114393)
(-0.144005 4.94649e-10 -0.115791)
(-0.139524 5.03965e-10 -0.117041)
(-0.135039 5.12486e-10 -0.118144)
(-0.130556 5.20263e-10 -0.119103)
(-0.12608 5.2727e-10 -0.119919)
(-0.121615 5.33252e-10 -0.120597)
(-0.117165 5.38207e-10 -0.121139)
(-0.112736 5.42214e-10 -0.121547)
(-0.108332 5.45348e-10 -0.121826)
(-0.103957 5.4761e-10 -0.121979)
(-0.099614 5.49e-10 -0.122009)
(-0.0953079 5.49954e-10 -0.12192)
(-0.0910421 5.50088e-10 -0.121715)
(-0.08682 5.49966e-10 -0.121398)
(-0.0826449 5.48894e-10 -0.120973)
(-0.0785201 5.47618e-10 -0.120444)
(-0.0744484 5.45803e-10 -0.119814)
(-0.0704326 5.43603e-10 -0.119088)
(-0.0664756 5.40917e-10 -0.118269)
(-0.0625796 5.3782e-10 -0.117361)
(-0.0587471 5.34339e-10 -0.116368)
(-0.0549803 5.30627e-10 -0.115294)
(-0.0512811 5.2635e-10 -0.114141)
(-0.0476515 5.21946e-10 -0.112915)
(-0.0440932 5.17234e-10 -0.111618)
(-0.0406078 5.12317e-10 -0.110254)
(-0.0371968 5.07194e-10 -0.108826)
(-0.0338616 5.01918e-10 -0.107338)
(-0.0306035 4.96436e-10 -0.105792)
(-0.0274234 4.90749e-10 -0.104192)
(-0.0243226 4.85165e-10 -0.10254)
(-0.0213017 4.79478e-10 -0.100839)
(-0.0183618 4.73739e-10 -0.0990913)
(-0.0155035 4.67692e-10 -0.0973001)
(-0.0127275 4.61543e-10 -0.0954672)
(-0.0100343 4.5493e-10 -0.0935948)
(-0.00742436 4.47804e-10 -0.0916848)
(-0.00489819 4.40369e-10 -0.089739)
(-0.00245609 4.32369e-10 -0.0877592)
(-9.83616e-05 4.23803e-10 -0.0857467)
(0.00217476 4.14465e-10 -0.0837029)
(0.00436307 4.03997e-10 -0.081629)
(0.00646648 3.92294e-10 -0.0795262)
(0.00848488 3.7982e-10 -0.0773954)
(0.0104182 3.65957e-10 -0.0752374)
(0.0122666 3.50448e-10 -0.0730529)
(0.0140299 3.33397e-10 -0.0708427)
(0.0157084 3.1475e-10 -0.0686071)
(0.017302 2.94764e-10 -0.0663468)
(0.018811 2.73131e-10 -0.0640621)
(0.0202355 2.50262e-10 -0.0617534)
(0.0215758 2.26516e-10 -0.0594212)
(0.0228321 2.01275e-10 -0.0570658)
(0.0240047 1.75413e-10 -0.0546876)
(0.025094 1.49187e-10 -0.0522871)
(0.0261003 1.22546e-10 -0.0498648)
(0.0270241 9.60019e-11 -0.0474214)
(0.0278658 6.8939e-11 -0.0449577)
(0.028626 4.17166e-11 -0.0424745)
(0.0293052 1.37691e-11 -0.039973)
(0.0299042 -1.58807e-11 -0.0374543)
(0.0304236 -4.77476e-11 -0.0349202)
(0.0308643 -8.32206e-11 -0.0323722)
(0.031227 -1.24049e-10 -0.0298124)
(0.0315128 -1.71932e-10 -0.0272431)
(0.0317227 -2.28722e-10 -0.0246671)
(0.0318579 -2.96481e-10 -0.0220872)
(0.0319195 -3.76495e-10 -0.0195067)
(0.0319088 -4.70416e-10 -0.0169294)
(0.0318274 -5.78607e-10 -0.0143593)
(0.0316768 -7.01174e-10 -0.0118008)
(0.0314587 -8.37351e-10 -0.00925881)
(0.0311748 -9.84926e-10 -0.00673848)
(0.030827 -1.14097e-09 -0.00424542)
(0.0304175 -1.30178e-09 -0.0017856)
(0.0299483 -1.46303e-09 0.000634644)
(0.0294218 -1.61967e-09 0.00300864)
(0.0288403 -1.76605e-09 0.0053294)
(0.0282065 -1.89777e-09 0.00758964)
(0.027523 -2.00958e-09 0.00978182)
(0.0267925 -2.09752e-09 0.0118982)
(0.0260181 -2.15827e-09 0.0139309)
(0.0252026 -2.19012e-09 0.0158718)
(0.0243493 -2.19415e-09 0.0177129)
(0.0234613 -2.17221e-09 0.0194462)
(0.0225419 -2.12959e-09 0.0210635)
(0.0215947 -2.07377e-09 0.0225572)
(0.020623 -2.01447e-09 0.0239194)
(0.0196304 -1.96143e-09 0.0251431)
(0.0186205 -1.92486e-09 0.0262211)
(0.0175969 -1.91343e-09 0.0271471)
(0.0165633 -1.93373e-09 0.027915)
(0.0155235 -1.98948e-09 0.0285196)
(0.0144812 -2.08399e-09 0.0289562)
(0.0134401 -2.21622e-09 0.0292208)
(0.012404 -2.3839e-09 0.0293104)
(0.0113766 -2.5792e-09 0.0292226)
(0.0103617 -2.79642e-09 0.0289559)
(0.00936309 -3.03894e-09 0.0285094)
(0.0083845 -3.32263e-09 0.0278831)
(0.00742972 -3.66508e-09 0.0270775)
(0.00650256 -4.08508e-09 0.026093)
(0.00560689 -4.64059e-09 0.0249301)
(0.00474669 -5.46323e-09 0.0235879)
(0.00392609 -6.67521e-09 0.0220633)
(0.00314951 -8.30074e-09 0.0203474)
(0.00242187 -1.04348e-08 0.0184206)
(0.00174888 -1.34293e-08 0.0162381)
(0.00113897 -1.77595e-08 0.0136917)
(0.000612853 -1.74864e-08 0.0104636)
(0.000207363 1.8456e-08 0.00549287)
(-0.00524355 -4.05068e-07 0.160628)
(-0.0136095 -2.67433e-07 0.173711)
(-0.0224863 -1.45007e-07 0.180438)
(-0.0315174 -9.83335e-08 0.184886)
(-0.0404614 -7.77133e-08 0.188188)
(-0.0493231 -6.2984e-08 0.19076)
(-0.0580809 -5.18462e-08 0.192791)
(-0.0667227 -4.66612e-08 0.194379)
(-0.0752372 -3.66088e-08 0.195578)
(-0.0836149 -2.54539e-08 0.19642)
(-0.0918476 -1.23695e-08 0.196927)
(-0.0999275 -2.26329e-09 0.197113)
(-0.107848 -1.36916e-09 0.196988)
(-0.115603 -6.20104e-09 0.196561)
(-0.123187 -8.14712e-09 0.195841)
(-0.130595 -4.06128e-09 0.194833)
(-0.137823 2.23668e-09 0.193547)
(-0.144868 5.81241e-09 0.191988)
(-0.151724 5.10869e-09 0.190164)
(-0.15839 1.843e-09 0.188083)
(-0.164861 -1.39765e-09 0.185753)
(-0.171135 -3.02982e-09 0.183181)
(-0.177209 -2.87643e-09 0.180376)
(-0.183081 -1.62712e-09 0.177346)
(-0.188749 -1.56785e-10 0.174098)
(-0.194209 8.97403e-10 0.170642)
(-0.199461 1.28144e-09 0.166986)
(-0.204502 1.08713e-09 0.163138)
(-0.20933 6.063e-10 0.159107)
(-0.213944 1.46003e-10 0.154901)
(-0.218343 -1.11622e-10 0.150528)
(-0.222525 -1.47536e-10 0.145998)
(-0.226489 -4.96261e-11 0.141317)
(-0.230234 7.39643e-11 0.136495)
(-0.233758 1.54272e-10 0.13154)
(-0.237063 1.72706e-10 0.126459)
(-0.240146 1.40778e-10 0.121263)
(-0.243007 7.73403e-11 0.115958)
(-0.245647 -3.96703e-12 0.110552)
(-0.248065 -9.23572e-11 0.105056)
(-0.250262 -1.75658e-10 0.0994751)
(-0.252238 -2.39206e-10 0.0938196)
(-0.253994 -2.696e-10 0.0880972)
(-0.255529 -2.61244e-10 0.0823162)
(-0.256846 -2.19019e-10 0.0764851)
(-0.257946 -1.57128e-10 0.070612)
(-0.258829 -9.36995e-11 0.0647054)
(-0.259497 -4.44462e-11 0.0587737)
(-0.259953 -1.79172e-11 0.052825)
(-0.260198 -1.40085e-11 0.0468678)
(-0.260234 -2.6685e-11 0.0409102)
(-0.260063 -4.75764e-11 0.0349606)
(-0.259689 -6.83641e-11 0.0290272)
(-0.259114 -8.43759e-11 0.0231179)
(-0.258341 -9.2968e-11 0.017241)
(-0.257373 -9.4449e-11 0.0114042)
(-0.256214 -8.89732e-11 0.00561546)
(-0.254867 -7.73884e-11 -0.000117575)
(-0.253336 -5.96949e-11 -0.00578733)
(-0.251625 -3.597e-11 -0.0113864)
(-0.249738 -7.0868e-12 -0.0169076)
(-0.24768 2.5286e-11 -0.0223438)
(-0.245455 5.94543e-11 -0.0276882)
(-0.243068 9.33387e-11 -0.0329343)
(-0.240524 1.24938e-10 -0.0380758)
(-0.237828 1.53121e-10 -0.0431065)
(-0.234985 1.77531e-10 -0.0480208)
(-0.232 1.98373e-10 -0.052813)
(-0.228879 2.16391e-10 -0.0574782)
(-0.225628 2.32945e-10 -0.0620113)
(-0.222253 2.48728e-10 -0.0664079)
(-0.218759 2.64717e-10 -0.0706638)
(-0.215152 2.81423e-10 -0.0747752)
(-0.211438 2.99104e-10 -0.0787385)
(-0.207623 3.17529e-10 -0.0825507)
(-0.203714 3.36595e-10 -0.0862089)
(-0.199717 3.55661e-10 -0.0897108)
(-0.195638 3.74469e-10 -0.0930543)
(-0.191482 3.92738e-10 -0.0962377)
(-0.187257 4.10032e-10 -0.0992596)
(-0.182968 4.26428e-10 -0.102119)
(-0.178622 4.41566e-10 -0.104816)
(-0.174225 4.55703e-10 -0.107349)
(-0.169783 4.68788e-10 -0.109719)
(-0.165302 4.81129e-10 -0.111926)
(-0.160787 4.92597e-10 -0.113971)
(-0.156246 5.03424e-10 -0.115854)
(-0.151682 5.13739e-10 -0.117578)
(-0.147103 5.2336e-10 -0.119143)
(-0.142514 5.32366e-10 -0.120551)
(-0.13792 5.4068e-10 -0.121805)
(-0.133327 5.48327e-10 -0.122907)
(-0.128739 5.55102e-10 -0.123859)
(-0.124161 5.60902e-10 -0.124664)
(-0.119599 5.65702e-10 -0.125326)
(-0.115057 5.69527e-10 -0.125846)
(-0.11054 5.72147e-10 -0.126229)
(-0.106051 5.73792e-10 -0.126477)
(-0.101596 5.74617e-10 -0.126596)
(-0.0971775 5.74647e-10 -0.126587)
(-0.0928002 5.73779e-10 -0.126455)
(-0.0884675 5.72193e-10 -0.126203)
(-0.0841828 5.70172e-10 -0.125836)
(-0.0799494 5.67304e-10 -0.125358)
(-0.0757705 5.6418e-10 -0.124772)
(-0.071649 5.60415e-10 -0.124083)
(-0.0675877 5.56266e-10 -0.123294)
(-0.0635891 5.51578e-10 -0.12241)
(-0.0596557 5.46429e-10 -0.121435)
(-0.0557898 5.41023e-10 -0.120372)
(-0.0519935 5.35053e-10 -0.119225)
(-0.0482687 5.28801e-10 -0.117999)
(-0.0446173 5.22447e-10 -0.116696)
(-0.0410409 5.15631e-10 -0.115322)
(-0.037541 5.08764e-10 -0.113878)
(-0.0341191 5.01486e-10 -0.11237)
(-0.0307765 4.9426e-10 -0.110799)
(-0.0275142 4.86725e-10 -0.10917)
(-0.0243333 4.79345e-10 -0.107485)
(-0.0212347 4.71964e-10 -0.105748)
(-0.0182192 4.64275e-10 -0.10396)
(-0.0152877 4.56535e-10 -0.102126)
(-0.0124406 4.48486e-10 -0.100247)
(-0.00967856 4.40385e-10 -0.098326)
(-0.00700204 4.31822e-10 -0.0963649)
(-0.00441142 4.23053e-10 -0.0943657)
(-0.00190703 4.1377e-10 -0.0923304)
(0.000510889 4.03921e-10 -0.0902607)
(0.00284211 3.93198e-10 -0.0881581)
(0.00508649 3.81858e-10 -0.0860241)
(0.00724395 3.69387e-10 -0.0838599)
(0.00931446 3.55991e-10 -0.0816667)
(0.011298 3.41411e-10 -0.0794455)
(0.0131947 3.25391e-10 -0.0771971)
(0.0150045 3.0788e-10 -0.0749223)
(0.0167276 2.88877e-10 -0.0726218)
(0.0183642 2.68434e-10 -0.0702962)
(0.0199144 2.466e-10 -0.067946)
(0.0213785 2.2353e-10 -0.0655716)
(0.0227567 1.99429e-10 -0.0631736)
(0.0240493 1.74194e-10 -0.0607522)
(0.0252566 1.48647e-10 -0.058308)
(0.026379 1.22273e-10 -0.0558414)
(0.0274168 9.57916e-11 -0.053353)
(0.0283706 6.92544e-11 -0.0508432)
(0.0292409 4.27122e-11 -0.0483128)
(0.030028 1.59595e-11 -0.0457627)
(0.0307327 -1.11068e-11 -0.0431937)
(0.0313555 -3.95663e-11 -0.0406071)
(0.0318972 -6.98822e-11 -0.0380041)
(0.0323586 -1.037e-10 -0.0353864)
(0.0327404 -1.42512e-10 -0.0327559)
(0.0330436 -1.88272e-10 -0.0301145)
(0.0332693 -2.42423e-10 -0.0274648)
(0.0334184 -3.07435e-10 -0.0248094)
(0.0334921 -3.84751e-10 -0.0221515)
(0.0334918 -4.7566e-10 -0.0194944)
(0.0334188 -5.80936e-10 -0.016842)
(0.0332746 -7.00481e-10 -0.0141984)
(0.0330608 -8.33476e-10 -0.0115682)
(0.0327791 -9.77866e-10 -0.00895627)
(0.0324314 -1.13098e-09 -0.00636805)
(0.0320196 -1.28844e-09 -0.00380923)
(0.0315459 -1.44593e-09 -0.00128591)
(0.0310125 -1.5982e-09 0.00119546)
(0.0304216 -1.73984e-09 0.00362803)
(0.0297759 -1.8657e-09 0.00600471)
(0.029078 -1.97135e-09 0.00831807)
(0.0283305 -2.05276e-09 0.0105604)
(0.0275365 -2.1071e-09 0.012724)
(0.0266988 -2.13307e-09 0.0148006)
(0.0258207 -2.13133e-09 0.0167822)
(0.0249053 -2.10424e-09 0.0186606)
(0.0239561 -2.05694e-09 0.0204276)
(0.0229765 -1.99583e-09 0.0220751)
(0.0219701 -1.93036e-09 0.0235952)
(0.0209404 -1.87018e-09 0.0249802)
(0.0198914 -1.82569e-09 0.0262226)
(0.0188267 -1.80592e-09 0.0273156)
(0.0177502 -1.81746e-09 0.0282525)
(0.016666 -1.86439e-09 0.0290274)
(0.0155779 -1.94682e-09 0.029635)
(0.0144899 -2.06397e-09 0.0300704)
(0.0134062 -2.21163e-09 0.0303299)
(0.0123308 -2.3837e-09 0.0304103)
(0.0112677 -2.56976e-09 0.0303091)
(0.0102212 -2.76176e-09 0.030025)
(0.00919527 -2.96214e-09 0.029557)
(0.00819409 -3.1882e-09 0.0289051)
(0.00722184 -3.46517e-09 0.0280696)
(0.0062827 -3.81904e-09 0.0270511)
(0.00538093 -4.31118e-09 0.0258499)
(0.00452088 -5.06171e-09 0.0244651)
(0.00370707 -6.17736e-09 0.0228932)
(0.00294427 -7.66016e-09 0.021125)
(0.00223773 -9.55341e-09 0.0191402)
(0.00159346 -1.211e-08 0.0168929)
(0.00102008 -1.57726e-08 0.0142722)
(0.000537038 -1.45868e-08 0.0109546)
(0.000174857 2.68946e-08 0.0058618)
(-0.00524416 -4.05067e-07 0.160627)
(-0.0136098 -2.67431e-07 0.17371)
(-0.0224863 -1.45006e-07 0.180437)
(-0.0315174 -9.83331e-08 0.184886)
(-0.0404613 -7.77129e-08 0.188188)
(-0.0493231 -6.29836e-08 0.190759)
(-0.0580808 -5.1846e-08 0.192791)
(-0.0667226 -4.66609e-08 0.194379)
(-0.0752371 -3.66086e-08 0.195578)
(-0.0836149 -2.54538e-08 0.19642)
(-0.0918476 -1.23694e-08 0.196927)
(-0.0999275 -2.26328e-09 0.197113)
(-0.107848 -1.36915e-09 0.196988)
(-0.115603 -6.20101e-09 0.196561)
(-0.123187 -8.14708e-09 0.195841)
(-0.130595 -4.06126e-09 0.194833)
(-0.137823 2.23667e-09 0.193547)
(-0.144868 5.81239e-09 0.191988)
(-0.151724 5.10867e-09 0.190164)
(-0.15839 1.84299e-09 0.188083)
(-0.164861 -1.39765e-09 0.185753)
(-0.171135 -3.02981e-09 0.183181)
(-0.177209 -2.87642e-09 0.180376)
(-0.183081 -1.62711e-09 0.177346)
(-0.188749 -1.56785e-10 0.174098)
(-0.194209 8.974e-10 0.170642)
(-0.199461 1.28144e-09 0.166986)
(-0.204502 1.08712e-09 0.163138)
(-0.20933 6.06298e-10 0.159107)
(-0.213944 1.46003e-10 0.154901)
(-0.218343 -1.11622e-10 0.150528)
(-0.222525 -1.47536e-10 0.145998)
(-0.226489 -4.9626e-11 0.141317)
(-0.230234 7.39641e-11 0.136495)
(-0.233758 1.54272e-10 0.13154)
(-0.237063 1.72706e-10 0.126459)
(-0.240146 1.40778e-10 0.121263)
(-0.243007 7.73401e-11 0.115958)
(-0.245647 -3.96703e-12 0.110552)
(-0.248065 -9.2357e-11 0.105056)
(-0.250262 -1.75657e-10 0.0994752)
(-0.252238 -2.39206e-10 0.0938196)
(-0.253994 -2.69599e-10 0.0880972)
(-0.255529 -2.61243e-10 0.0823163)
(-0.256846 -2.19019e-10 0.0764851)
(-0.257946 -1.57128e-10 0.0706121)
(-0.258829 -9.36994e-11 0.0647055)
(-0.259497 -4.44461e-11 0.0587737)
(-0.259953 -1.79172e-11 0.052825)
(-0.260198 -1.40084e-11 0.0468678)
(-0.260234 -2.6685e-11 0.0409102)
(-0.260063 -4.75763e-11 0.0349606)
(-0.259689 -6.8364e-11 0.0290272)
(-0.259114 -8.43758e-11 0.023118)
(-0.258341 -9.29679e-11 0.017241)
(-0.257373 -9.44489e-11 0.0114042)
(-0.256214 -8.89731e-11 0.00561548)
(-0.254867 -7.73883e-11 -0.000117555)
(-0.253336 -5.96949e-11 -0.00578731)
(-0.251625 -3.597e-11 -0.0113864)
(-0.249738 -7.08679e-12 -0.0169075)
(-0.24768 2.5286e-11 -0.0223437)
(-0.245455 5.94542e-11 -0.0276882)
(-0.243068 9.33386e-11 -0.0329343)
(-0.240524 1.24937e-10 -0.0380757)
(-0.237828 1.53121e-10 -0.0431065)
(-0.234985 1.77531e-10 -0.0480207)
(-0.232 1.98373e-10 -0.052813)
(-0.228879 2.1639e-10 -0.0574782)
(-0.225628 2.32944e-10 -0.0620113)
(-0.222253 2.48728e-10 -0.0664079)
(-0.218759 2.64716e-10 -0.0706638)
(-0.215152 2.81423e-10 -0.0747752)
(-0.211438 2.99104e-10 -0.0787385)
(-0.207624 3.17529e-10 -0.0825507)
(-0.203715 3.36595e-10 -0.0862089)
(-0.199717 3.5566e-10 -0.0897108)
(-0.195638 3.74468e-10 -0.0930543)
(-0.191482 3.92738e-10 -0.0962376)
(-0.187257 4.10031e-10 -0.0992596)
(-0.182968 4.26427e-10 -0.102119)
(-0.178622 4.41565e-10 -0.104816)
(-0.174225 4.55702e-10 -0.107349)
(-0.169783 4.68787e-10 -0.109719)
(-0.165302 4.81128e-10 -0.111926)
(-0.160787 4.92596e-10 -0.113971)
(-0.156246 5.03423e-10 -0.115854)
(-0.151682 5.13737e-10 -0.117578)
(-0.147103 5.23359e-10 -0.119143)
(-0.142514 5.32365e-10 -0.120551)
(-0.13792 5.40679e-10 -0.121805)
(-0.133327 5.48325e-10 -0.122907)
(-0.128739 5.551e-10 -0.123859)
(-0.124161 5.609e-10 -0.124664)
(-0.119599 5.657e-10 -0.125326)
(-0.115057 5.69525e-10 -0.125846)
(-0.11054 5.72145e-10 -0.126229)
(-0.106051 5.7379e-10 -0.126477)
(-0.101596 5.74615e-10 -0.126596)
(-0.0971775 5.74645e-10 -0.126587)
(-0.0928002 5.73777e-10 -0.126455)
(-0.0884675 5.72191e-10 -0.126203)
(-0.0841828 5.7017e-10 -0.125836)
(-0.0799495 5.67302e-10 -0.125358)
(-0.0757706 5.64178e-10 -0.124772)
(-0.0716491 5.60414e-10 -0.124083)
(-0.0675877 5.56264e-10 -0.123294)
(-0.0635892 5.51576e-10 -0.12241)
(-0.0596558 5.46427e-10 -0.121435)
(-0.0557899 5.41021e-10 -0.120372)
(-0.0519935 5.35052e-10 -0.119225)
(-0.0482688 5.288e-10 -0.117999)
(-0.0446173 5.22445e-10 -0.116696)
(-0.0410409 5.15629e-10 -0.115322)
(-0.0375411 5.08762e-10 -0.113878)
(-0.0341192 5.01484e-10 -0.11237)
(-0.0307765 4.94258e-10 -0.110799)
(-0.0275142 4.86724e-10 -0.10917)
(-0.0243333 4.79343e-10 -0.107485)
(-0.0212347 4.71962e-10 -0.105748)
(-0.0182193 4.64274e-10 -0.10396)
(-0.0152877 4.56533e-10 -0.102126)
(-0.0124406 4.48484e-10 -0.100247)
(-0.00967861 4.40384e-10 -0.098326)
(-0.00700208 4.31821e-10 -0.0963649)
(-0.00441146 4.23052e-10 -0.0943657)
(-0.00190707 4.13768e-10 -0.0923304)
(0.000510849 4.0392e-10 -0.0902607)
(0.00284206 3.93197e-10 -0.0881581)
(0.00508645 3.81857e-10 -0.0860241)
(0.00724391 3.69386e-10 -0.0838599)
(0.00931442 3.55989e-10 -0.0816667)
(0.011298 3.4141e-10 -0.0794455)
(0.0131946 3.2539e-10 -0.0771971)
(0.0150045 3.07879e-10 -0.0749223)
(0.0167276 2.88876e-10 -0.0726218)
(0.0183642 2.68433e-10 -0.0702962)
(0.0199144 2.46599e-10 -0.067946)
(0.0213784 2.23529e-10 -0.0655716)
(0.0227566 1.99428e-10 -0.0631736)
(0.0240492 1.74193e-10 -0.0607522)
(0.0252565 1.48646e-10 -0.058308)
(0.0263789 1.22272e-10 -0.0558414)
(0.0274168 9.57913e-11 -0.053353)
(0.0283706 6.92541e-11 -0.0508432)
(0.0292408 4.27121e-11 -0.0483128)
(0.030028 1.59595e-11 -0.0457627)
(0.0307326 -1.11068e-11 -0.0431937)
(0.0313555 -3.95662e-11 -0.0406071)
(0.0318972 -6.98819e-11 -0.0380041)
(0.0323586 -1.037e-10 -0.0353864)
(0.0327404 -1.42511e-10 -0.0327559)
(0.0330436 -1.88271e-10 -0.0301145)
(0.0332692 -2.42422e-10 -0.0274648)
(0.0334183 -3.07434e-10 -0.0248094)
(0.0334921 -3.8475e-10 -0.0221515)
(0.0334917 -4.75658e-10 -0.0194944)
(0.0334187 -5.80934e-10 -0.016842)
(0.0332745 -7.00479e-10 -0.0141984)
(0.0330607 -8.33473e-10 -0.0115682)
(0.032779 -9.77863e-10 -0.00895626)
(0.0324313 -1.13097e-09 -0.00636804)
(0.0320196 -1.28844e-09 -0.00380922)
(0.0315459 -1.44593e-09 -0.00128589)
(0.0310124 -1.59819e-09 0.00119547)
(0.0304216 -1.73983e-09 0.00362805)
(0.0297759 -1.86569e-09 0.00600472)
(0.029078 -1.97134e-09 0.00831808)
(0.0283305 -2.05275e-09 0.0105605)
(0.0275365 -2.10709e-09 0.012724)
(0.0266988 -2.13306e-09 0.0148006)
(0.0258207 -2.13132e-09 0.0167822)
(0.0249053 -2.10423e-09 0.0186606)
(0.0239561 -2.05694e-09 0.0204276)
(0.0229765 -1.99582e-09 0.0220751)
(0.02197 -1.93036e-09 0.0235952)
(0.0209404 -1.87017e-09 0.0249802)
(0.0198913 -1.82569e-09 0.0262226)
(0.0188267 -1.80591e-09 0.0273156)
(0.0177502 -1.81745e-09 0.0282525)
(0.0166659 -1.86438e-09 0.0290274)
(0.0155778 -1.94681e-09 0.029635)
(0.0144899 -2.06397e-09 0.0300705)
(0.0134062 -2.21162e-09 0.03033)
(0.0123308 -2.38369e-09 0.0304103)
(0.0112677 -2.56976e-09 0.0303092)
(0.0102212 -2.76175e-09 0.030025)
(0.00919525 -2.96214e-09 0.029557)
(0.00819407 -3.1882e-09 0.0289051)
(0.00722182 -3.46516e-09 0.0280696)
(0.00628267 -3.81903e-09 0.0270511)
(0.0053809 -4.31116e-09 0.0258499)
(0.00452086 -5.06169e-09 0.0244651)
(0.00370705 -6.17733e-09 0.0228932)
(0.00294424 -7.66013e-09 0.021125)
(0.00223769 -9.55337e-09 0.0191402)
(0.00159342 -1.211e-08 0.0168928)
(0.00102005 -1.57726e-08 0.0142721)
(0.000537006 -1.45868e-08 0.0109545)
(0.000174812 2.68946e-08 0.00586161)
(-0.00532707 -4.70401e-07 0.170119)
(-0.0138925 -2.17622e-07 0.183301)
(-0.0229589 -9.25256e-08 0.190028)
(-0.0321939 -5.6652e-08 0.194428)
(-0.0413476 -4.73189e-08 0.197651)
(-0.050425 -3.99569e-08 0.200125)
(-0.0594021 -3.5927e-08 0.202042)
(-0.0682653 -4.33104e-08 0.203502)
(-0.0770016 -4.12503e-08 0.204562)
(-0.0855998 -3.46006e-08 0.205255)
(-0.0940503 -2.25408e-08 0.205604)
(-0.102344 -9.8085e-09 0.205623)
(-0.110474 -5.30283e-09 0.205325)
(-0.118432 -8.79625e-09 0.204719)
(-0.126213 -1.15808e-08 0.203812)
(-0.13381 -8.02211e-09 0.202614)
(-0.141219 -4.79942e-10 0.201132)
(-0.148436 5.40256e-09 0.199373)
(-0.155456 6.54429e-09 0.197345)
(-0.162276 3.82736e-09 0.195057)
(-0.168892 2.88134e-11 0.192517)
(-0.175302 -2.57804e-09 0.189731)
(-0.181502 -3.22228e-09 0.18671)
(-0.187489 -2.34422e-09 0.18346)
(-0.193262 -8.56951e-10 0.179992)
(-0.198819 4.33785e-10 0.176313)
(-0.204156 1.09727e-09 0.172431)
(-0.209273 1.10552e-09 0.168356)
(-0.214168 7.08099e-10 0.164095)
(-0.218839 2.33887e-10 0.159659)
(-0.223284 -8.12737e-11 0.155054)
(-0.227503 -1.67825e-10 0.15029)
(-0.231495 -8.90382e-11 0.145375)
(-0.235259 4.54972e-11 0.140318)
(-0.238793 1.51959e-10 0.135126)
(-0.242098 1.97225e-10 0.12981)
(-0.245173 1.84766e-10 0.124376)
(-0.248019 1.31507e-10 0.118834)
(-0.250634 5.21641e-11 0.113192)
(-0.25302 -4.19375e-11 0.107458)
(-0.255176 -1.38011e-10 0.101642)
(-0.257104 -2.19727e-10 0.0957504)
(-0.258804 -2.70398e-10 0.0897931)
(-0.260276 -2.80092e-10 0.0837783)
(-0.261523 -2.49324e-10 0.0777146)
(-0.262546 -1.90139e-10 0.0716103)
(-0.263346 -1.20866e-10 0.0654743)
(-0.263925 -5.9735e-11 0.0593148)
(-0.264285 -1.90142e-11 0.0531406)
(-0.264429 -2.03984e-12 0.0469602)
(-0.264358 -5.08831e-12 0.0407819)
(-0.264075 -2.03293e-11 0.0346143)
(-0.263584 -3.91633e-11 0.0284658)
(-0.262886 -5.55836e-11 0.0223447)
(-0.261986 -6.61512e-11 0.0162593)
(-0.260887 -6.98654e-11 0.0102176)
(-0.259593 -6.65984e-11 0.00422783)
(-0.258107 -5.68382e-11 -0.00170227)
(-0.256433 -4.04313e-11 -0.00756483)
(-0.254576 -1.74036e-11 -0.0133523)
(-0.25254 1.14231e-11 -0.0190571)
(-0.250331 4.45859e-11 -0.0246722)
(-0.247952 8.04419e-11 -0.0301905)
(-0.245408 1.16707e-10 -0.0356052)
(-0.242706 1.51226e-10 -0.0409099)
(-0.23985 1.82587e-10 -0.0460984)
(-0.236846 2.09994e-10 -0.0511646)
(-0.233699 2.33449e-10 -0.056103)
(-0.230416 2.53824e-10 -0.0609083)
(-0.227002 2.71992e-10 -0.0655754)
(-0.223462 2.89029e-10 -0.0700998)
(-0.219805 3.05836e-10 -0.0744771)
(-0.216035 3.23103e-10 -0.0787035)
(-0.212158 3.41037e-10 -0.0827754)
(-0.208182 3.59843e-10 -0.0866895)
(-0.204113 3.78957e-10 -0.0904431)
(-0.199956 3.98173e-10 -0.0940337)
(-0.195719 4.17311e-10 -0.0974592)
(-0.191408 4.3573e-10 -0.100718)
(-0.187029 4.53046e-10 -0.103809)
(-0.182589 4.69439e-10 -0.10673)
(-0.178095 4.84522e-10 -0.109483)
(-0.173552 4.98605e-10 -0.112065)
(-0.168966 5.11354e-10 -0.114477)
(-0.164345 5.23154e-10 -0.116721)
(-0.159694 5.33953e-10 -0.118795)
(-0.155019 5.43931e-10 -0.120702)
(-0.150327 5.53371e-10 -0.122444)
(-0.145622 5.62041e-10 -0.12402)
(-0.140911 5.70122e-10 -0.125435)
(-0.136199 5.77459e-10 -0.126689)
(-0.131491 5.83847e-10 -0.127785)
(-0.126794 5.89312e-10 -0.128727)
(-0.122111 5.93931e-10 -0.129516)
(-0.117448 5.9737e-10 -0.130156)
(-0.112809 5.99707e-10 -0.130651)
(-0.108199 6.00992e-10 -0.131003)
(-0.103623 6.01149e-10 -0.131217)
(-0.0990845 6.00357e-10 -0.131295)
(-0.0945875 5.98642e-10 -0.131243)
(-0.0901359 5.96004e-10 -0.131064)
(-0.0857334 5.92648e-10 -0.130761)
(-0.0813834 5.88549e-10 -0.13034)
(-0.0770892 5.83809e-10 -0.129804)
(-0.0728539 5.78607e-10 -0.129157)
(-0.0686804 5.72688e-10 -0.128403)
(-0.0645713 5.66563e-10 -0.127548)
(-0.0605293 5.59644e-10 -0.126594)
(-0.0565567 5.52571e-10 -0.125547)
(-0.0526557 5.4496e-10 -0.124409)
(-0.0488283 5.36963e-10 -0.123186)
(-0.0450765 5.28685e-10 -0.121882)
(-0.0414019 5.20177e-10 -0.120499)
(-0.0378062 5.11437e-10 -0.119043)
(-0.0342908 5.02492e-10 -0.117516)
(-0.0308569 4.93342e-10 -0.115923)
(-0.0275058 4.84115e-10 -0.114267)
(-0.0242385 4.75016e-10 -0.112551)
(-0.021056 4.65788e-10 -0.110778)
(-0.017959 4.56458e-10 -0.108952)
(-0.0149483 4.47076e-10 -0.107075)
(-0.0120246 4.37283e-10 -0.105151)
(-0.00918821 4.27746e-10 -0.103181)
(-0.00643974 4.17849e-10 -0.101169)
(-0.00377952 4.07541e-10 -0.0991161)
(-0.00120786 3.9713e-10 -0.097025)
(0.00127507 3.86102e-10 -0.0948975)
(0.00366902 3.74251e-10 -0.0927355)
(0.00597394 3.61937e-10 -0.0905404)
(0.00818977 3.48801e-10 -0.0883139)
(0.0103165 3.34688e-10 -0.0860572)
(0.0123543 3.19392e-10 -0.0837714)
(0.014303 3.02708e-10 -0.0814577)
(0.016163 2.8484e-10 -0.079117)
(0.0179344 2.65584e-10 -0.0767501)
(0.0196172 2.44682e-10 -0.0743576)
(0.0212119 2.22751e-10 -0.0719402)
(0.0227186 1.99429e-10 -0.0694985)
(0.0241376 1.75077e-10 -0.0670329)
(0.0254693 1.50001e-10 -0.064544)
(0.026714 1.23998e-10 -0.0620321)
(0.0278721 9.78358e-11 -0.0594978)
(0.028944 7.13612e-11 -0.0569415)
(0.0299301 4.4882e-11 -0.0543638)
(0.030831 1.87577e-11 -0.0517653)
(0.0316472 -7.52547e-12 -0.0491469)
(0.0323793 -3.3865e-11 -0.0465092)
(0.0330278 -6.12375e-11 -0.0438535)
(0.0335936 -9.026e-11 -0.0411808)
(0.0340773 -1.22423e-10 -0.0384926)
(0.0344797 -1.59013e-10 -0.0357906)
(0.0348018 -2.02293e-10 -0.0330766)
(0.0350445 -2.53754e-10 -0.0303529)
(0.0352088 -3.15662e-10 -0.027622)
(0.0352958 -3.89561e-10 -0.0248866)
(0.0353068 -4.77151e-10 -0.0221501)
(0.0352431 -5.78949e-10 -0.0194158)
(0.0351061 -6.95114e-10 -0.0166877)
(0.0348973 -8.24723e-10 -0.0139701)
(0.0346184 -9.65723e-10 -0.0112677)
(0.0342712 -1.11524e-09 -0.00858549)
(0.0338575 -1.26941e-09 -0.00592904)
(0.0333794 -1.42309e-09 -0.00330418)
(0.032839 -1.57119e-09 -0.000717139)
(0.0322386 -1.7081e-09 0.00182547)
(0.0315807 -1.82866e-09 0.0043167)
(0.0308677 -1.9283e-09 0.00674928)
(0.0301025 -2.00325e-09 0.00911566)
(0.0292878 -2.05149e-09 0.011408)
(0.0284267 -2.07163e-09 0.0136184)
(0.0275222 -2.06494e-09 0.0157386)
(0.0265776 -2.0343e-09 0.0177603)
(0.0255963 -1.98378e-09 0.0196753)
(0.0245817 -1.92067e-09 0.0214752)
(0.0235376 -1.85254e-09 0.0231518)
(0.0224676 -1.78903e-09 0.0246972)
(0.0213756 -1.73966e-09 0.0261034)
(0.0202654 -1.71372e-09 0.0273631)
(0.0191413 -1.71748e-09 0.0284692)
(0.0180072 -1.75503e-09 0.029415)
(0.0168673 -1.82595e-09 0.0301945)
(0.015726 -1.92736e-09 0.0308023)
(0.0145874 -2.05418e-09 0.0312337)
(0.013456 -2.20055e-09 0.0314847)
(0.0123362 -2.35639e-09 0.0315522)
(0.0112324 -2.51127e-09 0.0314337)
(0.010149 -2.65568e-09 0.0311277)
(0.0090906 -2.79414e-09 0.0306334)
(0.00806165 -2.94848e-09 0.0299506)
(0.00706672 -3.15235e-09 0.0290797)
(0.0061104 -3.44395e-09 0.0280212)
(0.00519731 -3.88646e-09 0.0267754)
(0.00433221 -4.58864e-09 0.0253411)
(0.00351997 -5.63771e-09 0.0237147)
(0.00276572 -7.0119e-09 0.0218867)
(0.00207505 -8.69357e-09 0.019836)
(0.00145432 -1.08328e-08 0.0175157)
(0.000912337 -1.38832e-08 0.0148125)
(0.00046752 -1.20277e-08 0.0113975)
(0.000144392 3.29424e-08 0.00618057)
(-0.00532772 -4.70401e-07 0.170118)
(-0.0138927 -2.17621e-07 0.1833)
(-0.0229589 -9.25251e-08 0.190027)
(-0.0321938 -5.66518e-08 0.194427)
(-0.0413475 -4.73187e-08 0.197651)
(-0.0504249 -3.99567e-08 0.200124)
(-0.0594021 -3.59268e-08 0.202042)
(-0.0682652 -4.33101e-08 0.203502)
(-0.0770014 -4.12501e-08 0.204562)
(-0.0855997 -3.46004e-08 0.205255)
(-0.0940503 -2.25407e-08 0.205604)
(-0.102344 -9.80845e-09 0.205623)
(-0.110474 -5.3028e-09 0.205325)
(-0.118432 -8.79621e-09 0.204718)
(-0.126213 -1.15807e-08 0.203812)
(-0.13381 -8.02208e-09 0.202614)
(-0.141219 -4.7994e-10 0.201132)
(-0.148436 5.40254e-09 0.199373)
(-0.155456 6.54427e-09 0.197345)
(-0.162276 3.82734e-09 0.195057)
(-0.168892 2.88133e-11 0.192517)
(-0.175302 -2.57803e-09 0.189731)
(-0.181502 -3.22226e-09 0.18671)
(-0.187489 -2.34421e-09 0.18346)
(-0.193262 -8.56948e-10 0.179992)
(-0.198819 4.33784e-10 0.176313)
(-0.204156 1.09727e-09 0.172431)
(-0.209273 1.10552e-09 0.168356)
(-0.214168 7.08097e-10 0.164095)
(-0.218839 2.33886e-10 0.159659)
(-0.223284 -8.12736e-11 0.155054)
(-0.227503 -1.67825e-10 0.15029)
(-0.231495 -8.9038e-11 0.145375)
(-0.235259 4.54971e-11 0.140318)
(-0.238793 1.51959e-10 0.135126)
(-0.242098 1.97225e-10 0.12981)
(-0.245173 1.84765e-10 0.124376)
(-0.248019 1.31507e-10 0.118834)
(-0.250634 5.2164e-11 0.113192)
(-0.25302 -4.19375e-11 0.107458)
(-0.255176 -1.38011e-10 0.101642)
(-0.257104 -2.19726e-10 0.0957504)
(-0.258804 -2.70398e-10 0.0897931)
(-0.260276 -2.80092e-10 0.0837783)
(-0.261523 -2.49324e-10 0.0777146)
(-0.262546 -1.90138e-10 0.0716104)
(-0.263346 -1.20866e-10 0.0654743)
(-0.263925 -5.97349e-11 0.0593149)
(-0.264285 -1.90142e-11 0.0531407)
(-0.264429 -2.03983e-12 0.0469602)
(-0.264358 -5.08831e-12 0.0407819)
(-0.264075 -2.03293e-11 0.0346143)
(-0.263584 -3.91632e-11 0.0284658)
(-0.262886 -5.55836e-11 0.0223448)
(-0.261986 -6.61512e-11 0.0162593)
(-0.260887 -6.98654e-11 0.0102177)
(-0.259593 -6.65983e-11 0.00422785)
(-0.258107 -5.68381e-11 -0.00170225)
(-0.256433 -4.04313e-11 -0.00756481)
(-0.254576 -1.74036e-11 -0.0133523)
(-0.25254 1.14231e-11 -0.0190571)
(-0.250331 4.45858e-11 -0.0246722)
(-0.247952 8.04418e-11 -0.0301905)
(-0.245408 1.16707e-10 -0.0356052)
(-0.242706 1.51226e-10 -0.0409099)
(-0.23985 1.82586e-10 -0.0460984)
(-0.236846 2.09994e-10 -0.0511646)
(-0.233699 2.33449e-10 -0.056103)
(-0.230416 2.53824e-10 -0.0609082)
(-0.227002 2.71991e-10 -0.0655754)
(-0.223463 2.89029e-10 -0.0700998)
(-0.219805 3.05835e-10 -0.0744771)
(-0.216035 3.23103e-10 -0.0787035)
(-0.212158 3.41037e-10 -0.0827753)
(-0.208182 3.59843e-10 -0.0866895)
(-0.204113 3.78956e-10 -0.090443)
(-0.199956 3.98172e-10 -0.0940337)
(-0.195719 4.1731e-10 -0.0974592)
(-0.191408 4.3573e-10 -0.100718)
(-0.187029 4.53046e-10 -0.103809)
(-0.182589 4.69438e-10 -0.10673)
(-0.178095 4.84521e-10 -0.109483)
(-0.173552 4.98604e-10 -0.112065)
(-0.168966 5.11353e-10 -0.114477)
(-0.164345 5.23152e-10 -0.11672)
(-0.159694 5.33952e-10 -0.118795)
(-0.155019 5.4393e-10 -0.120702)
(-0.150327 5.5337e-10 -0.122444)
(-0.145622 5.6204e-10 -0.12402)
(-0.140911 5.70121e-10 -0.125435)
(-0.136199 5.77458e-10 -0.126689)
(-0.131491 5.83846e-10 -0.127785)
(-0.126794 5.89311e-10 -0.128727)
(-0.122111 5.93929e-10 -0.129516)
(-0.117448 5.97369e-10 -0.130156)
(-0.112809 5.99705e-10 -0.130651)
(-0.108199 6.0099e-10 -0.131003)
(-0.103623 6.01147e-10 -0.131217)
(-0.0990845 6.00355e-10 -0.131295)
(-0.0945875 5.9864e-10 -0.131243)
(-0.0901359 5.96002e-10 -0.131064)
(-0.0857334 5.92646e-10 -0.130761)
(-0.0813835 5.88547e-10 -0.13034)
(-0.0770893 5.83807e-10 -0.129804)
(-0.0728539 5.78605e-10 -0.129157)
(-0.0686804 5.72686e-10 -0.128403)
(-0.0645713 5.66561e-10 -0.127548)
(-0.0605293 5.59642e-10 -0.126594)
(-0.0565567 5.52569e-10 -0.125547)
(-0.0526557 5.44958e-10 -0.124409)
(-0.0488283 5.36962e-10 -0.123186)
(-0.0450765 5.28684e-10 -0.121882)
(-0.041402 5.20175e-10 -0.120499)
(-0.0378062 5.11435e-10 -0.119043)
(-0.0342908 5.0249e-10 -0.117516)
(-0.030857 4.9334e-10 -0.115923)
(-0.0275059 4.84113e-10 -0.114267)
(-0.0242386 4.75014e-10 -0.112551)
(-0.021056 4.65787e-10 -0.110778)
(-0.0179591 4.56456e-10 -0.108952)
(-0.0149484 4.47074e-10 -0.107075)
(-0.0120246 4.37281e-10 -0.105151)
(-0.00918825 4.27744e-10 -0.103181)
(-0.00643979 4.17848e-10 -0.101169)
(-0.00377957 4.0754e-10 -0.0991161)
(-0.0012079 3.97129e-10 -0.097025)
(0.00127503 3.861e-10 -0.0948975)
(0.00366898 3.7425e-10 -0.0927355)
(0.0059739 3.61936e-10 -0.0905405)
(0.00818973 3.488e-10 -0.0883139)
(0.0103165 3.34686e-10 -0.0860572)
(0.0123542 3.19391e-10 -0.0837714)
(0.014303 3.02707e-10 -0.0814578)
(0.016163 2.84839e-10 -0.079117)
(0.0179343 2.65583e-10 -0.0767501)
(0.0196172 2.44682e-10 -0.0743576)
(0.0212119 2.2275e-10 -0.0719402)
(0.0227186 1.99428e-10 -0.0694985)
(0.0241376 1.75076e-10 -0.0670329)
(0.0254693 1.50001e-10 -0.064544)
(0.026714 1.23997e-10 -0.0620321)
(0.0278721 9.78354e-11 -0.0594978)
(0.0289439 7.13609e-11 -0.0569415)
(0.0299301 4.48818e-11 -0.0543638)
(0.030831 1.87577e-11 -0.0517653)
(0.0316472 -7.52544e-12 -0.0491469)
(0.0323792 -3.38649e-11 -0.0465092)
(0.0330278 -6.12373e-11 -0.0438535)
(0.0335935 -9.02597e-11 -0.0411808)
(0.0340772 -1.22423e-10 -0.0384926)
(0.0344797 -1.59013e-10 -0.0357906)
(0.0348018 -2.02292e-10 -0.0330766)
(0.0350444 -2.53754e-10 -0.0303529)
(0.0352087 -3.15661e-10 -0.027622)
(0.0352958 -3.8956e-10 -0.0248866)
(0.0353068 -4.77149e-10 -0.0221501)
(0.0352431 -5.78947e-10 -0.0194158)
(0.0351061 -6.95112e-10 -0.0166877)
(0.0348973 -8.24721e-10 -0.0139701)
(0.0346184 -9.6572e-10 -0.0112677)
(0.0342712 -1.11523e-09 -0.00858548)
(0.0338575 -1.2694e-09 -0.00592903)
(0.0333794 -1.42308e-09 -0.00330417)
(0.032839 -1.57118e-09 -0.000717128)
(0.0322386 -1.70809e-09 0.00182549)
(0.0315806 -1.82866e-09 0.00431672)
(0.0308677 -1.9283e-09 0.0067493)
(0.0301025 -2.00325e-09 0.00911568)
(0.0292878 -2.05149e-09 0.0114081)
(0.0284267 -2.07162e-09 0.0136184)
(0.0275222 -2.06494e-09 0.0157386)
(0.0265776 -2.0343e-09 0.0177603)
(0.0255962 -1.98377e-09 0.0196753)
(0.0245817 -1.92066e-09 0.0214752)
(0.0235376 -1.85254e-09 0.0231519)
(0.0224676 -1.78903e-09 0.0246972)
(0.0213755 -1.73966e-09 0.0261035)
(0.0202654 -1.71371e-09 0.0273632)
(0.0191412 -1.71748e-09 0.0284692)
(0.0180071 -1.75502e-09 0.029415)
(0.0168673 -1.82594e-09 0.0301945)
(0.0157259 -1.92736e-09 0.0308023)
(0.0145874 -2.05417e-09 0.0312337)
(0.013456 -2.20055e-09 0.0314848)
(0.0123362 -2.35639e-09 0.0315522)
(0.0112324 -2.51126e-09 0.0314337)
(0.010149 -2.65568e-09 0.0311277)
(0.00909058 -2.79414e-09 0.0306334)
(0.00806163 -2.94847e-09 0.0299506)
(0.0070667 -3.15235e-09 0.0290797)
(0.00611038 -3.44394e-09 0.0280212)
(0.00519729 -3.88644e-09 0.0267754)
(0.00433219 -4.58862e-09 0.0253411)
(0.00351994 -5.63769e-09 0.0237147)
(0.00276569 -7.01187e-09 0.0218867)
(0.00207502 -8.69354e-09 0.019836)
(0.00145429 -1.08327e-08 0.0175156)
(0.000912307 -1.38831e-08 0.0148123)
(0.000467499 -1.20277e-08 0.0113973)
(0.000144367 3.29424e-08 0.00618039)
(-0.00541334 -1.42563e-07 0.17981)
(-0.0141837 -2.35215e-08 0.193096)
(-0.0234498 2.55266e-08 0.199832)
(-0.0328993 2.25105e-08 0.204191)
(-0.0422742 8.00265e-09 0.207344)
(-0.0515786 5.00294e-09 0.209724)
(-0.0607859 2.94469e-09 0.21153)
(-0.0698808 -1.95814e-08 0.212864)
(-0.0788484 -2.94709e-08 0.213784)
(-0.0876758 -3.06013e-08 0.214326)
(-0.0963519 -2.38135e-08 0.214512)
(-0.104867 -1.33279e-08 0.21436)
(-0.113212 -8.12645e-09 0.213882)
(-0.121378 -1.08695e-08 0.213089)
(-0.12936 -1.45672e-08 0.211989)
(-0.13715 -1.22199e-08 0.210591)
(-0.144744 -4.30487e-09 0.208905)
(-0.152137 3.60993e-09 0.206937)
(-0.159324 7.07451e-09 0.204696)
(-0.166301 5.70954e-09 0.202191)
(-0.173064 1.99172e-09 0.199429)
(-0.179611 -1.33914e-09 0.19642)
(-0.185939 -2.86843e-09 0.193172)
(-0.192044 -2.61542e-09 0.189693)
(-0.197924 -1.37391e-09 0.185993)
(-0.203578 -3.2386e-11 0.182079)
(-0.209002 8.23241e-10 0.177961)
(-0.214196 1.02386e-09 0.173648)
(-0.219157 7.38784e-10 0.169149)
(-0.223885 2.85378e-10 0.164471)
(-0.228378 -6.54716e-11 0.159624)
(-0.232634 -1.9779e-10 0.154617)
(-0.236654 -1.43305e-10 0.149457)
(-0.240435 -4.11805e-12 0.144155)
(-0.243979 1.2677e-10 0.138718)
(-0.247284 2.02222e-10 0.133156)
(-0.25035 2.16543e-10 0.127476)
(-0.253178 1.817e-10 0.121688)
(-0.255767 1.11484e-10 0.115801)
(-0.258118 1.69603e-11 0.109822)
(-0.260232 -8.89556e-11 0.10376)
(-0.262109 -1.88346e-10 0.0976254)
(-0.263751 -2.61162e-10 0.0914254)
(-0.265158 -2.92545e-10 0.0851691)
(-0.266332 -2.77774e-10 0.0788653)
(-0.267275 -2.25451e-10 0.0725228)
(-0.267988 -1.53545e-10 0.0661503)
(-0.268474 -8.21304e-11 0.0597567)
(-0.268734 -2.69142e-11 0.0533505)
(-0.268772 4.68718e-12 0.0469406)
(-0.268589 1.35735e-11 0.0405358)
(-0.268189 6.34211e-12 0.0341446)
(-0.267575 -8.56258e-12 0.0277757)
(-0.266751 -2.40313e-11 0.0214377)
(-0.265718 -3.55216e-11 0.015139)
(-0.264483 -4.10578e-11 0.0088879)
(-0.263047 -3.99475e-11 0.00269276)
(-0.261416 -3.20884e-11 -0.00343836)
(-0.259593 -1.71216e-11 -0.00949742)
(-0.257584 4.87546e-12 -0.0154766)
(-0.255393 3.33123e-11 -0.0213683)
(-0.253025 6.70081e-11 -0.027165)
(-0.250485 1.03987e-10 -0.0328597)
(-0.247779 1.42273e-10 -0.0384452)
(-0.244912 1.79403e-10 -0.043915)
(-0.241889 2.13657e-10 -0.0492627)
(-0.238717 2.44011e-10 -0.0544822)
(-0.235401 2.70258e-10 -0.0595677)
(-0.231947 2.92964e-10 -0.0645138)
(-0.228363 3.12847e-10 -0.0693153)
(-0.224653 3.31164e-10 -0.0739675)
(-0.220825 3.48967e-10 -0.0784661)
(-0.216884 3.66693e-10 -0.082807)
(-0.212838 3.85034e-10 -0.0869865)
(-0.208694 4.03837e-10 -0.0910015)
(-0.204457 4.231e-10 -0.0948491)
(-0.200134 4.42287e-10 -0.0985268)
(-0.195733 4.61524e-10 -0.102033)
(-0.19126 4.79812e-10 -0.105365)
(-0.186721 4.97227e-10 -0.108522)
(-0.182124 5.13488e-10 -0.111503)
(-0.177474 5.28466e-10 -0.114308)
(-0.172779 5.42059e-10 -0.116936)
(-0.168045 5.54343e-10 -0.119388)
(-0.163278 5.65473e-10 -0.121664)
(-0.158485 5.75527e-10 -0.123765)
(-0.153672 5.84862e-10 -0.125692)
(-0.148844 5.93222e-10 -0.127447)
(-0.144009 6.00967e-10 -0.129031)
(-0.139171 6.0779e-10 -0.130447)
(-0.134336 6.13868e-10 -0.131697)
(-0.129511 6.18972e-10 -0.132784)
(-0.124699 6.23179e-10 -0.13371)
(-0.119907 6.26284e-10 -0.134478)
(-0.115139 6.28286e-10 -0.135093)
(-0.1104 6.29108e-10 -0.135557)
(-0.105695 6.28726e-10 -0.135874)
(-0.101027 6.27138e-10 -0.136048)
(-0.0964025 6.245e-10 -0.136082)
(-0.0918239 6.20835e-10 -0.135982)
(-0.0872954 6.16197e-10 -0.13575)
(-0.0828206 6.10764e-10 -0.135392)
(-0.0784029 6.04716e-10 -0.134911)
(-0.0740457 5.97873e-10 -0.134312)
(-0.0697519 5.9062e-10 -0.133599)
(-0.0655244 5.82495e-10 -0.132777)
(-0.0613659 5.74114e-10 -0.13185)
(-0.0572788 5.65143e-10 -0.130822)
(-0.0532655 5.55763e-10 -0.129698)
(-0.049328 5.46049e-10 -0.128483)
(-0.0454684 5.36001e-10 -0.127179)
(-0.0416884 5.25698e-10 -0.125792)
(-0.0379897 5.15112e-10 -0.124325)
(-0.0343737 5.04423e-10 -0.122783)
(-0.0308418 4.93658e-10 -0.121169)
(-0.0273952 4.82687e-10 -0.119488)
(-0.024035 4.71588e-10 -0.117742)
(-0.0207622 4.60643e-10 -0.115935)
(-0.0175774 4.49826e-10 -0.114071)
(-0.0144816 4.38828e-10 -0.112153)
(-0.0114752 4.27882e-10 -0.110184)
(-0.00855884 4.16807e-10 -0.108166)
(-0.00573289 4.05629e-10 -0.106102)
(-0.00299772 3.94142e-10 -0.103996)
(-0.000353565 3.825e-10 -0.101849)
(0.00219937 3.70498e-10 -0.0996631)
(0.00466092 3.57828e-10 -0.0974408)
(0.00703107 3.44747e-10 -0.0951838)
(0.00930981 3.30791e-10 -0.0928939)
(0.0114972 3.16218e-10 -0.0905725)
(0.0135933 3.0036e-10 -0.0882209)
(0.0155983 2.83371e-10 -0.0858405)
(0.0175123 2.65045e-10 -0.0834323)
(0.0193356 2.45331e-10 -0.0809973)
(0.0210684 2.24588e-10 -0.0785362)
(0.022711 2.02404e-10 -0.07605)
(0.0242637 1.78933e-10 -0.0735391)
(0.0257268 1.54432e-10 -0.0710042)
(0.0271006 1.29158e-10 -0.0684458)
(0.0283856 1.03109e-10 -0.0658644)
(0.0295822 7.69018e-11 -0.0632606)
(0.0306908 5.05365e-11 -0.0606347)
(0.0317119 2.41155e-11 -0.0579874)
(0.032646 -1.79645e-12 -0.0553192)
(0.0334936 -2.77644e-11 -0.0526309)
(0.0342553 -5.34803e-11 -0.0499231)
(0.0349318 -7.99717e-11 -0.0471968)
(0.0355237 -1.07599e-10 -0.0444532)
(0.0360318 -1.38211e-10 -0.0416934)
(0.0364568 -1.72684e-10 -0.038919)
(0.0367996 -2.13124e-10 -0.0361317)
(0.037061 -2.61538e-10 -0.0333334)
(0.0372422 -3.20137e-10 -0.0305265)
(0.0373441 -3.90518e-10 -0.0277135)
(0.0373679 -4.74072e-10 -0.0248974)
(0.0373149 -5.71983e-10 -0.0220814)
(0.0371864 -6.84564e-10 -0.0192692)
(0.0369839 -8.10328e-10 -0.0164647)
(0.0367089 -9.47581e-10 -0.0136725)
(0.0363631 -1.09375e-09 -0.0108973)
(0.0359483 -1.24412e-09 -0.00814428)
(0.0354666 -1.39425e-09 -0.00541911)
(0.0349198 -1.53829e-09 -0.00272776)
(0.0343103 -1.67099e-09 -7.66216e-05)
(0.0336404 -1.78683e-09 0.00252756)
(0.0329125 -1.88088e-09 0.00507768)
(0.0321294 -1.95024e-09 0.00756633)
(0.0312938 -1.99223e-09 0.00998581)
(0.0304086 -2.0069e-09 0.0123282)
(0.0294769 -1.99527e-09 0.0145852)
(0.0285019 -1.96098e-09 0.0167487)
(0.027487 -1.90825e-09 0.0188102)
(0.0264358 -1.84423e-09 0.0207612)
(0.0253517 -1.77617e-09 0.0225934)
(0.0242388 -1.71257e-09 0.0242983)
(0.0231007 -1.6624e-09 0.0258678)
(0.0219417 -1.63301e-09 0.0272941)
(0.0207658 -1.63116e-09 0.0285696)
(0.0195773 -1.6602e-09 0.029687)
(0.0183805 -1.71973e-09 0.0306396)
(0.01718 -1.80562e-09 0.0314215)
(0.0159802 -1.91118e-09 0.032027)
(0.0147857 -2.02955e-09 0.0324514)
(0.0136013 -2.15229e-09 0.0326907)
(0.0124316 -2.27036e-09 0.0327417)
(0.0112814 -2.37325e-09 0.0326018)
(0.0101556 -2.45412e-09 0.0322697)
(0.00905901 -2.52038e-09 0.0317443)
(0.00799655 -2.60014e-09 0.0310255)
(0.00697315 -2.74003e-09 0.0301137)
(0.00599378 -2.99051e-09 0.0290093)
(0.00506348 -3.41837e-09 0.0277124)
(0.00418736 -4.1178e-09 0.0262219)
(0.00337069 -5.14932e-09 0.0245338)
(0.00261895 -6.46363e-09 0.0226384)
(0.00193809 -7.97573e-09 0.020514)
(0.00133481 -9.73924e-09 0.0181125)
(0.000818162 -1.22572e-08 0.0153184)
(0.000405802 -9.99754e-09 0.0117979)
(0.000116682 3.62653e-08 0.00645391)
(-0.00541388 -1.42562e-07 0.179809)
(-0.0141838 -2.35213e-08 0.193095)
(-0.0234497 2.55265e-08 0.199831)
(-0.0328993 2.25104e-08 0.204191)
(-0.0422741 8.00261e-09 0.207344)
(-0.0515784 5.00292e-09 0.209724)
(-0.0607859 2.94468e-09 0.21153)
(-0.0698808 -1.95813e-08 0.212864)
(-0.0788482 -2.94707e-08 0.213784)
(-0.0876756 -3.06012e-08 0.214325)
(-0.0963518 -2.38134e-08 0.214512)
(-0.104867 -1.33279e-08 0.21436)
(-0.113212 -8.12641e-09 0.213882)
(-0.121378 -1.08695e-08 0.213089)
(-0.12936 -1.45671e-08 0.211989)
(-0.13715 -1.22198e-08 0.210591)
(-0.144744 -4.30485e-09 0.208905)
(-0.152137 3.60992e-09 0.206937)
(-0.159324 7.07448e-09 0.204696)
(-0.166301 5.70952e-09 0.202191)
(-0.173064 1.99171e-09 0.199429)
(-0.179611 -1.33913e-09 0.19642)
(-0.185939 -2.86842e-09 0.193172)
(-0.192044 -2.61542e-09 0.189693)
(-0.197924 -1.37391e-09 0.185993)
(-0.203578 -3.23859e-11 0.182079)
(-0.209002 8.23239e-10 0.177961)
(-0.214196 1.02386e-09 0.173648)
(-0.219157 7.38783e-10 0.169149)
(-0.223885 2.85377e-10 0.164471)
(-0.228378 -6.54715e-11 0.159624)
(-0.232634 -1.97789e-10 0.154617)
(-0.236654 -1.43305e-10 0.149457)
(-0.240435 -4.11804e-12 0.144155)
(-0.243979 1.2677e-10 0.138718)
(-0.247284 2.02222e-10 0.133156)
(-0.25035 2.16542e-10 0.127476)
(-0.253178 1.817e-10 0.121688)
(-0.255767 1.11483e-10 0.115801)
(-0.258118 1.69603e-11 0.109822)
(-0.260232 -8.89555e-11 0.10376)
(-0.262109 -1.88345e-10 0.0976254)
(-0.263751 -2.61162e-10 0.0914254)
(-0.265158 -2.92545e-10 0.0851691)
(-0.266332 -2.77773e-10 0.0788654)
(-0.267275 -2.2545e-10 0.0725229)
(-0.267988 -1.53545e-10 0.0661504)
(-0.268474 -8.21304e-11 0.0597567)
(-0.268734 -2.69142e-11 0.0533505)
(-0.268772 4.68717e-12 0.0469407)
(-0.268589 1.35735e-11 0.0405358)
(-0.268189 6.34211e-12 0.0341446)
(-0.267576 -8.56257e-12 0.0277758)
(-0.266751 -2.40313e-11 0.0214377)
(-0.265718 -3.55216e-11 0.015139)
(-0.264483 -4.10578e-11 0.00888792)
(-0.263047 -3.99475e-11 0.00269278)
(-0.261416 -3.20884e-11 -0.00343834)
(-0.259593 -1.71216e-11 -0.0094974)
(-0.257584 4.87545e-12 -0.0154766)
(-0.255393 3.33122e-11 -0.0213683)
(-0.253025 6.7008e-11 -0.027165)
(-0.250485 1.03987e-10 -0.0328596)
(-0.247779 1.42273e-10 -0.0384452)
(-0.244912 1.79402e-10 -0.043915)
(-0.241889 2.13657e-10 -0.0492627)
(-0.238717 2.44011e-10 -0.0544822)
(-0.235401 2.70258e-10 -0.0595677)
(-0.231947 2.92964e-10 -0.0645138)
(-0.228363 3.12846e-10 -0.0693153)
(-0.224653 3.31163e-10 -0.0739675)
(-0.220825 3.48967e-10 -0.0784661)
(-0.216884 3.66692e-10 -0.0828069)
(-0.212839 3.85033e-10 -0.0869865)
(-0.208694 4.03836e-10 -0.0910015)
(-0.204457 4.23099e-10 -0.0948491)
(-0.200134 4.42286e-10 -0.0985268)
(-0.195733 4.61523e-10 -0.102033)
(-0.19126 4.79811e-10 -0.105365)
(-0.186721 4.97226e-10 -0.108522)
(-0.182124 5.13487e-10 -0.111503)
(-0.177474 5.28465e-10 -0.114308)
(-0.172779 5.42057e-10 -0.116936)
(-0.168045 5.54342e-10 -0.119388)
(-0.163278 5.65472e-10 -0.121664)
(-0.158485 5.75525e-10 -0.123765)
(-0.153672 5.8486e-10 -0.125692)
(-0.148844 5.93221e-10 -0.127447)
(-0.144009 6.00966e-10 -0.129031)
(-0.139171 6.07788e-10 -0.130447)
(-0.134336 6.13867e-10 -0.131697)
(-0.129511 6.18971e-10 -0.132784)
(-0.124699 6.23178e-10 -0.13371)
(-0.119907 6.26282e-10 -0.134478)
(-0.115139 6.28284e-10 -0.135093)
(-0.1104 6.29107e-10 -0.135557)
(-0.105695 6.28724e-10 -0.135874)
(-0.101028 6.27137e-10 -0.136048)
(-0.0964026 6.24498e-10 -0.136082)
(-0.0918239 6.20834e-10 -0.135982)
(-0.0872954 6.16195e-10 -0.13575)
(-0.0828206 6.10762e-10 -0.135392)
(-0.078403 6.04714e-10 -0.134911)
(-0.0740458 5.97871e-10 -0.134312)
(-0.069752 5.90618e-10 -0.133599)
(-0.0655245 5.82493e-10 -0.132777)
(-0.061366 5.74112e-10 -0.13185)
(-0.0572789 5.65141e-10 -0.130822)
(-0.0532655 5.55761e-10 -0.129698)
(-0.0493281 5.46047e-10 -0.128483)
(-0.0454684 5.36e-10 -0.127179)
(-0.0416884 5.25696e-10 -0.125792)
(-0.0379897 5.1511e-10 -0.124325)
(-0.0343737 5.04422e-10 -0.122783)
(-0.0308419 4.93657e-10 -0.121169)
(-0.0273953 4.82686e-10 -0.119488)
(-0.0240351 4.71587e-10 -0.117742)
(-0.0207622 4.60641e-10 -0.115935)
(-0.0175775 4.49824e-10 -0.114071)
(-0.0144816 4.38827e-10 -0.112153)
(-0.0114753 4.27881e-10 -0.110184)
(-0.00855889 4.16805e-10 -0.108166)
(-0.00573294 4.05627e-10 -0.106102)
(-0.00299776 3.9414e-10 -0.103996)
(-0.000353608 3.82499e-10 -0.101849)
(0.00219932 3.70497e-10 -0.0996631)
(0.00466088 3.57827e-10 -0.0974408)
(0.00703103 3.44745e-10 -0.0951838)
(0.00930977 3.3079e-10 -0.0928939)
(0.0114971 3.16217e-10 -0.0905725)
(0.0135932 3.00359e-10 -0.0882209)
(0.0155982 2.8337e-10 -0.0858405)
(0.0175123 2.65045e-10 -0.0834323)
(0.0193356 2.4533e-10 -0.0809973)
(0.0210684 2.24587e-10 -0.0785362)
(0.022711 2.02403e-10 -0.07605)
(0.0242636 1.78933e-10 -0.0735391)
(0.0257267 1.54432e-10 -0.0710042)
(0.0271006 1.29157e-10 -0.0684458)
(0.0283856 1.03108e-10 -0.0658644)
(0.0295822 7.69016e-11 -0.0632606)
(0.0306908 5.05364e-11 -0.0606347)
(0.0317119 2.41154e-11 -0.0579874)
(0.0326459 -1.79645e-12 -0.0553192)
(0.0334936 -2.77643e-11 -0.0526309)
(0.0342553 -5.34801e-11 -0.0499231)
(0.0349318 -7.99714e-11 -0.0471968)
(0.0355237 -1.07598e-10 -0.0444532)
(0.0360318 -1.38211e-10 -0.0416934)
(0.0364568 -1.72683e-10 -0.038919)
(0.0367995 -2.13123e-10 -0.0361317)
(0.037061 -2.61537e-10 -0.0333334)
(0.0372421 -3.20136e-10 -0.0305265)
(0.0373441 -3.90517e-10 -0.0277135)
(0.0373679 -4.7407e-10 -0.0248974)
(0.0373149 -5.71981e-10 -0.0220814)
(0.0371864 -6.84562e-10 -0.0192691)
(0.0369838 -8.10326e-10 -0.0164647)
(0.0367088 -9.47578e-10 -0.0136725)
(0.036363 -1.09375e-09 -0.0108973)
(0.0359483 -1.24412e-09 -0.00814428)
(0.0354665 -1.39425e-09 -0.0054191)
(0.0349198 -1.53829e-09 -0.00272775)
(0.0343103 -1.67098e-09 -7.66116e-05)
(0.0336403 -1.78683e-09 0.00252757)
(0.0329125 -1.88087e-09 0.00507769)
(0.0321294 -1.95023e-09 0.00756634)
(0.0312937 -1.99223e-09 0.00998582)
(0.0304085 -2.00689e-09 0.0123282)
(0.0294768 -1.99526e-09 0.0145853)
(0.0285019 -1.96097e-09 0.0167487)
(0.027487 -1.90824e-09 0.0188102)
(0.0264357 -1.84422e-09 0.0207612)
(0.0253517 -1.77617e-09 0.0225934)
(0.0242387 -1.71257e-09 0.0242983)
(0.0231007 -1.6624e-09 0.0258679)
(0.0219417 -1.63301e-09 0.0272942)
(0.0207658 -1.63116e-09 0.0285696)
(0.0195773 -1.6602e-09 0.029687)
(0.0183805 -1.71972e-09 0.0306397)
(0.01718 -1.80561e-09 0.0314215)
(0.0159802 -1.91117e-09 0.032027)
(0.0147857 -2.02955e-09 0.0324515)
(0.0136012 -2.15229e-09 0.0326907)
(0.0124315 -2.27036e-09 0.0327417)
(0.0112814 -2.37324e-09 0.0326019)
(0.0101556 -2.45412e-09 0.0322697)
(0.00905899 -2.52038e-09 0.0317443)
(0.00799653 -2.60013e-09 0.0310255)
(0.00697313 -2.74002e-09 0.0301137)
(0.00599377 -2.99051e-09 0.0290093)
(0.00506346 -3.41836e-09 0.0277123)
(0.00418734 -4.11779e-09 0.0262218)
(0.00337066 -5.1493e-09 0.0245338)
(0.00261892 -6.46361e-09 0.0226384)
(0.00193806 -7.9757e-09 0.020514)
(0.00133478 -9.7392e-09 0.0181124)
(0.000818137 -1.22572e-08 0.0153182)
(0.000405792 -9.99757e-09 0.0117977)
(0.000116678 3.62653e-08 0.00645372)
(-0.00549994 4.1057e-07 0.189705)
(-0.0144787 1.84417e-07 0.203104)
(-0.023955 1.16894e-07 0.20986)
(-0.0336305 7.76164e-08 0.21419)
(-0.0432389 4.3314e-08 0.217279)
(-0.0527825 3.98589e-08 0.21957)
(-0.0622319 4.41859e-08 0.221267)
(-0.0715694 1.44428e-08 0.222475)
(-0.0807782 -5.67878e-09 0.223253)
(-0.0898434 -1.3335e-08 0.22364)
(-0.0987527 -1.23466e-08 0.223659)
(-0.107495 -8.00245e-09 0.22333)
(-0.116061 -6.53654e-09 0.222665)
(-0.124441 -1.09015e-08 0.221677)
(-0.132628 -1.63712e-08 0.220376)
(-0.140615 -1.6101e-08 0.21877)
(-0.148397 -8.99796e-09 0.216869)
(-0.155968 1.06214e-10 0.214682)
(-0.163323 5.87714e-09 0.212218)
(-0.170459 6.52268e-09 0.209485)
(-0.177372 3.72348e-09 0.206493)
(-0.184058 2.77855e-10 0.203249)
(-0.190514 -1.89283e-09 0.199763)
(-0.196737 -2.31305e-09 0.196044)
(-0.202726 -1.50695e-09 0.192101)
(-0.208477 -3.15962e-10 0.187943)
(-0.213988 5.87437e-10 0.183579)
(-0.219259 9.10144e-10 0.179017)
(-0.224287 7.2376e-10 0.174267)
(-0.229071 3.04476e-10 0.169338)
(-0.233611 -6.69548e-11 0.164238)
(-0.237904 -2.39504e-10 0.158977)
(-0.24195 -2.13112e-10 0.153564)
(-0.245749 -7.65139e-11 0.148007)
(-0.2493 7.41208e-11 0.142315)
(-0.252604 1.80879e-10 0.136497)
(-0.255659 2.27696e-10 0.130562)
(-0.258467 2.20222e-10 0.124519)
(-0.261028 1.68395e-10 0.118376)
(-0.263342 8.16636e-11 0.112143)
(-0.265411 -2.83172e-11 0.105829)
(-0.267234 -1.42887e-10 0.0994416)
(-0.268815 -2.38509e-10 0.0929908)
(-0.270153 -2.94474e-10 0.0864852)
(-0.27125 -3.00493e-10 0.0799338)
(-0.272109 -2.6024e-10 0.0733456)
(-0.272731 -1.89885e-10 0.0667295)
(-0.273119 -1.10654e-10 0.0600947)
(-0.273276 -4.16652e-11 0.0534499)
(-0.273203 5.45686e-12 0.0468043)
(-0.272904 2.83786e-11 0.0401668)
(-0.272382 3.15663e-11 0.0335461)
(-0.27164 2.28733e-11 0.0269513)
(-0.270682 9.92112e-12 0.020391)
(-0.269511 -1.36276e-12 0.013874)
(-0.268133 -8.23301e-12 0.00740877)
(-0.26655 -8.9452e-12 0.00100387)
(-0.264767 -3.0636e-12 -0.0053324)
(-0.26279 1.03095e-11 -0.0115918)
(-0.260622 3.11225e-11 -0.0177663)
(-0.258269 5.87077e-11 -0.023848)
(-0.255736 9.24491e-11 -0.0298293)
(-0.253028 1.3032e-10 -0.0357029)
(-0.250152 1.70087e-10 -0.0414615)
(-0.247113 2.09494e-10 -0.0470985)
(-0.243916 2.46411e-10 -0.0526071)
(-0.240569 2.79581e-10 -0.0579811)
(-0.237076 3.08619e-10 -0.0632147)
(-0.233446 3.33502e-10 -0.0683023)
(-0.229684 3.5533e-10 -0.0732385)
(-0.225796 3.75003e-10 -0.0780186)
(-0.22179 3.93701e-10 -0.0826382)
(-0.217672 4.1209e-10 -0.087093)
(-0.21345 4.30453e-10 -0.0913794)
(-0.20913 4.49329e-10 -0.0954941)
(-0.204719 4.68461e-10 -0.0994343)
(-0.200224 4.87772e-10 -0.103197)
(-0.195652 5.06749e-10 -0.106781)
(-0.19101 5.25059e-10 -0.110184)
(-0.186305 5.42138e-10 -0.113405)
(-0.181544 5.5819e-10 -0.116443)
(-0.176733 5.72755e-10 -0.119298)
(-0.17188 5.85832e-10 -0.121969)
(-0.166992 5.97653e-10 -0.124456)
(-0.162074 6.08037e-10 -0.126761)
(-0.157134 6.17216e-10 -0.128885)
(-0.152177 6.25421e-10 -0.130828)
(-0.14721 6.32729e-10 -0.132592)
(-0.142239 6.3919e-10 -0.13418)
(-0.13727 6.44703e-10 -0.135593)
(-0.132309 6.4937e-10 -0.136834)
(-0.127361 6.52985e-10 -0.137906)
(-0.122432 6.55576e-10 -0.138812)
(-0.117527 6.57012e-10 -0.139555)
(-0.112651 6.5727e-10 -0.14014)
(-0.107808 6.5622e-10 -0.140568)
(-0.103004 6.53863e-10 -0.140845)
(-0.0982432 6.50531e-10 -0.140974)
(-0.0935293 6.45841e-10 -0.140959)
(-0.0888665 6.40074e-10 -0.140805)
(-0.0842587 6.3341e-10 -0.140517)
(-0.0797095 6.25875e-10 -0.140097)
(-0.0752223 6.17442e-10 -0.139552)
(-0.0708002 6.0842e-10 -0.138885)
(-0.0664463 5.9868e-10 -0.138102)
(-0.0621634 5.8853e-10 -0.137206)
(-0.057954 5.77765e-10 -0.136203)
(-0.0538206 5.66667e-10 -0.135096)
(-0.0497654 5.5521e-10 -0.133891)
(-0.0457904 5.43317e-10 -0.132592)
(-0.0418976 5.31219e-10 -0.131204)
(-0.0380885 5.18942e-10 -0.12973)
(-0.0343649 5.06434e-10 -0.128175)
(-0.030728 4.939e-10 -0.126543)
(-0.0271791 4.81417e-10 -0.124838)
(-0.0237193 4.68703e-10 -0.123064)
(-0.0203496 4.56195e-10 -0.121225)
(-0.0170707 4.43814e-10 -0.119324)
(-0.0138835 4.3151e-10 -0.117365)
(-0.0107885 4.19231e-10 -0.115351)
(-0.00778626 4.07003e-10 -0.113286)
(-0.00487712 3.94518e-10 -0.111172)
(-0.00206145 3.82237e-10 -0.109011)
(0.000660571 3.6952e-10 -0.106808)
(0.00328871 3.56699e-10 -0.104563)
(0.00582291 3.43466e-10 -0.10228)
(0.00826316 3.29668e-10 -0.0999602)
(0.0106095 3.15253e-10 -0.0976058)
(0.0128621 3.00067e-10 -0.0952185)
(0.015021 2.84007e-10 -0.0927998)
(0.0170864 2.66969e-10 -0.0903512)
(0.0190586 2.48391e-10 -0.087874)
(0.0209378 2.28834e-10 -0.0853691)
(0.0227243 2.07787e-10 -0.0828378)
(0.0244185 1.8566e-10 -0.0802808)
(0.0260207 1.62245e-10 -0.0776988)
(0.0275313 1.38007e-10 -0.0750927)
(0.0289506 1.12533e-10 -0.0724629)
(0.0302791 8.65414e-11 -0.0698101)
(0.0315173 6.02895e-11 -0.0671348)
(0.0326656 3.40336e-11 -0.0644374)
(0.0337245 7.77344e-12 -0.0617186)
(0.0346945 -1.80802e-11 -0.0589789)
(0.0355762 -4.36816e-11 -0.0562189)
(0.0363702 -6.89281e-11 -0.0534393)
(0.0370772 -9.44874e-11 -0.050641)
(0.0376976 -1.21079e-10 -0.047825)
(0.0382324 -1.49884e-10 -0.0449923)
(0.0386822 -1.82394e-10 -0.0421443)
(0.0390479 -2.20305e-10 -0.0392826)
(0.0393302 -2.65827e-10 -0.0364089)
(0.0395303 -3.20761e-10 -0.0335253)
(0.0396491 -3.87164e-10 -0.0306342)
(0.0396876 -4.66683e-10 -0.0277382)
(0.0396471 -5.60299e-10 -0.0248404)
(0.0395289 -6.68631e-10 -0.0219441)
(0.0393343 -7.90295e-10 -0.0190531)
(0.0390648 -9.23752e-10 -0.0161715)
(0.038722 -1.06602e-09 -0.0133038)
(0.0383076 -1.21315e-09 -0.0104551)
(0.0378234 -1.35959e-09 -0.00763054)
(0.0372715 -1.50024e-09 -0.00483598)
(0.0366539 -1.62898e-09 -0.00207753)
(0.0359729 -1.74051e-09 0.00063827)
(0.035231 -1.83005e-09 0.00330451)
(0.0344305 -1.89403e-09 0.00591396)
(0.0335743 -1.93065e-09 0.00845903)
(0.0326652 -1.93991e-09 0.0109319)
(0.0317062 -1.92333e-09 0.0133244)
(0.0307005 -1.88503e-09 0.0156282)
(0.0296514 -1.83025e-09 0.017835)
(0.0285624 -1.76558e-09 0.019936)
(0.0274372 -1.69841e-09 0.0219227)
(0.0262795 -1.63648e-09 0.0237866)
(0.0250933 -1.58781e-09 0.0255191)
(0.0238827 -1.5589e-09 0.027112)
(0.022652 -1.55427e-09 0.0285572)
(0.0214054 -1.57707e-09 0.0298471)
(0.0201475 -1.62639e-09 0.0309742)
(0.0188829 -1.69748e-09 0.0319319)
(0.0176163 -1.78263e-09 0.032714)
(0.0163526 -1.87363e-09 0.0333147)
(0.0150966 -1.96137e-09 0.0337294)
(0.0138533 -2.03956e-09 0.0339538)
(0.0126279 -2.10134e-09 0.0339848)
(0.0114254 -2.13958e-09 0.0338198)
(0.010251 -2.15096e-09 0.0334571)
(0.00911011 -2.14866e-09 0.032896)
(0.00800784 -2.17004e-09 0.0321362)
(0.00694958 -2.27444e-09 0.031178)
(0.00594068 -2.52577e-09 0.0300217)
(0.00498658 -2.99145e-09 0.0286675)
(0.00409277 -3.74608e-09 0.027114)
(0.00326491 -4.82057e-09 0.0253572)
(0.00250885 -6.13093e-09 0.023387)
(0.0018309 -7.52099e-09 0.0211811)
(0.00123812 -8.95398e-09 0.0186902)
(0.000739864 -1.10278e-08 0.0157967)
(0.000353298 -8.61965e-09 0.0121626)
(9.23691e-05 3.68755e-08 0.00668735)
(-0.00550028 4.1057e-07 0.189704)
(-0.0144788 1.84416e-07 0.203103)
(-0.023955 1.16893e-07 0.20986)
(-0.0336305 7.76162e-08 0.214189)
(-0.0432388 4.33138e-08 0.217278)
(-0.0527823 3.98587e-08 0.21957)
(-0.0622319 4.41857e-08 0.221267)
(-0.0715694 1.44428e-08 0.222474)
(-0.080778 -5.67875e-09 0.223253)
(-0.0898432 -1.3335e-08 0.223639)
(-0.0987526 -1.23465e-08 0.223659)
(-0.107495 -8.00241e-09 0.22333)
(-0.116061 -6.53652e-09 0.222665)
(-0.124441 -1.09015e-08 0.221677)
(-0.132628 -1.63711e-08 0.220376)
(-0.140615 -1.61009e-08 0.21877)
(-0.148397 -8.99793e-09 0.216869)
(-0.155968 1.06214e-10 0.214682)
(-0.163323 5.87712e-09 0.212218)
(-0.170459 6.52266e-09 0.209485)
(-0.177372 3.72346e-09 0.206493)
(-0.184058 2.77854e-10 0.203249)
(-0.190514 -1.89282e-09 0.199763)
(-0.196737 -2.31305e-09 0.196044)
(-0.202726 -1.50694e-09 0.192101)
(-0.208477 -3.15962e-10 0.187943)
(-0.213988 5.87436e-10 0.183579)
(-0.219259 9.10142e-10 0.179017)
(-0.224287 7.23759e-10 0.174267)
(-0.229071 3.04475e-10 0.169338)
(-0.233611 -6.69547e-11 0.164238)
(-0.237904 -2.39504e-10 0.158977)
(-0.24195 -2.13112e-10 0.153564)
(-0.245749 -7.65138e-11 0.148007)
(-0.2493 7.41207e-11 0.142315)
(-0.252604 1.80879e-10 0.136497)
(-0.255659 2.27696e-10 0.130562)
(-0.258467 2.20222e-10 0.124519)
(-0.261028 1.68395e-10 0.118376)
(-0.263342 8.16635e-11 0.112143)
(-0.265411 -2.83172e-11 0.105829)
(-0.267234 -1.42886e-10 0.0994417)
(-0.268815 -2.38509e-10 0.0929908)
(-0.270153 -2.94474e-10 0.0864852)
(-0.27125 -3.00493e-10 0.0799338)
(-0.272109 -2.6024e-10 0.0733456)
(-0.272731 -1.89885e-10 0.0667296)
(-0.273119 -1.10654e-10 0.0600947)
(-0.273276 -4.16652e-11 0.05345)
(-0.273203 5.45685e-12 0.0468044)
(-0.272904 2.83785e-11 0.0401668)
(-0.272382 3.15663e-11 0.0335462)
(-0.27164 2.28733e-11 0.0269513)
(-0.270682 9.92111e-12 0.020391)
(-0.269512 -1.36276e-12 0.013874)
(-0.268133 -8.233e-12 0.00740879)
(-0.26655 -8.94519e-12 0.0010039)
(-0.264767 -3.0636e-12 -0.00533238)
(-0.26279 1.03095e-11 -0.0115918)
(-0.260622 3.11224e-11 -0.0177662)
(-0.258269 5.87076e-11 -0.023848)
(-0.255736 9.2449e-11 -0.0298293)
(-0.253028 1.30319e-10 -0.0357029)
(-0.250152 1.70087e-10 -0.0414615)
(-0.247113 2.09494e-10 -0.0470984)
(-0.243916 2.4641e-10 -0.0526071)
(-0.240569 2.7958e-10 -0.0579811)
(-0.237076 3.08619e-10 -0.0632147)
(-0.233446 3.33501e-10 -0.0683022)
(-0.229684 3.5533e-10 -0.0732385)
(-0.225796 3.75003e-10 -0.0780186)
(-0.22179 3.937e-10 -0.0826381)
(-0.217673 4.1209e-10 -0.087093)
(-0.21345 4.30453e-10 -0.0913794)
(-0.20913 4.49328e-10 -0.0954941)
(-0.204719 4.6846e-10 -0.0994342)
(-0.200224 4.87771e-10 -0.103197)
(-0.195652 5.06748e-10 -0.106781)
(-0.19101 5.25058e-10 -0.110184)
(-0.186305 5.42137e-10 -0.113405)
(-0.181544 5.58189e-10 -0.116443)
(-0.176733 5.72754e-10 -0.119298)
(-0.171881 5.85831e-10 -0.121969)
(-0.166992 5.97652e-10 -0.124456)
(-0.162074 6.08036e-10 -0.126761)
(-0.157134 6.17215e-10 -0.128885)
(-0.152177 6.2542e-10 -0.130828)
(-0.14721 6.32727e-10 -0.132592)
(-0.142239 6.39188e-10 -0.13418)
(-0.13727 6.44701e-10 -0.135593)
(-0.132309 6.49368e-10 -0.136834)
(-0.127361 6.52984e-10 -0.137906)
(-0.122432 6.55574e-10 -0.138812)
(-0.117527 6.57011e-10 -0.139555)
(-0.112651 6.57268e-10 -0.140139)
(-0.107808 6.56218e-10 -0.140568)
(-0.103004 6.53861e-10 -0.140845)
(-0.0982432 6.50529e-10 -0.140974)
(-0.0935293 6.45839e-10 -0.140959)
(-0.0888666 6.40072e-10 -0.140805)
(-0.0842588 6.33408e-10 -0.140517)
(-0.0797096 6.25873e-10 -0.140097)
(-0.0752223 6.1744e-10 -0.139552)
(-0.0708003 6.08418e-10 -0.138885)
(-0.0664463 5.98678e-10 -0.138102)
(-0.0621634 5.88528e-10 -0.137206)
(-0.057954 5.77763e-10 -0.136203)
(-0.0538206 5.66665e-10 -0.135096)
(-0.0497654 5.55208e-10 -0.133891)
(-0.0457904 5.43315e-10 -0.132592)
(-0.0418976 5.31218e-10 -0.131204)
(-0.0380886 5.1894e-10 -0.12973)
(-0.0343649 5.06432e-10 -0.128175)
(-0.0307281 4.93898e-10 -0.126543)
(-0.0271792 4.81416e-10 -0.124838)
(-0.0237194 4.68702e-10 -0.123064)
(-0.0203496 4.56193e-10 -0.121225)
(-0.0170708 4.43812e-10 -0.119324)
(-0.0138836 4.31508e-10 -0.117365)
(-0.0107886 4.1923e-10 -0.115351)
(-0.0077863 4.07002e-10 -0.113286)
(-0.00487716 3.94516e-10 -0.111172)
(-0.00206149 3.82236e-10 -0.109011)
(0.000660528 3.69518e-10 -0.106808)
(0.00328867 3.56697e-10 -0.104563)
(0.00582286 3.43465e-10 -0.10228)
(0.00826312 3.29667e-10 -0.0999602)
(0.0106095 3.15252e-10 -0.0976058)
(0.012862 3.00066e-10 -0.0952185)
(0.0150209 2.84006e-10 -0.0927998)
(0.0170863 2.66969e-10 -0.0903512)
(0.0190585 2.4839e-10 -0.087874)
(0.0209378 2.28834e-10 -0.0853692)
(0.0227243 2.07787e-10 -0.0828378)
(0.0244185 1.85659e-10 -0.0802808)
(0.0260207 1.62245e-10 -0.0776988)
(0.0275312 1.38006e-10 -0.0750927)
(0.0289506 1.12532e-10 -0.0724629)
(0.0302791 8.65411e-11 -0.0698101)
(0.0315173 6.02893e-11 -0.0671348)
(0.0326656 3.40335e-11 -0.0644374)
(0.0337245 7.77342e-12 -0.0617186)
(0.0346945 -1.80802e-11 -0.0589789)
(0.0355762 -4.36815e-11 -0.0562189)
(0.0363702 -6.89278e-11 -0.0534393)
(0.0370771 -9.44871e-11 -0.050641)
(0.0376976 -1.21078e-10 -0.047825)
(0.0382324 -1.49884e-10 -0.0449923)
(0.0386822 -1.82394e-10 -0.0421443)
(0.0390478 -2.20304e-10 -0.0392826)
(0.0393302 -2.65826e-10 -0.0364089)
(0.0395303 -3.2076e-10 -0.0335253)
(0.039649 -3.87162e-10 -0.0306342)
(0.0396876 -4.66682e-10 -0.0277382)
(0.0396471 -5.60297e-10 -0.0248404)
(0.0395289 -6.68629e-10 -0.0219441)
(0.0393343 -7.90292e-10 -0.0190531)
(0.0390647 -9.23749e-10 -0.0161715)
(0.0387219 -1.06602e-09 -0.0133038)
(0.0383075 -1.21315e-09 -0.0104551)
(0.0378234 -1.35958e-09 -0.00763054)
(0.0372715 -1.50023e-09 -0.00483597)
(0.0366539 -1.62897e-09 -0.00207752)
(0.0359729 -1.74051e-09 0.000638279)
(0.0352309 -1.83004e-09 0.00330452)
(0.0344305 -1.89402e-09 0.00591397)
(0.0335743 -1.93065e-09 0.00845904)
(0.0326652 -1.9399e-09 0.0109319)
(0.0317062 -1.92333e-09 0.0133244)
(0.0307005 -1.88503e-09 0.0156282)
(0.0296514 -1.83025e-09 0.017835)
(0.0285624 -1.76557e-09 0.019936)
(0.0274372 -1.69841e-09 0.0219227)
(0.0262795 -1.63648e-09 0.0237866)
(0.0250933 -1.58781e-09 0.0255191)
(0.0238827 -1.55889e-09 0.027112)
(0.022652 -1.55426e-09 0.0285573)
(0.0214054 -1.57707e-09 0.0298471)
(0.0201475 -1.62639e-09 0.0309743)
(0.0188829 -1.69748e-09 0.031932)
(0.0176163 -1.78262e-09 0.032714)
(0.0163525 -1.87363e-09 0.0333148)
(0.0150965 -1.96137e-09 0.0337294)
(0.0138533 -2.03956e-09 0.0339539)
(0.0126278 -2.10134e-09 0.0339848)
(0.0114254 -2.13958e-09 0.0338198)
(0.010251 -2.15096e-09 0.0334572)
(0.00911009 -2.14866e-09 0.032896)
(0.00800783 -2.17004e-09 0.0321362)
(0.00694956 -2.27443e-09 0.031178)
(0.00594066 -2.52577e-09 0.0300217)
(0.00498656 -2.99144e-09 0.0286674)
(0.00409275 -3.74607e-09 0.027114)
(0.00326489 -4.82055e-09 0.0253572)
(0.00250883 -6.13091e-09 0.023387)
(0.00183088 -7.52096e-09 0.021181)
(0.00123809 -8.95395e-09 0.0186901)
(0.000739845 -1.10278e-08 0.0157966)
(0.000353299 -8.61967e-09 0.0121624)
(9.23855e-05 3.68756e-08 0.00668716)
(-0.00558375 8.05315e-07 0.1998)
(-0.0147718 2.35756e-07 0.213332)
(-0.0244705 9.48358e-08 0.220124)
(-0.0343846 6.28295e-08 0.224436)
(-0.0442404 2.46361e-08 0.227468)
(-0.0540367 3.40243e-08 0.229676)
(-0.0637408 5.65152e-08 0.231265)
(-0.0733323 3.30092e-08 0.232345)
(-0.0827922 8.26741e-09 0.232979)
(-0.092104 -2.31716e-10 0.233206)
(-0.101254 1.25125e-09 0.233053)
(-0.11023 2.14651e-09 0.232539)
(-0.119021 -1.07478e-09 0.23168)
(-0.127619 -8.58409e-09 0.230488)
(-0.136015 -1.65623e-08 0.228976)
(-0.144202 -1.90393e-08 0.227152)
(-0.152174 -1.3931e-08 0.225028)
(-0.159925 -4.90687e-09 0.222612)
(-0.167451 2.5189e-09 0.219914)
(-0.174747 5.36524e-09 0.216943)
(-0.181809 4.21236e-09 0.213708)
(-0.188635 1.45539e-09 0.210219)
(-0.19522 -7.89488e-10 0.206485)
(-0.201562 -1.63108e-09 0.202515)
(-0.207658 -1.24979e-09 0.198318)
(-0.213506 -3.19282e-10 0.193904)
(-0.219105 5.02485e-10 0.189282)
(-0.224452 8.51992e-10 0.184461)
(-0.229546 7.16213e-10 0.17945)
(-0.234385 3.1751e-10 0.174259)
(-0.23897 -7.35472e-11 0.168896)
(-0.243298 -2.85751e-10 0.163371)
(-0.24737 -2.93423e-10 0.157693)
(-0.251184 -1.69139e-10 0.151871)
(-0.254741 -7.20692e-12 0.145913)
(-0.258041 1.27846e-10 0.13983)
(-0.261083 2.10049e-10 0.13363)
(-0.263869 2.37815e-10 0.127322)
(-0.266398 2.15355e-10 0.120916)
(-0.268672 1.46986e-10 0.11442)
(-0.270692 4.16927e-11 0.107844)
(-0.272459 -8.23805e-11 0.101196)
(-0.273974 -1.98903e-10 0.0944856)
(-0.275239 -2.81599e-10 0.0877226)
(-0.276255 -3.1279e-10 0.0809157)
(-0.277026 -2.90325e-10 0.0740741)
(-0.277553 -2.26755e-10 0.0672072)
(-0.277838 -1.43455e-10 0.060324)
(-0.277885 -6.26482e-11 0.0534338)
(-0.277697 2.46579e-13 0.0465458)
(-0.277276 3.88671e-11 0.0396692)
(-0.276625 5.44208e-11 0.0328131)
(-0.27575 5.41696e-11 0.0259865)
(-0.274653 4.58368e-11 0.0191985)
(-0.273338 3.58111e-11 0.012458)
(-0.271811 2.84538e-11 0.00577372)
(-0.270074 2.62787e-11 -0.000845567)
(-0.268134 3.04913e-11 -0.00739126)
(-0.265994 4.2143e-11 -0.013855)
(-0.263661 6.13103e-11 -0.0202284)
(-0.261139 8.7916e-11 -0.0265035)
(-0.258434 1.21087e-10 -0.0326724)
(-0.255551 1.59285e-10 -0.0387276)
(-0.252498 2.00277e-10 -0.0446617)
(-0.249279 2.41524e-10 -0.0504677)
(-0.245902 2.8082e-10 -0.0561389)
(-0.242372 3.16678e-10 -0.0616689)
(-0.238696 3.48148e-10 -0.0670516)
(-0.234881 3.7536e-10 -0.0722813)
(-0.230934 3.99185e-10 -0.0773526)
(-0.226862 4.20214e-10 -0.0822606)
(-0.222671 4.39755e-10 -0.0870008)
(-0.21837 4.58602e-10 -0.0915689)
(-0.213964 4.77218e-10 -0.0959612)
(-0.209461 4.96142e-10 -0.100174)
(-0.20487 5.15091e-10 -0.104205)
(-0.200195 5.34014e-10 -0.108052)
(-0.195446 5.52782e-10 -0.111712)
(-0.19063 5.70576e-10 -0.115184)
(-0.185752 5.87472e-10 -0.118466)
(-0.180822 6.02983e-10 -0.121558)
(-0.175845 6.16955e-10 -0.124459)
(-0.170829 6.2962e-10 -0.127169)
(-0.165781 6.40541e-10 -0.129689)
(-0.160707 6.50128e-10 -0.132019)
(-0.155614 6.58228e-10 -0.134161)
(-0.150509 6.65303e-10 -0.136115)
(-0.145399 6.71276e-10 -0.137885)
(-0.140288 6.76325e-10 -0.139471)
(-0.135184 6.80145e-10 -0.140877)
(-0.130092 6.83195e-10 -0.142104)
(-0.125019 6.85066e-10 -0.143157)
(-0.119969 6.85759e-10 -0.144038)
(-0.114947 6.85297e-10 -0.144751)
(-0.10996 6.83606e-10 -0.145299)
(-0.105011 6.80453e-10 -0.145687)
(-0.100106 6.7607e-10 -0.145918)
(-0.0952488 6.70431e-10 -0.145997)
(-0.0904437 6.63613e-10 -0.145928)
(-0.0856949 6.55616e-10 -0.145716)
(-0.081006 6.46492e-10 -0.145365)
(-0.0763806 6.36675e-10 -0.14488)
(-0.0718222 6.2591e-10 -0.144265)
(-0.0673339 6.14479e-10 -0.143525)
(-0.0629186 6.02509e-10 -0.142666)
(-0.0585791 5.89873e-10 -0.141692)
(-0.0543178 5.7693e-10 -0.140607)
(-0.0501372 5.63499e-10 -0.139417)
(-0.0460394 5.49838e-10 -0.138127)
(-0.0420262 5.36024e-10 -0.13674)
(-0.0380996 5.22004e-10 -0.135262)
(-0.0342611 5.07779e-10 -0.133696)
(-0.0305121 4.93657e-10 -0.132049)
(-0.026854 4.79585e-10 -0.130323)
(-0.0232878 4.6554e-10 -0.128523)
(-0.0198146 4.51571e-10 -0.126652)
(-0.0164351 4.37755e-10 -0.124716)
(-0.0131502 4.24119e-10 -0.122717)
(-0.00996042 4.10688e-10 -0.12066)
(-0.00686626 3.97384e-10 -0.118547)
(-0.0038681 3.84054e-10 -0.116382)
(-0.000966254 3.70801e-10 -0.114168)
(0.00183912 3.57521e-10 -0.111908)
(0.00454781 3.44009e-10 -0.109604)
(0.00715984 3.30265e-10 -0.107259)
(0.00967521 3.16188e-10 -0.104876)
(0.012094 3.01724e-10 -0.102456)
(0.0144165 2.86386e-10 -0.100001)
(0.0166427 2.70226e-10 -0.0975142)
(0.018773 2.5309e-10 -0.0949959)
(0.0208076 2.34771e-10 -0.092448)
(0.0227469 2.15373e-10 -0.0898717)
(0.0245911 1.94741e-10 -0.0872682)
(0.0263408 1.72926e-10 -0.0846385)
(0.0279962 1.49876e-10 -0.0819835)
(0.0295579 1.25643e-10 -0.0793041)
(0.0310261 1.00637e-10 -0.0766009)
(0.0324016 7.49084e-11 -0.0738746)
(0.0336846 4.87657e-11 -0.0711257)
(0.0348757 2.25165e-11 -0.0683548)
(0.0359755 -3.58277e-12 -0.0655624)
(0.0369845 -2.92241e-11 -0.0627492)
(0.0379032 -5.43049e-11 -0.0599156)
(0.0387323 -7.91847e-11 -0.0570625)
(0.0394724 -1.03864e-10 -0.0541904)
(0.0401241 -1.2942e-10 -0.0513003)
(0.0406882 -1.56676e-10 -0.0483932)
(0.0411653 -1.87122e-10 -0.0454703)
(0.0415564 -2.22453e-10 -0.0425329)
(0.0418622 -2.64725e-10 -0.0395827)
(0.0420835 -3.15943e-10 -0.0366215)
(0.0422215 -3.78524e-10 -0.0336515)
(0.042277 -4.53704e-10 -0.0306751)
(0.0422513 -5.42872e-10 -0.0276951)
(0.0421455 -6.46444e-10 -0.0247145)
(0.041961 -7.63908e-10 -0.0217369)
(0.041699 -8.93315e-10 -0.0187661)
(0.0413612 -1.03184e-09 -0.0158064)
(0.040949 -1.17538e-09 -0.0128624)
(0.0404644 -1.31873e-09 -0.00993918)
(0.0399091 -1.4562e-09 -0.00704224)
(0.0392851 -1.58197e-09 -0.00417746)
(0.0385945 -1.68991e-09 -0.00135112)
(0.0378398 -1.77551e-09 0.00143008)
(0.0370233 -1.83519e-09 0.00415908)
(0.0361476 -1.86707e-09 0.00682847)
(0.0352154 -1.87143e-09 0.00943051)
(0.0342298 -1.85016e-09 0.0119572)
(0.0331938 -1.80806e-09 0.0144002)
(0.0321106 -1.75041e-09 0.0167511)
(0.0309838 -1.68451e-09 0.0190012)
(0.0298169 -1.61777e-09 0.0211418)
(0.0286136 -1.55791e-09 0.0231641)
(0.0273781 -1.51214e-09 0.0250594)
(0.0261142 -1.4855e-09 0.0268191)
(0.0248264 -1.48159e-09 0.0284346)
(0.0235191 -1.50146e-09 0.0298979)
(0.0221968 -1.54304e-09 0.031201)
(0.0208643 -1.60115e-09 0.0323365)
(0.0195265 -1.66743e-09 0.0332976)
(0.0181882 -1.73251e-09 0.0340778)
(0.0168548 -1.78693e-09 0.0346715)
(0.0155313 -1.82484e-09 0.0350738)
(0.0142232 -1.84264e-09 0.0352804)
(0.0129358 -1.83856e-09 0.035288)
(0.0116746 -1.81136e-09 0.0350941)
(0.0104452 -1.7642e-09 0.0346969)
(0.00925317 -1.71582e-09 0.0340955)
(0.00810426 -1.71307e-09 0.0332897)
(0.00700416 -1.82835e-09 0.0322797)
(0.00595863 -2.13609e-09 0.0310658)
(0.00497349 -2.70223e-09 0.029648)
(0.00405464 -3.57572e-09 0.0280251)
(0.0032081 -4.7515e-09 0.0261926)
(0.00244012 -6.10473e-09 0.0241401)
(0.00175738 -7.40953e-09 0.0218449)
(0.00116733 -8.54642e-09 0.0192566)
(0.000679676 -1.02473e-08 0.0162553)
(0.000311381 -7.85714e-09 0.012499)
(7.20797e-05 3.5323e-08 0.0068874)
(-0.00558395 8.05314e-07 0.1998)
(-0.014772 2.35755e-07 0.213331)
(-0.0244706 9.48354e-08 0.220124)
(-0.0343847 6.28293e-08 0.224435)
(-0.0442404 2.4636e-08 0.227468)
(-0.0540365 3.40241e-08 0.229675)
(-0.0637408 5.6515e-08 0.231265)
(-0.0733324 3.3009e-08 0.232345)
(-0.0827921 8.26737e-09 0.232979)
(-0.0921038 -2.31715e-10 0.233206)
(-0.101254 1.25124e-09 0.233052)
(-0.11023 2.1465e-09 0.232539)
(-0.119021 -1.07477e-09 0.23168)
(-0.127619 -8.58406e-09 0.230488)
(-0.136015 -1.65622e-08 0.228976)
(-0.144202 -1.90393e-08 0.227152)
(-0.152174 -1.3931e-08 0.225028)
(-0.159925 -4.90686e-09 0.222612)
(-0.167451 2.51889e-09 0.219914)
(-0.174747 5.36522e-09 0.216943)
(-0.181809 4.21235e-09 0.213708)
(-0.188635 1.45539e-09 0.210219)
(-0.19522 -7.89486e-10 0.206485)
(-0.201562 -1.63108e-09 0.202515)
(-0.207658 -1.24979e-09 0.198318)
(-0.213506 -3.19281e-10 0.193904)
(-0.219105 5.02484e-10 0.189282)
(-0.224452 8.51991e-10 0.184461)
(-0.229546 7.16212e-10 0.17945)
(-0.234385 3.17509e-10 0.174259)
(-0.23897 -7.35471e-11 0.168896)
(-0.243298 -2.85751e-10 0.163371)
(-0.24737 -2.93422e-10 0.157693)
(-0.251184 -1.69138e-10 0.151871)
(-0.254741 -7.20691e-12 0.145913)
(-0.258041 1.27846e-10 0.13983)
(-0.261083 2.10049e-10 0.13363)
(-0.263869 2.37814e-10 0.127322)
(-0.266398 2.15355e-10 0.120916)
(-0.268672 1.46986e-10 0.11442)
(-0.270692 4.16926e-11 0.107844)
(-0.272459 -8.23804e-11 0.101196)
(-0.273974 -1.98903e-10 0.0944857)
(-0.275239 -2.81599e-10 0.0877226)
(-0.276255 -3.1279e-10 0.0809157)
(-0.277026 -2.90325e-10 0.0740741)
(-0.277553 -2.26755e-10 0.0672072)
(-0.277838 -1.43455e-10 0.060324)
(-0.277885 -6.26482e-11 0.0534338)
(-0.277697 2.46579e-13 0.0465459)
(-0.277276 3.88671e-11 0.0396692)
(-0.276626 5.44207e-11 0.0328131)
(-0.27575 5.41695e-11 0.0259865)
(-0.274653 4.58368e-11 0.0191985)
(-0.273338 3.58111e-11 0.012458)
(-0.271811 2.84538e-11 0.00577374)
(-0.270074 2.62787e-11 -0.000845545)
(-0.268134 3.04912e-11 -0.00739124)
(-0.265994 4.21429e-11 -0.0138549)
(-0.263661 6.13103e-11 -0.0202283)
(-0.261139 8.79159e-11 -0.0265034)
(-0.258434 1.21087e-10 -0.0326724)
(-0.255551 1.59285e-10 -0.0387275)
(-0.252498 2.00277e-10 -0.0446616)
(-0.249279 2.41524e-10 -0.0504677)
(-0.245902 2.8082e-10 -0.0561389)
(-0.242372 3.16678e-10 -0.0616689)
(-0.238696 3.48148e-10 -0.0670515)
(-0.234881 3.7536e-10 -0.0722812)
(-0.230934 3.99185e-10 -0.0773526)
(-0.226862 4.20213e-10 -0.0822606)
(-0.222671 4.39754e-10 -0.0870007)
(-0.21837 4.58601e-10 -0.0915689)
(-0.213964 4.77218e-10 -0.0959612)
(-0.209461 4.96141e-10 -0.100174)
(-0.20487 5.1509e-10 -0.104205)
(-0.200195 5.34012e-10 -0.108052)
(-0.195446 5.52781e-10 -0.111712)
(-0.19063 5.70575e-10 -0.115184)
(-0.185752 5.87471e-10 -0.118466)
(-0.180822 6.02982e-10 -0.121557)
(-0.175845 6.16954e-10 -0.124459)
(-0.170829 6.29618e-10 -0.127169)
(-0.165781 6.40539e-10 -0.129689)
(-0.160707 6.50126e-10 -0.132019)
(-0.155614 6.58227e-10 -0.134161)
(-0.150509 6.65301e-10 -0.136115)
(-0.145399 6.71274e-10 -0.137885)
(-0.140288 6.76324e-10 -0.139471)
(-0.135184 6.80143e-10 -0.140876)
(-0.130093 6.83193e-10 -0.142104)
(-0.125019 6.85064e-10 -0.143157)
(-0.119969 6.85757e-10 -0.144038)
(-0.114947 6.85295e-10 -0.144751)
(-0.10996 6.83604e-10 -0.145299)
(-0.105011 6.80451e-10 -0.145687)
(-0.100106 6.76068e-10 -0.145918)
(-0.0952489 6.70429e-10 -0.145997)
(-0.0904438 6.63611e-10 -0.145928)
(-0.0856949 6.55614e-10 -0.145716)
(-0.081006 6.4649e-10 -0.145365)
(-0.0763807 6.36673e-10 -0.14488)
(-0.0718223 6.25908e-10 -0.144265)
(-0.067334 6.14477e-10 -0.143525)
(-0.0629187 6.02507e-10 -0.142666)
(-0.0585791 5.89871e-10 -0.141692)
(-0.0543179 5.76928e-10 -0.140607)
(-0.0501373 5.63498e-10 -0.139417)
(-0.0460394 5.49837e-10 -0.138127)
(-0.0420263 5.36022e-10 -0.13674)
(-0.0380996 5.22002e-10 -0.135262)
(-0.0342611 5.07777e-10 -0.133696)
(-0.0305122 4.93655e-10 -0.132049)
(-0.026854 4.79584e-10 -0.130323)
(-0.0232878 4.65538e-10 -0.128523)
(-0.0198146 4.51569e-10 -0.126652)
(-0.0164352 4.37754e-10 -0.124716)
(-0.0131503 4.24118e-10 -0.122717)
(-0.00996047 4.10686e-10 -0.12066)
(-0.0068663 3.97383e-10 -0.118547)
(-0.00386815 3.84053e-10 -0.116382)
(-0.000966298 3.70799e-10 -0.114168)
(0.00183908 3.57519e-10 -0.111908)
(0.00454777 3.44008e-10 -0.109604)
(0.00715979 3.30264e-10 -0.107259)
(0.00967517 3.16186e-10 -0.104876)
(0.012094 3.01723e-10 -0.102456)
(0.0144164 2.86385e-10 -0.100001)
(0.0166427 2.70225e-10 -0.0975142)
(0.0187729 2.53089e-10 -0.0949959)
(0.0208076 2.3477e-10 -0.092448)
(0.0227468 2.15372e-10 -0.0898717)
(0.0245911 1.9474e-10 -0.0872682)
(0.0263407 1.72925e-10 -0.0846385)
(0.0279962 1.49876e-10 -0.0819835)
(0.0295578 1.25643e-10 -0.0793041)
(0.0310261 1.00636e-10 -0.0766009)
(0.0324015 7.49082e-11 -0.0738746)
(0.0336845 4.87656e-11 -0.0711257)
(0.0348757 2.25164e-11 -0.0683548)
(0.0359755 -3.58276e-12 -0.0655624)
(0.0369844 -2.9224e-11 -0.0627492)
(0.0379032 -5.43048e-11 -0.0599157)
(0.0387323 -7.91845e-11 -0.0570625)
(0.0394723 -1.03863e-10 -0.0541904)
(0.0401241 -1.2942e-10 -0.0513003)
(0.0406881 -1.56676e-10 -0.0483932)
(0.0411653 -1.87121e-10 -0.0454703)
(0.0415564 -2.22452e-10 -0.0425329)
(0.0418621 -2.64724e-10 -0.0395827)
(0.0420835 -3.15942e-10 -0.0366215)
(0.0422214 -3.78523e-10 -0.0336515)
(0.042277 -4.53702e-10 -0.0306751)
(0.0422513 -5.42871e-10 -0.0276951)
(0.0421455 -6.46442e-10 -0.0247145)
(0.0419609 -7.63906e-10 -0.0217369)
(0.041699 -8.93313e-10 -0.0187661)
(0.0413611 -1.03184e-09 -0.0158064)
(0.040949 -1.17537e-09 -0.0128624)
(0.0404644 -1.31873e-09 -0.00993918)
(0.039909 -1.45619e-09 -0.00704224)
(0.039285 -1.58196e-09 -0.00417745)
(0.0385945 -1.68991e-09 -0.00135112)
(0.0378398 -1.7755e-09 0.00143009)
(0.0370232 -1.83519e-09 0.00415909)
(0.0361475 -1.86706e-09 0.00682848)
(0.0352154 -1.87142e-09 0.00943053)
(0.0342298 -1.85016e-09 0.0119572)
(0.0331937 -1.80806e-09 0.0144002)
(0.0321106 -1.75041e-09 0.0167511)
(0.0309838 -1.68451e-09 0.0190012)
(0.0298168 -1.61777e-09 0.0211418)
(0.0286136 -1.55791e-09 0.0231642)
(0.027378 -1.51214e-09 0.0250595)
(0.0261142 -1.48549e-09 0.0268191)
(0.0248264 -1.48159e-09 0.0284346)
(0.0235191 -1.50146e-09 0.0298979)
(0.0221968 -1.54304e-09 0.031201)
(0.0208643 -1.60114e-09 0.0323365)
(0.0195264 -1.66742e-09 0.0332976)
(0.0181882 -1.73251e-09 0.0340778)
(0.0168548 -1.78692e-09 0.0346715)
(0.0155313 -1.82484e-09 0.0350738)
(0.0142232 -1.84264e-09 0.0352804)
(0.0129357 -1.83856e-09 0.035288)
(0.0116745 -1.81135e-09 0.0350941)
(0.0104451 -1.7642e-09 0.0346969)
(0.00925316 -1.71582e-09 0.0340955)
(0.00810425 -1.71307e-09 0.0332897)
(0.00700415 -1.82834e-09 0.0322797)
(0.00595862 -2.13608e-09 0.0310658)
(0.00497348 -2.70222e-09 0.029648)
(0.00405462 -3.57571e-09 0.0280251)
(0.00320808 -4.75149e-09 0.0261925)
(0.0024401 -6.1047e-09 0.0241401)
(0.00175736 -7.4095e-09 0.0218448)
(0.00116731 -8.54639e-09 0.0192565)
(0.000679661 -1.02472e-08 0.0162552)
(0.000311391 -7.85716e-09 0.0124988)
(7.21154e-05 3.5323e-08 0.00688719)
(-0.00566042 7.30146e-07 0.210089)
(-0.015056 7.83947e-08 0.223789)
(-0.0249928 -3.40743e-08 0.230637)
(-0.0351604 -5.58237e-09 0.234944)
(-0.0452795 -4.10632e-08 0.237929)
(-0.0553435 -1.61241e-08 0.240055)
(-0.0653157 2.05768e-08 0.241537)
(-0.0751727 1.50827e-08 0.242487)
(-0.0848933 -6.82399e-09 0.242972)
(-0.0944596 -9.22308e-09 0.243033)
(-0.103856 3.03364e-09 0.242699)
(-0.113071 1.00071e-08 0.241992)
(-0.122093 6.96135e-09 0.24093)
(-0.130912 -2.39281e-09 0.239526)
(-0.139519 -1.27431e-08 0.237793)
(-0.147908 -1.83554e-08 0.235741)
(-0.156071 -1.64396e-08 0.233383)
(-0.164004 -9.26476e-09 0.230727)
(-0.171701 -1.75211e-09 0.227784)
(-0.179157 2.51476e-09 0.224564)
(-0.18637 3.05351e-09 0.221077)
(-0.193334 1.50712e-09 0.217331)
(-0.200048 -2.07554e-10 0.213337)
(-0.206508 -1.02348e-09 0.209105)
(-0.212711 -8.39152e-10 0.204643)
(-0.218655 -1.14204e-10 0.199962)
(-0.22434 5.87378e-10 0.195071)
(-0.229761 9.00483e-10 0.189979)
(-0.23492 7.64982e-10 0.184697)
(-0.239813 3.59593e-10 0.179232)
(-0.244441 -6.21223e-11 0.173595)
(-0.248802 -3.21078e-10 0.167795)
(-0.252897 -3.72221e-10 0.161842)
(-0.256724 -2.72899e-10 0.155744)
(-0.260284 -1.1235e-10 0.149512)
(-0.263577 4.21104e-11 0.143153)
(-0.266603 1.58047e-10 0.136678)
(-0.269363 2.26071e-10 0.130096)
(-0.271858 2.42645e-10 0.123417)
(-0.274088 2.0495e-10 0.116648)
(-0.276055 1.15939e-10 0.109801)
(-0.27776 -8.70664e-12 0.102883)
(-0.279206 -1.41531e-10 0.0959055)
(-0.280393 -2.50745e-10 0.0888767)
(-0.281324 -3.10359e-10 0.0818061)
(-0.282001 -3.10962e-10 0.0747034)
(-0.282427 -2.60049e-10 0.0675779)
(-0.282605 -1.77814e-10 0.0604391)
(-0.282537 -8.80132e-11 0.0532964)
(-0.282227 -1.02738e-11 0.0461593)
(-0.281678 4.44515e-11 0.0390371)
(-0.280894 7.44966e-11 0.0319392)
(-0.279879 8.47112e-11 0.024875)
(-0.278636 8.27921e-11 0.0178536)
(-0.277171 7.56402e-11 0.0108842)
(-0.275488 6.88475e-11 0.00397586)
(-0.273591 6.5646e-11 -0.00286253)
(-0.271485 6.82668e-11 -0.00962209)
(-0.269177 7.81976e-11 -0.0162942)
(-0.266671 9.55917e-11 -0.0228703)
(-0.263973 1.20885e-10 -0.0293421)
(-0.261088 1.53256e-10 -0.0357017)
(-0.258024 1.91242e-10 -0.0419412)
(-0.254786 2.32945e-10 -0.0480532)
(-0.251381 2.75622e-10 -0.0540304)
(-0.247815 3.16938e-10 -0.0598658)
(-0.244096 3.55072e-10 -0.0655531)
(-0.240229 3.88974e-10 -0.0710858)
(-0.236223 4.1836e-10 -0.0764583)
(-0.232084 4.43925e-10 -0.081665)
(-0.22782 4.66438e-10 -0.0867008)
(-0.223438 4.86923e-10 -0.0915612)
(-0.218945 5.06152e-10 -0.0962419)
(-0.214349 5.24996e-10 -0.100739)
(-0.209658 5.4366e-10 -0.105049)
(-0.204879 5.62323e-10 -0.10917)
(-0.20002 5.80935e-10 -0.113098)
(-0.195087 5.99059e-10 -0.116831)
(-0.19009 6.16337e-10 -0.120369)
(-0.185035 6.32589e-10 -0.123709)
(-0.179929 6.47533e-10 -0.126852)
(-0.174781 6.60733e-10 -0.129796)
(-0.169596 6.72447e-10 -0.132542)
(-0.164383 6.82443e-10 -0.13509)
(-0.159149 6.90798e-10 -0.137441)
(-0.1539 6.97794e-10 -0.139597)
(-0.148643 7.03406e-10 -0.141559)
(-0.143384 7.07736e-10 -0.143329)
(-0.13813 7.11042e-10 -0.144909)
(-0.132887 7.13168e-10 -0.146302)
(-0.127662 7.14115e-10 -0.147511)
(-0.122459 7.13909e-10 -0.148539)
(-0.117285 7.12499e-10 -0.14939)
(-0.112145 7.09884e-10 -0.150067)
(-0.107044 7.05859e-10 -0.150575)
(-0.101987 7.00451e-10 -0.150917)
(-0.0969782 6.93735e-10 -0.151097)
(-0.0920229 6.85508e-10 -0.151121)
(-0.0871249 6.76255e-10 -0.150992)
(-0.0822883 6.65721e-10 -0.150716)
(-0.0775169 6.54187e-10 -0.150297)
(-0.0728142 6.41833e-10 -0.14974)
(-0.0681835 6.28685e-10 -0.149051)
(-0.063628 6.14717e-10 -0.148233)
(-0.0591505 6.00262e-10 -0.147293)
(-0.0547536 5.85372e-10 -0.146235)
(-0.0504399 5.70148e-10 -0.145065)
(-0.0462116 5.54745e-10 -0.143786)
(-0.0420707 5.39009e-10 -0.142405)
(-0.0380191 5.23222e-10 -0.140926)
(-0.0340585 5.07537e-10 -0.139353)
(-0.0301903 4.91801e-10 -0.137692)
(-0.026416 4.76141e-10 -0.135947)
(-0.0227366 4.60585e-10 -0.134123)
(-0.0191531 4.4531e-10 -0.132223)
(-0.0156666 4.30419e-10 -0.130253)
(-0.0122776 4.15656e-10 -0.128216)
(-0.00898675 4.01201e-10 -0.126115)
(-0.0057946 3.87027e-10 -0.123956)
(-0.0027015 3.72853e-10 -0.12174)
(0.000292301 3.59011e-10 -0.119472)
(0.0031866 3.45425e-10 -0.117155)
(0.0059813 3.3148e-10 -0.114792)
(0.00867643 3.17584e-10 -0.112385)
(0.0112721 3.03509e-10 -0.109937)
(0.0137683 2.88867e-10 -0.10745)
(0.0161655 2.73815e-10 -0.104927)
(0.0184637 2.57991e-10 -0.10237)
(0.0206634 2.4114e-10 -0.0997808)
(0.0227648 2.23518e-10 -0.0971605)
(0.0247683 2.04637e-10 -0.094511)
(0.0266744 1.84624e-10 -0.0918334)
(0.0284835 1.63532e-10 -0.0891292)
(0.0301961 1.41104e-10 -0.0863992)
(0.0318125 1.17748e-10 -0.0836444)
(0.0333334 9.31587e-11 -0.0808656)
(0.0347592 6.80524e-11 -0.0780636)
(0.0360905 4.24809e-11 -0.0752389)
(0.0373278 1.6803e-11 -0.0723923)
(0.0384717 -8.93006e-12 -0.0695243)
(0.0395228 -3.41024e-11 -0.0666354)
(0.0404816 -5.87654e-11 -0.0637263)
(0.0413488 -8.29706e-11 -0.0607975)
(0.042125 -1.06975e-10 -0.0578497)
(0.0428109 -1.31291e-10 -0.0548837)
(0.0434072 -1.57255e-10 -0.0519005)
(0.0439145 -1.85586e-10 -0.0489011)
(0.0443337 -2.18441e-10 -0.0458866)
(0.0446655 -2.57464e-10 -0.0428586)
(0.0449109 -3.05123e-10 -0.0398187)
(0.0450707 -3.63422e-10 -0.0367689)
(0.0451459 -4.34059e-10 -0.0337112)
(0.0451375 -5.18423e-10 -0.0306484)
(0.0450467 -6.17443e-10 -0.0275831)
(0.0448747 -7.30299e-10 -0.0245187)
(0.0446228 -8.55505e-10 -0.0214586)
(0.0442924 -9.90289e-10 -0.0184069)
(0.0438849 -1.13039e-09 -0.015368)
(0.0434021 -1.27087e-09 -0.0123466)
(0.0428456 -1.40598e-09 -0.00934784)
(0.0422174 -1.52919e-09 -0.00637746)
(0.0415195 -1.63488e-09 -0.00344144)
(0.040754 -1.71777e-09 -0.00054625)
(0.0399233 -1.77415e-09 0.00230128)
(0.0390298 -1.80235e-09 0.00509392)
(0.0380763 -1.80228e-09 0.00782408)
(0.0370654 -1.7771e-09 0.0104839)
(0.0360003 -1.73074e-09 0.0130651)
(0.034884 -1.6698e-09 0.0155592)
(0.03372 -1.60181e-09 0.0179576)
(0.0325118 -1.53472e-09 0.0202515)
(0.0312631 -1.47632e-09 0.0224319)
(0.0299778 -1.43297e-09 0.0244899)
(0.02866 -1.40937e-09 0.0264165)
(0.027314 -1.40783e-09 0.028203)
(0.0259443 -1.42759e-09 0.0298407)
(0.0245554 -1.46505e-09 0.0313213)
(0.0231523 -1.51346e-09 0.0326368)
(0.0217398 -1.56398e-09 0.0337795)
(0.020323 -1.6064e-09 0.0347424)
(0.0189074 -1.63095e-09 0.0355191)
(0.0174982 -1.63123e-09 0.0361037)
(0.0161011 -1.60569e-09 0.0364911)
(0.0147216 -1.55781e-09 0.0366771)
(0.0133656 -1.49321e-09 0.0366582)
(0.0120388 -1.41778e-09 0.0364318)
(0.0107474 -1.34075e-09 0.0359961)
(0.00949715 -1.28659e-09 0.0353501)
(0.00829425 -1.31009e-09 0.0344935)
(0.00714478 -1.49343e-09 0.0334265)
(0.0060549 -1.92039e-09 0.0321494)
(0.00503085 -2.64764e-09 0.0306622)
(0.00407891 -3.69219e-09 0.0289632)
(0.00320551 -5.00675e-09 0.0270482)
(0.00241729 -6.42684e-09 0.0249063)
(0.0017213 -7.6549e-09 0.0225141)
(0.00112543 -8.50185e-09 0.0198203)
(0.000639757 -9.84894e-09 0.0167028)
(0.000281381 -7.49355e-09 0.0128157)
(5.64295e-05 3.27406e-08 0.00706151)
(-0.00566056 7.30144e-07 0.210089)
(-0.0150563 7.83942e-08 0.223789)
(-0.024993 -3.40742e-08 0.230636)
(-0.0351605 -5.58235e-09 0.234943)
(-0.0452795 -4.1063e-08 0.237928)
(-0.0553433 -1.6124e-08 0.240055)
(-0.0653156 2.05767e-08 0.241537)
(-0.0751727 1.50826e-08 0.242487)
(-0.0848932 -6.82396e-09 0.242972)
(-0.0944594 -9.22304e-09 0.243032)
(-0.103856 3.03363e-09 0.242699)
(-0.113071 1.00071e-08 0.241992)
(-0.122093 6.96132e-09 0.24093)
(-0.130912 -2.3928e-09 0.239526)
(-0.139519 -1.2743e-08 0.237793)
(-0.147907 -1.83553e-08 0.235741)
(-0.156071 -1.64395e-08 0.233383)
(-0.164004 -9.26473e-09 0.230727)
(-0.171701 -1.7521e-09 0.227784)
(-0.179157 2.51475e-09 0.224564)
(-0.18637 3.0535e-09 0.221077)
(-0.193334 1.50711e-09 0.217331)
(-0.200048 -2.07554e-10 0.213337)
(-0.206508 -1.02348e-09 0.209105)
(-0.212711 -8.3915e-10 0.204643)
(-0.218656 -1.14203e-10 0.199962)
(-0.22434 5.87377e-10 0.195071)
(-0.229761 9.00482e-10 0.189979)
(-0.23492 7.64981e-10 0.184697)
(-0.239813 3.59592e-10 0.179232)
(-0.244441 -6.21222e-11 0.173595)
(-0.248802 -3.21077e-10 0.167795)
(-0.252897 -3.72221e-10 0.161842)
(-0.256724 -2.72899e-10 0.155744)
(-0.260284 -1.1235e-10 0.149512)
(-0.263577 4.21104e-11 0.143153)
(-0.266603 1.58047e-10 0.136678)
(-0.269363 2.26071e-10 0.130096)
(-0.271858 2.42645e-10 0.123417)
(-0.274088 2.04949e-10 0.116648)
(-0.276055 1.15939e-10 0.109801)
(-0.27776 -8.70664e-12 0.102883)
(-0.279206 -1.41531e-10 0.0959056)
(-0.280393 -2.50744e-10 0.0888767)
(-0.281324 -3.10359e-10 0.0818062)
(-0.282001 -3.10962e-10 0.0747034)
(-0.282428 -2.60049e-10 0.067578)
(-0.282605 -1.77813e-10 0.0604391)
(-0.282537 -8.80131e-11 0.0532965)
(-0.282227 -1.02738e-11 0.0461593)
(-0.281678 4.44514e-11 0.0390371)
(-0.280894 7.44965e-11 0.0319393)
(-0.279879 8.47112e-11 0.024875)
(-0.278636 8.27921e-11 0.0178536)
(-0.277171 7.56401e-11 0.0108842)
(-0.275488 6.88475e-11 0.00397588)
(-0.273591 6.56459e-11 -0.00286251)
(-0.271485 6.82668e-11 -0.00962207)
(-0.269177 7.81975e-11 -0.0162941)
(-0.266671 9.55916e-11 -0.0228702)
(-0.263973 1.20885e-10 -0.0293421)
(-0.261088 1.53255e-10 -0.0357017)
(-0.258024 1.91242e-10 -0.0419412)
(-0.254786 2.32945e-10 -0.0480532)
(-0.251381 2.75622e-10 -0.0540303)
(-0.247815 3.16937e-10 -0.0598658)
(-0.244096 3.55072e-10 -0.065553)
(-0.24023 3.88973e-10 -0.0710858)
(-0.236223 4.1836e-10 -0.0764583)
(-0.232084 4.43925e-10 -0.081665)
(-0.22782 4.66437e-10 -0.0867008)
(-0.223438 4.86923e-10 -0.0915612)
(-0.218945 5.06151e-10 -0.0962418)
(-0.214349 5.24995e-10 -0.100739)
(-0.209658 5.43659e-10 -0.105049)
(-0.204879 5.62322e-10 -0.10917)
(-0.20002 5.80933e-10 -0.113098)
(-0.195087 5.99058e-10 -0.116831)
(-0.19009 6.16335e-10 -0.120369)
(-0.185035 6.32587e-10 -0.123709)
(-0.179929 6.47531e-10 -0.126852)
(-0.174781 6.60732e-10 -0.129796)
(-0.169596 6.72445e-10 -0.132542)
(-0.164384 6.82441e-10 -0.13509)
(-0.159149 6.90796e-10 -0.137441)
(-0.1539 6.97792e-10 -0.139597)
(-0.148643 7.03404e-10 -0.141559)
(-0.143384 7.07735e-10 -0.143329)
(-0.13813 7.1104e-10 -0.144909)
(-0.132887 7.13166e-10 -0.146302)
(-0.127662 7.14113e-10 -0.147511)
(-0.122459 7.13907e-10 -0.148539)
(-0.117285 7.12497e-10 -0.14939)
(-0.112145 7.09882e-10 -0.150067)
(-0.107044 7.05857e-10 -0.150575)
(-0.101987 7.00449e-10 -0.150917)
(-0.0969783 6.93733e-10 -0.151097)
(-0.0920229 6.85506e-10 -0.151121)
(-0.087125 6.76253e-10 -0.150992)
(-0.0822884 6.65719e-10 -0.150716)
(-0.077517 6.54185e-10 -0.150297)
(-0.0728143 6.41831e-10 -0.14974)
(-0.0681836 6.28683e-10 -0.149051)
(-0.0636281 6.14715e-10 -0.148233)
(-0.0591505 6.0026e-10 -0.147293)
(-0.0547537 5.8537e-10 -0.146235)
(-0.05044 5.70146e-10 -0.145065)
(-0.0462117 5.54743e-10 -0.143786)
(-0.0420708 5.39007e-10 -0.142405)
(-0.0380192 5.2322e-10 -0.140926)
(-0.0340585 5.07535e-10 -0.139353)
(-0.0301904 4.91799e-10 -0.137692)
(-0.026416 4.7614e-10 -0.135947)
(-0.0227366 4.60583e-10 -0.134123)
(-0.0191532 4.45308e-10 -0.132223)
(-0.0156666 4.30418e-10 -0.130253)
(-0.0122776 4.15655e-10 -0.128216)
(-0.0089868 4.01199e-10 -0.126115)
(-0.00579465 3.87026e-10 -0.123956)
(-0.00270155 3.72851e-10 -0.12174)
(0.000292256 3.5901e-10 -0.119472)
(0.00318655 3.45424e-10 -0.117155)
(0.00598125 3.31478e-10 -0.114792)
(0.00867638 3.17583e-10 -0.112385)
(0.011272 3.03508e-10 -0.109937)
(0.0137683 2.88867e-10 -0.10745)
(0.0161654 2.73814e-10 -0.104927)
(0.0184637 2.5799e-10 -0.10237)
(0.0206633 2.41139e-10 -0.0997808)
(0.0227647 2.23517e-10 -0.0971605)
(0.0247683 2.04636e-10 -0.094511)
(0.0266744 1.84624e-10 -0.0918334)
(0.0284835 1.63532e-10 -0.0891292)
(0.030196 1.41103e-10 -0.0863992)
(0.0318125 1.17748e-10 -0.0836444)
(0.0333334 9.31584e-11 -0.0808656)
(0.0347592 6.80522e-11 -0.0780636)
(0.0360905 4.24807e-11 -0.075239)
(0.0373278 1.68029e-11 -0.0723923)
(0.0384717 -8.93003e-12 -0.0695243)
(0.0395228 -3.41023e-11 -0.0666354)
(0.0404816 -5.87652e-11 -0.0637263)
(0.0413488 -8.29703e-11 -0.0607975)
(0.042125 -1.06974e-10 -0.0578497)
(0.0428109 -1.31291e-10 -0.0548837)
(0.0434071 -1.57254e-10 -0.0519005)
(0.0439145 -1.85585e-10 -0.0489011)
(0.0443336 -2.1844e-10 -0.0458866)
(0.0446655 -2.57464e-10 -0.0428586)
(0.0449109 -3.05122e-10 -0.0398187)
(0.0450706 -3.63421e-10 -0.0367689)
(0.0451458 -4.34058e-10 -0.0337112)
(0.0451375 -5.18422e-10 -0.0306484)
(0.0450467 -6.17441e-10 -0.0275831)
(0.0448747 -7.30297e-10 -0.0245187)
(0.0446228 -8.55502e-10 -0.0214586)
(0.0442924 -9.90286e-10 -0.0184069)
(0.0438849 -1.13038e-09 -0.015368)
(0.0434021 -1.27087e-09 -0.0123466)
(0.0428456 -1.40597e-09 -0.00934784)
(0.0422174 -1.52918e-09 -0.00637745)
(0.0415195 -1.63488e-09 -0.00344143)
(0.040754 -1.71777e-09 -0.000546243)
(0.0399232 -1.77414e-09 0.00230129)
(0.0390298 -1.80235e-09 0.00509393)
(0.0380762 -1.80227e-09 0.00782409)
(0.0370654 -1.7771e-09 0.0104839)
(0.0360003 -1.73073e-09 0.0130651)
(0.034884 -1.6698e-09 0.0155592)
(0.03372 -1.6018e-09 0.0179576)
(0.0325118 -1.53472e-09 0.0202515)
(0.0312631 -1.47631e-09 0.0224319)
(0.0299778 -1.43297e-09 0.0244899)
(0.02866 -1.40936e-09 0.0264165)
(0.027314 -1.40783e-09 0.028203)
(0.0259443 -1.42759e-09 0.0298408)
(0.0245554 -1.46504e-09 0.0313213)
(0.0231522 -1.51346e-09 0.0326368)
(0.0217397 -1.56397e-09 0.0337795)
(0.020323 -1.6064e-09 0.0347424)
(0.0189074 -1.63095e-09 0.0355191)
(0.0174982 -1.63123e-09 0.0361037)
(0.016101 -1.60568e-09 0.0364911)
(0.0147216 -1.55781e-09 0.0366771)
(0.0133656 -1.4932e-09 0.0366582)
(0.0120388 -1.41778e-09 0.0364318)
(0.0107474 -1.34074e-09 0.0359961)
(0.00949714 -1.28659e-09 0.0353501)
(0.00829423 -1.31009e-09 0.0344935)
(0.00714476 -1.49342e-09 0.0334265)
(0.00605489 -1.92038e-09 0.0321494)
(0.00503084 -2.64763e-09 0.0306621)
(0.0040789 -3.69218e-09 0.0289632)
(0.00320549 -5.00673e-09 0.0270481)
(0.00241727 -6.42682e-09 0.0249062)
(0.00172128 -7.65487e-09 0.0225141)
(0.0011254 -8.50183e-09 0.0198202)
(0.000639746 -9.84893e-09 0.0167026)
(0.0002814 -7.49357e-09 0.0128155)
(5.64822e-05 3.27406e-08 0.00706129)
(-0.00572403 2.52878e-07 0.220557)
(-0.0153222 -1.39224e-07 0.234488)
(-0.0255212 -1.55901e-07 0.241415)
(-0.0359602 -4.73287e-08 0.245733)
(-0.0463614 -8.22442e-08 0.248677)
(-0.0567089 -4.12265e-08 0.250725)
(-0.0669627 -6.30484e-09 0.252097)
(-0.0770961 7.88829e-09 0.252912)
(-0.0870861 -1.42981e-08 0.25324)
(-0.0969135 -1.99096e-08 0.253127)
(-0.106563 -1.00764e-09 0.252604)
(-0.11602 1.51747e-08 0.251695)
(-0.125275 1.64733e-08 0.25042)
(-0.134317 7.23392e-09 0.248793)
(-0.143137 -4.78421e-09 0.246828)
(-0.151729 -1.31271e-08 0.244538)
(-0.160084 -1.46073e-08 0.241935)
(-0.168199 -1.04197e-08 0.239028)
(-0.176066 -4.49512e-09 0.235829)
(-0.183683 -2.9132e-10 0.232349)
(-0.191045 1.09836e-09 0.228597)
(-0.198148 5.71455e-10 0.224584)
(-0.204989 -4.07065e-10 0.220319)
(-0.211565 -8.67186e-10 0.215813)
(-0.217874 -5.97757e-10 0.211075)
(-0.223913 9.36815e-11 0.206115)
(-0.229681 7.46848e-10 0.200944)
(-0.235176 1.03262e-09 0.19557)
(-0.240396 8.82359e-10 0.190004)
(-0.245341 4.53448e-10 0.184255)
(-0.250009 -1.1159e-11 0.178334)
(-0.254401 -3.26476e-10 0.172248)
(-0.258515 -4.32959e-10 0.166009)
(-0.262352 -3.74191e-10 0.159625)
(-0.265911 -2.31702e-10 0.153106)
(-0.269194 -7.1669e-11 0.146463)
(-0.2722 7.03465e-11 0.139703)
(-0.27493 1.78669e-10 0.132837)
(-0.277385 2.41449e-10 0.125874)
(-0.279567 2.46039e-10 0.118824)
(-0.281477 1.86673e-10 0.111696)
(-0.283117 7.29991e-11 0.1045)
(-0.284487 -6.81956e-11 0.0972455)
(-0.285592 -2.00405e-10 0.0899423)
(-0.286432 -2.89769e-10 0.0825998)
(-0.28701 -3.18026e-10 0.0752279)
(-0.28733 -2.85769e-10 0.0678361)
(-0.287394 -2.1006e-10 0.0604341)
(-0.287205 -1.15527e-10 0.0530316)
(-0.286768 -2.51784e-11 0.0456384)
(-0.286085 4.55958e-11 0.0382639)
(-0.28516 9.10516e-11 0.0309179)
(-0.283998 1.13781e-10 0.0236099)
(-0.282603 1.20043e-10 0.0163493)
(-0.280981 1.17508e-10 0.00914555)
(-0.279134 1.12229e-10 0.00200794)
(-0.27707 1.08796e-10 -0.00505439)
(-0.274792 1.10211e-10 -0.0120323)
(-0.272308 1.18293e-10 -0.018917)
(-0.269622 1.33914e-10 -0.0256996)
(-0.26674 1.57485e-10 -0.0323717)
(-0.263669 1.88696e-10 -0.038925)
(-0.260416 2.26292e-10 -0.0453517)
(-0.256986 2.68066e-10 -0.0516438)
(-0.253387 3.11761e-10 -0.0577942)
(-0.249626 3.54712e-10 -0.0637956)
(-0.245709 3.94737e-10 -0.0696414)
(-0.241645 4.3071e-10 -0.0753251)
(-0.23744 4.62144e-10 -0.0808409)
(-0.233102 4.89422e-10 -0.0861832)
(-0.228639 5.13238e-10 -0.0913467)
(-0.224058 5.34592e-10 -0.0963267)
(-0.219368 5.54279e-10 -0.101119)
(-0.214576 5.73196e-10 -0.10572)
(-0.209689 5.916e-10 -0.110125)
(-0.204717 6.09773e-10 -0.114333)
(-0.199666 6.2769e-10 -0.11834)
(-0.194545 6.45067e-10 -0.122145)
(-0.189361 6.61624e-10 -0.125746)
(-0.184122 6.77027e-10 -0.129141)
(-0.178837 6.91021e-10 -0.132331)
(-0.173511 7.03219e-10 -0.135315)
(-0.168154 7.137e-10 -0.138092)
(-0.162772 7.22515e-10 -0.140665)
(-0.157373 7.29458e-10 -0.143033)
(-0.151963 7.34812e-10 -0.145198)
(-0.146549 7.38783e-10 -0.147163)
(-0.141139 7.41215e-10 -0.148928)
(-0.135739 7.42443e-10 -0.150497)
(-0.130354 7.42416e-10 -0.151873)
(-0.124992 7.41004e-10 -0.153058)
(-0.119658 7.38466e-10 -0.154057)
(-0.114358 7.3462e-10 -0.154872)
(-0.109096 7.2939e-10 -0.155508)
(-0.10388 7.22828e-10 -0.155969)
(-0.0987121 7.14754e-10 -0.156259)
(-0.0935986 7.05322e-10 -0.156383)
(-0.0885437 6.94455e-10 -0.156345)
(-0.0835516 6.82512e-10 -0.156151)
(-0.0786262 6.69339e-10 -0.155806)
(-0.0737714 6.55218e-10 -0.155314)
(-0.0689905 6.40225e-10 -0.15468)
(-0.064287 6.24566e-10 -0.15391)
(-0.0596637 6.08062e-10 -0.15301)
(-0.0551236 5.91353e-10 -0.151983)
(-0.0506692 5.74208e-10 -0.150837)
(-0.0463029 5.56884e-10 -0.149575)
(-0.0420268 5.39432e-10 -0.148203)
(-0.0378429 5.21904e-10 -0.146726)
(-0.0337529 5.04477e-10 -0.14515)
(-0.0297584 4.87154e-10 -0.143478)
(-0.0258608 4.70137e-10 -0.141717)
(-0.0220614 4.53377e-10 -0.13987)
(-0.018361 4.36976e-10 -0.137943)
(-0.0147608 4.20959e-10 -0.13594)
(-0.0112613 4.05301e-10 -0.133866)
(-0.00786314 3.8995e-10 -0.131723)
(-0.0045669 3.74983e-10 -0.129517)
(-0.0013729 3.60477e-10 -0.127252)
(0.00171868 3.46227e-10 -0.12493)
(0.00470756 3.32208e-10 -0.122556)
(0.00759377 3.18469e-10 -0.120132)
(0.0103773 3.04422e-10 -0.117663)
(0.0130584 2.90502e-10 -0.115149)
(0.0156372 2.76274e-10 -0.112595)
(0.0181139 2.61711e-10 -0.110003)
(0.0204889 2.46429e-10 -0.107375)
(0.0227625 2.3053e-10 -0.104712)
(0.0249352 2.13526e-10 -0.102018)
(0.0270074 1.95675e-10 -0.0992934)
(0.0289795 1.76667e-10 -0.0965399)
(0.0308521 1.56657e-10 -0.093759)
(0.0326257 1.35464e-10 -0.0909519)
(0.0343008 1.13089e-10 -0.0881196)
(0.035878 8.98906e-11 -0.085263)
(0.0373578 6.56627e-11 -0.0823831)
(0.0387409 4.10724e-11 -0.0794804)
(0.0400279 1.61196e-11 -0.0765558)
(0.0412193 -8.68288e-12 -0.0736099)
(0.0423157 -3.30784e-11 -0.0706431)
(0.0433179 -5.69645e-11 -0.0676562)
(0.0442263 -8.02899e-11 -0.0646496)
(0.0450418 -1.03363e-10 -0.0616241)
(0.0457649 -1.26388e-10 -0.0585803)
(0.0463963 -1.50752e-10 -0.0555191)
(0.0469368 -1.77226e-10 -0.0524414)
(0.0473871 -2.07349e-10 -0.0493482)
(0.047748 -2.4328e-10 -0.046241)
(0.0480202 -2.87227e-10 -0.043121)
(0.0482048 -3.40938e-10 -0.0399902)
(0.0483025 -4.06829e-10 -0.0368503)
(0.0483144 -4.86392e-10 -0.0337038)
(0.0482415 -5.80297e-10 -0.0305532)
(0.0480849 -6.88548e-10 -0.0274015)
(0.0478459 -8.09195e-10 -0.0242519)
(0.0475257 -9.40188e-10 -0.0211082)
(0.0471257 -1.07732e-09 -0.0179744)
(0.0466475 -1.21534e-09 -0.0148549)
(0.0460926 -1.3483e-09 -0.0117548)
(0.0454629 -1.47018e-09 -0.00867939)
(0.0447602 -1.57435e-09 -0.00563435)
(0.0439866 -1.65577e-09 -0.00262592)
(0.0431442 -1.71057e-09 0.000339293)
(0.0422354 -1.73614e-09 0.00325427)
(0.0412627 -1.73333e-09 0.00611163)
(0.0402287 -1.70436e-09 0.0089036)
(0.0391365 -1.65434e-09 0.0116221)
(0.0379889 -1.58992e-09 0.0142587)
(0.0367893 -1.51926e-09 0.0168048)
(0.035541 -1.45049e-09 0.0192514)
(0.0342478 -1.39215e-09 0.0215897)
(0.0329134 -1.35004e-09 0.0238104)
(0.031542 -1.32886e-09 0.0259044)
(0.0301376 -1.32984e-09 0.0278625)
(0.0287049 -1.35094e-09 0.0296759)
(0.0272484 -1.3872e-09 0.0313355)
(0.0257729 -1.42999e-09 0.032833)
(0.0242835 -1.46918e-09 0.0341601)
(0.0227855 -1.49374e-09 0.0353091)
(0.0212841 -1.49338e-09 0.0362726)
(0.0197849 -1.46124e-09 0.0370442)
(0.0182938 -1.39685e-09 0.0376178)
(0.0168164 -1.30684e-09 0.0379882)
(0.0153588 -1.20336e-09 0.038151)
(0.0139272 -1.10116e-09 0.0381027)
(0.0125278 -1.01214e-09 0.0378404)
(0.0111668 -9.50857e-10 0.0373625)
(0.00985068 -9.44276e-10 0.0366677)
(0.0085859 -1.05221e-09 0.0357558)
(0.00737898 -1.36393e-09 0.0346269)
(0.00623649 -1.96394e-09 0.0332812)
(0.00516504 -2.89448e-09 0.0317185)
(0.00417134 -4.13413e-09 0.0299374)
(0.00326221 -5.59041e-09 0.0279331)
(0.0024447 -7.05851e-09 0.0256947)
(0.00172629 -8.17692e-09 0.0231981)
(0.00111527 -8.69085e-09 0.0203908)
(0.000622199 -9.62118e-09 0.0171487)
(0.000264593 -7.10494e-09 0.013122)
(4.60199e-05 3.08138e-08 0.00721809)
(-0.00572398 2.52877e-07 0.220557)
(-0.0153226 -1.39224e-07 0.234487)
(-0.0255212 -1.559e-07 0.241414)
(-0.0359603 -4.73284e-08 0.245732)
(-0.0463613 -8.22439e-08 0.248677)
(-0.0567086 -4.12264e-08 0.250725)
(-0.0669626 -6.30482e-09 0.252097)
(-0.0770961 7.88826e-09 0.252912)
(-0.087086 -1.42981e-08 0.25324)
(-0.0969134 -1.99095e-08 0.253127)
(-0.106563 -1.00764e-09 0.252604)
(-0.11602 1.51746e-08 0.251695)
(-0.125275 1.64733e-08 0.250419)
(-0.134317 7.2339e-09 0.248793)
(-0.143137 -4.78419e-09 0.246828)
(-0.151729 -1.31271e-08 0.244538)
(-0.160084 -1.46073e-08 0.241935)
(-0.168199 -1.04197e-08 0.239028)
(-0.176066 -4.49511e-09 0.235829)
(-0.183683 -2.91319e-10 0.232349)
(-0.191045 1.09836e-09 0.228597)
(-0.198148 5.71454e-10 0.224584)
(-0.204989 -4.07064e-10 0.220319)
(-0.211565 -8.67184e-10 0.215813)
(-0.217874 -5.97756e-10 0.211075)
(-0.223913 9.36813e-11 0.206115)
(-0.229681 7.46847e-10 0.200944)
(-0.235176 1.03262e-09 0.19557)
(-0.240396 8.82358e-10 0.190004)
(-0.245341 4.53448e-10 0.184255)
(-0.250009 -1.1159e-11 0.178334)
(-0.254401 -3.26476e-10 0.172248)
(-0.258515 -4.32958e-10 0.166009)
(-0.262352 -3.74191e-10 0.159625)
(-0.265911 -2.31702e-10 0.153106)
(-0.269194 -7.16689e-11 0.146463)
(-0.2722 7.03465e-11 0.139703)
(-0.27493 1.78669e-10 0.132837)
(-0.277385 2.41448e-10 0.125874)
(-0.279567 2.46039e-10 0.118824)
(-0.281477 1.86673e-10 0.111696)
(-0.283117 7.2999e-11 0.1045)
(-0.284487 -6.81956e-11 0.0972455)
(-0.285592 -2.00405e-10 0.0899423)
(-0.286432 -2.89769e-10 0.0825999)
(-0.287011 -3.18025e-10 0.0752279)
(-0.28733 -2.85768e-10 0.0678361)
(-0.287394 -2.1006e-10 0.0604341)
(-0.287206 -1.15527e-10 0.0530317)
(-0.286768 -2.51784e-11 0.0456384)
(-0.286085 4.55958e-11 0.0382639)
(-0.28516 9.10515e-11 0.0309179)
(-0.283998 1.13781e-10 0.0236099)
(-0.282604 1.20043e-10 0.0163493)
(-0.280981 1.17508e-10 0.00914557)
(-0.279134 1.12229e-10 0.00200796)
(-0.27707 1.08796e-10 -0.00505437)
(-0.274792 1.10211e-10 -0.0120323)
(-0.272308 1.18293e-10 -0.0189169)
(-0.269622 1.33914e-10 -0.0256995)
(-0.26674 1.57484e-10 -0.0323717)
(-0.263669 1.88696e-10 -0.038925)
(-0.260416 2.26291e-10 -0.0453516)
(-0.256986 2.68065e-10 -0.0516438)
(-0.253387 3.11761e-10 -0.0577942)
(-0.249626 3.54711e-10 -0.0637956)
(-0.245709 3.94737e-10 -0.0696413)
(-0.241645 4.3071e-10 -0.0753251)
(-0.23744 4.62143e-10 -0.0808409)
(-0.233102 4.89421e-10 -0.0861831)
(-0.228639 5.13237e-10 -0.0913467)
(-0.224058 5.34591e-10 -0.0963267)
(-0.219368 5.54278e-10 -0.101119)
(-0.214576 5.73195e-10 -0.10572)
(-0.209689 5.91599e-10 -0.110125)
(-0.204717 6.09772e-10 -0.114333)
(-0.199666 6.27688e-10 -0.11834)
(-0.194545 6.45066e-10 -0.122145)
(-0.189361 6.61623e-10 -0.125746)
(-0.184122 6.77026e-10 -0.129141)
(-0.178837 6.91019e-10 -0.132331)
(-0.173511 7.03217e-10 -0.135315)
(-0.168154 7.13698e-10 -0.138092)
(-0.162772 7.22513e-10 -0.140665)
(-0.157373 7.29456e-10 -0.143033)
(-0.151963 7.34811e-10 -0.145198)
(-0.146549 7.38781e-10 -0.147163)
(-0.141139 7.41213e-10 -0.148928)
(-0.135739 7.42441e-10 -0.150497)
(-0.130354 7.42414e-10 -0.151873)
(-0.124992 7.41002e-10 -0.153058)
(-0.119658 7.38463e-10 -0.154057)
(-0.114358 7.34618e-10 -0.154872)
(-0.109096 7.29388e-10 -0.155508)
(-0.10388 7.22826e-10 -0.155969)
(-0.0987121 7.14752e-10 -0.156259)
(-0.0935987 7.0532e-10 -0.156383)
(-0.0885438 6.94453e-10 -0.156345)
(-0.0835516 6.8251e-10 -0.156151)
(-0.0786263 6.69337e-10 -0.155806)
(-0.0737714 6.55216e-10 -0.155314)
(-0.0689906 6.40223e-10 -0.15468)
(-0.064287 6.24564e-10 -0.15391)
(-0.0596638 6.0806e-10 -0.15301)
(-0.0551236 5.91351e-10 -0.151983)
(-0.0506692 5.74207e-10 -0.150837)
(-0.0463029 5.56883e-10 -0.149575)
(-0.0420268 5.39431e-10 -0.148203)
(-0.0378429 5.21902e-10 -0.146726)
(-0.0337529 5.04476e-10 -0.14515)
(-0.0297585 4.87152e-10 -0.143478)
(-0.0258609 4.70136e-10 -0.141717)
(-0.0220614 4.53376e-10 -0.13987)
(-0.0183611 4.36975e-10 -0.137943)
(-0.0147608 4.20958e-10 -0.13594)
(-0.0112613 4.053e-10 -0.133866)
(-0.00786319 3.89949e-10 -0.131723)
(-0.00456694 3.74982e-10 -0.129517)
(-0.00137294 3.60476e-10 -0.127252)
(0.00171864 3.46226e-10 -0.12493)
(0.00470751 3.32206e-10 -0.122556)
(0.00759372 3.18468e-10 -0.120132)
(0.0103773 3.04421e-10 -0.117663)
(0.0130584 2.90501e-10 -0.115149)
(0.0156371 2.76273e-10 -0.112595)
(0.0181138 2.6171e-10 -0.110003)
(0.0204888 2.46428e-10 -0.107375)
(0.0227625 2.30529e-10 -0.104712)
(0.0249352 2.13526e-10 -0.102018)
(0.0270073 1.95674e-10 -0.0992934)
(0.0289794 1.76666e-10 -0.0965399)
(0.030852 1.56656e-10 -0.093759)
(0.0326256 1.35464e-10 -0.0909519)
(0.0343007 1.13089e-10 -0.0881196)
(0.0358779 8.98903e-11 -0.085263)
(0.0373578 6.56625e-11 -0.0823831)
(0.0387409 4.10723e-11 -0.0794804)
(0.0400278 1.61195e-11 -0.0765558)
(0.0412192 -8.68285e-12 -0.0736099)
(0.0423157 -3.30783e-11 -0.0706431)
(0.0433178 -5.69643e-11 -0.0676562)
(0.0442263 -8.02897e-11 -0.0646496)
(0.0450417 -1.03362e-10 -0.0616241)
(0.0457648 -1.26388e-10 -0.0585803)
(0.0463963 -1.50752e-10 -0.0555191)
(0.0469368 -1.77225e-10 -0.0524414)
(0.0473871 -2.07349e-10 -0.0493483)
(0.0477479 -2.43279e-10 -0.046241)
(0.0480202 -2.87226e-10 -0.043121)
(0.0482047 -3.40937e-10 -0.0399902)
(0.0483025 -4.06828e-10 -0.0368503)
(0.0483143 -4.8639e-10 -0.0337038)
(0.0482414 -5.80295e-10 -0.0305532)
(0.0480849 -6.88545e-10 -0.0274015)
(0.0478458 -8.09193e-10 -0.0242519)
(0.0475256 -9.40185e-10 -0.0211082)
(0.0471257 -1.07731e-09 -0.0179744)
(0.0466475 -1.21533e-09 -0.0148549)
(0.0460926 -1.34829e-09 -0.0117548)
(0.0454629 -1.47017e-09 -0.00867939)
(0.0447602 -1.57434e-09 -0.00563435)
(0.0439866 -1.65576e-09 -0.00262592)
(0.0431442 -1.71057e-09 0.000339299)
(0.0422353 -1.73614e-09 0.00325428)
(0.0412626 -1.73333e-09 0.00611164)
(0.0402287 -1.70435e-09 0.00890361)
(0.0391364 -1.65434e-09 0.0116221)
(0.0379889 -1.58992e-09 0.0142587)
(0.0367892 -1.51926e-09 0.0168048)
(0.035541 -1.45049e-09 0.0192515)
(0.0342478 -1.39215e-09 0.0215897)
(0.0329134 -1.35004e-09 0.0238104)
(0.0315419 -1.32886e-09 0.0259044)
(0.0301376 -1.32984e-09 0.0278626)
(0.0287049 -1.35093e-09 0.0296759)
(0.0272484 -1.3872e-09 0.0313356)
(0.0257729 -1.42999e-09 0.032833)
(0.0242835 -1.46917e-09 0.0341601)
(0.0227854 -1.49374e-09 0.0353091)
(0.0212841 -1.49337e-09 0.0362727)
(0.0197849 -1.46123e-09 0.0370442)
(0.0182937 -1.39685e-09 0.0376178)
(0.0168164 -1.30684e-09 0.0379882)
(0.0153588 -1.20335e-09 0.038151)
(0.0139272 -1.10116e-09 0.0381027)
(0.0125278 -1.01214e-09 0.0378404)
(0.0111668 -9.50855e-10 0.0373625)
(0.00985067 -9.44274e-10 0.0366677)
(0.00858589 -1.05221e-09 0.0357558)
(0.00737897 -1.36393e-09 0.0346269)
(0.00623648 -1.96394e-09 0.0332812)
(0.00516503 -2.89447e-09 0.0317185)
(0.00417132 -4.13412e-09 0.0299374)
(0.00326219 -5.59039e-09 0.0279331)
(0.00244468 -7.05848e-09 0.0256946)
(0.00172626 -8.17689e-09 0.023198)
(0.00111525 -8.69082e-09 0.0203907)
(0.00062219 -9.62116e-09 0.0171485)
(0.000264616 -7.10496e-09 0.0131218)
(4.60859e-05 3.08139e-08 0.00721784)
(-0.00577027 -1.73457e-07 0.231179)
(-0.0155622 -1.67405e-07 0.245447)
(-0.0260634 -1.21588e-07 0.25248)
(-0.0367949 3.2853e-08 0.256824)
(-0.0474983 4.5907e-09 0.259732)
(-0.0581449 4.64246e-08 0.2617)
(-0.0686924 4.90803e-08 0.262957)
(-0.0791111 6.7621e-08 0.263629)
(-0.0893769 3.11223e-08 0.263792)
(-0.0994702 -2.74279e-09 0.263494)
(-0.109375 8.52006e-10 0.262771)
(-0.119078 1.81833e-08 0.26165)
(-0.128567 2.43307e-08 0.26015)
(-0.137833 1.66035e-08 0.25829)
(-0.146867 3.45407e-09 0.256083)
(-0.155661 -6.89634e-09 0.253543)
(-0.164208 -1.07063e-08 0.250683)
(-0.172504 -8.86991e-09 0.247515)
(-0.180541 -4.78031e-09 0.244049)
(-0.188317 -1.51412e-09 0.240297)
(-0.195827 -2.39747e-10 0.236269)
(-0.203067 -4.33661e-10 0.231976)
(-0.210033 -9.93603e-10 0.227428)
(-0.216724 -1.135e-09 0.222636)
(-0.223136 -6.74918e-10 0.217611)
(-0.229267 1.21675e-10 0.212361)
(-0.235116 8.37889e-10 0.206898)
(-0.24068 1.1646e-09 0.201231)
(-0.245959 1.03224e-09 0.19537)
(-0.250952 5.91715e-10 0.189326)
(-0.255658 8.63038e-11 0.183108)
(-0.260076 -2.89286e-10 0.176725)
(-0.264206 -4.60636e-10 0.170189)
(-0.268048 -4.57471e-10 0.163509)
(-0.271603 -3.51508e-10 0.156694)
(-0.274871 -2.04091e-10 0.149754)
(-0.277852 -4.95747e-11 0.142699)
(-0.280548 9.33407e-11 0.135538)
(-0.28296 2.04827e-10 0.128283)
(-0.285088 2.61055e-10 0.120941)
(-0.286936 2.44431e-10 0.113523)
(-0.288504 1.55321e-10 0.10604)
(-0.289794 1.67105e-11 0.0984999)
(-0.29081 -1.31923e-10 0.0909135)
(-0.291554 -2.49617e-10 0.0832907)
(-0.292027 -3.08161e-10 0.0756413)
(-0.292234 -2.99838e-10 0.0679752)
(-0.292178 -2.36785e-10 0.0603024)
(-0.291862 -1.42572e-10 0.0526327)
(-0.29129 -4.29266e-11 0.0449762)
(-0.290466 4.2533e-11 0.0373426)
(-0.289394 1.03985e-10 0.0297419)
(-0.288078 1.4038e-10 0.0221839)
(-0.286524 1.56745e-10 0.0146782)
(-0.284736 1.60313e-10 0.00723449)
(-0.28272 1.57777e-10 -0.000137668)
(-0.280481 1.54908e-10 -0.00742885)
(-0.278024 1.55475e-10 -0.0146297)
(-0.275355 1.61991e-10 -0.0217311)
(-0.272482 1.75635e-10 -0.0287241)
(-0.269409 1.97484e-10 -0.0356)
(-0.266144 2.27203e-10 -0.0423503)
(-0.262694 2.6387e-10 -0.0489667)
(-0.259064 3.05509e-10 -0.0554415)
(-0.255264 3.49582e-10 -0.061767)
(-0.2513 3.93526e-10 -0.0679359)
(-0.247179 4.35161e-10 -0.0739415)
(-0.242909 4.73026e-10 -0.0797771)
(-0.238499 5.06249e-10 -0.0854366)
(-0.233955 5.35061e-10 -0.0909145)
(-0.229286 5.60129e-10 -0.0962053)
(-0.2245 5.82198e-10 -0.101304)
(-0.219606 6.02214e-10 -0.106207)
(-0.21461 6.21e-10 -0.11091)
(-0.209522 6.39017e-10 -0.11541)
(-0.204351 6.5652e-10 -0.119703)
(-0.199103 6.73639e-10 -0.123787)
(-0.193787 6.89988e-10 -0.12766)
(-0.188411 7.0544e-10 -0.13132)
(-0.182984 7.1979e-10 -0.134768)
(-0.177514 7.32396e-10 -0.138001)
(-0.172007 7.43337e-10 -0.14102)
(-0.166472 7.5238e-10 -0.143825)
(-0.160917 7.59425e-10 -0.146418)
(-0.155349 7.64599e-10 -0.148798)
(-0.149775 7.68055e-10 -0.150968)
(-0.144202 7.6982e-10 -0.15293)
(-0.138637 7.70074e-10 -0.154686)
(-0.133088 7.68866e-10 -0.156239)
(-0.127559 7.66224e-10 -0.157592)
(-0.122058 7.62301e-10 -0.158748)
(-0.11659 7.56994e-10 -0.159711)
(-0.111161 7.50252e-10 -0.160485)
(-0.105777 7.42178e-10 -0.161074)
(-0.100443 7.32644e-10 -0.161483)
(-0.0951644 7.21675e-10 -0.161715)
(-0.0899449 7.09424e-10 -0.161777)
(-0.0847896 6.95868e-10 -0.161673)
(-0.0797026 6.80978e-10 -0.161408)
(-0.0746879 6.65013e-10 -0.160987)
(-0.0697492 6.48176e-10 -0.160416)
(-0.06489 6.30674e-10 -0.1597)
(-0.0601134 6.12326e-10 -0.158844)
(-0.0554224 5.93593e-10 -0.157855)
(-0.0508198 5.74503e-10 -0.156737)
(-0.046308 5.55386e-10 -0.155496)
(-0.0418894 5.36065e-10 -0.154138)
(-0.0375659 5.16949e-10 -0.152667)
(-0.0333394 4.9791e-10 -0.15109)
(-0.0292116 4.78999e-10 -0.149411)
(-0.0251839 4.60626e-10 -0.147636)
(-0.0212575 4.42689e-10 -0.14577)
(-0.0174336 4.25392e-10 -0.143818)
(-0.0137131 4.08301e-10 -0.141784)
(-0.0100966 3.91773e-10 -0.139673)
(-0.00658495 3.75757e-10 -0.13749)
(-0.0031785 3.60305e-10 -0.135238)
(0.00012241 3.45365e-10 -0.132923)
(0.0033175 3.30938e-10 -0.130548)
(0.00640665 3.16894e-10 -0.128117)
(0.00938987 3.03234e-10 -0.125633)
(0.0122673 2.89625e-10 -0.123099)
(0.015039 2.76194e-10 -0.12052)
(0.0177053 2.62455e-10 -0.117897)
(0.0202665 2.48562e-10 -0.115234)
(0.022723 2.34128e-10 -0.112533)
(0.0250753 2.19181e-10 -0.109797)
(0.0273237 2.03616e-10 -0.107027)
(0.0294688 1.86973e-10 -0.104225)
(0.0315112 1.69508e-10 -0.101394)
(0.0334514 1.50913e-10 -0.0985345)
(0.0352901 1.31187e-10 -0.095648)
(0.0370277 1.10535e-10 -0.092736)
(0.038665 8.8701e-11 -0.0897994)
(0.0402026 6.63e-11 -0.0868392)
(0.0416411 4.29984e-11 -0.0838562)
(0.0429812 1.95911e-11 -0.0808513)
(0.0442235 -3.87072e-12 -0.077825)
(0.0453687 -2.71307e-11 -0.074778)
(0.0464175 -4.99836e-11 -0.071711)
(0.0473705 -7.19165e-11 -0.0686244)
(0.0482284 -9.36476e-11 -0.065519)
(0.0489919 -1.1528e-10 -0.0623953)
(0.0496616 -1.37634e-10 -0.0592541)
(0.0502384 -1.61687e-10 -0.0560962)
(0.0507229 -1.89234e-10 -0.0529226)
(0.0511159 -2.21817e-10 -0.0497344)
(0.0514182 -2.61643e-10 -0.046533)
(0.0516306 -3.11077e-10 -0.0433197)
(0.0517539 -3.7207e-10 -0.0400965)
(0.0517892 -4.4632e-10 -0.0368654)
(0.0517373 -5.34908e-10 -0.0336287)
(0.0515992 -6.37786e-10 -0.030389)
(0.0513763 -7.53981e-10 -0.0271495)
(0.0510695 -8.80928e-10 -0.0239134)
(0.0506802 -1.01503e-09 -0.0206846)
(0.0502097 -1.15081e-09 -0.0174672)
(0.0496597 -1.28259e-09 -0.014266)
(0.0490317 -1.40371e-09 -0.0110858)
(0.0483273 -1.50795e-09 -0.00793227)
(0.0475487 -1.58934e-09 -0.00481121)
(0.0466976 -1.64366e-09 -0.001729)
(0.0457765 -1.66859e-09 0.00130759)
(0.0447876 -1.66393e-09 0.00429135)
(0.0437334 -1.63264e-09 0.00721473)
(0.0426167 -1.5797e-09 0.0100698)
(0.0414403 -1.51184e-09 0.0128482)
(0.0402074 -1.43821e-09 0.0155413)
(0.0389213 -1.36694e-09 0.0181404)
(0.0375854 -1.30675e-09 0.0206363)
(0.0362036 -1.26465e-09 0.0230198)
(0.0347797 -1.2444e-09 0.0252815)
(0.033318 -1.24702e-09 0.0274121)
(0.0318227 -1.26985e-09 0.0294022)
(0.0302986 -1.30616e-09 0.0312426)
(0.0287503 -1.34662e-09 0.0329243)
(0.0271831 -1.37891e-09 0.0344385)
(0.0256021 -1.39127e-09 0.0357769)
(0.0240127 -1.37213e-09 0.0369314)
(0.0224206 -1.31521e-09 0.0378946)
(0.0208317 -1.21966e-09 0.0386598)
(0.019252 -1.09356e-09 0.0392208)
(0.0176876 -9.53474e-10 0.0395722)
(0.0161449 -8.21886e-10 0.0397095)
(0.0146303 -7.21543e-10 0.0396291)
(0.0131505 -6.69379e-10 0.039328)
(0.0117121 -6.80161e-10 0.0388043)
(0.010322 -7.79623e-10 0.0380569)
(0.00898703 -1.02685e-09 0.0370853)
(0.00771406 -1.51119e-09 0.0358897)
(0.00651009 -2.31426e-09 0.0344701)
(0.00538218 -3.45645e-09 0.0328265)
(0.00433742 -4.87146e-09 0.0309572)
(0.00338306 -6.42203e-09 0.0288572)
(0.00252657 -7.86626e-09 0.0265153)
(0.00177583 -8.78611e-09 0.0239069)
(0.00113964 -8.86461e-09 0.0209784)
(0.000629028 -9.20335e-09 0.0176032)
(0.000262269 -6.06756e-09 0.0134281)
(4.14364e-05 3.16749e-08 0.00736641)
(-0.00576981 -1.73457e-07 0.231178)
(-0.0155625 -1.67405e-07 0.245447)
(-0.0260634 -1.21587e-07 0.252479)
(-0.0367948 3.28528e-08 0.256823)
(-0.0474982 4.59068e-09 0.259731)
(-0.0581447 4.64244e-08 0.261699)
(-0.0686923 4.90802e-08 0.262957)
(-0.0791111 6.76207e-08 0.263629)
(-0.0893768 3.11222e-08 0.263792)
(-0.09947 -2.74278e-09 0.263494)
(-0.109375 8.52003e-10 0.262771)
(-0.119077 1.81832e-08 0.26165)
(-0.128567 2.43307e-08 0.26015)
(-0.137833 1.66035e-08 0.25829)
(-0.146867 3.45406e-09 0.256083)
(-0.155661 -6.89632e-09 0.253543)
(-0.164208 -1.07062e-08 0.250683)
(-0.172503 -8.86989e-09 0.247515)
(-0.180541 -4.7803e-09 0.244049)
(-0.188317 -1.51412e-09 0.240297)
(-0.195827 -2.39746e-10 0.236269)
(-0.203067 -4.3366e-10 0.231976)
(-0.210033 -9.93601e-10 0.227428)
(-0.216724 -1.135e-09 0.222636)
(-0.223136 -6.74916e-10 0.217611)
(-0.229267 1.21675e-10 0.212361)
(-0.235116 8.37888e-10 0.206898)
(-0.24068 1.16459e-09 0.201231)
(-0.245959 1.03224e-09 0.19537)
(-0.250952 5.91714e-10 0.189326)
(-0.255658 8.63037e-11 0.183108)
(-0.260076 -2.89285e-10 0.176725)
(-0.264206 -4.60636e-10 0.170189)
(-0.268048 -4.57471e-10 0.163509)
(-0.271603 -3.51507e-10 0.156694)
(-0.274871 -2.04091e-10 0.149754)
(-0.277852 -4.95747e-11 0.142699)
(-0.280548 9.33407e-11 0.135538)
(-0.28296 2.04826e-10 0.128283)
(-0.285088 2.61054e-10 0.120941)
(-0.286936 2.44431e-10 0.113523)
(-0.288504 1.55321e-10 0.10604)
(-0.289795 1.67105e-11 0.0984999)
(-0.29081 -1.31923e-10 0.0909136)
(-0.291554 -2.49617e-10 0.0832907)
(-0.292027 -3.08161e-10 0.0756413)
(-0.292234 -2.99838e-10 0.0679752)
(-0.292178 -2.36784e-10 0.0603024)
(-0.291862 -1.42572e-10 0.0526327)
(-0.29129 -4.29265e-11 0.0449762)
(-0.290466 4.2533e-11 0.0373427)
(-0.289394 1.03985e-10 0.029742)
(-0.288078 1.4038e-10 0.0221839)
(-0.286524 1.56745e-10 0.0146782)
(-0.284736 1.60312e-10 0.00723452)
(-0.28272 1.57777e-10 -0.000137645)
(-0.280481 1.54908e-10 -0.00742883)
(-0.278024 1.55475e-10 -0.0146297)
(-0.275355 1.61991e-10 -0.0217311)
(-0.272482 1.75635e-10 -0.0287241)
(-0.269409 1.97484e-10 -0.0356)
(-0.266144 2.27203e-10 -0.0423502)
(-0.262694 2.63869e-10 -0.0489667)
(-0.259065 3.05509e-10 -0.0554415)
(-0.255264 3.49582e-10 -0.061767)
(-0.2513 3.93526e-10 -0.0679359)
(-0.247179 4.3516e-10 -0.0739414)
(-0.242909 4.73025e-10 -0.079777)
(-0.238499 5.06248e-10 -0.0854366)
(-0.233955 5.3506e-10 -0.0909145)
(-0.229286 5.60128e-10 -0.0962053)
(-0.2245 5.82197e-10 -0.101304)
(-0.219606 6.02213e-10 -0.106207)
(-0.21461 6.20999e-10 -0.11091)
(-0.209523 6.39015e-10 -0.11541)
(-0.204351 6.56519e-10 -0.119702)
(-0.199103 6.73637e-10 -0.123787)
(-0.193787 6.89987e-10 -0.12766)
(-0.188412 7.05439e-10 -0.13132)
(-0.182984 7.19788e-10 -0.134768)
(-0.177514 7.32395e-10 -0.138001)
(-0.172007 7.43335e-10 -0.14102)
(-0.166473 7.52379e-10 -0.143825)
(-0.160917 7.59423e-10 -0.146418)
(-0.155349 7.64597e-10 -0.148798)
(-0.149775 7.68053e-10 -0.150968)
(-0.144202 7.69818e-10 -0.15293)
(-0.138638 7.70071e-10 -0.154686)
(-0.133088 7.68864e-10 -0.156239)
(-0.127559 7.66222e-10 -0.157592)
(-0.122058 7.62299e-10 -0.158748)
(-0.11659 7.56992e-10 -0.159711)
(-0.111161 7.5025e-10 -0.160485)
(-0.105777 7.42176e-10 -0.161074)
(-0.100443 7.32642e-10 -0.161482)
(-0.0951644 7.21673e-10 -0.161715)
(-0.089945 7.09422e-10 -0.161777)
(-0.0847897 6.95865e-10 -0.161673)
(-0.0797027 6.80976e-10 -0.161408)
(-0.074688 6.65011e-10 -0.160987)
(-0.0697493 6.48174e-10 -0.160416)
(-0.06489 6.30672e-10 -0.1597)
(-0.0601134 6.12324e-10 -0.158844)
(-0.0554224 5.93592e-10 -0.157855)
(-0.0508198 5.74501e-10 -0.156737)
(-0.0463081 5.55385e-10 -0.155496)
(-0.0418894 5.36063e-10 -0.154138)
(-0.0375659 5.16947e-10 -0.152667)
(-0.0333394 4.97908e-10 -0.15109)
(-0.0292116 4.78997e-10 -0.149411)
(-0.0251839 4.60625e-10 -0.147636)
(-0.0212575 4.42687e-10 -0.14577)
(-0.0174336 4.25391e-10 -0.143818)
(-0.0137131 4.08299e-10 -0.141784)
(-0.0100967 3.91771e-10 -0.139673)
(-0.006585 3.75756e-10 -0.13749)
(-0.00317854 3.60304e-10 -0.135238)
(0.000122365 3.45364e-10 -0.132923)
(0.00331746 3.30936e-10 -0.130548)
(0.0064066 3.16893e-10 -0.128117)
(0.00938983 3.03233e-10 -0.125633)
(0.0122672 2.89624e-10 -0.123099)
(0.0150389 2.76194e-10 -0.12052)
(0.0177052 2.62455e-10 -0.117897)
(0.0202665 2.48561e-10 -0.115234)
(0.022723 2.34127e-10 -0.112533)
(0.0250752 2.1918e-10 -0.109797)
(0.0273237 2.03616e-10 -0.107027)
(0.0294688 1.86973e-10 -0.104225)
(0.0315112 1.69508e-10 -0.101394)
(0.0334514 1.50912e-10 -0.0985345)
(0.03529 1.31186e-10 -0.0956481)
(0.0370277 1.10535e-10 -0.092736)
(0.038665 8.87007e-11 -0.0897994)
(0.0402025 6.62998e-11 -0.0868392)
(0.0416411 4.29983e-11 -0.0838562)
(0.0429811 1.95911e-11 -0.0808513)
(0.0442235 -3.87071e-12 -0.077825)
(0.0453687 -2.71306e-11 -0.074778)
(0.0464174 -4.99835e-11 -0.071711)
(0.0473704 -7.19162e-11 -0.0686244)
(0.0482283 -9.36473e-11 -0.065519)
(0.0489918 -1.1528e-10 -0.0623953)
(0.0496616 -1.37634e-10 -0.0592541)
(0.0502384 -1.61686e-10 -0.0560962)
(0.0507229 -1.89233e-10 -0.0529226)
(0.0511159 -2.21816e-10 -0.0497344)
(0.0514181 -2.61642e-10 -0.046533)
(0.0516305 -3.11076e-10 -0.0433198)
(0.0517539 -3.72069e-10 -0.0400966)
(0.0517891 -4.46319e-10 -0.0368654)
(0.0517372 -5.34907e-10 -0.0336287)
(0.0515992 -6.37784e-10 -0.030389)
(0.0513762 -7.53979e-10 -0.0271495)
(0.0510694 -8.80925e-10 -0.0239134)
(0.0506801 -1.01503e-09 -0.0206846)
(0.0502097 -1.1508e-09 -0.0174672)
(0.0496597 -1.28259e-09 -0.014266)
(0.0490316 -1.40371e-09 -0.0110858)
(0.0483273 -1.50794e-09 -0.00793227)
(0.0475486 -1.58933e-09 -0.00481121)
(0.0466976 -1.64365e-09 -0.001729)
(0.0457765 -1.66859e-09 0.00130759)
(0.0447875 -1.66392e-09 0.00429136)
(0.0437333 -1.63263e-09 0.00721474)
(0.0426166 -1.57969e-09 0.0100698)
(0.0414403 -1.51184e-09 0.0128482)
(0.0402074 -1.43821e-09 0.0155414)
(0.0389212 -1.36693e-09 0.0181404)
(0.0375854 -1.30675e-09 0.0206363)
(0.0362036 -1.26465e-09 0.0230198)
(0.0347797 -1.24439e-09 0.0252815)
(0.0333179 -1.24702e-09 0.0274121)
(0.0318227 -1.26985e-09 0.0294022)
(0.0302985 -1.30615e-09 0.0312426)
(0.0287503 -1.34662e-09 0.0329243)
(0.0271831 -1.3789e-09 0.0344386)
(0.025602 -1.39127e-09 0.0357769)
(0.0240127 -1.37213e-09 0.0369314)
(0.0224206 -1.3152e-09 0.0378946)
(0.0208317 -1.21966e-09 0.0386598)
(0.0192519 -1.09356e-09 0.0392208)
(0.0176875 -9.53472e-10 0.0395722)
(0.0161448 -8.21884e-10 0.0397096)
(0.0146303 -7.21542e-10 0.0396291)
(0.0131505 -6.69377e-10 0.039328)
(0.0117121 -6.8016e-10 0.0388043)
(0.010322 -7.79621e-10 0.0380569)
(0.00898702 -1.02685e-09 0.0370853)
(0.00771405 -1.51118e-09 0.0358897)
(0.00651008 -2.31425e-09 0.0344701)
(0.00538217 -3.45644e-09 0.0328265)
(0.00433741 -4.87144e-09 0.0309571)
(0.00338304 -6.42201e-09 0.0288571)
(0.00252655 -7.86623e-09 0.0265152)
(0.00177581 -8.78608e-09 0.0239068)
(0.00113962 -8.86458e-09 0.0209783)
(0.00062902 -9.20334e-09 0.017603)
(0.000262296 -6.06758e-09 0.0134278)
(4.15109e-05 3.1675e-08 0.00736612)
(-0.00581594 -1.10069e-07 0.241915)
(-0.0157815 1.07563e-07 0.256704)
(-0.0266477 9.48989e-08 0.26386)
(-0.0376893 1.68685e-07 0.268241)
(-0.0487128 1.3955e-07 0.271112)
(-0.0596701 1.33088e-07 0.272994)
(-0.0705194 8.83629e-08 0.274127)
(-0.0812285 1.12797e-07 0.274645)
(-0.091773 7.43887e-08 0.274631)
(-0.102134 1.13346e-08 0.274138)
(-0.112295 -1.06579e-08 0.273204)
(-0.122243 3.96807e-09 0.271858)
(-0.131967 1.91722e-08 0.270123)
(-0.141456 1.80849e-08 0.268017)
(-0.150702 6.26805e-09 0.265557)
(-0.159698 -5.04717e-09 0.262756)
(-0.168436 -9.81629e-09 0.259628)
(-0.176911 -8.50395e-09 0.256186)
(-0.185117 -4.72166e-09 0.252441)
(-0.19305 -1.66264e-09 0.248405)
(-0.200705 -5.04461e-10 0.244089)
(-0.208079 -7.4755e-10 0.239505)
(-0.215169 -1.32326e-09 0.234663)
(-0.221971 -1.45423e-09 0.229574)
(-0.228483 -9.44871e-10 0.224248)
(-0.234703 -5.70021e-11 0.218696)
(-0.240629 7.74613e-10 0.212929)
(-0.24626 1.21049e-09 0.206957)
(-0.251594 1.15378e-09 0.20079)
(-0.256631 7.41435e-10 0.194439)
(-0.26137 2.18292e-10 0.187913)
(-0.26581 -2.07909e-10 0.181223)
(-0.269952 -4.45956e-10 0.174379)
(-0.273795 -5.09332e-10 0.167391)
(-0.277341 -4.57608e-10 0.160268)
(-0.280589 -3.4235e-10 0.153022)
(-0.28354 -1.92803e-10 0.145661)
(-0.286196 -2.69487e-11 0.138196)
(-0.288558 1.29948e-10 0.130637)
(-0.290628 2.43057e-10 0.122995)
(-0.292407 2.80527e-10 0.115278)
(-0.293898 2.29874e-10 0.107497)
(-0.295102 1.07131e-10 0.0996623)
(-0.296023 -4.87406e-11 0.091784)
(-0.296663 -1.90244e-10 0.0838722)
(-0.297025 -2.79427e-10 0.0759369)
(-0.297113 -2.98956e-10 0.0679884)
(-0.296929 -2.5399e-10 0.0600369)
(-0.296479 -1.65662e-10 0.0520925)
(-0.295765 -6.09272e-11 0.0441654)
(-0.294793 3.69574e-11 0.0362658)
(-0.293566 1.13479e-10 0.0284037)
(-0.292089 1.64278e-10 0.0205893)
(-0.290368 1.92076e-10 0.0128325)
(-0.288408 2.03156e-10 0.00514315)
(-0.286213 2.04825e-10 -0.00246893)
(-0.283791 2.03494e-10 -0.00999396)
(-0.281147 2.03855e-10 -0.0174224)
(-0.278287 2.09036e-10 -0.0247448)
(-0.275218 2.20831e-10 -0.0319521)
(-0.271946 2.40728e-10 -0.0390352)
(-0.26848 2.68776e-10 -0.0459855)
(-0.264824 3.04104e-10 -0.0527945)
(-0.260988 3.44891e-10 -0.0594542)
(-0.256979 3.88958e-10 -0.0659567)
(-0.252804 4.33459e-10 -0.0722947)
(-0.248471 4.76318e-10 -0.0784611)
(-0.243989 5.15459e-10 -0.0844493)
(-0.239366 5.5024e-10 -0.0902529)
(-0.234609 5.80484e-10 -0.0958663)
(-0.229728 6.06548e-10 -0.101284)
(-0.22473 6.29202e-10 -0.106501)
(-0.219625 6.49344e-10 -0.111513)
(-0.21442 6.67998e-10 -0.116317)
(-0.209125 6.85397e-10 -0.120908)
(-0.203748 7.02026e-10 -0.125284)
(-0.198298 7.17988e-10 -0.129442)
(-0.192782 7.33105e-10 -0.133381)
(-0.18721 7.47119e-10 -0.137098)
(-0.18159 7.59852e-10 -0.140593)
(-0.17593 7.70842e-10 -0.143866)
(-0.170238 7.79961e-10 -0.146917)
(-0.164522 7.8726e-10 -0.149745)
(-0.15879 7.92304e-10 -0.152353)
(-0.15305 7.95273e-10 -0.154741)
(-0.147308 7.96396e-10 -0.156911)
(-0.141573 7.9565e-10 -0.158865)
(-0.135852 7.93186e-10 -0.160606)
(-0.13015 7.89083e-10 -0.162137)
(-0.124475 7.83673e-10 -0.163461)
(-0.118833 7.76675e-10 -0.164582)
(-0.11323 7.68191e-10 -0.165504)
(-0.107672 7.58451e-10 -0.166231)
(-0.102164 7.47149e-10 -0.166767)
(-0.0967122 7.34541e-10 -0.167118)
(-0.0913208 7.20446e-10 -0.167287)
(-0.0859949 7.05071e-10 -0.167281)
(-0.0807388 6.88594e-10 -0.167104)
(-0.0755568 6.70811e-10 -0.166761)
(-0.0704527 6.52156e-10 -0.16626)
(-0.0654303 6.32605e-10 -0.165604)
(-0.060493 6.1244e-10 -0.1648)
(-0.0556437 5.91864e-10 -0.163853)
(-0.0508856 5.70827e-10 -0.162769)
(-0.0462211 5.49868e-10 -0.161554)
(-0.0416526 5.28883e-10 -0.160213)
(-0.0371824 5.08001e-10 -0.158753)
(-0.0328124 4.87451e-10 -0.157179)
(-0.0285443 4.67287e-10 -0.155496)
(-0.0243796 4.47558e-10 -0.15371)
(-0.0203196 4.28443e-10 -0.151827)
(-0.0163655 4.10047e-10 -0.149851)
(-0.0125183 3.92111e-10 -0.147788)
(-0.00877858 3.74919e-10 -0.145643)
(-0.00514713 3.58392e-10 -0.14342)
(-0.00162441 3.42506e-10 -0.141124)
(0.00178933 3.27261e-10 -0.13876)
(0.00509372 3.1286e-10 -0.136331)
(0.00828876 2.99023e-10 -0.133843)
(0.0113745 2.85468e-10 -0.131298)
(0.014351 2.72322e-10 -0.128701)
(0.0172185 2.59406e-10 -0.126055)
(0.0199774 2.46592e-10 -0.123363)
(0.0226281 2.33649e-10 -0.120628)
(0.0251709 2.20423e-10 -0.117853)
(0.0276063 2.06836e-10 -0.115041)
(0.029935 1.92557e-10 -0.112194)
(0.0321575 1.77737e-10 -0.109313)
(0.0342744 1.61814e-10 -0.106402)
(0.0362863 1.45248e-10 -0.103462)
(0.038194 1.27449e-10 -0.100494)
(0.0399981 1.08751e-10 -0.0975)
(0.0416993 8.8999e-11 -0.094481)
(0.0432983 6.8578e-11 -0.0914381)
(0.0447958 4.73595e-11 -0.0883724)
(0.0461925 2.59073e-11 -0.0852847)
(0.0474893 4.2984e-12 -0.0821757)
(0.0486866 -1.70827e-11 -0.0790461)
(0.0497854 -3.82873e-11 -0.0758966)
(0.0507862 -5.87769e-11 -0.0727277)
(0.0516898 -7.85515e-11 -0.06954)
(0.0524969 -9.82781e-11 -0.0663341)
(0.0532082 -1.18316e-10 -0.0631108)
(0.0538245 -1.39897e-10 -0.0598708)
(0.0543464 -1.64304e-10 -0.0566148)
(0.0547748 -1.93284e-10 -0.053344)
(0.0551103 -2.28889e-10 -0.0500594)
(0.0553537 -2.73482e-10 -0.0467623)
(0.055506 -3.29118e-10 -0.0434544)
(0.0555679 -3.97699e-10 -0.0401375)
(0.0555403 -4.80409e-10 -0.0368137)
(0.0554242 -5.77814e-10 -0.0334853)
(0.0552206 -6.8884e-10 -0.0301551)
(0.0549307 -8.11538e-10 -0.0268263)
(0.0545555 -9.42061e-10 -0.0235023)
(0.0540964 -1.07594e-09 -0.0201869)
(0.0535547 -1.20681e-09 -0.0168846)
(0.0529319 -1.32815e-09 -0.0136)
(0.0522295 -1.43322e-09 -0.0103382)
(0.0514494 -1.51607e-09 -0.00710503)
(0.0505934 -1.57165e-09 -0.0039064)
(0.0496634 -1.59745e-09 -0.000748868)
(0.0486618 -1.59303e-09 0.00236063)
(0.0475908 -1.56071e-09 0.00541472)
(0.046453 -1.50582e-09 0.00840564)
(0.0452511 -1.43546e-09 0.0113252)
(0.0439881 -1.35845e-09 0.014165)
(0.042667 -1.284e-09 0.0169161)
(0.0412913 -1.22151e-09 0.0195695)
(0.0398646 -1.17751e-09 0.0221159)
(0.0383906 -1.15659e-09 0.0245457)
(0.0368733 -1.15936e-09 0.0268495)
(0.0353172 -1.18301e-09 0.0290175)
(0.0337266 -1.21976e-09 0.0310403)
(0.0321063 -1.25924e-09 0.0329084)
(0.0304614 -1.28827e-09 0.0346124)
(0.0287971 -1.29338e-09 0.0361435)
(0.0271188 -1.26263e-09 0.037493)
(0.0254322 -1.18885e-09 0.0386527)
(0.0237433 -1.07101e-09 0.0396149)
(0.0220581 -9.18041e-10 0.0403728)
(0.020383 -7.48469e-10 0.0409199)
(0.0187244 -5.90121e-10 0.0412507)
(0.0170892 -4.74594e-10 0.0413605)
(0.015484 -4.29318e-10 0.0412455)
(0.0139158 -4.71177e-10 0.0409027)
(0.0123919 -6.1031e-10 0.0403301)
(0.0109192 -8.65088e-10 0.0395264)
(0.00950512 -1.28645e-09 0.0384912)
(0.00815698 -1.95941e-09 0.0372243)
(0.00688217 -2.95527e-09 0.0357261)
(0.00568815 -4.26765e-09 0.0339962)
(0.00458245 -5.78415e-09 0.0320327)
(0.00357273 -7.32161e-09 0.0298309)
(0.00266691 -8.61174e-09 0.0273788)
(0.00187331 -9.18404e-09 0.0246515)
(0.00120122 -8.65022e-09 0.021594)
(0.000662205 -8.08692e-09 0.0180775)
(0.000275628 -3.58935e-09 0.013745)
(4.32472e-05 3.76948e-08 0.00751665)
(-0.00581576 -1.10071e-07 0.241913)
(-0.0157822 1.07566e-07 0.256702)
(-0.0266482 9.48997e-08 0.263858)
(-0.0376894 1.68685e-07 0.268239)
(-0.0487126 1.39549e-07 0.271111)
(-0.0596698 1.33088e-07 0.272993)
(-0.0705192 8.83627e-08 0.274126)
(-0.0812283 1.12797e-07 0.274645)
(-0.0917729 7.43884e-08 0.274631)
(-0.102134 1.13346e-08 0.274137)
(-0.112295 -1.06578e-08 0.273204)
(-0.122243 3.96806e-09 0.271858)
(-0.131966 1.91721e-08 0.270123)
(-0.141456 1.80848e-08 0.268017)
(-0.150702 6.26803e-09 0.265557)
(-0.159698 -5.04716e-09 0.262756)
(-0.168436 -9.81626e-09 0.259628)
(-0.176911 -8.50393e-09 0.256186)
(-0.185117 -4.72165e-09 0.252441)
(-0.19305 -1.66263e-09 0.248405)
(-0.200705 -5.0446e-10 0.244089)
(-0.208079 -7.47549e-10 0.239505)
(-0.215169 -1.32325e-09 0.234663)
(-0.221971 -1.45423e-09 0.229574)
(-0.228483 -9.44869e-10 0.224248)
(-0.234703 -5.7002e-11 0.218696)
(-0.240629 7.74612e-10 0.212929)
(-0.24626 1.21049e-09 0.206957)
(-0.251594 1.15378e-09 0.20079)
(-0.256631 7.41434e-10 0.194439)
(-0.26137 2.18292e-10 0.187913)
(-0.26581 -2.07908e-10 0.181223)
(-0.269952 -4.45956e-10 0.174379)
(-0.273795 -5.09332e-10 0.167391)
(-0.277341 -4.57608e-10 0.160268)
(-0.280589 -3.4235e-10 0.153022)
(-0.28354 -1.92803e-10 0.145661)
(-0.286196 -2.69487e-11 0.138196)
(-0.288558 1.29948e-10 0.130637)
(-0.290628 2.43057e-10 0.122995)
(-0.292407 2.80527e-10 0.115278)
(-0.293898 2.29874e-10 0.107497)
(-0.295102 1.07131e-10 0.0996624)
(-0.296023 -4.87406e-11 0.0917841)
(-0.296663 -1.90244e-10 0.0838722)
(-0.297025 -2.79427e-10 0.0759369)
(-0.297113 -2.98956e-10 0.0679884)
(-0.296929 -2.5399e-10 0.0600369)
(-0.296479 -1.65662e-10 0.0520925)
(-0.295765 -6.09272e-11 0.0441654)
(-0.294793 3.69574e-11 0.0362658)
(-0.293566 1.13478e-10 0.0284037)
(-0.292089 1.64278e-10 0.0205893)
(-0.290368 1.92076e-10 0.0128325)
(-0.288408 2.03156e-10 0.00514317)
(-0.286213 2.04825e-10 -0.0024689)
(-0.283791 2.03494e-10 -0.00999393)
(-0.281147 2.03855e-10 -0.0174224)
(-0.278287 2.09036e-10 -0.0247448)
(-0.275218 2.20831e-10 -0.031952)
(-0.271947 2.40728e-10 -0.0390352)
(-0.26848 2.68776e-10 -0.0459854)
(-0.264824 3.04103e-10 -0.0527945)
(-0.260988 3.4489e-10 -0.0594542)
(-0.256979 3.88957e-10 -0.0659567)
(-0.252804 4.33458e-10 -0.0722947)
(-0.248471 4.76317e-10 -0.0784611)
(-0.243989 5.15458e-10 -0.0844492)
(-0.239366 5.50239e-10 -0.0902529)
(-0.234609 5.80483e-10 -0.0958663)
(-0.229728 6.06547e-10 -0.101284)
(-0.22473 6.29201e-10 -0.106501)
(-0.219625 6.49343e-10 -0.111513)
(-0.21442 6.67997e-10 -0.116317)
(-0.209125 6.85395e-10 -0.120908)
(-0.203748 7.02024e-10 -0.125284)
(-0.198298 7.17987e-10 -0.129442)
(-0.192782 7.33103e-10 -0.13338)
(-0.18721 7.47117e-10 -0.137098)
(-0.18159 7.5985e-10 -0.140593)
(-0.17593 7.7084e-10 -0.143866)
(-0.170238 7.79959e-10 -0.146917)
(-0.164522 7.87258e-10 -0.149745)
(-0.15879 7.92302e-10 -0.152353)
(-0.15305 7.95271e-10 -0.154741)
(-0.147308 7.96394e-10 -0.156911)
(-0.141573 7.95647e-10 -0.158865)
(-0.135852 7.93184e-10 -0.160606)
(-0.13015 7.89081e-10 -0.162137)
(-0.124475 7.83671e-10 -0.163461)
(-0.118833 7.76673e-10 -0.164582)
(-0.11323 7.68189e-10 -0.165504)
(-0.107672 7.58449e-10 -0.166231)
(-0.102164 7.47147e-10 -0.166767)
(-0.0967122 7.34539e-10 -0.167117)
(-0.0913209 7.20444e-10 -0.167287)
(-0.0859949 7.05069e-10 -0.167281)
(-0.0807388 6.88592e-10 -0.167104)
(-0.0755568 6.70809e-10 -0.166761)
(-0.0704528 6.52154e-10 -0.16626)
(-0.0654304 6.32603e-10 -0.165604)
(-0.060493 6.12438e-10 -0.164799)
(-0.0556438 5.91862e-10 -0.163853)
(-0.0508856 5.70826e-10 -0.162769)
(-0.0462211 5.49866e-10 -0.161554)
(-0.0416527 5.28881e-10 -0.160213)
(-0.0371825 5.07999e-10 -0.158753)
(-0.0328125 4.8745e-10 -0.157179)
(-0.0285443 4.67285e-10 -0.155496)
(-0.0243796 4.47556e-10 -0.15371)
(-0.0203197 4.28442e-10 -0.151827)
(-0.0163656 4.10045e-10 -0.149851)
(-0.0125183 3.9211e-10 -0.147788)
(-0.00877863 3.74917e-10 -0.145643)
(-0.00514718 3.58391e-10 -0.14342)
(-0.00162446 3.42505e-10 -0.141124)
(0.00178929 3.2726e-10 -0.13876)
(0.00509367 3.12859e-10 -0.136331)
(0.00828871 2.99023e-10 -0.133843)
(0.0113744 2.85467e-10 -0.131298)
(0.0143509 2.72321e-10 -0.128701)
(0.0172185 2.59405e-10 -0.126055)
(0.0199774 2.46591e-10 -0.123363)
(0.022628 2.33648e-10 -0.120628)
(0.0251708 2.20422e-10 -0.117853)
(0.0276063 2.06836e-10 -0.115041)
(0.029935 1.92556e-10 -0.112194)
(0.0321574 1.77737e-10 -0.109313)
(0.0342743 1.61813e-10 -0.106402)
(0.0362863 1.45247e-10 -0.103462)
(0.0381939 1.27449e-10 -0.100494)
(0.039998 1.08751e-10 -0.0975)
(0.0416992 8.89988e-11 -0.094481)
(0.0432982 6.85778e-11 -0.0914381)
(0.0447957 4.73593e-11 -0.0883724)
(0.0461925 2.59072e-11 -0.0852847)
(0.0474892 4.29839e-12 -0.0821757)
(0.0486866 -1.70826e-11 -0.0790461)
(0.0497853 -3.82872e-11 -0.0758966)
(0.0507861 -5.87767e-11 -0.0727277)
(0.0516898 -7.85513e-11 -0.06954)
(0.0524969 -9.82778e-11 -0.0663342)
(0.0532082 -1.18316e-10 -0.0631108)
(0.0538245 -1.39897e-10 -0.0598708)
(0.0543464 -1.64304e-10 -0.0566148)
(0.0547747 -1.93283e-10 -0.053344)
(0.0551102 -2.28888e-10 -0.0500594)
(0.0553537 -2.73481e-10 -0.0467623)
(0.0555059 -3.29117e-10 -0.0434545)
(0.0555678 -3.97698e-10 -0.0401375)
(0.0555402 -4.80407e-10 -0.0368137)
(0.0554242 -5.77812e-10 -0.0334853)
(0.0552206 -6.88838e-10 -0.0301551)
(0.0549307 -8.11536e-10 -0.0268263)
(0.0545555 -9.42058e-10 -0.0235023)
(0.0540964 -1.07594e-09 -0.0201869)
(0.0535547 -1.20681e-09 -0.0168846)
(0.0529319 -1.32815e-09 -0.0136)
(0.0522295 -1.43322e-09 -0.0103382)
(0.0514494 -1.51607e-09 -0.00710503)
(0.0505933 -1.57165e-09 -0.00390639)
(0.0496634 -1.59744e-09 -0.000748864)
(0.0486618 -1.59303e-09 0.00236063)
(0.0475908 -1.56071e-09 0.00541473)
(0.046453 -1.50582e-09 0.00840564)
(0.0452511 -1.43545e-09 0.0113252)
(0.0439881 -1.35845e-09 0.014165)
(0.042667 -1.28399e-09 0.0169161)
(0.0412913 -1.2215e-09 0.0195695)
(0.0398646 -1.17751e-09 0.0221159)
(0.0383905 -1.15659e-09 0.0245457)
(0.0368733 -1.15936e-09 0.0268495)
(0.0353171 -1.183e-09 0.0290175)
(0.0337266 -1.21976e-09 0.0310403)
(0.0321063 -1.25924e-09 0.0329084)
(0.0304614 -1.28827e-09 0.0346125)
(0.0287971 -1.29338e-09 0.0361435)
(0.0271188 -1.26263e-09 0.037493)
(0.0254322 -1.18885e-09 0.0386527)
(0.0237432 -1.071e-09 0.0396149)
(0.0220581 -9.1804e-10 0.0403728)
(0.0203829 -7.48467e-10 0.0409199)
(0.0187244 -5.9012e-10 0.0412507)
(0.0170892 -4.74593e-10 0.0413605)
(0.015484 -4.29317e-10 0.0412455)
(0.0139158 -4.71176e-10 0.0409027)
(0.0123918 -6.10309e-10 0.0403301)
(0.0109192 -8.65086e-10 0.0395264)
(0.00950511 -1.28645e-09 0.0384912)
(0.00815697 -1.95941e-09 0.0372243)
(0.00688216 -2.95526e-09 0.0357261)
(0.00568814 -4.26764e-09 0.0339961)
(0.00458244 -5.78413e-09 0.0320327)
(0.00357272 -7.32158e-09 0.0298308)
(0.00266689 -8.61171e-09 0.0273788)
(0.00187328 -9.18401e-09 0.0246514)
(0.00120119 -8.65019e-09 0.0215939)
(0.000662196 -8.08691e-09 0.0180774)
(0.000275654 -3.58936e-09 0.0137447)
(4.33243e-05 3.76948e-08 0.0075163)
(-0.00596166 3.24167e-07 0.252742)
(-0.0160296 3.97167e-07 0.268323)
(-0.0273393 2.31499e-07 0.275595)
(-0.0386876 1.50584e-07 0.280009)
(-0.0500394 1.02176e-07 0.282833)
(-0.0613099 -4.55301e-08 0.284616)
(-0.0724612 -1.04468e-07 0.28561)
(-0.0834593 2.28574e-09 0.285961)
(-0.0942809 3.63751e-08 0.285757)
(-0.104907 -1.0581e-08 0.285057)
(-0.115323 -4.13607e-08 0.2839)
(-0.125515 -2.47358e-08 0.282318)
(-0.135471 3.66985e-09 0.280336)
(-0.145182 1.33808e-08 0.277973)
(-0.154639 4.58472e-09 0.275248)
(-0.163835 -8.12478e-09 0.272174)
(-0.172761 -1.42653e-08 0.268767)
(-0.181413 -1.26559e-08 0.265039)
(-0.189785 -7.44099e-09 0.261003)
(-0.197872 -2.83271e-09 0.256672)
(-0.20567 -6.31377e-10 0.252056)
(-0.213175 -4.66048e-10 0.247168)
(-0.220384 -1.08983e-09 0.242019)
(-0.227294 -1.45152e-09 0.236621)
(-0.233903 -1.13728e-09 0.230983)
(-0.240208 -3.1238e-10 0.225118)
(-0.246207 5.79687e-10 0.219035)
(-0.2519 1.13735e-09 0.212746)
(-0.257285 1.19957e-09 0.206261)
(-0.262361 8.62642e-10 0.199591)
(-0.267128 3.5963e-10 0.192746)
(-0.271586 -9.3726e-11 0.185736)
(-0.275734 -3.89092e-10 0.178573)
(-0.279573 -5.22606e-10 0.171266)
(-0.283103 -5.37803e-10 0.163825)
(-0.286325 -4.73519e-10 0.156261)
(-0.289241 -3.48405e-10 0.148584)
(-0.291851 -1.75389e-10 0.140804)
(-0.294158 1.84689e-11 0.132932)
(-0.296162 1.88419e-10 0.124978)
(-0.297866 2.87457e-10 0.116952)
(-0.299272 2.87764e-10 0.108865)
(-0.300384 1.94629e-10 0.100726)
(-0.301202 4.33667e-11 0.0925467)
(-0.301732 -1.14402e-10 0.084337)
(-0.301975 -2.31754e-10 0.0761073)
(-0.301936 -2.80947e-10 0.0678681)
(-0.301618 -2.58679e-10 0.0596299)
(-0.301026 -1.81799e-10 0.0514031)
(-0.300163 -7.68727e-11 0.0431981)
(-0.299034 3.01264e-11 0.0350253)
(-0.297644 1.2038e-10 0.0268952)
(-0.295999 1.85581e-10 0.0188179)
(-0.294103 2.25604e-10 0.0108039)
(-0.291962 2.45577e-10 0.00286317)
(-0.289582 2.52655e-10 -0.00499418)
(-0.286968 2.5381e-10 -0.0127581)
(-0.284129 2.54452e-10 -0.0204187)
(-0.281069 2.5876e-10 -0.0279664)
(-0.277797 2.68887e-10 -0.0353918)
(-0.274318 2.86831e-10 -0.0426856)
(-0.270641 3.12927e-10 -0.0498389)
(-0.266774 3.4666e-10 -0.0568432)
(-0.262723 3.86364e-10 -0.06369)
(-0.258497 4.29861e-10 -0.0703714)
(-0.254104 4.74484e-10 -0.0768798)
(-0.249552 5.17901e-10 -0.0832081)
(-0.24485 5.58035e-10 -0.0893493)
(-0.240006 5.93991e-10 -0.0952972)
(-0.23503 6.25178e-10 -0.101046)
(-0.229929 6.52007e-10 -0.10659)
(-0.224714 6.75068e-10 -0.111924)
(-0.219391 6.95258e-10 -0.117044)
(-0.213972 7.13346e-10 -0.121946)
(-0.208464 7.30024e-10 -0.126627)
(-0.202876 7.45472e-10 -0.131083)
(-0.197218 7.59971e-10 -0.135312)
(-0.191498 7.73445e-10 -0.139313)
(-0.185725 7.85612e-10 -0.143083)
(-0.179907 7.96446e-10 -0.146623)
(-0.174054 8.05384e-10 -0.149932)
(-0.168172 8.12349e-10 -0.153009)
(-0.162272 8.1711e-10 -0.155856)
(-0.15636 8.19668e-10 -0.158474)
(-0.150445 8.20151e-10 -0.160864)
(-0.144534 8.18532e-10 -0.163028)
(-0.138634 8.1471e-10 -0.164969)
(-0.132754 8.09223e-10 -0.16669)
(-0.126899 8.01968e-10 -0.168193)
(-0.121076 7.93177e-10 -0.169483)
(-0.115292 7.82848e-10 -0.170563)
(-0.109553 7.71085e-10 -0.171438)
(-0.103865 7.57811e-10 -0.172111)
(-0.0982325 7.43256e-10 -0.172588)
(-0.0926622 7.27266e-10 -0.172874)
(-0.0871585 7.09996e-10 -0.172974)
(-0.0817262 6.91573e-10 -0.172893)
(-0.0763697 6.71895e-10 -0.172638)
(-0.0710931 6.51347e-10 -0.172212)
(-0.0659003 6.29953e-10 -0.171623)
(-0.0607949 6.0797e-10 -0.170877)
(-0.0557802 5.85526e-10 -0.169978)
(-0.0508593 5.62851e-10 -0.168934)
(-0.046035 5.40152e-10 -0.16775)
(-0.0413097 5.17324e-10 -0.166433)
(-0.0366859 4.94906e-10 -0.164987)
(-0.0321654 4.7277e-10 -0.16342)
(-0.0277502 4.5125e-10 -0.161737)
(-0.0234418 4.30472e-10 -0.159943)
(-0.0192417 4.10232e-10 -0.158045)
(-0.0151509 3.90864e-10 -0.156049)
(-0.0111706 3.72238e-10 -0.153958)
(-0.00730141 3.54407e-10 -0.15178)
(-0.0035441 3.3737e-10 -0.149519)
(0.000100889 3.21204e-10 -0.14718)
(0.00363319 3.05986e-10 -0.144767)
(0.00705259 2.91459e-10 -0.142286)
(0.0103591 2.77803e-10 -0.139741)
(0.0135527 2.64659e-10 -0.137135)
(0.0166336 2.52104e-10 -0.134474)
(0.0196021 2.39933e-10 -0.13176)
(0.0224586 2.28018e-10 -0.128998)
(0.0252034 2.16102e-10 -0.12619)
(0.0278372 2.04185e-10 -0.12334)
(0.0303605 1.92062e-10 -0.120451)
(0.0327738 1.79579e-10 -0.117524)
(0.0350779 1.66352e-10 -0.114564)
(0.0372735 1.52662e-10 -0.111571)
(0.0393613 1.38175e-10 -0.108548)
(0.0413419 1.22739e-10 -0.105496)
(0.0432163 1.06378e-10 -0.102418)
(0.0449851 8.9143e-11 -0.0993142)
(0.0466492 7.1137e-11 -0.0961863)
(0.0482093 5.24107e-11 -0.0930354)
(0.0496663 3.34257e-11 -0.0898624)
(0.0510208 1.4156e-11 -0.0866681)
(0.0522738 -5.1163e-12 -0.0834534)
(0.0534258 -2.39554e-11 -0.0802189)
(0.0544778 -4.2233e-11 -0.0769652)
(0.0554304 -5.9898e-11 -0.0736929)
(0.0562843 -7.73864e-11 -0.0704026)
(0.0570405 -9.44931e-11 -0.067095)
(0.0576995 -1.13039e-10 -0.0637706)
(0.058262 -1.33949e-10 -0.0604303)
(0.058729 -1.58916e-10 -0.0570748)
(0.059101 -1.8984e-10 -0.0537053)
(0.0593788 -2.29082e-10 -0.0503229)
(0.0595633 -2.78799e-10 -0.0469289)
(0.0596552 -3.4115e-10 -0.0435249)
(0.0596554 -4.1747e-10 -0.0401128)
(0.0595648 -5.08636e-10 -0.0366948)
(0.0593843 -6.13982e-10 -0.0332733)
(0.0591148 -7.31665e-10 -0.0298512)
(0.0587575 -8.58555e-10 -0.0264315)
(0.0583134 -9.89879e-10 -0.023018)
(0.0577839 -1.11978e-09 -0.0196145)
(0.0571702 -1.24185e-09 -0.0162255)
(0.0564737 -1.34859e-09 -0.0128559)
(0.0556961 -1.43392e-09 -0.00951092)
(0.0548391 -1.49251e-09 -0.00619636)
(0.0539044 -1.5209e-09 -0.00291843)
(0.0528941 -1.51858e-09 0.000316172)
(0.0518103 -1.48714e-09 0.00350032)
(0.0506555 -1.43164e-09 0.00662648)
(0.049432 -1.35974e-09 0.00968668)
(0.0481427 -1.27982e-09 0.0126725)
(0.0467905 -1.20245e-09 0.0155754)
(0.0453786 -1.13657e-09 0.0183861)
(0.0439103 -1.08981e-09 0.0210954)
(0.0423894 -1.06662e-09 0.0236937)
(0.0408196 -1.06816e-09 0.0261714)
(0.0392052 -1.09107e-09 0.0285185)
(0.0375504 -1.12761e-09 0.0307252)
(0.0358601 -1.1664e-09 0.0327817)
(0.034139 -1.19394e-09 0.0346783)
(0.0323923 -1.1957e-09 0.0364054)
(0.0306255 -1.1591e-09 0.0379538)
(0.0288442 -1.07619e-09 0.0393146)
(0.0270544 -9.45416e-10 0.0404794)
(0.0252622 -7.75986e-10 0.0414404)
(0.023474 -5.87176e-10 0.0421902)
(0.0216965 -4.09025e-10 0.0427225)
(0.0199365 -2.79241e-10 0.0430314)
(0.0182009 -2.34205e-10 0.043112)
(0.0164971 -3.01503e-10 0.0429604)
(0.0148323 -4.91641e-10 0.0425735)
(0.013214 -8.01382e-10 0.041949)
(0.0116498 -1.23633e-09 0.0410858)
(0.0101473 -1.83383e-09 0.0399831)
(0.00871443 -2.66818e-09 0.0386409)
(0.00735889 -3.79603e-09 0.0370593)
(0.00608859 -5.18097e-09 0.035238)
(0.0049115 -6.66406e-09 0.033175)
(0.00383572 -8.02362e-09 0.0308652)
(0.0028696 -8.96949e-09 0.0282966)
(0.00202195 -8.9883e-09 0.0254434)
(0.00130258 -7.59125e-09 0.0222494)
(0.000723626 -5.68551e-09 0.0185835)
(0.000305849 1.18123e-09 0.0140845)
(5.20017e-05 5.10446e-08 0.00767982)
(-0.00596303 3.24186e-07 0.252739)
(-0.0160315 3.97212e-07 0.26832)
(-0.0273401 2.31512e-07 0.275593)
(-0.0386874 1.50585e-07 0.280007)
(-0.050039 1.02177e-07 0.282832)
(-0.0613097 -4.55303e-08 0.284615)
(-0.0724609 -1.04468e-07 0.285609)
(-0.083459 2.28574e-09 0.285961)
(-0.0942808 3.6375e-08 0.285757)
(-0.104907 -1.0581e-08 0.285057)
(-0.115323 -4.13606e-08 0.2839)
(-0.125515 -2.47357e-08 0.282318)
(-0.135471 3.66983e-09 0.280336)
(-0.145182 1.33808e-08 0.277973)
(-0.154639 4.58471e-09 0.275248)
(-0.163835 -8.12476e-09 0.272174)
(-0.172761 -1.42652e-08 0.268767)
(-0.181413 -1.26558e-08 0.265039)
(-0.189785 -7.44098e-09 0.261003)
(-0.197872 -2.83271e-09 0.256672)
(-0.20567 -6.31376e-10 0.252056)
(-0.213175 -4.66047e-10 0.247168)
(-0.220384 -1.08983e-09 0.24202)
(-0.227294 -1.45152e-09 0.236621)
(-0.233903 -1.13727e-09 0.230983)
(-0.240208 -3.12379e-10 0.225118)
(-0.246207 5.79686e-10 0.219035)
(-0.2519 1.13735e-09 0.212746)
(-0.257285 1.19956e-09 0.206261)
(-0.262361 8.62642e-10 0.199591)
(-0.267128 3.5963e-10 0.192746)
(-0.271586 -9.3726e-11 0.185736)
(-0.275734 -3.89092e-10 0.178573)
(-0.279573 -5.22606e-10 0.171266)
(-0.283103 -5.37803e-10 0.163825)
(-0.286325 -4.73519e-10 0.156261)
(-0.289241 -3.48405e-10 0.148584)
(-0.291851 -1.75389e-10 0.140804)
(-0.294158 1.84689e-11 0.132932)
(-0.296162 1.88419e-10 0.124978)
(-0.297866 2.87457e-10 0.116952)
(-0.299272 2.87764e-10 0.108865)
(-0.300384 1.94629e-10 0.100726)
(-0.301203 4.33667e-11 0.0925467)
(-0.301732 -1.14402e-10 0.084337)
(-0.301975 -2.31754e-10 0.0761073)
(-0.301936 -2.80947e-10 0.0678681)
(-0.301618 -2.58679e-10 0.0596299)
(-0.301026 -1.81799e-10 0.0514031)
(-0.300163 -7.68727e-11 0.0431981)
(-0.299034 3.01264e-11 0.0350253)
(-0.297645 1.2038e-10 0.0268952)
(-0.295999 1.85581e-10 0.018818)
(-0.294103 2.25604e-10 0.0108039)
(-0.291962 2.45577e-10 0.0028632)
(-0.289582 2.52655e-10 -0.00499415)
(-0.286968 2.5381e-10 -0.0127581)
(-0.284129 2.54452e-10 -0.0204187)
(-0.281069 2.5876e-10 -0.0279664)
(-0.277797 2.68886e-10 -0.0353918)
(-0.274318 2.86831e-10 -0.0426856)
(-0.270641 3.12926e-10 -0.0498389)
(-0.266774 3.4666e-10 -0.0568431)
(-0.262723 3.86364e-10 -0.06369)
(-0.258497 4.29861e-10 -0.0703714)
(-0.254104 4.74483e-10 -0.0768798)
(-0.249552 5.179e-10 -0.083208)
(-0.24485 5.58035e-10 -0.0893493)
(-0.240006 5.9399e-10 -0.0952971)
(-0.23503 6.25177e-10 -0.101046)
(-0.229929 6.52006e-10 -0.10659)
(-0.224714 6.75067e-10 -0.111924)
(-0.219391 6.95257e-10 -0.117044)
(-0.213972 7.13345e-10 -0.121946)
(-0.208464 7.30023e-10 -0.126627)
(-0.202876 7.4547e-10 -0.131083)
(-0.197218 7.59969e-10 -0.135312)
(-0.191498 7.73443e-10 -0.139313)
(-0.185725 7.8561e-10 -0.143083)
(-0.179907 7.96444e-10 -0.146623)
(-0.174054 8.05382e-10 -0.149932)
(-0.168172 8.12347e-10 -0.153009)
(-0.162272 8.17108e-10 -0.155856)
(-0.15636 8.19666e-10 -0.158474)
(-0.150445 8.20148e-10 -0.160864)
(-0.144534 8.1853e-10 -0.163028)
(-0.138634 8.14708e-10 -0.164969)
(-0.132754 8.09221e-10 -0.16669)
(-0.126899 8.01966e-10 -0.168193)
(-0.121076 7.93175e-10 -0.169483)
(-0.115292 7.82846e-10 -0.170563)
(-0.109553 7.71083e-10 -0.171437)
(-0.103865 7.57809e-10 -0.172111)
(-0.0982326 7.43254e-10 -0.172588)
(-0.0926623 7.27264e-10 -0.172874)
(-0.0871586 7.09994e-10 -0.172974)
(-0.0817262 6.91571e-10 -0.172893)
(-0.0763697 6.71893e-10 -0.172638)
(-0.0710931 6.51345e-10 -0.172212)
(-0.0659003 6.29951e-10 -0.171623)
(-0.0607949 6.07968e-10 -0.170877)
(-0.0557803 5.85524e-10 -0.169978)
(-0.0508594 5.6285e-10 -0.168934)
(-0.046035 5.4015e-10 -0.16775)
(-0.0413098 5.17322e-10 -0.166433)
(-0.0366859 4.94905e-10 -0.164987)
(-0.0321655 4.72769e-10 -0.16342)
(-0.0277503 4.51248e-10 -0.161737)
(-0.0234419 4.30471e-10 -0.159943)
(-0.0192417 4.10231e-10 -0.158045)
(-0.015151 3.90863e-10 -0.156049)
(-0.0111706 3.72237e-10 -0.153958)
(-0.00730146 3.54406e-10 -0.15178)
(-0.00354415 3.37369e-10 -0.149519)
(0.000100842 3.21203e-10 -0.14718)
(0.00363314 3.05985e-10 -0.144767)
(0.00705254 2.91458e-10 -0.142286)
(0.010359 2.77802e-10 -0.139741)
(0.0135526 2.64658e-10 -0.137135)
(0.0166335 2.52104e-10 -0.134474)
(0.0196021 2.39933e-10 -0.13176)
(0.0224585 2.28017e-10 -0.128998)
(0.0252034 2.16101e-10 -0.12619)
(0.0278372 2.04184e-10 -0.12334)
(0.0303604 1.92061e-10 -0.120451)
(0.0327738 1.79579e-10 -0.117524)
(0.0350779 1.66351e-10 -0.114564)
(0.0372735 1.52661e-10 -0.111571)
(0.0393612 1.38175e-10 -0.108548)
(0.0413419 1.22739e-10 -0.105496)
(0.0432163 1.06377e-10 -0.102418)
(0.0449851 8.91428e-11 -0.0993142)
(0.0466492 7.11367e-11 -0.0961863)
(0.0482093 5.24106e-11 -0.0930354)
(0.0496663 3.34256e-11 -0.0898624)
(0.0510208 1.4156e-11 -0.0866681)
(0.0522737 -5.11628e-12 -0.0834534)
(0.0534258 -2.39553e-11 -0.0802189)
(0.0544777 -4.22329e-11 -0.0769652)
(0.0554303 -5.98979e-11 -0.0736929)
(0.0562843 -7.73862e-11 -0.0704026)
(0.0570404 -9.44928e-11 -0.067095)
(0.0576994 -1.13039e-10 -0.0637706)
(0.058262 -1.33949e-10 -0.0604303)
(0.0587289 -1.58916e-10 -0.0570748)
(0.0591009 -1.89839e-10 -0.0537053)
(0.0593788 -2.29081e-10 -0.0503229)
(0.0595633 -2.78799e-10 -0.0469289)
(0.0596552 -3.41149e-10 -0.0435249)
(0.0596554 -4.17469e-10 -0.0401128)
(0.0595648 -5.08634e-10 -0.0366948)
(0.0593842 -6.13981e-10 -0.0332733)
(0.0591148 -7.31663e-10 -0.0298512)
(0.0587574 -8.58552e-10 -0.0264315)
(0.0583134 -9.89876e-10 -0.023018)
(0.0577838 -1.11978e-09 -0.0196145)
(0.0571701 -1.24185e-09 -0.0162255)
(0.0564737 -1.34858e-09 -0.0128559)
(0.0556961 -1.43392e-09 -0.00951092)
(0.0548391 -1.4925e-09 -0.00619636)
(0.0539044 -1.5209e-09 -0.00291843)
(0.0528941 -1.51858e-09 0.000316176)
(0.0518103 -1.48713e-09 0.00350032)
(0.0506554 -1.43164e-09 0.00662649)
(0.049432 -1.35974e-09 0.00968668)
(0.0481427 -1.27981e-09 0.0126725)
(0.0467905 -1.20244e-09 0.0155754)
(0.0453786 -1.13657e-09 0.0183861)
(0.0439103 -1.08981e-09 0.0210954)
(0.0423893 -1.06662e-09 0.0236937)
(0.0408196 -1.06816e-09 0.0261714)
(0.0392051 -1.09107e-09 0.0285185)
(0.0375504 -1.12761e-09 0.0307252)
(0.0358601 -1.1664e-09 0.0327817)
(0.034139 -1.19394e-09 0.0346783)
(0.0323923 -1.1957e-09 0.0364054)
(0.0306255 -1.15909e-09 0.0379538)
(0.0288442 -1.07618e-09 0.0393146)
(0.0270543 -9.45414e-10 0.0404794)
(0.0252622 -7.75985e-10 0.0414404)
(0.023474 -5.87175e-10 0.0421903)
(0.0216965 -4.09024e-10 0.0427225)
(0.0199364 -2.7924e-10 0.0430314)
(0.0182009 -2.34205e-10 0.043112)
(0.0164971 -3.01503e-10 0.0429604)
(0.0148323 -4.9164e-10 0.0425735)
(0.013214 -8.0138e-10 0.0419491)
(0.0116497 -1.23633e-09 0.0410858)
(0.0101473 -1.83383e-09 0.0399831)
(0.00871442 -2.66817e-09 0.0386409)
(0.00735888 -3.79602e-09 0.0370593)
(0.00608858 -5.18095e-09 0.035238)
(0.00491149 -6.66404e-09 0.033175)
(0.0038357 -8.02359e-09 0.0308652)
(0.00286958 -8.96946e-09 0.0282966)
(0.00202192 -8.98827e-09 0.0254433)
(0.00130256 -7.59122e-09 0.0222493)
(0.000723616 -5.6855e-09 0.0185833)
(0.000305873 1.18124e-09 0.0140842)
(5.20748e-05 5.10446e-08 0.00767942)
(-0.00654132 4.0812e-07 0.263802)
(-0.0164428 1.18617e-07 0.280402)
(-0.0282491 -1.71583e-07 0.287733)
(-0.0398546 -3.37307e-07 0.292143)
(-0.0515208 -1.89516e-07 0.294894)
(-0.0630904 -3.52169e-07 0.296559)
(-0.0745324 -3.54024e-07 0.297401)
(-0.0858106 -1.28462e-07 0.297573)
(-0.0969028 -5.71914e-09 0.297167)
(-0.10779 -3.00121e-08 0.296248)
(-0.118457 -6.36006e-08 0.294857)
(-0.128889 -4.09958e-08 0.293028)
(-0.139075 2.3221e-09 0.290787)
(-0.149005 2.26473e-08 0.288157)
(-0.15867 1.40763e-08 0.285154)
(-0.168062 -5.03061e-09 0.281796)
(-0.177174 -1.76447e-08 0.278097)
(-0.186 -1.89637e-08 0.274072)
(-0.194534 -1.31803e-08 0.269733)
(-0.202772 -6.30052e-09 0.265093)
(-0.210709 -1.84022e-09 0.260166)
(-0.218342 -2.97931e-10 0.254962)
(-0.225666 -4.93822e-10 0.249494)
(-0.23268 -1.01728e-09 0.243774)
(-0.23938 -1.03959e-09 0.237812)
(-0.245766 -4.60089e-10 0.23162)
(-0.251834 3.59811e-10 0.22521)
(-0.257583 9.80673e-10 0.218592)
(-0.263014 1.16117e-09 0.211777)
(-0.268124 9.30269e-10 0.204776)
(-0.272913 4.85363e-10 0.1976)
(-0.277382 3.62727e-11 0.190259)
(-0.281531 -2.97882e-10 0.182765)
(-0.285359 -4.96285e-10 0.175127)
(-0.288868 -5.85128e-10 0.167357)
(-0.292059 -5.86601e-10 0.159465)
(-0.294932 -5.04709e-10 0.151461)
(-0.29749 -3.42355e-10 0.143355)
(-0.299733 -1.24647e-10 0.13516)
(-0.301665 9.67703e-11 0.126884)
(-0.303287 2.60437e-10 0.118539)
(-0.304602 3.21511e-10 0.110135)
(-0.305613 2.71001e-10 0.101683)
(-0.306322 1.37269e-10 0.0931937)
(-0.306733 -2.69412e-11 0.0846772)
(-0.30685 -1.67174e-10 0.0761445)
(-0.306676 -2.45486e-10 0.0676062)
(-0.306215 -2.48987e-10 0.0590733)
(-0.305473 -1.88345e-10 0.0505562)
(-0.304452 -8.80723e-11 0.0420658)
(-0.303159 2.40145e-11 0.0336127)
(-0.301598 1.2551e-10 0.0252076)
(-0.299775 2.0411e-10 0.0168611)
(-0.297696 2.56765e-10 0.00858371)
(-0.295365 2.86399e-10 0.000385823)
(-0.292791 2.9996e-10 -0.00772218)
(-0.289978 3.04549e-10 -0.01573)
(-0.286935 3.06497e-10 -0.0236274)
(-0.283667 3.10291e-10 -0.0314046)
(-0.280183 3.1898e-10 -0.0390519)
(-0.276489 3.35e-10 -0.0465598)
(-0.272594 3.59117e-10 -0.0539191)
(-0.268506 3.90898e-10 -0.0611211)
(-0.264232 4.2911e-10 -0.0681572)
(-0.259782 4.71575e-10 -0.0750191)
(-0.255163 5.15782e-10 -0.0816992)
(-0.250385 5.59218e-10 -0.0881901)
(-0.245456 5.99911e-10 -0.0944847)
(-0.240385 6.36528e-10 -0.100577)
(-0.235182 6.68377e-10 -0.10646)
(-0.229856 6.95715e-10 -0.112129)
(-0.224415 7.18978e-10 -0.117579)
(-0.21887 7.38908e-10 -0.122805)
(-0.21323 7.5625e-10 -0.127804)
(-0.207504 7.71798e-10 -0.132571)
(-0.2017 7.85757e-10 -0.137105)
(-0.19583 7.98512e-10 -0.141402)
(-0.189901 8.09985e-10 -0.145461)
(-0.183922 8.19896e-10 -0.149281)
(-0.177903 8.2832e-10 -0.152861)
(-0.171853 8.34643e-10 -0.1562)
(-0.165779 8.38993e-10 -0.1593)
(-0.159691 8.40961e-10 -0.16216)
(-0.153597 8.40623e-10 -0.164783)
(-0.147505 8.37877e-10 -0.16717)
(-0.141422 8.33004e-10 -0.169323)
(-0.135357 8.25954e-10 -0.171245)
(-0.129316 8.16984e-10 -0.172939)
(-0.123306 8.06168e-10 -0.174409)
(-0.117335 7.93765e-10 -0.175658)
(-0.111408 7.79851e-10 -0.176691)
(-0.105533 7.644e-10 -0.177512)
(-0.0997145 7.47668e-10 -0.178125)
(-0.0939584 7.29579e-10 -0.178537)
(-0.0882702 7.10235e-10 -0.178752)
(-0.0826547 6.89816e-10 -0.178777)
(-0.0771168 6.68372e-10 -0.178615)
(-0.0716607 6.45929e-10 -0.178274)
(-0.0662906 6.22641e-10 -0.177759)
(-0.0610102 5.98867e-10 -0.177077)
(-0.0558232 5.74683e-10 -0.176234)
(-0.0507327 5.50166e-10 -0.175235)
(-0.0457417 5.25701e-10 -0.174088)
(-0.0408528 5.01389e-10 -0.172798)
(-0.0360685 4.77488e-10 -0.171372)
(-0.031391 4.54048e-10 -0.169816)
(-0.0268221 4.31248e-10 -0.168136)
(-0.0223635 4.09397e-10 -0.166339)
(-0.0180168 3.88211e-10 -0.164429)
(-0.0137831 3.67922e-10 -0.162414)
(-0.00966347 3.48504e-10 -0.160299)
(-0.00565877 3.30009e-10 -0.15809)
(-0.00176968 3.12743e-10 -0.155792)
(0.0020034 2.96373e-10 -0.153411)
(0.00565995 2.80952e-10 -0.150951)
(0.0091999 2.66708e-10 -0.148418)
(0.0126232 2.53208e-10 -0.145816)
(0.01593 2.40552e-10 -0.14315)
(0.0191204 2.28511e-10 -0.140424)
(0.0221949 2.17085e-10 -0.137642)
(0.0251538 2.06094e-10 -0.134809)
(0.0279977 1.95435e-10 -0.131927)
(0.030727 1.84801e-10 -0.129001)
(0.0333425 1.74244e-10 -0.126033)
(0.0358449 1.63506e-10 -0.123026)
(0.0382349 1.52459e-10 -0.119983)
(0.0405132 1.40796e-10 -0.116906)
(0.0426807 1.28645e-10 -0.113798)
(0.0447383 1.15672e-10 -0.110661)
(0.0466867 1.02109e-10 -0.107496)
(0.0485269 8.74669e-11 -0.104305)
(0.0502597 7.22336e-11 -0.10109)
(0.0518859 5.63574e-11 -0.0978512)
(0.0534065 4.00947e-11 -0.0945904)
(0.0548222 2.34708e-11 -0.0913084)
(0.056134 7.04984e-12 -0.088006)
(0.0573426 -9.04017e-12 -0.0846839)
(0.058449 -2.46198e-11 -0.0813429)
(0.0594538 -3.97146e-11 -0.0779835)
(0.0603578 -5.42222e-11 -0.0746064)
(0.0611619 -6.84245e-11 -0.0712121)
(0.0618669 -8.36811e-11 -0.0678012)
(0.0624733 -1.00685e-10 -0.0643743)
(0.0629821 -1.21026e-10 -0.0609324)
(0.0633939 -1.4686e-10 -0.0574761)
(0.0637095 -1.80189e-10 -0.0540065)
(0.0639296 -2.23426e-10 -0.0505248)
(0.064055 -2.78985e-10 -0.0470324)
(0.0640865 -3.48149e-10 -0.0435309)
(0.0640249 -4.32155e-10 -0.0400222)
(0.063871 -5.30748e-10 -0.0365086)
(0.0636258 -6.42597e-10 -0.0329924)
(0.0632902 -7.64932e-10 -0.0294767)
(0.0628652 -8.9324e-10 -0.0259647)
(0.0623518 -1.02187e-09 -0.0224599)
(0.0617514 -1.14431e-09 -0.0189667)
(0.0610651 -1.25337e-09 -0.0154893)
(0.0602943 -1.34212e-09 -0.0120329)
(0.0594406 -1.40479e-09 -0.00860283)
(0.0585057 -1.43753e-09 -0.00520505)
(0.0574912 -1.4388e-09 -0.00184594)
(0.0563992 -1.41002e-09 0.00146766)
(0.0552318 -1.35596e-09 0.00472843)
(0.0539914 -1.28346e-09 0.00792863)
(0.0526803 -1.202e-09 0.0110601)
(0.0513014 -1.12151e-09 0.0141142)
(0.0498577 -1.05205e-09 0.017082)
(0.0483522 -1.00144e-09 0.0199542)
(0.0467884 -9.75324e-10 0.0227213)
(0.0451701 -9.74333e-10 0.0253735)
(0.0435011 -9.95437e-10 0.0279006)
(0.0417856 -1.03073e-09 0.0302928)
(0.0400282 -1.06869e-09 0.0325397)
(0.0382336 -1.09518e-09 0.0346313)
(0.0364068 -1.09561e-09 0.0365576)
(0.0345532 -1.05701e-09 0.0383088)
(0.0326785 -9.70518e-10 0.0398753)
(0.0307884 -8.35363e-10 0.041248)
(0.0288891 -6.59553e-10 0.0424183)
(0.0269871 -4.62313e-10 0.043378)
(0.025089 -2.75216e-10 0.0441196)
(0.0232019 -1.37146e-10 0.0446364)
(0.0213327 -9.06991e-11 0.0449224)
(0.0194889 -1.72614e-10 0.0449725)
(0.017678 -4.01784e-10 0.0447826)
(0.0159078 -7.75291e-10 0.0443494)
(0.0141862 -1.27102e-09 0.0436707)
(0.012521 -1.87352e-09 0.0427449)
(0.0109205 -2.60317e-09 0.0415713)
(0.00939281 -3.52012e-09 0.0401499)
(0.00794616 -4.66384e-09 0.0384807)
(0.0065889 -5.96828e-09 0.0365632)
(0.00532943 -7.23089e-09 0.0343954)
(0.00417631 -8.19464e-09 0.031972)
(0.00313836 -8.56225e-09 0.0292807)
(0.00222487 -7.77215e-09 0.0262948)
(0.00144622 -5.20715e-09 0.022957)
(0.000815125 -1.40004e-09 0.0191336)
(0.000354075 8.99626e-09 0.014459)
(6.82292e-05 7.30837e-08 0.00786779)
(-0.00654142 4.08184e-07 0.2638)
(-0.0164445 1.18652e-07 0.280399)
(-0.0282501 -1.71605e-07 0.287731)
(-0.0398543 -3.37313e-07 0.292141)
(-0.0515205 -1.89518e-07 0.294893)
(-0.0630903 -3.52174e-07 0.296558)
(-0.074532 -3.54027e-07 0.2974)
(-0.0858101 -1.28462e-07 0.297572)
(-0.0969026 -5.71913e-09 0.297167)
(-0.10779 -3.0012e-08 0.296248)
(-0.118457 -6.36004e-08 0.294857)
(-0.128889 -4.09957e-08 0.293028)
(-0.139075 2.32209e-09 0.290787)
(-0.149005 2.26472e-08 0.288157)
(-0.15867 1.40762e-08 0.285154)
(-0.168062 -5.0306e-09 0.281796)
(-0.177174 -1.76447e-08 0.278097)
(-0.186 -1.89637e-08 0.274072)
(-0.194534 -1.31803e-08 0.269733)
(-0.202772 -6.30051e-09 0.265093)
(-0.210709 -1.84022e-09 0.260166)
(-0.218342 -2.97931e-10 0.254962)
(-0.225666 -4.93821e-10 0.249494)
(-0.23268 -1.01728e-09 0.243774)
(-0.23938 -1.03959e-09 0.237812)
(-0.245766 -4.60089e-10 0.23162)
(-0.251834 3.5981e-10 0.22521)
(-0.257583 9.80672e-10 0.218592)
(-0.263014 1.16117e-09 0.211777)
(-0.268124 9.30269e-10 0.204776)
(-0.272914 4.85363e-10 0.1976)
(-0.277382 3.62727e-11 0.190259)
(-0.281531 -2.97881e-10 0.182765)
(-0.285359 -4.96285e-10 0.175127)
(-0.288868 -5.85128e-10 0.167357)
(-0.292059 -5.86601e-10 0.159465)
(-0.294932 -5.04709e-10 0.151461)
(-0.29749 -3.42355e-10 0.143356)
(-0.299733 -1.24647e-10 0.13516)
(-0.301665 9.67703e-11 0.126884)
(-0.303287 2.60437e-10 0.118539)
(-0.304602 3.21511e-10 0.110135)
(-0.305613 2.71001e-10 0.101683)
(-0.306322 1.37269e-10 0.0931937)
(-0.306733 -2.69412e-11 0.0846772)
(-0.30685 -1.67174e-10 0.0761445)
(-0.306676 -2.45486e-10 0.0676063)
(-0.306215 -2.48987e-10 0.0590733)
(-0.305473 -1.88345e-10 0.0505562)
(-0.304452 -8.80723e-11 0.0420658)
(-0.303159 2.40145e-11 0.0336128)
(-0.301598 1.2551e-10 0.0252077)
(-0.299775 2.0411e-10 0.0168612)
(-0.297696 2.56765e-10 0.00858374)
(-0.295365 2.86399e-10 0.000385847)
(-0.292791 2.9996e-10 -0.00772215)
(-0.289978 3.04548e-10 -0.0157299)
(-0.286935 3.06497e-10 -0.0236274)
(-0.283667 3.10291e-10 -0.0314046)
(-0.280183 3.1898e-10 -0.0390519)
(-0.276489 3.34999e-10 -0.0465598)
(-0.272594 3.59117e-10 -0.0539191)
(-0.268506 3.90897e-10 -0.0611211)
(-0.264232 4.29109e-10 -0.0681571)
(-0.259782 4.71575e-10 -0.0750191)
(-0.255163 5.15781e-10 -0.0816992)
(-0.250385 5.59218e-10 -0.08819)
(-0.245456 5.9991e-10 -0.0944847)
(-0.240385 6.36527e-10 -0.100577)
(-0.235182 6.68376e-10 -0.10646)
(-0.229856 6.95714e-10 -0.112129)
(-0.224416 7.18976e-10 -0.117579)
(-0.218871 7.38907e-10 -0.122805)
(-0.21323 7.56249e-10 -0.127804)
(-0.207504 7.71797e-10 -0.132571)
(-0.2017 7.85756e-10 -0.137105)
(-0.19583 7.9851e-10 -0.141402)
(-0.189901 8.09983e-10 -0.145461)
(-0.183922 8.19894e-10 -0.149281)
(-0.177903 8.28318e-10 -0.152861)
(-0.171853 8.34641e-10 -0.1562)
(-0.165779 8.38991e-10 -0.1593)
(-0.159692 8.40959e-10 -0.16216)
(-0.153597 8.40621e-10 -0.164783)
(-0.147505 8.37874e-10 -0.16717)
(-0.141422 8.33002e-10 -0.169323)
(-0.135357 8.25952e-10 -0.171245)
(-0.129316 8.16981e-10 -0.172939)
(-0.123306 8.06166e-10 -0.174409)
(-0.117335 7.93763e-10 -0.175658)
(-0.111409 7.79848e-10 -0.176691)
(-0.105533 7.64397e-10 -0.177512)
(-0.0997145 7.47666e-10 -0.178125)
(-0.0939585 7.29577e-10 -0.178537)
(-0.0882702 7.10233e-10 -0.178752)
(-0.0826548 6.89813e-10 -0.178776)
(-0.0771168 6.6837e-10 -0.178615)
(-0.0716607 6.45927e-10 -0.178274)
(-0.0662906 6.22639e-10 -0.177759)
(-0.0610103 5.98865e-10 -0.177077)
(-0.0558233 5.74681e-10 -0.176234)
(-0.0507328 5.50164e-10 -0.175235)
(-0.0457417 5.25699e-10 -0.174088)
(-0.0408529 5.01388e-10 -0.172798)
(-0.0360686 4.77486e-10 -0.171372)
(-0.031391 4.54046e-10 -0.169816)
(-0.0268221 4.31247e-10 -0.168136)
(-0.0223636 4.09395e-10 -0.166338)
(-0.0180168 3.8821e-10 -0.164429)
(-0.0137831 3.67921e-10 -0.162414)
(-0.00966352 3.48503e-10 -0.160299)
(-0.00565882 3.30008e-10 -0.15809)
(-0.00176973 3.12742e-10 -0.155792)
(0.00200336 2.96372e-10 -0.153411)
(0.0056599 2.80951e-10 -0.150951)
(0.00919985 2.66707e-10 -0.148418)
(0.0126232 2.53207e-10 -0.145816)
(0.0159299 2.40552e-10 -0.14315)
(0.0191204 2.28511e-10 -0.140424)
(0.0221949 2.17084e-10 -0.137642)
(0.0251538 2.06093e-10 -0.134809)
(0.0279976 1.95435e-10 -0.131927)
(0.030727 1.84801e-10 -0.129001)
(0.0333425 1.74243e-10 -0.126033)
(0.0358449 1.63505e-10 -0.123026)
(0.0382348 1.52458e-10 -0.119983)
(0.0405132 1.40796e-10 -0.116906)
(0.0426807 1.28645e-10 -0.113798)
(0.0447383 1.15672e-10 -0.110661)
(0.0466867 1.02108e-10 -0.107496)
(0.0485268 8.74666e-11 -0.104305)
(0.0502596 7.22333e-11 -0.10109)
(0.0518859 5.63572e-11 -0.0978512)
(0.0534064 4.00946e-11 -0.0945904)
(0.0548222 2.34708e-11 -0.0913084)
(0.056134 7.04982e-12 -0.088006)
(0.0573426 -9.04015e-12 -0.0846839)
(0.0584489 -2.46197e-11 -0.0813429)
(0.0594537 -3.97145e-11 -0.0779835)
(0.0603578 -5.4222e-11 -0.0746064)
(0.0611619 -6.84243e-11 -0.0712121)
(0.0618668 -8.36808e-11 -0.0678012)
(0.0624733 -1.00684e-10 -0.0643744)
(0.062982 -1.21025e-10 -0.0609324)
(0.0633939 -1.4686e-10 -0.0574761)
(0.0637094 -1.80189e-10 -0.0540065)
(0.0639296 -2.23426e-10 -0.0505248)
(0.064055 -2.78984e-10 -0.0470324)
(0.0640865 -3.48148e-10 -0.0435309)
(0.0640249 -4.32154e-10 -0.0400222)
(0.063871 -5.30747e-10 -0.0365086)
(0.0636258 -6.42595e-10 -0.0329924)
(0.0632901 -7.6493e-10 -0.0294767)
(0.0628651 -8.93237e-10 -0.0259647)
(0.0623518 -1.02187e-09 -0.0224599)
(0.0617513 -1.14431e-09 -0.0189667)
(0.061065 -1.25337e-09 -0.0154893)
(0.0602943 -1.34211e-09 -0.0120329)
(0.0594406 -1.40478e-09 -0.00860283)
(0.0585056 -1.43753e-09 -0.00520505)
(0.0574911 -1.43879e-09 -0.00184593)
(0.0563992 -1.41001e-09 0.00146766)
(0.0552318 -1.35596e-09 0.00472843)
(0.0539913 -1.28346e-09 0.00792863)
(0.0526803 -1.202e-09 0.0110601)
(0.0513014 -1.12151e-09 0.0141142)
(0.0498576 -1.05205e-09 0.017082)
(0.0483522 -1.00144e-09 0.0199543)
(0.0467884 -9.75322e-10 0.0227213)
(0.0451701 -9.74331e-10 0.0253735)
(0.043501 -9.95435e-10 0.0279007)
(0.0417856 -1.03072e-09 0.0302928)
(0.0400282 -1.06868e-09 0.0325397)
(0.0382336 -1.09518e-09 0.0346313)
(0.0364068 -1.09561e-09 0.0365576)
(0.0345532 -1.057e-09 0.0383088)
(0.0326785 -9.70516e-10 0.0398753)
(0.0307883 -8.35362e-10 0.0412481)
(0.0288891 -6.59552e-10 0.0424183)
(0.0269871 -4.62312e-10 0.043378)
(0.025089 -2.75216e-10 0.0441196)
(0.0232018 -1.37146e-10 0.0446364)
(0.0213327 -9.0699e-11 0.0449224)
(0.0194889 -1.72614e-10 0.0449725)
(0.017678 -4.01784e-10 0.0447826)
(0.0159078 -7.75289e-10 0.0443494)
(0.0141862 -1.27101e-09 0.0436707)
(0.012521 -1.87352e-09 0.0427449)
(0.0109205 -2.60316e-09 0.0415713)
(0.00939281 -3.52011e-09 0.0401499)
(0.00794616 -4.66383e-09 0.0384807)
(0.00658889 -5.96826e-09 0.0365632)
(0.00532942 -7.23087e-09 0.0343954)
(0.0041763 -8.19462e-09 0.031972)
(0.00313834 -8.56222e-09 0.0292806)
(0.00222484 -7.77212e-09 0.0262947)
(0.00144619 -5.20713e-09 0.0229569)
(0.000815112 -1.40004e-09 0.0191333)
(0.000354095 8.99628e-09 0.0144587)
(6.82918e-05 7.30838e-08 0.00786733)
(-0.00813252 -2.31104e-07 0.27603)
(-0.0171328 -1.22185e-06 0.292252)
(-0.029525 -9.47705e-07 0.299948)
(-0.0412677 -6.4288e-07 0.304504)
(-0.0531887 -1.53079e-07 0.307235)
(-0.065019 -2.70295e-07 0.308794)
(-0.076731 -2.71497e-07 0.309483)
(-0.0882775 -1.47435e-08 0.309469)
(-0.0996324 9.64543e-08 0.308854)
(-0.110775 4.34308e-09 0.307705)
(-0.121688 -8.41846e-08 0.30607)
(-0.132357 -7.14521e-08 0.303984)
(-0.14277 -8.93618e-09 0.301474)
(-0.152915 3.24036e-08 0.298563)
(-0.162785 3.17782e-08 0.295272)
(-0.172371 8.03907e-09 0.291617)
(-0.181665 -1.3913e-08 0.287615)
(-0.190661 -2.2415e-08 0.283279)
(-0.199354 -1.92061e-08 0.278625)
(-0.207738 -1.13166e-08 0.273666)
(-0.21581 -4.45923e-09 0.268414)
(-0.223565 -8.4052e-10 0.262882)
(-0.231001 3.83853e-11 0.257082)
(-0.238113 -3.00175e-10 0.251027)
(-0.2449 -5.97014e-10 0.244729)
(-0.251361 -3.62614e-10 0.238199)
(-0.257492 2.45628e-10 0.231448)
(-0.263293 8.23404e-10 0.224489)
(-0.268762 1.07302e-09 0.217332)
(-0.2739 9.46005e-10 0.209988)
(-0.278706 5.82908e-10 0.202469)
(-0.28318 1.67313e-10 0.194785)
(-0.287322 -1.82722e-10 0.186948)
(-0.291133 -4.3446e-10 0.178969)
(-0.294614 -5.96881e-10 0.170858)
(-0.297765 -6.73683e-10 0.162626)
(-0.300589 -6.50642e-10 0.154284)
(-0.303086 -5.16867e-10 0.145842)
(-0.30526 -2.90698e-10 0.137313)
(-0.307111 -2.75676e-11 0.128705)
(-0.308643 1.98686e-10 0.120031)
(-0.309859 3.25897e-10 0.111301)
(-0.310761 3.28794e-10 0.102526)
(-0.311352 2.2561e-10 0.0937167)
(-0.311637 6.63155e-11 0.0848843)
(-0.311618 -8.9179e-11 0.0760398)
(-0.311301 -1.93527e-10 0.067194)
(-0.310689 -2.23713e-10 0.0583581)
(-0.309788 -1.82997e-10 0.0495429)
(-0.308601 -9.21439e-11 0.0407596)
(-0.307134 2.06465e-11 0.032019)
(-0.305394 1.30434e-10 0.0233321)
(-0.303384 2.20917e-10 0.0147098)
(-0.301112 2.85663e-10 0.00616282)
(-0.298584 3.25519e-10 -0.00229806)
(-0.295806 3.46408e-10 -0.0106621)
(-0.292785 3.55378e-10 -0.0189187)
(-0.289529 3.59171e-10 -0.0270575)
(-0.286045 3.62989e-10 -0.0350684)
(-0.28234 3.70856e-10 -0.0429413)
(-0.278423 3.85027e-10 -0.0506665)
(-0.274301 4.07143e-10 -0.0582348)
(-0.269984 4.36868e-10 -0.0656369)
(-0.26548 4.7323e-10 -0.0728641)
(-0.260797 5.14203e-10 -0.079908)
(-0.255945 5.57481e-10 -0.0867608)
(-0.250932 6.00527e-10 -0.0934148)
(-0.245769 6.41215e-10 -0.099863)
(-0.240465 6.78006e-10 -0.106099)
(-0.235029 7.10235e-10 -0.112116)
(-0.22947 7.37518e-10 -0.117909)
(-0.2238 7.60598e-10 -0.123473)
(-0.218026 7.79962e-10 -0.128803)
(-0.212159 7.9638e-10 -0.133896)
(-0.206209 8.10311e-10 -0.138747)
(-0.200186 8.22552e-10 -0.143355)
(-0.194098 8.32947e-10 -0.147716)
(-0.187956 8.42036e-10 -0.15183)
(-0.181769 8.49306e-10 -0.155695)
(-0.175545 8.54757e-10 -0.15931)
(-0.169295 8.58184e-10 -0.162675)
(-0.163027 8.59332e-10 -0.165792)
(-0.156749 8.57994e-10 -0.16866)
(-0.150471 8.54223e-10 -0.171283)
(-0.1442 8.4789e-10 -0.17366)
(-0.137944 8.39278e-10 -0.175796)
(-0.131712 8.28643e-10 -0.177693)
(-0.125509 8.1583e-10 -0.179355)
(-0.119345 8.0125e-10 -0.180784)
(-0.113225 7.85159e-10 -0.181986)
(-0.107157 7.67378e-10 -0.182965)
(-0.101145 7.4824e-10 -0.183726)
(-0.0951971 7.28078e-10 -0.184274)
(-0.0893179 7.06558e-10 -0.184614)
(-0.0835128 6.83988e-10 -0.184751)
(-0.0777868 6.6042e-10 -0.184693)
(-0.0721446 6.36058e-10 -0.184444)
(-0.0665906 6.11133e-10 -0.184012)
(-0.0611287 5.85466e-10 -0.183401)
(-0.0557627 5.59542e-10 -0.18262)
(-0.050496 5.33568e-10 -0.181673)
(-0.0453317 5.07568e-10 -0.180568)
(-0.0402727 4.81773e-10 -0.179312)
(-0.0353215 4.56413e-10 -0.17791)
(-0.0304805 4.31823e-10 -0.17637)
(-0.0257516 4.07975e-10 -0.174698)
(-0.0211366 3.84922e-10 -0.1729)
(-0.0166371 3.62944e-10 -0.170982)
(-0.0122544 3.41838e-10 -0.168952)
(-0.00798957 3.21679e-10 -0.166815)
(-0.00384349 3.0275e-10 -0.164577)
(0.000183164 2.84999e-10 -0.162245)
(0.00408983 2.68426e-10 -0.159822)
(0.00787615 2.5298e-10 -0.157316)
(0.011542 2.38892e-10 -0.154732)
(0.0150874 2.25751e-10 -0.152073)
(0.0185124 2.13507e-10 -0.149347)
(0.0218174 2.02032e-10 -0.146556)
(0.0250026 1.91401e-10 -0.143706)
(0.0280687 1.81256e-10 -0.140801)
(0.0310161 1.71829e-10 -0.137845)
(0.0338455 1.6258e-10 -0.134841)
(0.0365576 1.53561e-10 -0.131793)
(0.0391531 1.44567e-10 -0.128704)
(0.041633 1.35496e-10 -0.125577)
(0.0439981 1.26039e-10 -0.122415)
(0.0462493 1.16222e-10 -0.11922)
(0.0483875 1.05918e-10 -0.115994)
(0.0504136 9.5099e-11 -0.112741)
(0.0523287 8.3382e-11 -0.10946)
(0.0541336 7.12022e-11 -0.106155)
(0.0558293 5.83544e-11 -0.102826)
(0.0574168 4.51973e-11 -0.099475)
(0.058897 3.16796e-11 -0.0961026)
(0.0602709 1.81855e-11 -0.0927098)
(0.0615393 5.12529e-12 -0.0892977)
(0.0627031 -7.70621e-12 -0.0858668)
(0.0637632 -1.94886e-11 -0.0824178)
(0.0647205 -3.08372e-11 -0.0789513)
(0.0655757 -4.20597e-11 -0.0754679)
(0.0663297 -5.34127e-11 -0.0719681)
(0.0669832 -6.6127e-11 -0.0684526)
(0.067537 -8.17162e-11 -0.064922)
(0.0679918 -1.02002e-10 -0.061377)
(0.0683484 -1.29087e-10 -0.0578184)
(0.0686075 -1.65462e-10 -0.0542474)
(0.0687698 -2.13155e-10 -0.0506651)
(0.0688361 -2.74296e-10 -0.0470729)
(0.0688071 -3.50119e-10 -0.0434724)
(0.0686837 -4.41039e-10 -0.0398656)
(0.0684665 -5.45825e-10 -0.0362548)
(0.0681565 -6.62429e-10 -0.0326424)
(0.0677546 -7.86798e-10 -0.0290315)
(0.0672617 -9.13392e-10 -0.0254254)
(0.0666788 -1.03569e-09 -0.0218278)
(0.066007 -1.14656e-09 -0.0182429)
(0.0652477 -1.23907e-09 -0.0146753)
(0.064402 -1.3066e-09 -0.0111302)
(0.0634716 -1.34502e-09 -0.00761305)
(0.0624578 -1.35156e-09 -0.00413004)
(0.0613625 -1.32735e-09 -0.000687677)
(0.0601877 -1.27602e-09 0.00270703)
(0.0589353 -1.20466e-09 0.00604658)
(0.0576077 -1.12239e-09 0.00932301)
(0.0562072 -1.0396e-09 0.0125279)
(0.0547367 -9.66707e-10 0.0156525)
(0.0531991 -9.1209e-10 0.0186876)
(0.0515975 -8.81918e-10 0.0216235)
(0.0499354 -8.77581e-10 0.0244506)
(0.0482165 -8.95951e-10 0.0271586)
(0.0464447 -9.29324e-10 0.0297374)
(0.0446245 -9.65986e-10 0.0321765)
(0.0427603 -9.91598e-10 0.0344655)
(0.0408569 -9.91405e-10 0.0365939)
(0.0389197 -9.52244e-10 0.0385515)
(0.0369541 -8.66188e-10 0.0403282)
(0.0349657 -7.31943e-10 0.041914)
(0.0329609 -5.57414e-10 0.0432997)
(0.0309459 -3.62388e-10 0.0444761)
(0.0289274 -1.76476e-10 0.0454349)
(0.0269123 -3.96342e-11 0.0461684)
(0.024908 3.85548e-12 0.0466696)
(0.0229218 -8.74189e-11 0.0469321)
(0.0209615 -3.41247e-10 0.0469508)
(0.0190349 -7.60938e-10 0.0467213)
(0.0171503 -1.32151e-09 0.0462401)
(0.0153159 -1.97667e-09 0.0455049)
(0.01354 -2.68732e-09 0.0445139)
(0.0118313 -3.45565e-09 0.0432665)
(0.0101982 -4.32473e-09 0.0417624)
(0.00864964 -5.31938e-09 0.0400016)
(0.00719423 -6.34332e-09 0.0379835)
(0.00584089 -7.15743e-09 0.035706)
(0.00459863 -7.47816e-09 0.0331636)
(0.00347675 -7.00441e-09 0.0303435)
(0.00248506 -5.13054e-09 0.0272185)
(0.00163451 -1.06013e-09 0.0237299)
(0.00093847 5.24956e-09 0.019741)
(0.000421411 2.03133e-08 0.0148819)
(9.24383e-05 1.03824e-07 0.00809322)
(-0.00812821 -2.31166e-07 0.276029)
(-0.0171334 -1.22236e-06 0.29225)
(-0.0295259 -9.47781e-07 0.299947)
(-0.0412673 -6.42843e-07 0.304503)
(-0.0531884 -1.53076e-07 0.307234)
(-0.0650189 -2.70297e-07 0.308794)
(-0.0767305 -2.71499e-07 0.309483)
(-0.088277 -1.47436e-08 0.309469)
(-0.0996323 9.64543e-08 0.308854)
(-0.110775 4.34307e-09 0.307705)
(-0.121688 -8.41844e-08 0.30607)
(-0.132357 -7.14519e-08 0.303984)
(-0.14277 -8.93615e-09 0.301474)
(-0.152915 3.24035e-08 0.298563)
(-0.162785 3.17781e-08 0.295272)
(-0.172371 8.03906e-09 0.291617)
(-0.181665 -1.3913e-08 0.287615)
(-0.190661 -2.2415e-08 0.283279)
(-0.199354 -1.92061e-08 0.278625)
(-0.207738 -1.13166e-08 0.273666)
(-0.21581 -4.45923e-09 0.268414)
(-0.223565 -8.40519e-10 0.262882)
(-0.231001 3.83852e-11 0.257082)
(-0.238113 -3.00175e-10 0.251027)
(-0.244901 -5.97013e-10 0.244729)
(-0.251361 -3.62614e-10 0.238199)
(-0.257492 2.45628e-10 0.231448)
(-0.263293 8.23404e-10 0.224489)
(-0.268762 1.07302e-09 0.217332)
(-0.2739 9.46005e-10 0.209988)
(-0.278706 5.82908e-10 0.202469)
(-0.28318 1.67313e-10 0.194785)
(-0.287322 -1.82722e-10 0.186948)
(-0.291133 -4.3446e-10 0.178969)
(-0.294614 -5.96881e-10 0.170858)
(-0.297765 -6.73683e-10 0.162626)
(-0.300589 -6.50642e-10 0.154284)
(-0.303086 -5.16867e-10 0.145842)
(-0.30526 -2.90698e-10 0.137313)
(-0.307111 -2.75676e-11 0.128705)
(-0.308643 1.98686e-10 0.120031)
(-0.309859 3.25897e-10 0.111301)
(-0.310761 3.28794e-10 0.102526)
(-0.311352 2.2561e-10 0.0937167)
(-0.311637 6.63155e-11 0.0848844)
(-0.311618 -8.9179e-11 0.0760398)
(-0.311301 -1.93527e-10 0.0671941)
(-0.310689 -2.23713e-10 0.0583581)
(-0.309788 -1.82997e-10 0.049543)
(-0.308601 -9.21439e-11 0.0407596)
(-0.307134 2.06465e-11 0.032019)
(-0.305394 1.30434e-10 0.0233321)
(-0.303384 2.20916e-10 0.0147098)
(-0.301112 2.85662e-10 0.00616284)
(-0.298584 3.25519e-10 -0.00229803)
(-0.295806 3.46407e-10 -0.0106621)
(-0.292785 3.55378e-10 -0.0189187)
(-0.289529 3.5917e-10 -0.0270575)
(-0.286045 3.62989e-10 -0.0350683)
(-0.28234 3.70856e-10 -0.0429412)
(-0.278423 3.85027e-10 -0.0506665)
(-0.274301 4.07142e-10 -0.0582347)
(-0.269984 4.36868e-10 -0.0656368)
(-0.26548 4.73229e-10 -0.072864)
(-0.260797 5.14202e-10 -0.079908)
(-0.255945 5.5748e-10 -0.0867608)
(-0.250932 6.00527e-10 -0.0934148)
(-0.245769 6.41214e-10 -0.099863)
(-0.240465 6.78005e-10 -0.106099)
(-0.235029 7.10234e-10 -0.112116)
(-0.22947 7.37517e-10 -0.117909)
(-0.2238 7.60597e-10 -0.123473)
(-0.218026 7.79961e-10 -0.128803)
(-0.212159 7.96378e-10 -0.133896)
(-0.20621 8.1031e-10 -0.138747)
(-0.200186 8.2255e-10 -0.143355)
(-0.194098 8.32945e-10 -0.147716)
(-0.187956 8.42034e-10 -0.15183)
(-0.181769 8.49304e-10 -0.155695)
(-0.175545 8.54755e-10 -0.15931)
(-0.169295 8.58182e-10 -0.162675)
(-0.163027 8.59329e-10 -0.165792)
(-0.156749 8.57992e-10 -0.16866)
(-0.150471 8.54221e-10 -0.171283)
(-0.1442 8.47888e-10 -0.17366)
(-0.137944 8.39276e-10 -0.175796)
(-0.131712 8.2864e-10 -0.177693)
(-0.12551 8.15828e-10 -0.179355)
(-0.119345 8.01248e-10 -0.180784)
(-0.113225 7.85157e-10 -0.181986)
(-0.107157 7.67376e-10 -0.182965)
(-0.101145 7.48238e-10 -0.183726)
(-0.0951972 7.28075e-10 -0.184274)
(-0.0893179 7.06556e-10 -0.184614)
(-0.0835128 6.83986e-10 -0.184751)
(-0.0777868 6.60418e-10 -0.184693)
(-0.0721447 6.36056e-10 -0.184444)
(-0.0665906 6.11131e-10 -0.184012)
(-0.0611287 5.85464e-10 -0.183401)
(-0.0557627 5.5954e-10 -0.18262)
(-0.050496 5.33566e-10 -0.181673)
(-0.0453317 5.07566e-10 -0.180568)
(-0.0402727 4.81771e-10 -0.179312)
(-0.0353216 4.56412e-10 -0.17791)
(-0.0304805 4.31821e-10 -0.17637)
(-0.0257516 4.07974e-10 -0.174698)
(-0.0211367 3.84921e-10 -0.1729)
(-0.0166372 3.62943e-10 -0.170982)
(-0.0122545 3.41837e-10 -0.168952)
(-0.00798962 3.21678e-10 -0.166815)
(-0.00384354 3.02749e-10 -0.164577)
(0.000183118 2.84998e-10 -0.162245)
(0.00408978 2.68425e-10 -0.159822)
(0.0078761 2.52979e-10 -0.157316)
(0.011542 2.38891e-10 -0.154732)
(0.0150873 2.25751e-10 -0.152073)
(0.0185124 2.13507e-10 -0.149347)
(0.0218173 2.02031e-10 -0.146556)
(0.0250026 1.914e-10 -0.143706)
(0.0280686 1.81256e-10 -0.140801)
(0.031016 1.71828e-10 -0.137845)
(0.0338454 1.6258e-10 -0.134841)
(0.0365575 1.53561e-10 -0.131793)
(0.0391531 1.44567e-10 -0.128704)
(0.041633 1.35495e-10 -0.125577)
(0.0439981 1.26039e-10 -0.122415)
(0.0462493 1.16222e-10 -0.11922)
(0.0483874 1.05917e-10 -0.115994)
(0.0504136 9.50987e-11 -0.112741)
(0.0523286 8.33818e-11 -0.10946)
(0.0541335 7.1202e-11 -0.106155)
(0.0558293 5.83543e-11 -0.102826)
(0.0574168 4.51972e-11 -0.099475)
(0.058897 3.16795e-11 -0.0961026)
(0.0602709 1.81854e-11 -0.0927098)
(0.0615393 5.12528e-12 -0.0892977)
(0.0627031 -7.70619e-12 -0.0858668)
(0.0637632 -1.94885e-11 -0.0824178)
(0.0647205 -3.08371e-11 -0.0789513)
(0.0655757 -4.20596e-11 -0.0754679)
(0.0663296 -5.34125e-11 -0.0719681)
(0.0669831 -6.61269e-11 -0.0684526)
(0.0675369 -8.1716e-11 -0.064922)
(0.0679917 -1.02001e-10 -0.061377)
(0.0683483 -1.29087e-10 -0.0578184)
(0.0686074 -1.65462e-10 -0.0542474)
(0.0687698 -2.13154e-10 -0.0506651)
(0.0688361 -2.74295e-10 -0.0470729)
(0.0688071 -3.50118e-10 -0.0434724)
(0.0686837 -4.41037e-10 -0.0398656)
(0.0684665 -5.45824e-10 -0.0362548)
(0.0681565 -6.62427e-10 -0.0326424)
(0.0677546 -7.86796e-10 -0.0290315)
(0.0672616 -9.1339e-10 -0.0254254)
(0.0666787 -1.03569e-09 -0.0218278)
(0.066007 -1.14656e-09 -0.0182429)
(0.0652477 -1.23907e-09 -0.0146753)
(0.064402 -1.30659e-09 -0.0111302)
(0.0634715 -1.34502e-09 -0.00761305)
(0.0624578 -1.35156e-09 -0.00413004)
(0.0613625 -1.32735e-09 -0.000687676)
(0.0601877 -1.27602e-09 0.00270703)
(0.0589353 -1.20465e-09 0.00604658)
(0.0576076 -1.12239e-09 0.00932301)
(0.0562072 -1.0396e-09 0.0125279)
(0.0547367 -9.66704e-10 0.0156525)
(0.0531991 -9.12088e-10 0.0186876)
(0.0515975 -8.81916e-10 0.0216235)
(0.0499354 -8.77579e-10 0.0244506)
(0.0482164 -8.95949e-10 0.0271587)
(0.0464447 -9.29322e-10 0.0297374)
(0.0446245 -9.65984e-10 0.0321765)
(0.0427602 -9.91596e-10 0.0344655)
(0.0408569 -9.91403e-10 0.0365939)
(0.0389197 -9.52242e-10 0.0385515)
(0.036954 -8.66187e-10 0.0403282)
(0.0349657 -7.31941e-10 0.041914)
(0.0329609 -5.57413e-10 0.0432997)
(0.0309459 -3.62387e-10 0.0444761)
(0.0289273 -1.76476e-10 0.045435)
(0.0269123 -3.96341e-11 0.0461684)
(0.024908 3.85547e-12 0.0466696)
(0.0229218 -8.74188e-11 0.0469321)
(0.0209615 -3.41246e-10 0.0469508)
(0.0190349 -7.60937e-10 0.0467213)
(0.0171503 -1.32151e-09 0.0462401)
(0.0153159 -1.97667e-09 0.0455049)
(0.01354 -2.68732e-09 0.0445139)
(0.0118313 -3.45565e-09 0.0432665)
(0.0101982 -4.32472e-09 0.0417624)
(0.00864964 -5.31937e-09 0.0400015)
(0.00719423 -6.34331e-09 0.0379834)
(0.00584088 -7.15741e-09 0.035706)
(0.00459862 -7.47813e-09 0.0331635)
(0.00347673 -7.00438e-09 0.0303434)
(0.00248503 -5.13053e-09 0.0272184)
(0.00163449 -1.06012e-09 0.0237297)
(0.000938456 5.24955e-09 0.0197408)
(0.000421426 2.03134e-08 0.0148816)
(9.24847e-05 1.03824e-07 0.0080927)
(-0.00754015 -1.79428e-06 0.288668)
(-0.0177 -1.32702e-06 0.304782)
(-0.0304866 -2.1131e-07 0.312619)
(-0.0426271 3.39462e-07 0.31718)
(-0.0548999 5.17413e-07 0.319865)
(-0.067027 7.94117e-08 0.321315)
(-0.0790193 -1.24827e-07 0.321847)
(-0.0908362 1.43993e-07 0.321643)
(-0.102453 2.85693e-07 0.320811)
(-0.113849 1.31631e-07 0.319425)
(-0.125006 -4.92419e-08 0.317536)
(-0.135909 -9.18797e-08 0.315181)
(-0.146545 -3.67504e-08 0.312391)
(-0.156903 2.19413e-08 0.30919)
(-0.166974 3.81587e-08 0.305598)
(-0.176749 1.95923e-08 0.301635)
(-0.186221 -6.76698e-09 0.297316)
(-0.195384 -2.22894e-08 0.292659)
(-0.204231 -2.36251e-08 0.287677)
(-0.212758 -1.65579e-08 0.282384)
(-0.220959 -8.10182e-09 0.276795)
(-0.228832 -2.31322e-09 0.270922)
(-0.236373 1.21371e-10 0.264778)
(-0.243578 4.22349e-10 0.258376)
(-0.250447 9.62233e-11 0.251729)
(-0.256976 2.28963e-11 0.244847)
(-0.263164 3.36378e-10 0.237744)
(-0.269009 7.59719e-10 0.23043)
(-0.274512 9.96202e-10 0.222919)
(-0.279671 9.36871e-10 0.21522)
(-0.284486 6.55687e-10 0.207346)
(-0.288958 2.91653e-10 0.199307)
(-0.293086 -5.35704e-11 0.191116)
(-0.296872 -3.4417e-10 0.182783)
(-0.300317 -5.751e-10 0.174319)
(-0.303421 -7.30699e-10 0.165737)
(-0.306187 -7.77928e-10 0.157045)
(-0.308616 -6.88312e-10 0.148257)
(-0.310711 -4.70217e-10 0.139382)
(-0.312474 -1.78252e-10 0.130433)
(-0.313907 1.04013e-10 0.121419)
(-0.315014 2.98369e-10 0.112353)
(-0.315799 3.62298e-10 0.103245)
(-0.316263 3.0078e-10 0.0941066)
(-0.316412 1.58446e-10 0.0849492)
(-0.31625 -2.92567e-12 0.075784)
(-0.31578 -1.27819e-10 0.0666221)
(-0.315008 -1.83633e-10 0.0574749)
(-0.313938 -1.64861e-10 0.0483538)
(-0.312575 -8.74243e-11 0.0392699)
(-0.310926 2.19179e-11 0.0302345)
(-0.308996 1.36459e-10 0.0212589)
(-0.306791 2.36592e-10 0.0123542)
(-0.304317 3.12273e-10 0.00353159)
(-0.301582 3.62375e-10 -0.00519799)
(-0.298591 3.91026e-10 -0.0138234)
(-0.295353 4.05222e-10 -0.0223338)
(-0.291875 4.11602e-10 -0.0307185)
(-0.288165 4.16162e-10 -0.038967)
(-0.284231 4.23284e-10 -0.0470691)
(-0.280081 4.36146e-10 -0.0550149)
(-0.275725 4.56157e-10 -0.0627946)
(-0.27117 4.83572e-10 -0.070399)
(-0.266427 5.17853e-10 -0.0778191)
(-0.261504 5.5713e-10 -0.0850464)
(-0.256411 5.98942e-10 -0.0920726)
(-0.251157 6.40983e-10 -0.0988901)
(-0.245753 6.81102e-10 -0.105492)
(-0.240208 7.17683e-10 -0.111871)
(-0.234532 7.49678e-10 -0.118021)
(-0.228735 7.76701e-10 -0.123936)
(-0.222828 7.99086e-10 -0.129612)
(-0.216821 8.17423e-10 -0.135044)
(-0.210723 8.32429e-10 -0.140228)
(-0.204545 8.44591e-10 -0.14516)
(-0.198297 8.54447e-10 -0.149838)
(-0.191989 8.62408e-10 -0.15426)
(-0.18563 8.68396e-10 -0.158423)
(-0.17923 8.72616e-10 -0.162328)
(-0.1728 8.74583e-10 -0.165974)
(-0.166347 8.74449e-10 -0.16936)
(-0.159882 8.71907e-10 -0.172488)
(-0.153413 8.66804e-10 -0.175359)
(-0.146949 8.59268e-10 -0.177974)
(-0.140499 8.49145e-10 -0.180337)
(-0.13407 8.36768e-10 -0.182449)
(-0.12767 8.21933e-10 -0.184315)
(-0.121307 8.05305e-10 -0.185937)
(-0.114988 7.86807e-10 -0.18732)
(-0.10872 7.66774e-10 -0.188468)
(-0.10251 7.45281e-10 -0.189386)
(-0.0963641 7.22559e-10 -0.19008)
(-0.0902878 6.98761e-10 -0.190555)
(-0.0842869 6.73991e-10 -0.190816)
(-0.0783668 6.48478e-10 -0.19087)
(-0.0725323 6.22172e-10 -0.190722)
(-0.066788 5.95405e-10 -0.190379)
(-0.0611383 5.68152e-10 -0.189849)
(-0.0555871 5.40668e-10 -0.189136)
(-0.0501379 5.13057e-10 -0.188248)
(-0.0447942 4.85548e-10 -0.187192)
(-0.0395588 4.58526e-10 -0.185975)
(-0.0344347 4.32094e-10 -0.184603)
(-0.029424 4.06148e-10 -0.183084)
(-0.0245291 3.81304e-10 -0.181423)
(-0.0197518 3.57459e-10 -0.179629)
(-0.0150937 3.3433e-10 -0.177708)
(-0.0105562 3.12637e-10 -0.175666)
(-0.00614049 2.91865e-10 -0.173509)
(-0.00184748 2.72579e-10 -0.171245)
(0.00232222 2.5442e-10 -0.16888)
(0.00636782 2.37644e-10 -0.166418)
(0.0102891 2.22379e-10 -0.163867)
(0.014086 2.08139e-10 -0.161232)
(0.0177584 1.9523e-10 -0.158519)
(0.0213066 1.83346e-10 -0.155732)
(0.0247308 1.7246e-10 -0.152877)
(0.0280315 1.62548e-10 -0.149958)
(0.0312092 1.53353e-10 -0.146981)
(0.0342645 1.45028e-10 -0.143949)
(0.0371982 1.37036e-10 -0.140866)
(0.040011 1.29606e-10 -0.137737)
(0.0427038 1.22382e-10 -0.134564)
(0.0452775 1.15336e-10 -0.131352)
(0.0477331 1.08109e-10 -0.128102)
(0.0500716 1.00806e-10 -0.124818)
(0.052294 9.30653e-11 -0.121503)
(0.0544013 8.50421e-11 -0.118158)
(0.0563946 7.64284e-11 -0.114786)
(0.0582749 6.73778e-11 -0.111388)
(0.0600434 5.76084e-11 -0.107966)
(0.061701 4.76582e-11 -0.104522)
(0.0632488 3.7322e-11 -0.101057)
(0.0646878 2.71125e-11 -0.097571)
(0.0660189 1.7132e-11 -0.094066)
(0.0672433 7.50877e-12 -0.0905426)
(0.0683617 -1.29588e-12 -0.0870014)
(0.0693751 -9.33316e-12 -0.083443)
(0.0702844 -1.69107e-11 -0.079868)
(0.0710904 -2.45156e-11 -0.076277)
(0.0717939 -3.29172e-11 -0.0726705)
(0.0723957 -4.35258e-11 -0.0690491)
(0.0728967 -5.80598e-11 -0.0654133)
(0.0732975 -7.86996e-11 -0.061764)
(0.0735988 -1.07498e-10 -0.0581019)
(0.0738014 -1.47046e-10 -0.0544281)
(0.073906 -1.99244e-10 -0.0507438)
(0.0739132 -2.66171e-10 -0.0470503)
(0.0738238 -3.47934e-10 -0.0433494)
(0.0736386 -4.44585e-10 -0.039643)
(0.0733581 -5.54178e-10 -0.0359334)
(0.0729834 -6.72867e-10 -0.0322232)
(0.0725151 -7.9614e-10 -0.0285155)
(0.0719542 -9.17377e-10 -0.0248135)
(0.0713016 -1.0296e-09 -0.0211212)
(0.0705583 -1.12546e-09 -0.0174427)
(0.0697256 -1.19825e-09 -0.013783)
(0.0688046 -1.24291e-09 -0.0101471)
(0.0677968 -1.25576e-09 -0.00654086)
(0.0667036 -1.23755e-09 -0.00297042)
(0.0655267 -1.19084e-09 0.000557459)
(0.0642679 -1.12215e-09 0.00403558)
(0.0629292 -1.0402e-09 0.00745628)
(0.061513 -9.5578e-10 0.0108114)
(0.0600215 -8.79457e-10 0.0140922)
(0.0584574 -8.20687e-10 0.0172898)
(0.0568237 -7.85994e-10 0.0203946)
(0.0551235 -7.77542e-10 0.0233968)
(0.0533603 -7.92665e-10 0.0262863)
(0.0515378 -8.23866e-10 0.0290527)
(0.0496599 -8.59024e-10 0.0316855)
(0.0477311 -8.83648e-10 0.0341739)
(0.045756 -8.83195e-10 0.0365071)
(0.0437395 -8.44606e-10 0.0386745)
(0.041687 -7.60111e-10 0.0406654)
(0.039604 -6.29444e-10 0.0424693)
(0.0374966 -4.61127e-10 0.0440761)
(0.0353709 -2.74428e-10 0.045476)
(0.0332337 -9.91064e-11 0.0466598)
(0.0310918 2.64863e-11 0.0476186)
(0.0289525 5.87452e-11 0.0483445)
(0.0268233 -4.35781e-11 0.0488302)
(0.024712 -3.12998e-10 0.0490692)
(0.0226266 -7.59667e-10 0.049056)
(0.0205755 -1.3638e-09 0.0487859)
(0.0185671 -2.07282e-09 0.0482555)
(0.0166101 -2.81398e-09 0.0474619)
(0.0147134 -3.525e-09 0.0464037)
(0.0128858 -4.18994e-09 0.0450797)
(0.0111366 -4.83978e-09 0.0434898)
(0.00947473 -5.48391e-09 0.0416338)
(0.00790953 -6.00361e-09 0.039511)
(0.00645032 -6.12607e-09 0.0371193)
(0.00510661 -5.55227e-09 0.0344528)
(0.00388818 -3.98234e-09 0.0314984)
(0.00280538 -7.64725e-10 0.0282281)
(0.00186977 5.12042e-09 0.0245817)
(0.00109537 1.44714e-08 0.0204197)
(0.000508927 3.50162e-08 0.0153671)
(0.000125116 1.40878e-07 0.00836956)
(-0.00753492 -1.79461e-06 0.28867)
(-0.0176993 -1.32731e-06 0.304783)
(-0.0304864 -2.11267e-07 0.312618)
(-0.0426257 3.39379e-07 0.317179)
(-0.0548998 5.17363e-07 0.319864)
(-0.0670274 7.94108e-08 0.321314)
(-0.0790191 -1.24828e-07 0.321847)
(-0.0908359 1.43994e-07 0.321642)
(-0.102453 2.85693e-07 0.320811)
(-0.113849 1.31631e-07 0.319425)
(-0.125006 -4.92418e-08 0.317536)
(-0.135909 -9.18795e-08 0.315181)
(-0.146545 -3.67503e-08 0.312391)
(-0.156903 2.19412e-08 0.30919)
(-0.166974 3.81586e-08 0.305598)
(-0.176749 1.95923e-08 0.301635)
(-0.186221 -6.76697e-09 0.297316)
(-0.195384 -2.22893e-08 0.292659)
(-0.204231 -2.36251e-08 0.287677)
(-0.212758 -1.65579e-08 0.282384)
(-0.220959 -8.10181e-09 0.276795)
(-0.228832 -2.31322e-09 0.270922)
(-0.236373 1.21371e-10 0.264778)
(-0.243578 4.22349e-10 0.258376)
(-0.250447 9.62233e-11 0.251729)
(-0.256976 2.28963e-11 0.244847)
(-0.263164 3.36378e-10 0.237744)
(-0.269009 7.59719e-10 0.23043)
(-0.274512 9.96202e-10 0.222919)
(-0.279671 9.36871e-10 0.21522)
(-0.284486 6.55687e-10 0.207346)
(-0.288958 2.91653e-10 0.199307)
(-0.293086 -5.35704e-11 0.191116)
(-0.296872 -3.4417e-10 0.182783)
(-0.300317 -5.751e-10 0.174319)
(-0.303421 -7.30699e-10 0.165737)
(-0.306187 -7.77928e-10 0.157045)
(-0.308616 -6.88312e-10 0.148257)
(-0.310711 -4.70217e-10 0.139382)
(-0.312474 -1.78252e-10 0.130433)
(-0.313907 1.04013e-10 0.121419)
(-0.315015 2.98369e-10 0.112353)
(-0.315799 3.62298e-10 0.103245)
(-0.316263 3.0078e-10 0.0941066)
(-0.316412 1.58446e-10 0.0849492)
(-0.31625 -2.92567e-12 0.075784)
(-0.31578 -1.27819e-10 0.0666221)
(-0.315008 -1.83633e-10 0.057475)
(-0.313938 -1.64861e-10 0.0483538)
(-0.312575 -8.74243e-11 0.0392699)
(-0.310926 2.19179e-11 0.0302345)
(-0.308996 1.36459e-10 0.0212589)
(-0.306791 2.36592e-10 0.0123542)
(-0.304317 3.12273e-10 0.00353161)
(-0.301582 3.62375e-10 -0.00519797)
(-0.298591 3.91025e-10 -0.0138234)
(-0.295353 4.05222e-10 -0.0223338)
(-0.291875 4.11601e-10 -0.0307184)
(-0.288165 4.16161e-10 -0.038967)
(-0.284231 4.23284e-10 -0.0470691)
(-0.280082 4.36146e-10 -0.0550148)
(-0.275725 4.56156e-10 -0.0627946)
(-0.271171 4.83571e-10 -0.070399)
(-0.266427 5.17853e-10 -0.0778191)
(-0.261504 5.57129e-10 -0.0850463)
(-0.256411 5.98941e-10 -0.0920725)
(-0.251157 6.40982e-10 -0.09889)
(-0.245753 6.81101e-10 -0.105492)
(-0.240208 7.17682e-10 -0.111871)
(-0.234532 7.49676e-10 -0.118021)
(-0.228736 7.76699e-10 -0.123936)
(-0.222828 7.99085e-10 -0.129612)
(-0.216821 8.17421e-10 -0.135044)
(-0.210723 8.32427e-10 -0.140228)
(-0.204545 8.44589e-10 -0.14516)
(-0.198297 8.54445e-10 -0.149838)
(-0.191989 8.62406e-10 -0.15426)
(-0.18563 8.68394e-10 -0.158423)
(-0.17923 8.72614e-10 -0.162328)
(-0.1728 8.7458e-10 -0.165974)
(-0.166347 8.74446e-10 -0.16936)
(-0.159882 8.71905e-10 -0.172488)
(-0.153413 8.66801e-10 -0.175359)
(-0.146949 8.59265e-10 -0.177974)
(-0.140499 8.49142e-10 -0.180337)
(-0.13407 8.36766e-10 -0.182449)
(-0.12767 8.2193e-10 -0.184315)
(-0.121307 8.05302e-10 -0.185937)
(-0.114988 7.86805e-10 -0.18732)
(-0.10872 7.66772e-10 -0.188468)
(-0.10251 7.45278e-10 -0.189386)
(-0.0963641 7.22556e-10 -0.19008)
(-0.0902878 6.98759e-10 -0.190555)
(-0.084287 6.73989e-10 -0.190816)
(-0.0783668 6.48476e-10 -0.19087)
(-0.0725323 6.2217e-10 -0.190722)
(-0.0667881 5.95403e-10 -0.190379)
(-0.0611384 5.6815e-10 -0.189849)
(-0.0555871 5.40666e-10 -0.189136)
(-0.050138 5.13055e-10 -0.188248)
(-0.0447942 4.85547e-10 -0.187192)
(-0.0395589 4.58525e-10 -0.185975)
(-0.0344347 4.32092e-10 -0.184603)
(-0.0294241 4.06147e-10 -0.183084)
(-0.0245292 3.81303e-10 -0.181423)
(-0.0197519 3.57457e-10 -0.179629)
(-0.0150938 3.34329e-10 -0.177708)
(-0.0105563 3.12636e-10 -0.175666)
(-0.00614054 2.91864e-10 -0.173509)
(-0.00184752 2.72578e-10 -0.171245)
(0.00232217 2.54419e-10 -0.16888)
(0.00636777 2.37643e-10 -0.166418)
(0.0102891 2.22378e-10 -0.163867)
(0.014086 2.08138e-10 -0.161232)
(0.0177584 1.95229e-10 -0.158519)
(0.0213066 1.83345e-10 -0.155732)
(0.0247308 1.7246e-10 -0.152877)
(0.0280315 1.62547e-10 -0.149958)
(0.0312091 1.53352e-10 -0.146981)
(0.0342645 1.45027e-10 -0.143949)
(0.0371981 1.37035e-10 -0.140866)
(0.0400109 1.29606e-10 -0.137737)
(0.0427037 1.22381e-10 -0.134564)
(0.0452775 1.15335e-10 -0.131352)
(0.0477331 1.08109e-10 -0.128102)
(0.0500715 1.00805e-10 -0.124818)
(0.0522939 9.3065e-11 -0.121503)
(0.0544012 8.50418e-11 -0.118158)
(0.0563945 7.64281e-11 -0.114786)
(0.0582749 6.73776e-11 -0.111388)
(0.0600433 5.76082e-11 -0.107966)
(0.061701 4.7658e-11 -0.104522)
(0.0632487 3.73219e-11 -0.101057)
(0.0646877 2.71124e-11 -0.097571)
(0.0660189 1.7132e-11 -0.094066)
(0.0672432 7.50875e-12 -0.0905426)
(0.0683616 -1.29588e-12 -0.0870014)
(0.069375 -9.33314e-12 -0.083443)
(0.0702843 -1.69106e-11 -0.0798681)
(0.0710903 -2.45155e-11 -0.076277)
(0.0717938 -3.29171e-11 -0.0726705)
(0.0723957 -4.35256e-11 -0.0690491)
(0.0728967 -5.80596e-11 -0.0654133)
(0.0732974 -7.86994e-11 -0.061764)
(0.0735988 -1.07498e-10 -0.0581019)
(0.0738014 -1.47046e-10 -0.0544281)
(0.0739059 -1.99243e-10 -0.0507438)
(0.0739132 -2.66171e-10 -0.0470503)
(0.0738238 -3.47933e-10 -0.0433494)
(0.0736385 -4.44583e-10 -0.039643)
(0.0733581 -5.54176e-10 -0.0359334)
(0.0729833 -6.72866e-10 -0.0322232)
(0.0725151 -7.96138e-10 -0.0285155)
(0.0719541 -9.17374e-10 -0.0248135)
(0.0713015 -1.0296e-09 -0.0211212)
(0.0705583 -1.12546e-09 -0.0174427)
(0.0697256 -1.19824e-09 -0.013783)
(0.0688046 -1.24291e-09 -0.0101471)
(0.0677967 -1.25575e-09 -0.00654086)
(0.0667035 -1.23754e-09 -0.00297042)
(0.0655266 -1.19084e-09 0.000557459)
(0.0642678 -1.12215e-09 0.00403558)
(0.0629292 -1.0402e-09 0.00745628)
(0.0615129 -9.55778e-10 0.0108114)
(0.0600214 -8.79455e-10 0.0140922)
(0.0584574 -8.20685e-10 0.0172898)
(0.0568237 -7.85992e-10 0.0203946)
(0.0551235 -7.77541e-10 0.0233968)
(0.0533603 -7.92663e-10 0.0262863)
(0.0515377 -8.23865e-10 0.0290527)
(0.0496599 -8.59022e-10 0.0316855)
(0.0477311 -8.83647e-10 0.0341739)
(0.045756 -8.83193e-10 0.0365072)
(0.0437395 -8.44604e-10 0.0386745)
(0.041687 -7.6011e-10 0.0406654)
(0.039604 -6.29443e-10 0.0424693)
(0.0374966 -4.61127e-10 0.0440761)
(0.0353709 -2.74428e-10 0.045476)
(0.0332337 -9.91063e-11 0.0466598)
(0.0310918 2.64862e-11 0.0476186)
(0.0289525 5.87451e-11 0.0483445)
(0.0268233 -4.35781e-11 0.0488302)
(0.024712 -3.12998e-10 0.0490692)
(0.0226266 -7.59666e-10 0.049056)
(0.0205755 -1.3638e-09 0.0487859)
(0.0185671 -2.07281e-09 0.0482555)
(0.0166101 -2.81397e-09 0.0474619)
(0.0147134 -3.52499e-09 0.0464037)
(0.0128858 -4.18993e-09 0.0450797)
(0.0111366 -4.83977e-09 0.0434898)
(0.00947472 -5.4839e-09 0.0416337)
(0.00790952 -6.00359e-09 0.039511)
(0.00645032 -6.12605e-09 0.0371192)
(0.0051066 -5.55226e-09 0.0344527)
(0.00388816 -3.98232e-09 0.0314983)
(0.00280536 -7.64722e-10 0.028228)
(0.00186975 5.12041e-09 0.0245815)
(0.00109535 1.44714e-08 0.0204195)
(0.000508936 3.50163e-08 0.0153667)
(0.000125142 1.40878e-07 0.00836901)
(-0.00799781 -9.69464e-07 0.301299)
(-0.018011 3.35457e-07 0.318168)
(-0.0313736 7.73444e-07 0.325905)
(-0.0439506 4.5719e-07 0.3303)
(-0.0566078 2.73751e-07 0.33285)
(-0.0690664 -1.65161e-07 0.334149)
(-0.0813588 -3.90049e-07 0.334506)
(-0.093457 -5.45977e-08 0.334098)
(-0.105341 2.34392e-07 0.33304)
(-0.116992 1.84795e-07 0.331406)
(-0.128393 1.72557e-08 0.329253)
(-0.139529 -6.2994e-08 0.326619)
(-0.150387 -4.14855e-08 0.323537)
(-0.160955 8.97046e-09 0.320033)
(-0.171224 3.31709e-08 0.316128)
(-0.181185 2.3002e-08 0.311844)
(-0.190831 -1.818e-09 0.307197)
(-0.200156 -2.09768e-08 0.302205)
(-0.209152 -2.65328e-08 0.296882)
(-0.217816 -2.139e-08 0.291243)
(-0.226142 -1.23602e-08 0.285304)
(-0.234126 -4.75346e-09 0.279077)
(-0.241767 -5.45936e-10 0.272576)
(-0.249059 8.29417e-10 0.265814)
(-0.256002 8.40329e-10 0.258804)
(-0.262593 6.39339e-10 0.251559)
(-0.268831 6.70798e-10 0.24409)
(-0.274714 8.64442e-10 0.23641)
(-0.280242 9.99115e-10 0.22853)
(-0.285414 9.47098e-10 0.220464)
(-0.290231 7.23375e-10 0.212222)
(-0.294693 4.12452e-10 0.203817)
(-0.298799 8.41108e-11 0.195259)
(-0.302552 -2.32372e-10 0.186561)
(-0.305952 -5.23668e-10 0.177733)
(-0.309 -7.57303e-10 0.168788)
(-0.3117 -8.80655e-10 0.159736)
(-0.314052 -8.4726e-10 0.150589)
(-0.316059 -6.52436e-10 0.141359)
(-0.317724 -3.46431e-10 0.132057)
(-0.31905 -1.83957e-11 0.122693)
(-0.320039 2.39836e-10 0.113281)
(-0.320696 3.68551e-10 0.10383)
(-0.321025 3.57633e-10 0.0943535)
(-0.321028 2.43405e-10 0.0848619)
(-0.320712 8.64331e-11 0.075367)
(-0.32008 -5.17731e-11 0.0658804)
(-0.319137 -1.29903e-10 0.0564138)
(-0.317889 -1.33507e-10 0.0469786)
(-0.316341 -7.22507e-11 0.0375865)
(-0.314499 2.97748e-11 0.0282491)
(-0.31237 1.45224e-10 0.0189779)
(-0.309959 2.52137e-10 0.00978434)
(-0.307274 3.37341e-10 0.000679909)
(-0.304321 3.96892e-10 -0.00832403)
(-0.301109 4.3361e-10 -0.0172161)
(-0.297644 4.5339e-10 -0.025985)
(-0.293935 4.63074e-10 -0.0346199)
(-0.289989 4.68991e-10 -0.04311)
(-0.285817 4.75958e-10 -0.0514448)
(-0.281426 4.87587e-10 -0.059614)
(-0.276826 5.05725e-10 -0.0676077)
(-0.272026 5.31009e-10 -0.0754164)
(-0.267035 5.62904e-10 -0.0830308)
(-0.261864 5.99844e-10 -0.0904423)
(-0.256522 6.39857e-10 -0.0976424)
(-0.25102 6.8033e-10 -0.104623)
(-0.245367 7.19368e-10 -0.111378)
(-0.239575 7.55048e-10 -0.117899)
(-0.233653 7.8627e-10 -0.12418)
(-0.227613 8.12599e-10 -0.130216)
(-0.221464 8.34008e-10 -0.136002)
(-0.215217 8.50959e-10 -0.141532)
(-0.208884 8.64093e-10 -0.146804)
(-0.202474 8.74051e-10 -0.151813)
(-0.195997 8.81216e-10 -0.156558)
(-0.189464 8.86025e-10 -0.161035)
(-0.182886 8.88733e-10 -0.165244)
(-0.176272 8.89188e-10 -0.169184)
(-0.169632 8.87414e-10 -0.172855)
(-0.162976 8.83387e-10 -0.176256)
(-0.156313 8.76799e-10 -0.17939)
(-0.149652 8.67521e-10 -0.182257)
(-0.143002 8.55862e-10 -0.184859)
(-0.136371 8.4154e-10 -0.1872)
(-0.129769 8.24862e-10 -0.189282)
(-0.123202 8.06186e-10 -0.191109)
(-0.116679 7.85488e-10 -0.192685)
(-0.110207 7.63253e-10 -0.194014)
(-0.103793 7.39355e-10 -0.195102)
(-0.0974433 7.14201e-10 -0.195953)
(-0.0911643 6.88075e-10 -0.196572)
(-0.084962 6.61054e-10 -0.196967)
(-0.0788419 6.33392e-10 -0.197142)
(-0.0728093 6.05218e-10 -0.197105)
(-0.066869 5.76687e-10 -0.196861)
(-0.0610257 5.47746e-10 -0.196418)
(-0.0552833 5.18651e-10 -0.195782)
(-0.0496458 4.89788e-10 -0.19496)
(-0.0441168 4.60899e-10 -0.19396)
(-0.0386993 4.32727e-10 -0.192788)
(-0.0333964 4.05042e-10 -0.191452)
(-0.0282105 3.78279e-10 -0.189959)
(-0.0231439 3.52285e-10 -0.188315)
(-0.0181986 3.27673e-10 -0.186529)
(-0.0133764 3.03882e-10 -0.184608)
(-0.0086787 2.81242e-10 -0.182557)
(-0.00410675 2.60089e-10 -0.180385)
(0.000338523 2.40113e-10 -0.178097)
(0.00465626 2.21802e-10 -0.175701)
(0.0088459 2.04746e-10 -0.173203)
(0.0129071 1.89277e-10 -0.170608)
(0.0168398 1.75294e-10 -0.167924)
(0.0206441 1.62515e-10 -0.165156)
(0.02432 1.50965e-10 -0.162309)
(0.0278679 1.40618e-10 -0.15939)
(0.0312884 1.31347e-10 -0.156403)
(0.0345819 1.23101e-10 -0.153353)
(0.0377493 1.15673e-10 -0.150244)
(0.0407912 1.09014e-10 -0.147082)
(0.0437086 1.03174e-10 -0.14387)
(0.0465024 9.76924e-11 -0.140613)
(0.0491736 9.25175e-11 -0.137313)
(0.0517233 8.75213e-11 -0.133974)
(0.0541525 8.26783e-11 -0.1306)
(0.0564624 7.76808e-11 -0.127192)
(0.0586542 7.24007e-11 -0.123754)
(0.0607289 6.68635e-11 -0.120287)
(0.0626878 6.08898e-11 -0.116794)
(0.064532 5.45563e-11 -0.113277)
(0.0662626 4.77093e-11 -0.109738)
(0.0678809 4.08098e-11 -0.106176)
(0.0693878 3.36785e-11 -0.102595)
(0.0707846 2.6879e-11 -0.0989947)
(0.0720722 2.06164e-11 -0.0953761)
(0.0732517 1.49164e-11 -0.09174)
(0.074324 1.00352e-11 -0.0880871)
(0.0752901 5.81913e-12 -0.0844181)
(0.0761509 1.88369e-12 -0.0807334)
(0.0769073 -2.36074e-12 -0.0770335)
(0.0775601 -8.09351e-12 -0.073319)
(0.0781101 -1.70326e-11 -0.0695904)
(0.0785581 -3.08194e-11 -0.0658482)
(0.0789048 -5.20443e-11 -0.0620933)
(0.0791509 -8.29648e-11 -0.0583264)
(0.079297 -1.25942e-10 -0.0545485)
(0.0793439 -1.82824e-10 -0.0507608)
(0.0792921 -2.54946e-10 -0.0469648)
(0.0791425 -3.42133e-10 -0.043162)
(0.0788955 -4.43103e-10 -0.0393545)
(0.078552 -5.54988e-10 -0.0355446)
(0.0781125 -6.73301e-10 -0.0317349)
(0.077578 -7.9209e-10 -0.0279286)
(0.0769491 -9.04585e-10 -0.0241289)
(0.0762268 -1.00309e-09 -0.02034)
(0.075412 -1.08072e-09 -0.0165661)
(0.0745057 -1.13142e-09 -0.0128121)
(0.0735091 -1.15164e-09 -0.00908331)
(0.0724234 -1.14009e-09 -0.00538564)
(0.0712502 -1.09929e-09 -0.00172546)
(0.0699909 -1.03425e-09 0.00189037)
(0.0686473 -9.53751e-10 0.00545445)
(0.0672214 -8.68774e-10 0.00895888)
(0.0657152 -7.89688e-10 0.0123953)
(0.0641311 -7.26508e-10 0.0157548)
(0.0624717 -6.86784e-10 0.0190281)
(0.0607399 -6.73551e-10 0.0222054)
(0.0589388 -6.8476e-10 0.0252766)
(0.0570718 -7.1343e-10 0.0282314)
(0.0551426 -7.47237e-10 0.031059)
(0.0531554 -7.71542e-10 0.0337486)
(0.0511143 -7.71341e-10 0.036289)
(0.0490243 -7.33476e-10 0.0386692)
(0.0468902 -6.51054e-10 0.040878)
(0.0447175 -5.24219e-10 0.0429045)
(0.042512 -3.63291e-10 0.0447379)
(0.0402797 -1.88046e-10 0.0463677)
(0.0380272 -2.82398e-11 0.0477837)
(0.0357612 7.87106e-11 0.0489764)
(0.033489 9.15741e-11 0.0499365)
(0.031218 -2.93982e-11 0.0506559)
(0.028956 -3.14453e-10 0.0511268)
(0.0267112 -7.76669e-10 0.0513426)
(0.024492 -1.40167e-09 0.0512974)
(0.0223071 -2.14033e-09 0.0509864)
(0.0201652 -2.91198e-09 0.0504057)
(0.0180756 -3.61875e-09 0.0495526)
(0.0160475 -4.17973e-09 0.0484252)
(0.0140902 -4.5665e-09 0.0470225)
(0.0122134 -4.80115e-09 0.0453441)
(0.0104266 -4.88423e-09 0.0433896)
(0.0087395 -4.67801e-09 0.0411585)
(0.00716198 -3.88711e-09 0.0386483)
(0.00570401 -2.20228e-09 0.035853)
(0.00437591 6.65563e-10 0.032759)
(0.00318858 5.41447e-09 0.0293375)
(0.0021542 1.33095e-08 0.0255268)
(0.00128746 2.60161e-08 0.0211841)
(0.000617652 5.21287e-08 0.0159291)
(0.000166729 1.78999e-07 0.00871103)
(-0.00799092 -9.69534e-07 0.301306)
(-0.0180105 3.35433e-07 0.318168)
(-0.031375 7.73142e-07 0.325901)
(-0.0439506 4.57029e-07 0.330296)
(-0.0566078 2.73711e-07 0.332847)
(-0.0690665 -1.65157e-07 0.334148)
(-0.0813585 -3.90051e-07 0.334505)
(-0.0934565 -5.45979e-08 0.334098)
(-0.105341 2.34392e-07 0.333039)
(-0.116993 1.84795e-07 0.331406)
(-0.128394 1.72557e-08 0.329253)
(-0.139529 -6.29939e-08 0.326619)
(-0.150387 -4.14854e-08 0.323537)
(-0.160955 8.97045e-09 0.320033)
(-0.171224 3.31709e-08 0.316128)
(-0.181185 2.3002e-08 0.311844)
(-0.190831 -1.818e-09 0.307197)
(-0.200156 -2.09768e-08 0.302205)
(-0.209152 -2.65328e-08 0.296882)
(-0.217816 -2.13899e-08 0.291244)
(-0.226142 -1.23602e-08 0.285304)
(-0.234126 -4.75346e-09 0.279077)
(-0.241767 -5.45935e-10 0.272576)
(-0.249059 8.29416e-10 0.265814)
(-0.256002 8.40329e-10 0.258804)
(-0.262593 6.39339e-10 0.251559)
(-0.268831 6.70798e-10 0.24409)
(-0.274714 8.64442e-10 0.23641)
(-0.280242 9.99115e-10 0.228531)
(-0.285414 9.47098e-10 0.220464)
(-0.290231 7.23375e-10 0.212222)
(-0.294693 4.12452e-10 0.203817)
(-0.298799 8.41108e-11 0.195259)
(-0.302552 -2.32372e-10 0.186561)
(-0.305952 -5.23669e-10 0.177733)
(-0.309001 -7.57303e-10 0.168788)
(-0.3117 -8.80655e-10 0.159736)
(-0.314052 -8.4726e-10 0.150589)
(-0.316059 -6.52436e-10 0.141359)
(-0.317724 -3.46431e-10 0.132057)
(-0.31905 -1.83957e-11 0.122693)
(-0.320039 2.39836e-10 0.113281)
(-0.320696 3.68551e-10 0.10383)
(-0.321025 3.57633e-10 0.0943536)
(-0.321028 2.43405e-10 0.0848619)
(-0.320712 8.64331e-11 0.075367)
(-0.32008 -5.17731e-11 0.0658805)
(-0.319137 -1.29903e-10 0.0564138)
(-0.317889 -1.33507e-10 0.0469786)
(-0.316341 -7.22507e-11 0.0375865)
(-0.3145 2.97748e-11 0.0282491)
(-0.31237 1.45224e-10 0.0189779)
(-0.309959 2.52136e-10 0.00978436)
(-0.307274 3.37341e-10 0.000679935)
(-0.304321 3.96892e-10 -0.00832401)
(-0.301109 4.3361e-10 -0.017216)
(-0.297644 4.5339e-10 -0.025985)
(-0.293935 4.63073e-10 -0.0346199)
(-0.289989 4.6899e-10 -0.04311)
(-0.285817 4.75957e-10 -0.0514447)
(-0.281426 4.87587e-10 -0.0596139)
(-0.276826 5.05724e-10 -0.0676077)
(-0.272026 5.31009e-10 -0.0754163)
(-0.267035 5.62903e-10 -0.0830308)
(-0.261864 5.99843e-10 -0.0904422)
(-0.256522 6.39856e-10 -0.0976424)
(-0.25102 6.80329e-10 -0.104623)
(-0.245367 7.19367e-10 -0.111378)
(-0.239575 7.55047e-10 -0.117899)
(-0.233653 7.86269e-10 -0.12418)
(-0.227613 8.12597e-10 -0.130216)
(-0.221464 8.34006e-10 -0.136002)
(-0.215218 8.50957e-10 -0.141532)
(-0.208884 8.64091e-10 -0.146804)
(-0.202474 8.74049e-10 -0.151813)
(-0.195997 8.81214e-10 -0.156557)
(-0.189464 8.86023e-10 -0.161035)
(-0.182886 8.88731e-10 -0.165244)
(-0.176272 8.89186e-10 -0.169184)
(-0.169632 8.87412e-10 -0.172855)
(-0.162976 8.83385e-10 -0.176256)
(-0.156313 8.76796e-10 -0.17939)
(-0.149652 8.67519e-10 -0.182257)
(-0.143002 8.5586e-10 -0.184859)
(-0.136371 8.41538e-10 -0.1872)
(-0.129769 8.24859e-10 -0.189282)
(-0.123202 8.06184e-10 -0.191109)
(-0.116679 7.85486e-10 -0.192685)
(-0.110207 7.63251e-10 -0.194014)
(-0.103793 7.39352e-10 -0.195102)
(-0.0974434 7.14199e-10 -0.195953)
(-0.0911644 6.88073e-10 -0.196572)
(-0.0849621 6.61052e-10 -0.196967)
(-0.078842 6.3339e-10 -0.197142)
(-0.0728094 6.05216e-10 -0.197105)
(-0.0668691 5.76685e-10 -0.196861)
(-0.0610257 5.47744e-10 -0.196418)
(-0.0552833 5.1865e-10 -0.195782)
(-0.0496459 4.89786e-10 -0.19496)
(-0.0441168 4.60897e-10 -0.19396)
(-0.0386994 4.32725e-10 -0.192788)
(-0.0333964 4.05041e-10 -0.191452)
(-0.0282105 3.78278e-10 -0.189959)
(-0.0231439 3.52284e-10 -0.188315)
(-0.0181987 3.27672e-10 -0.186529)
(-0.0133765 3.03881e-10 -0.184608)
(-0.00867875 2.81242e-10 -0.182557)
(-0.00410679 2.60088e-10 -0.180385)
(0.000338476 2.40112e-10 -0.178097)
(0.00465621 2.21801e-10 -0.175701)
(0.00884585 2.04745e-10 -0.173203)
(0.0129071 1.89277e-10 -0.170608)
(0.0168398 1.75294e-10 -0.167924)
(0.020644 1.62514e-10 -0.165156)
(0.0243199 1.50964e-10 -0.162309)
(0.0278679 1.40618e-10 -0.15939)
(0.0312883 1.31347e-10 -0.156403)
(0.0345819 1.231e-10 -0.153353)
(0.0377492 1.15673e-10 -0.150244)
(0.0407912 1.09014e-10 -0.147082)
(0.0437086 1.03174e-10 -0.14387)
(0.0465024 9.76921e-11 -0.140613)
(0.0491736 9.25172e-11 -0.137313)
(0.0517232 8.75211e-11 -0.133974)
(0.0541525 8.2678e-11 -0.1306)
(0.0564624 7.76805e-11 -0.127192)
(0.0586541 7.24004e-11 -0.123754)
(0.0607289 6.68633e-11 -0.120287)
(0.0626877 6.08896e-11 -0.116794)
(0.0645319 5.45562e-11 -0.113277)
(0.0662626 4.77091e-11 -0.109738)
(0.0678808 4.08097e-11 -0.106177)
(0.0693878 3.36784e-11 -0.102595)
(0.0707846 2.68789e-11 -0.0989947)
(0.0720721 2.06164e-11 -0.0953761)
(0.0732516 1.49163e-11 -0.09174)
(0.0743239 1.00352e-11 -0.0880871)
(0.07529 5.81912e-12 -0.0844181)
(0.0761509 1.88369e-12 -0.0807334)
(0.0769073 -2.36073e-12 -0.0770335)
(0.0775601 -8.09349e-12 -0.073319)
(0.0781101 -1.70325e-11 -0.0695904)
(0.0785581 -3.08193e-11 -0.0658482)
(0.0789048 -5.20441e-11 -0.0620933)
(0.0791508 -8.29646e-11 -0.0583264)
(0.079297 -1.25942e-10 -0.0545485)
(0.0793438 -1.82823e-10 -0.0507608)
(0.0792921 -2.54946e-10 -0.0469648)
(0.0791424 -3.42132e-10 -0.043162)
(0.0788955 -4.43102e-10 -0.0393545)
(0.0785519 -5.54987e-10 -0.0355446)
(0.0781125 -6.73299e-10 -0.0317349)
(0.077578 -7.92088e-10 -0.0279286)
(0.0769491 -9.04583e-10 -0.0241289)
(0.0762268 -1.00308e-09 -0.02034)
(0.0754119 -1.08071e-09 -0.0165661)
(0.0745056 -1.13141e-09 -0.0128121)
(0.073509 -1.15163e-09 -0.00908332)
(0.0724234 -1.14009e-09 -0.00538565)
(0.0712502 -1.09929e-09 -0.00172546)
(0.0699909 -1.03425e-09 0.00189037)
(0.0686473 -9.53749e-10 0.00545445)
(0.0672214 -8.68772e-10 0.00895889)
(0.0657152 -7.89686e-10 0.0123953)
(0.0641311 -7.26506e-10 0.0157548)
(0.0624717 -6.86782e-10 0.0190281)
(0.0607399 -6.73549e-10 0.0222054)
(0.0589388 -6.84758e-10 0.0252766)
(0.0570718 -7.13429e-10 0.0282314)
(0.0551426 -7.47236e-10 0.0310591)
(0.0531553 -7.71541e-10 0.0337486)
(0.0511143 -7.7134e-10 0.036289)
(0.0490243 -7.33475e-10 0.0386692)
(0.0468902 -6.51053e-10 0.040878)
(0.0447175 -5.24218e-10 0.0429045)
(0.042512 -3.6329e-10 0.0447379)
(0.0402797 -1.88046e-10 0.0463677)
(0.0380272 -2.82398e-11 0.0477837)
(0.0357612 7.87105e-11 0.0489764)
(0.033489 9.1574e-11 0.0499365)
(0.031218 -2.93982e-11 0.0506559)
(0.028956 -3.14452e-10 0.0511268)
(0.0267112 -7.76668e-10 0.0513426)
(0.024492 -1.40167e-09 0.0512974)
(0.0223071 -2.14033e-09 0.0509864)
(0.0201652 -2.91197e-09 0.0504057)
(0.0180756 -3.61874e-09 0.0495526)
(0.0160475 -4.17972e-09 0.0484252)
(0.0140902 -4.56649e-09 0.0470225)
(0.0122134 -4.80114e-09 0.045344)
(0.0104266 -4.88422e-09 0.0433896)
(0.0087395 -4.678e-09 0.0411584)
(0.00716197 -3.8871e-09 0.0386482)
(0.005704 -2.20228e-09 0.0358529)
(0.0043759 6.6556e-10 0.0327589)
(0.00318856 5.41445e-09 0.0293374)
(0.00215419 1.33095e-08 0.0255266)
(0.00128745 2.60161e-08 0.0211839)
(0.000617658 5.21288e-08 0.0159287)
(0.000166733 1.78999e-07 0.00871045)
(-0.0100042 3.44169e-06 0.31462)
(-0.0184336 -7.31431e-07 0.331129)
(-0.032405 -8.83036e-07 0.339337)
(-0.0453362 -9.1498e-07 0.343766)
(-0.0583321 -4.37651e-07 0.346193)
(-0.0711215 -5.66963e-07 0.347323)
(-0.0837262 -5.8202e-07 0.34748)
(-0.0961172 -2.64731e-07 0.34685)
(-0.108277 2.72592e-08 0.345548)
(-0.120188 9.21e-08 0.343653)
(-0.131835 3.47625e-08 0.341222)
(-0.143204 -1.23584e-08 0.338296)
(-0.154281 -1.00442e-08 0.334909)
(-0.165057 1.65879e-08 0.331089)
(-0.175521 3.24354e-08 0.32686)
(-0.185665 2.4314e-08 0.322241)
(-0.195481 1.81587e-09 0.317253)
(-0.204962 -1.87432e-08 0.311912)
(-0.214102 -2.77537e-08 0.306235)
(-0.222897 -2.52578e-08 0.300238)
(-0.231342 -1.67803e-08 0.293935)
(-0.239432 -8.05595e-09 0.287341)
(-0.247165 -2.15349e-09 0.280469)
(-0.254538 6.19818e-10 0.273334)
(-0.261548 1.38008e-09 0.265948)
(-0.268194 1.34664e-09 0.258325)
(-0.274474 1.2176e-09 0.250478)
(-0.280386 1.17209e-09 0.242418)
(-0.285932 1.13784e-09 0.234159)
(-0.291109 1.0251e-09 0.225712)
(-0.295919 8.16246e-10 0.217091)
(-0.300362 5.41706e-10 0.208306)
(-0.304437 2.30858e-10 0.199369)
(-0.308148 -1.04454e-10 0.190293)
(-0.311494 -4.47979e-10 0.18109)
(-0.314478 -7.55146e-10 0.17177)
(-0.317101 -9.55962e-10 0.162347)
(-0.319366 -9.86463e-10 0.152831)
(-0.321276 -8.27643e-10 0.143234)
(-0.322833 -5.22517e-10 0.133568)
(-0.324041 -1.61277e-10 0.123844)
(-0.324902 1.53461e-10 0.114075)
(-0.325422 3.46435e-10 0.104272)
(-0.325604 3.92102e-10 0.0944471)
(-0.325452 3.15531e-10 0.0846119)
(-0.324971 1.73644e-10 0.0747783)
(-0.324166 3.03274e-11 0.0649583)
(-0.323043 -6.50918e-11 0.0551638)
(-0.321606 -8.97597e-11 0.0454066)
(-0.319862 -4.6268e-11 0.0356988)
(-0.317817 4.53168e-11 0.026052)
(-0.315478 1.58267e-10 0.0164784)
(-0.312852 2.68857e-10 0.00698952)
(-0.309945 3.61456e-10 -0.00240279)
(-0.306765 4.29429e-10 -0.0116867)
(-0.30332 4.73829e-10 -0.0208504)
(-0.299618 4.99448e-10 -0.0298826)
(-0.295668 5.12845e-10 -0.0387719)
(-0.291478 5.20656e-10 -0.0475073)
(-0.287058 5.28031e-10 -0.0560779)
(-0.282417 5.38763e-10 -0.0644732)
(-0.277564 5.55206e-10 -0.0726831)
(-0.272509 5.78387e-10 -0.0806977)
(-0.267263 6.07741e-10 -0.0885077)
(-0.261836 6.4232e-10 -0.096104)
(-0.256238 6.79895e-10 -0.103478)
(-0.25048 7.18391e-10 -0.110622)
(-0.244573 7.55631e-10 -0.117528)
(-0.238527 7.89872e-10 -0.12419)
(-0.232353 8.19656e-10 -0.130601)
(-0.226063 8.44547e-10 -0.136755)
(-0.219667 8.64442e-10 -0.142647)
(-0.213177 8.79675e-10 -0.148273)
(-0.206603 8.9058e-10 -0.153629)
(-0.199957 8.97796e-10 -0.158711)
(-0.193249 9.01912e-10 -0.163517)
(-0.186489 9.03212e-10 -0.168046)
(-0.179689 9.02027e-10 -0.172295)
(-0.172859 8.98486e-10 -0.176264)
(-0.166008 8.92487e-10 -0.179954)
(-0.159147 8.83978e-10 -0.183365)
(-0.152285 8.73062e-10 -0.186497)
(-0.145432 8.59509e-10 -0.189354)
(-0.138596 8.43421e-10 -0.191937)
(-0.131786 8.24951e-10 -0.194249)
(-0.125012 8.04152e-10 -0.196294)
(-0.11828 7.81432e-10 -0.198075)
(-0.111599 7.56843e-10 -0.199598)
(-0.104975 7.30668e-10 -0.200866)
(-0.0984169 7.03314e-10 -0.201885)
(-0.09193 6.7486e-10 -0.202661)
(-0.085521 6.45664e-10 -0.2032)
(-0.0791956 6.15879e-10 -0.203507)
(-0.0729595 5.85711e-10 -0.203589)
(-0.0668178 5.55312e-10 -0.203453)
(-0.0607754 5.24684e-10 -0.203106)
(-0.0548365 4.94261e-10 -0.202555)
(-0.0490053 4.6394e-10 -0.201807)
(-0.0432856 4.3408e-10 -0.20087)
(-0.0376806 4.04682e-10 -0.19975)
(-0.0321935 3.76052e-10 -0.198456)
(-0.026827 3.48498e-10 -0.196995)
(-0.0215835 3.21841e-10 -0.195374)
(-0.0164651 2.95951e-10 -0.193601)
(-0.0114737 2.71547e-10 -0.191684)
(-0.00661073 2.48193e-10 -0.189629)
(-0.0018776 2.26426e-10 -0.187444)
(0.00272478 2.06145e-10 -0.185136)
(0.00719535 1.87272e-10 -0.182712)
(0.0115337 1.70243e-10 -0.180179)
(0.0157394 1.54444e-10 -0.177543)
(0.0198125 1.40487e-10 -0.174811)
(0.0237528 1.27684e-10 -0.171989)
(0.0275607 1.16468e-10 -0.169084)
(0.0312365 1.06557e-10 -0.1661)
(0.0347808 9.78507e-11 -0.163044)
(0.0381942 9.04756e-11 -0.159921)
(0.0414774 8.4304e-11 -0.156736)
(0.0446313 7.88749e-11 -0.153494)
(0.0476569 7.44443e-11 -0.150199)
(0.0505551 7.08331e-11 -0.146855)
(0.0533272 6.77081e-11 -0.143466)
(0.0559742 6.49926e-11 -0.140036)
(0.0584974 6.24558e-11 -0.136569)
(0.0608979 6.02516e-11 -0.133067)
(0.0631771 5.79187e-11 -0.129533)
(0.0653361 5.54315e-11 -0.12597)
(0.0673764 5.26361e-11 -0.12238)
(0.0692991 4.95325e-11 -0.118765)
(0.0711055 4.62231e-11 -0.115127)
(0.0727968 4.25285e-11 -0.111468)
(0.0743743 3.88073e-11 -0.107788)
(0.0758392 3.52389e-11 -0.104089)
(0.0771926 3.20282e-11 -0.100373)
(0.0784356 2.94828e-11 -0.0966391)
(0.0795694 2.76027e-11 -0.0928891)
(0.0805949 2.65161e-11 -0.0891234)
(0.0815131 2.60179e-11 -0.0853424)
(0.082325 2.56726e-11 -0.0815468)
(0.0830314 2.43778e-11 -0.0777369)
(0.0836332 2.08775e-11 -0.0739133)
(0.0841311 1.31462e-11 -0.0700763)
(0.084526 -6.88127e-13 -0.0662267)
(0.0848185 -2.30106e-11 -0.062365)
(0.0850093 -5.65915e-11 -0.058492)
(0.0850991 -1.03253e-10 -0.0546088)
(0.0850884 -1.64766e-10 -0.0507164)
(0.0849779 -2.41442e-10 -0.0468164)
(0.0847682 -3.32718e-10 -0.0429103)
(0.0844598 -4.36238e-10 -0.0390002)
(0.0840533 -5.48234e-10 -0.0350884)
(0.0835495 -6.63066e-10 -0.0311776)
(0.0829489 -7.74245e-10 -0.0272709)
(0.0822522 -8.74357e-10 -0.0233718)
(0.0814603 -9.56013e-10 -0.0194843)
(0.0805739 -1.01269e-09 -0.0156128)
(0.079594 -1.04013e-09 -0.0117624)
(0.0785217 -1.03587e-09 -0.00793844)
(0.077358 -1.00168e-09 -0.00414697)
(0.0761044 -9.41882e-10 -0.000394537)
(0.0747622 -8.63957e-10 0.00331184)
(0.0733331 -7.78631e-10 0.00696458)
(0.0718189 -6.96886e-10 0.0105556)
(0.0702216 -6.29245e-10 0.0140762)
(0.0685435 -5.83927e-10 0.0175173)
(0.0667872 -5.65144e-10 0.0208693)
(0.0649553 -5.71722e-10 0.0241223)
(0.0630511 -5.97247e-10 0.0272657)
(0.0610778 -6.29858e-10 0.030289)
(0.0590392 -6.54459e-10 0.0331809)
(0.0569393 -6.55279e-10 0.0359304)
(0.0547824 -6.19524e-10 0.0385259)
(0.0525734 -5.39172e-10 0.040956)
(0.0503173 -4.1596e-10 0.0432093)
(0.0480197 -2.61027e-10 0.0452743)
(0.0456863 -9.62021e-11 0.0471398)
(0.0433235 4.71744e-11 0.0487951)
(0.0409379 1.32462e-10 0.0502295)
(0.0385366 1.19981e-10 0.0514331)
(0.0361269 -2.65155e-11 0.0523964)
(0.0337166 -3.33465e-10 0.0531107)
(0.0313139 -8.11066e-10 0.053568)
(0.0289271 -1.44495e-09 0.0537614)
(0.026565 -2.19031e-09 0.0536846)
(0.0242367 -2.9682e-09 0.0533326)
(0.0219515 -3.67281e-09 0.0527014)
(0.0197188 -4.18825e-09 0.0517879)
(0.0175484 -4.42343e-09 0.0505901)
(0.0154502 -4.34563e-09 0.0491068)
(0.013434 -3.97469e-09 0.0473376)
(0.0115101 -3.30657e-09 0.0452819)
(0.00968864 -2.19534e-09 0.0429391)
(0.00797991 -3.32094e-10 0.0403066)
(0.00639443 2.591e-09 0.0373781)
(0.00494306 6.84639e-09 0.0341395)
(0.00363727 1.31632e-08 0.0305613)
(0.0024899 2.30491e-08 0.0265799)
(0.00151632 3.89882e-08 0.0220494)
(0.000748579 6.95755e-08 0.0165832)
(0.00021772 2.09514e-07 0.00913258)
(-0.0100028 3.44116e-06 0.314622)
(-0.0184362 -7.30863e-07 0.331125)
(-0.0324062 -8.82427e-07 0.339332)
(-0.0453349 -9.14527e-07 0.343762)
(-0.058331 -4.3756e-07 0.346192)
(-0.0711213 -5.66934e-07 0.347322)
(-0.0837261 -5.82018e-07 0.347479)
(-0.0961169 -2.64732e-07 0.346849)
(-0.108277 2.72593e-08 0.345548)
(-0.120188 9.20999e-08 0.343653)
(-0.131835 3.47624e-08 0.341222)
(-0.143204 -1.23584e-08 0.338296)
(-0.154281 -1.00442e-08 0.334909)
(-0.165057 1.65879e-08 0.331089)
(-0.175521 3.24353e-08 0.32686)
(-0.185665 2.4314e-08 0.322241)
(-0.195481 1.81586e-09 0.317253)
(-0.204962 -1.87431e-08 0.311912)
(-0.214102 -2.77536e-08 0.306235)
(-0.222897 -2.52577e-08 0.300238)
(-0.231342 -1.67803e-08 0.293935)
(-0.239432 -8.05594e-09 0.287341)
(-0.247165 -2.15349e-09 0.280469)
(-0.254538 6.19818e-10 0.273334)
(-0.261548 1.38008e-09 0.265948)
(-0.268194 1.34664e-09 0.258325)
(-0.274474 1.2176e-09 0.250478)
(-0.280387 1.17209e-09 0.242418)
(-0.285932 1.13784e-09 0.234159)
(-0.291109 1.0251e-09 0.225712)
(-0.295919 8.16247e-10 0.217091)
(-0.300362 5.41706e-10 0.208306)
(-0.304437 2.30858e-10 0.199369)
(-0.308148 -1.04454e-10 0.190293)
(-0.311494 -4.47979e-10 0.18109)
(-0.314478 -7.55146e-10 0.17177)
(-0.317101 -9.55962e-10 0.162347)
(-0.319366 -9.86464e-10 0.152831)
(-0.321276 -8.27643e-10 0.143234)
(-0.322833 -5.22517e-10 0.133568)
(-0.324041 -1.61277e-10 0.123844)
(-0.324903 1.53462e-10 0.114075)
(-0.325422 3.46435e-10 0.104272)
(-0.325604 3.92102e-10 0.0944471)
(-0.325452 3.15531e-10 0.0846119)
(-0.324971 1.73644e-10 0.0747784)
(-0.324166 3.03274e-11 0.0649584)
(-0.323043 -6.50918e-11 0.0551638)
(-0.321606 -8.97597e-11 0.0454067)
(-0.319862 -4.62679e-11 0.0356988)
(-0.317818 4.53168e-11 0.0260521)
(-0.315478 1.58267e-10 0.0164784)
(-0.312852 2.68857e-10 0.00698954)
(-0.309945 3.61456e-10 -0.00240276)
(-0.306765 4.29429e-10 -0.0116866)
(-0.30332 4.73829e-10 -0.0208504)
(-0.299618 4.99447e-10 -0.0298826)
(-0.295668 5.12844e-10 -0.0387719)
(-0.291478 5.20656e-10 -0.0475072)
(-0.287058 5.28031e-10 -0.0560778)
(-0.282417 5.38762e-10 -0.0644732)
(-0.277564 5.55206e-10 -0.0726831)
(-0.272509 5.78386e-10 -0.0806977)
(-0.267264 6.0774e-10 -0.0885077)
(-0.261836 6.42319e-10 -0.096104)
(-0.256238 6.79894e-10 -0.103478)
(-0.25048 7.1839e-10 -0.110622)
(-0.244573 7.55629e-10 -0.117528)
(-0.238527 7.89871e-10 -0.12419)
(-0.232353 8.19655e-10 -0.130601)
(-0.226063 8.44545e-10 -0.136755)
(-0.219667 8.64441e-10 -0.142647)
(-0.213177 8.79674e-10 -0.148273)
(-0.206603 8.90578e-10 -0.153629)
(-0.199957 8.97794e-10 -0.158711)
(-0.193249 9.0191e-10 -0.163517)
(-0.186489 9.03209e-10 -0.168046)
(-0.179689 9.02025e-10 -0.172295)
(-0.172859 8.98484e-10 -0.176264)
(-0.166008 8.92484e-10 -0.179954)
(-0.159147 8.83976e-10 -0.183365)
(-0.152285 8.7306e-10 -0.186497)
(-0.145432 8.59507e-10 -0.189354)
(-0.138596 8.43418e-10 -0.191937)
(-0.131787 8.24949e-10 -0.194249)
(-0.125012 8.04149e-10 -0.196294)
(-0.11828 7.8143e-10 -0.198075)
(-0.111599 7.56841e-10 -0.199598)
(-0.104975 7.30665e-10 -0.200866)
(-0.098417 7.03312e-10 -0.201885)
(-0.0919301 6.74858e-10 -0.202661)
(-0.085521 6.45662e-10 -0.2032)
(-0.0791957 6.15877e-10 -0.203507)
(-0.0729596 5.85709e-10 -0.203589)
(-0.0668179 5.55311e-10 -0.203453)
(-0.0607754 5.24682e-10 -0.203106)
(-0.0548365 4.94259e-10 -0.202555)
(-0.0490054 4.63938e-10 -0.201807)
(-0.0432856 4.34079e-10 -0.20087)
(-0.0376807 4.04681e-10 -0.19975)
(-0.0321936 3.76051e-10 -0.198456)
(-0.0268271 3.48497e-10 -0.196995)
(-0.0215836 3.2184e-10 -0.195374)
(-0.0164652 2.9595e-10 -0.193601)
(-0.0114737 2.71546e-10 -0.191684)
(-0.00661078 2.48192e-10 -0.189629)
(-0.00187765 2.26426e-10 -0.187444)
(0.00272474 2.06145e-10 -0.185136)
(0.0071953 1.87272e-10 -0.182712)
(0.0115336 1.70243e-10 -0.180179)
(0.0157394 1.54443e-10 -0.177543)
(0.0198124 1.40487e-10 -0.174811)
(0.0237528 1.27683e-10 -0.171989)
(0.0275607 1.16467e-10 -0.169084)
(0.0312365 1.06557e-10 -0.1661)
(0.0347808 9.78504e-11 -0.163044)
(0.0381941 9.04753e-11 -0.159921)
(0.0414773 8.43038e-11 -0.156736)
(0.0446312 7.88746e-11 -0.153494)
(0.0476568 7.44441e-11 -0.150199)
(0.0505551 7.08329e-11 -0.146855)
(0.0533272 6.77079e-11 -0.143466)
(0.0559742 6.49924e-11 -0.140036)
(0.0584973 6.24557e-11 -0.136569)
(0.0608979 6.02514e-11 -0.133067)
(0.063177 5.79185e-11 -0.129533)
(0.0653361 5.54313e-11 -0.12597)
(0.0673763 5.26359e-11 -0.12238)
(0.069299 4.95323e-11 -0.118765)
(0.0711054 4.6223e-11 -0.115127)
(0.0727968 4.25284e-11 -0.111468)
(0.0743743 3.88072e-11 -0.107788)
(0.0758392 3.52388e-11 -0.104089)
(0.0771926 3.20281e-11 -0.100373)
(0.0784356 2.94827e-11 -0.0966391)
(0.0795694 2.76026e-11 -0.0928891)
(0.0805948 2.6516e-11 -0.0891234)
(0.0815131 2.60178e-11 -0.0853424)
(0.0823249 2.56725e-11 -0.0815468)
(0.0830313 2.43778e-11 -0.0777369)
(0.0836331 2.08775e-11 -0.0739133)
(0.0841311 1.31462e-11 -0.0700763)
(0.084526 -6.88125e-13 -0.0662267)
(0.0848185 -2.30106e-11 -0.062365)
(0.0850093 -5.65914e-11 -0.058492)
(0.0850991 -1.03253e-10 -0.0546088)
(0.0850884 -1.64766e-10 -0.0507165)
(0.0849779 -2.41441e-10 -0.0468164)
(0.0847681 -3.32717e-10 -0.0429104)
(0.0844597 -4.36237e-10 -0.0390003)
(0.0840533 -5.48233e-10 -0.0350885)
(0.0835495 -6.63064e-10 -0.0311776)
(0.0829488 -7.74243e-10 -0.0272709)
(0.0822522 -8.74354e-10 -0.0233718)
(0.0814603 -9.5601e-10 -0.0194843)
(0.0805739 -1.01269e-09 -0.0156128)
(0.079594 -1.04013e-09 -0.0117624)
(0.0785217 -1.03586e-09 -0.00793844)
(0.077358 -1.00168e-09 -0.00414697)
(0.0761043 -9.4188e-10 -0.000394538)
(0.0747622 -8.63955e-10 0.00331184)
(0.0733331 -7.78629e-10 0.00696458)
(0.0718189 -6.96884e-10 0.0105556)
(0.0702216 -6.29244e-10 0.0140762)
(0.0685435 -5.83926e-10 0.0175173)
(0.0667872 -5.65143e-10 0.0208693)
(0.0649553 -5.71721e-10 0.0241223)
(0.0630511 -5.97245e-10 0.0272657)
(0.0610778 -6.29857e-10 0.030289)
(0.0590392 -6.54458e-10 0.0331809)
(0.0569392 -6.55278e-10 0.0359304)
(0.0547824 -6.19523e-10 0.0385259)
(0.0525734 -5.39171e-10 0.040956)
(0.0503173 -4.15959e-10 0.0432093)
(0.0480196 -2.61026e-10 0.0452743)
(0.0456863 -9.6202e-11 0.0471399)
(0.0433235 4.71743e-11 0.0487951)
(0.0409379 1.32462e-10 0.0502295)
(0.0385366 1.19981e-10 0.0514331)
(0.0361269 -2.65155e-11 0.0523964)
(0.0337166 -3.33464e-10 0.0531107)
(0.0313139 -8.11065e-10 0.053568)
(0.0289271 -1.44495e-09 0.0537614)
(0.026565 -2.19031e-09 0.0536846)
(0.0242367 -2.96819e-09 0.0533326)
(0.0219515 -3.67281e-09 0.0527014)
(0.0197188 -4.18824e-09 0.0517879)
(0.0175484 -4.42342e-09 0.0505901)
(0.0154502 -4.34562e-09 0.0491068)
(0.013434 -3.97468e-09 0.0473375)
(0.0115101 -3.30657e-09 0.0452819)
(0.00968864 -2.19534e-09 0.042939)
(0.0079799 -3.32093e-10 0.0403065)
(0.00639443 2.59099e-09 0.037378)
(0.00494306 6.84637e-09 0.0341394)
(0.00363726 1.31631e-08 0.0305612)
(0.0024899 2.30491e-08 0.0265797)
(0.00151631 3.89881e-08 0.0220492)
(0.000748584 6.95757e-08 0.0165828)
(0.000217704 2.09514e-07 0.00913199)
(-0.015007 3.03351e-06 0.327515)
(-0.0191044 -2.6462e-06 0.345053)
(-0.0330518 -1.71732e-06 0.353461)
(-0.0465581 -1.37592e-06 0.357747)
(-0.0599944 -4.53938e-07 0.359963)
(-0.0731637 -5.9532e-07 0.360866)
(-0.0861054 -4.86933e-07 0.360787)
(-0.0988023 -2.74151e-07 0.359908)
(-0.111245 -1.42725e-07 0.358343)
(-0.123421 -7.95458e-08 0.356169)
(-0.135316 -3.86324e-08 0.353444)
(-0.146918 -8.79219e-09 0.350212)
(-0.158214 1.30591e-08 0.346506)
(-0.169195 2.96249e-08 0.342357)
(-0.179851 3.60017e-08 0.337788)
(-0.190173 2.70157e-08 0.332822)
(-0.200154 6.68617e-09 0.327478)
(-0.209787 -1.40886e-08 0.321776)
(-0.219066 -2.61331e-08 0.315731)
(-0.227986 -2.71232e-08 0.309361)
(-0.236543 -2.05859e-08 0.302681)
(-0.244732 -1.18437e-08 0.295706)
(-0.25255 -4.68962e-09 0.28845)
(-0.259996 -4.05934e-10 0.280928)
(-0.267065 1.46947e-09 0.273153)
(-0.273758 1.95796e-09 0.26514)
(-0.280071 1.88285e-09 0.2569)
(-0.286005 1.66645e-09 0.248448)
(-0.291559 1.43983e-09 0.239795)
(-0.296733 1.21076e-09 0.230955)
(-0.301526 9.6651e-10 0.221941)
(-0.30594 6.97459e-10 0.212763)
(-0.309976 3.91539e-10 0.203436)
(-0.313634 3.71958e-11 0.19397)
(-0.316916 -3.53422e-10 0.184379)
(-0.319825 -7.2798e-10 0.174674)
(-0.322362 -1.00348e-09 0.164867)
(-0.32453 -1.10096e-09 0.15497)
(-0.326331 -9.8777e-10 0.144995)
(-0.32777 -6.96744e-10 0.134954)
(-0.328849 -3.16631e-10 0.12486)
(-0.329572 4.42502e-11 0.114724)
(-0.329944 2.97574e-10 0.104559)
(-0.329968 4.02196e-10 0.0943759)
(-0.329649 3.70654e-10 0.0841878)
(-0.328992 2.53251e-10 0.0740066)
(-0.328004 1.14023e-10 0.0638445)
(-0.326688 7.54489e-12 0.0537137)
(-0.325052 -3.52613e-11 0.0436266)
(-0.323101 -9.55616e-12 0.0335953)
(-0.320842 6.92845e-11 0.0236321)
(-0.318283 1.76381e-10 0.0137491)
(-0.315429 2.8765e-10 0.0039586)
(-0.312289 3.8508e-10 -0.00572746)
(-0.308871 4.60039e-10 -0.0152967)
(-0.305184 5.11274e-10 -0.0247372)
(-0.301235 5.42679e-10 -0.0340371)
(-0.297034 5.6025e-10 -0.0431848)
(-0.29259 5.70468e-10 -0.0521689)
(-0.287912 5.78482e-10 -0.0609783)
(-0.283011 5.88802e-10 -0.0696022)
(-0.277897 6.0386e-10 -0.0780301)
(-0.27258 6.24707e-10 -0.086252)
(-0.26707 6.5147e-10 -0.0942583)
(-0.261379 6.83227e-10 -0.10204)
(-0.255517 7.18133e-10 -0.109588)
(-0.249496 7.54064e-10 -0.116894)
(-0.243327 7.8902e-10 -0.123951)
(-0.237021 8.21004e-10 -0.130751)
(-0.23059 8.4912e-10 -0.137289)
(-0.224045 8.72112e-10 -0.143558)
(-0.217398 8.89777e-10 -0.149554)
(-0.21066 9.02576e-10 -0.155271)
(-0.203842 9.10713e-10 -0.160707)
(-0.196957 9.14983e-10 -0.165857)
(-0.190014 9.15488e-10 -0.170721)
(-0.183026 9.12946e-10 -0.175294)
(-0.176002 9.07613e-10 -0.179578)
(-0.168954 8.99591e-10 -0.183571)
(-0.161892 8.89162e-10 -0.187273)
(-0.154826 8.76045e-10 -0.190686)
(-0.147766 8.60547e-10 -0.193811)
(-0.140721 8.42488e-10 -0.19665)
(-0.1337 8.21997e-10 -0.199207)
(-0.126714 7.99279e-10 -0.201483)
(-0.119769 7.74487e-10 -0.203483)
(-0.112874 7.47801e-10 -0.205211)
(-0.106037 7.19476e-10 -0.206673)
(-0.0992648 6.9e-10 -0.207873)
(-0.0925653 6.59346e-10 -0.208816)
(-0.0859447 6.28053e-10 -0.209509)
(-0.0794092 5.96299e-10 -0.209959)
(-0.0729648 5.64111e-10 -0.210171)
(-0.0666168 5.31948e-10 -0.210153)
(-0.0603702 4.99889e-10 -0.209911)
(-0.0542299 4.67932e-10 -0.209454)
(-0.0482001 4.36308e-10 -0.208788)
(-0.0422847 4.05222e-10 -0.207921)
(-0.0364873 3.74828e-10 -0.206861)
(-0.0308112 3.45305e-10 -0.205616)
(-0.0252593 3.16729e-10 -0.204193)
(-0.0198341 2.89331e-10 -0.2026)
(-0.0145379 2.62701e-10 -0.200846)
(-0.00937252 2.37378e-10 -0.198937)
(-0.00433975 2.13488e-10 -0.196882)
(0.000559146 1.91083e-10 -0.194688)
(0.00532292 1.70215e-10 -0.192363)
(0.00995073 1.50934e-10 -0.189914)
(0.014442 1.33548e-10 -0.187349)
(0.0187964 1.17647e-10 -0.184673)
(0.0230139 1.03308e-10 -0.181896)
(0.0270943 9.07363e-11 -0.179022)
(0.0310381 7.9726e-11 -0.176058)
(0.0348456 7.01752e-11 -0.173012)
(0.0385173 6.20327e-11 -0.169887)
(0.0420541 5.55801e-11 -0.166691)
(0.0454566 5.04079e-11 -0.163429)
(0.0487258 4.65159e-11 -0.160106)
(0.0518629 4.34944e-11 -0.156726)
(0.0548688 4.17532e-11 -0.153295)
(0.0577447 4.0652e-11 -0.149816)
(0.060492 4.03957e-11 -0.146294)
(0.063112 4.06257e-11 -0.142732)
(0.0656059 4.11883e-11 -0.139134)
(0.0679751 4.19298e-11 -0.135502)
(0.0702211 4.26453e-11 -0.13184)
(0.0723452 4.32835e-11 -0.12815)
(0.0743488 4.36393e-11 -0.124435)
(0.0762334 4.36871e-11 -0.120696)
(0.0780002 4.35806e-11 -0.116936)
(0.0796505 4.32429e-11 -0.113155)
(0.0811858 4.29557e-11 -0.109355)
(0.0826073 4.28215e-11 -0.105538)
(0.0839161 4.32246e-11 -0.101704)
(0.0851135 4.43188e-11 -0.0978542)
(0.0862006 4.62066e-11 -0.0939891)
(0.0871785 4.87857e-11 -0.0901093)
(0.0880481 5.17742e-11 -0.0862155)
(0.0888105 5.43775e-11 -0.0823079)
(0.0894665 5.54681e-11 -0.0783869)
(0.0900169 5.36104e-11 -0.0744531)
(0.0904626 4.63689e-11 -0.0705068)
(0.0908043 3.18719e-11 -0.0665485)
(0.0910427 7.60602e-12 -0.062579)
(0.0911783 -2.89679e-11 -0.0585988)
(0.0912118 -7.95182e-11 -0.0546091)
(0.0911438 -1.45226e-10 -0.0506108)
(0.0909748 -2.25813e-10 -0.0466055)
(0.0907053 -3.19947e-10 -0.0425947)
(0.0903358 -4.2417e-10 -0.0385806)
(0.0898668 -5.33611e-10 -0.0345653)
(0.0892989 -6.42193e-10 -0.0305517)
(0.0886325 -7.42531e-10 -0.0265428)
(0.0878684 -8.27212e-10 -0.0225423)
(0.0870072 -8.89512e-10 -0.0185542)
(0.0860495 -9.23862e-10 -0.0145831)
(0.0849961 -9.27383e-10 -0.0106339)
(0.0838481 -9.00172e-10 -0.00671239)
(0.0826063 -8.46174e-10 -0.0028246)
(0.0812721 -7.71644e-10 0.00102276)
(0.0798466 -6.86738e-10 0.00482246)
(0.0783314 -6.02744e-10 0.00856677)
(0.0767282 -5.30388e-10 0.0122473)
(0.0750389 -4.78862e-10 0.0158553)
(0.0732656 -4.53557e-10 0.0193813)
(0.0714108 -4.54427e-10 0.0228154)
(0.0694772 -4.76139e-10 0.0261474)
(0.0674678 -5.06939e-10 0.0293665)
(0.0653858 -5.32349e-10 0.0324617)
(0.0632349 -5.35422e-10 0.0354215)
(0.0610193 -5.02493e-10 0.0382344)
(0.0587431 -4.25236e-10 0.0408885)
(0.0564112 -3.05438e-10 0.0433721)
(0.0540288 -1.55161e-10 0.0456731)
(0.0516014 2.07685e-12 0.0477799)
(0.049135 1.32526e-10 0.0496808)
(0.0466359 1.97963e-10 0.0513645)
(0.0441111 1.59021e-10 0.0528202)
(0.0415677 -1.74052e-11 0.0540373)
(0.0390133 -3.53225e-10 0.055006)
(0.036456 -8.52574e-10 0.0557172)
(0.0339042 -1.49672e-09 0.0561627)
(0.0313667 -2.23927e-09 0.0563349)
(0.0288525 -3.00366e-09 0.0562276)
(0.0263712 -3.68596e-09 0.0558352)
(0.0239323 -4.16274e-09 0.0551535)
(0.0215459 -4.3121e-09 0.0541792)
(0.019222 -4.04505e-09 0.0529102)
(0.0169711 -3.3346e-09 0.051345)
(0.0148036 -2.20672e-09 0.049483)
(0.0127301 -6.60779e-10 0.0473238)
(0.0107612 1.4477e-09 0.0448664)
(0.00890796 4.42591e-09 0.0421081)
(0.00718128 8.56793e-09 0.0390424)
(0.00559259 1.41146e-08 0.0356548)
(0.00415394 2.18022e-08 0.0319146)
(0.00287889 3.33202e-08 0.0277565)
(0.00178345 5.17162e-08 0.0230311)
(0.000902661 8.40542e-08 0.0173453)
(0.000278514 2.20587e-07 0.0096499)
(-0.014997 3.03096e-06 0.327514)
(-0.0191077 -2.64181e-06 0.345047)
(-0.0330503 -1.71623e-06 0.353454)
(-0.0465552 -1.37536e-06 0.357744)
(-0.0599927 -4.53854e-07 0.359962)
(-0.0731637 -5.9529e-07 0.360866)
(-0.0861055 -4.86931e-07 0.360787)
(-0.0988023 -2.74152e-07 0.359908)
(-0.111245 -1.42725e-07 0.358343)
(-0.123421 -7.95458e-08 0.356169)
(-0.135316 -3.86323e-08 0.353444)
(-0.146918 -8.79218e-09 0.350212)
(-0.158214 1.30591e-08 0.346506)
(-0.169195 2.96249e-08 0.342357)
(-0.179851 3.60016e-08 0.337788)
(-0.190173 2.70157e-08 0.332822)
(-0.200154 6.68616e-09 0.327478)
(-0.209787 -1.40885e-08 0.321776)
(-0.219066 -2.61331e-08 0.315731)
(-0.227986 -2.71232e-08 0.309361)
(-0.236543 -2.05859e-08 0.302681)
(-0.244732 -1.18437e-08 0.295706)
(-0.25255 -4.68962e-09 0.28845)
(-0.259996 -4.05934e-10 0.280928)
(-0.267065 1.46947e-09 0.273153)
(-0.273758 1.95796e-09 0.26514)
(-0.280071 1.88285e-09 0.2569)
(-0.286006 1.66645e-09 0.248448)
(-0.291559 1.43983e-09 0.239795)
(-0.296733 1.21076e-09 0.230955)
(-0.301526 9.66511e-10 0.221941)
(-0.30594 6.97459e-10 0.212764)
(-0.309976 3.91539e-10 0.203436)
(-0.313634 3.71958e-11 0.19397)
(-0.316916 -3.53422e-10 0.184379)
(-0.319825 -7.27981e-10 0.174674)
(-0.322362 -1.00348e-09 0.164867)
(-0.32453 -1.10096e-09 0.15497)
(-0.326331 -9.8777e-10 0.144995)
(-0.32777 -6.96744e-10 0.134954)
(-0.328849 -3.16631e-10 0.12486)
(-0.329572 4.42502e-11 0.114724)
(-0.329944 2.97574e-10 0.104559)
(-0.329968 4.02196e-10 0.094376)
(-0.329649 3.70654e-10 0.0841878)
(-0.328993 2.53252e-10 0.0740066)
(-0.328004 1.14023e-10 0.0638445)
(-0.326688 7.54489e-12 0.0537137)
(-0.325052 -3.52613e-11 0.0436266)
(-0.323101 -9.55616e-12 0.0335953)
(-0.320842 6.92844e-11 0.0236321)
(-0.318283 1.76381e-10 0.0137492)
(-0.315429 2.87649e-10 0.00395862)
(-0.312289 3.8508e-10 -0.00572743)
(-0.308871 4.60039e-10 -0.0152967)
(-0.305184 5.11274e-10 -0.0247372)
(-0.301235 5.42679e-10 -0.0340371)
(-0.297034 5.60249e-10 -0.0431848)
(-0.29259 5.70467e-10 -0.0521689)
(-0.287912 5.78482e-10 -0.0609783)
(-0.283011 5.88801e-10 -0.0696022)
(-0.277897 6.03859e-10 -0.0780301)
(-0.27258 6.24706e-10 -0.086252)
(-0.26707 6.51469e-10 -0.0942583)
(-0.261379 6.83226e-10 -0.10204)
(-0.255517 7.18132e-10 -0.109588)
(-0.249496 7.54062e-10 -0.116894)
(-0.243327 7.89018e-10 -0.123951)
(-0.237021 8.21002e-10 -0.130751)
(-0.23059 8.49118e-10 -0.137289)
(-0.224045 8.72111e-10 -0.143558)
(-0.217398 8.89776e-10 -0.149554)
(-0.21066 9.02574e-10 -0.155271)
(-0.203843 9.10711e-10 -0.160707)
(-0.196957 9.14981e-10 -0.165857)
(-0.190014 9.15486e-10 -0.170721)
(-0.183026 9.12944e-10 -0.175294)
(-0.176003 9.07611e-10 -0.179578)
(-0.168954 8.99589e-10 -0.183571)
(-0.161892 8.8916e-10 -0.187273)
(-0.154826 8.76043e-10 -0.190686)
(-0.147766 8.60544e-10 -0.193811)
(-0.140721 8.42486e-10 -0.19665)
(-0.133701 8.21995e-10 -0.199206)
(-0.126714 7.99277e-10 -0.201483)
(-0.119769 7.74485e-10 -0.203483)
(-0.112874 7.47799e-10 -0.205211)
(-0.106037 7.19474e-10 -0.206673)
(-0.0992648 6.89998e-10 -0.207873)
(-0.0925653 6.59344e-10 -0.208816)
(-0.0859447 6.28051e-10 -0.209509)
(-0.0794093 5.96298e-10 -0.209959)
(-0.0729648 5.64109e-10 -0.210171)
(-0.0666168 5.31947e-10 -0.210153)
(-0.0603703 4.99887e-10 -0.209911)
(-0.0542299 4.6793e-10 -0.209454)
(-0.0482001 4.36307e-10 -0.208788)
(-0.0422847 4.05221e-10 -0.207921)
(-0.0364874 3.74827e-10 -0.206861)
(-0.0308113 3.45304e-10 -0.205616)
(-0.0252594 3.16728e-10 -0.204193)
(-0.0198342 2.8933e-10 -0.2026)
(-0.0145379 2.62701e-10 -0.200846)
(-0.00937257 2.37377e-10 -0.198937)
(-0.00433979 2.13487e-10 -0.196882)
(0.0005591 1.91083e-10 -0.194688)
(0.00532287 1.70215e-10 -0.192363)
(0.00995068 1.50934e-10 -0.189914)
(0.014442 1.33548e-10 -0.187349)
(0.0187964 1.17647e-10 -0.184673)
(0.0230138 1.03308e-10 -0.181896)
(0.0270943 9.0736e-11 -0.179022)
(0.0310381 7.97257e-11 -0.176058)
(0.0348455 7.0175e-11 -0.173012)
(0.0385173 6.20325e-11 -0.169887)
(0.042054 5.558e-11 -0.166691)
(0.0454565 5.04077e-11 -0.163429)
(0.0487258 4.65158e-11 -0.160106)
(0.0518628 4.34943e-11 -0.156726)
(0.0548687 4.17531e-11 -0.153295)
(0.0577447 4.06519e-11 -0.149816)
(0.060492 4.03956e-11 -0.146294)
(0.0631119 4.06256e-11 -0.142732)
(0.0656058 4.11882e-11 -0.139134)
(0.0679751 4.19297e-11 -0.135502)
(0.0702211 4.26452e-11 -0.13184)
(0.0723452 4.32833e-11 -0.12815)
(0.0743488 4.36392e-11 -0.124435)
(0.0762333 4.3687e-11 -0.120696)
(0.0780001 4.35805e-11 -0.116936)
(0.0796505 4.32428e-11 -0.113155)
(0.0811858 4.29556e-11 -0.109355)
(0.0826072 4.28213e-11 -0.105538)
(0.0839161 4.32245e-11 -0.101704)
(0.0851135 4.43187e-11 -0.0978542)
(0.0862006 4.62065e-11 -0.0939891)
(0.0871784 4.87856e-11 -0.0901094)
(0.0880481 5.1774e-11 -0.0862155)
(0.0888104 5.43774e-11 -0.0823079)
(0.0894664 5.5468e-11 -0.0783869)
(0.0900169 5.36102e-11 -0.0744531)
(0.0904626 4.63688e-11 -0.0705068)
(0.0908043 3.18718e-11 -0.0665485)
(0.0910426 7.606e-12 -0.062579)
(0.0911783 -2.89678e-11 -0.0585988)
(0.0912118 -7.9518e-11 -0.0546091)
(0.0911438 -1.45226e-10 -0.0506108)
(0.0909748 -2.25812e-10 -0.0466055)
(0.0907052 -3.19946e-10 -0.0425948)
(0.0903357 -4.24169e-10 -0.0385806)
(0.0898667 -5.33609e-10 -0.0345653)
(0.0892988 -6.42191e-10 -0.0305517)
(0.0886325 -7.42529e-10 -0.0265428)
(0.0878684 -8.2721e-10 -0.0225423)
(0.0870071 -8.8951e-10 -0.0185542)
(0.0860494 -9.2386e-10 -0.0145831)
(0.0849961 -9.27381e-10 -0.0106339)
(0.083848 -9.0017e-10 -0.0067124)
(0.0826063 -8.46172e-10 -0.0028246)
(0.0812721 -7.71642e-10 0.00102276)
(0.0798466 -6.86736e-10 0.00482246)
(0.0783314 -6.02742e-10 0.00856677)
(0.0767282 -5.30387e-10 0.0122473)
(0.0750389 -4.78861e-10 0.0158553)
(0.0732656 -4.53556e-10 0.0193813)
(0.0714108 -4.54426e-10 0.0228154)
(0.0694772 -4.76138e-10 0.0261474)
(0.0674677 -5.06938e-10 0.0293665)
(0.0653858 -5.32348e-10 0.0324617)
(0.0632349 -5.35421e-10 0.0354215)
(0.0610192 -5.02492e-10 0.0382344)
(0.0587431 -4.25235e-10 0.0408885)
(0.0564112 -3.05437e-10 0.0433721)
(0.0540288 -1.5516e-10 0.0456731)
(0.0516014 2.07685e-12 0.0477799)
(0.049135 1.32526e-10 0.0496808)
(0.0466359 1.97962e-10 0.0513646)
(0.0441111 1.5902e-10 0.0528202)
(0.0415677 -1.74052e-11 0.0540373)
(0.0390133 -3.53225e-10 0.055006)
(0.036456 -8.52573e-10 0.0557172)
(0.0339042 -1.49672e-09 0.0561627)
(0.0313667 -2.23927e-09 0.0563349)
(0.0288525 -3.00365e-09 0.0562276)
(0.0263712 -3.68595e-09 0.0558352)
(0.0239323 -4.16273e-09 0.0551535)
(0.0215459 -4.31209e-09 0.0541792)
(0.019222 -4.04505e-09 0.0529101)
(0.0169711 -3.33459e-09 0.051345)
(0.0148036 -2.20672e-09 0.049483)
(0.0127301 -6.60777e-10 0.0473238)
(0.0107612 1.4477e-09 0.0448663)
(0.00890796 4.4259e-09 0.0421081)
(0.00718128 8.56791e-09 0.0390423)
(0.00559259 1.41145e-08 0.0356547)
(0.00415395 2.18021e-08 0.0319144)
(0.00287889 3.33201e-08 0.0277563)
(0.00178346 5.17161e-08 0.0230309)
(0.00090267 8.40544e-08 0.0173449)
(0.000278484 2.20587e-07 0.00964932)
(-0.00839123 -6.31162e-07 0.340602)
(-0.0195334 -2.36806e-06 0.35996)
(-0.0343018 -1.04261e-07 0.368114)
(-0.0480056 -1.93955e-07 0.372128)
(-0.0617499 1.49334e-07 0.374106)
(-0.0752451 -6.28281e-08 0.374762)
(-0.0885064 5.70758e-08 0.374426)
(-0.101507 1.05747e-07 0.373276)
(-0.114235 1.23711e-08 0.371427)
(-0.126677 -6.04803e-08 0.368957)
(-0.138822 -5.09631e-08 0.365921)
(-0.150657 -8.93847e-09 0.362366)
(-0.162171 1.9913e-08 0.358326)
(-0.173355 3.16602e-08 0.353832)
(-0.184199 3.38656e-08 0.34891)
(-0.194695 2.73399e-08 0.343581)
(-0.204836 1.20802e-08 0.337868)
(-0.214616 -6.52483e-09 0.331789)
(-0.224027 -2.0647e-08 0.325363)
(-0.233066 -2.57682e-08 0.318606)
(-0.241727 -2.26884e-08 0.311534)
(-0.250008 -1.53865e-08 0.304164)
(-0.257904 -7.83356e-09 0.29651)
(-0.265414 -2.23905e-09 0.288587)
(-0.272534 9.59342e-10 0.28041)
(-0.279265 2.29757e-09 0.271992)
(-0.285603 2.53886e-09 0.263347)
(-0.291549 2.28777e-09 0.254488)
(-0.297101 1.8986e-09 0.245429)
(-0.302261 1.52519e-09 0.236183)
(-0.307028 1.2008e-09 0.226762)
(-0.311404 8.99383e-10 0.21718)
(-0.315388 5.74993e-10 0.207449)
(-0.318983 1.92677e-10 0.197581)
(-0.322191 -2.43666e-10 0.18759)
(-0.325014 -6.79606e-10 0.177486)
(-0.327453 -1.02395e-09 0.167284)
(-0.329512 -1.18753e-09 0.156995)
(-0.331195 -1.12552e-09 0.146631)
(-0.332503 -8.60532e-10 0.136205)
(-0.333442 -4.7541e-10 0.12573)
(-0.334015 -8.06682e-11 0.115217)
(-0.334226 2.25487e-10 0.104679)
(-0.334081 3.88284e-10 0.0941281)
(-0.333584 4.06807e-10 0.0835776)
(-0.33274 3.22031e-10 0.0730396)
(-0.331556 1.95473e-10 0.0625267)
(-0.330037 8.50334e-11 0.0520514)
(-0.328189 2.82684e-11 0.0416264)
(-0.326019 3.71387e-11 0.0312641)
(-0.323535 1.0188e-10 0.0209773)
(-0.320743 2.00665e-10 0.0107784)
(-0.317651 3.09488e-10 0.000679865)
(-0.314267 4.09264e-10 -0.00930568)
(-0.310601 4.89236e-10 -0.0191656)
(-0.306659 5.46254e-10 -0.0288876)
(-0.302452 5.83086e-10 -0.0384595)
(-0.29799 6.04778e-10 -0.0478693)
(-0.293281 6.17658e-10 -0.0571053)
(-0.288337 6.26952e-10 -0.0661561)
(-0.283167 6.37116e-10 -0.0750106)
(-0.277782 6.50841e-10 -0.0836581)
(-0.272193 6.69687e-10 -0.0920882)
(-0.266411 6.93681e-10 -0.100291)
(-0.260448 7.22284e-10 -0.108258)
(-0.254316 7.54037e-10 -0.115978)
(-0.248025 7.86967e-10 -0.123445)
(-0.241588 8.1905e-10 -0.130651)
(-0.235016 8.48445e-10 -0.137588)
(-0.228322 8.73817e-10 -0.14425)
(-0.221518 8.94247e-10 -0.150631)
(-0.214615 9.094e-10 -0.156726)
(-0.207626 9.19329e-10 -0.162531)
(-0.200561 9.24444e-10 -0.168041)
(-0.193434 9.25001e-10 -0.173255)
(-0.186255 9.21639e-10 -0.178169)
(-0.179037 9.14949e-10 -0.182782)
(-0.171789 9.05187e-10 -0.187094)
(-0.164523 8.92582e-10 -0.191104)
(-0.157249 8.77315e-10 -0.194812)
(-0.149979 8.59539e-10 -0.19822)
(-0.142721 8.39434e-10 -0.20133)
(-0.135486 8.16794e-10 -0.204145)
(-0.128283 7.92055e-10 -0.206666)
(-0.121121 7.65268e-10 -0.208899)
(-0.114009 7.36613e-10 -0.210847)
(-0.106954 7.06396e-10 -0.212514)
(-0.0999648 6.74823e-10 -0.213907)
(-0.0930484 6.42226e-10 -0.21503)
(-0.086212 6.08964e-10 -0.21589)
(-0.0794621 5.75216e-10 -0.216493)
(-0.0728049 5.41315e-10 -0.216846)
(-0.0662461 5.07388e-10 -0.216955)
(-0.0597911 4.73667e-10 -0.216829)
(-0.0534448 4.40305e-10 -0.216474)
(-0.0472119 4.0743e-10 -0.215899)
(-0.0410965 3.75143e-10 -0.215111)
(-0.0351023 3.43754e-10 -0.214118)
(-0.0292329 3.13362e-10 -0.212928)
(-0.0234912 2.83893e-10 -0.21155)
(-0.01788 2.55217e-10 -0.209992)
(-0.0124017 2.28001e-10 -0.208261)
(-0.00705833 2.01784e-10 -0.206367)
(-0.00185164 1.77205e-10 -0.204317)
(0.00321701 1.54137e-10 -0.202118)
(0.00814615 1.32604e-10 -0.19978)
(0.0129351 1.13069e-10 -0.197309)
(0.0175831 9.50191e-11 -0.194714)
(0.0220899 7.87099e-11 -0.192002)
(0.0264553 6.42441e-11 -0.189181)
(0.0306794 5.1545e-11 -0.186256)
(0.0347625 4.06381e-11 -0.183236)
(0.038705 3.14977e-11 -0.180127)
(0.0425075 2.41497e-11 -0.176935)
(0.0461707 1.84915e-11 -0.173666)
(0.0496956 1.43695e-11 -0.170327)
(0.0530831 1.18094e-11 -0.166922)
(0.0563344 1.06576e-11 -0.163458)
(0.0594507 1.07603e-11 -0.159938)
(0.0624333 1.20665e-11 -0.156368)
(0.0652834 1.43201e-11 -0.152751)
(0.0680026 1.74955e-11 -0.149093)
(0.0705923 2.1106e-11 -0.145397)
(0.073054 2.51772e-11 -0.141665)
(0.0753891 2.94532e-11 -0.137902)
(0.0775993 3.37545e-11 -0.13411)
(0.0796859 3.78761e-11 -0.130292)
(0.0816506 4.16645e-11 -0.12645)
(0.0834948 4.52988e-11 -0.122585)
(0.08522 4.85228e-11 -0.118701)
(0.0868276 5.16182e-11 -0.114797)
(0.088319 5.47645e-11 -0.110877)
(0.0896955 5.82689e-11 -0.10694)
(0.0909585 6.2234e-11 -0.102987)
(0.0921091 6.6916e-11 -0.09902)
(0.0931486 7.22125e-11 -0.0950389)
(0.0940779 7.82005e-11 -0.0910443)
(0.0948983 8.42394e-11 -0.0870365)
(0.0956106 8.90991e-11 -0.083016)
(0.0962157 9.20365e-11 -0.0789831)
(0.0967145 9.08729e-11 -0.0749382)
(0.0971077 8.34806e-11 -0.0708816)
(0.0973961 6.75008e-11 -0.0668138)
(0.0975803 4.07026e-11 -0.0627353)
(0.0976609 5.72387e-13 -0.058647)
(0.0976384 -5.40197e-11 -0.0545496)
(0.0975134 -1.23794e-10 -0.0504443)
(0.0972862 -2.07624e-10 -0.0463324)
(0.0969573 -3.02975e-10 -0.0422156)
(0.0965271 -4.06055e-10 -0.0380959)
(0.095996 -5.10633e-10 -0.0339756)
(0.0953645 -6.10148e-10 -0.0298575)
(0.094633 -6.9711e-10 -0.0257447)
(0.0938019 -7.64003e-10 -0.0216408)
(0.0928717 -8.05209e-10 -0.0175501)
(0.0918431 -8.16541e-10 -0.013477)
(0.0907166 -7.97174e-10 -0.00942685)
(0.0894931 -7.49436e-10 -0.00540523)
(0.0881733 -6.7917e-10 -0.00141848)
(0.0867584 -5.95453e-10 0.00252661)
(0.0852495 -5.0916e-10 0.00642263)
(0.0836479 -4.31989e-10 0.0102616)
(0.0819551 -3.73588e-10 0.014035)
(0.080173 -3.40737e-10 0.0177337)
(0.0783035 -3.34517e-10 0.021348)
(0.076349 -3.50776e-10 0.0248679)
(0.0743121 -3.79354e-10 0.0282826)
(0.0721955 -4.04853e-10 0.0315812)
(0.0700026 -4.10742e-10 0.0347522)
(0.067737 -3.82025e-10 0.0377838)
(0.0654025 -3.09451e-10 0.0406641)
(0.0630037 -1.93424e-10 0.0433808)
(0.0605451 -4.65146e-11 0.0459216)
(0.0580321 1.05863e-10 0.0482744)
(0.0554702 2.28426e-10 0.0504267)
(0.0528655 2.79723e-10 0.0523666)
(0.0502245 2.18957e-10 0.0540824)
(0.0475541 1.31824e-11 0.0555625)
(0.0448619 -3.55449e-10 0.0567962)
(0.0421555 -8.8496e-10 0.0577732)
(0.0394434 -1.5485e-09 0.058484)
(0.0367342 -2.29348e-09 0.0589198)
(0.034037 -3.04078e-09 0.0590729)
(0.0313613 -3.68741e-09 0.0589364)
(0.0287169 -4.11306e-09 0.0585047)
(0.0261139 -4.19157e-09 0.0577732)
(0.0235627 -3.80953e-09 0.0567383)
(0.0210739 -2.89477e-09 0.0553976)
(0.0186583 -1.43833e-09 0.0537497)
(0.0163269 5.18823e-10 0.0517937)
(0.0140909 2.96267e-09 0.049529)
(0.0119614 6.0212e-09 0.0469545)
(0.00994983 9.98346e-09 0.0440675)
(0.00806781 1.51124e-08 0.0408609)
(0.0063273 2.16012e-08 0.0373199)
(0.00474098 3.01452e-08 0.0334128)
(0.00332306 4.24884e-08 0.0290723)
(0.00209029 6.1732e-08 0.0241454)
(0.00108081 9.11391e-08 0.0182317)
(0.000349512 1.98247e-07 0.0102794)
(-0.00837163 -6.31165e-07 0.340601)
(-0.0195336 -2.36943e-06 0.35995)
(-0.0342998 -1.04386e-07 0.36811)
(-0.048005 -1.94042e-07 0.372127)
(-0.0617497 1.49348e-07 0.374105)
(-0.0752455 -6.28296e-08 0.374761)
(-0.0885063 5.70765e-08 0.374425)
(-0.101507 1.05748e-07 0.373276)
(-0.114235 1.23711e-08 0.371427)
(-0.126678 -6.04803e-08 0.368956)
(-0.138822 -5.09631e-08 0.365921)
(-0.150657 -8.93846e-09 0.362366)
(-0.162171 1.9913e-08 0.358326)
(-0.173355 3.16601e-08 0.353832)
(-0.184199 3.38655e-08 0.34891)
(-0.194695 2.73399e-08 0.343581)
(-0.204837 1.20802e-08 0.337868)
(-0.214616 -6.52483e-09 0.331789)
(-0.224027 -2.0647e-08 0.325363)
(-0.233066 -2.57682e-08 0.318606)
(-0.241727 -2.26884e-08 0.311534)
(-0.250008 -1.53865e-08 0.304164)
(-0.257904 -7.83356e-09 0.29651)
(-0.265414 -2.23905e-09 0.288587)
(-0.272534 9.59342e-10 0.28041)
(-0.279265 2.29757e-09 0.271992)
(-0.285603 2.53886e-09 0.263347)
(-0.291549 2.28777e-09 0.254488)
(-0.297101 1.8986e-09 0.245429)
(-0.302261 1.52519e-09 0.236183)
(-0.307028 1.2008e-09 0.226762)
(-0.311404 8.99383e-10 0.21718)
(-0.315388 5.74993e-10 0.207449)
(-0.318983 1.92677e-10 0.197581)
(-0.322191 -2.43666e-10 0.18759)
(-0.325014 -6.79607e-10 0.177487)
(-0.327453 -1.02395e-09 0.167284)
(-0.329512 -1.18753e-09 0.156995)
(-0.331195 -1.12552e-09 0.146631)
(-0.332503 -8.60532e-10 0.136205)
(-0.333442 -4.7541e-10 0.12573)
(-0.334015 -8.06682e-11 0.115217)
(-0.334226 2.25487e-10 0.104679)
(-0.334081 3.88284e-10 0.0941282)
(-0.333584 4.06807e-10 0.0835777)
(-0.33274 3.22031e-10 0.0730397)
(-0.331556 1.95473e-10 0.0625268)
(-0.330037 8.50334e-11 0.0520515)
(-0.328189 2.82684e-11 0.0416264)
(-0.326019 3.71387e-11 0.0312642)
(-0.323535 1.0188e-10 0.0209773)
(-0.320743 2.00665e-10 0.0107784)
(-0.317651 3.09488e-10 0.000679892)
(-0.314267 4.09264e-10 -0.00930565)
(-0.310601 4.89236e-10 -0.0191656)
(-0.306659 5.46254e-10 -0.0288876)
(-0.302453 5.83086e-10 -0.0384594)
(-0.29799 6.04778e-10 -0.0478692)
(-0.293281 6.17658e-10 -0.0571053)
(-0.288337 6.26951e-10 -0.0661561)
(-0.283167 6.37116e-10 -0.0750106)
(-0.277782 6.5084e-10 -0.0836581)
(-0.272193 6.69686e-10 -0.0920882)
(-0.266411 6.9368e-10 -0.100291)
(-0.260449 7.22283e-10 -0.108257)
(-0.254316 7.54035e-10 -0.115978)
(-0.248025 7.86965e-10 -0.123445)
(-0.241588 8.19049e-10 -0.130651)
(-0.235016 8.48443e-10 -0.137588)
(-0.228322 8.73816e-10 -0.14425)
(-0.221518 8.94245e-10 -0.150631)
(-0.214615 9.09398e-10 -0.156726)
(-0.207626 9.19327e-10 -0.162531)
(-0.200561 9.24442e-10 -0.168041)
(-0.193434 9.24999e-10 -0.173255)
(-0.186256 9.21637e-10 -0.178169)
(-0.179037 9.14947e-10 -0.182782)
(-0.171789 9.05185e-10 -0.187094)
(-0.164523 8.9258e-10 -0.191104)
(-0.157249 8.77313e-10 -0.194812)
(-0.149979 8.59537e-10 -0.19822)
(-0.142721 8.39432e-10 -0.20133)
(-0.135487 8.16792e-10 -0.204145)
(-0.128284 7.92053e-10 -0.206666)
(-0.121121 7.65266e-10 -0.208899)
(-0.114009 7.36611e-10 -0.210847)
(-0.106954 7.06394e-10 -0.212514)
(-0.0999648 6.74821e-10 -0.213907)
(-0.0930485 6.42224e-10 -0.21503)
(-0.0862121 6.08962e-10 -0.21589)
(-0.0794621 5.75214e-10 -0.216493)
(-0.0728049 5.41313e-10 -0.216846)
(-0.0662461 5.07387e-10 -0.216955)
(-0.0597911 4.73666e-10 -0.216829)
(-0.0534449 4.40304e-10 -0.216474)
(-0.047212 4.07428e-10 -0.215899)
(-0.0410965 3.75142e-10 -0.215111)
(-0.0351024 3.43752e-10 -0.214118)
(-0.0292329 3.13361e-10 -0.212928)
(-0.0234913 2.83892e-10 -0.21155)
(-0.0178801 2.55217e-10 -0.209992)
(-0.0124018 2.28001e-10 -0.208261)
(-0.00705838 2.01783e-10 -0.206367)
(-0.00185168 1.77204e-10 -0.204317)
(0.00321697 1.54136e-10 -0.202118)
(0.0081461 1.32604e-10 -0.19978)
(0.012935 1.13069e-10 -0.197309)
(0.017583 9.50188e-11 -0.194714)
(0.0220898 7.87097e-11 -0.192002)
(0.0264553 6.4244e-11 -0.189181)
(0.0306794 5.15448e-11 -0.186256)
(0.0347625 4.06379e-11 -0.183236)
(0.0387049 3.14976e-11 -0.180127)
(0.0425074 2.41496e-11 -0.176935)
(0.0461707 1.84914e-11 -0.173666)
(0.0496956 1.43695e-11 -0.170327)
(0.0530831 1.18094e-11 -0.166922)
(0.0563344 1.06575e-11 -0.163458)
(0.0594507 1.07603e-11 -0.159938)
(0.0624332 1.20665e-11 -0.156368)
(0.0652834 1.43201e-11 -0.152751)
(0.0680026 1.74954e-11 -0.149093)
(0.0705923 2.11059e-11 -0.145397)
(0.0730539 2.51772e-11 -0.141665)
(0.0753891 2.94531e-11 -0.137902)
(0.0775992 3.37544e-11 -0.13411)
(0.0796859 3.7876e-11 -0.130292)
(0.0816506 4.16644e-11 -0.12645)
(0.0834948 4.52986e-11 -0.122585)
(0.08522 4.85226e-11 -0.118701)
(0.0868276 5.16181e-11 -0.114797)
(0.088319 5.47643e-11 -0.110877)
(0.0896955 5.82687e-11 -0.10694)
(0.0909585 6.22338e-11 -0.102987)
(0.0921091 6.69158e-11 -0.0990201)
(0.0931485 7.22124e-11 -0.0950389)
(0.0940779 7.82003e-11 -0.0910443)
(0.0948982 8.42392e-11 -0.0870365)
(0.0956105 8.90989e-11 -0.083016)
(0.0962156 9.20363e-11 -0.0789831)
(0.0967145 9.08726e-11 -0.0749382)
(0.0971077 8.34804e-11 -0.0708816)
(0.0973961 6.75007e-11 -0.0668138)
(0.0975803 4.07025e-11 -0.0627354)
(0.0976609 5.72386e-13 -0.058647)
(0.0976384 -5.40196e-11 -0.0545496)
(0.0975133 -1.23793e-10 -0.0504443)
(0.0972861 -2.07624e-10 -0.0463324)
(0.0969572 -3.02974e-10 -0.0422156)
(0.0965271 -4.06054e-10 -0.0380959)
(0.095996 -5.10632e-10 -0.0339756)
(0.0953645 -6.10146e-10 -0.0298575)
(0.094633 -6.97108e-10 -0.0257447)
(0.0938019 -7.64001e-10 -0.0216409)
(0.0928717 -8.05207e-10 -0.0175501)
(0.091843 -8.16539e-10 -0.013477)
(0.0907166 -7.97172e-10 -0.00942686)
(0.089493 -7.49434e-10 -0.00540524)
(0.0881733 -6.79169e-10 -0.00141848)
(0.0867584 -5.95452e-10 0.00252661)
(0.0852494 -5.09159e-10 0.00642263)
(0.0836478 -4.31988e-10 0.0102616)
(0.0819551 -3.73588e-10 0.014035)
(0.080173 -3.40737e-10 0.0177337)
(0.0783035 -3.34517e-10 0.021348)
(0.076349 -3.50775e-10 0.0248679)
(0.074312 -3.79353e-10 0.0282826)
(0.0721955 -4.04853e-10 0.0315812)
(0.0700026 -4.10742e-10 0.0347522)
(0.067737 -3.82024e-10 0.0377838)
(0.0654025 -3.09451e-10 0.0406641)
(0.0630037 -1.93424e-10 0.0433808)
(0.0605451 -4.65145e-11 0.0459217)
(0.0580321 1.05862e-10 0.0482744)
(0.0554702 2.28426e-10 0.0504267)
(0.0528655 2.79722e-10 0.0523666)
(0.0502245 2.18956e-10 0.0540824)
(0.0475541 1.31824e-11 0.0555625)
(0.0448619 -3.55449e-10 0.0567962)
(0.0421555 -8.84959e-10 0.0577732)
(0.0394434 -1.5485e-09 0.058484)
(0.0367342 -2.29348e-09 0.0589198)
(0.034037 -3.04077e-09 0.0590729)
(0.0313613 -3.6874e-09 0.0589364)
(0.0287169 -4.11305e-09 0.0585047)
(0.0261139 -4.19157e-09 0.0577731)
(0.0235627 -3.80953e-09 0.0567382)
(0.0210739 -2.89477e-09 0.0553976)
(0.0186583 -1.43832e-09 0.0537496)
(0.0163269 5.18822e-10 0.0517936)
(0.0140909 2.96267e-09 0.0495289)
(0.0119614 6.02119e-09 0.0469544)
(0.00994984 9.98343e-09 0.0440674)
(0.00806782 1.51123e-08 0.0408608)
(0.00632732 2.16012e-08 0.0373198)
(0.004741 3.01451e-08 0.0334127)
(0.00332309 4.24883e-08 0.0290722)
(0.00209031 6.17319e-08 0.0241452)
(0.00108083 9.11394e-08 0.0182313)
(0.000349478 1.98248e-07 0.0102788)
(-0.0033177 -1.63841e-06 0.356162)
(-0.019729 -6.20761e-07 0.374645)
(-0.0350905 1.34526e-06 0.382868)
(-0.0492936 5.66853e-07 0.386822)
(-0.0634466 -3.17733e-07 0.388606)
(-0.0773071 -4.87401e-07 0.389013)
(-0.0909037 -2.22342e-07 0.388401)
(-0.104215 -3.87093e-08 0.38696)
(-0.117233 -3.26072e-09 0.384806)
(-0.129945 -1.63893e-08 0.382018)
(-0.14234 -6.19811e-09 0.378653)
(-0.154407 1.65048e-08 0.374758)
(-0.166137 2.43588e-08 0.370367)
(-0.177521 2.04541e-08 0.365512)
(-0.188549 1.80479e-08 0.36022)
(-0.199215 1.77877e-08 0.354515)
(-0.209511 1.27489e-08 0.348417)
(-0.219431 9.51333e-10 0.341947)
(-0.228968 -1.2465e-08 0.335124)
(-0.238118 -2.11135e-08 0.327965)
(-0.246877 -2.23964e-08 0.320488)
(-0.25524 -1.79126e-08 0.312708)
(-0.263206 -1.10386e-08 0.304642)
(-0.270771 -4.63437e-09 0.296304)
(-0.277934 -1.36277e-10 0.287709)
(-0.284692 2.26573e-09 0.278873)
(-0.291045 3.06934e-09 0.269808)
(-0.296993 2.95475e-09 0.260529)
(-0.302534 2.47897e-09 0.25105)
(-0.307669 1.9665e-09 0.241384)
(-0.312399 1.53211e-09 0.231545)
(-0.316725 1.16107e-09 0.221544)
(-0.320647 7.89079e-10 0.211397)
(-0.324168 3.63063e-10 0.201114)
(-0.32729 -1.2225e-10 0.19071)
(-0.330014 -6.13976e-10 0.180197)
(-0.332344 -1.0198e-09 0.169587)
(-0.334283 -1.24511e-09 0.158894)
(-0.335834 -1.2367e-09 0.14813)
(-0.337 -1.00661e-09 0.137308)
(-0.337786 -6.29827e-10 0.12644)
(-0.338197 -2.14731e-10 0.115539)
(-0.338235 1.34766e-10 0.104619)
(-0.337908 3.52011e-10 0.0936908)
(-0.33722 4.22435e-10 0.0827686)
(-0.336177 3.76631e-10 0.0718648)
(-0.334784 2.70886e-10 0.0609923)
(-0.333048 1.63864e-10 0.0501642)
(-0.330977 9.8112e-11 0.0393934)
(-0.328576 9.23794e-11 0.0286927)
(-0.325854 1.42769e-10 0.0180752)
(-0.322818 2.31041e-10 0.00755369)
(-0.319476 3.34653e-10 -0.00285891)
(-0.315836 4.34162e-10 -0.0131495)
(-0.311909 5.1702e-10 -0.0233051)
(-0.307703 5.78642e-10 -0.0333131)
(-0.303227 6.20029e-10 -0.0431609)
(-0.298493 6.45765e-10 -0.0528362)
(-0.293509 6.61461e-10 -0.062327)
(-0.288288 6.72239e-10 -0.0716215)
(-0.282839 6.82581e-10 -0.0807083)
(-0.277174 6.95254e-10 -0.0895764)
(-0.271305 7.11972e-10 -0.0982153)
(-0.265243 7.33248e-10 -0.106615)
(-0.259001 7.58494e-10 -0.114765)
(-0.25259 7.86632e-10 -0.122658)
(-0.246023 8.15974e-10 -0.130284)
(-0.239311 8.44623e-10 -0.137636)
(-0.232469 8.70685e-10 -0.144706)
(-0.225507 8.92931e-10 -0.151489)
(-0.218439 9.10337e-10 -0.157977)
(-0.211277 9.22314e-10 -0.164167)
(-0.204033 9.28837e-10 -0.170054)
(-0.196719 9.30264e-10 -0.175634)
(-0.189349 9.27032e-10 -0.180905)
(-0.181933 9.19625e-10 -0.185864)
(-0.174483 9.08481e-10 -0.19051)
(-0.167011 8.94034e-10 -0.194843)
(-0.159527 8.7672e-10 -0.198863)
(-0.152044 8.56821e-10 -0.20257)
(-0.144571 8.3431e-10 -0.205966)
(-0.137118 8.09624e-10 -0.209053)
(-0.129696 7.82737e-10 -0.211834)
(-0.122313 7.53878e-10 -0.214313)
(-0.114979 7.23356e-10 -0.216494)
(-0.107703 6.91222e-10 -0.218381)
(-0.100493 6.57911e-10 -0.21998)
(-0.0933556 6.23499e-10 -0.221295)
(-0.0862995 5.88345e-10 -0.222334)
(-0.0793313 5.52885e-10 -0.223102)
(-0.0724574 5.17297e-10 -0.223606)
(-0.0656839 4.81633e-10 -0.223854)
(-0.0590166 4.46379e-10 -0.223853)
(-0.0524605 4.11407e-10 -0.223611)
(-0.0460206 3.7728e-10 -0.223135)
(-0.0397013 3.43767e-10 -0.222435)
(-0.0335065 3.11305e-10 -0.221517)
(-0.0274399 2.79841e-10 -0.220391)
(-0.0215047 2.49427e-10 -0.219065)
(-0.0157039 2.19884e-10 -0.217548)
(-0.0100398 1.91416e-10 -0.215847)
(-0.00451477 1.64509e-10 -0.213973)
(0.000869477 1.39036e-10 -0.211932)
(0.00611119 1.15074e-10 -0.209734)
(0.0112092 9.29291e-11 -0.207386)
(0.0161625 7.26532e-11 -0.204898)
(0.0209705 5.40925e-11 -0.202277)
(0.0256329 3.72982e-11 -0.199531)
(0.0301494 2.2424e-11 -0.196668)
(0.0345202 9.64912e-12 -0.193695)
(0.0387455 -1.18014e-12 -0.190619)
(0.0428259 -9.91007e-12 -0.187449)
(0.0467619 -1.66175e-11 -0.18419)
(0.0505543 -2.14047e-11 -0.180849)
(0.0542041 -2.42718e-11 -0.177432)
(0.0577124 -2.53979e-11 -0.173946)
(0.0610804 -2.47573e-11 -0.170396)
(0.0643094 -2.22988e-11 -0.166787)
(0.0674008 -1.85602e-11 -0.163124)
(0.0703559 -1.35156e-11 -0.159412)
(0.0731764 -7.29321e-12 -0.155656)
(0.0758639 -1.7459e-13 -0.15186)
(0.0784199 7.55857e-12 -0.148027)
(0.080846 1.57526e-11 -0.14416)
(0.0831439 2.3921e-11 -0.140264)
(0.0853154 3.2243e-11 -0.13634)
(0.0873619 4.01038e-11 -0.132392)
(0.0892851 4.78364e-11 -0.128421)
(0.0910867 5.49798e-11 -0.12443)
(0.0927681 6.20461e-11 -0.12042)
(0.094331 6.8728e-11 -0.116393)
(0.0957767 7.55634e-11 -0.11235)
(0.0971067 8.25778e-11 -0.108293)
(0.0983224 9.00788e-11 -0.104221)
(0.0994249 9.80408e-11 -0.100136)
(0.100416 1.06694e-10 -0.0960376)
(0.101296 1.15706e-10 -0.0919272)
(0.102066 1.24129e-10 -0.0878049)
(0.102727 1.30963e-10 -0.0836707)
(0.103281 1.34748e-10 -0.0795251)
(0.103728 1.33766e-10 -0.0753683)
(0.104069 1.25147e-10 -0.0712006)
(0.104304 1.06941e-10 -0.0670224)
(0.104434 7.68168e-11 -0.0628342)
(0.10446 3.27722e-11 -0.0586367)
(0.104381 -2.60403e-11 -0.0544306)
(0.1042 -9.9418e-11 -0.0502171)
(0.103915 -1.85748e-10 -0.0459975)
(0.103527 -2.81393e-10 -0.0417734)
(0.103037 -3.81228e-10 -0.0375467)
(0.102444 -4.791e-10 -0.0333199)
(0.10175 -5.67421e-10 -0.0290956)
(0.100953 -6.38779e-10 -0.0248771)
(0.100056 -6.86787e-10 -0.020668)
(0.0990575 -7.0639e-10 -0.0164724)
(0.0979585 -6.953e-10 -0.0122952)
(0.0967594 -6.54871e-10 -0.00814155)
(0.0954607 -5.89971e-10 -0.00401723)
(0.0940633 -5.08263e-10 7.12834e-05)
(0.092568 -4.20697e-10 0.00411705)
(0.0909756 -3.38353e-10 0.00811252)
(0.0892874 -2.72467e-10 0.0120495)
(0.0875048 -2.30738e-10 0.0159192)
(0.0856293 -2.15892e-10 0.0197122)
(0.0836629 -2.25212e-10 0.0234187)
(0.0816076 -2.49465e-10 0.0270282)
(0.0794658 -2.74592e-10 0.0305297)
(0.0772405 -2.83295e-10 0.0339119)
(0.0749346 -2.59556e-10 0.037163)
(0.0725518 -1.92485e-10 0.0402707)
(0.0700958 -8.12009e-11 0.0432227)
(0.0675709 6.26e-11 0.0460064)
(0.064982 2.12842e-10 0.048609)
(0.0623342 3.32608e-10 0.0510178)
(0.0596331 3.76654e-10 0.05322)
(0.0568849 3.01675e-10 0.0552031)
(0.0540962 7.28323e-11 0.0569549)
(0.0512742 -3.27157e-10 0.0584635)
(0.0484263 -8.91386e-10 0.0597175)
(0.0455606 -1.58536e-09 0.0607062)
(0.0426858 -2.3471e-09 0.0614197)
(0.0398107 -3.08969e-09 0.0618487)
(0.0369447 -3.70611e-09 0.061985)
(0.0340978 -4.07816e-09 0.0618215)
(0.0312802 -4.08395e-09 0.0613521)
(0.0285022 -3.6111e-09 0.0605719)
(0.0257749 -2.57384e-09 0.0594771)
(0.0231093 -9.32685e-10 0.058065)
(0.0205168 1.29076e-09 0.056334)
(0.0180087 4.02708e-09 0.054283)
(0.0155969 7.23505e-09 0.0519114)
(0.013293 1.10086e-08 0.0492179)
(0.011109 1.55964e-08 0.0461994)
(0.00905711 2.12134e-08 0.0428489)
(0.00714988 2.79826e-08 0.0391506)
(0.0054006 3.64947e-08 0.035072)
(0.00382423 4.83431e-08 0.0305439)
(0.00243819 6.58967e-08 0.025409)
(0.00128389 8.569e-08 0.0192594)
(0.000431095 1.28373e-07 0.0110382)
(-0.00330535 -1.63976e-06 0.356163)
(-0.0197254 -6.21545e-07 0.374642)
(-0.0350877 1.34642e-06 0.382868)
(-0.0492934 5.66978e-07 0.386822)
(-0.0634473 -3.17752e-07 0.388605)
(-0.0773074 -4.87417e-07 0.389012)
(-0.0909032 -2.22347e-07 0.388401)
(-0.104215 -3.87096e-08 0.38696)
(-0.117233 -3.26073e-09 0.384806)
(-0.129945 -1.63893e-08 0.382018)
(-0.14234 -6.1981e-09 0.378653)
(-0.154407 1.65048e-08 0.374758)
(-0.166137 2.43588e-08 0.370367)
(-0.17752 2.04541e-08 0.365512)
(-0.188549 1.80479e-08 0.36022)
(-0.199215 1.77876e-08 0.354515)
(-0.209511 1.27489e-08 0.348417)
(-0.219431 9.51332e-10 0.341947)
(-0.228968 -1.2465e-08 0.335124)
(-0.238118 -2.11135e-08 0.327965)
(-0.246877 -2.23964e-08 0.320488)
(-0.25524 -1.79126e-08 0.312708)
(-0.263206 -1.10386e-08 0.304642)
(-0.270771 -4.63437e-09 0.296304)
(-0.277934 -1.36277e-10 0.287709)
(-0.284692 2.26573e-09 0.278873)
(-0.291046 3.06934e-09 0.269808)
(-0.296993 2.95475e-09 0.260529)
(-0.302534 2.47898e-09 0.25105)
(-0.307669 1.96651e-09 0.241384)
(-0.312399 1.53211e-09 0.231545)
(-0.316725 1.16107e-09 0.221544)
(-0.320647 7.8908e-10 0.211397)
(-0.324168 3.63064e-10 0.201114)
(-0.32729 -1.22251e-10 0.19071)
(-0.330014 -6.13977e-10 0.180197)
(-0.332344 -1.0198e-09 0.169587)
(-0.334283 -1.24511e-09 0.158894)
(-0.335834 -1.23671e-09 0.14813)
(-0.337 -1.00661e-09 0.137308)
(-0.337786 -6.29827e-10 0.12644)
(-0.338197 -2.14731e-10 0.115539)
(-0.338236 1.34766e-10 0.104619)
(-0.337908 3.52011e-10 0.0936909)
(-0.33722 4.22435e-10 0.0827686)
(-0.336177 3.76631e-10 0.0718648)
(-0.334784 2.70886e-10 0.0609924)
(-0.333049 1.63864e-10 0.0501642)
(-0.330977 9.8112e-11 0.0393934)
(-0.328576 9.23794e-11 0.0286927)
(-0.325854 1.42769e-10 0.0180752)
(-0.322818 2.31041e-10 0.00755371)
(-0.319476 3.34652e-10 -0.00285889)
(-0.315836 4.34162e-10 -0.0131495)
(-0.311909 5.1702e-10 -0.0233051)
(-0.307703 5.78642e-10 -0.0333131)
(-0.303227 6.20029e-10 -0.0431609)
(-0.298493 6.45765e-10 -0.0528362)
(-0.293509 6.6146e-10 -0.062327)
(-0.288288 6.72238e-10 -0.0716215)
(-0.282839 6.8258e-10 -0.0807083)
(-0.277174 6.95253e-10 -0.0895764)
(-0.271305 7.11971e-10 -0.0982153)
(-0.265243 7.33247e-10 -0.106615)
(-0.259001 7.58493e-10 -0.114765)
(-0.25259 7.86631e-10 -0.122658)
(-0.246023 8.15972e-10 -0.130284)
(-0.239311 8.44621e-10 -0.137636)
(-0.232469 8.70683e-10 -0.144706)
(-0.225507 8.9293e-10 -0.151489)
(-0.218439 9.10335e-10 -0.157977)
(-0.211277 9.22312e-10 -0.164167)
(-0.204033 9.28835e-10 -0.170054)
(-0.19672 9.30262e-10 -0.175634)
(-0.189349 9.27029e-10 -0.180905)
(-0.181933 9.19623e-10 -0.185864)
(-0.174483 9.08479e-10 -0.19051)
(-0.167011 8.94032e-10 -0.194843)
(-0.159527 8.76718e-10 -0.198863)
(-0.152044 8.56819e-10 -0.20257)
(-0.144571 8.34308e-10 -0.205966)
(-0.137118 8.09622e-10 -0.209053)
(-0.129696 7.82734e-10 -0.211834)
(-0.122313 7.53876e-10 -0.214313)
(-0.114979 7.23354e-10 -0.216494)
(-0.107703 6.9122e-10 -0.218381)
(-0.100493 6.57909e-10 -0.219979)
(-0.0933556 6.23497e-10 -0.221295)
(-0.0862996 5.88344e-10 -0.222333)
(-0.0793313 5.52883e-10 -0.223102)
(-0.0724574 5.17296e-10 -0.223606)
(-0.065684 4.81631e-10 -0.223854)
(-0.0590166 4.46377e-10 -0.223853)
(-0.0524606 4.11405e-10 -0.223611)
(-0.0460207 3.77278e-10 -0.223135)
(-0.0397013 3.43766e-10 -0.222435)
(-0.0335066 3.11304e-10 -0.221517)
(-0.02744 2.7984e-10 -0.220391)
(-0.0215048 2.49426e-10 -0.219065)
(-0.0157039 2.19883e-10 -0.217548)
(-0.0100399 1.91415e-10 -0.215847)
(-0.00451481 1.64509e-10 -0.213973)
(0.000869431 1.39036e-10 -0.211932)
(0.00611115 1.15074e-10 -0.209734)
(0.0112091 9.29288e-11 -0.207386)
(0.0161624 7.2653e-11 -0.204898)
(0.0209705 5.40923e-11 -0.202277)
(0.0256328 3.72981e-11 -0.199531)
(0.0301494 2.2424e-11 -0.196668)
(0.0345202 9.64909e-12 -0.193695)
(0.0387455 -1.18013e-12 -0.190619)
(0.0428258 -9.91004e-12 -0.187449)
(0.0467618 -1.66174e-11 -0.18419)
(0.0505542 -2.14047e-11 -0.180849)
(0.0542041 -2.42717e-11 -0.177432)
(0.0577124 -2.53978e-11 -0.173946)
(0.0610804 -2.47572e-11 -0.170396)
(0.0643094 -2.22988e-11 -0.166787)
(0.0674007 -1.85601e-11 -0.163124)
(0.0703559 -1.35156e-11 -0.159412)
(0.0731764 -7.29319e-12 -0.155656)
(0.0758638 -1.74589e-13 -0.15186)
(0.0784198 7.55855e-12 -0.148027)
(0.080846 1.57526e-11 -0.14416)
(0.0831439 2.39209e-11 -0.140264)
(0.0853153 3.22429e-11 -0.13634)
(0.0873618 4.01037e-11 -0.132392)
(0.0892851 4.78363e-11 -0.128421)
(0.0910866 5.49796e-11 -0.12443)
(0.0927681 6.20459e-11 -0.12042)
(0.0943309 6.87278e-11 -0.116393)
(0.0957767 7.55632e-11 -0.11235)
(0.0971067 8.25776e-11 -0.108293)
(0.0983223 9.00786e-11 -0.104221)
(0.0994249 9.80405e-11 -0.100136)
(0.100416 1.06694e-10 -0.0960376)
(0.101296 1.15706e-10 -0.0919273)
(0.102066 1.24129e-10 -0.0878049)
(0.102727 1.30963e-10 -0.0836707)
(0.103281 1.34747e-10 -0.0795251)
(0.103728 1.33765e-10 -0.0753683)
(0.104069 1.25146e-10 -0.0712006)
(0.104304 1.06941e-10 -0.0670224)
(0.104434 7.68167e-11 -0.0628342)
(0.10446 3.27722e-11 -0.0586367)
(0.104381 -2.60402e-11 -0.0544306)
(0.1042 -9.94178e-11 -0.0502171)
(0.103915 -1.85748e-10 -0.0459975)
(0.103527 -2.81393e-10 -0.0417734)
(0.103037 -3.81227e-10 -0.0375467)
(0.102444 -4.79099e-10 -0.0333199)
(0.10175 -5.67419e-10 -0.0290956)
(0.100953 -6.38777e-10 -0.0248771)
(0.100056 -6.86785e-10 -0.020668)
(0.0990575 -7.06388e-10 -0.0164725)
(0.0979585 -6.95299e-10 -0.0122952)
(0.0967594 -6.5487e-10 -0.00814155)
(0.0954607 -5.8997e-10 -0.00401724)
(0.0940633 -5.08262e-10 7.12794e-05)
(0.092568 -4.20696e-10 0.00411704)
(0.0909756 -3.38352e-10 0.00811251)
(0.0892874 -2.72466e-10 0.0120495)
(0.0875048 -2.30738e-10 0.0159192)
(0.0856293 -2.15891e-10 0.0197122)
(0.0836628 -2.25211e-10 0.0234187)
(0.0816075 -2.49465e-10 0.0270282)
(0.0794658 -2.74592e-10 0.0305297)
(0.0772405 -2.83295e-10 0.0339119)
(0.0749346 -2.59556e-10 0.037163)
(0.0725518 -1.92485e-10 0.0402707)
(0.0700957 -8.12008e-11 0.0432227)
(0.0675709 6.25999e-11 0.0460064)
(0.064982 2.12841e-10 0.048609)
(0.0623342 3.32607e-10 0.0510178)
(0.0596331 3.76653e-10 0.05322)
(0.0568849 3.01675e-10 0.0552031)
(0.0540962 7.28322e-11 0.0569549)
(0.0512742 -3.27157e-10 0.0584635)
(0.0484263 -8.91385e-10 0.0597175)
(0.0455606 -1.58536e-09 0.0607062)
(0.0426858 -2.3471e-09 0.0614197)
(0.0398107 -3.08968e-09 0.0618486)
(0.0369447 -3.7061e-09 0.061985)
(0.0340978 -4.07816e-09 0.0618215)
(0.0312801 -4.08395e-09 0.0613521)
(0.0285022 -3.6111e-09 0.0605718)
(0.0257749 -2.57384e-09 0.059477)
(0.0231093 -9.32683e-10 0.0580649)
(0.0205168 1.29076e-09 0.0563339)
(0.0180087 4.02708e-09 0.0542829)
(0.0155969 7.23503e-09 0.0519113)
(0.013293 1.10086e-08 0.0492178)
(0.011109 1.55963e-08 0.0461993)
(0.00905714 2.12133e-08 0.0428488)
(0.00714991 2.79825e-08 0.0391505)
(0.00540064 3.64946e-08 0.0350719)
(0.00382427 4.83429e-08 0.0305438)
(0.00243823 6.58966e-08 0.0254088)
(0.00128392 8.56903e-08 0.0192591)
(0.000431071 1.28373e-07 0.0110376)
(-0.0144754 2.16097e-07 0.369256)
(-0.0208917 -8.44971e-07 0.389959)
(-0.0359834 1.44557e-06 0.398283)
(-0.0506017 8.49834e-07 0.402025)
(-0.0651543 -1.75973e-07 0.403525)
(-0.0793765 -3.85565e-07 0.403636)
(-0.0933064 -3.82648e-07 0.402718)
(-0.106928 -2.96452e-07 0.400961)
(-0.120234 -1.53586e-07 0.39848)
(-0.133214 -3.55501e-08 0.395353)
(-0.145858 3.77749e-08 0.39164)
(-0.158155 6.24519e-08 0.387385)
(-0.170098 4.41453e-08 0.382626)
(-0.181678 1.27828e-08 0.377394)
(-0.192887 -2.95264e-09 0.371715)
(-0.203717 -1.75862e-10 0.365616)
(-0.214162 6.35785e-09 0.359118)
(-0.224215 4.95861e-09 0.352241)
(-0.23387 -4.33122e-09 0.345006)
(-0.243124 -1.46434e-08 0.337431)
(-0.251972 -2.00763e-08 0.329532)
(-0.26041 -1.91551e-08 0.321328)
(-0.268436 -1.38735e-08 0.312834)
(-0.276047 -7.27273e-09 0.304067)
(-0.283242 -1.68821e-09 0.295041)
(-0.290018 1.84682e-09 0.285771)
(-0.296376 3.3947e-09 0.276273)
(-0.302314 3.58749e-09 0.26656)
(-0.307832 3.13018e-09 0.256647)
(-0.312932 2.5148e-09 0.246548)
(-0.317613 1.96007e-09 0.236275)
(-0.321877 1.48899e-09 0.225844)
(-0.325725 1.03879e-09 0.215266)
(-0.329159 5.49325e-10 0.204557)
(-0.332182 8.92541e-12 0.193727)
(-0.334796 -5.34784e-10 0.182792)
(-0.337004 -9.93265e-10 0.171763)
(-0.338809 -1.27332e-09 0.160654)
(-0.340215 -1.31759e-09 0.149478)
(-0.341226 -1.12896e-09 0.138249)
(-0.341846 -7.72327e-10 0.126978)
(-0.342081 -3.50407e-10 0.115679)
(-0.341934 3.11031e-11 0.104366)
(-0.341411 2.96485e-10 0.0930505)
(-0.340519 4.18568e-10 0.081747)
(-0.339262 4.16006e-10 0.0704683)
(-0.337648 3.37857e-10 0.0592278)
(-0.335683 2.41218e-10 0.0480386)
(-0.333375 1.72066e-10 0.0369141)
(-0.33073 1.54807e-10 0.0258677)
(-0.327757 1.91309e-10 0.0149126)
(-0.324464 2.67764e-10 0.00406212)
(-0.320859 3.63886e-10 -0.0066704)
(-0.316952 4.60363e-10 -0.0172714)
(-0.312752 5.44032e-10 -0.0277275)
(-0.308269 6.08542e-10 -0.0380257)
(-0.303514 6.53689e-10 -0.0481531)
(-0.298496 6.82983e-10 -0.058097)
(-0.293227 7.01442e-10 -0.067845)
(-0.287718 7.13935e-10 -0.077385)
(-0.281981 7.24608e-10 -0.0867053)
(-0.276027 7.36485e-10 -0.0957946)
(-0.269869 7.51179e-10 -0.104642)
(-0.263519 7.69406e-10 -0.113238)
(-0.25699 7.91192e-10 -0.121571)
(-0.250294 8.15486e-10 -0.129633)
(-0.243444 8.40651e-10 -0.137416)
(-0.236453 8.65227e-10 -0.144911)
(-0.229334 8.87471e-10 -0.152111)
(-0.2221 9.05901e-10 -0.15901)
(-0.214765 9.19592e-10 -0.165601)
(-0.20734 9.27856e-10 -0.171881)
(-0.19984 9.30845e-10 -0.177844)
(-0.192275 9.28304e-10 -0.183488)
(-0.18466 9.21027e-10 -0.18881)
(-0.177006 9.09244e-10 -0.193807)
(-0.169326 8.93493e-10 -0.198479)
(-0.16163 8.7449e-10 -0.202825)
(-0.153931 8.52391e-10 -0.206846)
(-0.14624 8.27885e-10 -0.210544)
(-0.138566 8.00974e-10 -0.213919)
(-0.130922 7.71938e-10 -0.216976)
(-0.123315 7.41137e-10 -0.219716)
(-0.115757 7.0857e-10 -0.222144)
(-0.108257 6.74646e-10 -0.224264)
(-0.100822 6.39571e-10 -0.226082)
(-0.0934607 6.03396e-10 -0.227603)
(-0.0861816 5.66607e-10 -0.228832)
(-0.0789917 5.29563e-10 -0.229778)
(-0.0718978 4.92263e-10 -0.230445)
(-0.0649063 4.55066e-10 -0.230843)
(-0.0580232 4.18202e-10 -0.230978)
(-0.051254 3.81825e-10 -0.230859)
(-0.0446038 3.46293e-10 -0.230493)
(-0.0380773 3.11452e-10 -0.229889)
(-0.0316786 2.7784e-10 -0.229055)
(-0.0254117 2.45074e-10 -0.228001)
(-0.0192798 2.13255e-10 -0.226734)
(-0.0132861 1.82638e-10 -0.225265)
(-0.00743328 1.53046e-10 -0.223601)
(-0.00172358 1.25169e-10 -0.221752)
(0.00384109 9.86237e-11 -0.219727)
(0.00925878 7.37161e-11 -0.217534)
(0.0145284 5.0882e-11 -0.215182)
(0.0196489 2.9507e-11 -0.21268)
(0.0246196 1.02823e-11 -0.210036)
(0.0294401 -6.997e-12 -0.207259)
(0.0341103 -2.23052e-11 -0.204357)
(0.0386302 -3.50535e-11 -0.201338)
(0.0430002 -4.58563e-11 -0.198209)
(0.0472207 -5.4304e-11 -0.194979)
(0.0512924 -6.04221e-11 -0.191654)
(0.0552161 -6.42618e-11 -0.188242)
(0.058993 -6.5823e-11 -0.184748)
(0.0626241 -6.52849e-11 -0.18118)
(0.0661107 -6.24938e-11 -0.177544)
(0.0694542 -5.77314e-11 -0.173845)
(0.072656 -5.11767e-11 -0.170089)
(0.0757179 -4.30601e-11 -0.166281)
(0.0786413 -3.34072e-11 -0.162425)
(0.081428 -2.27044e-11 -0.158527)
(0.0840798 -1.09517e-11 -0.15459)
(0.0865983 1.39005e-12 -0.150618)
(0.0889854 1.3988e-11 -0.146615)
(0.0912428 2.67397e-11 -0.142584)
(0.0933723 3.93122e-11 -0.138527)
(0.0953758 5.15007e-11 -0.134448)
(0.0972548 6.31771e-11 -0.130347)
(0.0990112 7.44438e-11 -0.126228)
(0.100647 8.51983e-11 -0.122092)
(0.102163 9.58248e-11 -0.117941)
(0.103561 1.06298e-10 -0.113775)
(0.104843 1.1695e-10 -0.109596)
(0.106009 1.27935e-10 -0.105404)
(0.107063 1.39305e-10 -0.1012)
(0.108003 1.51084e-10 -0.0969841)
(0.108833 1.62684e-10 -0.0927574)
(0.109552 1.73209e-10 -0.0885198)
(0.110163 1.81351e-10 -0.0842714)
(0.110665 1.85573e-10 -0.0800125)
(0.111059 1.83953e-10 -0.0757432)
(0.111347 1.73467e-10 -0.0714637)
(0.111529 1.52242e-10 -0.0671744)
(0.111605 1.18101e-10 -0.0628757)
(0.111576 6.97069e-11 -0.0585682)
(0.111442 6.62349e-12 -0.0542526)
(0.111204 -7.03572e-11 -0.0499299)
(0.110862 -1.58316e-10 -0.0456014)
(0.110416 -2.52999e-10 -0.0412687)
(0.109866 -3.48513e-10 -0.0369338)
(0.109213 -4.3786e-10 -0.0325989)
(0.108456 -5.13528e-10 -0.0282668)
(0.107596 -5.68466e-10 -0.0239407)
(0.106633 -5.96927e-10 -0.0196244)
(0.105567 -5.9547e-10 -0.015322)
(0.104399 -5.63912e-10 -0.0110383)
(0.103128 -5.05734e-10 -0.00677859)
(0.101755 -4.27702e-10 -0.00254889)
(0.10028 -3.39787e-10 0.00164431)
(0.0987045 -2.53323e-10 0.00579387)
(0.097029 -1.79749e-10 0.00989207)
(0.0952543 -1.28173e-10 0.0139305)
(0.0933817 -1.03062e-10 0.0179002)
(0.0914125 -1.03548e-10 0.0217915)
(0.0893485 -1.2194e-10 0.0255942)
(0.0871915 -1.44951e-10 0.0292975)
(0.0849439 -1.55595e-10 0.0328902)
(0.0826083 -1.36678e-10 0.0363605)
(0.0801876 -7.60813e-11 0.0396963)
(0.0776853 2.96929e-11 0.0428849)
(0.075105 1.69977e-10 0.0459135)
(0.0724512 3.20191e-10 0.048769)
(0.0697283 4.4096e-10 0.0514382)
(0.0669416 4.8546e-10 0.0539079)
(0.0640968 4.05672e-10 0.0561648)
(0.0612001 1.63065e-10 0.0581959)
(0.0582581 -2.61489e-10 0.0599884)
(0.0552781 -8.59239e-10 0.0615299)
(0.0522677 -1.59062e-09 0.0628085)
(0.0492353 -2.38436e-09 0.063813)
(0.0461897 -3.14309e-09 0.0645329)
(0.0431401 -3.75175e-09 0.0649585)
(0.0400962 -4.08709e-09 0.0650812)
(0.0370683 -4.03024e-09 0.0648934)
(0.0340669 -3.47683e-09 0.0643885)
(0.0311031 -2.34925e-09 0.0635614)
(0.0281881 -6.07789e-10 0.0624079)
(0.0253335 1.73685e-09 0.0609252)
(0.0225513 4.6165e-09 0.0591113)
(0.0198534 7.92127e-09 0.056965)
(0.0172521 1.15658e-08 0.0544855)
(0.0147597 1.55898e-08 0.0516713)
(0.0123888 2.0181e-08 0.0485193)
(0.0101521 2.54906e-08 0.0450219)
(0.00806285 3.1547e-08 0.041163)
(0.00613494 3.87536e-08 0.0369088)
(0.00438408 4.8278e-08 0.0321879)
(0.00282843 6.07323e-08 0.0268391)
(0.00151272 6.25394e-08 0.0204459)
(0.000523616 -5.71725e-10 0.011944)
(-0.0144723 2.1596e-07 0.369268)
(-0.0208874 -8.4391e-07 0.389958)
(-0.0359789 1.4451e-06 0.398278)
(-0.0506007 8.4971e-07 0.402022)
(-0.0651548 -1.75966e-07 0.403524)
(-0.0793765 -3.85569e-07 0.403636)
(-0.0933059 -3.82654e-07 0.402718)
(-0.106928 -2.96455e-07 0.400961)
(-0.120234 -1.53586e-07 0.39848)
(-0.133214 -3.55501e-08 0.395353)
(-0.145858 3.77749e-08 0.39164)
(-0.158155 6.24519e-08 0.387385)
(-0.170098 4.41452e-08 0.382626)
(-0.181678 1.27828e-08 0.377394)
(-0.192887 -2.95264e-09 0.371716)
(-0.203717 -1.75862e-10 0.365616)
(-0.214162 6.35785e-09 0.359118)
(-0.224215 4.95861e-09 0.352241)
(-0.23387 -4.33122e-09 0.345006)
(-0.243124 -1.46434e-08 0.337431)
(-0.251972 -2.00763e-08 0.329532)
(-0.26041 -1.91551e-08 0.321328)
(-0.268436 -1.38735e-08 0.312834)
(-0.276047 -7.27273e-09 0.304067)
(-0.283242 -1.68821e-09 0.295041)
(-0.290018 1.84682e-09 0.285771)
(-0.296376 3.3947e-09 0.276273)
(-0.302314 3.58749e-09 0.26656)
(-0.307832 3.13018e-09 0.256647)
(-0.312932 2.5148e-09 0.246548)
(-0.317613 1.96007e-09 0.236275)
(-0.321877 1.48899e-09 0.225844)
(-0.325725 1.03879e-09 0.215267)
(-0.329159 5.49326e-10 0.204557)
(-0.332182 8.92541e-12 0.193727)
(-0.334796 -5.34784e-10 0.182792)
(-0.337004 -9.93266e-10 0.171763)
(-0.338809 -1.27333e-09 0.160654)
(-0.340215 -1.31759e-09 0.149478)
(-0.341226 -1.12897e-09 0.138249)
(-0.341846 -7.72328e-10 0.126978)
(-0.342081 -3.50407e-10 0.115679)
(-0.341934 3.11031e-11 0.104366)
(-0.341411 2.96485e-10 0.0930505)
(-0.340519 4.18568e-10 0.081747)
(-0.339262 4.16006e-10 0.0704684)
(-0.337648 3.37857e-10 0.0592278)
(-0.335684 2.41218e-10 0.0480386)
(-0.333375 1.72066e-10 0.0369141)
(-0.33073 1.54807e-10 0.0258677)
(-0.327757 1.91309e-10 0.0149126)
(-0.324464 2.67764e-10 0.00406215)
(-0.320859 3.63886e-10 -0.00667038)
(-0.316952 4.60363e-10 -0.0172713)
(-0.312752 5.44032e-10 -0.0277275)
(-0.30827 6.08542e-10 -0.0380257)
(-0.303514 6.53689e-10 -0.0481531)
(-0.298496 6.82982e-10 -0.058097)
(-0.293227 7.01442e-10 -0.067845)
(-0.287718 7.13934e-10 -0.077385)
(-0.281981 7.24607e-10 -0.0867053)
(-0.276028 7.36484e-10 -0.0957946)
(-0.269869 7.51178e-10 -0.104642)
(-0.263519 7.69405e-10 -0.113238)
(-0.25699 7.9119e-10 -0.121571)
(-0.250294 8.15485e-10 -0.129633)
(-0.243444 8.4065e-10 -0.137416)
(-0.236453 8.65225e-10 -0.144911)
(-0.229334 8.8747e-10 -0.152111)
(-0.2221 9.05899e-10 -0.15901)
(-0.214765 9.19591e-10 -0.165601)
(-0.20734 9.27854e-10 -0.171881)
(-0.19984 9.30843e-10 -0.177844)
(-0.192275 9.28302e-10 -0.183488)
(-0.18466 9.21025e-10 -0.18881)
(-0.177006 9.09242e-10 -0.193807)
(-0.169326 8.9349e-10 -0.198479)
(-0.16163 8.74488e-10 -0.202825)
(-0.153931 8.52389e-10 -0.206846)
(-0.14624 8.27883e-10 -0.210544)
(-0.138566 8.00972e-10 -0.213919)
(-0.130922 7.71936e-10 -0.216976)
(-0.123316 7.41135e-10 -0.219716)
(-0.115758 7.08568e-10 -0.222144)
(-0.108257 6.74644e-10 -0.224264)
(-0.100822 6.39569e-10 -0.226082)
(-0.0934607 6.03394e-10 -0.227603)
(-0.0861817 5.66605e-10 -0.228832)
(-0.0789917 5.29561e-10 -0.229778)
(-0.0718978 4.92261e-10 -0.230445)
(-0.0649063 4.55064e-10 -0.230843)
(-0.0580232 4.182e-10 -0.230978)
(-0.0512541 3.81823e-10 -0.230859)
(-0.0446039 3.46292e-10 -0.230493)
(-0.0380773 3.11451e-10 -0.229889)
(-0.0316787 2.7784e-10 -0.229055)
(-0.0254117 2.45073e-10 -0.228001)
(-0.0192799 2.13254e-10 -0.226734)
(-0.0132862 1.82638e-10 -0.225265)
(-0.00743333 1.53046e-10 -0.223601)
(-0.00172363 1.25169e-10 -0.221752)
(0.00384104 9.86234e-11 -0.219727)
(0.00925873 7.37159e-11 -0.217534)
(0.0145283 5.08818e-11 -0.215182)
(0.0196488 2.95069e-11 -0.21268)
(0.0246195 1.02822e-11 -0.210036)
(0.0294401 -6.99698e-12 -0.207259)
(0.0341102 -2.23051e-11 -0.204357)
(0.0386302 -3.50534e-11 -0.201338)
(0.0430001 -4.58562e-11 -0.198209)
(0.0472206 -5.43038e-11 -0.194979)
(0.0512923 -6.04219e-11 -0.191654)
(0.0552161 -6.42616e-11 -0.188242)
(0.0589929 -6.58228e-11 -0.184748)
(0.062624 -6.52847e-11 -0.18118)
(0.0661106 -6.24937e-11 -0.177544)
(0.0694541 -5.77312e-11 -0.173845)
(0.072656 -5.11765e-11 -0.170089)
(0.0757178 -4.306e-11 -0.166281)
(0.0786413 -3.34071e-11 -0.162425)
(0.081428 -2.27043e-11 -0.158527)
(0.0840797 -1.09517e-11 -0.15459)
(0.0865982 1.39005e-12 -0.150618)
(0.0889853 1.3988e-11 -0.146615)
(0.0912427 2.67396e-11 -0.142584)
(0.0933723 3.93121e-11 -0.138527)
(0.0953757 5.15006e-11 -0.134448)
(0.0972548 6.3177e-11 -0.130347)
(0.0990112 7.44436e-11 -0.126228)
(0.100647 8.51981e-11 -0.122092)
(0.102163 9.58245e-11 -0.117941)
(0.103561 1.06297e-10 -0.113775)
(0.104843 1.16949e-10 -0.109596)
(0.106009 1.27935e-10 -0.105404)
(0.107063 1.39304e-10 -0.1012)
(0.108003 1.51084e-10 -0.0969841)
(0.108833 1.62684e-10 -0.0927574)
(0.109552 1.73209e-10 -0.0885198)
(0.110163 1.81351e-10 -0.0842714)
(0.110665 1.85573e-10 -0.0800125)
(0.111059 1.83953e-10 -0.0757432)
(0.111347 1.73466e-10 -0.0714637)
(0.111529 1.52242e-10 -0.0671745)
(0.111605 1.181e-10 -0.0628757)
(0.111576 6.97067e-11 -0.0585682)
(0.111442 6.62347e-12 -0.0542526)
(0.111204 -7.03571e-11 -0.0499299)
(0.110862 -1.58315e-10 -0.0456014)
(0.110416 -2.52998e-10 -0.0412687)
(0.109866 -3.48512e-10 -0.0369338)
(0.109213 -4.37859e-10 -0.0325989)
(0.108456 -5.13527e-10 -0.0282668)
(0.107596 -5.68465e-10 -0.0239408)
(0.106633 -5.96925e-10 -0.0196244)
(0.105567 -5.95469e-10 -0.015322)
(0.104399 -5.63911e-10 -0.0110383)
(0.103128 -5.05733e-10 -0.0067786)
(0.101754 -4.27701e-10 -0.0025489)
(0.10028 -3.39786e-10 0.0016443)
(0.0987045 -2.53322e-10 0.00579386)
(0.097029 -1.79749e-10 0.00989207)
(0.0952543 -1.28173e-10 0.0139305)
(0.0933817 -1.03062e-10 0.0179002)
(0.0914125 -1.03548e-10 0.0217915)
(0.0893485 -1.2194e-10 0.0255942)
(0.0871915 -1.4495e-10 0.0292975)
(0.0849439 -1.55594e-10 0.0328902)
(0.0826083 -1.36677e-10 0.0363605)
(0.0801876 -7.60811e-11 0.0396963)
(0.0776853 2.96929e-11 0.0428849)
(0.075105 1.69977e-10 0.0459135)
(0.0724511 3.2019e-10 0.048769)
(0.0697283 4.4096e-10 0.0514382)
(0.0669416 4.8546e-10 0.0539079)
(0.0640968 4.05672e-10 0.0561648)
(0.0612001 1.63065e-10 0.0581959)
(0.0582581 -2.61489e-10 0.0599884)
(0.0552781 -8.59238e-10 0.0615298)
(0.0522677 -1.59062e-09 0.0628085)
(0.0492353 -2.38436e-09 0.063813)
(0.0461897 -3.14309e-09 0.0645329)
(0.0431401 -3.75175e-09 0.0649585)
(0.0400962 -4.08708e-09 0.0650812)
(0.0370683 -4.03024e-09 0.0648933)
(0.0340669 -3.47682e-09 0.0643885)
(0.031103 -2.34925e-09 0.0635614)
(0.0281881 -6.07788e-10 0.0624079)
(0.0253335 1.73685e-09 0.0609251)
(0.0225513 4.61649e-09 0.0591112)
(0.0198534 7.92125e-09 0.0569649)
(0.0172521 1.15658e-08 0.0544854)
(0.0147598 1.55897e-08 0.0516712)
(0.0123888 2.0181e-08 0.0485192)
(0.0101522 2.54905e-08 0.0450218)
(0.00806289 3.15469e-08 0.0411629)
(0.00613499 3.87535e-08 0.0369086)
(0.00438414 4.82779e-08 0.0321878)
(0.00282849 6.07322e-08 0.0268389)
(0.00151277 6.25395e-08 0.0204456)
(0.000523618 -5.71725e-10 0.0119434)
(-0.0255131 5.68706e-06 0.382746)
(-0.0220888 -5.39195e-06 0.405304)
(-0.0374339 -1.80732e-06 0.413956)
(-0.0520889 -4.68593e-07 0.417536)
(-0.0669152 -1.01472e-07 0.418787)
(-0.0814584 -1.32259e-07 0.418604)
(-0.0957099 -3.5531e-07 0.417367)
(-0.109637 -3.96908e-07 0.415274)
(-0.123229 -2.6907e-07 0.412445)
(-0.136475 -1.07292e-07 0.40896)
(-0.149365 2.38183e-08 0.404879)
(-0.16189 8.16473e-08 0.400246)
(-0.174042 6.24492e-08 0.395099)
(-0.185813 1.21449e-08 0.389471)
(-0.197196 -1.93192e-08 0.38339)
(-0.208185 -1.86326e-08 0.37688)
(-0.218771 -3.49911e-09 0.369964)
(-0.22895 5.63013e-09 0.362665)
(-0.238717 2.3093e-09 0.355002)
(-0.248066 -7.85207e-09 0.346993)
(-0.256993 -1.6571e-08 0.338659)
(-0.265497 -1.92917e-08 0.330014)
(-0.273573 -1.61499e-08 0.321078)
(-0.28122 -9.90082e-09 0.311866)
(-0.288435 -3.54076e-09 0.302393)
(-0.295219 1.07093e-09 0.292676)
(-0.301569 3.46485e-09 0.28273)
(-0.307486 4.11254e-09 0.272569)
(-0.31297 3.79159e-09 0.262207)
(-0.318021 3.13432e-09 0.25166)
(-0.322641 2.46981e-09 0.240942)
(-0.32683 1.87944e-09 0.230065)
(-0.330591 1.32413e-09 0.219045)
(-0.333925 7.50896e-10 0.207895)
(-0.336836 1.47453e-10 0.196628)
(-0.339326 -4.44671e-10 0.185257)
(-0.341398 -9.46579e-10 0.173797)
(-0.343056 -1.27295e-09 0.162261)
(-0.344303 -1.36652e-09 0.150662)
(-0.345145 -1.22348e-09 0.139013)
(-0.345586 -8.97077e-10 0.127329)
(-0.34563 -4.8142e-10 0.115621)
(-0.345283 -7.99155e-11 0.103905)
(-0.344551 2.25732e-10 0.0921926)
(-0.343441 3.96749e-10 0.0804985)
(-0.341957 4.39675e-10 0.068836)
(-0.340107 3.94598e-10 0.0572187)
(-0.337899 3.14871e-10 0.0456603)
(-0.33534 2.4785e-10 0.0341745)
(-0.332438 2.22345e-10 0.0227751)
(-0.3292 2.46114e-10 0.0114757)
(-0.325637 3.10294e-10 0.00029005)
(-0.321757 3.96982e-10 -0.010768)
(-0.317569 4.88226e-10 -0.0216844)
(-0.313084 5.70273e-10 -0.0324455)
(-0.308313 6.36058e-10 -0.0430378)
(-0.303265 6.83786e-10 -0.053448)
(-0.297953 7.16047e-10 -0.0636631)
(-0.292388 7.37168e-10 -0.0736702)
(-0.286582 7.51272e-10 -0.0834571)
(-0.280546 7.62329e-10 -0.0930116)
(-0.274294 7.73411e-10 -0.102322)
(-0.267839 7.86157e-10 -0.111378)
(-0.261192 8.01438e-10 -0.120168)
(-0.254369 8.19381e-10 -0.128682)
(-0.247381 8.39397e-10 -0.136911)
(-0.240242 8.60105e-10 -0.144847)
(-0.232966 8.80044e-10 -0.152482)
(-0.225567 8.97935e-10 -0.159807)
(-0.218057 9.12061e-10 -0.166817)
(-0.210451 9.21579e-10 -0.173506)
(-0.202762 9.25926e-10 -0.17987)
(-0.195003 9.24716e-10 -0.185903)
(-0.187187 9.18105e-10 -0.191604)
(-0.179328 9.06477e-10 -0.196968)
(-0.171437 8.90292e-10 -0.201996)
(-0.163527 8.70063e-10 -0.206686)
(-0.15561 8.46583e-10 -0.211038)
(-0.147697 8.20006e-10 -0.215053)
(-0.139801 7.91049e-10 -0.218732)
(-0.131931 7.59994e-10 -0.222078)
(-0.124099 7.2707e-10 -0.225095)
(-0.116314 6.92509e-10 -0.227785)
(-0.108585 6.56745e-10 -0.230153)
(-0.100923 6.1983e-10 -0.232203)
(-0.0933353 5.82173e-10 -0.233943)
(-0.0858303 5.43929e-10 -0.235377)
(-0.0784159 5.05275e-10 -0.236512)
(-0.0710991 4.66391e-10 -0.237355)
(-0.0638868 4.27712e-10 -0.237914)
(-0.0567852 3.89213e-10 -0.238197)
(-0.0498001 3.51354e-10 -0.23821)
(-0.0429369 3.14213e-10 -0.237964)
(-0.0362005 2.78223e-10 -0.237466)
(-0.0295953 2.42976e-10 -0.236725)
(-0.0231254 2.08651e-10 -0.235751)
(-0.0167943 1.75503e-10 -0.234553)
(-0.0106054 1.43507e-10 -0.233139)
(-0.00456132 1.12766e-10 -0.231519)
(0.00133548 8.33556e-11 -0.229702)
(0.00708269 5.56344e-11 -0.227698)
(0.0126787 2.97562e-11 -0.225516)
(0.018122 5.72091e-12 -0.223164)
(0.0234118 -1.64715e-11 -0.220653)
(0.0285472 -3.66674e-11 -0.217991)
(0.0335279 -5.47132e-11 -0.215186)
(0.0383536 -7.03017e-11 -0.212249)
(0.0430245 -8.34586e-11 -0.209186)
(0.0475409 -9.40814e-11 -0.206006)
(0.0519032 -1.02119e-10 -0.202718)
(0.0561123 -1.0752e-10 -0.199328)
(0.0601689 -1.1031e-10 -0.195845)
(0.0640743 -1.10514e-10 -0.192276)
(0.0678295 -1.07954e-10 -0.188627)
(0.0714361 -1.03089e-10 -0.184904)
(0.0748954 -9.58186e-11 -0.181115)
(0.078209 -8.6218e-11 -0.177265)
(0.0813787 -7.46972e-11 -0.173359)
(0.0844061 -6.15633e-11 -0.169403)
(0.0872931 -4.6893e-11 -0.165402)
(0.0900415 -3.08912e-11 -0.161359)
(0.0926533 -1.40954e-11 -0.15728)
(0.0951303 3.264e-12 -0.153168)
(0.0974745 2.07517e-11 -0.149027)
(0.0996878 3.80861e-11 -0.144859)
(0.101772 5.52672e-11 -0.140668)
(0.103729 7.18596e-11 -0.136456)
(0.105561 8.79146e-11 -0.132225)
(0.10727 1.03253e-10 -0.127977)
(0.108857 1.18182e-10 -0.123714)
(0.110324 1.3265e-10 -0.119437)
(0.111672 1.46939e-10 -0.115148)
(0.112904 1.61433e-10 -0.110846)
(0.11402 1.76184e-10 -0.106534)
(0.115023 1.91038e-10 -0.102211)
(0.115912 2.05841e-10 -0.0978772)
(0.11669 2.19901e-10 -0.0935338)
(0.117358 2.32348e-10 -0.0891805)
(0.117916 2.41593e-10 -0.0848175)
(0.118366 2.45664e-10 -0.0804448)
(0.118708 2.42484e-10 -0.0760626)
(0.118943 2.29644e-10 -0.0716709)
(0.119071 2.04863e-10 -0.0672699)
(0.119094 1.66474e-10 -0.0628601)
(0.11901 1.13399e-10 -0.0584418)
(0.118822 4.59435e-11 -0.0540159)
(0.118528 -3.42039e-11 -0.0495831)
(0.118129 -1.23098e-10 -0.0451447)
(0.117626 -2.16128e-10 -0.0407024)
(0.117017 -3.06144e-10 -0.0362578)
(0.116304 -3.86148e-10 -0.0318135)
(0.115486 -4.48474e-10 -0.027372)
(0.114563 -4.86816e-10 -0.0229366)
(0.113536 -4.96476e-10 -0.0185111)
(0.112403 -4.75811e-10 -0.0140996)
(0.111166 -4.26713e-10 -0.00970701)
(0.109824 -3.54687e-10 -0.00533876)
(0.108377 -2.68551e-10 -0.0010009)
(0.106826 -1.79457e-10 0.00329997)
(0.105171 -9.88906e-11 0.00755659)
(0.103413 -3.71634e-11 0.011761)
(0.101552 -9.9756e-13 0.0159046)
(0.0995896 9.1921e-12 0.0199782)
(0.0975267 -1.1868e-12 0.0239718)
(0.0953647 -2.03382e-11 0.027875)
(0.0931055 -3.14863e-11 0.0316768)
(0.0907511 -1.70303e-11 0.0353654)
(0.088304 3.72997e-11 0.0389287)
(0.0857668 1.36694e-10 0.0423542)
(0.083143 2.73465e-10 0.0456288)
(0.0804361 4.24215e-10 0.0487393)
(0.0776502 5.49941e-10 0.051672)
(0.0747901 6.01312e-10 0.0544132)
(0.0718607 5.26008e-10 0.0569492)
(0.0688677 2.80988e-10 0.0592662)
(0.0658174 -1.57288e-10 0.0613506)
(0.0627165 -7.82282e-10 0.0631891)
(0.0595723 -1.55177e-09 0.0647686)
(0.0563927 -2.38818e-09 0.0660768)
(0.0531861 -3.18456e-09 0.0671017)
(0.0499617 -3.81391e-09 0.0678325)
(0.0467288 -4.14479e-09 0.0682589)
(0.0434976 -4.05476e-09 0.0683717)
(0.0402786 -3.44396e-09 0.0681628)
(0.0370829 -2.24665e-09 0.0676254)
(0.0339219 -4.40903e-10 0.0667538)
(0.0308074 1.94663e-09 0.0655436)
(0.0277515 4.83762e-09 0.0639915)
(0.0247666 8.10217e-09 0.0620954)
(0.0218654 1.15745e-08 0.0598539)
(0.0190606 1.51078e-08 0.057266)
(0.0163652 1.8671e-08 0.0543302)
(0.0137924 2.23766e-08 0.0510428)
(0.0113556 2.62988e-08 0.0473962)
(0.00906857 3.03494e-08 0.0433735)
(0.00694596 3.46467e-08 0.0389399)
(0.00500421 3.96031e-08 0.0340217)
(0.0032622 4.29178e-08 0.0284533)
(0.00176805 1.74318e-08 0.0218092)
(0.0006274 -1.94478e-07 0.0130154)
(-0.0254839 5.68184e-06 0.382769)
(-0.0220952 -5.38563e-06 0.4053)
(-0.0374311 -1.80899e-06 0.413948)
(-0.0520884 -4.68809e-07 0.417532)
(-0.066915 -1.01484e-07 0.418785)
(-0.0814578 -1.32264e-07 0.418604)
(-0.0957094 -3.55317e-07 0.417367)
(-0.109637 -3.96912e-07 0.415274)
(-0.12323 -2.69071e-07 0.412445)
(-0.136475 -1.07292e-07 0.40896)
(-0.149365 2.38183e-08 0.404879)
(-0.16189 8.16472e-08 0.400246)
(-0.174041 6.24492e-08 0.395099)
(-0.185813 1.21449e-08 0.389471)
(-0.197196 -1.93192e-08 0.38339)
(-0.208185 -1.86326e-08 0.37688)
(-0.218771 -3.49911e-09 0.369964)
(-0.22895 5.63013e-09 0.362665)
(-0.238717 2.3093e-09 0.355002)
(-0.248066 -7.85207e-09 0.346993)
(-0.256993 -1.6571e-08 0.338659)
(-0.265497 -1.92917e-08 0.330015)
(-0.273573 -1.61499e-08 0.321078)
(-0.28122 -9.90082e-09 0.311866)
(-0.288435 -3.54076e-09 0.302393)
(-0.295219 1.07093e-09 0.292676)
(-0.301569 3.46485e-09 0.28273)
(-0.307486 4.11254e-09 0.272569)
(-0.31297 3.79159e-09 0.262207)
(-0.318021 3.13432e-09 0.25166)
(-0.322641 2.46981e-09 0.240942)
(-0.32683 1.87944e-09 0.230066)
(-0.330591 1.32414e-09 0.219045)
(-0.333926 7.50897e-10 0.207895)
(-0.336836 1.47453e-10 0.196628)
(-0.339326 -4.44671e-10 0.185257)
(-0.341398 -9.46579e-10 0.173797)
(-0.343056 -1.27295e-09 0.162261)
(-0.344303 -1.36652e-09 0.150662)
(-0.345145 -1.22348e-09 0.139013)
(-0.345586 -8.97077e-10 0.127329)
(-0.34563 -4.8142e-10 0.115621)
(-0.345283 -7.99155e-11 0.103905)
(-0.344552 2.25732e-10 0.0921927)
(-0.343441 3.96749e-10 0.0804986)
(-0.341957 4.39675e-10 0.068836)
(-0.340108 3.94598e-10 0.0572187)
(-0.337899 3.14871e-10 0.0456603)
(-0.33534 2.4785e-10 0.0341745)
(-0.332438 2.22345e-10 0.0227751)
(-0.3292 2.46114e-10 0.0114757)
(-0.325637 3.10294e-10 0.000290076)
(-0.321757 3.96982e-10 -0.0107679)
(-0.317569 4.88226e-10 -0.0216843)
(-0.313084 5.70273e-10 -0.0324455)
(-0.308313 6.36057e-10 -0.0430378)
(-0.303265 6.83786e-10 -0.053448)
(-0.297953 7.16046e-10 -0.063663)
(-0.292388 7.37167e-10 -0.0736702)
(-0.286582 7.51271e-10 -0.083457)
(-0.280546 7.62328e-10 -0.0930115)
(-0.274294 7.7341e-10 -0.102322)
(-0.267839 7.86156e-10 -0.111378)
(-0.261192 8.01436e-10 -0.120168)
(-0.254369 8.19379e-10 -0.128682)
(-0.247381 8.39396e-10 -0.136911)
(-0.240242 8.60103e-10 -0.144847)
(-0.232966 8.80042e-10 -0.152482)
(-0.225567 8.97933e-10 -0.159807)
(-0.218057 9.12059e-10 -0.166817)
(-0.210451 9.21577e-10 -0.173506)
(-0.202762 9.25923e-10 -0.17987)
(-0.195003 9.24714e-10 -0.185903)
(-0.187187 9.18103e-10 -0.191604)
(-0.179328 9.06475e-10 -0.196968)
(-0.171437 8.9029e-10 -0.201996)
(-0.163527 8.70061e-10 -0.206686)
(-0.15561 8.46581e-10 -0.211038)
(-0.147697 8.20004e-10 -0.215053)
(-0.139801 7.91047e-10 -0.218732)
(-0.131931 7.59992e-10 -0.222078)
(-0.124099 7.27068e-10 -0.225095)
(-0.116314 6.92507e-10 -0.227785)
(-0.108585 6.56743e-10 -0.230152)
(-0.100923 6.19828e-10 -0.232203)
(-0.0933353 5.82172e-10 -0.233943)
(-0.0858304 5.43927e-10 -0.235377)
(-0.0784159 5.05273e-10 -0.236512)
(-0.0710991 4.66389e-10 -0.237355)
(-0.0638868 4.27711e-10 -0.237914)
(-0.0567852 3.89212e-10 -0.238197)
(-0.0498001 3.51353e-10 -0.23821)
(-0.0429369 3.14212e-10 -0.237964)
(-0.0362005 2.78222e-10 -0.237466)
(-0.0295953 2.42975e-10 -0.236725)
(-0.0231254 2.0865e-10 -0.235751)
(-0.0167944 1.75503e-10 -0.234553)
(-0.0106054 1.43507e-10 -0.233139)
(-0.00456137 1.12766e-10 -0.231519)
(0.00133544 8.33553e-11 -0.229702)
(0.00708265 5.56342e-11 -0.227698)
(0.0126786 2.97561e-11 -0.225516)
(0.018122 5.72089e-12 -0.223164)
(0.0234117 -1.64714e-11 -0.220653)
(0.0285472 -3.66672e-11 -0.217991)
(0.0335278 -5.4713e-11 -0.215186)
(0.0383536 -7.03015e-11 -0.212249)
(0.0430245 -8.34584e-11 -0.209186)
(0.0475408 -9.40811e-11 -0.206006)
(0.0519032 -1.02119e-10 -0.202718)
(0.0561122 -1.0752e-10 -0.199328)
(0.0601689 -1.10309e-10 -0.195845)
(0.0640742 -1.10514e-10 -0.192276)
(0.0678295 -1.07954e-10 -0.188627)
(0.071436 -1.03089e-10 -0.184904)
(0.0748953 -9.58184e-11 -0.181115)
(0.078209 -8.62178e-11 -0.177265)
(0.0813786 -7.4697e-11 -0.173359)
(0.084406 -6.15631e-11 -0.169403)
(0.087293 -4.68929e-11 -0.165402)
(0.0900415 -3.08911e-11 -0.161359)
(0.0926532 -1.40954e-11 -0.15728)
(0.0951303 3.264e-12 -0.153168)
(0.0974745 2.07517e-11 -0.149027)
(0.0996878 3.8086e-11 -0.144859)
(0.101772 5.52671e-11 -0.140668)
(0.103729 7.18595e-11 -0.136456)
(0.105561 8.79144e-11 -0.132225)
(0.10727 1.03253e-10 -0.127977)
(0.108857 1.18181e-10 -0.123714)
(0.110324 1.32649e-10 -0.119437)
(0.111672 1.46939e-10 -0.115148)
(0.112904 1.61433e-10 -0.110846)
(0.11402 1.76184e-10 -0.106534)
(0.115023 1.91037e-10 -0.102211)
(0.115912 2.0584e-10 -0.0978772)
(0.11669 2.199e-10 -0.0935338)
(0.117358 2.32347e-10 -0.0891805)
(0.117916 2.41593e-10 -0.0848175)
(0.118366 2.45663e-10 -0.0804448)
(0.118708 2.42483e-10 -0.0760626)
(0.118943 2.29643e-10 -0.0716709)
(0.119071 2.04863e-10 -0.0672699)
(0.119094 1.66474e-10 -0.0628601)
(0.11901 1.13399e-10 -0.0584418)
(0.118822 4.59434e-11 -0.0540159)
(0.118528 -3.42038e-11 -0.0495831)
(0.118129 -1.23098e-10 -0.0451448)
(0.117626 -2.16128e-10 -0.0407024)
(0.117017 -3.06143e-10 -0.0362579)
(0.116304 -3.86147e-10 -0.0318135)
(0.115486 -4.48473e-10 -0.027372)
(0.114563 -4.86815e-10 -0.0229366)
(0.113536 -4.96475e-10 -0.0185111)
(0.112403 -4.7581e-10 -0.0140996)
(0.111166 -4.26712e-10 -0.00970702)
(0.109824 -3.54687e-10 -0.00533877)
(0.108377 -2.68551e-10 -0.00100091)
(0.106826 -1.79456e-10 0.00329997)
(0.105171 -9.88905e-11 0.00755659)
(0.103413 -3.71633e-11 0.011761)
(0.101552 -9.97558e-13 0.0159046)
(0.0995896 9.19209e-12 0.0199782)
(0.0975267 -1.18679e-12 0.0239718)
(0.0953647 -2.03381e-11 0.027875)
(0.0931055 -3.14862e-11 0.0316768)
(0.0907511 -1.70303e-11 0.0353654)
(0.0883039 3.72996e-11 0.0389287)
(0.0857668 1.36694e-10 0.0423542)
(0.083143 2.73464e-10 0.0456288)
(0.0804361 4.24214e-10 0.0487393)
(0.0776502 5.4994e-10 0.051672)
(0.07479 6.01311e-10 0.0544132)
(0.0718607 5.26007e-10 0.0569492)
(0.0688677 2.80988e-10 0.0592662)
(0.0658174 -1.57288e-10 0.0613506)
(0.0627165 -7.82281e-10 0.0631891)
(0.0595723 -1.55176e-09 0.0647686)
(0.0563927 -2.38817e-09 0.0660767)
(0.0531861 -3.18456e-09 0.0671017)
(0.0499617 -3.81391e-09 0.0678325)
(0.0467288 -4.14479e-09 0.0682588)
(0.0434976 -4.05475e-09 0.0683716)
(0.0402786 -3.44396e-09 0.0681628)
(0.0370829 -2.24664e-09 0.0676254)
(0.0339219 -4.40902e-10 0.0667537)
(0.0308074 1.94663e-09 0.0655435)
(0.0277515 4.83762e-09 0.0639914)
(0.0247666 8.10215e-09 0.0620953)
(0.0218654 1.15745e-08 0.0598539)
(0.0190606 1.51078e-08 0.057266)
(0.0163653 1.8671e-08 0.0543301)
(0.0137925 2.23766e-08 0.0510427)
(0.0113556 2.62988e-08 0.0473961)
(0.00906862 3.03493e-08 0.0433734)
(0.00694602 3.46466e-08 0.0389397)
(0.00500429 3.9603e-08 0.0340216)
(0.00326228 4.29178e-08 0.028453)
(0.00176813 1.74318e-08 0.0218089)
(0.000627443 -1.94478e-07 0.0130147)
(-0.00904582 2.014e-05 0.399846)
(-0.0220614 -2.43522e-06 0.420748)
(-0.0379662 -2.03691e-06 0.429899)
(-0.0533233 -9.00962e-07 0.433411)
(-0.0685993 -1.56728e-08 0.434422)
(-0.0835182 -1.41616e-08 0.433929)
(-0.0981043 -2.2831e-07 0.432352)
(-0.112338 -2.43859e-07 0.4299)
(-0.126212 -1.92248e-07 0.4267)
(-0.139719 -1.17366e-07 0.422835)
(-0.15285 -6.5294e-09 0.418365)
(-0.165598 7.02282e-08 0.413334)
(-0.177953 6.43151e-08 0.407781)
(-0.18991 9.63237e-09 0.401739)
(-0.201462 -3.19412e-08 0.395236)
(-0.212601 -3.45391e-08 0.388298)
(-0.223322 -1.37687e-08 0.380949)
(-0.233619 4.34372e-09 0.37321)
(-0.243487 7.33034e-09 0.365101)
(-0.252922 -1.47569e-09 0.356644)
(-0.26192 -1.2487e-08 0.347857)
(-0.270479 -1.85242e-08 0.338757)
(-0.278594 -1.77518e-08 0.329362)
(-0.286265 -1.22949e-08 0.319689)
(-0.293491 -5.52224e-09 0.309755)
(-0.300269 1.77962e-12 0.299575)
(-0.3066 3.25547e-09 0.289166)
(-0.312483 4.46436e-09 0.278541)
(-0.31792 4.39618e-09 0.267718)
(-0.322909 3.7755e-09 0.256709)
(-0.327454 3.0312e-09 0.24553)
(-0.331555 2.31699e-09 0.234195)
(-0.335215 1.63773e-09 0.222719)
(-0.338436 9.6388e-10 0.211114)
(-0.34122 2.90795e-10 0.199397)
(-0.343571 -3.4615e-10 0.187579)
(-0.345493 -8.82205e-10 0.175675)
(-0.346988 -1.24504e-09 0.1637)
(-0.348063 -1.3833e-09 0.151665)
(-0.34872 -1.28763e-09 0.139587)
(-0.348966 -9.99958e-10 0.127477)
(-0.348805 -6.02267e-10 0.11535)
(-0.348244 -1.92757e-10 0.103221)
(-0.347288 1.4416e-10 0.091102)
(-0.345944 3.59724e-10 0.0790079)
(-0.344218 4.48437e-10 0.0669525)
(-0.342118 4.40062e-10 0.05495)
(-0.339652 3.82519e-10 0.0430144)
(-0.336828 3.2275e-10 0.0311598)
(-0.333653 2.92944e-10 0.0194003)
(-0.330138 3.05955e-10 0.00775011)
(-0.32629 3.57196e-10 -0.00377668)
(-0.32212 4.33121e-10 -0.0151655)
(-0.317639 5.17161e-10 -0.026402)
(-0.312856 5.95565e-10 -0.0374722)
(-0.307784 6.60626e-10 -0.048362)
(-0.302433 7.09886e-10 -0.0590578)
(-0.296815 7.44321e-10 -0.0695462)
(-0.290942 7.67667e-10 -0.079814)
(-0.284828 7.83306e-10 -0.0898484)
(-0.278484 7.94925e-10 -0.0996371)
(-0.271925 8.05289e-10 -0.109168)
(-0.265164 8.15935e-10 -0.11843)
(-0.258213 8.28039e-10 -0.127413)
(-0.251088 8.42064e-10 -0.136106)
(-0.243802 8.57445e-10 -0.144499)
(-0.236369 8.7321e-10 -0.152584)
(-0.228804 8.88309e-10 -0.160353)
(-0.22112 9.01206e-10 -0.167799)
(-0.213331 9.10622e-10 -0.174914)
(-0.205453 9.15762e-10 -0.181695)
(-0.197498 9.155e-10 -0.188135)
(-0.18948 9.10145e-10 -0.194231)
(-0.181413 8.99183e-10 -0.199981)
(-0.173309 8.83282e-10 -0.205381)
(-0.165183 8.62773e-10 -0.210431)
(-0.157046 8.38297e-10 -0.21513)
(-0.14891 8.10417e-10 -0.219478)
(-0.140788 7.79721e-10 -0.223478)
(-0.132691 7.468e-10 -0.22713)
(-0.12463 7.11831e-10 -0.230438)
(-0.116616 6.75456e-10 -0.233405)
(-0.108658 6.37724e-10 -0.236035)
(-0.100766 5.99123e-10 -0.238333)
(-0.0929486 5.59754e-10 -0.240305)
(-0.0852154 5.19849e-10 -0.241957)
(-0.0775741 4.79713e-10 -0.243295)
(-0.0700321 4.39348e-10 -0.244326)
(-0.0625967 3.99137e-10 -0.245059)
(-0.0552743 3.59131e-10 -0.2455)
(-0.0480712 3.19637e-10 -0.245658)
(-0.0409928 2.81091e-10 -0.245542)
(-0.0340445 2.43364e-10 -0.24516)
(-0.0272308 2.06635e-10 -0.244522)
(-0.020556 1.70572e-10 -0.243637)
(-0.0140239 1.35508e-10 -0.242515)
(-0.0076379 1.01723e-10 -0.241164)
(-0.00140089 6.96784e-11 -0.239596)
(0.00468456 3.87602e-11 -0.237818)
(0.010616 9.45436e-12 -0.235842)
(0.0163917 -1.75736e-11 -0.233676)
(0.0220103 -4.28867e-11 -0.23133)
(0.0274707 -6.63059e-11 -0.228815)
(0.0327722 -8.73192e-11 -0.226138)
(0.0379143 -1.06055e-10 -0.223311)
(0.0428968 -1.22077e-10 -0.220341)
(0.0477199 -1.35361e-10 -0.217237)
(0.0523837 -1.45932e-10 -0.214009)
(0.056889 -1.53457e-10 -0.210665)
(0.0612363 -1.58115e-10 -0.207213)
(0.0654268 -1.59599e-10 -0.203661)
(0.0694615 -1.58268e-10 -0.200016)
(0.0733418 -1.53891e-10 -0.196286)
(0.077069 -1.46569e-10 -0.192478)
(0.0806447 -1.36637e-10 -0.188598)
(0.0840707 -1.23914e-10 -0.184653)
(0.0873487 -1.09016e-10 -0.180649)
(0.0904806 -9.1966e-11 -0.176591)
(0.0934683 -7.31755e-11 -0.172485)
(0.0963138 -5.30022e-11 -0.168336)
(0.0990192 -3.16508e-11 -0.164148)
(0.101586 -9.53093e-12 -0.159925)
(0.104018 1.29222e-11 -0.155671)
(0.106315 3.54015e-11 -0.151391)
(0.10848 5.76508e-11 -0.147085)
(0.110516 7.93118e-11 -0.142759)
(0.112424 1.00436e-10 -0.138413)
(0.114205 1.20792e-10 -0.134051)
(0.115863 1.40432e-10 -0.129674)
(0.117399 1.59509e-10 -0.125284)
(0.118814 1.78253e-10 -0.120881)
(0.120111 1.96717e-10 -0.116467)
(0.121291 2.15232e-10 -0.112043)
(0.122355 2.33799e-10 -0.10761)
(0.123305 2.52392e-10 -0.103167)
(0.124142 2.70398e-10 -0.0987157)
(0.124868 2.87148e-10 -0.0942554)
(0.125483 3.01364e-10 -0.0897862)
(0.125989 3.11354e-10 -0.0853084)
(0.126385 3.15222e-10 -0.0808217)
(0.126674 3.10585e-10 -0.0763262)
(0.126856 2.94829e-10 -0.071822)
(0.126931 2.66313e-10 -0.067309)
(0.1269 2.23371e-10 -0.0627875)
(0.126763 1.65564e-10 -0.058258)
(0.126519 9.40447e-11 -0.053721)
(0.126171 1.11925e-11 -0.0491774)
(0.125716 -7.83045e-11 -0.0446283)
(0.125156 -1.68707e-10 -0.0400752)
(0.12449 -2.52662e-10 -0.0355199)
(0.123718 -3.2294e-10 -0.0309647)
(0.12284 -3.71954e-10 -0.0264123)
(0.121855 -3.94446e-10 -0.0218658)
(0.120764 -3.87105e-10 -0.0173291)
(0.119566 -3.49979e-10 -0.0128064)
(0.118261 -2.87137e-10 -0.00830256)
(0.116849 -2.05984e-10 -0.00382311)
(0.11533 -1.16772e-10 0.000625818)
(0.113704 -3.12164e-11 0.00503748)
(0.11197 3.94014e-11 0.00940451)
(0.11013 8.71298e-11 0.0137187)
(0.108184 1.09016e-10 0.0179714)
(0.106132 1.08185e-10 0.022153)
(0.103975 9.4942e-11 0.0262534)
(0.101715 8.48282e-11 0.0302617)
(0.0993535 9.56964e-11 0.0341667)
(0.0968916 1.43557e-10 0.0379563)
(0.094332 2.36421e-10 0.0416179)
(0.091677 3.6932e-10 0.0451385)
(0.0889299 5.21327e-10 0.0485048)
(0.0860941 6.54779e-10 0.0517028)
(0.0831736 7.18612e-10 0.0547186)
(0.0801729 6.57079e-10 0.0575378)
(0.0770971 4.21349e-10 0.0601462)
(0.0739517 -1.79663e-11 0.0625292)
(0.0707429 -6.59105e-10 0.0646729)
(0.0674776 -1.4619e-09 0.0665632)
(0.0641631 -2.34518e-09 0.0681865)
(0.0608075 -3.19413e-09 0.0695298)
(0.0574193 -3.87159e-09 0.0705807)
(0.0540079 -4.23492e-09 0.0713274)
(0.050583 -4.15325e-09 0.0717593)
(0.047155 -3.52479e-09 0.0718667)
(0.0437348 -2.29066e-09 0.0716408)
(0.0403339 -4.46224e-10 0.0710744)
(0.0369643 1.95447e-09 0.0701614)
(0.0336381 4.79941e-09 0.0688969)
(0.0303681 7.92476e-09 0.0672774)
(0.0271672 1.11234e-08 0.0653005)
(0.0240488 1.41601e-08 0.0629646)
(0.0210261 1.68163e-08 0.0602683)
(0.0181129 1.89798e-08 0.0572101)
(0.0153229 2.0683e-08 0.0537862)
(0.0126702 2.19211e-08 0.0499883)
(0.0101693 2.24642e-08 0.0457992)
(0.00783551 2.20437e-08 0.0411827)
(0.00568607 1.99699e-08 0.0360629)
(0.00374061 9.89967e-09 0.0302695)
(0.00205059 -5.19383e-08 0.0233677)
(0.00074273 -4.50698e-07 0.0142715)
(-0.00905899 2.01364e-05 0.399842)
(-0.0220658 -2.43717e-06 0.42074)
(-0.0379648 -2.04192e-06 0.429894)
(-0.0533228 -9.01957e-07 0.433409)
(-0.0685985 -1.56776e-08 0.434421)
(-0.0835176 -1.41627e-08 0.433929)
(-0.0981041 -2.28316e-07 0.432351)
(-0.112338 -2.43862e-07 0.429899)
(-0.126212 -1.92248e-07 0.4267)
(-0.139719 -1.17366e-07 0.422835)
(-0.152851 -6.5294e-09 0.418364)
(-0.165597 7.02281e-08 0.413334)
(-0.177953 6.43151e-08 0.407781)
(-0.18991 9.63236e-09 0.401739)
(-0.201462 -3.19412e-08 0.395236)
(-0.212601 -3.45391e-08 0.388298)
(-0.223322 -1.37687e-08 0.380949)
(-0.233619 4.34372e-09 0.37321)
(-0.243487 7.33034e-09 0.365102)
(-0.252922 -1.47569e-09 0.356644)
(-0.26192 -1.2487e-08 0.347857)
(-0.270479 -1.85242e-08 0.338757)
(-0.278594 -1.77518e-08 0.329362)
(-0.286265 -1.22949e-08 0.319689)
(-0.293491 -5.52224e-09 0.309755)
(-0.300269 1.77962e-12 0.299575)
(-0.3066 3.25547e-09 0.289166)
(-0.312483 4.46437e-09 0.278541)
(-0.31792 4.39619e-09 0.267718)
(-0.32291 3.77551e-09 0.256709)
(-0.327454 3.0312e-09 0.24553)
(-0.331555 2.317e-09 0.234195)
(-0.335215 1.63774e-09 0.222719)
(-0.338436 9.63881e-10 0.211115)
(-0.34122 2.90795e-10 0.199397)
(-0.343571 -3.4615e-10 0.187579)
(-0.345493 -8.82206e-10 0.175675)
(-0.346988 -1.24505e-09 0.1637)
(-0.348063 -1.3833e-09 0.151665)
(-0.34872 -1.28763e-09 0.139587)
(-0.348966 -9.99959e-10 0.127477)
(-0.348805 -6.02267e-10 0.115351)
(-0.348244 -1.92757e-10 0.103221)
(-0.347288 1.4416e-10 0.091102)
(-0.345944 3.59724e-10 0.0790079)
(-0.344218 4.48437e-10 0.0669526)
(-0.342118 4.40062e-10 0.05495)
(-0.339652 3.82519e-10 0.0430144)
(-0.336828 3.2275e-10 0.0311598)
(-0.333653 2.92944e-10 0.0194003)
(-0.330138 3.05955e-10 0.00775014)
(-0.32629 3.57196e-10 -0.00377666)
(-0.32212 4.33121e-10 -0.0151655)
(-0.317639 5.17161e-10 -0.026402)
(-0.312857 5.95564e-10 -0.0374722)
(-0.307784 6.60625e-10 -0.048362)
(-0.302433 7.09886e-10 -0.0590578)
(-0.296815 7.4432e-10 -0.0695462)
(-0.290942 7.67666e-10 -0.079814)
(-0.284828 7.83305e-10 -0.0898484)
(-0.278484 7.94924e-10 -0.0996371)
(-0.271925 8.05288e-10 -0.109168)
(-0.265164 8.15933e-10 -0.11843)
(-0.258213 8.28038e-10 -0.127413)
(-0.251088 8.42062e-10 -0.136105)
(-0.243802 8.57444e-10 -0.144499)
(-0.236369 8.73208e-10 -0.152584)
(-0.228804 8.88307e-10 -0.160353)
(-0.22112 9.01204e-10 -0.167799)
(-0.213332 9.1062e-10 -0.174914)
(-0.205453 9.1576e-10 -0.181695)
(-0.197498 9.15498e-10 -0.188135)
(-0.18948 9.10143e-10 -0.194231)
(-0.181413 8.99181e-10 -0.199981)
(-0.173309 8.83279e-10 -0.205381)
(-0.165183 8.6277e-10 -0.210431)
(-0.157046 8.38294e-10 -0.21513)
(-0.14891 8.10414e-10 -0.219478)
(-0.140789 7.79719e-10 -0.223478)
(-0.132692 7.46798e-10 -0.22713)
(-0.12463 7.11829e-10 -0.230438)
(-0.116616 6.75454e-10 -0.233405)
(-0.108658 6.37722e-10 -0.236035)
(-0.100766 5.99121e-10 -0.238333)
(-0.0929487 5.59753e-10 -0.240305)
(-0.0852155 5.19847e-10 -0.241957)
(-0.0775741 4.79712e-10 -0.243295)
(-0.0700322 4.39347e-10 -0.244326)
(-0.0625967 3.99136e-10 -0.245059)
(-0.0552744 3.5913e-10 -0.2455)
(-0.0480712 3.19636e-10 -0.245658)
(-0.0409929 2.8109e-10 -0.245542)
(-0.0340446 2.43363e-10 -0.24516)
(-0.0272309 2.06635e-10 -0.244522)
(-0.0205561 1.70572e-10 -0.243637)
(-0.014024 1.35507e-10 -0.242515)
(-0.00763794 1.01722e-10 -0.241164)
(-0.00140093 6.96782e-11 -0.239596)
(0.00468452 3.87601e-11 -0.237818)
(0.0106159 9.45433e-12 -0.235842)
(0.0163916 -1.75735e-11 -0.233676)
(0.0220102 -4.28866e-11 -0.23133)
(0.0274707 -6.63057e-11 -0.228815)
(0.0327722 -8.7319e-11 -0.226138)
(0.0379143 -1.06054e-10 -0.223311)
(0.0428968 -1.22077e-10 -0.220341)
(0.0477198 -1.35361e-10 -0.217237)
(0.0523837 -1.45931e-10 -0.214009)
(0.0568889 -1.53456e-10 -0.210665)
(0.0612363 -1.58115e-10 -0.207213)
(0.0654268 -1.59599e-10 -0.203661)
(0.0694615 -1.58268e-10 -0.200016)
(0.0733417 -1.5389e-10 -0.196286)
(0.0770689 -1.46569e-10 -0.192478)
(0.0806447 -1.36637e-10 -0.188598)
(0.0840707 -1.23914e-10 -0.184653)
(0.0873487 -1.09015e-10 -0.180649)
(0.0904806 -9.19658e-11 -0.176591)
(0.0934683 -7.31753e-11 -0.172485)
(0.0963138 -5.3002e-11 -0.168336)
(0.0990191 -3.16507e-11 -0.164148)
(0.101586 -9.53091e-12 -0.159925)
(0.104018 1.29222e-11 -0.155671)
(0.106315 3.54014e-11 -0.151391)
(0.10848 5.76507e-11 -0.147085)
(0.110516 7.93116e-11 -0.142759)
(0.112424 1.00435e-10 -0.138413)
(0.114205 1.20792e-10 -0.134051)
(0.115863 1.40431e-10 -0.129674)
(0.117399 1.59508e-10 -0.125284)
(0.118814 1.78253e-10 -0.120881)
(0.120111 1.96716e-10 -0.116467)
(0.121291 2.15231e-10 -0.112044)
(0.122355 2.33799e-10 -0.10761)
(0.123305 2.52392e-10 -0.103167)
(0.124142 2.70397e-10 -0.0987158)
(0.124868 2.87148e-10 -0.0942554)
(0.125483 3.01363e-10 -0.0897862)
(0.125988 3.11353e-10 -0.0853084)
(0.126385 3.15221e-10 -0.0808217)
(0.126674 3.10584e-10 -0.0763262)
(0.126856 2.94828e-10 -0.071822)
(0.126931 2.66313e-10 -0.067309)
(0.1269 2.2337e-10 -0.0627876)
(0.126763 1.65564e-10 -0.058258)
(0.126519 9.40445e-11 -0.0537211)
(0.126171 1.11925e-11 -0.0491774)
(0.125716 -7.83043e-11 -0.0446283)
(0.125156 -1.68707e-10 -0.0400752)
(0.12449 -2.52661e-10 -0.0355199)
(0.123718 -3.22939e-10 -0.0309647)
(0.12284 -3.71953e-10 -0.0264123)
(0.121855 -3.94445e-10 -0.0218658)
(0.120764 -3.87104e-10 -0.0173291)
(0.119566 -3.49978e-10 -0.0128064)
(0.118261 -2.87136e-10 -0.00830257)
(0.116849 -2.05984e-10 -0.00382312)
(0.11533 -1.16772e-10 0.000625812)
(0.113704 -3.12163e-11 0.00503747)
(0.11197 3.94013e-11 0.0094045)
(0.11013 8.71297e-11 0.0137187)
(0.108184 1.09016e-10 0.0179714)
(0.106132 1.08185e-10 0.022153)
(0.103975 9.49418e-11 0.0262534)
(0.101715 8.4828e-11 0.0302617)
(0.0993535 9.56963e-11 0.0341667)
(0.0968916 1.43557e-10 0.0379563)
(0.0943319 2.36421e-10 0.0416179)
(0.091677 3.6932e-10 0.0451385)
(0.0889299 5.21326e-10 0.0485048)
(0.0860941 6.54778e-10 0.0517028)
(0.0831736 7.18611e-10 0.0547186)
(0.0801729 6.57078e-10 0.0575378)
(0.0770971 4.21349e-10 0.0601462)
(0.0739517 -1.79663e-11 0.0625292)
(0.0707429 -6.59104e-10 0.0646729)
(0.0674776 -1.4619e-09 0.0665632)
(0.0641631 -2.34517e-09 0.0681865)
(0.0608075 -3.19413e-09 0.0695298)
(0.0574193 -3.87158e-09 0.0705806)
(0.0540079 -4.23491e-09 0.0713274)
(0.050583 -4.15324e-09 0.0717593)
(0.047155 -3.52478e-09 0.0718666)
(0.0437348 -2.29066e-09 0.0716408)
(0.0403339 -4.46223e-10 0.0710744)
(0.0369643 1.95446e-09 0.0701613)
(0.0336381 4.7994e-09 0.0688968)
(0.0303681 7.92474e-09 0.0672773)
(0.0271672 1.11234e-08 0.0653004)
(0.0240488 1.41601e-08 0.0629645)
(0.0210261 1.68163e-08 0.0602682)
(0.0181129 1.89797e-08 0.05721)
(0.0153229 2.06829e-08 0.0537861)
(0.0126702 2.19211e-08 0.0499882)
(0.0101693 2.24641e-08 0.0457991)
(0.00783558 2.20437e-08 0.0411825)
(0.00568616 1.99699e-08 0.0360627)
(0.00374071 9.89966e-09 0.0302692)
(0.0020507 -5.19385e-08 0.0233673)
(0.000742826 -4.50698e-07 0.0142706)
(0.00790016 1.1672e-05 0.413173)
(-0.0220266 9.32334e-07 0.439722)
(-0.038615 -1.30759e-07 0.447199)
(-0.0546009 -4.63681e-07 0.450022)
(-0.0703128 -1.73247e-07 0.450552)
(-0.0855918 -2.3416e-07 0.449649)
(-0.100501 -1.79661e-07 0.447679)
(-0.11503 -1.85635e-08 0.444836)
(-0.129178 -2.07006e-08 0.441241)
(-0.142938 -6.87074e-08 0.436973)
(-0.156304 -2.20838e-08 0.432092)
(-0.169267 5.00303e-08 0.426643)
(-0.181819 5.57048e-08 0.420665)
(-0.193955 3.8823e-09 0.41419)
(-0.205667 -4.26074e-08 0.407247)
(-0.216949 -4.82129e-08 0.399863)
(-0.227796 -2.40437e-08 0.392062)
(-0.238202 1.25686e-09 0.383866)
(-0.248163 1.03651e-08 0.375296)
(-0.257674 3.87759e-09 0.366373)
(-0.266732 -8.28992e-09 0.357116)
(-0.275333 -1.69931e-08 0.347543)
(-0.283477 -1.85447e-08 0.337674)
(-0.291161 -1.42073e-08 0.327525)
(-0.298383 -7.41723e-09 0.317113)
(-0.305144 -1.24583e-09 0.306455)
(-0.311442 2.78348e-09 0.295567)
(-0.317278 4.59985e-09 0.284465)
(-0.322653 4.88011e-09 0.273164)
(-0.327567 4.37961e-09 0.261679)
(-0.332023 3.60166e-09 0.250025)
(-0.336021 2.77525e-09 0.238218)
(-0.339565 1.96529e-09 0.226271)
(-0.342656 1.18151e-09 0.2142)
(-0.345299 4.35673e-10 0.202018)
(-0.347496 -2.4122e-10 0.189741)
(-0.349252 -8.01353e-10 0.177381)
(-0.35057 -1.19085e-09 0.164954)
(-0.351455 -1.36789e-09 0.152473)
(-0.351913 -1.32033e-09 0.139952)
(-0.351948 -1.07775e-09 0.127407)
(-0.351566 -7.08521e-10 0.114851)
(-0.350774 -3.02274e-10 0.102298)
(-0.349578 5.64063e-11 0.0897623)
(-0.347985 3.10953e-10 0.0772589)
(-0.346001 4.44011e-10 0.0648019)
(-0.343636 4.74534e-10 0.0524058)
(-0.340896 4.43575e-10 0.0400851)
(-0.337791 3.95513e-10 0.0278543)
(-0.33433 3.64966e-10 0.015728)
(-0.330521 3.68936e-10 0.00372072)
(-0.326375 4.08035e-10 -0.00815278)
(-0.321902 4.71995e-10 -0.0198774)
(-0.317113 5.46887e-10 -0.0314384)
(-0.312019 6.19753e-10 -0.0428212)
(-0.306633 6.82402e-10 -0.0540115)
(-0.300965 7.31607e-10 -0.0649952)
(-0.29503 7.67523e-10 -0.0757584)
(-0.288839 7.92583e-10 -0.0862876)
(-0.282406 8.0968e-10 -0.0965697)
(-0.275745 8.21836e-10 -0.106592)
(-0.268869 8.31328e-10 -0.116342)
(-0.261793 8.39976e-10 -0.125809)
(-0.254531 8.48855e-10 -0.134981)
(-0.247098 8.58603e-10 -0.143848)
(-0.239508 8.69094e-10 -0.152401)
(-0.231777 8.79687e-10 -0.160631)
(-0.223917 8.8946e-10 -0.168529)
(-0.215946 8.97109e-10 -0.176089)
(-0.207877 9.01533e-10 -0.183304)
(-0.199724 9.01656e-10 -0.190168)
(-0.191502 8.97044e-10 -0.196678)
(-0.183226 8.87159e-10 -0.202829)
(-0.174908 8.72001e-10 -0.208618)
(-0.166563 8.51852e-10 -0.214045)
(-0.158204 8.27302e-10 -0.219108)
(-0.149844 7.98707e-10 -0.223807)
(-0.141494 7.66965e-10 -0.228142)
(-0.133168 7.3246e-10 -0.232117)
(-0.124876 6.9583e-10 -0.235732)
(-0.11663 6.57564e-10 -0.238991)
(-0.10844 6.18043e-10 -0.241899)
(-0.100316 5.77628e-10 -0.244459)
(-0.0922676 5.36522e-10 -0.246678)
(-0.0843042 4.95008e-10 -0.248561)
(-0.0764341 4.53237e-10 -0.250116)
(-0.0686651 4.11314e-10 -0.251348)
(-0.0610048 3.69622e-10 -0.252266)
(-0.0534601 3.28109e-10 -0.252878)
(-0.0460373 2.87032e-10 -0.253192)
(-0.0387424 2.46748e-10 -0.253217)
(-0.0315807 2.07284e-10 -0.252962)
(-0.0245572 1.68459e-10 -0.252437)
(-0.0176763 1.30684e-10 -0.251651)
(-0.010942 9.36261e-11 -0.250614)
(-0.00435779 5.79244e-11 -0.249335)
(0.00207327 2.38863e-11 -0.247826)
(0.00834811 -8.56517e-12 -0.246095)
(0.0144646 -3.93275e-11 -0.244153)
(0.0204209 -6.82217e-11 -0.24201)
(0.0262154 -9.49149e-11 -0.239676)
(0.0318472 -1.19535e-10 -0.237162)
(0.0373154 -1.41545e-10 -0.234476)
(0.0426194 -1.60868e-10 -0.23163)
(0.0477592 -1.77273e-10 -0.228631)
(0.0527348 -1.90786e-10 -0.225491)
(0.0575465 -2.01075e-10 -0.222217)
(0.062195 -2.07959e-10 -0.21882)
(0.0666809 -2.11645e-10 -0.215307)
(0.0710054 -2.119e-10 -0.211687)
(0.0751697 -2.08675e-10 -0.207968)
(0.079175 -2.02148e-10 -0.204158)
(0.0830229 -1.92345e-10 -0.200264)
(0.0867151 -1.7947e-10 -0.196294)
(0.0902534 -1.63702e-10 -0.192255)
(0.0936397 -1.45272e-10 -0.188152)
(0.0968759 -1.24334e-10 -0.183992)
(0.0999641 -1.01475e-10 -0.17978)
(0.102906 -7.6977e-11 -0.175522)
(0.105705 -5.11989e-11 -0.171224)
(0.108362 -2.44475e-11 -0.166888)
(0.11088 2.79091e-12 -0.16252)
(0.113261 3.01836e-11 -0.158124)
(0.115507 5.74233e-11 -0.153702)
(0.117621 8.42285e-11 -0.149259)
(0.119603 1.10318e-10 -0.144796)
(0.121458 1.35742e-10 -0.140317)
(0.123186 1.60424e-10 -0.135823)
(0.124791 1.84339e-10 -0.131316)
(0.126272 2.07692e-10 -0.126798)
(0.127634 2.30712e-10 -0.122269)
(0.128876 2.53555e-10 -0.117731)
(0.130002 2.76423e-10 -0.113185)
(0.131012 2.99293e-10 -0.10863)
(0.131908 3.21856e-10 -0.104068)
(0.132692 3.43396e-10 -0.0994984)
(0.133364 3.63042e-10 -0.0949211)
(0.133925 3.79333e-10 -0.0903361)
(0.134378 3.90272e-10 -0.0857434)
(0.134721 3.94015e-10 -0.0811427)
(0.134957 3.87793e-10 -0.0765339)
(0.135086 3.69404e-10 -0.071917)
(0.135107 3.37026e-10 -0.0672918)
(0.135023 2.89813e-10 -0.0626584)
(0.134832 2.27584e-10 -0.0580173)
(0.134535 1.52334e-10 -0.0533688)
(0.134132 6.75204e-11 -0.0487137)
(0.133622 -2.18104e-11 -0.044053)
(0.133006 -1.09023e-10 -0.0393882)
(0.132284 -1.86457e-10 -0.0347211)
(0.131454 -2.46704e-10 -0.0300537)
(0.130517 -2.83124e-10 -0.0253888)
(0.129472 -2.91231e-10 -0.0207296)
(0.128319 -2.69199e-10 -0.0160798)
(0.127057 -2.19151e-10 -0.0114437)
(0.125686 -1.46901e-10 -0.00682624)
(0.124205 -6.14425e-11 -0.00223293)
(0.122615 2.59482e-11 0.00233)
(0.120914 1.03607e-10 0.00685571)
(0.119103 1.61663e-10 0.0113366)
(0.117182 1.95421e-10 0.0157645)
(0.115151 2.05312e-10 0.0201302)
(0.113011 1.9941e-10 0.0244241)
(0.110761 1.91637e-10 0.0286359)
(0.108403 1.9997e-10 0.0327543)
(0.105939 2.41364e-10 0.0367676)
(0.103369 3.26828e-10 0.0406635)
(0.100696 4.55293e-10 0.0444291)
(0.0979224 6.08863e-10 0.0480508)
(0.0950506 7.51629e-10 0.0515148)
(0.0920839 8.32794e-10 0.0548066)
(0.0890263 7.93647e-10 0.0579118)
(0.0858822 5.79262e-10 0.0608155)
(0.0826563 1.52609e-10 0.0635028)
(0.0793544 -4.9148e-10 0.0659586)
(0.0759824 -1.31727e-09 0.0681681)
(0.0725474 -2.24451e-09 0.0701168)
(0.0690566 -3.15413e-09 0.0717904)
(0.0655182 -3.90009e-09 0.0731751)
(0.061941 -4.32861e-09 0.074258)
(0.0583345 -4.29805e-09 0.0750266)
(0.0547086 -3.69952e-09 0.0754696)
(0.0510742 -2.47423e-09 0.0755766)
(0.0474426 -6.26334e-10 0.0753386)
(0.0438255 1.7674e-09 0.0747474)
(0.0402354 4.55605e-09 0.0737967)
(0.0366852 7.52456e-09 0.0724812)
(0.033188 1.04094e-08 0.0707969)
(0.0297576 1.29148e-08 0.0687411)
(0.0264076 1.47293e-08 0.0663119)
(0.0231523 1.55607e-08 0.0635079)
(0.020006 1.52204e-08 0.0603272)
(0.0169831 1.36699e-08 0.0567659)
(0.0140984 1.08298e-08 0.0528153)
(0.0113671 6.30884e-09 0.0484574)
(0.0088053 -6.51484e-10 0.0436549)
(0.00643101 -1.21486e-08 0.0383296)
(0.00426464 -3.94604e-08 0.0323062)
(0.00236096 -1.44951e-07 0.0251404)
(0.000869838 -7.56098e-07 0.015732)
(0.00793954 1.16808e-05 0.413149)
(-0.0220217 9.34674e-07 0.439714)
(-0.0386116 -1.31149e-07 0.447201)
(-0.0546014 -4.64308e-07 0.450023)
(-0.0703125 -1.73319e-07 0.450552)
(-0.0855918 -2.34186e-07 0.449649)
(-0.100501 -1.79666e-07 0.447678)
(-0.11503 -1.85637e-08 0.444835)
(-0.129178 -2.07007e-08 0.44124)
(-0.142938 -6.87075e-08 0.436973)
(-0.156304 -2.20838e-08 0.432092)
(-0.169266 5.00303e-08 0.426643)
(-0.181819 5.57048e-08 0.420665)
(-0.193954 3.88229e-09 0.41419)
(-0.205667 -4.26074e-08 0.407247)
(-0.21695 -4.82128e-08 0.399863)
(-0.227797 -2.40437e-08 0.392062)
(-0.238203 1.25686e-09 0.383866)
(-0.248163 1.03651e-08 0.375296)
(-0.257674 3.87759e-09 0.366373)
(-0.266732 -8.28993e-09 0.357116)
(-0.275333 -1.69932e-08 0.347543)
(-0.283477 -1.85447e-08 0.337674)
(-0.291161 -1.42073e-08 0.327525)
(-0.298383 -7.41724e-09 0.317113)
(-0.305144 -1.24584e-09 0.306455)
(-0.311442 2.78348e-09 0.295567)
(-0.317278 4.59985e-09 0.284465)
(-0.322653 4.88011e-09 0.273164)
(-0.327568 4.37962e-09 0.261679)
(-0.332023 3.60166e-09 0.250025)
(-0.336021 2.77525e-09 0.238218)
(-0.339565 1.96529e-09 0.226272)
(-0.342657 1.18152e-09 0.2142)
(-0.345299 4.35674e-10 0.202018)
(-0.347496 -2.4122e-10 0.189741)
(-0.349252 -8.01354e-10 0.177381)
(-0.35057 -1.19085e-09 0.164954)
(-0.351455 -1.36789e-09 0.152473)
(-0.351913 -1.32033e-09 0.139952)
(-0.351948 -1.07775e-09 0.127407)
(-0.351566 -7.08522e-10 0.114851)
(-0.350774 -3.02274e-10 0.102298)
(-0.349578 5.64063e-11 0.0897623)
(-0.347985 3.10953e-10 0.0772589)
(-0.346001 4.44011e-10 0.064802)
(-0.343636 4.74534e-10 0.0524058)
(-0.340896 4.43575e-10 0.0400851)
(-0.337791 3.95513e-10 0.0278543)
(-0.33433 3.64966e-10 0.015728)
(-0.330521 3.68935e-10 0.00372075)
(-0.326375 4.08035e-10 -0.00815275)
(-0.321902 4.71995e-10 -0.0198773)
(-0.317113 5.46886e-10 -0.0314383)
(-0.312019 6.19753e-10 -0.0428212)
(-0.306633 6.82401e-10 -0.0540115)
(-0.300965 7.31606e-10 -0.0649952)
(-0.29503 7.67522e-10 -0.0757584)
(-0.288839 7.92582e-10 -0.0862876)
(-0.282406 8.09679e-10 -0.0965697)
(-0.275745 8.21834e-10 -0.106592)
(-0.268869 8.31327e-10 -0.116342)
(-0.261793 8.39975e-10 -0.125809)
(-0.254532 8.48853e-10 -0.134981)
(-0.247098 8.58601e-10 -0.143848)
(-0.239508 8.69092e-10 -0.152401)
(-0.231777 8.79685e-10 -0.160631)
(-0.223918 8.89459e-10 -0.168529)
(-0.215946 8.97107e-10 -0.176089)
(-0.207877 9.01531e-10 -0.183303)
(-0.199724 9.01654e-10 -0.190168)
(-0.191502 8.97042e-10 -0.196678)
(-0.183226 8.87156e-10 -0.202829)
(-0.174908 8.71999e-10 -0.208618)
(-0.166563 8.5185e-10 -0.214045)
(-0.158204 8.27299e-10 -0.219108)
(-0.149844 7.98705e-10 -0.223807)
(-0.141494 7.66963e-10 -0.228142)
(-0.133168 7.32458e-10 -0.232117)
(-0.124876 6.95828e-10 -0.235732)
(-0.11663 6.57562e-10 -0.238991)
(-0.10844 6.18042e-10 -0.241899)
(-0.100316 5.77626e-10 -0.244459)
(-0.0922677 5.36521e-10 -0.246678)
(-0.0843043 4.95006e-10 -0.248561)
(-0.0764341 4.53236e-10 -0.250116)
(-0.0686652 4.11313e-10 -0.251348)
(-0.0610049 3.69621e-10 -0.252266)
(-0.0534601 3.28108e-10 -0.252878)
(-0.0460373 2.87031e-10 -0.253192)
(-0.0387424 2.46747e-10 -0.253217)
(-0.0315807 2.07283e-10 -0.252962)
(-0.0245572 1.68459e-10 -0.252437)
(-0.0176763 1.30684e-10 -0.251651)
(-0.010942 9.36258e-11 -0.250614)
(-0.00435783 5.79242e-11 -0.249335)
(0.00207323 2.38862e-11 -0.247826)
(0.00834807 -8.56514e-12 -0.246095)
(0.0144646 -3.93274e-11 -0.244153)
(0.0204208 -6.82215e-11 -0.24201)
(0.0262154 -9.49146e-11 -0.239676)
(0.0318472 -1.19535e-10 -0.237162)
(0.0373153 -1.41545e-10 -0.234476)
(0.0426194 -1.60867e-10 -0.23163)
(0.0477592 -1.77272e-10 -0.228631)
(0.0527348 -1.90786e-10 -0.225491)
(0.0575465 -2.01074e-10 -0.222217)
(0.0621949 -2.07959e-10 -0.21882)
(0.0666809 -2.11644e-10 -0.215307)
(0.0710054 -2.119e-10 -0.211687)
(0.0751696 -2.08675e-10 -0.207968)
(0.0791749 -2.02148e-10 -0.204158)
(0.0830229 -1.92344e-10 -0.200264)
(0.0867151 -1.79469e-10 -0.196294)
(0.0902534 -1.63702e-10 -0.192255)
(0.0936397 -1.45272e-10 -0.188152)
(0.0968759 -1.24333e-10 -0.183992)
(0.0999641 -1.01474e-10 -0.17978)
(0.102906 -7.69768e-11 -0.175522)
(0.105705 -5.11988e-11 -0.171224)
(0.108362 -2.44474e-11 -0.166888)
(0.11088 2.7909e-12 -0.16252)
(0.113261 3.01835e-11 -0.158124)
(0.115507 5.74232e-11 -0.153702)
(0.11762 8.42283e-11 -0.149259)
(0.119603 1.10317e-10 -0.144796)
(0.121458 1.35742e-10 -0.140317)
(0.123186 1.60424e-10 -0.135823)
(0.124791 1.84339e-10 -0.131316)
(0.126272 2.07691e-10 -0.126798)
(0.127634 2.30712e-10 -0.122269)
(0.128876 2.53554e-10 -0.117731)
(0.130002 2.76423e-10 -0.113185)
(0.131012 2.99292e-10 -0.10863)
(0.131908 3.21855e-10 -0.104068)
(0.132692 3.43395e-10 -0.0994984)
(0.133364 3.63041e-10 -0.0949211)
(0.133925 3.79332e-10 -0.0903361)
(0.134378 3.90272e-10 -0.0857434)
(0.134721 3.94014e-10 -0.0811427)
(0.134957 3.87793e-10 -0.0765339)
(0.135086 3.69403e-10 -0.071917)
(0.135107 3.37025e-10 -0.0672918)
(0.135023 2.89813e-10 -0.0626585)
(0.134832 2.27583e-10 -0.0580173)
(0.134535 1.52333e-10 -0.0533688)
(0.134132 6.75203e-11 -0.0487137)
(0.133622 -2.18104e-11 -0.0440531)
(0.133006 -1.09023e-10 -0.0393883)
(0.132284 -1.86456e-10 -0.0347211)
(0.131454 -2.46703e-10 -0.0300537)
(0.130517 -2.83124e-10 -0.0253888)
(0.129472 -2.9123e-10 -0.0207296)
(0.128319 -2.69198e-10 -0.0160798)
(0.127057 -2.19151e-10 -0.0114437)
(0.125686 -1.46901e-10 -0.00682624)
(0.124205 -6.14424e-11 -0.00223294)
(0.122615 2.59482e-11 0.00233)
(0.120914 1.03607e-10 0.0068557)
(0.119103 1.61663e-10 0.0113366)
(0.117182 1.9542e-10 0.0157645)
(0.115151 2.05312e-10 0.0201302)
(0.113011 1.9941e-10 0.0244241)
(0.110761 1.91637e-10 0.0286359)
(0.108403 1.9997e-10 0.0327543)
(0.105939 2.41363e-10 0.0367676)
(0.103369 3.26827e-10 0.0406635)
(0.100696 4.55293e-10 0.0444291)
(0.0979224 6.08862e-10 0.0480508)
(0.0950506 7.51628e-10 0.0515148)
(0.0920839 8.32793e-10 0.0548066)
(0.0890263 7.93646e-10 0.0579118)
(0.0858821 5.79261e-10 0.0608155)
(0.0826563 1.52609e-10 0.0635027)
(0.0793544 -4.91479e-10 0.0659586)
(0.0759824 -1.31727e-09 0.0681681)
(0.0725474 -2.2445e-09 0.0701168)
(0.0690566 -3.15412e-09 0.0717904)
(0.0655182 -3.90008e-09 0.0731751)
(0.061941 -4.3286e-09 0.0742579)
(0.0583345 -4.29805e-09 0.0750265)
(0.0547086 -3.69951e-09 0.0754695)
(0.0510742 -2.47423e-09 0.0755766)
(0.0474426 -6.26333e-10 0.0753385)
(0.0438255 1.76739e-09 0.0747474)
(0.0402354 4.55604e-09 0.0737967)
(0.0366852 7.52455e-09 0.0724811)
(0.033188 1.04094e-08 0.0707968)
(0.0297576 1.29147e-08 0.068741)
(0.0264076 1.47292e-08 0.0663118)
(0.0231523 1.55607e-08 0.0635078)
(0.020006 1.52204e-08 0.0603271)
(0.0169831 1.36699e-08 0.0567657)
(0.0140984 1.08298e-08 0.0528151)
(0.0113671 6.30882e-09 0.0484572)
(0.00880537 -6.51482e-10 0.0436547)
(0.00643111 -1.21485e-08 0.0383294)
(0.00426475 -3.94604e-08 0.0323059)
(0.00236109 -1.44951e-07 0.0251399)
(0.000869997 -7.56098e-07 0.0157309)
(-0.012321 1.70831e-06 0.428787)
(-0.0232513 -9.70396e-07 0.457125)
(-0.040707 1.70241e-07 0.464421)
(-0.056396 -1.41419e-07 0.46684)
(-0.072256 -2.78053e-07 0.466968)
(-0.0877577 -4.00569e-07 0.465672)
(-0.102926 -1.28479e-07 0.463305)
(-0.117719 1.34775e-07 0.460058)
(-0.132122 8.51621e-08 0.456051)
(-0.146123 -3.83126e-08 0.451363)
(-0.159714 -3.34126e-08 0.446053)
(-0.172884 3.2992e-08 0.440167)
(-0.185625 4.8106e-08 0.433743)
(-0.197931 1.82828e-09 0.426816)
(-0.209795 -4.72414e-08 0.419415)
(-0.221212 -5.71281e-08 0.411566)
(-0.232176 -3.30118e-08 0.403294)
(-0.242681 -3.37937e-09 0.394623)
(-0.252723 1.09587e-08 0.385573)
(-0.262299 7.52539e-09 0.376167)
(-0.271405 -4.50404e-09 0.366423)
(-0.280039 -1.48971e-08 0.356362)
(-0.288198 -1.84384e-08 0.346002)
(-0.295881 -1.5401e-08 0.33536)
(-0.303087 -8.98377e-09 0.324454)
(-0.309816 -2.50792e-09 0.313302)
(-0.316068 2.11572e-09 0.30192)
(-0.321842 4.51102e-09 0.290324)
(-0.327141 5.1959e-09 0.27853)
(-0.331965 4.88899e-09 0.266555)
(-0.336315 4.13077e-09 0.254412)
(-0.340195 3.21791e-09 0.242118)
(-0.343607 2.28452e-09 0.229687)
(-0.346554 1.3923e-09 0.217135)
(-0.349038 5.77096e-10 0.204476)
(-0.351065 -1.31623e-10 0.191726)
(-0.352638 -7.05357e-10 0.178897)
(-0.353762 -1.1119e-09 0.166006)
(-0.354441 -1.32178e-09 0.153067)
(-0.354682 -1.32175e-09 0.140094)
(-0.35449 -1.12924e-09 0.127101)
(-0.353871 -7.97295e-10 0.114105)
(-0.352831 -4.04474e-10 0.101118)
(-0.351378 -3.33793e-11 0.0881565)
(-0.349519 2.53692e-10 0.0752346)
(-0.347261 4.28424e-10 0.0623672)
(-0.344613 4.98606e-10 0.0495692)
(-0.341584 4.96864e-10 0.0368557)
(-0.338183 4.64296e-10 0.0242416)
(-0.334418 4.36336e-10 0.0117419)
(-0.330301 4.3352e-10 -0.000628362)
(-0.325841 4.60838e-10 -0.0128537)
(-0.32105 5.12222e-10 -0.0249186)
(-0.315939 5.7643e-10 -0.0368079)
(-0.310521 6.41943e-10 -0.0485066)
(-0.304807 7.0072e-10 -0.0599998)
(-0.298811 7.48667e-10 -0.071273)
(-0.292546 7.85144e-10 -0.0823119)
(-0.286025 8.11456e-10 -0.0931026)
(-0.279263 8.29576e-10 -0.103632)
(-0.272275 8.42141e-10 -0.113886)
(-0.265074 8.50788e-10 -0.123853)
(-0.257676 8.57285e-10 -0.133522)
(-0.250095 8.62784e-10 -0.14288)
(-0.242348 8.68181e-10 -0.151917)
(-0.234449 8.73449e-10 -0.160624)
(-0.226414 8.78538e-10 -0.168992)
(-0.218258 8.82809e-10 -0.177013)
(-0.209996 8.84954e-10 -0.18468)
(-0.201645 8.84105e-10 -0.191986)
(-0.193218 8.79366e-10 -0.198926)
(-0.18473 8.7002e-10 -0.205497)
(-0.176197 8.55734e-10 -0.211694)
(-0.167631 8.36458e-10 -0.217514)
(-0.159048 8.12447e-10 -0.222958)
(-0.15046 7.8388e-10 -0.228024)
(-0.141881 7.51732e-10 -0.232712)
(-0.133324 7.16487e-10 -0.237025)
(-0.124799 6.7853e-10 -0.240963)
(-0.116319 6.3873e-10 -0.244531)
(-0.107895 5.97601e-10 -0.247731)
(-0.0995377 5.5532e-10 -0.250569)
(-0.0912567 5.12503e-10 -0.253049)
(-0.0830616 4.69149e-10 -0.255178)
(-0.0749612 4.25642e-10 -0.256963)
(-0.066964 3.82135e-10 -0.258409)
(-0.0590776 3.3868e-10 -0.259526)
(-0.0513094 2.95661e-10 -0.260321)
(-0.043666 2.53025e-10 -0.260803)
(-0.0361536 2.10877e-10 -0.260981)
(-0.0287778 1.69265e-10 -0.260864)
(-0.0215439 1.2832e-10 -0.260462)
(-0.0144563 8.81167e-11 -0.259784)
(-0.00751931 4.93212e-11 -0.258841)
(-0.00073661 1.17284e-11 -0.257644)
(0.00588851 -2.47639e-11 -0.256202)
(0.012353 -5.92347e-11 -0.254525)
(0.0186546 -9.15814e-11 -0.252625)
(0.0247914 -1.22162e-10 -0.250512)
(0.0307619 -1.50568e-10 -0.248196)
(0.0365649 -1.76287e-10 -0.245689)
(0.0421995 -1.99447e-10 -0.242999)
(0.0476653 -2.19331e-10 -0.240138)
(0.052962 -2.36068e-10 -0.237116)
(0.0580898 -2.49375e-10 -0.233942)
(0.0630489 -2.59202e-10 -0.230627)
(0.0678401 -2.6537e-10 -0.227179)
(0.0724642 -2.6775e-10 -0.223607)
(0.0769221 -2.66419e-10 -0.219922)
(0.0812153 -2.61249e-10 -0.216131)
(0.085345 -2.52419e-10 -0.212242)
(0.089313 -2.39878e-10 -0.208264)
(0.093121 -2.23984e-10 -0.204204)
(0.0967708 -2.04942e-10 -0.20007)
(0.100265 -1.8293e-10 -0.195868)
(0.103604 -1.58384e-10 -0.191604)
(0.106792 -1.3156e-10 -0.187286)
(0.10983 -1.02867e-10 -0.182919)
(0.112722 -7.28162e-11 -0.178508)
(0.115468 -4.17412e-11 -0.174058)
(0.118071 -1.00256e-11 -0.169574)
(0.120535 2.187e-11 -0.16506)
(0.12286 5.36128e-11 -0.16052)
(0.125051 8.51772e-11 -0.155958)
(0.127108 1.16179e-10 -0.151375)
(0.129034 1.4621e-10 -0.146776)
(0.130832 1.75524e-10 -0.142163)
(0.132503 2.04225e-10 -0.137536)
(0.13405 2.32235e-10 -0.1329)
(0.135475 2.59837e-10 -0.128253)
(0.13678 2.8721e-10 -0.123599)
(0.137966 3.14712e-10 -0.118937)
(0.139036 3.42164e-10 -0.114268)
(0.13999 3.69591e-10 -0.109593)
(0.14083 3.96507e-10 -0.104912)
(0.141559 4.21863e-10 -0.100224)
(0.142176 4.44916e-10 -0.0955299)
(0.142683 4.63616e-10 -0.0908293)
(0.143081 4.75914e-10 -0.086122)
(0.143371 4.79583e-10 -0.0814075)
(0.143554 4.72315e-10 -0.0766855)
(0.143629 4.51523e-10 -0.0719559)
(0.143598 4.15924e-10 -0.0672185)
(0.14346 3.648e-10 -0.0624732)
(0.143216 2.99121e-10 -0.0577202)
(0.142866 2.21193e-10 -0.0529598)
(0.142409 1.35136e-10 -0.0481928)
(0.141845 4.68677e-11 -0.0434199)
(0.141175 -3.62333e-11 -0.0386427)
(0.140397 -1.0666e-10 -0.0338626)
(0.139511 -1.57134e-10 -0.0290819)
(0.138517 -1.81733e-10 -0.0243032)
(0.137413 -1.76994e-10 -0.0195296)
(0.136199 -1.43016e-10 -0.0147648)
(0.134875 -8.3637e-11 -0.0100132)
(0.133439 -6.20965e-12 -0.00527958)
(0.131892 7.89919e-11 -0.000569732)
(0.130232 1.60409e-10 0.00411018)
(0.128458 2.2702e-10 0.00875322)
(0.126572 2.71619e-10 0.0133516)
(0.124571 2.9251e-10 0.017897)
(0.122456 2.94741e-10 0.0223801)
(0.120228 2.9064e-10 0.0267909)
(0.117886 2.96822e-10 0.0311188)
(0.115431 3.31572e-10 0.0353524)
(0.112864 4.08485e-10 0.0394796)
(0.110187 5.3057e-10 0.0434876)
(0.1074 6.84318e-10 0.0473631)
(0.104507 8.3737e-10 0.0510922)
(0.101509 9.39605e-10 0.0546604)
(0.0984099 9.30171e-10 0.0580529)
(0.095213 7.48357e-10 0.0612544)
(0.0919227 3.49188e-10 0.0642496)
(0.0885436 -2.81689e-10 0.067023)
(0.0850812 -1.11675e-09 0.0695587)
(0.0815415 -2.07994e-09 0.0718415)
(0.0779315 -3.05087e-09 0.0738558)
(0.0742585 -3.87798e-09 0.0755869)
(0.0705308 -4.39661e-09 0.0770201)
(0.0667572 -4.45369e-09 0.0781419)
(0.0629474 -3.93018e-09 0.078939)
(0.0591117 -2.76152e-09 0.0793994)
(0.0552612 -9.53218e-10 0.0795121)
(0.0514076 1.40574e-09 0.0792674)
(0.0475631 4.13736e-09 0.0786566)
(0.0437407 6.97776e-09 0.0776727)
(0.0399537 9.59402e-09 0.07631)
(0.0362161 1.16127e-08 0.0745641)
(0.0325419 1.26489e-08 0.072432)
(0.0289459 1.23195e-08 0.0699115)
(0.0254428 1.02734e-08 0.0670009)
(0.0220476 6.26671e-09 0.0636981)
(0.0187757 2.124e-10 0.0599989)
(0.0156425 -8.02671e-09 0.0558944)
(0.0126639 -1.90234e-08 0.0513659)
(0.0098569 -3.41032e-08 0.0463747)
(0.00724024 -5.69826e-08 0.0408403)
(0.00483517 -1.04308e-07 0.0345824)
(0.00269967 -2.57372e-07 0.0271466)
(0.00100889 -1.08671e-06 0.0174172)
(-0.0122863 1.70941e-06 0.428772)
(-0.0232443 -9.7188e-07 0.457123)
(-0.0407047 1.70506e-07 0.464424)
(-0.0563966 -1.41516e-07 0.466842)
(-0.0722559 -2.7812e-07 0.466968)
(-0.0877581 -4.006e-07 0.465671)
(-0.102926 -1.28482e-07 0.463303)
(-0.117718 1.34776e-07 0.460058)
(-0.132122 8.51624e-08 0.456051)
(-0.146124 -3.83126e-08 0.451363)
(-0.159714 -3.34126e-08 0.446053)
(-0.172884 3.29919e-08 0.440166)
(-0.185625 4.8106e-08 0.433743)
(-0.197931 1.82828e-09 0.426816)
(-0.209795 -4.72414e-08 0.419415)
(-0.221212 -5.71281e-08 0.411566)
(-0.232176 -3.30118e-08 0.403295)
(-0.242681 -3.37938e-09 0.394623)
(-0.252723 1.09587e-08 0.385573)
(-0.262299 7.52539e-09 0.376167)
(-0.271405 -4.50404e-09 0.366423)
(-0.280039 -1.48971e-08 0.356362)
(-0.288198 -1.84384e-08 0.346002)
(-0.295881 -1.5401e-08 0.33536)
(-0.303087 -8.98377e-09 0.324454)
(-0.309816 -2.50792e-09 0.313302)
(-0.316068 2.11573e-09 0.30192)
(-0.321843 4.51103e-09 0.290324)
(-0.327141 5.1959e-09 0.27853)
(-0.331965 4.88899e-09 0.266555)
(-0.336316 4.13077e-09 0.254412)
(-0.340195 3.21791e-09 0.242118)
(-0.343607 2.28453e-09 0.229687)
(-0.346554 1.3923e-09 0.217135)
(-0.349038 5.77096e-10 0.204477)
(-0.351065 -1.31623e-10 0.191726)
(-0.352638 -7.05358e-10 0.178897)
(-0.353762 -1.1119e-09 0.166006)
(-0.354442 -1.32178e-09 0.153067)
(-0.354682 -1.32176e-09 0.140094)
(-0.35449 -1.12924e-09 0.127101)
(-0.353871 -7.97296e-10 0.114105)
(-0.352831 -4.04474e-10 0.101118)
(-0.351378 -3.33793e-11 0.0881565)
(-0.349519 2.53692e-10 0.0752346)
(-0.347261 4.28424e-10 0.0623672)
(-0.344613 4.98606e-10 0.0495693)
(-0.341584 4.96864e-10 0.0368558)
(-0.338183 4.64295e-10 0.0242416)
(-0.334418 4.36336e-10 0.0117419)
(-0.330301 4.3352e-10 -0.000628336)
(-0.325841 4.60838e-10 -0.0128537)
(-0.32105 5.12221e-10 -0.0249186)
(-0.315939 5.7643e-10 -0.0368079)
(-0.310521 6.41942e-10 -0.0485065)
(-0.304807 7.0072e-10 -0.0599998)
(-0.298811 7.48666e-10 -0.071273)
(-0.292546 7.85143e-10 -0.0823119)
(-0.286025 8.11455e-10 -0.0931026)
(-0.279264 8.29575e-10 -0.103632)
(-0.272275 8.42139e-10 -0.113886)
(-0.265074 8.50787e-10 -0.123853)
(-0.257676 8.57284e-10 -0.133522)
(-0.250095 8.62783e-10 -0.14288)
(-0.242348 8.68179e-10 -0.151917)
(-0.234449 8.73447e-10 -0.160624)
(-0.226414 8.78537e-10 -0.168992)
(-0.218258 8.82807e-10 -0.177013)
(-0.209997 8.84952e-10 -0.18468)
(-0.201645 8.84103e-10 -0.191986)
(-0.193218 8.79364e-10 -0.198926)
(-0.18473 8.70018e-10 -0.205497)
(-0.176197 8.55732e-10 -0.211694)
(-0.167631 8.36456e-10 -0.217514)
(-0.159048 8.12445e-10 -0.222958)
(-0.150461 7.83878e-10 -0.228024)
(-0.141881 7.5173e-10 -0.232712)
(-0.133324 7.16485e-10 -0.237025)
(-0.124799 6.78528e-10 -0.240963)
(-0.116319 6.38728e-10 -0.244531)
(-0.107895 5.97599e-10 -0.247731)
(-0.0995378 5.55319e-10 -0.250569)
(-0.0912568 5.12502e-10 -0.253049)
(-0.0830616 4.69148e-10 -0.255178)
(-0.0749613 4.2564e-10 -0.256963)
(-0.066964 3.82134e-10 -0.258409)
(-0.0590777 3.38679e-10 -0.259526)
(-0.0513094 2.9566e-10 -0.260321)
(-0.043666 2.53025e-10 -0.260803)
(-0.0361536 2.10876e-10 -0.260981)
(-0.0287779 1.69265e-10 -0.260864)
(-0.0215439 1.2832e-10 -0.260462)
(-0.0144563 8.81165e-11 -0.259784)
(-0.00751936 4.9321e-11 -0.258841)
(-0.000736655 1.17284e-11 -0.257644)
(0.00588847 -2.47639e-11 -0.256202)
(0.0123529 -5.92345e-11 -0.254525)
(0.0186546 -9.15811e-11 -0.252625)
(0.0247914 -1.22162e-10 -0.250512)
(0.0307618 -1.50568e-10 -0.248196)
(0.0365648 -1.76287e-10 -0.245689)
(0.0421994 -1.99446e-10 -0.242999)
(0.0476652 -2.1933e-10 -0.240138)
(0.0529619 -2.36067e-10 -0.237116)
(0.0580897 -2.49375e-10 -0.233942)
(0.0630489 -2.59202e-10 -0.230627)
(0.0678401 -2.65369e-10 -0.227179)
(0.0724641 -2.67749e-10 -0.223607)
(0.0769221 -2.66418e-10 -0.219922)
(0.0812152 -2.61248e-10 -0.216131)
(0.085345 -2.52418e-10 -0.212242)
(0.089313 -2.39877e-10 -0.208264)
(0.093121 -2.23983e-10 -0.204204)
(0.0967708 -2.04941e-10 -0.20007)
(0.100265 -1.8293e-10 -0.195868)
(0.103604 -1.58384e-10 -0.191604)
(0.106792 -1.3156e-10 -0.187286)
(0.10983 -1.02866e-10 -0.182919)
(0.112721 -7.2816e-11 -0.178508)
(0.115468 -4.17411e-11 -0.174058)
(0.118071 -1.00256e-11 -0.169574)
(0.120535 2.18699e-11 -0.16506)
(0.12286 5.36126e-11 -0.16052)
(0.12505 8.5177e-11 -0.155958)
(0.127108 1.16179e-10 -0.151375)
(0.129034 1.46209e-10 -0.146776)
(0.130832 1.75524e-10 -0.142163)
(0.132503 2.04224e-10 -0.137536)
(0.13405 2.32235e-10 -0.1329)
(0.135475 2.59837e-10 -0.128253)
(0.13678 2.87209e-10 -0.123599)
(0.137966 3.14711e-10 -0.118937)
(0.139036 3.42163e-10 -0.114268)
(0.13999 3.6959e-10 -0.109593)
(0.14083 3.96507e-10 -0.104912)
(0.141559 4.21862e-10 -0.100224)
(0.142176 4.44915e-10 -0.0955299)
(0.142683 4.63615e-10 -0.0908293)
(0.143081 4.75913e-10 -0.086122)
(0.143371 4.79582e-10 -0.0814075)
(0.143554 4.72314e-10 -0.0766855)
(0.143629 4.51522e-10 -0.0719559)
(0.143598 4.15923e-10 -0.0672185)
(0.14346 3.64799e-10 -0.0624732)
(0.143216 2.99121e-10 -0.0577202)
(0.142866 2.21192e-10 -0.0529598)
(0.142409 1.35135e-10 -0.0481928)
(0.141845 4.68677e-11 -0.04342)
(0.141175 -3.62332e-11 -0.0386427)
(0.140397 -1.0666e-10 -0.0338626)
(0.139511 -1.57133e-10 -0.0290819)
(0.138517 -1.81732e-10 -0.0243032)
(0.137413 -1.76994e-10 -0.0195296)
(0.136199 -1.43015e-10 -0.0147648)
(0.134875 -8.36368e-11 -0.0100132)
(0.133439 -6.20964e-12 -0.00527959)
(0.131892 7.89917e-11 -0.00056974)
(0.130232 1.60409e-10 0.00411018)
(0.128458 2.2702e-10 0.00875322)
(0.126572 2.71618e-10 0.0133516)
(0.124571 2.92509e-10 0.017897)
(0.122456 2.9474e-10 0.02238)
(0.120228 2.9064e-10 0.0267909)
(0.117886 2.96822e-10 0.0311188)
(0.115431 3.31571e-10 0.0353524)
(0.112864 4.08484e-10 0.0394796)
(0.110187 5.30569e-10 0.0434876)
(0.1074 6.84317e-10 0.0473631)
(0.104507 8.37368e-10 0.0510922)
(0.101509 9.39603e-10 0.0546604)
(0.0984099 9.3017e-10 0.0580528)
(0.095213 7.48356e-10 0.0612544)
(0.0919226 3.49187e-10 0.0642496)
(0.0885436 -2.81688e-10 0.067023)
(0.0850812 -1.11675e-09 0.0695587)
(0.0815415 -2.07994e-09 0.0718414)
(0.0779315 -3.05086e-09 0.0738558)
(0.0742585 -3.87798e-09 0.0755869)
(0.0705307 -4.3966e-09 0.0770201)
(0.0667572 -4.45369e-09 0.0781418)
(0.0629474 -3.93018e-09 0.0789389)
(0.0591117 -2.76152e-09 0.0793993)
(0.0552612 -9.53217e-10 0.0795121)
(0.0514076 1.40574e-09 0.0792673)
(0.0475631 4.13736e-09 0.0786565)
(0.0437407 6.97775e-09 0.0776726)
(0.0399537 9.59401e-09 0.0763099)
(0.0362161 1.16127e-08 0.074564)
(0.0325419 1.26489e-08 0.0724319)
(0.0289459 1.23195e-08 0.0699114)
(0.0254428 1.02734e-08 0.0670008)
(0.0220477 6.2667e-09 0.063698)
(0.0187757 2.124e-10 0.0599988)
(0.0156425 -8.02669e-09 0.0558942)
(0.012664 -1.90233e-08 0.0513657)
(0.00985697 -3.41032e-08 0.0463745)
(0.00724034 -5.69825e-08 0.04084)
(0.0048353 -1.04308e-07 0.0345819)
(0.00269983 -2.57373e-07 0.0271458)
(0.00100912 -1.08671e-06 0.0174158)
(-0.0274468 3.07335e-06 0.446449)
(-0.0248979 -1.22503e-06 0.472561)
(-0.0424226 -6.7263e-07 0.480891)
(-0.0580805 -4.98708e-07 0.483509)
(-0.0741414 -3.3238e-07 0.483504)
(-0.08989 -2.66735e-07 0.481918)
(-0.105321 7.37614e-08 0.479189)
(-0.120373 2.34389e-07 0.475544)
(-0.135024 8.76249e-08 0.471117)
(-0.149259 -6.50131e-08 0.465993)
(-0.163066 -6.4317e-08 0.460236)
(-0.176435 5.62593e-09 0.453894)
(-0.189356 3.31512e-08 0.447007)
(-0.201824 -8.30351e-10 0.439609)
(-0.213831 -4.64927e-08 0.43173)
(-0.225372 -5.98414e-08 0.423397)
(-0.236441 -3.89714e-08 0.414636)
(-0.247035 -8.64579e-09 0.40547)
(-0.257148 9.15094e-09 0.395923)
(-0.266776 9.03114e-09 0.386015)
(-0.275918 -1.59863e-09 0.375767)
(-0.28457 -1.24851e-08 0.365199)
(-0.292732 -1.74218e-08 0.35433)
(-0.3004 -1.56936e-08 0.343179)
(-0.307576 -9.98955e-09 0.331763)
(-0.314259 -3.59301e-09 0.320101)
(-0.320449 1.36363e-09 0.308208)
(-0.326146 4.2312e-09 0.296103)
(-0.331352 5.32279e-09 0.283801)
(-0.336069 5.25762e-09 0.271319)
(-0.340299 4.56929e-09 0.258673)
(-0.344044 3.60499e-09 0.245878)
(-0.347307 2.56926e-09 0.232949)
(-0.350091 1.58201e-09 0.219902)
(-0.352401 7.09635e-10 0.206753)
(-0.354239 -1.90491e-11 0.193516)
(-0.355612 -5.94861e-10 0.180206)
(-0.356524 -1.00913e-09 0.166839)
(-0.35698 -1.2465e-09 0.153429)
(-0.356986 -1.29305e-09 0.139992)
(-0.356549 -1.15416e-09 0.126542)
(-0.355674 -8.66571e-10 0.113094)
(-0.354369 -4.96083e-10 0.0996638)
(-0.352641 -1.21024e-10 0.0862663)
(-0.350498 1.91884e-10 0.0729168)
(-0.347949 4.04699e-10 0.0596304)
(-0.345002 5.13716e-10 0.0464227)
(-0.341666 5.42799e-10 0.0333089)
(-0.337951 5.28409e-10 0.0203046)
(-0.333867 5.05802e-10 0.00742528)
(-0.329425 4.97814e-10 -0.00531351)
(-0.324636 5.13916e-10 -0.0178955)
(-0.319511 5.52572e-10 -0.0303047)
(-0.314064 6.04999e-10 -0.0425256)
(-0.308307 6.61725e-10 -0.0545427)
(-0.302252 7.1502e-10 -0.0663405)
(-0.295915 7.6048e-10 -0.0779042)
(-0.289308 7.96621e-10 -0.0892189)
(-0.282447 8.23777e-10 -0.10027)
(-0.275345 8.42689e-10 -0.111045)
(-0.26802 8.55253e-10 -0.121529)
(-0.260485 8.63107e-10 -0.13171)
(-0.252757 8.67352e-10 -0.141576)
(-0.244851 8.69344e-10 -0.151115)
(-0.236784 8.70236e-10 -0.160317)
(-0.228572 8.70411e-10 -0.169173)
(-0.22023 8.69767e-10 -0.177672)
(-0.211775 8.68176e-10 -0.185808)
(-0.203222 8.64743e-10 -0.193574)
(-0.194588 8.58648e-10 -0.200962)
(-0.185887 8.48971e-10 -0.20797)
(-0.177135 8.34994e-10 -0.214591)
(-0.168348 8.16538e-10 -0.220823)
(-0.159538 7.93221e-10 -0.226665)
(-0.150721 7.65501e-10 -0.232115)
(-0.141911 7.3356e-10 -0.237173)
(-0.133119 6.98113e-10 -0.24184)
(-0.12436 6.59673e-10 -0.246118)
(-0.115645 6.18776e-10 -0.25001)
(-0.106986 5.76294e-10 -0.253518)
(-0.0983933 5.32507e-10 -0.256649)
(-0.0898781 4.87824e-10 -0.259405)
(-0.0814501 4.42733e-10 -0.261795)
(-0.0731185 3.97336e-10 -0.263823)
(-0.0648921 3.5199e-10 -0.265498)
(-0.0567789 3.06875e-10 -0.266827)
(-0.0487867 2.61914e-10 -0.267818)
(-0.0409223 2.17311e-10 -0.26848)
(-0.0331922 1.734e-10 -0.268822)
(-0.0256022 1.29489e-10 -0.268854)
(-0.0181578 8.6192e-11 -0.268585)
(-0.0108638 4.37142e-11 -0.268027)
(-0.00372453 2.54165e-12 -0.267189)
(0.00325636 -3.74025e-11 -0.266081)
(0.0100748 -7.59395e-11 -0.264715)
(0.0167283 -1.12532e-10 -0.263101)
(0.0232143 -1.47051e-10 -0.261251)
(0.0295308 -1.79293e-10 -0.259175)
(0.0356763 -2.09309e-10 -0.256884)
(0.0416495 -2.36331e-10 -0.254389)
(0.0474495 -2.60154e-10 -0.251702)
(0.0530759 -2.806e-10 -0.248832)
(0.0585284 -2.97387e-10 -0.24579)
(0.0638072 -3.10386e-10 -0.242587)
(0.0689126 -3.19573e-10 -0.239233)
(0.0738452 -3.24639e-10 -0.235738)
(0.078606 -3.2556e-10 -0.232112)
(0.083196 -3.22361e-10 -0.228363)
(0.0876167 -3.14837e-10 -0.224501)
(0.0918694 -3.03449e-10 -0.220536)
(0.095956 -2.88017e-10 -0.216474)
(0.0998782 -2.68951e-10 -0.212325)
(0.103638 -2.46481e-10 -0.208096)
(0.107238 -2.20939e-10 -0.203795)
(0.110679 -1.92787e-10 -0.199429)
(0.113965 -1.62024e-10 -0.195004)
(0.117098 -1.29494e-10 -0.190526)
(0.12008 -9.56065e-11 -0.186002)
(0.122913 -6.04645e-11 -0.181436)
(0.125601 -2.48355e-11 -0.176834)
(0.128145 1.11015e-11 -0.172201)
(0.130549 4.70393e-11 -0.16754)
(0.132814 8.24406e-11 -0.162856)
(0.134944 1.17433e-10 -0.158152)
(0.13694 1.51762e-10 -0.15343)
(0.138806 1.85246e-10 -0.148694)
(0.140543 2.18092e-10 -0.143947)
(0.142154 2.50324e-10 -0.139188)
(0.14364 2.8225e-10 -0.134422)
(0.145005 3.13948e-10 -0.129648)
(0.146251 3.458e-10 -0.124868)
(0.147378 3.77781e-10 -0.120082)
(0.148389 4.09969e-10 -0.115291)
(0.149285 4.4203e-10 -0.110496)
(0.150069 4.73402e-10 -0.105696)
(0.15074 5.03059e-10 -0.100891)
(0.151301 5.29518e-10 -0.0960806)
(0.151753 5.50908e-10 -0.091265)
(0.152097 5.64821e-10 -0.0864434)
(0.152332 5.68953e-10 -0.0816155)
(0.152461 5.60972e-10 -0.0767808)
(0.152483 5.38418e-10 -0.0719389)
(0.152399 5.00291e-10 -0.0670894)
(0.152208 4.46485e-10 -0.0622322)
(0.151912 3.78229e-10 -0.0573673)
(0.151509 2.98851e-10 -0.052495)
(0.151 2.1296e-10 -0.0476157)
(0.150384 1.27343e-10 -0.0427302)
(0.14966 4.93519e-11 -0.0378398)
(0.148828 -1.34288e-11 -0.032946)
(0.147887 -5.39774e-11 -0.0280509)
(0.146837 -6.72948e-11 -0.023157)
(0.145676 -5.1353e-11 -0.0182674)
(0.144404 -7.89015e-12 -0.0133858)
(0.143019 5.7845e-11 -0.00851652)
(0.141521 1.3681e-10 -0.00366447)
(0.139908 2.18141e-10 0.00116468)
(0.13818 2.90562e-10 0.00596461)
(0.136336 3.44588e-10 0.0107283)
(0.134375 3.76066e-10 0.0154479)
(0.132296 3.87297e-10 0.0201148)
(0.1301 3.87355e-10 0.0247196)
(0.127785 3.9213e-10 0.0292521)
(0.125352 4.19853e-10 0.0337013)
(0.122801 4.86604e-10 0.0380555)
(0.120132 5.99516e-10 0.0423024)
(0.117347 7.50572e-10 0.0464286)
(0.114447 9.12213e-10 0.0504205)
(0.111434 1.037e-09 0.0542636)
(0.108309 1.06275e-09 0.057943)
(0.105076 9.24167e-10 0.0614433)
(0.101738 5.67551e-10 0.0647487)
(0.098299 -3.30876e-11 0.0678432)
(0.0947636 -8.60192e-10 0.0707104)
(0.0911372 -1.84607e-09 0.0733341)
(0.0874256 -2.873e-09 0.075698)
(0.0836355 -3.78601e-09 0.0777861)
(0.0797746 -4.41179e-09 0.0795826)
(0.075851 -4.58506e-09 0.0810722)
(0.0718737 -4.17385e-09 0.0822405)
(0.0678525 -3.10376e-09 0.0830736)
(0.0637981 -1.37625e-09 0.0835586)
(0.0597218 9.17415e-10 0.0836838)
(0.0556357 3.58584e-09 0.0834387)
(0.0515524 6.33261e-09 0.0828141)
(0.0474854 8.7672e-09 0.0818024)
(0.0434488 1.04313e-08 0.0803972)
(0.0394569 1.08439e-08 0.0785937)
(0.0355248 9.542e-09 0.0763885)
(0.0316676 6.09547e-09 0.0737792)
(0.0279011 1.26115e-10 0.0707637)
(0.024241 -8.62689e-09 0.0673397)
(0.0207035 -2.02603e-08 0.0635028)
(0.0173047 -3.49455e-08 0.0592436)
(0.0140616 -5.34413e-08 0.0545429)
(0.0109917 -7.76798e-08 0.0493607)
(0.00811484 -1.13042e-07 0.0436139)
(0.00545297 -1.8138e-07 0.0371171)
(0.00306716 -3.81138e-07 0.0294058)
(0.00115999 -1.40956e-06 0.019348)
(-0.0274257 3.07232e-06 0.446451)
(-0.0248926 -1.22523e-06 0.472563)
(-0.0424209 -6.73386e-07 0.480892)
(-0.0580806 -4.98997e-07 0.483509)
(-0.0741412 -3.32447e-07 0.483504)
(-0.0898906 -2.66753e-07 0.481917)
(-0.105321 7.37631e-08 0.479188)
(-0.120372 2.34391e-07 0.475543)
(-0.135024 8.76252e-08 0.471116)
(-0.149259 -6.50131e-08 0.465993)
(-0.163066 -6.4317e-08 0.460236)
(-0.176435 5.62593e-09 0.453894)
(-0.189356 3.31512e-08 0.447007)
(-0.201823 -8.30351e-10 0.439609)
(-0.213831 -4.64927e-08 0.43173)
(-0.225372 -5.98414e-08 0.423397)
(-0.236442 -3.89714e-08 0.414636)
(-0.247035 -8.6458e-09 0.40547)
(-0.257148 9.15095e-09 0.395923)
(-0.266776 9.03114e-09 0.386015)
(-0.275918 -1.59863e-09 0.375767)
(-0.28457 -1.24851e-08 0.365199)
(-0.292732 -1.74219e-08 0.35433)
(-0.3004 -1.56937e-08 0.343179)
(-0.307576 -9.98956e-09 0.331763)
(-0.314259 -3.59302e-09 0.320101)
(-0.320449 1.36363e-09 0.308208)
(-0.326146 4.2312e-09 0.296103)
(-0.331353 5.3228e-09 0.283801)
(-0.33607 5.25762e-09 0.271319)
(-0.340299 4.5693e-09 0.258673)
(-0.344044 3.60499e-09 0.245878)
(-0.347307 2.56927e-09 0.232949)
(-0.350091 1.58201e-09 0.219902)
(-0.352401 7.09636e-10 0.206753)
(-0.35424 -1.90491e-11 0.193516)
(-0.355612 -5.94862e-10 0.180206)
(-0.356524 -1.00913e-09 0.166839)
(-0.35698 -1.2465e-09 0.153429)
(-0.356986 -1.29305e-09 0.139992)
(-0.356549 -1.15416e-09 0.126542)
(-0.355674 -8.66572e-10 0.113094)
(-0.354369 -4.96083e-10 0.0996638)
(-0.352641 -1.21024e-10 0.0862664)
(-0.350498 1.91884e-10 0.0729168)
(-0.347949 4.047e-10 0.0596305)
(-0.345002 5.13716e-10 0.0464227)
(-0.341666 5.42799e-10 0.0333089)
(-0.337951 5.28409e-10 0.0203046)
(-0.333867 5.05802e-10 0.00742531)
(-0.329425 4.97814e-10 -0.00531348)
(-0.324636 5.13916e-10 -0.0178954)
(-0.319511 5.52571e-10 -0.0303047)
(-0.314064 6.04998e-10 -0.0425256)
(-0.308307 6.61725e-10 -0.0545427)
(-0.302252 7.15019e-10 -0.0663405)
(-0.295915 7.60479e-10 -0.0779042)
(-0.289308 7.9662e-10 -0.0892189)
(-0.282447 8.23776e-10 -0.10027)
(-0.275346 8.42688e-10 -0.111045)
(-0.26802 8.55252e-10 -0.121529)
(-0.260485 8.63105e-10 -0.13171)
(-0.252757 8.6735e-10 -0.141576)
(-0.244851 8.69342e-10 -0.151115)
(-0.236784 8.70234e-10 -0.160317)
(-0.228572 8.70409e-10 -0.169173)
(-0.22023 8.69765e-10 -0.177672)
(-0.211775 8.68174e-10 -0.185808)
(-0.203222 8.64741e-10 -0.193574)
(-0.194588 8.58646e-10 -0.200962)
(-0.185887 8.48969e-10 -0.20797)
(-0.177135 8.34992e-10 -0.214591)
(-0.168348 8.16536e-10 -0.220823)
(-0.159538 7.93218e-10 -0.226665)
(-0.150721 7.65499e-10 -0.232115)
(-0.141911 7.33558e-10 -0.237173)
(-0.133119 6.98111e-10 -0.24184)
(-0.12436 6.59671e-10 -0.246118)
(-0.115645 6.18774e-10 -0.25001)
(-0.106986 5.76292e-10 -0.253518)
(-0.0983934 5.32505e-10 -0.256649)
(-0.0898782 4.87823e-10 -0.259405)
(-0.0814501 4.42732e-10 -0.261795)
(-0.0731185 3.97335e-10 -0.263823)
(-0.0648921 3.51989e-10 -0.265498)
(-0.056779 3.06874e-10 -0.266827)
(-0.0487867 2.61913e-10 -0.267818)
(-0.0409223 2.1731e-10 -0.26848)
(-0.0331922 1.73399e-10 -0.268822)
(-0.0256023 1.29488e-10 -0.268854)
(-0.0181579 8.61917e-11 -0.268585)
(-0.0108638 4.37141e-11 -0.268027)
(-0.00372458 2.54165e-12 -0.267189)
(0.00325631 -3.74024e-11 -0.266081)
(0.0100748 -7.59393e-11 -0.264715)
(0.0167283 -1.12531e-10 -0.263101)
(0.0232143 -1.47051e-10 -0.261251)
(0.0295308 -1.79293e-10 -0.259175)
(0.0356763 -2.09308e-10 -0.256884)
(0.0416494 -2.3633e-10 -0.254389)
(0.0474495 -2.60154e-10 -0.251702)
(0.0530759 -2.80599e-10 -0.248832)
(0.0585284 -2.97386e-10 -0.24579)
(0.0638071 -3.10385e-10 -0.242587)
(0.0689125 -3.19572e-10 -0.239233)
(0.0738452 -3.24639e-10 -0.235738)
(0.0786059 -3.2556e-10 -0.232112)
(0.083196 -3.22361e-10 -0.228363)
(0.0876166 -3.14837e-10 -0.224501)
(0.0918694 -3.03448e-10 -0.220536)
(0.0959559 -2.88017e-10 -0.216474)
(0.0998782 -2.6895e-10 -0.212325)
(0.103638 -2.4648e-10 -0.208096)
(0.107238 -2.20939e-10 -0.203795)
(0.110679 -1.92787e-10 -0.199429)
(0.113965 -1.62023e-10 -0.195004)
(0.117098 -1.29493e-10 -0.190526)
(0.12008 -9.56063e-11 -0.186002)
(0.122913 -6.04644e-11 -0.181436)
(0.125601 -2.48355e-11 -0.176834)
(0.128145 1.11014e-11 -0.172201)
(0.130549 4.70392e-11 -0.16754)
(0.132814 8.24404e-11 -0.162856)
(0.134944 1.17433e-10 -0.158152)
(0.13694 1.51761e-10 -0.15343)
(0.138805 1.85246e-10 -0.148695)
(0.140543 2.18091e-10 -0.143947)
(0.142153 2.50324e-10 -0.139188)
(0.14364 2.8225e-10 -0.134422)
(0.145005 3.13947e-10 -0.129648)
(0.146251 3.45799e-10 -0.124868)
(0.147378 3.7778e-10 -0.120082)
(0.148389 4.09968e-10 -0.115291)
(0.149285 4.42029e-10 -0.110496)
(0.150069 4.73401e-10 -0.105696)
(0.15074 5.03058e-10 -0.100891)
(0.151301 5.29517e-10 -0.0960806)
(0.151753 5.50907e-10 -0.091265)
(0.152097 5.6482e-10 -0.0864435)
(0.152332 5.68952e-10 -0.0816156)
(0.152461 5.60971e-10 -0.0767808)
(0.152483 5.38417e-10 -0.0719389)
(0.152399 5.0029e-10 -0.0670894)
(0.152208 4.46484e-10 -0.0622322)
(0.151912 3.78229e-10 -0.0573673)
(0.151509 2.98851e-10 -0.052495)
(0.151 2.1296e-10 -0.0476157)
(0.150384 1.27343e-10 -0.0427302)
(0.14966 4.93518e-11 -0.0378398)
(0.148828 -1.34287e-11 -0.032946)
(0.147887 -5.39773e-11 -0.0280509)
(0.146837 -6.72947e-11 -0.023157)
(0.145676 -5.13529e-11 -0.0182674)
(0.144404 -7.89013e-12 -0.0133858)
(0.143019 5.78449e-11 -0.00851653)
(0.141521 1.3681e-10 -0.00366448)
(0.139908 2.1814e-10 0.00116467)
(0.13818 2.90561e-10 0.0059646)
(0.136336 3.44588e-10 0.0107283)
(0.134375 3.76065e-10 0.0154479)
(0.132296 3.87297e-10 0.0201148)
(0.1301 3.87354e-10 0.0247196)
(0.127785 3.9213e-10 0.0292521)
(0.125352 4.19853e-10 0.0337013)
(0.122801 4.86603e-10 0.0380555)
(0.120132 5.99515e-10 0.0423023)
(0.117347 7.50571e-10 0.0464286)
(0.114447 9.12211e-10 0.0504205)
(0.111433 1.037e-09 0.0542636)
(0.108309 1.06275e-09 0.057943)
(0.105076 9.24166e-10 0.0614433)
(0.101738 5.67551e-10 0.0647487)
(0.098299 -3.30875e-11 0.0678432)
(0.0947636 -8.60191e-10 0.0707104)
(0.0911372 -1.84607e-09 0.0733341)
(0.0874256 -2.87299e-09 0.075698)
(0.0836355 -3.786e-09 0.0777861)
(0.0797746 -4.41179e-09 0.0795825)
(0.0758509 -4.58505e-09 0.0810722)
(0.0718737 -4.17384e-09 0.0822405)
(0.0678525 -3.10376e-09 0.0830735)
(0.0637981 -1.37625e-09 0.0835585)
(0.0597218 9.17414e-10 0.0836838)
(0.0556356 3.58583e-09 0.0834386)
(0.0515524 6.33261e-09 0.0828141)
(0.0474854 8.7672e-09 0.0818023)
(0.0434488 1.04313e-08 0.0803971)
(0.0394569 1.08439e-08 0.0785936)
(0.0355248 9.54199e-09 0.0763884)
(0.0316676 6.09547e-09 0.0737791)
(0.0279011 1.26115e-10 0.0707636)
(0.0242411 -8.62688e-09 0.0673396)
(0.0207035 -2.02602e-08 0.0635026)
(0.0173047 -3.49455e-08 0.0592434)
(0.0140616 -5.34411e-08 0.0545426)
(0.0109918 -7.76796e-08 0.0493603)
(0.00811493 -1.13042e-07 0.0436134)
(0.0054531 -1.8138e-07 0.0371165)
(0.00306736 -3.81139e-07 0.0294048)
(0.00116028 -1.40956e-06 0.0193462)
(-0.0104679 7.57266e-06 0.466602)
(-0.0249998 -1.98939e-06 0.489615)
(-0.0426888 -2.27092e-06 0.498208)
(-0.0592488 -1.35581e-06 0.500683)
(-0.0757936 -5.17872e-07 0.500417)
(-0.0919055 -7.58645e-08 0.498485)
(-0.107641 2.76568e-07 0.495365)
(-0.122964 2.60823e-07 0.491301)
(-0.137864 3.71474e-08 0.486434)
(-0.152328 -9.69707e-08 0.480857)
(-0.166345 -8.4956e-08 0.474635)
(-0.179904 -2.24734e-08 0.467818)
(-0.192996 8.17122e-09 0.460447)
(-0.205615 -1.07541e-08 0.452557)
(-0.217755 -4.5534e-08 0.44418)
(-0.22941 -5.85205e-08 0.435344)
(-0.240574 -4.21262e-08 0.426074)
(-0.251244 -1.42677e-08 0.416396)
(-0.261414 4.90147e-09 0.406332)
(-0.271083 7.98067e-09 0.395904)
(-0.280247 -9.49108e-11 0.385133)
(-0.288904 -1.01374e-08 0.374041)
(-0.297053 -1.56359e-08 0.362646)
(-0.304693 -1.50224e-08 0.350967)
(-0.311823 -1.02647e-08 0.339024)
(-0.318443 -4.31937e-09 0.326834)
(-0.324555 6.60939e-10 0.314415)
(-0.330158 3.82683e-09 0.301785)
(-0.335256 5.26904e-09 0.288959)
(-0.339849 5.4577e-09 0.275956)
(-0.34394 4.87617e-09 0.26279)
(-0.347532 3.89872e-09 0.249479)
(-0.350628 2.79228e-09 0.236038)
(-0.353232 1.73563e-09 0.222483)
(-0.355347 8.26511e-10 0.208829)
(-0.35698 9.46073e-11 0.195093)
(-0.358134 -4.70662e-10 0.181289)
(-0.358815 -8.8395e-10 0.167433)
(-0.359028 -1.14391e-09 0.153541)
(-0.358781 -1.23629e-09 0.139628)
(-0.358079 -1.15349e-09 0.125709)
(-0.35693 -9.1551e-10 0.111799)
(-0.355341 -5.74673e-10 0.0979156)
(-0.35332 -2.03124e-10 0.0840728)
(-0.350875 1.29319e-10 0.0702866)
(-0.348016 3.75886e-10 0.0565729)
(-0.344751 5.21836e-10 0.0429475)
(-0.34109 5.81995e-10 0.0294263)
(-0.337044 5.87344e-10 0.0160253)
(-0.332624 5.7188e-10 0.00276048)
(-0.32784 5.60384e-10 -0.0103519)
(-0.322705 5.66143e-10 -0.0232948)
(-0.317231 5.91638e-10 -0.0360519)
(-0.311432 6.31441e-10 -0.0486071)
(-0.305321 6.77975e-10 -0.0609443)
(-0.298912 7.24585e-10 -0.0730478)
(-0.29222 7.66484e-10 -0.084902)
(-0.28526 8.01471e-10 -0.0964918)
(-0.278046 8.28753e-10 -0.107802)
(-0.270595 8.48253e-10 -0.11882)
(-0.262924 8.60791e-10 -0.12953)
(-0.255047 8.67544e-10 -0.139921)
(-0.246982 8.69639e-10 -0.149979)
(-0.238745 8.681e-10 -0.159694)
(-0.230353 8.6436e-10 -0.169054)
(-0.221824 8.59136e-10 -0.17805)
(-0.213173 8.52862e-10 -0.186673)
(-0.204417 8.4554e-10 -0.194915)
(-0.195573 8.36452e-10 -0.20277)
(-0.186657 8.25061e-10 -0.210232)
(-0.177684 8.1042e-10 -0.217295)
(-0.168672 7.92197e-10 -0.223957)
(-0.159634 7.69701e-10 -0.230214)
(-0.150586 7.42854e-10 -0.236065)
(-0.141541 7.1176e-10 -0.24151)
(-0.132515 6.76828e-10 -0.246549)
(-0.123519 6.38416e-10 -0.251182)
(-0.114567 5.9719e-10 -0.255414)
(-0.105671 5.53866e-10 -0.259247)
(-0.096842 5.08726e-10 -0.262685)
(-0.0880915 4.62537e-10 -0.265733)
(-0.0794297 4.15658e-10 -0.268398)
(-0.0708663 3.68268e-10 -0.270684)
(-0.0624102 3.20904e-10 -0.272601)
(-0.0540701 2.73694e-10 -0.274155)
(-0.0458538 2.26919e-10 -0.275355)
(-0.0377686 1.80299e-10 -0.276209)
(-0.0298212 1.33806e-10 -0.276728)
(-0.0220176 8.7723e-11 -0.276921)
(-0.0143636 4.20752e-11 -0.276797)
(-0.00686397 -2.90712e-12 -0.276368)
(0.000476677 -4.63541e-11 -0.275645)
(0.00765412 -8.88799e-11 -0.274637)
(0.0146648 -1.29845e-10 -0.273356)
(0.0215057 -1.68482e-10 -0.271814)
(0.0281745 -2.05225e-10 -0.270021)
(0.034669 -2.39486e-10 -0.26799)
(0.0409877 -2.70753e-10 -0.265731)
(0.0471292 -2.99002e-10 -0.263256)
(0.0530927 -3.23591e-10 -0.260576)
(0.0588777 -3.44214e-10 -0.257703)
(0.064484 -3.60846e-10 -0.254647)
(0.0699116 -3.73358e-10 -0.25142)
(0.075161 -3.81521e-10 -0.248032)
(0.0802329 -3.8518e-10 -0.244494)
(0.0851282 -3.84309e-10 -0.240815)
(0.089848 -3.78884e-10 -0.237006)
(0.0943939 -3.68827e-10 -0.233076)
(0.0987674 -3.54523e-10 -0.229035)
(0.10297 -3.36021e-10 -0.224892)
(0.107004 -3.13758e-10 -0.220655)
(0.110872 -2.87783e-10 -0.216333)
(0.114575 -2.58636e-10 -0.211933)
(0.118116 -2.26647e-10 -0.207463)
(0.121498 -1.92379e-10 -0.202931)
(0.124722 -1.56218e-10 -0.198342)
(0.127792 -1.18572e-10 -0.193703)
(0.130711 -7.99007e-11 -0.189021)
(0.13348 -4.06916e-11 -0.1843)
(0.136103 -1.25123e-12 -0.179545)
(0.138582 3.81901e-11 -0.174762)
(0.14092 7.7146e-11 -0.169954)
(0.14312 1.15591e-10 -0.165126)
(0.145184 1.53244e-10 -0.16028)
(0.147115 1.9036e-10 -0.155419)
(0.148915 2.2671e-10 -0.150547)
(0.150587 2.62523e-10 -0.145665)
(0.152134 2.98031e-10 -0.140775)
(0.153557 3.33437e-10 -0.135879)
(0.154859 3.69101e-10 -0.130978)
(0.156042 4.05048e-10 -0.126073)
(0.157107 4.41406e-10 -0.121164)
(0.158058 4.78099e-10 -0.116253)
(0.158894 5.14819e-10 -0.111338)
(0.159618 5.50568e-10 -0.106419)
(0.160232 5.84168e-10 -0.101498)
(0.160736 6.13878e-10 -0.0965722)
(0.161132 6.37881e-10 -0.0916422)
(0.161419 6.5346e-10 -0.0867072)
(0.1616 6.58235e-10 -0.0817666)
(0.161675 6.49669e-10 -0.0768197)
(0.161644 6.25993e-10 -0.0718659)
(0.161507 5.86181e-10 -0.0669049)
(0.161265 5.3077e-10 -0.0619361)
(0.160916 4.61474e-10 -0.0569596)
(0.160462 3.82132e-10 -0.0519753)
(0.159901 2.98327e-10 -0.0469836)
(0.159233 2.17025e-10 -0.0419852)
(0.158458 1.45757e-10 -0.0369811)
(0.157573 9.1953e-11 -0.0319728)
(0.15658 6.20706e-11 -0.0269624)
(0.155475 5.99047e-11 -0.0219521)
(0.154259 8.60741e-11 -0.0169451)
(0.15293 1.37611e-10 -0.0119449)
(0.151487 2.07191e-10 -0.00695592)
(0.149928 2.85361e-10 -0.00198304)
(0.148252 3.60721e-10 0.00296812)
(0.146459 4.22764e-10 0.00789118)
(0.144546 4.64491e-10 0.012779)
(0.142513 4.85233e-10 0.0176236)
(0.140358 4.91113e-10 0.0224162)
(0.138082 4.95329e-10 0.0271472)
(0.135682 5.15951e-10 0.0318063)
(0.133159 5.70646e-10 0.0363821)
(0.130513 6.71108e-10 0.0408627)
(0.127744 8.15039e-10 0.0452352)
(0.124852 9.81011e-10 0.0494861)
(0.121839 1.12631e-09 0.0536012)
(0.118705 1.19007e-09 0.0575655)
(0.115453 1.10279e-09 0.0613637)
(0.112086 8.02511e-10 0.0649796)
(0.108605 2.50767e-10 0.0683969)
(0.105015 -5.48479e-10 0.0715989)
(0.101321 -1.53915e-09 0.0745685)
(0.0975273 -2.61066e-09 0.0772887)
(0.0936397 -3.60779e-09 0.0797426)
(0.0896649 -4.35059e-09 0.0819131)
(0.0856104 -4.66103e-09 0.0837838)
(0.0814846 -4.3926e-09 0.0853386)
(0.0772964 -3.45671e-09 0.086562)
(0.0730559 -1.84397e-09 0.0874394)
(0.0687738 3.58986e-10 0.087957)
(0.0644619 2.95715e-09 0.0881024)
(0.0601325 5.63961e-09 0.0878643)
(0.0557989 7.9795e-09 0.0872326)
(0.051475 9.45197e-09 0.0861992)
(0.0471755 9.47818e-09 0.0847569)
(0.0429154 7.48717e-09 0.0829007)
(0.0387104 2.96884e-09 0.0806264)
(0.0345768 -4.50952e-09 0.0779314)
(0.0305308 -1.53026e-08 0.0748133)
(0.0265892 -2.9633e-08 0.0712696)
(0.0227689 -4.75559e-08 0.0672954)
(0.0190872 -6.92375e-08 0.0628813)
(0.0155618 -9.56037e-08 0.0580071)
(0.0122111 -1.29169e-07 0.0526317)
(0.0090557 -1.76853e-07 0.0466696)
(0.00611863 -2.64904e-07 0.03993)
(0.00346375 -5.04936e-07 0.031938)
(0.00132313 -1.68747e-06 0.0215453)
(-0.0104784 7.57218e-06 0.466606)
(-0.0249969 -1.99004e-06 0.489616)
(-0.0426875 -2.27441e-06 0.498209)
(-0.0592487 -1.35677e-06 0.500684)
(-0.0757937 -5.17987e-07 0.500417)
(-0.0919063 -7.58697e-08 0.498485)
(-0.10764 2.76574e-07 0.495365)
(-0.122963 2.60825e-07 0.491301)
(-0.137863 3.71475e-08 0.486434)
(-0.152328 -9.69708e-08 0.480857)
(-0.166345 -8.4956e-08 0.474635)
(-0.179904 -2.24734e-08 0.467818)
(-0.192996 8.17122e-09 0.460447)
(-0.205615 -1.07541e-08 0.452557)
(-0.217755 -4.5534e-08 0.44418)
(-0.22941 -5.85205e-08 0.435344)
(-0.240574 -4.21262e-08 0.426074)
(-0.251244 -1.42677e-08 0.416396)
(-0.261415 4.90147e-09 0.406332)
(-0.271083 7.98067e-09 0.395904)
(-0.280247 -9.49109e-11 0.385133)
(-0.288904 -1.01374e-08 0.374041)
(-0.297053 -1.56359e-08 0.362646)
(-0.304693 -1.50224e-08 0.350967)
(-0.311823 -1.02647e-08 0.339024)
(-0.318443 -4.31937e-09 0.326834)
(-0.324555 6.60939e-10 0.314416)
(-0.330158 3.82683e-09 0.301785)
(-0.335256 5.26905e-09 0.288959)
(-0.339849 5.45771e-09 0.275956)
(-0.34394 4.87617e-09 0.26279)
(-0.347532 3.89872e-09 0.249479)
(-0.350628 2.79228e-09 0.236038)
(-0.353232 1.73563e-09 0.222483)
(-0.355348 8.26511e-10 0.208829)
(-0.35698 9.46074e-11 0.195093)
(-0.358134 -4.70662e-10 0.181289)
(-0.358815 -8.83951e-10 0.167433)
(-0.359029 -1.14391e-09 0.153541)
(-0.358781 -1.23629e-09 0.139628)
(-0.358079 -1.15349e-09 0.125709)
(-0.35693 -9.1551e-10 0.111799)
(-0.355341 -5.74673e-10 0.0979156)
(-0.35332 -2.03124e-10 0.0840728)
(-0.350875 1.29319e-10 0.0702866)
(-0.348016 3.75886e-10 0.0565729)
(-0.344751 5.21836e-10 0.0429475)
(-0.34109 5.81995e-10 0.0294263)
(-0.337044 5.87344e-10 0.0160253)
(-0.332624 5.7188e-10 0.00276051)
(-0.32784 5.60384e-10 -0.0103518)
(-0.322705 5.66142e-10 -0.0232947)
(-0.317231 5.91637e-10 -0.0360519)
(-0.311432 6.3144e-10 -0.0486071)
(-0.305321 6.77975e-10 -0.0609443)
(-0.298912 7.24584e-10 -0.0730478)
(-0.29222 7.66483e-10 -0.084902)
(-0.28526 8.0147e-10 -0.0964918)
(-0.278046 8.28752e-10 -0.107802)
(-0.270596 8.48252e-10 -0.11882)
(-0.262924 8.6079e-10 -0.12953)
(-0.255047 8.67543e-10 -0.139921)
(-0.246982 8.69638e-10 -0.149979)
(-0.238745 8.68098e-10 -0.159694)
(-0.230353 8.64358e-10 -0.169054)
(-0.221824 8.59134e-10 -0.17805)
(-0.213173 8.52861e-10 -0.186673)
(-0.204417 8.45538e-10 -0.194915)
(-0.195573 8.3645e-10 -0.20277)
(-0.186657 8.25059e-10 -0.210232)
(-0.177684 8.10418e-10 -0.217295)
(-0.168672 7.92195e-10 -0.223957)
(-0.159634 7.69699e-10 -0.230214)
(-0.150586 7.42852e-10 -0.236065)
(-0.141541 7.11758e-10 -0.24151)
(-0.132515 6.76826e-10 -0.246548)
(-0.123519 6.38414e-10 -0.251182)
(-0.114567 5.97188e-10 -0.255414)
(-0.105671 5.53864e-10 -0.259247)
(-0.096842 5.08725e-10 -0.262685)
(-0.0880916 4.62536e-10 -0.265733)
(-0.0794298 4.15657e-10 -0.268398)
(-0.0708663 3.68267e-10 -0.270684)
(-0.0624103 3.20903e-10 -0.272601)
(-0.0540702 2.73693e-10 -0.274155)
(-0.0458539 2.26919e-10 -0.275355)
(-0.0377687 1.80298e-10 -0.276209)
(-0.0298212 1.33806e-10 -0.276728)
(-0.0220177 8.77227e-11 -0.276921)
(-0.0143636 4.20751e-11 -0.276797)
(-0.00686401 -2.90712e-12 -0.276368)
(0.000476633 -4.63539e-11 -0.275645)
(0.00765408 -8.88797e-11 -0.274637)
(0.0146647 -1.29845e-10 -0.273356)
(0.0215057 -1.68481e-10 -0.271814)
(0.0281745 -2.05224e-10 -0.270021)
(0.034669 -2.39485e-10 -0.26799)
(0.0409877 -2.70753e-10 -0.265731)
(0.0471292 -2.99001e-10 -0.263256)
(0.0530927 -3.2359e-10 -0.260576)
(0.0588777 -3.44214e-10 -0.257703)
(0.0644839 -3.60845e-10 -0.254647)
(0.0699116 -3.73357e-10 -0.25142)
(0.075161 -3.8152e-10 -0.248032)
(0.0802328 -3.85179e-10 -0.244493)
(0.0851281 -3.84308e-10 -0.240815)
(0.089848 -3.78883e-10 -0.237006)
(0.0943939 -3.68827e-10 -0.233076)
(0.0987673 -3.54522e-10 -0.229035)
(0.10297 -3.3602e-10 -0.224892)
(0.107004 -3.13757e-10 -0.220655)
(0.110872 -2.87783e-10 -0.216333)
(0.114575 -2.58635e-10 -0.211933)
(0.118116 -2.26646e-10 -0.207463)
(0.121498 -1.92379e-10 -0.202931)
(0.124722 -1.56218e-10 -0.198342)
(0.127792 -1.18571e-10 -0.193703)
(0.130711 -7.99005e-11 -0.189021)
(0.13348 -4.06915e-11 -0.1843)
(0.136103 -1.25123e-12 -0.179545)
(0.138582 3.819e-11 -0.174762)
(0.14092 7.71459e-11 -0.169954)
(0.14312 1.15591e-10 -0.165126)
(0.145184 1.53244e-10 -0.16028)
(0.147115 1.9036e-10 -0.155419)
(0.148915 2.2671e-10 -0.150547)
(0.150587 2.62523e-10 -0.145665)
(0.152134 2.9803e-10 -0.140775)
(0.153557 3.33437e-10 -0.135879)
(0.154859 3.691e-10 -0.130978)
(0.156042 4.05047e-10 -0.126073)
(0.157107 4.41405e-10 -0.121164)
(0.158058 4.78098e-10 -0.116253)
(0.158894 5.14818e-10 -0.111338)
(0.159618 5.50567e-10 -0.106419)
(0.160232 5.84167e-10 -0.101498)
(0.160736 6.13877e-10 -0.0965722)
(0.161132 6.3788e-10 -0.0916422)
(0.161419 6.53459e-10 -0.0867073)
(0.1616 6.58234e-10 -0.0817666)
(0.161675 6.49667e-10 -0.0768197)
(0.161644 6.25992e-10 -0.071866)
(0.161507 5.8618e-10 -0.0669049)
(0.161265 5.3077e-10 -0.0619361)
(0.160916 4.61473e-10 -0.0569596)
(0.160462 3.82132e-10 -0.0519753)
(0.159901 2.98327e-10 -0.0469836)
(0.159233 2.17025e-10 -0.0419852)
(0.158458 1.45757e-10 -0.0369811)
(0.157573 9.19528e-11 -0.0319729)
(0.15658 6.20705e-11 -0.0269624)
(0.155475 5.99046e-11 -0.0219521)
(0.154259 8.6074e-11 -0.0169451)
(0.15293 1.37611e-10 -0.0119449)
(0.151487 2.0719e-10 -0.00695593)
(0.149928 2.85361e-10 -0.00198305)
(0.148252 3.60721e-10 0.00296811)
(0.146459 4.22763e-10 0.00789117)
(0.144546 4.6449e-10 0.012779)
(0.142513 4.85232e-10 0.0176236)
(0.140358 4.91112e-10 0.0224162)
(0.138082 4.95328e-10 0.0271472)
(0.135682 5.15951e-10 0.0318063)
(0.133159 5.70645e-10 0.0363821)
(0.130513 6.71107e-10 0.0408626)
(0.127744 8.15038e-10 0.0452352)
(0.124852 9.8101e-10 0.0494861)
(0.121839 1.12631e-09 0.0536012)
(0.118705 1.19007e-09 0.0575655)
(0.115453 1.10279e-09 0.0613637)
(0.112086 8.0251e-10 0.0649796)
(0.108605 2.50766e-10 0.0683969)
(0.105015 -5.48478e-10 0.0715989)
(0.101321 -1.53914e-09 0.0745685)
(0.0975273 -2.61066e-09 0.0772887)
(0.0936396 -3.60778e-09 0.0797426)
(0.0896649 -4.35058e-09 0.0819131)
(0.0856104 -4.66102e-09 0.0837838)
(0.0814846 -4.3926e-09 0.0853385)
(0.0772964 -3.4567e-09 0.0865619)
(0.0730558 -1.84396e-09 0.0874393)
(0.0687738 3.58985e-10 0.087957)
(0.0644619 2.95715e-09 0.0881024)
(0.0601325 5.63961e-09 0.0878642)
(0.0557989 7.97949e-09 0.0872326)
(0.051475 9.45196e-09 0.0861991)
(0.0471754 9.47817e-09 0.0847568)
(0.0429154 7.48716e-09 0.0829006)
(0.0387104 2.96884e-09 0.0806263)
(0.0345768 -4.50951e-09 0.0779313)
(0.0305308 -1.53026e-08 0.0748132)
(0.0265892 -2.96329e-08 0.0712694)
(0.0227689 -4.75558e-08 0.0672952)
(0.0190872 -6.92373e-08 0.062881)
(0.0155618 -9.56035e-08 0.0580067)
(0.0122111 -1.29169e-07 0.0526313)
(0.00905579 -1.76853e-07 0.0466689)
(0.00611877 -2.64904e-07 0.0399291)
(0.00346397 -5.04937e-07 0.0319366)
(0.0013235 -1.68747e-06 0.0215429)
(-0.00858464 5.8767e-06 0.48215)
(-0.0251804 -1.22035e-06 0.509198)
(-0.0432566 -1.88591e-06 0.516728)
(-0.0604256 -1.40029e-06 0.518566)
(-0.0773965 -5.08286e-07 0.517806)
(-0.0938614 1.05193e-07 0.515421)
(-0.109896 3.74186e-07 0.511853)
(-0.125487 2.0127e-07 0.507334)
(-0.14063 -1.81553e-08 0.502002)
(-0.155316 -8.10935e-08 0.495949)
(-0.169535 -5.638e-08 0.48924)
(-0.183275 -2.61947e-08 0.481927)
(-0.196529 -1.33581e-08 0.474052)
(-0.20929 -2.28997e-08 0.465651)
(-0.221551 -4.32677e-08 0.456756)
(-0.233307 -5.26231e-08 0.447395)
(-0.244554 -4.14306e-08 0.437597)
(-0.255287 -1.91131e-08 0.427386)
(-0.265502 -1.15242e-09 0.416785)
(-0.275196 4.37778e-09 0.405818)
(-0.284368 -3.8713e-10 0.394506)
(-0.293015 -8.32129e-09 0.382871)
(-0.301135 -1.34048e-08 0.370931)
(-0.30873 -1.35051e-08 0.358708)
(-0.315797 -9.76536e-09 0.34622)
(-0.322339 -4.56634e-09 0.333486)
(-0.328355 1.29937e-10 0.320524)
(-0.333847 3.37903e-09 0.307351)
(-0.338818 5.06534e-09 0.293986)
(-0.343268 5.48106e-09 0.280445)
(-0.347202 5.02333e-09 0.266745)
(-0.350622 4.06788e-09 0.252902)
(-0.353532 2.92967e-09 0.238934)
(-0.355936 1.83898e-09 0.224856)
(-0.357839 9.22042e-10 0.210685)
(-0.359245 2.07785e-10 0.196435)
(-0.36016 -3.33297e-10 0.182125)
(-0.360591 -7.37902e-10 0.167768)
(-0.360542 -1.01705e-09 0.153381)
(-0.360021 -1.15435e-09 0.138981)
(-0.359035 -1.12934e-09 0.124582)
(-0.357591 -9.44807e-10 0.1102)
(-0.355698 -6.38685e-10 0.0958531)
(-0.353364 -2.76969e-10 0.0815555)
(-0.350597 6.90429e-11 0.067324)
(-0.347408 3.44365e-10 0.0531747)
(-0.343807 5.24581e-10 0.0391241)
(-0.339803 6.14839e-10 0.0251886)
(-0.335407 6.40563e-10 0.0113847)
(-0.330632 6.33137e-10 -0.00227109)
(-0.325488 6.19236e-10 -0.0157613)
(-0.319991 6.15344e-10 -0.0290688)
(-0.314152 6.275e-10 -0.0421767)
(-0.307985 6.54042e-10 -0.0550681)
(-0.301506 6.89567e-10 -0.0677266)
(-0.294729 7.28368e-10 -0.0801359)
(-0.287669 7.65887e-10 -0.0922798)
(-0.280342 7.99029e-10 -0.104143)
(-0.272766 8.26028e-10 -0.11571)
(-0.264955 8.45681e-10 -0.126967)
(-0.256928 8.58091e-10 -0.137899)
(-0.248702 8.6377e-10 -0.148493)
(-0.240293 8.63383e-10 -0.158738)
(-0.23172 8.5839e-10 -0.16862)
(-0.223 8.50095e-10 -0.178131)
(-0.21415 8.39549e-10 -0.187259)
(-0.205189 8.27647e-10 -0.195996)
(-0.196132 8.14466e-10 -0.204335)
(-0.186998 7.99955e-10 -0.212269)
(-0.177802 7.83524e-10 -0.219792)
(-0.168562 7.64279e-10 -0.2269)
(-0.159293 7.41913e-10 -0.23359)
(-0.150011 7.1576e-10 -0.23986)
(-0.140731 6.85589e-10 -0.245708)
(-0.131466 6.51658e-10 -0.251135)
(-0.122232 6.13812e-10 -0.256141)
(-0.113042 5.72845e-10 -0.26073)
(-0.103907 5.29397e-10 -0.264902)
(-0.0948411 4.83492e-10 -0.268664)
(-0.0858545 4.36002e-10 -0.272019)
(-0.0769583 3.87642e-10 -0.274973)
(-0.0681626 3.38567e-10 -0.277532)
(-0.0594769 2.89082e-10 -0.279705)
(-0.0509101 2.397e-10 -0.281498)
(-0.0424702 1.90473e-10 -0.28292)
(-0.0341649 1.41629e-10 -0.28398)
(-0.0260011 9.25555e-11 -0.284687)
(-0.0179852 4.35332e-11 -0.285052)
(-0.0101228 -4.26066e-12 -0.285085)
(-0.00241934 -5.13124e-11 -0.284797)
(0.00512074 -9.81338e-11 -0.284198)
(0.0124927 -1.43011e-10 -0.2833)
(0.0196933 -1.85841e-10 -0.282114)
(0.0267194 -2.27238e-10 -0.280652)
(0.0335685 -2.65949e-10 -0.278925)
(0.0402384 -3.01947e-10 -0.276947)
(0.0467276 -3.34825e-10 -0.274727)
(0.0530346 -3.63967e-10 -0.272279)
(0.0591587 -3.89066e-10 -0.269614)
(0.0650994 -4.09918e-10 -0.266744)
(0.0708563 -4.26114e-10 -0.26368)
(0.0764297 -4.37832e-10 -0.260433)
(0.0818201 -4.44714e-10 -0.257016)
(0.087028 -4.4653e-10 -0.253438)
(0.0920547 -4.43485e-10 -0.249711)
(0.0969012 -4.35553e-10 -0.245845)
(0.101569 -4.2281e-10 -0.24185)
(0.10606 -4.0541e-10 -0.237736)
(0.110376 -3.83813e-10 -0.233513)
(0.114519 -3.57995e-10 -0.22919)
(0.11849 -3.28517e-10 -0.224775)
(0.122294 -2.9584e-10 -0.220277)
(0.125931 -2.6027e-10 -0.215705)
(0.129405 -2.22423e-10 -0.211065)
(0.132719 -1.82759e-10 -0.206364)
(0.135874 -1.41609e-10 -0.201611)
(0.138874 -9.96915e-11 -0.196811)
(0.141722 -5.7133e-11 -0.191969)
(0.14442 -1.44968e-11 -0.187092)
(0.146971 2.8038e-11 -0.182185)
(0.149379 7.02155e-11 -0.177252)
(0.151645 1.11754e-10 -0.172296)
(0.153774 1.52475e-10 -0.167324)
(0.155767 1.9266e-10 -0.162336)
(0.157627 2.32155e-10 -0.157337)
(0.159358 2.71139e-10 -0.152328)
(0.160961 3.09766e-10 -0.147313)
(0.16244 3.48394e-10 -0.142292)
(0.163796 3.87178e-10 -0.137268)
(0.165031 4.26424e-10 -0.132241)
(0.166149 4.66184e-10 -0.127212)
(0.16715 5.06559e-10 -0.122181)
(0.168037 5.47296e-10 -0.117149)
(0.168812 5.87931e-10 -0.112116)
(0.169475 6.27238e-10 -0.10708)
(0.170029 6.64038e-10 -0.102043)
(0.170475 6.96359e-10 -0.0970034)
(0.170813 7.22154e-10 -0.0919602)
(0.171045 7.38708e-10 -0.0869127)
(0.17117 7.43562e-10 -0.0818603)
(0.171191 7.34563e-10 -0.0768021)
(0.171107 7.09868e-10 -0.0717373)
(0.170917 6.69141e-10 -0.0666653)
(0.170623 6.13046e-10 -0.0615856)
(0.170224 5.44194e-10 -0.0564978)
(0.169719 4.66988e-10 -0.0514018)
(0.169108 3.87394e-10 -0.0462978)
(0.16839 3.12404e-10 -0.0411863)
(0.167564 2.49958e-10 -0.0360683)
(0.166629 2.06947e-10 -0.030945)
(0.165584 1.88984e-10 -0.0258184)
(0.164428 1.98685e-10 -0.0206906)
(0.163159 2.35311e-10 -0.0155648)
(0.161775 2.94177e-10 -0.0104444)
(0.160276 3.67063e-10 -0.00533372)
(0.158659 4.43544e-10 -0.000237649)
(0.156923 5.12422e-10 0.00483819)
(0.155066 5.64703e-10 0.00988744)
(0.153087 5.96363e-10 0.0149028)
(0.150984 6.10114e-10 0.0198763)
(0.148756 6.16308e-10 0.0247988)
(0.146402 6.31038e-10 0.0296608)
(0.14392 6.73169e-10 0.0344515)
(0.141309 7.57932e-10 0.0391595)
(0.13857 8.89256e-10 0.0437723)
(0.135701 1.05323e-09 0.0482769)
(0.132704 1.21386e-09 0.0526593)
(0.129578 1.31383e-09 0.0569048)
(0.126324 1.28229e-09 0.060998)
(0.122945 1.0494e-09 0.0649228)
(0.119442 5.64629e-10 0.0686627)
(0.115818 -1.84923e-10 0.0722006)
(0.112076 -1.15817e-09 0.075519)
(0.10822 -2.25615e-09 0.0786002)
(0.104256 -3.32844e-09 0.0814264)
(0.100189 -4.19114e-09 0.0839796)
(0.0960248 -4.65429e-09 0.0862422)
(0.0917716 -4.55434e-09 0.0881968)
(0.0874373 -3.78347e-09 0.0898263)
(0.0830312 -2.31552e-09 0.0911143)
(0.0785634 -2.24782e-10 0.0920453)
(0.0740448 2.30003e-09 0.0926046)
(0.0694874 4.9452e-09 0.0927789)
(0.0649041 7.2673e-09 0.0925558)
(0.0603085 8.7016e-09 0.0919248)
(0.055715 8.59408e-09 0.0908767)
(0.051139 6.26534e-09 0.0894038)
(0.0465963 1.09269e-09 0.0875004)
(0.0421035 -7.42534e-09 0.0851618)
(0.0376774 -1.96624e-08 0.0823849)
(0.0333354 -3.58818e-08 0.0791672)
(0.0290952 -5.62e-08 0.0755056)
(0.0249747 -8.05635e-08 0.0713953)
(0.0209921 -1.09074e-07 0.0668261)
(0.017166 -1.42775e-07 0.0617776)
(0.013516 -1.84683e-07 0.0562073)
(0.0100636 -2.4299e-07 0.0500269)
(0.0068326 -3.47057e-07 0.0430408)
(0.00388959 -6.15924e-07 0.0347634)
(0.00149824 -1.88726e-06 0.0240303)
(-0.00859789 5.87665e-06 0.482155)
(-0.0251794 -1.22116e-06 0.509199)
(-0.0432559 -1.88921e-06 0.516729)
(-0.0604264 -1.40139e-06 0.518567)
(-0.0773971 -5.08407e-07 0.517806)
(-0.0938621 1.052e-07 0.51542)
(-0.109896 3.74195e-07 0.511853)
(-0.125486 2.01271e-07 0.507334)
(-0.14063 -1.81553e-08 0.502002)
(-0.155316 -8.10936e-08 0.495948)
(-0.169535 -5.638e-08 0.48924)
(-0.183275 -2.61947e-08 0.481927)
(-0.196529 -1.33581e-08 0.474052)
(-0.209289 -2.28997e-08 0.465651)
(-0.221551 -4.32677e-08 0.456756)
(-0.233307 -5.26232e-08 0.447395)
(-0.244554 -4.14306e-08 0.437597)
(-0.255287 -1.91131e-08 0.427386)
(-0.265502 -1.15242e-09 0.416785)
(-0.275196 4.37778e-09 0.405818)
(-0.284368 -3.87131e-10 0.394506)
(-0.293015 -8.32129e-09 0.382871)
(-0.301135 -1.34048e-08 0.370931)
(-0.30873 -1.35051e-08 0.358708)
(-0.315797 -9.76537e-09 0.34622)
(-0.322339 -4.56634e-09 0.333486)
(-0.328355 1.29938e-10 0.320524)
(-0.333847 3.37904e-09 0.307351)
(-0.338818 5.06535e-09 0.293986)
(-0.343268 5.48107e-09 0.280445)
(-0.347202 5.02333e-09 0.266745)
(-0.350622 4.06788e-09 0.252902)
(-0.353532 2.92968e-09 0.238934)
(-0.355936 1.83898e-09 0.224856)
(-0.357839 9.22043e-10 0.210685)
(-0.359245 2.07785e-10 0.196436)
(-0.36016 -3.33298e-10 0.182125)
(-0.360591 -7.37903e-10 0.167768)
(-0.360542 -1.01705e-09 0.153381)
(-0.360021 -1.15435e-09 0.138981)
(-0.359035 -1.12934e-09 0.124582)
(-0.357591 -9.44808e-10 0.110201)
(-0.355698 -6.38685e-10 0.0958531)
(-0.353364 -2.76969e-10 0.0815556)
(-0.350597 6.90429e-11 0.067324)
(-0.347408 3.44365e-10 0.0531748)
(-0.343807 5.24581e-10 0.0391242)
(-0.339803 6.14839e-10 0.0251887)
(-0.335407 6.40563e-10 0.0113847)
(-0.330632 6.33137e-10 -0.00227106)
(-0.325489 6.19236e-10 -0.0157613)
(-0.319991 6.15343e-10 -0.0290688)
(-0.314152 6.275e-10 -0.0421767)
(-0.307985 6.54041e-10 -0.0550681)
(-0.301506 6.89566e-10 -0.0677266)
(-0.294729 7.28367e-10 -0.0801358)
(-0.287669 7.65886e-10 -0.0922798)
(-0.280342 7.99028e-10 -0.104143)
(-0.272766 8.26027e-10 -0.11571)
(-0.264955 8.4568e-10 -0.126967)
(-0.256928 8.5809e-10 -0.137899)
(-0.248702 8.63768e-10 -0.148493)
(-0.240293 8.63381e-10 -0.158738)
(-0.23172 8.58388e-10 -0.16862)
(-0.223 8.50094e-10 -0.178131)
(-0.21415 8.39547e-10 -0.187259)
(-0.205189 8.27645e-10 -0.195996)
(-0.196132 8.14464e-10 -0.204335)
(-0.186998 7.99953e-10 -0.212269)
(-0.177802 7.83522e-10 -0.219792)
(-0.168562 7.64277e-10 -0.2269)
(-0.159293 7.41911e-10 -0.23359)
(-0.150011 7.15758e-10 -0.23986)
(-0.140731 6.85587e-10 -0.245708)
(-0.131466 6.51656e-10 -0.251135)
(-0.122232 6.1381e-10 -0.256141)
(-0.113042 5.72844e-10 -0.26073)
(-0.103907 5.29395e-10 -0.264902)
(-0.0948412 4.83491e-10 -0.268664)
(-0.0858546 4.36001e-10 -0.272019)
(-0.0769584 3.87641e-10 -0.274973)
(-0.0681627 3.38566e-10 -0.277532)
(-0.059477 2.89081e-10 -0.279705)
(-0.0509101 2.397e-10 -0.281498)
(-0.0424703 1.90472e-10 -0.28292)
(-0.034165 1.41629e-10 -0.28398)
(-0.0260011 9.25552e-11 -0.284687)
(-0.0179852 4.35331e-11 -0.285052)
(-0.0101229 -4.26065e-12 -0.285085)
(-0.00241939 -5.13123e-11 -0.284797)
(0.0051207 -9.81336e-11 -0.284198)
(0.0124927 -1.4301e-10 -0.2833)
(0.0196933 -1.8584e-10 -0.282114)
(0.0267193 -2.27237e-10 -0.280652)
(0.0335684 -2.65948e-10 -0.278925)
(0.0402384 -3.01947e-10 -0.276947)
(0.0467275 -3.34824e-10 -0.274727)
(0.0530346 -3.63966e-10 -0.272279)
(0.0591587 -3.89065e-10 -0.269614)
(0.0650993 -4.09917e-10 -0.266744)
(0.0708563 -4.26113e-10 -0.26368)
(0.0764297 -4.37831e-10 -0.260433)
(0.08182 -4.44713e-10 -0.257016)
(0.087028 -4.46529e-10 -0.253438)
(0.0920546 -4.43484e-10 -0.249711)
(0.0969011 -4.35552e-10 -0.245845)
(0.101569 -4.22809e-10 -0.24185)
(0.10606 -4.05409e-10 -0.237736)
(0.110376 -3.83813e-10 -0.233513)
(0.114518 -3.57994e-10 -0.22919)
(0.11849 -3.28516e-10 -0.224775)
(0.122294 -2.95839e-10 -0.220277)
(0.125931 -2.6027e-10 -0.215705)
(0.129405 -2.22423e-10 -0.211065)
(0.132719 -1.82758e-10 -0.206364)
(0.135874 -1.41609e-10 -0.201611)
(0.138874 -9.96913e-11 -0.196811)
(0.141721 -5.71329e-11 -0.191969)
(0.14442 -1.44968e-11 -0.187092)
(0.146971 2.80379e-11 -0.182185)
(0.149378 7.02153e-11 -0.177252)
(0.151645 1.11754e-10 -0.172296)
(0.153774 1.52475e-10 -0.167324)
(0.155767 1.92659e-10 -0.162336)
(0.157627 2.32154e-10 -0.157337)
(0.159358 2.71138e-10 -0.152328)
(0.160961 3.09765e-10 -0.147313)
(0.16244 3.48394e-10 -0.142292)
(0.163796 3.87177e-10 -0.137268)
(0.165031 4.26423e-10 -0.132241)
(0.166149 4.66183e-10 -0.127212)
(0.16715 5.06559e-10 -0.122181)
(0.168037 5.47295e-10 -0.117149)
(0.168812 5.8793e-10 -0.112116)
(0.169475 6.27237e-10 -0.10708)
(0.170029 6.64037e-10 -0.102043)
(0.170475 6.96358e-10 -0.0970034)
(0.170813 7.22153e-10 -0.0919602)
(0.171045 7.38707e-10 -0.0869127)
(0.17117 7.43561e-10 -0.0818603)
(0.171191 7.34562e-10 -0.0768021)
(0.171107 7.09867e-10 -0.0717373)
(0.170917 6.6914e-10 -0.0666653)
(0.170623 6.13045e-10 -0.0615856)
(0.170224 5.44194e-10 -0.0564978)
(0.169719 4.66988e-10 -0.0514018)
(0.169108 3.87394e-10 -0.0462978)
(0.16839 3.12404e-10 -0.0411863)
(0.167564 2.49957e-10 -0.0360683)
(0.166629 2.06947e-10 -0.030945)
(0.165584 1.88984e-10 -0.0258184)
(0.164428 1.98685e-10 -0.0206907)
(0.163159 2.35311e-10 -0.0155648)
(0.161775 2.94177e-10 -0.0104444)
(0.160276 3.67063e-10 -0.00533373)
(0.158659 4.43543e-10 -0.000237659)
(0.156923 5.12421e-10 0.00483819)
(0.155066 5.64703e-10 0.00988743)
(0.153087 5.96362e-10 0.0149028)
(0.150984 6.10113e-10 0.0198763)
(0.148756 6.16307e-10 0.0247988)
(0.146402 6.31037e-10 0.0296608)
(0.14392 6.73168e-10 0.0344515)
(0.141309 7.57931e-10 0.0391595)
(0.13857 8.89255e-10 0.0437723)
(0.135701 1.05323e-09 0.0482769)
(0.132704 1.21386e-09 0.0526593)
(0.129578 1.31383e-09 0.0569048)
(0.126324 1.28229e-09 0.060998)
(0.122945 1.04939e-09 0.0649228)
(0.119442 5.64628e-10 0.0686627)
(0.115818 -1.84923e-10 0.0722006)
(0.112076 -1.15817e-09 0.075519)
(0.10822 -2.25615e-09 0.0786002)
(0.104256 -3.32844e-09 0.0814263)
(0.100189 -4.19113e-09 0.0839796)
(0.0960248 -4.65428e-09 0.0862422)
(0.0917716 -4.55434e-09 0.0881968)
(0.0874373 -3.78347e-09 0.0898262)
(0.0830312 -2.31551e-09 0.0911142)
(0.0785633 -2.24782e-10 0.0920452)
(0.0740448 2.30003e-09 0.0926045)
(0.0694874 4.9452e-09 0.0927788)
(0.0649041 7.2673e-09 0.0925558)
(0.0603084 8.7016e-09 0.0919248)
(0.055715 8.59407e-09 0.0908766)
(0.051139 6.26534e-09 0.0894037)
(0.0465963 1.09269e-09 0.0875002)
(0.0421035 -7.42533e-09 0.0851617)
(0.0376774 -1.96624e-08 0.0823848)
(0.0333354 -3.58818e-08 0.079167)
(0.0290952 -5.62e-08 0.0755054)
(0.0249746 -8.05633e-08 0.071395)
(0.020992 -1.09074e-07 0.0668258)
(0.017166 -1.42774e-07 0.0617772)
(0.013516 -1.84683e-07 0.0562067)
(0.0100637 -2.4299e-07 0.0500261)
(0.00683275 -3.47057e-07 0.0430396)
(0.00388985 -6.15925e-07 0.0347616)
(0.00149868 -1.88726e-06 0.0240273)
(-0.00908752 -4.457e-06 0.498624)
(-0.0257277 7.2431e-07 0.52864)
(-0.0442364 -1.97594e-07 0.535613)
(-0.0617268 -6.25379e-07 0.536858)
(-0.0790134 -2.49298e-07 0.535558)
(-0.0957786 1.59596e-07 0.532678)
(-0.11209 2.41968e-07 0.52863)
(-0.127936 -5.433e-09 0.523631)
(-0.143313 -1.09738e-07 0.517811)
(-0.158212 -4.2739e-08 0.511259)
(-0.172622 4.3165e-09 0.504042)
(-0.186534 -1.05542e-08 0.496212)
(-0.199939 -2.93002e-08 0.487812)
(-0.21283 -3.43794e-08 0.478878)
(-0.2252 -3.80167e-08 0.469443)
(-0.237045 -4.0651e-08 0.459538)
(-0.248361 -3.47257e-08 0.44919)
(-0.259143 -2.06946e-08 0.438426)
(-0.269387 -6.97926e-09 0.427269)
(-0.279092 -6.52207e-10 0.415743)
(-0.288256 -2.19005e-09 0.40387)
(-0.296876 -7.23925e-09 0.391672)
(-0.304952 -1.106e-08 0.37917)
(-0.312484 -1.13848e-08 0.366384)
(-0.319471 -8.58349e-09 0.353333)
(-0.325915 -4.30916e-09 0.340037)
(-0.331818 -1.53914e-10 0.326514)
(-0.33718 2.95913e-09 0.312782)
(-0.342004 4.75203e-09 0.298861)
(-0.346292 5.33538e-09 0.284766)
(-0.350049 4.99802e-09 0.270516)
(-0.353277 4.09298e-09 0.256127)
(-0.35598 2.9649e-09 0.241617)
(-0.358164 1.88241e-09 0.227002)
(-0.359833 9.9214e-10 0.212298)
(-0.360992 3.19564e-10 0.197523)
(-0.361648 -1.83488e-10 0.182692)
(-0.361806 -5.72755e-10 0.167822)
(-0.361473 -8.68417e-10 0.152929)
(-0.360658 -1.05028e-09 0.138029)
(-0.359366 -1.08402e-09 0.123139)
(-0.357607 -9.55006e-10 0.108276)
(-0.355389 -6.87227e-10 0.0934548)
(-0.352721 -3.40052e-10 0.0786933)
(-0.349612 1.4101e-11 0.0640078)
(-0.346073 3.1367e-10 0.0494151)
(-0.342114 5.24461e-10 0.0349321)
(-0.337747 6.42766e-10 0.0205757)
(-0.332982 6.87992e-10 0.0063632)
(-0.327833 6.88859e-10 -0.0076883)
(-0.322313 6.73167e-10 -0.0215604)
(-0.316435 6.59933e-10 -0.0352356)
(-0.310213 6.58907e-10 -0.0486963)
(-0.303663 6.7178e-10 -0.0619251)
(-0.2968 6.95453e-10 -0.074905)
(-0.28964 7.2578e-10 -0.0876191)
(-0.2822 7.58179e-10 -0.100051)
(-0.274495 7.88811e-10 -0.112185)
(-0.266544 8.15016e-10 -0.124004)
(-0.258365 8.34745e-10 -0.135495)
(-0.249974 8.46976e-10 -0.146643)
(-0.241391 8.51427e-10 -0.157435)
(-0.232633 8.48738e-10 -0.167858)
(-0.223719 8.40291e-10 -0.1779)
(-0.214668 8.2752e-10 -0.187551)
(-0.205497 8.11781e-10 -0.196801)
(-0.196224 7.94251e-10 -0.205642)
(-0.186868 7.75519e-10 -0.214066)
(-0.177446 7.55892e-10 -0.222066)
(-0.167975 7.34474e-10 -0.229639)
(-0.158472 7.11163e-10 -0.236779)
(-0.148953 6.84807e-10 -0.243485)
(-0.139434 6.5533e-10 -0.249753)
(-0.12993 6.22297e-10 -0.255585)
(-0.120456 5.8558e-10 -0.260981)
(-0.111025 5.45358e-10 -0.265942)
(-0.101651 5.02195e-10 -0.27047)
(-0.0923457 4.56294e-10 -0.274571)
(-0.0831222 4.08116e-10 -0.278247)
(-0.0739912 3.58327e-10 -0.281506)
(-0.0649632 3.07566e-10 -0.284353)
(-0.0560481 2.5637e-10 -0.286795)
(-0.0472551 2.04766e-10 -0.288841)
(-0.0385926 1.5306e-10 -0.290498)
(-0.0300684 1.01124e-10 -0.291776)
(-0.0216898 4.94948e-11 -0.292685)
(-0.0134633 -1.87804e-12 -0.293235)
(-0.00539487 -5.2739e-11 -0.293436)
(0.00251029 -1.02448e-10 -0.293299)
(0.0102468 -1.51621e-10 -0.292836)
(0.0178106 -1.99258e-10 -0.292057)
(0.025198 -2.44643e-10 -0.290976)
(0.032406 -2.87931e-10 -0.289604)
(0.039432 -3.29019e-10 -0.287952)
(0.0462738 -3.66576e-10 -0.286035)
(0.0529298 -4.00653e-10 -0.283863)
(0.0593987 -4.30637e-10 -0.281449)
(0.0656795 -4.56119e-10 -0.278805)
(0.0717718 -4.7679e-10 -0.275944)
(0.0776755 -4.9255e-10 -0.272878)
(0.0833906 -5.03116e-10 -0.269617)
(0.0889177 -5.08283e-10 -0.266175)
(0.0942577 -5.08231e-10 -0.262563)
(0.0994114 -5.02935e-10 -0.258792)
(0.10438 -4.92316e-10 -0.254872)
(0.109166 -4.76632e-10 -0.250816)
(0.11377 -4.56086e-10 -0.246632)
(0.118195 -4.31088e-10 -0.242331)
(0.122442 -4.01996e-10 -0.237923)
(0.126514 -3.6904e-10 -0.233418)
(0.130414 -3.32885e-10 -0.228823)
(0.134143 -2.93889e-10 -0.224149)
(0.137706 -2.52693e-10 -0.219402)
(0.141103 -2.09679e-10 -0.21459)
(0.14434 -1.65283e-10 -0.209722)
(0.147417 -1.20042e-10 -0.204803)
(0.150339 -7.42878e-11 -0.19984)
(0.153108 -2.84561e-11 -0.194839)
(0.155728 1.71462e-11 -0.189806)
(0.158201 6.24425e-11 -0.184746)
(0.160531 1.07126e-10 -0.179663)
(0.16272 1.51145e-10 -0.174561)
(0.164772 1.94576e-10 -0.169444)
(0.166689 2.37216e-10 -0.164315)
(0.168474 2.79498e-10 -0.159178)
(0.17013 3.21424e-10 -0.154035)
(0.17166 3.63223e-10 -0.148887)
(0.173066 4.051e-10 -0.143736)
(0.174351 4.47338e-10 -0.138585)
(0.175516 4.90115e-10 -0.133432)
(0.176565 5.3343e-10 -0.128281)
(0.1775 5.77132e-10 -0.123129)
(0.178321 6.21067e-10 -0.117978)
(0.179032 6.64363e-10 -0.112828)
(0.179633 7.05973e-10 -0.107677)
(0.180125 7.44436e-10 -0.102526)
(0.180511 7.77781e-10 -0.0973731)
(0.180791 8.03756e-10 -0.0922179)
(0.180966 8.19901e-10 -0.0870593)
(0.181036 8.23783e-10 -0.0818964)
(0.181003 8.13508e-10 -0.076728)
(0.180865 7.8746e-10 -0.0715532)
(0.180624 7.45868e-10 -0.0663712)
(0.180279 6.89883e-10 -0.0611813)
(0.179829 6.22934e-10 -0.0559829)
(0.179275 5.49528e-10 -0.0507757)
(0.178615 4.76192e-10 -0.0455597)
(0.177848 4.1015e-10 -0.0403353)
(0.176974 3.5888e-10 -0.0351032)
(0.17599 3.28991e-10 -0.0298645)
(0.174896 3.2484e-10 -0.024621)
(0.17369 3.48097e-10 -0.019375)
(0.17237 3.96279e-10 -0.0141291)
(0.170935 4.63498e-10 -0.00888694)
(0.169382 5.4028e-10 -0.00365262)
(0.16771 6.1589e-10 0.00156895)
(0.165917 6.79723e-10 0.00677215)
(0.163999 7.24757e-10 0.0119506)
(0.161957 7.50042e-10 0.017097)
(0.159787 7.62057e-10 0.0222032)
(0.157488 7.74254e-10 0.0272602)
(0.155058 8.05416e-10 0.0322579)
(0.152496 8.72898e-10 0.0371855)
(0.1498 9.86803e-10 0.0420313)
(0.14697 1.1414e-09 0.0467827)
(0.144004 1.30921e-09 0.0514261)
(0.140902 1.43939e-09 0.0559471)
(0.137665 1.46284e-09 0.0603306)
(0.134293 1.30454e-09 0.0645607)
(0.130787 9.0154e-10 0.0686207)
(0.127148 2.24095e-10 0.0724934)
(0.12338 -7.0615e-10 0.076161)
(0.119484 -1.80675e-09 0.0796054)
(0.115466 -2.9372e-09 0.0828081)
(0.111328 -3.91395e-09 0.0857503)
(0.107078 -4.53847e-09 0.0884133)
(0.102721 -4.62874e-09 0.0907785)
(0.0982635 -4.0537e-09 0.0928274)
(0.0937149 -2.76259e-09 0.0945421)
(0.0890841 -8.07363e-10 0.0959052)
(0.0843811 1.63922e-09 0.0969001)
(0.0796172 4.27199e-09 0.0975111)
(0.0748046 6.64477e-09 0.0977239)
(0.0699565 8.17464e-09 0.0975253)
(0.0650871 8.16146e-09 0.0969036)
(0.0602113 5.84282e-09 0.0958489)
(0.055345 4.80836e-10 0.0943527)
(0.0505051 -8.53546e-09 0.0924085)
(0.0457087 -2.16257e-08 0.0900113)
(0.0409737 -3.90243e-08 0.0871572)
(0.0363186 -6.08256e-08 0.0838434)
(0.0317621 -8.69608e-08 0.0800665)
(0.0273232 -1.17187e-07 0.0758214)
(0.0230212 -1.51464e-07 0.0710977)
(0.0188758 -1.9089e-07 0.0658741)
(0.0149075 -2.38902e-07 0.0601072)
(0.011139 -3.04681e-07 0.0537059)
(0.00759512 -4.19289e-07 0.0464696)
(0.0043447 -7.02956e-07 0.0379023)
(0.00168513 -1.99147e-06 0.0268243)
(-0.00910311 -4.45726e-06 0.498636)
(-0.0257279 7.2499e-07 0.52864)
(-0.0442359 -1.97954e-07 0.535615)
(-0.0617287 -6.25888e-07 0.53686)
(-0.0790145 -2.49359e-07 0.535558)
(-0.0957787 1.59607e-07 0.532677)
(-0.112089 2.41973e-07 0.52863)
(-0.127935 -5.43305e-09 0.523631)
(-0.143313 -1.09739e-07 0.517811)
(-0.158212 -4.27391e-08 0.511259)
(-0.172622 4.3165e-09 0.504042)
(-0.186534 -1.05542e-08 0.496212)
(-0.199939 -2.93002e-08 0.487812)
(-0.21283 -3.43794e-08 0.478878)
(-0.2252 -3.80167e-08 0.469443)
(-0.237045 -4.0651e-08 0.459538)
(-0.248361 -3.47257e-08 0.44919)
(-0.259143 -2.06946e-08 0.438426)
(-0.269387 -6.97927e-09 0.427269)
(-0.279093 -6.52208e-10 0.415743)
(-0.288256 -2.19006e-09 0.40387)
(-0.296876 -7.23926e-09 0.391672)
(-0.304952 -1.10601e-08 0.37917)
(-0.312484 -1.13848e-08 0.366384)
(-0.319471 -8.5835e-09 0.353333)
(-0.325916 -4.30917e-09 0.340037)
(-0.331818 -1.53914e-10 0.326514)
(-0.33718 2.95913e-09 0.312782)
(-0.342004 4.75204e-09 0.298861)
(-0.346292 5.33539e-09 0.284766)
(-0.350049 4.99802e-09 0.270516)
(-0.353277 4.09298e-09 0.256127)
(-0.355981 2.9649e-09 0.241617)
(-0.358164 1.88241e-09 0.227002)
(-0.359833 9.92141e-10 0.212298)
(-0.360992 3.19564e-10 0.197523)
(-0.361648 -1.83488e-10 0.182692)
(-0.361806 -5.72756e-10 0.167822)
(-0.361474 -8.68418e-10 0.152929)
(-0.360658 -1.05028e-09 0.138029)
(-0.359366 -1.08402e-09 0.123139)
(-0.357607 -9.55007e-10 0.108276)
(-0.355389 -6.87227e-10 0.0934548)
(-0.352721 -3.40052e-10 0.0786933)
(-0.349612 1.4101e-11 0.0640078)
(-0.346073 3.1367e-10 0.0494151)
(-0.342114 5.24461e-10 0.0349321)
(-0.337747 6.42766e-10 0.0205758)
(-0.332982 6.87992e-10 0.00636322)
(-0.327833 6.88859e-10 -0.00768827)
(-0.322313 6.73166e-10 -0.0215604)
(-0.316435 6.59932e-10 -0.0352356)
(-0.310213 6.58907e-10 -0.0486962)
(-0.303663 6.71779e-10 -0.0619251)
(-0.296801 6.95452e-10 -0.074905)
(-0.28964 7.25779e-10 -0.0876191)
(-0.2822 7.58178e-10 -0.100051)
(-0.274495 7.8881e-10 -0.112185)
(-0.266544 8.15014e-10 -0.124004)
(-0.258365 8.34744e-10 -0.135495)
(-0.249974 8.46974e-10 -0.146643)
(-0.241391 8.51425e-10 -0.157435)
(-0.232633 8.48736e-10 -0.167858)
(-0.22372 8.40289e-10 -0.1779)
(-0.214668 8.27518e-10 -0.187551)
(-0.205497 8.11779e-10 -0.196801)
(-0.196224 7.94249e-10 -0.205642)
(-0.186868 7.75517e-10 -0.214066)
(-0.177446 7.5589e-10 -0.222066)
(-0.167975 7.34472e-10 -0.229639)
(-0.158472 7.11161e-10 -0.236779)
(-0.148953 6.84805e-10 -0.243485)
(-0.139434 6.55329e-10 -0.249753)
(-0.12993 6.22296e-10 -0.255585)
(-0.120456 5.85579e-10 -0.260981)
(-0.111025 5.45357e-10 -0.265941)
(-0.101651 5.02193e-10 -0.27047)
(-0.0923458 4.56292e-10 -0.274571)
(-0.0831223 4.08115e-10 -0.278247)
(-0.0739913 3.58326e-10 -0.281506)
(-0.0649633 3.07565e-10 -0.284353)
(-0.0560482 2.5637e-10 -0.286795)
(-0.0472551 2.04766e-10 -0.288841)
(-0.0385926 1.53059e-10 -0.290498)
(-0.0300685 1.01123e-10 -0.291776)
(-0.0216899 4.94946e-11 -0.292685)
(-0.0134633 -1.87804e-12 -0.293235)
(-0.00539491 -5.27388e-11 -0.293436)
(0.00251025 -1.02448e-10 -0.293299)
(0.0102467 -1.5162e-10 -0.292836)
(0.0178105 -1.99257e-10 -0.292057)
(0.025198 -2.44643e-10 -0.290976)
(0.032406 -2.8793e-10 -0.289604)
(0.039432 -3.29018e-10 -0.287952)
(0.0462738 -3.66575e-10 -0.286035)
(0.0529298 -4.00652e-10 -0.283863)
(0.0593986 -4.30636e-10 -0.281449)
(0.0656795 -4.56118e-10 -0.278805)
(0.0717718 -4.76789e-10 -0.275944)
(0.0776754 -4.92548e-10 -0.272878)
(0.0833906 -5.03114e-10 -0.269617)
(0.0889177 -5.08282e-10 -0.266175)
(0.0942576 -5.0823e-10 -0.262563)
(0.0994114 -5.02933e-10 -0.258792)
(0.10438 -4.92315e-10 -0.254872)
(0.109166 -4.7663e-10 -0.250816)
(0.11377 -4.56085e-10 -0.246632)
(0.118195 -4.31087e-10 -0.242331)
(0.122442 -4.01995e-10 -0.237923)
(0.126514 -3.69039e-10 -0.233418)
(0.130414 -3.32884e-10 -0.228823)
(0.134143 -2.93889e-10 -0.224149)
(0.137706 -2.52693e-10 -0.219402)
(0.141103 -2.09679e-10 -0.21459)
(0.14434 -1.65283e-10 -0.209722)
(0.147417 -1.20042e-10 -0.204803)
(0.150339 -7.42876e-11 -0.19984)
(0.153108 -2.8456e-11 -0.194839)
(0.155728 1.71462e-11 -0.189806)
(0.158201 6.24424e-11 -0.184746)
(0.160531 1.07126e-10 -0.179663)
(0.16272 1.51144e-10 -0.174561)
(0.164772 1.94576e-10 -0.169444)
(0.166689 2.37215e-10 -0.164315)
(0.168474 2.79498e-10 -0.159178)
(0.17013 3.21423e-10 -0.154035)
(0.17166 3.63222e-10 -0.148887)
(0.173066 4.051e-10 -0.143736)
(0.174351 4.47337e-10 -0.138585)
(0.175516 4.90114e-10 -0.133432)
(0.176565 5.3343e-10 -0.128281)
(0.1775 5.77131e-10 -0.123129)
(0.178321 6.21066e-10 -0.117978)
(0.179032 6.64362e-10 -0.112828)
(0.179633 7.05972e-10 -0.107677)
(0.180125 7.44435e-10 -0.102526)
(0.180511 7.7778e-10 -0.0973732)
(0.180791 8.03754e-10 -0.0922179)
(0.180966 8.19899e-10 -0.0870594)
(0.181036 8.23782e-10 -0.0818964)
(0.181003 8.13507e-10 -0.076728)
(0.180865 7.87459e-10 -0.0715532)
(0.180624 7.45867e-10 -0.0663713)
(0.180279 6.89882e-10 -0.0611813)
(0.179829 6.22934e-10 -0.0559829)
(0.179275 5.49527e-10 -0.0507757)
(0.178615 4.76192e-10 -0.0455597)
(0.177848 4.10149e-10 -0.0403353)
(0.176974 3.58879e-10 -0.0351032)
(0.17599 3.2899e-10 -0.0298645)
(0.174896 3.2484e-10 -0.0246211)
(0.17369 3.48096e-10 -0.019375)
(0.17237 3.96278e-10 -0.0141291)
(0.170935 4.63498e-10 -0.00888695)
(0.169382 5.40279e-10 -0.00365263)
(0.16771 6.15889e-10 0.00156894)
(0.165916 6.79722e-10 0.00677214)
(0.163999 7.24756e-10 0.0119506)
(0.161957 7.50041e-10 0.017097)
(0.159787 7.62056e-10 0.0222032)
(0.157488 7.74253e-10 0.0272601)
(0.155058 8.05415e-10 0.0322579)
(0.152496 8.72897e-10 0.0371855)
(0.1498 9.86802e-10 0.0420313)
(0.14697 1.1414e-09 0.0467827)
(0.144004 1.30921e-09 0.0514261)
(0.140902 1.43938e-09 0.0559471)
(0.137665 1.46284e-09 0.0603306)
(0.134293 1.30454e-09 0.0645607)
(0.130787 9.01539e-10 0.0686207)
(0.127148 2.24095e-10 0.0724933)
(0.12338 -7.06149e-10 0.076161)
(0.119484 -1.80674e-09 0.0796054)
(0.115466 -2.93719e-09 0.0828081)
(0.111328 -3.91394e-09 0.0857503)
(0.107078 -4.53847e-09 0.0884133)
(0.102721 -4.62873e-09 0.0907785)
(0.0982635 -4.0537e-09 0.0928274)
(0.0937149 -2.76258e-09 0.0945421)
(0.0890841 -8.07362e-10 0.0959051)
(0.0843811 1.63921e-09 0.0969)
(0.0796172 4.27199e-09 0.0975111)
(0.0748046 6.64477e-09 0.0977238)
(0.0699565 8.17464e-09 0.0975252)
(0.065087 8.16146e-09 0.0969035)
(0.0602112 5.84281e-09 0.0958488)
(0.055345 4.80836e-10 0.0943526)
(0.050505 -8.53546e-09 0.0924084)
(0.0457086 -2.16257e-08 0.0900111)
(0.0409737 -3.90243e-08 0.087157)
(0.0363186 -6.08255e-08 0.0838431)
(0.0317621 -8.69607e-08 0.0800662)
(0.0273232 -1.17186e-07 0.0758211)
(0.0230211 -1.51463e-07 0.0710973)
(0.0188757 -1.90889e-07 0.0658736)
(0.0149075 -2.38902e-07 0.0601064)
(0.0111391 -3.04681e-07 0.0537049)
(0.00759526 -4.19289e-07 0.0464681)
(0.00434501 -7.02958e-07 0.0378999)
(0.00168564 -1.99147e-06 0.0268203)
(-0.0124958 -6.96503e-06 0.516049)
(-0.0266396 5.03563e-08 0.548701)
(-0.0455672 7.19224e-07 0.554878)
(-0.0631477 9.68702e-08 0.555467)
(-0.0806455 1.52457e-07 0.553611)
(-0.0976534 2.65695e-07 0.550224)
(-0.114214 1.50363e-07 0.54568)
(-0.130299 -1.57236e-07 0.540181)
(-0.145901 -1.5499e-07 0.533852)
(-0.161003 2.27022e-08 0.526779)
(-0.175595 7.75264e-08 0.519032)
(-0.189667 9.30539e-09 0.510662)
(-0.203211 -4.66004e-08 0.501713)
(-0.216219 -4.9288e-08 0.492224)
(-0.228685 -3.38666e-08 0.482229)
(-0.240604 -2.58077e-08 0.471757)
(-0.251974 -2.30163e-08 0.460839)
(-0.262789 -1.79413e-08 0.4495)
(-0.273048 -1.06017e-08 0.437766)
(-0.282747 -5.36155e-09 0.425661)
(-0.291885 -4.50754e-09 0.413208)
(-0.300461 -6.60136e-09 0.400428)
(-0.308474 -8.71348e-09 0.387344)
(-0.315925 -8.88143e-09 0.373975)
(-0.322813 -6.8791e-09 0.360343)
(-0.329141 -3.60575e-09 0.346466)
(-0.334909 -1.75827e-10 0.332365)
(-0.340121 2.60898e-09 0.318058)
(-0.344778 4.36443e-09 0.303563)
(-0.348884 5.03707e-09 0.288898)
(-0.352442 4.80018e-09 0.274082)
(-0.355457 3.96666e-09 0.259131)
(-0.357932 2.8902e-09 0.244064)
(-0.359873 1.86124e-09 0.228897)
(-0.361286 1.03556e-09 0.213647)
(-0.362176 4.29715e-10 0.198332)
(-0.362549 -2.18484e-11 0.182968)
(-0.362413 -3.9056e-10 0.167572)
(-0.361775 -7.01665e-10 0.15216)
(-0.360642 -9.28134e-10 0.13675)
(-0.359022 -1.02062e-09 0.121358)
(-0.356925 -9.47545e-10 0.106002)
(-0.35436 -7.19971e-10 0.0906981)
(-0.351336 -3.90609e-10 0.0754635)
(-0.347863 -3.25395e-11 0.0603157)
(-0.343952 2.86359e-10 0.0452719)
(-0.339615 5.23242e-10 0.0303497)
(-0.334864 6.66699e-10 0.0155665)
(-0.32971 7.29658e-10 0.000940058)
(-0.324168 7.38408e-10 -0.0135112)
(-0.318251 7.20643e-10 -0.0277685)
(-0.311974 6.98273e-10 -0.0418135)
(-0.305353 6.84017e-10 -0.0556282)
(-0.298404 6.82941e-10 -0.0691947)
(-0.291142 6.94559e-10 -0.0824951)
(-0.283585 7.15722e-10 -0.0955122)
(-0.27575 7.4226e-10 -0.108229)
(-0.267656 7.70102e-10 -0.120629)
(-0.25932 7.95359e-10 -0.132696)
(-0.250762 8.14909e-10 -0.144415)
(-0.242 8.26884e-10 -0.155772)
(-0.233054 8.3021e-10 -0.166752)
(-0.223942 8.25424e-10 -0.177344)
(-0.214685 8.13601e-10 -0.187536)
(-0.2053 7.96405e-10 -0.197317)
(-0.195807 7.75781e-10 -0.206677)
(-0.186225 7.52982e-10 -0.215609)
(-0.176573 7.29135e-10 -0.224105)
(-0.166867 7.04444e-10 -0.232159)
(-0.157126 6.78576e-10 -0.239767)
(-0.147367 6.51097e-10 -0.246925)
(-0.137606 6.2147e-10 -0.253632)
(-0.12786 5.88951e-10 -0.259885)
(-0.118142 5.53286e-10 -0.265686)
(-0.108469 5.14244e-10 -0.271036)
(-0.0988535 4.71723e-10 -0.275936)
(-0.0893089 4.26107e-10 -0.280391)
(-0.0798477 3.78188e-10 -0.284405)
(-0.0704816 3.27686e-10 -0.287983)
(-0.0612214 2.75649e-10 -0.291132)
(-0.0520774 2.22692e-10 -0.293858)
(-0.0430591 1.69044e-10 -0.29617)
(-0.0341753 1.14578e-10 -0.298076)
(-0.0254339 5.97543e-11 -0.299585)
(-0.0168426 5.18661e-12 -0.300708)
(-0.00840795 -4.90227e-11 -0.301454)
(-0.000136101 -1.02336e-10 -0.301835)
(0.00796724 -1.55394e-10 -0.301861)
(0.0158969 -2.07096e-10 -0.301544)
(0.0236488 -2.57007e-10 -0.300896)
(0.0312192 -3.05204e-10 -0.299929)
(0.038605 -3.50791e-10 -0.298656)
(0.0458036 -3.93616e-10 -0.297089)
(0.0528129 -4.32961e-10 -0.295241)
(0.0596311 -4.67983e-10 -0.293125)
(0.0662569 -4.98503e-10 -0.290753)
(0.0726896 -5.24213e-10 -0.288138)
(0.0789286 -5.44704e-10 -0.285293)
(0.0849739 -5.59566e-10 -0.282231)
(0.0908256 -5.68903e-10 -0.278963)
(0.0964844 -5.72612e-10 -0.275502)
(0.101951 -5.70334e-10 -0.27186)
(0.107227 -5.62582e-10 -0.268049)
(0.112313 -5.49329e-10 -0.26408)
(0.117211 -5.30728e-10 -0.259965)
(0.121923 -5.07062e-10 -0.255715)
(0.126451 -4.78868e-10 -0.251339)
(0.130798 -4.46554e-10 -0.24685)
(0.134965 -4.1053e-10 -0.242255)
(0.138955 -3.7123e-10 -0.237565)
(0.142772 -3.29039e-10 -0.23279)
(0.146417 -2.84673e-10 -0.227937)
(0.149895 -2.3854e-10 -0.223014)
(0.153207 -1.91103e-10 -0.218031)
(0.156357 -1.42768e-10 -0.212993)
(0.159348 -9.39726e-11 -0.207908)
(0.162184 -4.47923e-11 -0.202783)
(0.164867 4.31228e-12 -0.197623)
(0.167401 5.31108e-11 -0.192434)
(0.169789 1.01424e-10 -0.187221)
(0.172034 1.49406e-10 -0.181988)
(0.174139 1.96878e-10 -0.17674)
(0.176107 2.43839e-10 -0.171481)
(0.177943 2.90366e-10 -0.166212)
(0.179647 3.36537e-10 -0.160938)
(0.181224 3.82504e-10 -0.155661)
(0.182676 4.28473e-10 -0.150382)
(0.184006 4.74393e-10 -0.145103)
(0.185215 5.20468e-10 -0.139825)
(0.186308 5.66826e-10 -0.13455)
(0.187285 6.13263e-10 -0.129277)
(0.18815 6.59574e-10 -0.124006)
(0.188903 7.05376e-10 -0.118738)
(0.189547 7.49874e-10 -0.113472)
(0.190084 7.9179e-10 -0.108208)
(0.190514 8.29561e-10 -0.102944)
(0.190839 8.61422e-10 -0.0976802)
(0.191059 8.85118e-10 -0.0924147)
(0.191177 8.98473e-10 -0.0871465)
(0.191191 8.99388e-10 -0.0818745)
(0.191103 8.86172e-10 -0.0765974)
(0.190913 8.57798e-10 -0.071314)
(0.19062 8.14982e-10 -0.0660232)
(0.190225 7.59567e-10 -0.0607242)
(0.189726 6.95263e-10 -0.0554161)
(0.189123 6.27217e-10 -0.0500984)
(0.188416 5.62212e-10 -0.044771)
(0.187602 5.0742e-10 -0.0394339)
(0.186681 4.69936e-10 -0.0340878)
(0.185651 4.55676e-10 -0.0287336)
(0.18451 4.68025e-10 -0.0233729)
(0.183257 5.07037e-10 -0.0180077)
(0.181889 5.68925e-10 -0.0126407)
(0.180405 6.46315e-10 -0.0072753)
(0.178802 7.28887e-10 -0.0019156)
(0.177077 8.05831e-10 0.00343364)
(0.175229 8.67515e-10 0.00876685)
(0.173255 9.09198e-10 0.0140776)
(0.171152 9.32849e-10 0.0193585)
(0.168919 9.48612e-10 0.0246014)
(0.166552 9.73064e-10 0.0297971)
(0.16405 1.02458e-09 0.0349354)
(0.161411 1.11843e-09 0.0400055)
(0.158632 1.25681e-09 0.0449951)
(0.155713 1.42245e-09 0.0498914)
(0.152652 1.57324e-09 0.0546805)
(0.149449 1.64572e-09 0.0593477)
(0.146102 1.56289e-09 0.0638772)
(0.142612 1.25222e-09 0.0682526)
(0.13898 6.66949e-10 0.0724567)
(0.135206 -1.93166e-10 0.0764716)
(0.131294 -1.26705e-09 0.0802789)
(0.127244 -2.43021e-09 0.0838596)
(0.123061 -3.50616e-09 0.0871943)
(0.118748 -4.29102e-09 0.0902635)
(0.114312 -4.58707e-09 0.0930475)
(0.109757 -4.23774e-09 0.0955266)
(0.105092 -3.16078e-09 0.0976813)
(0.100323 -1.37543e-09 0.0994927)
(0.0954611 9.74995e-10 0.100942)
(0.0905154 3.60735e-09 0.102012)
(0.0854976 6.08677e-09 0.102686)
(0.0804201 7.82597e-09 0.102948)
(0.0752963 8.10124e-09 0.102785)
(0.0701411 6.09673e-09 0.102182)
(0.0649699 9.83696e-10 0.10113)
(0.0597994 -7.96621e-09 0.0996188)
(0.054647 -2.12697e-08 0.0976414)
(0.049531 -3.91732e-08 0.095192)
(0.0444704 -6.16868e-08 0.0922661)
(0.0394845 -8.86531e-08 0.0888605)
(0.0345934 -1.19736e-07 0.0849715)
(0.0298172 -1.54418e-07 0.0805936)
(0.0251765 -1.92456e-07 0.075716)
(0.0206923 -2.34991e-07 0.070317)
(0.0163863 -2.85897e-07 0.0643517)
(0.0122823 -3.5526e-07 0.057727)
(0.00840617 -4.74822e-07 0.0502367)
(0.0048289 -7.6133e-07 0.0413751)
(0.00188349 -2.01171e-06 0.029948)
(-0.012486 -6.96753e-06 0.516066)
(-0.026638 5.04282e-08 0.548702)
(-0.045565 7.20494e-07 0.554881)
(-0.0631502 9.69494e-08 0.555469)
(-0.0806471 1.52497e-07 0.553611)
(-0.0976533 2.65714e-07 0.550224)
(-0.114213 1.50366e-07 0.545681)
(-0.130299 -1.57237e-07 0.540181)
(-0.145901 -1.5499e-07 0.533851)
(-0.161002 2.27022e-08 0.526779)
(-0.175594 7.75264e-08 0.519031)
(-0.189667 9.30539e-09 0.510662)
(-0.20321 -4.66004e-08 0.501713)
(-0.216218 -4.9288e-08 0.492224)
(-0.228684 -3.38666e-08 0.482229)
(-0.240604 -2.58077e-08 0.471757)
(-0.251974 -2.30164e-08 0.460839)
(-0.262789 -1.79413e-08 0.4495)
(-0.273048 -1.06017e-08 0.437766)
(-0.282747 -5.36155e-09 0.425661)
(-0.291885 -4.50754e-09 0.413208)
(-0.300461 -6.60136e-09 0.400428)
(-0.308474 -8.71348e-09 0.387344)
(-0.315925 -8.88144e-09 0.373975)
(-0.322813 -6.8791e-09 0.360343)
(-0.329141 -3.60575e-09 0.346466)
(-0.33491 -1.75827e-10 0.332365)
(-0.340121 2.60899e-09 0.318058)
(-0.344778 4.36444e-09 0.303563)
(-0.348884 5.03708e-09 0.288898)
(-0.352442 4.80018e-09 0.274082)
(-0.355457 3.96667e-09 0.259131)
(-0.357932 2.89021e-09 0.244064)
(-0.359873 1.86125e-09 0.228897)
(-0.361286 1.03556e-09 0.213648)
(-0.362176 4.29715e-10 0.198332)
(-0.362549 -2.18484e-11 0.182968)
(-0.362413 -3.90561e-10 0.167572)
(-0.361775 -7.01665e-10 0.15216)
(-0.360642 -9.28135e-10 0.13675)
(-0.359022 -1.02062e-09 0.121358)
(-0.356925 -9.47545e-10 0.106002)
(-0.35436 -7.19971e-10 0.0906981)
(-0.351336 -3.90609e-10 0.0754636)
(-0.347863 -3.25395e-11 0.0603157)
(-0.343952 2.86359e-10 0.045272)
(-0.339615 5.23242e-10 0.0303497)
(-0.334864 6.66699e-10 0.0155665)
(-0.32971 7.29658e-10 0.000940084)
(-0.324168 7.38407e-10 -0.0135112)
(-0.318251 7.20643e-10 -0.0277685)
(-0.311975 6.98272e-10 -0.0418135)
(-0.305353 6.84016e-10 -0.0556282)
(-0.298404 6.8294e-10 -0.0691946)
(-0.291142 6.94558e-10 -0.0824951)
(-0.283585 7.15721e-10 -0.0955121)
(-0.27575 7.42259e-10 -0.108229)
(-0.267656 7.70101e-10 -0.120629)
(-0.25932 7.95357e-10 -0.132696)
(-0.250762 8.14907e-10 -0.144415)
(-0.242 8.26882e-10 -0.155772)
(-0.233054 8.30208e-10 -0.166752)
(-0.223942 8.25422e-10 -0.177344)
(-0.214685 8.13599e-10 -0.187536)
(-0.2053 7.96403e-10 -0.197317)
(-0.195807 7.75779e-10 -0.206677)
(-0.186225 7.5298e-10 -0.215609)
(-0.176573 7.29133e-10 -0.224105)
(-0.166867 7.04442e-10 -0.232159)
(-0.157126 6.78575e-10 -0.239767)
(-0.147367 6.51096e-10 -0.246925)
(-0.137606 6.21468e-10 -0.253632)
(-0.12786 5.8895e-10 -0.259885)
(-0.118142 5.53285e-10 -0.265686)
(-0.108469 5.14243e-10 -0.271036)
(-0.0988535 4.71722e-10 -0.275936)
(-0.089309 4.26105e-10 -0.280391)
(-0.0798478 3.78187e-10 -0.284405)
(-0.0704816 3.27685e-10 -0.287983)
(-0.0612214 2.75648e-10 -0.291132)
(-0.0520775 2.22691e-10 -0.293858)
(-0.0430591 1.69044e-10 -0.29617)
(-0.0341753 1.14578e-10 -0.298076)
(-0.025434 5.97542e-11 -0.299585)
(-0.0168426 5.18659e-12 -0.300708)
(-0.008408 -4.90226e-11 -0.301454)
(-0.000136144 -1.02336e-10 -0.301835)
(0.00796719 -1.55394e-10 -0.301861)
(0.0158969 -2.07096e-10 -0.301544)
(0.0236487 -2.57006e-10 -0.300896)
(0.0312191 -3.05203e-10 -0.299929)
(0.038605 -3.50791e-10 -0.298656)
(0.0458036 -3.93615e-10 -0.297089)
(0.0528128 -4.3296e-10 -0.295241)
(0.059631 -4.67982e-10 -0.293125)
(0.0662569 -4.98501e-10 -0.290753)
(0.0726896 -5.24211e-10 -0.288138)
(0.0789286 -5.44702e-10 -0.285293)
(0.0849738 -5.59565e-10 -0.282231)
(0.0908256 -5.68902e-10 -0.278963)
(0.0964843 -5.72611e-10 -0.275502)
(0.101951 -5.70333e-10 -0.27186)
(0.107227 -5.6258e-10 -0.268049)
(0.112313 -5.49327e-10 -0.26408)
(0.117211 -5.30727e-10 -0.259965)
(0.121923 -5.07061e-10 -0.255715)
(0.126451 -4.78867e-10 -0.251339)
(0.130798 -4.46553e-10 -0.24685)
(0.134965 -4.10529e-10 -0.242255)
(0.138955 -3.71229e-10 -0.237565)
(0.142772 -3.29038e-10 -0.23279)
(0.146417 -2.84672e-10 -0.227937)
(0.149895 -2.3854e-10 -0.223014)
(0.153207 -1.91102e-10 -0.218031)
(0.156357 -1.42768e-10 -0.212993)
(0.159348 -9.39725e-11 -0.207908)
(0.162184 -4.47922e-11 -0.202783)
(0.164867 4.31227e-12 -0.197623)
(0.167401 5.31107e-11 -0.192434)
(0.169789 1.01424e-10 -0.187221)
(0.172034 1.49406e-10 -0.181988)
(0.174139 1.96878e-10 -0.17674)
(0.176107 2.43838e-10 -0.171481)
(0.177943 2.90366e-10 -0.166212)
(0.179647 3.36536e-10 -0.160938)
(0.181224 3.82504e-10 -0.155661)
(0.182676 4.28472e-10 -0.150382)
(0.184006 4.74392e-10 -0.145103)
(0.185215 5.20467e-10 -0.139825)
(0.186308 5.66825e-10 -0.13455)
(0.187285 6.13262e-10 -0.129277)
(0.18815 6.59573e-10 -0.124006)
(0.188903 7.05375e-10 -0.118738)
(0.189547 7.49873e-10 -0.113472)
(0.190084 7.91789e-10 -0.108208)
(0.190514 8.2956e-10 -0.102944)
(0.190839 8.6142e-10 -0.0976802)
(0.191059 8.85117e-10 -0.0924147)
(0.191177 8.98472e-10 -0.0871465)
(0.191191 8.99387e-10 -0.0818745)
(0.191103 8.8617e-10 -0.0765974)
(0.190913 8.57797e-10 -0.071314)
(0.19062 8.14981e-10 -0.0660232)
(0.190225 7.59566e-10 -0.0607242)
(0.189726 6.95262e-10 -0.0554161)
(0.189123 6.27216e-10 -0.0500984)
(0.188416 5.62211e-10 -0.044771)
(0.187602 5.0742e-10 -0.0394339)
(0.186681 4.69935e-10 -0.0340878)
(0.185651 4.55676e-10 -0.0287336)
(0.18451 4.68024e-10 -0.0233729)
(0.183257 5.07036e-10 -0.0180077)
(0.181889 5.68924e-10 -0.0126407)
(0.180405 6.46314e-10 -0.00727531)
(0.178802 7.28886e-10 -0.00191561)
(0.177077 8.0583e-10 0.00343363)
(0.175229 8.67514e-10 0.00876684)
(0.173255 9.09197e-10 0.0140776)
(0.171152 9.32848e-10 0.0193585)
(0.168919 9.48611e-10 0.0246014)
(0.166552 9.73063e-10 0.0297971)
(0.16405 1.02458e-09 0.0349354)
(0.161411 1.11843e-09 0.0400055)
(0.158632 1.25681e-09 0.0449951)
(0.155713 1.42245e-09 0.0498914)
(0.152652 1.57324e-09 0.0546805)
(0.149449 1.64572e-09 0.0593477)
(0.146102 1.56288e-09 0.0638772)
(0.142612 1.25222e-09 0.0682526)
(0.13898 6.66948e-10 0.0724567)
(0.135206 -1.93166e-10 0.0764716)
(0.131294 -1.26705e-09 0.0802789)
(0.127244 -2.43021e-09 0.0838596)
(0.123061 -3.50615e-09 0.0871943)
(0.118748 -4.29102e-09 0.0902635)
(0.114312 -4.58707e-09 0.0930475)
(0.109757 -4.23774e-09 0.0955265)
(0.105092 -3.16078e-09 0.0976813)
(0.100323 -1.37543e-09 0.0994927)
(0.0954611 9.74994e-10 0.100942)
(0.0905154 3.60735e-09 0.102012)
(0.0854976 6.08676e-09 0.102686)
(0.08042 7.82596e-09 0.102948)
(0.0752963 8.10124e-09 0.102784)
(0.0701411 6.09672e-09 0.102182)
(0.0649699 9.83695e-10 0.10113)
(0.0597994 -7.9662e-09 0.0996187)
(0.054647 -2.12697e-08 0.0976413)
(0.049531 -3.91732e-08 0.0951918)
(0.0444703 -6.16867e-08 0.0922659)
(0.0394844 -8.86531e-08 0.0888602)
(0.0345933 -1.19736e-07 0.0849712)
(0.0298171 -1.54417e-07 0.0805931)
(0.0251764 -1.92455e-07 0.0757155)
(0.0206922 -2.3499e-07 0.0703162)
(0.0163863 -2.85897e-07 0.0643508)
(0.0122824 -3.5526e-07 0.0577257)
(0.00840631 -4.74822e-07 0.0502348)
(0.00482925 -7.61333e-07 0.041372)
(0.00188407 -2.01172e-06 0.0299429)
(-0.0237127 -3.36694e-06 0.536843)
(-0.0281726 -1.44557e-06 0.566722)
(-0.0474038 3.25331e-07 0.573434)
(-0.0646863 2.04795e-07 0.573957)
(-0.082273 2.24984e-07 0.571791)
(-0.0994703 2.05053e-07 0.567985)
(-0.116256 1.02733e-07 0.562968)
(-0.132569 -1.93238e-07 0.556965)
(-0.148383 -1.28097e-07 0.55011)
(-0.163677 1.07347e-07 0.542497)
(-0.178439 1.4842e-07 0.534196)
(-0.192659 2.63335e-08 0.525263)
(-0.206328 -6.56138e-08 0.515743)
(-0.219439 -6.80248e-08 0.505676)
(-0.231986 -3.4542e-08 0.495097)
(-0.243965 -1.35942e-08 0.484037)
(-0.255372 -1.06661e-08 0.472526)
(-0.266204 -1.26837e-08 0.460592)
(-0.276459 -1.17685e-08 0.448259)
(-0.286134 -8.62495e-09 0.435554)
(-0.295228 -6.30901e-09 0.422499)
(-0.303741 -5.86155e-09 0.409118)
(-0.311672 -6.25688e-09 0.395432)
(-0.319022 -6.11055e-09 0.381462)
(-0.325791 -4.80551e-09 0.367229)
(-0.331982 -2.55449e-09 0.352754)
(-0.337595 3.28805e-11 0.338056)
(-0.342635 2.33809e-09 0.323155)
(-0.347103 3.9244e-09 0.30807)
(-0.351004 4.6034e-09 0.292819)
(-0.354341 4.43875e-09 0.27742)
(-0.357119 3.69177e-09 0.261892)
(-0.359344 2.70701e-09 0.246252)
(-0.361019 1.77738e-09 0.230518)
(-0.362153 1.05409e-09 0.214708)
(-0.362749 5.39544e-10 0.198839)
(-0.362817 1.50621e-10 0.182928)
(-0.362363 -1.94519e-10 0.166993)
(-0.361395 -5.21295e-10 0.151051)
(-0.359921 -7.92442e-10 0.135119)
(-0.35795 -9.4277e-10 0.119215)
(-0.355491 -9.24704e-10 0.103355)
(-0.352555 -7.37125e-10 0.0875589)
(-0.349152 -4.27417e-10 0.0718426)
(-0.345292 -6.92173e-11 0.0562244)
(-0.340987 2.64325e-10 0.0407223)
(-0.33625 5.22947e-10 0.0253543)
(-0.331093 6.87559e-10 0.0101387)
(-0.325528 7.65435e-10 -0.00490622)
(-0.319572 7.80403e-10 -0.0197607)
(-0.31324 7.60387e-10 -0.0344054)
(-0.306546 7.28601e-10 -0.0488217)
(-0.299507 7.0132e-10 -0.0629907)
(-0.292141 6.86323e-10 -0.0768937)
(-0.284464 6.85556e-10 -0.0905126)
(-0.276496 6.97328e-10 -0.103829)
(-0.268254 7.17928e-10 -0.116826)
(-0.259759 7.42545e-10 -0.129487)
(-0.251028 7.66727e-10 -0.141795)
(-0.242083 7.85969e-10 -0.153734)
(-0.232943 7.97561e-10 -0.16529)
(-0.223629 8.00043e-10 -0.17645)
(-0.21416 7.93084e-10 -0.1872)
(-0.204556 7.78193e-10 -0.19753)
(-0.194838 7.56957e-10 -0.207428)
(-0.185025 7.31678e-10 -0.216885)
(-0.175137 7.04047e-10 -0.225894)
(-0.165192 6.7529e-10 -0.234447)
(-0.155209 6.45945e-10 -0.24254)
(-0.145206 6.16012e-10 -0.250169)
(-0.1352 5.84928e-10 -0.25733)
(-0.125207 5.5208e-10 -0.264022)
(-0.115244 5.16853e-10 -0.270244)
(-0.105326 4.7876e-10 -0.275999)
(-0.0954674 4.37445e-10 -0.281286)
(-0.0856817 3.92676e-10 -0.286111)
(-0.075982 3.44812e-10 -0.290477)
(-0.0663804 2.94722e-10 -0.294389)
(-0.0568881 2.41947e-10 -0.297854)
(-0.0475159 1.87381e-10 -0.300878)
(-0.0382735 1.31844e-10 -0.30347)
(-0.02917 7.48229e-11 -0.305638)
(-0.0202137 1.71883e-11 -0.307392)
(-0.0114122 -4.02413e-11 -0.308741)
(-0.00277247 -9.69288e-11 -0.309696)
(0.00569936 -1.54025e-10 -0.310267)
(0.0139969 -2.0992e-10 -0.310468)
(0.0221156 -2.64074e-10 -0.310308)
(0.0300511 -3.16847e-10 -0.309801)
(0.0377998 -3.67267e-10 -0.308959)
(0.0453584 -4.1541e-10 -0.307795)
(0.0527244 -4.59895e-10 -0.306321)
(0.0598956 -5.00414e-10 -0.304552)
(0.0668704 -5.36534e-10 -0.3025)
(0.0736474 -5.6764e-10 -0.300178)
(0.080226 -5.93246e-10 -0.2976)
(0.0866057 -6.13249e-10 -0.294778)
(0.0927864 -6.27343e-10 -0.291727)
(0.0987685 -6.35349e-10 -0.288457)
(0.104553 -6.37369e-10 -0.284983)
(0.11014 -6.33147e-10 -0.281317)
(0.115531 -6.23016e-10 -0.277472)
(0.120728 -6.07282e-10 -0.273458)
(0.125732 -5.86047e-10 -0.269289)
(0.130546 -5.59671e-10 -0.264976)
(0.135171 -5.2874e-10 -0.260529)
(0.13961 -4.93563e-10 -0.25596)
(0.143866 -4.54752e-10 -0.251279)
(0.147941 -4.12769e-10 -0.246496)
(0.151839 -3.67996e-10 -0.241621)
(0.155561 -3.20972e-10 -0.236663)
(0.159112 -2.72259e-10 -0.23163)
(0.162494 -2.21958e-10 -0.226532)
(0.165711 -1.70685e-10 -0.221376)
(0.168765 -1.18592e-10 -0.216169)
(0.171661 -6.60637e-11 -0.210919)
(0.174402 -1.32525e-11 -0.205631)
(0.176991 3.98411e-11 -0.200313)
(0.179431 9.27824e-11 -0.194968)
(0.181726 1.45725e-10 -0.189603)
(0.18388 1.98669e-10 -0.184222)
(0.185895 2.51409e-10 -0.178829)
(0.187774 3.03972e-10 -0.173428)
(0.189522 3.56409e-10 -0.168021)
(0.191141 4.08566e-10 -0.162611)
(0.192633 4.60519e-10 -0.157202)
(0.194002 5.12193e-10 -0.151793)
(0.195251 5.63486e-10 -0.146388)
(0.196382 6.14217e-10 -0.140986)
(0.197398 6.64438e-10 -0.135589)
(0.198301 7.1369e-10 -0.130197)
(0.199092 7.61766e-10 -0.124809)
(0.199775 8.08002e-10 -0.119426)
(0.200351 8.5145e-10 -0.114047)
(0.200821 8.91062e-10 -0.108671)
(0.201186 9.25428e-10 -0.103297)
(0.201449 9.52809e-10 -0.0979234)
(0.20161 9.71207e-10 -0.0925495)
(0.201669 9.78779e-10 -0.0871737)
(0.201627 9.73859e-10 -0.0817945)
(0.201485 9.55474e-10 -0.0764104)
(0.201242 9.2306e-10 -0.07102)
(0.200898 8.78099e-10 -0.065622)
(0.200453 8.22869e-10 -0.0602151)
(0.199907 7.61618e-10 -0.0547985)
(0.199257 7.00083e-10 -0.0493714)
(0.198503 6.45046e-10 -0.0439333)
(0.197645 6.03576e-10 -0.0384842)
(0.196679 5.82282e-10 -0.0330244)
(0.195605 5.86312e-10 -0.0275547)
(0.19442 6.17539e-10 -0.0220765)
(0.193122 6.74993e-10 -0.0165916)
(0.19171 7.52966e-10 -0.0111026)
(0.190179 8.43035e-10 -0.00561269)
(0.188529 9.3424e-10 -0.000125921)
(0.186755 1.01536e-09 0.00535306)
(0.184856 1.07848e-09 0.0108188)
(0.182828 1.12099e-09 0.0162648)
(0.180669 1.14821e-09 0.0216837)
(0.178375 1.17308e-09 0.0270672)
(0.175944 1.21386e-09 0.0324061)
(0.173374 1.28818e-09 0.0376901)
(0.170661 1.40589e-09 0.0429081)
(0.167803 1.55998e-09 0.0480476)
(0.164799 1.7201e-09 0.0530956)
(0.161646 1.83097e-09 0.0580377)
(0.158343 1.8186e-09 0.0628587)
(0.154889 1.60446e-09 0.0675426)
(0.151283 1.12645e-09 0.0720723)
(0.147527 3.6223e-10 0.07643)
(0.143619 -6.52607e-10 0.0805972)
(0.139562 -1.81555e-09 0.0845546)
(0.135358 -2.96454e-09 0.0882824)
(0.131009 -3.89734e-09 0.0917606)
(0.12652 -4.40473e-09 0.0949684)
(0.121895 -4.30554e-09 0.0978853)
(0.11714 -3.48312e-09 0.100491)
(0.112262 -1.91541e-09 0.102764)
(0.107268 2.98234e-10 0.104684)
(0.102169 2.91413e-09 0.106233)
(0.0969729 5.52641e-09 0.107391)
(0.0916926 7.56039e-09 0.10814)
(0.0863405 8.28381e-09 0.108463)
(0.0809304 6.84638e-09 0.108346)
(0.0754773 2.35548e-09 0.107773)
(0.0699976 -6.01426e-09 0.106734)
(0.0645084 -1.88929e-08 0.105218)
(0.0590282 -3.66039e-08 0.103216)
(0.0535761 -5.91285e-08 0.100722)
(0.0481722 -8.61699e-08 0.0977303)
(0.0428373 -1.17245e-07 0.094238)
(0.0375924 -1.51678e-07 0.0902407)
(0.0324593 -1.88636e-07 0.0857323)
(0.0274601 -2.27696e-07 0.0807018)
(0.0226169 -2.70189e-07 0.0751269)
(0.0179531 -3.20709e-07 0.0689618)
(0.0134936 -3.90587e-07 0.0621107)
(0.0092655 -5.12194e-07 0.0543626)
(0.00534176 -7.98048e-07 0.045202)
(0.00209289 -1.99844e-06 0.0334218)
(-0.0236954 -3.36904e-06 0.536858)
(-0.0281762 -1.44751e-06 0.566726)
(-0.0474014 3.25707e-07 0.573435)
(-0.0646876 2.04914e-07 0.573957)
(-0.0822737 2.25032e-07 0.571791)
(-0.0994698 2.05067e-07 0.567984)
(-0.116256 1.02736e-07 0.562968)
(-0.132569 -1.93239e-07 0.556965)
(-0.148383 -1.28097e-07 0.550109)
(-0.163677 1.07347e-07 0.542496)
(-0.178439 1.4842e-07 0.534196)
(-0.192658 2.63335e-08 0.525263)
(-0.206328 -6.56138e-08 0.515743)
(-0.219438 -6.80248e-08 0.505676)
(-0.231986 -3.4542e-08 0.495097)
(-0.243964 -1.35942e-08 0.484037)
(-0.255372 -1.06661e-08 0.472526)
(-0.266204 -1.26837e-08 0.460592)
(-0.276459 -1.17685e-08 0.44826)
(-0.286134 -8.62496e-09 0.435554)
(-0.295229 -6.30902e-09 0.4225)
(-0.303741 -5.86155e-09 0.409118)
(-0.311672 -6.25689e-09 0.395432)
(-0.319022 -6.11055e-09 0.381462)
(-0.325791 -4.80552e-09 0.367229)
(-0.331982 -2.55449e-09 0.352754)
(-0.337595 3.28806e-11 0.338057)
(-0.342635 2.33809e-09 0.323155)
(-0.347103 3.92441e-09 0.30807)
(-0.351004 4.60341e-09 0.292819)
(-0.354341 4.43875e-09 0.27742)
(-0.35712 3.69178e-09 0.261892)
(-0.359344 2.70702e-09 0.246252)
(-0.361019 1.77738e-09 0.230518)
(-0.362153 1.05409e-09 0.214708)
(-0.36275 5.39544e-10 0.198839)
(-0.362817 1.50621e-10 0.182928)
(-0.362363 -1.94519e-10 0.166993)
(-0.361395 -5.21295e-10 0.151051)
(-0.359921 -7.92442e-10 0.135119)
(-0.35795 -9.4277e-10 0.119215)
(-0.355492 -9.24704e-10 0.103356)
(-0.352555 -7.37125e-10 0.0875589)
(-0.349152 -4.27417e-10 0.0718426)
(-0.345292 -6.92173e-11 0.0562244)
(-0.340987 2.64325e-10 0.0407223)
(-0.33625 5.22947e-10 0.0253543)
(-0.331093 6.87559e-10 0.0101387)
(-0.325529 7.65434e-10 -0.00490619)
(-0.319573 7.80402e-10 -0.0197606)
(-0.31324 7.60387e-10 -0.0344054)
(-0.306546 7.286e-10 -0.0488217)
(-0.299507 7.01319e-10 -0.0629906)
(-0.292141 6.86323e-10 -0.0768937)
(-0.284464 6.85555e-10 -0.0905126)
(-0.276496 6.97326e-10 -0.103829)
(-0.268254 7.17926e-10 -0.116826)
(-0.259759 7.42543e-10 -0.129487)
(-0.251028 7.66725e-10 -0.141795)
(-0.242083 7.85968e-10 -0.153734)
(-0.232944 7.97559e-10 -0.16529)
(-0.223629 8.00042e-10 -0.17645)
(-0.21416 7.93082e-10 -0.1872)
(-0.204556 7.78191e-10 -0.19753)
(-0.194838 7.56955e-10 -0.207427)
(-0.185026 7.31676e-10 -0.216885)
(-0.175137 7.04045e-10 -0.225894)
(-0.165192 6.75288e-10 -0.234447)
(-0.155209 6.45943e-10 -0.24254)
(-0.145206 6.1601e-10 -0.250169)
(-0.1352 5.84927e-10 -0.25733)
(-0.125207 5.52078e-10 -0.264022)
(-0.115244 5.16851e-10 -0.270244)
(-0.105326 4.78759e-10 -0.275999)
(-0.0954675 4.37443e-10 -0.281286)
(-0.0856818 3.92675e-10 -0.286111)
(-0.0759821 3.44811e-10 -0.290477)
(-0.0663804 2.94721e-10 -0.294389)
(-0.0568882 2.41946e-10 -0.297854)
(-0.047516 1.87381e-10 -0.300878)
(-0.0382736 1.31843e-10 -0.30347)
(-0.0291701 7.48227e-11 -0.305638)
(-0.0202138 1.71883e-11 -0.307392)
(-0.0114122 -4.02412e-11 -0.308741)
(-0.00277251 -9.69285e-11 -0.309696)
(0.00569932 -1.54025e-10 -0.310267)
(0.0139969 -2.09919e-10 -0.310468)
(0.0221156 -2.64074e-10 -0.310308)
(0.0300511 -3.16847e-10 -0.309801)
(0.0377997 -3.67266e-10 -0.308959)
(0.0453584 -4.15409e-10 -0.307795)
(0.0527244 -4.59893e-10 -0.306321)
(0.0598956 -5.00413e-10 -0.304552)
(0.0668703 -5.36532e-10 -0.3025)
(0.0736474 -5.67638e-10 -0.300178)
(0.080226 -5.93244e-10 -0.2976)
(0.0866057 -6.13248e-10 -0.294778)
(0.0927864 -6.27342e-10 -0.291727)
(0.0987685 -6.35348e-10 -0.288457)
(0.104553 -6.37368e-10 -0.284983)
(0.11014 -6.33146e-10 -0.281317)
(0.115531 -6.23014e-10 -0.277472)
(0.120728 -6.0728e-10 -0.273458)
(0.125732 -5.86046e-10 -0.269289)
(0.130546 -5.59669e-10 -0.264976)
(0.135171 -5.28739e-10 -0.260529)
(0.13961 -4.93562e-10 -0.25596)
(0.143866 -4.54751e-10 -0.251279)
(0.147941 -4.12768e-10 -0.246496)
(0.151839 -3.67996e-10 -0.241621)
(0.155561 -3.20972e-10 -0.236663)
(0.159112 -2.72258e-10 -0.23163)
(0.162494 -2.21958e-10 -0.226532)
(0.165711 -1.70685e-10 -0.221376)
(0.168765 -1.18592e-10 -0.216169)
(0.171661 -6.60635e-11 -0.210919)
(0.174402 -1.32525e-11 -0.205631)
(0.176991 3.98411e-11 -0.200313)
(0.179431 9.27822e-11 -0.194968)
(0.181726 1.45725e-10 -0.189603)
(0.18388 1.98668e-10 -0.184222)
(0.185895 2.51409e-10 -0.178829)
(0.187774 3.03972e-10 -0.173428)
(0.189522 3.56408e-10 -0.168021)
(0.191141 4.08565e-10 -0.162611)
(0.192633 4.60519e-10 -0.157202)
(0.194002 5.12193e-10 -0.151793)
(0.195251 5.63485e-10 -0.146388)
(0.196382 6.14216e-10 -0.140986)
(0.197398 6.64437e-10 -0.135589)
(0.198301 7.13689e-10 -0.130197)
(0.199092 7.61765e-10 -0.124809)
(0.199775 8.08001e-10 -0.119426)
(0.200351 8.51449e-10 -0.114047)
(0.200821 8.9106e-10 -0.108671)
(0.201186 9.25427e-10 -0.103297)
(0.201449 9.52808e-10 -0.0979234)
(0.20161 9.71206e-10 -0.0925496)
(0.201669 9.78778e-10 -0.0871737)
(0.201627 9.73858e-10 -0.0817945)
(0.201485 9.55473e-10 -0.0764104)
(0.201242 9.23058e-10 -0.07102)
(0.200898 8.78097e-10 -0.065622)
(0.200453 8.22868e-10 -0.0602152)
(0.199907 7.61617e-10 -0.0547985)
(0.199257 7.00082e-10 -0.0493714)
(0.198503 6.45045e-10 -0.0439333)
(0.197645 6.03576e-10 -0.0384842)
(0.196679 5.82281e-10 -0.0330244)
(0.195605 5.86311e-10 -0.0275547)
(0.19442 6.17538e-10 -0.0220765)
(0.193122 6.74992e-10 -0.0165916)
(0.19171 7.52965e-10 -0.0111026)
(0.190179 8.43034e-10 -0.0056127)
(0.188529 9.34239e-10 -0.000125932)
(0.186755 1.01536e-09 0.00535305)
(0.184856 1.07848e-09 0.0108188)
(0.182828 1.12099e-09 0.0162648)
(0.180669 1.14821e-09 0.0216837)
(0.178375 1.17308e-09 0.0270672)
(0.175944 1.21386e-09 0.0324061)
(0.173374 1.28818e-09 0.0376901)
(0.170661 1.40589e-09 0.0429081)
(0.167803 1.55998e-09 0.0480476)
(0.164799 1.7201e-09 0.0530956)
(0.161646 1.83097e-09 0.0580377)
(0.158343 1.8186e-09 0.0628587)
(0.154889 1.60446e-09 0.0675426)
(0.151283 1.12645e-09 0.0720723)
(0.147527 3.62229e-10 0.07643)
(0.143619 -6.52606e-10 0.0805971)
(0.139562 -1.81555e-09 0.0845546)
(0.135358 -2.96454e-09 0.0882824)
(0.131009 -3.89733e-09 0.0917606)
(0.12652 -4.40473e-09 0.0949684)
(0.121895 -4.30554e-09 0.0978853)
(0.11714 -3.48312e-09 0.100491)
(0.112262 -1.91541e-09 0.102764)
(0.107268 2.98234e-10 0.104684)
(0.102169 2.91413e-09 0.106233)
(0.0969728 5.52641e-09 0.107391)
(0.0916926 7.56039e-09 0.10814)
(0.0863404 8.28381e-09 0.108463)
(0.0809303 6.84638e-09 0.108346)
(0.0754773 2.35548e-09 0.107773)
(0.0699976 -6.01426e-09 0.106734)
(0.0645084 -1.88929e-08 0.105217)
(0.0590281 -3.66039e-08 0.103215)
(0.0535761 -5.91284e-08 0.100721)
(0.0481721 -8.61698e-08 0.09773)
(0.0428371 -1.17245e-07 0.0942377)
(0.0375923 -1.51678e-07 0.0902402)
(0.0324592 -1.88636e-07 0.0857317)
(0.0274599 -2.27695e-07 0.0807012)
(0.0226168 -2.70188e-07 0.0751261)
(0.017953 -3.20709e-07 0.0689606)
(0.0134935 -3.90587e-07 0.0621091)
(0.00926562 -5.12194e-07 0.0543602)
(0.00534214 -7.9805e-07 0.045198)
(0.00209353 -1.99845e-06 0.0334154)
(-0.0132332 -8.91641e-07 0.559642)
(-0.0284825 6.07784e-07 0.585195)
(-0.0474671 8.54374e-08 0.592203)
(-0.065558 1.22832e-07 0.592676)
(-0.0835741 -1.62858e-09 0.590231)
(-0.101102 -6.07356e-08 0.586011)
(-0.118164 -2.84795e-10 0.580511)
(-0.134718 -2.26259e-07 0.573983)
(-0.150744 -1.28083e-07 0.56658)
(-0.166223 1.38473e-07 0.558401)
(-0.181143 1.75967e-07 0.549522)
(-0.195496 2.63869e-08 0.540001)
(-0.209275 -8.50978e-08 0.529886)
(-0.222473 -8.56773e-08 0.519217)
(-0.235085 -3.82078e-08 0.508031)
(-0.247106 -6.01192e-09 0.49636)
(-0.258533 -1.09409e-09 0.484234)
(-0.269364 -7.4676e-09 0.471681)
(-0.279596 -1.14095e-08 0.458729)
(-0.289228 -1.02181e-08 0.445402)
(-0.298259 -6.99354e-09 0.431725)
(-0.306689 -4.56146e-09 0.417721)
(-0.314517 -3.52408e-09 0.403413)
(-0.321744 -3.12001e-09 0.388822)
(-0.328372 -2.48847e-09 0.37397)
(-0.334403 -1.26482e-09 0.358877)
(-0.33984 4.13715e-10 0.343564)
(-0.344684 2.13187e-09 0.328051)
(-0.34894 3.4411e-09 0.312358)
(-0.352613 4.05105e-09 0.296503)
(-0.355705 3.92961e-09 0.280505)
(-0.358223 3.2816e-09 0.264383)
(-0.360171 2.42585e-09 0.248155)
(-0.361557 1.63888e-09 0.23184)
(-0.362385 1.05324e-09 0.215454)
(-0.362664 6.51075e-10 0.199018)
(-0.362401 3.3346e-10 0.182547)
(-0.361604 1.26295e-11 0.166061)
(-0.36028 -3.31302e-10 0.149576)
(-0.35844 -6.47505e-10 0.13311)
(-0.356093 -8.53978e-10 0.116683)
(-0.353248 -8.88458e-10 0.100311)
(-0.349916 -7.39307e-10 0.084012)
(-0.346109 -4.49556e-10 0.0678054)
(-0.341838 -9.3657e-11 0.0517091)
(-0.337115 2.50101e-10 0.0357418)
(-0.331954 5.25341e-10 0.0199223)
(-0.326368 7.06551e-10 0.00426924)
(-0.320372 7.95784e-10 -0.0111978)
(-0.313981 8.14743e-10 -0.026458)
(-0.307212 7.90968e-10 -0.0414918)
(-0.300081 7.49639e-10 -0.0562796)
(-0.292607 7.09335e-10 -0.0708019)
(-0.284807 6.80599e-10 -0.0850395)
(-0.276701 6.67678e-10 -0.0989734)
(-0.268307 6.70212e-10 -0.112585)
(-0.259646 6.84748e-10 -0.125857)
(-0.250737 7.06116e-10 -0.138771)
(-0.241603 7.2889e-10 -0.15131)
(-0.232264 7.47954e-10 -0.16346)
(-0.22274 7.59342e-10 -0.175206)
(-0.213053 7.60955e-10 -0.186532)
(-0.203224 7.52309e-10 -0.197428)
(-0.193275 7.34503e-10 -0.207882)
(-0.183225 7.09739e-10 -0.217882)
(-0.173095 6.80216e-10 -0.227422)
(-0.162905 6.47982e-10 -0.236492)
(-0.152674 6.14751e-10 -0.245087)
(-0.142422 5.81265e-10 -0.253203)
(-0.132166 5.47523e-10 -0.260835)
(-0.121924 5.13193e-10 -0.267981)
(-0.111712 4.7738e-10 -0.274642)
(-0.101546 4.39649e-10 -0.280817)
(-0.0914418 3.98976e-10 -0.286507)
(-0.0814134 3.55566e-10 -0.291717)
(-0.071474 3.08549e-10 -0.29645)
(-0.0616364 2.58591e-10 -0.300711)
(-0.0519123 2.05998e-10 -0.304505)
(-0.0423127 1.50515e-10 -0.307841)
(-0.0328476 9.27553e-11 -0.310727)
(-0.0235263 3.39216e-11 -0.31317)
(-0.0143574 -2.59351e-11 -0.31518)
(-0.00534887 -8.60985e-11 -0.316768)
(0.00349265 -1.46313e-10 -0.317943)
(0.0121598 -2.06271e-10 -0.318718)
(0.0206474 -2.65155e-10 -0.319104)
(0.0289502 -3.22197e-10 -0.319112)
(0.0370641 -3.77577e-10 -0.318756)
(0.0449854 -4.30781e-10 -0.318049)
(0.0527109 -4.80661e-10 -0.317004)
(0.0602381 -5.27087e-10 -0.315634)
(0.0675648 -5.6873e-10 -0.313953)
(0.0746895 -6.05487e-10 -0.311973)
(0.081611 -6.37e-10 -0.30971)
(0.0883284 -6.62604e-10 -0.307176)
(0.0948416 -6.82248e-10 -0.304385)
(0.101151 -6.95446e-10 -0.301351)
(0.107256 -7.02172e-10 -0.298087)
(0.113158 -7.02529e-10 -0.294607)
(0.118858 -6.96491e-10 -0.290922)
(0.124357 -6.84313e-10 -0.287047)
(0.129657 -6.66226e-10 -0.282994)
(0.13476 -6.42767e-10 -0.278776)
(0.139668 -6.14218e-10 -0.274403)
(0.144383 -5.81166e-10 -0.269889)
(0.148907 -5.43816e-10 -0.265244)
(0.153244 -5.02986e-10 -0.260479)
(0.157397 -4.5901e-10 -0.255605)
(0.161368 -4.12194e-10 -0.250633)
(0.16516 -3.63228e-10 -0.245571)
(0.168777 -3.12343e-10 -0.24043)
(0.172222 -2.59692e-10 -0.235218)
(0.175498 -2.05787e-10 -0.229944)
(0.178609 -1.50628e-10 -0.224616)
(0.181559 -9.4572e-11 -0.21924)
(0.18435 -3.75174e-11 -0.213825)
(0.186987 2.02546e-11 -0.208376)
(0.189473 7.87698e-11 -0.202899)
(0.191812 1.38028e-10 -0.1974)
(0.194007 1.97953e-10 -0.191885)
(0.196062 2.58187e-10 -0.186357)
(0.19798 3.19113e-10 -0.18082)
(0.199764 3.80092e-10 -0.175279)
(0.201418 4.41073e-10 -0.169735)
(0.202946 5.01928e-10 -0.164192)
(0.204349 5.62094e-10 -0.158652)
(0.205631 6.21341e-10 -0.153116)
(0.206794 6.79311e-10 -0.147587)
(0.207843 7.35645e-10 -0.142063)
(0.208778 7.89909e-10 -0.136547)
(0.209602 8.41642e-10 -0.131038)
(0.210318 8.90358e-10 -0.125535)
(0.210928 9.35186e-10 -0.12004)
(0.211433 9.75537e-10 -0.11455)
(0.211834 1.01029e-09 -0.109064)
(0.212134 1.0381e-09 -0.103582)
(0.212333 1.0577e-09 -0.0981017)
(0.212433 1.06753e-09 -0.0926217)
(0.212433 1.06622e-09 -0.0871405)
(0.212335 1.05275e-09 -0.0816562)
(0.212138 1.02669e-09 -0.0761671)
(0.211843 9.88316e-10 -0.0706717)
(0.211449 9.39699e-10 -0.0651682)
(0.210956 8.83962e-10 -0.0596553)
(0.210362 8.25765e-10 -0.0541317)
(0.209667 7.7125e-10 -0.0485964)
(0.20887 7.27281e-10 -0.0430487)
(0.207968 7.00693e-10 -0.0374884)
(0.20696 6.97583e-10 -0.0319155)
(0.205844 7.21717e-10 -0.0263306)
(0.204618 7.74175e-10 -0.0207348)
(0.203279 8.51963e-10 -0.0151299)
(0.201824 9.484e-10 -0.00951813)
(0.200251 1.05348e-09 -0.00390264)
(0.198557 1.15554e-09 0.00171275)
(0.196738 1.24386e-09 0.00732346)
(0.194792 1.31155e-09 0.0129241)
(0.192714 1.35865e-09 0.0185082)
(0.190502 1.39366e-09 0.0240685)
(0.188152 1.4314e-09 0.0295966)
(0.185661 1.49081e-09 0.0350832)
(0.183026 1.58707e-09 0.040518)
(0.180243 1.72274e-09 0.0458895)
(0.17731 1.88023e-09 0.0511853)
(0.174224 2.01596e-09 0.0563917)
(0.170983 2.06339e-09 0.0614943)
(0.167584 1.94269e-09 0.0664773)
(0.164025 1.58068e-09 0.0713243)
(0.160307 9.3368e-10 0.0760177)
(0.156428 1.02379e-11 0.0805389)
(0.152388 -1.11485e-09 0.0848689)
(0.148188 -2.30069e-09 0.0889875)
(0.143829 -3.35543e-09 0.0928742)
(0.139315 -4.06512e-09 0.0965079)
(0.134648 -4.22962e-09 0.0998669)
(0.129833 -3.69815e-09 0.10293)
(0.124874 -2.40328e-09 0.105674)
(0.11978 -3.89635e-10 0.108079)
(0.114556 2.15638e-09 0.110123)
(0.109213 4.88155e-09 0.111784)
(0.10376 7.24627e-09 0.113044)
(0.0982093 8.52889e-09 0.113881)
(0.0925732 7.85937e-09 0.114279)
(0.0868659 4.29522e-09 0.114221)
(0.0811031 -3.06685e-09 0.113691)
(0.0753016 -1.49569e-08 0.112676)
(0.0694792 -3.18018e-08 0.111165)
(0.0636553 -5.36348e-08 0.109148)
(0.0578501 -8.00922e-08 0.106618)
(0.0520849 -1.10509e-07 0.103569)
(0.0463817 -1.44027e-07 0.0999961)
(0.0407632 -1.7962e-07 0.0958948)
(0.0352528 -2.16196e-07 0.0912589)
(0.029874 -2.53384e-07 0.0860768)
(0.0246508 -2.93158e-07 0.0803258)
(0.0196082 -3.41522e-07 0.0739589)
(0.0147725 -4.11957e-07 0.0668783)
(0.0101725 -5.38734e-07 0.0588681)
(0.00588257 -8.34883e-07 0.0494032)
(0.00231275 -2.03774e-06 0.0372655)
(-0.0132592 -8.91785e-07 0.559647)
(-0.0284862 6.08209e-07 0.5852)
(-0.0474672 8.54936e-08 0.592203)
(-0.0655585 1.22885e-07 0.592675)
(-0.0835738 -1.62889e-09 0.59023)
(-0.101101 -6.07394e-08 0.58601)
(-0.118164 -2.84801e-10 0.58051)
(-0.134719 -2.2626e-07 0.573983)
(-0.150744 -1.28084e-07 0.566579)
(-0.166222 1.38473e-07 0.558401)
(-0.181142 1.75968e-07 0.549522)
(-0.195496 2.63869e-08 0.540002)
(-0.209275 -8.50979e-08 0.529886)
(-0.222473 -8.56773e-08 0.519217)
(-0.235085 -3.82079e-08 0.508031)
(-0.247106 -6.01193e-09 0.496359)
(-0.258533 -1.09409e-09 0.484234)
(-0.269364 -7.46761e-09 0.471681)
(-0.279596 -1.14095e-08 0.458729)
(-0.289228 -1.02181e-08 0.445403)
(-0.298259 -6.99355e-09 0.431726)
(-0.306689 -4.56147e-09 0.417721)
(-0.314517 -3.52409e-09 0.403413)
(-0.321744 -3.12002e-09 0.388822)
(-0.328372 -2.48847e-09 0.37397)
(-0.334403 -1.26482e-09 0.358877)
(-0.33984 4.13716e-10 0.343564)
(-0.344684 2.13187e-09 0.328052)
(-0.348941 3.44111e-09 0.312358)
(-0.352613 4.05106e-09 0.296503)
(-0.355705 3.92961e-09 0.280505)
(-0.358223 3.2816e-09 0.264383)
(-0.360171 2.42585e-09 0.248155)
(-0.361557 1.63888e-09 0.23184)
(-0.362385 1.05324e-09 0.215455)
(-0.362664 6.51075e-10 0.199018)
(-0.362401 3.3346e-10 0.182547)
(-0.361604 1.26295e-11 0.166061)
(-0.36028 -3.31302e-10 0.149576)
(-0.35844 -6.47505e-10 0.133111)
(-0.356093 -8.53978e-10 0.116683)
(-0.353248 -8.88458e-10 0.100311)
(-0.349916 -7.39307e-10 0.084012)
(-0.346109 -4.49556e-10 0.0678054)
(-0.341838 -9.36569e-11 0.0517092)
(-0.337115 2.50101e-10 0.0357419)
(-0.331954 5.2534e-10 0.0199223)
(-0.326368 7.06551e-10 0.00426927)
(-0.320372 7.95783e-10 -0.0111977)
(-0.313981 8.14743e-10 -0.026458)
(-0.307212 7.90967e-10 -0.0414918)
(-0.300081 7.49638e-10 -0.0562796)
(-0.292607 7.09334e-10 -0.0708019)
(-0.284807 6.80598e-10 -0.0850395)
(-0.276701 6.67677e-10 -0.0989734)
(-0.268307 6.70211e-10 -0.112585)
(-0.259646 6.84747e-10 -0.125857)
(-0.250738 7.06114e-10 -0.138771)
(-0.241603 7.28888e-10 -0.15131)
(-0.232264 7.47952e-10 -0.16346)
(-0.22274 7.5934e-10 -0.175206)
(-0.213053 7.60954e-10 -0.186532)
(-0.203224 7.52307e-10 -0.197428)
(-0.193275 7.34502e-10 -0.207882)
(-0.183225 7.09737e-10 -0.217882)
(-0.173095 6.80215e-10 -0.227422)
(-0.162905 6.47981e-10 -0.236492)
(-0.152674 6.1475e-10 -0.245087)
(-0.142422 5.81263e-10 -0.253203)
(-0.132166 5.47522e-10 -0.260835)
(-0.121924 5.13192e-10 -0.267981)
(-0.111712 4.77379e-10 -0.274642)
(-0.101546 4.39648e-10 -0.280817)
(-0.0914419 3.98975e-10 -0.286507)
(-0.0814134 3.55565e-10 -0.291717)
(-0.0714741 3.08548e-10 -0.29645)
(-0.0616365 2.5859e-10 -0.300711)
(-0.0519124 2.05998e-10 -0.304505)
(-0.0423127 1.50515e-10 -0.307841)
(-0.0328476 9.27551e-11 -0.310727)
(-0.0235264 3.39215e-11 -0.31317)
(-0.0143575 -2.5935e-11 -0.31518)
(-0.00534891 -8.60983e-11 -0.316768)
(0.00349261 -1.46312e-10 -0.317943)
(0.0121598 -2.06271e-10 -0.318718)
(0.0206473 -2.65155e-10 -0.319104)
(0.0289502 -3.22196e-10 -0.319112)
(0.0370641 -3.77576e-10 -0.318756)
(0.0449854 -4.3078e-10 -0.318049)
(0.0527109 -4.8066e-10 -0.317004)
(0.0602381 -5.27086e-10 -0.315634)
(0.0675648 -5.68728e-10 -0.313953)
(0.0746895 -6.05485e-10 -0.311973)
(0.0816109 -6.36998e-10 -0.30971)
(0.0883284 -6.62602e-10 -0.307176)
(0.0948416 -6.82247e-10 -0.304385)
(0.101151 -6.95444e-10 -0.301351)
(0.107256 -7.02171e-10 -0.298087)
(0.113158 -7.02527e-10 -0.294607)
(0.118857 -6.96489e-10 -0.290922)
(0.124357 -6.84312e-10 -0.287047)
(0.129657 -6.66225e-10 -0.282994)
(0.13476 -6.42766e-10 -0.278776)
(0.139667 -6.14216e-10 -0.274403)
(0.144382 -5.81164e-10 -0.269889)
(0.148907 -5.43815e-10 -0.265244)
(0.153244 -5.02985e-10 -0.260479)
(0.157397 -4.59009e-10 -0.255605)
(0.161368 -4.12193e-10 -0.250633)
(0.16516 -3.63227e-10 -0.245571)
(0.168777 -3.12343e-10 -0.24043)
(0.172222 -2.59692e-10 -0.235218)
(0.175498 -2.05787e-10 -0.229944)
(0.178609 -1.50628e-10 -0.224616)
(0.181559 -9.45719e-11 -0.21924)
(0.18435 -3.75174e-11 -0.213825)
(0.186987 2.02546e-11 -0.208376)
(0.189473 7.87697e-11 -0.202899)
(0.191812 1.38028e-10 -0.1974)
(0.194007 1.97953e-10 -0.191885)
(0.196062 2.58187e-10 -0.186357)
(0.19798 3.19113e-10 -0.18082)
(0.199764 3.80092e-10 -0.175279)
(0.201418 4.41072e-10 -0.169735)
(0.202945 5.01927e-10 -0.164192)
(0.204349 5.62093e-10 -0.158652)
(0.205631 6.2134e-10 -0.153117)
(0.206794 6.7931e-10 -0.147587)
(0.207843 7.35644e-10 -0.142063)
(0.208778 7.89908e-10 -0.136547)
(0.209602 8.41641e-10 -0.131038)
(0.210318 8.90357e-10 -0.125535)
(0.210928 9.35185e-10 -0.12004)
(0.211433 9.75536e-10 -0.11455)
(0.211834 1.01028e-09 -0.109064)
(0.212134 1.0381e-09 -0.103582)
(0.212333 1.0577e-09 -0.0981017)
(0.212433 1.06753e-09 -0.0926218)
(0.212433 1.06622e-09 -0.0871405)
(0.212335 1.05275e-09 -0.0816562)
(0.212138 1.02669e-09 -0.0761672)
(0.211843 9.88314e-10 -0.0706717)
(0.211449 9.39698e-10 -0.0651682)
(0.210956 8.83961e-10 -0.0596553)
(0.210362 8.25764e-10 -0.0541317)
(0.209667 7.7125e-10 -0.0485964)
(0.20887 7.2728e-10 -0.0430487)
(0.207968 7.00692e-10 -0.0374884)
(0.20696 6.97582e-10 -0.0319155)
(0.205844 7.21716e-10 -0.0263306)
(0.204618 7.74174e-10 -0.0207348)
(0.203279 8.51962e-10 -0.0151299)
(0.201824 9.48399e-10 -0.00951814)
(0.200251 1.05348e-09 -0.00390265)
(0.198557 1.15554e-09 0.00171274)
(0.196738 1.24386e-09 0.00732344)
(0.194792 1.31155e-09 0.0129241)
(0.192714 1.35865e-09 0.0185082)
(0.190502 1.39366e-09 0.0240685)
(0.188152 1.43139e-09 0.0295966)
(0.185661 1.49081e-09 0.0350832)
(0.183026 1.58707e-09 0.040518)
(0.180243 1.72274e-09 0.0458895)
(0.17731 1.88023e-09 0.0511853)
(0.174224 2.01596e-09 0.0563917)
(0.170983 2.06338e-09 0.0614943)
(0.167584 1.94268e-09 0.0664773)
(0.164025 1.58068e-09 0.0713243)
(0.160307 9.33679e-10 0.0760177)
(0.156428 1.02378e-11 0.0805389)
(0.152388 -1.11485e-09 0.0848689)
(0.148188 -2.30069e-09 0.0889875)
(0.143829 -3.35542e-09 0.0928742)
(0.139315 -4.06512e-09 0.0965078)
(0.134648 -4.22962e-09 0.0998669)
(0.129833 -3.69815e-09 0.10293)
(0.124874 -2.40328e-09 0.105674)
(0.11978 -3.89635e-10 0.108079)
(0.114556 2.15638e-09 0.110123)
(0.109213 4.88155e-09 0.111784)
(0.10376 7.24627e-09 0.113044)
(0.0982093 8.52889e-09 0.113881)
(0.0925731 7.85936e-09 0.114279)
(0.0868659 4.29522e-09 0.114221)
(0.0811031 -3.06685e-09 0.113691)
(0.0753015 -1.49569e-08 0.112676)
(0.0694791 -3.18018e-08 0.111165)
(0.0636552 -5.36348e-08 0.109148)
(0.05785 -8.00921e-08 0.106618)
(0.0520847 -1.10509e-07 0.103569)
(0.0463815 -1.44027e-07 0.0999957)
(0.0407631 -1.7962e-07 0.0958943)
(0.0352526 -2.16196e-07 0.0912582)
(0.0298738 -2.53383e-07 0.086076)
(0.0246506 -2.93158e-07 0.0803247)
(0.019608 -3.41521e-07 0.0739574)
(0.0147724 -4.11956e-07 0.0668762)
(0.0101726 -5.38734e-07 0.058865)
(0.00588297 -8.34886e-07 0.0493982)
(0.00231344 -2.03775e-06 0.0372573)
(-0.0110991 5.36504e-07 0.578037)
(-0.0285986 5.91768e-07 0.606277)
(-0.0477508 -5.17332e-07 0.612235)
(-0.0663924 -2.30572e-07 0.612077)
(-0.0847916 -2.94815e-07 0.609115)
(-0.102642 -2.55703e-07 0.604374)
(-0.119975 -4.30491e-08 0.598331)
(-0.13676 -2.2215e-07 0.591239)
(-0.152985 -1.43104e-07 0.583254)
(-0.168634 1.14539e-07 0.57448)
(-0.183696 1.54969e-07 0.564996)
(-0.198166 8.81609e-09 0.554861)
(-0.212038 -1.00063e-07 0.544125)
(-0.225305 -9.51628e-08 0.53283)
(-0.237963 -3.95906e-08 0.521012)
(-0.250007 -1.10595e-09 0.508706)
(-0.261435 5.25105e-09 0.495942)
(-0.272244 -3.43437e-09 0.482749)
(-0.282434 -1.02388e-08 0.469154)
(-0.292002 -1.02109e-08 0.455184)
(-0.300948 -6.28212e-09 0.440864)
(-0.309272 -2.41648e-09 0.426216)
(-0.316975 -3.90838e-10 0.411265)
(-0.324058 5.86894e-11 0.396032)
(-0.330522 -3.52076e-11 0.38054)
(-0.33637 1.55527e-10 0.364811)
(-0.341605 8.94971e-10 0.348864)
(-0.34623 1.96007e-09 0.332721)
(-0.350249 2.91396e-09 0.316401)
(-0.353667 3.39487e-09 0.299925)
(-0.356489 3.293e-09 0.283311)
(-0.358721 2.75641e-09 0.266578)
(-0.360368 2.06405e-09 0.249747)
(-0.361436 1.45858e-09 0.232834)
(-0.361934 1.04099e-09 0.21586)
(-0.361869 7.67609e-10 0.198841)
(-0.361248 5.25565e-10 0.181798)
(-0.360081 2.27019e-10 0.164747)
(-0.358376 -1.36882e-10 0.147707)
(-0.356143 -4.9834e-10 0.130697)
(-0.353392 -7.58546e-10 0.113735)
(-0.350135 -8.41368e-10 0.0968403)
(-0.346382 -7.27415e-10 0.0800307)
(-0.342145 -4.56671e-10 0.0633256)
(-0.337437 -1.0517e-10 0.046744)
(-0.332271 2.44862e-10 0.0303052)
(-0.326662 5.316e-10 0.0140286)
(-0.320624 7.23906e-10 -0.00206618)
(-0.314172 8.20323e-10 -0.0179579)
(-0.307325 8.40178e-10 -0.0336257)
(-0.300098 8.11159e-10 -0.0490489)
(-0.292511 7.59597e-10 -0.0642073)
(-0.284583 7.06375e-10 -0.0790807)
(-0.276332 6.64439e-10 -0.0936491)
(-0.26778 6.39852e-10 -0.107893)
(-0.258947 6.33509e-10 -0.121793)
(-0.249854 6.42263e-10 -0.135331)
(-0.240523 6.6056e-10 -0.14849)
(-0.230977 6.82209e-10 -0.161251)
(-0.221236 7.00941e-10 -0.1736)
(-0.211324 7.12278e-10 -0.185522)
(-0.201262 7.13126e-10 -0.197002)
(-0.191073 7.02998e-10 -0.208029)
(-0.180779 6.82841e-10 -0.218591)
(-0.170401 6.5483e-10 -0.228678)
(-0.159959 6.21499e-10 -0.238282)
(-0.149475 5.85354e-10 -0.247397)
(-0.138967 5.4816e-10 -0.256016)
(-0.128456 5.10737e-10 -0.264135)
(-0.117959 4.73519e-10 -0.271753)
(-0.107494 4.35995e-10 -0.278867)
(-0.097077 3.9755e-10 -0.285478)
(-0.0867246 3.57187e-10 -0.291586)
(-0.0764512 3.14138e-10 -0.297196)
(-0.0662709 2.68634e-10 -0.30231)
(-0.0561967 2.19395e-10 -0.306933)
(-0.0462408 1.66601e-10 -0.311072)
(-0.0364144 1.10865e-10 -0.314733)
(-0.026728 5.2137e-11 -0.317925)
(-0.0171911 -8.38157e-12 -0.320655)
(-0.00781254 -7.00254e-11 -0.322935)
(0.00139993 -1.32846e-10 -0.324773)
(0.0104385 -1.9651e-10 -0.326181)
(0.0192968 -2.59305e-10 -0.32717)
(0.027969 -3.20743e-10 -0.327752)
(0.0364505 -3.8121e-10 -0.32794)
(0.0447368 -4.39348e-10 -0.327746)
(0.0528243 -4.94827e-10 -0.327184)
(0.06071 -5.46775e-10 -0.326268)
(0.0683912 -5.94503e-10 -0.32501)
(0.0758661 -6.37346e-10 -0.323426)
(0.083133 -6.74791e-10 -0.321528)
(0.0901909 -7.06533e-10 -0.319332)
(0.0970391 -7.32059e-10 -0.316851)
(0.103678 -7.51062e-10 -0.314099)
(0.110106 -7.63312e-10 -0.31109)
(0.116326 -7.68887e-10 -0.307838)
(0.122337 -7.67734e-10 -0.304357)
(0.128141 -7.60136e-10 -0.300661)
(0.13374 -7.46245e-10 -0.296762)
(0.139134 -7.26419e-10 -0.292675)
(0.144327 -7.01196e-10 -0.288412)
(0.14932 -6.70985e-10 -0.283985)
(0.154116 -6.36272e-10 -0.279407)
(0.158717 -5.97568e-10 -0.27469)
(0.163127 -5.55334e-10 -0.269845)
(0.167348 -5.10107e-10 -0.264883)
(0.171384 -4.62142e-10 -0.259816)
(0.175238 -4.11849e-10 -0.254653)
(0.178912 -3.59304e-10 -0.249405)
(0.182412 -3.04943e-10 -0.244081)
(0.18574 -2.48764e-10 -0.23869)
(0.188899 -1.90794e-10 -0.23324)
(0.191894 -1.31186e-10 -0.227739)
(0.194729 -6.98372e-11 -0.222196)
(0.197407 -6.79882e-12 -0.216616)
(0.199931 5.79037e-11 -0.211007)
(0.202306 1.24398e-10 -0.205374)
(0.204535 1.92583e-10 -0.199723)
(0.206623 2.62254e-10 -0.194058)
(0.208571 3.33179e-10 -0.188385)
(0.210385 4.04977e-10 -0.182707)
(0.212068 4.77416e-10 -0.177027)
(0.213623 5.49755e-10 -0.171349)
(0.215052 6.21508e-10 -0.165675)
(0.216361 6.91882e-10 -0.160007)
(0.217551 7.60288e-10 -0.154347)
(0.218625 8.25959e-10 -0.148695)
(0.219586 8.88204e-10 -0.143052)
(0.220437 9.46382e-10 -0.137419)
(0.22118 9.99778e-10 -0.131796)
(0.221818 1.04765e-09 -0.126182)
(0.222352 1.08948e-09 -0.120576)
(0.222783 1.12446e-09 -0.114978)
(0.223115 1.15166e-09 -0.109386)
(0.223347 1.17034e-09 -0.103798)
(0.223482 1.1794e-09 -0.0982138)
(0.223519 1.17784e-09 -0.0926305)
(0.22346 1.16496e-09 -0.0870464)
(0.223305 1.14067e-09 -0.0814595)
(0.223054 1.10491e-09 -0.0758679)
(0.222707 1.05894e-09 -0.0702696)
(0.222264 1.00562e-09 -0.0646628)
(0.221723 9.48635e-10 -0.0590458)
(0.221084 8.9331e-10 -0.0534169)
(0.220345 8.46021e-10 -0.0477751)
(0.219505 8.13526e-10 -0.0421192)
(0.218563 8.02457e-10 -0.0364488)
(0.217515 8.1822e-10 -0.0307636)
(0.21636 8.63634e-10 -0.0250641)
(0.215096 9.38215e-10 -0.019351)
(0.213718 1.03754e-09 -0.0136259)
(0.212225 1.15344e-09 -0.00789092)
(0.210614 1.27452e-09 -0.00214896)
(0.20888 1.38869e-09 0.00359638)
(0.20702 1.48562e-09 0.00934064)
(0.20503 1.55997e-09 0.0150785)
(0.202907 1.61422e-09 0.0208035)
(0.200647 1.65908e-09 0.0265085)
(0.198245 1.71127e-09 0.0321852)
(0.195699 1.78882e-09 0.037824)
(0.193003 1.90268e-09 0.0434146)
(0.190156 2.04722e-09 0.0489454)
(0.187151 2.19316e-09 0.0544038)
(0.183988 2.28508e-09 0.0597758)
(0.180662 2.24806e-09 0.0650465)
(0.17717 2.00241e-09 0.0702001)
(0.173511 1.48736e-09 0.0752193)
(0.169683 6.8411e-10 0.080086)
(0.165684 -3.63184e-10 0.0847813)
(0.161514 -1.54202e-09 0.0892851)
(0.157172 -2.67955e-09 0.0935767)
(0.152661 -3.56642e-09 0.0976345)
(0.147981 -3.99103e-09 0.101437)
(0.143136 -3.77414e-09 0.10496)
(0.138129 -2.80457e-09 0.108183)
(0.132965 -1.06744e-09 0.111081)
(0.127651 1.32187e-09 0.113632)
(0.122193 4.08489e-09 0.115814)
(0.116601 6.748e-09 0.117603)
(0.110885 8.62851e-09 0.118979)
(0.105055 8.85752e-09 0.11992)
(0.0991259 6.4536e-09 0.120407)
(0.093111 4.41717e-10 0.120422)
(0.0870265 -9.99999e-09 0.119948)
(0.0808897 -2.5399e-08 0.118971)
(0.0747194 -4.58772e-08 0.117477)
(0.0685357 -7.11011e-08 0.115457)
(0.0623599 -1.00314e-07 0.112901)
(0.0562146 -1.3246e-07 0.109802)
(0.0501233 -1.66322e-07 0.106156)
(0.0441104 -2.00615e-07 0.101956)
(0.038201 -2.34269e-07 0.0971957)
(0.0324207 -2.67513e-07 0.0918637)
(0.0267954 -3.0382e-07 0.0859361)
(0.0213519 -3.51688e-07 0.0793653)
(0.0161187 -4.28086e-07 0.0720514)
(0.0111262 -5.71504e-07 0.0637738)
(0.00645026 -9.04844e-07 0.0539986)
(0.0025423 -2.22483e-06 0.0414979)
(-0.0111168 5.36566e-07 0.578027)
(-0.0286025 5.92016e-07 0.606281)
(-0.0477521 -5.17601e-07 0.612236)
(-0.0663935 -2.30665e-07 0.612077)
(-0.0847913 -2.94869e-07 0.609114)
(-0.102641 -2.55719e-07 0.604373)
(-0.119974 -4.30499e-08 0.598331)
(-0.136761 -2.22151e-07 0.591239)
(-0.152985 -1.43105e-07 0.583254)
(-0.168633 1.14539e-07 0.57448)
(-0.183695 1.54969e-07 0.564996)
(-0.198166 8.81609e-09 0.554861)
(-0.212038 -1.00063e-07 0.544125)
(-0.225305 -9.51629e-08 0.53283)
(-0.237963 -3.95906e-08 0.521012)
(-0.250007 -1.10595e-09 0.508706)
(-0.261435 5.25106e-09 0.495942)
(-0.272244 -3.43437e-09 0.482749)
(-0.282434 -1.02388e-08 0.469155)
(-0.292002 -1.02109e-08 0.455185)
(-0.300948 -6.28213e-09 0.440864)
(-0.309272 -2.41648e-09 0.426216)
(-0.316975 -3.90839e-10 0.411265)
(-0.324058 5.86895e-11 0.396032)
(-0.330522 -3.52077e-11 0.38054)
(-0.33637 1.55527e-10 0.364811)
(-0.341605 8.94972e-10 0.348864)
(-0.34623 1.96007e-09 0.332721)
(-0.350249 2.91396e-09 0.316401)
(-0.353667 3.39487e-09 0.299925)
(-0.356489 3.293e-09 0.283311)
(-0.358721 2.75642e-09 0.266579)
(-0.360368 2.06405e-09 0.249747)
(-0.361436 1.45858e-09 0.232834)
(-0.361934 1.04099e-09 0.21586)
(-0.361869 7.6761e-10 0.198841)
(-0.361248 5.25566e-10 0.181798)
(-0.360081 2.27019e-10 0.164747)
(-0.358376 -1.36882e-10 0.147707)
(-0.356143 -4.9834e-10 0.130697)
(-0.353393 -7.58546e-10 0.113735)
(-0.350135 -8.41368e-10 0.0968403)
(-0.346382 -7.27415e-10 0.0800308)
(-0.342145 -4.56671e-10 0.0633257)
(-0.337437 -1.0517e-10 0.046744)
(-0.332272 2.44861e-10 0.0303052)
(-0.326662 5.316e-10 0.0140286)
(-0.320624 7.23905e-10 -0.00206615)
(-0.314172 8.20323e-10 -0.0179579)
(-0.307325 8.40177e-10 -0.0336256)
(-0.300098 8.11157e-10 -0.0490489)
(-0.292511 7.59596e-10 -0.0642073)
(-0.284583 7.06374e-10 -0.0790807)
(-0.276332 6.64437e-10 -0.0936491)
(-0.26778 6.3985e-10 -0.107893)
(-0.258947 6.33508e-10 -0.121793)
(-0.249854 6.42261e-10 -0.135331)
(-0.240523 6.60559e-10 -0.14849)
(-0.230977 6.82207e-10 -0.161251)
(-0.221236 7.00939e-10 -0.1736)
(-0.211324 7.12276e-10 -0.185522)
(-0.201262 7.13124e-10 -0.197002)
(-0.191074 7.02996e-10 -0.208029)
(-0.180779 6.82839e-10 -0.218591)
(-0.170401 6.54828e-10 -0.228678)
(-0.159959 6.21497e-10 -0.238282)
(-0.149475 5.85352e-10 -0.247397)
(-0.138967 5.48159e-10 -0.256016)
(-0.128456 5.10736e-10 -0.264135)
(-0.117959 4.73518e-10 -0.271753)
(-0.107494 4.35994e-10 -0.278867)
(-0.0970771 3.97549e-10 -0.285478)
(-0.0867246 3.57186e-10 -0.291586)
(-0.0764513 3.14137e-10 -0.297196)
(-0.066271 2.68633e-10 -0.30231)
(-0.0561968 2.19395e-10 -0.306933)
(-0.0462408 1.66601e-10 -0.311072)
(-0.0364145 1.10865e-10 -0.314733)
(-0.0267281 5.21369e-11 -0.317925)
(-0.0171912 -8.38155e-12 -0.320655)
(-0.00781258 -7.00252e-11 -0.322935)
(0.00139989 -1.32845e-10 -0.324773)
(0.0104385 -1.9651e-10 -0.326181)
(0.0192967 -2.59304e-10 -0.32717)
(0.027969 -3.20742e-10 -0.327752)
(0.0364504 -3.81209e-10 -0.32794)
(0.0447367 -4.39347e-10 -0.327746)
(0.0528243 -4.94826e-10 -0.327184)
(0.0607099 -5.46774e-10 -0.326268)
(0.0683912 -5.94502e-10 -0.32501)
(0.075866 -6.37344e-10 -0.323426)
(0.083133 -6.7479e-10 -0.321528)
(0.0901908 -7.06531e-10 -0.319332)
(0.0970391 -7.32057e-10 -0.316851)
(0.103677 -7.5106e-10 -0.314099)
(0.110106 -7.63311e-10 -0.31109)
(0.116326 -7.68885e-10 -0.307838)
(0.122337 -7.67733e-10 -0.304357)
(0.128141 -7.60134e-10 -0.300661)
(0.13374 -7.46243e-10 -0.296762)
(0.139134 -7.26417e-10 -0.292675)
(0.144327 -7.01195e-10 -0.288412)
(0.14932 -6.70984e-10 -0.283985)
(0.154116 -6.36271e-10 -0.279407)
(0.158717 -5.97567e-10 -0.27469)
(0.163127 -5.55333e-10 -0.269845)
(0.167348 -5.10106e-10 -0.264883)
(0.171384 -4.62141e-10 -0.259816)
(0.175238 -4.11848e-10 -0.254653)
(0.178912 -3.59304e-10 -0.249405)
(0.182412 -3.04942e-10 -0.244081)
(0.18574 -2.48764e-10 -0.23869)
(0.188899 -1.90794e-10 -0.23324)
(0.191894 -1.31186e-10 -0.227739)
(0.194729 -6.98371e-11 -0.222196)
(0.197407 -6.79881e-12 -0.216616)
(0.199931 5.79036e-11 -0.211007)
(0.202306 1.24398e-10 -0.205374)
(0.204535 1.92583e-10 -0.199723)
(0.206623 2.62253e-10 -0.194058)
(0.208571 3.33179e-10 -0.188385)
(0.210385 4.04976e-10 -0.182707)
(0.212068 4.77416e-10 -0.177027)
(0.213623 5.49755e-10 -0.171349)
(0.215052 6.21508e-10 -0.165675)
(0.216361 6.91881e-10 -0.160007)
(0.217551 7.60287e-10 -0.154347)
(0.218625 8.25958e-10 -0.148695)
(0.219586 8.88203e-10 -0.143052)
(0.220437 9.46381e-10 -0.137419)
(0.22118 9.99777e-10 -0.131796)
(0.221818 1.04765e-09 -0.126182)
(0.222352 1.08948e-09 -0.120576)
(0.222783 1.12446e-09 -0.114978)
(0.223115 1.15166e-09 -0.109386)
(0.223347 1.17034e-09 -0.103798)
(0.223482 1.1794e-09 -0.0982139)
(0.223519 1.17784e-09 -0.0926305)
(0.22346 1.16496e-09 -0.0870464)
(0.223305 1.14067e-09 -0.0814595)
(0.223054 1.10491e-09 -0.0758679)
(0.222707 1.05894e-09 -0.0702697)
(0.222264 1.00562e-09 -0.0646628)
(0.221723 9.48634e-10 -0.0590458)
(0.221084 8.93309e-10 -0.053417)
(0.220345 8.4602e-10 -0.0477751)
(0.219505 8.13525e-10 -0.0421192)
(0.218563 8.02456e-10 -0.0364488)
(0.217515 8.18219e-10 -0.0307637)
(0.21636 8.63633e-10 -0.0250641)
(0.215096 9.38214e-10 -0.019351)
(0.213718 1.03754e-09 -0.0136259)
(0.212225 1.15343e-09 -0.00789093)
(0.210614 1.27452e-09 -0.00214897)
(0.20888 1.38869e-09 0.00359637)
(0.20702 1.48562e-09 0.00934063)
(0.20503 1.55997e-09 0.0150784)
(0.202907 1.61422e-09 0.0208035)
(0.200647 1.65908e-09 0.0265085)
(0.198245 1.71127e-09 0.0321851)
(0.195699 1.78882e-09 0.037824)
(0.193003 1.90268e-09 0.0434146)
(0.190156 2.04722e-09 0.0489454)
(0.187151 2.19316e-09 0.0544038)
(0.183988 2.28508e-09 0.0597758)
(0.180662 2.24806e-09 0.0650465)
(0.17717 2.00241e-09 0.0702001)
(0.173511 1.48736e-09 0.0752193)
(0.169683 6.84109e-10 0.080086)
(0.165684 -3.63184e-10 0.0847813)
(0.161514 -1.54202e-09 0.0892851)
(0.157172 -2.67955e-09 0.0935767)
(0.152661 -3.56642e-09 0.0976345)
(0.147981 -3.99103e-09 0.101437)
(0.143136 -3.77414e-09 0.10496)
(0.138129 -2.80457e-09 0.108183)
(0.132965 -1.06744e-09 0.111081)
(0.127651 1.32187e-09 0.113632)
(0.122193 4.08489e-09 0.115814)
(0.116601 6.748e-09 0.117603)
(0.110885 8.62851e-09 0.118978)
(0.105055 8.85752e-09 0.11992)
(0.0991259 6.45359e-09 0.120407)
(0.093111 4.41717e-10 0.120422)
(0.0870265 -9.99998e-09 0.119948)
(0.0808897 -2.5399e-08 0.118971)
(0.0747193 -4.58772e-08 0.117477)
(0.0685355 -7.1101e-08 0.115457)
(0.0623597 -1.00314e-07 0.112901)
(0.0562144 -1.3246e-07 0.109802)
(0.0501231 -1.66322e-07 0.106155)
(0.0441102 -2.00615e-07 0.101955)
(0.0382007 -2.34269e-07 0.097195)
(0.0324203 -2.67513e-07 0.0918627)
(0.026795 -3.0382e-07 0.0859348)
(0.0213516 -3.51687e-07 0.0793635)
(0.0161185 -4.28086e-07 0.0720488)
(0.0111261 -5.71504e-07 0.0637698)
(0.00645065 -9.04848e-07 0.0539922)
(0.00254304 -2.22484e-06 0.0414874)
(-0.0110208 -1.0532e-06 0.597149)
(-0.0289571 -4.8856e-07 0.627216)
(-0.0482067 -1.67314e-06 0.632566)
(-0.0672303 -6.00916e-07 0.631857)
(-0.085964 -3.47523e-07 0.628343)
(-0.104114 -9.39589e-08 0.623036)
(-0.121699 1.16502e-07 0.616409)
(-0.138699 -8.03424e-08 0.608715)
(-0.155104 -6.72038e-08 0.600115)
(-0.170903 1.14398e-07 0.590716)
(-0.186089 1.23633e-07 0.580598)
(-0.200656 -1.50731e-08 0.569822)
(-0.214601 -1.09208e-07 0.558439)
(-0.227917 -9.62718e-08 0.546493)
(-0.2406 -3.76981e-08 0.534019)
(-0.252646 2.04169e-09 0.521054)
(-0.264054 8.5714e-09 0.507629)
(-0.27482 -8.96296e-10 0.493772)
(-0.284945 -8.5934e-09 0.479513)
(-0.294427 -8.70498e-09 0.464877)
(-0.303266 -4.08215e-09 0.449891)
(-0.311462 7.0269e-10 0.434578)
(-0.319015 3.19582e-09 0.418962)
(-0.325929 3.38354e-09 0.403067)
(-0.332204 2.45822e-09 0.386916)
(-0.337844 1.60661e-09 0.370529)
(-0.342851 1.40514e-09 0.353929)
(-0.347231 1.78747e-09 0.337137)
(-0.350987 2.33795e-09 0.320173)
(-0.354124 2.64984e-09 0.303057)
(-0.356649 2.55318e-09 0.28581)
(-0.358567 2.14193e-09 0.268451)
(-0.359884 1.64403e-09 0.250999)
(-0.360609 1.25315e-09 0.233474)
(-0.360748 1.02718e-09 0.215895)
(-0.36031 8.92961e-10 0.198281)
(-0.359303 7.26324e-10 0.18065)
(-0.357738 4.45247e-10 0.163022)
(-0.355623 5.7463e-11 0.145416)
(-0.352969 -3.49528e-10 0.12785)
(-0.349787 -6.59954e-10 0.110344)
(-0.346089 -7.86224e-10 0.0929162)
(-0.341887 -7.0309e-10 0.0755869)
(-0.337193 -4.49277e-10 0.0583755)
(-0.332022 -1.03171e-10 0.0413017)
(-0.326387 2.49578e-10 0.0243856)
(-0.320304 5.42466e-10 0.00764732)
(-0.313788 7.40236e-10 -0.0088923)
(-0.306858 8.3885e-10 -0.0252107)
(-0.299531 8.56222e-10 -0.0412865)
(-0.291826 8.19836e-10 -0.0570984)
(-0.283763 7.57302e-10 -0.0726251)
(-0.275361 6.91214e-10 -0.0878458)
(-0.266643 6.36718e-10 -0.10274)
(-0.25763 6.01414e-10 -0.117287)
(-0.248344 5.86937e-10 -0.131467)
(-0.238809 5.90396e-10 -0.145263)
(-0.229046 6.06007e-10 -0.158654)
(-0.219079 6.26582e-10 -0.171625)
(-0.208933 6.45187e-10 -0.184159)
(-0.198629 6.56576e-10 -0.196242)
(-0.188192 6.57093e-10 -0.20786)
(-0.177644 6.45867e-10 -0.219001)
(-0.167009 6.23589e-10 -0.229653)
(-0.156307 5.92844e-10 -0.239809)
(-0.145562 5.56293e-10 -0.249459)
(-0.134792 5.16621e-10 -0.258598)
(-0.124019 4.75773e-10 -0.267221)
(-0.113262 4.34848e-10 -0.275325)
(-0.102538 3.94487e-10 -0.282908)
(-0.0918664 3.53948e-10 -0.28997)
(-0.0812622 3.12666e-10 -0.296511)
(-0.0707412 2.70081e-10 -0.302535)
(-0.0603181 2.24426e-10 -0.308044)
(-0.0500062 1.76367e-10 -0.313043)
(-0.0398183 1.24216e-10 -0.317539)
(-0.0297659 6.81252e-11 -0.321539)
(-0.0198596 9.63058e-12 -0.325049)
(-0.0101093 -5.20101e-11 -0.32808)
(-0.000523917 -1.15492e-10 -0.330641)
(0.00888828 -1.80969e-10 -0.332741)
(0.0181195 -2.46753e-10 -0.334393)
(0.0271637 -3.12179e-10 -0.335607)
(0.0360151 -3.76991e-10 -0.336397)
(0.0446689 -4.40063e-10 -0.336774)
(0.0531209 -5.01114e-10 -0.336753)
(0.0613674 -5.58866e-10 -0.336346)
(0.0694056 -6.12628e-10 -0.335568)
(0.0772329 -6.6176e-10 -0.334433)
(0.0848474 -7.05496e-10 -0.332955)
(0.0922478 -7.43604e-10 -0.331148)
(0.0994332 -7.75523e-10 -0.329027)
(0.106403 -8.0074e-10 -0.326606)
(0.113157 -8.19179e-10 -0.323901)
(0.119696 -8.30508e-10 -0.320925)
(0.12602 -8.3488e-10 -0.317693)
(0.132131 -8.32397e-10 -0.314219)
(0.138029 -8.23212e-10 -0.310517)
(0.143717 -8.07787e-10 -0.306601)
(0.149196 -7.86504e-10 -0.302485)
(0.154469 -7.59978e-10 -0.298183)
(0.159537 -7.28592e-10 -0.293706)
(0.164404 -6.92832e-10 -0.289069)
(0.169072 -6.53209e-10 -0.284284)
(0.173545 -6.10235e-10 -0.279363)
(0.177825 -5.64217e-10 -0.274317)
(0.181916 -5.15565e-10 -0.269158)
(0.185821 -4.64328e-10 -0.263897)
(0.189544 -4.10712e-10 -0.258544)
(0.193089 -3.54844e-10 -0.253109)
(0.196459 -2.96546e-10 -0.247602)
(0.199657 -2.35944e-10 -0.242032)
(0.202689 -1.72809e-10 -0.236407)
(0.205558 -1.07064e-10 -0.230736)
(0.208267 -3.85041e-11 -0.225026)
(0.210821 3.29225e-11 -0.219284)
(0.213224 1.07216e-10 -0.213516)
(0.215479 1.84376e-10 -0.207728)
(0.21759 2.6407e-10 -0.201926)
(0.219562 3.46171e-10 -0.196115)
(0.221397 4.30116e-10 -0.190299)
(0.2231 5.15394e-10 -0.184482)
(0.224675 6.01007e-10 -0.178667)
(0.226124 6.86316e-10 -0.172857)
(0.227451 7.70092e-10 -0.167054)
(0.228659 8.51287e-10 -0.161261)
(0.229752 9.28979e-10 -0.155479)
(0.230732 1.00207e-09 -0.149708)
(0.231602 1.0693e-09 -0.143949)
(0.232366 1.13014e-09 -0.138203)
(0.233024 1.18372e-09 -0.132469)
(0.23358 1.22921e-09 -0.126746)
(0.234035 1.26603e-09 -0.121033)
(0.234391 1.29374e-09 -0.11533)
(0.234651 1.31155e-09 -0.109634)
(0.234814 1.31926e-09 -0.103944)
(0.234883 1.31616e-09 -0.0982588)
(0.234857 1.30201e-09 -0.092575)
(0.234739 1.27649e-09 -0.086891)
(0.234527 1.24021e-09 -0.0812044)
(0.234222 1.19398e-09 -0.075513)
(0.233824 1.14006e-09 -0.0698145)
(0.233331 1.08172e-09 -0.0641069)
(0.232744 1.02336e-09 -0.058388)
(0.232061 9.70755e-10 -0.052656)
(0.23128 9.30408e-10 -0.0469095)
(0.2304 9.09207e-10 -0.0411471)
(0.229419 9.13426e-10 -0.035368)
(0.228335 9.47726e-10 -0.0295718)
(0.227144 1.01357e-09 -0.0237584)
(0.225844 1.10968e-09 -0.0179285)
(0.224432 1.22944e-09 -0.0120834)
(0.222905 1.36367e-09 -0.00622488)
(0.221258 1.49988e-09 -0.000355761)
(0.219488 1.62527e-09 0.00552063)
(0.217591 1.73016e-09 0.0114)
(0.215563 1.81092e-09 0.0172772)
(0.2134 1.87232e-09 0.0231459)
(0.211096 1.92673e-09 0.0289988)
(0.208648 1.99215e-09 0.0348278)
(0.206051 2.08443e-09 0.0406234)
(0.203301 2.20882e-09 0.0463749)
(0.200392 2.35088e-09 0.0520709)
(0.197322 2.46961e-09 0.0576983)
(0.194086 2.50018e-09 0.063243)
(0.19068 2.36315e-09 0.06869)
(0.187101 1.98574e-09 0.0740226)
(0.183345 1.32513e-09 0.0792235)
(0.179411 3.93285e-10 0.0842739)
(0.175295 -7.30462e-10 0.0891541)
(0.170998 -1.90062e-09 0.0938434)
(0.166518 -2.92258e-09 0.0983203)
(0.161855 -3.58295e-09 0.102562)
(0.157011 -3.68426e-09 0.106546)
(0.151988 -3.07695e-09 0.110249)
(0.146789 -1.69045e-09 0.113646)
(0.141418 4.36518e-10 0.116713)
(0.135882 3.11664e-09 0.119427)
(0.130186 5.97106e-09 0.121762)
(0.12434 8.39478e-09 0.123695)
(0.118354 9.55574e-09 0.125203)
(0.112239 8.45457e-09 0.126264)
(0.106007 4.04758e-09 0.126856)
(0.0996743 -4.58569e-09 0.12696)
(0.0932563 -1.80767e-08 0.126558)
(0.0867709 -3.6644e-08 0.125633)
(0.0802377 -6.0029e-08 0.124171)
(0.0736777 -8.74938e-08 0.12216)
(0.0671134 -1.17891e-07 0.119589)
(0.0605687 -1.4981e-07 0.116451)
(0.0540686 -1.81789e-07 0.112739)
(0.0476394 -2.12574e-07 0.108446)
(0.0413083 -2.41692e-07 0.103566)
(0.035103 -2.70904e-07 0.0980863)
(0.029052 -3.06351e-07 0.0919818)
(0.0231845 -3.60191e-07 0.0852044)
(0.0175312 -4.53955e-07 0.0776524)
(0.0121251 -6.32407e-07 0.0691008)
(0.00704334 -1.0381e-06 0.0590078)
(0.00278059 -2.61247e-06 0.0461367)
(-0.0110185 -1.05337e-06 0.597134)
(-0.0289571 -4.88745e-07 0.627221)
(-0.0482078 -1.67399e-06 0.632567)
(-0.0672316 -6.01161e-07 0.631857)
(-0.0859638 -3.47588e-07 0.628341)
(-0.104112 -9.39649e-08 0.623035)
(-0.121698 1.16504e-07 0.616408)
(-0.138699 -8.03429e-08 0.608715)
(-0.155104 -6.7204e-08 0.600115)
(-0.170902 1.14398e-07 0.590716)
(-0.186088 1.23633e-07 0.580598)
(-0.200656 -1.50731e-08 0.569822)
(-0.214601 -1.09209e-07 0.55844)
(-0.227917 -9.62719e-08 0.546493)
(-0.2406 -3.76981e-08 0.53402)
(-0.252646 2.04169e-09 0.521054)
(-0.264053 8.57141e-09 0.507629)
(-0.27482 -8.96297e-10 0.493772)
(-0.284945 -8.59341e-09 0.479513)
(-0.294427 -8.70499e-09 0.464877)
(-0.303266 -4.08216e-09 0.449891)
(-0.311462 7.02691e-10 0.434578)
(-0.319016 3.19582e-09 0.418962)
(-0.325929 3.38355e-09 0.403067)
(-0.332204 2.45823e-09 0.386916)
(-0.337844 1.60661e-09 0.370529)
(-0.342851 1.40514e-09 0.353929)
(-0.347231 1.78747e-09 0.337137)
(-0.350987 2.33795e-09 0.320173)
(-0.354125 2.64984e-09 0.303057)
(-0.356649 2.55319e-09 0.28581)
(-0.358567 2.14193e-09 0.268451)
(-0.359884 1.64403e-09 0.250999)
(-0.360609 1.25315e-09 0.233474)
(-0.360748 1.02718e-09 0.215895)
(-0.36031 8.92961e-10 0.198281)
(-0.359303 7.26325e-10 0.18065)
(-0.357738 4.45247e-10 0.163022)
(-0.355623 5.7463e-11 0.145416)
(-0.352969 -3.49528e-10 0.12785)
(-0.349788 -6.59954e-10 0.110344)
(-0.346089 -7.86224e-10 0.0929163)
(-0.341887 -7.0309e-10 0.075587)
(-0.337193 -4.49277e-10 0.0583755)
(-0.332022 -1.03171e-10 0.0413017)
(-0.326387 2.49578e-10 0.0243856)
(-0.320304 5.42466e-10 0.00764735)
(-0.313788 7.40236e-10 -0.00889228)
(-0.306858 8.38849e-10 -0.0252107)
(-0.299531 8.5622e-10 -0.0412865)
(-0.291826 8.19834e-10 -0.0570984)
(-0.283763 7.57301e-10 -0.0726251)
(-0.275362 6.91212e-10 -0.0878458)
(-0.266644 6.36717e-10 -0.10274)
(-0.25763 6.01413e-10 -0.117287)
(-0.248345 5.86936e-10 -0.131467)
(-0.238809 5.90394e-10 -0.145263)
(-0.229046 6.06006e-10 -0.158654)
(-0.219079 6.26581e-10 -0.171625)
(-0.208933 6.45185e-10 -0.184159)
(-0.198629 6.56575e-10 -0.196242)
(-0.188192 6.57091e-10 -0.20786)
(-0.177645 6.45865e-10 -0.219001)
(-0.167009 6.23588e-10 -0.229653)
(-0.156308 5.92843e-10 -0.239809)
(-0.145562 5.56291e-10 -0.249459)
(-0.134792 5.1662e-10 -0.258598)
(-0.124019 4.75771e-10 -0.267221)
(-0.113262 4.34847e-10 -0.275325)
(-0.102538 3.94486e-10 -0.282908)
(-0.0918665 3.53947e-10 -0.28997)
(-0.0812622 3.12666e-10 -0.296511)
(-0.0707413 2.7008e-10 -0.302535)
(-0.0603181 2.24426e-10 -0.308044)
(-0.0500063 1.76367e-10 -0.313043)
(-0.0398183 1.24215e-10 -0.317539)
(-0.0297659 6.81251e-11 -0.321539)
(-0.0198596 9.63055e-12 -0.325049)
(-0.0101094 -5.201e-11 -0.32808)
(-0.000523956 -1.15492e-10 -0.330641)
(0.00888824 -1.80969e-10 -0.332741)
(0.0181195 -2.46753e-10 -0.334393)
(0.0271637 -3.12178e-10 -0.335607)
(0.0360151 -3.7699e-10 -0.336397)
(0.0446689 -4.40062e-10 -0.336774)
(0.0531209 -5.01113e-10 -0.336753)
(0.0613674 -5.58865e-10 -0.336346)
(0.0694055 -6.12627e-10 -0.335568)
(0.0772328 -6.61759e-10 -0.334433)
(0.0848474 -7.05494e-10 -0.332955)
(0.0922478 -7.43602e-10 -0.331148)
(0.0994331 -7.75521e-10 -0.329027)
(0.106403 -8.00738e-10 -0.326606)
(0.113157 -8.19177e-10 -0.323901)
(0.119696 -8.30506e-10 -0.320925)
(0.12602 -8.34878e-10 -0.317693)
(0.132131 -8.32395e-10 -0.314219)
(0.138029 -8.23211e-10 -0.310517)
(0.143717 -8.07785e-10 -0.306601)
(0.149196 -7.86503e-10 -0.302485)
(0.154469 -7.59976e-10 -0.298182)
(0.159537 -7.2859e-10 -0.293706)
(0.164404 -6.9283e-10 -0.289069)
(0.169072 -6.53208e-10 -0.284284)
(0.173545 -6.10234e-10 -0.279363)
(0.177825 -5.64216e-10 -0.274317)
(0.181916 -5.15564e-10 -0.269158)
(0.185821 -4.64327e-10 -0.263897)
(0.189544 -4.10711e-10 -0.258544)
(0.193089 -3.54843e-10 -0.253109)
(0.196459 -2.96545e-10 -0.247602)
(0.199657 -2.35944e-10 -0.242032)
(0.202689 -1.72809e-10 -0.236407)
(0.205558 -1.07064e-10 -0.230736)
(0.208267 -3.8504e-11 -0.225026)
(0.210821 3.29224e-11 -0.219284)
(0.213224 1.07215e-10 -0.213516)
(0.215479 1.84375e-10 -0.207728)
(0.21759 2.6407e-10 -0.201926)
(0.219562 3.46171e-10 -0.196115)
(0.221397 4.30116e-10 -0.190299)
(0.2231 5.15393e-10 -0.184482)
(0.224675 6.01006e-10 -0.178667)
(0.226124 6.86315e-10 -0.172857)
(0.227451 7.70091e-10 -0.167054)
(0.228659 8.51286e-10 -0.161261)
(0.229752 9.28978e-10 -0.155479)
(0.230732 1.00207e-09 -0.149708)
(0.231602 1.0693e-09 -0.143949)
(0.232366 1.13014e-09 -0.138203)
(0.233024 1.18372e-09 -0.132469)
(0.23358 1.22921e-09 -0.126746)
(0.234035 1.26603e-09 -0.121033)
(0.234391 1.29374e-09 -0.11533)
(0.234651 1.31155e-09 -0.109634)
(0.234814 1.31925e-09 -0.103945)
(0.234883 1.31616e-09 -0.0982588)
(0.234857 1.30201e-09 -0.0925751)
(0.234739 1.27649e-09 -0.086891)
(0.234527 1.2402e-09 -0.0812044)
(0.234222 1.19398e-09 -0.075513)
(0.233824 1.14005e-09 -0.0698145)
(0.233331 1.08172e-09 -0.0641069)
(0.232744 1.02336e-09 -0.058388)
(0.232061 9.70754e-10 -0.052656)
(0.23128 9.30407e-10 -0.0469095)
(0.2304 9.09206e-10 -0.0411472)
(0.229419 9.13425e-10 -0.0353681)
(0.228335 9.47725e-10 -0.0295718)
(0.227144 1.01357e-09 -0.0237584)
(0.225844 1.10968e-09 -0.0179285)
(0.224432 1.22944e-09 -0.0120834)
(0.222905 1.36366e-09 -0.0062249)
(0.221258 1.49988e-09 -0.000355775)
(0.219488 1.62527e-09 0.00552061)
(0.217591 1.73016e-09 0.0114)
(0.215563 1.81092e-09 0.0172772)
(0.2134 1.87232e-09 0.0231459)
(0.211096 1.92673e-09 0.0289988)
(0.208648 1.99214e-09 0.0348278)
(0.206051 2.08443e-09 0.0406234)
(0.203301 2.20882e-09 0.0463749)
(0.200392 2.35087e-09 0.0520709)
(0.197322 2.46961e-09 0.0576983)
(0.194086 2.50017e-09 0.063243)
(0.19068 2.36315e-09 0.06869)
(0.187101 1.98574e-09 0.0740226)
(0.183345 1.32512e-09 0.0792235)
(0.179411 3.93285e-10 0.0842739)
(0.175295 -7.30462e-10 0.0891541)
(0.170998 -1.90062e-09 0.0938434)
(0.166518 -2.92258e-09 0.0983203)
(0.161855 -3.58295e-09 0.102562)
(0.157011 -3.68426e-09 0.106546)
(0.151988 -3.07695e-09 0.110249)
(0.146789 -1.69045e-09 0.113646)
(0.141418 4.36518e-10 0.116713)
(0.135881 3.11664e-09 0.119427)
(0.130186 5.97106e-09 0.121762)
(0.12434 8.39478e-09 0.123695)
(0.118354 9.55574e-09 0.125203)
(0.112238 8.45457e-09 0.126264)
(0.106007 4.04758e-09 0.126856)
(0.0996742 -4.58569e-09 0.12696)
(0.0932562 -1.80767e-08 0.126558)
(0.0867708 -3.66439e-08 0.125633)
(0.0802376 -6.00289e-08 0.124171)
(0.0736776 -8.74938e-08 0.122159)
(0.0671132 -1.17891e-07 0.119589)
(0.0605684 -1.4981e-07 0.11645)
(0.0540683 -1.81789e-07 0.112738)
(0.0476391 -2.12574e-07 0.108446)
(0.0413079 -2.41692e-07 0.103566)
(0.0351025 -2.70903e-07 0.0980851)
(0.0290515 -3.06351e-07 0.0919802)
(0.023184 -3.60191e-07 0.0852022)
(0.0175308 -4.53954e-07 0.0776491)
(0.0121249 -6.32408e-07 0.0690958)
(0.00704368 -1.0381e-06 0.0589998)
(0.00278138 -2.61248e-06 0.0461236)
(-0.0111023 -3.16455e-06 0.616644)
(-0.0292234 -2.85325e-08 0.648153)
(-0.0487301 -1.73329e-06 0.653187)
(-0.0680863 -2.57312e-07 0.651989)
(-0.0871278 4.86053e-08 0.647894)
(-0.105545 3.2948e-07 0.641977)
(-0.123353 2.46148e-07 0.634722)
(-0.14054 -1.66697e-08 0.626389)
(-0.1571 -1.8924e-09 0.617139)
(-0.173025 1.27504e-07 0.607084)
(-0.18831 9.8551e-08 0.596305)
(-0.202951 -3.56782e-08 0.584862)
(-0.216946 -1.12873e-07 0.572807)
(-0.230288 -9.25058e-08 0.560184)
(-0.242974 -3.49202e-08 0.547031)
(-0.255001 2.6062e-09 0.533383)
(-0.266365 8.66176e-09 0.519272)
(-0.277067 -7.14846e-11 0.504728)
(-0.287103 -6.77257e-09 0.489781)
(-0.296475 -5.94983e-09 0.474456)
(-0.305182 -5.32293e-10 0.458781)
(-0.313224 4.72752e-09 0.442781)
(-0.320603 7.17496e-09 0.42648)
(-0.327321 6.77118e-09 0.409901)
(-0.333381 4.89248e-09 0.393068)
(-0.338786 2.99619e-09 0.376005)
(-0.343539 1.8777e-09 0.358731)
(-0.347645 1.58063e-09 0.34127)
(-0.35111 1.70978e-09 0.323643)
(-0.353938 1.83327e-09 0.30587)
(-0.356136 1.73891e-09 0.287972)
(-0.357711 1.46922e-09 0.269969)
(-0.35867 1.19266e-09 0.251881)
(-0.359021 1.04178e-09 0.233728)
(-0.358771 1.02279e-09 0.21553)
(-0.357931 1.03089e-09 0.197306)
(-0.356509 9.3461e-10 0.179075)
(-0.354515 6.63603e-10 0.160857)
(-0.35196 2.47102e-10 0.142672)
(-0.348856 -2.05494e-10 0.124539)
(-0.345213 -5.62041e-10 0.106478)
(-0.341045 -7.25691e-10 0.0885084)
(-0.336365 -6.6792e-10 0.070651)
(-0.331186 -4.284e-10 0.0529258)
(-0.325522 -8.80714e-11 0.0353536)
(-0.319391 2.64018e-10 0.017955)
(-0.312807 5.5776e-10 0.000751225)
(-0.305789 7.55365e-10 -0.0162353)
(-0.298355 8.51159e-10 -0.0329812)
(-0.290525 8.61904e-10 -0.0494643)
(-0.282319 8.15824e-10 -0.0656624)
(-0.273759 7.41321e-10 -0.0815535)
(-0.264867 6.62727e-10 -0.097116)
(-0.255664 5.9657e-10 -0.112328)
(-0.246176 5.51573e-10 -0.12717)
(-0.236425 5.30165e-10 -0.14162)
(-0.226435 5.29225e-10 -0.15566)
(-0.216232 5.42638e-10 -0.169272)
(-0.20584 5.62599e-10 -0.182437)
(-0.195284 5.81333e-10 -0.195141)
(-0.184588 5.92851e-10 -0.207367)
(-0.173777 5.93267e-10 -0.219104)
(-0.162875 5.81251e-10 -0.23034)
(-0.151904 5.57543e-10 -0.241063)
(-0.140887 5.24448e-10 -0.251266)
(-0.129848 4.85188e-10 -0.260942)
(-0.118805 4.42297e-10 -0.270084)
(-0.107781 3.98229e-10 -0.27869)
(-0.0967927 3.53982e-10 -0.286757)
(-0.0858601 3.10504e-10 -0.294284)
(-0.0749997 2.66974e-10 -0.301272)
(-0.0642278 2.2319e-10 -0.307723)
(-0.0535594 1.78024e-10 -0.313641)
(-0.0430084 1.29533e-10 -0.319029)
(-0.0325879 7.78194e-11 -0.323895)
(-0.0223098 2.29855e-11 -0.328245)
(-0.012185 -3.59919e-11 -0.332087)
(-0.00222359 -9.75013e-11 -0.335429)
(0.00756541 -1.62515e-10 -0.338282)
(0.017173 -2.29472e-10 -0.340656)
(0.0265923 -2.97196e-10 -0.342563)
(0.0358169 -3.65228e-10 -0.344013)
(0.0448412 -4.32645e-10 -0.345021)
(0.0536606 -4.98809e-10 -0.345598)
(0.0622708 -5.62108e-10 -0.345759)
(0.0706683 -6.22159e-10 -0.345517)
(0.0788504 -6.77606e-10 -0.344887)
(0.0868148 -7.27912e-10 -0.343884)
(0.0945597 -7.72617e-10 -0.342521)
(0.102084 -8.11209e-10 -0.340813)
(0.109387 -8.43024e-10 -0.338776)
(0.116467 -8.67881e-10 -0.336425)
(0.123327 -8.8545e-10 -0.333774)
(0.129965 -8.95729e-10 -0.330838)
(0.136383 -8.98745e-10 -0.327633)
(0.142582 -8.94804e-10 -0.324173)
(0.148563 -8.84161e-10 -0.320472)
(0.154329 -8.67227e-10 -0.316546)
(0.159881 -8.4459e-10 -0.312407)
(0.165222 -8.16684e-10 -0.308071)
(0.170355 -7.84173e-10 -0.303551)
(0.175281 -7.47468e-10 -0.29886)
(0.180005 -7.07029e-10 -0.294012)
(0.184529 -6.63315e-10 -0.289018)
(0.188857 -6.16584e-10 -0.283892)
(0.192992 -5.6714e-10 -0.278644)
(0.196938 -5.15011e-10 -0.273288)
(0.200699 -4.6017e-10 -0.267833)
(0.204278 -4.02617e-10 -0.26229)
(0.20768 -3.42198e-10 -0.25667)
(0.210907 -2.78608e-10 -0.250981)
(0.213965 -2.11716e-10 -0.245233)
(0.216858 -1.41319e-10 -0.239435)
(0.219589 -6.70075e-11 -0.233595)
(0.222163 1.11937e-11 -0.22772)
(0.224583 9.3387e-11 -0.221817)
(0.226854 1.79572e-10 -0.215892)
(0.228981 2.69392e-10 -0.209952)
(0.230966 3.62719e-10 -0.204002)
(0.232813 4.58785e-10 -0.198047)
(0.234528 5.56593e-10 -0.192091)
(0.236113 6.5553e-10 -0.186138)
(0.237573 7.54341e-10 -0.18019)
(0.23891 8.51492e-10 -0.174251)
(0.240128 9.45935e-10 -0.168324)
(0.241231 1.03619e-09 -0.162409)
(0.242222 1.12089e-09 -0.156508)
(0.243104 1.19856e-09 -0.150621)
(0.243879 1.26835e-09 -0.14475)
(0.24455 1.32914e-09 -0.138894)
(0.245121 1.38025e-09 -0.133052)
(0.245592 1.42107e-09 -0.127224)
(0.245966 1.45116e-09 -0.121408)
(0.246245 1.47012e-09 -0.115603)
(0.24643 1.478e-09 -0.109807)
(0.246523 1.47448e-09 -0.104019)
(0.246525 1.45961e-09 -0.0982356)
(0.246436 1.43336e-09 -0.0924547)
(0.246257 1.39639e-09 -0.086674)
(0.245988 1.34966e-09 -0.0808909)
(0.245629 1.29464e-09 -0.0751028)
(0.24518 1.23411e-09 -0.0693071)
(0.24464 1.17182e-09 -0.0635014)
(0.244008 1.11293e-09 -0.0576833)
(0.243282 1.06329e-09 -0.0518507)
(0.242461 1.02966e-09 -0.0460018)
(0.241544 1.01886e-09 -0.0401349)
(0.240527 1.03675e-09 -0.0342489)
(0.239408 1.08723e-09 -0.028343)
(0.238184 1.17089e-09 -0.0224169)
(0.236853 1.28492e-09 -0.016471)
(0.23541 1.42175e-09 -0.0105063)
(0.233852 1.57036e-09 -0.00452433)
(0.232175 1.71761e-09 0.00147243)
(0.230374 1.8504e-09 0.00748078)
(0.228445 1.95987e-09 0.0134967)
(0.226384 2.04409e-09 0.0195151)
(0.224184 2.10961e-09 0.0255299)
(0.221843 2.17095e-09 0.031534)
(0.219354 2.24568e-09 0.037519)
(0.216712 2.34686e-09 0.0434757)
(0.213912 2.4733e-09 0.0493933)
(0.210949 2.60062e-09 0.0552602)
(0.207819 2.67839e-09 0.0610632)
(0.204515 2.63448e-09 0.0667882)
(0.201035 2.39072e-09 0.0724194)
(0.197373 1.88597e-09 0.0779401)
(0.193526 1.10169e-09 0.0833324)
(0.18949 8.09942e-11 0.0885769)
(0.185263 -1.06414e-09 0.0936535)
(0.180842 -2.16404e-09 0.0985405)
(0.176226 -3.01472e-09 0.103216)
(0.171415 -3.41097e-09 0.107656)
(0.166408 -3.17757e-09 0.111836)
(0.161208 -2.19622e-09 0.115733)
(0.155817 -4.34529e-10 0.11932)
(0.150238 2.01701e-09 0.122573)
(0.144478 4.89619e-09 0.125465)
(0.138541 7.71266e-09 0.127971)
(0.132438 9.71967e-09 0.130066)
(0.126176 9.94127e-09 0.131724)
(0.119768 7.28397e-09 0.132922)
(0.113226 7.2002e-10 0.133637)
(0.106565 -1.051e-08 0.133848)
(0.099802 -2.67373e-08 0.133534)
(0.0929549 -4.77903e-08 0.132678)
(0.086044 -7.29982e-08 0.131262)
(0.0790911 -1.01236e-07 0.129275)
(0.0721199 -1.31019e-07 0.126702)
(0.0651557 -1.607e-07 0.123536)
(0.0582253 -1.88829e-07 0.119768)
(0.0513568 -2.14713e-07 0.115391)
(0.0445798 -2.39388e-07 0.110396)
(0.0379247 -2.67333e-07 0.10477)
(0.0314228 -3.08452e-07 0.0984882)
(0.0251063 -3.79025e-07 0.0915008)
(0.0190092 -5.04672e-07 0.0837045)
(0.0131674 -7.35954e-07 0.0748706)
(0.00765973 -1.23912e-06 0.0644499)
(0.00302639 -3.15489e-06 0.0511987)
(-0.0110813 -3.16513e-06 0.616641)
(-0.029221 -2.85435e-08 0.648159)
(-0.0487312 -1.73419e-06 0.653185)
(-0.0680872 -2.57418e-07 0.651985)
(-0.0871273 4.86146e-08 0.64789)
(-0.105542 3.29502e-07 0.641975)
(-0.123352 2.46153e-07 0.634721)
(-0.14054 -1.66698e-08 0.626388)
(-0.1571 -1.8924e-09 0.617139)
(-0.173024 1.27504e-07 0.607085)
(-0.188309 9.85512e-08 0.596305)
(-0.202951 -3.56783e-08 0.584862)
(-0.216946 -1.12873e-07 0.572807)
(-0.230289 -9.25059e-08 0.560184)
(-0.242974 -3.49203e-08 0.547031)
(-0.255001 2.6062e-09 0.533383)
(-0.266365 8.66177e-09 0.519272)
(-0.277067 -7.14847e-11 0.504728)
(-0.287103 -6.77257e-09 0.489781)
(-0.296475 -5.94984e-09 0.474456)
(-0.305182 -5.32293e-10 0.458781)
(-0.313224 4.72752e-09 0.442781)
(-0.320603 7.17496e-09 0.42648)
(-0.327321 6.77119e-09 0.409901)
(-0.333381 4.89248e-09 0.393069)
(-0.338786 2.99619e-09 0.376005)
(-0.343539 1.87771e-09 0.358731)
(-0.347645 1.58063e-09 0.341271)
(-0.35111 1.70978e-09 0.323643)
(-0.353938 1.83328e-09 0.30587)
(-0.356136 1.73892e-09 0.287972)
(-0.357711 1.46923e-09 0.269969)
(-0.35867 1.19266e-09 0.251881)
(-0.359021 1.04179e-09 0.233728)
(-0.358771 1.02279e-09 0.21553)
(-0.357931 1.03089e-09 0.197306)
(-0.356509 9.3461e-10 0.179075)
(-0.354515 6.63603e-10 0.160857)
(-0.351961 2.47102e-10 0.142672)
(-0.348856 -2.05494e-10 0.124539)
(-0.345213 -5.62041e-10 0.106478)
(-0.341045 -7.2569e-10 0.0885084)
(-0.336365 -6.6792e-10 0.070651)
(-0.331186 -4.284e-10 0.0529259)
(-0.325523 -8.80713e-11 0.0353536)
(-0.319391 2.64018e-10 0.0179551)
(-0.312807 5.57759e-10 0.000751251)
(-0.305789 7.55365e-10 -0.0162353)
(-0.298355 8.51158e-10 -0.0329812)
(-0.290525 8.61903e-10 -0.0494642)
(-0.282319 8.15823e-10 -0.0656624)
(-0.273759 7.4132e-10 -0.0815535)
(-0.264867 6.62726e-10 -0.097116)
(-0.255665 5.96569e-10 -0.112328)
(-0.246176 5.51572e-10 -0.12717)
(-0.236425 5.30164e-10 -0.14162)
(-0.226435 5.29224e-10 -0.15566)
(-0.216232 5.42637e-10 -0.169272)
(-0.20584 5.62598e-10 -0.182437)
(-0.195284 5.81331e-10 -0.19514)
(-0.184588 5.9285e-10 -0.207367)
(-0.173777 5.93266e-10 -0.219104)
(-0.162875 5.81249e-10 -0.23034)
(-0.151904 5.57542e-10 -0.241063)
(-0.140888 5.24447e-10 -0.251266)
(-0.129848 4.85187e-10 -0.260942)
(-0.118805 4.42295e-10 -0.270084)
(-0.107781 3.98228e-10 -0.27869)
(-0.0967928 3.53981e-10 -0.286757)
(-0.0858601 3.10503e-10 -0.294284)
(-0.0749998 2.66974e-10 -0.301272)
(-0.0642279 2.23189e-10 -0.307723)
(-0.0535594 1.78023e-10 -0.313641)
(-0.0430085 1.29533e-10 -0.319029)
(-0.0325879 7.78191e-11 -0.323895)
(-0.0223098 2.29854e-11 -0.328245)
(-0.012185 -3.59918e-11 -0.332087)
(-0.00222363 -9.7501e-11 -0.335429)
(0.00756537 -1.62514e-10 -0.338282)
(0.0171729 -2.29471e-10 -0.340656)
(0.0265922 -2.97196e-10 -0.342563)
(0.0358168 -3.65227e-10 -0.344013)
(0.0448412 -4.32644e-10 -0.345021)
(0.0536605 -4.98807e-10 -0.345598)
(0.0622707 -5.62106e-10 -0.345759)
(0.0706683 -6.22157e-10 -0.345517)
(0.0788504 -6.77604e-10 -0.344887)
(0.0868148 -7.2791e-10 -0.343884)
(0.0945596 -7.72615e-10 -0.342521)
(0.102084 -8.11207e-10 -0.340813)
(0.109387 -8.43022e-10 -0.338776)
(0.116467 -8.67879e-10 -0.336425)
(0.123327 -8.85448e-10 -0.333774)
(0.129965 -8.95727e-10 -0.330838)
(0.136383 -8.98743e-10 -0.327633)
(0.142582 -8.94802e-10 -0.324173)
(0.148563 -8.8416e-10 -0.320472)
(0.154329 -8.67226e-10 -0.316546)
(0.159881 -8.44588e-10 -0.312407)
(0.165222 -8.16682e-10 -0.308071)
(0.170355 -7.84172e-10 -0.303551)
(0.175281 -7.47467e-10 -0.29886)
(0.180005 -7.07028e-10 -0.294012)
(0.184529 -6.63314e-10 -0.289018)
(0.188857 -6.16583e-10 -0.283892)
(0.192992 -5.67139e-10 -0.278644)
(0.196938 -5.1501e-10 -0.273288)
(0.200699 -4.60169e-10 -0.267833)
(0.204278 -4.02616e-10 -0.26229)
(0.20768 -3.42198e-10 -0.25667)
(0.210907 -2.78607e-10 -0.250981)
(0.213965 -2.11716e-10 -0.245233)
(0.216858 -1.41319e-10 -0.239435)
(0.219589 -6.70074e-11 -0.233595)
(0.222163 1.11937e-11 -0.22772)
(0.224583 9.33868e-11 -0.221817)
(0.226854 1.79572e-10 -0.215892)
(0.22898 2.69392e-10 -0.209952)
(0.230966 3.62718e-10 -0.204002)
(0.232813 4.58784e-10 -0.198047)
(0.234528 5.56592e-10 -0.192091)
(0.236113 6.55529e-10 -0.186138)
(0.237573 7.5434e-10 -0.18019)
(0.23891 8.51491e-10 -0.174252)
(0.240128 9.45934e-10 -0.168324)
(0.241231 1.03618e-09 -0.162409)
(0.242222 1.12089e-09 -0.156508)
(0.243104 1.19855e-09 -0.150621)
(0.243879 1.26835e-09 -0.14475)
(0.24455 1.32913e-09 -0.138894)
(0.245121 1.38025e-09 -0.133052)
(0.245592 1.42106e-09 -0.127224)
(0.245966 1.45116e-09 -0.121408)
(0.246245 1.47012e-09 -0.115603)
(0.24643 1.478e-09 -0.109807)
(0.246523 1.47447e-09 -0.104019)
(0.246525 1.45961e-09 -0.0982356)
(0.246436 1.43336e-09 -0.0924547)
(0.246257 1.39638e-09 -0.0866741)
(0.245988 1.34966e-09 -0.0808909)
(0.245629 1.29464e-09 -0.0751028)
(0.24518 1.23411e-09 -0.0693071)
(0.24464 1.17182e-09 -0.0635014)
(0.244008 1.11292e-09 -0.0576833)
(0.243282 1.06329e-09 -0.0518507)
(0.242461 1.02966e-09 -0.0460018)
(0.241544 1.01885e-09 -0.0401349)
(0.240527 1.03675e-09 -0.0342489)
(0.239408 1.08723e-09 -0.028343)
(0.238184 1.17089e-09 -0.0224169)
(0.236853 1.28492e-09 -0.0164711)
(0.23541 1.42175e-09 -0.0105063)
(0.233852 1.57036e-09 -0.00452434)
(0.232175 1.71761e-09 0.00147241)
(0.230374 1.8504e-09 0.00748077)
(0.228445 1.95987e-09 0.0134967)
(0.226384 2.04408e-09 0.0195151)
(0.224184 2.10961e-09 0.0255299)
(0.221843 2.17095e-09 0.031534)
(0.219354 2.24568e-09 0.037519)
(0.216712 2.34686e-09 0.0434757)
(0.213912 2.4733e-09 0.0493933)
(0.210949 2.60062e-09 0.0552602)
(0.207819 2.67839e-09 0.0610632)
(0.204515 2.63447e-09 0.0667882)
(0.201035 2.39072e-09 0.0724194)
(0.197373 1.88597e-09 0.0779401)
(0.193526 1.10169e-09 0.0833324)
(0.18949 8.09941e-11 0.0885769)
(0.185263 -1.06413e-09 0.0936535)
(0.180842 -2.16404e-09 0.0985405)
(0.176226 -3.01472e-09 0.103216)
(0.171415 -3.41096e-09 0.107656)
(0.166408 -3.17757e-09 0.111836)
(0.161208 -2.19622e-09 0.115733)
(0.155817 -4.34529e-10 0.11932)
(0.150238 2.01701e-09 0.122573)
(0.144478 4.89619e-09 0.125465)
(0.138541 7.71266e-09 0.127971)
(0.132438 9.71966e-09 0.130065)
(0.126176 9.94126e-09 0.131724)
(0.119768 7.28397e-09 0.132922)
(0.113226 7.20019e-10 0.133637)
(0.106565 -1.051e-08 0.133848)
(0.0998019 -2.67373e-08 0.133534)
(0.0929548 -4.77903e-08 0.132678)
(0.0860438 -7.29982e-08 0.131262)
(0.0790909 -1.01236e-07 0.129274)
(0.0721197 -1.31019e-07 0.126702)
(0.0651554 -1.60699e-07 0.123536)
(0.0582249 -1.88829e-07 0.119768)
(0.0513563 -2.14713e-07 0.11539)
(0.0445792 -2.39388e-07 0.110395)
(0.037924 -2.67333e-07 0.104769)
(0.031422 -3.08451e-07 0.0984863)
(0.0251055 -3.79024e-07 0.0914981)
(0.0190085 -5.04672e-07 0.0837005)
(0.013167 -7.35955e-07 0.0748644)
(0.00765995 -1.23913e-06 0.0644398)
(0.00302722 -3.15491e-06 0.0511825)
(-0.0107992 -3.00602e-06 0.636214)
(-0.0292553 2.91493e-06 0.669383)
(-0.049286 -7.06837e-07 0.674158)
(-0.0689747 1.10141e-07 0.672459)
(-0.0883068 2.81489e-07 0.667734)
(-0.106951 5.71257e-07 0.661161)
(-0.124946 1.91241e-07 0.653236)
(-0.142284 -1.15862e-07 0.644227)
(-0.158967 -2.89337e-08 0.634297)
(-0.174988 1.12921e-07 0.623559)
(-0.190345 7.74411e-08 0.612091)
(-0.205035 -4.38985e-08 0.599955)
(-0.219055 -1.05423e-07 0.587203)
(-0.2324 -8.22505e-08 0.573879)
(-0.245065 -3.05903e-08 0.560021)
(-0.257047 1.60586e-09 0.545666)
(-0.268345 6.58678e-09 0.530846)
(-0.278955 -3.352e-10 0.515591)
(-0.288879 -4.65754e-09 0.499932)
(-0.298114 -2.11753e-09 0.483895)
(-0.306663 4.12202e-09 0.467509)
(-0.314525 9.44404e-09 0.450798)
(-0.321703 1.13798e-08 0.433788)
(-0.328198 1.00871e-08 0.416504)
(-0.334014 7.15589e-09 0.39897)
(-0.339155 4.23629e-09 0.381208)
(-0.343624 2.25322e-09 0.363241)
(-0.347428 1.31145e-09 0.345092)
(-0.350571 1.03031e-09 0.326782)
(-0.35306 9.67852e-10 0.308333)
(-0.354901 8.83851e-10 0.289767)
(-0.356102 7.73368e-10 0.271103)
(-0.356671 7.39608e-10 0.252362)
(-0.356617 8.45189e-10 0.233565)
(-0.355947 1.03882e-09 0.214732)
(-0.354673 1.185e-09 0.195883)
(-0.352803 1.14907e-09 0.177039)
(-0.35035 8.78456e-10 0.158218)
(-0.347324 4.2784e-10 0.139442)
(-0.343737 -7.00493e-11 0.120731)
(-0.339602 -4.67825e-10 0.102105)
(-0.334933 -6.62223e-10 0.083585)
(-0.329744 -6.24158e-10 0.0651915)
(-0.324049 -3.95756e-10 0.0469458)
(-0.317864 -6.14083e-11 0.0288695)
(-0.311207 2.87105e-10 0.0109841)
(-0.304095 5.76686e-10 -0.00668792)
(-0.296547 7.68448e-10 -0.0241221)
(-0.288584 8.56255e-10 -0.0412948)
(-0.280228 8.56562e-10 -0.058183)
(-0.271499 7.98232e-10 -0.0747634)
(-0.262422 7.1084e-10 -0.0910131)
(-0.25302 6.19997e-10 -0.10691)
(-0.243317 5.43279e-10 -0.122431)
(-0.233339 4.90202e-10 -0.137556)
(-0.223111 4.63118e-10 -0.152263)
(-0.212659 4.59008e-10 -0.166534)
(-0.202009 4.71092e-10 -0.180349)
(-0.191188 4.90927e-10 -0.193691)
(-0.180221 5.09866e-10 -0.206545)
(-0.169134 5.21846e-10 -0.218896)
(-0.157953 5.22443e-10 -0.230731)
(-0.146701 5.09814e-10 -0.24204)
(-0.135404 4.84908e-10 -0.252812)
(-0.124084 4.49974e-10 -0.263039)
(-0.112763 4.08313e-10 -0.272717)
(-0.101462 3.62483e-10 -0.281839)
(-0.0902028 3.15605e-10 -0.290405)
(-0.0790032 2.68088e-10 -0.298411)
(-0.0678814 2.21978e-10 -0.305859)
(-0.0568542 1.75843e-10 -0.312751)
(-0.0459373 1.28915e-10 -0.31909)
(-0.035145 8.02224e-11 -0.32488)
(-0.024491 2.86653e-11 -0.330128)
(-0.0139872 -2.57817e-11 -0.334839)
(-0.00364508 -8.30678e-11 -0.339024)
(0.00652549 -1.4552e-10 -0.342689)
(0.0165141 -2.11374e-10 -0.345845)
(0.0263132 -2.78968e-10 -0.348503)
(0.0359154 -3.48223e-10 -0.350674)
(0.0453147 -4.18425e-10 -0.352371)
(0.0545053 -4.88115e-10 -0.353606)
(0.0634828 -5.56322e-10 -0.354393)
(0.0722432 -6.21997e-10 -0.354746)
(0.0807831 -6.83579e-10 -0.354679)
(0.0890998 -7.40584e-10 -0.354206)
(0.0971914 -7.92089e-10 -0.353343)
(0.105056 -8.37457e-10 -0.352104)
(0.112693 -8.76201e-10 -0.350505)
(0.120102 -9.07732e-10 -0.34856)
(0.127283 -9.3177e-10 -0.346286)
(0.134235 -9.4834e-10 -0.343698)
(0.140961 -9.57186e-10 -0.34081)
(0.14746 -9.5859e-10 -0.33764)
(0.153735 -9.52858e-10 -0.334201)
(0.159787 -9.40272e-10 -0.330508)
(0.165618 -9.21523e-10 -0.326578)
(0.171231 -8.97045e-10 -0.322423)
(0.176628 -8.67426e-10 -0.31806)
(0.181811 -8.33254e-10 -0.313502)
(0.186785 -7.95067e-10 -0.308762)
(0.191552 -7.53274e-10 -0.303855)
(0.196115 -7.08207e-10 -0.298794)
(0.200478 -6.60147e-10 -0.293592)
(0.204645 -6.09069e-10 -0.28826)
(0.20862 -5.55152e-10 -0.282812)
(0.212406 -4.98139e-10 -0.277258)
(0.216008 -4.37954e-10 -0.27161)
(0.219429 -3.74367e-10 -0.265878)
(0.222674 -3.06968e-10 -0.260073)
(0.225747 -2.35553e-10 -0.254205)
(0.228652 -1.59737e-10 -0.248281)
(0.231393 -7.93924e-11 -0.242312)
(0.233976 5.83896e-12 -0.236305)
(0.236403 9.59318e-11 -0.230267)
(0.23868 1.90631e-10 -0.224206)
(0.240811 2.89936e-10 -0.218127)
(0.242799 3.93234e-10 -0.212038)
(0.244649 4.99629e-10 -0.205943)
(0.246365 6.08482e-10 -0.199847)
(0.247951 7.18439e-10 -0.193754)
(0.249411 8.28219e-10 -0.187667)
(0.250749 9.36391e-10 -0.181591)
(0.251968 1.04139e-09 -0.175527)
(0.253072 1.14156e-09 -0.169478)
(0.254065 1.23552e-09 -0.163445)
(0.254948 1.32171e-09 -0.157429)
(0.255727 1.39894e-09 -0.151431)
(0.256403 1.46599e-09 -0.14545)
(0.256979 1.52236e-09 -0.139488)
(0.257457 1.56739e-09 -0.133542)
(0.257841 1.60078e-09 -0.127613)
(0.258132 1.62245e-09 -0.121698)
(0.258331 1.63246e-09 -0.115795)
(0.25844 1.63085e-09 -0.109904)
(0.258461 1.61791e-09 -0.10402)
(0.258395 1.59402e-09 -0.098143)
(0.258241 1.55951e-09 -0.0922689)
(0.258002 1.51509e-09 -0.0863952)
(0.257676 1.46205e-09 -0.0805191)
(0.257263 1.40258e-09 -0.0746377)
(0.256764 1.33907e-09 -0.0687481)
(0.256177 1.27609e-09 -0.0628476)
(0.255501 1.21868e-09 -0.0569333)
(0.254735 1.17295e-09 -0.0510029)
(0.253876 1.14572e-09 -0.0450542)
(0.252923 1.14364e-09 -0.0390851)
(0.251873 1.17203e-09 -0.0330943)
(0.250723 1.23437e-09 -0.0270805)
(0.24947 1.33067e-09 -0.0210433)
(0.248111 1.45635e-09 -0.0149825)
(0.246641 1.60331e-09 -0.00889893)
(0.245057 1.75919e-09 -0.00279382)
(0.243354 1.90996e-09 0.0033307)
(0.241527 2.04316e-09 0.0094717)
(0.239571 2.15056e-09 0.0156253)
(0.237482 2.23224e-09 0.0217867)
(0.235253 2.29671e-09 0.0279499)
(0.232879 2.35977e-09 0.0341079)
(0.230355 2.43806e-09 0.0402527)
(0.227674 2.54126e-09 0.0463747)
(0.224831 2.66083e-09 0.0524635)
(0.22182 2.76338e-09 0.0585072)
(0.218635 2.79021e-09 0.0644925)
(0.215271 2.66638e-09 0.070405)
(0.211722 2.31944e-09 0.0762288)
(0.207984 1.70527e-09 0.0819468)
(0.204051 8.31444e-10 0.0875405)
(0.199919 -2.28833e-10 0.0929902)
(0.195584 -1.33821e-09 0.0982748)
(0.191045 -2.31357e-09 0.103372)
(0.186297 -2.95444e-09 0.108259)
(0.181341 -3.07242e-09 0.112912)
(0.176175 -2.51663e-09 0.117304)
(0.1708 -1.19696e-09 0.121411)
(0.165218 8.86598e-10 0.125205)
(0.159431 3.5937e-09 0.128661)
(0.153446 6.57817e-09 0.13175)
(0.147266 9.2266e-09 0.134445)
(0.140901 1.06456e-08 0.13672)
(0.134359 9.73763e-09 0.138548)
(0.127652 5.37972e-09 0.139902)
(0.120792 -3.34095e-09 0.14076)
(0.113794 -1.69097e-08 0.141096)
(0.106674 -3.52689e-08 0.140889)
(0.0994527 -5.78227e-08 0.140119)
(0.0921492 -8.35087e-08 0.138768)
(0.0847868 -1.10878e-07 0.13682)
(0.0773902 -1.38212e-07 0.134262)
(0.069986 -1.63829e-07 0.131081)
(0.0626028 -1.86718e-07 0.127268)
(0.055271 -2.07538e-07 0.122815)
(0.0480225 -2.29954e-07 0.117711)
(0.0408908 -2.62243e-07 0.111942)
(0.0339107 -3.18351e-07 0.105482)
(0.0271183 -4.17337e-07 0.0982809)
(0.0205515 -5.85436e-07 0.0902327)
(0.0142507 -8.74088e-07 0.0811054)
(0.00829663 -1.46811e-06 0.0703439)
(0.00327805 -3.69419e-06 0.0566986)
(-0.0107663 -3.00659e-06 0.636217)
(-0.0292529 2.91608e-06 0.669384)
(-0.0492878 -7.07211e-07 0.67415)
(-0.0689738 1.10187e-07 0.672451)
(-0.0883041 2.81543e-07 0.667729)
(-0.106947 5.71294e-07 0.661158)
(-0.124944 1.91245e-07 0.653234)
(-0.142284 -1.15862e-07 0.644226)
(-0.158966 -2.89338e-08 0.634298)
(-0.174986 1.12921e-07 0.62356)
(-0.190344 7.74412e-08 0.612091)
(-0.205035 -4.38985e-08 0.599955)
(-0.219056 -1.05423e-07 0.587203)
(-0.2324 -8.22506e-08 0.573879)
(-0.245065 -3.05903e-08 0.560021)
(-0.257047 1.60586e-09 0.545666)
(-0.268344 6.58679e-09 0.530846)
(-0.278955 -3.352e-10 0.515591)
(-0.288879 -4.65754e-09 0.499932)
(-0.298115 -2.11754e-09 0.483895)
(-0.306663 4.12203e-09 0.467509)
(-0.314525 9.44405e-09 0.450798)
(-0.321703 1.13798e-08 0.433789)
(-0.328198 1.00871e-08 0.416505)
(-0.334014 7.1559e-09 0.39897)
(-0.339155 4.23629e-09 0.381208)
(-0.343624 2.25322e-09 0.363241)
(-0.347428 1.31145e-09 0.345092)
(-0.350571 1.03031e-09 0.326782)
(-0.35306 9.67853e-10 0.308333)
(-0.354901 8.83852e-10 0.289767)
(-0.356102 7.73368e-10 0.271103)
(-0.356672 7.39609e-10 0.252362)
(-0.356617 8.45189e-10 0.233565)
(-0.355947 1.03882e-09 0.214732)
(-0.354673 1.185e-09 0.195883)
(-0.352804 1.14907e-09 0.177039)
(-0.35035 8.78456e-10 0.158218)
(-0.347324 4.2784e-10 0.139443)
(-0.343737 -7.00493e-11 0.120731)
(-0.339602 -4.67825e-10 0.102105)
(-0.334933 -6.62223e-10 0.0835851)
(-0.329744 -6.24158e-10 0.0651915)
(-0.324049 -3.95756e-10 0.0469459)
(-0.317864 -6.14083e-11 0.0288695)
(-0.311207 2.87105e-10 0.0109842)
(-0.304095 5.76686e-10 -0.0066879)
(-0.296547 7.68447e-10 -0.0241221)
(-0.288585 8.56254e-10 -0.0412948)
(-0.280228 8.56561e-10 -0.0581829)
(-0.271499 7.9823e-10 -0.0747633)
(-0.262422 7.10838e-10 -0.0910131)
(-0.25302 6.19996e-10 -0.10691)
(-0.243317 5.43278e-10 -0.122431)
(-0.233339 4.90201e-10 -0.137556)
(-0.223111 4.63117e-10 -0.152263)
(-0.212659 4.59007e-10 -0.166534)
(-0.202009 4.71091e-10 -0.180349)
(-0.191188 4.90925e-10 -0.193691)
(-0.180221 5.09864e-10 -0.206545)
(-0.169134 5.21845e-10 -0.218896)
(-0.157953 5.22441e-10 -0.230731)
(-0.146701 5.09813e-10 -0.24204)
(-0.135404 4.84906e-10 -0.252812)
(-0.124084 4.49973e-10 -0.263039)
(-0.112763 4.08312e-10 -0.272717)
(-0.101462 3.62482e-10 -0.281839)
(-0.0902029 3.15604e-10 -0.290405)
(-0.0790033 2.68087e-10 -0.298411)
(-0.0678814 2.21977e-10 -0.305859)
(-0.0568542 1.75842e-10 -0.312751)
(-0.0459373 1.28915e-10 -0.31909)
(-0.0351451 8.02222e-11 -0.32488)
(-0.024491 2.86653e-11 -0.330128)
(-0.0139872 -2.57817e-11 -0.334839)
(-0.00364511 -8.30675e-11 -0.339024)
(0.00652545 -1.4552e-10 -0.342689)
(0.0165141 -2.11374e-10 -0.345845)
(0.0263132 -2.78967e-10 -0.348503)
(0.0359154 -3.48222e-10 -0.350674)
(0.0453146 -4.18424e-10 -0.352371)
(0.0545053 -4.88114e-10 -0.353606)
(0.0634828 -5.56321e-10 -0.354393)
(0.0722431 -6.21995e-10 -0.354746)
(0.080783 -6.83578e-10 -0.354679)
(0.0890998 -7.40582e-10 -0.354206)
(0.0971913 -7.92087e-10 -0.353343)
(0.105056 -8.37455e-10 -0.352104)
(0.112693 -8.76199e-10 -0.350505)
(0.120102 -9.0773e-10 -0.34856)
(0.127283 -9.31768e-10 -0.346286)
(0.134235 -9.48338e-10 -0.343698)
(0.140961 -9.57184e-10 -0.34081)
(0.14746 -9.58588e-10 -0.33764)
(0.153735 -9.52856e-10 -0.334201)
(0.159787 -9.4027e-10 -0.330508)
(0.165618 -9.21521e-10 -0.326578)
(0.171231 -8.97043e-10 -0.322423)
(0.176628 -8.67424e-10 -0.31806)
(0.181811 -8.33253e-10 -0.313502)
(0.186785 -7.95066e-10 -0.308762)
(0.191552 -7.53273e-10 -0.303855)
(0.196115 -7.08205e-10 -0.298794)
(0.200478 -6.60146e-10 -0.293592)
(0.204645 -6.09068e-10 -0.28826)
(0.20862 -5.55151e-10 -0.282812)
(0.212406 -4.98138e-10 -0.277258)
(0.216008 -4.37954e-10 -0.27161)
(0.219429 -3.74367e-10 -0.265878)
(0.222674 -3.06968e-10 -0.260073)
(0.225747 -2.35552e-10 -0.254205)
(0.228652 -1.59737e-10 -0.248281)
(0.231393 -7.93923e-11 -0.242312)
(0.233976 5.83895e-12 -0.236305)
(0.236403 9.59317e-11 -0.230267)
(0.23868 1.9063e-10 -0.224206)
(0.240811 2.89935e-10 -0.218127)
(0.242799 3.93233e-10 -0.212038)
(0.244649 4.99628e-10 -0.205943)
(0.246365 6.08482e-10 -0.199847)
(0.247951 7.18438e-10 -0.193754)
(0.249411 8.28218e-10 -0.187667)
(0.250749 9.3639e-10 -0.181591)
(0.251968 1.04139e-09 -0.175527)
(0.253072 1.14156e-09 -0.169478)
(0.254065 1.23552e-09 -0.163445)
(0.254948 1.32171e-09 -0.157429)
(0.255727 1.39894e-09 -0.151431)
(0.256403 1.46599e-09 -0.14545)
(0.256979 1.52235e-09 -0.139488)
(0.257457 1.56738e-09 -0.133543)
(0.257841 1.60078e-09 -0.127613)
(0.258132 1.62245e-09 -0.121698)
(0.258331 1.63246e-09 -0.115795)
(0.25844 1.63085e-09 -0.109904)
(0.258461 1.61791e-09 -0.10402)
(0.258395 1.59402e-09 -0.098143)
(0.258241 1.55951e-09 -0.0922689)
(0.258002 1.51509e-09 -0.0863952)
(0.257676 1.46205e-09 -0.0805192)
(0.257263 1.40258e-09 -0.0746378)
(0.256764 1.33907e-09 -0.0687482)
(0.256177 1.27609e-09 -0.0628476)
(0.255501 1.21868e-09 -0.0569333)
(0.254735 1.17295e-09 -0.0510029)
(0.253876 1.14572e-09 -0.0450542)
(0.252923 1.14364e-09 -0.0390852)
(0.251873 1.17203e-09 -0.0330943)
(0.250723 1.23436e-09 -0.0270806)
(0.24947 1.33067e-09 -0.0210433)
(0.248111 1.45635e-09 -0.0149826)
(0.246641 1.60331e-09 -0.00889894)
(0.245057 1.75919e-09 -0.00279383)
(0.243354 1.90996e-09 0.00333069)
(0.241527 2.04316e-09 0.00947168)
(0.239571 2.15056e-09 0.0156253)
(0.237482 2.23223e-09 0.0217867)
(0.235253 2.29671e-09 0.0279499)
(0.232879 2.35976e-09 0.0341079)
(0.230355 2.43806e-09 0.0402527)
(0.227674 2.54126e-09 0.0463747)
(0.224831 2.66083e-09 0.0524635)
(0.22182 2.76338e-09 0.0585072)
(0.218635 2.79021e-09 0.0644925)
(0.215271 2.66638e-09 0.070405)
(0.211722 2.31944e-09 0.0762288)
(0.207984 1.70527e-09 0.0819468)
(0.204051 8.31443e-10 0.0875405)
(0.199919 -2.28833e-10 0.0929902)
(0.195584 -1.33821e-09 0.0982748)
(0.191045 -2.31356e-09 0.103372)
(0.186297 -2.95443e-09 0.108259)
(0.181341 -3.07242e-09 0.112912)
(0.176175 -2.51663e-09 0.117304)
(0.1708 -1.19696e-09 0.121411)
(0.165218 8.86598e-10 0.125205)
(0.159431 3.59369e-09 0.128661)
(0.153446 6.57817e-09 0.13175)
(0.147266 9.2266e-09 0.134445)
(0.140901 1.06456e-08 0.13672)
(0.134359 9.73763e-09 0.138547)
(0.127652 5.37972e-09 0.139902)
(0.120792 -3.34095e-09 0.14076)
(0.113794 -1.69097e-08 0.141096)
(0.106674 -3.52689e-08 0.140889)
(0.0994525 -5.78227e-08 0.140119)
(0.092149 -8.35086e-08 0.138768)
(0.0847866 -1.10878e-07 0.13682)
(0.0773899 -1.38212e-07 0.134261)
(0.0699856 -1.63829e-07 0.131081)
(0.0626023 -1.86717e-07 0.127268)
(0.0552703 -2.07538e-07 0.122814)
(0.0480216 -2.29954e-07 0.11771)
(0.0408898 -2.62243e-07 0.111941)
(0.0339095 -3.1835e-07 0.10548)
(0.027117 -4.17337e-07 0.0982776)
(0.0205503 -5.85436e-07 0.0902277)
(0.0142499 -8.7409e-07 0.0810976)
(0.00829661 -1.46812e-06 0.0703314)
(0.00327888 -3.69422e-06 0.056679)
(-0.00997658 -2.10302e-06 0.655354)
(-0.0290565 5.34568e-06 0.691275)
(-0.0499944 -2.53576e-07 0.695592)
(-0.0699653 -1.05877e-07 0.693264)
(-0.0895427 2.71865e-07 0.687827)
(-0.108352 5.87722e-07 0.68054)
(-0.12648 1.37404e-07 0.671905)
(-0.143925 -1.49268e-07 0.662189)
(-0.160692 -4.16055e-08 0.651554)
(-0.176776 8.47969e-08 0.640107)
(-0.192176 4.75018e-08 0.627926)
(-0.206889 -5.22194e-08 0.615074)
(-0.220908 -9.52256e-08 0.601601)
(-0.23423 -7.02502e-08 0.587551)
(-0.246848 -2.63025e-08 0.572965)
(-0.25876 -4.3141e-10 0.557878)
(-0.269964 3.60509e-09 0.542323)
(-0.280458 -6.99552e-10 0.526333)
(-0.290241 -1.85067e-09 0.509938)
(-0.299314 2.73472e-09 0.493165)
(-0.307676 9.62261e-09 0.476044)
(-0.31533 1.45738e-08 0.4586)
(-0.322277 1.5585e-08 0.440859)
(-0.328519 1.31667e-08 0.422847)
(-0.334062 9.13047e-09 0.404589)
(-0.338908 5.24383e-09 0.386107)
(-0.343063 2.48006e-09 0.367426)
(-0.346532 9.58932e-10 0.348568)
(-0.349322 3.06204e-10 0.329557)
(-0.351439 8.10353e-11 0.310413)
(-0.352891 2.69177e-11 0.29116)
(-0.353686 9.43524e-11 0.271817)
(-0.353832 3.17905e-10 0.252407)
(-0.353339 6.85208e-10 0.23295)
(-0.352216 1.08656e-09 0.213467)
(-0.350474 1.35819e-09 0.193979)
(-0.348124 1.36818e-09 0.174507)
(-0.345177 1.08638e-09 0.155072)
(-0.341645 5.96405e-10 0.135693)
(-0.337543 5.39944e-11 0.116393)
(-0.332883 -3.79992e-10 0.0971925)
(-0.32768 -5.98431e-10 0.0781127)
(-0.321949 -5.74287e-10 0.0591756)
(-0.315707 -3.53957e-10 0.0404031)
(-0.30897 -2.56142e-11 0.0218179)
(-0.301757 3.16331e-10 0.00344243)
(-0.294087 5.97557e-10 -0.0146991)
(-0.285982 7.78463e-10 -0.0325807)
(-0.277465 8.53065e-10 -0.0501781)
(-0.268557 8.392e-10 -0.0674672)
(-0.259284 7.66368e-10 -0.0844239)
(-0.249669 6.65424e-10 -0.101024)
(-0.239739 5.62948e-10 -0.117245)
(-0.22952 4.7695e-10 -0.133064)
(-0.21904 4.17406e-10 -0.148458)
(-0.208325 3.86514e-10 -0.163407)
(-0.197403 3.80539e-10 -0.17789)
(-0.186302 3.92266e-10 -0.19189)
(-0.17505 4.12511e-10 -0.205389)
(-0.163673 4.32193e-10 -0.218372)
(-0.152199 4.44635e-10 -0.230824)
(-0.140654 4.45489e-10 -0.242734)
(-0.129063 4.32326e-10 -0.254091)
(-0.117451 4.06629e-10 -0.264887)
(-0.10584 3.69934e-10 -0.275114)
(-0.0942545 3.2623e-10 -0.284768)
(-0.0827144 2.77999e-10 -0.293846)
(-0.0712401 2.28337e-10 -0.302345)
(-0.0598503 1.78521e-10 -0.310266)
(-0.0485625 1.29294e-10 -0.317611)
(-0.037393 7.98108e-11 -0.324383)
(-0.0263567 2.91518e-11 -0.330586)
(-0.0154672 -2.19419e-11 -0.336226)
(-0.00473755 -7.58233e-11 -0.341311)
(0.00582151 -1.34104e-10 -0.345848)
(0.0161981 -1.96118e-10 -0.349845)
(0.0263837 -2.60972e-10 -0.353314)
(0.03637 -3.29406e-10 -0.356266)
(0.0461501 -3.99758e-10 -0.358711)
(0.0557178 -4.71235e-10 -0.360664)
(0.0650678 -5.42661e-10 -0.362136)
(0.0741956 -6.1245e-10 -0.363142)
(0.0830974 -6.79503e-10 -0.363696)
(0.0917701 -7.42668e-10 -0.363812)
(0.100211 -8.00846e-10 -0.363505)
(0.108419 -8.53091e-10 -0.362791)
(0.116393 -8.98866e-10 -0.361684)
(0.124131 -9.37326e-10 -0.360201)
(0.131634 -9.68139e-10 -0.358358)
(0.138902 -9.90999e-10 -0.356169)
(0.145935 -1.00583e-09 -0.353651)
(0.152734 -1.01263e-09 -0.35082)
(0.159302 -1.0117e-09 -0.347691)
(0.165639 -1.00347e-09 -0.344281)
(0.171747 -9.88272e-10 -0.340604)
(0.17763 -9.66761e-10 -0.336676)
(0.183289 -9.39598e-10 -0.332512)
(0.188727 -9.07167e-10 -0.328128)
(0.193948 -8.70234e-10 -0.323537)
(0.198954 -8.29287e-10 -0.318755)
(0.20375 -7.8463e-10 -0.313796)
(0.208338 -7.36522e-10 -0.308672)
(0.212723 -6.85446e-10 -0.303398)
(0.216908 -6.31096e-10 -0.297987)
(0.220898 -5.73549e-10 -0.292451)
(0.224696 -5.12651e-10 -0.286802)
(0.228307 -4.48019e-10 -0.281052)
(0.231735 -3.79421e-10 -0.275213)
(0.234984 -3.06475e-10 -0.269294)
(0.238059 -2.29001e-10 -0.263306)
(0.240964 -1.46615e-10 -0.25726)
(0.243704 -5.9036e-11 -0.251163)
(0.246283 3.36345e-11 -0.245025)
(0.248705 1.31499e-10 -0.238853)
(0.250976 2.34199e-10 -0.232656)
(0.253099 3.41608e-10 -0.22644)
(0.255079 4.52983e-10 -0.220211)
(0.25692 5.67405e-10 -0.213976)
(0.258627 6.83518e-10 -0.207739)
(0.260203 8.00605e-10 -0.201505)
(0.261653 9.16852e-10 -0.195279)
(0.262981 1.0307e-09 -0.189064)
(0.26419 1.14078e-09 -0.182862)
(0.265285 1.24515e-09 -0.176677)
(0.266269 1.34235e-09 -0.17051)
(0.267145 1.43126e-09 -0.164363)
(0.267917 1.51038e-09 -0.158237)
(0.268587 1.57897e-09 -0.152131)
(0.26916 1.63648e-09 -0.146046)
(0.269636 1.68235e-09 -0.139982)
(0.27002 1.71682e-09 -0.133937)
(0.270313 1.7399e-09 -0.127911)
(0.270517 1.75216e-09 -0.1219)
(0.270635 1.75378e-09 -0.115905)
(0.270666 1.74531e-09 -0.109921)
(0.270614 1.72718e-09 -0.103947)
(0.270478 1.69971e-09 -0.0979803)
(0.27026 1.66326e-09 -0.092017)
(0.269959 1.61856e-09 -0.0860544)
(0.269576 1.56673e-09 -0.0800893)
(0.269111 1.50939e-09 -0.0741185)
(0.268562 1.44946e-09 -0.0681387)
(0.267929 1.39063e-09 -0.0621468)
(0.267211 1.33807e-09 -0.0561398)
(0.266406 1.2979e-09 -0.0501148)
(0.265512 1.27653e-09 -0.0440692)
(0.264526 1.28055e-09 -0.0380007)
(0.263446 1.31519e-09 -0.0319075)
(0.262268 1.38313e-09 -0.025788)
(0.260989 1.48376e-09 -0.0196414)
(0.259606 1.61219e-09 -0.0134673)
(0.258114 1.75902e-09 -0.00726583)
(0.256508 1.91147e-09 -0.00103823)
(0.254784 2.05524e-09 0.00521385)
(0.252936 2.17837e-09 0.0114878)
(0.250959 2.27445e-09 0.01778)
(0.248847 2.34512e-09 0.0240858)
(0.246595 2.40115e-09 0.0303995)
(0.244195 2.45918e-09 0.0367143)
(0.241642 2.53483e-09 0.0430221)
(0.23893 2.63318e-09 0.0493138)
(0.23605 2.73889e-09 0.0555786)
(0.232998 2.81055e-09 0.0618048)
(0.229766 2.78375e-09 0.067979)
(0.226348 2.58422e-09 0.0740865)
(0.222738 2.14993e-09 0.0801114)
(0.218929 1.45671e-09 0.086036)
(0.214917 5.38218e-10 0.0918415)
(0.210695 -5.07228e-10 0.0975076)
(0.20626 -1.52681e-09 0.103013)
(0.201607 -2.33611e-09 0.108334)
(0.196733 -2.74778e-09 0.113447)
(0.191636 -2.59435e-09 0.118327)
(0.186314 -1.74662e-09 0.122947)
(0.180767 -1.33937e-10 0.127281)
(0.174996 2.21586e-09 0.1313)
(0.169003 5.1098e-09 0.134977)
(0.162792 8.10617e-09 0.138282)
(0.156369 1.04565e-08 0.141186)
(0.149739 1.11291e-08 0.143662)
(0.142913 8.95147e-09 0.145679)
(0.135901 2.85787e-09 0.147212)
(0.128716 -7.8368e-09 0.148232)
(0.121371 -2.32472e-08 0.148715)
(0.113885 -4.28807e-08 0.148636)
(0.106276 -6.57336e-08 0.147973)
(0.0985659 -9.04151e-08 0.146706)
(0.0907774 -1.15238e-07 0.144816)
(0.0829367 -1.38381e-07 0.142288)
(0.0750717 -1.58417e-07 0.139108)
(0.0672128 -1.75382e-07 0.135264)
(0.0593924 -1.92272e-07 0.130746)
(0.0516453 -2.16456e-07 0.125541)
(0.0440083 -2.60399e-07 0.119633)
(0.0365204 -3.40683e-07 0.112994)
(0.0292224 -4.75106e-07 0.105574)
(0.0221575 -6.8364e-07 0.0972637)
(0.0153724 -1.0106e-06 0.0878285)
(0.00895025 -1.6492e-06 0.0767084)
(0.00353329 -4.03428e-06 0.0626488)
(-0.00993377 -2.10346e-06 0.655344)
(-0.0290489 5.34794e-06 0.691271)
(-0.0499912 -2.53715e-07 0.695584)
(-0.0699585 -1.05921e-07 0.693256)
(-0.0895357 2.71918e-07 0.687823)
(-0.108346 5.87761e-07 0.680539)
(-0.126477 1.37407e-07 0.671904)
(-0.143924 -1.49269e-07 0.662189)
(-0.16069 -4.16056e-08 0.651554)
(-0.176775 8.4797e-08 0.640108)
(-0.192176 4.75018e-08 0.627927)
(-0.206889 -5.22194e-08 0.615074)
(-0.220908 -9.52257e-08 0.601601)
(-0.23423 -7.02503e-08 0.587551)
(-0.246848 -2.63025e-08 0.572965)
(-0.25876 -4.3141e-10 0.557878)
(-0.269964 3.60509e-09 0.542324)
(-0.280458 -6.99553e-10 0.526334)
(-0.290241 -1.85068e-09 0.509938)
(-0.299314 2.73472e-09 0.493166)
(-0.307676 9.62262e-09 0.476044)
(-0.31533 1.45739e-08 0.4586)
(-0.322277 1.5585e-08 0.440859)
(-0.32852 1.31668e-08 0.422847)
(-0.334062 9.13049e-09 0.404589)
(-0.338908 5.24384e-09 0.386107)
(-0.343063 2.48006e-09 0.367426)
(-0.346532 9.58933e-10 0.348569)
(-0.349322 3.06204e-10 0.329557)
(-0.351439 8.10354e-11 0.310413)
(-0.352891 2.69177e-11 0.29116)
(-0.353686 9.43525e-11 0.271817)
(-0.353832 3.17905e-10 0.252407)
(-0.353339 6.85209e-10 0.23295)
(-0.352216 1.08656e-09 0.213467)
(-0.350474 1.35819e-09 0.19398)
(-0.348124 1.36818e-09 0.174507)
(-0.345177 1.08638e-09 0.155072)
(-0.341646 5.96405e-10 0.135693)
(-0.337543 5.39944e-11 0.116393)
(-0.332883 -3.79992e-10 0.0971926)
(-0.32768 -5.98431e-10 0.0781128)
(-0.321949 -5.74287e-10 0.0591756)
(-0.315707 -3.53957e-10 0.0404032)
(-0.30897 -2.56142e-11 0.0218179)
(-0.301757 3.16331e-10 0.00344246)
(-0.294087 5.97556e-10 -0.0146991)
(-0.285983 7.78461e-10 -0.0325807)
(-0.277465 8.53064e-10 -0.0501781)
(-0.268557 8.39199e-10 -0.0674672)
(-0.259284 7.66367e-10 -0.0844239)
(-0.249669 6.65423e-10 -0.101024)
(-0.239739 5.62947e-10 -0.117245)
(-0.22952 4.76949e-10 -0.133064)
(-0.21904 4.17405e-10 -0.148458)
(-0.208325 3.86513e-10 -0.163407)
(-0.197403 3.80538e-10 -0.17789)
(-0.186302 3.92265e-10 -0.19189)
(-0.17505 4.1251e-10 -0.205389)
(-0.163673 4.32192e-10 -0.218372)
(-0.152199 4.44634e-10 -0.230824)
(-0.140654 4.45488e-10 -0.242734)
(-0.129063 4.32325e-10 -0.254091)
(-0.117451 4.06628e-10 -0.264887)
(-0.10584 3.69933e-10 -0.275114)
(-0.0942545 3.26229e-10 -0.284768)
(-0.0827145 2.77998e-10 -0.293846)
(-0.0712402 2.28336e-10 -0.302345)
(-0.0598504 1.7852e-10 -0.310266)
(-0.0485626 1.29293e-10 -0.317611)
(-0.037393 7.98106e-11 -0.324383)
(-0.0263567 2.91517e-11 -0.330586)
(-0.0154673 -2.19419e-11 -0.336226)
(-0.00473759 -7.58231e-11 -0.341311)
(0.00582147 -1.34103e-10 -0.345848)
(0.016198 -1.96118e-10 -0.349845)
(0.0263836 -2.60971e-10 -0.353314)
(0.03637 -3.29405e-10 -0.356266)
(0.0461501 -3.99757e-10 -0.358711)
(0.0557178 -4.71234e-10 -0.360664)
(0.0650678 -5.4266e-10 -0.362136)
(0.0741956 -6.12449e-10 -0.363142)
(0.0830974 -6.79501e-10 -0.363696)
(0.0917701 -7.42666e-10 -0.363812)
(0.100211 -8.00844e-10 -0.363505)
(0.108419 -8.53089e-10 -0.362791)
(0.116393 -8.98864e-10 -0.361684)
(0.124131 -9.37324e-10 -0.360201)
(0.131634 -9.68137e-10 -0.358358)
(0.138902 -9.90997e-10 -0.356169)
(0.145935 -1.00583e-09 -0.353651)
(0.152734 -1.01263e-09 -0.35082)
(0.159302 -1.0117e-09 -0.347691)
(0.165639 -1.00346e-09 -0.344281)
(0.171747 -9.8827e-10 -0.340604)
(0.17763 -9.66759e-10 -0.336676)
(0.183289 -9.39597e-10 -0.332512)
(0.188727 -9.07165e-10 -0.328128)
(0.193948 -8.70233e-10 -0.323537)
(0.198954 -8.29285e-10 -0.318755)
(0.20375 -7.84629e-10 -0.313796)
(0.208338 -7.3652e-10 -0.308672)
(0.212723 -6.85445e-10 -0.303398)
(0.216908 -6.31095e-10 -0.297987)
(0.220898 -5.73548e-10 -0.292451)
(0.224696 -5.1265e-10 -0.286802)
(0.228307 -4.48018e-10 -0.281052)
(0.231735 -3.79421e-10 -0.275213)
(0.234984 -3.06475e-10 -0.269294)
(0.238059 -2.29001e-10 -0.263306)
(0.240964 -1.46615e-10 -0.25726)
(0.243704 -5.90359e-11 -0.251163)
(0.246283 3.36345e-11 -0.245025)
(0.248705 1.31499e-10 -0.238853)
(0.250976 2.34199e-10 -0.232656)
(0.253099 3.41607e-10 -0.22644)
(0.255079 4.52983e-10 -0.220211)
(0.25692 5.67405e-10 -0.213976)
(0.258627 6.83517e-10 -0.207739)
(0.260203 8.00604e-10 -0.201505)
(0.261653 9.16851e-10 -0.195279)
(0.262981 1.0307e-09 -0.189064)
(0.26419 1.14078e-09 -0.182862)
(0.265285 1.24514e-09 -0.176677)
(0.266269 1.34235e-09 -0.17051)
(0.267145 1.43126e-09 -0.164363)
(0.267917 1.51038e-09 -0.158237)
(0.268587 1.57897e-09 -0.152131)
(0.26916 1.63648e-09 -0.146046)
(0.269636 1.68235e-09 -0.139982)
(0.27002 1.71682e-09 -0.133937)
(0.270313 1.7399e-09 -0.127911)
(0.270517 1.75216e-09 -0.121901)
(0.270635 1.75378e-09 -0.115905)
(0.270666 1.74531e-09 -0.109921)
(0.270614 1.72718e-09 -0.103947)
(0.270478 1.69971e-09 -0.0979803)
(0.27026 1.66325e-09 -0.092017)
(0.269959 1.61856e-09 -0.0860544)
(0.269576 1.56672e-09 -0.0800893)
(0.269111 1.50939e-09 -0.0741185)
(0.268562 1.44946e-09 -0.0681387)
(0.267929 1.39063e-09 -0.0621468)
(0.267211 1.33807e-09 -0.0561398)
(0.266406 1.2979e-09 -0.0501148)
(0.265512 1.27653e-09 -0.0440692)
(0.264526 1.28055e-09 -0.0380007)
(0.263446 1.31519e-09 -0.0319075)
(0.262268 1.38313e-09 -0.0257881)
(0.260989 1.48376e-09 -0.0196414)
(0.259606 1.61219e-09 -0.0134673)
(0.258114 1.75902e-09 -0.00726585)
(0.256508 1.91146e-09 -0.00103825)
(0.254784 2.05524e-09 0.00521384)
(0.252936 2.17837e-09 0.0114878)
(0.250959 2.27445e-09 0.01778)
(0.248847 2.34512e-09 0.0240858)
(0.246595 2.40114e-09 0.0303995)
(0.244195 2.45917e-09 0.0367142)
(0.241642 2.53483e-09 0.0430221)
(0.23893 2.63318e-09 0.0493138)
(0.23605 2.73889e-09 0.0555786)
(0.232998 2.81055e-09 0.0618048)
(0.229766 2.78375e-09 0.067979)
(0.226348 2.58422e-09 0.0740865)
(0.222738 2.14993e-09 0.0801114)
(0.218929 1.45671e-09 0.086036)
(0.214917 5.38218e-10 0.0918415)
(0.210695 -5.07228e-10 0.0975076)
(0.20626 -1.52681e-09 0.103013)
(0.201607 -2.33611e-09 0.108334)
(0.196733 -2.74778e-09 0.113447)
(0.191636 -2.59434e-09 0.118327)
(0.186314 -1.74662e-09 0.122947)
(0.180767 -1.33936e-10 0.127281)
(0.174996 2.21586e-09 0.1313)
(0.169003 5.10979e-09 0.134977)
(0.162792 8.10617e-09 0.138282)
(0.156369 1.04565e-08 0.141186)
(0.149739 1.11291e-08 0.143662)
(0.142913 8.95147e-09 0.145679)
(0.135901 2.85787e-09 0.147212)
(0.128716 -7.8368e-09 0.148232)
(0.121371 -2.32472e-08 0.148715)
(0.113885 -4.28807e-08 0.148636)
(0.106276 -6.57336e-08 0.147973)
(0.0985656 -9.04151e-08 0.146705)
(0.0907771 -1.15237e-07 0.144815)
(0.0829363 -1.38381e-07 0.142287)
(0.0750712 -1.58417e-07 0.139107)
(0.0672121 -1.75382e-07 0.135264)
(0.0593915 -1.92272e-07 0.130745)
(0.0516441 -2.16456e-07 0.125539)
(0.0440069 -2.60399e-07 0.119631)
(0.0365186 -3.40683e-07 0.112992)
(0.0292205 -4.75107e-07 0.10557)
(0.0221555 -6.83642e-07 0.0972577)
(0.0153708 -1.01061e-06 0.087819)
(0.00894977 -1.64922e-06 0.076693)
(0.00353397 -4.03433e-06 0.0626255)
(-0.00940574 -7.91465e-06 0.673429)
(-0.029187 5.80461e-06 0.71461)
(-0.051227 1.07249e-08 0.717757)
(-0.0711848 -3.38551e-07 0.714406)
(-0.0908746 1.5105e-07 0.708113)
(-0.10975 3.07382e-07 0.700051)
(-0.127943 -1.10614e-08 0.690674)
(-0.145444 -1.29128e-07 0.68023)
(-0.162255 -3.59282e-09 0.668869)
(-0.17837 7.57734e-08 0.656695)
(-0.193783 2.32505e-08 0.643781)
(-0.20849 -5.86786e-08 0.63019)
(-0.222482 -8.53145e-08 0.615972)
(-0.235753 -5.96951e-08 0.601173)
(-0.248298 -2.34284e-08 0.585834)
(-0.260113 -3.176e-09 0.56999)
(-0.271196 7.45177e-10 0.553677)
(-0.281546 -3.043e-10 0.536927)
(-0.29116 2.00096e-09 0.51977)
(-0.30004 8.5291e-09 0.502237)
(-0.308187 1.56846e-08 0.484356)
(-0.315601 1.98083e-08 0.466155)
(-0.322286 1.95452e-08 0.44766)
(-0.328245 1.58406e-08 0.428897)
(-0.333482 1.07046e-08 0.409892)
(-0.338001 5.94626e-09 0.390669)
(-0.341808 2.51549e-09 0.371252)
(-0.34491 5.07983e-10 0.351666)
(-0.347312 -4.51545e-10 0.331932)
(-0.349024 -7.95858e-10 0.312075)
(-0.350051 -7.90081e-10 0.292116)
(-0.350405 -5.25966e-10 0.272077)
(-0.350093 -3.89638e-11 0.25198)
(-0.349126 5.83714e-10 0.231847)
(-0.347514 1.17669e-09 0.211699)
(-0.345268 1.5534e-09 0.191558)
(-0.342402 1.59051e-09 0.171445)
(-0.338926 1.28494e-09 0.151381)
(-0.334854 7.50319e-10 0.131388)
(-0.3302 1.64874e-10 0.111489)
(-0.32498 -2.99947e-10 0.0917037)
(-0.319208 -5.36105e-10 0.0720561)
(-0.312901 -5.20867e-10 0.0525684)
(-0.306078 -3.061e-10 0.0332637)
(-0.298756 1.64188e-11 0.0141655)
(-0.290956 3.48959e-10 -0.00470231)
(-0.282699 6.17302e-10 -0.0233127)
(-0.274009 7.82953e-10 -0.0416396)
(-0.26491 8.40259e-10 -0.0596577)
(-0.255427 8.08924e-10 -0.0773416)
(-0.245586 7.19521e-10 -0.0946663)
(-0.235414 6.04514e-10 -0.111607)
(-0.22494 4.91046e-10 -0.128139)
(-0.21419 3.97482e-10 -0.14424)
(-0.203196 3.33544e-10 -0.159887)
(-0.191986 3.00584e-10 -0.175059)
(-0.180589 2.94432e-10 -0.189735)
(-0.169035 3.07056e-10 -0.203898)
(-0.157352 3.28402e-10 -0.21753)
(-0.14557 3.49083e-10 -0.230617)
(-0.133716 3.61987e-10 -0.243145)
(-0.121817 3.62945e-10 -0.255103)
(-0.109899 3.49426e-10 -0.266482)
(-0.0979866 3.22657e-10 -0.277274)
(-0.0861038 2.8466e-10 -0.287473)
(-0.0742729 2.39195e-10 -0.297076)
(-0.0625147 1.89126e-10 -0.306081)
(-0.0508491 1.36602e-10 -0.314487)
(-0.0392941 8.40019e-11 -0.322297)
(-0.0278668 3.17087e-11 -0.329513)
(-0.0165824 -2.01751e-11 -0.336139)
(-0.00545547 -7.36701e-11 -0.342182)
(0.00550174 -1.28418e-10 -0.347649)
(0.0162759 -1.86824e-10 -0.352548)
(0.0268574 -2.47889e-10 -0.356887)
(0.0372369 -3.12483e-10 -0.360678)
(0.0474065 -3.8076e-10 -0.363931)
(0.0573592 -4.51825e-10 -0.36666)
(0.0670892 -5.23887e-10 -0.368876)
(0.0765911 -5.95847e-10 -0.370594)
(0.0858609 -6.66707e-10 -0.371827)
(0.0948949 -7.34601e-10 -0.372589)
(0.10369 -7.98556e-10 -0.372897)
(0.112245 -8.57499e-10 -0.372764)
(0.120558 -9.10023e-10 -0.372207)
(0.128628 -9.55437e-10 -0.371241)
(0.136455 -9.93077e-10 -0.369883)
(0.144039 -1.02243e-09 -0.368148)
(0.151379 -1.04342e-09 -0.366052)
(0.158479 -1.05569e-09 -0.363612)
(0.165338 -1.0596e-09 -0.360845)
(0.171958 -1.05538e-09 -0.357766)
(0.178342 -1.04343e-09 -0.354391)
(0.184492 -1.0243e-09 -0.350736)
(0.190411 -9.98673e-10 -0.346818)
(0.196101 -9.67035e-10 -0.342652)
(0.201565 -9.3018e-10 -0.338253)
(0.206808 -8.88697e-10 -0.333637)
(0.211832 -8.42891e-10 -0.328818)
(0.216641 -7.93173e-10 -0.323812)
(0.221239 -7.39976e-10 -0.318632)
(0.22563 -6.83173e-10 -0.313292)
(0.229818 -6.22892e-10 -0.307806)
(0.233807 -5.5903e-10 -0.302186)
(0.237603 -4.91357e-10 -0.296447)
(0.241208 -4.19591e-10 -0.290599)
(0.244628 -3.43426e-10 -0.284655)
(0.247867 -2.62605e-10 -0.278626)
(0.25093 -1.76924e-10 -0.272522)
(0.253821 -8.61527e-11 -0.266355)
(0.256545 9.81214e-12 -0.260133)
(0.259107 1.10842e-10 -0.253865)
(0.261511 2.16529e-10 -0.247562)
(0.263763 3.26847e-10 -0.241229)
(0.265866 4.40825e-10 -0.234876)
(0.267825 5.57848e-10 -0.228508)
(0.269644 6.76895e-10 -0.222133)
(0.271329 7.96557e-10 -0.215755)
(0.272884 9.15532e-10 -0.209381)
(0.274312 1.03218e-09 -0.203014)
(0.275618 1.14495e-09 -0.196659)
(0.276806 1.25229e-09 -0.190319)
(0.27788 1.35279e-09 -0.183997)
(0.278844 1.44474e-09 -0.177695)
(0.279702 1.52715e-09 -0.171416)
(0.280456 1.59939e-09 -0.165159)
(0.281111 1.66063e-09 -0.158926)
(0.28167 1.71087e-09 -0.152718)
(0.282134 1.75016e-09 -0.146533)
(0.282508 1.7791e-09 -0.140372)
(0.282794 1.79839e-09 -0.134233)
(0.282993 1.80896e-09 -0.128114)
(0.283108 1.8116e-09 -0.122013)
(0.283141 1.80703e-09 -0.115929)
(0.283094 1.79598e-09 -0.109859)
(0.282966 1.7788e-09 -0.103799)
(0.28276 1.75555e-09 -0.0977464)
(0.282476 1.72619e-09 -0.0916985)
(0.282114 1.69065e-09 -0.0856514)
(0.281674 1.64947e-09 -0.0796016)
(0.281156 1.60365e-09 -0.0735456)
(0.280559 1.55493e-09 -0.0674798)
(0.279882 1.50671e-09 -0.0614005)
(0.279123 1.46339e-09 -0.0553045)
(0.278281 1.43064e-09 -0.0491884)
(0.277354 1.41463e-09 -0.0430494)
(0.276338 1.4217e-09 -0.0368846)
(0.27523 1.45685e-09 -0.0306919)
(0.274028 1.52256e-09 -0.0244693)
(0.272728 1.61781e-09 -0.0182155)
(0.271325 1.73734e-09 -0.0119297)
(0.269815 1.87149e-09 -0.00561196)
(0.268193 2.00716e-09 0.000737183)
(0.266453 2.13081e-09 0.0071163)
(0.26459 2.23127e-09 0.0135232)
(0.262598 2.30433e-09 0.0199545)
(0.26047 2.35397e-09 0.0264058)
(0.2582 2.39312e-09 0.0328718)
(0.255782 2.43921e-09 0.0393458)
(0.253207 2.50646e-09 0.04582)
(0.25047 2.5952e-09 0.0522852)
(0.247562 2.68361e-09 0.058731)
(0.244476 2.72395e-09 0.0651454)
(0.241204 2.64889e-09 0.071515)
(0.23774 2.38888e-09 0.0778252)
(0.234076 1.89507e-09 0.0840595)
(0.230206 1.16447e-09 0.0902003)
(0.226121 2.53519e-10 0.0962281)
(0.221818 -7.2226e-10 0.102122)
(0.217288 -1.60545e-09 0.10786)
(0.212529 -2.22148e-09 0.113419)
(0.207534 -2.40184e-09 0.118773)
(0.202302 -1.99952e-09 0.123896)
(0.196828 -8.98337e-10 0.128761)
(0.191113 9.6092e-10 0.13334)
(0.185156 3.52562e-09 0.137603)
(0.178959 6.54029e-09 0.14152)
(0.172524 9.45321e-09 0.145061)
(0.165856 1.13765e-08 0.148196)
(0.158961 1.11679e-08 0.150894)
(0.151847 7.64978e-09 0.153124)
(0.144526 -8.15209e-11 0.154857)
(0.137009 -1.23796e-08 0.156063)
(0.12931 -2.89254e-08 0.156715)
(0.121447 -4.87963e-08 0.156786)
(0.113439 -7.06367e-08 0.156252)
(0.105308 -9.27968e-08 0.15509)
(0.0970771 -1.1342e-07 0.153279)
(0.0887739 -1.30736e-07 0.150801)
(0.0804273 -1.43962e-07 0.14764)
(0.0720693 -1.54973e-07 0.143781)
(0.0637345 -1.70156e-07 0.13921)
(0.0554603 -2.01279e-07 0.133914)
(0.0472874 -2.64137e-07 0.127873)
(0.0392593 -3.74333e-07 0.121056)
(0.0314228 -5.41922e-07 0.113411)
(0.0238276 -7.726e-07 0.104827)
(0.0165298 -1.09972e-06 0.0950655)
(0.00961566 -1.71979e-06 0.0835625)
(0.00378888 -4.08433e-06 0.0690581)
(-0.00933273 -7.91694e-06 0.673398)
(-0.0291576 5.80729e-06 0.714602)
(-0.0512113 1.07311e-08 0.717752)
(-0.0711696 -3.38692e-07 0.714403)
(-0.0908632 1.51079e-07 0.708114)
(-0.109744 3.07402e-07 0.700052)
(-0.12794 -1.10616e-08 0.690675)
(-0.145442 -1.29129e-07 0.680231)
(-0.162253 -3.59283e-09 0.668871)
(-0.178369 7.57735e-08 0.656696)
(-0.193783 2.32505e-08 0.643782)
(-0.20849 -5.86786e-08 0.63019)
(-0.222482 -8.53146e-08 0.615972)
(-0.235753 -5.96952e-08 0.601174)
(-0.248298 -2.34284e-08 0.585834)
(-0.260113 -3.176e-09 0.56999)
(-0.271196 7.45178e-10 0.553677)
(-0.281545 -3.043e-10 0.536927)
(-0.29116 2.00097e-09 0.51977)
(-0.30004 8.52912e-09 0.502237)
(-0.308187 1.56846e-08 0.484356)
(-0.315601 1.98083e-08 0.466155)
(-0.322286 1.95452e-08 0.44766)
(-0.328245 1.58406e-08 0.428897)
(-0.333482 1.07046e-08 0.409892)
(-0.338001 5.94627e-09 0.390669)
(-0.341808 2.51549e-09 0.371252)
(-0.34491 5.07984e-10 0.351666)
(-0.347312 -4.51546e-10 0.331932)
(-0.349024 -7.95858e-10 0.312075)
(-0.350052 -7.90082e-10 0.292116)
(-0.350405 -5.25967e-10 0.272077)
(-0.350093 -3.89639e-11 0.25198)
(-0.349126 5.83715e-10 0.231847)
(-0.347514 1.17669e-09 0.211699)
(-0.345269 1.5534e-09 0.191558)
(-0.342402 1.59051e-09 0.171445)
(-0.338926 1.28494e-09 0.151381)
(-0.334854 7.50319e-10 0.131388)
(-0.3302 1.64874e-10 0.111489)
(-0.32498 -2.99947e-10 0.0917037)
(-0.319208 -5.36105e-10 0.0720561)
(-0.312902 -5.20866e-10 0.0525684)
(-0.306078 -3.061e-10 0.0332638)
(-0.298757 1.64188e-11 0.0141656)
(-0.290956 3.48958e-10 -0.00470228)
(-0.282699 6.17302e-10 -0.0233127)
(-0.274009 7.82951e-10 -0.0416396)
(-0.26491 8.40258e-10 -0.0596577)
(-0.255427 8.08923e-10 -0.0773416)
(-0.245586 7.1952e-10 -0.0946663)
(-0.235414 6.04513e-10 -0.111607)
(-0.22494 4.91045e-10 -0.128139)
(-0.214191 3.97482e-10 -0.14424)
(-0.203196 3.33543e-10 -0.159887)
(-0.191986 3.00583e-10 -0.175059)
(-0.180589 2.94431e-10 -0.189735)
(-0.169035 3.07055e-10 -0.203898)
(-0.157352 3.28401e-10 -0.21753)
(-0.14557 3.49082e-10 -0.230617)
(-0.133716 3.61986e-10 -0.243145)
(-0.121817 3.62944e-10 -0.255103)
(-0.109899 3.49425e-10 -0.266482)
(-0.0979867 3.22656e-10 -0.277274)
(-0.0861039 2.8466e-10 -0.287473)
(-0.0742729 2.39194e-10 -0.297076)
(-0.0625148 1.89126e-10 -0.306081)
(-0.0508491 1.36602e-10 -0.314487)
(-0.0392941 8.40017e-11 -0.322297)
(-0.0278668 3.17086e-11 -0.329513)
(-0.0165824 -2.01751e-11 -0.336139)
(-0.0054555 -7.367e-11 -0.342182)
(0.00550171 -1.28418e-10 -0.347649)
(0.0162758 -1.86823e-10 -0.352548)
(0.0268574 -2.47888e-10 -0.356887)
(0.0372368 -3.12482e-10 -0.360678)
(0.0474065 -3.80759e-10 -0.363931)
(0.0573592 -4.51824e-10 -0.36666)
(0.0670891 -5.23886e-10 -0.368876)
(0.0765911 -5.95846e-10 -0.370594)
(0.0858609 -6.66706e-10 -0.371827)
(0.0948949 -7.34599e-10 -0.372589)
(0.10369 -7.98554e-10 -0.372897)
(0.112245 -8.57497e-10 -0.372764)
(0.120558 -9.10021e-10 -0.372207)
(0.128628 -9.55435e-10 -0.371241)
(0.136455 -9.93075e-10 -0.369883)
(0.144039 -1.02243e-09 -0.368148)
(0.151379 -1.04342e-09 -0.366052)
(0.158479 -1.05569e-09 -0.363612)
(0.165338 -1.0596e-09 -0.360845)
(0.171958 -1.05538e-09 -0.357766)
(0.178342 -1.04343e-09 -0.354391)
(0.184492 -1.0243e-09 -0.350736)
(0.190411 -9.98671e-10 -0.346818)
(0.196101 -9.67034e-10 -0.342652)
(0.201565 -9.30179e-10 -0.338253)
(0.206808 -8.88695e-10 -0.333637)
(0.211832 -8.4289e-10 -0.328818)
(0.216641 -7.93171e-10 -0.323812)
(0.221239 -7.39975e-10 -0.318632)
(0.22563 -6.83172e-10 -0.313292)
(0.229818 -6.22891e-10 -0.307806)
(0.233807 -5.59029e-10 -0.302186)
(0.237603 -4.91356e-10 -0.296447)
(0.241208 -4.19591e-10 -0.290599)
(0.244628 -3.43426e-10 -0.284655)
(0.247867 -2.62605e-10 -0.278626)
(0.25093 -1.76924e-10 -0.272522)
(0.253821 -8.61526e-11 -0.266355)
(0.256545 9.81213e-12 -0.260133)
(0.259107 1.10842e-10 -0.253865)
(0.261511 2.16529e-10 -0.247562)
(0.263763 3.26847e-10 -0.241229)
(0.265866 4.40824e-10 -0.234876)
(0.267825 5.57848e-10 -0.228508)
(0.269644 6.76894e-10 -0.222133)
(0.271329 7.96556e-10 -0.215755)
(0.272884 9.15531e-10 -0.209381)
(0.274312 1.03218e-09 -0.203014)
(0.275618 1.14495e-09 -0.196659)
(0.276806 1.25229e-09 -0.190319)
(0.27788 1.35278e-09 -0.183997)
(0.278844 1.44474e-09 -0.177695)
(0.279702 1.52715e-09 -0.171416)
(0.280456 1.59939e-09 -0.165159)
(0.281111 1.66063e-09 -0.158926)
(0.28167 1.71087e-09 -0.152718)
(0.282134 1.75016e-09 -0.146533)
(0.282508 1.7791e-09 -0.140372)
(0.282794 1.79839e-09 -0.134233)
(0.282993 1.80896e-09 -0.128114)
(0.283108 1.8116e-09 -0.122013)
(0.283141 1.80703e-09 -0.115929)
(0.283094 1.79598e-09 -0.109859)
(0.282966 1.7788e-09 -0.103799)
(0.28276 1.75555e-09 -0.0977464)
(0.282476 1.72619e-09 -0.0916985)
(0.282114 1.69065e-09 -0.0856514)
(0.281674 1.64947e-09 -0.0796017)
(0.281156 1.60365e-09 -0.0735457)
(0.280559 1.55493e-09 -0.0674798)
(0.279882 1.50671e-09 -0.0614005)
(0.279123 1.46339e-09 -0.0553045)
(0.278281 1.43064e-09 -0.0491884)
(0.277354 1.41463e-09 -0.0430494)
(0.276338 1.4217e-09 -0.0368846)
(0.27523 1.45685e-09 -0.0306919)
(0.274028 1.52256e-09 -0.0244693)
(0.272728 1.61781e-09 -0.0182155)
(0.271325 1.73733e-09 -0.0119298)
(0.269815 1.87148e-09 -0.00561197)
(0.268193 2.00716e-09 0.00073717)
(0.266453 2.13081e-09 0.00711629)
(0.26459 2.23127e-09 0.0135232)
(0.262598 2.30433e-09 0.0199545)
(0.26047 2.35397e-09 0.0264058)
(0.2582 2.39312e-09 0.0328718)
(0.255782 2.43921e-09 0.0393458)
(0.253208 2.50646e-09 0.04582)
(0.25047 2.5952e-09 0.0522852)
(0.247562 2.68361e-09 0.058731)
(0.244476 2.72394e-09 0.0651454)
(0.241204 2.64889e-09 0.071515)
(0.23774 2.38888e-09 0.0778252)
(0.234076 1.89507e-09 0.0840595)
(0.230206 1.16447e-09 0.0902003)
(0.226121 2.53519e-10 0.0962281)
(0.221818 -7.2226e-10 0.102122)
(0.217288 -1.60545e-09 0.10786)
(0.212529 -2.22148e-09 0.113419)
(0.207534 -2.40183e-09 0.118773)
(0.202302 -1.99951e-09 0.123896)
(0.196828 -8.98337e-10 0.128761)
(0.191113 9.6092e-10 0.13334)
(0.185156 3.52562e-09 0.137603)
(0.178959 6.54028e-09 0.14152)
(0.172524 9.45321e-09 0.145061)
(0.165856 1.13765e-08 0.148196)
(0.158961 1.11679e-08 0.150894)
(0.151847 7.64978e-09 0.153124)
(0.144526 -8.15209e-11 0.154857)
(0.137008 -1.23796e-08 0.156063)
(0.12931 -2.89254e-08 0.156715)
(0.121447 -4.87963e-08 0.156786)
(0.113439 -7.06367e-08 0.156252)
(0.105307 -9.27968e-08 0.15509)
(0.0970768 -1.1342e-07 0.153279)
(0.0887734 -1.30735e-07 0.150801)
(0.0804267 -1.43962e-07 0.14764)
(0.0720685 -1.54973e-07 0.14378)
(0.0637333 -1.70156e-07 0.13921)
(0.0554588 -2.01279e-07 0.133913)
(0.0472854 -2.64138e-07 0.127871)
(0.0392568 -3.74334e-07 0.121054)
(0.0314199 -5.41924e-07 0.113407)
(0.0238245 -7.72604e-07 0.104821)
(0.016527 -1.09973e-06 0.0950542)
(0.00961426 -1.71981e-06 0.0835438)
(0.0037891 -4.0844e-06 0.0690305)
(-0.0144844 -1.86263e-05 0.694249)
(-0.0307898 4.00663e-06 0.737254)
(-0.0537432 2.64349e-07 0.7397)
(-0.0728788 -2.93887e-07 0.735427)
(-0.0923507 -6.98415e-08 0.728356)
(-0.111133 -6.91888e-08 0.719562)
(-0.129305 -1.69827e-07 0.709464)
(-0.146808 -9.50363e-08 0.698297)
(-0.163626 4.12094e-08 0.686205)
(-0.179741 7.13382e-08 0.673289)
(-0.19514 4.66733e-09 0.659624)
(-0.209813 -6.15577e-08 0.645273)
(-0.223751 -7.52749e-08 0.630289)
(-0.236945 -5.05821e-08 0.614717)
(-0.249389 -2.14461e-08 0.598599)
(-0.261079 -5.56441e-09 0.581974)
(-0.272012 -8.77355e-10 0.564876)
(-0.282186 1.58393e-09 0.54734)
(-0.291602 7.12349e-09 0.529397)
(-0.300258 1.51131e-08 0.511078)
(-0.308157 2.19909e-08 0.492413)
(-0.3153 2.48329e-08 0.47343)
(-0.32169 2.30249e-08 0.454156)
(-0.327331 1.7958e-08 0.434619)
(-0.332228 1.17875e-08 0.414844)
(-0.336385 6.28869e-09 0.394858)
(-0.33981 2.32873e-09 0.374684)
(-0.342508 -4.94935e-11 0.354347)
(-0.344487 -1.22854e-09 0.333872)
(-0.345756 -1.6298e-09 0.313281)
(-0.346323 -1.52435e-09 0.292597)
(-0.346198 -1.0459e-09 0.271844)
(-0.345391 -2.97927e-10 0.251043)
(-0.343912 5.61395e-10 0.230217)
(-0.341774 1.31871e-09 0.209389)
(-0.338987 1.77271e-09 0.188579)
(-0.335566 1.81483e-09 0.167811)
(-0.331523 1.47244e-09 0.147107)
(-0.326873 8.88894e-10 0.126489)
(-0.321631 2.62363e-10 0.105979)
(-0.315813 -2.28225e-10 0.085601)
(-0.309436 -4.76601e-10 0.0653778)
(-0.302518 -4.6643e-10 0.0453334)
(-0.295078 -2.55613e-10 0.025492)
(-0.287138 5.98296e-11 0.00587805)
(-0.278717 3.80535e-10 -0.0134822)
(-0.269842 6.32699e-10 -0.0325599)
(-0.260538 7.78875e-10 -0.0513282)
(-0.250831 8.15972e-10 -0.0697608)
(-0.240748 7.64738e-10 -0.087831)
(-0.230318 6.57717e-10 -0.105513)
(-0.21957 5.28598e-10 -0.12278)
(-0.208534 4.05135e-10 -0.139609)
(-0.197242 3.05773e-10 -0.155974)
(-0.185725 2.39435e-10 -0.171854)
(-0.174013 2.0676e-10 -0.187226)
(-0.162138 2.01865e-10 -0.202071)
(-0.150132 2.16588e-10 -0.216371)
(-0.138023 2.39674e-10 -0.23011)
(-0.125843 2.6143e-10 -0.243273)
(-0.113619 2.7454e-10 -0.255848)
(-0.10138 2.75449e-10 -0.267825)
(-0.0891507 2.61548e-10 -0.279195)
(-0.0769574 2.34041e-10 -0.289953)
(-0.0648233 1.95279e-10 -0.300094)
(-0.0527704 1.47746e-10 -0.309617)
(-0.0408195 9.54293e-11 -0.318519)
(-0.0289895 4.1195e-11 -0.326804)
(-0.0172977 -1.35761e-11 -0.334474)
(-0.00576076 -6.90121e-11 -0.341533)
(0.00560762 -1.24346e-10 -0.347989)
(0.0167923 -1.81674e-10 -0.353846)
(0.0277826 -2.3977e-10 -0.359114)
(0.0385676 -3.00601e-10 -0.363803)
(0.0491385 -3.6527e-10 -0.367923)
(0.0594875 -4.3316e-10 -0.371487)
(0.0696078 -5.03787e-10 -0.374506)
(0.0794935 -5.75846e-10 -0.376993)
(0.0891399 -6.477e-10 -0.378963)
(0.098543 -7.18379e-10 -0.380431)
(0.1077 -7.86525e-10 -0.38141)
(0.116607 -8.50708e-10 -0.381915)
(0.125264 -9.09418e-10 -0.381964)
(0.13367 -9.61555e-10 -0.381571)
(0.141823 -1.006e-09 -0.380753)
(0.149725 -1.042e-09 -0.379526)
(0.157374 -1.06907e-09 -0.377907)
(0.164774 -1.08694e-09 -0.375912)
(0.171924 -1.09569e-09 -0.373558)
(0.178827 -1.0955e-09 -0.370861)
(0.185484 -1.08645e-09 -0.367839)
(0.191899 -1.06923e-09 -0.364507)
(0.198074 -1.04442e-09 -0.360882)
(0.204012 -1.01276e-09 -0.356981)
(0.209716 -9.74703e-10 -0.352819)
(0.21519 -9.31098e-10 -0.348413)
(0.220437 -8.8248e-10 -0.343777)
(0.225461 -8.29132e-10 -0.338928)
(0.230266 -7.71666e-10 -0.333881)
(0.234857 -7.10134e-10 -0.32865)
(0.239237 -6.44689e-10 -0.323249)
(0.243412 -5.75254e-10 -0.317694)
(0.247385 -5.01829e-10 -0.311997)
(0.25116 -4.24108e-10 -0.306171)
(0.254744 -3.42038e-10 -0.30023)
(0.25814 -2.55364e-10 -0.294186)
(0.261353 -1.64009e-10 -0.28805)
(0.264388 -6.77172e-11 -0.281834)
(0.26725 3.32814e-11 -0.275549)
(0.269944 1.38962e-10 -0.269204)
(0.272474 2.48991e-10 -0.26281)
(0.274845 3.62679e-10 -0.256376)
(0.277063 4.79489e-10 -0.24991)
(0.279131 5.9868e-10 -0.243421)
(0.281056 7.18871e-10 -0.236916)
(0.28284 8.39038e-10 -0.230401)
(0.28449 9.57698e-10 -0.223883)
(0.286009 1.07316e-09 -0.217368)
(0.287403 1.18408e-09 -0.210861)
(0.288675 1.28855e-09 -0.204365)
(0.289829 1.38515e-09 -0.197886)
(0.290871 1.47252e-09 -0.191426)
(0.291803 1.54976e-09 -0.184989)
(0.29263 1.61564e-09 -0.178575)
(0.293355 1.67007e-09 -0.172187)
(0.293983 1.71322e-09 -0.165826)
(0.294516 1.74535e-09 -0.159493)
(0.294957 1.76745e-09 -0.153187)
(0.29531 1.78081e-09 -0.146908)
(0.295577 1.78692e-09 -0.140654)
(0.295761 1.78764e-09 -0.134426)
(0.295864 1.78439e-09 -0.12822)
(0.295888 1.7788e-09 -0.122034)
(0.295835 1.77171e-09 -0.115866)
(0.295706 1.76397e-09 -0.109714)
(0.295502 1.7552e-09 -0.103573)
(0.295225 1.74515e-09 -0.0974406)
(0.294875 1.73265e-09 -0.0913129)
(0.294451 1.71674e-09 -0.0851862)
(0.293955 1.69656e-09 -0.0790565)
(0.293385 1.6716e-09 -0.07292)
(0.29274 1.64267e-09 -0.0667725)
(0.29202 1.61179e-09 -0.0606103)
(0.291222 1.58222e-09 -0.0544294)
(0.290345 1.55907e-09 -0.0482263)
(0.289387 1.54785e-09 -0.0419975)
(0.288344 1.55469e-09 -0.03574)
(0.287213 1.58434e-09 -0.029451)
(0.28599 1.63938e-09 -0.0231282)
(0.284672 1.71868e-09 -0.0167699)
(0.283254 1.81722e-09 -0.0103748)
(0.281731 1.9252e-09 -0.00394253)
(0.280097 2.03012e-09 0.00252679)
(0.278347 2.11946e-09 0.0090321)
(0.276475 2.18401e-09 0.0155715)
(0.274474 2.22204e-09 0.0221421)
(0.272337 2.24042e-09 0.0287398)
(0.270058 2.25447e-09 0.0353596)
(0.267628 2.28258e-09 0.041995)
(0.265039 2.33716e-09 0.0486385)
(0.262285 2.41447e-09 0.055281)
(0.259356 2.48691e-09 0.0619123)
(0.256245 2.50234e-09 0.0685204)
(0.252942 2.39371e-09 0.0750921)
(0.249441 2.09852e-09 0.0816123)
(0.245732 1.58348e-09 0.0880647)
(0.241807 8.64881e-10 0.0944312)
(0.23766 1.64516e-11 0.100692)
(0.233282 -8.3868e-10 0.106826)
(0.228667 -1.54927e-09 0.11281)
(0.223808 -1.95882e-09 0.11862)
(0.2187 -1.91932e-09 0.12423)
(0.213339 -1.29697e-09 0.129614)
(0.20772 2.01737e-11 0.134741)
(0.201842 2.08692e-09 0.139583)
(0.195703 4.82105e-09 0.14411)
(0.189305 7.89068e-09 0.148289)
(0.182647 1.0621e-08 0.152088)
(0.175735 1.19943e-08 0.155476)
(0.168574 1.0806e-08 0.158419)
(0.161172 5.9646e-09 0.160885)
(0.153537 -3.16629e-09 0.162842)
(0.145683 -1.65295e-08 0.164259)
(0.137623 -3.33574e-08 0.165105)
(0.129374 -5.23401e-08 0.165351)
(0.120956 -7.18322e-08 0.16497)
(0.11239 -8.99592e-08 0.163937)
(0.103702 -1.04736e-07 0.162228)
(0.0949184 -1.14635e-07 0.159823)
(0.0860698 -1.20083e-07 0.156701)
(0.0771895 -1.25768e-07 0.152845)
(0.0683141 -1.42483e-07 0.148239)
(0.0594838 -1.86408e-07 0.142863)
(0.0507427 -2.743e-07 0.136697)
(0.0421393 -4.15304e-07 0.129705)
(0.0337276 -6.04926e-07 0.12183)
(0.0255653 -8.30721e-07 0.112958)
(0.0177217 -1.12741e-06 0.102845)
(0.010287 -1.69639e-06 0.0909261)
(0.00404066 -3.94535e-06 0.0759294)
(-0.0143734 -1.86334e-05 0.694206)
(-0.0307381 4.00843e-06 0.737241)
(-0.0537188 2.64489e-07 0.739704)
(-0.0728602 -2.93992e-07 0.735433)
(-0.0923383 -6.98526e-08 0.728361)
(-0.111127 -6.91925e-08 0.719566)
(-0.129302 -1.6983e-07 0.709467)
(-0.146807 -9.50368e-08 0.6983)
(-0.163625 4.12095e-08 0.686208)
(-0.17974 7.13383e-08 0.673291)
(-0.19514 4.66733e-09 0.659625)
(-0.209814 -6.15578e-08 0.645274)
(-0.223751 -7.5275e-08 0.630289)
(-0.236945 -5.05821e-08 0.614717)
(-0.249389 -2.14461e-08 0.5986)
(-0.261079 -5.56442e-09 0.581974)
(-0.272012 -8.77356e-10 0.564876)
(-0.282186 1.58393e-09 0.54734)
(-0.291602 7.1235e-09 0.529397)
(-0.300258 1.51131e-08 0.511078)
(-0.308157 2.1991e-08 0.492413)
(-0.3153 2.4833e-08 0.47343)
(-0.32169 2.3025e-08 0.454156)
(-0.327331 1.7958e-08 0.434619)
(-0.332228 1.17875e-08 0.414845)
(-0.336386 6.2887e-09 0.394858)
(-0.33981 2.32874e-09 0.374684)
(-0.342508 -4.94935e-11 0.354347)
(-0.344488 -1.22854e-09 0.333872)
(-0.345756 -1.6298e-09 0.313281)
(-0.346323 -1.52435e-09 0.292597)
(-0.346198 -1.0459e-09 0.271844)
(-0.345391 -2.97928e-10 0.251043)
(-0.343912 5.61396e-10 0.230217)
(-0.341774 1.31871e-09 0.209389)
(-0.338987 1.77271e-09 0.188579)
(-0.335566 1.81483e-09 0.167811)
(-0.331523 1.47243e-09 0.147107)
(-0.326873 8.88894e-10 0.126489)
(-0.321631 2.62363e-10 0.105979)
(-0.315813 -2.28225e-10 0.085601)
(-0.309436 -4.76601e-10 0.0653779)
(-0.302518 -4.66429e-10 0.0453334)
(-0.295078 -2.55613e-10 0.025492)
(-0.287138 5.98295e-11 0.00587808)
(-0.278717 3.80534e-10 -0.0134822)
(-0.269842 6.32698e-10 -0.0325598)
(-0.260538 7.78874e-10 -0.0513282)
(-0.250831 8.1597e-10 -0.0697607)
(-0.240748 7.64737e-10 -0.0878309)
(-0.230318 6.57715e-10 -0.105513)
(-0.21957 5.28596e-10 -0.12278)
(-0.208534 4.05135e-10 -0.139609)
(-0.197242 3.05772e-10 -0.155974)
(-0.185725 2.39434e-10 -0.171854)
(-0.174013 2.0676e-10 -0.187226)
(-0.162138 2.01864e-10 -0.202071)
(-0.150132 2.16587e-10 -0.216371)
(-0.138023 2.39674e-10 -0.23011)
(-0.125843 2.61429e-10 -0.243273)
(-0.113619 2.74539e-10 -0.255848)
(-0.10138 2.75448e-10 -0.267825)
(-0.0891508 2.61547e-10 -0.279196)
(-0.0769574 2.3404e-10 -0.289953)
(-0.0648233 1.95279e-10 -0.300094)
(-0.0527705 1.47745e-10 -0.309617)
(-0.0408195 9.5429e-11 -0.318519)
(-0.0289895 4.11949e-11 -0.326804)
(-0.0172978 -1.35761e-11 -0.334474)
(-0.00576079 -6.90119e-11 -0.341533)
(0.00560758 -1.24345e-10 -0.347989)
(0.0167923 -1.81674e-10 -0.353846)
(0.0277825 -2.39769e-10 -0.359114)
(0.0385675 -3.00601e-10 -0.363803)
(0.0491385 -3.65269e-10 -0.367923)
(0.0594875 -4.33159e-10 -0.371487)
(0.0696078 -5.03786e-10 -0.374506)
(0.0794935 -5.75845e-10 -0.376993)
(0.0891399 -6.47699e-10 -0.378963)
(0.098543 -7.18377e-10 -0.380431)
(0.1077 -7.86523e-10 -0.38141)
(0.116607 -8.50706e-10 -0.381915)
(0.125264 -9.09416e-10 -0.381964)
(0.13367 -9.61553e-10 -0.381571)
(0.141823 -1.00599e-09 -0.380753)
(0.149725 -1.042e-09 -0.379526)
(0.157374 -1.06907e-09 -0.377907)
(0.164774 -1.08694e-09 -0.375912)
(0.171924 -1.09568e-09 -0.373558)
(0.178827 -1.0955e-09 -0.370861)
(0.185484 -1.08644e-09 -0.367839)
(0.191899 -1.06923e-09 -0.364507)
(0.198074 -1.04442e-09 -0.360882)
(0.204012 -1.01276e-09 -0.356981)
(0.209716 -9.74701e-10 -0.352819)
(0.21519 -9.31096e-10 -0.348413)
(0.220437 -8.82479e-10 -0.343777)
(0.225461 -8.29131e-10 -0.338928)
(0.230266 -7.71665e-10 -0.333881)
(0.234857 -7.10133e-10 -0.32865)
(0.239237 -6.44688e-10 -0.323249)
(0.243412 -5.75253e-10 -0.317694)
(0.247385 -5.01828e-10 -0.311997)
(0.25116 -4.24107e-10 -0.306171)
(0.254744 -3.42037e-10 -0.30023)
(0.25814 -2.55363e-10 -0.294186)
(0.261353 -1.64009e-10 -0.28805)
(0.264388 -6.77171e-11 -0.281834)
(0.26725 3.32813e-11 -0.275549)
(0.269944 1.38961e-10 -0.269204)
(0.272474 2.48991e-10 -0.26281)
(0.274845 3.62679e-10 -0.256376)
(0.277063 4.79489e-10 -0.24991)
(0.279131 5.9868e-10 -0.243421)
(0.281056 7.1887e-10 -0.236916)
(0.28284 8.39037e-10 -0.230401)
(0.28449 9.57698e-10 -0.223883)
(0.286009 1.07316e-09 -0.217368)
(0.287403 1.18408e-09 -0.210861)
(0.288675 1.28855e-09 -0.204365)
(0.289829 1.38515e-09 -0.197886)
(0.290871 1.47252e-09 -0.191426)
(0.291803 1.54976e-09 -0.184989)
(0.29263 1.61564e-09 -0.178575)
(0.293355 1.67007e-09 -0.172187)
(0.293983 1.71322e-09 -0.165826)
(0.294516 1.74535e-09 -0.159493)
(0.294957 1.76745e-09 -0.153187)
(0.29531 1.7808e-09 -0.146908)
(0.295577 1.78692e-09 -0.140654)
(0.295761 1.78764e-09 -0.134426)
(0.295864 1.78439e-09 -0.12822)
(0.295888 1.7788e-09 -0.122034)
(0.295835 1.77171e-09 -0.115866)
(0.295706 1.76397e-09 -0.109714)
(0.295502 1.7552e-09 -0.103573)
(0.295225 1.74515e-09 -0.0974406)
(0.294875 1.73265e-09 -0.0913129)
(0.294451 1.71674e-09 -0.0851862)
(0.293955 1.69656e-09 -0.0790566)
(0.293385 1.6716e-09 -0.07292)
(0.29274 1.64267e-09 -0.0667726)
(0.29202 1.61179e-09 -0.0606103)
(0.291222 1.58222e-09 -0.0544294)
(0.290345 1.55907e-09 -0.0482263)
(0.289387 1.54785e-09 -0.0419976)
(0.288344 1.55469e-09 -0.03574)
(0.287213 1.58434e-09 -0.029451)
(0.28599 1.63938e-09 -0.0231282)
(0.284672 1.71868e-09 -0.0167699)
(0.283254 1.81721e-09 -0.0103748)
(0.281731 1.9252e-09 -0.00394254)
(0.280097 2.03012e-09 0.00252677)
(0.278347 2.11946e-09 0.00903209)
(0.276475 2.18401e-09 0.0155715)
(0.274474 2.22204e-09 0.0221421)
(0.272337 2.24041e-09 0.0287398)
(0.270058 2.25447e-09 0.0353596)
(0.267628 2.28258e-09 0.041995)
(0.26504 2.33716e-09 0.0486385)
(0.262285 2.41446e-09 0.055281)
(0.259356 2.48691e-09 0.0619123)
(0.256245 2.50234e-09 0.0685204)
(0.252942 2.39371e-09 0.0750921)
(0.249441 2.09852e-09 0.0816123)
(0.245732 1.58348e-09 0.0880647)
(0.241807 8.6488e-10 0.0944312)
(0.23766 1.64516e-11 0.100692)
(0.233282 -8.3868e-10 0.106826)
(0.228667 -1.54927e-09 0.11281)
(0.223808 -1.95882e-09 0.11862)
(0.2187 -1.91932e-09 0.12423)
(0.213339 -1.29697e-09 0.129614)
(0.20772 2.01737e-11 0.134741)
(0.201842 2.08692e-09 0.139583)
(0.195703 4.82104e-09 0.14411)
(0.189305 7.89068e-09 0.148289)
(0.182647 1.0621e-08 0.152088)
(0.175735 1.19943e-08 0.155476)
(0.168574 1.0806e-08 0.158419)
(0.161171 5.96459e-09 0.160885)
(0.153537 -3.16629e-09 0.162842)
(0.145682 -1.65295e-08 0.164259)
(0.137622 -3.33574e-08 0.165105)
(0.129374 -5.23401e-08 0.165351)
(0.120956 -7.18322e-08 0.16497)
(0.11239 -8.99591e-08 0.163937)
(0.103702 -1.04736e-07 0.162228)
(0.0949179 -1.14635e-07 0.159822)
(0.0860691 -1.20083e-07 0.156701)
(0.0771885 -1.25768e-07 0.152845)
(0.0683127 -1.42483e-07 0.148238)
(0.0594818 -1.86408e-07 0.142862)
(0.05074 -2.74301e-07 0.136695)
(0.0421358 -4.15307e-07 0.129702)
(0.0337233 -6.04931e-07 0.121825)
(0.0255605 -8.3073e-07 0.112951)
(0.0177171 -1.12742e-06 0.102832)
(0.0102839 -1.69641e-06 0.0909038)
(0.00403985 -3.94544e-06 0.0758969)
(-0.0227219 -2.42765e-05 0.722894)
(-0.03347 -9.04144e-07 0.756098)
(-0.0559208 -4.00121e-07 0.759823)
(-0.0744478 -3.96285e-07 0.755666)
(-0.0936598 -2.96853e-07 0.748277)
(-0.112334 -3.00553e-07 0.738946)
(-0.130469 -2.23281e-07 0.72821)
(-0.147958 -5.47329e-08 0.71635)
(-0.164763 5.64665e-08 0.70353)
(-0.180857 4.8567e-08 0.689862)
(-0.196218 -1.80269e-08 0.675429)
(-0.210833 -6.47538e-08 0.660298)
(-0.22469 -6.65953e-08 0.644523)
(-0.237778 -4.30159e-08 0.628153)
(-0.250092 -1.95981e-08 0.611231)
(-0.261627 -6.52857e-09 0.593797)
(-0.272379 -3.64766e-10 0.575889)
(-0.282348 5.43466e-09 0.55754)
(-0.291531 1.35501e-08 0.538785)
(-0.299931 2.22385e-08 0.519654)
(-0.307548 2.82017e-08 0.500179)
(-0.314385 2.93522e-08 0.480389)
(-0.320445 2.58258e-08 0.460312)
(-0.325733 1.94084e-08 0.439977)
(-0.330253 1.23239e-08 0.419409)
(-0.334012 6.24331e-09 0.398636)
(-0.337016 1.90739e-09 0.377682)
(-0.339273 -7.11029e-10 0.356574)
(-0.340791 -2.00535e-09 0.335336)
(-0.341578 -2.38696e-09 0.313991)
(-0.341646 -2.13566e-09 0.292563)
(-0.341002 -1.42733e-09 0.271077)
(-0.33966 -4.30654e-10 0.249555)
(-0.33763 6.34716e-10 0.22802)
(-0.334925 1.51871e-09 0.206495)
(-0.331557 2.0159e-09 0.185003)
(-0.327541 2.03944e-09 0.163567)
(-0.322891 1.64784e-09 0.142209)
(-0.317623 1.01267e-09 0.120954)
(-0.311752 3.48023e-10 0.0998242)
(-0.305297 -1.63341e-10 0.0788443)
(-0.298276 -4.20046e-10 0.0580386)
(-0.290709 -4.13098e-10 0.0374321)
(-0.282617 -2.06231e-10 0.0170503)
(-0.274021 1.00014e-10 -0.00308082)
(-0.264947 4.06021e-10 -0.0229315)
(-0.255423 6.39067e-10 -0.0424726)
(-0.245475 7.63264e-10 -0.0616762)
(-0.235133 7.77723e-10 -0.0805143)
(-0.224426 7.05417e-10 -0.0989593)
(-0.213385 5.80702e-10 -0.116984)
(-0.202044 4.38162e-10 -0.134562)
(-0.190433 3.06216e-10 -0.151667)
(-0.178588 2.02998e-10 -0.168275)
(-0.16654 1.36794e-10 -0.184364)
(-0.154324 1.06093e-10 -0.199911)
(-0.141972 1.0409e-10 -0.214898)
(-0.129517 1.21603e-10 -0.229306)
(-0.11699 1.4666e-10 -0.243121)
(-0.104423 1.69516e-10 -0.256329)
(-0.0918442 1.82909e-10 -0.268919)
(-0.0792817 1.83794e-10 -0.280882)
(-0.0667623 1.69895e-10 -0.292211)
(-0.0543108 1.41111e-10 -0.302902)
(-0.0419506 1.00844e-10 -0.312953)
(-0.0297032 5.22903e-11 -0.322362)
(-0.0175885 -1.35272e-12 -0.331132)
(-0.00562496 -5.74764e-11 -0.339265)
(0.00617143 -1.15364e-10 -0.346766)
(0.0177837 -1.74429e-10 -0.35364)
(0.0291994 -2.32215e-10 -0.359894)
(0.0404063 -2.92251e-10 -0.365539)
(0.0513945 -3.54231e-10 -0.370584)
(0.0621549 -4.18232e-10 -0.375041)
(0.0726797 -4.85556e-10 -0.37892)
(0.0829624 -5.55234e-10 -0.382236)
(0.0929976 -6.26369e-10 -0.385001)
(0.102781 -6.97607e-10 -0.38723)
(0.112308 -7.67694e-10 -0.388937)
(0.121577 -8.35122e-10 -0.390138)
(0.130586 -8.98483e-10 -0.390849)
(0.139333 -9.56168e-10 -0.391085)
(0.147818 -1.00687e-09 -0.390863)
(0.156041 -1.04939e-09 -0.390199)
(0.164002 -1.08276e-09 -0.38911)
(0.171703 -1.1063e-09 -0.387614)
(0.179145 -1.12011e-09 -0.385726)
(0.186329 -1.12379e-09 -0.383464)
(0.193259 -1.11785e-09 -0.380845)
(0.199936 -1.10242e-09 -0.377886)
(0.206364 -1.07802e-09 -0.374604)
(0.212546 -1.04549e-09 -0.371016)
(0.218485 -1.00542e-09 -0.367138)
(0.224184 -9.58435e-10 -0.362988)
(0.229649 -9.05267e-10 -0.35858)
(0.234882 -8.46652e-10 -0.353932)
(0.239888 -7.82769e-10 -0.34906)
(0.244672 -7.14181e-10 -0.343978)
(0.249237 -6.41117e-10 -0.338702)
(0.253588 -5.63603e-10 -0.333247)
(0.25773 -4.81793e-10 -0.327628)
(0.261668 -3.95379e-10 -0.321859)
(0.265407 -3.04643e-10 -0.315953)
(0.268951 -2.09456e-10 -0.309923)
(0.272306 -1.09589e-10 -0.303783)
(0.275475 -5.21948e-12 -0.297545)
(0.278466 1.03268e-10 -0.29122)
(0.281282 2.15926e-10 -0.284821)
(0.283928 3.3196e-10 -0.278357)
(0.28641 4.50963e-10 -0.27184)
(0.288733 5.72038e-10 -0.265278)
(0.290901 6.93986e-10 -0.258682)
(0.29292 8.16011e-10 -0.252058)
(0.294794 9.36556e-10 -0.245417)
(0.296529 1.05424e-09 -0.238764)
(0.298129 1.1674e-09 -0.232107)
(0.299599 1.27442e-09 -0.225452)
(0.300943 1.37354e-09 -0.218804)
(0.302167 1.46317e-09 -0.212169)
(0.303274 1.54186e-09 -0.20555)
(0.304269 1.60848e-09 -0.198952)
(0.305157 1.66224e-09 -0.192378)
(0.30594 1.70265e-09 -0.18583)
(0.306624 1.72994e-09 -0.17931)
(0.307212 1.74464e-09 -0.17282)
(0.307707 1.74817e-09 -0.16636)
(0.308113 1.74221e-09 -0.159931)
(0.308433 1.72908e-09 -0.153533)
(0.30867 1.71125e-09 -0.147165)
(0.308827 1.69156e-09 -0.140825)
(0.308906 1.6725e-09 -0.134513)
(0.308909 1.65656e-09 -0.128225)
(0.308839 1.64559e-09 -0.12196)
(0.308698 1.64086e-09 -0.115715)
(0.308486 1.64245e-09 -0.109485)
(0.308205 1.64974e-09 -0.103269)
(0.307856 1.66116e-09 -0.097062)
(0.307438 1.67462e-09 -0.0908599)
(0.306953 1.68731e-09 -0.0846589)
(0.3064 1.69679e-09 -0.0784544)
(0.305779 1.70081e-09 -0.0722424)
(0.305088 1.69836e-09 -0.0660183)
(0.304326 1.69011e-09 -0.0597778)
(0.303491 1.67804e-09 -0.0535167)
(0.302582 1.66587e-09 -0.0472309)
(0.301595 1.65888e-09 -0.0409166)
(0.300528 1.66239e-09 -0.0345703)
(0.299377 1.68145e-09 -0.0281887)
(0.298137 1.71862e-09 -0.0217691)
(0.296806 1.77302e-09 -0.0153092)
(0.295377 1.83981e-09 -0.00880753)
(0.293846 1.90989e-09 -0.00226299)
(0.292207 1.97183e-09 0.00432465)
(0.290453 2.01463e-09 0.0109548)
(0.288578 2.03171e-09 0.017626)
(0.286575 2.02445e-09 0.0243357)
(0.284437 2.00309e-09 0.0310802)
(0.282154 1.98587e-09 0.0378548)
(0.279721 1.99226e-09 0.0446535)
(0.277127 2.03287e-09 0.0514689)
(0.274364 2.10076e-09 0.0582923)
(0.271424 2.16382e-09 0.0651135)
(0.268296 2.16763e-09 0.0719207)
(0.264972 2.0478e-09 0.0787007)
(0.261442 1.75119e-09 0.0854385)
(0.257698 1.2598e-09 0.0921174)
(0.253729 6.05594e-10 0.0987192)
(0.249528 -1.27568e-10 0.105224)
(0.245085 -8.19121e-10 0.11161)
(0.240392 -1.33304e-09 0.117853)
(0.235443 -1.53453e-09 0.12393)
(0.23023 -1.29305e-09 0.129812)
(0.224748 -4.7903e-10 0.135472)
(0.218991 1.02496e-09 0.14088)
(0.212957 3.26966e-09 0.146006)
(0.206642 6.13223e-09 0.150816)
(0.200046 9.18787e-09 0.155279)
(0.19317 1.1632e-08 0.15936)
(0.186016 1.23446e-08 0.163024)
(0.178589 1.01292e-08 0.166237)
(0.170896 4.07895e-09 0.168965)
(0.162946 -6.08299e-09 0.171172)
(0.15475 -1.98507e-08 0.172826)
(0.146323 -3.60323e-08 0.173892)
(0.13768 -5.29876e-08 0.17434)
(0.128842 -6.88088e-08 0.17414)
(0.11983 -8.13825e-08 0.173262)
(0.11067 -8.86425e-08 0.171681)
(0.101389 -8.96396e-08 0.169372)
(0.0920185 -8.68375e-08 0.166313)
(0.0825936 -8.89361e-08 0.162482)
(0.0731522 -1.11939e-07 0.157859)
(0.0637367 -1.755e-07 0.152422)
(0.0543945 -2.93446e-07 0.146141)
(0.0451792 -4.62173e-07 0.138979)
(0.0361521 -6.58732e-07 0.130871)
(0.0273804 -8.57875e-07 0.121696)
(0.0189519 -1.13331e-06 0.111202)
(0.0109596 -1.67333e-06 0.0988226)
(0.00428496 -3.76414e-06 0.0832588)
(-0.0226018 -2.42866e-05 0.722841)
(-0.0334247 -9.04503e-07 0.756084)
(-0.0559019 -4.00291e-07 0.759838)
(-0.0744368 -3.9639e-07 0.755683)
(-0.0936535 -2.96885e-07 0.748289)
(-0.112332 -3.00563e-07 0.738954)
(-0.130468 -2.23283e-07 0.728216)
(-0.147957 -5.47331e-08 0.716353)
(-0.164763 5.64666e-08 0.703532)
(-0.180857 4.85671e-08 0.689864)
(-0.196219 -1.80269e-08 0.67543)
(-0.210834 -6.47538e-08 0.660298)
(-0.22469 -6.65953e-08 0.644523)
(-0.237779 -4.30159e-08 0.628153)
(-0.250093 -1.95981e-08 0.611231)
(-0.261627 -6.52858e-09 0.593798)
(-0.272379 -3.64766e-10 0.575889)
(-0.282348 5.43467e-09 0.55754)
(-0.291531 1.35501e-08 0.538785)
(-0.299931 2.22385e-08 0.519654)
(-0.307548 2.82018e-08 0.500179)
(-0.314385 2.93522e-08 0.480389)
(-0.320445 2.58258e-08 0.460312)
(-0.325733 1.94085e-08 0.439977)
(-0.330253 1.23239e-08 0.419409)
(-0.334012 6.24332e-09 0.398636)
(-0.337016 1.90739e-09 0.377682)
(-0.339273 -7.11029e-10 0.356574)
(-0.340791 -2.00535e-09 0.335336)
(-0.341578 -2.38696e-09 0.313991)
(-0.341646 -2.13566e-09 0.292564)
(-0.341003 -1.42733e-09 0.271077)
(-0.33966 -4.30654e-10 0.249555)
(-0.33763 6.34716e-10 0.22802)
(-0.334925 1.51871e-09 0.206495)
(-0.331557 2.0159e-09 0.185003)
(-0.327541 2.03944e-09 0.163567)
(-0.322891 1.64784e-09 0.142209)
(-0.317623 1.01267e-09 0.120954)
(-0.311752 3.48023e-10 0.0998242)
(-0.305297 -1.63341e-10 0.0788443)
(-0.298276 -4.20046e-10 0.0580386)
(-0.290709 -4.13098e-10 0.0374321)
(-0.282617 -2.06231e-10 0.0170503)
(-0.274021 1.00014e-10 -0.00308079)
(-0.264947 4.06021e-10 -0.0229315)
(-0.255423 6.39066e-10 -0.0424726)
(-0.245475 7.63263e-10 -0.0616762)
(-0.235133 7.77721e-10 -0.0805143)
(-0.224426 7.05415e-10 -0.0989593)
(-0.213385 5.807e-10 -0.116984)
(-0.202044 4.38161e-10 -0.134562)
(-0.190433 3.06216e-10 -0.151667)
(-0.178588 2.02998e-10 -0.168275)
(-0.16654 1.36794e-10 -0.184364)
(-0.154324 1.06093e-10 -0.199911)
(-0.141972 1.0409e-10 -0.214898)
(-0.129517 1.21603e-10 -0.229306)
(-0.116991 1.46659e-10 -0.243121)
(-0.104423 1.69516e-10 -0.256329)
(-0.0918442 1.82908e-10 -0.268919)
(-0.0792818 1.83793e-10 -0.280882)
(-0.0667623 1.69895e-10 -0.292211)
(-0.0543109 1.41111e-10 -0.302902)
(-0.0419506 1.00844e-10 -0.312953)
(-0.0297033 5.22901e-11 -0.322362)
(-0.0175885 -1.35271e-12 -0.331132)
(-0.005625 -5.74763e-11 -0.339265)
(0.0061714 -1.15364e-10 -0.346766)
(0.0177836 -1.74429e-10 -0.35364)
(0.0291993 -2.32214e-10 -0.359895)
(0.0404063 -2.92251e-10 -0.365539)
(0.0513945 -3.5423e-10 -0.370584)
(0.0621548 -4.18231e-10 -0.375041)
(0.0726797 -4.85555e-10 -0.37892)
(0.0829624 -5.55233e-10 -0.382236)
(0.0929976 -6.26368e-10 -0.385001)
(0.102781 -6.97606e-10 -0.38723)
(0.112308 -7.67692e-10 -0.388937)
(0.121577 -8.3512e-10 -0.390138)
(0.130586 -8.98481e-10 -0.390849)
(0.139333 -9.56166e-10 -0.391085)
(0.147818 -1.00687e-09 -0.390863)
(0.156041 -1.04939e-09 -0.390199)
(0.164002 -1.08276e-09 -0.38911)
(0.171703 -1.1063e-09 -0.387614)
(0.179145 -1.12011e-09 -0.385726)
(0.186329 -1.12378e-09 -0.383464)
(0.193259 -1.11785e-09 -0.380845)
(0.199936 -1.10242e-09 -0.377886)
(0.206364 -1.07802e-09 -0.374604)
(0.212546 -1.04549e-09 -0.371016)
(0.218485 -1.00541e-09 -0.367138)
(0.224184 -9.58434e-10 -0.362988)
(0.229649 -9.05266e-10 -0.35858)
(0.234882 -8.46651e-10 -0.353932)
(0.239888 -7.82768e-10 -0.34906)
(0.244672 -7.14179e-10 -0.343978)
(0.249237 -6.41116e-10 -0.338702)
(0.253588 -5.63602e-10 -0.333247)
(0.25773 -4.81792e-10 -0.327628)
(0.261668 -3.95378e-10 -0.321859)
(0.265407 -3.04642e-10 -0.315953)
(0.268951 -2.09456e-10 -0.309923)
(0.272306 -1.09589e-10 -0.303783)
(0.275475 -5.21947e-12 -0.297545)
(0.278466 1.03268e-10 -0.29122)
(0.281282 2.15925e-10 -0.284821)
(0.283928 3.3196e-10 -0.278357)
(0.28641 4.50962e-10 -0.27184)
(0.288733 5.72038e-10 -0.265278)
(0.290901 6.93985e-10 -0.258682)
(0.29292 8.16011e-10 -0.252058)
(0.294794 9.36555e-10 -0.245417)
(0.296529 1.05424e-09 -0.238764)
(0.298129 1.1674e-09 -0.232107)
(0.299599 1.27442e-09 -0.225452)
(0.300943 1.37354e-09 -0.218804)
(0.302167 1.46317e-09 -0.212169)
(0.303274 1.54186e-09 -0.20555)
(0.304269 1.60848e-09 -0.198952)
(0.305157 1.66224e-09 -0.192378)
(0.30594 1.70265e-09 -0.18583)
(0.306624 1.72994e-09 -0.17931)
(0.307212 1.74464e-09 -0.17282)
(0.307707 1.74817e-09 -0.16636)
(0.308113 1.74221e-09 -0.159931)
(0.308433 1.72908e-09 -0.153533)
(0.30867 1.71125e-09 -0.147165)
(0.308827 1.69156e-09 -0.140825)
(0.308906 1.6725e-09 -0.134513)
(0.308909 1.65656e-09 -0.128225)
(0.308839 1.64559e-09 -0.12196)
(0.308698 1.64086e-09 -0.115715)
(0.308486 1.64245e-09 -0.109485)
(0.308205 1.64974e-09 -0.103269)
(0.307856 1.66115e-09 -0.097062)
(0.307438 1.67462e-09 -0.09086)
(0.306953 1.68731e-09 -0.0846589)
(0.3064 1.69679e-09 -0.0784545)
(0.305779 1.70081e-09 -0.0722424)
(0.305088 1.69836e-09 -0.0660183)
(0.304326 1.69011e-09 -0.0597778)
(0.303491 1.67804e-09 -0.0535167)
(0.302582 1.66587e-09 -0.0472309)
(0.301595 1.65887e-09 -0.0409167)
(0.300528 1.66239e-09 -0.0345703)
(0.299377 1.68145e-09 -0.0281887)
(0.298137 1.71862e-09 -0.0217691)
(0.296806 1.77302e-09 -0.0153093)
(0.295377 1.83981e-09 -0.00880754)
(0.293846 1.90989e-09 -0.00226301)
(0.292207 1.97183e-09 0.00432464)
(0.290453 2.01463e-09 0.0109548)
(0.288578 2.03171e-09 0.017626)
(0.286575 2.02445e-09 0.0243357)
(0.284437 2.00308e-09 0.0310802)
(0.282154 1.98587e-09 0.0378548)
(0.279721 1.99226e-09 0.0446535)
(0.277127 2.03287e-09 0.0514689)
(0.274364 2.10076e-09 0.0582923)
(0.271424 2.16382e-09 0.0651135)
(0.268296 2.16763e-09 0.0719207)
(0.264972 2.0478e-09 0.0787007)
(0.261442 1.75118e-09 0.0854385)
(0.257698 1.2598e-09 0.0921174)
(0.253729 6.05594e-10 0.0987192)
(0.249528 -1.27568e-10 0.105224)
(0.245085 -8.19121e-10 0.11161)
(0.240392 -1.33304e-09 0.117853)
(0.235443 -1.53453e-09 0.12393)
(0.23023 -1.29305e-09 0.129812)
(0.224748 -4.7903e-10 0.135472)
(0.218991 1.02496e-09 0.14088)
(0.212957 3.26966e-09 0.146006)
(0.206642 6.13223e-09 0.150816)
(0.200046 9.18787e-09 0.155279)
(0.19317 1.1632e-08 0.15936)
(0.186016 1.23446e-08 0.163024)
(0.178589 1.01292e-08 0.166237)
(0.170896 4.07895e-09 0.168965)
(0.162946 -6.08299e-09 0.171172)
(0.15475 -1.98507e-08 0.172826)
(0.146323 -3.60323e-08 0.173892)
(0.13768 -5.29876e-08 0.17434)
(0.128842 -6.88088e-08 0.17414)
(0.11983 -8.13825e-08 0.173262)
(0.110669 -8.86424e-08 0.171681)
(0.101388 -8.96395e-08 0.169372)
(0.0920178 -8.68375e-08 0.166313)
(0.0825925 -8.89361e-08 0.162482)
(0.0731505 -1.11939e-07 0.157859)
(0.0637342 -1.755e-07 0.152421)
(0.0543911 -2.93448e-07 0.14614)
(0.0451745 -4.62178e-07 0.138977)
(0.036146 -6.58743e-07 0.130867)
(0.027373 -8.57892e-07 0.121688)
(0.0189441 -1.13333e-06 0.111187)
(0.0109532 -1.67336e-06 0.0987962)
(0.00428203 -3.76426e-06 0.0832202)
(-0.0161917 -2.1484e-05 0.751243)
(-0.0339822 -2.58882e-06 0.776332)
(-0.0553969 -1.01859e-06 0.780188)
(-0.0749169 -5.93324e-07 0.77594)
(-0.0943539 -3.92603e-07 0.768203)
(-0.113141 -2.8736e-07 0.758333)
(-0.131325 -1.39769e-07 0.746958)
(-0.14883 2.16899e-09 0.734396)
(-0.165626 5.15695e-08 0.720833)
(-0.181687 1.54731e-08 0.706395)
(-0.196991 -4.04026e-08 0.691173)
(-0.211525 -6.66221e-08 0.675236)
(-0.225273 -5.86117e-08 0.658645)
(-0.238228 -3.63141e-08 0.64145)
(-0.250382 -1.70725e-08 0.623697)
(-0.261729 -5.3614e-09 0.605428)
(-0.272268 2.67676e-09 0.586681)
(-0.281996 1.12713e-08 0.567493)
(-0.290913 2.10172e-08 0.547898)
(-0.29902 2.95088e-08 0.527929)
(-0.306319 3.39362e-08 0.507617)
(-0.312813 3.30885e-08 0.486994)
(-0.318506 2.77917e-08 0.466089)
(-0.323401 2.01286e-08 0.44493)
(-0.327506 1.23003e-08 0.423545)
(-0.330827 5.81576e-09 0.401962)
(-0.333371 1.26415e-09 0.380206)
(-0.335146 -1.4576e-09 0.358305)
(-0.336161 -2.75461e-09 0.336282)
(-0.336427 -3.03265e-09 0.314163)
(-0.335952 -2.58678e-09 0.291972)
(-0.334749 -1.63857e-09 0.269735)
(-0.33283 -4.15851e-10 0.247473)
(-0.330206 8.12975e-10 0.225212)
(-0.326891 1.77708e-09 0.202975)
(-0.3229 2.27936e-09 0.180785)
(-0.318246 2.26022e-09 0.158667)
(-0.312946 1.80987e-09 0.136644)
(-0.307017 1.12311e-09 0.11474)
(-0.300476 4.25004e-10 0.0929811)
(-0.293343 -1.02556e-10 0.0713914)
(-0.285637 -3.65006e-10 0.049997)
(-0.277381 -3.61256e-10 0.0288242)
(-0.268597 -1.60946e-10 0.00789987)
(-0.259309 1.32803e-10 -0.0127473)
(-0.249549 4.20662e-10 -0.0330849)
(-0.239343 6.31624e-10 -0.0530833)
(-0.228722 7.32234e-10 -0.0727131)
(-0.217718 7.23648e-10 -0.091945)
(-0.206363 6.30424e-10 -0.11075)
(-0.194693 4.88862e-10 -0.1291)
(-0.182742 3.3454e-10 -0.146967)
(-0.170545 1.96285e-10 -0.164326)
(-0.158138 9.1207e-11 -0.181152)
(-0.145556 2.69777e-11 -0.197421)
(-0.132836 1.17031e-13 -0.213113)
(-0.120011 1.82542e-12 -0.22821)
(-0.107116 2.27921e-11 -0.242693)
(-0.0941836 5.04332e-11 -0.25655)
(-0.0812448 7.46205e-11 -0.269768)
(-0.0683295 8.90626e-11 -0.282337)
(-0.0554661 8.89004e-11 -0.294251)
(-0.0426809 7.39297e-11 -0.305504)
(-0.0299985 4.45856e-11 -0.316093)
(-0.0174415 3.42587e-12 -0.326019)
(-0.00503119 -4.59689e-11 -0.335282)
(0.00721412 -1.02064e-10 -0.343885)
(0.0192752 -1.60844e-10 -0.351833)
(0.0311377 -2.20162e-10 -0.359133)
(0.0427877 -2.81755e-10 -0.365791)
(0.0542136 -3.43272e-10 -0.371818)
(0.0654052 -4.05684e-10 -0.377225)
(0.0763534 -4.70653e-10 -0.382022)
(0.087051 -5.3708e-10 -0.386222)
(0.0974914 -6.05655e-10 -0.389839)
(0.10767 -6.75151e-10 -0.392886)
(0.117582 -7.45082e-10 -0.395378)
(0.127224 -8.13862e-10 -0.39733)
(0.136596 -8.79727e-10 -0.398758)
(0.145694 -9.41424e-10 -0.399679)
(0.154518 -9.97137e-10 -0.400107)
(0.163069 -1.04531e-09 -0.400061)
(0.171347 -1.08471e-09 -0.399557)
(0.179352 -1.11423e-09 -0.398612)
(0.187088 -1.13323e-09 -0.397244)
(0.194555 -1.14133e-09 -0.395469)
(0.201756 -1.13846e-09 -0.393305)
(0.208694 -1.12493e-09 -0.39077)
(0.215373 -1.10099e-09 -0.387882)
(0.221795 -1.06746e-09 -0.384656)
(0.227964 -1.02475e-09 -0.381111)
(0.233884 -9.73729e-10 -0.377264)
(0.23956 -9.1509e-10 -0.373131)
(0.244995 -8.49648e-10 -0.368729)
(0.250194 -7.77916e-10 -0.364075)
(0.255162 -7.0043e-10 -0.359186)
(0.259903 -6.17779e-10 -0.354076)
(0.264423 -5.29937e-10 -0.348762)
(0.268725 -4.37286e-10 -0.34326)
(0.272816 -3.40007e-10 -0.337583)
(0.276699 -2.38175e-10 -0.331747)
(0.280381 -1.31868e-10 -0.325766)
(0.283866 -2.12636e-11 -0.319653)
(0.28716 9.34588e-11 -0.313423)
(0.290268 2.11762e-10 -0.307087)
(0.293195 3.33187e-10 -0.300659)
(0.295947 4.5717e-10 -0.29415)
(0.298528 5.82843e-10 -0.287571)
(0.300944 7.09284e-10 -0.280934)
(0.303201 8.35445e-10 -0.274248)
(0.305302 9.59895e-10 -0.267523)
(0.307255 1.08143e-09 -0.260769)
(0.309063 1.19832e-09 -0.253993)
(0.310731 1.30929e-09 -0.247205)
(0.312265 1.41224e-09 -0.24041)
(0.31367 1.50571e-09 -0.233616)
(0.314951 1.58802e-09 -0.226829)
(0.316111 1.6574e-09 -0.220054)
(0.317156 1.71297e-09 -0.213297)
(0.318091 1.75332e-09 -0.206561)
(0.318919 1.77799e-09 -0.199849)
(0.319645 1.78704e-09 -0.193166)
(0.320273 1.78098e-09 -0.186514)
(0.320808 1.76107e-09 -0.179894)
(0.321252 1.72915e-09 -0.173307)
(0.321609 1.68791e-09 -0.166755)
(0.321883 1.64046e-09 -0.160237)
(0.322077 1.59012e-09 -0.153752)
(0.322195 1.54103e-09 -0.147301)
(0.322237 1.49665e-09 -0.140881)
(0.322208 1.46063e-09 -0.134491)
(0.32211 1.43569e-09 -0.128128)
(0.321944 1.42417e-09 -0.121789)
(0.321712 1.42683e-09 -0.115472)
(0.321416 1.44361e-09 -0.109172)
(0.321056 1.47277e-09 -0.102886)
(0.320633 1.51158e-09 -0.0966099)
(0.320149 1.5563e-09 -0.0903392)
(0.319602 1.60268e-09 -0.0840694)
(0.318993 1.64613e-09 -0.0777959)
(0.318321 1.6828e-09 -0.0715138)
(0.317585 1.70985e-09 -0.0652183)
(0.316783 1.72603e-09 -0.0589048)
(0.315913 1.73233e-09 -0.0525685)
(0.314973 1.73122e-09 -0.0462049)
(0.313961 1.72701e-09 -0.0398098)
(0.312873 1.72513e-09 -0.033379)
(0.311705 1.73011e-09 -0.0269089)
(0.310453 1.74486e-09 -0.0203963)
(0.309113 1.76868e-09 -0.0138385)
(0.307679 1.79749e-09 -0.00723322)
(0.306145 1.82282e-09 -0.000579172)
(0.304506 1.83433e-09 0.00612451)
(0.302755 1.82348e-09 0.0128778)
(0.300884 1.78645e-09 0.0196795)
(0.298886 1.72845e-09 0.0265276)
(0.296753 1.66356e-09 0.0334189)
(0.294477 1.613e-09 0.0403492)
(0.292048 1.59756e-09 0.0473126)
(0.289458 1.62746e-09 0.0543022)
(0.286696 1.69259e-09 0.0613096)
(0.283753 1.75808e-09 0.0683247)
(0.280619 1.76902e-09 0.0753361)
(0.277283 1.66606e-09 0.0823306)
(0.273736 1.40629e-09 0.0892931)
(0.269966 9.85157e-10 0.0962071)
(0.265964 4.45365e-10 0.103054)
(0.261719 -1.27784e-10 0.109814)
(0.257222 -6.24946e-10 0.116464)
(0.252463 -9.30973e-10 0.12298)
(0.247433 -9.32467e-10 0.129338)
(0.242125 -5.09044e-10 0.135508)
(0.23653 4.74631e-10 0.141463)
(0.230644 2.14628e-09 0.147171)
(0.22446 4.54681e-09 0.152601)
(0.217976 7.496e-09 0.157717)
(0.211189 1.04595e-08 0.162486)
(0.204098 1.25119e-08 0.166872)
(0.196706 1.24755e-08 0.170839)
(0.189015 9.2474e-09 0.174349)
(0.181032 2.20066e-09 0.177365)
(0.172765 -8.52165e-09 0.179851)
(0.164225 -2.19651e-08 0.181769)
(0.155425 -3.65618e-08 0.183085)
(0.146381 -5.03784e-08 0.183764)
(0.137114 -6.12257e-08 0.183772)
(0.127644 -6.67284e-08 0.183078)
(0.117999 -6.49103e-08 0.181652)
(0.108205 -5.60468e-08 0.179468)
(0.098295 -4.58715e-08 0.176498)
(0.0883048 -4.84962e-08 0.172717)
(0.0782736 -8.55017e-08 0.168101)
(0.0682456 -1.77719e-07 0.162621)
(0.0582708 -3.30471e-07 0.156244)
(0.0484068 -5.21193e-07 0.148922)
(0.0387223 -7.09436e-07 0.14058)
(0.0292942 -8.68997e-07 0.131089)
(0.0202354 -1.17119e-06 0.120181)
(0.0116355 -1.70499e-06 0.107285)
(0.00452414 -3.42107e-06 0.0910411)
(-0.0161214 -2.14906e-05 0.751191)
(-0.0339678 -2.58958e-06 0.77632)
(-0.0554001 -1.01886e-06 0.780205)
(-0.0749218 -5.93412e-07 0.77596)
(-0.0943577 -3.92626e-07 0.768217)
(-0.113144 -2.87364e-07 0.758342)
(-0.131327 -1.39769e-07 0.746964)
(-0.148831 2.169e-09 0.734399)
(-0.165627 5.15695e-08 0.720836)
(-0.181687 1.54731e-08 0.706397)
(-0.196992 -4.04026e-08 0.691174)
(-0.211525 -6.66222e-08 0.675237)
(-0.225274 -5.86118e-08 0.658645)
(-0.238228 -3.63142e-08 0.64145)
(-0.250382 -1.70725e-08 0.623697)
(-0.261729 -5.3614e-09 0.605428)
(-0.272268 2.67677e-09 0.586681)
(-0.281996 1.12714e-08 0.567493)
(-0.290913 2.10172e-08 0.547898)
(-0.299021 2.95088e-08 0.527929)
(-0.30632 3.39362e-08 0.507617)
(-0.312813 3.30886e-08 0.486994)
(-0.318506 2.77917e-08 0.466089)
(-0.323402 2.01286e-08 0.44493)
(-0.327506 1.23003e-08 0.423545)
(-0.330827 5.81577e-09 0.401962)
(-0.333371 1.26415e-09 0.380206)
(-0.335146 -1.4576e-09 0.358305)
(-0.336161 -2.75461e-09 0.336282)
(-0.336427 -3.03265e-09 0.314163)
(-0.335952 -2.58678e-09 0.291973)
(-0.33475 -1.63857e-09 0.269735)
(-0.33283 -4.15851e-10 0.247473)
(-0.330206 8.12975e-10 0.225212)
(-0.326891 1.77708e-09 0.202975)
(-0.3229 2.27936e-09 0.180785)
(-0.318246 2.26022e-09 0.158667)
(-0.312947 1.80987e-09 0.136644)
(-0.307017 1.12311e-09 0.11474)
(-0.300477 4.25003e-10 0.0929812)
(-0.293343 -1.02556e-10 0.0713915)
(-0.285637 -3.65006e-10 0.049997)
(-0.277381 -3.61256e-10 0.0288242)
(-0.268597 -1.60946e-10 0.0078999)
(-0.25931 1.32802e-10 -0.0127473)
(-0.249549 4.20661e-10 -0.0330849)
(-0.239343 6.31622e-10 -0.0530833)
(-0.228722 7.32232e-10 -0.0727131)
(-0.217718 7.23646e-10 -0.091945)
(-0.206363 6.30423e-10 -0.11075)
(-0.194693 4.8886e-10 -0.1291)
(-0.182742 3.34539e-10 -0.146967)
(-0.170545 1.96284e-10 -0.164326)
(-0.158138 9.12067e-11 -0.181152)
(-0.145556 2.69776e-11 -0.197421)
(-0.132836 1.17031e-13 -0.213113)
(-0.120011 1.82542e-12 -0.22821)
(-0.107116 2.27921e-11 -0.242693)
(-0.0941837 5.04331e-11 -0.25655)
(-0.0812448 7.46203e-11 -0.269768)
(-0.0683296 8.90623e-11 -0.282337)
(-0.0554661 8.89001e-11 -0.294251)
(-0.0426809 7.39295e-11 -0.305504)
(-0.0299986 4.45855e-11 -0.316093)
(-0.0174416 3.42586e-12 -0.326019)
(-0.00503123 -4.59687e-11 -0.335282)
(0.00721409 -1.02064e-10 -0.343885)
(0.0192752 -1.60844e-10 -0.351833)
(0.0311377 -2.20161e-10 -0.359133)
(0.0427877 -2.81755e-10 -0.365791)
(0.0542136 -3.43271e-10 -0.371818)
(0.0654051 -4.05683e-10 -0.377225)
(0.0763534 -4.70652e-10 -0.382022)
(0.0870509 -5.37079e-10 -0.386222)
(0.0974914 -6.05654e-10 -0.389839)
(0.10767 -6.7515e-10 -0.392886)
(0.117582 -7.4508e-10 -0.395378)
(0.127224 -8.1386e-10 -0.39733)
(0.136596 -8.79725e-10 -0.398758)
(0.145694 -9.41422e-10 -0.399679)
(0.154518 -9.97135e-10 -0.400107)
(0.163069 -1.04531e-09 -0.400061)
(0.171347 -1.0847e-09 -0.399557)
(0.179352 -1.11423e-09 -0.398612)
(0.187088 -1.13323e-09 -0.397244)
(0.194555 -1.14133e-09 -0.395469)
(0.201756 -1.13846e-09 -0.393305)
(0.208694 -1.12492e-09 -0.39077)
(0.215373 -1.10098e-09 -0.387882)
(0.221795 -1.06746e-09 -0.384656)
(0.227964 -1.02475e-09 -0.381111)
(0.233884 -9.73728e-10 -0.377264)
(0.23956 -9.15088e-10 -0.373131)
(0.244995 -8.49647e-10 -0.368729)
(0.250194 -7.77915e-10 -0.364075)
(0.255162 -7.00429e-10 -0.359186)
(0.259903 -6.17778e-10 -0.354076)
(0.264423 -5.29936e-10 -0.348762)
(0.268725 -4.37286e-10 -0.34326)
(0.272816 -3.40007e-10 -0.337583)
(0.276699 -2.38175e-10 -0.331747)
(0.280381 -1.31868e-10 -0.325766)
(0.283866 -2.12635e-11 -0.319653)
(0.28716 9.34587e-11 -0.313423)
(0.290268 2.11762e-10 -0.307087)
(0.293195 3.33187e-10 -0.300659)
(0.295947 4.5717e-10 -0.29415)
(0.298528 5.82842e-10 -0.287571)
(0.300944 7.09283e-10 -0.280934)
(0.303201 8.35444e-10 -0.274248)
(0.305302 9.59894e-10 -0.267523)
(0.307255 1.08143e-09 -0.260769)
(0.309063 1.19831e-09 -0.253993)
(0.310731 1.30929e-09 -0.247205)
(0.312265 1.41224e-09 -0.24041)
(0.31367 1.50571e-09 -0.233616)
(0.314951 1.58802e-09 -0.226829)
(0.316111 1.6574e-09 -0.220054)
(0.317156 1.71297e-09 -0.213297)
(0.318091 1.75332e-09 -0.206561)
(0.318919 1.77799e-09 -0.199849)
(0.319645 1.78704e-09 -0.193166)
(0.320273 1.78097e-09 -0.186514)
(0.320808 1.76107e-09 -0.179894)
(0.321252 1.72915e-09 -0.173307)
(0.321609 1.68791e-09 -0.166755)
(0.321883 1.64046e-09 -0.160237)
(0.322077 1.59012e-09 -0.153752)
(0.322195 1.54103e-09 -0.147301)
(0.322237 1.49665e-09 -0.140881)
(0.322208 1.46063e-09 -0.134491)
(0.32211 1.43569e-09 -0.128128)
(0.321944 1.42417e-09 -0.121789)
(0.321712 1.42683e-09 -0.115472)
(0.321416 1.44361e-09 -0.109172)
(0.321056 1.47277e-09 -0.102886)
(0.320633 1.51158e-09 -0.0966099)
(0.320149 1.5563e-09 -0.0903393)
(0.319602 1.60268e-09 -0.0840695)
(0.318993 1.64613e-09 -0.0777959)
(0.318321 1.6828e-09 -0.0715138)
(0.317585 1.70985e-09 -0.0652183)
(0.316783 1.72603e-09 -0.0589048)
(0.315913 1.73233e-09 -0.0525685)
(0.314973 1.73122e-09 -0.046205)
(0.313961 1.72701e-09 -0.0398098)
(0.312873 1.72513e-09 -0.033379)
(0.311705 1.73011e-09 -0.0269089)
(0.310453 1.74486e-09 -0.0203963)
(0.309113 1.76868e-09 -0.0138385)
(0.307679 1.79749e-09 -0.00723324)
(0.306145 1.82282e-09 -0.000579184)
(0.304506 1.83433e-09 0.00612449)
(0.302755 1.82348e-09 0.0128777)
(0.300884 1.78644e-09 0.0196795)
(0.298886 1.72845e-09 0.0265276)
(0.296753 1.66356e-09 0.0334189)
(0.294477 1.613e-09 0.0403492)
(0.292048 1.59756e-09 0.0473126)
(0.289458 1.62746e-09 0.0543022)
(0.286696 1.69259e-09 0.0613096)
(0.283753 1.75808e-09 0.0683247)
(0.280619 1.76902e-09 0.0753361)
(0.277283 1.66606e-09 0.0823306)
(0.273736 1.40628e-09 0.0892931)
(0.269966 9.85157e-10 0.0962071)
(0.265964 4.45365e-10 0.103054)
(0.261719 -1.27784e-10 0.109814)
(0.257222 -6.24946e-10 0.116464)
(0.252463 -9.30973e-10 0.12298)
(0.247433 -9.32467e-10 0.129338)
(0.242125 -5.09044e-10 0.135508)
(0.23653 4.74631e-10 0.141463)
(0.230644 2.14628e-09 0.147171)
(0.22446 4.54681e-09 0.152601)
(0.217976 7.496e-09 0.157717)
(0.211189 1.04595e-08 0.162486)
(0.204098 1.25119e-08 0.166872)
(0.196706 1.24755e-08 0.170839)
(0.189015 9.2474e-09 0.174349)
(0.181032 2.20066e-09 0.177365)
(0.172765 -8.52165e-09 0.179851)
(0.164225 -2.19651e-08 0.181769)
(0.155425 -3.65618e-08 0.183085)
(0.146381 -5.03784e-08 0.183764)
(0.137114 -6.12257e-08 0.183772)
(0.127644 -6.67284e-08 0.183078)
(0.117998 -6.49102e-08 0.181652)
(0.108204 -5.60468e-08 0.179468)
(0.0982943 -4.58715e-08 0.176498)
(0.0883036 -4.84962e-08 0.172717)
(0.0782717 -8.55019e-08 0.168101)
(0.0682428 -1.77721e-07 0.162621)
(0.0582667 -3.30475e-07 0.156244)
(0.0484009 -5.21204e-07 0.148921)
(0.0387143 -7.09458e-07 0.140578)
(0.0292836 -8.69028e-07 0.131082)
(0.0202233 -1.17123e-06 0.120164)
(0.0116238 -1.70504e-06 0.107254)
(0.00451712 -3.42123e-06 0.0909935)
(-0.0142111 -1.0801e-05 0.77362)
(-0.0335354 -2.92077e-06 0.799997)
(-0.0548717 -1.14362e-06 0.802058)
(-0.0750925 -6.11334e-07 0.796865)
(-0.0947448 -3.28705e-07 0.788413)
(-0.113662 -1.68831e-07 0.777851)
(-0.131904 -4.23581e-08 0.76576)
(-0.149425 2.86229e-08 0.75245)
(-0.166203 2.4476e-08 0.738112)
(-0.182214 -1.98746e-08 0.722873)
(-0.19744 -5.70858e-08 0.706832)
(-0.211865 -6.48649e-08 0.690061)
(-0.225477 -5.01986e-08 0.672625)
(-0.238267 -2.96486e-08 0.654577)
(-0.250227 -1.32968e-08 0.635964)
(-0.261354 -1.86503e-09 0.616831)
(-0.271644 8.06373e-09 0.597217)
(-0.281095 1.86327e-08 0.57716)
(-0.289709 2.8937e-08 0.556698)
(-0.297485 3.63591e-08 0.535862)
(-0.304428 3.87558e-08 0.514687)
(-0.310539 3.57697e-08 0.493205)
(-0.315823 2.87974e-08 0.471445)
(-0.320286 2.00911e-08 0.449437)
(-0.323934 1.17384e-08 0.427211)
(-0.326775 5.0436e-09 0.404793)
(-0.328816 4.37686e-10 0.382212)
(-0.330066 -2.25108e-09 0.359494)
(-0.330535 -3.43724e-09 0.336666)
(-0.330234 -3.52818e-09 0.313752)
(-0.329174 -2.84425e-09 0.290779)
(-0.327367 -1.65552e-09 0.26777)
(-0.324825 -2.41567e-10 0.244751)
(-0.321562 1.09734e-09 0.221747)
(-0.317593 2.08751e-09 0.198782)
(-0.312932 2.55408e-09 0.17588)
(-0.307595 2.47004e-09 0.153066)
(-0.301601 1.95486e-09 0.130365)
(-0.294966 1.22065e-09 0.107802)
(-0.28771 4.96273e-10 0.0854045)
(-0.279854 -4.20078e-11 0.0631977)
(-0.271421 -3.08948e-10 0.0412093)
(-0.262433 -3.108e-10 0.0194672)
(-0.252917 -1.21983e-10 -0.00200013)
(-0.242901 1.54156e-10 -0.0231596)
(-0.232418 4.19777e-10 -0.0439781)
(-0.221498 6.05895e-10 -0.0644248)
(-0.210174 6.81821e-10 -0.0844685)
(-0.198483 6.50781e-10 -0.104079)
(-0.18646 5.3856e-10 -0.123225)
(-0.174142 3.8253e-10 -0.141878)
(-0.161568 2.18755e-10 -0.160011)
(-0.148775 7.64929e-11 -0.177595)
(-0.135802 -2.86802e-11 -0.194608)
(-0.122687 -8.91956e-11 -0.211026)
(-0.109467 -1.11091e-10 -0.226829)
(-0.0961784 -1.04086e-10 -0.241999)
(-0.0828563 -7.85659e-11 -0.256521)
(-0.0695344 -4.70878e-11 -0.270381)
(-0.0562445 -2.18512e-11 -0.28357)
(-0.0430167 -7.74067e-12 -0.29608)
(-0.029879 -8.23396e-12 -0.307905)
(-0.0168574 -2.42514e-11 -0.319044)
(-0.00397606 -5.44628e-11 -0.329494)
(0.00874339 -9.75379e-11 -0.339258)
(0.0212793 -1.49129e-10 -0.348337)
(0.033615 -2.06219e-10 -0.356739)
(0.0457343 -2.66454e-10 -0.364468)
(0.0576239 -3.28326e-10 -0.371535)
(0.0692717 -3.91809e-10 -0.377948)
(0.0806677 -4.556e-10 -0.38372)
(0.0918031 -5.20208e-10 -0.388861)
(0.102671 -5.86683e-10 -0.393385)
(0.113264 -6.53824e-10 -0.397306)
(0.12358 -7.21859e-10 -0.400638)
(0.133613 -7.89844e-10 -0.403396)
(0.143362 -8.56345e-10 -0.405596)
(0.152824 -9.20111e-10 -0.407255)
(0.162 -9.79121e-10 -0.408388)
(0.170888 -1.03179e-09 -0.409013)
(0.17949 -1.07643e-09 -0.409146)
(0.187807 -1.1115e-09 -0.408806)
(0.195841 -1.13584e-09 -0.408009)
(0.203594 -1.1487e-09 -0.406773)
(0.211068 -1.14969e-09 -0.405117)
(0.218268 -1.13853e-09 -0.403057)
(0.225195 -1.11556e-09 -0.400612)
(0.231855 -1.08109e-09 -0.397799)
(0.238251 -1.03603e-09 -0.394635)
(0.244387 -9.8079e-10 -0.39114)
(0.250268 -9.16322e-10 -0.387329)
(0.255898 -8.43389e-10 -0.38322)
(0.261282 -7.62888e-10 -0.378831)
(0.266426 -6.75432e-10 -0.374178)
(0.271334 -5.81531e-10 -0.369278)
(0.276012 -4.81877e-10 -0.364147)
(0.280463 -3.76904e-10 -0.358802)
(0.284695 -2.66868e-10 -0.353257)
(0.288712 -1.52126e-10 -0.34753)
(0.29252 -3.30869e-11 -0.341633)
(0.296124 8.99417e-11 -0.335584)
(0.29953 2.165e-10 -0.329394)
(0.302743 3.45898e-10 -0.323079)
(0.305768 4.77368e-10 -0.316652)
(0.308612 6.10322e-10 -0.310125)
(0.311279 7.43559e-10 -0.303511)
(0.313776 8.75903e-10 -0.296822)
(0.316107 1.00625e-09 -0.290069)
(0.318278 1.13318e-09 -0.283263)
(0.320295 1.25532e-09 -0.276414)
(0.322162 1.3711e-09 -0.269531)
(0.323886 1.47896e-09 -0.262625)
(0.325471 1.5774e-09 -0.255703)
(0.326922 1.66472e-09 -0.248773)
(0.328245 1.73944e-09 -0.241842)
(0.329444 1.79996e-09 -0.234917)
(0.330525 1.84504e-09 -0.228004)
(0.331493 1.87363e-09 -0.221109)
(0.332351 1.88469e-09 -0.214235)
(0.333105 1.87816e-09 -0.207388)
(0.333758 1.85427e-09 -0.20057)
(0.334316 1.81376e-09 -0.193785)
(0.334782 1.75833e-09 -0.187034)
(0.335161 1.69044e-09 -0.18032)
(0.335456 1.61297e-09 -0.173644)
(0.33567 1.52986e-09 -0.167005)
(0.335808 1.44517e-09 -0.160404)
(0.335872 1.36373e-09 -0.15384)
(0.335865 1.28985e-09 -0.147312)
(0.33579 1.22815e-09 -0.140818)
(0.33565 1.18238e-09 -0.134357)
(0.335447 1.15564e-09 -0.127925)
(0.335182 1.14964e-09 -0.121519)
(0.334858 1.16527e-09 -0.115136)
(0.334475 1.2011e-09 -0.108772)
(0.334036 1.25481e-09 -0.102423)
(0.33354 1.32221e-09 -0.0960838)
(0.332988 1.39803e-09 -0.0897506)
(0.332379 1.47636e-09 -0.0834182)
(0.331714 1.55127e-09 -0.0770814)
(0.330992 1.61743e-09 -0.0707352)
(0.330212 1.67014e-09 -0.0643742)
(0.329371 1.70717e-09 -0.0579932)
(0.328469 1.72813e-09 -0.0515872)
(0.327502 1.73485e-09 -0.0451511)
(0.326467 1.73115e-09 -0.0386802)
(0.325361 1.72177e-09 -0.0321698)
(0.324181 1.71124e-09 -0.0256159)
(0.32292 1.70266e-09 -0.0190146)
(0.321576 1.69574e-09 -0.0123627)
(0.320141 1.68626e-09 -0.00565758)
(0.318611 1.66693e-09 0.00110283)
(0.316978 1.62856e-09 0.00791979)
(0.315236 1.56482e-09 0.0147938)
(0.313376 1.47524e-09 0.0217243)
(0.311391 1.36873e-09 0.0287098)
(0.309272 1.26354e-09 0.0357475)
(0.30701 1.18443e-09 0.0428335)
(0.304595 1.15383e-09 0.0499626)
(0.302018 1.18156e-09 0.0571283)
(0.299267 1.25583e-09 0.0643225)
(0.296332 1.34037e-09 0.0715353)
(0.293202 1.38181e-09 0.0787557)
(0.289866 1.32661e-09 0.0859705)
(0.286312 1.14195e-09 0.0931648)
(0.282528 8.33627e-10 0.100322)
(0.278504 4.48848e-10 0.107424)
(0.274228 6.68059e-11 0.114449)
(0.269687 -2.20802e-10 0.121376)
(0.264873 -3.21729e-10 0.128179)
(0.259774 -1.3928e-10 0.134833)
(0.254381 4.46123e-10 0.141309)
(0.248686 1.58322e-09 0.147577)
(0.242679 3.40981e-09 0.153605)
(0.236356 5.94321e-09 0.159359)
(0.22971 8.92664e-09 0.164805)
(0.222739 1.17089e-08 0.169905)
(0.21544 1.32653e-08 0.174622)
(0.207814 1.24253e-08 0.178917)
(0.199863 8.26778e-09 0.182751)
(0.191592 5.21146e-10 0.186085)
(0.183007 -1.02248e-08 0.188879)
(0.174121 -2.2597e-08 0.191093)
(0.164944 -3.46972e-08 0.192689)
(0.155494 -4.4303e-08 0.193629)
(0.145789 -4.89104e-08 0.193876)
(0.135852 -4.59485e-08 0.193397)
(0.125708 -3.39689e-08 0.192157)
(0.115387 -1.55285e-08 0.190127)
(0.104922 -1.20969e-09 0.187274)
(0.0943475 -1.18176e-08 0.183572)
(0.0837055 -7.38289e-08 0.178988)
(0.0730412 -2.04889e-07 0.173491)
(0.0624065 -3.94418e-07 0.167039)
(0.0518613 -5.9618e-07 0.159573)
(0.0414806 -7.59261e-07 0.151006)
(0.0313485 -8.61074e-07 0.141189)
(0.0216115 -1.23021e-06 0.12983)
(0.0123367 -1.69788e-06 0.116356)
(0.00478125 -2.64302e-06 0.0992737)
(-0.0141989 -1.08023e-05 0.773599)
(-0.0335547 -2.9212e-06 0.79999)
(-0.0548916 -1.14376e-06 0.802068)
(-0.0751075 -6.11373e-07 0.796877)
(-0.0947545 -3.28712e-07 0.788422)
(-0.113668 -1.68832e-07 0.777857)
(-0.131907 -4.23581e-08 0.765765)
(-0.149427 2.86229e-08 0.752453)
(-0.166204 2.4476e-08 0.738113)
(-0.182215 -1.98746e-08 0.722874)
(-0.197441 -5.70859e-08 0.706832)
(-0.211866 -6.48649e-08 0.690062)
(-0.225478 -5.01986e-08 0.672626)
(-0.238267 -2.96486e-08 0.654577)
(-0.250227 -1.32968e-08 0.635964)
(-0.261354 -1.86503e-09 0.616831)
(-0.271644 8.06374e-09 0.597217)
(-0.281095 1.86327e-08 0.577161)
(-0.289709 2.89371e-08 0.556698)
(-0.297486 3.63591e-08 0.535862)
(-0.304428 3.87559e-08 0.514688)
(-0.310539 3.57698e-08 0.493205)
(-0.315823 2.87975e-08 0.471445)
(-0.320286 2.00911e-08 0.449437)
(-0.323934 1.17385e-08 0.427211)
(-0.326775 5.0436e-09 0.404793)
(-0.328816 4.37686e-10 0.382212)
(-0.330066 -2.25108e-09 0.359495)
(-0.330535 -3.43724e-09 0.336666)
(-0.330234 -3.52819e-09 0.313752)
(-0.329174 -2.84425e-09 0.290779)
(-0.327367 -1.65552e-09 0.26777)
(-0.324825 -2.41567e-10 0.244752)
(-0.321562 1.09734e-09 0.221747)
(-0.317593 2.08751e-09 0.198782)
(-0.312932 2.55408e-09 0.17588)
(-0.307595 2.47004e-09 0.153066)
(-0.301601 1.95486e-09 0.130365)
(-0.294966 1.22064e-09 0.107802)
(-0.28771 4.96273e-10 0.0854045)
(-0.279854 -4.20078e-11 0.0631978)
(-0.271421 -3.08948e-10 0.0412094)
(-0.262433 -3.108e-10 0.0194672)
(-0.252917 -1.21983e-10 -0.0020001)
(-0.242902 1.54156e-10 -0.0231596)
(-0.232418 4.19776e-10 -0.0439781)
(-0.221498 6.05894e-10 -0.0644247)
(-0.210174 6.8182e-10 -0.0844685)
(-0.198483 6.50779e-10 -0.104079)
(-0.18646 5.38559e-10 -0.123225)
(-0.174142 3.82529e-10 -0.141878)
(-0.161568 2.18754e-10 -0.160011)
(-0.148775 7.64927e-11 -0.177595)
(-0.135802 -2.86801e-11 -0.194608)
(-0.122687 -8.91953e-11 -0.211026)
(-0.109467 -1.11091e-10 -0.226829)
(-0.0961785 -1.04086e-10 -0.241999)
(-0.0828564 -7.85657e-11 -0.256521)
(-0.0695344 -4.70877e-11 -0.270381)
(-0.0562445 -2.18512e-11 -0.28357)
(-0.0430167 -7.74065e-12 -0.29608)
(-0.029879 -8.23394e-12 -0.307905)
(-0.0168574 -2.42513e-11 -0.319044)
(-0.0039761 -5.44626e-11 -0.329494)
(0.00874336 -9.75376e-11 -0.339258)
(0.0212793 -1.49129e-10 -0.348337)
(0.0336149 -2.06219e-10 -0.356739)
(0.0457342 -2.66454e-10 -0.364468)
(0.0576238 -3.28326e-10 -0.371535)
(0.0692717 -3.91809e-10 -0.377948)
(0.0806677 -4.55599e-10 -0.38372)
(0.0918031 -5.20207e-10 -0.388861)
(0.102671 -5.86682e-10 -0.393385)
(0.113264 -6.53822e-10 -0.397306)
(0.12358 -7.21858e-10 -0.400638)
(0.133613 -7.89842e-10 -0.403396)
(0.143362 -8.56344e-10 -0.405596)
(0.152824 -9.20109e-10 -0.407255)
(0.162 -9.79119e-10 -0.408388)
(0.170888 -1.03179e-09 -0.409013)
(0.17949 -1.07643e-09 -0.409146)
(0.187807 -1.1115e-09 -0.408806)
(0.195841 -1.13584e-09 -0.408009)
(0.203594 -1.14869e-09 -0.406773)
(0.211068 -1.14968e-09 -0.405117)
(0.218268 -1.13853e-09 -0.403057)
(0.225195 -1.11556e-09 -0.400612)
(0.231855 -1.08109e-09 -0.397799)
(0.238251 -1.03603e-09 -0.394635)
(0.244387 -9.80789e-10 -0.39114)
(0.250268 -9.1632e-10 -0.387329)
(0.255898 -8.43388e-10 -0.38322)
(0.261282 -7.62887e-10 -0.378831)
(0.266426 -6.75431e-10 -0.374178)
(0.271334 -5.8153e-10 -0.369278)
(0.276012 -4.81877e-10 -0.364147)
(0.280463 -3.76904e-10 -0.358802)
(0.284695 -2.66867e-10 -0.353257)
(0.288712 -1.52125e-10 -0.34753)
(0.29252 -3.30868e-11 -0.341633)
(0.296124 8.99416e-11 -0.335584)
(0.29953 2.165e-10 -0.329394)
(0.302743 3.45897e-10 -0.323079)
(0.305768 4.77367e-10 -0.316652)
(0.308612 6.10321e-10 -0.310125)
(0.311279 7.43558e-10 -0.303511)
(0.313776 8.75902e-10 -0.296822)
(0.316107 1.00625e-09 -0.290069)
(0.318278 1.13318e-09 -0.283263)
(0.320295 1.25532e-09 -0.276414)
(0.322162 1.3711e-09 -0.269531)
(0.323886 1.47896e-09 -0.262625)
(0.325471 1.5774e-09 -0.255703)
(0.326922 1.66472e-09 -0.248773)
(0.328245 1.73944e-09 -0.241842)
(0.329444 1.79996e-09 -0.234917)
(0.330525 1.84504e-09 -0.228004)
(0.331493 1.87362e-09 -0.221109)
(0.332351 1.88469e-09 -0.214235)
(0.333105 1.87816e-09 -0.207388)
(0.333758 1.85427e-09 -0.20057)
(0.334316 1.81375e-09 -0.193785)
(0.334783 1.75833e-09 -0.187034)
(0.335161 1.69044e-09 -0.18032)
(0.335456 1.61297e-09 -0.173644)
(0.33567 1.52986e-09 -0.167005)
(0.335808 1.44517e-09 -0.160404)
(0.335872 1.36373e-09 -0.15384)
(0.335865 1.28985e-09 -0.147312)
(0.33579 1.22815e-09 -0.140818)
(0.33565 1.18238e-09 -0.134357)
(0.335447 1.15564e-09 -0.127925)
(0.335182 1.14964e-09 -0.121519)
(0.334858 1.16527e-09 -0.115136)
(0.334475 1.2011e-09 -0.108772)
(0.334036 1.25481e-09 -0.102423)
(0.33354 1.32221e-09 -0.0960838)
(0.332988 1.39803e-09 -0.0897506)
(0.332379 1.47636e-09 -0.0834182)
(0.331714 1.55127e-09 -0.0770814)
(0.330992 1.61743e-09 -0.0707352)
(0.330212 1.67014e-09 -0.0643742)
(0.329371 1.70717e-09 -0.0579932)
(0.328469 1.72813e-09 -0.0515872)
(0.327502 1.73485e-09 -0.0451512)
(0.326467 1.73115e-09 -0.0386802)
(0.325361 1.72177e-09 -0.0321698)
(0.324181 1.71124e-09 -0.0256159)
(0.32292 1.70266e-09 -0.0190146)
(0.321576 1.69574e-09 -0.0123627)
(0.320142 1.68626e-09 -0.00565759)
(0.318611 1.66693e-09 0.00110282)
(0.316978 1.62856e-09 0.00791978)
(0.315236 1.56482e-09 0.0147938)
(0.313376 1.47524e-09 0.0217243)
(0.311391 1.36873e-09 0.0287098)
(0.309272 1.26354e-09 0.0357475)
(0.30701 1.18443e-09 0.0428335)
(0.304595 1.15383e-09 0.0499626)
(0.302018 1.18156e-09 0.0571283)
(0.299267 1.25583e-09 0.0643225)
(0.296332 1.34037e-09 0.0715353)
(0.293202 1.38181e-09 0.0787557)
(0.289866 1.32661e-09 0.0859705)
(0.286312 1.14195e-09 0.0931648)
(0.282529 8.33627e-10 0.100322)
(0.278504 4.48848e-10 0.107424)
(0.274228 6.68059e-11 0.114449)
(0.269687 -2.20802e-10 0.121376)
(0.264873 -3.21729e-10 0.128179)
(0.259774 -1.3928e-10 0.134833)
(0.254381 4.46122e-10 0.141309)
(0.248686 1.58322e-09 0.147577)
(0.242679 3.40981e-09 0.153605)
(0.236356 5.94321e-09 0.159359)
(0.22971 8.92664e-09 0.164805)
(0.222739 1.17089e-08 0.169905)
(0.21544 1.32653e-08 0.174622)
(0.207814 1.24253e-08 0.178917)
(0.199863 8.26778e-09 0.182751)
(0.191591 5.21146e-10 0.186085)
(0.183007 -1.02248e-08 0.188879)
(0.17412 -2.2597e-08 0.191093)
(0.164944 -3.46972e-08 0.192689)
(0.155494 -4.4303e-08 0.193629)
(0.145789 -4.89104e-08 0.193876)
(0.135852 -4.59485e-08 0.193397)
(0.125708 -3.39689e-08 0.192158)
(0.115387 -1.55284e-08 0.190127)
(0.104921 -1.20969e-09 0.187275)
(0.0943464 -1.18177e-08 0.183572)
(0.0837038 -7.38292e-08 0.178989)
(0.0730385 -2.04891e-07 0.173492)
(0.0624022 -3.94427e-07 0.16704)
(0.0518548 -5.96201e-07 0.159575)
(0.0414711 -7.59301e-07 0.151006)
(0.0313348 -8.61126e-07 0.141184)
(0.0215943 -1.23028e-06 0.129814)
(0.0123175 -1.69796e-06 0.11632)
(0.00476745 -2.64321e-06 0.0992107)
(-0.0138973 -4.07037e-06 0.796237)
(-0.0333524 -2.4483e-06 0.823597)
(-0.0545105 -6.74874e-07 0.824162)
(-0.0750846 -3.27118e-07 0.818033)
(-0.0949024 -1.52002e-07 0.808785)
(-0.113933 -5.58233e-08 0.797462)
(-0.132224 1.03072e-09 0.784601)
(-0.149748 1.26956e-08 0.770499)
(-0.166488 -1.38424e-08 0.755346)
(-0.182427 -4.72302e-08 0.739273)
(-0.197547 -6.3304e-08 0.722379)
(-0.211834 -5.75161e-08 0.704744)
(-0.225278 -4.00332e-08 0.686431)
(-0.237868 -2.19331e-08 0.667498)
(-0.2496 -7.66816e-09 0.647995)
(-0.260469 3.95893e-09 0.627967)
(-0.270472 1.53125e-08 0.607456)
(-0.279608 2.67823e-08 0.586503)
(-0.287877 3.65414e-08 0.565143)
(-0.295283 4.21428e-08 0.543413)
(-0.301826 4.22097e-08 0.521347)
(-0.307512 3.71423e-08 0.498977)
(-0.312345 2.87439e-08 0.476336)
(-0.316332 1.92925e-08 0.453454)
(-0.319479 1.06807e-08 0.43036)
(-0.321794 3.98476e-09 0.407084)
(-0.323287 -5.12356e-10 0.383654)
(-0.323966 -3.03523e-09 0.360097)
(-0.323844 -4.00316e-09 0.33644)
(-0.322929 -3.83194e-09 0.31271)
(-0.321236 -2.87739e-09 0.288933)
(-0.318777 -1.46077e-09 0.265135)
(-0.315565 9.66045e-11 0.241341)
(-0.311615 1.48136e-09 0.217576)
(-0.306943 2.43747e-09 0.193866)
(-0.301564 2.8261e-09 0.170237)
(-0.295496 2.65752e-09 0.146713)
(-0.288758 2.07636e-09 0.123323)
(-0.28137 1.30383e-09 0.100091)
(-0.273352 5.63957e-10 0.0770463)
(-0.264727 2.16818e-11 0.0542162)
(-0.255521 -2.48828e-10 0.03163)
(-0.245759 -2.60425e-10 0.0093171)
(-0.23547 -8.99801e-11 -0.0126905)
(-0.224688 1.61109e-10 -0.0343563)
(-0.213445 3.98918e-10 -0.0556467)
(-0.201779 5.57766e-10 -0.0765291)
(-0.189725 6.08883e-10 -0.0969707)
(-0.177323 5.57027e-10 -0.116939)
(-0.164611 4.2865e-10 -0.136404)
(-0.151631 2.61504e-10 -0.155334)
(-0.138424 9.13956e-11 -0.173702)
(-0.12503 -5.22384e-11 -0.19148)
(-0.111491 -1.55179e-10 -0.208644)
(-0.097847 -2.10191e-10 -0.225174)
(-0.0841367 -2.24718e-10 -0.241048)
(-0.070398 -2.10243e-10 -0.256251)
(-0.056667 -1.80042e-10 -0.27077)
(-0.0429778 -1.46134e-10 -0.284592)
(-0.0293625 -1.1926e-10 -0.29771)
(-0.015851 -1.04867e-10 -0.310118)
(-0.00247105 -1.06331e-10 -0.321814)
(0.0107519 -1.24546e-10 -0.332796)
(0.0237935 -1.5739e-10 -0.343066)
(0.0366337 -2.01409e-10 -0.352627)
(0.0492542 -2.53969e-10 -0.361486)
(0.0616391 -3.1254e-10 -0.36965)
(0.0737746 -3.74307e-10 -0.377127)
(0.0856488 -4.37582e-10 -0.383929)
(0.0972513 -5.02469e-10 -0.390067)
(0.108574 -5.67382e-10 -0.395554)
(0.119609 -6.32806e-10 -0.400403)
(0.130353 -6.98998e-10 -0.404629)
(0.140799 -7.65241e-10 -0.408247)
(0.150946 -8.30947e-10 -0.411272)
(0.160792 -8.94838e-10 -0.413722)
(0.170335 -9.55354e-10 -0.415612)
(0.179575 -1.01101e-09 -0.41696)
(0.188514 -1.05959e-09 -0.417783)
(0.197152 -1.09952e-09 -0.418099)
(0.205493 -1.12915e-09 -0.417925)
(0.213537 -1.14712e-09 -0.417279)
(0.221289 -1.15248e-09 -0.41618)
(0.228752 -1.14467e-09 -0.414646)
(0.235929 -1.12367e-09 -0.412694)
(0.242826 -1.0893e-09 -0.410342)
(0.249446 -1.04245e-09 -0.40761)
(0.255794 -9.83455e-10 -0.404514)
(0.261874 -9.13464e-10 -0.401073)
(0.267693 -8.33144e-10 -0.397305)
(0.273256 -7.43567e-10 -0.393227)
(0.278567 -6.45603e-10 -0.388856)
(0.283632 -5.4007e-10 -0.38421)
(0.288457 -4.27813e-10 -0.379306)
(0.293047 -3.09418e-10 -0.374161)
(0.297408 -1.85551e-10 -0.36879)
(0.301547 -5.69275e-11 -0.363211)
(0.305467 7.59158e-11 -0.357439)
(0.309177 2.12314e-10 -0.351489)
(0.31268 3.51551e-10 -0.345377)
(0.315983 4.92682e-10 -0.339117)
(0.319093 6.34862e-10 -0.332723)
(0.322014 7.76864e-10 -0.32621)
(0.324752 9.17435e-10 -0.31959)
(0.327314 1.05537e-09 -0.312877)
(0.329705 1.1892e-09 -0.306083)
(0.33193 1.31732e-09 -0.299219)
(0.333995 1.43854e-09 -0.292298)
(0.335907 1.55117e-09 -0.285329)
(0.33767 1.65398e-09 -0.278323)
(0.33929 1.74534e-09 -0.271289)
(0.340772 1.82411e-09 -0.264237)
(0.342122 1.889e-09 -0.257174)
(0.343345 1.93873e-09 -0.250109)
(0.344445 1.9724e-09 -0.243049)
(0.345429 1.98897e-09 -0.236)
(0.346301 1.98783e-09 -0.228968)
(0.347066 1.96852e-09 -0.221958)
(0.347729 1.93102e-09 -0.214976)
(0.348294 1.87588e-09 -0.208024)
(0.348766 1.80431e-09 -0.201106)
(0.349148 1.71817e-09 -0.194226)
(0.349446 1.61988e-09 -0.187384)
(0.349663 1.51292e-09 -0.180583)
(0.349803 1.40104e-09 -0.173823)
(0.349869 1.28893e-09 -0.167105)
(0.349866 1.18127e-09 -0.160428)
(0.349795 1.08313e-09 -0.153792)
(0.34966 9.99274e-10 -0.147194)
(0.349465 9.34064e-10 -0.140633)
(0.34921 8.91055e-10 -0.134107)
(0.348899 8.72778e-10 -0.127613)
(0.348534 8.80412e-10 -0.121147)
(0.348116 9.13574e-10 -0.114705)
(0.347646 9.70322e-10 -0.108284)
(0.347125 1.04692e-09 -0.101878)
(0.346555 1.13826e-09 -0.0954829)
(0.345934 1.23786e-09 -0.0890939)
(0.345264 1.33888e-09 -0.0827053)
(0.344544 1.43435e-09 -0.0763118)
(0.343774 1.51787e-09 -0.0699077)
(0.34295 1.58447e-09 -0.0634874)
(0.342073 1.63114e-09 -0.0570451)
(0.34114 1.65714e-09 -0.0505753)
(0.340147 1.66395e-09 -0.0440724)
(0.339093 1.65523e-09 -0.0375312)
(0.337973 1.63546e-09 -0.0309466)
(0.336784 1.60938e-09 -0.0243139)
(0.33552 1.57976e-09 -0.0176288)
(0.334176 1.54632e-09 -0.0108874)
(0.332747 1.50521e-09 -0.00408646)
(0.331226 1.44933e-09 0.00277658)
(0.329606 1.37091e-09 0.00970358)
(0.327879 1.2651e-09 0.0166956)
(0.326038 1.13473e-09 0.0237526)
(0.324074 9.92211e-10 0.0308737)
(0.321977 8.60043e-10 0.0380567)
(0.319739 7.66209e-10 0.0452983)
(0.317347 7.34872e-10 0.0525937)
(0.314793 7.76074e-10 0.0599368)
(0.312063 8.77074e-10 0.0673199)
(0.309148 1.00171e-09 0.0747339)
(0.306034 1.09909e-09 0.0821676)
(0.302709 1.12178e-09 0.0896082)
(0.29916 1.04571e-09 0.0970412)
(0.295376 8.82427e-10 0.10445)
(0.291342 6.7807e-10 0.111816)
(0.287046 4.99687e-10 0.119118)
(0.282476 4.17668e-10 0.126333)
(0.277619 5.03642e-10 0.133438)
(0.272464 8.4528e-10 0.140404)
(0.266999 1.57044e-09 0.147202)
(0.261214 2.84586e-09 0.153802)
(0.255099 4.81109e-09 0.16017)
(0.248646 7.44277e-09 0.166272)
(0.241849 1.03906e-08 0.17207)
(0.234702 1.28896e-08 0.177526)
(0.227203 1.38562e-08 0.182601)
(0.219349 1.22002e-08 0.187253)
(0.211142 7.26285e-09 0.191442)
(0.202585 -8.21535e-10 0.195124)
(0.193685 -1.1023e-08 0.198257)
(0.184451 -2.15928e-08 0.200799)
(0.174895 -3.03333e-08 0.202707)
(0.165033 -3.47317e-08 0.203942)
(0.154884 -3.20161e-08 0.204462)
(0.144471 -1.97279e-08 0.204231)
(0.133818 2.23085e-09 0.203209)
(0.122957 2.76279e-08 0.201364)
(0.11192 3.95342e-08 0.198661)
(0.100746 1.01404e-08 0.195066)
(0.0894749 -8.91269e-08 0.190544)
(0.0781548 -2.6596e-07 0.185057)
(0.0668387 -4.87466e-07 0.178554)
(0.0555878 -6.90629e-07 0.170968)
(0.0444812 -8.43395e-07 0.162189)
(0.033606 -9.20382e-07 0.152043)
(0.0231524 -1.43527e-06 0.140199)
(0.0131275 -1.82638e-06 0.12608)
(0.00513477 -2.32991e-06 0.107947)
(-0.0139249 -4.07048e-06 0.79624)
(-0.0333811 -2.44843e-06 0.823597)
(-0.0545312 -6.74902e-07 0.824166)
(-0.0750994 -3.27124e-07 0.818037)
(-0.094912 -1.52002e-07 0.808788)
(-0.113939 -5.58232e-08 0.797464)
(-0.132228 1.03072e-09 0.784603)
(-0.14975 1.26956e-08 0.770501)
(-0.16649 -1.38424e-08 0.755347)
(-0.182428 -4.72303e-08 0.739273)
(-0.197548 -6.33041e-08 0.72238)
(-0.211835 -5.75161e-08 0.704744)
(-0.225278 -4.00332e-08 0.686432)
(-0.237869 -2.19332e-08 0.667499)
(-0.249601 -7.66817e-09 0.647996)
(-0.260469 3.95894e-09 0.627967)
(-0.270472 1.53125e-08 0.607457)
(-0.279608 2.67823e-08 0.586503)
(-0.287878 3.65414e-08 0.565143)
(-0.295283 4.21428e-08 0.543413)
(-0.301827 4.22098e-08 0.521347)
(-0.307512 3.71423e-08 0.498977)
(-0.312346 2.87439e-08 0.476336)
(-0.316332 1.92925e-08 0.453454)
(-0.319479 1.06807e-08 0.43036)
(-0.321794 3.98476e-09 0.407084)
(-0.323287 -5.12356e-10 0.383654)
(-0.323966 -3.03524e-09 0.360097)
(-0.323844 -4.00316e-09 0.33644)
(-0.32293 -3.83194e-09 0.31271)
(-0.321236 -2.87739e-09 0.288933)
(-0.318777 -1.46077e-09 0.265135)
(-0.315565 9.66045e-11 0.241341)
(-0.311615 1.48136e-09 0.217576)
(-0.306943 2.43747e-09 0.193866)
(-0.301564 2.8261e-09 0.170237)
(-0.295496 2.65751e-09 0.146713)
(-0.288758 2.07635e-09 0.123323)
(-0.28137 1.30382e-09 0.100091)
(-0.273352 5.63956e-10 0.0770463)
(-0.264727 2.16818e-11 0.0542163)
(-0.255521 -2.48828e-10 0.03163)
(-0.245759 -2.60425e-10 0.00931712)
(-0.23547 -8.99799e-11 -0.0126905)
(-0.224688 1.61108e-10 -0.0343562)
(-0.213445 3.98917e-10 -0.0556467)
(-0.201779 5.57765e-10 -0.0765291)
(-0.189725 6.08881e-10 -0.0969707)
(-0.177323 5.57026e-10 -0.116939)
(-0.164611 4.28649e-10 -0.136404)
(-0.151631 2.61504e-10 -0.155334)
(-0.138424 9.13954e-11 -0.173702)
(-0.12503 -5.22383e-11 -0.19148)
(-0.111491 -1.55179e-10 -0.208644)
(-0.0978471 -2.10191e-10 -0.225174)
(-0.0841367 -2.24717e-10 -0.241048)
(-0.070398 -2.10243e-10 -0.256251)
(-0.056667 -1.80041e-10 -0.27077)
(-0.0429778 -1.46133e-10 -0.284592)
(-0.0293625 -1.1926e-10 -0.29771)
(-0.015851 -1.04867e-10 -0.310118)
(-0.00247108 -1.06331e-10 -0.321814)
(0.0107519 -1.24546e-10 -0.332796)
(0.0237934 -1.57389e-10 -0.343066)
(0.0366337 -2.01408e-10 -0.352628)
(0.0492541 -2.53969e-10 -0.361486)
(0.0616391 -3.12539e-10 -0.36965)
(0.0737746 -3.74306e-10 -0.377127)
(0.0856488 -4.37581e-10 -0.383929)
(0.0972513 -5.02468e-10 -0.390067)
(0.108574 -5.67381e-10 -0.395554)
(0.119609 -6.32805e-10 -0.400403)
(0.130353 -6.98997e-10 -0.404629)
(0.140799 -7.6524e-10 -0.408247)
(0.150946 -8.30946e-10 -0.411272)
(0.160792 -8.94837e-10 -0.413722)
(0.170335 -9.55352e-10 -0.415612)
(0.179575 -1.01101e-09 -0.41696)
(0.188514 -1.05959e-09 -0.417783)
(0.197152 -1.09952e-09 -0.418099)
(0.205493 -1.12915e-09 -0.417925)
(0.213537 -1.14711e-09 -0.417279)
(0.221289 -1.15248e-09 -0.41618)
(0.228752 -1.14467e-09 -0.414646)
(0.235929 -1.12367e-09 -0.412694)
(0.242826 -1.0893e-09 -0.410342)
(0.249446 -1.04245e-09 -0.40761)
(0.255794 -9.83453e-10 -0.404514)
(0.261874 -9.13463e-10 -0.401073)
(0.267693 -8.33142e-10 -0.397305)
(0.273256 -7.43566e-10 -0.393227)
(0.278567 -6.45602e-10 -0.388856)
(0.283632 -5.4007e-10 -0.38421)
(0.288457 -4.27812e-10 -0.379306)
(0.293047 -3.09418e-10 -0.374161)
(0.297408 -1.85551e-10 -0.36879)
(0.301547 -5.69274e-11 -0.363211)
(0.305467 7.59157e-11 -0.357439)
(0.309177 2.12314e-10 -0.351489)
(0.31268 3.51551e-10 -0.345377)
(0.315983 4.92681e-10 -0.339117)
(0.319093 6.34861e-10 -0.332723)
(0.322014 7.76863e-10 -0.32621)
(0.324752 9.17434e-10 -0.31959)
(0.327314 1.05537e-09 -0.312877)
(0.329705 1.1892e-09 -0.306083)
(0.33193 1.31732e-09 -0.299219)
(0.333995 1.43854e-09 -0.292298)
(0.335907 1.55117e-09 -0.285329)
(0.33767 1.65398e-09 -0.278323)
(0.33929 1.74533e-09 -0.271289)
(0.340772 1.82411e-09 -0.264237)
(0.342122 1.889e-09 -0.257174)
(0.343345 1.93873e-09 -0.250109)
(0.344445 1.9724e-09 -0.243049)
(0.345429 1.98897e-09 -0.236)
(0.346301 1.98783e-09 -0.228968)
(0.347066 1.96852e-09 -0.221958)
(0.347729 1.93102e-09 -0.214976)
(0.348294 1.87588e-09 -0.208024)
(0.348766 1.80431e-09 -0.201106)
(0.349148 1.71817e-09 -0.194226)
(0.349446 1.61988e-09 -0.187384)
(0.349663 1.51292e-09 -0.180583)
(0.349803 1.40104e-09 -0.173823)
(0.349869 1.28893e-09 -0.167105)
(0.349866 1.18127e-09 -0.160428)
(0.349795 1.08313e-09 -0.153792)
(0.34966 9.99273e-10 -0.147194)
(0.349465 9.34064e-10 -0.140633)
(0.34921 8.91055e-10 -0.134107)
(0.3489 8.72778e-10 -0.127613)
(0.348534 8.80412e-10 -0.121147)
(0.348116 9.13574e-10 -0.114705)
(0.347646 9.70322e-10 -0.108284)
(0.347125 1.04692e-09 -0.101878)
(0.346555 1.13826e-09 -0.0954829)
(0.345934 1.23786e-09 -0.0890939)
(0.345264 1.33888e-09 -0.0827054)
(0.344545 1.43435e-09 -0.0763118)
(0.343774 1.51787e-09 -0.0699077)
(0.34295 1.58447e-09 -0.0634874)
(0.342073 1.63114e-09 -0.0570451)
(0.34114 1.65714e-09 -0.0505753)
(0.340147 1.66395e-09 -0.0440724)
(0.339093 1.65523e-09 -0.0375313)
(0.337973 1.63546e-09 -0.0309467)
(0.336784 1.60938e-09 -0.0243139)
(0.33552 1.57976e-09 -0.0176288)
(0.334176 1.54632e-09 -0.0108874)
(0.332747 1.50521e-09 -0.00408647)
(0.331226 1.44933e-09 0.00277657)
(0.329606 1.37091e-09 0.00970357)
(0.327879 1.2651e-09 0.0166956)
(0.326038 1.13473e-09 0.0237526)
(0.324074 9.92211e-10 0.0308737)
(0.321977 8.60043e-10 0.0380567)
(0.319739 7.66208e-10 0.0452983)
(0.317347 7.34872e-10 0.0525937)
(0.314793 7.76073e-10 0.0599368)
(0.312063 8.77074e-10 0.0673199)
(0.309148 1.00171e-09 0.0747339)
(0.306034 1.09909e-09 0.0821676)
(0.302709 1.12178e-09 0.0896082)
(0.29916 1.04571e-09 0.0970412)
(0.295376 8.82427e-10 0.10445)
(0.291342 6.7807e-10 0.111816)
(0.287046 4.99687e-10 0.119118)
(0.282476 4.17668e-10 0.126333)
(0.27762 5.03642e-10 0.133438)
(0.272464 8.4528e-10 0.140404)
(0.266999 1.57044e-09 0.147202)
(0.261214 2.84586e-09 0.153802)
(0.255099 4.81109e-09 0.16017)
(0.248646 7.44277e-09 0.166272)
(0.241849 1.03906e-08 0.17207)
(0.234702 1.28896e-08 0.177526)
(0.227203 1.38562e-08 0.182601)
(0.219349 1.22002e-08 0.187253)
(0.211142 7.26285e-09 0.191442)
(0.202585 -8.21535e-10 0.195124)
(0.193685 -1.1023e-08 0.198257)
(0.184451 -2.15928e-08 0.200799)
(0.174895 -3.03333e-08 0.202708)
(0.165033 -3.47317e-08 0.203942)
(0.154884 -3.20161e-08 0.204463)
(0.144471 -1.97279e-08 0.204231)
(0.133818 2.23085e-09 0.20321)
(0.122957 2.76279e-08 0.201365)
(0.11192 3.95342e-08 0.198661)
(0.100745 1.01404e-08 0.195067)
(0.0894736 -8.91275e-08 0.190545)
(0.0781527 -2.65964e-07 0.185059)
(0.0668353 -4.87482e-07 0.178558)
(0.0555824 -6.90667e-07 0.170972)
(0.0444724 -8.43462e-07 0.162194)
(0.0335914 -9.20463e-07 0.152044)
(0.0231326 -1.43536e-06 0.140188)
(0.0131016 -1.82645e-06 0.126043)
(0.0051145 -2.33013e-06 0.107862)
(-0.0140233 -3.39411e-06 0.818948)
(-0.0332877 -1.02286e-06 0.846854)
(-0.054292 -5.57394e-08 0.846382)
(-0.0750122 -3.28668e-08 0.839367)
(-0.0949185 -2.1651e-08 0.829279)
(-0.114012 -1.18433e-08 0.817139)
(-0.132316 -1.05618e-08 0.803457)
(-0.149811 -2.41202e-08 0.788518)
(-0.166484 -4.6305e-08 0.772509)
(-0.182318 -6.03667e-08 0.755564)
(-0.197299 -5.90862e-08 0.737783)
(-0.211414 -4.57414e-08 0.719248)
(-0.224652 -2.852e-08 0.700026)
(-0.237006 -1.30679e-08 0.680176)
(-0.24847 -2.3671e-10 0.659751)
(-0.25904 1.16338e-08 0.638797)
(-0.268715 2.36094e-08 0.617358)
(-0.277493 3.47978e-08 0.595476)
(-0.285376 4.29999e-08 0.57319)
(-0.292366 4.62354e-08 0.550536)
(-0.298466 4.39054e-08 0.527549)
(-0.303681 3.70109e-08 0.504265)
(-0.308017 2.75704e-08 0.480715)
(-0.31148 1.77486e-08 0.456931)
(-0.314079 9.17901e-09 0.432944)
(-0.315821 2.70474e-09 0.408785)
(-0.316717 -1.51786e-09 0.384481)
(-0.316777 -3.74655e-09 0.360061)
(-0.316012 -4.39899e-09 0.335554)
(-0.314435 -3.90526e-09 0.310986)
(-0.312059 -2.66354e-09 0.286385)
(-0.308896 -1.04656e-09 0.261777)
(-0.304963 5.94602e-10 0.237188)
(-0.300275 1.95313e-09 0.212646)
(-0.294848 2.81112e-09 0.188175)
(-0.2887 3.07924e-09 0.163804)
(-0.281849 2.80876e-09 0.139558)
(-0.274317 2.16457e-09 0.115466)
(-0.266124 1.3671e-09 0.0915553)
(-0.257294 6.2629e-10 0.0678558)
(-0.247852 8.94079e-11 0.0443974)
(-0.237826 -1.82242e-10 0.0212109)
(-0.227244 -2.08417e-10 -0.00167189)
(-0.21614 -6.43984e-11 -0.0242136)
(-0.204552 1.53714e-10 -0.0463767)
(-0.192517 3.56605e-10 -0.0681263)
(-0.180073 4.84247e-10 -0.0894277)
(-0.167262 5.10275e-10 -0.110247)
(-0.154126 4.39806e-10 -0.130549)
(-0.14071 2.9865e-10 -0.150303)
(-0.127056 1.24506e-10 -0.169479)
(-0.11321 -4.75362e-11 -0.188046)
(-0.099215 -1.88246e-10 -0.20598)
(-0.0851149 -2.84403e-10 -0.223256)
(-0.0709518 -3.31661e-10 -0.239854)
(-0.0567663 -3.38232e-10 -0.255756)
(-0.0425972 -3.17465e-10 -0.270947)
(-0.0284811 -2.81355e-10 -0.285416)
(-0.0144525 -2.44071e-10 -0.299154)
(-0.000543396 -2.16276e-10 -0.312155)
(0.0132162 -2.03469e-10 -0.324417)
(0.0267986 -2.07361e-10 -0.335937)
(0.0401801 -2.27135e-10 -0.346718)
(0.0533393 -2.61331e-10 -0.356765)
(0.0662575 -3.07215e-10 -0.366084)
(0.0789183 -3.61231e-10 -0.374683)
(0.0913077 -4.20489e-10 -0.382573)
(0.103414 -4.82918e-10 -0.389764)
(0.115226 -5.46396e-10 -0.396268)
(0.126737 -6.1123e-10 -0.4021)
(0.137939 -6.76038e-10 -0.407274)
(0.148828 -7.40719e-10 -0.411804)
(0.1594 -8.05042e-10 -0.415707)
(0.169654 -8.68009e-10 -0.418999)
(0.179587 -9.28728e-10 -0.421697)
(0.189199 -9.85534e-10 -0.423818)
(0.198492 -1.03671e-09 -0.425381)
(0.207467 -1.08038e-09 -0.426402)
(0.216127 -1.11463e-09 -0.4269)
(0.224474 -1.13771e-09 -0.426894)
(0.232511 -1.14806e-09 -0.426401)
(0.240243 -1.1446e-09 -0.42544)
(0.247674 -1.12662e-09 -0.42403)
(0.254809 -1.09404e-09 -0.422189)
(0.261653 -1.04686e-09 -0.419935)
(0.26821 -9.85559e-10 -0.417288)
(0.274487 -9.10993e-10 -0.414264)
(0.28049 -8.24128e-10 -0.410883)
(0.286223 -7.26013e-10 -0.407162)
(0.291693 -6.17823e-10 -0.403119)
(0.296906 -5.00659e-10 -0.398773)
(0.301868 -3.75415e-10 -0.39414)
(0.306585 -2.43343e-10 -0.389239)
(0.311063 -1.05365e-10 -0.384085)
(0.315309 3.75743e-11 -0.378696)
(0.319329 1.84682e-10 -0.373089)
(0.323129 3.34884e-10 -0.367279)
(0.326715 4.87106e-10 -0.361282)
(0.330093 6.4025e-10 -0.355114)
(0.33327 7.92884e-10 -0.34879)
(0.336252 9.4378e-10 -0.342325)
(0.339045 1.09138e-09 -0.335732)
(0.341655 1.23389e-09 -0.329026)
(0.344088 1.36991e-09 -0.32222)
(0.34635 1.49772e-09 -0.315327)
(0.348447 1.61584e-09 -0.308358)
(0.350385 1.72261e-09 -0.301326)
(0.352169 1.81687e-09 -0.294242)
(0.353807 1.89738e-09 -0.287117)
(0.355302 1.96337e-09 -0.279961)
(0.356661 2.01391e-09 -0.272782)
(0.357889 2.04827e-09 -0.265591)
(0.358992 2.06606e-09 -0.258395)
(0.359975 2.06682e-09 -0.251203)
(0.360843 2.05039e-09 -0.24402)
(0.361602 2.01688e-09 -0.236854)
(0.362255 1.96624e-09 -0.22971)
(0.362809 1.89911e-09 -0.222594)
(0.363268 1.81634e-09 -0.21551)
(0.363636 1.71946e-09 -0.208461)
(0.363919 1.61056e-09 -0.201451)
(0.364119 1.4922e-09 -0.194482)
(0.364242 1.36767e-09 -0.187557)
(0.364291 1.24078e-09 -0.180676)
(0.364271 1.11579e-09 -0.173841)
(0.364184 9.97413e-10 -0.16705)
(0.364034 8.90161e-10 -0.160305)
(0.363825 7.98687e-10 -0.153603)
(0.363559 7.26802e-10 -0.146943)
(0.363239 6.78165e-10 -0.140323)
(0.362868 6.55e-10 -0.13374)
(0.362447 6.58563e-10 -0.12719)
(0.361978 6.88599e-10 -0.120671)
(0.361464 7.43574e-10 -0.114178)
(0.360905 8.20191e-10 -0.107706)
(0.360302 9.14076e-10 -0.101251)
(0.359657 1.01919e-09 -0.0948069)
(0.358968 1.12877e-09 -0.088369)
(0.358237 1.23535e-09 -0.0819313)
(0.357462 1.33217e-09 -0.0754878)
(0.356644 1.41316e-09 -0.0690326)
(0.355779 1.4735e-09 -0.0625596)
(0.354867 1.51098e-09 -0.0560625)
(0.353905 1.52542e-09 -0.0495352)
(0.35289 1.519e-09 -0.0429718)
(0.351819 1.49564e-09 -0.0363664)
(0.350689 1.46021e-09 -0.0297134)
(0.349495 1.41764e-09 -0.0230075)
(0.348232 1.37064e-09 -0.0162438)
(0.346894 1.31866e-09 -0.00941792)
(0.345475 1.2575e-09 -0.00252592)
(0.343969 1.18028e-09 0.00443542)
(0.342369 1.07964e-09 0.0114686)
(0.340666 9.52454e-10 0.0185752)
(0.338851 8.03332e-10 0.0257559)
(0.336916 6.4806e-10 0.0330104)
(0.334851 5.12561e-10 0.0403371)
(0.332645 4.27447e-10 0.0477334)
(0.330288 4.1847e-10 0.0551949)
(0.327767 4.95951e-10 0.0627163)
(0.32507 6.4654e-10 0.0702902)
(0.322186 8.34715e-10 0.077908)
(0.3191 1.01272e-09 0.0855589)
(0.315799 1.13864e-09 0.0932306)
(0.312269 1.19435e-09 0.100909)
(0.308497 1.19321e-09 0.108576)
(0.304468 1.17503e-09 0.116216)
(0.300167 1.19015e-09 0.123805)
(0.295581 1.28899e-09 0.131322)
(0.290696 1.52733e-09 0.138741)
(0.285498 1.99324e-09 0.146035)
(0.279975 2.83004e-09 0.153174)
(0.274114 4.2207e-09 0.160125)
(0.267903 6.29456e-09 0.166855)
(0.261334 8.96811e-09 0.173327)
(0.254397 1.17884e-08 0.179502)
(0.247085 1.3895e-08 0.185342)
(0.239393 1.4198e-08 0.190802)
(0.23132 1.17626e-08 0.195842)
(0.222863 6.25681e-09 0.200415)
(0.214025 -1.75921e-09 0.204478)
(0.204812 -1.08393e-08 0.207984)
(0.195231 -1.88973e-08 0.210888)
(0.185294 -2.346e-08 0.213145)
(0.175017 -2.17765e-08 0.214709)
(0.164418 -1.10441e-08 0.215538)
(0.153519 1.04463e-08 0.215589)
(0.142347 4.03259e-08 0.214821)
(0.130933 6.74472e-08 0.213195)
(0.119311 6.83305e-08 0.210672)
(0.10752 1.12384e-08 0.207216)
(0.0956038 -1.25166e-07 0.202785)
(0.0836112 -3.21647e-07 0.197336)
(0.0715972 -5.04166e-07 0.190812)
(0.0596241 -5.89336e-07 0.183133)
(0.0477717 -5.7895e-07 0.174171)
(0.0361238 -3.83829e-07 0.163716)
(0.0249272 -6.83799e-07 0.151388)
(0.0140651 -8.9019e-07 0.136595)
(0.0057234 -2.46419e-06 0.117184)
(-0.0140493 -3.39412e-06 0.81896)
(-0.0333057 -1.02288e-06 0.846858)
(-0.0543045 -5.574e-08 0.846381)
(-0.0750216 -3.28669e-08 0.839366)
(-0.094925 -2.16509e-08 0.829278)
(-0.114017 -1.18432e-08 0.817139)
(-0.132319 -1.05618e-08 0.803457)
(-0.149813 -2.41202e-08 0.788518)
(-0.166486 -4.6305e-08 0.772509)
(-0.18232 -6.03667e-08 0.755564)
(-0.1973 -5.90862e-08 0.737783)
(-0.211415 -4.57415e-08 0.719248)
(-0.224653 -2.852e-08 0.700027)
(-0.237006 -1.30679e-08 0.680177)
(-0.24847 -2.3671e-10 0.659751)
(-0.25904 1.16339e-08 0.638797)
(-0.268715 2.36095e-08 0.617358)
(-0.277493 3.47979e-08 0.595476)
(-0.285376 4.29999e-08 0.57319)
(-0.292366 4.62355e-08 0.550536)
(-0.298466 4.39055e-08 0.527549)
(-0.303681 3.7011e-08 0.504265)
(-0.308017 2.75704e-08 0.480715)
(-0.31148 1.77486e-08 0.456931)
(-0.314079 9.17902e-09 0.432945)
(-0.315821 2.70475e-09 0.408785)
(-0.316717 -1.51786e-09 0.384481)
(-0.316777 -3.74655e-09 0.360061)
(-0.316012 -4.39899e-09 0.335554)
(-0.314435 -3.90526e-09 0.310986)
(-0.312059 -2.66354e-09 0.286385)
(-0.308897 -1.04656e-09 0.261777)
(-0.304964 5.94602e-10 0.237189)
(-0.300275 1.95313e-09 0.212646)
(-0.294848 2.81112e-09 0.188175)
(-0.2887 3.07924e-09 0.163804)
(-0.28185 2.80875e-09 0.139558)
(-0.274317 2.16456e-09 0.115466)
(-0.266124 1.3671e-09 0.0915553)
(-0.257294 6.26289e-10 0.0678559)
(-0.247852 8.94078e-11 0.0443974)
(-0.237826 -1.82242e-10 0.0212109)
(-0.227244 -2.08416e-10 -0.00167187)
(-0.21614 -6.43982e-11 -0.0242136)
(-0.204552 1.53714e-10 -0.0463766)
(-0.192517 3.56604e-10 -0.0681263)
(-0.180073 4.84246e-10 -0.0894277)
(-0.167262 5.10273e-10 -0.110247)
(-0.154126 4.39805e-10 -0.130549)
(-0.14071 2.98649e-10 -0.150303)
(-0.127056 1.24506e-10 -0.169479)
(-0.11321 -4.7536e-11 -0.188046)
(-0.099215 -1.88246e-10 -0.20598)
(-0.085115 -2.84402e-10 -0.223256)
(-0.0709519 -3.31661e-10 -0.239854)
(-0.0567663 -3.38231e-10 -0.255756)
(-0.0425973 -3.17464e-10 -0.270947)
(-0.0284812 -2.81355e-10 -0.285416)
(-0.0144526 -2.44071e-10 -0.299154)
(-0.000543424 -2.16276e-10 -0.312155)
(0.0132162 -2.03468e-10 -0.324417)
(0.0267986 -2.0736e-10 -0.335937)
(0.0401801 -2.27134e-10 -0.346718)
(0.0533392 -2.61331e-10 -0.356765)
(0.0662575 -3.07214e-10 -0.366084)
(0.0789183 -3.6123e-10 -0.374683)
(0.0913077 -4.20488e-10 -0.382573)
(0.103414 -4.82917e-10 -0.389764)
(0.115226 -5.46395e-10 -0.396268)
(0.126737 -6.11229e-10 -0.4021)
(0.137939 -6.76037e-10 -0.407274)
(0.148828 -7.40717e-10 -0.411804)
(0.1594 -8.0504e-10 -0.415707)
(0.169654 -8.68008e-10 -0.418999)
(0.179587 -9.28726e-10 -0.421697)
(0.189199 -9.85532e-10 -0.423818)
(0.198492 -1.03671e-09 -0.425381)
(0.207468 -1.08038e-09 -0.426402)
(0.216127 -1.11463e-09 -0.4269)
(0.224474 -1.13771e-09 -0.426894)
(0.232511 -1.14806e-09 -0.426401)
(0.240243 -1.1446e-09 -0.42544)
(0.247674 -1.12662e-09 -0.42403)
(0.254809 -1.09404e-09 -0.422189)
(0.261653 -1.04685e-09 -0.419935)
(0.26821 -9.85558e-10 -0.417288)
(0.274487 -9.10992e-10 -0.414264)
(0.28049 -8.24127e-10 -0.410883)
(0.286223 -7.26012e-10 -0.407162)
(0.291693 -6.17822e-10 -0.403119)
(0.296906 -5.00658e-10 -0.398773)
(0.301868 -3.75414e-10 -0.39414)
(0.306585 -2.43343e-10 -0.389239)
(0.311063 -1.05365e-10 -0.384085)
(0.315309 3.75742e-11 -0.378696)
(0.319329 1.84682e-10 -0.373089)
(0.323129 3.34883e-10 -0.367279)
(0.326715 4.87106e-10 -0.361282)
(0.330093 6.4025e-10 -0.355114)
(0.33327 7.92883e-10 -0.34879)
(0.336252 9.43779e-10 -0.342325)
(0.339045 1.09138e-09 -0.335732)
(0.341655 1.23389e-09 -0.329026)
(0.344088 1.36991e-09 -0.32222)
(0.34635 1.49772e-09 -0.315326)
(0.348447 1.61584e-09 -0.308358)
(0.350385 1.72261e-09 -0.301326)
(0.352169 1.81687e-09 -0.294242)
(0.353807 1.89738e-09 -0.287117)
(0.355302 1.96337e-09 -0.279961)
(0.356661 2.01391e-09 -0.272782)
(0.357889 2.04827e-09 -0.265591)
(0.358992 2.06606e-09 -0.258395)
(0.359975 2.06682e-09 -0.251203)
(0.360843 2.05039e-09 -0.24402)
(0.361602 2.01688e-09 -0.236854)
(0.362255 1.96624e-09 -0.22971)
(0.362809 1.8991e-09 -0.222594)
(0.363268 1.81634e-09 -0.21551)
(0.363636 1.71946e-09 -0.208461)
(0.363919 1.61056e-09 -0.201451)
(0.364119 1.4922e-09 -0.194482)
(0.364242 1.36767e-09 -0.187557)
(0.364291 1.24078e-09 -0.180676)
(0.364271 1.11579e-09 -0.173841)
(0.364184 9.97412e-10 -0.16705)
(0.364034 8.90161e-10 -0.160305)
(0.363825 7.98687e-10 -0.153603)
(0.363559 7.26802e-10 -0.146943)
(0.363239 6.78165e-10 -0.140323)
(0.362868 6.55e-10 -0.13374)
(0.362447 6.58563e-10 -0.12719)
(0.361978 6.88599e-10 -0.120671)
(0.361464 7.43574e-10 -0.114178)
(0.360905 8.20191e-10 -0.107706)
(0.360302 9.14076e-10 -0.101251)
(0.359657 1.01919e-09 -0.0948069)
(0.358968 1.12877e-09 -0.088369)
(0.358237 1.23535e-09 -0.0819313)
(0.357463 1.33217e-09 -0.0754878)
(0.356644 1.41316e-09 -0.0690326)
(0.355779 1.4735e-09 -0.0625596)
(0.354867 1.51098e-09 -0.0560625)
(0.353905 1.52542e-09 -0.0495352)
(0.35289 1.519e-09 -0.0429719)
(0.351819 1.49564e-09 -0.0363665)
(0.350689 1.46021e-09 -0.0297135)
(0.349495 1.41764e-09 -0.0230076)
(0.348232 1.37064e-09 -0.0162439)
(0.346894 1.31866e-09 -0.00941793)
(0.345475 1.2575e-09 -0.00252593)
(0.343969 1.18028e-09 0.00443541)
(0.342369 1.07964e-09 0.0114686)
(0.340666 9.52454e-10 0.0185752)
(0.338851 8.03332e-10 0.0257559)
(0.336916 6.4806e-10 0.0330104)
(0.334851 5.12561e-10 0.0403371)
(0.332645 4.27447e-10 0.0477333)
(0.330288 4.1847e-10 0.0551949)
(0.327767 4.95951e-10 0.0627163)
(0.32507 6.4654e-10 0.0702902)
(0.322186 8.34715e-10 0.077908)
(0.3191 1.01272e-09 0.0855589)
(0.315799 1.13864e-09 0.0932306)
(0.312269 1.19435e-09 0.100909)
(0.308497 1.19321e-09 0.108576)
(0.304468 1.17503e-09 0.116216)
(0.300167 1.19015e-09 0.123805)
(0.295581 1.28899e-09 0.131322)
(0.290696 1.52733e-09 0.138741)
(0.285499 1.99324e-09 0.146035)
(0.279975 2.83004e-09 0.153174)
(0.274114 4.2207e-09 0.160125)
(0.267903 6.29456e-09 0.166855)
(0.261334 8.96811e-09 0.173327)
(0.254397 1.17884e-08 0.179503)
(0.247085 1.3895e-08 0.185342)
(0.239393 1.4198e-08 0.190803)
(0.23132 1.17626e-08 0.195842)
(0.222863 6.25681e-09 0.200415)
(0.214025 -1.75921e-09 0.204478)
(0.204812 -1.08393e-08 0.207984)
(0.195231 -1.88973e-08 0.210889)
(0.185294 -2.346e-08 0.213145)
(0.175017 -2.17765e-08 0.21471)
(0.164418 -1.10441e-08 0.215538)
(0.153519 1.04463e-08 0.215589)
(0.142347 4.0326e-08 0.214821)
(0.130933 6.74473e-08 0.213195)
(0.119311 6.83306e-08 0.210673)
(0.10752 1.12385e-08 0.207217)
(0.0956035 -1.25167e-07 0.202787)
(0.0836108 -3.21654e-07 0.197339)
(0.0715967 -5.04187e-07 0.190817)
(0.0596229 -5.89377e-07 0.183139)
(0.0477688 -5.79003e-07 0.174179)
(0.036116 -3.83851e-07 0.16372)
(0.0249154 -6.83742e-07 0.15138)
(0.014044 -8.90021e-07 0.136553)
(0.00570854 -2.46431e-06 0.117068)
(-0.0141522 -1.99462e-06 0.841707)
(-0.0332615 2.2831e-07 0.869905)
(-0.0541609 1.73857e-07 0.868615)
(-0.0749133 3.25709e-08 0.860761)
(-0.0948355 -1.60565e-08 0.84982)
(-0.113931 -3.20256e-08 0.836829)
(-0.132199 -4.17579e-08 0.822283)
(-0.149624 -5.08683e-08 0.806466)
(-0.166189 -5.76615e-08 0.789563)
(-0.181879 -5.57321e-08 0.771708)
(-0.196681 -4.52484e-08 0.753004)
(-0.210583 -3.03804e-08 0.733534)
(-0.223575 -1.56375e-08 0.713369)
(-0.23565 -2.79809e-09 0.692568)
(-0.246804 8.88444e-09 0.671186)
(-0.257032 2.05621e-08 0.649274)
(-0.266333 3.20811e-08 0.626875)
(-0.274708 4.18014e-08 0.604034)
(-0.282157 4.76157e-08 0.58079)
(-0.288684 4.81878e-08 0.557182)
(-0.294293 4.36167e-08 0.533246)
(-0.298989 3.53044e-08 0.509018)
(-0.302778 2.52925e-08 0.484531)
(-0.305668 1.55127e-08 0.459818)
(-0.307667 7.29988e-09 0.434912)
(-0.308785 1.27418e-09 0.409843)
(-0.309032 -2.50952e-09 0.38464)
(-0.30842 -4.32358e-09 0.359334)
(-0.306961 -4.57848e-09 0.333953)
(-0.304668 -3.72096e-09 0.308526)
(-0.301554 -2.19458e-09 0.283079)
(-0.297635 -4.1861e-10 0.257641)
(-0.292927 1.2387e-09 0.232239)
(-0.287445 2.49615e-09 0.206901)
(-0.281209 3.19185e-09 0.181653)
(-0.274236 3.29843e-09 0.156524)
(-0.266548 2.91075e-09 0.131543)
(-0.258167 2.20891e-09 0.106738)
(-0.249115 1.40296e-09 0.08214)
(-0.239421 6.78593e-10 0.0577797)
(-0.22911 1.5961e-10 0.0336895)
(-0.218215 -1.09318e-10 0.00990244)
(-0.206766 -1.53675e-10 -0.0135455)
(-0.194806 -4.44951e-11 -0.0366121)
(-0.182374 1.31002e-10 -0.0592598)
(-0.16951 2.91919e-10 -0.0814514)
(-0.15626 3.84138e-10 -0.10315)
(-0.142668 3.8375e-10 -0.12432)
(-0.128781 2.96716e-10 -0.144927)
(-0.114646 1.47462e-10 -0.164936)
(-0.100312 -2.75674e-11 -0.184319)
(-0.0858266 -1.94434e-10 -0.203045)
(-0.0712358 -3.2795e-10 -0.22109)
(-0.0565856 -4.14843e-10 -0.238432)
(-0.0419199 -4.53479e-10 -0.25505)
(-0.0272804 -4.4969e-10 -0.27093)
(-0.012707 -4.21251e-10 -0.28606)
(0.00176372 -3.80538e-10 -0.30043)
(0.016096 -3.41873e-10 -0.314033)
(0.0302583 -3.14155e-10 -0.326866)
(0.0442225 -3.02037e-10 -0.33893)
(0.0579634 -3.07974e-10 -0.350227)
(0.071459 -3.30252e-10 -0.360763)
(0.0846896 -3.66902e-10 -0.370544)
(0.0976385 -4.14216e-10 -0.379579)
(0.110291 -4.68587e-10 -0.38788)
(0.122636 -5.27639e-10 -0.395459)
(0.134662 -5.89606e-10 -0.402327)
(0.146363 -6.52366e-10 -0.408502)
(0.157732 -7.15842e-10 -0.413996)
(0.168764 -7.78756e-10 -0.418828)
(0.179457 -8.40545e-10 -0.423012)
(0.18981 -9.00596e-10 -0.426568)
(0.199821 -9.57451e-10 -0.429511)
(0.209492 -1.00988e-09 -0.431861)
(0.218825 -1.056e-09 -0.433636)
(0.227822 -1.09388e-09 -0.434854)
(0.236487 -1.12162e-09 -0.435534)
(0.244823 -1.13715e-09 -0.435694)
(0.252834 -1.13881e-09 -0.435354)
(0.260527 -1.12538e-09 -0.434532)
(0.267905 -1.09609e-09 -0.433247)
(0.274976 -1.05057e-09 -0.431518)
(0.281744 -9.88944e-10 -0.429364)
(0.288216 -9.11796e-10 -0.426804)
(0.294398 -8.19998e-10 -0.423855)
(0.300297 -7.14853e-10 -0.420537)
(0.305919 -5.97435e-10 -0.416868)
(0.311271 -4.69356e-10 -0.412866)
(0.31636 -3.31739e-10 -0.408549)
(0.321193 -1.86196e-10 -0.403935)
(0.325776 -3.40302e-11 -0.399042)
(0.330116 1.23352e-10 -0.393886)
(0.33422 2.84723e-10 -0.388485)
(0.338094 4.48805e-10 -0.382856)
(0.341747 6.14063e-10 -0.377015)
(0.345183 7.79067e-10 -0.370979)
(0.34841 9.42128e-10 -0.364762)
(0.351435 1.10164e-09 -0.358381)
(0.354264 1.25567e-09 -0.351851)
(0.356903 1.4023e-09 -0.345186)
(0.359359 1.53967e-09 -0.3384)
(0.361639 1.66576e-09 -0.331508)
(0.363748 1.77889e-09 -0.324521)
(0.365693 1.87757e-09 -0.317454)
(0.367479 1.96043e-09 -0.310318)
(0.369114 2.02662e-09 -0.303125)
(0.370603 2.07529e-09 -0.295887)
(0.371951 2.10622e-09 -0.288612)
(0.373165 2.11933e-09 -0.281313)
(0.374251 2.11492e-09 -0.273998)
(0.375213 2.09332e-09 -0.266676)
(0.376057 2.05498e-09 -0.259354)
(0.376789 2.00094e-09 -0.252042)
(0.377414 1.93181e-09 -0.244745)
(0.377937 1.84869e-09 -0.23747)
(0.378363 1.75284e-09 -0.230222)
(0.378697 1.64589e-09 -0.223007)
(0.378943 1.52934e-09 -0.215828)
(0.379107 1.40599e-09 -0.20869)
(0.379193 1.27848e-09 -0.201596)
(0.379205 1.15001e-09 -0.194547)
(0.379147 1.02405e-09 -0.187546)
(0.379023 9.04705e-10 -0.180594)
(0.378836 7.95744e-10 -0.17369)
(0.378592 7.01128e-10 -0.166836)
(0.378292 6.24412e-10 -0.16003)
(0.37794 5.68666e-10 -0.15327)
(0.377539 5.36038e-10 -0.146556)
(0.377091 5.27911e-10 -0.139884)
(0.3766 5.44566e-10 -0.133251)
(0.376066 5.84855e-10 -0.126655)
(0.375492 6.46654e-10 -0.12009)
(0.37488 7.26667e-10 -0.113553)
(0.374231 8.2052e-10 -0.107038)
(0.373546 9.22842e-10 -0.100541)
(0.372825 1.0277e-09 -0.0940554)
(0.372068 1.12844e-09 -0.0875759)
(0.371275 1.21876e-09 -0.0810963)
(0.370447 1.2925e-09 -0.0746102)
(0.369581 1.34501e-09 -0.0681112)
(0.368676 1.37368e-09 -0.0615925)
(0.367731 1.37785e-09 -0.0550475)
(0.366743 1.35897e-09 -0.0484697)
(0.365708 1.32098e-09 -0.0418525)
(0.364625 1.2693e-09 -0.0351894)
(0.363488 1.20974e-09 -0.0284744)
(0.362293 1.14779e-09 -0.0217014)
(0.361035 1.08598e-09 -0.014865)
(0.359708 1.02393e-09 -0.00796012)
(0.358306 9.56654e-10 -0.000982311)
(0.356822 8.76968e-10 0.00607242)
(0.355248 7.77601e-10 0.0132073)
(0.353576 6.55711e-10 0.0204245)
(0.351796 5.17642e-10 0.0277254)
(0.349899 3.81049e-10 0.0351104)
(0.347875 2.73878e-10 0.0425787)
(0.345712 2.28377e-10 0.050128)
(0.343399 2.70937e-10 0.0577551)
(0.340923 4.11318e-10 0.0654548)
(0.338271 6.3599e-10 0.0732207)
(0.33543 9.09846e-10 0.0810445)
(0.332385 1.18802e-09 0.0889161)
(0.329122 1.43289e-09 0.0968234)
(0.325626 1.62878e-09 0.104752)
(0.321881 1.78755e-09 0.112687)
(0.317871 1.93818e-09 0.120608)
(0.313581 2.11438e-09 0.128496)
(0.308995 2.34911e-09 0.136327)
(0.304097 2.69073e-09 0.144075)
(0.298873 3.23556e-09 0.151712)
(0.293306 4.14652e-09 0.159209)
(0.287384 5.61615e-09 0.166532)
(0.281093 7.74748e-09 0.173645)
(0.274421 1.0382e-08 0.180511)
(0.267357 1.29653e-08 0.18709)
(0.259892 1.45744e-08 0.19334)
(0.25202 1.41733e-08 0.199216)
(0.243736 1.10497e-08 0.204674)
(0.235037 5.23743e-09 0.209666)
(0.225924 -2.27871e-09 0.214144)
(0.216401 -9.66732e-09 0.218059)
(0.206476 -1.45368e-08 0.221362)
(0.196157 -1.41917e-08 0.224004)
(0.185461 -5.83522e-09 0.225936)
(0.174406 1.2833e-08 0.227111)
(0.163014 4.17635e-08 0.227482)
(0.151312 7.47523e-08 0.227003)
(0.139332 9.45638e-08 0.225632)
(0.127109 7.12308e-08 0.223325)
(0.114685 -2.83918e-08 0.220039)
(0.102106 -2.13466e-07 0.215729)
(0.0894221 -4.35205e-07 0.210345)
(0.0766934 -5.91275e-07 0.203822)
(0.0639842 -6.21181e-07 0.196071)
(0.051375 -6.00647e-07 0.186946)
(0.03894 -2.97044e-07 0.176197)
(0.0269717 -2.98902e-07 0.163372)
(0.0150612 -4.98256e-07 0.147841)
(0.00686659 -2.65481e-06 0.127465)
(-0.0141604 -1.99461e-06 0.841724)
(-0.0332667 2.28311e-07 0.869909)
(-0.0541657 1.73858e-07 0.868612)
(-0.0749175 3.25709e-08 0.860757)
(-0.094839 -1.60565e-08 0.849817)
(-0.113933 -3.20255e-08 0.836827)
(-0.132202 -4.17578e-08 0.822282)
(-0.149625 -5.08683e-08 0.806465)
(-0.16619 -5.76615e-08 0.789562)
(-0.18188 -5.57322e-08 0.771708)
(-0.196682 -4.52485e-08 0.753004)
(-0.210584 -3.03804e-08 0.733534)
(-0.223576 -1.56376e-08 0.713369)
(-0.235651 -2.79809e-09 0.692568)
(-0.246804 8.88445e-09 0.671187)
(-0.257032 2.05621e-08 0.649274)
(-0.266333 3.20812e-08 0.626875)
(-0.274708 4.18014e-08 0.604034)
(-0.282158 4.76158e-08 0.58079)
(-0.288685 4.81878e-08 0.557182)
(-0.294293 4.36168e-08 0.533246)
(-0.298989 3.53044e-08 0.509018)
(-0.302778 2.52925e-08 0.484531)
(-0.305668 1.55127e-08 0.459819)
(-0.307667 7.29989e-09 0.434912)
(-0.308785 1.27418e-09 0.409843)
(-0.309033 -2.50952e-09 0.38464)
(-0.30842 -4.32358e-09 0.359334)
(-0.306961 -4.57848e-09 0.333953)
(-0.304668 -3.72096e-09 0.308526)
(-0.301554 -2.19458e-09 0.283079)
(-0.297635 -4.1861e-10 0.257641)
(-0.292927 1.2387e-09 0.232239)
(-0.287445 2.49615e-09 0.206901)
(-0.281209 3.19185e-09 0.181653)
(-0.274236 3.29843e-09 0.156524)
(-0.266548 2.91075e-09 0.131543)
(-0.258167 2.2089e-09 0.106738)
(-0.249116 1.40295e-09 0.08214)
(-0.239421 6.78592e-10 0.0577798)
(-0.22911 1.5961e-10 0.0336896)
(-0.218215 -1.09318e-10 0.00990247)
(-0.206766 -1.53674e-10 -0.0135455)
(-0.194807 -4.4495e-11 -0.0366121)
(-0.182374 1.31002e-10 -0.0592598)
(-0.16951 2.91918e-10 -0.0814514)
(-0.15626 3.84137e-10 -0.10315)
(-0.142668 3.83749e-10 -0.12432)
(-0.128781 2.96715e-10 -0.144927)
(-0.114646 1.47461e-10 -0.164936)
(-0.100312 -2.75673e-11 -0.184319)
(-0.0858266 -1.94434e-10 -0.203045)
(-0.0712359 -3.27949e-10 -0.22109)
(-0.0565856 -4.14842e-10 -0.238432)
(-0.04192 -4.53478e-10 -0.25505)
(-0.0272805 -4.49689e-10 -0.27093)
(-0.012707 -4.2125e-10 -0.28606)
(0.00176369 -3.80537e-10 -0.30043)
(0.016096 -3.41872e-10 -0.314033)
(0.0302583 -3.14154e-10 -0.326866)
(0.0442225 -3.02036e-10 -0.33893)
(0.0579634 -3.07973e-10 -0.350227)
(0.0714589 -3.30251e-10 -0.360763)
(0.0846896 -3.66901e-10 -0.370544)
(0.0976384 -4.14215e-10 -0.37958)
(0.110291 -4.68586e-10 -0.38788)
(0.122636 -5.27638e-10 -0.395459)
(0.134662 -5.89604e-10 -0.402327)
(0.146363 -6.52364e-10 -0.408502)
(0.157732 -7.1584e-10 -0.413996)
(0.168764 -7.78754e-10 -0.418828)
(0.179457 -8.40543e-10 -0.423012)
(0.18981 -9.00594e-10 -0.426568)
(0.199821 -9.57449e-10 -0.429511)
(0.209492 -1.00988e-09 -0.431861)
(0.218825 -1.056e-09 -0.433636)
(0.227822 -1.09388e-09 -0.434854)
(0.236487 -1.12161e-09 -0.435534)
(0.244823 -1.13715e-09 -0.435694)
(0.252834 -1.13881e-09 -0.435354)
(0.260527 -1.12537e-09 -0.434532)
(0.267905 -1.09609e-09 -0.433247)
(0.274976 -1.05057e-09 -0.431518)
(0.281744 -9.88942e-10 -0.429364)
(0.288216 -9.11795e-10 -0.426804)
(0.294398 -8.19997e-10 -0.423855)
(0.300297 -7.14852e-10 -0.420537)
(0.305919 -5.97435e-10 -0.416868)
(0.311271 -4.69355e-10 -0.412866)
(0.31636 -3.31739e-10 -0.408549)
(0.321193 -1.86196e-10 -0.403935)
(0.325776 -3.40302e-11 -0.399042)
(0.330116 1.23352e-10 -0.393886)
(0.33422 2.84722e-10 -0.388485)
(0.338094 4.48804e-10 -0.382856)
(0.341747 6.14063e-10 -0.377015)
(0.345183 7.79066e-10 -0.370979)
(0.34841 9.42127e-10 -0.364762)
(0.351435 1.10164e-09 -0.358381)
(0.354264 1.25567e-09 -0.351851)
(0.356903 1.4023e-09 -0.345186)
(0.359359 1.53966e-09 -0.3384)
(0.361639 1.66576e-09 -0.331508)
(0.363748 1.77889e-09 -0.324521)
(0.365693 1.87757e-09 -0.317454)
(0.367479 1.96043e-09 -0.310318)
(0.369114 2.02662e-09 -0.303125)
(0.370603 2.07529e-09 -0.295887)
(0.371951 2.10622e-09 -0.288612)
(0.373165 2.11932e-09 -0.281313)
(0.374251 2.11492e-09 -0.273998)
(0.375213 2.09332e-09 -0.266675)
(0.376057 2.05498e-09 -0.259354)
(0.376789 2.00094e-09 -0.252042)
(0.377414 1.93181e-09 -0.244745)
(0.377937 1.84869e-09 -0.23747)
(0.378363 1.75284e-09 -0.230222)
(0.378697 1.64589e-09 -0.223007)
(0.378944 1.52934e-09 -0.215828)
(0.379107 1.40599e-09 -0.20869)
(0.379193 1.27848e-09 -0.201596)
(0.379205 1.15001e-09 -0.194547)
(0.379147 1.02405e-09 -0.187546)
(0.379023 9.04705e-10 -0.180594)
(0.378836 7.95744e-10 -0.17369)
(0.378592 7.01128e-10 -0.166836)
(0.378292 6.24412e-10 -0.16003)
(0.37794 5.68666e-10 -0.15327)
(0.377539 5.36038e-10 -0.146556)
(0.377091 5.27911e-10 -0.139884)
(0.3766 5.44566e-10 -0.133251)
(0.376066 5.84855e-10 -0.126655)
(0.375492 6.46654e-10 -0.12009)
(0.374881 7.26667e-10 -0.113553)
(0.374231 8.2052e-10 -0.107038)
(0.373546 9.22842e-10 -0.100541)
(0.372825 1.0277e-09 -0.0940554)
(0.372068 1.12844e-09 -0.087576)
(0.371275 1.21876e-09 -0.0810964)
(0.370447 1.2925e-09 -0.0746103)
(0.369581 1.34501e-09 -0.0681112)
(0.368676 1.37368e-09 -0.0615925)
(0.367731 1.37785e-09 -0.0550475)
(0.366743 1.35897e-09 -0.0484697)
(0.365708 1.32098e-09 -0.0418525)
(0.364625 1.2693e-09 -0.0351894)
(0.363488 1.20974e-09 -0.0284744)
(0.362293 1.14779e-09 -0.0217014)
(0.361035 1.08598e-09 -0.014865)
(0.359708 1.02393e-09 -0.00796014)
(0.358306 9.56654e-10 -0.000982323)
(0.356822 8.76968e-10 0.00607241)
(0.355248 7.77601e-10 0.0132072)
(0.353576 6.55711e-10 0.0204245)
(0.351796 5.17642e-10 0.0277254)
(0.349899 3.81049e-10 0.0351104)
(0.347875 2.73878e-10 0.0425786)
(0.345712 2.28377e-10 0.050128)
(0.343399 2.70937e-10 0.0577551)
(0.340923 4.11318e-10 0.0654548)
(0.338271 6.3599e-10 0.0732207)
(0.33543 9.09846e-10 0.0810445)
(0.332385 1.18802e-09 0.0889161)
(0.329122 1.43289e-09 0.0968234)
(0.325626 1.62878e-09 0.104752)
(0.321881 1.78755e-09 0.112687)
(0.317871 1.93818e-09 0.120608)
(0.313581 2.11438e-09 0.128496)
(0.308995 2.34911e-09 0.136327)
(0.304097 2.69073e-09 0.144075)
(0.298873 3.23556e-09 0.151712)
(0.293306 4.14652e-09 0.159209)
(0.287384 5.61615e-09 0.166532)
(0.281093 7.74748e-09 0.173645)
(0.274421 1.0382e-08 0.180511)
(0.267357 1.29653e-08 0.18709)
(0.259892 1.45744e-08 0.19334)
(0.25202 1.41733e-08 0.199216)
(0.243735 1.10498e-08 0.204674)
(0.235037 5.23743e-09 0.209666)
(0.225924 -2.27871e-09 0.214144)
(0.216401 -9.66733e-09 0.218059)
(0.206475 -1.45368e-08 0.221362)
(0.196157 -1.41917e-08 0.224004)
(0.185461 -5.83522e-09 0.225936)
(0.174406 1.2833e-08 0.227111)
(0.163014 4.17635e-08 0.227482)
(0.151312 7.47524e-08 0.227004)
(0.139332 9.45639e-08 0.225632)
(0.12711 7.12309e-08 0.223325)
(0.114686 -2.83919e-08 0.22004)
(0.102106 -2.13468e-07 0.21573)
(0.0894237 -4.35216e-07 0.210347)
(0.0766964 -5.91301e-07 0.203826)
(0.0639887 -6.2122e-07 0.196078)
(0.0513814 -6.00663e-07 0.186957)
(0.0389467 -2.96978e-07 0.176208)
(0.0269842 -2.98653e-07 0.163374)
(0.0150811 -4.97657e-07 0.147806)
(0.00690386 -2.65412e-06 0.127337)
(-0.014224 5.57257e-08 0.864542)
(-0.0332435 4.72791e-07 0.89283)
(-0.0540612 1.67608e-08 0.890807)
(-0.0747798 -6.17397e-08 0.882137)
(-0.0946585 -7.21423e-08 0.870338)
(-0.113697 -6.6191e-08 0.856469)
(-0.131878 -6.04532e-08 0.841028)
(-0.149183 -5.48711e-08 0.824296)
(-0.165595 -4.84955e-08 0.806462)
(-0.181096 -3.85841e-08 0.787661)
(-0.195675 -2.6199e-08 0.767997)
(-0.209319 -1.35127e-08 0.747557)
(-0.22202 -1.96076e-09 0.726412)
(-0.23377 8.62298e-09 0.704626)
(-0.244566 1.91491e-08 0.682255)
(-0.254404 2.98814e-08 0.65935)
(-0.263283 3.97994e-08 0.635959)
(-0.271205 4.70433e-08 0.612126)
(-0.278171 4.99323e-08 0.587893)
(-0.284184 4.78221e-08 0.563299)
(-0.28925 4.13586e-08 0.538384)
(-0.293374 3.21336e-08 0.513182)
(-0.296563 2.20434e-08 0.48773)
(-0.298826 1.27052e-08 0.462061)
(-0.300172 5.14345e-09 0.436207)
(-0.300611 -2.22903e-10 0.410202)
(-0.300154 -3.41698e-09 0.384076)
(-0.298814 -4.71343e-09 0.357858)
(-0.296604 -4.51194e-09 0.33158)
(-0.293538 -3.27479e-09 0.30527)
(-0.28963 -1.48675e-09 0.278956)
(-0.284896 3.9579e-10 0.252668)
(-0.279354 2.00079e-09 0.226433)
(-0.27302 3.08738e-09 0.200281)
(-0.265915 3.56346e-09 0.17424)
(-0.25806 3.47195e-09 0.148339)
(-0.249475 2.95363e-09 0.122609)
(-0.240187 2.19992e-09 0.0970814)
(-0.230221 1.40195e-09 0.0717877)
(-0.219606 7.12887e-10 0.0467617)
(-0.208374 2.26151e-10 0.0220382)
(-0.196557 -3.41468e-11 -0.00234683)
(-0.184198 -9.76316e-11 -0.0263503)
(-0.171339 -2.96043e-11 -0.049929)
(-0.158024 9.37678e-11 -0.0730436)
(-0.1443 2.04044e-10 -0.0956547)
(-0.130216 2.55601e-10 -0.117723)
(-0.115822 2.27955e-10 -0.139212)
(-0.10117 1.27655e-10 -0.160086)
(-0.0863101 -2.21774e-11 -0.18031)
(-0.0712952 -1.91979e-10 -0.199855)
(-0.0561755 -3.49477e-10 -0.218693)
(-0.0410007 -4.7112e-10 -0.236799)
(-0.0258179 -5.44608e-10 -0.254154)
(-0.010673 -5.72014e-10 -0.270739)
(0.0043919 -5.59017e-10 -0.286544)
(0.0193345 -5.23213e-10 -0.301557)
(0.0341186 -4.77872e-10 -0.31577)
(0.0487108 -4.36931e-10 -0.329183)
(0.0630815 -4.09878e-10 -0.341796)
(0.0772043 -3.99831e-10 -0.353612)
(0.0910557 -4.0858e-10 -0.364638)
(0.104616 -4.33644e-10 -0.374881)
(0.117866 -4.71647e-10 -0.384351)
(0.130794 -5.19701e-10 -0.393061)
(0.143385 -5.74199e-10 -0.401023)
(0.155632 -6.32609e-10 -0.408252)
(0.167526 -6.93014e-10 -0.414764)
(0.179061 -7.5365e-10 -0.420574)
(0.190235 -8.13902e-10 -0.425701)
(0.201044 -8.72519e-10 -0.430162)
(0.211489 -9.28656e-10 -0.433975)
(0.22157 -9.81086e-10 -0.43716)
(0.23129 -1.0285e-09 -0.439733)
(0.240649 -1.06894e-09 -0.441716)
(0.249654 -1.10028e-09 -0.443126)
(0.258307 -1.1206e-09 -0.443984)
(0.266614 -1.12777e-09 -0.444308)
(0.274581 -1.11997e-09 -0.444118)
(0.282213 -1.09577e-09 -0.443433)
(0.289517 -1.05419e-09 -0.442273)
(0.2965 -9.94734e-10 -0.440656)
(0.303169 -9.17664e-10 -0.438602)
(0.30953 -8.23566e-10 -0.43613)
(0.315592 -7.13539e-10 -0.433259)
(0.321362 -5.88837e-10 -0.430006)
(0.326846 -4.51197e-10 -0.426392)
(0.332054 -3.02461e-10 -0.422435)
(0.336991 -1.44188e-10 -0.418152)
(0.341667 2.16272e-11 -0.413561)
(0.346088 1.93324e-10 -0.408681)
(0.350261 3.69035e-10 -0.403529)
(0.354195 5.46996e-10 -0.398123)
(0.357897 7.25392e-10 -0.392479)
(0.361373 9.02332e-10 -0.386613)
(0.364632 1.07592e-09 -0.380544)
(0.367681 1.24399e-09 -0.374286)
(0.370525 1.40454e-09 -0.367855)
(0.373174 1.5551e-09 -0.361267)
(0.375632 1.69349e-09 -0.354537)
(0.377908 1.81768e-09 -0.347679)
(0.380008 1.92552e-09 -0.340707)
(0.381938 2.0152e-09 -0.333635)
(0.383705 2.08545e-09 -0.326476)
(0.385315 2.13519e-09 -0.319242)
(0.386775 2.16405e-09 -0.311947)
(0.388091 2.17188e-09 -0.304601)
(0.389268 2.15934e-09 -0.297215)
(0.390314 2.12706e-09 -0.2898)
(0.391233 2.07657e-09 -0.282366)
(0.392031 2.00928e-09 -0.274922)
(0.392715 1.92671e-09 -0.267477)
(0.393289 1.83083e-09 -0.260039)
(0.393759 1.72352e-09 -0.252615)
(0.394131 1.6068e-09 -0.245212)
(0.394409 1.48264e-09 -0.237836)
(0.394598 1.35345e-09 -0.230493)
(0.394704 1.22164e-09 -0.223187)
(0.39473 1.09e-09 -0.215923)
(0.394682 9.61668e-10 -0.208705)
(0.394564 8.3998e-10 -0.201534)
(0.394381 7.28441e-10 -0.194414)
(0.394136 6.30658e-10 -0.187345)
(0.393833 5.4988e-10 -0.18033)
(0.393476 4.89123e-10 -0.173367)
(0.393068 4.50742e-10 -0.166457)
(0.392614 4.36323e-10 -0.159598)
(0.392115 4.46378e-10 -0.152789)
(0.391575 4.8032e-10 -0.146028)
(0.390997 5.36512e-10 -0.139313)
(0.390383 6.12092e-10 -0.132639)
(0.389734 7.03122e-10 -0.126003)
(0.389054 8.04794e-10 -0.119401)
(0.388343 9.11866e-10 -0.112828)
(0.387602 1.01863e-09 -0.106278)
(0.386833 1.11952e-09 -0.0997469)
(0.386035 1.20893e-09 -0.0932279)
(0.38521 1.28157e-09 -0.0867148)
(0.384357 1.33277e-09 -0.0802011)
(0.383475 1.35875e-09 -0.07368)
(0.382563 1.35737e-09 -0.0671447)
(0.38162 1.32856e-09 -0.0605879)
(0.380643 1.27463e-09 -0.0540025)
(0.379631 1.20016e-09 -0.0473815)
(0.37858 1.11157e-09 -0.0407176)
(0.377487 1.01645e-09 -0.0340039)
(0.376347 9.22625e-10 -0.0272336)
(0.375156 8.36322e-10 -0.0204003)
(0.373908 7.60837e-10 -0.0134976)
(0.372598 6.95429e-10 -0.00651996)
(0.371219 6.35084e-10 0.000537846)
(0.369763 5.71409e-10 0.00768047)
(0.368222 4.9678e-10 0.0149119)
(0.366588 4.08407e-10 0.022235)
(0.364852 3.12737e-10 0.029652)
(0.363002 2.27911e-10 0.0371639)
(0.361029 1.82412e-10 0.0447707)
(0.35892 2.08153e-10 0.0524711)
(0.356662 3.3076e-10 0.0602622)
(0.354243 5.58506e-10 0.0681398)
(0.351649 8.76764e-10 0.0760982)
(0.348865 1.25048e-09 0.0841295)
(0.345875 1.63676e-09 0.0922245)
(0.342665 2.00037e-09 0.100371)
(0.339217 2.32634e-09 0.108557)
(0.335514 2.62104e-09 0.116765)
(0.331541 2.90219e-09 0.124977)
(0.327278 3.1879e-09 0.133173)
(0.322709 3.49984e-09 0.141329)
(0.317816 3.88686e-09 0.14942)
(0.312582 4.46009e-09 0.157418)
(0.30699 5.40065e-09 0.165291)
(0.301023 6.89972e-09 0.173005)
(0.294668 9.01903e-09 0.180524)
(0.287909 1.15168e-08 0.187809)
(0.280733 1.37527e-08 0.194818)
(0.27313 1.47834e-08 0.201507)
(0.26509 1.36883e-08 0.207831)
(0.256606 1.00262e-08 0.21374)
(0.247675 4.21453e-09 0.219185)
(0.238295 -2.35488e-09 0.224115)
(0.228468 -7.49035e-09 0.228477)
(0.218201 -8.52677e-09 0.232218)
(0.207501 -2.65964e-09 0.235285)
(0.196384 1.26035e-08 0.237626)
(0.184868 3.83831e-08 0.239188)
(0.172974 7.20449e-08 0.239919)
(0.160731 1.03253e-07 0.23977)
(0.14817 1.10121e-07 0.238692)
(0.135329 6.09811e-08 0.236637)
(0.12225 -6.92889e-08 0.233556)
(0.108982 -2.65229e-07 0.229398)
(0.0955792 -4.42681e-07 0.224106)
(0.0821025 -4.90105e-07 0.217608)
(0.0686193 -4.20081e-07 0.209805)
(0.0552126 -4.13955e-07 0.200535)
(0.0419583 -1.9525e-07 0.189506)
(0.029185 4.50707e-08 0.176124)
(0.0162329 1.62984e-07 0.159365)
(0.0116673 -5.55142e-06 0.138335)
(-0.0142215 5.57254e-08 0.864558)
(-0.0332424 4.72791e-07 0.892831)
(-0.0540618 1.67608e-08 0.890803)
(-0.074781 -6.17397e-08 0.882133)
(-0.09466 -7.21423e-08 0.870334)
(-0.113698 -6.61909e-08 0.856467)
(-0.13188 -6.04532e-08 0.841026)
(-0.149185 -5.48711e-08 0.824295)
(-0.165596 -4.84955e-08 0.806461)
(-0.181097 -3.85842e-08 0.78766)
(-0.195676 -2.6199e-08 0.767997)
(-0.20932 -1.35128e-08 0.747557)
(-0.22202 -1.96076e-09 0.726412)
(-0.23377 8.62299e-09 0.704626)
(-0.244566 1.91491e-08 0.682255)
(-0.254404 2.98815e-08 0.65935)
(-0.263284 3.97994e-08 0.635959)
(-0.271205 4.70434e-08 0.612126)
(-0.278171 4.99324e-08 0.587893)
(-0.284184 4.78222e-08 0.563299)
(-0.28925 4.13586e-08 0.538384)
(-0.293374 3.21336e-08 0.513182)
(-0.296563 2.20434e-08 0.48773)
(-0.298826 1.27052e-08 0.462061)
(-0.300172 5.14346e-09 0.436207)
(-0.300611 -2.22903e-10 0.410202)
(-0.300154 -3.41698e-09 0.384076)
(-0.298814 -4.71343e-09 0.357859)
(-0.296604 -4.51194e-09 0.33158)
(-0.293538 -3.27479e-09 0.30527)
(-0.28963 -1.48675e-09 0.278956)
(-0.284896 3.9579e-10 0.252668)
(-0.279354 2.00079e-09 0.226433)
(-0.27302 3.08738e-09 0.200281)
(-0.265915 3.56345e-09 0.17424)
(-0.25806 3.47195e-09 0.148339)
(-0.249476 2.95363e-09 0.122609)
(-0.240187 2.19992e-09 0.0970815)
(-0.230221 1.40195e-09 0.0717877)
(-0.219606 7.12886e-10 0.0467617)
(-0.208374 2.2615e-10 0.0220382)
(-0.196557 -3.41467e-11 -0.0023468)
(-0.184198 -9.76314e-11 -0.0263502)
(-0.171339 -2.96042e-11 -0.049929)
(-0.158024 9.37676e-11 -0.0730436)
(-0.1443 2.04044e-10 -0.0956547)
(-0.130216 2.55601e-10 -0.117723)
(-0.115822 2.27955e-10 -0.139212)
(-0.10117 1.27655e-10 -0.160086)
(-0.0863101 -2.21774e-11 -0.18031)
(-0.0712952 -1.91979e-10 -0.199855)
(-0.0561755 -3.49476e-10 -0.218693)
(-0.0410007 -4.71119e-10 -0.236799)
(-0.0258179 -5.44606e-10 -0.254154)
(-0.010673 -5.72013e-10 -0.270739)
(0.00439188 -5.59016e-10 -0.286544)
(0.0193345 -5.23211e-10 -0.301557)
(0.0341186 -4.7787e-10 -0.31577)
(0.0487108 -4.3693e-10 -0.329183)
(0.0630815 -4.09877e-10 -0.341796)
(0.0772043 -3.9983e-10 -0.353612)
(0.0910557 -4.08579e-10 -0.364638)
(0.104616 -4.33643e-10 -0.374881)
(0.117866 -4.71646e-10 -0.384351)
(0.130794 -5.197e-10 -0.393061)
(0.143385 -5.74197e-10 -0.401023)
(0.155632 -6.32608e-10 -0.408252)
(0.167526 -6.93013e-10 -0.414764)
(0.179061 -7.53648e-10 -0.420574)
(0.190235 -8.13901e-10 -0.425701)
(0.201044 -8.72518e-10 -0.430162)
(0.211489 -9.28654e-10 -0.433975)
(0.221571 -9.81084e-10 -0.43716)
(0.23129 -1.0285e-09 -0.439733)
(0.24065 -1.06894e-09 -0.441716)
(0.249654 -1.10028e-09 -0.443126)
(0.258307 -1.1206e-09 -0.443984)
(0.266614 -1.12777e-09 -0.444308)
(0.274581 -1.11996e-09 -0.444118)
(0.282213 -1.09577e-09 -0.443433)
(0.289517 -1.05419e-09 -0.442273)
(0.2965 -9.94732e-10 -0.440656)
(0.303169 -9.17663e-10 -0.438602)
(0.30953 -8.23565e-10 -0.43613)
(0.315592 -7.13539e-10 -0.433259)
(0.321362 -5.88836e-10 -0.430006)
(0.326846 -4.51197e-10 -0.426392)
(0.332054 -3.02461e-10 -0.422435)
(0.336991 -1.44188e-10 -0.418152)
(0.341667 2.16272e-11 -0.413561)
(0.346088 1.93323e-10 -0.408681)
(0.350261 3.69034e-10 -0.403529)
(0.354195 5.46995e-10 -0.398123)
(0.357897 7.25392e-10 -0.392479)
(0.361373 9.02331e-10 -0.386613)
(0.364632 1.07592e-09 -0.380544)
(0.367681 1.24399e-09 -0.374286)
(0.370525 1.40454e-09 -0.367855)
(0.373174 1.5551e-09 -0.361267)
(0.375632 1.69349e-09 -0.354537)
(0.377908 1.81768e-09 -0.347679)
(0.380008 1.92552e-09 -0.340707)
(0.381938 2.0152e-09 -0.333635)
(0.383705 2.08545e-09 -0.326476)
(0.385315 2.13519e-09 -0.319242)
(0.386775 2.16404e-09 -0.311947)
(0.388091 2.17188e-09 -0.304601)
(0.389268 2.15934e-09 -0.297215)
(0.390314 2.12706e-09 -0.2898)
(0.391233 2.07657e-09 -0.282366)
(0.392031 2.00928e-09 -0.274922)
(0.392715 1.9267e-09 -0.267477)
(0.393289 1.83083e-09 -0.260039)
(0.39376 1.72352e-09 -0.252615)
(0.394131 1.6068e-09 -0.245212)
(0.394409 1.48264e-09 -0.237836)
(0.394598 1.35345e-09 -0.230493)
(0.394704 1.22164e-09 -0.223187)
(0.39473 1.09e-09 -0.215923)
(0.394682 9.61668e-10 -0.208705)
(0.394564 8.3998e-10 -0.201534)
(0.394381 7.28441e-10 -0.194414)
(0.394136 6.30658e-10 -0.187345)
(0.393833 5.4988e-10 -0.18033)
(0.393476 4.89123e-10 -0.173367)
(0.393068 4.50742e-10 -0.166457)
(0.392614 4.36323e-10 -0.159598)
(0.392115 4.46378e-10 -0.152789)
(0.391575 4.8032e-10 -0.146028)
(0.390997 5.36512e-10 -0.139313)
(0.390383 6.12092e-10 -0.132639)
(0.389734 7.03122e-10 -0.126003)
(0.389054 8.04794e-10 -0.119401)
(0.388343 9.11866e-10 -0.112828)
(0.387602 1.01863e-09 -0.106278)
(0.386833 1.11952e-09 -0.099747)
(0.386035 1.20893e-09 -0.0932279)
(0.38521 1.28157e-09 -0.0867148)
(0.384357 1.33277e-09 -0.0802011)
(0.383475 1.35875e-09 -0.0736801)
(0.382563 1.35737e-09 -0.0671447)
(0.38162 1.32856e-09 -0.0605879)
(0.380643 1.27463e-09 -0.0540025)
(0.379631 1.20016e-09 -0.0473815)
(0.37858 1.11157e-09 -0.0407176)
(0.377487 1.01645e-09 -0.0340039)
(0.376347 9.22625e-10 -0.0272336)
(0.375156 8.36322e-10 -0.0204003)
(0.373908 7.60837e-10 -0.0134976)
(0.372598 6.95429e-10 -0.00651997)
(0.371219 6.35084e-10 0.000537834)
(0.369763 5.71409e-10 0.00768045)
(0.368222 4.9678e-10 0.0149118)
(0.366589 4.08407e-10 0.022235)
(0.364852 3.12737e-10 0.029652)
(0.363002 2.27911e-10 0.0371639)
(0.361029 1.82412e-10 0.0447707)
(0.35892 2.08153e-10 0.052471)
(0.356662 3.3076e-10 0.0602622)
(0.354243 5.58506e-10 0.0681398)
(0.351649 8.76764e-10 0.0760981)
(0.348865 1.25048e-09 0.0841295)
(0.345875 1.63676e-09 0.0922245)
(0.342665 2.00037e-09 0.100371)
(0.339217 2.32634e-09 0.108557)
(0.335514 2.62104e-09 0.116765)
(0.331541 2.90219e-09 0.124977)
(0.327278 3.1879e-09 0.133173)
(0.322709 3.49984e-09 0.141329)
(0.317816 3.88686e-09 0.14942)
(0.312582 4.46009e-09 0.157418)
(0.30699 5.40066e-09 0.165291)
(0.301024 6.89972e-09 0.173005)
(0.294668 9.01903e-09 0.180524)
(0.287909 1.15168e-08 0.187809)
(0.280733 1.37527e-08 0.194818)
(0.27313 1.47834e-08 0.201507)
(0.26509 1.36883e-08 0.207831)
(0.256606 1.00262e-08 0.21374)
(0.247675 4.21453e-09 0.219185)
(0.238295 -2.35488e-09 0.224115)
(0.228468 -7.49035e-09 0.228477)
(0.218201 -8.52677e-09 0.232218)
(0.207501 -2.65964e-09 0.235285)
(0.196384 1.26035e-08 0.237626)
(0.184868 3.83831e-08 0.239188)
(0.172974 7.20449e-08 0.239919)
(0.160731 1.03253e-07 0.23977)
(0.14817 1.10121e-07 0.238692)
(0.135329 6.09813e-08 0.236637)
(0.122251 -6.92893e-08 0.233556)
(0.108984 -2.65232e-07 0.229398)
(0.0955832 -4.4269e-07 0.224106)
(0.0821097 -4.90121e-07 0.217609)
(0.0686313 -4.20085e-07 0.209806)
(0.0552318 -4.13872e-07 0.200536)
(0.0419855 -1.9505e-07 0.189502)
(0.0292269 4.4947e-08 0.176105)
(0.0162914 1.62473e-07 0.159303)
(0.0117386 -5.54437e-06 0.138277)
(-0.0142515 2.37118e-07 0.887413)
(-0.0332093 1.92989e-08 0.915664)
(-0.0539473 -1.92783e-07 0.912929)
(-0.0745882 -1.37857e-07 0.903445)
(-0.0943744 -9.69825e-08 0.890776)
(-0.113302 -6.82365e-08 0.876006)
(-0.131345 -4.99743e-08 0.859638)
(-0.14848 -3.6497e-08 0.841958)
(-0.164688 -2.57837e-08 0.823157)
(-0.179952 -1.55583e-08 0.803372)
(-0.194258 -5.72453e-09 0.782713)
(-0.207595 3.43563e-09 0.761266)
(-0.219954 1.20365e-08 0.739106)
(-0.231329 2.06639e-08 0.716299)
(-0.241716 2.96785e-08 0.692903)
(-0.251112 3.85523e-08 0.668972)
(-0.259517 4.58712e-08 0.644555)
(-0.266932 4.99776e-08 0.619697)
(-0.27336 4.97834e-08 0.594442)
(-0.278805 4.52597e-08 0.568832)
(-0.283272 3.74035e-08 0.542905)
(-0.286768 2.78031e-08 0.5167)
(-0.289301 1.80918e-08 0.490253)
(-0.290879 9.53567e-09 0.463599)
(-0.291514 2.86593e-09 0.436771)
(-0.291215 -1.67094e-09 0.409803)
(-0.289996 -4.15792e-09 0.382726)
(-0.287868 -4.86719e-09 0.355573)
(-0.284847 -4.18667e-09 0.328373)
(-0.280946 -2.58781e-09 0.301157)
(-0.276182 -5.83825e-10 0.273954)
(-0.270572 1.34493e-09 0.246794)
(-0.264133 2.83532e-09 0.219707)
(-0.256885 3.69542e-09 0.192723)
(-0.248849 3.909e-09 0.165872)
(-0.240048 3.59288e-09 0.139184)
(-0.230505 2.93452e-09 0.112694)
(-0.220249 2.13364e-09 0.0864333)
(-0.209308 1.35714e-09 0.0604376)
(-0.197715 7.20454e-10 0.0347433)
(-0.185505 2.80591e-10 0.00938777)
(-0.172717 3.7772e-11 -0.0155873)
(-0.1594 -4.44037e-11 -0.040133)
(-0.1456 -2.32541e-11 -0.064206)
(-0.131367 4.06572e-11 -0.0877642)
(-0.116754 9.37764e-11 -0.110766)
(-0.101814 1.0117e-10 -0.13317)
(-0.0866027 4.78542e-11 -0.154939)
(-0.0711763 -6.33572e-11 -0.176036)
(-0.0555904 -2.10598e-10 -0.196427)
(-0.0399006 -3.68192e-10 -0.216082)
(-0.0241596 -5.09776e-10 -0.234976)
(-0.00842034 -6.14764e-10 -0.253087)
(0.00726934 -6.72981e-10 -0.270398)
(0.0228594 -6.86116e-10 -0.28689)
(0.0383085 -6.63095e-10 -0.302556)
(0.0535768 -6.19593e-10 -0.31739)
(0.0686293 -5.71209e-10 -0.33139)
(0.0834342 -5.29426e-10 -0.344557)
(0.0979637 -5.03446e-10 -0.356895)
(0.112193 -4.96058e-10 -0.368411)
(0.126101 -5.07031e-10 -0.379114)
(0.13967 -5.3437e-10 -0.389016)
(0.152885 -5.7406e-10 -0.39813)
(0.165734 -6.22802e-10 -0.40647)
(0.178207 -6.76787e-10 -0.414053)
(0.190298 -7.33278e-10 -0.420895)
(0.202002 -7.90664e-10 -0.427014)
(0.213315 -8.46977e-10 -0.432429)
(0.224238 -9.0168e-10 -0.437158)
(0.234769 -9.53264e-10 -0.441221)
(0.244911 -1.0004e-09 -0.444637)
(0.254667 -1.04194e-09 -0.447427)
(0.264041 -1.07585e-09 -0.44961)
(0.273038 -1.10003e-09 -0.451206)
(0.281663 -1.11214e-09 -0.452236)
(0.289923 -1.11021e-09 -0.452719)
(0.297825 -1.09233e-09 -0.452674)
(0.305375 -1.05642e-09 -0.452123)
(0.312583 -1.00188e-09 -0.451084)
(0.319454 -9.27957e-10 -0.449578)
(0.325999 -8.34755e-10 -0.447623)
(0.332224 -7.23094e-10 -0.445239)
(0.338139 -5.942e-10 -0.442445)
(0.343752 -4.49686e-10 -0.43926)
(0.349071 -2.91543e-10 -0.435703)
(0.354105 -1.22049e-10 -0.431792)
(0.358863 5.66232e-11 -0.427546)
(0.363352 2.42097e-10 -0.422984)
(0.367581 4.31968e-10 -0.418122)
(0.371559 6.24065e-10 -0.412979)
(0.375293 8.15982e-10 -0.407572)
(0.378792 1.00537e-09 -0.401919)
(0.382063 1.18995e-09 -0.396036)
(0.385115 1.36729e-09 -0.38994)
(0.387954 1.53477e-09 -0.383647)
(0.39059 1.68993e-09 -0.377174)
(0.393029 1.83033e-09 -0.370536)
(0.395278 1.95342e-09 -0.363748)
(0.397345 2.05683e-09 -0.356825)
(0.399236 2.13861e-09 -0.349781)
(0.400959 2.19712e-09 -0.342631)
(0.402521 2.23121e-09 -0.335388)
(0.403928 2.24042e-09 -0.328064)
(0.405186 2.22479e-09 -0.320673)
(0.406303 2.18524e-09 -0.313227)
(0.407284 2.12305e-09 -0.305736)
(0.408136 2.04029e-09 -0.298212)
(0.408864 1.93923e-09 -0.290666)
(0.409475 1.82264e-09 -0.283106)
(0.409975 1.69343e-09 -0.275543)
(0.410368 1.55424e-09 -0.267984)
(0.410661 1.40811e-09 -0.260437)
(0.410859 1.258e-09 -0.252911)
(0.410967 1.10664e-09 -0.245411)
(0.410991 9.57288e-10 -0.237944)
(0.410934 8.12899e-10 -0.230514)
(0.410803 6.76639e-10 -0.223128)
(0.410602 5.52318e-10 -0.215787)
(0.410335 4.4339e-10 -0.208497)
(0.410007 3.53562e-10 -0.201259)
(0.409621 2.86286e-10 -0.194076)
(0.409183 2.44734e-10 -0.186949)
(0.408696 2.31106e-10 -0.179879)
(0.408163 2.46733e-10 -0.172865)
(0.407589 2.92127e-10 -0.165908)
(0.406975 3.65882e-10 -0.159005)
(0.406326 4.65315e-10 -0.152156)
(0.405645 5.86692e-10 -0.145358)
(0.404933 7.24235e-10 -0.138607)
(0.404193 8.71986e-10 -0.1319)
(0.403428 1.02253e-09 -0.125234)
(0.402638 1.16829e-09 -0.118602)
(0.401826 1.30179e-09 -0.112002)
(0.400993 1.41649e-09 -0.105426)
(0.400139 1.50643e-09 -0.0988687)
(0.399265 1.56727e-09 -0.0923243)
(0.398372 1.59589e-09 -0.0857857)
(0.397458 1.59049e-09 -0.0792461)
(0.396523 1.55039e-09 -0.0726982)
(0.395567 1.47664e-09 -0.0661345)
(0.394587 1.37248e-09 -0.0595476)
(0.393581 1.24381e-09 -0.0529298)
(0.392547 1.09841e-09 -0.0462732)
(0.391482 9.46071e-10 -0.0395704)
(0.390382 7.97126e-10 -0.0328136)
(0.389243 6.61631e-10 -0.0259956)
(0.38806 5.47415e-10 -0.019109)
(0.386828 4.5875e-10 -0.0121471)
(0.38554 3.95026e-10 -0.00510351)
(0.384189 3.51151e-10 0.00202782)
(0.382768 3.17892e-10 0.00925221)
(0.381269 2.86883e-10 0.0165743)
(0.379682 2.54491e-10 0.023998)
(0.377997 2.26268e-10 0.0315262)
(0.376204 2.19563e-10 0.0391607)
(0.374292 2.61066e-10 0.0469024)
(0.372247 3.80696e-10 0.0547507)
(0.370057 6.01311e-10 0.0627036)
(0.367708 9.28371e-10 0.0707579)
(0.365185 1.3452e-09 0.0789083)
(0.362471 1.8165e-09 0.0871481)
(0.359552 2.30013e-09 0.0954683)
(0.35641 2.76245e-09 0.103858)
(0.353026 3.18698e-09 0.112305)
(0.349384 3.57421e-09 0.120792)
(0.345464 3.93132e-09 0.129303)
(0.341246 4.26529e-09 0.137818)
(0.336713 4.5932e-09 0.146311)
(0.331843 4.97161e-09 0.154759)
(0.326619 5.5286e-09 0.163133)
(0.32102 6.45757e-09 0.1714)
(0.315029 7.9353e-09 0.179526)
(0.308628 9.96924e-09 0.187474)
(0.3018 1.22372e-08 0.195203)
(0.29453 1.40395e-08 0.20267)
(0.286804 1.44615e-08 0.209829)
(0.278611 1.27495e-08 0.216632)
(0.269942 8.76181e-09 0.223027)
(0.26079 3.29325e-09 0.228963)
(0.251152 -1.87984e-09 0.234383)
(0.241028 -4.23019e-09 0.239233)
(0.230423 -8.86141e-10 0.243454)
(0.219344 1.08173e-08 0.24699)
(0.207804 3.24825e-08 0.249783)
(0.195821 6.31632e-08 0.251776)
(0.183418 9.69274e-08 0.252912)
(0.17062 1.19649e-07 0.253136)
(0.157462 1.07105e-07 0.252393)
(0.143982 3.04671e-08 0.250631)
(0.130224 -1.22262e-07 0.247794)
(0.116237 -3.11902e-07 0.243826)
(0.102078 -4.4066e-07 0.238664)
(0.0878061 -4.42075e-07 0.232229)
(0.0734895 -4.45032e-07 0.224414)
(0.0592101 -6.35158e-07 0.21505)
(0.0450482 -7.24758e-07 0.203832)
(0.031319 3.58083e-07 0.190094)
(0.0174291 -1.50558e-06 0.172246)
(0.0136765 -9.53784e-06 0.148551)
(-0.0142483 2.37117e-07 0.887419)
(-0.0332072 1.92989e-08 0.915661)
(-0.0539466 -1.92783e-07 0.912924)
(-0.0745882 -1.37857e-07 0.903441)
(-0.0943749 -9.69824e-08 0.890773)
(-0.113303 -6.82365e-08 0.876004)
(-0.131346 -4.99743e-08 0.859636)
(-0.148481 -3.6497e-08 0.841957)
(-0.164689 -2.57837e-08 0.823156)
(-0.179953 -1.55583e-08 0.803372)
(-0.194259 -5.72453e-09 0.782712)
(-0.207596 3.43564e-09 0.761266)
(-0.219955 1.20365e-08 0.739106)
(-0.23133 2.06639e-08 0.716299)
(-0.241716 2.96785e-08 0.692903)
(-0.251112 3.85523e-08 0.668972)
(-0.259517 4.58712e-08 0.644555)
(-0.266933 4.99777e-08 0.619697)
(-0.27336 4.97835e-08 0.594442)
(-0.278805 4.52597e-08 0.568832)
(-0.283272 3.74035e-08 0.542906)
(-0.286768 2.78032e-08 0.516701)
(-0.289301 1.80918e-08 0.490253)
(-0.290879 9.53567e-09 0.463599)
(-0.291514 2.86594e-09 0.436771)
(-0.291215 -1.67095e-09 0.409803)
(-0.289996 -4.15792e-09 0.382726)
(-0.287868 -4.86719e-09 0.355573)
(-0.284847 -4.18667e-09 0.328373)
(-0.280946 -2.58781e-09 0.301157)
(-0.276182 -5.83825e-10 0.273954)
(-0.270572 1.34493e-09 0.246794)
(-0.264133 2.83532e-09 0.219707)
(-0.256885 3.69542e-09 0.192723)
(-0.248849 3.909e-09 0.165872)
(-0.240048 3.59287e-09 0.139184)
(-0.230505 2.93451e-09 0.112694)
(-0.220249 2.13364e-09 0.0864333)
(-0.209308 1.35714e-09 0.0604376)
(-0.197715 7.20453e-10 0.0347433)
(-0.185505 2.8059e-10 0.00938779)
(-0.172717 3.77719e-11 -0.0155873)
(-0.1594 -4.44036e-11 -0.040133)
(-0.1456 -2.3254e-11 -0.064206)
(-0.131367 4.0657e-11 -0.0877642)
(-0.116754 9.37762e-11 -0.110766)
(-0.101814 1.0117e-10 -0.13317)
(-0.0866027 4.78541e-11 -0.154939)
(-0.0711763 -6.33571e-11 -0.176036)
(-0.0555905 -2.10597e-10 -0.196427)
(-0.0399006 -3.68191e-10 -0.216082)
(-0.0241597 -5.09775e-10 -0.234976)
(-0.00842036 -6.14763e-10 -0.253087)
(0.00726933 -6.72979e-10 -0.270398)
(0.0228594 -6.86114e-10 -0.28689)
(0.0383085 -6.63093e-10 -0.302556)
(0.0535768 -6.19591e-10 -0.31739)
(0.0686293 -5.71208e-10 -0.33139)
(0.0834342 -5.29424e-10 -0.344557)
(0.0979636 -5.03445e-10 -0.356895)
(0.112193 -4.96057e-10 -0.368411)
(0.126101 -5.0703e-10 -0.379114)
(0.13967 -5.34369e-10 -0.389016)
(0.152885 -5.74059e-10 -0.39813)
(0.165734 -6.22801e-10 -0.40647)
(0.178207 -6.76786e-10 -0.414053)
(0.190298 -7.33277e-10 -0.420895)
(0.202002 -7.90663e-10 -0.427014)
(0.213315 -8.46976e-10 -0.432429)
(0.224238 -9.01679e-10 -0.437158)
(0.234769 -9.53262e-10 -0.441221)
(0.244911 -1.0004e-09 -0.444637)
(0.254667 -1.04193e-09 -0.447427)
(0.264041 -1.07585e-09 -0.44961)
(0.273038 -1.10003e-09 -0.451206)
(0.281663 -1.11214e-09 -0.452236)
(0.289923 -1.11021e-09 -0.452719)
(0.297825 -1.09233e-09 -0.452674)
(0.305375 -1.05642e-09 -0.452123)
(0.312583 -1.00188e-09 -0.451084)
(0.319454 -9.27955e-10 -0.449578)
(0.325999 -8.34754e-10 -0.447623)
(0.332224 -7.23093e-10 -0.445239)
(0.338139 -5.942e-10 -0.442445)
(0.343752 -4.49685e-10 -0.43926)
(0.349071 -2.91543e-10 -0.435703)
(0.354105 -1.22049e-10 -0.431792)
(0.358863 5.66232e-11 -0.427546)
(0.363352 2.42097e-10 -0.422984)
(0.367581 4.31968e-10 -0.418122)
(0.371559 6.24064e-10 -0.412979)
(0.375293 8.15981e-10 -0.407572)
(0.378792 1.00537e-09 -0.401919)
(0.382063 1.18995e-09 -0.396036)
(0.385115 1.36729e-09 -0.38994)
(0.387955 1.53477e-09 -0.383647)
(0.39059 1.68992e-09 -0.377174)
(0.393029 1.83033e-09 -0.370536)
(0.395278 1.95342e-09 -0.363748)
(0.397345 2.05683e-09 -0.356825)
(0.399236 2.1386e-09 -0.349781)
(0.400959 2.19711e-09 -0.342631)
(0.402521 2.23121e-09 -0.335388)
(0.403928 2.24042e-09 -0.328064)
(0.405186 2.22479e-09 -0.320673)
(0.406303 2.18524e-09 -0.313227)
(0.407284 2.12305e-09 -0.305736)
(0.408136 2.04029e-09 -0.298212)
(0.408864 1.93923e-09 -0.290666)
(0.409476 1.82264e-09 -0.283106)
(0.409975 1.69343e-09 -0.275543)
(0.410368 1.55423e-09 -0.267984)
(0.410661 1.40811e-09 -0.260437)
(0.410859 1.258e-09 -0.252911)
(0.410967 1.10664e-09 -0.245411)
(0.410991 9.57288e-10 -0.237944)
(0.410934 8.12899e-10 -0.230514)
(0.410803 6.76639e-10 -0.223128)
(0.410602 5.52318e-10 -0.215787)
(0.410335 4.4339e-10 -0.208497)
(0.410007 3.53562e-10 -0.201259)
(0.409621 2.86286e-10 -0.194076)
(0.409183 2.44734e-10 -0.186949)
(0.408696 2.31106e-10 -0.179879)
(0.408163 2.46733e-10 -0.172865)
(0.407589 2.92127e-10 -0.165908)
(0.406975 3.65882e-10 -0.159005)
(0.406326 4.65315e-10 -0.152156)
(0.405645 5.86692e-10 -0.145358)
(0.404933 7.24235e-10 -0.138607)
(0.404193 8.71987e-10 -0.1319)
(0.403428 1.02253e-09 -0.125234)
(0.402638 1.16829e-09 -0.118602)
(0.401826 1.30179e-09 -0.112002)
(0.400993 1.41649e-09 -0.105426)
(0.400139 1.50643e-09 -0.0988687)
(0.399265 1.56727e-09 -0.0923243)
(0.398372 1.59589e-09 -0.0857857)
(0.397458 1.59049e-09 -0.0792461)
(0.396523 1.55039e-09 -0.0726982)
(0.395567 1.47664e-09 -0.0661346)
(0.394587 1.37248e-09 -0.0595476)
(0.393581 1.24381e-09 -0.0529298)
(0.392547 1.09841e-09 -0.0462733)
(0.391482 9.46071e-10 -0.0395704)
(0.390382 7.97127e-10 -0.0328137)
(0.389243 6.61632e-10 -0.0259956)
(0.38806 5.47415e-10 -0.019109)
(0.386828 4.58751e-10 -0.0121472)
(0.38554 3.95026e-10 -0.00510352)
(0.384189 3.51151e-10 0.00202781)
(0.382768 3.17892e-10 0.00925219)
(0.381269 2.86884e-10 0.0165743)
(0.379682 2.54491e-10 0.023998)
(0.377997 2.26268e-10 0.0315262)
(0.376205 2.19563e-10 0.0391607)
(0.374292 2.61066e-10 0.0469024)
(0.372247 3.80696e-10 0.0547507)
(0.370057 6.01311e-10 0.0627036)
(0.367708 9.28371e-10 0.0707579)
(0.365185 1.3452e-09 0.0789083)
(0.362471 1.8165e-09 0.087148)
(0.359552 2.30013e-09 0.0954683)
(0.35641 2.76245e-09 0.103858)
(0.353026 3.18698e-09 0.112305)
(0.349384 3.57421e-09 0.120792)
(0.345464 3.93132e-09 0.129303)
(0.341246 4.26529e-09 0.137818)
(0.336713 4.5932e-09 0.146311)
(0.331843 4.97161e-09 0.154759)
(0.326619 5.5286e-09 0.163133)
(0.32102 6.45757e-09 0.1714)
(0.315029 7.9353e-09 0.179526)
(0.308628 9.96925e-09 0.187474)
(0.3018 1.22372e-08 0.195203)
(0.29453 1.40395e-08 0.20267)
(0.286804 1.44615e-08 0.209829)
(0.278611 1.27495e-08 0.216632)
(0.269942 8.76181e-09 0.223027)
(0.26079 3.29325e-09 0.228963)
(0.251152 -1.87984e-09 0.234383)
(0.241028 -4.23019e-09 0.239233)
(0.230423 -8.86142e-10 0.243454)
(0.219344 1.08173e-08 0.24699)
(0.207804 3.24825e-08 0.249783)
(0.195822 6.31632e-08 0.251776)
(0.183418 9.69275e-08 0.252912)
(0.17062 1.19649e-07 0.253136)
(0.157462 1.07105e-07 0.252393)
(0.143983 3.04672e-08 0.25063)
(0.130225 -1.22263e-07 0.247793)
(0.116239 -3.11905e-07 0.243824)
(0.102081 -4.40668e-07 0.238661)
(0.0878114 -4.42082e-07 0.232224)
(0.0734976 -4.45006e-07 0.224407)
(0.0592213 -6.34846e-07 0.21504)
(0.0450618 -7.23329e-07 0.203817)
(0.0313306 3.56463e-07 0.190071)
(0.017443 -1.50045e-06 0.172189)
(0.0136448 -9.52973e-06 0.148525)
(-0.0142494 -1.06444e-06 0.910272)
(-0.0331425 -3.87562e-07 0.938409)
(-0.0537869 -2.27579e-07 0.934954)
(-0.074313 -1.17568e-07 0.924641)
(-0.0939626 -6.56711e-08 0.911083)
(-0.11273 -3.61232e-08 0.895385)
(-0.130583 -1.92653e-08 0.878059)
(-0.147496 -7.9583e-09 0.859397)
(-0.163449 3.01478e-11 0.839593)
(-0.178422 6.71912e-09 0.818789)
(-0.192403 1.28879e-08 0.797097)
(-0.20538 1.89673e-08 0.774606)
(-0.217343 2.53092e-08 0.751395)
(-0.228288 3.21224e-08 0.727531)
(-0.238211 3.91206e-08 0.703076)
(-0.247108 4.53514e-08 0.678083)
(-0.254982 4.94603e-08 0.652604)
(-0.261833 5.02558e-08 0.626688)
(-0.267664 4.72461e-08 0.600379)
(-0.272481 4.08497e-08 0.57372)
(-0.27629 3.22082e-08 0.546751)
(-0.279097 2.27585e-08 0.519511)
(-0.280913 1.38116e-08 0.492039)
(-0.281745 6.29354e-09 0.46437)
(-0.281606 6.82155e-10 0.436539)
(-0.280508 -2.91525e-09 0.408581)
(-0.278462 -4.62996e-09 0.380528)
(-0.275483 -4.73312e-09 0.352412)
(-0.271585 -3.59997e-09 0.324266)
(-0.266785 -1.69945e-09 0.29612)
(-0.2611 4.46946e-10 0.268005)
(-0.254546 2.35442e-09 0.239952)
(-0.247144 3.67837e-09 0.211993)
(-0.238915 4.27795e-09 0.184158)
(-0.229881 4.20854e-09 0.15648)
(-0.220066 3.65712e-09 0.128992)
(-0.2095 2.85561e-09 0.101729)
(-0.19821 2.01098e-09 0.0747278)
(-0.186231 1.26517e-09 0.0480259)
(-0.1736 6.93113e-10 0.021663)
(-0.160354 3.10683e-10 -0.00431935)
(-0.146546 9.25276e-11 -0.02987)
(-0.132226 -3.81047e-12 -0.0549396)
(-0.117446 -2.95861e-11 -0.0794827)
(-0.102263 -2.74074e-11 -0.103454)
(-0.0867348 -3.33082e-11 -0.12681)
(-0.0709216 -7.35007e-11 -0.149508)
(-0.0548839 -1.55298e-10 -0.171509)
(-0.0386825 -2.74608e-10 -0.192777)
(-0.0223769 -4.1473e-10 -0.213278)
(-0.00602635 -5.54186e-10 -0.232986)
(0.0103137 -6.74947e-10 -0.251876)
(0.026586 -7.58066e-10 -0.269926)
(0.0427421 -7.95746e-10 -0.287123)
(0.0587351 -7.93127e-10 -0.303456)
(0.0745237 -7.60721e-10 -0.31892)
(0.0900698 -7.10546e-10 -0.333514)
(0.10534 -6.59351e-10 -0.347238)
(0.120303 -6.17721e-10 -0.360099)
(0.134935 -5.92867e-10 -0.372105)
(0.149212 -5.88138e-10 -0.383266)
(0.163117 -6.02256e-10 -0.393595)
(0.176635 -6.32125e-10 -0.403107)
(0.189752 -6.73373e-10 -0.411817)
(0.202461 -7.21782e-10 -0.419745)
(0.214755 -7.74154e-10 -0.426908)
(0.22663 -8.27243e-10 -0.433325)
(0.238083 -8.79515e-10 -0.439017)
(0.249114 -9.29358e-10 -0.444003)
(0.259726 -9.7552e-10 -0.448305)
(0.269921 -1.01675e-09 -0.451944)
(0.279703 -1.05156e-09 -0.454939)
(0.289078 -1.07801e-09 -0.457313)
(0.298052 -1.09403e-09 -0.459086)
(0.306632 -1.09729e-09 -0.460279)
(0.314826 -1.0856e-09 -0.460912)
(0.322643 -1.05677e-09 -0.461007)
(0.33009 -1.009e-09 -0.460583)
(0.337176 -9.41012e-10 -0.459661)
(0.343912 -8.52235e-10 -0.45826)
(0.350307 -7.42799e-10 -0.456401)
(0.356369 -6.13345e-10 -0.454103)
(0.362109 -4.65458e-10 -0.451385)
(0.367537 -3.01157e-10 -0.448267)
(0.372661 -1.22692e-10 -0.444767)
(0.377492 6.7022e-11 -0.440905)
(0.382039 2.6525e-10 -0.436699)
(0.386311 4.68975e-10 -0.432167)
(0.390318 6.75282e-10 -0.427327)
(0.394068 8.81308e-10 -0.422197)
(0.397571 1.08409e-09 -0.416795)
(0.400836 1.28076e-09 -0.411138)
(0.40387 1.46863e-09 -0.405244)
(0.406683 1.64462e-09 -0.399128)
(0.409283 1.80619e-09 -0.392808)
(0.411679 1.95029e-09 -0.386299)
(0.413877 2.07435e-09 -0.379619)
(0.415886 2.17579e-09 -0.37278)
(0.417713 2.25227e-09 -0.3658)
(0.419367 2.30193e-09 -0.358693)
(0.420854 2.32337e-09 -0.351473)
(0.422181 2.31591e-09 -0.344153)
(0.423356 2.27982e-09 -0.336747)
(0.424385 2.21565e-09 -0.329269)
(0.425275 2.12533e-09 -0.321729)
(0.426033 2.01123e-09 -0.314141)
(0.426664 1.87642e-09 -0.306516)
(0.427176 1.72442e-09 -0.298864)
(0.427573 1.55918e-09 -0.291195)
(0.427863 1.38445e-09 -0.28352)
(0.428051 1.2043e-09 -0.275846)
(0.428143 1.02241e-09 -0.268183)
(0.428143 8.42411e-10 -0.260539)
(0.428059 6.67829e-10 -0.25292)
(0.427894 5.02092e-10 -0.245333)
(0.427653 3.48728e-10 -0.237784)
(0.427343 2.11293e-10 -0.230277)
(0.426967 9.36209e-11 -0.222819)
(0.426531 -6.04842e-13 -0.215412)
(0.426038 -6.73438e-11 -0.208059)
(0.425493 -1.02862e-10 -0.200764)
(0.4249 -1.04218e-10 -0.193528)
(0.424263 -6.91607e-11 -0.186351)
(0.423586 3.33393e-12 -0.179236)
(0.422873 1.12602e-10 -0.172181)
(0.422127 2.56267e-10 -0.165185)
(0.421351 4.30213e-10 -0.158248)
(0.420548 6.28379e-10 -0.151367)
(0.419721 8.43148e-10 -0.14454)
(0.418873 1.06564e-09 -0.137763)
(0.418005 1.28613e-09 -0.131033)
(0.417121 1.49442e-09 -0.124344)
(0.416221 1.68067e-09 -0.117693)
(0.415306 1.83562e-09 -0.111073)
(0.414379 1.95168e-09 -0.10448)
(0.41344 2.02322e-09 -0.0979055)
(0.41249 2.04762e-09 -0.0913443)
(0.411528 2.02437e-09 -0.0847889)
(0.410554 1.95524e-09 -0.0782319)
(0.409567 1.8433e-09 -0.0716656)
(0.408567 1.69329e-09 -0.0650822)
(0.407552 1.51171e-09 -0.0584736)
(0.406519 1.30754e-09 -0.0518316)
(0.405466 1.09157e-09 -0.0451479)
(0.40439 8.7659e-10 -0.0384142)
(0.403287 6.75567e-10 -0.0316225)
(0.402153 5.00578e-10 -0.0247646)
(0.400983 3.61343e-10 -0.0178326)
(0.399771 2.63263e-10 -0.0108191)
(0.39851 2.0652e-10 -0.00371692)
(0.397194 1.85386e-10 0.00348077)
(0.395815 1.90731e-10 0.0107801)
(0.394365 2.12987e-10 0.0181864)
(0.392832 2.47294e-10 0.0257045)
(0.391209 2.97672e-10 0.0333382)
(0.389483 3.78936e-10 0.0410902)
(0.387642 5.14782e-10 0.0489622)
(0.385673 7.31366e-10 0.0569546)
(0.383563 1.04694e-09 0.0650664)
(0.381296 1.4631e-09 0.073295)
(0.378858 1.96051e-09 0.0816363)
(0.37623 2.50335e-09 0.0900843)
(0.373397 3.05075e-09 0.098631)
(0.370339 3.56966e-09 0.107266)
(0.367038 4.04294e-09 0.115978)
(0.363474 4.46645e-09 0.124751)
(0.359626 4.83997e-09 0.133568)
(0.355474 5.16555e-09 0.14241)
(0.350996 5.46249e-09 0.151252)
(0.346171 5.79913e-09 0.160071)
(0.340977 6.31846e-09 0.168835)
(0.335393 7.21527e-09 0.177515)
(0.329398 8.63866e-09 0.186074)
(0.322972 1.05347e-08 0.194474)
(0.316095 1.25131e-08 0.202673)
(0.308751 1.38507e-08 0.210627)
(0.300921 1.37108e-08 0.218287)
(0.292592 1.15412e-08 0.225604)
(0.283753 7.50492e-09 0.232522)
(0.274394 2.75036e-09 0.238987)
(0.26451 -5.8612e-10 0.244939)
(0.254098 3.35988e-10 0.25032)
(0.243161 8.48915e-09 0.255067)
(0.231705 2.60469e-08 0.259118)
(0.219742 5.30417e-08 0.262411)
(0.207288 8.57375e-08 0.264882)
(0.194365 1.14994e-07 0.266471)
(0.181001 1.25015e-07 0.267116)
(0.167228 9.42155e-08 0.266756)
(0.153087 3.75792e-09 0.265332)
(0.138622 -1.39364e-07 0.262784)
(0.123883 -2.75741e-07 0.25905)
(0.108929 -3.19583e-07 0.25406)
(0.093819 -2.99642e-07 0.247732)
(0.078619 -4.72137e-07 0.239952)
(0.0634063 -9.12105e-07 0.230546)
(0.0482474 -1.23249e-06 0.219206)
(0.0334227 -5.14717e-07 0.205259)
(0.0184865 -4.21181e-06 0.186862)
(0.00631139 -2.32718e-05 0.161066)
(-0.0142488 -1.06444e-06 0.910269)
(-0.033141 -3.87563e-07 0.938404)
(-0.053786 -2.27579e-07 0.934949)
(-0.0743127 -1.17568e-07 0.924638)
(-0.0939627 -6.56712e-08 0.91108)
(-0.11273 -3.61232e-08 0.895384)
(-0.130583 -1.92653e-08 0.878058)
(-0.147497 -7.9583e-09 0.859396)
(-0.163449 3.01478e-11 0.839592)
(-0.178423 6.71912e-09 0.818789)
(-0.192404 1.2888e-08 0.797096)
(-0.20538 1.89673e-08 0.774606)
(-0.217344 2.53092e-08 0.751395)
(-0.228289 3.21224e-08 0.727531)
(-0.238211 3.91206e-08 0.703076)
(-0.247109 4.53514e-08 0.678083)
(-0.254982 4.94603e-08 0.652604)
(-0.261833 5.02559e-08 0.626688)
(-0.267664 4.72461e-08 0.600379)
(-0.272481 4.08497e-08 0.57372)
(-0.27629 3.22082e-08 0.546751)
(-0.279098 2.27586e-08 0.519511)
(-0.280913 1.38116e-08 0.492039)
(-0.281746 6.29354e-09 0.46437)
(-0.281607 6.82155e-10 0.436539)
(-0.280508 -2.91525e-09 0.408581)
(-0.278462 -4.62996e-09 0.380528)
(-0.275483 -4.73312e-09 0.352412)
(-0.271586 -3.59997e-09 0.324266)
(-0.266785 -1.69945e-09 0.29612)
(-0.2611 4.46946e-10 0.268005)
(-0.254546 2.35441e-09 0.239952)
(-0.247144 3.67837e-09 0.211993)
(-0.238915 4.27795e-09 0.184158)
(-0.229881 4.20853e-09 0.15648)
(-0.220066 3.65711e-09 0.128992)
(-0.2095 2.85561e-09 0.101729)
(-0.19821 2.01098e-09 0.0747279)
(-0.186231 1.26517e-09 0.0480259)
(-0.1736 6.93112e-10 0.021663)
(-0.160354 3.10682e-10 -0.00431932)
(-0.146546 9.25274e-11 -0.02987)
(-0.132226 -3.81046e-12 -0.0549396)
(-0.117446 -2.9586e-11 -0.0794827)
(-0.102263 -2.74073e-11 -0.103454)
(-0.0867348 -3.33081e-11 -0.12681)
(-0.0709216 -7.35005e-11 -0.149508)
(-0.0548839 -1.55298e-10 -0.171509)
(-0.0386826 -2.74607e-10 -0.192777)
(-0.0223769 -4.14729e-10 -0.213278)
(-0.00602636 -5.54184e-10 -0.232986)
(0.0103137 -6.74945e-10 -0.251876)
(0.026586 -7.58064e-10 -0.269926)
(0.0427421 -7.95744e-10 -0.287123)
(0.0587351 -7.93126e-10 -0.303456)
(0.0745237 -7.60719e-10 -0.31892)
(0.0900698 -7.10544e-10 -0.333514)
(0.10534 -6.59349e-10 -0.347238)
(0.120303 -6.17719e-10 -0.360099)
(0.134935 -5.92866e-10 -0.372105)
(0.149212 -5.88137e-10 -0.383266)
(0.163117 -6.02254e-10 -0.393595)
(0.176635 -6.32124e-10 -0.403107)
(0.189752 -6.73372e-10 -0.411817)
(0.202461 -7.21781e-10 -0.419745)
(0.214755 -7.74153e-10 -0.426908)
(0.22663 -8.27242e-10 -0.433325)
(0.238083 -8.79513e-10 -0.439017)
(0.249114 -9.29356e-10 -0.444003)
(0.259726 -9.75518e-10 -0.448305)
(0.269921 -1.01675e-09 -0.451944)
(0.279703 -1.05156e-09 -0.454939)
(0.289078 -1.07801e-09 -0.457313)
(0.298052 -1.09403e-09 -0.459086)
(0.306632 -1.09729e-09 -0.460279)
(0.314827 -1.0856e-09 -0.460912)
(0.322643 -1.05677e-09 -0.461007)
(0.33009 -1.009e-09 -0.460583)
(0.337176 -9.41011e-10 -0.459661)
(0.343912 -8.52234e-10 -0.45826)
(0.350307 -7.42799e-10 -0.456401)
(0.356369 -6.13345e-10 -0.454103)
(0.362109 -4.65458e-10 -0.451385)
(0.367537 -3.01157e-10 -0.448267)
(0.372661 -1.22692e-10 -0.444767)
(0.377492 6.70219e-11 -0.440905)
(0.382039 2.6525e-10 -0.436699)
(0.386311 4.68974e-10 -0.432167)
(0.390318 6.75282e-10 -0.427327)
(0.394068 8.81308e-10 -0.422197)
(0.397571 1.08409e-09 -0.416795)
(0.400836 1.28076e-09 -0.411138)
(0.40387 1.46863e-09 -0.405244)
(0.406683 1.64462e-09 -0.399128)
(0.409284 1.80619e-09 -0.392808)
(0.411679 1.95029e-09 -0.386299)
(0.413877 2.07435e-09 -0.379618)
(0.415886 2.17579e-09 -0.37278)
(0.417714 2.25227e-09 -0.3658)
(0.419367 2.30193e-09 -0.358693)
(0.420854 2.32337e-09 -0.351473)
(0.422181 2.31591e-09 -0.344153)
(0.423356 2.27982e-09 -0.336747)
(0.424385 2.21565e-09 -0.329269)
(0.425275 2.12533e-09 -0.321729)
(0.426033 2.01123e-09 -0.314141)
(0.426664 1.87642e-09 -0.306516)
(0.427176 1.72442e-09 -0.298864)
(0.427573 1.55918e-09 -0.291195)
(0.427863 1.38445e-09 -0.283519)
(0.428051 1.2043e-09 -0.275846)
(0.428143 1.02241e-09 -0.268183)
(0.428144 8.42411e-10 -0.260539)
(0.428059 6.67829e-10 -0.25292)
(0.427894 5.02092e-10 -0.245333)
(0.427654 3.48728e-10 -0.237784)
(0.427343 2.11293e-10 -0.230277)
(0.426967 9.36209e-11 -0.222819)
(0.426531 -6.04842e-13 -0.215412)
(0.426038 -6.73438e-11 -0.208059)
(0.425493 -1.02862e-10 -0.200764)
(0.4249 -1.04218e-10 -0.193528)
(0.424263 -6.91607e-11 -0.186351)
(0.423586 3.33393e-12 -0.179236)
(0.422873 1.12602e-10 -0.172181)
(0.422127 2.56267e-10 -0.165185)
(0.421351 4.30213e-10 -0.158248)
(0.420548 6.2838e-10 -0.151367)
(0.419721 8.43148e-10 -0.14454)
(0.418873 1.06565e-09 -0.137763)
(0.418005 1.28613e-09 -0.131033)
(0.417121 1.49442e-09 -0.124344)
(0.416221 1.68067e-09 -0.117693)
(0.415306 1.83562e-09 -0.111073)
(0.414379 1.95168e-09 -0.10448)
(0.41344 2.02322e-09 -0.0979055)
(0.41249 2.04762e-09 -0.0913443)
(0.411528 2.02437e-09 -0.0847889)
(0.410554 1.95525e-09 -0.0782319)
(0.409567 1.8433e-09 -0.0716657)
(0.408567 1.69329e-09 -0.0650823)
(0.407552 1.51171e-09 -0.0584736)
(0.406519 1.30754e-09 -0.0518316)
(0.405466 1.09157e-09 -0.0451479)
(0.40439 8.7659e-10 -0.0384143)
(0.403288 6.75568e-10 -0.0316225)
(0.402153 5.00578e-10 -0.0247646)
(0.400983 3.61343e-10 -0.0178326)
(0.399771 2.63263e-10 -0.0108192)
(0.39851 2.0652e-10 -0.00371693)
(0.397194 1.85387e-10 0.00348076)
(0.395815 1.90731e-10 0.01078)
(0.394365 2.12987e-10 0.0181864)
(0.392833 2.47295e-10 0.0257045)
(0.391209 2.97672e-10 0.0333382)
(0.389483 3.78936e-10 0.0410902)
(0.387642 5.14782e-10 0.0489622)
(0.385673 7.31366e-10 0.0569546)
(0.383563 1.04694e-09 0.0650664)
(0.381296 1.4631e-09 0.073295)
(0.378858 1.96051e-09 0.0816363)
(0.37623 2.50335e-09 0.0900843)
(0.373397 3.05076e-09 0.098631)
(0.37034 3.56966e-09 0.107266)
(0.367038 4.04294e-09 0.115978)
(0.363474 4.46645e-09 0.124751)
(0.359626 4.83997e-09 0.133568)
(0.355474 5.16556e-09 0.14241)
(0.350996 5.46249e-09 0.151252)
(0.346171 5.79913e-09 0.160071)
(0.340977 6.31846e-09 0.168836)
(0.335393 7.21527e-09 0.177515)
(0.329398 8.63866e-09 0.186074)
(0.322972 1.05347e-08 0.194474)
(0.316096 1.25131e-08 0.202673)
(0.308751 1.38507e-08 0.210627)
(0.300921 1.37108e-08 0.218288)
(0.292592 1.15412e-08 0.225604)
(0.283753 7.50492e-09 0.232522)
(0.274394 2.75036e-09 0.238987)
(0.26451 -5.86121e-10 0.24494)
(0.254098 3.35988e-10 0.25032)
(0.243161 8.48915e-09 0.255067)
(0.231705 2.60469e-08 0.259118)
(0.219742 5.30417e-08 0.262411)
(0.207288 8.57376e-08 0.264883)
(0.194365 1.14994e-07 0.266471)
(0.181001 1.25015e-07 0.267116)
(0.167228 9.42155e-08 0.266756)
(0.153087 3.75793e-09 0.265332)
(0.138621 -1.39364e-07 0.262783)
(0.123884 -2.75743e-07 0.259048)
(0.108929 -3.19588e-07 0.254056)
(0.09382 -2.99645e-07 0.247726)
(0.0786198 -4.72107e-07 0.239944)
(0.0634056 -9.11682e-07 0.230537)
(0.0482451 -1.23024e-06 0.219198)
(0.0334133 -5.12663e-07 0.205252)
(0.0184708 -4.20639e-06 0.186832)
(0.00625331 -2.32766e-05 0.160963)
(-0.0142234 -1.98614e-06 0.933086)
(-0.0330321 -3.84651e-07 0.961052)
(-0.0535578 -9.95949e-08 0.956851)
(-0.0739318 -3.11206e-08 0.945685)
(-0.0934012 -4.75182e-09 0.931211)
(-0.111959 8.89791e-09 0.914555)
(-0.129571 1.54043e-08 0.896237)
(-0.146209 1.94178e-08 0.876557)
(-0.161851 2.21402e-08 0.855714)
(-0.176479 2.47944e-08 0.833854)
(-0.190077 2.79781e-08 0.811091)
(-0.202636 3.19194e-08 0.787519)
(-0.214146 3.65483e-08 0.76322)
(-0.224601 4.14974e-08 0.738262)
(-0.233999 4.60432e-08 0.71271)
(-0.242337 4.91984e-08 0.68662)
(-0.249618 4.99869e-08 0.660045)
(-0.255842 4.77865e-08 0.633036)
(-0.261014 4.2593e-08 0.605639)
(-0.26514 3.5063e-08 0.577897)
(-0.268226 2.62962e-08 0.549854)
(-0.27028 1.74833e-08 0.521548)
(-0.271313 9.60726e-09 0.493021)
(-0.271334 3.30019e-09 0.464307)
(-0.270355 -1.16091e-09 0.435444)
(-0.268388 -3.77497e-09 0.406467)
(-0.265448 -4.71395e-09 0.37741)
(-0.261549 -4.25247e-09 0.348306)
(-0.256706 -2.75046e-09 0.319187)
(-0.250937 -6.55597e-10 0.290087)
(-0.244258 1.52957e-09 0.261037)
(-0.23669 3.33898e-09 0.232069)
(-0.228253 4.45609e-09 0.203216)
(-0.21897 4.78449e-09 0.174512)
(-0.208866 4.43821e-09 0.145991)
(-0.197968 3.66162e-09 0.117689)
(-0.186307 2.72352e-09 0.0896445)
(-0.173916 1.83869e-09 0.0618963)
(-0.160834 1.12654e-09 0.0344867)
(-0.147102 6.23476e-10 0.00745898)
(-0.132766 3.06122e-10 -0.0191376)
(-0.117888 1.20558e-10 -0.045245)
(-0.10252 1.60688e-11 -0.0708139)
(-0.0867249 -5.05678e-11 -0.0957953)
(-0.070564 -1.09299e-10 -0.120142)
(-0.0541025 -1.7708e-10 -0.143807)
(-0.0374059 -2.65956e-10 -0.166748)
(-0.0205402 -3.75696e-10 -0.188925)
(-0.00357133 -5.00418e-10 -0.210303)
(0.0134369 -6.30611e-10 -0.230852)
(0.0304201 -7.47249e-10 -0.250541)
(0.0473215 -8.39749e-10 -0.269353)
(0.0640863 -8.96705e-10 -0.28727)
(0.0806654 -9.1298e-10 -0.304285)
(0.0970134 -8.93382e-10 -0.320389)
(0.113089 -8.49776e-10 -0.335584)
(0.128857 -7.94155e-10 -0.34987)
(0.144285 -7.40327e-10 -0.363255)
(0.159346 -6.99517e-10 -0.375749)
(0.174017 -6.77323e-10 -0.387363)
(0.188278 -6.7602e-10 -0.398113)
(0.202114 -6.9341e-10 -0.408014)
(0.215514 -7.25324e-10 -0.417086)
(0.228469 -7.6716e-10 -0.425347)
(0.240972 -8.14519e-10 -0.432818)
(0.25302 -8.63643e-10 -0.439521)
(0.264614 -9.11592e-10 -0.445476)
(0.275752 -9.56678e-10 -0.450706)
(0.286439 -9.97136e-10 -0.455234)
(0.296678 -1.03182e-09 -0.45908)
(0.306476 -1.05906e-09 -0.462269)
(0.315839 -1.0772e-09 -0.464821)
(0.324775 -1.08419e-09 -0.466758)
(0.333293 -1.07777e-09 -0.468103)
(0.341402 -1.05556e-09 -0.468877)
(0.349112 -1.01523e-09 -0.469101)
(0.356432 -9.54938e-10 -0.468796)
(0.363374 -8.73372e-10 -0.467982)
(0.369948 -7.69588e-10 -0.466681)
(0.376166 -6.43843e-10 -0.464912)
(0.382037 -4.96929e-10 -0.462696)
(0.387574 -3.30483e-10 -0.460051)
(0.392786 -1.46959e-10 -0.456997)
(0.397685 5.09331e-11 -0.453554)
(0.402282 2.59844e-10 -0.44974)
(0.406586 4.76349e-10 -0.445574)
(0.410609 6.96816e-10 -0.441074)
(0.414361 9.17488e-10 -0.436259)
(0.417851 1.13484e-09 -0.431146)
(0.42109 1.34538e-09 -0.425753)
(0.424087 1.54576e-09 -0.420098)
(0.426852 1.73273e-09 -0.414197)
(0.429393 1.90312e-09 -0.408068)
(0.431721 2.05379e-09 -0.401727)
(0.433843 2.18196e-09 -0.39519)
(0.435768 2.28472e-09 -0.388474)
(0.437505 2.35967e-09 -0.381594)
(0.439061 2.40496e-09 -0.374565)
(0.440445 2.41857e-09 -0.367402)
(0.441664 2.39989e-09 -0.360119)
(0.442726 2.34853e-09 -0.352732)
(0.443639 2.26552e-09 -0.345252)
(0.444408 2.15232e-09 -0.337695)
(0.445042 2.01176e-09 -0.330071)
(0.445547 1.84724e-09 -0.322394)
(0.44593 1.66303e-09 -0.314674)
(0.446197 1.46379e-09 -0.306925)
(0.446354 1.25442e-09 -0.299154)
(0.446408 1.04004e-09 -0.291374)
(0.446364 8.2527e-10 -0.283593)
(0.446229 6.1477e-10 -0.27582)
(0.446008 4.1245e-10 -0.268064)
(0.445705 2.22196e-10 -0.260332)
(0.445328 4.74351e-11 -0.252631)
(0.444881 -1.08305e-10 -0.244967)
(0.444368 -2.41623e-10 -0.237346)
(0.443795 -3.48965e-10 -0.229773)
(0.443167 -4.26622e-10 -0.222253)
(0.442488 -4.70784e-10 -0.21479)
(0.441762 -4.77895e-10 -0.207385)
(0.440994 -4.44606e-10 -0.200042)
(0.440188 -3.68896e-10 -0.192762)
(0.439348 -2.49484e-10 -0.185546)
(0.438477 -8.72641e-11 -0.178395)
(0.437578 1.1508e-10 -0.171308)
(0.436657 3.52793e-10 -0.164285)
(0.435714 6.18819e-10 -0.157322)
(0.434754 9.04056e-10 -0.150419)
(0.433779 1.19807e-09 -0.143573)
(0.432792 1.48907e-09 -0.136779)
(0.431794 1.76523e-09 -0.130034)
(0.430788 2.01472e-09 -0.123333)
(0.429776 2.22659e-09 -0.11667)
(0.428758 2.39078e-09 -0.110041)
(0.427737 2.49973e-09 -0.103439)
(0.426712 2.54821e-09 -0.0968568)
(0.425684 2.53523e-09 -0.0902878)
(0.424654 2.46293e-09 -0.0837246)
(0.42362 2.33704e-09 -0.0771592)
(0.422583 2.16435e-09 -0.0705835)
(0.42154 1.95292e-09 -0.0639892)
(0.420491 1.71224e-09 -0.0573677)
(0.419433 1.45309e-09 -0.0507103)
(0.418364 1.18817e-09 -0.0440082)
(0.41728 9.31658e-10 -0.0372525)
(0.416177 6.97953e-10 -0.0304343)
(0.415052 5.00639e-10 -0.023545)
(0.413898 3.50512e-10 -0.0165761)
(0.412711 2.5397e-10 -0.00951921)
(0.411484 2.11478e-10 -0.00236645)
(0.410209 2.17923e-10 0.00488974)
(0.408879 2.63382e-10 0.0122563)
(0.407485 3.37471e-10 0.0197397)
(0.406016 4.34052e-10 0.0273453)
(0.404463 5.54969e-10 0.035078)
(0.402813 7.12199e-10 0.0429415)
(0.401054 9.25498e-10 0.0509384)
(0.399174 1.21585e-09 0.0590701)
(0.397156 1.59657e-09 0.0673367)
(0.394986 2.06487e-09 0.0757366)
(0.392647 2.59928e-09 0.0842666)
(0.390121 3.16389e-09 0.0929218)
(0.38739 3.72009e-09 0.101695)
(0.384435 4.23773e-09 0.110577)
(0.381235 4.70077e-09 0.119557)
(0.377768 5.10374e-09 0.12862)
(0.374014 5.44517e-09 0.13775)
(0.369948 5.72816e-09 0.146928)
(0.365547 5.97956e-09 0.15613)
(0.360789 6.28003e-09 0.165331)
(0.355648 6.78017e-09 0.174503)
(0.350102 7.66326e-09 0.183613)
(0.344127 9.0374e-09 0.192626)
(0.337699 1.07875e-08 0.201502)
(0.330796 1.24769e-08 0.210198)
(0.323399 1.34003e-08 0.218668)
(0.315487 1.28387e-08 0.226862)
(0.307042 1.04594e-08 0.234728)
(0.298051 6.70733e-09 0.242208)
(0.288501 3.0461e-09 0.249243)
(0.278384 1.94218e-09 0.255772)
(0.267696 6.51346e-09 0.26173)
(0.256435 1.96836e-08 0.267051)
(0.244606 4.2717e-08 0.271667)
(0.23222 7.33894e-08 0.275511)
(0.219291 1.04646e-07 0.278515)
(0.20584 1.24668e-07 0.280609)
(0.191895 1.18574e-07 0.281727)
(0.17749 7.21536e-08 0.281802)
(0.162663 -1.85865e-08 0.280769)
(0.147461 -1.27706e-07 0.278561)
(0.131937 -1.87419e-07 0.275109)
(0.116147 -1.4976e-07 0.27034)
(0.100155 -1.59211e-07 0.264165)
(0.0840285 -5.68435e-07 0.256465)
(0.0678486 -1.23243e-06 0.247058)
(0.0516894 -1.41937e-06 0.235617)
(0.0358603 -1.32329e-06 0.22146)
(0.0197889 -5.92436e-06 0.2029)
(-0.000332677 -2.15427e-05 0.175201)
(-0.0142238 -1.98615e-06 0.933079)
(-0.033031 -3.84651e-07 0.961047)
(-0.053557 -9.9595e-08 0.956847)
(-0.0739314 -3.11206e-08 0.945682)
(-0.0934012 -4.75182e-09 0.931209)
(-0.111959 8.89792e-09 0.914554)
(-0.129571 1.54043e-08 0.896236)
(-0.146209 1.94178e-08 0.876556)
(-0.161852 2.21403e-08 0.855713)
(-0.176479 2.47944e-08 0.833853)
(-0.190078 2.79782e-08 0.811091)
(-0.202636 3.19195e-08 0.787519)
(-0.214146 3.65484e-08 0.76322)
(-0.224601 4.14975e-08 0.738262)
(-0.233999 4.60433e-08 0.71271)
(-0.242338 4.91985e-08 0.68662)
(-0.249618 4.9987e-08 0.660045)
(-0.255842 4.77865e-08 0.633036)
(-0.261014 4.25931e-08 0.605639)
(-0.26514 3.50631e-08 0.577897)
(-0.268226 2.62962e-08 0.549854)
(-0.270281 1.74833e-08 0.521549)
(-0.271313 9.60727e-09 0.493021)
(-0.271334 3.30019e-09 0.464307)
(-0.270355 -1.16091e-09 0.435444)
(-0.268388 -3.77497e-09 0.406467)
(-0.265448 -4.71395e-09 0.37741)
(-0.261549 -4.25247e-09 0.348306)
(-0.256706 -2.75046e-09 0.319187)
(-0.250937 -6.55597e-10 0.290087)
(-0.244258 1.52957e-09 0.261037)
(-0.23669 3.33898e-09 0.232069)
(-0.228254 4.45609e-09 0.203216)
(-0.21897 4.78448e-09 0.174512)
(-0.208866 4.43821e-09 0.145991)
(-0.197968 3.66161e-09 0.117689)
(-0.186307 2.72351e-09 0.0896445)
(-0.173916 1.83869e-09 0.0618964)
(-0.160834 1.12654e-09 0.0344868)
(-0.147102 6.23475e-10 0.00745901)
(-0.132766 3.06121e-10 -0.0191376)
(-0.117888 1.20558e-10 -0.045245)
(-0.10252 1.60687e-11 -0.0708139)
(-0.0867249 -5.05677e-11 -0.0957953)
(-0.070564 -1.09299e-10 -0.120142)
(-0.0541025 -1.7708e-10 -0.143807)
(-0.0374059 -2.65955e-10 -0.166748)
(-0.0205402 -3.75695e-10 -0.188925)
(-0.00357134 -5.00417e-10 -0.210303)
(0.0134369 -6.30609e-10 -0.230852)
(0.0304201 -7.47248e-10 -0.250541)
(0.0473215 -8.39747e-10 -0.269353)
(0.0640863 -8.96703e-10 -0.28727)
(0.0806654 -9.12978e-10 -0.304285)
(0.0970134 -8.9338e-10 -0.320389)
(0.113089 -8.49774e-10 -0.335584)
(0.128857 -7.94153e-10 -0.34987)
(0.144285 -7.40326e-10 -0.363255)
(0.159346 -6.99515e-10 -0.375749)
(0.174017 -6.77321e-10 -0.387363)
(0.188278 -6.76019e-10 -0.398113)
(0.202114 -6.93409e-10 -0.408014)
(0.215514 -7.25323e-10 -0.417086)
(0.228469 -7.67158e-10 -0.425347)
(0.240972 -8.14517e-10 -0.432818)
(0.253021 -8.63642e-10 -0.439521)
(0.264614 -9.1159e-10 -0.445476)
(0.275752 -9.56676e-10 -0.450706)
(0.286439 -9.97135e-10 -0.455234)
(0.296678 -1.03182e-09 -0.45908)
(0.306476 -1.05906e-09 -0.462269)
(0.315839 -1.0772e-09 -0.464821)
(0.324775 -1.08419e-09 -0.466758)
(0.333293 -1.07776e-09 -0.468103)
(0.341402 -1.05556e-09 -0.468877)
(0.349112 -1.01523e-09 -0.469101)
(0.356432 -9.54937e-10 -0.468796)
(0.363374 -8.73371e-10 -0.467982)
(0.369949 -7.69587e-10 -0.466681)
(0.376166 -6.43842e-10 -0.464912)
(0.382037 -4.96929e-10 -0.462696)
(0.387574 -3.30483e-10 -0.460051)
(0.392786 -1.46959e-10 -0.456997)
(0.397685 5.09331e-11 -0.453554)
(0.402282 2.59844e-10 -0.44974)
(0.406586 4.76348e-10 -0.445574)
(0.410609 6.96815e-10 -0.441074)
(0.414361 9.17487e-10 -0.436259)
(0.417851 1.13484e-09 -0.431146)
(0.42109 1.34538e-09 -0.425753)
(0.424087 1.54576e-09 -0.420098)
(0.426852 1.73273e-09 -0.414197)
(0.429393 1.90312e-09 -0.408068)
(0.431721 2.05379e-09 -0.401727)
(0.433843 2.18196e-09 -0.39519)
(0.435768 2.28472e-09 -0.388474)
(0.437505 2.35967e-09 -0.381594)
(0.439061 2.40496e-09 -0.374564)
(0.440445 2.41857e-09 -0.367402)
(0.441664 2.39989e-09 -0.360119)
(0.442726 2.34853e-09 -0.352732)
(0.443639 2.26552e-09 -0.345252)
(0.444408 2.15232e-09 -0.337695)
(0.445042 2.01176e-09 -0.330071)
(0.445547 1.84724e-09 -0.322394)
(0.44593 1.66303e-09 -0.314674)
(0.446197 1.46379e-09 -0.306924)
(0.446354 1.25442e-09 -0.299154)
(0.446408 1.04004e-09 -0.291374)
(0.446364 8.2527e-10 -0.283593)
(0.446229 6.1477e-10 -0.27582)
(0.446008 4.1245e-10 -0.268064)
(0.445706 2.22196e-10 -0.260332)
(0.445328 4.74351e-11 -0.252631)
(0.444881 -1.08305e-10 -0.244967)
(0.444368 -2.41623e-10 -0.237346)
(0.443796 -3.48965e-10 -0.229773)
(0.443167 -4.26622e-10 -0.222253)
(0.442488 -4.70784e-10 -0.21479)
(0.441762 -4.77895e-10 -0.207385)
(0.440994 -4.44607e-10 -0.200042)
(0.440188 -3.68896e-10 -0.192762)
(0.439348 -2.49484e-10 -0.185546)
(0.438477 -8.72641e-11 -0.178395)
(0.437578 1.1508e-10 -0.171308)
(0.436657 3.52793e-10 -0.164285)
(0.435714 6.1882e-10 -0.157322)
(0.434754 9.04056e-10 -0.150419)
(0.433779 1.19807e-09 -0.143573)
(0.432792 1.48908e-09 -0.136779)
(0.431794 1.76523e-09 -0.130034)
(0.430788 2.01472e-09 -0.123333)
(0.429776 2.22659e-09 -0.11667)
(0.428758 2.39078e-09 -0.110041)
(0.427737 2.49974e-09 -0.103439)
(0.426712 2.54821e-09 -0.0968568)
(0.425684 2.53523e-09 -0.0902878)
(0.424654 2.46294e-09 -0.0837246)
(0.42362 2.33704e-09 -0.0771592)
(0.422583 2.16435e-09 -0.0705835)
(0.42154 1.95292e-09 -0.0639892)
(0.420491 1.71224e-09 -0.0573678)
(0.419433 1.45309e-09 -0.0507104)
(0.418364 1.18817e-09 -0.0440082)
(0.41728 9.31659e-10 -0.0372525)
(0.416177 6.97953e-10 -0.0304343)
(0.415052 5.00639e-10 -0.023545)
(0.413898 3.50512e-10 -0.0165761)
(0.412711 2.5397e-10 -0.00951922)
(0.411484 2.11478e-10 -0.00236646)
(0.410209 2.17923e-10 0.00488973)
(0.408879 2.63382e-10 0.0122563)
(0.407485 3.37471e-10 0.0197396)
(0.406016 4.34052e-10 0.0273453)
(0.404463 5.5497e-10 0.035078)
(0.402813 7.122e-10 0.0429415)
(0.401054 9.25498e-10 0.0509384)
(0.399174 1.21585e-09 0.0590701)
(0.397156 1.59657e-09 0.0673366)
(0.394986 2.06488e-09 0.0757365)
(0.392647 2.59928e-09 0.0842666)
(0.390121 3.16389e-09 0.0929218)
(0.387391 3.72009e-09 0.101695)
(0.384435 4.23773e-09 0.110577)
(0.381235 4.70077e-09 0.119557)
(0.377769 5.10375e-09 0.12862)
(0.374014 5.44517e-09 0.13775)
(0.369948 5.72816e-09 0.146928)
(0.365547 5.97957e-09 0.15613)
(0.360789 6.28003e-09 0.165331)
(0.355648 6.78017e-09 0.174503)
(0.350102 7.66327e-09 0.183613)
(0.344127 9.03741e-09 0.192626)
(0.337699 1.07875e-08 0.201502)
(0.330797 1.24769e-08 0.210198)
(0.323399 1.34003e-08 0.218668)
(0.315487 1.28388e-08 0.226863)
(0.307042 1.04594e-08 0.234728)
(0.298051 6.70733e-09 0.242208)
(0.288501 3.0461e-09 0.249244)
(0.278384 1.94218e-09 0.255772)
(0.267696 6.51346e-09 0.26173)
(0.256435 1.96836e-08 0.267051)
(0.244606 4.2717e-08 0.271667)
(0.23222 7.33895e-08 0.275512)
(0.219291 1.04646e-07 0.278515)
(0.20584 1.24669e-07 0.280609)
(0.191895 1.18574e-07 0.281727)
(0.177489 7.21536e-08 0.281802)
(0.162662 -1.85865e-08 0.280768)
(0.14746 -1.27706e-07 0.278559)
(0.131935 -1.8742e-07 0.275107)
(0.116145 -1.49761e-07 0.270336)
(0.100152 -1.59212e-07 0.264159)
(0.0840235 -5.68414e-07 0.256458)
(0.0678414 -1.2321e-06 0.24705)
(0.0516827 -1.41797e-06 0.235611)
(0.0358558 -1.32094e-06 0.22145)
(0.0197975 -5.93289e-06 0.202867)
(-0.00037723 -2.15662e-05 0.175069)
(-0.0141731 -1.7558e-06 0.955827)
(-0.0328701 -1.01257e-07 0.983567)
(-0.0532445 6.08479e-08 0.978585)
(-0.0734258 5.68894e-08 0.966533)
(-0.0926693 5.06588e-08 0.95111)
(-0.110968 4.66108e-08 0.933461)
(-0.128284 4.26699e-08 0.914116)
(-0.144591 3.98673e-08 0.89338)
(-0.159865 3.81158e-08 0.87146)
(-0.174087 3.77637e-08 0.848504)
(-0.187243 3.89176e-08 0.824632)
(-0.199321 4.13575e-08 0.799942)
(-0.210314 4.45138e-08 0.774515)
(-0.220216 4.75458e-08 0.748426)
(-0.229024 4.95128e-08 0.72174)
(-0.236737 4.96256e-08 0.694516)
(-0.243358 4.74319e-08 0.66681)
(-0.248888 4.2876e-08 0.638673)
(-0.253333 3.6305e-08 0.610152)
(-0.256699 2.84275e-08 0.581295)
(-0.258994 2.01612e-08 0.552144)
(-0.260226 1.24005e-08 0.522741)
(-0.260405 5.82744e-09 0.493126)
(-0.259543 8.38525e-10 0.463337)
(-0.257653 -2.4383e-09 0.433413)
(-0.254746 -4.08099e-09 0.403388)
(-0.250839 -4.29818e-09 0.373299)
(-0.245946 -3.37037e-09 0.343179)
(-0.240083 -1.63544e-09 0.313062)
(-0.233269 5.03283e-10 0.282982)
(-0.225522 2.59517e-09 0.252972)
(-0.216862 4.22005e-09 0.223066)
(-0.207313 5.09732e-09 0.1933)
(-0.196899 5.16455e-09 0.163708)
(-0.185648 4.5719e-09 0.134328)
(-0.17359 3.60032e-09 0.1052)
(-0.160761 2.54354e-09 0.0763648)
(-0.147198 1.62432e-09 0.0478665)
(-0.132945 9.45822e-10 0.0197509)
(-0.118047 5.08915e-10 -0.00793261)
(-0.10257 2.57476e-10 -0.0351221)
(-0.0865735 1.14578e-10 -0.0617604)
(-0.0701204 9.84076e-12 -0.0877954)
(-0.0532793 -9.19002e-11 -0.113174)
(-0.0361197 -2.06423e-10 -0.137847)
(-0.0187133 -3.33703e-10 -0.161767)
(-0.00113225 -4.69545e-10 -0.184891)
(0.0165508 -6.06766e-10 -0.207179)
(0.0342641 -7.35214e-10 -0.228595)
(0.0519416 -8.50159e-10 -0.249111)
(0.0695201 -9.41017e-10 -0.268706)
(0.0869415 -1.00257e-09 -0.287365)
(0.104152 -1.02958e-09 -0.305075)
(0.121101 -1.02159e-09 -0.321831)
(0.137747 -9.84655e-10 -0.337633)
(0.154049 -9.29314e-10 -0.352485)
(0.169974 -8.68632e-10 -0.366395)
(0.185494 -8.14166e-10 -0.379374)
(0.200583 -7.75147e-10 -0.391436)
(0.215223 -7.56533e-10 -0.402598)
(0.229397 -7.58554e-10 -0.412879)
(0.243094 -7.78654e-10 -0.4223)
(0.256305 -8.1223e-10 -0.430881)
(0.269026 -8.53783e-10 -0.438646)
(0.281253 -8.98661e-10 -0.445618)
(0.292987 -9.42927e-10 -0.451821)
(0.304231 -9.83588e-10 -0.457279)
(0.314987 -1.01886e-09 -0.462015)
(0.325264 -1.04691e-09 -0.466053)
(0.335066 -1.06641e-09 -0.469418)
(0.344404 -1.07568e-09 -0.472132)
(0.353287 -1.07283e-09 -0.474219)
(0.361725 -1.05586e-09 -0.475701)
(0.369729 -1.02221e-09 -0.476602)
(0.37731 -9.69735e-10 -0.476942)
(0.38448 -8.96478e-10 -0.476745)
(0.391253 -8.00928e-10 -0.47603)
(0.397639 -6.82266e-10 -0.474819)
(0.403651 -5.4057e-10 -0.473133)
(0.409303 -3.76683e-10 -0.470991)
(0.414605 -1.92446e-10 -0.468414)
(0.419571 9.4318e-12 -0.46542)
(0.424213 2.25728e-10 -0.462031)
(0.428542 4.52506e-10 -0.458263)
(0.432571 6.85625e-10 -0.454137)
(0.436311 9.20891e-10 -0.449669)
(0.439774 1.15378e-09 -0.44488)
(0.44297 1.37997e-09 -0.439786)
(0.44591 1.59537e-09 -0.434406)
(0.448605 1.79628e-09 -0.428756)
(0.451065 1.97893e-09 -0.422854)
(0.4533 2.13993e-09 -0.416717)
(0.455321 2.27623e-09 -0.410361)
(0.457135 2.38479e-09 -0.403803)
(0.458753 2.46313e-09 -0.397059)
(0.460183 2.50895e-09 -0.390144)
(0.461435 2.52065e-09 -0.383075)
(0.462516 2.49713e-09 -0.375865)
(0.463434 2.43783e-09 -0.368529)
(0.464199 2.34337e-09 -0.361082)
(0.464816 2.21505e-09 -0.353538)
(0.465295 2.05565e-09 -0.34591)
(0.465642 1.86874e-09 -0.338211)
(0.465864 1.65871e-09 -0.330453)
(0.465968 1.43115e-09 -0.322649)
(0.465961 1.19164e-09 -0.31481)
(0.465848 9.46275e-10 -0.306947)
(0.465638 7.00908e-10 -0.29907)
(0.465335 4.61215e-10 -0.291189)
(0.464946 2.3208e-10 -0.283314)
(0.464476 1.7899e-11 -0.275453)
(0.46393 -1.77517e-10 -0.267615)
(0.463315 -3.50998e-10 -0.259806)
(0.462636 -4.99449e-10 -0.252033)
(0.461897 -6.20263e-10 -0.244304)
(0.461104 -7.10524e-10 -0.236623)
(0.460261 -7.67444e-10 -0.228994)
(0.459373 -7.87802e-10 -0.221423)
(0.458445 -7.68528e-10 -0.213914)
(0.45748 -7.06988e-10 -0.206467)
(0.456483 -6.01058e-10 -0.199087)
(0.455458 -4.49535e-10 -0.191774)
(0.454409 -2.53186e-10 -0.184529)
(0.453339 -1.43605e-11 -0.177353)
(0.452251 2.6216e-10 -0.170244)
(0.45115 5.69294e-10 -0.163202)
(0.450038 8.97837e-10 -0.156224)
(0.448917 1.237e-09 -0.149309)
(0.447791 1.57438e-09 -0.142453)
(0.446662 1.89753e-09 -0.135652)
(0.445532 2.19383e-09 -0.128902)
(0.444403 2.45203e-09 -0.122197)
(0.443277 2.66197e-09 -0.115534)
(0.442155 2.81539e-09 -0.108904)
(0.441038 2.90529e-09 -0.102303)
(0.439927 2.92804e-09 -0.0957221)
(0.438822 2.88338e-09 -0.0891548)
(0.437723 2.77572e-09 -0.0825931)
(0.43663 2.61323e-09 -0.0760286)
(0.435543 2.40639e-09 -0.0694528)
(0.434459 2.16616e-09 -0.062857)
(0.433378 1.90302e-09 -0.0562319)
(0.432297 1.62881e-09 -0.0495684)
(0.431213 1.35579e-09 -0.042857)
(0.430124 1.09743e-09 -0.0360884)
(0.429025 8.67747e-10 -0.029253)
(0.427912 6.79754e-10 -0.0223414)
(0.426781 5.44088e-10 -0.0153444)
(0.425624 4.67302e-10 -0.00825298)
(0.424435 4.50115e-10 -0.00105842)
(0.423208 4.87109e-10 0.00624771)
(0.421934 5.68413e-10 0.0136733)
(0.420603 6.82927e-10 0.0212255)
(0.419207 8.23004e-10 0.0289109)
(0.417733 9.88749e-10 0.0367352)
(0.41617 1.18904e-09 0.0447033)
(0.414505 1.44003e-09 0.0528187)
(0.412724 1.75799e-09 0.061084)
(0.410812 2.15145e-09 0.0695003)
(0.408753 2.61425e-09 0.0780672)
(0.406529 3.12397e-09 0.0867828)
(0.404121 3.64694e-09 0.0956429)
(0.401511 4.14905e-09 0.104642)
(0.398676 4.60618e-09 0.113772)
(0.395597 5.0072e-09 0.123021)
(0.392249 5.35094e-09 0.132378)
(0.388608 5.64007e-09 0.141827)
(0.384651 5.88491e-09 0.151348)
(0.380352 6.12217e-09 0.160919)
(0.375685 6.44154e-09 0.170516)
(0.370623 6.99044e-09 0.18011)
(0.36514 7.92534e-09 0.189669)
(0.35921 9.30399e-09 0.199156)
(0.352806 1.09576e-08 0.208531)
(0.345904 1.24313e-08 0.217751)
(0.338478 1.30789e-08 0.226768)
(0.330507 1.23309e-08 0.235531)
(0.32197 1.00675e-08 0.243983)
(0.312848 6.97337e-09 0.252065)
(0.303127 4.7681e-09 0.259715)
(0.292793 6.20478e-09 0.266866)
(0.281841 1.46291e-08 0.273451)
(0.270266 3.27638e-08 0.279398)
(0.258071 6.06223e-08 0.284634)
(0.245263 9.32968e-08 0.289086)
(0.231856 1.20319e-07 0.292678)
(0.21787 1.28016e-07 0.295336)
(0.203332 1.04288e-07 0.296986)
(0.188274 4.40744e-08 0.297555)
(0.172738 -4.31782e-08 0.296969)
(0.156769 -1.21476e-07 0.295156)
(0.140423 -1.31092e-07 0.292042)
(0.123759 -6.48535e-08 0.287546)
(0.106844 -1.08758e-07 0.281571)
(0.0897506 -5.34415e-07 0.273991)
(0.0725699 -1.01759e-06 0.264602)
(0.0553843 -1.00235e-06 0.253029)
(0.0386081 -2.06725e-06 0.238449)
(0.0214959 -4.98859e-06 0.218783)
(0.00744029 -1.19517e-05 0.190112)
(-0.0141726 -1.75581e-06 0.955821)
(-0.0328691 -1.01257e-07 0.983563)
(-0.0532438 6.08479e-08 0.978583)
(-0.0734255 5.68895e-08 0.966531)
(-0.0926693 5.06588e-08 0.951109)
(-0.110968 4.66108e-08 0.93346)
(-0.128285 4.267e-08 0.914115)
(-0.144592 3.98673e-08 0.89338)
(-0.159866 3.81158e-08 0.871459)
(-0.174088 3.77638e-08 0.848504)
(-0.187243 3.89177e-08 0.824632)
(-0.199322 4.13576e-08 0.799941)
(-0.210314 4.45139e-08 0.774515)
(-0.220216 4.75459e-08 0.748426)
(-0.229024 4.95129e-08 0.72174)
(-0.236738 4.96256e-08 0.694516)
(-0.243358 4.7432e-08 0.66681)
(-0.248888 4.28761e-08 0.638673)
(-0.253334 3.63051e-08 0.610152)
(-0.256699 2.84275e-08 0.581295)
(-0.258994 2.01612e-08 0.552144)
(-0.260226 1.24005e-08 0.522741)
(-0.260405 5.82744e-09 0.493126)
(-0.259543 8.38525e-10 0.463338)
(-0.257653 -2.4383e-09 0.433413)
(-0.254746 -4.08099e-09 0.403388)
(-0.250839 -4.29818e-09 0.373299)
(-0.245946 -3.37037e-09 0.343179)
(-0.240083 -1.63544e-09 0.313062)
(-0.233269 5.03283e-10 0.282982)
(-0.225522 2.59516e-09 0.252972)
(-0.216862 4.22005e-09 0.223066)
(-0.207313 5.09732e-09 0.1933)
(-0.196899 5.16455e-09 0.163708)
(-0.185648 4.57189e-09 0.134328)
(-0.17359 3.60032e-09 0.1052)
(-0.160761 2.54353e-09 0.0763648)
(-0.147198 1.62431e-09 0.0478665)
(-0.132945 9.4582e-10 0.0197509)
(-0.118047 5.08913e-10 -0.00793259)
(-0.102571 2.57476e-10 -0.0351221)
(-0.0865735 1.14578e-10 -0.0617604)
(-0.0701204 9.84074e-12 -0.0877954)
(-0.0532793 -9.19e-11 -0.113174)
(-0.0361197 -2.06423e-10 -0.137847)
(-0.0187133 -3.33702e-10 -0.161767)
(-0.00113225 -4.69544e-10 -0.184891)
(0.0165508 -6.06764e-10 -0.207179)
(0.0342641 -7.35212e-10 -0.228595)
(0.0519416 -8.50157e-10 -0.249111)
(0.0695201 -9.41014e-10 -0.268706)
(0.0869415 -1.00257e-09 -0.287365)
(0.104152 -1.02958e-09 -0.305075)
(0.121101 -1.02159e-09 -0.321831)
(0.137747 -9.84653e-10 -0.337633)
(0.154049 -9.29312e-10 -0.352485)
(0.169974 -8.6863e-10 -0.366395)
(0.185494 -8.14165e-10 -0.379374)
(0.200583 -7.75145e-10 -0.391436)
(0.215223 -7.56531e-10 -0.402598)
(0.229397 -7.58553e-10 -0.412879)
(0.243094 -7.78653e-10 -0.4223)
(0.256305 -8.12228e-10 -0.430881)
(0.269026 -8.53782e-10 -0.438646)
(0.281253 -8.9866e-10 -0.445618)
(0.292987 -9.42926e-10 -0.451821)
(0.304231 -9.83587e-10 -0.457279)
(0.314987 -1.01885e-09 -0.462015)
(0.325264 -1.04691e-09 -0.466053)
(0.335066 -1.06641e-09 -0.469418)
(0.344404 -1.07567e-09 -0.472132)
(0.353287 -1.07282e-09 -0.474219)
(0.361725 -1.05586e-09 -0.475701)
(0.369729 -1.02221e-09 -0.476602)
(0.37731 -9.69735e-10 -0.476942)
(0.38448 -8.96477e-10 -0.476745)
(0.391253 -8.00927e-10 -0.47603)
(0.397639 -6.82266e-10 -0.474819)
(0.403651 -5.4057e-10 -0.473133)
(0.409303 -3.76683e-10 -0.470991)
(0.414605 -1.92446e-10 -0.468414)
(0.419571 9.43179e-12 -0.46542)
(0.424213 2.25728e-10 -0.462031)
(0.428542 4.52506e-10 -0.458263)
(0.432571 6.85625e-10 -0.454137)
(0.436311 9.2089e-10 -0.449669)
(0.439774 1.15378e-09 -0.44488)
(0.44297 1.37997e-09 -0.439786)
(0.44591 1.59537e-09 -0.434406)
(0.448605 1.79628e-09 -0.428756)
(0.451065 1.97893e-09 -0.422854)
(0.453301 2.13992e-09 -0.416717)
(0.455321 2.27623e-09 -0.410361)
(0.457135 2.38479e-09 -0.403803)
(0.458753 2.46313e-09 -0.397059)
(0.460183 2.50895e-09 -0.390144)
(0.461435 2.52065e-09 -0.383075)
(0.462516 2.49713e-09 -0.375865)
(0.463435 2.43783e-09 -0.368529)
(0.464199 2.34337e-09 -0.361082)
(0.464817 2.21505e-09 -0.353538)
(0.465295 2.05565e-09 -0.34591)
(0.465642 1.86874e-09 -0.338211)
(0.465864 1.65871e-09 -0.330453)
(0.465968 1.43115e-09 -0.322649)
(0.465961 1.19164e-09 -0.31481)
(0.465849 9.46275e-10 -0.306947)
(0.465638 7.00908e-10 -0.29907)
(0.465335 4.61215e-10 -0.291189)
(0.464946 2.3208e-10 -0.283314)
(0.464476 1.7899e-11 -0.275453)
(0.46393 -1.77517e-10 -0.267615)
(0.463315 -3.50998e-10 -0.259806)
(0.462636 -4.99449e-10 -0.252033)
(0.461897 -6.20263e-10 -0.244304)
(0.461104 -7.10524e-10 -0.236623)
(0.460261 -7.67444e-10 -0.228994)
(0.459373 -7.87802e-10 -0.221423)
(0.458445 -7.68528e-10 -0.213914)
(0.45748 -7.06988e-10 -0.206467)
(0.456483 -6.01058e-10 -0.199087)
(0.455458 -4.49535e-10 -0.191774)
(0.454409 -2.53186e-10 -0.184529)
(0.453339 -1.43606e-11 -0.177353)
(0.452251 2.6216e-10 -0.170244)
(0.45115 5.69294e-10 -0.163202)
(0.450038 8.97838e-10 -0.156224)
(0.448917 1.237e-09 -0.149309)
(0.447791 1.57438e-09 -0.142453)
(0.446662 1.89753e-09 -0.135652)
(0.445532 2.19383e-09 -0.128902)
(0.444403 2.45204e-09 -0.122197)
(0.443277 2.66197e-09 -0.115534)
(0.442155 2.81539e-09 -0.108904)
(0.441038 2.90529e-09 -0.102303)
(0.439927 2.92804e-09 -0.0957221)
(0.438822 2.88338e-09 -0.0891548)
(0.437723 2.77572e-09 -0.0825931)
(0.43663 2.61323e-09 -0.0760286)
(0.435543 2.40639e-09 -0.0694529)
(0.434459 2.16617e-09 -0.062857)
(0.433378 1.90302e-09 -0.0562319)
(0.432297 1.62881e-09 -0.0495684)
(0.431213 1.35579e-09 -0.0428571)
(0.430124 1.09743e-09 -0.0360884)
(0.429025 8.67748e-10 -0.029253)
(0.427912 6.79754e-10 -0.0223414)
(0.426781 5.44088e-10 -0.0153444)
(0.425624 4.67302e-10 -0.008253)
(0.424435 4.50115e-10 -0.00105844)
(0.423208 4.87109e-10 0.00624769)
(0.421934 5.68413e-10 0.0136733)
(0.420603 6.82927e-10 0.0212255)
(0.419207 8.23004e-10 0.0289109)
(0.417733 9.88749e-10 0.0367352)
(0.41617 1.18904e-09 0.0447033)
(0.414505 1.44003e-09 0.0528187)
(0.412724 1.75799e-09 0.061084)
(0.410812 2.15145e-09 0.0695003)
(0.408753 2.61425e-09 0.0780672)
(0.406529 3.12398e-09 0.0867827)
(0.404121 3.64694e-09 0.0956429)
(0.401511 4.14905e-09 0.104642)
(0.398676 4.60619e-09 0.113772)
(0.395597 5.0072e-09 0.123021)
(0.392249 5.35095e-09 0.132378)
(0.388608 5.64007e-09 0.141827)
(0.384651 5.88492e-09 0.151348)
(0.380352 6.12218e-09 0.160919)
(0.375685 6.44154e-09 0.170516)
(0.370623 6.99044e-09 0.18011)
(0.36514 7.92535e-09 0.189669)
(0.35921 9.30399e-09 0.199156)
(0.352806 1.09576e-08 0.208531)
(0.345904 1.24313e-08 0.217751)
(0.338478 1.30789e-08 0.226769)
(0.330507 1.23309e-08 0.235531)
(0.32197 1.00675e-08 0.243983)
(0.312848 6.97337e-09 0.252065)
(0.303127 4.7681e-09 0.259715)
(0.292793 6.20478e-09 0.266867)
(0.281841 1.46291e-08 0.273452)
(0.270266 3.27638e-08 0.279399)
(0.258071 6.06223e-08 0.284635)
(0.245263 9.32969e-08 0.289087)
(0.231856 1.20319e-07 0.292679)
(0.21787 1.28016e-07 0.295337)
(0.203331 1.04288e-07 0.296987)
(0.188273 4.40745e-08 0.297555)
(0.172736 -4.31783e-08 0.296969)
(0.156768 -1.21477e-07 0.295156)
(0.140421 -1.31093e-07 0.29204)
(0.123756 -6.48538e-08 0.287543)
(0.106839 -1.08758e-07 0.281567)
(0.0897429 -5.34409e-07 0.273985)
(0.072561 -1.01757e-06 0.264596)
(0.0553781 -1.00244e-06 0.253021)
(0.0386083 -2.06918e-06 0.23843)
(0.0215079 -5.00254e-06 0.218739)
(0.00743032 -1.19628e-05 0.189984)
(-0.0140968 -8.22746e-07 0.978461)
(-0.0326505 1.99651e-07 1.00592)
(-0.0528349 1.65018e-07 1.00011)
(-0.0727783 1.12809e-07 0.987137)
(-0.0917464 8.68981e-08 0.970728)
(-0.109732 7.19321e-08 0.952048)
(-0.126696 6.15162e-08 0.931635)
(-0.142612 5.42366e-08 0.909805)
(-0.157456 4.93215e-08 0.886766)
(-0.171209 4.66312e-08 0.862675)
(-0.183856 4.59708e-08 0.837654)
(-0.195387 4.68999e-08 0.811804)
(-0.205794 4.85788e-08 0.785212)
(-0.215073 4.98373e-08 0.757952)
(-0.223221 4.9554e-08 0.730094)
(-0.230239 4.71173e-08 0.701699)
(-0.236127 4.25657e-08 0.672825)
(-0.240891 3.63647e-08 0.643523)
(-0.244536 2.91357e-08 0.613845)
(-0.247068 2.15415e-08 0.583837)
(-0.248497 1.42455e-08 0.553545)
(-0.248831 7.83041e-09 0.523012)
(-0.248082 2.70947e-09 0.492278)
(-0.246261 -9.087e-10 0.461383)
(-0.243382 -3.00799e-09 0.430366)
(-0.239458 -3.72994e-09 0.399264)
(-0.234505 -3.31837e-09 0.368114)
(-0.228538 -2.06036e-09 0.336949)
(-0.221575 -2.61734e-10 0.305807)
(-0.213635 1.74444e-09 0.274721)
(-0.204737 3.5939e-09 0.243727)
(-0.194904 4.94049e-09 0.21286)
(-0.18416 5.54896e-09 0.182159)
(-0.172532 5.37773e-09 0.151661)
(-0.160053 4.58653e-09 0.121408)
(-0.146755 3.46668e-09 0.0914428)
(-0.13268 2.3205e-09 0.0618117)
(-0.117871 1.37687e-09 0.0325638)
(-0.102377 7.28192e-10 0.00374981)
(-0.0862585 3.55338e-10 -0.0245686)
(-0.0695867 1.67666e-10 -0.0523246)
(-0.0524281 6.43887e-11 -0.0794595)
(-0.0348557 -3.27204e-11 -0.105917)
(-0.0169456 -1.59437e-10 -0.131643)
(0.00122454 -3.20133e-10 -0.156585)
(0.0195738 -5.00618e-10 -0.180694)
(0.0380228 -6.79436e-10 -0.203924)
(0.0564963 -8.39534e-10 -0.226241)
(0.0749215 -9.70225e-10 -0.247614)
(0.0932303 -1.06821e-09 -0.268018)
(0.111359 -1.13096e-09 -0.287438)
(0.129248 -1.1584e-09 -0.30586)
(0.146845 -1.15378e-09 -0.32328)
(0.164103 -1.11961e-09 -0.339698)
(0.180979 -1.06488e-09 -0.35512)
(0.197437 -9.99388e-10 -0.369554)
(0.213447 -9.34592e-10 -0.383015)
(0.228983 -8.80153e-10 -0.395518)
(0.244025 -8.43819e-10 -0.407084)
(0.258558 -8.28555e-10 -0.417733)
(0.272568 -8.33978e-10 -0.427488)
(0.286049 -8.56506e-10 -0.436374)
(0.298996 -8.90669e-10 -0.444416)
(0.311407 -9.30893e-10 -0.451639)
(0.323284 -9.71731e-10 -0.45807)
(0.334631 -1.00917e-09 -0.463735)
(0.345453 -1.04006e-09 -0.46866)
(0.355758 -1.06257e-09 -0.47287)
(0.365555 -1.07475e-09 -0.476391)
(0.374855 -1.0752e-09 -0.479248)
(0.383669 -1.06207e-09 -0.481466)
(0.392008 -1.03389e-09 -0.483069)
(0.399886 -9.88139e-10 -0.48408)
(0.407317 -9.22884e-10 -0.484521)
(0.414313 -8.36104e-10 -0.484417)
(0.420889 -7.26315e-10 -0.483787)
(0.42706 -5.92724e-10 -0.482655)
(0.432838 -4.35282e-10 -0.48104)
(0.438239 -2.55086e-10 -0.478964)
(0.443277 -5.39273e-11 -0.476447)
(0.447964 1.65153e-10 -0.473508)
(0.452315 3.98447e-10 -0.470166)
(0.456344 6.41455e-10 -0.466441)
(0.460062 8.89551e-10 -0.462352)
(0.463484 1.1376e-09 -0.457916)
(0.466622 1.38058e-09 -0.453153)
(0.469488 1.61331e-09 -0.448079)
(0.472093 1.83134e-09 -0.442713)
(0.47445 2.03027e-09 -0.437072)
(0.476569 2.20617e-09 -0.431173)
(0.478462 2.35538e-09 -0.425033)
(0.480138 2.47491e-09 -0.418668)
(0.481609 2.5621e-09 -0.412095)
(0.482883 2.61459e-09 -0.40533)
(0.483972 2.63068e-09 -0.398389)
(0.484883 2.60903e-09 -0.391286)
(0.485626 2.54937e-09 -0.384037)
(0.486209 2.45169e-09 -0.376657)
(0.486641 2.31727e-09 -0.369161)
(0.486931 2.14843e-09 -0.361561)
(0.487085 1.94833e-09 -0.353872)
(0.487112 1.72169e-09 -0.346107)
(0.487018 1.47386e-09 -0.338279)
(0.486812 1.21109e-09 -0.330399)
(0.486499 9.40444e-10 -0.32248)
(0.486088 6.68724e-10 -0.314533)
(0.485583 4.02601e-10 -0.306569)
(0.484991 1.48543e-10 -0.298597)
(0.484319 -8.83867e-11 -0.290628)
(0.483573 -3.03561e-10 -0.282671)
(0.482757 -4.93451e-10 -0.274734)
(0.481878 -6.55373e-10 -0.266825)
(0.48094 -7.86998e-10 -0.258951)
(0.47995 -8.86614e-10 -0.251119)
(0.478911 -9.52584e-10 -0.243335)
(0.477829 -9.83093e-10 -0.235605)
(0.476709 -9.7622e-10 -0.227932)
(0.475554 -9.30126e-10 -0.220322)
(0.47437 -8.43198e-10 -0.212777)
(0.47316 -7.13825e-10 -0.2053)
(0.471929 -5.41545e-10 -0.197893)
(0.47068 -3.26945e-10 -0.190558)
(0.469417 -7.27093e-11 -0.183295)
(0.468144 2.1692e-10 -0.176103)
(0.466863 5.35218e-10 -0.168983)
(0.465579 8.73646e-10 -0.161933)
(0.464293 1.22177e-09 -0.154951)
(0.463009 1.56796e-09 -0.148033)
(0.46173 1.90002e-09 -0.141177)
(0.460457 2.20613e-09 -0.134379)
(0.459193 2.47555e-09 -0.127634)
(0.457939 2.69949e-09 -0.120937)
(0.456698 2.87162e-09 -0.114281)
(0.45547 2.98755e-09 -0.107662)
(0.454257 3.04375e-09 -0.101071)
(0.453059 3.03803e-09 -0.0945012)
(0.451876 2.97115e-09 -0.0879453)
(0.45071 2.84761e-09 -0.0813947)
(0.449558 2.67676e-09 -0.0748409)
(0.448421 2.47057e-09 -0.0682748)
(0.447298 2.24137e-09 -0.061687)
(0.446186 2.00048e-09 -0.0550681)
(0.445084 1.75825e-09 -0.0484081)
(0.443988 1.525e-09 -0.0416972)
(0.442897 1.31137e-09 -0.0349253)
(0.441805 1.12841e-09 -0.0280823)
(0.440709 9.86851e-10 -0.021158)
(0.439603 8.95242e-10 -0.0141426)
(0.438481 8.58779e-10 -0.00702613)
(0.437338 8.77745e-10 0.000200854)
(0.436164 9.4639e-10 0.00754765)
(0.434953 1.05469e-09 0.0150231)
(0.433694 1.19141e-09 0.0226353)
(0.432378 1.3479e-09 0.0303918)
(0.430993 1.52273e-09 0.0382995)
(0.429528 1.72277e-09 0.0463642)
(0.427968 1.96133e-09 0.0545907)
(0.4263 2.25145e-09 0.0629827)
(0.424507 2.59883e-09 0.0715426)
(0.422573 2.99573e-09 0.0802712)
(0.420479 3.42124e-09 0.0891677)
(0.418207 3.84659e-09 0.0982295)
(0.415734 4.24559e-09 0.107452)
(0.413041 4.60357e-09 0.116828)
(0.410102 4.91925e-09 0.126349)
(0.406895 5.20094e-09 0.136002)
(0.403393 5.46097e-09 0.145773)
(0.399569 5.72e-09 0.155644)
(0.395396 6.02431e-09 0.165594)
(0.390847 6.46468e-09 0.175599)
(0.385891 7.17193e-09 0.185629)
(0.380499 8.26253e-09 0.195653)
(0.374642 9.7393e-09 0.205635)
(0.368291 1.13935e-08 0.215534)
(0.361417 1.27856e-08 0.225306)
(0.353992 1.33678e-08 0.234901)
(0.34599 1.27385e-08 0.244266)
(0.337386 1.09683e-08 0.253343)
(0.328157 8.9152e-09 0.26207)
(0.318286 8.47252e-09 0.270381)
(0.307756 1.26069e-08 0.278206)
(0.296556 2.48184e-08 0.285471)
(0.28468 4.7522e-08 0.2921)
(0.272127 7.93686e-08 0.298015)
(0.258901 1.12871e-07 0.303135)
(0.245015 1.34871e-07 0.307379)
(0.230487 1.31398e-07 0.310665)
(0.215342 9.47859e-08 0.312911)
(0.199613 2.82318e-08 0.314037)
(0.183342 -5.35014e-08 0.313962)
(0.166577 -1.24079e-07 0.312607)
(0.149373 -1.58697e-07 0.309889)
(0.131791 -1.9355e-07 0.305722)
(0.113903 -3.61537e-07 0.3)
(0.0957817 -6.38637e-07 0.292586)
(0.0775211 -5.89481e-07 0.283256)
(0.0591992 -5.69774e-07 0.271592)
(0.0411756 -2.296e-06 0.256649)
(0.0230544 -4.51615e-06 0.236036)
(0.00764104 -1.41619e-05 0.205483)
(-0.0140953 -8.22748e-07 0.978458)
(-0.0326495 1.99651e-07 1.00591)
(-0.0528344 1.65019e-07 1.00011)
(-0.0727781 1.12809e-07 0.987136)
(-0.0917464 8.68982e-08 0.970727)
(-0.109732 7.19322e-08 0.952047)
(-0.126697 6.15163e-08 0.931635)
(-0.142613 5.42366e-08 0.909804)
(-0.157456 4.93215e-08 0.886766)
(-0.171209 4.66312e-08 0.862675)
(-0.183856 4.59708e-08 0.837654)
(-0.195387 4.68999e-08 0.811804)
(-0.205795 4.85788e-08 0.785211)
(-0.215073 4.98373e-08 0.757952)
(-0.223221 4.9554e-08 0.730094)
(-0.230239 4.71174e-08 0.701699)
(-0.236128 4.25657e-08 0.672825)
(-0.240891 3.63647e-08 0.643523)
(-0.244536 2.91357e-08 0.613845)
(-0.247069 2.15415e-08 0.583837)
(-0.248497 1.42455e-08 0.553545)
(-0.248831 7.83042e-09 0.523012)
(-0.248082 2.70947e-09 0.492278)
(-0.246261 -9.087e-10 0.461383)
(-0.243382 -3.00799e-09 0.430367)
(-0.239458 -3.72994e-09 0.399265)
(-0.234505 -3.31837e-09 0.368114)
(-0.228538 -2.06036e-09 0.336949)
(-0.221575 -2.61734e-10 0.305807)
(-0.213635 1.74444e-09 0.274721)
(-0.204737 3.59389e-09 0.243727)
(-0.194904 4.94048e-09 0.21286)
(-0.18416 5.54895e-09 0.182159)
(-0.172532 5.37772e-09 0.151661)
(-0.160053 4.58652e-09 0.121408)
(-0.146755 3.46668e-09 0.0914428)
(-0.13268 2.3205e-09 0.0618118)
(-0.117871 1.37686e-09 0.0325638)
(-0.102377 7.28191e-10 0.00374984)
(-0.0862586 3.55337e-10 -0.0245686)
(-0.0695867 1.67665e-10 -0.0523246)
(-0.0524281 6.43885e-11 -0.0794595)
(-0.0348557 -3.27204e-11 -0.105917)
(-0.0169456 -1.59437e-10 -0.131643)
(0.00122454 -3.20133e-10 -0.156585)
(0.0195738 -5.00616e-10 -0.180694)
(0.0380228 -6.79435e-10 -0.203924)
(0.0564963 -8.39532e-10 -0.226241)
(0.0749215 -9.70223e-10 -0.247614)
(0.0932304 -1.06821e-09 -0.268018)
(0.111359 -1.13096e-09 -0.287438)
(0.129248 -1.1584e-09 -0.30586)
(0.146846 -1.15378e-09 -0.32328)
(0.164103 -1.11961e-09 -0.339698)
(0.180979 -1.06488e-09 -0.35512)
(0.197437 -9.99387e-10 -0.369554)
(0.213447 -9.3459e-10 -0.383015)
(0.228983 -8.80151e-10 -0.395518)
(0.244025 -8.43818e-10 -0.407084)
(0.258558 -8.28554e-10 -0.417733)
(0.272568 -8.33977e-10 -0.427488)
(0.286049 -8.56505e-10 -0.436374)
(0.298996 -8.90668e-10 -0.444416)
(0.311407 -9.30892e-10 -0.451639)
(0.323284 -9.7173e-10 -0.45807)
(0.334631 -1.00917e-09 -0.463735)
(0.345453 -1.04006e-09 -0.46866)
(0.355758 -1.06257e-09 -0.47287)
(0.365556 -1.07475e-09 -0.476391)
(0.374855 -1.0752e-09 -0.479248)
(0.383669 -1.06207e-09 -0.481466)
(0.392008 -1.03389e-09 -0.483069)
(0.399886 -9.88138e-10 -0.48408)
(0.407317 -9.22884e-10 -0.484521)
(0.414313 -8.36103e-10 -0.484417)
(0.42089 -7.26314e-10 -0.483787)
(0.42706 -5.92724e-10 -0.482655)
(0.432839 -4.35281e-10 -0.48104)
(0.438239 -2.55086e-10 -0.478964)
(0.443277 -5.39273e-11 -0.476447)
(0.447964 1.65152e-10 -0.473508)
(0.452315 3.98446e-10 -0.470166)
(0.456344 6.41455e-10 -0.466441)
(0.460062 8.89551e-10 -0.462352)
(0.463484 1.1376e-09 -0.457916)
(0.466622 1.38058e-09 -0.453153)
(0.469488 1.61331e-09 -0.448079)
(0.472093 1.83134e-09 -0.442713)
(0.47445 2.03027e-09 -0.437072)
(0.476569 2.20617e-09 -0.431173)
(0.478462 2.35538e-09 -0.425033)
(0.480138 2.47491e-09 -0.418668)
(0.481609 2.56209e-09 -0.412095)
(0.482883 2.61459e-09 -0.40533)
(0.483972 2.63068e-09 -0.398389)
(0.484883 2.60903e-09 -0.391286)
(0.485626 2.54937e-09 -0.384037)
(0.486209 2.45169e-09 -0.376657)
(0.486641 2.31727e-09 -0.369161)
(0.486931 2.14843e-09 -0.361561)
(0.487085 1.94833e-09 -0.353872)
(0.487112 1.72169e-09 -0.346107)
(0.487018 1.47386e-09 -0.338279)
(0.486812 1.21109e-09 -0.330399)
(0.4865 9.40444e-10 -0.32248)
(0.486088 6.68724e-10 -0.314533)
(0.485583 4.02601e-10 -0.306569)
(0.484992 1.48543e-10 -0.298597)
(0.48432 -8.83867e-11 -0.290628)
(0.483573 -3.03561e-10 -0.282671)
(0.482757 -4.93451e-10 -0.274734)
(0.481878 -6.55373e-10 -0.266825)
(0.48094 -7.86998e-10 -0.258951)
(0.47995 -8.86615e-10 -0.251119)
(0.478911 -9.52585e-10 -0.243335)
(0.477829 -9.83093e-10 -0.235605)
(0.476709 -9.76221e-10 -0.227932)
(0.475554 -9.30126e-10 -0.220322)
(0.47437 -8.43199e-10 -0.212777)
(0.47316 -7.13825e-10 -0.2053)
(0.471929 -5.41545e-10 -0.197893)
(0.47068 -3.26945e-10 -0.190558)
(0.469417 -7.27093e-11 -0.183295)
(0.468144 2.1692e-10 -0.176103)
(0.466863 5.35218e-10 -0.168983)
(0.465579 8.73646e-10 -0.161933)
(0.464293 1.22177e-09 -0.154951)
(0.463009 1.56796e-09 -0.148033)
(0.46173 1.90002e-09 -0.141177)
(0.460457 2.20613e-09 -0.134379)
(0.459193 2.47555e-09 -0.127634)
(0.457939 2.69949e-09 -0.120937)
(0.456698 2.87162e-09 -0.114281)
(0.45547 2.98755e-09 -0.107662)
(0.454257 3.04375e-09 -0.101071)
(0.453059 3.03803e-09 -0.0945012)
(0.451876 2.97115e-09 -0.0879453)
(0.45071 2.84761e-09 -0.0813947)
(0.449558 2.67677e-09 -0.0748409)
(0.448421 2.47057e-09 -0.0682748)
(0.447298 2.24137e-09 -0.061687)
(0.446186 2.00048e-09 -0.0550681)
(0.445084 1.75825e-09 -0.0484081)
(0.443988 1.525e-09 -0.0416973)
(0.442897 1.31137e-09 -0.0349253)
(0.441805 1.12841e-09 -0.0280823)
(0.440709 9.86851e-10 -0.0211581)
(0.439603 8.95243e-10 -0.0141426)
(0.438481 8.58779e-10 -0.00702616)
(0.437338 8.77746e-10 0.000200831)
(0.436164 9.46391e-10 0.00754762)
(0.434953 1.05469e-09 0.0150231)
(0.433694 1.19141e-09 0.0226353)
(0.432378 1.3479e-09 0.0303918)
(0.430993 1.52273e-09 0.0382995)
(0.429528 1.72277e-09 0.0463642)
(0.427968 1.96133e-09 0.0545907)
(0.4263 2.25145e-09 0.0629827)
(0.424507 2.59883e-09 0.0715426)
(0.422573 2.99573e-09 0.0802712)
(0.420479 3.42124e-09 0.0891677)
(0.418207 3.8466e-09 0.0982295)
(0.415735 4.2456e-09 0.107452)
(0.413041 4.60357e-09 0.116828)
(0.410103 4.91925e-09 0.126349)
(0.406895 5.20094e-09 0.136002)
(0.403393 5.46097e-09 0.145773)
(0.399569 5.72e-09 0.155644)
(0.395397 6.02432e-09 0.165594)
(0.390847 6.46468e-09 0.175599)
(0.385891 7.17193e-09 0.185629)
(0.380499 8.26254e-09 0.195653)
(0.374643 9.7393e-09 0.205635)
(0.368292 1.13935e-08 0.215534)
(0.361417 1.27856e-08 0.225306)
(0.353992 1.33678e-08 0.234901)
(0.34599 1.27385e-08 0.244266)
(0.337386 1.09683e-08 0.253343)
(0.328157 8.9152e-09 0.26207)
(0.318286 8.47252e-09 0.270381)
(0.307756 1.26069e-08 0.278206)
(0.296556 2.48184e-08 0.285471)
(0.28468 4.7522e-08 0.2921)
(0.272127 7.93686e-08 0.298015)
(0.258901 1.12871e-07 0.303136)
(0.245015 1.34871e-07 0.30738)
(0.230486 1.31398e-07 0.310665)
(0.215341 9.47859e-08 0.312912)
(0.199612 2.82319e-08 0.314037)
(0.18334 -5.35015e-08 0.313962)
(0.166574 -1.24079e-07 0.312607)
(0.149369 -1.58697e-07 0.309889)
(0.131787 -1.9355e-07 0.30572)
(0.113896 -3.61534e-07 0.299997)
(0.0957728 -6.38618e-07 0.29258)
(0.077511 -5.89463e-07 0.283247)
(0.059191 -5.69916e-07 0.271577)
(0.0411714 -2.29891e-06 0.256617)
(0.0230604 -4.52102e-06 0.235973)
(0.00765954 -1.41628e-05 0.205346)
(-0.0139939 1.66476e-07 1.00095)
(-0.0323679 3.89514e-07 1.02806)
(-0.0523183 2.10964e-07 1.02139)
(-0.0719733 1.4232e-07 1.00745)
(-0.0906116 1.10359e-07 0.990008)
(-0.108225 9.08191e-08 0.970254)
(-0.124777 7.69467e-08 0.948732)
(-0.140238 6.65168e-08 0.925763)
(-0.154584 5.87407e-08 0.901564)
(-0.167798 5.33648e-08 0.876295)
(-0.179866 5.01895e-08 0.850083)
(-0.190777 4.89619e-08 0.823033)
(-0.200525 4.8955e-08 0.795233)
(-0.209105 4.88043e-08 0.766764)
(-0.216517 4.70438e-08 0.737695)
(-0.222761 4.29448e-08 0.708091)
(-0.22784 3.68139e-08 0.67801)
(-0.231759 2.9566e-08 0.647508)
(-0.234525 2.21175e-08 0.616637)
(-0.236144 1.51178e-08 0.585444)
(-0.236626 8.99245e-09 0.553977)
(-0.235982 4.02777e-09 0.522279)
(-0.234223 3.9114e-10 0.490394)
(-0.231361 -1.87193e-09 0.458361)
(-0.227411 -2.84285e-09 0.42622)
(-0.222386 -2.72392e-09 0.39401)
(-0.216302 -1.79669e-09 0.361768)
(-0.209176 -3.55902e-10 0.329531)
(-0.201026 1.33421e-09 0.297334)
(-0.191871 3.03349e-09 0.265215)
(-0.181734 4.49413e-09 0.233211)
(-0.170638 5.47072e-09 0.20136)
(-0.15861 5.7832e-09 0.169703)
(-0.145681 5.40088e-09 0.138282)
(-0.131886 4.46801e-09 0.107142)
(-0.117264 3.25721e-09 0.0763327)
(-0.101863 2.06386e-09 0.0459046)
(-0.0857331 1.11368e-09 0.0159125)
(-0.0689306 4.91655e-10 -0.0135838)
(-0.0515366 1.65053e-10 -0.0425073)
(-0.0336216 2.99428e-11 -0.0707932)
(-0.0152651 -3.45075e-11 -0.0983795)
(0.00345116 -1.1716e-10 -0.125208)
(0.0224389 -2.58086e-10 -0.151215)
(0.041612 -4.5204e-10 -0.17635)
(0.0608855 -6.72865e-10 -0.200564)
(0.0801772 -8.87498e-10 -0.223818)
(0.0994082 -1.06661e-09 -0.24608)
(0.118503 -1.19717e-09 -0.267321)
(0.137393 -1.27697e-09 -0.287524)
(0.156014 -1.31036e-09 -0.306677)
(0.174308 -1.30318e-09 -0.324774)
(0.192223 -1.26673e-09 -0.341817)
(0.209714 -1.20755e-09 -0.357813)
(0.226743 -1.13556e-09 -0.372772)
(0.243278 -1.06036e-09 -0.38671)
(0.259292 -9.91805e-10 -0.399648)
(0.274762 -9.37879e-10 -0.411606)
(0.289674 -9.04359e-10 -0.422609)
(0.304016 -8.9265e-10 -0.432683)
(0.31778 -9.01141e-10 -0.441855)
(0.330963 -9.25408e-10 -0.450153)
(0.343564 -9.59162e-10 -0.457607)
(0.355587 -9.96419e-10 -0.464244)
(0.367036 -1.03135e-09 -0.470094)
(0.377919 -1.05966e-09 -0.475184)
(0.388246 -1.07811e-09 -0.479543)
(0.398027 -1.08443e-09 -0.483198)
(0.407274 -1.07698e-09 -0.486176)
(0.416002 -1.05429e-09 -0.488503)
(0.424225 -1.01462e-09 -0.490204)
(0.431956 -9.56374e-10 -0.491305)
(0.439213 -8.77698e-10 -0.491829)
(0.44601 -7.76934e-10 -0.4918)
(0.452364 -6.52548e-10 -0.49124)
(0.45829 -5.03774e-10 -0.490171)
(0.463804 -3.30841e-10 -0.488615)
(0.468923 -1.34746e-10 -0.486593)
(0.473663 8.24645e-11 -0.484124)
(0.478038 3.17494e-10 -0.48123)
(0.482064 5.66251e-10 -0.477929)
(0.485756 8.24033e-10 -0.474241)
(0.489128 1.08519e-09 -0.470185)
(0.492195 1.34422e-09 -0.465778)
(0.494971 1.59528e-09 -0.461038)
(0.497469 1.83289e-09 -0.455985)
(0.499702 2.05168e-09 -0.450634)
(0.501682 2.24698e-09 -0.445004)
(0.503422 2.4146e-09 -0.43911)
(0.504934 2.55092e-09 -0.432971)
(0.506229 2.65298e-09 -0.426603)
(0.507318 2.71849e-09 -0.420021)
(0.508212 2.74564e-09 -0.413241)
(0.50892 2.7333e-09 -0.40628)
(0.509454 2.68072e-09 -0.399152)
(0.509822 2.58833e-09 -0.391873)
(0.510034 2.45665e-09 -0.384458)
(0.510098 2.28803e-09 -0.376921)
(0.510024 2.08504e-09 -0.369275)
(0.509818 1.85191e-09 -0.361535)
(0.509491 1.59391e-09 -0.353714)
(0.509048 1.31723e-09 -0.345825)
(0.508498 1.02911e-09 -0.33788)
(0.507848 7.37224e-10 -0.329891)
(0.507104 4.49222e-10 -0.32187)
(0.506273 1.72698e-10 -0.313829)
(0.505363 -8.60599e-11 -0.305776)
(0.504378 -3.21324e-10 -0.297723)
(0.503325 -5.28748e-10 -0.289678)
(0.50221 -7.05365e-10 -0.281652)
(0.501038 -8.48978e-10 -0.273651)
(0.499815 -9.58536e-10 -0.265684)
(0.498546 -1.03315e-09 -0.257757)
(0.497235 -1.07227e-09 -0.249878)
(0.495889 -1.07552e-09 -0.242052)
(0.494511 -1.04203e-09 -0.234285)
(0.493106 -9.71062e-10 -0.22658)
(0.491678 -8.61892e-10 -0.218942)
(0.490232 -7.13882e-10 -0.211373)
(0.488772 -5.27288e-10 -0.203877)
(0.487301 -3.03438e-10 -0.196455)
(0.485823 -4.49387e-11 -0.189109)
(0.484343 2.43762e-10 -0.181838)
(0.482862 5.55991e-10 -0.174643)
(0.481384 8.8349e-10 -0.167523)
(0.479913 1.21637e-09 -0.160475)
(0.478452 1.54347e-09 -0.153498)
(0.477002 1.85355e-09 -0.146589)
(0.475567 2.13584e-09 -0.139744)
(0.474148 2.3806e-09 -0.132959)
(0.472748 2.58057e-09 -0.126229)
(0.471368 2.73095e-09 -0.119549)
(0.47001 2.8312e-09 -0.112912)
(0.468676 2.88302e-09 -0.106312)
(0.467366 2.88916e-09 -0.099742)
(0.46608 2.85076e-09 -0.0931937)
(0.464821 2.76892e-09 -0.0866592)
(0.463586 2.64679e-09 -0.0801299)
(0.462376 2.49203e-09 -0.0735968)
(0.461191 2.31544e-09 -0.0670503)
(0.460029 2.12906e-09 -0.0604808)
(0.458888 1.9435e-09 -0.053878)
(0.457767 1.76736e-09 -0.0472318)
(0.456662 1.60764e-09 -0.0405315)
(0.455571 1.47109e-09 -0.0337665)
(0.454489 1.36471e-09 -0.026926)
(0.453413 1.29523e-09 -0.0199993)
(0.452338 1.26773e-09 -0.0129756)
(0.451256 1.28463e-09 -0.00584424)
(0.450163 1.34451e-09 0.00140509)
(0.449049 1.44145e-09 0.00878255)
(0.447907 1.56564e-09 0.0162979)
(0.446728 1.70585e-09 0.0239604)
(0.445502 1.85323e-09 0.0317785)
(0.444215 2.00525e-09 0.0397602)
(0.442858 2.1682e-09 0.0479126)
(0.441415 2.3537e-09 0.0562417)
(0.439871 2.57398e-09 0.0647524)
(0.438212 2.83408e-09 0.0734485)
(0.436418 3.12779e-09 0.0823321)
(0.434471 3.43791e-09 0.0914039)
(0.432352 3.74317e-09 0.100663)
(0.430037 4.02818e-09 0.110105)
(0.427505 4.29105e-09 0.119725)
(0.424729 4.54429e-09 0.129516)
(0.421686 4.80929e-09 0.139467)
(0.418346 5.11142e-09 0.149564)
(0.414682 5.48204e-09 0.15979)
(0.410664 5.97192e-09 0.170127)
(0.40626 6.66297e-09 0.180548)
(0.401439 7.65572e-09 0.191029)
(0.39617 9.01678e-09 0.201535)
(0.390418 1.06959e-08 0.212032)
(0.384151 1.24649e-08 0.222479)
(0.377337 1.39366e-08 0.23283)
(0.369944 1.46964e-08 0.243035)
(0.361941 1.45212e-08 0.253039)
(0.353299 1.36354e-08 0.262781)
(0.343992 1.29853e-08 0.272198)
(0.333997 1.45221e-08 0.281218)
(0.323294 2.13019e-08 0.289769)
(0.311866 3.68645e-08 0.297771)
(0.299705 6.32485e-08 0.305143)
(0.286805 9.78312e-08 0.311801)
(0.273168 1.31013e-07 0.317656)
(0.258803 1.48097e-07 0.32262)
(0.243726 1.36933e-07 0.326604)
(0.227963 9.72208e-08 0.329517)
(0.211546 4.24873e-08 0.331271)
(0.194516 -1.08612e-08 0.331777)
(0.176922 -6.29383e-08 0.330948)
(0.158824 -1.54487e-07 0.328694)
(0.140285 -3.86857e-07 0.324919)
(0.12138 -8.13569e-07 0.319512)
(0.102189 -1.05072e-06 0.312326)
(0.0828128 -5.69075e-07 0.303132)
(0.0633387 -7.76519e-07 0.291504)
(0.0441561 -2.40122e-06 0.276432)
(0.0248065 -6.01807e-06 0.255307)
(0.00824793 -1.65562e-05 0.221182)
(-0.0139919 1.66477e-07 1.00094)
(-0.032367 3.89514e-07 1.02806)
(-0.0523179 2.10964e-07 1.02139)
(-0.0719732 1.4232e-07 1.00744)
(-0.0906116 1.10359e-07 0.990007)
(-0.108225 9.08192e-08 0.970253)
(-0.124777 7.69468e-08 0.948732)
(-0.140238 6.65168e-08 0.925763)
(-0.154584 5.87408e-08 0.901564)
(-0.167799 5.33649e-08 0.876295)
(-0.179866 5.01896e-08 0.850083)
(-0.190777 4.8962e-08 0.823033)
(-0.200525 4.89551e-08 0.795233)
(-0.209106 4.88044e-08 0.766764)
(-0.216517 4.70439e-08 0.737695)
(-0.222761 4.29448e-08 0.708091)
(-0.227841 3.6814e-08 0.67801)
(-0.23176 2.95661e-08 0.647508)
(-0.234525 2.21175e-08 0.616637)
(-0.236144 1.51178e-08 0.585444)
(-0.236626 8.99246e-09 0.553977)
(-0.235982 4.02777e-09 0.522279)
(-0.234223 3.9114e-10 0.490394)
(-0.231361 -1.87193e-09 0.458361)
(-0.227411 -2.84285e-09 0.426221)
(-0.222386 -2.72392e-09 0.394011)
(-0.216302 -1.79669e-09 0.361768)
(-0.209176 -3.55902e-10 0.329531)
(-0.201026 1.33421e-09 0.297334)
(-0.191871 3.03349e-09 0.265215)
(-0.181734 4.49413e-09 0.233211)
(-0.170638 5.47071e-09 0.20136)
(-0.15861 5.78319e-09 0.169703)
(-0.145681 5.40087e-09 0.138282)
(-0.131886 4.468e-09 0.107142)
(-0.117264 3.2572e-09 0.0763327)
(-0.101863 2.06385e-09 0.0459046)
(-0.0857331 1.11368e-09 0.0159125)
(-0.0689306 4.91654e-10 -0.0135838)
(-0.0515366 1.65052e-10 -0.0425073)
(-0.0336216 2.99428e-11 -0.0707932)
(-0.0152651 -3.45074e-11 -0.0983795)
(0.00345116 -1.1716e-10 -0.125208)
(0.0224389 -2.58085e-10 -0.151215)
(0.041612 -4.52039e-10 -0.17635)
(0.0608855 -6.72864e-10 -0.200564)
(0.0801772 -8.87496e-10 -0.223818)
(0.0994082 -1.06661e-09 -0.24608)
(0.118504 -1.19717e-09 -0.267321)
(0.137393 -1.27697e-09 -0.287524)
(0.156014 -1.31036e-09 -0.306677)
(0.174308 -1.30318e-09 -0.324774)
(0.192223 -1.26673e-09 -0.341817)
(0.209714 -1.20755e-09 -0.357813)
(0.226743 -1.13556e-09 -0.372772)
(0.243278 -1.06036e-09 -0.386711)
(0.259292 -9.91803e-10 -0.399648)
(0.274762 -9.37878e-10 -0.411606)
(0.289674 -9.04358e-10 -0.422609)
(0.304016 -8.92649e-10 -0.432683)
(0.31778 -9.0114e-10 -0.441855)
(0.330963 -9.25407e-10 -0.450153)
(0.343564 -9.59161e-10 -0.457607)
(0.355587 -9.96418e-10 -0.464244)
(0.367036 -1.03135e-09 -0.470094)
(0.377919 -1.05966e-09 -0.475184)
(0.388246 -1.0781e-09 -0.479543)
(0.398027 -1.08443e-09 -0.483198)
(0.407274 -1.07698e-09 -0.486176)
(0.416002 -1.05429e-09 -0.488503)
(0.424225 -1.01462e-09 -0.490204)
(0.431957 -9.56373e-10 -0.491305)
(0.439213 -8.77697e-10 -0.491829)
(0.44601 -7.76933e-10 -0.4918)
(0.452364 -6.52548e-10 -0.49124)
(0.45829 -5.03773e-10 -0.490171)
(0.463804 -3.30841e-10 -0.488615)
(0.468923 -1.34746e-10 -0.486593)
(0.473663 8.24645e-11 -0.484124)
(0.478038 3.17494e-10 -0.48123)
(0.482064 5.66251e-10 -0.477929)
(0.485756 8.24033e-10 -0.474241)
(0.489128 1.08519e-09 -0.470185)
(0.492195 1.34422e-09 -0.465778)
(0.494971 1.59528e-09 -0.461038)
(0.497469 1.83289e-09 -0.455985)
(0.499702 2.05168e-09 -0.450634)
(0.501682 2.24698e-09 -0.445004)
(0.503422 2.4146e-09 -0.43911)
(0.504934 2.55092e-09 -0.432971)
(0.506229 2.65298e-09 -0.426603)
(0.507318 2.71849e-09 -0.420021)
(0.508212 2.74564e-09 -0.413241)
(0.508921 2.7333e-09 -0.40628)
(0.509454 2.68072e-09 -0.399152)
(0.509822 2.58833e-09 -0.391873)
(0.510034 2.45665e-09 -0.384458)
(0.510098 2.28803e-09 -0.37692)
(0.510024 2.08504e-09 -0.369275)
(0.509818 1.85191e-09 -0.361535)
(0.509491 1.59391e-09 -0.353714)
(0.509048 1.31723e-09 -0.345825)
(0.508498 1.02911e-09 -0.33788)
(0.507848 7.37224e-10 -0.329891)
(0.507104 4.49222e-10 -0.32187)
(0.506273 1.72698e-10 -0.313829)
(0.505363 -8.60599e-11 -0.305776)
(0.504378 -3.21324e-10 -0.297723)
(0.503325 -5.28748e-10 -0.289678)
(0.50221 -7.05365e-10 -0.281652)
(0.501038 -8.48978e-10 -0.273651)
(0.499815 -9.58537e-10 -0.265684)
(0.498546 -1.03315e-09 -0.257757)
(0.497235 -1.07227e-09 -0.249878)
(0.495889 -1.07552e-09 -0.242052)
(0.494511 -1.04203e-09 -0.234285)
(0.493106 -9.71063e-10 -0.22658)
(0.491678 -8.61892e-10 -0.218942)
(0.490232 -7.13883e-10 -0.211373)
(0.488772 -5.27289e-10 -0.203877)
(0.487301 -3.03438e-10 -0.196455)
(0.485824 -4.49387e-11 -0.189109)
(0.484343 2.43762e-10 -0.181838)
(0.482862 5.55991e-10 -0.174643)
(0.481384 8.83491e-10 -0.167523)
(0.479914 1.21637e-09 -0.160475)
(0.478452 1.54347e-09 -0.153498)
(0.477002 1.85355e-09 -0.146589)
(0.475567 2.13584e-09 -0.139744)
(0.474148 2.3806e-09 -0.132959)
(0.472748 2.58057e-09 -0.126229)
(0.471368 2.73096e-09 -0.119549)
(0.47001 2.8312e-09 -0.112912)
(0.468676 2.88302e-09 -0.106312)
(0.467366 2.88917e-09 -0.099742)
(0.466081 2.85077e-09 -0.0931937)
(0.464821 2.76892e-09 -0.0866592)
(0.463586 2.64679e-09 -0.08013)
(0.462376 2.49203e-09 -0.0735968)
(0.461191 2.31545e-09 -0.0670504)
(0.460029 2.12907e-09 -0.0604808)
(0.458888 1.9435e-09 -0.0538781)
(0.457767 1.76736e-09 -0.0472318)
(0.456662 1.60764e-09 -0.0405315)
(0.455571 1.47109e-09 -0.0337665)
(0.454489 1.36471e-09 -0.0269261)
(0.453414 1.29524e-09 -0.0199993)
(0.452338 1.26773e-09 -0.0129756)
(0.451256 1.28463e-09 -0.00584427)
(0.450163 1.34451e-09 0.00140506)
(0.449049 1.44145e-09 0.00878253)
(0.447908 1.56564e-09 0.0162979)
(0.446728 1.70585e-09 0.0239603)
(0.445502 1.85323e-09 0.0317785)
(0.444216 2.00525e-09 0.0397602)
(0.442858 2.1682e-09 0.0479126)
(0.441415 2.3537e-09 0.0562417)
(0.439871 2.57398e-09 0.0647524)
(0.438212 2.83408e-09 0.0734485)
(0.436418 3.12779e-09 0.0823321)
(0.434471 3.43791e-09 0.0914039)
(0.432352 3.74317e-09 0.100663)
(0.430037 4.02818e-09 0.110105)
(0.427505 4.29105e-09 0.119725)
(0.42473 4.54429e-09 0.129516)
(0.421686 4.80929e-09 0.139467)
(0.418346 5.11142e-09 0.149564)
(0.414682 5.48204e-09 0.15979)
(0.410664 5.97193e-09 0.170127)
(0.40626 6.66297e-09 0.180549)
(0.40144 7.65572e-09 0.191029)
(0.39617 9.01679e-09 0.201535)
(0.390418 1.06959e-08 0.212032)
(0.384151 1.2465e-08 0.222479)
(0.377337 1.39366e-08 0.23283)
(0.369944 1.46964e-08 0.243035)
(0.361941 1.45212e-08 0.253039)
(0.353299 1.36354e-08 0.262782)
(0.343993 1.29853e-08 0.272198)
(0.333997 1.45221e-08 0.281219)
(0.323294 2.13019e-08 0.289769)
(0.311867 3.68645e-08 0.297772)
(0.299705 6.32485e-08 0.305144)
(0.286805 9.78312e-08 0.311801)
(0.273168 1.31013e-07 0.317657)
(0.258803 1.48097e-07 0.322621)
(0.243726 1.36933e-07 0.326605)
(0.227963 9.72209e-08 0.329518)
(0.211545 4.24873e-08 0.331272)
(0.194514 -1.08612e-08 0.331779)
(0.17692 -6.29384e-08 0.330949)
(0.15882 -1.54487e-07 0.328695)
(0.140279 -3.86857e-07 0.324919)
(0.121372 -8.13562e-07 0.31951)
(0.102178 -1.0507e-06 0.312321)
(0.0828004 -5.69081e-07 0.303121)
(0.0633269 -7.76812e-07 0.291482)
(0.0441446 -2.4047e-06 0.276387)
(0.0248054 -6.02041e-06 0.255223)
(0.00825091 -1.65585e-05 0.221034)
(-0.013864 9.48226e-07 1.02323)
(-0.0320168 4.87696e-07 1.04994)
(-0.0516834 2.38531e-07 1.04235)
(-0.070994 1.65579e-07 1.0274)
(-0.0892426 1.32175e-07 1.00889)
(-0.106421 1.10105e-07 0.988014)
(-0.122492 9.33863e-08 0.965337)
(-0.137428 7.98686e-08 0.941184)
(-0.151204 6.89013e-08 0.91578)
(-0.163804 6.01039e-08 0.889288)
(-0.175215 5.33064e-08 0.861841)
(-0.185427 4.88005e-08 0.833547)
(-0.194435 4.65325e-08 0.804499)
(-0.202235 4.52671e-08 0.774778)
(-0.208828 4.30137e-08 0.744458)
(-0.214215 3.84274e-08 0.713606)
(-0.2184 3.16427e-08 0.682281)
(-0.221389 2.38576e-08 0.650541)
(-0.223189 1.63569e-08 0.61844)
(-0.223809 9.92958e-09 0.586027)
(-0.223259 4.87895e-09 0.55335)
(-0.221549 1.24794e-09 0.520454)
(-0.218692 -1.02312e-09 0.487384)
(-0.214701 -2.04792e-09 0.45418)
(-0.209589 -2.00607e-09 0.420884)
(-0.203373 -1.1649e-09 0.387534)
(-0.196066 1.50646e-10 0.354169)
(-0.187688 1.63577e-09 0.320828)
(-0.178257 3.07091e-09 0.287548)
(-0.167794 4.32029e-09 0.254367)
(-0.156322 5.27272e-09 0.221327)
(-0.143867 5.8039e-09 0.188468)
(-0.13046 5.80082e-09 0.155835)
(-0.116135 5.23731e-09 0.123475)
(-0.100933 4.22156e-09 0.091439)
(-0.0849005 2.9798e-09 0.0597812)
(-0.0680913 1.78158e-09 0.0285594)
(-0.0505636 8.35992e-10 -0.00216256)
(-0.0323952 2.35955e-10 -0.0323087)
(-0.0136714 -5.62873e-11 -0.0618001)
(0.0055259 -1.5262e-10 -0.0905715)
(0.0251024 -1.83845e-10 -0.118549)
(0.0449664 -2.46314e-10 -0.145671)
(0.0650243 -3.87358e-10 -0.171879)
(0.0851845 -6.01299e-10 -0.197121)
(0.105357 -8.49525e-10 -0.221354)
(0.125455 -1.08862e-09 -0.244539)
(0.145396 -1.28079e-09 -0.266648)
(0.165106 -1.40722e-09 -0.28766)
(0.184513 -1.46869e-09 -0.307564)
(0.203554 -1.47419e-09 -0.326354)
(0.222176 -1.43538e-09 -0.344031)
(0.240327 -1.3685e-09 -0.360606)
(0.257969 -1.28503e-09 -0.37609)
(0.275065 -1.19617e-09 -0.390502)
(0.291587 -1.11169e-09 -0.403865)
(0.307514 -1.03992e-09 -0.416203)
(0.32283 -9.87039e-10 -0.427545)
(0.337522 -9.56333e-10 -0.437919)
(0.351584 -9.48076e-10 -0.447357)
(0.365014 -9.59099e-10 -0.45589)
(0.377812 -9.83954e-10 -0.46355)
(0.389982 -1.01602e-09 -0.470368)
(0.401533 -1.04839e-09 -0.476376)
(0.412472 -1.07509e-09 -0.481606)
(0.422812 -1.09149e-09 -0.486087)
(0.432566 -1.09416e-09 -0.489849)
(0.441747 -1.08083e-09 -0.492922)
(0.450373 -1.04983e-09 -0.495332)
(0.458459 -9.99784e-10 -0.497108)
(0.466022 -9.29238e-10 -0.498276)
(0.473081 -8.36962e-10 -0.49886)
(0.479652 -7.21755e-10 -0.498885)
(0.485755 -5.82313e-10 -0.498374)
(0.491407 -4.18278e-10 -0.497351)
(0.496626 -2.29855e-10 -0.495837)
(0.50143 -1.82196e-11 -0.493854)
(0.505838 2.14276e-10 -0.491422)
(0.509865 4.64206e-10 -0.488561)
(0.51353 7.27226e-10 -0.485291)
(0.516849 9.98041e-10 -0.481632)
(0.519837 1.27072e-09 -0.477601)
(0.522512 1.53906e-09 -0.473217)
(0.524887 1.79676e-09 -0.468499)
(0.526978 2.03761e-09 -0.463463)
(0.528798 2.25604e-09 -0.458127)
(0.530363 2.44692e-09 -0.452508)
(0.531685 2.60584e-09 -0.446622)
(0.532776 2.7293e-09 -0.440487)
(0.53365 2.81461e-09 -0.434118)
(0.534317 2.85987e-09 -0.427532)
(0.534791 2.86394e-09 -0.420745)
(0.535081 2.82611e-09 -0.413771)
(0.535198 2.74676e-09 -0.406626)
(0.535153 2.62677e-09 -0.399325)
(0.534955 2.46745e-09 -0.391883)
(0.534613 2.27168e-09 -0.384314)
(0.534138 2.04267e-09 -0.376632)
(0.533536 1.78528e-09 -0.368851)
(0.532818 1.50534e-09 -0.360985)
(0.531991 1.20978e-09 -0.353045)
(0.531062 9.06425e-10 -0.345046)
(0.530039 6.03398e-10 -0.336998)
(0.52893 3.09393e-10 -0.328914)
(0.527741 3.18253e-11 -0.320806)
(0.526478 -2.22479e-10 -0.312683)
(0.525149 -4.48305e-10 -0.304555)
(0.523759 -6.41766e-10 -0.296434)
(0.522314 -8.0079e-10 -0.288328)
(0.52082 -9.24509e-10 -0.280245)
(0.519282 -1.013e-09 -0.272194)
(0.517706 -1.06682e-09 -0.264182)
(0.516096 -1.08661e-09 -0.256216)
(0.514459 -1.07261e-09 -0.248303)
(0.512797 -1.02488e-09 -0.240447)
(0.511116 -9.42864e-10 -0.232655)
(0.50942 -8.25795e-10 -0.22493)
(0.507713 -6.7311e-10 -0.217276)
(0.506 -4.8473e-10 -0.209697)
(0.504284 -2.61805e-10 -0.202194)
(0.502568 -6.76342e-12 -0.194768)
(0.500858 2.7587e-10 -0.187422)
(0.499155 5.79755e-10 -0.180156)
(0.497463 8.96174e-10 -0.172968)
(0.495785 1.21459e-09 -0.165858)
(0.494125 1.52374e-09 -0.158824)
(0.492484 1.81166e-09 -0.151864)
(0.490866 2.0674e-09 -0.144974)
(0.489273 2.28178e-09 -0.138151)
(0.487706 2.44795e-09 -0.13139)
(0.486168 2.56179e-09 -0.124686)
(0.484661 2.62286e-09 -0.118033)
(0.483186 2.63547e-09 -0.111425)
(0.481744 2.6088e-09 -0.104855)
(0.480337 2.55334e-09 -0.0983161)
(0.478964 2.47599e-09 -0.0917994)
(0.477626 2.37951e-09 -0.0852968)
(0.476324 2.26431e-09 -0.0787991)
(0.475057 2.13356e-09 -0.072297)
(0.473824 1.99416e-09 -0.0657806)
(0.472624 1.85596e-09 -0.0592397)
(0.471456 1.72783e-09 -0.0526637)
(0.470317 1.61696e-09 -0.0460416)
(0.469205 1.52811e-09 -0.0393625)
(0.468118 1.46501e-09 -0.0326151)
(0.46705 1.43124e-09 -0.0257879)
(0.465998 1.42991e-09 -0.0188694)
(0.464956 1.46262e-09 -0.0118482)
(0.46392 1.5284e-09 -0.00471275)
(0.462882 1.62332e-09 0.00254812)
(0.461834 1.7404e-09 0.00994547)
(0.460769 1.87024e-09 0.01749)
(0.459677 2.00222e-09 0.0251921)
(0.458548 2.1277e-09 0.0330613)
(0.457371 2.24396e-09 0.0411068)
(0.456131 2.35666e-09 0.0493368)
(0.454817 2.47777e-09 0.0577588)
(0.453411 2.6205e-09 0.066379)
(0.451899 2.79199e-09 0.0752026)
(0.450261 2.98962e-09 0.0842331)
(0.448478 3.2024e-09 0.0934729)
(0.446529 3.41814e-09 0.102922)
(0.444392 3.63335e-09 0.112579)
(0.442042 3.86009e-09 0.12244)
(0.439453 4.12561e-09 0.132499)
(0.436598 4.46641e-09 0.142747)
(0.433447 4.92025e-09 0.153171)
(0.42997 5.5262e-09 0.163757)
(0.426135 6.33189e-09 0.174485)
(0.421909 7.39869e-09 0.185334)
(0.417256 8.78563e-09 0.196277)
(0.412141 1.05044e-08 0.207281)
(0.406528 1.24615e-08 0.218313)
(0.400381 1.44363e-08 0.229331)
(0.393662 1.61313e-08 0.240289)
(0.386335 1.7299e-08 0.251136)
(0.378366 1.79006e-08 0.261815)
(0.369721 1.82736e-08 0.272265)
(0.360369 1.93568e-08 0.282417)
(0.35028 2.30109e-08 0.292199)
(0.33943 3.22071e-08 0.301531)
(0.327799 5.03897e-08 0.310332)
(0.315372 7.92448e-08 0.318512)
(0.30214 1.15157e-07 0.325981)
(0.2881 1.46832e-07 0.332643)
(0.27326 1.58156e-07 0.338403)
(0.257632 1.38402e-07 0.343161)
(0.241241 9.50512e-08 0.346819)
(0.224117 5.64321e-08 0.34928)
(0.206303 5.09529e-08 0.350444)
(0.18785 6.24083e-08 0.350215)
(0.168821 -1.65148e-08 0.348494)
(0.149284 -3.65106e-07 0.345175)
(0.129323 -9.94228e-07 0.340137)
(0.109031 -1.32817e-06 0.333217)
(0.0885344 -9.15081e-07 0.324167)
(0.0679347 -1.50617e-06 0.312517)
(0.0477831 -2.81403e-06 0.29712)
(0.0272752 -6.34071e-06 0.275002)
(0.0111895 -1.49009e-05 0.239712)
(-0.0138624 9.48228e-07 1.02323)
(-0.032016 4.87697e-07 1.04994)
(-0.0516832 2.38531e-07 1.04235)
(-0.070994 1.65579e-07 1.0274)
(-0.0892427 1.32175e-07 1.00889)
(-0.106421 1.10105e-07 0.988013)
(-0.122492 9.33864e-08 0.965336)
(-0.137428 7.98687e-08 0.941184)
(-0.151204 6.89014e-08 0.915779)
(-0.163805 6.01039e-08 0.889288)
(-0.175215 5.33065e-08 0.861841)
(-0.185427 4.88006e-08 0.833547)
(-0.194435 4.65325e-08 0.804499)
(-0.202235 4.52671e-08 0.774778)
(-0.208828 4.30137e-08 0.744458)
(-0.214215 3.84274e-08 0.713606)
(-0.2184 3.16427e-08 0.682281)
(-0.221389 2.38577e-08 0.650541)
(-0.223189 1.63569e-08 0.61844)
(-0.223809 9.92959e-09 0.586027)
(-0.223259 4.87896e-09 0.55335)
(-0.221549 1.24794e-09 0.520455)
(-0.218692 -1.02312e-09 0.487384)
(-0.214701 -2.04792e-09 0.45418)
(-0.209589 -2.00607e-09 0.420884)
(-0.203373 -1.1649e-09 0.387534)
(-0.196066 1.50646e-10 0.354169)
(-0.187688 1.63577e-09 0.320828)
(-0.178257 3.07091e-09 0.287548)
(-0.167794 4.32028e-09 0.254367)
(-0.156322 5.27271e-09 0.221327)
(-0.143867 5.80389e-09 0.188468)
(-0.13046 5.80081e-09 0.155835)
(-0.116135 5.2373e-09 0.123475)
(-0.100933 4.22155e-09 0.091439)
(-0.0849005 2.97979e-09 0.0597812)
(-0.0680913 1.78157e-09 0.0285594)
(-0.0505635 8.3599e-10 -0.00216254)
(-0.0323952 2.35954e-10 -0.0323086)
(-0.0136714 -5.62872e-11 -0.0618001)
(0.00552591 -1.52619e-10 -0.0905715)
(0.0251024 -1.83844e-10 -0.118549)
(0.0449664 -2.46314e-10 -0.145671)
(0.0650243 -3.87358e-10 -0.171879)
(0.0851845 -6.01298e-10 -0.197121)
(0.105357 -8.49523e-10 -0.221354)
(0.125455 -1.08862e-09 -0.244539)
(0.145397 -1.28079e-09 -0.266648)
(0.165106 -1.40722e-09 -0.287661)
(0.184513 -1.46869e-09 -0.307564)
(0.203554 -1.47418e-09 -0.326354)
(0.222176 -1.43537e-09 -0.344032)
(0.240327 -1.3685e-09 -0.360606)
(0.257969 -1.28503e-09 -0.37609)
(0.275065 -1.19617e-09 -0.390502)
(0.291587 -1.11169e-09 -0.403865)
(0.307514 -1.03991e-09 -0.416203)
(0.32283 -9.87038e-10 -0.427545)
(0.337522 -9.56332e-10 -0.437919)
(0.351584 -9.48075e-10 -0.447357)
(0.365014 -9.59098e-10 -0.45589)
(0.377812 -9.83953e-10 -0.46355)
(0.389982 -1.01602e-09 -0.470368)
(0.401533 -1.04839e-09 -0.476376)
(0.412472 -1.07509e-09 -0.481606)
(0.422812 -1.09149e-09 -0.486087)
(0.432566 -1.09416e-09 -0.489849)
(0.441747 -1.08083e-09 -0.492922)
(0.450373 -1.04983e-09 -0.495332)
(0.458459 -9.99783e-10 -0.497108)
(0.466022 -9.29237e-10 -0.498276)
(0.473081 -8.36961e-10 -0.49886)
(0.479652 -7.21754e-10 -0.498885)
(0.485755 -5.82312e-10 -0.498374)
(0.491407 -4.18278e-10 -0.497351)
(0.496626 -2.29855e-10 -0.495837)
(0.50143 -1.82196e-11 -0.493854)
(0.505838 2.14276e-10 -0.491422)
(0.509865 4.64206e-10 -0.488561)
(0.51353 7.27225e-10 -0.485291)
(0.516849 9.98041e-10 -0.481632)
(0.519837 1.27072e-09 -0.477601)
(0.522512 1.53906e-09 -0.473217)
(0.524887 1.79676e-09 -0.468499)
(0.526978 2.03761e-09 -0.463463)
(0.528799 2.25604e-09 -0.458127)
(0.530363 2.44692e-09 -0.452507)
(0.531685 2.60584e-09 -0.446622)
(0.532776 2.72929e-09 -0.440487)
(0.53365 2.81461e-09 -0.434118)
(0.534318 2.85987e-09 -0.427532)
(0.534791 2.86394e-09 -0.420745)
(0.535081 2.82611e-09 -0.413771)
(0.535198 2.74676e-09 -0.406626)
(0.535153 2.62676e-09 -0.399325)
(0.534955 2.46745e-09 -0.391883)
(0.534613 2.27168e-09 -0.384314)
(0.534138 2.04267e-09 -0.376632)
(0.533537 1.78528e-09 -0.368851)
(0.532818 1.50534e-09 -0.360985)
(0.531991 1.20978e-09 -0.353045)
(0.531062 9.06425e-10 -0.345046)
(0.530039 6.03398e-10 -0.336998)
(0.52893 3.09393e-10 -0.328914)
(0.527741 3.18253e-11 -0.320806)
(0.526478 -2.22479e-10 -0.312682)
(0.525149 -4.48305e-10 -0.304555)
(0.523759 -6.41766e-10 -0.296434)
(0.522314 -8.00791e-10 -0.288328)
(0.52082 -9.24509e-10 -0.280245)
(0.519282 -1.013e-09 -0.272194)
(0.517706 -1.06682e-09 -0.264182)
(0.516097 -1.08661e-09 -0.256216)
(0.514459 -1.07261e-09 -0.248303)
(0.512797 -1.02488e-09 -0.240447)
(0.511116 -9.42864e-10 -0.232655)
(0.50942 -8.25796e-10 -0.22493)
(0.507713 -6.7311e-10 -0.217276)
(0.506 -4.8473e-10 -0.209697)
(0.504284 -2.61805e-10 -0.202194)
(0.502568 -6.76342e-12 -0.194768)
(0.500858 2.7587e-10 -0.187422)
(0.499155 5.79756e-10 -0.180156)
(0.497463 8.96175e-10 -0.172968)
(0.495785 1.21459e-09 -0.165858)
(0.494125 1.52374e-09 -0.158824)
(0.492484 1.81166e-09 -0.151864)
(0.490866 2.0674e-09 -0.144974)
(0.489273 2.28178e-09 -0.138151)
(0.487706 2.44796e-09 -0.13139)
(0.486168 2.5618e-09 -0.124686)
(0.484661 2.62286e-09 -0.118033)
(0.483186 2.63547e-09 -0.111425)
(0.481744 2.6088e-09 -0.104855)
(0.480337 2.55334e-09 -0.0983161)
(0.478964 2.47599e-09 -0.0917994)
(0.477626 2.37951e-09 -0.0852968)
(0.476324 2.26431e-09 -0.0787991)
(0.475057 2.13356e-09 -0.072297)
(0.473824 1.99416e-09 -0.0657806)
(0.472624 1.85596e-09 -0.0592397)
(0.471456 1.72783e-09 -0.0526637)
(0.470317 1.61696e-09 -0.0460417)
(0.469206 1.52811e-09 -0.0393626)
(0.468118 1.46501e-09 -0.0326151)
(0.46705 1.43125e-09 -0.0257879)
(0.465998 1.42991e-09 -0.0188694)
(0.464956 1.46262e-09 -0.0118482)
(0.46392 1.5284e-09 -0.00471277)
(0.462882 1.62332e-09 0.00254809)
(0.461834 1.7404e-09 0.00994545)
(0.460769 1.87024e-09 0.01749)
(0.459678 2.00222e-09 0.025192)
(0.458548 2.1277e-09 0.0330613)
(0.457371 2.24396e-09 0.0411067)
(0.456131 2.35667e-09 0.0493368)
(0.454817 2.47777e-09 0.0577588)
(0.453411 2.6205e-09 0.066379)
(0.451899 2.79199e-09 0.0752025)
(0.450261 2.98962e-09 0.0842331)
(0.448478 3.2024e-09 0.0934729)
(0.446529 3.41814e-09 0.102922)
(0.444392 3.63335e-09 0.112579)
(0.442042 3.8601e-09 0.12244)
(0.439453 4.12562e-09 0.132499)
(0.436598 4.46641e-09 0.142747)
(0.433447 4.92025e-09 0.153171)
(0.42997 5.5262e-09 0.163757)
(0.426135 6.33189e-09 0.174486)
(0.421909 7.39869e-09 0.185334)
(0.417256 8.78563e-09 0.196277)
(0.412141 1.05044e-08 0.207282)
(0.406528 1.24615e-08 0.218313)
(0.400381 1.44363e-08 0.229331)
(0.393662 1.61313e-08 0.240289)
(0.386336 1.7299e-08 0.251136)
(0.378367 1.79006e-08 0.261815)
(0.369722 1.82737e-08 0.272265)
(0.360369 1.93568e-08 0.282417)
(0.35028 2.30109e-08 0.292199)
(0.33943 3.22071e-08 0.301532)
(0.327799 5.03897e-08 0.310332)
(0.315372 7.92448e-08 0.318513)
(0.30214 1.15157e-07 0.325982)
(0.288101 1.46832e-07 0.332644)
(0.27326 1.58156e-07 0.338404)
(0.257632 1.38402e-07 0.343163)
(0.24124 9.50513e-08 0.346821)
(0.224116 5.64322e-08 0.349282)
(0.206301 5.09529e-08 0.350446)
(0.187848 6.24083e-08 0.350218)
(0.168816 -1.65148e-08 0.348497)
(0.149277 -3.65106e-07 0.345178)
(0.129312 -9.94226e-07 0.340137)
(0.109017 -1.32817e-06 0.333215)
(0.088517 -9.15147e-07 0.324157)
(0.0679145 -1.50692e-06 0.312494)
(0.0477586 -2.8185e-06 0.297069)
(0.0272555 -6.3425e-06 0.274906)
(0.0111748 -1.49046e-05 0.239537)
(-0.0137062 1.57244e-06 1.04526)
(-0.0315905 5.55726e-07 1.0715)
(-0.0509181 2.74113e-07 1.06295)
(-0.0698223 1.92365e-07 1.04693)
(-0.0876149 1.55318e-07 1.0273)
(-0.104288 1.30062e-07 1.00526)
(-0.119805 1.103e-07 0.981373)
(-0.134138 9.40308e-08 0.955988)
(-0.147264 8.04151e-08 0.92933)
(-0.159168 6.84953e-08 0.901569)
(-0.169837 5.76088e-08 0.872841)
(-0.179263 4.8601e-08 0.843259)
(-0.187442 4.28458e-08 0.812918)
(-0.194373 4.00894e-08 0.781904)
(-0.200056 3.79994e-08 0.750293)
(-0.204495 3.41218e-08 0.718152)
(-0.207694 2.77634e-08 0.685544)
(-0.209661 2.00342e-08 0.652529)
(-0.210404 1.2588e-08 0.619161)
(-0.209931 6.55126e-09 0.585492)
(-0.208255 2.29667e-09 0.55157)
(-0.205385 -2.77173e-10 0.517442)
(-0.201336 -1.43216e-09 0.483152)
(-0.196119 -1.44252e-09 0.448743)
(-0.18975 -5.88677e-10 0.414258)
(-0.182243 7.98097e-10 0.379735)
(-0.173615 2.35084e-09 0.345215)
(-0.163884 3.75326e-09 0.310738)
(-0.15307 4.82575e-09 0.276344)
(-0.141195 5.53439e-09 0.242074)
(-0.128285 5.90826e-09 0.207971)
(-0.114368 5.95341e-09 0.174081)
(-0.0994796 5.63238e-09 0.140453)
(-0.08366 4.91632e-09 0.107141)
(-0.0669561 3.8647e-09 0.0742019)
(-0.0494236 2.64411e-09 0.041699)
(-0.0311238 1.47891e-09 0.00969623)
(-0.012129 5.56784e-10 -0.0217289)
(0.00746041 -2.85491e-11 -0.0524875)
(0.0275518 -3.04205e-10 -0.0824936)
(0.0480492 -3.75979e-10 -0.111677)
(0.068852 -3.7889e-10 -0.139967)
(0.0898603 -4.20537e-10 -0.167301)
(0.110973 -5.50807e-10 -0.19362)
(0.132092 -7.67091e-10 -0.218874)
(0.153122 -1.02661e-09 -0.243023)
(0.173973 -1.27659e-09 -0.266033)
(0.194563 -1.47435e-09 -0.287884)
(0.214814 -1.59572e-09 -0.308561)
(0.23466 -1.64015e-09 -0.32806)
(0.254038 -1.61967e-09 -0.346383)
(0.272898 -1.55151e-09 -0.363542)
(0.291194 -1.45636e-09 -0.379551)
(0.30889 -1.35019e-09 -0.394433)
(0.325955 -1.24607e-09 -0.408212)
(0.342368 -1.15351e-09 -0.420918)
(0.358111 -1.0791e-09 -0.432582)
(0.373174 -1.02743e-09 -0.443237)
(0.387549 -9.99716e-10 -0.452918)
(0.401237 -9.94273e-10 -0.461661)
(0.414238 -1.00685e-09 -0.4695)
(0.42656 -1.03084e-09 -0.476471)
(0.43821 -1.05907e-09 -0.482608)
(0.449201 -1.08416e-09 -0.487947)
(0.459546 -1.10002e-09 -0.49252)
(0.469261 -1.10133e-09 -0.49636)
(0.478362 -1.0848e-09 -0.499497)
(0.486867 -1.04805e-09 -0.501963)
(0.494796 -9.89548e-10 -0.503785)
(0.502168 -9.0829e-10 -0.504992)
(0.509003 -8.03258e-10 -0.50561)
(0.515322 -6.73557e-10 -0.505664)
(0.521144 -5.18906e-10 -0.50518)
(0.526491 -3.39253e-10 -0.504181)
(0.531382 -1.35084e-10 -0.50269)
(0.535838 9.19381e-11 -0.500727)
(0.539878 3.39386e-10 -0.498315)
(0.543521 6.03501e-10 -0.495474)
(0.546787 8.79683e-10 -0.492222)
(0.549694 1.16223e-09 -0.48858)
(0.55226 1.44498e-09 -0.484567)
(0.554501 1.72126e-09 -0.480199)
(0.556435 1.98425e-09 -0.475496)
(0.558079 2.22753e-09 -0.470473)
(0.559447 2.44499e-09 -0.465149)
(0.560554 2.63133e-09 -0.459541)
(0.561416 2.78207e-09 -0.453664)
(0.562045 2.89392e-09 -0.447534)
(0.562456 2.96446e-09 -0.441169)
(0.562662 2.9922e-09 -0.434583)
(0.562674 2.97669e-09 -0.427792)
(0.562504 2.91812e-09 -0.420812)
(0.562165 2.81743e-09 -0.413657)
(0.561666 2.67617e-09 -0.406342)
(0.561018 2.49668e-09 -0.398882)
(0.560232 2.28184e-09 -0.391291)
(0.559316 2.03581e-09 -0.383583)
(0.558281 1.76365e-09 -0.375771)
(0.557134 1.47162e-09 -0.36787)
(0.555884 1.16743e-09 -0.359891)
(0.55454 8.59267e-10 -0.351848)
(0.553109 5.55861e-10 -0.343753)
(0.551599 2.66003e-10 -0.335618)
(0.550016 -2.38218e-12 -0.327454)
(0.548368 -2.43081e-10 -0.319271)
(0.546661 -4.51288e-10 -0.311082)
(0.544901 -6.24548e-10 -0.302895)
(0.543095 -7.62324e-10 -0.294719)
(0.541247 -8.65894e-10 -0.286565)
(0.539365 -9.37481e-10 -0.278441)
(0.537452 -9.7972e-10 -0.270353)
(0.535514 -9.95063e-10 -0.26231)
(0.533557 -9.84892e-10 -0.254319)
(0.531583 -9.49384e-10 -0.246384)
(0.529599 -8.87286e-10 -0.238513)
(0.527609 -7.96553e-10 -0.230709)
(0.525616 -6.74295e-10 -0.222977)
(0.523625 -5.18185e-10 -0.215321)
(0.521639 -3.26663e-10 -0.207742)
(0.519662 -9.98287e-11 -0.200244)
(0.517699 1.59786e-10 -0.192828)
(0.515751 4.47044e-10 -0.185494)
(0.513822 7.54274e-10 -0.178243)
(0.511916 1.07077e-09 -0.171075)
(0.510035 1.38381e-09 -0.163987)
(0.508183 1.67988e-09 -0.156978)
(0.506361 1.9451e-09 -0.150046)
(0.504572 2.16734e-09 -0.143186)
(0.502819 2.33781e-09 -0.136396)
(0.501103 2.45143e-09 -0.129669)
(0.499426 2.50618e-09 -0.123002)
(0.49779 2.50324e-09 -0.116387)
(0.496197 2.44905e-09 -0.109819)
(0.494647 2.35703e-09 -0.10329)
(0.493141 2.24477e-09 -0.0967927)
(0.491681 2.12681e-09 -0.0903183)
(0.490266 2.00941e-09 -0.083858)
(0.488896 1.89134e-09 -0.0774026)
(0.487572 1.77007e-09 -0.0709423)
(0.486292 1.64624e-09 -0.0644667)
(0.485056 1.52561e-09 -0.0579652)
(0.483861 1.41594e-09 -0.0514266)
(0.482707 1.32435e-09 -0.0448398)
(0.48159 1.25619e-09 -0.0381929)
(0.480508 1.21554e-09 -0.0314741)
(0.479457 1.20627e-09 -0.0246713)
(0.478432 1.23097e-09 -0.0177724)
(0.477429 1.28986e-09 -0.010765)
(0.476442 1.37953e-09 -0.00363694)
(0.475465 1.49263e-09 0.00362394)
(0.474489 1.62039e-09 0.0110296)
(0.473508 1.75245e-09 0.0185918)
(0.472511 1.87864e-09 0.0263219)
(0.471488 1.9903e-09 0.0342307)
(0.470428 2.08434e-09 0.0423285)
(0.469318 2.16642e-09 0.0506251)
(0.468143 2.24914e-09 0.059129)
(0.466888 2.34842e-09 0.0678481)
(0.465537 2.47554e-09 0.0767891)
(0.464071 2.63388e-09 0.0859571)
(0.462469 2.82019e-09 0.0953561)
(0.46071 3.03125e-09 0.104988)
(0.458771 3.27443e-09 0.114853)
(0.456625 3.5733e-09 0.124949)
(0.454246 3.96786e-09 0.135272)
(0.451605 4.50627e-09 0.145814)
(0.448671 5.23567e-09 0.156566)
(0.445411 6.19676e-09 0.167513)
(0.441791 7.42568e-09 0.178638)
(0.437774 8.95265e-09 0.189921)
(0.433324 1.07882e-08 0.201337)
(0.4284 1.28907e-08 0.212854)
(0.422964 1.51407e-08 0.224439)
(0.416974 1.73556e-08 0.23605)
(0.41039 1.93658e-08 0.247642)
(0.40317 2.11224e-08 0.259164)
(0.395274 2.27777e-08 0.270556)
(0.386664 2.47475e-08 0.281756)
(0.377302 2.78635e-08 0.292693)
(0.367154 3.37196e-08 0.30329)
(0.356191 4.49753e-08 0.313464)
(0.344385 6.48545e-08 0.323128)
(0.331716 9.49532e-08 0.332186)
(0.318171 1.31536e-07 0.340541)
(0.303742 1.62679e-07 0.34809)
(0.288433 1.70508e-07 0.354727)
(0.272253 1.4189e-07 0.360344)
(0.255224 8.53482e-08 0.364833)
(0.237377 4.19382e-08 0.368085)
(0.218754 6.78105e-08 0.369992)
(0.199409 1.68294e-07 0.370444)
(0.179406 2.05624e-07 0.369332)
(0.15882 -8.22324e-08 0.366538)
(0.137739 -7.35886e-07 0.361923)
(0.116265 -1.17465e-06 0.355306)
(0.0945304 -1.15136e-06 0.346402)
(0.0726162 -2.06316e-06 0.334671)
(0.0510293 -2.81597e-06 0.318801)
(0.0293004 -2.19392e-06 0.295341)
(0.0113825 2.96982e-06 0.260377)
(-0.0137053 1.57244e-06 1.04526)
(-0.0315899 5.55727e-07 1.0715)
(-0.0509179 2.74113e-07 1.06295)
(-0.0698223 1.92365e-07 1.04693)
(-0.087615 1.55319e-07 1.0273)
(-0.104288 1.30063e-07 1.00525)
(-0.119805 1.103e-07 0.981373)
(-0.134138 9.40309e-08 0.955988)
(-0.147264 8.04152e-08 0.92933)
(-0.159168 6.84953e-08 0.901569)
(-0.169837 5.76089e-08 0.872841)
(-0.179263 4.8601e-08 0.843258)
(-0.187442 4.28458e-08 0.812918)
(-0.194373 4.00895e-08 0.781904)
(-0.200056 3.79994e-08 0.750292)
(-0.204495 3.41218e-08 0.718152)
(-0.207694 2.77634e-08 0.685544)
(-0.209661 2.00342e-08 0.652529)
(-0.210404 1.2588e-08 0.619161)
(-0.209932 6.55126e-09 0.585492)
(-0.208255 2.29668e-09 0.55157)
(-0.205385 -2.77173e-10 0.517442)
(-0.201336 -1.43216e-09 0.483152)
(-0.196119 -1.44252e-09 0.448743)
(-0.18975 -5.88677e-10 0.414258)
(-0.182243 7.98097e-10 0.379735)
(-0.173615 2.35084e-09 0.345215)
(-0.163884 3.75326e-09 0.310738)
(-0.15307 4.82574e-09 0.276344)
(-0.141195 5.53438e-09 0.242074)
(-0.128285 5.90825e-09 0.207971)
(-0.114368 5.9534e-09 0.174081)
(-0.0994796 5.63237e-09 0.140453)
(-0.08366 4.91631e-09 0.107141)
(-0.0669561 3.86469e-09 0.074202)
(-0.0494236 2.6441e-09 0.041699)
(-0.0311238 1.47891e-09 0.00969625)
(-0.012129 5.56783e-10 -0.0217288)
(0.00746043 -2.8549e-11 -0.0524874)
(0.0275519 -3.04204e-10 -0.0824936)
(0.0480493 -3.75978e-10 -0.111677)
(0.0688521 -3.78889e-10 -0.139967)
(0.0898603 -4.20536e-10 -0.167301)
(0.110973 -5.50806e-10 -0.19362)
(0.132092 -7.67089e-10 -0.218874)
(0.153122 -1.02661e-09 -0.243023)
(0.173973 -1.27658e-09 -0.266033)
(0.194563 -1.47435e-09 -0.287884)
(0.214815 -1.59571e-09 -0.308561)
(0.23466 -1.64015e-09 -0.32806)
(0.254038 -1.61967e-09 -0.346384)
(0.272898 -1.55151e-09 -0.363542)
(0.291194 -1.45635e-09 -0.379551)
(0.30889 -1.35018e-09 -0.394433)
(0.325955 -1.24606e-09 -0.408212)
(0.342368 -1.1535e-09 -0.420918)
(0.358111 -1.0791e-09 -0.432582)
(0.373174 -1.02743e-09 -0.443237)
(0.387549 -9.99715e-10 -0.452918)
(0.401237 -9.94272e-10 -0.461661)
(0.414238 -1.00685e-09 -0.4695)
(0.42656 -1.03084e-09 -0.476471)
(0.43821 -1.05907e-09 -0.482608)
(0.449201 -1.08416e-09 -0.487947)
(0.459546 -1.10002e-09 -0.49252)
(0.469261 -1.10133e-09 -0.49636)
(0.478362 -1.0848e-09 -0.499497)
(0.486867 -1.04805e-09 -0.501963)
(0.494796 -9.89547e-10 -0.503785)
(0.502168 -9.0829e-10 -0.504992)
(0.509003 -8.03258e-10 -0.50561)
(0.515322 -6.73557e-10 -0.505664)
(0.521144 -5.18905e-10 -0.505181)
(0.526491 -3.39253e-10 -0.504181)
(0.531382 -1.35084e-10 -0.50269)
(0.535838 9.19381e-11 -0.500727)
(0.539878 3.39386e-10 -0.498315)
(0.543521 6.03501e-10 -0.495474)
(0.546787 8.79682e-10 -0.492222)
(0.549694 1.16223e-09 -0.48858)
(0.55226 1.44498e-09 -0.484567)
(0.554501 1.72126e-09 -0.480199)
(0.556436 1.98425e-09 -0.475496)
(0.558079 2.22753e-09 -0.470473)
(0.559447 2.44499e-09 -0.465149)
(0.560554 2.63133e-09 -0.459541)
(0.561416 2.78207e-09 -0.453664)
(0.562045 2.89392e-09 -0.447534)
(0.562456 2.96446e-09 -0.441169)
(0.562662 2.9922e-09 -0.434583)
(0.562674 2.97669e-09 -0.427792)
(0.562504 2.91812e-09 -0.420812)
(0.562165 2.81743e-09 -0.413657)
(0.561666 2.67617e-09 -0.406342)
(0.561018 2.49668e-09 -0.398882)
(0.560232 2.28184e-09 -0.391291)
(0.559316 2.03581e-09 -0.383583)
(0.558281 1.76365e-09 -0.375771)
(0.557134 1.47162e-09 -0.36787)
(0.555884 1.16743e-09 -0.359891)
(0.55454 8.59267e-10 -0.351848)
(0.553109 5.55861e-10 -0.343753)
(0.551599 2.66003e-10 -0.335618)
(0.550016 -2.38218e-12 -0.327454)
(0.548368 -2.43081e-10 -0.319271)
(0.546661 -4.51288e-10 -0.311082)
(0.544901 -6.24548e-10 -0.302894)
(0.543095 -7.62324e-10 -0.294719)
(0.541247 -8.65894e-10 -0.286565)
(0.539365 -9.37482e-10 -0.278441)
(0.537452 -9.7972e-10 -0.270353)
(0.535514 -9.95064e-10 -0.26231)
(0.533557 -9.84892e-10 -0.254319)
(0.531584 -9.49384e-10 -0.246384)
(0.5296 -8.87287e-10 -0.238513)
(0.527609 -7.96554e-10 -0.230709)
(0.525616 -6.74296e-10 -0.222977)
(0.523625 -5.18186e-10 -0.215321)
(0.521639 -3.26663e-10 -0.207742)
(0.519662 -9.98287e-11 -0.200244)
(0.517699 1.59786e-10 -0.192828)
(0.515751 4.47044e-10 -0.185494)
(0.513822 7.54275e-10 -0.178243)
(0.511916 1.07077e-09 -0.171075)
(0.510036 1.38381e-09 -0.163987)
(0.508183 1.67988e-09 -0.156978)
(0.506361 1.9451e-09 -0.150046)
(0.504572 2.16734e-09 -0.143186)
(0.502819 2.33781e-09 -0.136396)
(0.501103 2.45144e-09 -0.129669)
(0.499426 2.50618e-09 -0.123002)
(0.49779 2.50324e-09 -0.116387)
(0.496197 2.44906e-09 -0.109819)
(0.494647 2.35703e-09 -0.10329)
(0.493141 2.24477e-09 -0.0967927)
(0.491681 2.12681e-09 -0.0903183)
(0.490266 2.00941e-09 -0.083858)
(0.488896 1.89134e-09 -0.0774026)
(0.487572 1.77007e-09 -0.0709423)
(0.486292 1.64624e-09 -0.0644667)
(0.485056 1.52561e-09 -0.0579652)
(0.483862 1.41594e-09 -0.0514267)
(0.482707 1.32435e-09 -0.0448398)
(0.48159 1.25619e-09 -0.0381929)
(0.480508 1.21554e-09 -0.0314741)
(0.479457 1.20627e-09 -0.0246713)
(0.478432 1.23097e-09 -0.0177724)
(0.477429 1.28986e-09 -0.010765)
(0.476442 1.37953e-09 -0.00363696)
(0.475465 1.49263e-09 0.00362391)
(0.474489 1.62039e-09 0.0110296)
(0.473508 1.75245e-09 0.0185918)
(0.472511 1.87864e-09 0.0263218)
(0.471488 1.9903e-09 0.0342307)
(0.470428 2.08434e-09 0.0423285)
(0.469318 2.16642e-09 0.050625)
(0.468143 2.24914e-09 0.059129)
(0.466888 2.34842e-09 0.0678481)
(0.465537 2.47554e-09 0.076789)
(0.464071 2.63388e-09 0.0859571)
(0.462469 2.82019e-09 0.0953561)
(0.46071 3.03125e-09 0.104988)
(0.458771 3.27443e-09 0.114853)
(0.456625 3.57331e-09 0.124949)
(0.454247 3.96786e-09 0.135272)
(0.451606 4.50627e-09 0.145814)
(0.448671 5.23567e-09 0.156566)
(0.445411 6.19677e-09 0.167513)
(0.441791 7.42569e-09 0.178638)
(0.437775 8.95265e-09 0.189922)
(0.433324 1.07882e-08 0.201337)
(0.428401 1.28907e-08 0.212854)
(0.422964 1.51407e-08 0.224439)
(0.416974 1.73556e-08 0.23605)
(0.41039 1.93659e-08 0.247642)
(0.40317 2.11224e-08 0.259164)
(0.395274 2.27777e-08 0.270557)
(0.386664 2.47475e-08 0.281756)
(0.377302 2.78635e-08 0.292693)
(0.367155 3.37196e-08 0.30329)
(0.356191 4.49754e-08 0.313465)
(0.344385 6.48545e-08 0.323128)
(0.331716 9.49532e-08 0.332187)
(0.318171 1.31536e-07 0.340542)
(0.303743 1.62679e-07 0.348091)
(0.288433 1.70508e-07 0.354728)
(0.272253 1.4189e-07 0.360346)
(0.255224 8.53482e-08 0.364835)
(0.237376 4.19382e-08 0.368088)
(0.218753 6.78106e-08 0.369995)
(0.199407 1.68294e-07 0.370448)
(0.179402 2.05624e-07 0.369338)
(0.158812 -8.22326e-08 0.366543)
(0.137727 -7.35889e-07 0.361928)
(0.116248 -1.17467e-06 0.355308)
(0.0945064 -1.15147e-06 0.346397)
(0.072582 -2.06419e-06 0.334653)
(0.0509818 -2.81988e-06 0.31875)
(0.0292478 -2.19367e-06 0.295231)
(0.0113456 2.97056e-06 0.260146)
(-0.0135187 2.13097e-06 1.06699)
(-0.0310817 6.16998e-07 1.09269)
(-0.0500086 3.09839e-07 1.08311)
(-0.0684376 2.14234e-07 1.06597)
(-0.0857008 1.71513e-07 1.04516)
(-0.101791 1.43129e-07 1.0219)
(-0.116671 1.21452e-07 0.996758)
(-0.130316 1.04467e-07 0.970089)
(-0.142704 9.08916e-08 0.942126)
(-0.15382 7.86765e-08 0.913046)
(-0.163654 6.5413e-08 0.882989)
(-0.172199 5.15747e-08 0.852072)
(-0.179453 4.05584e-08 0.820394)
(-0.185416 3.46782e-08 0.788043)
(-0.19009 3.23031e-08 0.755098)
(-0.193482 2.97764e-08 0.721628)
(-0.195595 2.48523e-08 0.687699)
(-0.19644 1.79153e-08 0.65337)
(-0.196024 1.07711e-08 0.618699)
(-0.194359 5.00763e-09 0.583736)
(-0.191454 1.27755e-09 0.548533)
(-0.187323 -5.31524e-10 0.513137)
(-0.181977 -8.47112e-10 0.477593)
(-0.175431 -1.0769e-10 0.441945)
(-0.167699 1.30648e-09 0.406235)
(-0.158795 3.01558e-09 0.370505)
(-0.148738 4.62997e-09 0.334797)
(-0.137545 5.82994e-09 0.299151)
(-0.125237 6.47053e-09 0.263611)
(-0.111839 6.60448e-09 0.228222)
(-0.097379 6.38727e-09 0.19303)
(-0.0818903 5.94446e-09 0.158087)
(-0.0654128 5.31448e-09 0.123448)
(-0.0479945 4.47146e-09 0.0891752)
(-0.0296898 3.42512e-09 0.0553334)
(-0.0105664 2.27085e-09 0.0219935)
(0.0093067 1.1662e-09 -0.0107716)
(0.0298137 2.79258e-10 -0.0428482)
(0.0508606 -2.92218e-10 -0.0741518)
(0.072342 -5.64943e-10 -0.104601)
(0.0941515 -6.30825e-10 -0.13412)
(0.116179 -6.15676e-10 -0.162636)
(0.138314 -6.33843e-10 -0.190083)
(0.160448 -7.4411e-10 -0.216408)
(0.182479 -9.46245e-10 -0.241562)
(0.204307 -1.20072e-09 -0.265512)
(0.225842 -1.45033e-09 -0.288232)
(0.247 -1.64573e-09 -0.309708)
(0.267707 -1.75838e-09 -0.329935)
(0.287897 -1.78571e-09 -0.348918)
(0.307514 -1.74168e-09 -0.366668)
(0.326509 -1.6479e-09 -0.383203)
(0.344845 -1.52849e-09 -0.39855)
(0.362489 -1.40281e-09 -0.412736)
(0.379418 -1.28561e-09 -0.425795)
(0.395614 -1.18632e-09 -0.437763)
(0.411067 -1.11029e-09 -0.448677)
(0.425772 -1.05987e-09 -0.458577)
(0.439729 -1.03448e-09 -0.467501)
(0.45294 -1.03081e-09 -0.47549)
(0.465415 -1.04331e-09 -0.482582)
(0.477164 -1.06449e-09 -0.488817)
(0.488201 -1.08635e-09 -0.494232)
(0.498541 -1.10152e-09 -0.498864)
(0.508204 -1.10314e-09 -0.502747)
(0.517208 -1.08607e-09 -0.505916)
(0.525575 -1.04669e-09 -0.508403)
(0.533325 -9.82815e-10 -0.51024)
(0.540481 -8.93097e-10 -0.511455)
(0.547066 -7.76971e-10 -0.512077)
(0.553103 -6.34182e-10 -0.512134)
(0.558614 -4.64781e-10 -0.51165)
(0.563623 -2.69536e-10 -0.51065)
(0.568152 -4.96222e-11 -0.509157)
(0.572223 1.92992e-10 -0.507195)
(0.575859 4.55366e-10 -0.504783)
(0.57908 7.33334e-10 -0.501943)
(0.581908 1.02191e-09 -0.498695)
(0.584363 1.3155e-09 -0.495057)
(0.586465 1.60729e-09 -0.491049)
(0.588232 1.89045e-09 -0.486688)
(0.589683 2.15788e-09 -0.481991)
(0.590837 2.40297e-09 -0.476977)
(0.591709 2.61946e-09 -0.471661)
(0.592316 2.80181e-09 -0.46606)
(0.592675 2.94574e-09 -0.46019)
(0.5928 3.04806e-09 -0.454067)
(0.592705 3.10665e-09 -0.447707)
(0.592406 3.12075e-09 -0.441124)
(0.591914 3.09036e-09 -0.434335)
(0.591242 3.01661e-09 -0.427353)
(0.590404 2.90101e-09 -0.420195)
(0.589409 2.74587e-09 -0.412874)
(0.588271 2.55406e-09 -0.405404)
(0.586999 2.32897e-09 -0.3978)
(0.585602 2.07507e-09 -0.390075)
(0.584092 1.79775e-09 -0.382243)
(0.582478 1.50391e-09 -0.374318)
(0.580768 1.20138e-09 -0.366311)
(0.57897 8.98981e-10 -0.358237)
(0.577093 6.0601e-10 -0.350106)
(0.575145 3.31726e-10 -0.341931)
(0.573132 8.38235e-11 -0.333723)
(0.571063 -1.31485e-10 -0.325494)
(0.568943 -3.10671e-10 -0.317254)
(0.56678 -4.5307e-10 -0.309013)
(0.564578 -5.60726e-10 -0.300782)
(0.562345 -6.38037e-10 -0.292568)
(0.560086 -6.90959e-10 -0.284381)
(0.557805 -7.25679e-10 -0.276229)
(0.555509 -7.47898e-10 -0.26812)
(0.553202 -7.61399e-10 -0.260061)
(0.550889 -7.67359e-10 -0.252057)
(0.548574 -7.6432e-10 -0.244116)
(0.546261 -7.47884e-10 -0.236242)
(0.543955 -7.1148e-10 -0.228441)
(0.54166 -6.47669e-10 -0.220715)
(0.539379 -5.49342e-10 -0.213068)
(0.537116 -4.10465e-10 -0.205504)
(0.534875 -2.28122e-10 -0.198024)
(0.532659 -2.61951e-12 -0.190629)
(0.53047 2.62158e-10 -0.18332)
(0.528313 5.58669e-10 -0.176097)
(0.52619 8.75128e-10 -0.16896)
(0.524103 1.19727e-09 -0.161906)
(0.522056 1.50919e-09 -0.154934)
(0.520051 1.7938e-09 -0.148041)
(0.51809 2.03595e-09 -0.141223)
(0.516175 2.22429e-09 -0.134477)
(0.514308 2.35305e-09 -0.127796)
(0.512491 2.42019e-09 -0.121176)
(0.510725 2.42507e-09 -0.114611)
(0.509013 2.37043e-09 -0.108094)
(0.507354 2.26697e-09 -0.101617)
(0.50575 2.13426e-09 -0.0951715)
(0.504202 1.99267e-09 -0.0887501)
(0.502709 1.8542e-09 -0.0823432)
(0.501273 1.71851e-09 -0.0759409)
(0.499892 1.57829e-09 -0.0695333)
(0.498566 1.42817e-09 -0.0631095)
(0.497294 1.26908e-09 -0.0566585)
(0.496075 1.10877e-09 -0.0501687)
(0.494907 9.57085e-10 -0.0436282)
(0.493787 8.24239e-10 -0.0370249)
(0.492713 7.19981e-10 -0.0303463)
(0.491681 6.53749e-10 -0.0235797)
(0.490687 6.33781e-10 -0.016712)
(0.489726 6.63276e-10 -0.00973048)
(0.488793 7.38962e-10 -0.0026219)
(0.487882 8.50459e-10 0.00462675)
(0.486984 9.84647e-10 0.0120284)
(0.486093 1.12754e-09 0.0195958)
(0.485198 1.2667e-09 0.0273414)
(0.484289 1.39246e-09 0.0352773)
(0.483356 1.50043e-09 0.0434151)
(0.482385 1.59567e-09 0.0517657)
(0.481362 1.69185e-09 0.0603394)
(0.480271 1.80859e-09 0.0691454)
(0.479096 1.96423e-09 0.0781922)
(0.477817 2.17065e-09 0.0874866)
(0.476413 2.43361e-09 0.0970343)
(0.474864 2.75829e-09 0.106839)
(0.473143 3.15893e-09 0.116904)
(0.471225 3.66527e-09 0.127227)
(0.469081 4.32189e-09 0.137808)
(0.466681 5.18144e-09 0.14864)
(0.463993 6.29294e-09 0.159716)
(0.460981 7.6922e-09 0.171025)
(0.457609 9.39633e-09 0.18255)
(0.453837 1.13992e-08 0.194273)
(0.449627 1.3661e-08 0.20617)
(0.444934 1.60971e-08 0.218213)
(0.439715 1.85831e-08 0.230368)
(0.433925 2.10072e-08 0.242594)
(0.427518 2.33631e-08 0.254848)
(0.420448 2.5827e-08 0.267075)
(0.41267 2.8755e-08 0.279219)
(0.404138 3.26209e-08 0.291213)
(0.39481 3.80615e-08 0.302984)
(0.384644 4.61992e-08 0.314453)
(0.373604 5.90642e-08 0.325533)
(0.361657 7.94113e-08 0.336128)
(0.348777 1.09052e-07 0.34614)
(0.334943 1.45582e-07 0.355462)
(0.320143 1.79034e-07 0.363983)
(0.304375 1.91721e-07 0.371587)
(0.287645 1.65469e-07 0.378156)
(0.269972 9.92367e-08 0.383571)
(0.251385 3.24073e-08 0.38771)
(0.231928 4.83377e-08 0.390453)
(0.211655 2.07271e-07 0.391679)
(0.190632 3.93094e-07 0.391265)
(0.168938 2.51679e-07 0.389081)
(0.146665 -4.51606e-07 0.384976)
(0.123915 -1.4082e-06 0.378759)
(0.100813 -2.59949e-06 0.37014)
(0.0774028 -4.37289e-06 0.358602)
(0.0540693 -3.36453e-06 0.342894)
(0.0309389 8.70669e-06 0.319433)
(0.0119958 5.63404e-05 0.279198)
(-0.0135181 2.13098e-06 1.06698)
(-0.0310813 6.16998e-07 1.09268)
(-0.0500085 3.0984e-07 1.08311)
(-0.0684376 2.14234e-07 1.06597)
(-0.0857008 1.71513e-07 1.04516)
(-0.101791 1.43129e-07 1.0219)
(-0.116672 1.21452e-07 0.996758)
(-0.130316 1.04467e-07 0.970088)
(-0.142704 9.08917e-08 0.942126)
(-0.15382 7.86765e-08 0.913045)
(-0.163654 6.54131e-08 0.882989)
(-0.172199 5.15748e-08 0.852071)
(-0.179453 4.05585e-08 0.820394)
(-0.185416 3.46783e-08 0.788043)
(-0.190091 3.23032e-08 0.755098)
(-0.193482 2.97764e-08 0.721628)
(-0.195596 2.48524e-08 0.687699)
(-0.19644 1.79153e-08 0.65337)
(-0.196024 1.07711e-08 0.618699)
(-0.194359 5.00764e-09 0.583736)
(-0.191454 1.27755e-09 0.548533)
(-0.187323 -5.31525e-10 0.513137)
(-0.181977 -8.47113e-10 0.477593)
(-0.175431 -1.0769e-10 0.441945)
(-0.167699 1.30648e-09 0.406235)
(-0.158795 3.01558e-09 0.370505)
(-0.148738 4.62996e-09 0.334797)
(-0.137545 5.82993e-09 0.299151)
(-0.125237 6.47053e-09 0.263611)
(-0.111839 6.60447e-09 0.228222)
(-0.097379 6.38726e-09 0.19303)
(-0.0818903 5.94445e-09 0.158087)
(-0.0654127 5.31447e-09 0.123448)
(-0.0479945 4.47145e-09 0.0891753)
(-0.0296898 3.42511e-09 0.0553335)
(-0.0105664 2.27084e-09 0.0219935)
(0.00930673 1.16619e-09 -0.0107715)
(0.0298137 2.79257e-10 -0.0428481)
(0.0508606 -2.92218e-10 -0.0741517)
(0.072342 -5.64942e-10 -0.104601)
(0.0941516 -6.30824e-10 -0.13412)
(0.116179 -6.15674e-10 -0.162636)
(0.138314 -6.33842e-10 -0.190083)
(0.160449 -7.44109e-10 -0.216408)
(0.182479 -9.46243e-10 -0.241562)
(0.204307 -1.20071e-09 -0.265512)
(0.225842 -1.45033e-09 -0.288232)
(0.247 -1.64573e-09 -0.309708)
(0.267707 -1.75838e-09 -0.329935)
(0.287897 -1.7857e-09 -0.348918)
(0.307514 -1.74168e-09 -0.366668)
(0.326509 -1.6479e-09 -0.383203)
(0.344845 -1.52849e-09 -0.39855)
(0.362489 -1.40281e-09 -0.412736)
(0.379418 -1.2856e-09 -0.425795)
(0.395614 -1.18632e-09 -0.437763)
(0.411067 -1.11029e-09 -0.448677)
(0.425772 -1.05987e-09 -0.458577)
(0.439729 -1.03448e-09 -0.467501)
(0.45294 -1.0308e-09 -0.47549)
(0.465415 -1.04331e-09 -0.482582)
(0.477164 -1.06448e-09 -0.488817)
(0.488201 -1.08635e-09 -0.494232)
(0.498541 -1.10152e-09 -0.498864)
(0.508204 -1.10314e-09 -0.502747)
(0.517208 -1.08607e-09 -0.505916)
(0.525575 -1.04669e-09 -0.508403)
(0.533325 -9.82815e-10 -0.51024)
(0.540481 -8.93096e-10 -0.511455)
(0.547066 -7.7697e-10 -0.512077)
(0.553103 -6.34181e-10 -0.512134)
(0.558614 -4.64781e-10 -0.51165)
(0.563623 -2.69536e-10 -0.51065)
(0.568152 -4.96222e-11 -0.509157)
(0.572223 1.92992e-10 -0.507195)
(0.575859 4.55366e-10 -0.504783)
(0.57908 7.33334e-10 -0.501943)
(0.581908 1.02191e-09 -0.498695)
(0.584363 1.3155e-09 -0.495057)
(0.586465 1.60729e-09 -0.491049)
(0.588232 1.89045e-09 -0.486688)
(0.589683 2.15788e-09 -0.481991)
(0.590837 2.40297e-09 -0.476977)
(0.591709 2.61945e-09 -0.471661)
(0.592316 2.80181e-09 -0.46606)
(0.592675 2.94574e-09 -0.46019)
(0.5928 3.04806e-09 -0.454067)
(0.592705 3.10665e-09 -0.447707)
(0.592406 3.12075e-09 -0.441124)
(0.591914 3.09036e-09 -0.434335)
(0.591242 3.01661e-09 -0.427353)
(0.590404 2.90101e-09 -0.420195)
(0.58941 2.74587e-09 -0.412873)
(0.588271 2.55406e-09 -0.405404)
(0.586999 2.32897e-09 -0.3978)
(0.585603 2.07507e-09 -0.390075)
(0.584093 1.79775e-09 -0.382243)
(0.582478 1.50391e-09 -0.374318)
(0.580768 1.20138e-09 -0.366311)
(0.57897 8.98981e-10 -0.358237)
(0.577093 6.0601e-10 -0.350106)
(0.575145 3.31726e-10 -0.341931)
(0.573132 8.38235e-11 -0.333723)
(0.571063 -1.31485e-10 -0.325494)
(0.568943 -3.10671e-10 -0.317254)
(0.56678 -4.5307e-10 -0.309013)
(0.564578 -5.60726e-10 -0.300782)
(0.562345 -6.38037e-10 -0.292568)
(0.560086 -6.9096e-10 -0.284381)
(0.557805 -7.2568e-10 -0.276229)
(0.555509 -7.47899e-10 -0.26812)
(0.553202 -7.614e-10 -0.260061)
(0.550889 -7.67359e-10 -0.252057)
(0.548574 -7.6432e-10 -0.244116)
(0.546261 -7.47884e-10 -0.236242)
(0.543955 -7.11481e-10 -0.228441)
(0.54166 -6.47669e-10 -0.220715)
(0.539379 -5.49343e-10 -0.213068)
(0.537116 -4.10465e-10 -0.205504)
(0.534875 -2.28122e-10 -0.198024)
(0.532659 -2.61951e-12 -0.190629)
(0.53047 2.62158e-10 -0.18332)
(0.528313 5.58669e-10 -0.176097)
(0.52619 8.75128e-10 -0.16896)
(0.524103 1.19727e-09 -0.161906)
(0.522056 1.50919e-09 -0.154934)
(0.520051 1.7938e-09 -0.148041)
(0.51809 2.03596e-09 -0.141223)
(0.516175 2.22429e-09 -0.134477)
(0.514308 2.35305e-09 -0.127796)
(0.512491 2.42019e-09 -0.121176)
(0.510725 2.42508e-09 -0.114611)
(0.509013 2.37043e-09 -0.108094)
(0.507354 2.26697e-09 -0.101617)
(0.50575 2.13426e-09 -0.0951715)
(0.504202 1.99267e-09 -0.0887501)
(0.502709 1.8542e-09 -0.0823432)
(0.501273 1.71851e-09 -0.075941)
(0.499892 1.57829e-09 -0.0695333)
(0.498566 1.42818e-09 -0.0631095)
(0.497294 1.26908e-09 -0.0566585)
(0.496075 1.10878e-09 -0.0501687)
(0.494907 9.57086e-10 -0.0436282)
(0.493787 8.2424e-10 -0.037025)
(0.492713 7.19982e-10 -0.0303463)
(0.491681 6.5375e-10 -0.0235797)
(0.490687 6.33782e-10 -0.0167121)
(0.489726 6.63276e-10 -0.0097305)
(0.488793 7.38963e-10 -0.00262193)
(0.487882 8.50459e-10 0.00462673)
(0.486984 9.84647e-10 0.0120284)
(0.486093 1.12754e-09 0.0195958)
(0.485198 1.2667e-09 0.0273414)
(0.48429 1.39247e-09 0.0352773)
(0.483356 1.50043e-09 0.0434151)
(0.482385 1.59567e-09 0.0517657)
(0.481362 1.69185e-09 0.0603394)
(0.480271 1.80859e-09 0.0691454)
(0.479096 1.96424e-09 0.0781922)
(0.477817 2.17065e-09 0.0874866)
(0.476413 2.43361e-09 0.0970343)
(0.474864 2.75829e-09 0.106839)
(0.473143 3.15893e-09 0.116904)
(0.471225 3.66528e-09 0.127227)
(0.469081 4.32189e-09 0.137808)
(0.466681 5.18144e-09 0.14864)
(0.463993 6.29294e-09 0.159716)
(0.460981 7.69221e-09 0.171025)
(0.457609 9.39634e-09 0.18255)
(0.453838 1.13992e-08 0.194273)
(0.449627 1.3661e-08 0.20617)
(0.444934 1.60971e-08 0.218213)
(0.439715 1.85831e-08 0.230368)
(0.433925 2.10073e-08 0.242594)
(0.427518 2.33631e-08 0.254848)
(0.420449 2.5827e-08 0.267076)
(0.41267 2.8755e-08 0.279219)
(0.404139 3.26209e-08 0.291213)
(0.39481 3.80615e-08 0.302985)
(0.384645 4.61992e-08 0.314454)
(0.373605 5.90643e-08 0.325533)
(0.361658 7.94113e-08 0.336129)
(0.348777 1.09052e-07 0.346141)
(0.334943 1.45582e-07 0.355463)
(0.320144 1.79035e-07 0.363984)
(0.304375 1.91721e-07 0.371588)
(0.287645 1.65469e-07 0.378158)
(0.269972 9.92368e-08 0.383573)
(0.251386 3.24074e-08 0.387713)
(0.231928 4.83378e-08 0.390457)
(0.211654 2.07272e-07 0.391685)
(0.190629 3.93096e-07 0.391273)
(0.168932 2.51681e-07 0.38909)
(0.146654 -4.51612e-07 0.384986)
(0.123897 -1.40824e-06 0.378769)
(0.100785 -2.5997e-06 0.370148)
(0.0773569 -4.37422e-06 0.358598)
(0.0539975 -3.36674e-06 0.342856)
(0.0308431 8.70052e-06 0.319313)
(0.011843 5.63454e-05 0.278891)
(-0.0132983 2.60529e-06 1.08835)
(-0.0304816 6.4494e-07 1.11343)
(-0.0489391 3.16181e-07 1.10276)
(-0.0668164 2.12863e-07 1.08445)
(-0.0834683 1.67295e-07 1.0624)
(-0.0988884 1.38342e-07 1.03785)
(-0.113042 1.17644e-07 1.0114)
(-0.125904 1.03209e-07 0.983389)
(-0.137455 9.39761e-08 0.954067)
(-0.147682 8.72119e-08 0.923616)
(-0.156577 7.70569e-08 0.89218)
(-0.164135 6.09248e-08 0.859879)
(-0.170357 4.35996e-08 0.826818)
(-0.175245 3.19197e-08 0.793087)
(-0.178803 2.71952e-08 0.758765)
(-0.181037 2.54055e-08 0.723925)
(-0.181956 2.23155e-08 0.688635)
(-0.181569 1.67772e-08 0.652954)
(-0.179885 1.0254e-08 0.616941)
(-0.176916 4.74228e-09 0.580649)
(-0.172674 1.34467e-09 0.544128)
(-0.167169 8.48168e-11 0.507428)
(-0.160416 4.12641e-10 0.470593)
(-0.152427 1.70858e-09 0.433669)
(-0.143217 3.48019e-09 0.396699)
(-0.132801 5.31434e-09 0.359726)
(-0.121196 6.83076e-09 0.322794)
(-0.108421 7.73225e-09 0.285945)
(-0.0945 7.91109e-09 0.249227)
(-0.0794584 7.48342e-09 0.212688)
(-0.0633288 6.70525e-09 0.176382)
(-0.0461507 5.80694e-09 0.140366)
(-0.0279701 4.89444e-09 0.104705)
(-0.0088455 3.95226e-09 0.069468)
(0.0111562 2.93682e-09 0.0347268)
(0.0319525 1.87158e-09 0.000576603)
(0.0534426 8.54723e-10 -0.0328855)
(0.0755087 1.46618e-11 -0.0655514)
(0.0980444 -5.5431e-10 -0.0973331)
(0.120931 -8.37707e-10 -0.128143)
(0.144051 -9.09665e-10 -0.157901)
(0.167281 -8.87017e-10 -0.186534)
(0.190505 -8.81859e-10 -0.213981)
(0.213609 -9.63584e-10 -0.240189)
(0.236485 -1.13892e-09 -0.265119)
(0.259032 -1.37241e-09 -0.288744)
(0.281161 -1.60691e-09 -0.311047)
(0.30279 -1.79004e-09 -0.332024)
(0.323848 -1.88969e-09 -0.35168)
(0.344274 -1.90065e-09 -0.370029)
(0.364016 -1.83661e-09 -0.387093)
(0.383033 -1.72231e-09 -0.4029)
(0.401292 -1.58369e-09 -0.417484)
(0.418768 -1.44291e-09 -0.430881)
(0.435443 -1.31574e-09 -0.443134)
(0.451308 -1.2114e-09 -0.454284)
(0.466357 -1.13421e-09 -0.464374)
(0.480593 -1.08472e-09 -0.473451)
(0.494021 -1.06069e-09 -0.481557)
(0.50665 -1.05714e-09 -0.488737)
(0.518494 -1.06729e-09 -0.495033)
(0.52957 -1.08307e-09 -0.500488)
(0.539896 -1.09584e-09 -0.50514)
(0.549493 -1.09784e-09 -0.50903)
(0.558383 -1.08175e-09 -0.512194)
(0.56659 -1.04264e-09 -0.514666)
(0.574138 -9.76749e-10 -0.516481)
(0.581052 -8.82148e-10 -0.51767)
(0.587359 -7.57919e-10 -0.518264)
(0.593083 -6.04088e-10 -0.51829)
(0.59825 -4.21447e-10 -0.517775)
(0.602886 -2.11402e-10 -0.516746)
(0.607017 2.40779e-11 -0.515226)
(0.610666 2.82335e-10 -0.513238)
(0.613858 5.59661e-10 -0.510805)
(0.616617 8.51558e-10 -0.507946)
(0.618966 1.15261e-09 -0.504682)
(0.620927 1.45657e-09 -0.501032)
(0.622522 1.75687e-09 -0.497015)
(0.623772 2.04631e-09 -0.492648)
(0.624697 2.31783e-09 -0.487949)
(0.625316 2.56461e-09 -0.482934)
(0.625648 2.7803e-09 -0.477619)
(0.625711 2.95979e-09 -0.472021)
(0.625522 3.09871e-09 -0.466156)
(0.625097 3.19424e-09 -0.460038)
(0.624453 3.24456e-09 -0.453683)
(0.623603 3.24952e-09 -0.447106)
(0.622563 3.20972e-09 -0.440322)
(0.621345 3.12695e-09 -0.433344)
(0.619964 3.00346e-09 -0.426188)
(0.618431 2.84208e-09 -0.418867)
(0.616759 2.64619e-09 -0.411395)
(0.614958 2.41959e-09 -0.403787)
(0.613039 2.16705e-09 -0.396056)
(0.611013 1.89418e-09 -0.388214)
(0.60889 1.60802e-09 -0.380275)
(0.606678 1.31715e-09 -0.372253)
(0.604387 1.03103e-09 -0.364158)
(0.602025 7.5967e-10 -0.356004)
(0.599601 5.12847e-10 -0.347802)
(0.597121 2.98898e-10 -0.339564)
(0.594593 1.2368e-10 -0.331301)
(0.592025 -1.0125e-11 -0.323024)
(0.589422 -1.03845e-10 -0.314742)
(0.586791 -1.62694e-10 -0.306466)
(0.584138 -1.95136e-10 -0.298206)
(0.581468 -2.11982e-10 -0.289969)
(0.578788 -2.25122e-10 -0.281765)
(0.576101 -2.45498e-10 -0.273602)
(0.573414 -2.81673e-10 -0.265486)
(0.57073 -3.38531e-10 -0.257425)
(0.568055 -4.16226e-10 -0.249425)
(0.565392 -5.09952e-10 -0.241491)
(0.562745 -6.10045e-10 -0.23363)
(0.560119 -7.03748e-10 -0.225844)
(0.557516 -7.76078e-10 -0.218138)
(0.554942 -8.12464e-10 -0.210516)
(0.552398 -8.00477e-10 -0.202979)
(0.549888 -7.31554e-10 -0.195529)
(0.547416 -6.01602e-10 -0.188169)
(0.544984 -4.11105e-10 -0.180897)
(0.542595 -1.6538e-10 -0.173715)
(0.540252 1.26113e-10 -0.166621)
(0.537958 4.49827e-10 -0.159613)
(0.535714 7.89347e-10 -0.15269)
(0.533523 1.12578e-09 -0.145848)
(0.531388 1.43933e-09 -0.139084)
(0.52931 1.71339e-09 -0.132392)
(0.527291 1.93841e-09 -0.125769)
(0.525333 2.10974e-09 -0.119208)
(0.523437 2.22234e-09 -0.112704)
(0.521604 2.26939e-09 -0.106248)
(0.519837 2.24954e-09 -0.0998336)
(0.518134 2.17359e-09 -0.0934522)
(0.516498 2.06157e-09 -0.0870949)
(0.514928 1.92975e-09 -0.0807524)
(0.513425 1.7812e-09 -0.0744145)
(0.511988 1.60731e-09 -0.0680707)
(0.510617 1.39797e-09 -0.06171)
(0.509311 1.15149e-09 -0.0553208)
(0.508068 8.76833e-10 -0.0488912)
(0.506888 5.90041e-10 -0.0424088)
(0.505767 3.10888e-10 -0.0358609)
(0.504703 5.9856e-11 -0.0292344)
(0.503693 -1.42056e-10 -0.022516)
(0.502732 -2.75742e-10 -0.0156921)
(0.501817 -3.28564e-10 -0.00874883)
(0.500942 -2.9965e-10 -0.00167244)
(0.500101 -2.01373e-10 0.00555107)
(0.499287 -5.42677e-11 0.0129356)
(0.498491 1.19469e-10 0.0204949)
(0.497706 3.00809e-10 0.0282427)
(0.49692 4.75455e-10 0.0361921)
(0.496122 6.36526e-10 0.0443562)
(0.4953 7.87731e-10 0.0527473)
(0.49444 9.45133e-10 0.0613771)
(0.493526 1.13434e-09 0.0702567)
(0.49254 1.3841e-09 0.079396)
(0.491465 1.71876e-09 0.0888039)
(0.490277 2.15594e-09 0.098488)
(0.488956 2.70908e-09 0.108454)
(0.487475 3.39444e-09 0.118707)
(0.485808 4.23781e-09 0.129249)
(0.483925 5.27659e-09 0.140079)
(0.481795 6.55437e-09 0.151195)
(0.479382 8.11095e-09 0.162591)
(0.476651 9.96987e-09 0.174258)
(0.473563 1.21264e-08 0.186183)
(0.470075 1.45395e-08 0.198349)
(0.466144 1.71276e-08 0.210735)
(0.461724 1.97781e-08 0.223314)
(0.456767 2.23874e-08 0.236054)
(0.451223 2.49434e-08 0.248916)
(0.445042 2.76283e-08 0.261856)
(0.438172 3.08652e-08 0.274822)
(0.430561 3.52292e-08 0.287754)
(0.422157 4.12577e-08 0.300587)
(0.41291 4.93527e-08 0.313245)
(0.402774 5.99913e-08 0.325645)
(0.391702 7.41888e-08 0.337695)
(0.379655 9.37095e-08 0.349297)
(0.366598 1.20345e-07 0.360343)
(0.352506 1.53927e-07 0.370719)
(0.337358 1.89378e-07 0.380305)
(0.321146 2.14015e-07 0.388975)
(0.303872 2.08563e-07 0.396598)
(0.285551 1.59689e-07 0.403043)
(0.266212 9.11934e-08 0.408175)
(0.245895 9.50044e-08 0.411859)
(0.224659 2.84311e-07 0.413962)
(0.202572 5.9026e-07 0.414345)
(0.179718 5.64733e-07 0.412864)
(0.156201 -3.75455e-07 0.409355)
(0.132136 -2.52667e-06 0.403614)
(0.107686 -6.40392e-06 0.395341)
(0.082952 -1.18476e-05 0.384009)
(0.0586749 -1.45635e-05 0.368407)
(0.0335885 1.80949e-05 0.344744)
(0.0131843 0.00022271 0.300442)
(-0.0132979 2.6053e-06 1.08834)
(-0.0304813 6.4494e-07 1.11342)
(-0.048939 3.16181e-07 1.10276)
(-0.0668165 2.12863e-07 1.08445)
(-0.0834684 1.67295e-07 1.0624)
(-0.0988885 1.38342e-07 1.03785)
(-0.113042 1.17644e-07 1.0114)
(-0.125904 1.03209e-07 0.983389)
(-0.137455 9.39762e-08 0.954067)
(-0.147682 8.72119e-08 0.923616)
(-0.156577 7.70569e-08 0.89218)
(-0.164136 6.09249e-08 0.859879)
(-0.170358 4.35996e-08 0.826818)
(-0.175245 3.19198e-08 0.793087)
(-0.178803 2.71952e-08 0.758765)
(-0.181037 2.54055e-08 0.723925)
(-0.181956 2.23155e-08 0.688635)
(-0.181569 1.67772e-08 0.652954)
(-0.179885 1.0254e-08 0.616941)
(-0.176917 4.74228e-09 0.580649)
(-0.172674 1.34467e-09 0.544128)
(-0.167169 8.48168e-11 0.507428)
(-0.160416 4.12641e-10 0.470593)
(-0.152427 1.70858e-09 0.433669)
(-0.143217 3.48019e-09 0.396699)
(-0.132801 5.31433e-09 0.359727)
(-0.121196 6.83075e-09 0.322794)
(-0.108421 7.73225e-09 0.285945)
(-0.0944999 7.91108e-09 0.249227)
(-0.0794584 7.48341e-09 0.212688)
(-0.0633287 6.70524e-09 0.176382)
(-0.0461507 5.80693e-09 0.140366)
(-0.0279701 4.89443e-09 0.104705)
(-0.00884547 3.95225e-09 0.069468)
(0.0111562 2.93682e-09 0.0347269)
(0.0319525 1.87158e-09 0.000576626)
(0.0534426 8.54721e-10 -0.0328855)
(0.0755087 1.46617e-11 -0.0655514)
(0.0980445 -5.54309e-10 -0.0973331)
(0.120932 -8.37705e-10 -0.128143)
(0.144051 -9.09663e-10 -0.157901)
(0.167281 -8.87015e-10 -0.186534)
(0.190505 -8.81857e-10 -0.213981)
(0.213609 -9.63582e-10 -0.240189)
(0.236485 -1.13891e-09 -0.265119)
(0.259032 -1.37241e-09 -0.288744)
(0.281161 -1.60691e-09 -0.311047)
(0.30279 -1.79003e-09 -0.332024)
(0.323848 -1.88969e-09 -0.35168)
(0.344274 -1.90065e-09 -0.370029)
(0.364016 -1.83661e-09 -0.387093)
(0.383033 -1.7223e-09 -0.4029)
(0.401292 -1.58369e-09 -0.417484)
(0.418768 -1.44291e-09 -0.430881)
(0.435443 -1.31574e-09 -0.443134)
(0.451308 -1.2114e-09 -0.454284)
(0.466357 -1.13421e-09 -0.464374)
(0.480593 -1.08472e-09 -0.473451)
(0.494021 -1.06069e-09 -0.481557)
(0.50665 -1.05714e-09 -0.488737)
(0.518494 -1.06729e-09 -0.495033)
(0.52957 -1.08307e-09 -0.500488)
(0.539896 -1.09584e-09 -0.50514)
(0.549493 -1.09784e-09 -0.50903)
(0.558383 -1.08174e-09 -0.512194)
(0.56659 -1.04264e-09 -0.514666)
(0.574138 -9.76749e-10 -0.516481)
(0.581052 -8.82148e-10 -0.51767)
(0.587359 -7.57919e-10 -0.518264)
(0.593083 -6.04088e-10 -0.51829)
(0.59825 -4.21447e-10 -0.517775)
(0.602886 -2.11402e-10 -0.516746)
(0.607017 2.40779e-11 -0.515226)
(0.610666 2.82335e-10 -0.513238)
(0.613858 5.59661e-10 -0.510805)
(0.616617 8.51558e-10 -0.507946)
(0.618966 1.15261e-09 -0.504682)
(0.620927 1.45657e-09 -0.501032)
(0.622522 1.75687e-09 -0.497015)
(0.623772 2.04631e-09 -0.492648)
(0.624697 2.31783e-09 -0.487949)
(0.625316 2.56461e-09 -0.482934)
(0.625648 2.7803e-09 -0.477619)
(0.625711 2.95979e-09 -0.472021)
(0.625522 3.09871e-09 -0.466156)
(0.625097 3.19424e-09 -0.460038)
(0.624453 3.24456e-09 -0.453683)
(0.623603 3.24952e-09 -0.447106)
(0.622563 3.20972e-09 -0.440322)
(0.621345 3.12695e-09 -0.433344)
(0.619964 3.00346e-09 -0.426188)
(0.618431 2.84208e-09 -0.418867)
(0.616759 2.64619e-09 -0.411395)
(0.614958 2.41959e-09 -0.403787)
(0.613039 2.16705e-09 -0.396056)
(0.611013 1.89418e-09 -0.388214)
(0.60889 1.60802e-09 -0.380275)
(0.606678 1.31715e-09 -0.372253)
(0.604387 1.03103e-09 -0.364158)
(0.602026 7.5967e-10 -0.356004)
(0.599601 5.12847e-10 -0.347802)
(0.597121 2.98898e-10 -0.339564)
(0.594593 1.2368e-10 -0.331301)
(0.592025 -1.0125e-11 -0.323023)
(0.589422 -1.03845e-10 -0.314742)
(0.586791 -1.62694e-10 -0.306466)
(0.584138 -1.95136e-10 -0.298206)
(0.581468 -2.11982e-10 -0.289969)
(0.578788 -2.25123e-10 -0.281765)
(0.576101 -2.45498e-10 -0.273602)
(0.573414 -2.81673e-10 -0.265486)
(0.57073 -3.38531e-10 -0.257425)
(0.568055 -4.16227e-10 -0.249425)
(0.565392 -5.09952e-10 -0.241491)
(0.562745 -6.10045e-10 -0.23363)
(0.560119 -7.03748e-10 -0.225844)
(0.557516 -7.76079e-10 -0.218138)
(0.554942 -8.12464e-10 -0.210516)
(0.552398 -8.00478e-10 -0.202979)
(0.549888 -7.31555e-10 -0.195529)
(0.547416 -6.01602e-10 -0.188169)
(0.544984 -4.11105e-10 -0.180897)
(0.542595 -1.65381e-10 -0.173715)
(0.540252 1.26114e-10 -0.166621)
(0.537958 4.49827e-10 -0.159613)
(0.535714 7.89347e-10 -0.15269)
(0.533523 1.12578e-09 -0.145848)
(0.531388 1.43933e-09 -0.139084)
(0.52931 1.71339e-09 -0.132392)
(0.527291 1.93841e-09 -0.125769)
(0.525333 2.10974e-09 -0.119208)
(0.523437 2.22234e-09 -0.112704)
(0.521604 2.26939e-09 -0.106248)
(0.519837 2.24954e-09 -0.0998336)
(0.518134 2.1736e-09 -0.0934522)
(0.516498 2.06157e-09 -0.0870949)
(0.514928 1.92975e-09 -0.0807524)
(0.513425 1.7812e-09 -0.0744145)
(0.511988 1.60731e-09 -0.0680707)
(0.510617 1.39797e-09 -0.06171)
(0.509311 1.1515e-09 -0.0553208)
(0.508068 8.76834e-10 -0.0488912)
(0.506888 5.90042e-10 -0.0424088)
(0.505767 3.10888e-10 -0.035861)
(0.504703 5.98561e-11 -0.0292345)
(0.503693 -1.42056e-10 -0.022516)
(0.502732 -2.75742e-10 -0.0156921)
(0.501817 -3.28565e-10 -0.00874885)
(0.500942 -2.9965e-10 -0.00167246)
(0.500101 -2.01374e-10 0.00555105)
(0.499287 -5.42677e-11 0.0129356)
(0.498491 1.19469e-10 0.0204949)
(0.497706 3.00809e-10 0.0282427)
(0.49692 4.75455e-10 0.0361921)
(0.496122 6.36527e-10 0.0443562)
(0.4953 7.87731e-10 0.0527472)
(0.49444 9.45133e-10 0.0613771)
(0.493526 1.13434e-09 0.0702567)
(0.492541 1.3841e-09 0.079396)
(0.491465 1.71876e-09 0.0888039)
(0.490277 2.15594e-09 0.098488)
(0.488956 2.70908e-09 0.108454)
(0.487475 3.39444e-09 0.118707)
(0.485808 4.23781e-09 0.129249)
(0.483925 5.2766e-09 0.140079)
(0.481795 6.55437e-09 0.151195)
(0.479382 8.11095e-09 0.162591)
(0.476651 9.96987e-09 0.174258)
(0.473563 1.21264e-08 0.186183)
(0.470075 1.45395e-08 0.198349)
(0.466144 1.71276e-08 0.210735)
(0.461724 1.97781e-08 0.223314)
(0.456767 2.23874e-08 0.236054)
(0.451223 2.49434e-08 0.248916)
(0.445042 2.76283e-08 0.261856)
(0.438172 3.08653e-08 0.274822)
(0.430561 3.52292e-08 0.287755)
(0.422157 4.12577e-08 0.300587)
(0.412911 4.93527e-08 0.313245)
(0.402774 5.99913e-08 0.325645)
(0.391702 7.41889e-08 0.337696)
(0.379655 9.37096e-08 0.349297)
(0.366599 1.20346e-07 0.360344)
(0.352507 1.53927e-07 0.37072)
(0.337359 1.89378e-07 0.380306)
(0.321147 2.14015e-07 0.388976)
(0.303873 2.08563e-07 0.3966)
(0.285552 1.59689e-07 0.403046)
(0.266213 9.11935e-08 0.408179)
(0.245897 9.50045e-08 0.411865)
(0.224659 2.84312e-07 0.413969)
(0.202571 5.90264e-07 0.414354)
(0.179715 5.64741e-07 0.412876)
(0.156194 -3.75465e-07 0.409371)
(0.132125 -2.5268e-06 0.403633)
(0.107664 -6.40443e-06 0.39536)
(0.0829078 -1.18487e-05 0.384016)
(0.058608 -1.45648e-05 0.36837)
(0.0334115 1.80851e-05 0.344603)
(0.0128062 0.000222792 0.300285)
(-0.0130415 2.88217e-06 1.10928)
(-0.0297801 5.96425e-07 1.13365)
(-0.0476916 2.68325e-07 1.12182)
(-0.0649315 1.75581e-07 1.10226)
(-0.0808806 1.34574e-07 1.07891)
(-0.095534 1.09188e-07 1.05302)
(-0.108859 9.23877e-08 1.02519)
(-0.120832 8.21277e-08 0.995782)
(-0.131436 7.9646e-08 0.965044)
(-0.140661 8.45357e-08 0.933166)
(-0.148502 8.68477e-08 0.900298)
(-0.154957 7.61161e-08 0.866565)
(-0.160029 5.49234e-08 0.832073)
(-0.163722 3.55807e-08 0.796915)
(-0.166043 2.54922e-08 0.761174)
(-0.167001 2.24517e-08 0.724923)
(-0.166606 2.05739e-08 0.688231)
(-0.164867 1.65014e-08 0.65116)
(-0.161796 1.06683e-08 0.613768)
(-0.157403 5.23921e-09 0.576109)
(-0.151702 1.87228e-09 0.538233)
(-0.144703 8.98201e-10 0.500191)
(-0.13642 1.71105e-09 0.462029)
(-0.126864 3.47666e-09 0.423792)
(-0.116051 5.5354e-09 0.385524)
(-0.103995 7.41965e-09 0.34727)
(-0.090714 8.77454e-09 0.309076)
(-0.0762281 9.34718e-09 0.270989)
(-0.0605623 9.07957e-09 0.233059)
(-0.0437472 8.14473e-09 0.195343)
(-0.0258196 6.87491e-09 0.157899)
(-0.00682799 5.58216e-09 0.120795)
(0.0131706 4.4236e-09 0.0841014)
(0.0341001 3.40509e-09 0.047912)
(0.0558797 2.43927e-09 0.0123095)
(0.0784161 1.47704e-09 -0.0226034)
(0.101573 5.50737e-10 -0.0567018)
(0.125234 -2.41607e-10 -0.0898821)
(0.149274 -8.09355e-10 -0.12205)
(0.173562 -1.11547e-09 -0.153114)
(0.197966 -1.20641e-09 -0.182995)
(0.222357 -1.18585e-09 -0.211621)
(0.24661 -1.16108e-09 -0.238934)
(0.270607 -1.20718e-09 -0.26489)
(0.294239 -1.34175e-09 -0.289457)
(0.317406 -1.53776e-09 -0.312619)
(0.340021 -1.74262e-09 -0.33437)
(0.362005 -1.90373e-09 -0.354716)
(0.383294 -1.98636e-09 -0.373674)
(0.40383 -1.98208e-09 -0.391269)
(0.423571 -1.90296e-09 -0.407533)
(0.442481 -1.77393e-09 -0.422503)
(0.460535 -1.6221e-09 -0.436224)
(0.477714 -1.471e-09 -0.448741)
(0.49401 -1.33698e-09 -0.460101)
(0.509419 -1.22924e-09 -0.470354)
(0.523944 -1.15124e-09 -0.47955)
(0.537592 -1.102e-09 -0.487739)
(0.550376 -1.07766e-09 -0.494969)
(0.562311 -1.07202e-09 -0.501288)
(0.573417 -1.07734e-09 -0.506742)
(0.583716 -1.08469e-09 -0.511376)
(0.59323 -1.08508e-09 -0.515231)
(0.601986 -1.07021e-09 -0.518348)
(0.61001 -1.03295e-09 -0.520765)
(0.61733 -9.68103e-10 -0.522519)
(0.623975 -8.7225e-10 -0.523644)
(0.629972 -7.43753e-10 -0.524171)
(0.63535 -5.82304e-10 -0.524131)
(0.640139 -3.89158e-10 -0.523552)
(0.644365 -1.66078e-10 -0.522461)
(0.648059 8.39203e-11 -0.520883)
(0.651246 3.57334e-10 -0.518842)
(0.653953 6.49612e-10 -0.51636)
(0.656208 9.55541e-10 -0.513459)
(0.658034 1.26929e-09 -0.510158)
(0.659458 1.58396e-09 -0.506477)
(0.660501 1.8927e-09 -0.502434)
(0.661189 2.18842e-09 -0.498046)
(0.661541 2.46388e-09 -0.493331)
(0.66158 2.71249e-09 -0.488304)
(0.661326 2.9283e-09 -0.482983)
(0.660798 3.1061e-09 -0.477382)
(0.660015 3.24213e-09 -0.471516)
(0.658994 3.33378e-09 -0.465401)
(0.657753 3.3799e-09 -0.459051)
(0.656307 3.38047e-09 -0.45248)
(0.654673 3.33704e-09 -0.445702)
(0.652864 3.25179e-09 -0.438732)
(0.650894 3.12753e-09 -0.431583)
(0.648778 2.96769e-09 -0.424269)
(0.646527 2.77591e-09 -0.416803)
(0.644153 2.5562e-09 -0.409199)
(0.641668 2.31352e-09 -0.40147)
(0.639084 2.05375e-09 -0.393629)
(0.636409 1.78426e-09 -0.385688)
(0.633654 1.51392e-09 -0.37766)
(0.630829 1.2534e-09 -0.369558)
(0.627941 1.01372e-09 -0.361393)
(0.625 8.0596e-10 -0.353177)
(0.622014 6.39335e-10 -0.344922)
(0.61899 5.20464e-10 -0.336639)
(0.615934 4.51647e-10 -0.328337)
(0.612855 4.30176e-10 -0.320029)
(0.609758 4.47946e-10 -0.311723)
(0.60665 4.92457e-10 -0.303429)
(0.603536 5.47118e-10 -0.295157)
(0.600421 5.93701e-10 -0.286914)
(0.597312 6.13926e-10 -0.278709)
(0.594212 5.91867e-10 -0.27055)
(0.591126 5.16095e-10 -0.262444)
(0.58806 3.80986e-10 -0.254397)
(0.585016 1.87867e-10 -0.246415)
(0.582 -5.45189e-11 -0.238504)
(0.579014 -3.31344e-10 -0.230669)
(0.576063 -6.22463e-10 -0.222914)
(0.573149 -9.05277e-10 -0.215242)
(0.570276 -1.15688e-09 -0.207658)
(0.567448 -1.35725e-09 -0.200162)
(0.564667 -1.4912e-09 -0.192757)
(0.561936 -1.54891e-09 -0.185444)
(0.559258 -1.52591e-09 -0.178223)
(0.556635 -1.42174e-09 -0.171094)
(0.55407 -1.23981e-09 -0.164056)
(0.551566 -9.86731e-10 -0.157106)
(0.549124 -6.72847e-10 -0.150244)
(0.546747 -3.13729e-10 -0.143465)
(0.544436 6.92759e-11 -0.136766)
(0.542194 4.53054e-10 -0.130141)
(0.540022 8.20398e-10 -0.123587)
(0.537922 1.16218e-09 -0.117097)
(0.535895 1.46838e-09 -0.110664)
(0.533942 1.72063e-09 -0.104281)
(0.532065 1.89741e-09 -0.0979411)
(0.530264 1.98851e-09 -0.0916346)
(0.52854 2.00093e-09 -0.0853528)
(0.526893 1.94914e-09 -0.0790859)
(0.525323 1.83885e-09 -0.0728236)
(0.52383 1.66277e-09 -0.0665551)
(0.522415 1.40937e-09 -0.060269)
(0.521075 1.07616e-09 -0.0539533)
(0.51981 6.75845e-10 -0.0475956)
(0.518618 2.33832e-10 -0.0411833)
(0.517498 -2.17426e-10 -0.0347029)
(0.516446 -6.43073e-10 -0.0281408)
(0.515461 -1.00838e-09 -0.0214832)
(0.514537 -1.2801e-09 -0.0147157)
(0.513671 -1.43301e-09 -0.00782388)
(0.512857 -1.458e-09 -0.000793006)
(0.512091 -1.36762e-09 0.00639176)
(0.511365 -1.19129e-09 0.0137453)
(0.510671 -9.6476e-10 0.0212824)
(0.510001 -7.18967e-10 0.0290179)
(0.509345 -4.76311e-10 0.0369663)
(0.508692 -2.47406e-10 0.0451419)
(0.508029 -2.81613e-11 0.0535585)
(0.507343 2.01811e-10 0.0622296)
(0.506618 4.78679e-10 0.0711677)
(0.505836 8.45781e-10 0.0803847)
(0.504979 1.34574e-09 0.0898915)
(0.504026 2.01205e-09 0.0996977)
(0.502952 2.86719e-09 0.109812)
(0.501733 3.92538e-09 0.12024)
(0.500341 5.19851e-09 0.130987)
(0.498746 6.70011e-09 0.142056)
(0.496913 8.44714e-09 0.153446)
(0.494809 1.04553e-08 0.165154)
(0.492393 1.27277e-08 0.177175)
(0.489625 1.52395e-08 0.189497)
(0.48646 1.79257e-08 0.202107)
(0.482852 2.06805e-08 0.214986)
(0.478751 2.33866e-08 0.22811)
(0.474105 2.59846e-08 0.241447)
(0.468858 2.85832e-08 0.254963)
(0.462956 3.15656e-08 0.268614)
(0.456339 3.56034e-08 0.282348)
(0.448951 4.14996e-08 0.296107)
(0.440731 4.98875e-08 0.309823)
(0.431622 6.09735e-08 0.32342)
(0.421569 7.45629e-08 0.336812)
(0.410517 9.04152e-08 0.349903)
(0.398418 1.08721e-07 0.362589)
(0.38523 1.30395e-07 0.374756)
(0.370916 1.56885e-07 0.386281)
(0.35545 1.88833e-07 0.397033)
(0.338816 2.22466e-07 0.406876)
(0.321009 2.44913e-07 0.415667)
(0.302041 2.38027e-07 0.423258)
(0.281936 2.08068e-07 0.4295)
(0.260736 2.34602e-07 0.434243)
(0.238498 4.47976e-07 0.437336)
(0.215296 7.96346e-07 0.438623)
(0.19122 7.05978e-07 0.437944)
(0.166379 -9.07553e-07 0.435112)
(0.140899 -5.55533e-06 0.429894)
(0.114951 -1.64275e-05 0.42193)
(0.0886374 -3.99797e-05 0.410567)
(0.0627178 -8.45005e-05 0.394321)
(0.0358199 -8.49125e-05 0.369126)
(0.0144514 0.000422038 0.327658)
(-0.0130409 2.88217e-06 1.10928)
(-0.0297799 5.96425e-07 1.13365)
(-0.0476915 2.68325e-07 1.12182)
(-0.0649315 1.75581e-07 1.10226)
(-0.0808807 1.34574e-07 1.07891)
(-0.095534 1.09188e-07 1.05302)
(-0.108859 9.23878e-08 1.02519)
(-0.120832 8.21277e-08 0.995782)
(-0.131436 7.96461e-08 0.965044)
(-0.140661 8.45358e-08 0.933166)
(-0.148502 8.68478e-08 0.900298)
(-0.154957 7.61161e-08 0.866565)
(-0.160029 5.49235e-08 0.832073)
(-0.163722 3.55807e-08 0.796915)
(-0.166043 2.54923e-08 0.761174)
(-0.167001 2.24517e-08 0.724923)
(-0.166606 2.05739e-08 0.688231)
(-0.164867 1.65014e-08 0.65116)
(-0.161796 1.06683e-08 0.613768)
(-0.157403 5.23921e-09 0.576109)
(-0.151702 1.87229e-09 0.538234)
(-0.144703 8.98201e-10 0.500191)
(-0.13642 1.71105e-09 0.462029)
(-0.126864 3.47666e-09 0.423792)
(-0.116051 5.5354e-09 0.385524)
(-0.103995 7.41964e-09 0.34727)
(-0.090714 8.77453e-09 0.309076)
(-0.0762281 9.34717e-09 0.270989)
(-0.0605622 9.07956e-09 0.23306)
(-0.0437472 8.14472e-09 0.195343)
(-0.0258196 6.8749e-09 0.157899)
(-0.00682795 5.58215e-09 0.120795)
(0.0131706 4.42359e-09 0.0841014)
(0.0341001 3.40509e-09 0.0479121)
(0.0558798 2.43927e-09 0.0123095)
(0.0784161 1.47704e-09 -0.0226034)
(0.101573 5.50736e-10 -0.0567018)
(0.125234 -2.41606e-10 -0.0898821)
(0.149275 -8.09353e-10 -0.12205)
(0.173562 -1.11547e-09 -0.153114)
(0.197966 -1.20641e-09 -0.182995)
(0.222357 -1.18585e-09 -0.211621)
(0.24661 -1.16108e-09 -0.238934)
(0.270607 -1.20718e-09 -0.26489)
(0.294239 -1.34175e-09 -0.289457)
(0.317406 -1.53776e-09 -0.312619)
(0.340021 -1.74262e-09 -0.33437)
(0.362006 -1.90373e-09 -0.354716)
(0.383294 -1.98636e-09 -0.373674)
(0.403831 -1.98208e-09 -0.391269)
(0.423571 -1.90296e-09 -0.407533)
(0.442481 -1.77393e-09 -0.422504)
(0.460535 -1.6221e-09 -0.436224)
(0.477715 -1.471e-09 -0.448741)
(0.49401 -1.33698e-09 -0.460101)
(0.509419 -1.22924e-09 -0.470354)
(0.523944 -1.15124e-09 -0.47955)
(0.537592 -1.102e-09 -0.487739)
(0.550376 -1.07766e-09 -0.494969)
(0.562311 -1.07202e-09 -0.501288)
(0.573417 -1.07734e-09 -0.506742)
(0.583716 -1.08469e-09 -0.511376)
(0.59323 -1.08508e-09 -0.515231)
(0.601986 -1.07021e-09 -0.518348)
(0.61001 -1.03295e-09 -0.520765)
(0.61733 -9.68103e-10 -0.522519)
(0.623975 -8.7225e-10 -0.523644)
(0.629972 -7.43752e-10 -0.524171)
(0.63535 -5.82304e-10 -0.524131)
(0.640139 -3.89158e-10 -0.523552)
(0.644365 -1.66078e-10 -0.522461)
(0.648059 8.39203e-11 -0.520883)
(0.651246 3.57334e-10 -0.518842)
(0.653953 6.49612e-10 -0.51636)
(0.656208 9.55541e-10 -0.513459)
(0.658034 1.26929e-09 -0.510158)
(0.659458 1.58396e-09 -0.506477)
(0.660502 1.8927e-09 -0.502434)
(0.661189 2.18842e-09 -0.498046)
(0.661541 2.46388e-09 -0.493331)
(0.66158 2.71249e-09 -0.488304)
(0.661326 2.9283e-09 -0.482983)
(0.660798 3.1061e-09 -0.477382)
(0.660015 3.24213e-09 -0.471516)
(0.658994 3.33378e-09 -0.465401)
(0.657753 3.3799e-09 -0.459051)
(0.656307 3.38047e-09 -0.45248)
(0.654673 3.33704e-09 -0.445702)
(0.652864 3.25179e-09 -0.438732)
(0.650894 3.12753e-09 -0.431583)
(0.648778 2.96769e-09 -0.424269)
(0.646527 2.77591e-09 -0.416803)
(0.644153 2.5562e-09 -0.409199)
(0.641669 2.31353e-09 -0.40147)
(0.639084 2.05375e-09 -0.393628)
(0.636409 1.78426e-09 -0.385688)
(0.633654 1.51392e-09 -0.37766)
(0.630829 1.2534e-09 -0.369558)
(0.627941 1.01372e-09 -0.361393)
(0.625 8.0596e-10 -0.353177)
(0.622014 6.39335e-10 -0.344922)
(0.61899 5.20464e-10 -0.336639)
(0.615934 4.51647e-10 -0.328337)
(0.612855 4.30176e-10 -0.320029)
(0.609758 4.47946e-10 -0.311723)
(0.60665 4.92458e-10 -0.303429)
(0.603536 5.47118e-10 -0.295157)
(0.600421 5.93701e-10 -0.286914)
(0.597312 6.13927e-10 -0.278709)
(0.594212 5.91867e-10 -0.27055)
(0.591127 5.16096e-10 -0.262444)
(0.58806 3.80986e-10 -0.254397)
(0.585016 1.87867e-10 -0.246415)
(0.582 -5.45189e-11 -0.238504)
(0.579014 -3.31344e-10 -0.230669)
(0.576063 -6.22464e-10 -0.222914)
(0.573149 -9.05278e-10 -0.215242)
(0.570276 -1.15688e-09 -0.207658)
(0.567448 -1.35725e-09 -0.200162)
(0.564667 -1.4912e-09 -0.192757)
(0.561936 -1.54891e-09 -0.185444)
(0.559258 -1.52591e-09 -0.178223)
(0.556635 -1.42174e-09 -0.171094)
(0.55407 -1.23981e-09 -0.164056)
(0.551566 -9.86732e-10 -0.157106)
(0.549124 -6.72847e-10 -0.150244)
(0.546747 -3.13729e-10 -0.143465)
(0.544436 6.9276e-11 -0.136766)
(0.542194 4.53054e-10 -0.130141)
(0.540022 8.20399e-10 -0.123587)
(0.537922 1.16218e-09 -0.117097)
(0.535895 1.46838e-09 -0.110664)
(0.533942 1.72063e-09 -0.104281)
(0.532065 1.89741e-09 -0.0979411)
(0.530264 1.98851e-09 -0.0916346)
(0.52854 2.00093e-09 -0.0853528)
(0.526893 1.94915e-09 -0.0790859)
(0.525323 1.83885e-09 -0.0728236)
(0.523831 1.66277e-09 -0.0665551)
(0.522415 1.40937e-09 -0.060269)
(0.521075 1.07616e-09 -0.0539533)
(0.51981 6.75845e-10 -0.0475957)
(0.518618 2.33832e-10 -0.0411833)
(0.517498 -2.17426e-10 -0.0347029)
(0.516446 -6.43073e-10 -0.0281409)
(0.515461 -1.00838e-09 -0.0214832)
(0.514537 -1.2801e-09 -0.0147158)
(0.513671 -1.43301e-09 -0.00782391)
(0.512857 -1.458e-09 -0.000793031)
(0.512091 -1.36763e-09 0.00639173)
(0.511365 -1.19129e-09 0.0137453)
(0.510671 -9.64761e-10 0.0212824)
(0.510001 -7.18968e-10 0.0290179)
(0.509345 -4.76311e-10 0.0369663)
(0.508692 -2.47407e-10 0.0451419)
(0.508029 -2.81613e-11 0.0535585)
(0.507343 2.01811e-10 0.0622296)
(0.506618 4.7868e-10 0.0711677)
(0.505837 8.45782e-10 0.0803847)
(0.504979 1.34574e-09 0.0898915)
(0.504026 2.01205e-09 0.0996978)
(0.502952 2.86719e-09 0.109812)
(0.501734 3.92539e-09 0.12024)
(0.500341 5.19851e-09 0.130987)
(0.498746 6.70011e-09 0.142056)
(0.496913 8.44714e-09 0.153446)
(0.494809 1.04553e-08 0.165154)
(0.492393 1.27277e-08 0.177175)
(0.489625 1.52395e-08 0.189497)
(0.486461 1.79258e-08 0.202107)
(0.482853 2.06805e-08 0.214986)
(0.478751 2.33866e-08 0.22811)
(0.474105 2.59846e-08 0.241447)
(0.468858 2.85832e-08 0.254963)
(0.462956 3.15656e-08 0.268614)
(0.45634 3.56034e-08 0.282348)
(0.448951 4.14996e-08 0.296107)
(0.440731 4.98875e-08 0.309823)
(0.431623 6.09736e-08 0.32342)
(0.421569 7.45629e-08 0.336812)
(0.410517 9.04153e-08 0.349904)
(0.398419 1.08721e-07 0.36259)
(0.385231 1.30395e-07 0.374757)
(0.370917 1.56885e-07 0.386282)
(0.355451 1.88833e-07 0.397035)
(0.338817 2.22466e-07 0.406878)
(0.321011 2.44913e-07 0.415669)
(0.302043 2.38028e-07 0.423261)
(0.281938 2.08068e-07 0.429504)
(0.260739 2.34603e-07 0.434249)
(0.238501 4.47979e-07 0.437344)
(0.215299 7.96354e-07 0.438635)
(0.191221 7.05993e-07 0.437959)
(0.166379 -9.07592e-07 0.435135)
(0.140896 -5.55579e-06 0.429928)
(0.114937 -1.64297e-05 0.421981)
(0.0885915 -3.99826e-05 0.410645)
(0.0626407 -8.442e-05 0.394465)
(0.0356131 -8.44187e-05 0.369362)
(0.0129503 0.000418067 0.327328)
(-0.0127441 2.85258e-06 1.12972)
(-0.0289656 4.52979e-07 1.15327)
(-0.0462449 1.67336e-07 1.1402)
(-0.0627513 1.07588e-07 1.11932)
(-0.0778949 7.94217e-08 1.0946)
(-0.0916725 6.12474e-08 1.0673)
(-0.104054 4.94634e-08 1.03802)
(-0.115018 4.02555e-08 1.00715)
(-0.124552 3.94087e-08 0.974931)
(-0.132649 5.60946e-08 0.941569)
(-0.139307 8.0095e-08 0.907214)
(-0.144528 8.76602e-08 0.871996)
(-0.148317 7.13205e-08 0.836025)
(-0.150684 4.64885e-08 0.799396)
(-0.151637 2.93701e-08 0.762192)
(-0.151187 2.29233e-08 0.724489)
(-0.149345 2.1098e-08 0.686356)
(-0.146123 1.813e-08 0.647856)
(-0.141533 1.27322e-08 0.609047)
(-0.135586 6.87468e-09 0.569983)
(-0.128294 2.85305e-09 0.530715)
(-0.119668 1.55638e-09 0.491294)
(-0.10972 2.4838e-09 0.451765)
(-0.098463 4.58713e-09 0.412174)
(-0.0859091 6.94484e-09 0.372569)
(-0.072074 8.94359e-09 0.332995)
(-0.0569757 1.02077e-08 0.293501)
(-0.0406365 1.05305e-08 0.25414)
(-0.0230839 9.91177e-09 0.214967)
(-0.00435552 8.57889e-09 0.176044)
(0.0155022 6.91809e-09 0.13744)
(0.0364261 5.30814e-09 0.0992448)
(0.058346 3.95497e-09 0.0615406)
(0.0811756 2.88107e-09 0.0244221)
(0.104824 1.96842e-09 -0.0120074)
(0.129145 1.106e-09 -0.0476072)
(0.154009 2.68452e-10 -0.0822587)
(0.179282 -4.84487e-10 -0.115855)
(0.204819 -1.057e-09 -0.148295)
(0.230478 -1.39595e-09 -0.179488)
(0.256117 -1.5191e-09 -0.209354)
(0.281599 -1.50851e-09 -0.237828)
(0.306795 -1.46484e-09 -0.264858)
(0.331586 -1.46765e-09 -0.290411)
(0.355863 -1.54855e-09 -0.314466)
(0.379528 -1.69281e-09 -0.337018)
(0.4025 -1.85519e-09 -0.358073)
(0.424705 -1.98578e-09 -0.377651)
(0.446085 -2.04815e-09 -0.39578)
(0.466592 -2.03002e-09 -0.412497)
(0.48619 -1.94055e-09 -0.427845)
(0.504852 -1.80291e-09 -0.441872)
(0.522561 -1.64393e-09 -0.454631)
(0.539307 -1.48738e-09 -0.466175)
(0.555088 -1.34986e-09 -0.47656)
(0.569909 -1.24036e-09 -0.485841)
(0.58378 -1.16162e-09 -0.494075)
(0.596715 -1.11161e-09 -0.501315)
(0.608735 -1.085e-09 -0.507615)
(0.619859 -1.0746e-09 -0.513026)
(0.630114 -1.07188e-09 -0.517596)
(0.639527 -1.06736e-09 -0.521371)
(0.648126 -1.05172e-09 -0.524398)
(0.655942 -1.01638e-09 -0.526716)
(0.663005 -9.54294e-10 -0.528365)
(0.669348 -8.60333e-10 -0.529382)
(0.675002 -7.31454e-10 -0.529802)
(0.679998 -5.66556e-10 -0.529656)
(0.68437 -3.66406e-10 -0.528975)
(0.688148 -1.33358e-10 -0.527787)
(0.691363 1.2919e-10 -0.526117)
(0.694045 4.16558e-10 -0.523991)
(0.696225 7.23354e-10 -0.521432)
(0.69793 1.04342e-09 -0.518461)
(0.699189 1.36997e-09 -0.515098)
(0.700028 1.69566e-09 -0.511362)
(0.700473 2.01336e-09 -0.507273)
(0.70055 2.3156e-09 -0.502847)
(0.700282 2.5954e-09 -0.498101)
(0.699693 2.84644e-09 -0.49305)
(0.698805 3.06312e-09 -0.487711)
(0.697637 3.24081e-09 -0.482098)
(0.696212 3.37605e-09 -0.476226)
(0.694547 3.46691e-09 -0.470108)
(0.692661 3.51259e-09 -0.46376)
(0.690571 3.51372e-09 -0.457194)
(0.688294 3.47224e-09 -0.450424)
(0.685846 3.39072e-09 -0.443464)
(0.683242 3.2727e-09 -0.436326)
(0.680495 3.12173e-09 -0.429024)
(0.677619 2.94153e-09 -0.421571)
(0.674628 2.73654e-09 -0.413979)
(0.671532 2.51139e-09 -0.406261)
(0.668343 2.27219e-09 -0.39843)
(0.665074 2.02655e-09 -0.390498)
(0.661732 1.78398e-09 -0.382477)
(0.65833 1.55614e-09 -0.37438)
(0.654875 1.35544e-09 -0.366217)
(0.651376 1.19483e-09 -0.358001)
(0.647842 1.08565e-09 -0.349742)
(0.644281 1.03591e-09 -0.341452)
(0.6407 1.04882e-09 -0.333142)
(0.637106 1.12163e-09 -0.324821)
(0.633506 1.2447e-09 -0.316499)
(0.629905 1.40216e-09 -0.308187)
(0.626311 1.57276e-09 -0.299893)
(0.622727 1.73208e-09 -0.291626)
(0.61916 1.85424e-09 -0.283394)
(0.615614 1.91499e-09 -0.275206)
(0.612095 1.89401e-09 -0.267068)
(0.608605 1.77741e-09 -0.258987)
(0.60515 1.55869e-09 -0.25097)
(0.601734 1.24e-09 -0.243022)
(0.598359 8.32496e-10 -0.23515)
(0.59503 3.54428e-10 -0.227356)
(0.59175 -1.69638e-10 -0.219647)
(0.588521 -7.11656e-10 -0.212024)
(0.585348 -1.24261e-09 -0.204491)
(0.582232 -1.73576e-09 -0.197051)
(0.579177 -2.16978e-09 -0.189704)
(0.576185 -2.52936e-09 -0.182452)
(0.573259 -2.80406e-09 -0.175294)
(0.5704 -2.98583e-09 -0.168231)
(0.567612 -3.06692e-09 -0.161262)
(0.564896 -3.03977e-09 -0.154384)
(0.562255 -2.8983e-09 -0.147594)
(0.55969 -2.64273e-09 -0.140891)
(0.557203 -2.28667e-09 -0.134268)
(0.554796 -1.85652e-09 -0.127723)
(0.552471 -1.37984e-09 -0.121249)
(0.550228 -8.74093e-10 -0.114841)
(0.54807 -3.52761e-10 -0.108492)
(0.545996 1.5756e-10 -0.102194)
(0.54401 6.14401e-10 -0.095939)
(0.54211 9.77642e-10 -0.0897188)
(0.540297 1.228e-09 -0.0835237)
(0.538573 1.36599e-09 -0.0773439)
(0.536937 1.39446e-09 -0.0711688)
(0.53539 1.30692e-09 -0.0649871)
(0.53393 1.09224e-09 -0.0587872)
(0.532557 7.48781e-10 -0.0525568)
(0.531271 2.9451e-10 -0.0462832)
(0.530069 -2.34008e-10 -0.039953)
(0.528951 -7.8947e-10 -0.0335525)
(0.527913 -1.32298e-09 -0.0270676)
(0.526953 -1.78831e-09 -0.0204838)
(0.526068 -2.14268e-09 -0.013786)
(0.525254 -2.35092e-09 -0.00695911)
(0.524506 -2.39549e-09 1.23495e-05)
(0.523818 -2.28754e-09 0.00714412)
(0.523185 -2.06498e-09 0.0144521)
(0.522598 -1.77811e-09 0.021952)
(0.52205 -1.47247e-09 0.02966)
(0.521531 -1.17957e-09 0.0375917)
(0.521031 -9.11481e-10 0.0457628)
(0.520536 -6.60001e-10 0.0541888)
(0.520035 -3.94675e-10 0.0628846)
(0.519511 -6.51605e-11 0.0718646)
(0.518947 3.9124e-10 0.0811428)
(0.518324 1.03813e-09 0.0907319)
(0.517621 1.92816e-09 0.100644)
(0.516815 3.09428e-09 0.110889)
(0.51588 4.54676e-09 0.121478)
(0.514787 6.27511e-09 0.132416)
(0.513506 8.25589e-09 0.14371)
(0.512001 1.04619e-08 0.155362)
(0.510237 1.28692e-08 0.167372)
(0.508173 1.5453e-08 0.179738)
(0.505765 1.81733e-08 0.192451)
(0.502966 2.09578e-08 0.205502)
(0.499727 2.37012e-08 0.218875)
(0.495993 2.63075e-08 0.232548)
(0.49171 2.87825e-08 0.246494)
(0.486816 3.13646e-08 0.260679)
(0.48125 3.46285e-08 0.275061)
(0.474948 3.94728e-08 0.289593)
(0.467844 4.69103e-08 0.304214)
(0.459872 5.76942e-08 0.318859)
(0.450964 7.19379e-08 0.333448)
(0.441056 8.89332e-08 0.347895)
(0.430086 1.07288e-07 0.362099)
(0.417993 1.2543e-07 0.375952)
(0.404725 1.42609e-07 0.389332)
(0.390236 1.60411e-07 0.402107)
(0.374491 1.83702e-07 0.414137)
(0.357463 2.18185e-07 0.425271)
(0.339141 2.62818e-07 0.435353)
(0.319531 3.04969e-07 0.44422)
(0.298651 3.40622e-07 0.451704)
(0.276544 4.26703e-07 0.457637)
(0.253266 6.82048e-07 0.46185)
(0.228895 1.0738e-06 0.464168)
(0.203524 1.04412e-06 0.464413)
(0.177267 -6.04734e-07 0.462383)
(0.150246 -6.01451e-06 0.457823)
(0.12261 -2.10386e-05 0.45035)
(0.0944065 -6.26485e-05 0.43926)
(0.0661488 -0.000171761 0.422921)
(0.0377582 -0.000274638 0.396906)
(0.0212536 0.000911311 0.35265)
(-0.0127432 2.85259e-06 1.12972)
(-0.0289655 4.52979e-07 1.15327)
(-0.0462448 1.67336e-07 1.1402)
(-0.0627513 1.07589e-07 1.11932)
(-0.0778949 7.94217e-08 1.0946)
(-0.0916725 6.12474e-08 1.0673)
(-0.104054 4.94634e-08 1.03802)
(-0.115018 4.02556e-08 1.00715)
(-0.124553 3.94087e-08 0.974931)
(-0.132649 5.60946e-08 0.941568)
(-0.139307 8.0095e-08 0.907214)
(-0.144528 8.76603e-08 0.871996)
(-0.148318 7.13205e-08 0.836025)
(-0.150684 4.64885e-08 0.799396)
(-0.151637 2.93701e-08 0.762192)
(-0.151187 2.29233e-08 0.724489)
(-0.149345 2.1098e-08 0.686356)
(-0.146123 1.81301e-08 0.647856)
(-0.141533 1.27322e-08 0.609047)
(-0.135586 6.87468e-09 0.569983)
(-0.128294 2.85305e-09 0.530715)
(-0.119668 1.55638e-09 0.491294)
(-0.10972 2.4838e-09 0.451765)
(-0.098463 4.58713e-09 0.412174)
(-0.0859091 6.94483e-09 0.372569)
(-0.072074 8.94359e-09 0.332995)
(-0.0569757 1.02076e-08 0.293501)
(-0.0406365 1.05305e-08 0.25414)
(-0.0230839 9.91175e-09 0.214967)
(-0.00435548 8.57888e-09 0.176044)
(0.0155022 6.91808e-09 0.13744)
(0.0364262 5.30813e-09 0.0992449)
(0.0583461 3.95497e-09 0.0615406)
(0.0811756 2.88107e-09 0.0244222)
(0.104825 1.96842e-09 -0.0120074)
(0.129145 1.106e-09 -0.0476071)
(0.154009 2.68452e-10 -0.0822587)
(0.179282 -4.84487e-10 -0.115855)
(0.204819 -1.05699e-09 -0.148295)
(0.230478 -1.39595e-09 -0.179488)
(0.256117 -1.5191e-09 -0.209354)
(0.281599 -1.50851e-09 -0.237828)
(0.306795 -1.46483e-09 -0.264858)
(0.331586 -1.46765e-09 -0.290411)
(0.355863 -1.54855e-09 -0.314466)
(0.379528 -1.6928e-09 -0.337018)
(0.4025 -1.85519e-09 -0.358073)
(0.424705 -1.98577e-09 -0.377651)
(0.446085 -2.04815e-09 -0.39578)
(0.466593 -2.03002e-09 -0.412497)
(0.48619 -1.94054e-09 -0.427845)
(0.504852 -1.80291e-09 -0.441872)
(0.522561 -1.64392e-09 -0.454631)
(0.539307 -1.48738e-09 -0.466175)
(0.555088 -1.34986e-09 -0.47656)
(0.569909 -1.24036e-09 -0.485841)
(0.58378 -1.16162e-09 -0.494075)
(0.596716 -1.11161e-09 -0.501315)
(0.608735 -1.085e-09 -0.507615)
(0.619859 -1.0746e-09 -0.513026)
(0.630114 -1.07188e-09 -0.517596)
(0.639527 -1.06736e-09 -0.521372)
(0.648126 -1.05172e-09 -0.524398)
(0.655942 -1.01638e-09 -0.526716)
(0.663005 -9.54294e-10 -0.528365)
(0.669348 -8.60333e-10 -0.529382)
(0.675002 -7.31454e-10 -0.529802)
(0.679999 -5.66556e-10 -0.529656)
(0.68437 -3.66406e-10 -0.528975)
(0.688148 -1.33358e-10 -0.527787)
(0.691363 1.2919e-10 -0.526117)
(0.694045 4.16558e-10 -0.523991)
(0.696225 7.23354e-10 -0.521432)
(0.69793 1.04342e-09 -0.518461)
(0.699189 1.36997e-09 -0.515098)
(0.700028 1.69566e-09 -0.511362)
(0.700473 2.01336e-09 -0.507273)
(0.70055 2.3156e-09 -0.502847)
(0.700283 2.5954e-09 -0.498101)
(0.699693 2.84644e-09 -0.49305)
(0.698805 3.06312e-09 -0.487711)
(0.697637 3.24081e-09 -0.482098)
(0.696212 3.37605e-09 -0.476226)
(0.694547 3.46691e-09 -0.470108)
(0.692661 3.51259e-09 -0.46376)
(0.690571 3.51372e-09 -0.457194)
(0.688295 3.47224e-09 -0.450424)
(0.685847 3.39072e-09 -0.443464)
(0.683242 3.2727e-09 -0.436326)
(0.680495 3.12173e-09 -0.429024)
(0.677619 2.94153e-09 -0.421571)
(0.674628 2.73654e-09 -0.413979)
(0.671532 2.51139e-09 -0.406261)
(0.668344 2.27219e-09 -0.39843)
(0.665074 2.02655e-09 -0.390498)
(0.661732 1.78399e-09 -0.382477)
(0.65833 1.55614e-09 -0.37438)
(0.654875 1.35544e-09 -0.366217)
(0.651376 1.19483e-09 -0.358001)
(0.647842 1.08565e-09 -0.349742)
(0.644281 1.03591e-09 -0.341452)
(0.6407 1.04882e-09 -0.333142)
(0.637106 1.12163e-09 -0.324821)
(0.633506 1.2447e-09 -0.316499)
(0.629905 1.40216e-09 -0.308187)
(0.626311 1.57276e-09 -0.299893)
(0.622727 1.73208e-09 -0.291626)
(0.61916 1.85424e-09 -0.283394)
(0.615614 1.91499e-09 -0.275206)
(0.612095 1.89401e-09 -0.267068)
(0.608605 1.77741e-09 -0.258987)
(0.60515 1.55869e-09 -0.25097)
(0.601734 1.24e-09 -0.243022)
(0.598359 8.32496e-10 -0.23515)
(0.59503 3.54428e-10 -0.227356)
(0.59175 -1.69638e-10 -0.219647)
(0.588521 -7.11657e-10 -0.212024)
(0.585348 -1.24261e-09 -0.204491)
(0.582232 -1.73576e-09 -0.197051)
(0.579177 -2.16978e-09 -0.189704)
(0.576185 -2.52936e-09 -0.182452)
(0.573259 -2.80406e-09 -0.175294)
(0.5704 -2.98583e-09 -0.168231)
(0.567612 -3.06693e-09 -0.161262)
(0.564896 -3.03977e-09 -0.154384)
(0.562255 -2.89831e-09 -0.147594)
(0.55969 -2.64273e-09 -0.140891)
(0.557203 -2.28668e-09 -0.134268)
(0.554796 -1.85652e-09 -0.127723)
(0.552471 -1.37985e-09 -0.121249)
(0.550228 -8.74094e-10 -0.114841)
(0.54807 -3.52762e-10 -0.108492)
(0.545997 1.5756e-10 -0.102194)
(0.54401 6.14401e-10 -0.095939)
(0.54211 9.77643e-10 -0.0897188)
(0.540297 1.228e-09 -0.0835237)
(0.538573 1.36599e-09 -0.0773439)
(0.536937 1.39446e-09 -0.0711688)
(0.53539 1.30692e-09 -0.0649871)
(0.53393 1.09224e-09 -0.0587872)
(0.532557 7.48782e-10 -0.0525568)
(0.531271 2.9451e-10 -0.0462832)
(0.530069 -2.34009e-10 -0.039953)
(0.528951 -7.8947e-10 -0.0335525)
(0.527913 -1.32298e-09 -0.0270677)
(0.526953 -1.78831e-09 -0.0204838)
(0.526068 -2.14269e-09 -0.013786)
(0.525254 -2.35092e-09 -0.00695913)
(0.524506 -2.39549e-09 1.23248e-05)
(0.523818 -2.28754e-09 0.00714409)
(0.523185 -2.06498e-09 0.014452)
(0.522598 -1.77812e-09 0.021952)
(0.52205 -1.47247e-09 0.0296599)
(0.521531 -1.17958e-09 0.0375917)
(0.521031 -9.11481e-10 0.0457628)
(0.520537 -6.60002e-10 0.0541888)
(0.520035 -3.94675e-10 0.0628846)
(0.519511 -6.51606e-11 0.0718646)
(0.518947 3.91241e-10 0.0811428)
(0.518324 1.03813e-09 0.0907319)
(0.517621 1.92816e-09 0.100644)
(0.516815 3.09428e-09 0.110889)
(0.51588 4.54676e-09 0.121478)
(0.514787 6.27511e-09 0.132416)
(0.513506 8.2559e-09 0.14371)
(0.512002 1.04619e-08 0.155362)
(0.510237 1.28692e-08 0.167372)
(0.508173 1.5453e-08 0.179738)
(0.505765 1.81734e-08 0.192451)
(0.502966 2.09578e-08 0.205503)
(0.499727 2.37012e-08 0.218875)
(0.495994 2.63075e-08 0.232548)
(0.49171 2.87825e-08 0.246494)
(0.486816 3.13646e-08 0.260679)
(0.48125 3.46285e-08 0.275062)
(0.474948 3.94728e-08 0.289593)
(0.467844 4.69103e-08 0.304215)
(0.459872 5.76942e-08 0.318859)
(0.450965 7.19379e-08 0.333449)
(0.441057 8.89333e-08 0.347895)
(0.430086 1.07288e-07 0.3621)
(0.417994 1.2543e-07 0.375953)
(0.404726 1.42609e-07 0.389332)
(0.390238 1.60411e-07 0.402108)
(0.374492 1.83702e-07 0.414138)
(0.357465 2.18185e-07 0.425273)
(0.339144 2.62819e-07 0.435356)
(0.319533 3.04969e-07 0.444223)
(0.298655 3.40623e-07 0.451708)
(0.276548 4.26704e-07 0.457643)
(0.253272 6.82052e-07 0.461857)
(0.228902 1.07381e-06 0.464178)
(0.203535 1.04414e-06 0.464427)
(0.177284 -6.04759e-07 0.462402)
(0.150273 -6.01461e-06 0.457848)
(0.122648 -2.10314e-05 0.450377)
(0.0944563 -6.24942e-05 0.439276)
(0.0662567 -0.000169607 0.422912)
(0.0375886 -0.000260797 0.39684)
(0.0131959 0.000781608 0.353053)
(-0.012401 2.4931e-06 1.14958)
(-0.0280243 2.39115e-07 1.1722)
(-0.0445744 4.19524e-08 1.15779)
(-0.0602389 3.12068e-08 1.13552)
(-0.074461 2.1759e-08 1.10934)
(-0.0872396 1.35902e-08 1.08055)
(-0.0985478 7.96647e-09 1.04976)
(-0.108369 -6.08845e-09 1.01735)
(-0.116693 -2.07384e-08 0.98359)
(-0.123518 -6.46572e-09 0.948682)
(-0.128848 3.89591e-08 0.912784)
(-0.132688 7.72345e-08 0.876029)
(-0.135048 7.99011e-08 0.838529)
(-0.135941 5.77872e-08 0.800382)
(-0.135378 3.58786e-08 0.761673)
(-0.133374 2.57825e-08 0.722478)
(-0.12994 2.38134e-08 0.682865)
(-0.125091 2.22455e-08 0.642897)
(-0.118837 1.74733e-08 0.602633)
(-0.111191 1.07972e-08 0.562126)
(-0.102164 5.2097e-09 0.521428)
(-0.0917652 2.54478e-09 0.480587)
(-0.0800061 2.76824e-09 0.439651)
(-0.0668973 4.7678e-09 0.398666)
(-0.0524516 7.3119e-09 0.357682)
(-0.0366838 9.5137e-09 0.316747)
(-0.0196132 1.08581e-08 0.275914)
(-0.00126641 1.11209e-08 0.235239)
(0.0183206 1.03304e-08 0.194789)
(0.0390994 8.7627e-09 0.154646)
(0.0610125 6.85055e-09 0.114887)
(0.083988 5.0213e-09 0.0756072)
(0.107939 3.53429e-09 0.0369064)
(0.132769 2.42233e-09 -0.0011023)
(0.158336 1.55648e-09 -0.0382776)
(0.184487 7.78111e-10 -0.0744748)
(0.211077 1.39267e-11 -0.109574)
(0.23795 -7.09073e-10 -0.143463)
(0.264951 -1.29787e-09 -0.176038)
(0.291924 -1.67946e-09 -0.207209)
(0.31872 -1.84308e-09 -0.236902)
(0.345197 -1.84675e-09 -0.265061)
(0.371224 -1.78297e-09 -0.291644)
(0.396682 -1.73652e-09 -0.316629)
(0.421466 -1.75383e-09 -0.34001)
(0.445486 -1.8345e-09 -0.361795)
(0.468664 -1.94412e-09 -0.382006)
(0.490936 -2.03712e-09 -0.400674)
(0.512253 -2.07633e-09 -0.417841)
(0.532574 -2.04555e-09 -0.433555)
(0.551873 -1.95022e-09 -0.447873)
(0.570133 -1.80975e-09 -0.460851)
(0.587345 -1.64949e-09 -0.472551)
(0.603509 -1.49233e-09 -0.483034)
(0.618631 -1.35469e-09 -0.492365)
(0.632724 -1.24491e-09 -0.500603)
(0.645805 -1.1652e-09 -0.507811)
(0.657897 -1.11277e-09 -0.514047)
(0.669025 -1.08158e-09 -0.519367)
(0.679217 -1.06334e-09 -0.523826)
(0.688505 -1.04921e-09 -0.527474)
(0.696921 -1.02915e-09 -0.530361)
(0.704498 -9.937e-10 -0.532532)
(0.711272 -9.34122e-10 -0.53403)
(0.717278 -8.43715e-10 -0.534894)
(0.722551 -7.17571e-10 -0.535161)
(0.727126 -5.53135e-10 -0.534866)
(0.731039 -3.5043e-10 -0.534041)
(0.734325 -1.11325e-10 -0.532715)
(0.737017 1.60397e-10 -0.530917)
(0.739149 4.59497e-10 -0.528671)
(0.740754 7.79583e-10 -0.526001)
(0.741862 1.11329e-09 -0.522929)
(0.742504 1.45275e-09 -0.519476)
(0.74271 1.79007e-09 -0.515661)
(0.742507 2.1172e-09 -0.511503)
(0.741924 2.42668e-09 -0.507018)
(0.740986 2.71156e-09 -0.502223)
(0.739718 2.96571e-09 -0.497132)
(0.738144 3.18413e-09 -0.491762)
(0.736287 3.36305e-09 -0.486126)
(0.734169 3.49956e-09 -0.480239)
(0.731809 3.59215e-09 -0.474113)
(0.729229 3.64101e-09 -0.467762)
(0.726445 3.647e-09 -0.461199)
(0.723477 3.61244e-09 -0.454436)
(0.720341 3.54056e-09 -0.447487)
(0.717053 3.43486e-09 -0.440363)
(0.713627 3.29923e-09 -0.433078)
(0.710079 3.13747e-09 -0.425643)
(0.706422 2.9537e-09 -0.418071)
(0.702669 2.7526e-09 -0.410373)
(0.698831 2.53984e-09 -0.402562)
(0.694921 2.32317e-09 -0.394649)
(0.690948 2.11258e-09 -0.386646)
(0.686924 1.9205e-09 -0.378566)
(0.682858 1.7613e-09 -0.370418)
(0.67876 1.64985e-09 -0.362215)
(0.674637 1.60011e-09 -0.353967)
(0.670498 1.62286e-09 -0.345685)
(0.66635 1.72346e-09 -0.33738)
(0.662202 1.90034e-09 -0.329062)
(0.658059 2.14421e-09 -0.32074)
(0.653929 2.43787e-09 -0.312425)
(0.649816 2.75704e-09 -0.304125)
(0.645727 3.07244e-09 -0.295849)
(0.641667 3.35271e-09 -0.287605)
(0.63764 3.56611e-09 -0.279402)
(0.633652 3.68428e-09 -0.271248)
(0.629707 3.6844e-09 -0.263148)
(0.625808 3.55071e-09 -0.25511)
(0.62196 3.27601e-09 -0.247139)
(0.618167 2.86177e-09 -0.239242)
(0.61443 2.31812e-09 -0.231423)
(0.610754 1.66239e-09 -0.223688)
(0.607142 9.17986e-10 -0.216039)
(0.603596 1.12913e-10 -0.20848)
(0.600119 -7.2203e-10 -0.201014)
(0.596714 -1.55606e-09 -0.193642)
(0.593383 -2.36247e-09 -0.186368)
(0.590128 -3.1202e-09 -0.17919)
(0.586952 -3.81368e-09 -0.17211)
(0.583857 -4.42788e-09 -0.165126)
(0.580844 -4.94402e-09 -0.158238)
(0.577916 -5.33648e-09 -0.151444)
(0.575075 -5.57342e-09 -0.14474)
(0.572321 -5.62498e-09 -0.138124)
(0.569658 -5.47998e-09 -0.131591)
(0.567085 -5.15752e-09 -0.125137)
(0.564606 -4.69564e-09 -0.118756)
(0.56222 -4.12562e-09 -0.112441)
(0.55993 -3.46562e-09 -0.106187)
(0.557736 -2.74271e-09 -0.0999849)
(0.55564 -2.01094e-09 -0.0938271)
(0.553641 -1.33904e-09 -0.0877046)
(0.551741 -7.80217e-10 -0.0816079)
(0.54994 -3.5951e-10 -0.0755267)
(0.548238 -8.55377e-11 -0.0694503)
(0.546636 3.18499e-11 -0.0633671)
(0.545132 -1.96774e-11 -0.0572654)
(0.543727 -2.41404e-10 -0.0511323)
(0.54242 -6.09966e-10 -0.0449548)
(0.54121 -1.07781e-09 -0.0387192)
(0.540094 -1.58292e-09 -0.0324114)
(0.539072 -2.06446e-09 -0.0260166)
(0.53814 -2.47174e-09 -0.0195198)
(0.537296 -2.7648e-09 -0.0129054)
(0.536536 -2.91169e-09 -0.00615755)
(0.535855 -2.89496e-09 0.000740056)
(0.53525 -2.72513e-09 0.00780396)
(0.534713 -2.44494e-09 0.015051)
(0.534238 -2.11456e-09 0.022498)
(0.533817 -1.78957e-09 0.0301621)
(0.533442 -1.50385e-09 0.0380604)
(0.533102 -1.26405e-09 0.04621)
(0.532785 -1.04911e-09 0.0546278)
(0.532478 -8.12648e-10 0.0633305)
(0.532166 -4.86758e-10 0.0723343)
(0.531833 8.14163e-12 0.081655)
(0.531459 7.51639e-10 0.0913079)
(0.531024 1.81051e-09 0.101307)
(0.530505 3.22577e-09 0.111666)
(0.529875 5.004e-09 0.122396)
(0.529106 7.11313e-09 0.133508)
(0.528166 9.49084e-09 0.14501)
(0.52702 1.20599e-08 0.156908)
(0.52563 1.47505e-08 0.169207)
(0.523954 1.75074e-08 0.181905)
(0.521947 2.0282e-08 0.195001)
(0.519559 2.3011e-08 0.208487)
(0.516737 2.56128e-08 0.22235)
(0.513424 2.80328e-08 0.236573)
(0.509559 3.03523e-08 0.251134)
(0.505078 3.29309e-08 0.266)
(0.499913 3.65069e-08 0.281133)
(0.493992 4.2156e-08 0.296488)
(0.487243 5.1048e-08 0.312007)
(0.479589 6.4041e-08 0.327623)
(0.470955 8.12423e-08 0.343258)
(0.461266 1.01681e-07 0.358824)
(0.450447 1.23203e-07 0.374217)
(0.438428 1.42802e-07 0.389322)
(0.425144 1.57889e-07 0.404013)
(0.410537 1.68958e-07 0.418149)
(0.39456 1.82807e-07 0.431576)
(0.377177 2.12699e-07 0.444132)
(0.358366 2.70772e-07 0.455643)
(0.338124 3.55538e-07 0.465929)
(0.316466 4.54698e-07 0.474802)
(0.29343 5.80361e-07 0.482073)
(0.269075 7.76227e-07 0.487551)
(0.243483 9.47451e-07 0.491041)
(0.216756 5.30069e-07 0.492345)
(0.189019 -1.69757e-06 0.491247)
(0.160407 -8.31701e-06 0.487482)
(0.131086 -2.68981e-05 0.480662)
(0.101123 -7.93522e-05 0.470078)
(0.0712668 -0.000210991 0.454034)
(0.0407001 -0.00056867 0.427678)
(0.0335854 0.00111302 0.374767)
(-0.0124001 2.4931e-06 1.14958)
(-0.0280243 2.39115e-07 1.1722)
(-0.0445743 4.19524e-08 1.15779)
(-0.0602388 3.12068e-08 1.13552)
(-0.074461 2.1759e-08 1.10934)
(-0.0872396 1.35902e-08 1.08055)
(-0.0985478 7.96647e-09 1.04976)
(-0.108369 -6.08846e-09 1.01735)
(-0.116693 -2.07384e-08 0.98359)
(-0.123519 -6.46572e-09 0.948682)
(-0.128848 3.89591e-08 0.912784)
(-0.132688 7.72346e-08 0.876029)
(-0.135048 7.99011e-08 0.838529)
(-0.135941 5.77872e-08 0.800382)
(-0.135378 3.58786e-08 0.761673)
(-0.133374 2.57825e-08 0.722478)
(-0.12994 2.38134e-08 0.682865)
(-0.125091 2.22455e-08 0.642897)
(-0.118837 1.74733e-08 0.602633)
(-0.111191 1.07972e-08 0.562126)
(-0.102164 5.2097e-09 0.521428)
(-0.0917652 2.54478e-09 0.480587)
(-0.0800061 2.76823e-09 0.439651)
(-0.0668972 4.76779e-09 0.398666)
(-0.0524516 7.3119e-09 0.357682)
(-0.0366838 9.5137e-09 0.316747)
(-0.0196132 1.08581e-08 0.275914)
(-0.00126638 1.11209e-08 0.235239)
(0.0183207 1.03304e-08 0.194789)
(0.0390995 8.76269e-09 0.154646)
(0.0610125 6.85054e-09 0.114887)
(0.0839881 5.0213e-09 0.0756072)
(0.10794 3.53429e-09 0.0369064)
(0.132769 2.42233e-09 -0.00110228)
(0.158336 1.55648e-09 -0.0382776)
(0.184487 7.7811e-10 -0.0744748)
(0.211077 1.39266e-11 -0.109574)
(0.23795 -7.09071e-10 -0.143463)
(0.264951 -1.29787e-09 -0.176038)
(0.291924 -1.67946e-09 -0.207209)
(0.31872 -1.84308e-09 -0.236902)
(0.345197 -1.84674e-09 -0.265061)
(0.371224 -1.78297e-09 -0.291644)
(0.396682 -1.73652e-09 -0.316629)
(0.421466 -1.75383e-09 -0.34001)
(0.445486 -1.8345e-09 -0.361795)
(0.468664 -1.94411e-09 -0.382006)
(0.490937 -2.03711e-09 -0.400674)
(0.512253 -2.07633e-09 -0.417841)
(0.532574 -2.04555e-09 -0.433555)
(0.551874 -1.95022e-09 -0.447873)
(0.570133 -1.80974e-09 -0.460851)
(0.587345 -1.64949e-09 -0.472551)
(0.603509 -1.49233e-09 -0.483035)
(0.618631 -1.35469e-09 -0.492365)
(0.632724 -1.24491e-09 -0.500603)
(0.645805 -1.1652e-09 -0.507811)
(0.657897 -1.11277e-09 -0.514047)
(0.669025 -1.08158e-09 -0.519367)
(0.679218 -1.06334e-09 -0.523826)
(0.688505 -1.04921e-09 -0.527475)
(0.696921 -1.02915e-09 -0.530362)
(0.704499 -9.937e-10 -0.532532)
(0.711272 -9.34122e-10 -0.53403)
(0.717278 -8.43715e-10 -0.534894)
(0.722551 -7.17571e-10 -0.535161)
(0.727126 -5.53135e-10 -0.534866)
(0.73104 -3.50431e-10 -0.534041)
(0.734325 -1.11325e-10 -0.532715)
(0.737017 1.60397e-10 -0.530917)
(0.739149 4.59497e-10 -0.528671)
(0.740754 7.79583e-10 -0.526001)
(0.741862 1.11329e-09 -0.522929)
(0.742504 1.45275e-09 -0.519476)
(0.74271 1.79007e-09 -0.515661)
(0.742507 2.11721e-09 -0.511503)
(0.741924 2.42668e-09 -0.507018)
(0.740986 2.71156e-09 -0.502223)
(0.739718 2.96571e-09 -0.497132)
(0.738144 3.18413e-09 -0.491762)
(0.736287 3.36305e-09 -0.486126)
(0.734169 3.49956e-09 -0.480239)
(0.731809 3.59216e-09 -0.474113)
(0.729229 3.64101e-09 -0.467762)
(0.726445 3.647e-09 -0.461199)
(0.723477 3.61244e-09 -0.454436)
(0.720341 3.54056e-09 -0.447487)
(0.717053 3.43486e-09 -0.440363)
(0.713628 3.29923e-09 -0.433078)
(0.71008 3.13747e-09 -0.425643)
(0.706422 2.9537e-09 -0.418071)
(0.702669 2.7526e-09 -0.410373)
(0.698831 2.53984e-09 -0.402562)
(0.694921 2.32317e-09 -0.394649)
(0.690948 2.11258e-09 -0.386646)
(0.686924 1.9205e-09 -0.378566)
(0.682858 1.7613e-09 -0.370418)
(0.67876 1.64985e-09 -0.362215)
(0.674637 1.60011e-09 -0.353967)
(0.670498 1.62286e-09 -0.345685)
(0.66635 1.72346e-09 -0.33738)
(0.662202 1.90035e-09 -0.329062)
(0.658059 2.14421e-09 -0.32074)
(0.653929 2.43787e-09 -0.312425)
(0.649816 2.75705e-09 -0.304125)
(0.645727 3.07244e-09 -0.295849)
(0.641667 3.35271e-09 -0.287605)
(0.63764 3.56611e-09 -0.279402)
(0.633652 3.68429e-09 -0.271248)
(0.629707 3.6844e-09 -0.263148)
(0.625809 3.55071e-09 -0.25511)
(0.621961 3.27601e-09 -0.247139)
(0.618167 2.86177e-09 -0.239242)
(0.61443 2.31812e-09 -0.231423)
(0.610754 1.66239e-09 -0.223688)
(0.607142 9.17987e-10 -0.216039)
(0.603596 1.12913e-10 -0.20848)
(0.600119 -7.2203e-10 -0.201014)
(0.596714 -1.55606e-09 -0.193642)
(0.593383 -2.36247e-09 -0.186368)
(0.590128 -3.12021e-09 -0.17919)
(0.586952 -3.81368e-09 -0.17211)
(0.583857 -4.42788e-09 -0.165126)
(0.580844 -4.94402e-09 -0.158238)
(0.577916 -5.33648e-09 -0.151444)
(0.575075 -5.57342e-09 -0.14474)
(0.572321 -5.62499e-09 -0.138124)
(0.569658 -5.47999e-09 -0.131591)
(0.567085 -5.15753e-09 -0.125137)
(0.564606 -4.69564e-09 -0.118756)
(0.56222 -4.12562e-09 -0.112441)
(0.55993 -3.46562e-09 -0.106187)
(0.557736 -2.74271e-09 -0.0999849)
(0.55564 -2.01094e-09 -0.0938271)
(0.553641 -1.33904e-09 -0.0877046)
(0.551741 -7.80218e-10 -0.0816079)
(0.54994 -3.5951e-10 -0.0755267)
(0.548238 -8.55378e-11 -0.0694503)
(0.546636 3.18499e-11 -0.0633672)
(0.545132 -1.96774e-11 -0.0572654)
(0.543727 -2.41404e-10 -0.0511323)
(0.54242 -6.09966e-10 -0.0449548)
(0.54121 -1.07781e-09 -0.0387192)
(0.540094 -1.58292e-09 -0.0324114)
(0.539072 -2.06447e-09 -0.0260166)
(0.53814 -2.47174e-09 -0.0195198)
(0.537296 -2.7648e-09 -0.0129054)
(0.536536 -2.91169e-09 -0.00615757)
(0.535855 -2.89497e-09 0.000740031)
(0.53525 -2.72513e-09 0.00780393)
(0.534713 -2.44494e-09 0.0150509)
(0.534238 -2.11456e-09 0.022498)
(0.533817 -1.78957e-09 0.0301621)
(0.533442 -1.50385e-09 0.0380604)
(0.533102 -1.26405e-09 0.04621)
(0.532785 -1.04911e-09 0.0546278)
(0.532478 -8.12649e-10 0.0633304)
(0.532166 -4.86759e-10 0.0723343)
(0.531833 8.14164e-12 0.081655)
(0.531459 7.5164e-10 0.0913079)
(0.531025 1.81051e-09 0.101307)
(0.530505 3.22577e-09 0.111666)
(0.529875 5.004e-09 0.122396)
(0.529106 7.11313e-09 0.133508)
(0.528166 9.49085e-09 0.14501)
(0.52702 1.20599e-08 0.156908)
(0.52563 1.47505e-08 0.169207)
(0.523954 1.75074e-08 0.181905)
(0.521947 2.0282e-08 0.195001)
(0.519559 2.3011e-08 0.208487)
(0.516737 2.56128e-08 0.22235)
(0.513424 2.80328e-08 0.236573)
(0.50956 3.03524e-08 0.251134)
(0.505079 3.29309e-08 0.266)
(0.499913 3.65069e-08 0.281134)
(0.493993 4.2156e-08 0.296488)
(0.487243 5.10481e-08 0.312007)
(0.479589 6.4041e-08 0.327623)
(0.470956 8.12423e-08 0.343258)
(0.461266 1.01681e-07 0.358824)
(0.450447 1.23203e-07 0.374217)
(0.438429 1.42803e-07 0.389323)
(0.425145 1.57889e-07 0.404014)
(0.410539 1.68958e-07 0.41815)
(0.394562 1.82807e-07 0.431577)
(0.377179 2.12699e-07 0.444134)
(0.358369 2.70772e-07 0.455645)
(0.338128 3.55538e-07 0.465931)
(0.316471 4.54699e-07 0.474806)
(0.293436 5.80362e-07 0.482078)
(0.269083 7.76231e-07 0.487557)
(0.243493 9.47463e-07 0.491048)
(0.216768 5.30083e-07 0.492355)
(0.189034 -1.69762e-06 0.49126)
(0.16042 -8.31617e-06 0.487498)
(0.131071 -2.68645e-05 0.480675)
(0.100999 -7.87009e-05 0.47008)
(0.0707244 -0.000201566 0.454009)
(0.0395613 -0.00045085 0.427703)
(0.0135318 0.000540341 0.378084)
(-0.0120069 1.86102e-06 1.16878)
(-0.0269403 3.61977e-10 1.19033)
(-0.0426518 -7.54673e-08 1.17449)
(-0.0573516 -3.29221e-08 1.15072)
(-0.0705205 -1.97803e-08 1.12301)
(-0.0821597 -1.41107e-08 1.09264)
(-0.092247 -6.08274e-09 1.06025)
(-0.100771 -2.18701e-08 1.02623)
(-0.107726 -6.78167e-08 0.990863)
(-0.113118 -8.62146e-08 0.954344)
(-0.116954 -3.89592e-08 0.916844)
(-0.119248 3.0749e-08 0.878498)
(-0.120014 6.47333e-08 0.839421)
(-0.119268 5.67366e-08 0.799711)
(-0.117026 3.58075e-08 0.759455)
(-0.113305 2.42699e-08 0.718727)
(-0.108119 2.38408e-08 0.677596)
(-0.101482 2.58193e-08 0.636124)
(-0.093406 2.36444e-08 0.594367)
(-0.0839016 1.71322e-08 0.552379)
(-0.0729788 9.79034e-09 0.510211)
(-0.0606458 4.8167e-09 0.467909)
(-0.0469124 3.24621e-09 0.425525)
(-0.0317865 4.32573e-09 0.383103)
(-0.0152809 6.65268e-09 0.340696)
(0.00258748 8.99513e-09 0.298352)
(0.0217927 1.0558e-08 0.25614)
(0.0423016 1.09815e-08 0.214128)
(0.0640705 1.02571e-08 0.17239)
(0.0870434 8.66717e-09 0.131014)
(0.11115 6.67448e-09 0.090098)
(0.1363 4.74755e-09 0.0497524)
(0.16239 3.19016e-09 0.0100957)
(0.18929 2.0584e-09 -0.0287283)
(0.216816 1.22593e-09 -0.066548)
(0.244814 5.07619e-10 -0.103227)
(0.273116 -2.09238e-10 -0.138639)
(0.30155 -9.1851e-10 -0.172668)
(0.329948 -1.53327e-09 -0.205213)
(0.358146 -1.96342e-09 -0.236189)
(0.385988 -2.17149e-09 -0.265531)
(0.413331 -2.19172e-09 -0.293193)
(0.440047 -2.10681e-09 -0.319149)
(0.466019 -2.00748e-09 -0.343391)
(0.49115 -1.95379e-09 -0.365929)
(0.515356 -1.96188e-09 -0.386786)
(0.538569 -2.01034e-09 -0.405998)
(0.560735 -2.05975e-09 -0.423612)
(0.581813 -2.07327e-09 -0.439683)
(0.601777 -2.03122e-09 -0.454273)
(0.620607 -1.93387e-09 -0.467447)
(0.638298 -1.79606e-09 -0.479273)
(0.654851 -1.63992e-09 -0.489821)
(0.670274 -1.48658e-09 -0.49916)
(0.684583 -1.35149e-09 -0.507361)
(0.697799 -1.24246e-09 -0.514491)
(0.709948 -1.16145e-09 -0.520614)
(0.721059 -1.10472e-09 -0.525795)
(0.731164 -1.066e-09 -0.530091)
(0.740299 -1.03678e-09 -0.533561)
(0.748499 -1.00742e-09 -0.536257)
(0.755804 -9.67932e-10 -0.538229)
(0.76225 -9.08635e-10 -0.539524)
(0.767879 -8.21424e-10 -0.540184)
(0.772728 -6.9955e-10 -0.54025)
(0.776838 -5.38718e-10 -0.539759)
(0.780247 -3.37396e-10 -0.538745)
(0.782993 -9.65542e-11 -0.537239)
(0.785113 1.80382e-10 -0.53527)
(0.786645 4.87787e-10 -0.532865)
(0.787624 8.18633e-10 -0.530048)
(0.788083 1.16459e-09 -0.526843)
(0.788057 1.51659e-09 -0.523269)
(0.787577 1.86564e-09 -0.519346)
(0.786674 2.2029e-09 -0.515092)
(0.785378 2.52039e-09 -0.510525)
(0.783717 2.81118e-09 -0.50566)
(0.781717 3.06934e-09 -0.500512)
(0.779405 3.29069e-09 -0.495095)
(0.776805 3.47189e-09 -0.489423)
(0.773941 3.61106e-09 -0.483509)
(0.770835 3.70772e-09 -0.477366)
(0.767508 3.76242e-09 -0.471007)
(0.763979 3.77687e-09 -0.464442)
(0.760268 3.75354e-09 -0.457685)
(0.756393 3.69592e-09 -0.450747)
(0.752371 3.60774e-09 -0.44364)
(0.748217 3.49283e-09 -0.436374)
(0.743948 3.35488e-09 -0.428963)
(0.739577 3.19754e-09 -0.421416)
(0.735118 3.02512e-09 -0.413746)
(0.730583 2.84274e-09 -0.405964)
(0.725985 2.65751e-09 -0.398081)
(0.721336 2.47957e-09 -0.390108)
(0.716645 2.32177e-09 -0.382056)
(0.711924 2.19979e-09 -0.373936)
(0.707181 2.1306e-09 -0.36576)
(0.702426 2.13104e-09 -0.357537)
(0.697666 2.21487e-09 -0.349278)
(0.692911 2.3906e-09 -0.340994)
(0.688167 2.65928e-09 -0.332694)
(0.683442 3.01316e-09 -0.324388)
(0.678742 3.43521e-09 -0.316086)
(0.674073 3.90015e-09 -0.307796)
(0.669441 4.37605e-09 -0.299528)
(0.664851 4.82763e-09 -0.291289)
(0.660308 5.21847e-09 -0.283088)
(0.655816 5.51511e-09 -0.274932)
(0.651381 5.68891e-09 -0.266829)
(0.647006 5.71803e-09 -0.258786)
(0.642694 5.58811e-09 -0.250807)
(0.638449 5.29232e-09 -0.242901)
(0.634275 4.83057e-09 -0.235071)
(0.630173 4.20914e-09 -0.227322)
(0.626148 3.43925e-09 -0.21966)
(0.622202 2.53698e-09 -0.212087)
(0.618336 1.52321e-09 -0.204607)
(0.614554 4.25192e-10 -0.197222)
(0.610858 -7.24734e-10 -0.189935)
(0.60725 -1.89336e-09 -0.182747)
(0.603731 -3.05239e-09 -0.175658)
(0.600304 -4.1806e-09 -0.168669)
(0.596971 -5.26176e-09 -0.161778)
(0.593733 -6.27636e-09 -0.154985)
(0.590592 -7.19147e-09 -0.148287)
(0.58755 -7.95363e-09 -0.141681)
(0.584608 -8.49461e-09 -0.135165)
(0.581767 -8.75909e-09 -0.128734)
(0.57903 -8.7384e-09 -0.122382)
(0.576396 -8.47298e-09 -0.116105)
(0.573868 -8.01343e-09 -0.109897)
(0.571446 -7.38855e-09 -0.103749)
(0.569132 -6.61928e-09 -0.0976546)
(0.566925 -5.75486e-09 -0.0916054)
(0.564828 -4.87621e-09 -0.0855923)
(0.56284 -4.06514e-09 -0.0796054)
(0.560963 -3.3745e-09 -0.0736344)
(0.559195 -2.83022e-09 -0.0676684)
(0.557538 -2.44955e-09 -0.0616956)
(0.555991 -2.24888e-09 -0.0557039)
(0.554555 -2.23168e-09 -0.0496802)
(0.553227 -2.37235e-09 -0.0436113)
(0.552009 -2.61472e-09 -0.0374829)
(0.550897 -2.88453e-09 -0.0312806)
(0.549891 -3.1116e-09 -0.0249892)
(0.548988 -3.24964e-09 -0.0185931)
(0.548187 -3.2781e-09 -0.0120761)
(0.547483 -3.19111e-09 -0.0054217)
(0.546872 -2.99039e-09 0.00138709)
(0.546352 -2.69374e-09 0.00836767)
(0.545915 -2.34458e-09 0.0155377)
(0.545556 -2.00211e-09 0.0229153)
(0.545268 -1.71702e-09 0.0305184)
(0.545041 -1.51064e-09 0.0383657)
(0.544868 -1.36944e-09 0.0464754)
(0.544736 -1.24853e-09 0.0548661)
(0.544633 -1.08036e-09 0.0635562)
(0.544544 -7.82827e-10 0.0725639)
(0.544454 -2.71193e-10 0.081907)
(0.544344 5.30366e-10 0.091603)
(0.544194 1.68119e-09 0.101668)
(0.54398 3.21802e-09 0.112119)
(0.543677 5.14443e-09 0.122971)
(0.543256 7.422e-09 0.134236)
(0.542684 9.96896e-09 0.145926)
(0.541928 1.26802e-08 0.158052)
(0.540946 1.54566e-08 0.170621)
(0.539697 1.82273e-08 0.183636)
(0.538133 2.09463e-08 0.1971)
(0.536202 2.35686e-08 0.211009)
(0.533849 2.60414e-08 0.225356)
(0.531012 2.83506e-08 0.240127)
(0.527628 3.06378e-08 0.255303)
(0.523624 3.33518e-08 0.270858)
(0.518929 3.73441e-08 0.286758)
(0.513463 4.38009e-08 0.302958)
(0.507145 5.39739e-08 0.319405)
(0.49989 6.8771e-08 0.336034)
(0.491612 8.83253e-08 0.352768)
(0.482224 1.1162e-07 0.369517)
(0.47164 1.36209e-07 0.386176)
(0.459775 1.58284e-07 0.402625)
(0.446551 1.73828e-07 0.418731)
(0.431896 1.81804e-07 0.434344)
(0.415749 1.8923e-07 0.4493)
(0.39806 2.14838e-07 0.46342)
(0.378795 2.84368e-07 0.476513)
(0.357942 4.13591e-07 0.488378)
(0.335507 5.91794e-07 0.498806)
(0.311524 7.89817e-07 0.507582)
(0.286052 9.73509e-07 0.514488)
(0.259179 1.03814e-06 0.519305)
(0.231018 6.90228e-07 0.521812)
(0.20171 -4.72341e-07 0.521773)
(0.171405 -2.8144e-06 0.518914)
(0.140284 -6.20042e-06 0.51285)
(0.108381 -3.7358e-06 0.502896)
(0.0764286 5.31154e-05 0.487401)
(0.043288 0.000285821 0.461314)
(0.0156954 -0.00107613 0.404579)
(-0.0120061 1.86103e-06 1.16878)
(-0.0269403 3.61977e-10 1.19033)
(-0.0426517 -7.54673e-08 1.17448)
(-0.0573514 -3.29221e-08 1.15072)
(-0.0705204 -1.97803e-08 1.12301)
(-0.0821597 -1.41108e-08 1.09264)
(-0.092247 -6.08275e-09 1.06025)
(-0.100771 -2.18701e-08 1.02623)
(-0.107726 -6.78168e-08 0.990863)
(-0.113118 -8.62147e-08 0.954344)
(-0.116954 -3.89592e-08 0.916844)
(-0.119248 3.07491e-08 0.878498)
(-0.120014 6.47334e-08 0.839421)
(-0.119268 5.67367e-08 0.799711)
(-0.117026 3.58075e-08 0.759455)
(-0.113305 2.42699e-08 0.718727)
(-0.108119 2.38408e-08 0.677596)
(-0.101482 2.58193e-08 0.636124)
(-0.093406 2.36444e-08 0.594367)
(-0.0839016 1.71322e-08 0.552379)
(-0.0729788 9.79034e-09 0.510211)
(-0.0606458 4.8167e-09 0.467909)
(-0.0469124 3.24621e-09 0.425525)
(-0.0317865 4.32573e-09 0.383103)
(-0.0152809 6.65268e-09 0.340696)
(0.00258751 8.99512e-09 0.298352)
(0.0217928 1.0558e-08 0.25614)
(0.0423017 1.09815e-08 0.214128)
(0.0640705 1.02571e-08 0.17239)
(0.0870435 8.66716e-09 0.131014)
(0.11115 6.67447e-09 0.0900981)
(0.1363 4.74754e-09 0.0497524)
(0.162391 3.19016e-09 0.0100957)
(0.18929 2.0584e-09 -0.0287282)
(0.216816 1.22593e-09 -0.066548)
(0.244814 5.07618e-10 -0.103227)
(0.273116 -2.09238e-10 -0.138639)
(0.30155 -9.18509e-10 -0.172668)
(0.329948 -1.53327e-09 -0.205213)
(0.358146 -1.96342e-09 -0.236189)
(0.385988 -2.17149e-09 -0.265531)
(0.413331 -2.19172e-09 -0.293193)
(0.440047 -2.1068e-09 -0.319149)
(0.466019 -2.00747e-09 -0.343391)
(0.49115 -1.95379e-09 -0.365929)
(0.515356 -1.96188e-09 -0.386786)
(0.538569 -2.01034e-09 -0.405998)
(0.560735 -2.05975e-09 -0.423612)
(0.581814 -2.07327e-09 -0.439683)
(0.601777 -2.03122e-09 -0.454273)
(0.620607 -1.93387e-09 -0.467447)
(0.638298 -1.79606e-09 -0.479273)
(0.654851 -1.63992e-09 -0.489821)
(0.670274 -1.48658e-09 -0.49916)
(0.684583 -1.35149e-09 -0.507361)
(0.697799 -1.24246e-09 -0.514491)
(0.709948 -1.16145e-09 -0.520614)
(0.721059 -1.10472e-09 -0.525795)
(0.731164 -1.066e-09 -0.530091)
(0.740299 -1.03678e-09 -0.533561)
(0.748499 -1.00742e-09 -0.536257)
(0.755804 -9.67932e-10 -0.538229)
(0.76225 -9.08635e-10 -0.539524)
(0.767879 -8.21424e-10 -0.540184)
(0.772728 -6.9955e-10 -0.540251)
(0.776838 -5.38718e-10 -0.539759)
(0.780247 -3.37396e-10 -0.538745)
(0.782993 -9.65542e-11 -0.537239)
(0.785114 1.80382e-10 -0.53527)
(0.786645 4.87787e-10 -0.532865)
(0.787624 8.18633e-10 -0.530048)
(0.788083 1.16459e-09 -0.526843)
(0.788057 1.5166e-09 -0.523269)
(0.787577 1.86564e-09 -0.519346)
(0.786674 2.2029e-09 -0.515092)
(0.785378 2.52039e-09 -0.510525)
(0.783717 2.81118e-09 -0.50566)
(0.781717 3.06934e-09 -0.500512)
(0.779405 3.2907e-09 -0.495095)
(0.776806 3.47189e-09 -0.489423)
(0.773941 3.61106e-09 -0.483509)
(0.770835 3.70772e-09 -0.477366)
(0.767508 3.76242e-09 -0.471007)
(0.763979 3.77687e-09 -0.464442)
(0.760268 3.75354e-09 -0.457685)
(0.756393 3.69592e-09 -0.450747)
(0.752371 3.60774e-09 -0.44364)
(0.748218 3.49284e-09 -0.436374)
(0.743948 3.35488e-09 -0.428963)
(0.739577 3.19754e-09 -0.421416)
(0.735118 3.02512e-09 -0.413746)
(0.730583 2.84274e-09 -0.405964)
(0.725985 2.65751e-09 -0.398081)
(0.721336 2.47957e-09 -0.390108)
(0.716645 2.32178e-09 -0.382056)
(0.711924 2.19979e-09 -0.373936)
(0.707181 2.1306e-09 -0.36576)
(0.702426 2.13104e-09 -0.357537)
(0.697666 2.21487e-09 -0.349278)
(0.692911 2.3906e-09 -0.340994)
(0.688167 2.65928e-09 -0.332694)
(0.683442 3.01317e-09 -0.324388)
(0.678742 3.43521e-09 -0.316086)
(0.674073 3.90015e-09 -0.307796)
(0.669441 4.37606e-09 -0.299528)
(0.664851 4.82763e-09 -0.291289)
(0.660308 5.21847e-09 -0.283088)
(0.655816 5.51511e-09 -0.274932)
(0.651381 5.68892e-09 -0.266829)
(0.647006 5.71803e-09 -0.258785)
(0.642694 5.58811e-09 -0.250807)
(0.638449 5.29233e-09 -0.2429)
(0.634275 4.83058e-09 -0.23507)
(0.630173 4.20915e-09 -0.227322)
(0.626148 3.43925e-09 -0.21966)
(0.622202 2.53698e-09 -0.212087)
(0.618336 1.52321e-09 -0.204607)
(0.614554 4.25192e-10 -0.197222)
(0.610858 -7.24735e-10 -0.189935)
(0.60725 -1.89336e-09 -0.182747)
(0.603731 -3.05239e-09 -0.175658)
(0.600304 -4.18061e-09 -0.168669)
(0.596971 -5.26177e-09 -0.161778)
(0.593733 -6.27637e-09 -0.154985)
(0.590592 -7.19148e-09 -0.148287)
(0.58755 -7.95364e-09 -0.141681)
(0.584608 -8.49462e-09 -0.135165)
(0.581768 -8.75909e-09 -0.128734)
(0.57903 -8.73841e-09 -0.122382)
(0.576396 -8.47299e-09 -0.116105)
(0.573868 -8.01344e-09 -0.109897)
(0.571446 -7.38856e-09 -0.103749)
(0.569132 -6.61929e-09 -0.0976546)
(0.566925 -5.75486e-09 -0.0916055)
(0.564828 -4.87621e-09 -0.0855923)
(0.56284 -4.06515e-09 -0.0796054)
(0.560963 -3.3745e-09 -0.0736345)
(0.559195 -2.83022e-09 -0.0676684)
(0.557538 -2.44955e-09 -0.0616957)
(0.555991 -2.24888e-09 -0.0557039)
(0.554555 -2.23168e-09 -0.0496803)
(0.553227 -2.37235e-09 -0.0436113)
(0.552009 -2.61472e-09 -0.0374829)
(0.550897 -2.88454e-09 -0.0312806)
(0.549891 -3.11161e-09 -0.0249892)
(0.548988 -3.24964e-09 -0.0185931)
(0.548187 -3.27811e-09 -0.0120761)
(0.547483 -3.19111e-09 -0.00542173)
(0.546872 -2.99039e-09 0.00138707)
(0.546352 -2.69374e-09 0.00836764)
(0.545915 -2.34458e-09 0.0155377)
(0.545556 -2.00211e-09 0.0229152)
(0.545268 -1.71702e-09 0.0305184)
(0.545042 -1.51064e-09 0.0383656)
(0.544868 -1.36944e-09 0.0464754)
(0.544736 -1.24853e-09 0.0548661)
(0.544633 -1.08036e-09 0.0635562)
(0.544544 -7.82827e-10 0.0725639)
(0.544454 -2.71193e-10 0.081907)
(0.544344 5.30366e-10 0.091603)
(0.544194 1.68119e-09 0.101669)
(0.54398 3.21803e-09 0.112119)
(0.543677 5.14444e-09 0.122971)
(0.543256 7.422e-09 0.134236)
(0.542685 9.96897e-09 0.145926)
(0.541928 1.26802e-08 0.158052)
(0.540946 1.54566e-08 0.170621)
(0.539697 1.82273e-08 0.183636)
(0.538133 2.09463e-08 0.1971)
(0.536202 2.35686e-08 0.211009)
(0.533849 2.60414e-08 0.225356)
(0.531013 2.83506e-08 0.240127)
(0.527628 3.06378e-08 0.255303)
(0.523625 3.33518e-08 0.270858)
(0.518929 3.73441e-08 0.286758)
(0.513464 4.38009e-08 0.302958)
(0.507146 5.39739e-08 0.319405)
(0.499891 6.8771e-08 0.336034)
(0.491613 8.83254e-08 0.352769)
(0.482225 1.11621e-07 0.369517)
(0.471641 1.36209e-07 0.386176)
(0.459776 1.58284e-07 0.402626)
(0.446552 1.73828e-07 0.418732)
(0.431898 1.81804e-07 0.434345)
(0.415751 1.8923e-07 0.449301)
(0.398062 2.14838e-07 0.463421)
(0.378799 2.84368e-07 0.476514)
(0.357946 4.13592e-07 0.48838)
(0.335512 5.91794e-07 0.498809)
(0.311531 7.8982e-07 0.507585)
(0.286061 9.73515e-07 0.514492)
(0.259191 1.03815e-06 0.519311)
(0.231034 6.90247e-07 0.52182)
(0.201731 -4.72359e-07 0.521786)
(0.17143 -2.81416e-06 0.518936)
(0.140305 -6.19221e-06 0.512891)
(0.108364 -3.70084e-06 0.502987)
(0.0762097 5.03148e-05 0.487575)
(0.0424212 0.000216329 0.461563)
(0.0154378 -0.000403202 0.404747)
(-0.0115556 9.99221e-07 1.18723)
(-0.0256955 -2.49551e-07 1.20754)
(-0.0404445 -1.87459e-07 1.19015)
(-0.0540401 -9.40676e-08 1.16479)
(-0.066005 -5.29349e-08 1.13544)
(-0.076344 -2.91082e-08 1.10341)
(-0.0850407 8.9199e-09 1.06933)
(-0.0920901 2.02172e-08 1.03363)
(-0.0974956 -5.4026e-08 0.996568)
(-0.101268 -1.36151e-07 0.958373)
(-0.103424 -1.24269e-07 0.91921)
(-0.103984 -4.19569e-08 0.879218)
(-0.102967 2.42618e-08 0.838516)
(-0.100397 3.79021e-08 0.7972)
(-0.0962937 2.25862e-08 0.755356)
(-0.0906751 1.09589e-08 0.713057)
(-0.0835576 1.33704e-08 0.670372)
(-0.0749556 2.18073e-08 0.627358)
(-0.0648802 2.60533e-08 0.584072)
(-0.0533407 2.29354e-08 0.540565)
(-0.0403453 1.5563e-08 0.496886)
(-0.0258984 8.52826e-09 0.453083)
(-0.0100087 4.5405e-09 0.409204)
(0.00731618 3.87153e-09 0.365293)
(0.026058 5.36496e-09 0.32142)
(0.0461981 7.5672e-09 0.27764)
(0.0677068 9.35171e-09 0.234022)
(0.0905458 1.01005e-08 0.190645)
(0.114661 9.66736e-09 0.1476)
(0.139982 8.27474e-09 0.104991)
(0.166419 6.3812e-09 0.0629366)
(0.193861 4.48455e-09 0.0215643)
(0.222183 2.92374e-09 -0.0189788)
(0.251179 1.79395e-09 -0.0584976)
(0.280682 9.8411e-10 -0.0968345)
(0.31051 2.97276e-10 -0.133848)
(0.340476 -3.95677e-10 -0.169407)
(0.370395 -1.1083e-09 -0.203397)
(0.400088 -1.75966e-09 -0.235721)
(0.429384 -2.24405e-09 -0.266305)
(0.458127 -2.49895e-09 -0.295097)
(0.486177 -2.53677e-09 -0.322066)
(0.513407 -2.43068e-09 -0.347203)
(0.539712 -2.27534e-09 -0.370517)
(0.565 -2.14549e-09 -0.392035)
(0.589201 -2.07471e-09 -0.411797)
(0.612255 -2.0557e-09 -0.429856)
(0.634121 -2.0569e-09 -0.446273)
(0.654771 -2.04301e-09 -0.461117)
(0.674188 -1.99076e-09 -0.474461)
(0.692365 -1.89447e-09 -0.486381)
(0.709307 -1.76382e-09 -0.496957)
(0.725026 -1.61635e-09 -0.506265)
(0.73954 -1.4706e-09 -0.514383)
(0.752874 -1.34012e-09 -0.521386)
(0.765057 -1.23257e-09 -0.527346)
(0.776124 -1.149e-09 -0.532334)
(0.786111 -1.08615e-09 -0.536414)
(0.795058 -1.03707e-09 -0.53965)
(0.803004 -9.92953e-10 -0.5421)
(0.809994 -9.44417e-10 -0.543818)
(0.816069 -8.81515e-10 -0.544855)
(0.821274 -7.94943e-10 -0.545259)
(0.825652 -6.76673e-10 -0.545072)
(0.829246 -5.20776e-10 -0.544334)
(0.832099 -3.23699e-10 -0.543082)
(0.834252 -8.50822e-11 -0.541349)
(0.835748 1.92772e-10 -0.539165)
(0.836625 5.04521e-10 -0.536559)
(0.836922 8.42855e-10 -0.533556)
(0.836678 1.1987e-09 -0.530179)
(0.835927 1.56193e-09 -0.526449)
(0.834705 1.92229e-09 -0.522387)
(0.833045 2.26995e-09 -0.51801)
(0.83098 2.59621e-09 -0.513334)
(0.828539 2.89379e-09 -0.508376)
(0.825751 3.15699e-09 -0.503149)
(0.822646 3.38197e-09 -0.497667)
(0.819248 3.56646e-09 -0.491944)
(0.815583 3.70962e-09 -0.485992)
(0.811675 3.81182e-09 -0.479821)
(0.807547 3.87448e-09 -0.473445)
(0.803219 3.89987e-09 -0.466874)
(0.798713 3.89093e-09 -0.460119)
(0.794046 3.85116e-09 -0.45319)
(0.789238 3.78431e-09 -0.446099)
(0.784305 3.69413e-09 -0.438856)
(0.779263 3.58366e-09 -0.431472)
(0.774128 3.45638e-09 -0.423957)
(0.768914 3.31541e-09 -0.416322)
(0.763634 3.16483e-09 -0.408577)
(0.758301 3.01092e-09 -0.400734)
(0.752927 2.86248e-09 -0.392801)
(0.747523 2.73242e-09 -0.38479)
(0.7421 2.63654e-09 -0.376712)
(0.736668 2.59314e-09 -0.368576)
(0.731236 2.62152e-09 -0.360392)
(0.725813 2.73812e-09 -0.352172)
(0.720407 2.95485e-09 -0.343924)
(0.715026 3.27594e-09 -0.335659)
(0.709677 3.6956e-09 -0.327385)
(0.704367 4.19785e-09 -0.319113)
(0.699102 4.75663e-09 -0.31085)
(0.693888 5.33801e-09 -0.302606)
(0.68873 5.90339e-09 -0.29439)
(0.683633 6.4133e-09 -0.286208)
(0.678603 6.83145e-09 -0.278069)
(0.673642 7.12806e-09 -0.269979)
(0.668755 7.28152e-09 -0.261946)
(0.663946 7.27889e-09 -0.253977)
(0.659218 7.11441e-09 -0.246076)
(0.654574 6.7874e-09 -0.238251)
(0.650017 6.29958e-09 -0.230505)
(0.645549 5.65382e-09 -0.222843)
(0.641172 4.85363e-09 -0.21527)
(0.63689 3.90344e-09 -0.20779)
(0.632704 2.81184e-09 -0.200404)
(0.628616 1.59609e-09 -0.193116)
(0.624628 2.87599e-10 -0.185928)
(0.620741 -1.0728e-09 -0.178841)
(0.616958 -2.44467e-09 -0.171854)
(0.613281 -3.7984e-09 -0.164969)
(0.609709 -5.12313e-09 -0.158185)
(0.606246 -6.42196e-09 -0.1515)
(0.602892 -7.6911e-09 -0.144911)
(0.59965 -8.89048e-09 -0.138417)
(0.596519 -9.92969e-09 -0.132013)
(0.593501 -1.06979e-08 -0.125696)
(0.590598 -1.11303e-08 -0.119459)
(0.587811 -1.12456e-08 -0.113299)
(0.58514 -1.11094e-08 -0.107207)
(0.582587 -1.07681e-08 -0.101178)
(0.580152 -1.02364e-08 -0.0952033)
(0.577837 -9.53968e-09 -0.0892743)
(0.575641 -8.7442e-09 -0.083382)
(0.573566 -7.93702e-09 -0.0775165)
(0.571611 -7.1858e-09 -0.0716674)
(0.569779 -6.52681e-09 -0.0658235)
(0.568067 -5.98135e-09 -0.0599729)
(0.566478 -5.5686e-09 -0.0541032)
(0.565009 -5.29676e-09 -0.0482011)
(0.563662 -5.1443e-09 -0.0422531)
(0.562436 -5.05411e-09 -0.0362447)
(0.561328 -4.94581e-09 -0.030161)
(0.560339 -4.74513e-09 -0.0239864)
(0.559467 -4.41584e-09 -0.0177048)
(0.558708 -3.97203e-09 -0.0112996)
(0.558062 -3.45894e-09 -0.00475351)
(0.557524 -2.9242e-09 0.00195107)
(0.55709 -2.40972e-09 0.00883231)
(0.556756 -1.95993e-09 0.0159088)
(0.556516 -1.61912e-09 0.0231995)
(0.556364 -1.41208e-09 0.0307238)
(0.556292 -1.32531e-09 0.0385012)
(0.556291 -1.30634e-09 0.0465516)
(0.556351 -1.27653e-09 0.0548951)
(0.55646 -1.14632e-09 0.0635518)
(0.556604 -8.30277e-10 0.0725418)
(0.556769 -2.61237e-10 0.081885)
(0.556936 5.99001e-10 0.0916013)
(0.557086 1.76519e-09 0.10171)
(0.557196 3.24182e-09 0.112229)
(0.55724 5.02818e-09 0.123178)
(0.55719 7.10582e-09 0.134572)
(0.557015 9.42296e-09 0.146428)
(0.556678 1.19024e-08 0.158758)
(0.55614 1.44705e-08 0.171575)
(0.555356 1.70842e-08 0.184887)
(0.554279 1.97254e-08 0.1987)
(0.552854 2.23697e-08 0.213017)
(0.551023 2.4971e-08 0.227834)
(0.548722 2.75129e-08 0.243145)
(0.545882 3.01393e-08 0.258934)
(0.542427 3.33183e-08 0.27518)
(0.538277 3.79353e-08 0.291855)
(0.533347 4.52076e-08 0.308919)
(0.527547 5.63933e-08 0.326322)
(0.520781 7.23904e-08 0.344003)
(0.512952 9.3355e-08 0.361886)
(0.50396 1.18361e-07 0.379882)
(0.493706 1.45042e-07 0.397884)
(0.48209 1.69403e-07 0.415771)
(0.469017 1.8661e-07 0.433401)
(0.454399 1.94077e-07 0.450617)
(0.438157 1.97578e-07 0.467242)
(0.420226 2.18018e-07 0.483082)
(0.400557 2.90901e-07 0.497927)
(0.379123 4.4836e-07 0.511552)
(0.35592 6.86644e-07 0.523723)
(0.330976 9.45699e-07 0.534194)
(0.304349 1.12646e-06 0.542716)
(0.27613 1.14802e-06 0.549039)
(0.24645 1.09025e-06 0.552908)
(0.21547 1.5447e-06 0.554063)
(0.183383 4.55969e-06 0.552212)
(0.150434 1.87919e-05 0.546978)
(0.116748 8.26488e-05 0.537736)
(0.0833935 0.000336873 0.523026)
(0.0476701 0.00117205 0.497486)
(0.0199461 -0.00316452 0.434192)
(-0.0115551 9.99222e-07 1.18722)
(-0.0256954 -2.49552e-07 1.20754)
(-0.0404443 -1.87459e-07 1.19015)
(-0.0540399 -9.40677e-08 1.16479)
(-0.066005 -5.29349e-08 1.13544)
(-0.0763439 -2.91082e-08 1.10341)
(-0.0850407 8.91991e-09 1.06933)
(-0.0920902 2.02173e-08 1.03363)
(-0.0974957 -5.40261e-08 0.996568)
(-0.101268 -1.36151e-07 0.958372)
(-0.103424 -1.24269e-07 0.919209)
(-0.103984 -4.19569e-08 0.879218)
(-0.102968 2.42618e-08 0.838516)
(-0.100397 3.79021e-08 0.7972)
(-0.0962938 2.25862e-08 0.755356)
(-0.0906752 1.09589e-08 0.713058)
(-0.0835577 1.33704e-08 0.670372)
(-0.0749556 2.18073e-08 0.627358)
(-0.0648802 2.60533e-08 0.584072)
(-0.0533408 2.29354e-08 0.540565)
(-0.0403453 1.5563e-08 0.496886)
(-0.0258984 8.52825e-09 0.453083)
(-0.0100086 4.5405e-09 0.409204)
(0.00731622 3.87153e-09 0.365293)
(0.026058 5.36496e-09 0.32142)
(0.0461981 7.56719e-09 0.27764)
(0.0677068 9.3517e-09 0.234022)
(0.0905459 1.01005e-08 0.190645)
(0.114661 9.66735e-09 0.1476)
(0.139982 8.27473e-09 0.104991)
(0.166419 6.38119e-09 0.0629366)
(0.193861 4.48455e-09 0.0215643)
(0.222183 2.92373e-09 -0.0189788)
(0.251179 1.79395e-09 -0.0584976)
(0.280682 9.84109e-10 -0.0968345)
(0.31051 2.97276e-10 -0.133848)
(0.340477 -3.95677e-10 -0.169407)
(0.370396 -1.1083e-09 -0.203397)
(0.400088 -1.75966e-09 -0.235721)
(0.429384 -2.24405e-09 -0.266305)
(0.458128 -2.49895e-09 -0.295097)
(0.486177 -2.53677e-09 -0.322066)
(0.513407 -2.43068e-09 -0.347203)
(0.539712 -2.27534e-09 -0.370518)
(0.565 -2.14549e-09 -0.392035)
(0.589201 -2.07471e-09 -0.411798)
(0.612255 -2.0557e-09 -0.429856)
(0.634122 -2.0569e-09 -0.446273)
(0.654771 -2.04301e-09 -0.461117)
(0.674188 -1.99076e-09 -0.474461)
(0.692365 -1.89447e-09 -0.486382)
(0.709308 -1.76382e-09 -0.496957)
(0.725026 -1.61635e-09 -0.506265)
(0.73954 -1.4706e-09 -0.514383)
(0.752874 -1.34012e-09 -0.521386)
(0.765058 -1.23257e-09 -0.527346)
(0.776124 -1.149e-09 -0.532334)
(0.786111 -1.08615e-09 -0.536414)
(0.795058 -1.03707e-09 -0.53965)
(0.803005 -9.92953e-10 -0.5421)
(0.809994 -9.44417e-10 -0.543818)
(0.81607 -8.81515e-10 -0.544855)
(0.821274 -7.94943e-10 -0.545259)
(0.825652 -6.76673e-10 -0.545072)
(0.829246 -5.20776e-10 -0.544334)
(0.832099 -3.23699e-10 -0.543082)
(0.834253 -8.50822e-11 -0.541349)
(0.835748 1.92772e-10 -0.539165)
(0.836625 5.04522e-10 -0.536559)
(0.836922 8.42855e-10 -0.533556)
(0.836678 1.1987e-09 -0.530179)
(0.835927 1.56193e-09 -0.526449)
(0.834705 1.92229e-09 -0.522387)
(0.833045 2.26995e-09 -0.51801)
(0.83098 2.59621e-09 -0.513334)
(0.828539 2.8938e-09 -0.508376)
(0.825751 3.15699e-09 -0.503149)
(0.822646 3.38198e-09 -0.497667)
(0.819248 3.56647e-09 -0.491944)
(0.815583 3.70962e-09 -0.485992)
(0.811675 3.81182e-09 -0.479821)
(0.807547 3.87448e-09 -0.473445)
(0.803219 3.89987e-09 -0.466874)
(0.798713 3.89093e-09 -0.460119)
(0.794046 3.85116e-09 -0.45319)
(0.789238 3.78432e-09 -0.446099)
(0.784305 3.69413e-09 -0.438856)
(0.779263 3.58366e-09 -0.431472)
(0.774128 3.45639e-09 -0.423957)
(0.768914 3.31541e-09 -0.416322)
(0.763634 3.16483e-09 -0.408577)
(0.758301 3.01092e-09 -0.400734)
(0.752927 2.86248e-09 -0.392801)
(0.747523 2.73242e-09 -0.38479)
(0.7421 2.63654e-09 -0.376712)
(0.736668 2.59314e-09 -0.368576)
(0.731236 2.62152e-09 -0.360392)
(0.725813 2.73812e-09 -0.352172)
(0.720407 2.95486e-09 -0.343924)
(0.715026 3.27594e-09 -0.335659)
(0.709677 3.6956e-09 -0.327385)
(0.704367 4.19785e-09 -0.319113)
(0.699102 4.75663e-09 -0.31085)
(0.693888 5.33801e-09 -0.302606)
(0.68873 5.90339e-09 -0.29439)
(0.683633 6.41331e-09 -0.286208)
(0.678603 6.83145e-09 -0.278068)
(0.673642 7.12807e-09 -0.269979)
(0.668755 7.28153e-09 -0.261946)
(0.663946 7.27889e-09 -0.253977)
(0.659218 7.11442e-09 -0.246076)
(0.654574 6.7874e-09 -0.238251)
(0.650017 6.29958e-09 -0.230505)
(0.645549 5.65383e-09 -0.222843)
(0.641172 4.85363e-09 -0.21527)
(0.63689 3.90344e-09 -0.20779)
(0.632704 2.81184e-09 -0.200404)
(0.628616 1.59609e-09 -0.193116)
(0.624628 2.87599e-10 -0.185928)
(0.620741 -1.0728e-09 -0.178841)
(0.616958 -2.44467e-09 -0.171854)
(0.613281 -3.7984e-09 -0.164969)
(0.609709 -5.12314e-09 -0.158185)
(0.606246 -6.42197e-09 -0.1515)
(0.602893 -7.6911e-09 -0.144911)
(0.59965 -8.89049e-09 -0.138417)
(0.596519 -9.9297e-09 -0.132013)
(0.593501 -1.06979e-08 -0.125696)
(0.590599 -1.11303e-08 -0.119459)
(0.587811 -1.12456e-08 -0.113299)
(0.58514 -1.11094e-08 -0.107207)
(0.582587 -1.07681e-08 -0.101178)
(0.580152 -1.02364e-08 -0.0952033)
(0.577837 -9.53969e-09 -0.0892743)
(0.575641 -8.74421e-09 -0.083382)
(0.573566 -7.93703e-09 -0.0775165)
(0.571611 -7.18581e-09 -0.0716674)
(0.569779 -6.52682e-09 -0.0658235)
(0.568067 -5.98135e-09 -0.0599729)
(0.566478 -5.56861e-09 -0.0541032)
(0.565009 -5.29677e-09 -0.0482012)
(0.563662 -5.14431e-09 -0.0422531)
(0.562436 -5.05412e-09 -0.0362447)
(0.561328 -4.94582e-09 -0.030161)
(0.560339 -4.74513e-09 -0.0239864)
(0.559467 -4.41584e-09 -0.0177048)
(0.558708 -3.97203e-09 -0.0112996)
(0.558062 -3.45894e-09 -0.00475354)
(0.557524 -2.9242e-09 0.00195104)
(0.55709 -2.40972e-09 0.00883228)
(0.556756 -1.95993e-09 0.0159088)
(0.556516 -1.61912e-09 0.0231995)
(0.556364 -1.41208e-09 0.0307237)
(0.556292 -1.32531e-09 0.0385012)
(0.556291 -1.30634e-09 0.0465516)
(0.556351 -1.27653e-09 0.0548951)
(0.55646 -1.14632e-09 0.0635518)
(0.556604 -8.30278e-10 0.0725418)
(0.556769 -2.61237e-10 0.081885)
(0.556936 5.99002e-10 0.0916013)
(0.557086 1.76519e-09 0.10171)
(0.557196 3.24182e-09 0.112229)
(0.55724 5.02818e-09 0.123178)
(0.55719 7.10582e-09 0.134572)
(0.557015 9.42296e-09 0.146428)
(0.556678 1.19024e-08 0.158758)
(0.55614 1.44705e-08 0.171575)
(0.555356 1.70842e-08 0.184887)
(0.554279 1.97254e-08 0.1987)
(0.552854 2.23697e-08 0.213017)
(0.551024 2.4971e-08 0.227834)
(0.548723 2.7513e-08 0.243145)
(0.545882 3.01393e-08 0.258934)
(0.542427 3.33183e-08 0.27518)
(0.538278 3.79354e-08 0.291855)
(0.533348 4.52077e-08 0.308919)
(0.527547 5.63933e-08 0.326322)
(0.520781 7.23904e-08 0.344003)
(0.512953 9.3355e-08 0.361886)
(0.503961 1.18361e-07 0.379882)
(0.493707 1.45042e-07 0.397884)
(0.482091 1.69403e-07 0.415771)
(0.469018 1.8661e-07 0.433402)
(0.454401 1.94077e-07 0.450618)
(0.43816 1.97578e-07 0.467243)
(0.420229 2.18018e-07 0.483083)
(0.400561 2.90901e-07 0.497928)
(0.379127 4.48361e-07 0.511554)
(0.355926 6.86645e-07 0.523724)
(0.330983 9.45702e-07 0.534195)
(0.304358 1.12646e-06 0.542718)
(0.276143 1.14803e-06 0.549042)
(0.246467 1.09028e-06 0.552913)
(0.215493 1.54477e-06 0.554072)
(0.183414 4.55965e-06 0.552228)
(0.150481 1.8776e-05 0.547007)
(0.116829 8.20579e-05 0.537777)
(0.0834974 0.000322009 0.522934)
(0.0474745 0.000916849 0.496332)
(0.0365218 -0.0013531 0.434154)
(-0.0110409 -1.54727e-07 1.20479)
(-0.0242703 -5.59804e-07 1.2237)
(-0.0379161 -3.4412e-07 1.20463)
(-0.0502476 -1.96999e-07 1.17756)
(-0.0608349 -1.17845e-07 1.14646)
(-0.0696875 -7.90048e-08 1.11266)
(-0.0767972 -2.03436e-09 1.07681)
(-0.0821681 9.16281e-08 1.03932)
(-0.0858133 3.46136e-08 1.0005)
(-0.0877535 -1.13512e-07 0.960557)
(-0.0880148 -1.71078e-07 0.919671)
(-0.0866257 -1.07333e-07 0.877981)
(-0.0836156 -2.02314e-08 0.835606)
(-0.079012 1.56398e-08 0.792642)
(-0.0728397 5.92332e-09 0.749172)
(-0.0651207 -9.65332e-09 0.705269)
(-0.0558716 -8.47175e-09 0.660994)
(-0.0451068 5.5483e-09 0.616405)
(-0.032835 1.87439e-08 0.571553)
(-0.0190626 2.30407e-08 0.526488)
(-0.00379593 1.91501e-08 0.481254)
(0.0129612 1.20804e-08 0.435899)
(0.0312 6.29339e-09 0.390483)
(0.0509112 3.66599e-09 0.345055)
(0.0720792 3.87348e-09 0.299678)
(0.0946829 5.59077e-09 0.25442)
(0.118686 7.46949e-09 0.209363)
(0.144038 8.59768e-09 0.164603)
(0.170669 8.60487e-09 0.120248)
(0.198489 7.58868e-09 0.0764252)
(0.227383 5.95912e-09 0.0332714)
(0.257223 4.21293e-09 -0.00905701)
(0.287798 2.72032e-09 -0.050352)
(0.318914 1.61793e-09 -0.0904259)
(0.350374 8.21822e-10 -0.12912)
(0.381977 1.50096e-10 -0.166286)
(0.413519 -5.389e-10 -0.201793)
(0.444804 -1.27298e-09 -0.235533)
(0.475646 -1.97223e-09 -0.267421)
(0.505876 -2.51613e-09 -0.297395)
(0.535338 -2.8196e-09 -0.325421)
(0.563897 -2.8755e-09 -0.351487)
(0.591437 -2.74788e-09 -0.375603)
(0.617862 -2.53509e-09 -0.397797)
(0.643093 -2.32653e-09 -0.418115)
(0.667071 -2.17302e-09 -0.436615)
(0.689751 -2.08269e-09 -0.453366)
(0.711104 -2.03273e-09 -0.468444)
(0.731116 -1.99019e-09 -0.481932)
(0.749781 -1.9284e-09 -0.493914)
(0.767106 -1.83577e-09 -0.504478)
(0.783107 -1.71558e-09 -0.513711)
(0.797806 -1.58036e-09 -0.521698)
(0.811232 -1.44458e-09 -0.528522)
(0.82342 -1.32047e-09 -0.534266)
(0.834407 -1.21425e-09 -0.539004)
(0.844236 -1.12711e-09 -0.542811)
(0.852951 -1.05528e-09 -0.545755)
(0.860597 -9.92346e-10 -0.5479)
(0.867223 -9.29672e-10 -0.549306)
(0.872875 -8.58104e-10 -0.550029)
(0.877602 -7.68106e-10 -0.550119)
(0.881452 -6.50783e-10 -0.549623)
(0.884473 -4.98798e-10 -0.548585)
(0.886712 -3.07012e-10 -0.547042)
(0.888213 -7.32028e-11 -0.545032)
(0.889023 2.01736e-10 -0.542586)
(0.889185 5.13713e-10 -0.539734)
(0.888741 8.55726e-10 -0.536502)
(0.887731 1.21826e-09 -0.532914)
(0.886195 1.59051e-09 -0.528992)
(0.88417 1.96113e-09 -0.524755)
(0.881693 2.31904e-09 -0.520222)
(0.878798 2.65452e-09 -0.51541)
(0.875517 2.95954e-09 -0.510332)
(0.871882 3.22867e-09 -0.505004)
(0.867924 3.45825e-09 -0.499438)
(0.863669 3.64693e-09 -0.493646)
(0.859146 3.79489e-09 -0.487639)
(0.854379 3.90366e-09 -0.481429)
(0.849393 3.97565e-09 -0.475027)
(0.844211 4.01369e-09 -0.468441)
(0.838853 4.02116e-09 -0.461682)
(0.833341 4.00169e-09 -0.454761)
(0.827693 3.95874e-09 -0.447685)
(0.821927 3.89569e-09 -0.440466)
(0.816061 3.8152e-09 -0.433113)
(0.81011 3.7197e-09 -0.425634)
(0.80409 3.61106e-09 -0.418041)
(0.798014 3.4919e-09 -0.410341)
(0.791897 3.36629e-09 -0.402546)
(0.78575 3.24132e-09 -0.394665)
(0.779586 3.1278e-09 -0.386707)
(0.773414 3.04071e-09 -0.378682)
(0.767247 2.99839e-09 -0.3706)
(0.761093 3.02061e-09 -0.362471)
(0.754962 3.1267e-09 -0.354304)
(0.748861 3.33106e-09 -0.346109)
(0.7428 3.64069e-09 -0.337894)
(0.736785 4.05216e-09 -0.32967)
(0.730824 4.54971e-09 -0.321445)
(0.724922 5.10534e-09 -0.313227)
(0.719086 5.68109e-09 -0.305026)
(0.713322 6.2325e-09 -0.296849)
(0.707633 6.71437e-09 -0.288705)
(0.702026 7.08657e-09 -0.2806)
(0.696504 7.31932e-09 -0.272542)
(0.691071 7.39677e-09 -0.264539)
(0.68573 7.31776e-09 -0.256595)
(0.680485 7.09336e-09 -0.248719)
(0.675338 6.74198e-09 -0.240914)
(0.670293 6.28308e-09 -0.233187)
(0.665351 5.73151e-09 -0.225543)
(0.660515 5.09432e-09 -0.217985)
(0.655787 4.37146e-09 -0.210519)
(0.651168 3.55708e-09 -0.203146)
(0.646661 2.64285e-09 -0.195871)
(0.642267 1.62821e-09 -0.188695)
(0.637986 5.3353e-10 -0.181621)
(0.633822 -5.99224e-10 -0.174648)
(0.629775 -1.71841e-09 -0.167779)
(0.625846 -2.78012e-09 -0.161013)
(0.622037 -3.77716e-09 -0.154348)
(0.618349 -4.75929e-09 -0.147784)
(0.614783 -5.81186e-09 -0.141318)
(0.61134 -6.98547e-09 -0.134948)
(0.608021 -8.229e-09 -0.128669)
(0.604828 -9.39209e-09 -0.122478)
(0.60176 -1.03245e-08 -0.116369)
(0.598819 -1.0978e-08 -0.110336)
(0.596007 -1.14041e-08 -0.104374)
(0.593322 -1.16629e-08 -0.098475)
(0.590768 -1.17637e-08 -0.0926311)
(0.588343 -1.16937e-08 -0.0868338)
(0.586049 -1.14726e-08 -0.0810739)
(0.583887 -1.11556e-08 -0.0753415)
(0.581857 -1.07946e-08 -0.0696258)
(0.579958 -1.04118e-08 -0.0639157)
(0.578193 -1.00131e-08 -0.0581991)
(0.576561 -9.60957e-09 -0.0524634)
(0.575061 -9.21323e-09 -0.0466952)
(0.573694 -8.81568e-09 -0.0408806)
(0.572459 -8.37492e-09 -0.0350049)
(0.571357 -7.82258e-09 -0.029053)
(0.570385 -7.09142e-09 -0.0230088)
(0.569543 -6.16051e-09 -0.0168558)
(0.568829 -5.08433e-09 -0.0105769)
(0.56824 -3.9755e-09 -0.00415429)
(0.567775 -2.9524e-09 0.00243027)
(0.56743 -2.10209e-09 0.00919572)
(0.5672 -1.47767e-09 0.0161614)
(0.567082 -1.09998e-09 0.0233474)
(0.567069 -9.49272e-10 0.0307739)
(0.567155 -9.54256e-10 0.0384618)
(0.567332 -1.00599e-09 0.0464325)
(0.56759 -9.86784e-10 0.0547073)
(0.567918 -7.94609e-10 0.0633082)
(0.568304 -3.57692e-10 0.0722572)
(0.568734 3.49917e-10 0.0815764)
(0.56919 1.29611e-09 0.091288)
(0.569654 2.40823e-09 0.101414)
(0.570105 3.62151e-09 0.111976)
(0.570516 4.92015e-09 0.122995)
(0.570861 6.33743e-09 0.134491)
(0.571108 7.91666e-09 0.146484)
(0.571221 9.68922e-09 0.158992)
(0.571161 1.16898e-08 0.17203)
(0.570883 1.39772e-08 0.185614)
(0.570337 1.66128e-08 0.199753)
(0.569468 1.96025e-08 0.214456)
(0.568216 2.28648e-08 0.229725)
(0.566512 2.62952e-08 0.24556)
(0.564285 2.99293e-08 0.261952)
(0.561454 3.41343e-08 0.278886)
(0.557931 3.97127e-08 0.29634)
(0.553626 4.78109e-08 0.314279)
(0.548437 5.9621e-08 0.332661)
(0.54226 7.59965e-08 0.351427)
(0.534986 9.7132e-08 0.370505)
(0.526499 1.22298e-07 0.38981)
(0.516686 1.49473e-07 0.409234)
(0.505429 1.74959e-07 0.428653)
(0.492616 1.93769e-07 0.447922)
(0.478138 2.02339e-07 0.466874)
(0.461897 2.04866e-07 0.485321)
(0.443806 2.21658e-07 0.503052)
(0.423799 2.91033e-07 0.519837)
(0.401829 4.50733e-07 0.535425)
(0.37788 6.95456e-07 0.54955)
(0.351967 9.41407e-07 0.561934)
(0.324145 1.06131e-06 0.57229)
(0.294508 1.05366e-06 0.580325)
(0.263198 1.37622e-06 0.585741)
(0.230402 3.40387e-06 0.588229)
(0.196356 1.04803e-05 0.587448)
(0.161379 3.40438e-05 0.58296)
(0.12574 0.000118366 0.57404)
(0.0906 0.000403133 0.559108)
(0.0537762 0.0011899 0.532384)
(0.0278462 -0.00218531 0.473235)
(-0.0110407 -1.54727e-07 1.20479)
(-0.0242701 -5.59804e-07 1.2237)
(-0.037916 -3.44121e-07 1.20463)
(-0.0502475 -1.96999e-07 1.17756)
(-0.0608349 -1.17845e-07 1.14646)
(-0.0696874 -7.90049e-08 1.11266)
(-0.0767973 -2.03436e-09 1.07681)
(-0.0821682 9.16282e-08 1.03932)
(-0.0858133 3.46136e-08 1.0005)
(-0.0877535 -1.13512e-07 0.960557)
(-0.0880148 -1.71079e-07 0.919671)
(-0.0866257 -1.07333e-07 0.877981)
(-0.0836156 -2.02314e-08 0.835606)
(-0.079012 1.56399e-08 0.792642)
(-0.0728398 5.92332e-09 0.749172)
(-0.0651208 -9.65332e-09 0.705269)
(-0.0558717 -8.47176e-09 0.660994)
(-0.0451068 5.5483e-09 0.616405)
(-0.032835 1.87439e-08 0.571553)
(-0.0190626 2.30407e-08 0.526488)
(-0.00379592 1.91501e-08 0.481254)
(0.0129612 1.20804e-08 0.435899)
(0.0312 6.29338e-09 0.390483)
(0.0509113 3.66599e-09 0.345055)
(0.0720793 3.87348e-09 0.299678)
(0.0946829 5.59077e-09 0.25442)
(0.118686 7.46948e-09 0.209363)
(0.144038 8.59767e-09 0.164603)
(0.17067 8.60486e-09 0.120248)
(0.19849 7.58867e-09 0.0764253)
(0.227384 5.95912e-09 0.0332714)
(0.257223 4.21292e-09 -0.009057)
(0.287798 2.72032e-09 -0.0503519)
(0.318914 1.61793e-09 -0.0904259)
(0.350374 8.21821e-10 -0.12912)
(0.381977 1.50096e-10 -0.166286)
(0.413519 -5.38899e-10 -0.201793)
(0.444804 -1.27298e-09 -0.235533)
(0.475647 -1.97223e-09 -0.267421)
(0.505876 -2.51613e-09 -0.297395)
(0.535338 -2.8196e-09 -0.325421)
(0.563897 -2.87549e-09 -0.351487)
(0.591437 -2.74788e-09 -0.375603)
(0.617862 -2.53509e-09 -0.397797)
(0.643093 -2.32653e-09 -0.418115)
(0.667071 -2.17302e-09 -0.436615)
(0.689751 -2.08269e-09 -0.453366)
(0.711105 -2.03273e-09 -0.468444)
(0.731116 -1.99019e-09 -0.481932)
(0.749781 -1.92841e-09 -0.493914)
(0.767107 -1.83577e-09 -0.504478)
(0.783107 -1.71558e-09 -0.513711)
(0.797806 -1.58036e-09 -0.521698)
(0.811232 -1.44458e-09 -0.528522)
(0.82342 -1.32047e-09 -0.534266)
(0.834407 -1.21425e-09 -0.539004)
(0.844236 -1.12711e-09 -0.542811)
(0.852951 -1.05528e-09 -0.545755)
(0.860597 -9.92346e-10 -0.5479)
(0.867223 -9.29673e-10 -0.549306)
(0.872875 -8.58104e-10 -0.550029)
(0.877602 -7.68107e-10 -0.550119)
(0.881452 -6.50783e-10 -0.549623)
(0.884473 -4.98798e-10 -0.548585)
(0.886712 -3.07012e-10 -0.547042)
(0.888213 -7.32029e-11 -0.545032)
(0.889024 2.01736e-10 -0.542586)
(0.889185 5.13714e-10 -0.539734)
(0.888741 8.55726e-10 -0.536502)
(0.887731 1.21826e-09 -0.532914)
(0.886195 1.59051e-09 -0.528992)
(0.88417 1.96113e-09 -0.524755)
(0.881693 2.31904e-09 -0.520222)
(0.878798 2.65452e-09 -0.51541)
(0.875517 2.95954e-09 -0.510332)
(0.871882 3.22867e-09 -0.505004)
(0.867924 3.45825e-09 -0.499438)
(0.86367 3.64693e-09 -0.493646)
(0.859146 3.79489e-09 -0.487639)
(0.85438 3.90366e-09 -0.481429)
(0.849394 3.97565e-09 -0.475027)
(0.844211 4.01369e-09 -0.468441)
(0.838853 4.02116e-09 -0.461682)
(0.833341 4.00169e-09 -0.454761)
(0.827693 3.95875e-09 -0.447685)
(0.821927 3.89569e-09 -0.440466)
(0.816061 3.8152e-09 -0.433113)
(0.81011 3.7197e-09 -0.425634)
(0.80409 3.61106e-09 -0.41804)
(0.798015 3.4919e-09 -0.410341)
(0.791897 3.36629e-09 -0.402546)
(0.78575 3.24132e-09 -0.394665)
(0.779586 3.1278e-09 -0.386707)
(0.773415 3.04071e-09 -0.378682)
(0.767247 2.99839e-09 -0.3706)
(0.761093 3.02061e-09 -0.362471)
(0.754962 3.1267e-09 -0.354304)
(0.748861 3.33106e-09 -0.346109)
(0.7428 3.64069e-09 -0.337894)
(0.736785 4.05216e-09 -0.32967)
(0.730824 4.54971e-09 -0.321445)
(0.724922 5.10534e-09 -0.313227)
(0.719086 5.68109e-09 -0.305026)
(0.713322 6.23251e-09 -0.296849)
(0.707633 6.71437e-09 -0.288705)
(0.702026 7.08657e-09 -0.2806)
(0.696504 7.31932e-09 -0.272542)
(0.691071 7.39678e-09 -0.264539)
(0.68573 7.31776e-09 -0.256595)
(0.680485 7.09336e-09 -0.248719)
(0.675338 6.74199e-09 -0.240914)
(0.670293 6.28309e-09 -0.233187)
(0.665351 5.73152e-09 -0.225543)
(0.660515 5.09433e-09 -0.217985)
(0.655787 4.37147e-09 -0.210519)
(0.651168 3.55708e-09 -0.203146)
(0.646661 2.64286e-09 -0.195871)
(0.642267 1.62821e-09 -0.188695)
(0.637986 5.3353e-10 -0.181621)
(0.633822 -5.99224e-10 -0.174648)
(0.629775 -1.71842e-09 -0.167779)
(0.625846 -2.78012e-09 -0.161013)
(0.622037 -3.77717e-09 -0.154348)
(0.618349 -4.75929e-09 -0.147784)
(0.614783 -5.81186e-09 -0.141318)
(0.61134 -6.98548e-09 -0.134948)
(0.608022 -8.22901e-09 -0.128669)
(0.604828 -9.3921e-09 -0.122478)
(0.60176 -1.03245e-08 -0.116369)
(0.598819 -1.0978e-08 -0.110336)
(0.596007 -1.14042e-08 -0.104374)
(0.593322 -1.16629e-08 -0.098475)
(0.590768 -1.17637e-08 -0.0926311)
(0.588343 -1.16937e-08 -0.0868338)
(0.586049 -1.14726e-08 -0.0810739)
(0.583887 -1.11556e-08 -0.0753415)
(0.581857 -1.07946e-08 -0.0696258)
(0.579959 -1.04118e-08 -0.0639157)
(0.578193 -1.00131e-08 -0.0581991)
(0.576561 -9.60958e-09 -0.0524634)
(0.575061 -9.21324e-09 -0.0466952)
(0.573694 -8.81569e-09 -0.0408806)
(0.572459 -8.37493e-09 -0.035005)
(0.571357 -7.82259e-09 -0.029053)
(0.570385 -7.09143e-09 -0.0230088)
(0.569543 -6.16052e-09 -0.0168558)
(0.568829 -5.08434e-09 -0.0105769)
(0.56824 -3.9755e-09 -0.00415433)
(0.567775 -2.9524e-09 0.00243024)
(0.56743 -2.10209e-09 0.00919568)
(0.5672 -1.47767e-09 0.0161614)
(0.567082 -1.09998e-09 0.0233473)
(0.56707 -9.49273e-10 0.0307739)
(0.567155 -9.54257e-10 0.0384618)
(0.567332 -1.00599e-09 0.0464324)
(0.56759 -9.86784e-10 0.0547073)
(0.567918 -7.9461e-10 0.0633082)
(0.568304 -3.57692e-10 0.0722572)
(0.568734 3.49917e-10 0.0815764)
(0.56919 1.29611e-09 0.091288)
(0.569654 2.40824e-09 0.101414)
(0.570105 3.62152e-09 0.111976)
(0.570516 4.92015e-09 0.122995)
(0.570861 6.33743e-09 0.134491)
(0.571108 7.91666e-09 0.146484)
(0.571221 9.68923e-09 0.158992)
(0.571161 1.16898e-08 0.17203)
(0.570883 1.39772e-08 0.185614)
(0.570337 1.66128e-08 0.199753)
(0.569468 1.96025e-08 0.214456)
(0.568216 2.28648e-08 0.229725)
(0.566513 2.62953e-08 0.24556)
(0.564285 2.99294e-08 0.261952)
(0.561454 3.41343e-08 0.278886)
(0.557932 3.97127e-08 0.29634)
(0.553626 4.7811e-08 0.314279)
(0.548437 5.96211e-08 0.332661)
(0.542261 7.59965e-08 0.351427)
(0.534986 9.7132e-08 0.370506)
(0.5265 1.22298e-07 0.38981)
(0.516687 1.49473e-07 0.409234)
(0.505431 1.74959e-07 0.428653)
(0.492618 1.93769e-07 0.447922)
(0.47814 2.02339e-07 0.466874)
(0.461899 2.04866e-07 0.485321)
(0.443809 2.21658e-07 0.503052)
(0.423803 2.91033e-07 0.519837)
(0.401834 4.50734e-07 0.535425)
(0.377886 6.95457e-07 0.549551)
(0.351974 9.41409e-07 0.561935)
(0.324154 1.06131e-06 0.572291)
(0.294521 1.05366e-06 0.580326)
(0.263216 1.37625e-06 0.585742)
(0.230426 3.40403e-06 0.588234)
(0.19639 1.04813e-05 0.587457)
(0.161443 3.40442e-05 0.582974)
(0.125886 0.00011817 0.574035)
(0.0909242 0.000397858 0.558889)
(0.0543432 0.00111542 0.530916)
(0.0522973 -0.001641 0.470576)
(-0.010457 -1.68348e-06 1.22137)
(-0.0226443 -9.71032e-07 1.23866)
(-0.0350263 -5.74786e-07 1.21776)
(-0.0459092 -3.61477e-07 1.18884)
(-0.0549166 -2.29776e-07 1.15587)
(-0.0620657 -1.94027e-07 1.12018)
(-0.0673593 -1.11891e-07 1.08245)
(-0.0708132 1.07744e-07 1.04309)
(-0.0724536 1.45126e-07 1.00242)
(-0.0723143 -2.6079e-08 0.960657)
(-0.0704334 -1.60559e-07 0.917986)
(-0.0668502 -1.41922e-07 0.874547)
(-0.0616039 -4.78853e-08 0.830455)
(-0.0547289 1.07344e-08 0.785805)
(-0.0462551 7.70385e-09 0.740677)
(-0.0362074 -1.77539e-08 0.695137)
(-0.0246013 -2.79148e-08 0.649242)
(-0.0114503 -1.66268e-08 0.603044)
(0.00323817 2.11704e-09 0.556585)
(0.0194582 1.47291e-08 0.509921)
(0.0372076 1.7198e-08 0.463097)
(0.0564834 1.2905e-08 0.416161)
(0.0772822 7.09908e-09 0.369166)
(0.0995961 3.2413e-09 0.322171)
(0.123407 2.24524e-09 0.275248)
(0.148685 3.33186e-09 0.228479)
(0.175384 5.1755e-09 0.181963)
(0.203436 6.65514e-09 0.135816)
(0.23275 7.16414e-09 0.090169)
(0.263208 6.64123e-09 0.045173)
(0.294675 5.39823e-09 0.000994246)
(0.326948 3.90179e-09 -0.0421519)
(0.359792 2.54596e-09 -0.0840411)
(0.393002 1.50701e-09 -0.124493)
(0.426353 7.35221e-10 -0.163342)
(0.459627 6.9242e-11 -0.20044)
(0.492608 -6.34206e-10 -0.235664)
(0.525094 -1.40616e-09 -0.268916)
(0.556897 -2.16328e-09 -0.300126)
(0.587852 -2.77119e-09 -0.329254)
(0.61781 -3.12507e-09 -0.356284)
(0.646646 -3.19977e-09 -0.381226)
(0.674257 -3.05104e-09 -0.404111)
(0.700559 -2.78188e-09 -0.42499)
(0.725489 -2.49446e-09 -0.443927)
(0.749002 -2.25732e-09 -0.460999)
(0.771069 -2.09421e-09 -0.47629)
(0.791676 -1.99175e-09 -0.489892)
(0.810821 -1.91986e-09 -0.5019)
(0.828514 -1.849e-09 -0.512412)
(0.844774 -1.76164e-09 -0.521522)
(0.859628 -1.65428e-09 -0.529328)
(0.87311 -1.53323e-09 -0.535921)
(0.88526 -1.40932e-09 -0.54139)
(0.896122 -1.29185e-09 -0.545821)
(0.905742 -1.18643e-09 -0.549294)
(0.914171 -1.09351e-09 -0.551884)
(0.92146 -1.0101e-09 -0.553663)
(0.927661 -9.29835e-10 -0.554695)
(0.932828 -8.4505e-10 -0.555042)
(0.937014 -7.4682e-10 -0.554758)
(0.940272 -6.26199e-10 -0.553895)
(0.942654 -4.75211e-10 -0.5525)
(0.944211 -2.87542e-10 -0.550613)
(0.944994 -5.91527e-11 -0.548273)
(0.945051 2.10825e-10 -0.545514)
(0.94443 5.19734e-10 -0.542368)
(0.943176 8.6154e-10 -0.538861)
(0.941334 1.22732e-09 -0.535019)
(0.938945 1.60571e-09 -0.530865)
(0.936051 1.98473e-09 -0.526417)
(0.932691 2.35194e-09 -0.521695)
(0.9289 2.69658e-09 -0.516715)
(0.924716 3.00972e-09 -0.51149)
(0.92017 3.28552e-09 -0.506035)
(0.915296 3.52046e-09 -0.500361)
(0.910123 3.71408e-09 -0.494481)
(0.90468 3.86748e-09 -0.488404)
(0.898995 3.98359e-09 -0.48214)
(0.893092 4.06578e-09 -0.4757)
(0.886996 4.11757e-09 -0.469091)
(0.880729 4.14291e-09 -0.462322)
(0.874314 4.14524e-09 -0.455403)
(0.86777 4.12786e-09 -0.448342)
(0.861117 4.09358e-09 -0.441146)
(0.854373 4.04436e-09 -0.433825)
(0.847553 3.98117e-09 -0.426387)
(0.840675 3.90467e-09 -0.418841)
(0.833753 3.81472e-09 -0.411194)
(0.826801 3.71296e-09 -0.403456)
(0.819831 3.603e-09 -0.395636)
(0.812857 3.49229e-09 -0.387743)
(0.80589 3.39276e-09 -0.379784)
(0.79894 3.32083e-09 -0.371771)
(0.792018 3.29589e-09 -0.36371)
(0.785133 3.33784e-09 -0.355612)
(0.778293 3.46367e-09 -0.347485)
(0.771508 3.68306e-09 -0.339339)
(0.764784 3.99463e-09 -0.331181)
(0.758129 4.38235e-09 -0.323021)
(0.75155 4.8144e-09 -0.314867)
(0.745052 5.24474e-09 -0.306727)
(0.738641 5.61718e-09 -0.298609)
(0.732322 5.87314e-09 -0.29052)
(0.7261 5.96107e-09 -0.282469)
(0.719979 5.84592e-09 -0.274462)
(0.713962 5.51651e-09 -0.266507)
(0.708055 4.98928e-09 -0.258609)
(0.702258 4.30636e-09 -0.250774)
(0.696576 3.52886e-09 -0.243009)
(0.69101 2.72587e-09 -0.23532)
(0.685563 1.9615e-09 -0.22771)
(0.680237 1.28388e-09 -0.220184)
(0.675033 7.19386e-10 -0.212748)
(0.669952 2.73654e-10 -0.205404)
(0.664998 -6.53764e-11 -0.198156)
(0.66017 -3.27308e-10 -0.191007)
(0.655469 -5.48237e-10 -0.183959)
(0.650898 -7.45803e-10 -0.177013)
(0.646456 -9.09701e-10 -0.170171)
(0.642146 -1.00603e-09 -0.163433)
(0.637967 -9.82521e-10 -0.156799)
(0.633922 -8.12877e-10 -0.150268)
(0.63001 -5.82334e-10 -0.143839)
(0.626232 -5.10807e-10 -0.137508)
(0.62259 -8.48225e-10 -0.131274)
(0.619084 -1.69898e-09 -0.125133)
(0.615715 -2.93907e-09 -0.11908)
(0.612483 -4.32081e-09 -0.113111)
(0.60939 -5.66709e-09 -0.107219)
(0.606436 -6.9527e-09 -0.101397)
(0.603622 -8.22048e-09 -0.0956401)
(0.600948 -9.46681e-09 -0.0899387)
(0.598415 -1.06296e-08 -0.0842846)
(0.596024 -1.1649e-08 -0.0786686)
(0.593775 -1.25061e-08 -0.0730806)
(0.591668 -1.31944e-08 -0.0675099)
(0.589705 -1.36836e-08 -0.0619452)
(0.587886 -1.39291e-08 -0.0563743)
(0.58621 -1.39089e-08 -0.0507845)
(0.584679 -1.3632e-08 -0.0451624)
(0.583292 -1.31154e-08 -0.0394937)
(0.58205 -1.23606e-08 -0.0337636)
(0.580951 -1.13462e-08 -0.0279566)
(0.579997 -1.00406e-08 -0.0220564)
(0.579185 -8.44792e-09 -0.0160462)
(0.578515 -6.65815e-09 -0.00990835)
(0.577985 -4.84763e-09 -0.00362467)
(0.577593 -3.21277e-09 0.00282378)
(0.577337 -1.9009e-09 0.00945655)
(0.577213 -9.85448e-10 0.0162938)
(0.577218 -4.6931e-10 0.0233564)
(0.577346 -2.831e-10 0.0306656)
(0.577593 -2.85822e-10 0.0382436)
(0.577951 -2.99848e-10 0.0461128)
(0.578411 -1.68434e-10 0.0542964)
(0.578964 2.05179e-10 0.0628177)
(0.5796 8.56247e-10 0.0717008)
(0.580303 1.7587e-09 0.08097)
(0.58106 2.80615e-09 0.0906497)
(0.581852 3.82144e-09 0.100765)
(0.582658 4.63691e-09 0.111339)
(0.583455 5.19846e-09 0.122399)
(0.584217 5.60474e-09 0.133966)
(0.584911 6.04534e-09 0.146065)
(0.585504 6.7258e-09 0.158719)
(0.585956 7.85785e-09 0.171948)
(0.586223 9.67682e-09 0.185772)
(0.586253 1.24011e-08 0.200207)
(0.585991 1.61128e-08 0.215268)
(0.585374 2.06759e-08 0.230964)
(0.584334 2.58061e-08 0.247301)
(0.582791 3.12901e-08 0.264279)
(0.580663 3.72379e-08 0.28189)
(0.577857 4.42158e-08 0.300118)
(0.574271 5.31639e-08 0.318938)
(0.569799 6.51129e-08 0.338312)
(0.564323 8.08433e-08 0.35819)
(0.557721 1.00636e-07 0.378507)
(0.549864 1.24083e-07 0.399177)
(0.540619 1.49714e-07 0.420099)
(0.529852 1.74413e-07 0.441146)
(0.517427 1.93502e-07 0.462171)
(0.503214 2.03273e-07 0.483)
(0.48709 2.0767e-07 0.503432)
(0.468945 2.27479e-07 0.523241)
(0.448687 3.02193e-07 0.542173)
(0.426247 4.67091e-07 0.559952)
(0.401589 7.00181e-07 0.576276)
(0.374712 8.82239e-07 0.590827)
(0.345661 8.70162e-07 0.603274)
(0.314528 7.60963e-07 0.613273)
(0.281459 1.24761e-06 0.620473)
(0.246656 3.79281e-06 0.624508)
(0.210373 1.0864e-05 0.624972)
(0.172946 2.84876e-05 0.62135)
(0.134672 7.51105e-05 0.612804)
(0.0962692 0.000188264 0.597639)
(0.0579349 0.000329288 0.570305)
(0.025386 -0.000265567 0.514818)
(-0.010457 -1.68348e-06 1.22136)
(-0.0226442 -9.71032e-07 1.23866)
(-0.0350262 -5.74787e-07 1.21776)
(-0.0459092 -3.61478e-07 1.18884)
(-0.0549166 -2.29777e-07 1.15587)
(-0.0620657 -1.94027e-07 1.12018)
(-0.0673593 -1.11891e-07 1.08245)
(-0.0708133 1.07745e-07 1.04309)
(-0.0724537 1.45126e-07 1.00242)
(-0.0723144 -2.6079e-08 0.960657)
(-0.0704334 -1.60559e-07 0.917986)
(-0.0668502 -1.41922e-07 0.874546)
(-0.0616039 -4.78854e-08 0.830455)
(-0.0547289 1.07344e-08 0.785805)
(-0.0462551 7.70386e-09 0.740677)
(-0.0362074 -1.77539e-08 0.695137)
(-0.0246013 -2.79148e-08 0.649242)
(-0.0114504 -1.66268e-08 0.603044)
(0.00323815 2.11704e-09 0.556585)
(0.0194582 1.47291e-08 0.509921)
(0.0372076 1.7198e-08 0.463097)
(0.0564834 1.2905e-08 0.416161)
(0.0772822 7.09908e-09 0.369166)
(0.0995962 3.2413e-09 0.322171)
(0.123407 2.24523e-09 0.275248)
(0.148686 3.33186e-09 0.22848)
(0.175384 5.17549e-09 0.181964)
(0.203436 6.65513e-09 0.135816)
(0.23275 7.16414e-09 0.090169)
(0.263208 6.64123e-09 0.045173)
(0.294675 5.39823e-09 0.000994262)
(0.326948 3.90178e-09 -0.0421518)
(0.359792 2.54596e-09 -0.0840411)
(0.393002 1.50701e-09 -0.124493)
(0.426353 7.3522e-10 -0.163342)
(0.459627 6.92419e-11 -0.20044)
(0.492608 -6.34206e-10 -0.235664)
(0.525094 -1.40616e-09 -0.268916)
(0.556898 -2.16328e-09 -0.300126)
(0.587852 -2.77119e-09 -0.329254)
(0.61781 -3.12507e-09 -0.356284)
(0.646646 -3.19977e-09 -0.381226)
(0.674257 -3.05104e-09 -0.404111)
(0.700559 -2.78188e-09 -0.42499)
(0.725489 -2.49446e-09 -0.443927)
(0.749002 -2.25732e-09 -0.460999)
(0.77107 -2.09421e-09 -0.47629)
(0.791676 -1.99175e-09 -0.489892)
(0.810821 -1.91986e-09 -0.5019)
(0.828514 -1.849e-09 -0.512412)
(0.844774 -1.76164e-09 -0.521522)
(0.859628 -1.65428e-09 -0.529328)
(0.87311 -1.53323e-09 -0.535921)
(0.88526 -1.40932e-09 -0.54139)
(0.896122 -1.29185e-09 -0.545821)
(0.905743 -1.18643e-09 -0.549294)
(0.914171 -1.09351e-09 -0.551884)
(0.92146 -1.0101e-09 -0.553663)
(0.927662 -9.29835e-10 -0.554695)
(0.932829 -8.4505e-10 -0.555042)
(0.937014 -7.46821e-10 -0.554758)
(0.940272 -6.262e-10 -0.553896)
(0.942654 -4.75211e-10 -0.5525)
(0.944211 -2.87542e-10 -0.550613)
(0.944994 -5.91528e-11 -0.548273)
(0.945051 2.10826e-10 -0.545514)
(0.94443 5.19734e-10 -0.542368)
(0.943176 8.61541e-10 -0.538861)
(0.941334 1.22732e-09 -0.535019)
(0.938945 1.60571e-09 -0.530865)
(0.936051 1.98473e-09 -0.526417)
(0.932691 2.35194e-09 -0.521695)
(0.928901 2.69658e-09 -0.516715)
(0.924716 3.00972e-09 -0.51149)
(0.920171 3.28552e-09 -0.506035)
(0.915296 3.52047e-09 -0.500361)
(0.910123 3.71408e-09 -0.494481)
(0.90468 3.86748e-09 -0.488404)
(0.898995 3.98359e-09 -0.48214)
(0.893092 4.06578e-09 -0.4757)
(0.886996 4.11757e-09 -0.469091)
(0.880729 4.14291e-09 -0.462322)
(0.874314 4.14524e-09 -0.455403)
(0.867771 4.12786e-09 -0.448342)
(0.861118 4.09359e-09 -0.441146)
(0.854373 4.04436e-09 -0.433825)
(0.847554 3.98117e-09 -0.426387)
(0.840675 3.90467e-09 -0.418841)
(0.833753 3.81472e-09 -0.411194)
(0.826801 3.71296e-09 -0.403456)
(0.819831 3.603e-09 -0.395636)
(0.812857 3.49229e-09 -0.387743)
(0.80589 3.39276e-09 -0.379784)
(0.79894 3.32083e-09 -0.371771)
(0.792018 3.29589e-09 -0.36371)
(0.785133 3.33785e-09 -0.355612)
(0.778293 3.46367e-09 -0.347485)
(0.771508 3.68306e-09 -0.339339)
(0.764784 3.99463e-09 -0.331181)
(0.758129 4.38235e-09 -0.323021)
(0.75155 4.8144e-09 -0.314867)
(0.745052 5.24475e-09 -0.306727)
(0.738641 5.61719e-09 -0.298609)
(0.732322 5.87314e-09 -0.29052)
(0.7261 5.96107e-09 -0.282469)
(0.719979 5.84593e-09 -0.274462)
(0.713963 5.51651e-09 -0.266507)
(0.708055 4.98928e-09 -0.258609)
(0.702258 4.30637e-09 -0.250774)
(0.696576 3.52887e-09 -0.243009)
(0.69101 2.72587e-09 -0.235319)
(0.685563 1.9615e-09 -0.22771)
(0.680237 1.28389e-09 -0.220184)
(0.675033 7.19387e-10 -0.212748)
(0.669952 2.73655e-10 -0.205404)
(0.664998 -6.53764e-11 -0.198156)
(0.66017 -3.27308e-10 -0.191007)
(0.655469 -5.48238e-10 -0.183959)
(0.650898 -7.45803e-10 -0.177013)
(0.646456 -9.09702e-10 -0.170171)
(0.642146 -1.00604e-09 -0.163433)
(0.637967 -9.82521e-10 -0.156799)
(0.633922 -8.12877e-10 -0.150268)
(0.63001 -5.82335e-10 -0.143839)
(0.626232 -5.10807e-10 -0.137508)
(0.62259 -8.48226e-10 -0.131274)
(0.619084 -1.69898e-09 -0.125133)
(0.615715 -2.93907e-09 -0.11908)
(0.612483 -4.32082e-09 -0.113111)
(0.60939 -5.6671e-09 -0.107219)
(0.606436 -6.9527e-09 -0.101397)
(0.603622 -8.22049e-09 -0.0956401)
(0.600948 -9.46682e-09 -0.0899387)
(0.598415 -1.06296e-08 -0.0842846)
(0.596024 -1.1649e-08 -0.0786686)
(0.593775 -1.25062e-08 -0.0730806)
(0.591668 -1.31944e-08 -0.0675099)
(0.589705 -1.36836e-08 -0.0619452)
(0.587886 -1.39291e-08 -0.0563743)
(0.58621 -1.39089e-08 -0.0507846)
(0.584679 -1.3632e-08 -0.0451624)
(0.583292 -1.31154e-08 -0.0394937)
(0.58205 -1.23607e-08 -0.0337636)
(0.580951 -1.13462e-08 -0.0279566)
(0.579997 -1.00407e-08 -0.0220564)
(0.579185 -8.44793e-09 -0.0160462)
(0.578515 -6.65816e-09 -0.00990839)
(0.577985 -4.84764e-09 -0.00362471)
(0.577593 -3.21277e-09 0.00282375)
(0.577337 -1.9009e-09 0.00945652)
(0.577213 -9.85449e-10 0.0162938)
(0.577218 -4.6931e-10 0.0233563)
(0.577346 -2.831e-10 0.0306656)
(0.577593 -2.85823e-10 0.0382436)
(0.577951 -2.99849e-10 0.0461128)
(0.578411 -1.68434e-10 0.0542963)
(0.578965 2.0518e-10 0.0628177)
(0.5796 8.56248e-10 0.0717008)
(0.580303 1.7587e-09 0.08097)
(0.58106 2.80615e-09 0.0906497)
(0.581852 3.82144e-09 0.100765)
(0.582658 4.63692e-09 0.111339)
(0.583455 5.19846e-09 0.122398)
(0.584217 5.60474e-09 0.133966)
(0.584911 6.04535e-09 0.146065)
(0.585505 6.7258e-09 0.158719)
(0.585957 7.85786e-09 0.171948)
(0.586223 9.67682e-09 0.185772)
(0.586253 1.24011e-08 0.200207)
(0.585991 1.61128e-08 0.215268)
(0.585375 2.06759e-08 0.230964)
(0.584334 2.58061e-08 0.247301)
(0.582792 3.12901e-08 0.264279)
(0.580664 3.72379e-08 0.28189)
(0.577857 4.42158e-08 0.300118)
(0.574272 5.31639e-08 0.318938)
(0.569799 6.51129e-08 0.338312)
(0.564323 8.08433e-08 0.35819)
(0.557721 1.00636e-07 0.378507)
(0.549865 1.24084e-07 0.399177)
(0.54062 1.49714e-07 0.420099)
(0.529853 1.74413e-07 0.441146)
(0.517429 1.93502e-07 0.462171)
(0.503216 2.03273e-07 0.483)
(0.487093 2.0767e-07 0.503432)
(0.468948 2.27479e-07 0.523241)
(0.44869 3.02193e-07 0.542173)
(0.426251 4.67092e-07 0.559952)
(0.401594 7.00181e-07 0.576276)
(0.374718 8.8224e-07 0.590827)
(0.345669 8.70165e-07 0.603273)
(0.31454 7.60968e-07 0.613272)
(0.281476 1.24763e-06 0.620472)
(0.246678 3.79293e-06 0.624507)
(0.210404 1.08648e-05 0.624972)
(0.172993 2.84927e-05 0.621348)
(0.13475 7.51169e-05 0.612774)
(0.0963448 0.000187845 0.597448)
(0.0580497 0.000324961 0.5693)
(0.0273026 -0.000262074 0.515383)
(-0.00979958 -3.33373e-06 1.2368)
(-0.0207981 -1.3227e-06 1.25224)
(-0.0317308 -7.43499e-07 1.22935)
(-0.0409499 -4.70294e-07 1.19842)
(-0.0481399 -2.77027e-07 1.16344)
(-0.0533301 -2.68228e-07 1.12573)
(-0.0565374 -2.75014e-07 1.08599)
(-0.0577939 3.71647e-08 1.04465)
(-0.0571428 2.18787e-07 1.00204)
(-0.0546351 8.73339e-08 0.95839)
(-0.0503246 -1.08517e-07 0.913875)
(-0.0442639 -1.54947e-07 0.868639)
(-0.0365037 -6.89561e-08 0.822794)
(-0.0270856 1.69748e-08 0.776428)
(-0.0160445 3.20939e-08 0.729614)
(-0.00340853 6.18267e-10 0.682408)
(0.0108056 -2.73573e-08 0.634859)
(0.0265853 -2.98006e-08 0.587023)
(0.0439269 -1.46807e-08 0.538937)
(0.0628297 1.6585e-09 0.490645)
(0.0832985 9.86087e-09 0.44219)
(0.105335 9.73012e-09 0.393623)
(0.128937 5.62105e-09 0.345004)
(0.154093 1.75538e-09 0.2964)
(0.18078 1.59122e-10 0.247898)
(0.208956 8.02129e-10 0.199596)
(0.238557 2.61453e-09 0.151615)
(0.269493 4.4223e-09 0.104098)
(0.301644 5.45474e-09 0.0572045)
(0.334866 5.48155e-09 0.0111141)
(0.368967 4.69985e-09 -0.0339533)
(0.40367 3.5317e-09 -0.077732)
(0.438754 2.37622e-09 -0.120017)
(0.473977 1.43696e-09 -0.160623)
(0.509098 7.06608e-10 -0.199384)
(0.543884 4.5198e-11 -0.236158)
(0.578113 -6.81551e-10 -0.270835)
(0.611583 -1.5012e-09 -0.303333)
(0.64411 -2.32299e-09 -0.333605)
(0.675536 -2.99817e-09 -0.361632)
(0.705725 -3.40384e-09 -0.387424)
(0.734567 -3.49884e-09 -0.411014)
(0.761973 -3.33199e-09 -0.432457)
(0.787878 -3.00935e-09 -0.451825)
(0.812235 -2.64592e-09 -0.469201)
(0.835015 -2.32755e-09 -0.484681)
(0.856207 -2.09248e-09 -0.498367)
(0.875812 -1.93786e-09 -0.510363)
(0.893844 -1.83676e-09 -0.520777)
(0.910327 -1.75716e-09 -0.529716)
(0.925293 -1.67583e-09 -0.537287)
(0.938782 -1.5822e-09 -0.54359)
(0.95084 -1.47654e-09 -0.548725)
(0.961516 -1.36477e-09 -0.552786)
(0.970864 -1.25365e-09 -0.555862)
(0.97894 -1.14738e-09 -0.558035)
(0.985801 -1.04672e-09 -0.559383)
(0.991506 -9.4879e-10 -0.559977)
(0.996114 -8.48104e-10 -0.559884)
(0.999683 -7.37399e-10 -0.559165)
(1.00227 -6.08956e-10 -0.557874)
(1.00394 -4.54925e-10 -0.556061)
(1.00474 -2.68304e-10 -0.553772)
(1.00472 -4.40059e-11 -0.551047)
(1.00395 2.20629e-10 -0.547923)
(1.00247 5.24628e-10 -0.544432)
(1.00033 8.63468e-10 -0.540604)
(0.997581 1.22917e-09 -0.536464)
(0.994267 1.61088e-09 -0.532035)
(0.990431 1.99575e-09 -0.527338)
(0.986115 2.37101e-09 -0.52239)
(0.981359 2.72421e-09 -0.517208)
(0.9762 3.04574e-09 -0.511806)
(0.970676 3.32882e-09 -0.506197)
(0.964819 3.56992e-09 -0.500392)
(0.958661 3.76916e-09 -0.494402)
(0.952234 3.92885e-09 -0.488236)
(0.945565 4.05291e-09 -0.481903)
(0.938683 4.14591e-09 -0.475412)
(0.931612 4.2125e-09 -0.468769)
(0.924377 4.25685e-09 -0.461983)
(0.917 4.28245e-09 -0.455061)
(0.909503 4.29216e-09 -0.44801)
(0.901906 4.2879e-09 -0.440837)
(0.894227 4.27078e-09 -0.43355)
(0.886485 4.24039e-09 -0.426155)
(0.878695 4.19497e-09 -0.418661)
(0.870873 4.13215e-09 -0.411074)
(0.863035 4.04941e-09 -0.403402)
(0.855192 3.94589e-09 -0.395653)
(0.847359 3.82365e-09 -0.387835)
(0.839547 3.68994e-09 -0.379955)
(0.831766 3.55656e-09 -0.372023)
(0.824029 3.44075e-09 -0.364046)
(0.816344 3.3622e-09 -0.356032)
(0.80872 3.33974e-09 -0.34799)
(0.801166 3.38688e-09 -0.339929)
(0.79369 3.50519e-09 -0.331855)
(0.786298 3.67975e-09 -0.323778)
(0.778999 3.87429e-09 -0.315706)
(0.771797 4.03112e-09 -0.307646)
(0.764699 4.07515e-09 -0.299606)
(0.75771 3.9237e-09 -0.291594)
(0.750834 3.50055e-09 -0.283616)
(0.744077 2.75197e-09 -0.27568)
(0.73744 1.66171e-09 -0.267793)
(0.730929 2.60165e-10 -0.25996)
(0.724546 -1.37371e-09 -0.252188)
(0.718294 -3.11968e-09 -0.244482)
(0.712174 -4.8307e-09 -0.236848)
(0.706189 -6.35269e-09 -0.229292)
(0.700341 -7.5453e-09 -0.221817)
(0.694631 -8.30209e-09 -0.214429)
(0.68906 -8.56223e-09 -0.207131)
(0.683629 -8.30775e-09 -0.199927)
(0.678339 -7.5557e-09 -0.19282)
(0.673191 -6.36784e-09 -0.185813)
(0.668186 -4.84811e-09 -0.178908)
(0.663325 -3.1038e-09 -0.172106)
(0.658608 -1.22715e-09 -0.165409)
(0.654036 7.07746e-10 -0.158817)
(0.649609 2.70134e-09 -0.15233)
(0.645328 4.83272e-09 -0.145946)
(0.641193 7.08351e-09 -0.139664)
(0.637206 9.14981e-09 -0.133483)
(0.633366 1.05109e-08 -0.127398)
(0.629674 1.07535e-08 -0.121407)
(0.626131 9.84644e-09 -0.115505)
(0.622737 8.09763e-09 -0.109687)
(0.619493 5.867e-09 -0.103947)
(0.616399 3.3413e-09 -0.0982783)
(0.613455 5.56637e-10 -0.0926743)
(0.610663 -2.44756e-09 -0.0871268)
(0.608023 -5.54552e-09 -0.0816273)
(0.605534 -8.56862e-09 -0.0761664)
(0.603199 -1.13771e-08 -0.0707342)
(0.601017 -1.38618e-08 -0.0653199)
(0.598989 -1.5902e-08 -0.059912)
(0.597115 -1.73641e-08 -0.0544985)
(0.595397 -1.81601e-08 -0.0490665)
(0.593834 -1.82835e-08 -0.0436025)
(0.592427 -1.77913e-08 -0.038092)
(0.591176 -1.67667e-08 -0.0325202)
(0.590082 -1.52884e-08 -0.0268713)
(0.589143 -1.34091e-08 -0.0211289)
(0.588361 -1.11785e-08 -0.0152756)
(0.587734 -8.71025e-09 -0.00929375)
(0.587262 -6.2139e-09 -0.0031645)
(0.586943 -3.93926e-09 0.00313151)
(0.586775 -2.08598e-09 0.00961443)
(0.586757 -7.56436e-10 0.0163051)
(0.586886 4.34197e-11 0.0232252)
(0.587157 4.07849e-10 0.0303971)
(0.587566 5.35126e-10 0.0378437)
(0.588107 6.77776e-10 0.045589)
(0.588773 1.0363e-09 0.0536574)
(0.589556 1.68544e-09 0.0620741)
(0.590446 2.59753e-09 0.0708648)
(0.591431 3.70027e-09 0.080056)
(0.592497 4.86047e-09 0.0896745)
(0.593627 5.84284e-09 0.0997478)
(0.594804 6.37404e-09 0.110303)
(0.596003 6.31748e-09 0.121369)
(0.597201 5.80392e-09 0.132974)
(0.598368 5.16283e-09 0.145144)
(0.599469 4.76981e-09 0.157907)
(0.600466 4.99756e-09 0.17129)
(0.601316 6.26473e-09 0.185317)
(0.601967 9.01472e-09 0.200013)
(0.602363 1.35163e-08 0.215396)
(0.602441 1.96576e-08 0.231487)
(0.602129 2.69668e-08 0.248296)
(0.601348 3.48904e-08 0.265833)
(0.600007 4.31465e-08 0.2841)
(0.59801 5.19144e-08 0.303089)
(0.595249 6.17693e-08 0.322784)
(0.591606 7.34356e-08 0.343157)
(0.586954 8.75301e-08 0.364167)
(0.581156 1.04431e-07 0.385754)
(0.574069 1.2418e-07 0.407843)
(0.56554 1.46046e-07 0.430333)
(0.555414 1.67654e-07 0.453104)
(0.54353 1.8461e-07 0.476004)
(0.529733 1.92939e-07 0.498855)
(0.513871 1.96672e-07 0.521446)
(0.495803 2.18967e-07 0.543534)
(0.475409 3.04857e-07 0.564845)
(0.452591 4.93341e-07 0.585068)
(0.427285 7.50127e-07 0.603868)
(0.399468 9.17504e-07 0.620881)
(0.36917 8.20736e-07 0.635721)
(0.336476 6.07648e-07 0.647989)
(0.301532 1.03412e-06 0.65727)
(0.264554 3.16301e-06 0.663137)
(0.22582 7.90763e-06 0.665121)
(0.185684 1.68972e-05 0.662656)
(0.144491 3.41518e-05 0.654879)
(0.102738 6.73883e-05 0.640156)
(0.0616163 9.22665e-05 0.613269)
(0.0260924 5.01775e-05 0.554045)
(-0.0097995 -3.33372e-06 1.2368)
(-0.0207981 -1.3227e-06 1.25224)
(-0.0317308 -7.435e-07 1.22935)
(-0.04095 -4.70294e-07 1.19842)
(-0.0481401 -2.77027e-07 1.16344)
(-0.05333 -2.68228e-07 1.12573)
(-0.0565373 -2.75015e-07 1.08599)
(-0.0577939 3.71647e-08 1.04465)
(-0.057143 2.18787e-07 1.00204)
(-0.0546352 8.7334e-08 0.95839)
(-0.0503246 -1.08517e-07 0.913875)
(-0.0442639 -1.54947e-07 0.868639)
(-0.0365037 -6.89561e-08 0.822794)
(-0.0270856 1.69748e-08 0.776428)
(-0.0160445 3.20939e-08 0.729614)
(-0.00340849 6.18268e-10 0.682408)
(0.0108056 -2.73573e-08 0.634859)
(0.0265853 -2.98006e-08 0.587023)
(0.0439269 -1.46807e-08 0.538937)
(0.0628297 1.6585e-09 0.490645)
(0.0832985 9.86087e-09 0.44219)
(0.105335 9.73011e-09 0.393623)
(0.128937 5.62105e-09 0.345004)
(0.154093 1.75538e-09 0.2964)
(0.18078 1.59122e-10 0.247898)
(0.208956 8.02129e-10 0.199596)
(0.238557 2.61453e-09 0.151615)
(0.269493 4.4223e-09 0.104098)
(0.301644 5.45473e-09 0.0572045)
(0.334866 5.48154e-09 0.0111141)
(0.368967 4.69985e-09 -0.0339533)
(0.40367 3.5317e-09 -0.077732)
(0.438754 2.37622e-09 -0.120017)
(0.473977 1.43696e-09 -0.160623)
(0.509098 7.06608e-10 -0.199384)
(0.543884 4.5198e-11 -0.236158)
(0.578114 -6.81551e-10 -0.270835)
(0.611583 -1.5012e-09 -0.303333)
(0.64411 -2.32299e-09 -0.333605)
(0.675536 -2.99817e-09 -0.361632)
(0.705725 -3.40384e-09 -0.387424)
(0.734567 -3.49884e-09 -0.411014)
(0.761973 -3.33199e-09 -0.432457)
(0.787878 -3.00935e-09 -0.451825)
(0.812235 -2.64592e-09 -0.469201)
(0.835016 -2.32755e-09 -0.484681)
(0.856208 -2.09248e-09 -0.498367)
(0.875813 -1.93786e-09 -0.510363)
(0.893844 -1.83676e-09 -0.520777)
(0.910327 -1.75716e-09 -0.529716)
(0.925293 -1.67583e-09 -0.537287)
(0.938782 -1.5822e-09 -0.54359)
(0.95084 -1.47654e-09 -0.548725)
(0.961516 -1.36477e-09 -0.552786)
(0.970865 -1.25365e-09 -0.555862)
(0.97894 -1.14738e-09 -0.558035)
(0.985802 -1.04672e-09 -0.559383)
(0.991507 -9.4879e-10 -0.559977)
(0.996114 -8.48104e-10 -0.559885)
(0.999683 -7.374e-10 -0.559165)
(1.00227 -6.08956e-10 -0.557874)
(1.00394 -4.54926e-10 -0.556061)
(1.00474 -2.68305e-10 -0.553772)
(1.00472 -4.40059e-11 -0.551047)
(1.00395 2.20629e-10 -0.547923)
(1.00247 5.24629e-10 -0.544432)
(1.00033 8.63468e-10 -0.540604)
(0.997581 1.22917e-09 -0.536464)
(0.994267 1.61088e-09 -0.532035)
(0.990431 1.99575e-09 -0.527338)
(0.986115 2.37101e-09 -0.52239)
(0.981359 2.72421e-09 -0.517208)
(0.976201 3.04574e-09 -0.511806)
(0.970676 3.32882e-09 -0.506197)
(0.964819 3.56993e-09 -0.500392)
(0.958661 3.76916e-09 -0.494402)
(0.952234 3.92885e-09 -0.488236)
(0.945565 4.05291e-09 -0.481903)
(0.938683 4.14591e-09 -0.475412)
(0.931612 4.2125e-09 -0.468769)
(0.924377 4.25686e-09 -0.461983)
(0.917001 4.28245e-09 -0.455061)
(0.909504 4.29217e-09 -0.44801)
(0.901906 4.2879e-09 -0.440837)
(0.894228 4.27078e-09 -0.43355)
(0.886485 4.24039e-09 -0.426155)
(0.878695 4.19497e-09 -0.418661)
(0.870874 4.13215e-09 -0.411074)
(0.863035 4.04941e-09 -0.403402)
(0.855192 3.94589e-09 -0.395653)
(0.847359 3.82365e-09 -0.387835)
(0.839547 3.68994e-09 -0.379955)
(0.831767 3.55657e-09 -0.372023)
(0.824029 3.44075e-09 -0.364046)
(0.816344 3.3622e-09 -0.356032)
(0.80872 3.33974e-09 -0.34799)
(0.801166 3.38688e-09 -0.339929)
(0.79369 3.5052e-09 -0.331855)
(0.786298 3.67975e-09 -0.323778)
(0.778999 3.87429e-09 -0.315706)
(0.771797 4.03113e-09 -0.307646)
(0.764699 4.07516e-09 -0.299606)
(0.75771 3.92371e-09 -0.291594)
(0.750834 3.50055e-09 -0.283616)
(0.744077 2.75197e-09 -0.27568)
(0.737441 1.66171e-09 -0.267793)
(0.730929 2.60166e-10 -0.25996)
(0.724546 -1.37371e-09 -0.252188)
(0.718294 -3.11969e-09 -0.244482)
(0.712174 -4.83071e-09 -0.236848)
(0.706189 -6.3527e-09 -0.229292)
(0.700341 -7.54531e-09 -0.221817)
(0.694631 -8.3021e-09 -0.214429)
(0.68906 -8.56224e-09 -0.207131)
(0.683629 -8.30776e-09 -0.199927)
(0.678339 -7.5557e-09 -0.19282)
(0.673191 -6.36785e-09 -0.185813)
(0.668186 -4.84811e-09 -0.178908)
(0.663325 -3.1038e-09 -0.172106)
(0.658608 -1.22715e-09 -0.165409)
(0.654036 7.07747e-10 -0.158817)
(0.649609 2.70134e-09 -0.15233)
(0.645328 4.83272e-09 -0.145946)
(0.641193 7.08352e-09 -0.139664)
(0.637206 9.14982e-09 -0.133483)
(0.633366 1.05109e-08 -0.127398)
(0.629674 1.07536e-08 -0.121407)
(0.626131 9.84645e-09 -0.115505)
(0.622737 8.09763e-09 -0.109687)
(0.619493 5.867e-09 -0.103947)
(0.616399 3.34131e-09 -0.0982783)
(0.613455 5.56637e-10 -0.0926743)
(0.610663 -2.44757e-09 -0.0871268)
(0.608023 -5.54552e-09 -0.0816273)
(0.605534 -8.56863e-09 -0.0761665)
(0.603199 -1.13771e-08 -0.0707342)
(0.601017 -1.38618e-08 -0.0653199)
(0.598989 -1.5902e-08 -0.0599121)
(0.597115 -1.73642e-08 -0.0544986)
(0.595397 -1.81601e-08 -0.0490666)
(0.593834 -1.82835e-08 -0.0436025)
(0.592427 -1.77913e-08 -0.0380921)
(0.591176 -1.67667e-08 -0.0325203)
(0.590082 -1.52884e-08 -0.0268714)
(0.589143 -1.34091e-08 -0.0211289)
(0.588361 -1.11785e-08 -0.0152757)
(0.587734 -8.71026e-09 -0.0092938)
(0.587262 -6.2139e-09 -0.00316455)
(0.586943 -3.93927e-09 0.00313147)
(0.586776 -2.08598e-09 0.00961439)
(0.586758 -7.56437e-10 0.0163051)
(0.586886 4.34197e-11 0.0232252)
(0.587157 4.0785e-10 0.030397)
(0.587566 5.35126e-10 0.0378437)
(0.588107 6.77777e-10 0.045589)
(0.588773 1.0363e-09 0.0536574)
(0.589556 1.68544e-09 0.0620741)
(0.590446 2.59754e-09 0.0708648)
(0.591431 3.70028e-09 0.080056)
(0.592497 4.86048e-09 0.0896745)
(0.593627 5.84284e-09 0.0997477)
(0.594804 6.37404e-09 0.110303)
(0.596004 6.31748e-09 0.121369)
(0.597201 5.80392e-09 0.132974)
(0.598368 5.16284e-09 0.145144)
(0.599469 4.76982e-09 0.157907)
(0.600466 4.99756e-09 0.17129)
(0.601316 6.26473e-09 0.185317)
(0.601967 9.01473e-09 0.200012)
(0.602363 1.35163e-08 0.215396)
(0.602441 1.96576e-08 0.231486)
(0.60213 2.69668e-08 0.248296)
(0.601348 3.48904e-08 0.265833)
(0.600008 4.31465e-08 0.2841)
(0.598011 5.19145e-08 0.303089)
(0.59525 6.17694e-08 0.322784)
(0.591606 7.34356e-08 0.343157)
(0.586954 8.75301e-08 0.364167)
(0.581157 1.04431e-07 0.385754)
(0.57407 1.2418e-07 0.407843)
(0.565542 1.46046e-07 0.430333)
(0.555415 1.67654e-07 0.453104)
(0.543532 1.8461e-07 0.476004)
(0.529735 1.92939e-07 0.498855)
(0.513873 1.96673e-07 0.521446)
(0.495806 2.18967e-07 0.543534)
(0.475412 3.04857e-07 0.564844)
(0.452595 4.93341e-07 0.585068)
(0.427289 7.50128e-07 0.603868)
(0.399474 9.17505e-07 0.62088)
(0.369178 8.20738e-07 0.63572)
(0.336486 6.07651e-07 0.647987)
(0.301547 1.03413e-06 0.657267)
(0.264573 3.16306e-06 0.663132)
(0.225844 7.90793e-06 0.665113)
(0.185715 1.68988e-05 0.662643)
(0.144532 3.4158e-05 0.654849)
(0.102777 6.73789e-05 0.640061)
(0.0616769 9.20457e-05 0.613008)
(0.0263048 5.00954e-05 0.553811)
(-0.00906839 -4.1349e-06 1.25095)
(-0.0187149 -1.13624e-06 1.26425)
(-0.027982 -5.08969e-07 1.23915)
(-0.0352836 -2.77165e-07 1.20604)
(-0.0403742 -5.63405e-08 1.16887)
(-0.0433013 -9.28121e-08 1.12899)
(-0.0441014 -2.91754e-07 1.08711)
(-0.042828 -2.20673e-08 1.04369)
(-0.0395462 2.70137e-07 0.999047)
(-0.0343301 2.22303e-07 0.95343)
(-0.0272536 -1.50467e-08 0.907016)
(-0.018385 -1.51818e-07 0.859943)
(-0.0077887 -1.04175e-07 0.812314)
(0.00448327 3.51571e-09 0.764202)
(0.0183878 5.21509e-08 0.715681)
(0.0338974 3.22975e-08 0.666797)
(0.0509945 -5.87915e-09 0.617587)
(0.0696739 -2.50133e-08 0.568091)
(0.0899395 -2.13069e-08 0.518343)
(0.111798 -8.41296e-09 0.468383)
(0.135258 1.36254e-09 0.418256)
(0.160325 4.06633e-09 0.368017)
(0.186996 1.93861e-09 0.317732)
(0.215255 -1.15779e-09 0.267485)
(0.245067 -2.69618e-09 0.217378)
(0.276371 -2.12534e-09 0.167538)
(0.309081 -1.94428e-10 0.118112)
(0.343075 1.98381e-09 0.0692755)
(0.378199 3.55449e-09 0.0212186)
(0.414274 4.15264e-09 -0.0258316)
(0.450978 3.87458e-09 -0.0715676)
(0.488076 3.08636e-09 -0.115756)
(0.525302 2.17702e-09 -0.15819)
(0.562396 1.38e-09 -0.19868)
(0.599102 7.17826e-10 -0.237068)
(0.63518 7.17712e-11 -0.273225)
(0.670407 -6.77973e-10 -0.30706)
(0.704587 -1.54828e-09 -0.338516)
(0.737546 -2.43749e-09 -0.367571)
(0.769141 -3.18221e-09 -0.394232)
(0.799252 -3.64192e-09 -0.418537)
(0.827788 -3.76074e-09 -0.440544)
(0.854679 -3.58041e-09 -0.460332)
(0.879878 -3.20982e-09 -0.477995)
(0.903359 -2.77668e-09 -0.493637)
(0.925112 -2.38201e-09 -0.50737)
(0.945142 -2.07883e-09 -0.519312)
(0.963469 -1.87409e-09 -0.529581)
(0.980122 -1.74479e-09 -0.538297)
(0.995141 -1.65681e-09 -0.545574)
(1.00857 -1.58161e-09 -0.551528)
(1.02046 -1.50174e-09 -0.556266)
(1.03088 -1.41114e-09 -0.559893)
(1.03987 -1.31098e-09 -0.562504)
(1.04751 -1.20512e-09 -0.564193)
(1.05386 -1.09651e-09 -0.565043)
(1.05898 -9.85566e-10 -0.565133)
(1.06294 -8.70181e-10 -0.564535)
(1.0658 -7.4562e-10 -0.563315)
(1.06763 -6.06133e-10 -0.561532)
(1.06849 -4.44971e-10 -0.559241)
(1.06844 -2.55538e-10 -0.55649)
(1.06754 -3.22106e-11 -0.553324)
(1.06585 2.28691e-10 -0.549779)
(1.06343 5.27731e-10 -0.545892)
(1.06032 8.62096e-10 -0.541693)
(1.05658 1.22542e-09 -0.537208)
(1.05225 1.60751e-09 -0.532461)
(1.04739 1.99611e-09 -0.527474)
(1.04204 2.37735e-09 -0.522263)
(1.03624 2.73835e-09 -0.516846)
(1.03004 3.06823e-09 -0.511235)
(1.02346 3.35908e-09 -0.505443)
(1.01655 3.60734e-09 -0.499482)
(1.00933 3.8132e-09 -0.493359)
(1.00185 3.97989e-09 -0.487084)
(0.994133 4.11254e-09 -0.480665)
(0.986206 4.2173e-09 -0.474108)
(0.978096 4.29974e-09 -0.46742)
(0.969829 4.36451e-09 -0.460607)
(0.961429 4.41511e-09 -0.453676)
(0.952919 4.45368e-09 -0.446631)
(0.944319 4.4814e-09 -0.439479)
(0.935648 4.49794e-09 -0.432226)
(0.926926 4.50112e-09 -0.424877)
(0.91817 4.48714e-09 -0.417439)
(0.909395 4.45018e-09 -0.409918)
(0.900617 4.38319e-09 -0.402319)
(0.891849 4.27941e-09 -0.394651)
(0.883106 4.13415e-09 -0.386919)
(0.874399 3.9473e-09 -0.37913)
(0.86574 3.72445e-09 -0.371293)
(0.85714 3.47812e-09 -0.363414)
(0.848608 3.22664e-09 -0.3555)
(0.840154 2.99132e-09 -0.347559)
(0.831786 2.79122e-09 -0.3396)
(0.823513 2.63525e-09 -0.331628)
(0.815342 2.51332e-09 -0.323653)
(0.80728 2.38812e-09 -0.315682)
(0.799333 2.19068e-09 -0.307721)
(0.791507 1.82203e-09 -0.29978)
(0.783807 1.16438e-09 -0.291864)
(0.776239 1.01359e-10 -0.28398)
(0.768806 -1.45746e-09 -0.276136)
(0.761512 -3.55057e-09 -0.268337)
(0.754361 -6.1455e-09 -0.26059)
(0.747355 -9.13101e-09 -0.252901)
(0.740497 -1.23229e-08 -0.245276)
(0.73379 -1.54823e-08 -0.237719)
(0.727234 -1.83418e-08 -0.230236)
(0.720832 -2.06338e-08 -0.222833)
(0.714584 -2.21193e-08 -0.215512)
(0.708491 -2.26163e-08 -0.208279)
(0.702555 -2.20229e-08 -0.201137)
(0.696775 -2.03154e-08 -0.19409)
(0.691153 -1.75284e-08 -0.18714)
(0.685688 -1.3777e-08 -0.180292)
(0.68038 -9.27986e-09 -0.173545)
(0.675231 -4.29836e-09 -0.166903)
(0.670241 8.88347e-10 -0.160365)
(0.665409 5.94143e-09 -0.153933)
(0.660736 1.06229e-08 -0.147606)
(0.656222 1.50361e-08 -0.141384)
(0.651867 1.94372e-08 -0.135263)
(0.647672 2.37045e-08 -0.129244)
(0.643637 2.71396e-08 -0.123321)
(0.639761 2.89056e-08 -0.117493)
(0.636046 2.86304e-08 -0.111754)
(0.632491 2.65663e-08 -0.106099)
(0.629097 2.32538e-08 -0.100522)
(0.625864 1.91113e-08 -0.0950181)
(0.622793 1.43212e-08 -0.0895788)
(0.619883 8.98659e-09 -0.0841965)
(0.617136 3.3035e-09 -0.0788627)
(0.614552 -2.42094e-09 -0.0735682)
(0.612131 -7.8732e-09 -0.0683029)
(0.609873 -1.27984e-08 -0.0630561)
(0.607781 -1.69647e-08 -0.0578164)
(0.605853 -2.01337e-08 -0.0525717)
(0.604091 -2.21301e-08 -0.0473091)
(0.602496 -2.2921e-08 -0.042015)
(0.601068 -2.26161e-08 -0.036675)
(0.599808 -2.14179e-08 -0.0312741)
(0.598716 -1.95603e-08 -0.0257964)
(0.597793 -1.7236e-08 -0.0202252)
(0.597039 -1.45696e-08 -0.0145432)
(0.596454 -1.16785e-08 -0.00873206)
(0.596039 -8.74963e-09 -0.00277286)
(0.595791 -6.02231e-09 0.00335426)
(0.595712 -3.70081e-09 0.00966994)
(0.595798 -1.90228e-09 0.0161957)
(0.59605 -6.6459e-10 0.0229538)
(0.596462 6.40457e-11 0.0299675)
(0.597034 4.78443e-10 0.0372609)
(0.597759 8.95947e-10 0.0448589)
(0.598633 1.59467e-09 0.0527873)
(0.599648 2.64012e-09 0.0610729)
(0.600796 3.90999e-09 0.0697433)
(0.602068 5.28057e-09 0.0788268)
(0.60345 6.68018e-09 0.0883527)
(0.604929 7.9501e-09 0.098351)
(0.606487 8.77174e-09 0.108853)
(0.608104 8.86531e-09 0.119889)
(0.609757 8.28272e-09 0.131491)
(0.611417 7.39782e-09 0.143692)
(0.613052 6.6508e-09 0.156524)
(0.614627 6.41839e-09 0.170018)
(0.616096 7.15236e-09 0.184206)
(0.617412 9.49872e-09 0.199118)
(0.618518 1.40669e-08 0.214783)
(0.619349 2.10132e-08 0.231225)
(0.619835 2.98788e-08 0.248468)
(0.619891 3.98563e-08 0.266529)
(0.619426 5.02637e-08 0.28542)
(0.618338 6.08323e-08 0.305145)
(0.616512 7.16566e-08 0.325699)
(0.613822 8.29759e-08 0.347066)
(0.610128 9.50386e-08 0.369214)
(0.605283 1.08168e-07 0.392096)
(0.599123 1.22841e-07 0.415645)
(0.591478 1.39251e-07 0.439769)
(0.582167 1.56042e-07 0.464352)
(0.571005 1.6915e-07 0.489245)
(0.557804 1.73516e-07 0.514267)
(0.54238 1.71031e-07 0.5392)
(0.524557 1.84036e-07 0.563786)
(0.504176 2.6175e-07 0.587725)
(0.481104 4.5277e-07 0.610679)
(0.455242 7.28038e-07 0.632269)
(0.426538 9.1397e-07 0.652081)
(0.394995 8.0275e-07 0.669668)
(0.360685 5.28922e-07 0.684563)
(0.323754 8.05863e-07 0.696277)
(0.284428 2.2859e-06 0.704305)
(0.243015 4.75852e-06 0.708105)
(0.199901 8.42661e-06 0.70705)
(0.155509 1.44647e-05 0.70024)
(0.110318 2.24966e-05 0.686026)
(0.0661649 3.14752e-05 0.659329)
(0.0279257 7.26164e-05 0.597095)
(-0.00906767 -4.13489e-06 1.25095)
(-0.0187149 -1.13624e-06 1.26425)
(-0.0279821 -5.08969e-07 1.23915)
(-0.0352836 -2.77165e-07 1.20604)
(-0.0403744 -5.63405e-08 1.16887)
(-0.0433014 -9.28122e-08 1.12899)
(-0.0441012 -2.91754e-07 1.08711)
(-0.0428278 -2.20673e-08 1.04369)
(-0.0395463 2.70137e-07 0.999047)
(-0.0343303 2.22303e-07 0.95343)
(-0.0272537 -1.50467e-08 0.907016)
(-0.018385 -1.51818e-07 0.859943)
(-0.00778864 -1.04175e-07 0.812314)
(0.00448336 3.51571e-09 0.764202)
(0.0183879 5.2151e-08 0.715681)
(0.0338975 3.22975e-08 0.666797)
(0.0509945 -5.87915e-09 0.617587)
(0.0696739 -2.50133e-08 0.568091)
(0.0899395 -2.13069e-08 0.518343)
(0.111798 -8.41296e-09 0.468383)
(0.135258 1.36254e-09 0.418256)
(0.160325 4.06633e-09 0.368017)
(0.186997 1.93861e-09 0.317732)
(0.215255 -1.15779e-09 0.267485)
(0.245067 -2.69618e-09 0.217378)
(0.276371 -2.12534e-09 0.167538)
(0.309081 -1.94428e-10 0.118112)
(0.343075 1.9838e-09 0.0692755)
(0.378199 3.55449e-09 0.0212186)
(0.414274 4.15264e-09 -0.0258315)
(0.450978 3.87458e-09 -0.0715676)
(0.488076 3.08636e-09 -0.115756)
(0.525302 2.17702e-09 -0.15819)
(0.562396 1.38e-09 -0.198681)
(0.599102 7.17825e-10 -0.237068)
(0.63518 7.17712e-11 -0.273225)
(0.670407 -6.77973e-10 -0.30706)
(0.704587 -1.54828e-09 -0.338516)
(0.737546 -2.43749e-09 -0.367571)
(0.769141 -3.18221e-09 -0.394232)
(0.799253 -3.64192e-09 -0.418537)
(0.827788 -3.76074e-09 -0.440544)
(0.854679 -3.58042e-09 -0.460332)
(0.879878 -3.20982e-09 -0.477995)
(0.903359 -2.77668e-09 -0.493637)
(0.925112 -2.38201e-09 -0.50737)
(0.945142 -2.07883e-09 -0.519312)
(0.963469 -1.87409e-09 -0.529581)
(0.980123 -1.74479e-09 -0.538297)
(0.995141 -1.65681e-09 -0.545575)
(1.00857 -1.58162e-09 -0.551528)
(1.02046 -1.50175e-09 -0.556266)
(1.03088 -1.41114e-09 -0.559893)
(1.03987 -1.31098e-09 -0.562504)
(1.04751 -1.20512e-09 -0.564193)
(1.05386 -1.09651e-09 -0.565043)
(1.05898 -9.85567e-10 -0.565133)
(1.06294 -8.70181e-10 -0.564535)
(1.0658 -7.45621e-10 -0.563315)
(1.06763 -6.06133e-10 -0.561532)
(1.06849 -4.44971e-10 -0.559241)
(1.06844 -2.55538e-10 -0.556491)
(1.06754 -3.22106e-11 -0.553324)
(1.06585 2.28692e-10 -0.549779)
(1.06343 5.27731e-10 -0.545892)
(1.06032 8.62096e-10 -0.541693)
(1.05658 1.22542e-09 -0.537208)
(1.05225 1.60751e-09 -0.532461)
(1.04739 1.99611e-09 -0.527474)
(1.04204 2.37735e-09 -0.522263)
(1.03624 2.73835e-09 -0.516846)
(1.03004 3.06823e-09 -0.511235)
(1.02346 3.35908e-09 -0.505443)
(1.01655 3.60735e-09 -0.499482)
(1.00933 3.8132e-09 -0.493359)
(1.00185 3.97989e-09 -0.487084)
(0.994134 4.11254e-09 -0.480665)
(0.986206 4.2173e-09 -0.474108)
(0.978096 4.29974e-09 -0.46742)
(0.969829 4.36452e-09 -0.460607)
(0.961429 4.41511e-09 -0.453676)
(0.952919 4.45369e-09 -0.446631)
(0.944319 4.4814e-09 -0.439479)
(0.935648 4.49794e-09 -0.432226)
(0.926926 4.50112e-09 -0.424877)
(0.91817 4.48714e-09 -0.417439)
(0.909395 4.45018e-09 -0.409918)
(0.900617 4.38319e-09 -0.402319)
(0.891849 4.27942e-09 -0.394651)
(0.883106 4.13415e-09 -0.386919)
(0.874399 3.9473e-09 -0.37913)
(0.86574 3.72445e-09 -0.371293)
(0.85714 3.47812e-09 -0.363414)
(0.848608 3.22664e-09 -0.3555)
(0.840154 2.99132e-09 -0.347559)
(0.831786 2.79123e-09 -0.339599)
(0.823513 2.63525e-09 -0.331628)
(0.815342 2.51332e-09 -0.323653)
(0.80728 2.38812e-09 -0.315682)
(0.799333 2.19069e-09 -0.307721)
(0.791507 1.82203e-09 -0.29978)
(0.783807 1.16438e-09 -0.291863)
(0.776239 1.01359e-10 -0.28398)
(0.768806 -1.45746e-09 -0.276136)
(0.761512 -3.55057e-09 -0.268337)
(0.754361 -6.1455e-09 -0.26059)
(0.747355 -9.13102e-09 -0.252901)
(0.740497 -1.23229e-08 -0.245276)
(0.73379 -1.54824e-08 -0.237719)
(0.727234 -1.83418e-08 -0.230236)
(0.720832 -2.06338e-08 -0.222832)
(0.714584 -2.21194e-08 -0.215512)
(0.708491 -2.26164e-08 -0.208279)
(0.702555 -2.20229e-08 -0.201137)
(0.696775 -2.03154e-08 -0.19409)
(0.691153 -1.75284e-08 -0.18714)
(0.685688 -1.3777e-08 -0.180292)
(0.680381 -9.27987e-09 -0.173545)
(0.675232 -4.29836e-09 -0.166903)
(0.670241 8.88347e-10 -0.160365)
(0.665409 5.94143e-09 -0.153933)
(0.660736 1.06229e-08 -0.147606)
(0.656222 1.50361e-08 -0.141384)
(0.651867 1.94372e-08 -0.135263)
(0.647672 2.37045e-08 -0.129244)
(0.643637 2.71397e-08 -0.123321)
(0.639761 2.89056e-08 -0.117493)
(0.636046 2.86304e-08 -0.111754)
(0.632491 2.65663e-08 -0.106099)
(0.629097 2.32539e-08 -0.100522)
(0.625864 1.91113e-08 -0.0950181)
(0.622793 1.43213e-08 -0.0895788)
(0.619884 8.9866e-09 -0.0841965)
(0.617136 3.3035e-09 -0.0788628)
(0.614552 -2.42095e-09 -0.0735682)
(0.612131 -7.87321e-09 -0.0683029)
(0.609873 -1.27984e-08 -0.0630561)
(0.607781 -1.69647e-08 -0.0578164)
(0.605853 -2.01337e-08 -0.0525717)
(0.604092 -2.21301e-08 -0.0473091)
(0.602496 -2.2921e-08 -0.042015)
(0.601068 -2.26162e-08 -0.0366751)
(0.599808 -2.14179e-08 -0.0312742)
(0.598716 -1.95603e-08 -0.0257965)
(0.597793 -1.72361e-08 -0.0202253)
(0.597039 -1.45696e-08 -0.0145432)
(0.596454 -1.16785e-08 -0.0087321)
(0.596039 -8.74964e-09 -0.0027729)
(0.595791 -6.02232e-09 0.00335422)
(0.595712 -3.70081e-09 0.00966991)
(0.595798 -1.90228e-09 0.0161956)
(0.59605 -6.64591e-10 0.0229538)
(0.596462 6.40458e-11 0.0299675)
(0.597034 4.78443e-10 0.0372609)
(0.597759 8.95948e-10 0.0448589)
(0.598633 1.59467e-09 0.0527873)
(0.599648 2.64012e-09 0.0610729)
(0.600796 3.91e-09 0.0697432)
(0.602068 5.28058e-09 0.0788267)
(0.60345 6.68019e-09 0.0883526)
(0.604929 7.95011e-09 0.098351)
(0.606487 8.77175e-09 0.108853)
(0.608104 8.86531e-09 0.119889)
(0.609757 8.28273e-09 0.131491)
(0.611417 7.39782e-09 0.143692)
(0.613053 6.6508e-09 0.156524)
(0.614627 6.4184e-09 0.170018)
(0.616096 7.15236e-09 0.184206)
(0.617412 9.49872e-09 0.199118)
(0.618518 1.40669e-08 0.214782)
(0.61935 2.10132e-08 0.231225)
(0.619835 2.98788e-08 0.248468)
(0.619891 3.98564e-08 0.266529)
(0.619427 5.02638e-08 0.28542)
(0.618339 6.08323e-08 0.305145)
(0.616513 7.16566e-08 0.325699)
(0.613822 8.29759e-08 0.347066)
(0.610129 9.50387e-08 0.369214)
(0.605284 1.08168e-07 0.392096)
(0.599124 1.22841e-07 0.415645)
(0.591479 1.39251e-07 0.439769)
(0.582169 1.56042e-07 0.464352)
(0.571007 1.6915e-07 0.489245)
(0.557806 1.73516e-07 0.514267)
(0.542382 1.71031e-07 0.5392)
(0.52456 1.84036e-07 0.563785)
(0.50418 2.6175e-07 0.587724)
(0.481108 4.5277e-07 0.610678)
(0.455247 7.28039e-07 0.632268)
(0.426543 9.13971e-07 0.652079)
(0.395002 8.02751e-07 0.669666)
(0.360694 5.28923e-07 0.68456)
(0.323766 8.05867e-07 0.696273)
(0.284443 2.28592e-06 0.704298)
(0.243033 4.75859e-06 0.708095)
(0.199923 8.42691e-06 0.707033)
(0.155536 1.44658e-05 0.700212)
(0.110346 2.24981e-05 0.685969)
(0.0662043 3.14637e-05 0.659209)
(0.0279789 7.26089e-05 0.596844)
(-0.00827388 -2.68465e-06 1.26367)
(-0.0163867 1.17721e-08 1.27447)
(-0.0237298 3.12573e-07 1.24691)
(-0.0288101 2.47375e-07 1.21139)
(-0.0314619 3.84604e-07 1.17184)
(-0.0317606 2.72405e-07 1.12961)
(-0.0297681 -1.09183e-07 1.08544)
(-0.0255669 -3.30352e-08 1.03981)
(-0.0192497 2.85087e-07 0.993044)
(-0.0109202 3.66268e-07 0.945392)
(-0.00068036 1.36426e-07 0.897027)
(0.0113783 -1.01613e-07 0.848081)
(0.0251762 -1.35856e-07 0.798651)
(0.0406495 -3.78108e-08 0.748798)
(0.0577522 4.18011e-08 0.698569)
(0.0764594 4.93692e-08 0.647997)
(0.096759 1.80328e-08 0.597109)
(0.118653 -8.91519e-09 0.545932)
(0.142153 -1.61604e-08 0.494494)
(0.167273 -1.06005e-08 0.442833)
(0.194029 -3.6079e-09 0.390996)
(0.222425 -9.84219e-10 0.339045)
(0.252456 -2.40461e-09 0.28706)
(0.284096 -4.94644e-09 0.235147)
(0.317289 -6.21126e-09 0.183433)
(0.351953 -5.45458e-09 0.132076)
(0.387966 -3.24064e-09 0.0812598)
(0.425167 -6.1759e-10 0.0311922)
(0.463376 1.51297e-09 -0.0178874)
(0.502246 2.68853e-09 -0.0656402)
(0.541511 2.92395e-09 -0.111795)
(0.580887 2.54014e-09 -0.156119)
(0.620088 1.92005e-09 -0.198399)
(0.658837 1.30999e-09 -0.238456)
(0.696871 7.49591e-10 -0.276145)
(0.73395 1.40622e-10 -0.311359)
(0.76986 -6.20051e-10 -0.344033)
(0.804415 -1.53585e-09 -0.374139)
(0.83746 -2.49147e-09 -0.401684)
(0.86887 -3.30689e-09 -0.426707)
(0.898547 -3.82365e-09 -0.449273)
(0.926422 -3.97095e-09 -0.469466)
(0.952447 -3.78393e-09 -0.487391)
(0.976598 -3.37469e-09 -0.503162)
(0.998869 -2.88074e-09 -0.516903)
(1.01927 -2.41768e-09 -0.528745)
(1.03783 -2.05252e-09 -0.538817)
(1.05458 -1.80194e-09 -0.547251)
(1.06957 -1.64624e-09 -0.554176)
(1.08285 -1.55079e-09 -0.559716)
(1.09449 -1.48163e-09 -0.56399)
(1.10454 -1.4148e-09 -0.567114)
(1.11309 -1.33828e-09 -0.569192)
(1.12019 -1.24858e-09 -0.570327)
(1.12591 -1.14635e-09 -0.57061)
(1.13034 -1.03321e-09 -0.570126)
(1.13355 -9.09747e-10 -0.568955)
(1.13559 -7.74219e-10 -0.567168)
(1.13656 -6.23611e-10 -0.56483)
(1.1365 -4.5299e-10 -0.561998)
(1.1355 -2.57422e-10 -0.558725)
(1.13361 -3.16919e-11 -0.555058)
(1.13091 2.28136e-10 -0.551038)
(1.12743 5.23827e-10 -0.546702)
(1.12326 8.53973e-10 -0.542081)
(1.11843 1.21377e-09 -0.537204)
(1.113 1.59453e-09 -0.532096)
(1.10703 1.98471e-09 -0.526776)
(1.10056 2.37035e-09 -0.521264)
(1.09363 2.73809e-09 -0.515576)
(1.08629 3.07605e-09 -0.509724)
(1.07858 3.37508e-09 -0.50372)
(1.07053 3.63137e-09 -0.497575)
(1.06219 3.84487e-09 -0.491297)
(1.05358 4.01956e-09 -0.484892)
(1.04474 4.162e-09 -0.478369)
(1.03569 4.27953e-09 -0.471731)
(1.02648 4.37923e-09 -0.464986)
(1.01711 4.4663e-09 -0.458136)
(1.00763 4.54432e-09 -0.451188)
(0.998039 4.61477e-09 -0.444145)
(0.988375 4.6775e-09 -0.437011)
(0.978653 4.73073e-09 -0.429792)
(0.968894 4.77048e-09 -0.42249)
(0.959114 4.79017e-09 -0.415112)
(0.94933 4.78038e-09 -0.407662)
(0.939559 4.72906e-09 -0.400144)
(0.929814 4.62247e-09 -0.392565)
(0.920109 4.44794e-09 -0.38493)
(0.910458 4.19593e-09 -0.377245)
(0.90087 3.8631e-09 -0.369515)
(0.891359 3.4559e-09 -0.361748)
(0.881933 2.9897e-09 -0.35395)
(0.872602 2.48884e-09 -0.346127)
(0.863375 1.98136e-09 -0.338287)
(0.854261 1.48896e-09 -0.330436)
(0.845266 1.01538e-09 -0.322581)
(0.836399 5.30718e-10 -0.31473)
(0.827665 -3.92434e-11 -0.306889)
(0.819069 -8.1639e-10 -0.299066)
(0.810619 -1.96018e-09 -0.291267)
(0.802318 -3.64179e-09 -0.283498)
(0.79417 -6.00769e-09 -0.275767)
(0.786181 -9.13822e-09 -0.268079)
(0.778352 -1.30147e-08 -0.26044)
(0.770687 -1.7502e-08 -0.252856)
(0.763189 -2.23533e-08 -0.245333)
(0.755859 -2.72343e-08 -0.237875)
(0.748699 -3.17609e-08 -0.230487)
(0.74171 -3.55384e-08 -0.223176)
(0.734893 -3.81945e-08 -0.215943)
(0.728248 -3.9404e-08 -0.208795)
(0.721776 -3.89154e-08 -0.201736)
(0.715478 -3.65947e-08 -0.194767)
(0.709352 -3.24373e-08 -0.187894)
(0.7034 -2.65205e-08 -0.181119)
(0.697621 -1.90388e-08 -0.174445)
(0.692014 -1.03848e-08 -0.167873)
(0.686581 -1.02604e-09 -0.161405)
(0.681319 8.56813e-09 -0.155042)
(0.676231 1.76727e-08 -0.148784)
(0.671314 2.54555e-08 -0.142632)
(0.66657 3.17734e-08 -0.136584)
(0.661998 3.73514e-08 -0.130638)
(0.657598 4.27889e-08 -0.124793)
(0.653369 4.76296e-08 -0.119046)
(0.649312 5.06722e-08 -0.113392)
(0.645427 5.10158e-08 -0.107828)
(0.641714 4.86501e-08 -0.102348)
(0.638172 4.41943e-08 -0.0969472)
(0.634803 3.8301e-08 -0.0916185)
(0.631605 3.13316e-08 -0.0863551)
(0.62858 2.34476e-08 -0.0811491)
(0.625727 1.4882e-08 -0.075992)
(0.623047 6.08435e-09 -0.0708746)
(0.620541 -2.39292e-09 -0.0657871)
(0.618209 -1.0086e-08 -0.0607188)
(0.616052 -1.66499e-08 -0.0556583)
(0.61407 -2.17756e-08 -0.0505936)
(0.612265 -2.52231e-08 -0.0455117)
(0.610637 -2.69388e-08 -0.0403993)
(0.609187 -2.70918e-08 -0.0352418)
(0.607916 -2.6021e-08 -0.0300241)
(0.606826 -2.41449e-08 -0.0247304)
(0.605916 -2.18318e-08 -0.0193439)
(0.605189 -1.92981e-08 -0.0138471)
(0.604644 -1.66398e-08 -0.00822151)
(0.604283 -1.39453e-08 -0.00244793)
(0.604105 -1.13443e-08 0.00349382)
(0.604111 -8.94986e-09 0.0096248)
(0.6043 -6.82279e-09 0.015967)
(0.604672 -5.03275e-09 0.0225433)
(0.605225 -3.67012e-09 0.0293778)
(0.605957 -2.69325e-09 0.0364954)
(0.606866 -1.79103e-09 0.043922)
(0.607947 -5.40471e-10 0.0516847)
(0.609195 1.21008e-09 0.0598117)
(0.610604 3.22499e-09 0.0683323)
(0.612165 5.24514e-09 0.0772767)
(0.613869 7.30249e-09 0.0866766)
(0.615703 9.52294e-09 0.0965645)
(0.617652 1.17149e-08 0.106974)
(0.619698 1.34144e-08 0.11794)
(0.621821 1.44023e-08 0.129499)
(0.623994 1.49154e-08 0.141687)
(0.626188 1.52917e-08 0.15454)
(0.628367 1.56429e-08 0.168098)
(0.630492 1.6095e-08 0.182397)
(0.632514 1.72631e-08 0.197475)
(0.634379 2.01735e-08 0.213369)
(0.636023 2.56267e-08 0.230112)
(0.637373 3.36574e-08 0.247739)
(0.638347 4.35937e-08 0.266276)
(0.638849 5.45978e-08 0.285748)
(0.638774 6.6097e-08 0.306172)
(0.638 7.77517e-08 0.327555)
(0.636394 8.92122e-08 0.349896)
(0.633808 1.00076e-07 0.373176)
(0.630076 1.10213e-07 0.397363)
(0.625021 1.2017e-07 0.422401)
(0.61845 1.30948e-07 0.448213)
(0.610157 1.4257e-07 0.47469)
(0.599927 1.52076e-07 0.501689)
(0.587538 1.53754e-07 0.529032)
(0.572767 1.45815e-07 0.556495)
(0.555396 1.44565e-07 0.583808)
(0.535222 1.95211e-07 0.610651)
(0.512063 3.51245e-07 0.636651)
(0.485777 5.99822e-07 0.661387)
(0.45627 7.84968e-07 0.684385)
(0.423512 6.98284e-07 0.705133)
(0.387551 4.36857e-07 0.723078)
(0.348526 6.18744e-07 0.737645)
(0.306673 1.66955e-06 0.748233)
(0.262329 2.82508e-06 0.754209)
(0.215931 3.76791e-06 0.754862)
(0.16799 6.51888e-06 0.749231)
(0.119052 8.87954e-06 0.735584)
(0.0713876 1.50277e-05 0.708734)
(0.0301592 5.16465e-05 0.643499)
(-0.00827194 -2.68465e-06 1.26368)
(-0.0163862 1.17722e-08 1.27447)
(-0.0237298 3.12573e-07 1.24692)
(-0.02881 2.47376e-07 1.21139)
(-0.0314622 3.84604e-07 1.17184)
(-0.0317611 2.72405e-07 1.12961)
(-0.0297681 -1.09183e-07 1.08544)
(-0.0255665 -3.30352e-08 1.03981)
(-0.0192497 2.85087e-07 0.993044)
(-0.0109204 3.66269e-07 0.945392)
(-0.000680515 1.36426e-07 0.897027)
(0.0113783 -1.01613e-07 0.848081)
(0.0251763 -1.35856e-07 0.798651)
(0.0406496 -3.78108e-08 0.748798)
(0.0577524 4.18011e-08 0.698569)
(0.0764595 4.93692e-08 0.647997)
(0.096759 1.80328e-08 0.597109)
(0.118653 -8.91519e-09 0.545932)
(0.142153 -1.61604e-08 0.494494)
(0.167273 -1.06005e-08 0.442833)
(0.194029 -3.6079e-09 0.390996)
(0.222425 -9.84219e-10 0.339045)
(0.252457 -2.40461e-09 0.28706)
(0.284096 -4.94644e-09 0.235147)
(0.317289 -6.21125e-09 0.183433)
(0.351953 -5.45458e-09 0.132076)
(0.387966 -3.24064e-09 0.0812598)
(0.425167 -6.1759e-10 0.0311922)
(0.463376 1.51297e-09 -0.0178874)
(0.502246 2.68853e-09 -0.0656402)
(0.541511 2.92395e-09 -0.111795)
(0.580887 2.54014e-09 -0.156119)
(0.620089 1.92005e-09 -0.198399)
(0.658837 1.30999e-09 -0.238456)
(0.696871 7.49591e-10 -0.276145)
(0.73395 1.40622e-10 -0.311359)
(0.76986 -6.20051e-10 -0.344033)
(0.804415 -1.53585e-09 -0.374139)
(0.83746 -2.49147e-09 -0.401684)
(0.86887 -3.30689e-09 -0.426707)
(0.898547 -3.82365e-09 -0.449273)
(0.926422 -3.97095e-09 -0.469466)
(0.952447 -3.78393e-09 -0.487391)
(0.976598 -3.37469e-09 -0.503162)
(0.998869 -2.88074e-09 -0.516903)
(1.01927 -2.41768e-09 -0.528745)
(1.03783 -2.05252e-09 -0.538817)
(1.05458 -1.80194e-09 -0.547251)
(1.06957 -1.64624e-09 -0.554176)
(1.08285 -1.5508e-09 -0.559716)
(1.09449 -1.48163e-09 -0.56399)
(1.10454 -1.4148e-09 -0.567114)
(1.11309 -1.33829e-09 -0.569193)
(1.12019 -1.24858e-09 -0.570327)
(1.12591 -1.14635e-09 -0.57061)
(1.13034 -1.03321e-09 -0.570126)
(1.13355 -9.09748e-10 -0.568955)
(1.13559 -7.7422e-10 -0.567168)
(1.13656 -6.23612e-10 -0.56483)
(1.1365 -4.5299e-10 -0.561998)
(1.1355 -2.57422e-10 -0.558725)
(1.13361 -3.16919e-11 -0.555058)
(1.13091 2.28137e-10 -0.551038)
(1.12743 5.23827e-10 -0.546702)
(1.12326 8.53974e-10 -0.542081)
(1.11843 1.21377e-09 -0.537204)
(1.113 1.59453e-09 -0.532096)
(1.10703 1.98471e-09 -0.526776)
(1.10056 2.37035e-09 -0.521264)
(1.09363 2.73809e-09 -0.515576)
(1.08629 3.07605e-09 -0.509724)
(1.07858 3.37508e-09 -0.50372)
(1.07053 3.63137e-09 -0.497575)
(1.06219 3.84487e-09 -0.491297)
(1.05358 4.01956e-09 -0.484892)
(1.04474 4.162e-09 -0.478369)
(1.0357 4.27953e-09 -0.471731)
(1.02648 4.37923e-09 -0.464986)
(1.01711 4.4663e-09 -0.458136)
(1.00763 4.54432e-09 -0.451188)
(0.998039 4.61477e-09 -0.444145)
(0.988375 4.6775e-09 -0.437011)
(0.978654 4.73073e-09 -0.429792)
(0.968894 4.77048e-09 -0.42249)
(0.959114 4.79017e-09 -0.415112)
(0.94933 4.78039e-09 -0.407662)
(0.939559 4.72906e-09 -0.400144)
(0.929814 4.62248e-09 -0.392565)
(0.92011 4.44794e-09 -0.38493)
(0.910458 4.19594e-09 -0.377245)
(0.90087 3.8631e-09 -0.369515)
(0.891359 3.4559e-09 -0.361748)
(0.881933 2.9897e-09 -0.35395)
(0.872602 2.48885e-09 -0.346127)
(0.863375 1.98136e-09 -0.338286)
(0.854261 1.48896e-09 -0.330435)
(0.845267 1.01538e-09 -0.322581)
(0.836399 5.30718e-10 -0.31473)
(0.827665 -3.92434e-11 -0.306889)
(0.81907 -8.1639e-10 -0.299066)
(0.810619 -1.96018e-09 -0.291267)
(0.802318 -3.64179e-09 -0.283498)
(0.794171 -6.00769e-09 -0.275767)
(0.786181 -9.13823e-09 -0.268079)
(0.778352 -1.30147e-08 -0.26044)
(0.770688 -1.7502e-08 -0.252856)
(0.763189 -2.23533e-08 -0.245332)
(0.755859 -2.72343e-08 -0.237875)
(0.748699 -3.17609e-08 -0.230487)
(0.74171 -3.55384e-08 -0.223175)
(0.734893 -3.81945e-08 -0.215943)
(0.728248 -3.94041e-08 -0.208795)
(0.721776 -3.89154e-08 -0.201736)
(0.715478 -3.65947e-08 -0.194767)
(0.709352 -3.24373e-08 -0.187894)
(0.7034 -2.65205e-08 -0.181119)
(0.697621 -1.90388e-08 -0.174445)
(0.692014 -1.03848e-08 -0.167873)
(0.686581 -1.02605e-09 -0.161405)
(0.68132 8.56813e-09 -0.155042)
(0.676231 1.76727e-08 -0.148784)
(0.671314 2.54555e-08 -0.142632)
(0.66657 3.17734e-08 -0.136584)
(0.661998 3.73514e-08 -0.130638)
(0.657598 4.27889e-08 -0.124793)
(0.653369 4.76296e-08 -0.119046)
(0.649312 5.06722e-08 -0.113392)
(0.645427 5.10159e-08 -0.107828)
(0.641714 4.86502e-08 -0.102348)
(0.638172 4.41943e-08 -0.0969472)
(0.634803 3.8301e-08 -0.0916185)
(0.631605 3.13316e-08 -0.0863551)
(0.62858 2.34476e-08 -0.0811491)
(0.625727 1.4882e-08 -0.075992)
(0.623047 6.08435e-09 -0.0708747)
(0.620541 -2.39292e-09 -0.0657871)
(0.618209 -1.0086e-08 -0.0607188)
(0.616052 -1.66499e-08 -0.0556583)
(0.61407 -2.17756e-08 -0.0505936)
(0.612265 -2.52231e-08 -0.0455118)
(0.610637 -2.69388e-08 -0.0403993)
(0.609187 -2.70919e-08 -0.0352418)
(0.607916 -2.6021e-08 -0.0300242)
(0.606826 -2.41449e-08 -0.0247305)
(0.605916 -2.18318e-08 -0.019344)
(0.605189 -1.92982e-08 -0.0138471)
(0.604644 -1.66398e-08 -0.00822155)
(0.604283 -1.39454e-08 -0.00244796)
(0.604105 -1.13443e-08 0.00349379)
(0.604111 -8.94987e-09 0.00962477)
(0.6043 -6.8228e-09 0.015967)
(0.604672 -5.03276e-09 0.0225433)
(0.605225 -3.67012e-09 0.0293778)
(0.605957 -2.69325e-09 0.0364954)
(0.606866 -1.79103e-09 0.043922)
(0.607947 -5.40472e-10 0.0516847)
(0.609195 1.21008e-09 0.0598117)
(0.610604 3.225e-09 0.0683322)
(0.612165 5.24515e-09 0.0772767)
(0.613869 7.3025e-09 0.0866765)
(0.615703 9.52294e-09 0.0965644)
(0.617652 1.17149e-08 0.106974)
(0.619698 1.34144e-08 0.11794)
(0.621821 1.44023e-08 0.129499)
(0.623994 1.49155e-08 0.141686)
(0.626188 1.52917e-08 0.15454)
(0.628367 1.56429e-08 0.168098)
(0.630492 1.6095e-08 0.182397)
(0.632515 1.72631e-08 0.197475)
(0.634379 2.01735e-08 0.213369)
(0.636023 2.56267e-08 0.230112)
(0.637374 3.36574e-08 0.247739)
(0.638347 4.35937e-08 0.266276)
(0.63885 5.45979e-08 0.285748)
(0.638774 6.6097e-08 0.306172)
(0.638001 7.77518e-08 0.327555)
(0.636395 8.92123e-08 0.349896)
(0.633808 1.00076e-07 0.373176)
(0.630077 1.10213e-07 0.397362)
(0.625022 1.2017e-07 0.422401)
(0.618451 1.30948e-07 0.448213)
(0.610158 1.4257e-07 0.474689)
(0.599929 1.52076e-07 0.501689)
(0.58754 1.53754e-07 0.529032)
(0.572769 1.45815e-07 0.556495)
(0.555399 1.44565e-07 0.583807)
(0.535225 1.95212e-07 0.61065)
(0.512067 3.51245e-07 0.63665)
(0.485781 5.99823e-07 0.661385)
(0.456275 7.84968e-07 0.684383)
(0.423518 6.98285e-07 0.705129)
(0.387559 4.36858e-07 0.723074)
(0.348536 6.18745e-07 0.73764)
(0.306684 1.66956e-06 0.748225)
(0.262342 2.8251e-06 0.754198)
(0.215948 3.76796e-06 0.754845)
(0.168009 6.51906e-06 0.749204)
(0.119072 8.87987e-06 0.735539)
(0.0714094 1.50271e-05 0.708646)
(0.0301778 5.16492e-05 0.643306)
(-0.00745388 1.33836e-06 1.27483)
(-0.0138248 1.55222e-06 1.28262)
(-0.0189209 1.12644e-06 1.2523)
(-0.0214097 5.34909e-07 1.2141)
(-0.0212091 5.30646e-07 1.17193)
(-0.0184367 3.31722e-07 1.12716)
(-0.0131835 -3.36462e-09 1.08054)
(-0.00557129 -1.68434e-07 1.03256)
(0.00426645 1.01322e-07 0.983565)
(0.0161849 3.86478e-07 0.933812)
(0.0300496 2.83246e-07 0.883467)
(0.0457406 1.041e-09 0.832645)
(0.0631626 -1.28542e-07 0.781417)
(0.0822439 -7.90495e-08 0.729825)
(0.102937 5.84242e-09 0.677895)
(0.125219 3.84037e-08 0.625639)
(0.149086 2.53994e-08 0.573069)
(0.174551 3.60887e-09 0.520198)
(0.201635 -6.82376e-09 0.467048)
(0.230361 -6.576e-09 0.413656)
(0.260749 -3.68083e-09 0.360076)
(0.292802 -3.31573e-09 0.306383)
(0.326506 -5.71303e-09 0.252679)
(0.361814 -8.58512e-09 0.199098)
(0.398646 -9.87832e-09 0.145803)
(0.436885 -8.96076e-09 0.0929915)
(0.476364 -6.40924e-09 0.0408852)
(0.516892 -3.3019e-09 -0.0102569)
(0.558119 -6.16454e-10 -0.0600737)
(0.599728 1.11267e-09 -0.108245)
(0.641416 1.84873e-09 -0.154509)
(0.682871 1.88343e-09 -0.198629)
(0.723793 1.58699e-09 -0.240401)
(0.763895 1.2048e-09 -0.27966)
(0.802919 7.85691e-10 -0.316286)
(0.840632 2.45302e-10 -0.350202)
(0.876837 -5.0549e-10 -0.381374)
(0.911367 -1.45533e-09 -0.409809)
(0.944091 -2.47255e-09 -0.435547)
(0.974907 -3.35815e-09 -0.458656)
(1.00374 -3.93463e-09 -0.479232)
(1.03056 -4.11675e-09 -0.497387)
(1.05533 -3.93259e-09 -0.513248)
(1.07805 -3.49536e-09 -0.526951)
(1.09875 -2.95248e-09 -0.53864)
(1.11745 -2.43202e-09 -0.548457)
(1.1342 -2.01366e-09 -0.556548)
(1.14905 -1.72288e-09 -0.563054)
(1.16208 -1.54445e-09 -0.568112)
(1.17334 -1.44251e-09 -0.571854)
(1.18291 -1.379e-09 -0.574403)
(1.19087 -1.32444e-09 -0.575877)
(1.1973 -1.26073e-09 -0.576386)
(1.20228 -1.17972e-09 -0.57603)
(1.20589 -1.07918e-09 -0.574903)
(1.2082 -9.59852e-10 -0.57309)
(1.20931 -8.21663e-10 -0.570669)
(1.20928 -6.64331e-10 -0.567709)
(1.20819 -4.85784e-10 -0.564273)
(1.20611 -2.83032e-10 -0.560417)
(1.20311 -5.24706e-11 -0.556192)
(1.19927 2.09147e-10 -0.55164)
(1.19464 5.03713e-10 -0.546802)
(1.18928 8.30996e-10 -0.54171)
(1.18326 1.1877e-09 -0.536394)
(1.17663 1.56636e-09 -0.530878)
(1.16944 1.95667e-09 -0.525186)
(1.16175 2.34563e-09 -0.519334)
(1.15359 2.71933e-09 -0.513339)
(1.14503 3.06498e-09 -0.507213)
(1.13609 3.37301e-09 -0.500968)
(1.12683 3.63827e-09 -0.494613)
(1.11727 3.86063e-09 -0.488154)
(1.10745 4.04466e-09 -0.4816)
(1.09741 4.19806e-09 -0.474954)
(1.08718 4.32976e-09 -0.468221)
(1.07678 4.44837e-09 -0.461404)
(1.06625 4.56008e-09 -0.454508)
(1.05561 4.66867e-09 -0.447535)
(1.04488 4.77501e-09 -0.440488)
(1.03409 4.87762e-09 -0.43337)
(1.02326 4.97271e-09 -0.426183)
(1.0124 5.05405e-09 -0.41893)
(1.00154 5.11244e-09 -0.411615)
(0.990688 5.13466e-09 -0.404241)
(0.979868 5.10325e-09 -0.396812)
(0.969092 4.99723e-09 -0.389331)
(0.958373 4.7944e-09 -0.381803)
(0.947725 4.47427e-09 -0.374233)
(0.93716 4.02313e-09 -0.366624)
(0.926688 3.43808e-09 -0.358984)
(0.91632 2.73051e-09 -0.351316)
(0.906067 1.92776e-09 -0.343628)
(0.895935 1.06955e-09 -0.335924)
(0.885935 1.98397e-10 -0.328212)
(0.876074 -6.57343e-10 -0.320497)
(0.866358 -1.50583e-09 -0.312786)
(0.856794 -2.4128e-09 -0.305085)
(0.847388 -3.51499e-09 -0.297401)
(0.838146 -5.01391e-09 -0.28974)
(0.829073 -7.14659e-09 -0.282108)
(0.820172 -1.01343e-08 -0.274511)
(0.811448 -1.41201e-08 -0.266956)
(0.802904 -1.91144e-08 -0.259448)
(0.794544 -2.49632e-08 -0.251991)
(0.786369 -3.13521e-08 -0.244593)
(0.778381 -3.78426e-08 -0.237257)
(0.770582 -4.39305e-08 -0.229988)
(0.762973 -4.91078e-08 -0.22279)
(0.755555 -5.29116e-08 -0.215669)
(0.748327 -5.49468e-08 -0.208628)
(0.741289 -5.4881e-08 -0.201672)
(0.734443 -5.24399e-08 -0.194803)
(0.727786 -4.74754e-08 -0.188027)
(0.721319 -4.00292e-08 -0.181345)
(0.715041 -3.0239e-08 -0.17476)
(0.708951 -1.83761e-08 -0.168276)
(0.70305 -5.07753e-09 -0.161894)
(0.697335 8.91535e-09 -0.155616)
(0.691808 2.3143e-08 -0.149442)
(0.686466 3.67094e-08 -0.143373)
(0.68131 4.78081e-08 -0.13741)
(0.676339 5.53095e-08 -0.13155)
(0.671553 6.02345e-08 -0.125792)
(0.66695 6.45581e-08 -0.120135)
(0.662532 6.88988e-08 -0.114575)
(0.658297 7.20832e-08 -0.109108)
(0.654245 7.26057e-08 -0.103731)
(0.650375 6.99316e-08 -0.0984378)
(0.646688 6.45527e-08 -0.0932235)
(0.643184 5.72722e-08 -0.0880815)
(0.639862 4.86115e-08 -0.0830049)
(0.636722 3.87266e-08 -0.077986)
(0.633766 2.77514e-08 -0.0730163)
(0.630992 1.61779e-08 -0.0680868)
(0.628401 4.84098e-09 -0.0631877)
(0.625995 -5.47158e-09 -0.0583084)
(0.623773 -1.42679e-08 -0.0534378)
(0.621737 -2.12433e-08 -0.0485639)
(0.619888 -2.61846e-08 -0.0436739)
(0.618226 -2.90595e-08 -0.0387544)
(0.616753 -3.00968e-08 -0.033791)
(0.61547 -2.97547e-08 -0.0287687)
(0.61438 -2.86179e-08 -0.0236716)
(0.613482 -2.72196e-08 -0.0184829)
(0.612778 -2.58616e-08 -0.0131851)
(0.612271 -2.4586e-08 -0.00775957)
(0.611961 -2.33112e-08 -0.002187)
(0.611849 -2.19501e-08 0.00355302)
(0.611938 -2.03879e-08 0.00948185)
(0.612226 -1.84656e-08 0.0156219)
(0.612715 -1.61599e-08 0.0219965)
(0.613406 -1.3759e-08 0.0286304)
(0.614296 -1.16382e-08 0.0355492)
(0.615386 -9.74643e-09 0.0427797)
(0.616672 -7.49803e-09 0.0503503)
(0.618152 -4.42753e-09 0.0582902)
(0.619821 -8.08509e-10 0.0666304)
(0.621672 2.74549e-09 0.0754029)
(0.6237 6.18964e-09 0.0846415)
(0.625893 1.01154e-08 0.0943811)
(0.628239 1.48065e-08 0.104658)
(0.630723 1.97228e-08 0.115512)
(0.633328 2.41668e-08 0.12698)
(0.636029 2.80059e-08 0.139106)
(0.638802 3.13724e-08 0.15193)
(0.641613 3.38938e-08 0.165496)
(0.644425 3.48756e-08 0.17985)
(0.647193 3.43496e-08 0.195036)
(0.649864 3.35176e-08 0.211098)
(0.652377 3.40905e-08 0.228082)
(0.654659 3.7247e-08 0.246031)
(0.656629 4.31614e-08 0.264985)
(0.658191 5.14058e-08 0.284981)
(0.659235 6.15469e-08 0.306051)
(0.659637 7.31613e-08 0.328217)
(0.659257 8.54723e-08 0.351495)
(0.657935 9.72667e-08 0.375883)
(0.655495 1.07423e-07 0.401366)
(0.65174 1.15755e-07 0.427907)
(0.646458 1.23285e-07 0.455444)
(0.639414 1.3116e-07 0.483883)
(0.630362 1.38381e-07 0.513093)
(0.619042 1.40541e-07 0.542901)
(0.605184 1.3386e-07 0.573085)
(0.588523 1.27257e-07 0.603367)
(0.568799 1.55118e-07 0.633407)
(0.545774 2.65466e-07 0.662802)
(0.519248 4.57449e-07 0.691083)
(0.489071 6.07236e-07 0.717715)
(0.455166 5.33415e-07 0.742103)
(0.417543 2.91873e-07 0.763603)
(0.376325 3.54651e-07 0.781527)
(0.331752 1.04815e-06 0.795158)
(0.284193 1.69532e-06 0.803746)
(0.234146 1.82e-06 0.806466)
(0.182223 3.27494e-06 0.802263)
(0.12908 4.65774e-06 0.789286)
(0.0773429 9.17407e-06 0.762114)
(0.0326204 3.45624e-05 0.693707)
(-0.00745083 1.33837e-06 1.27483)
(-0.0138238 1.55222e-06 1.28263)
(-0.018921 1.12644e-06 1.2523)
(-0.0214096 5.34909e-07 1.2141)
(-0.0212093 5.30646e-07 1.17193)
(-0.0184375 3.31722e-07 1.12716)
(-0.0131838 -3.36462e-09 1.08054)
(-0.0055708 -1.68434e-07 1.03256)
(0.00426651 1.01322e-07 0.983565)
(0.0161846 3.86478e-07 0.933812)
(0.0300493 2.83246e-07 0.883467)
(0.0457405 1.041e-09 0.832645)
(0.0631626 -1.28542e-07 0.781417)
(0.082244 -7.90495e-08 0.729825)
(0.102937 5.84243e-09 0.677895)
(0.125219 3.84037e-08 0.625639)
(0.149086 2.53994e-08 0.573069)
(0.174551 3.60887e-09 0.520198)
(0.201635 -6.82376e-09 0.467048)
(0.230361 -6.576e-09 0.413656)
(0.260749 -3.68083e-09 0.360076)
(0.292803 -3.31573e-09 0.306383)
(0.326506 -5.71303e-09 0.252679)
(0.361814 -8.58511e-09 0.199098)
(0.398647 -9.87832e-09 0.145803)
(0.436885 -8.96076e-09 0.0929915)
(0.476364 -6.40923e-09 0.0408852)
(0.516892 -3.3019e-09 -0.0102569)
(0.55812 -6.16454e-10 -0.0600737)
(0.599728 1.11267e-09 -0.108245)
(0.641416 1.84873e-09 -0.154509)
(0.682871 1.88343e-09 -0.198629)
(0.723793 1.58699e-09 -0.240401)
(0.763895 1.2048e-09 -0.27966)
(0.802919 7.85691e-10 -0.316286)
(0.840632 2.45302e-10 -0.350202)
(0.876837 -5.0549e-10 -0.381374)
(0.911367 -1.45533e-09 -0.409809)
(0.944091 -2.47255e-09 -0.435547)
(0.974907 -3.35816e-09 -0.458656)
(1.00374 -3.93463e-09 -0.479232)
(1.03056 -4.11675e-09 -0.497387)
(1.05533 -3.93259e-09 -0.513248)
(1.07805 -3.49536e-09 -0.526951)
(1.09875 -2.95249e-09 -0.53864)
(1.11745 -2.43202e-09 -0.548457)
(1.1342 -2.01366e-09 -0.556548)
(1.14905 -1.72288e-09 -0.563054)
(1.16208 -1.54445e-09 -0.568112)
(1.17334 -1.44251e-09 -0.571854)
(1.18291 -1.379e-09 -0.574403)
(1.19087 -1.32444e-09 -0.575877)
(1.1973 -1.26073e-09 -0.576386)
(1.20228 -1.17972e-09 -0.57603)
(1.20589 -1.07918e-09 -0.574903)
(1.2082 -9.59852e-10 -0.57309)
(1.20931 -8.21664e-10 -0.570669)
(1.20928 -6.64332e-10 -0.567709)
(1.20819 -4.85785e-10 -0.564273)
(1.20611 -2.83033e-10 -0.560417)
(1.20311 -5.24706e-11 -0.556192)
(1.19927 2.09147e-10 -0.55164)
(1.19464 5.03713e-10 -0.546802)
(1.18928 8.30997e-10 -0.54171)
(1.18326 1.1877e-09 -0.536394)
(1.17663 1.56636e-09 -0.530878)
(1.16944 1.95667e-09 -0.525186)
(1.16175 2.34563e-09 -0.519334)
(1.15359 2.71933e-09 -0.513339)
(1.14503 3.06498e-09 -0.507213)
(1.13609 3.37301e-09 -0.500968)
(1.12683 3.63827e-09 -0.494613)
(1.11727 3.86064e-09 -0.488154)
(1.10745 4.04466e-09 -0.4816)
(1.09741 4.19806e-09 -0.474954)
(1.08718 4.32976e-09 -0.468221)
(1.07678 4.44837e-09 -0.461404)
(1.06625 4.56008e-09 -0.454508)
(1.05561 4.66867e-09 -0.447535)
(1.04488 4.77501e-09 -0.440488)
(1.03409 4.87762e-09 -0.43337)
(1.02326 4.97271e-09 -0.426183)
(1.0124 5.05406e-09 -0.41893)
(1.00154 5.11244e-09 -0.411615)
(0.990688 5.13466e-09 -0.404241)
(0.979868 5.10325e-09 -0.396812)
(0.969092 4.99723e-09 -0.389331)
(0.958373 4.7944e-09 -0.381803)
(0.947725 4.47427e-09 -0.374233)
(0.93716 4.02314e-09 -0.366624)
(0.926688 3.43808e-09 -0.358984)
(0.91632 2.73051e-09 -0.351316)
(0.906067 1.92776e-09 -0.343628)
(0.895935 1.06955e-09 -0.335924)
(0.885935 1.98397e-10 -0.328212)
(0.876074 -6.57343e-10 -0.320497)
(0.866358 -1.50583e-09 -0.312786)
(0.856794 -2.4128e-09 -0.305085)
(0.847388 -3.51499e-09 -0.297401)
(0.838146 -5.01392e-09 -0.289739)
(0.829073 -7.14659e-09 -0.282108)
(0.820172 -1.01343e-08 -0.274511)
(0.811448 -1.41201e-08 -0.266956)
(0.802905 -1.91144e-08 -0.259447)
(0.794544 -2.49632e-08 -0.251991)
(0.786369 -3.13521e-08 -0.244593)
(0.778381 -3.78426e-08 -0.237256)
(0.770582 -4.39306e-08 -0.229987)
(0.762973 -4.91079e-08 -0.22279)
(0.755555 -5.29117e-08 -0.215669)
(0.748327 -5.49468e-08 -0.208628)
(0.741289 -5.4881e-08 -0.201672)
(0.734443 -5.244e-08 -0.194803)
(0.727786 -4.74754e-08 -0.188027)
(0.721319 -4.00293e-08 -0.181345)
(0.715041 -3.0239e-08 -0.17476)
(0.708951 -1.83761e-08 -0.168276)
(0.70305 -5.07754e-09 -0.161894)
(0.697335 8.91536e-09 -0.155616)
(0.691808 2.3143e-08 -0.149442)
(0.686466 3.67094e-08 -0.143373)
(0.68131 4.78082e-08 -0.13741)
(0.676339 5.53096e-08 -0.13155)
(0.671553 6.02346e-08 -0.125792)
(0.66695 6.45582e-08 -0.120135)
(0.662532 6.88989e-08 -0.114575)
(0.658297 7.20833e-08 -0.109108)
(0.654245 7.26058e-08 -0.103731)
(0.650375 6.99317e-08 -0.0984377)
(0.646688 6.45527e-08 -0.0932234)
(0.643184 5.72723e-08 -0.0880815)
(0.639862 4.86115e-08 -0.0830049)
(0.636722 3.87267e-08 -0.077986)
(0.633766 2.77514e-08 -0.0730163)
(0.630992 1.61779e-08 -0.0680868)
(0.628401 4.84099e-09 -0.0631877)
(0.625995 -5.47158e-09 -0.0583084)
(0.623773 -1.42679e-08 -0.0534379)
(0.621737 -2.12434e-08 -0.0485639)
(0.619888 -2.61846e-08 -0.043674)
(0.618226 -2.90595e-08 -0.0387544)
(0.616753 -3.00969e-08 -0.0337911)
(0.61547 -2.97547e-08 -0.0287688)
(0.61438 -2.86179e-08 -0.0236716)
(0.613482 -2.72197e-08 -0.018483)
(0.612778 -2.58616e-08 -0.0131851)
(0.612271 -2.4586e-08 -0.0077596)
(0.611961 -2.33113e-08 -0.00218702)
(0.611849 -2.19501e-08 0.003553)
(0.611938 -2.0388e-08 0.00948184)
(0.612226 -1.84656e-08 0.0156219)
(0.612716 -1.61599e-08 0.0219965)
(0.613406 -1.3759e-08 0.0286304)
(0.614296 -1.16382e-08 0.0355491)
(0.615386 -9.74644e-09 0.0427797)
(0.616672 -7.49803e-09 0.0503502)
(0.618152 -4.42753e-09 0.0582902)
(0.619821 -8.0851e-10 0.0666303)
(0.621672 2.74549e-09 0.0754029)
(0.6237 6.18964e-09 0.0846414)
(0.625893 1.01154e-08 0.094381)
(0.628239 1.48065e-08 0.104658)
(0.630723 1.97228e-08 0.115512)
(0.633328 2.41668e-08 0.12698)
(0.63603 2.80059e-08 0.139105)
(0.638802 3.13724e-08 0.15193)
(0.641613 3.38938e-08 0.165496)
(0.644425 3.48756e-08 0.17985)
(0.647193 3.43496e-08 0.195036)
(0.649864 3.35176e-08 0.211098)
(0.652377 3.40905e-08 0.228082)
(0.65466 3.7247e-08 0.246031)
(0.656629 4.31614e-08 0.264985)
(0.658191 5.14058e-08 0.284981)
(0.659235 6.15469e-08 0.306051)
(0.659638 7.31613e-08 0.328217)
(0.659257 8.54724e-08 0.351494)
(0.657935 9.72667e-08 0.375883)
(0.655495 1.07423e-07 0.401366)
(0.651741 1.15755e-07 0.427907)
(0.646459 1.23285e-07 0.455444)
(0.639415 1.3116e-07 0.483882)
(0.630364 1.38381e-07 0.513092)
(0.619043 1.40541e-07 0.542901)
(0.605186 1.3386e-07 0.573084)
(0.588525 1.27257e-07 0.603366)
(0.568801 1.55118e-07 0.633406)
(0.545777 2.65466e-07 0.6628)
(0.519252 4.5745e-07 0.691081)
(0.489076 6.07237e-07 0.717712)
(0.455171 5.33415e-07 0.7421)
(0.41755 2.91873e-07 0.763598)
(0.376333 3.54652e-07 0.781521)
(0.33176 1.04816e-06 0.79515)
(0.284203 1.69533e-06 0.803735)
(0.234158 1.82002e-06 0.80645)
(0.182237 3.27497e-06 0.802238)
(0.129094 4.65781e-06 0.789246)
(0.077354 9.17412e-06 0.762042)
(0.0326262 3.45642e-05 0.693563)
(-0.00671236 5.41299e-06 1.28431)
(-0.0110788 1.61929e-06 1.28837)
(-0.0134907 8.01482e-07 1.2549)
(-0.0129297 -2.75135e-08 1.2137)
(-0.00936645 3.9347e-08 1.16865)
(-0.00298146 -1.3611e-07 1.12111)
(0.00609992 -5.42022e-08 1.07183)
(0.0177021 -4.17547e-07 1.02137)
(0.0316372 -3.08591e-07 0.970069)
(0.0477119 1.78568e-07 0.918168)
(0.0657516 3.18395e-07 0.865826)
(0.0856044 1.10952e-07 0.813132)
(0.107154 -6.46865e-08 0.760129)
(0.130319 -7.58876e-08 0.70683)
(0.155054 -1.78485e-08 0.653227)
(0.181343 1.74207e-08 0.599307)
(0.209195 1.73067e-08 0.545063)
(0.238635 5.69216e-09 0.490493)
(0.269697 -7.25178e-10 0.435617)
(0.302414 -1.00394e-09 0.380473)
(0.336804 -5.76078e-10 0.325128)
(0.372865 -2.8298e-09 0.269681)
(0.410564 -7.21378e-09 0.214265)
(0.449829 -1.12971e-08 0.159052)
(0.490541 -1.31463e-08 0.104249)
(0.532534 -1.22968e-08 0.0500974)
(0.575607 -9.48826e-09 -0.00312487)
(0.619404 -5.94754e-09 -0.0550344)
(0.663553 -2.76131e-09 -0.105256)
(0.707732 -5.26252e-10 -0.153493)
(0.751601 6.78932e-10 -0.199485)
(0.794832 1.12655e-09 -0.243)
(0.837118 1.17221e-09 -0.283853)
(0.878177 1.0525e-09 -0.321908)
(0.917762 8.14566e-10 -0.357076)
(0.955659 3.78598e-10 -0.389316)
(0.991694 -3.35675e-10 -0.418633)
(1.02573 -1.30334e-09 -0.445068)
(1.05766 -2.37429e-09 -0.468696)
(1.08742 -3.32799e-09 -0.489621)
(1.11496 -3.96699e-09 -0.507964)
(1.14026 -4.19047e-09 -0.523867)
(1.16334 -4.01894e-09 -0.537477)
(1.18422 -3.56734e-09 -0.548953)
(1.20295 -2.98914e-09 -0.558451)
(1.21956 -2.42438e-09 -0.566131)
(1.23414 -1.96344e-09 -0.572148)
(1.24676 -1.64024e-09 -0.576651)
(1.2575 -1.44348e-09 -0.579785)
(1.26643 -1.33697e-09 -0.581686)
(1.27365 -1.27931e-09 -0.582481)
(1.27926 -1.236e-09 -0.582291)
(1.28333 -1.18344e-09 -0.581224)
(1.28596 -1.10938e-09 -0.579382)
(1.28723 -1.00899e-09 -0.576858)
(1.28724 -8.8146e-10 -0.573735)
(1.28606 -7.27347e-10 -0.570088)
(1.28379 -5.4701e-10 -0.565985)
(1.28049 -3.39834e-10 -0.561487)
(1.27624 -1.04951e-10 -0.556645)
(1.27112 1.59837e-10 -0.551508)
(1.2652 4.55502e-10 -0.546115)
(1.25853 7.81942e-10 -0.540503)
(1.25119 1.13665e-09 -0.534701)
(1.24324 1.5138e-09 -0.528736)
(1.23472 1.90419e-09 -0.52263)
(1.2257 2.29583e-09 -0.516401)
(1.21621 2.67508e-09 -0.510065)
(1.20632 3.02873e-09 -0.503634)
(1.19607 3.34639e-09 -0.497118)
(1.18549 3.62206e-09 -0.490527)
(1.17463 3.85483e-09 -0.483866)
(1.16352 4.04966e-09 -0.47714)
(1.15219 4.21536e-09 -0.470354)
(1.14069 4.36278e-09 -0.463509)
(1.12904 4.50201e-09 -0.45661)
(1.11726 4.64092e-09 -0.449657)
(1.1054 4.78366e-09 -0.442652)
(1.09346 4.93067e-09 -0.435595)
(1.08147 5.07901e-09 -0.428489)
(1.06946 5.2228e-09 -0.421334)
(1.05744 5.35345e-09 -0.414132)
(1.04544 5.45864e-09 -0.406883)
(1.03347 5.52122e-09 -0.399591)
(1.02154 5.51857e-09 -0.392257)
(1.00968 5.42226e-09 -0.384883)
(0.997894 5.19995e-09 -0.377472)
(0.986198 4.81955e-09 -0.370028)
(0.974604 4.25457e-09 -0.362554)
(0.963123 3.49079e-09 -0.355055)
(0.951766 2.53315e-09 -0.347534)
(0.940543 1.4103e-09 -0.339996)
(0.929461 1.75764e-10 -0.332447)
(0.918531 -1.10164e-09 -0.324892)
(0.907758 -2.35627e-09 -0.317336)
(0.897151 -3.5565e-09 -0.309784)
(0.886716 -4.73985e-09 -0.302244)
(0.876459 -6.0406e-09 -0.29472)
(0.866385 -7.69594e-09 -0.287218)
(0.856499 -1.00156e-08 -0.279745)
(0.846807 -1.33157e-08 -0.272306)
(0.83731 -1.78273e-08 -0.264906)
(0.828014 -2.36086e-08 -0.257551)
(0.818921 -3.04881e-08 -0.250246)
(0.810033 -3.80646e-08 -0.242996)
(0.801352 -4.57634e-08 -0.235805)
(0.79288 -5.2931e-08 -0.228678)
(0.784618 -5.89381e-08 -0.221619)
(0.776565 -6.32596e-08 -0.214632)
(0.768723 -6.55143e-08 -0.207722)
(0.761089 -6.54573e-08 -0.200892)
(0.753665 -6.29149e-08 -0.194146)
(0.746448 -5.76891e-08 -0.187487)
(0.739439 -4.96325e-08 -0.180919)
(0.732635 -3.88448e-08 -0.174445)
(0.726037 -2.55005e-08 -0.168068)
(0.719642 -9.82193e-09 -0.161791)
(0.71345 7.25782e-09 -0.155614)
(0.707459 2.44496e-08 -0.14954)
(0.70167 4.16358e-08 -0.143571)
(0.696079 5.87639e-08 -0.137705)
(0.690688 7.32208e-08 -0.131944)
(0.685494 8.16694e-08 -0.126285)
(0.680498 8.43478e-08 -0.120729)
(0.675697 8.48861e-08 -0.115272)
(0.671093 8.60652e-08 -0.109911)
(0.666683 8.75546e-08 -0.104644)
(0.662467 8.74123e-08 -0.0994651)
(0.658445 8.43671e-08 -0.0943703)
(0.654615 7.85329e-08 -0.0893539)
(0.650979 7.07454e-08 -0.0844096)
(0.647535 6.16774e-08 -0.0795305)
(0.644283 5.14138e-08 -0.0747091)
(0.641224 3.97233e-08 -0.0699371)
(0.638357 2.67907e-08 -0.0652057)
(0.635683 1.36014e-08 -0.0605053)
(0.633203 1.41252e-09 -0.0558254)
(0.630917 -8.97514e-09 -0.051155)
(0.628826 -1.72836e-08 -0.0464824)
(0.626932 -2.34547e-08 -0.0417949)
(0.625236 -2.75598e-08 -0.0370792)
(0.623738 -2.98857e-08 -0.0323212)
(0.622442 -3.09594e-08 -0.0275059)
(0.621349 -3.14708e-08 -0.0226176)
(0.62046 -3.2071e-08 -0.0176395)
(0.619777 -3.31267e-08 -0.0125541)
(0.619304 -3.46135e-08 -0.00734287)
(0.619042 -3.62424e-08 -0.00198643)
(0.618992 -3.76446e-08 0.00353573)
(0.619159 -3.83639e-08 0.00924515)
(0.619542 -3.77718e-08 0.0151645)
(0.620144 -3.53836e-08 0.0213175)
(0.620967 -3.14819e-08 0.0277293)
(0.622011 -2.71496e-08 0.0344261)
(0.623277 -2.32128e-08 0.0414357)
(0.624764 -1.92327e-08 0.048787)
(0.626472 -1.41278e-08 0.0565107)
(0.628397 -7.83398e-09 0.0646388)
(0.630538 -1.57324e-09 0.0732053)
(0.632888 3.92763e-09 0.0822456)
(0.63544 9.64465e-09 0.0917971)
(0.638187 1.68843e-08 0.101899)
(0.641114 2.55441e-08 0.112593)
(0.644209 3.44148e-08 0.123922)
(0.647452 4.27543e-08 0.135932)
(0.650819 5.05566e-08 0.14867)
(0.654283 5.70528e-08 0.162186)
(0.65781 6.03422e-08 0.17653)
(0.661358 5.90561e-08 0.191756)
(0.664879 5.37543e-08 0.207918)
(0.668314 4.67652e-08 0.225071)
(0.671593 4.08393e-08 0.243269)
(0.674637 3.78225e-08 0.262566)
(0.67735 3.8504e-08 0.283013)
(0.679623 4.3314e-08 0.304658)
(0.681328 5.24714e-08 0.327543)
(0.68232 6.54158e-08 0.3517)
(0.682432 8.0399e-08 0.377151)
(0.681475 9.49967e-08 0.4039)
(0.679237 1.07363e-07 0.431935)
(0.675483 1.17132e-07 0.461213)
(0.669952 1.25176e-07 0.491662)
(0.662362 1.3205e-07 0.52317)
(0.652411 1.36186e-07 0.555578)
(0.639781 1.35188e-07 0.58867)
(0.624145 1.33861e-07 0.622167)
(0.60518 1.55522e-07 0.655717)
(0.582578 2.36629e-07 0.688887)
(0.556062 3.79284e-07 0.721162)
(0.525411 4.89222e-07 0.751938)
(0.490478 4.25528e-07 0.780532)
(0.451221 2.30399e-07 0.806185)
(0.407727 2.43668e-07 0.828077)
(0.360232 6.79067e-07 0.845346)
(0.309135 1.09618e-06 0.857085)
(0.255004 1.18294e-06 0.862324)
(0.198567 2.01303e-06 0.859869)
(0.14063 3.13671e-06 0.84771)
(0.0841743 6.48508e-06 0.820121)
(0.0353726 2.46185e-05 0.748247)
(-0.00670997 5.41303e-06 1.28431)
(-0.0110782 1.61929e-06 1.28836)
(-0.0134916 8.01483e-07 1.2549)
(-0.01293 -2.75135e-08 1.2137)
(-0.00936655 3.93471e-08 1.16865)
(-0.00298249 -1.3611e-07 1.1211)
(0.00609958 -5.42022e-08 1.07183)
(0.0177028 -4.17547e-07 1.02137)
(0.0316376 -3.08592e-07 0.970069)
(0.0477119 1.78568e-07 0.918168)
(0.0657513 3.18395e-07 0.865826)
(0.085604 1.10952e-07 0.813132)
(0.107154 -6.46865e-08 0.76013)
(0.130319 -7.58876e-08 0.70683)
(0.155054 -1.78485e-08 0.653226)
(0.181343 1.74207e-08 0.599307)
(0.209195 1.73068e-08 0.545063)
(0.238635 5.69217e-09 0.490493)
(0.269697 -7.25178e-10 0.435617)
(0.302414 -1.00394e-09 0.380473)
(0.336804 -5.76078e-10 0.325128)
(0.372865 -2.8298e-09 0.269681)
(0.410564 -7.21378e-09 0.214265)
(0.449829 -1.12971e-08 0.159052)
(0.490541 -1.31463e-08 0.104249)
(0.532534 -1.22968e-08 0.0500974)
(0.575607 -9.48826e-09 -0.00312487)
(0.619404 -5.94754e-09 -0.0550344)
(0.663554 -2.76131e-09 -0.105256)
(0.707732 -5.26252e-10 -0.153493)
(0.751601 6.78932e-10 -0.199485)
(0.794832 1.12655e-09 -0.243)
(0.837118 1.17221e-09 -0.283853)
(0.878177 1.0525e-09 -0.321908)
(0.917762 8.14566e-10 -0.357076)
(0.955659 3.78598e-10 -0.389316)
(0.991694 -3.35675e-10 -0.418633)
(1.02573 -1.30334e-09 -0.445068)
(1.05766 -2.37429e-09 -0.468696)
(1.08742 -3.32799e-09 -0.489621)
(1.11496 -3.96699e-09 -0.507964)
(1.14026 -4.19047e-09 -0.523867)
(1.16334 -4.01894e-09 -0.537478)
(1.18422 -3.56734e-09 -0.548953)
(1.20295 -2.98915e-09 -0.558451)
(1.21956 -2.42438e-09 -0.566131)
(1.23414 -1.96344e-09 -0.572148)
(1.24676 -1.64024e-09 -0.576651)
(1.2575 -1.44348e-09 -0.579785)
(1.26643 -1.33697e-09 -0.581686)
(1.27365 -1.27931e-09 -0.582481)
(1.27926 -1.236e-09 -0.582291)
(1.28333 -1.18344e-09 -0.581224)
(1.28596 -1.10938e-09 -0.579382)
(1.28723 -1.00899e-09 -0.576858)
(1.28724 -8.81461e-10 -0.573735)
(1.28606 -7.27348e-10 -0.570088)
(1.28379 -5.4701e-10 -0.565985)
(1.28049 -3.39834e-10 -0.561487)
(1.27624 -1.04951e-10 -0.556645)
(1.27112 1.59837e-10 -0.551508)
(1.2652 4.55502e-10 -0.546115)
(1.25853 7.81942e-10 -0.540503)
(1.25119 1.13665e-09 -0.534701)
(1.24324 1.5138e-09 -0.528736)
(1.23472 1.90419e-09 -0.52263)
(1.2257 2.29584e-09 -0.516401)
(1.21622 2.67508e-09 -0.510065)
(1.20632 3.02873e-09 -0.503634)
(1.19607 3.34639e-09 -0.497118)
(1.18549 3.62206e-09 -0.490527)
(1.17463 3.85483e-09 -0.483866)
(1.16352 4.04966e-09 -0.47714)
(1.15219 4.21536e-09 -0.470354)
(1.14069 4.36278e-09 -0.463509)
(1.12904 4.50202e-09 -0.45661)
(1.11726 4.64092e-09 -0.449657)
(1.1054 4.78366e-09 -0.442652)
(1.09346 4.93067e-09 -0.435595)
(1.08147 5.07901e-09 -0.428489)
(1.06946 5.2228e-09 -0.421334)
(1.05744 5.35345e-09 -0.414132)
(1.04544 5.45864e-09 -0.406883)
(1.03347 5.52122e-09 -0.399591)
(1.02154 5.51857e-09 -0.392257)
(1.00968 5.42226e-09 -0.384883)
(0.997894 5.19996e-09 -0.377472)
(0.986198 4.81955e-09 -0.370028)
(0.974604 4.25457e-09 -0.362554)
(0.963123 3.49079e-09 -0.355055)
(0.951766 2.53315e-09 -0.347534)
(0.940543 1.4103e-09 -0.339996)
(0.929461 1.75764e-10 -0.332447)
(0.918531 -1.10164e-09 -0.324892)
(0.907758 -2.35627e-09 -0.317336)
(0.897151 -3.55651e-09 -0.309784)
(0.886716 -4.73985e-09 -0.302244)
(0.876459 -6.04061e-09 -0.29472)
(0.866385 -7.69594e-09 -0.287218)
(0.8565 -1.00156e-08 -0.279745)
(0.846807 -1.33157e-08 -0.272306)
(0.83731 -1.78273e-08 -0.264906)
(0.828014 -2.36086e-08 -0.257551)
(0.818921 -3.04882e-08 -0.250246)
(0.810033 -3.80647e-08 -0.242995)
(0.801353 -4.57634e-08 -0.235805)
(0.792881 -5.2931e-08 -0.228678)
(0.784618 -5.89382e-08 -0.221619)
(0.776565 -6.32597e-08 -0.214632)
(0.768723 -6.55144e-08 -0.207722)
(0.761089 -6.54574e-08 -0.200892)
(0.753665 -6.29149e-08 -0.194146)
(0.746448 -5.76892e-08 -0.187487)
(0.739439 -4.96325e-08 -0.180919)
(0.732635 -3.88448e-08 -0.174445)
(0.726037 -2.55005e-08 -0.168068)
(0.719642 -9.82194e-09 -0.161791)
(0.71345 7.25783e-09 -0.155614)
(0.70746 2.44497e-08 -0.14954)
(0.70167 4.16358e-08 -0.143571)
(0.696079 5.87639e-08 -0.137705)
(0.690688 7.32208e-08 -0.131943)
(0.685494 8.16695e-08 -0.126285)
(0.680498 8.43479e-08 -0.120729)
(0.675697 8.48862e-08 -0.115272)
(0.671093 8.60653e-08 -0.109911)
(0.666683 8.75547e-08 -0.104644)
(0.662467 8.74124e-08 -0.099465)
(0.658445 8.43672e-08 -0.0943703)
(0.654615 7.8533e-08 -0.0893539)
(0.650979 7.07455e-08 -0.0844095)
(0.647535 6.16774e-08 -0.0795305)
(0.644283 5.14139e-08 -0.0747091)
(0.641224 3.97234e-08 -0.0699371)
(0.638357 2.67908e-08 -0.0652057)
(0.635683 1.36014e-08 -0.0605053)
(0.633203 1.41252e-09 -0.0558254)
(0.630917 -8.97515e-09 -0.051155)
(0.628826 -1.72836e-08 -0.0464824)
(0.626932 -2.34547e-08 -0.0417949)
(0.625236 -2.75599e-08 -0.0370793)
(0.623738 -2.98857e-08 -0.0323213)
(0.622442 -3.09594e-08 -0.027506)
(0.621349 -3.14708e-08 -0.0226176)
(0.62046 -3.20711e-08 -0.0176395)
(0.619777 -3.31267e-08 -0.0125541)
(0.619304 -3.46136e-08 -0.00734289)
(0.619042 -3.62424e-08 -0.00198644)
(0.618992 -3.76446e-08 0.00353573)
(0.619159 -3.8364e-08 0.00924515)
(0.619542 -3.77719e-08 0.0151645)
(0.620144 -3.53836e-08 0.0213175)
(0.620967 -3.14819e-08 0.0277293)
(0.622011 -2.71496e-08 0.0344261)
(0.623277 -2.32128e-08 0.0414356)
(0.624764 -1.92327e-08 0.0487869)
(0.626472 -1.41278e-08 0.0565106)
(0.628397 -7.83398e-09 0.0646387)
(0.630538 -1.57324e-09 0.0732052)
(0.632888 3.92763e-09 0.0822455)
(0.635441 9.64466e-09 0.091797)
(0.638187 1.68843e-08 0.101899)
(0.641115 2.55441e-08 0.112593)
(0.644209 3.44148e-08 0.123922)
(0.647452 4.27543e-08 0.135932)
(0.650819 5.05567e-08 0.14867)
(0.654283 5.70529e-08 0.162185)
(0.65781 6.03422e-08 0.17653)
(0.661359 5.90561e-08 0.191756)
(0.664879 5.37543e-08 0.207918)
(0.668314 4.67652e-08 0.225071)
(0.671594 4.08393e-08 0.243269)
(0.674637 3.78225e-08 0.262566)
(0.677351 3.8504e-08 0.283013)
(0.679624 4.3314e-08 0.304658)
(0.681329 5.24715e-08 0.327543)
(0.682321 6.54158e-08 0.3517)
(0.682432 8.0399e-08 0.377151)
(0.681475 9.49968e-08 0.4039)
(0.679238 1.07363e-07 0.431934)
(0.675484 1.17132e-07 0.461212)
(0.669953 1.25176e-07 0.491661)
(0.662364 1.3205e-07 0.523169)
(0.652413 1.36187e-07 0.555577)
(0.639782 1.35188e-07 0.588669)
(0.624147 1.33861e-07 0.622166)
(0.605183 1.55522e-07 0.655716)
(0.582581 2.36629e-07 0.688886)
(0.556065 3.79284e-07 0.72116)
(0.525414 4.89222e-07 0.751935)
(0.490482 4.25528e-07 0.780528)
(0.451227 2.30399e-07 0.80618)
(0.407734 2.43668e-07 0.828071)
(0.360239 6.79068e-07 0.845338)
(0.309143 1.09618e-06 0.857075)
(0.255013 1.18294e-06 0.86231)
(0.198577 2.01304e-06 0.859847)
(0.140639 3.13673e-06 0.847676)
(0.0841797 6.48513e-06 0.820063)
(0.0353735 2.46195e-05 0.748137)
(-0.00627689 5.22099e-06 1.29223)
(-0.00822799 -9.21227e-07 1.2912)
(-0.00731486 -6.64122e-07 1.25418)
(-0.00314896 -8.83302e-07 1.20962)
(0.00439261 -5.63616e-07 1.16139)
(0.0150367 -4.92848e-07 1.1108)
(0.0286306 2.20173e-07 1.05868)
(0.0449294 -2.84268e-07 1.00559)
(0.0636729 -5.07487e-07 0.951886)
(0.084601 -5.35681e-08 0.897805)
(0.107483 2.3834e-07 0.843477)
(0.132128 1.5395e-07 0.788953)
(0.158398 7.42212e-09 0.734234)
(0.186203 -3.00038e-08 0.679286)
(0.215503 -4.66851e-09 0.624064)
(0.246295 1.31361e-08 0.568523)
(0.278606 1.04727e-08 0.512629)
(0.312479 3.32451e-09 0.456371)
(0.34796 1.73967e-09 0.399767)
(0.385087 3.69933e-09 0.342866)
(0.423877 3.69476e-09 0.285759)
(0.464311 -4.77023e-10 0.228577)
(0.506327 -7.04018e-09 0.171497)
(0.549814 -1.28297e-08 0.114739)
(0.594604 -1.56682e-08 0.058563)
(0.640484 -1.51652e-08 0.00326843)
(0.687099 -1.22652e-08 -0.0507364)
(0.734013 -8.40683e-09 -0.103016)
(0.78088 -4.81659e-09 -0.153237)
(0.827334 -2.16263e-09 -0.201108)
(0.873019 -5.46275e-10 -0.246373)
(0.917603 2.86852e-10 -0.288823)
(0.960784 6.77308e-10 -0.328303)
(1.0023 8.45837e-10 -0.364712)
(1.04191 8.26038e-10 -0.398003)
(1.07945 5.30024e-10 -0.428175)
(1.11477 -1.19864e-10 -0.455274)
(1.14776 -1.08731e-09 -0.479381)
(1.17836 -2.20165e-09 -0.500605)
(1.20653 -3.21966e-09 -0.519083)
(1.23226 -3.92241e-09 -0.534966)
(1.25556 -4.19328e-09 -0.548418)
(1.27648 -4.04512e-09 -0.559611)
(1.29506 -3.59204e-09 -0.568717)
(1.31137 -2.99378e-09 -0.575911)
(1.3255 -2.39921e-09 -0.581361)
(1.33753 -1.90808e-09 -0.585232)
(1.34754 -1.56165e-09 -0.587681)
(1.35565 -1.35201e-09 -0.588856)
(1.36194 -1.24376e-09 -0.588896)
(1.36652 -1.19224e-09 -0.587931)
(1.36949 -1.15879e-09 -0.586079)
(1.37095 -1.11563e-09 -0.583452)
(1.37099 -1.04656e-09 -0.580147)
(1.36971 -9.44358e-10 -0.576256)
(1.36721 -8.07242e-10 -0.571858)
(1.36357 -6.36079e-10 -0.567028)
(1.35888 -4.32173e-10 -0.561828)
(1.35322 -1.96804e-10 -0.556315)
(1.34667 6.9852e-11 -0.550539)
(1.3393 3.67103e-10 -0.544543)
(1.33118 6.94208e-10 -0.538364)
(1.32238 1.04861e-09 -0.532033)
(1.31296 1.42551e-09 -0.525577)
(1.30298 1.81695e-09 -0.51902)
(1.2925 2.21181e-09 -0.512379)
(1.28157 2.59716e-09 -0.505669)
(1.27024 2.95989e-09 -0.498903)
(1.25856 3.28846e-09 -0.492091)
(1.24656 3.57606e-09 -0.485239)
(1.2343 3.82141e-09 -0.478354)
(1.2218 4.02892e-09 -0.471438)
(1.2091 4.20875e-09 -0.464495)
(1.19624 4.37307e-09 -0.457526)
(1.18325 4.53429e-09 -0.450532)
(1.17016 4.70249e-09 -0.443512)
(1.15699 4.88229e-09 -0.436468)
(1.14376 5.07468e-09 -0.429397)
(1.13052 5.27506e-09 -0.422301)
(1.11726 5.47546e-09 -0.415177)
(1.10402 5.66455e-09 -0.408027)
(1.09081 5.82672e-09 -0.400848)
(1.07766 5.94111e-09 -0.393643)
(1.06457 5.97994e-09 -0.386411)
(1.05157 5.90738e-09 -0.379153)
(1.03866 5.6817e-09 -0.37187)
(1.02586 5.25828e-09 -0.364564)
(1.01319 4.5967e-09 -0.357238)
(1.00065 3.66923e-09 -0.349895)
(0.988257 2.47091e-09 -0.342536)
(0.976017 1.02898e-09 -0.335167)
(0.96394 -5.91787e-10 -0.32779)
(0.952035 -2.293e-09 -0.32041)
(0.940308 -3.96208e-09 -0.313032)
(0.928768 -5.50949e-09 -0.305661)
(0.91742 -6.919e-09 -0.298302)
(0.906271 -8.29756e-09 -0.290959)
(0.895325 -9.9015e-09 -0.283639)
(0.884589 -1.21155e-08 -0.276347)
(0.874065 -1.53735e-08 -0.269087)
(0.863758 -2.00312e-08 -0.261866)
(0.853672 -2.62281e-08 -0.254688)
(0.84381 -3.37864e-08 -0.247557)
(0.834173 -4.21927e-08 -0.240479)
(0.824764 -5.06752e-08 -0.233458)
(0.815585 -5.83572e-08 -0.226498)
(0.806635 -6.44291e-08 -0.219602)
(0.797916 -6.82858e-08 -0.212775)
(0.789427 -6.95882e-08 -0.20602)
(0.781166 -6.82548e-08 -0.199341)
(0.773134 -6.44118e-08 -0.192741)
(0.765329 -5.82734e-08 -0.186224)
(0.75775 -4.98764e-08 -0.179793)
(0.750394 -3.90936e-08 -0.173452)
(0.74326 -2.61136e-08 -0.167203)
(0.736347 -1.11309e-08 -0.161049)
(0.729653 6.09183e-09 -0.154994)
(0.723177 2.45411e-08 -0.149038)
(0.716916 4.15482e-08 -0.143184)
(0.710869 5.71136e-08 -0.137433)
(0.705036 7.40702e-08 -0.131784)
(0.699414 9.08101e-08 -0.126239)
(0.694002 1.00736e-07 -0.120795)
(0.6888 1.00981e-07 -0.115452)
(0.683807 9.59974e-08 -0.110208)
(0.67902 9.15929e-08 -0.10506)
(0.674439 8.94042e-08 -0.100003)
(0.670063 8.75461e-08 -0.0950346)
(0.665892 8.39516e-08 -0.0901492)
(0.661923 7.81488e-08 -0.0853415)
(0.658158 7.09299e-08 -0.0806054)
(0.654594 6.3252e-08 -0.0759342)
(0.651233 5.52668e-08 -0.0713205)
(0.648073 4.61338e-08 -0.0667562)
(0.645115 3.50191e-08 -0.0622328)
(0.642359 2.24347e-08 -0.0577408)
(0.639805 1.00583e-08 -0.0532701)
(0.637456 -6.69949e-10 -0.0488099)
(0.63531 -9.29388e-09 -0.0443485)
(0.63337 -1.59512e-08 -0.0398738)
(0.631638 -2.08934e-08 -0.0353724)
(0.630115 -2.44504e-08 -0.0308306)
(0.628803 -2.71484e-08 -0.0262335)
(0.627704 -2.97101e-08 -0.0215656)
(0.626821 -3.28605e-08 -0.0168103)
(0.626156 -3.70322e-08 -0.0119503)
(0.625712 -4.21638e-08 -0.00696723)
(0.625493 -4.77704e-08 -0.00184162)
(0.625501 -5.32211e-08 0.00344694)
(0.62574 -5.77541e-08 0.00892003)
(0.626212 -6.01229e-08 0.0146004)
(0.626921 -5.87864e-08 0.0205121)
(0.62787 -5.32517e-08 0.0266804)
(0.629061 -4.52467e-08 0.0331321)
(0.630497 -3.74938e-08 0.0398955)
(0.632179 -3.08418e-08 0.0470002)
(0.634108 -2.35902e-08 0.0544779)
(0.636285 -1.43711e-08 0.0623617)
(0.638709 -4.80071e-09 0.0706869)
(0.641378 2.6953e-09 0.0794907)
(0.644287 8.7401e-09 0.0888125)
(0.647432 1.61827e-08 0.0986941)
(0.650805 2.65614e-08 0.10918)
(0.654393 3.86382e-08 0.120316)
(0.658183 5.08031e-08 0.132154)
(0.662157 6.30746e-08 0.144744)
(0.66629 7.48193e-08 0.158142)
(0.670554 8.30106e-08 0.172406)
(0.674913 8.41777e-08 0.187598)
(0.679321 7.69077e-08 0.20378)
(0.683726 6.28891e-08 0.221018)
(0.688063 4.60682e-08 0.239378)
(0.692255 3.04771e-08 0.258929)
(0.69621 1.88769e-08 0.279738)
(0.699819 1.33088e-08 0.301869)
(0.702956 1.55696e-08 0.325385)
(0.705472 2.64996e-08 0.350342)
(0.707194 4.48151e-08 0.376783)
(0.707925 6.71412e-08 0.404742)
(0.707439 8.9554e-08 0.434231)
(0.705478 1.0902e-07 0.465239)
(0.701755 1.24028e-07 0.49772)
(0.695953 1.34561e-07 0.531589)
(0.687724 1.41263e-07 0.56671)
(0.676694 1.45261e-07 0.602885)
(0.662471 1.51966e-07 0.639844)
(0.644654 1.78812e-07 0.677227)
(0.622846 2.52882e-07 0.714582)
(0.596679 3.75963e-07 0.751348)
(0.565832 4.74594e-07 0.786853)
(0.530067 4.36697e-07 0.820311)
(0.489261 2.93026e-07 0.850834)
(0.443441 2.97795e-07 0.877442)
(0.39282 5.91953e-07 0.899085)
(0.337822 8.96795e-07 0.91466)
(0.27909 1.07579e-06 0.922995)
(0.217493 1.61302e-06 0.922704)
(0.154023 2.52777e-06 0.911574)
(0.0920754 5.08992e-06 0.883508)
(0.0385104 1.89436e-05 0.807739)
(-0.00627866 5.22102e-06 1.29222)
(-0.00822985 -9.21224e-07 1.2912)
(-0.00731737 -6.64124e-07 1.25417)
(-0.00314949 -8.83304e-07 1.20962)
(0.00439294 -5.63617e-07 1.16139)
(0.0150362 -4.92848e-07 1.1108)
(0.0286307 2.20173e-07 1.05868)
(0.0449298 -2.84268e-07 1.00559)
(0.0636734 -5.07487e-07 0.951885)
(0.0846015 -5.35681e-08 0.897804)
(0.107483 2.3834e-07 0.843477)
(0.132128 1.5395e-07 0.788953)
(0.158397 7.42212e-09 0.734234)
(0.186203 -3.00038e-08 0.679286)
(0.215503 -4.66851e-09 0.624064)
(0.246296 1.31361e-08 0.568523)
(0.278606 1.04727e-08 0.512629)
(0.312479 3.32451e-09 0.456371)
(0.34796 1.73967e-09 0.399767)
(0.385087 3.69933e-09 0.342866)
(0.423877 3.69476e-09 0.285759)
(0.464311 -4.77023e-10 0.228577)
(0.506327 -7.04018e-09 0.171497)
(0.549814 -1.28297e-08 0.114739)
(0.594604 -1.56682e-08 0.058563)
(0.640484 -1.51652e-08 0.00326841)
(0.687099 -1.22652e-08 -0.0507364)
(0.734013 -8.40683e-09 -0.103016)
(0.78088 -4.81659e-09 -0.153237)
(0.827334 -2.16264e-09 -0.201109)
(0.873019 -5.46275e-10 -0.246373)
(0.917603 2.86852e-10 -0.288823)
(0.960784 6.77308e-10 -0.328303)
(1.0023 8.45837e-10 -0.364712)
(1.04191 8.26038e-10 -0.398003)
(1.07945 5.30024e-10 -0.428176)
(1.11477 -1.19864e-10 -0.455274)
(1.14776 -1.08732e-09 -0.479381)
(1.17836 -2.20165e-09 -0.500605)
(1.20653 -3.21966e-09 -0.519083)
(1.23226 -3.92241e-09 -0.534966)
(1.25556 -4.19328e-09 -0.548418)
(1.27648 -4.04512e-09 -0.559611)
(1.29506 -3.59205e-09 -0.568717)
(1.31138 -2.99378e-09 -0.575911)
(1.3255 -2.39921e-09 -0.581361)
(1.33753 -1.90808e-09 -0.585232)
(1.34754 -1.56165e-09 -0.587681)
(1.35565 -1.35201e-09 -0.588856)
(1.36194 -1.24376e-09 -0.588896)
(1.36652 -1.19224e-09 -0.587931)
(1.36949 -1.15879e-09 -0.586079)
(1.37095 -1.11564e-09 -0.583452)
(1.37099 -1.04656e-09 -0.580147)
(1.36971 -9.44359e-10 -0.576256)
(1.36721 -8.07242e-10 -0.571858)
(1.36357 -6.36079e-10 -0.567028)
(1.35888 -4.32174e-10 -0.561828)
(1.35322 -1.96804e-10 -0.556315)
(1.34667 6.98521e-11 -0.550539)
(1.3393 3.67103e-10 -0.544543)
(1.33118 6.94209e-10 -0.538364)
(1.32238 1.04861e-09 -0.532033)
(1.31296 1.42551e-09 -0.525577)
(1.30298 1.81695e-09 -0.51902)
(1.2925 2.21181e-09 -0.512379)
(1.28157 2.59716e-09 -0.505669)
(1.27024 2.95989e-09 -0.498903)
(1.25856 3.28846e-09 -0.492091)
(1.24656 3.57607e-09 -0.485239)
(1.2343 3.82141e-09 -0.478354)
(1.2218 4.02893e-09 -0.471438)
(1.2091 4.20876e-09 -0.464495)
(1.19624 4.37307e-09 -0.457526)
(1.18325 4.53429e-09 -0.450532)
(1.17016 4.70249e-09 -0.443512)
(1.15699 4.8823e-09 -0.436468)
(1.14377 5.07468e-09 -0.429397)
(1.13052 5.27506e-09 -0.422301)
(1.11726 5.47547e-09 -0.415177)
(1.10402 5.66455e-09 -0.408027)
(1.09081 5.82672e-09 -0.400848)
(1.07766 5.94111e-09 -0.393643)
(1.06457 5.97995e-09 -0.386411)
(1.05157 5.90738e-09 -0.379153)
(1.03866 5.68171e-09 -0.37187)
(1.02586 5.25828e-09 -0.364564)
(1.01319 4.5967e-09 -0.357238)
(1.00065 3.66923e-09 -0.349895)
(0.988257 2.47091e-09 -0.342536)
(0.976017 1.02898e-09 -0.335167)
(0.96394 -5.91787e-10 -0.32779)
(0.952035 -2.293e-09 -0.32041)
(0.940308 -3.96208e-09 -0.313032)
(0.928768 -5.50949e-09 -0.305661)
(0.91742 -6.919e-09 -0.298302)
(0.906271 -8.29756e-09 -0.290959)
(0.895325 -9.90151e-09 -0.283639)
(0.884589 -1.21155e-08 -0.276347)
(0.874065 -1.53735e-08 -0.269087)
(0.863758 -2.00312e-08 -0.261866)
(0.853672 -2.62281e-08 -0.254688)
(0.84381 -3.37864e-08 -0.247557)
(0.834173 -4.21927e-08 -0.240479)
(0.824764 -5.06753e-08 -0.233458)
(0.815585 -5.83572e-08 -0.226498)
(0.806635 -6.44291e-08 -0.219602)
(0.797916 -6.82858e-08 -0.212775)
(0.789427 -6.95882e-08 -0.20602)
(0.781166 -6.82549e-08 -0.199341)
(0.773134 -6.44119e-08 -0.192741)
(0.765329 -5.82734e-08 -0.186224)
(0.75775 -4.98764e-08 -0.179793)
(0.750394 -3.90937e-08 -0.173452)
(0.74326 -2.61136e-08 -0.167203)
(0.736347 -1.11309e-08 -0.161049)
(0.729653 6.09184e-09 -0.154994)
(0.723177 2.45412e-08 -0.149038)
(0.716916 4.15482e-08 -0.143184)
(0.710869 5.71137e-08 -0.137433)
(0.705036 7.40703e-08 -0.131784)
(0.699414 9.08102e-08 -0.126239)
(0.694002 1.00736e-07 -0.120795)
(0.6888 1.00981e-07 -0.115452)
(0.683807 9.59975e-08 -0.110208)
(0.67902 9.1593e-08 -0.10506)
(0.674439 8.94043e-08 -0.100003)
(0.670063 8.75462e-08 -0.0950346)
(0.665892 8.39517e-08 -0.0901492)
(0.661923 7.81489e-08 -0.0853415)
(0.658158 7.093e-08 -0.0806054)
(0.654594 6.32521e-08 -0.0759342)
(0.651233 5.52669e-08 -0.0713205)
(0.648073 4.61339e-08 -0.0667562)
(0.645115 3.50191e-08 -0.0622328)
(0.642359 2.24348e-08 -0.0577408)
(0.639805 1.00583e-08 -0.0532701)
(0.637455 -6.6995e-10 -0.0488099)
(0.63531 -9.29389e-09 -0.0443486)
(0.63337 -1.59513e-08 -0.0398738)
(0.631638 -2.08935e-08 -0.0353725)
(0.630115 -2.44504e-08 -0.0308306)
(0.628803 -2.71484e-08 -0.0262336)
(0.627704 -2.97102e-08 -0.0215656)
(0.626821 -3.28606e-08 -0.0168104)
(0.626156 -3.70322e-08 -0.0119504)
(0.625712 -4.21639e-08 -0.00696725)
(0.625493 -4.77705e-08 -0.00184163)
(0.625501 -5.32212e-08 0.00344694)
(0.62574 -5.77542e-08 0.00892003)
(0.626212 -6.01229e-08 0.0146004)
(0.626921 -5.87865e-08 0.0205121)
(0.62787 -5.32517e-08 0.0266804)
(0.629061 -4.52467e-08 0.0331321)
(0.630497 -3.74938e-08 0.0398954)
(0.632179 -3.08418e-08 0.0470001)
(0.634108 -2.35902e-08 0.0544778)
(0.636285 -1.43711e-08 0.0623616)
(0.638709 -4.80071e-09 0.0706868)
(0.641378 2.6953e-09 0.0794906)
(0.644287 8.7401e-09 0.0888124)
(0.647432 1.61827e-08 0.098694)
(0.650805 2.65614e-08 0.10918)
(0.654393 3.86382e-08 0.120316)
(0.658183 5.08031e-08 0.132153)
(0.662157 6.30746e-08 0.144743)
(0.666291 7.48193e-08 0.158142)
(0.670555 8.30106e-08 0.172406)
(0.674913 8.41777e-08 0.187598)
(0.679322 7.69077e-08 0.20378)
(0.683727 6.28892e-08 0.221018)
(0.688064 4.60682e-08 0.239378)
(0.692255 3.04771e-08 0.258929)
(0.69621 1.88769e-08 0.279738)
(0.69982 1.33088e-08 0.301869)
(0.702957 1.55696e-08 0.325385)
(0.705473 2.64996e-08 0.350342)
(0.707195 4.48151e-08 0.376783)
(0.707926 6.71412e-08 0.404742)
(0.707439 8.9554e-08 0.434231)
(0.705478 1.0902e-07 0.465238)
(0.701756 1.24028e-07 0.497719)
(0.695954 1.34561e-07 0.531588)
(0.687725 1.41263e-07 0.566709)
(0.676696 1.45261e-07 0.602885)
(0.662473 1.51966e-07 0.639843)
(0.644656 1.78812e-07 0.677226)
(0.622848 2.52882e-07 0.714581)
(0.596681 3.75963e-07 0.751347)
(0.565835 4.74594e-07 0.786851)
(0.53007 4.36698e-07 0.820308)
(0.489265 2.93027e-07 0.85083)
(0.443446 2.97795e-07 0.877436)
(0.392826 5.91953e-07 0.899078)
(0.337828 8.96796e-07 0.914651)
(0.279097 1.07579e-06 0.922982)
(0.2175 1.61303e-06 0.922685)
(0.154028 2.52778e-06 0.911545)
(0.0920779 5.08995e-06 0.883461)
(0.0385093 1.89442e-05 0.807654)
(-0.00653159 4.2199e-07 1.29867)
(-0.00535278 -3.63163e-06 1.29023)
(-0.000104974 -1.15319e-06 1.24946)
(0.00825986 -2.82986e-07 1.20123)
(0.0204773 -4.64286e-07 1.14946)
(0.0361555 -2.74035e-07 1.0955)
(0.0551177 6.22197e-07 1.04027)
(0.0770031 1.71748e-08 0.984379)
(0.101442 -4.13965e-07 0.928197)
(0.12808 -1.33248e-07 0.871934)
(0.156614 1.08092e-07 0.815673)
(0.186807 6.92231e-08 0.759409)
(0.218496 -1.53549e-08 0.703076)
(0.25159 -2.01168e-08 0.646583)
(0.28606 8.90358e-09 0.589832)
(0.321924 1.9027e-08 0.532738)
(0.359231 1.04229e-08 0.475245)
(0.398046 2.63978e-09 0.417332)
(0.438428 3.47384e-09 0.359023)
(0.480416 7.68097e-09 0.30039)
(0.524014 8.12259e-09 0.241559)
(0.569178 2.72523e-09 0.18271)
(0.615806 -5.78891e-09 0.124075)
(0.66373 -1.3363e-08 0.0659343)
(0.712731 -1.73796e-08 0.00861044)
(0.762449 -1.74052e-08 -0.0474585)
(0.812381 -1.45747e-08 -0.10177)
(0.862157 -1.05483e-08 -0.153953)
(0.91138 -6.69e-09 -0.203682)
(0.959667 -3.72684e-09 -0.250673)
(1.00666 -1.78344e-09 -0.294692)
(1.05204 -6.14157e-10 -0.335564)
(1.09552 1.07795e-10 -0.373176)
(1.13686 5.79641e-10 -0.407473)
(1.17587 8.06708e-10 -0.438451)
(1.21241 6.81221e-10 -0.466157)
(1.24637 1.2031e-10 -0.490678)
(1.2777 -8.29026e-10 -0.512135)
(1.30635 -1.97556e-09 -0.530675)
(1.33233 -3.05179e-09 -0.546462)
(1.35568 -3.81706e-09 -0.559676)
(1.37643 -4.13941e-09 -0.570504)
(1.39467 -4.02305e-09 -0.579135)
(1.41046 -3.58107e-09 -0.585758)
(1.4239 -2.97744e-09 -0.590558)
(1.4351 -2.36785e-09 -0.593713)
(1.44416 -1.85954e-09 -0.595394)
(1.45119 -1.49951e-09 -0.595763)
(1.45631 -1.28366e-09 -0.594969)
(1.45963 -1.17635e-09 -0.593153)
(1.46126 -1.13137e-09 -0.590444)
(1.46131 -1.10664e-09 -0.58696)
(1.45989 -1.07056e-09 -0.582808)
(1.45711 -1.00399e-09 -0.578084)
(1.45307 -8.9783e-10 -0.572875)
(1.44786 -7.49466e-10 -0.567259)
(1.44157 -5.59975e-10 -0.561303)
(1.4343 -3.31914e-10 -0.555068)
(1.42613 -6.81705e-11 -0.548605)
(1.41713 2.29005e-10 -0.54196)
(1.40739 5.57032e-10 -0.535172)
(1.39697 9.12612e-10 -0.528273)
(1.38593 1.29107e-09 -0.52129)
(1.37435 1.68522e-09 -0.514248)
(1.36227 2.08506e-09 -0.507163)
(1.34976 2.47813e-09 -0.500052)
(1.33686 2.85157e-09 -0.492925)
(1.32363 3.19342e-09 -0.485792)
(1.3101 3.49576e-09 -0.478659)
(1.29632 3.75612e-09 -0.471531)
(1.28233 3.97894e-09 -0.464409)
(1.26817 4.17444e-09 -0.457295)
(1.25386 4.3569e-09 -0.450189)
(1.23944 4.54093e-09 -0.44309)
(1.22494 4.73891e-09 -0.435997)
(1.21038 4.95792e-09 -0.428908)
(1.1958 5.19861e-09 -0.421821)
(1.18122 5.45623e-09 -0.414732)
(1.16665 5.72049e-09 -0.407641)
(1.15212 5.97705e-09 -0.400544)
(1.13764 6.20721e-09 -0.393441)
(1.12324 6.3861e-09 -0.386328)
(1.10893 6.48106e-09 -0.379206)
(1.09473 6.44991e-09 -0.372073)
(1.08065 6.24154e-09 -0.364929)
(1.0667 5.79959e-09 -0.357774)
(1.0529 5.069e-09 -0.35061)
(1.03925 4.00674e-09 -0.343437)
(1.02577 2.59434e-09 -0.336257)
(1.01247 8.5233e-10 -0.329072)
(0.99935 -1.1487e-09 -0.321886)
(0.986426 -3.28435e-09 -0.314701)
(0.973703 -5.39127e-09 -0.307522)
(0.961188 -7.30691e-09 -0.300351)
(0.948887 -8.93482e-09 -0.293194)
(0.936805 -1.03209e-08 -0.286055)
(0.924949 -1.17121e-08 -0.278939)
(0.913323 -1.35597e-08 -0.27185)
(0.901931 -1.64377e-08 -0.264793)
(0.890777 -2.0878e-08 -0.257773)
(0.879864 -2.71632e-08 -0.250795)
(0.869197 -3.51505e-08 -0.243863)
(0.858776 -4.42073e-08 -0.236982)
(0.848604 -5.32977e-08 -0.230156)
(0.838683 -6.12058e-08 -0.223387)
(0.829012 -6.68167e-08 -0.21668)
(0.819594 -6.93555e-08 -0.210038)
(0.810426 -6.85023e-08 -0.203464)
(0.801508 -6.43629e-08 -0.196962)
(0.792839 -5.73461e-08 -0.190534)
(0.784417 -4.80808e-08 -0.184183)
(0.776239 -3.73652e-08 -0.177914)
(0.768304 -2.56855e-08 -0.171729)
(0.76061 -1.29772e-08 -0.165631)
(0.753154 3.12553e-10 -0.159624)
(0.745933 1.36295e-08 -0.15371)
(0.738947 2.84178e-08 -0.147893)
(0.732192 4.48928e-08 -0.142173)
(0.725667 5.75983e-08 -0.136553)
(0.71937 6.42496e-08 -0.131034)
(0.713299 7.27337e-08 -0.125617)
(0.707453 8.70475e-08 -0.1203)
(0.701829 9.80383e-08 -0.115085)
(0.696427 9.66604e-08 -0.109969)
(0.691245 8.57635e-08 -0.10495)
(0.686281 7.41956e-08 -0.100025)
(0.681534 6.66813e-08 -0.0951907)
(0.677003 6.21433e-08 -0.0904435)
(0.672686 5.7817e-08 -0.0857783)
(0.668583 5.24557e-08 -0.0811898)
(0.664692 4.67064e-08 -0.0766721)
(0.661012 4.20794e-08 -0.0722188)
(0.657543 3.93925e-08 -0.0678225)
(0.654285 3.74768e-08 -0.0634756)
(0.651237 3.36637e-08 -0.0591696)
(0.6484 2.659e-08 -0.0548954)
(0.645775 1.75846e-08 -0.0506432)
(0.643361 8.99499e-09 -0.0464025)
(0.641161 1.98113e-09 -0.042162)
(0.639175 -3.5778e-09 -0.0379096)
(0.637405 -8.09706e-09 -0.0336325)
(0.635854 -1.19021e-08 -0.0293171)
(0.634524 -1.54288e-08 -0.0249488)
(0.633417 -1.93597e-08 -0.0205125)
(0.632536 -2.44549e-08 -0.0159917)
(0.631884 -3.12278e-08 -0.0113695)
(0.631466 -3.96223e-08 -0.00662768)
(0.631284 -4.89495e-08 -0.00174704)
(0.631344 -5.834e-08 0.00329271)
(0.631648 -6.70196e-08 0.00851303)
(0.632202 -7.35434e-08 0.0139366)
(0.63301 -7.50374e-08 0.0195876)
(0.634077 -6.88299e-08 0.0254914)
(0.635407 -5.61264e-08 0.0316751)
(0.637004 -4.23697e-08 0.0381671)
(0.638872 -3.20739e-08 0.0449979)
(0.641014 -2.41418e-08 0.0521995)
(0.643434 -1.42867e-08 0.0598062)
(0.646133 -2.77844e-09 0.0678543)
(0.649113 5.50743e-09 0.0763823)
(0.652373 9.07565e-09 0.0854315)
(0.655911 1.19711e-08 0.0950457)
(0.659724 1.917e-08 0.105272)
(0.663805 3.08011e-08 0.11616)
(0.668145 4.40499e-08 0.127763)
(0.67273 5.88156e-08 0.140139)
(0.677542 7.53234e-08 0.153348)
(0.682559 9.01464e-08 0.167455)
(0.687751 9.78633e-08 0.182528)
(0.693078 9.40753e-08 0.198641)
(0.698495 7.78292e-08 0.215869)
(0.703943 5.27212e-08 0.234291)
(0.709351 2.47602e-08 0.253991)
(0.714632 -9.9749e-10 0.275052)
(0.719683 -2.06832e-08 0.297559)
(0.724378 -3.04426e-08 0.321596)
(0.728571 -2.67011e-08 0.347243)
(0.732087 -8.56735e-09 0.374575)
(0.734721 2.08266e-08 0.403652)
(0.736236 5.60701e-08 0.434523)
(0.736357 9.1402e-08 0.467211)
(0.734772 1.21503e-07 0.501708)
(0.731127 1.42876e-07 0.537966)
(0.725027 1.55348e-07 0.575884)
(0.71604 1.62557e-07 0.615294)
(0.703699 1.72674e-07 0.655946)
(0.687511 2.02164e-07 0.69749)
(0.666977 2.7393e-07 0.739463)
(0.641608 3.9163e-07 0.781266)
(0.610959 4.9985e-07 0.82216)
(0.574663 5.05522e-07 0.861252)
(0.53248 4.14714e-07 0.897504)
(0.484342 4.10881e-07 0.929741)
(0.430409 6.12371e-07 0.956683)
(0.371109 8.54754e-07 0.976966)
(0.307168 1.07767e-06 0.989147)
(0.239618 1.47363e-06 0.991575)
(0.169693 2.198e-06 0.981767)
(0.101295 4.20904e-06 0.953182)
(0.0421336 1.5184e-05 0.872965)
(-0.00653769 4.21989e-07 1.29867)
(-0.00535438 -3.63155e-06 1.29023)
(-0.000105314 -1.15319e-06 1.24947)
(0.00826024 -2.82987e-07 1.20123)
(0.0204771 -4.64287e-07 1.14946)
(0.0361553 -2.74036e-07 1.0955)
(0.055118 6.22197e-07 1.04027)
(0.0770026 1.71748e-08 0.98438)
(0.101442 -4.13965e-07 0.928197)
(0.12808 -1.33248e-07 0.871933)
(0.156615 1.08092e-07 0.815673)
(0.186807 6.92231e-08 0.759409)
(0.218496 -1.53549e-08 0.703076)
(0.25159 -2.01168e-08 0.646583)
(0.286061 8.90359e-09 0.589832)
(0.321924 1.9027e-08 0.532738)
(0.359232 1.04229e-08 0.475245)
(0.398046 2.63978e-09 0.417332)
(0.438428 3.47384e-09 0.359023)
(0.480416 7.68097e-09 0.30039)
(0.524014 8.12259e-09 0.241559)
(0.569178 2.72523e-09 0.18271)
(0.615806 -5.78891e-09 0.124075)
(0.66373 -1.3363e-08 0.0659343)
(0.712731 -1.73796e-08 0.00861042)
(0.762449 -1.74052e-08 -0.0474586)
(0.812381 -1.45747e-08 -0.10177)
(0.862157 -1.05483e-08 -0.153953)
(0.91138 -6.69e-09 -0.203682)
(0.959667 -3.72685e-09 -0.250673)
(1.00666 -1.78344e-09 -0.294692)
(1.05204 -6.14157e-10 -0.335564)
(1.09552 1.07795e-10 -0.373176)
(1.13686 5.79642e-10 -0.407473)
(1.17587 8.06708e-10 -0.438451)
(1.21241 6.81221e-10 -0.466157)
(1.24637 1.2031e-10 -0.490678)
(1.2777 -8.29027e-10 -0.512135)
(1.30635 -1.97556e-09 -0.530675)
(1.33233 -3.05179e-09 -0.546462)
(1.35568 -3.81706e-09 -0.559676)
(1.37643 -4.13941e-09 -0.570504)
(1.39467 -4.02305e-09 -0.579135)
(1.41046 -3.58107e-09 -0.585758)
(1.4239 -2.97744e-09 -0.590558)
(1.4351 -2.36785e-09 -0.593713)
(1.44416 -1.85954e-09 -0.595394)
(1.45119 -1.49951e-09 -0.595763)
(1.45631 -1.28366e-09 -0.594969)
(1.45963 -1.17635e-09 -0.593153)
(1.46126 -1.13137e-09 -0.590444)
(1.46131 -1.10664e-09 -0.58696)
(1.45989 -1.07057e-09 -0.582808)
(1.45711 -1.00399e-09 -0.578084)
(1.45307 -8.97831e-10 -0.572875)
(1.44786 -7.49467e-10 -0.567259)
(1.44157 -5.59976e-10 -0.561303)
(1.4343 -3.31914e-10 -0.555068)
(1.42613 -6.81706e-11 -0.548605)
(1.41713 2.29005e-10 -0.54196)
(1.40739 5.57032e-10 -0.535172)
(1.39697 9.12612e-10 -0.528273)
(1.38593 1.29107e-09 -0.52129)
(1.37435 1.68522e-09 -0.514248)
(1.36227 2.08506e-09 -0.507163)
(1.34976 2.47814e-09 -0.500052)
(1.33686 2.85157e-09 -0.492925)
(1.32363 3.19342e-09 -0.485792)
(1.3101 3.49577e-09 -0.478659)
(1.29632 3.75612e-09 -0.471531)
(1.28233 3.97894e-09 -0.464409)
(1.26817 4.17444e-09 -0.457295)
(1.25386 4.35691e-09 -0.450189)
(1.23944 4.54093e-09 -0.44309)
(1.22494 4.73891e-09 -0.435997)
(1.21038 4.95792e-09 -0.428908)
(1.1958 5.19861e-09 -0.421821)
(1.18122 5.45623e-09 -0.414732)
(1.16665 5.72049e-09 -0.407641)
(1.15212 5.97705e-09 -0.400544)
(1.13764 6.20721e-09 -0.39344)
(1.12324 6.3861e-09 -0.386328)
(1.10893 6.48106e-09 -0.379206)
(1.09473 6.44991e-09 -0.372073)
(1.08065 6.24154e-09 -0.364929)
(1.0667 5.79959e-09 -0.357774)
(1.0529 5.069e-09 -0.35061)
(1.03925 4.00674e-09 -0.343437)
(1.02577 2.59435e-09 -0.336257)
(1.01247 8.5233e-10 -0.329072)
(0.99935 -1.1487e-09 -0.321886)
(0.986426 -3.28435e-09 -0.314701)
(0.973703 -5.39127e-09 -0.307522)
(0.961188 -7.30692e-09 -0.300351)
(0.948887 -8.93482e-09 -0.293194)
(0.936805 -1.03209e-08 -0.286055)
(0.924949 -1.17122e-08 -0.278939)
(0.913323 -1.35597e-08 -0.27185)
(0.901931 -1.64377e-08 -0.264793)
(0.890777 -2.0878e-08 -0.257773)
(0.879864 -2.71632e-08 -0.250795)
(0.869197 -3.51506e-08 -0.243863)
(0.858776 -4.42073e-08 -0.236982)
(0.848604 -5.32977e-08 -0.230156)
(0.838683 -6.12059e-08 -0.223387)
(0.829012 -6.68167e-08 -0.21668)
(0.819594 -6.93556e-08 -0.210038)
(0.810426 -6.85024e-08 -0.203464)
(0.801508 -6.43629e-08 -0.196962)
(0.792839 -5.73461e-08 -0.190534)
(0.784417 -4.80809e-08 -0.184183)
(0.776239 -3.73652e-08 -0.177914)
(0.768304 -2.56855e-08 -0.171729)
(0.76061 -1.29772e-08 -0.165631)
(0.753154 3.12553e-10 -0.159624)
(0.745933 1.36295e-08 -0.15371)
(0.738947 2.84178e-08 -0.147892)
(0.732192 4.48928e-08 -0.142173)
(0.725667 5.75983e-08 -0.136553)
(0.71937 6.42496e-08 -0.131034)
(0.713299 7.27338e-08 -0.125616)
(0.707453 8.70476e-08 -0.1203)
(0.701829 9.80384e-08 -0.115085)
(0.696427 9.66605e-08 -0.109969)
(0.691245 8.57636e-08 -0.10495)
(0.686281 7.41957e-08 -0.100025)
(0.681534 6.66814e-08 -0.0951907)
(0.677003 6.21434e-08 -0.0904435)
(0.672686 5.78171e-08 -0.0857783)
(0.668583 5.24558e-08 -0.0811898)
(0.664692 4.67065e-08 -0.0766722)
(0.661012 4.20794e-08 -0.0722188)
(0.657543 3.93926e-08 -0.0678225)
(0.654285 3.74768e-08 -0.0634756)
(0.651237 3.36637e-08 -0.0591696)
(0.6484 2.659e-08 -0.0548954)
(0.645775 1.75846e-08 -0.0506433)
(0.643361 8.995e-09 -0.0464026)
(0.641161 1.98113e-09 -0.042162)
(0.639175 -3.57781e-09 -0.0379097)
(0.637405 -8.09707e-09 -0.0336326)
(0.635854 -1.19022e-08 -0.0293171)
(0.634524 -1.54288e-08 -0.0249489)
(0.633417 -1.93597e-08 -0.0205125)
(0.632536 -2.44549e-08 -0.0159918)
(0.631884 -3.12278e-08 -0.0113695)
(0.631466 -3.96224e-08 -0.0066277)
(0.631284 -4.89495e-08 -0.00174705)
(0.631344 -5.83401e-08 0.0032927)
(0.631648 -6.70197e-08 0.00851302)
(0.632202 -7.35435e-08 0.0139366)
(0.633011 -7.50374e-08 0.0195876)
(0.634077 -6.88299e-08 0.0254914)
(0.635407 -5.61264e-08 0.031675)
(0.637004 -4.23697e-08 0.0381671)
(0.638872 -3.2074e-08 0.0449978)
(0.641014 -2.41418e-08 0.0521994)
(0.643434 -1.42867e-08 0.0598061)
(0.646133 -2.77844e-09 0.0678542)
(0.649113 5.50744e-09 0.0763822)
(0.652373 9.07565e-09 0.0854314)
(0.655911 1.19711e-08 0.0950456)
(0.659724 1.917e-08 0.105272)
(0.663805 3.08011e-08 0.11616)
(0.668145 4.40499e-08 0.127763)
(0.67273 5.88157e-08 0.140139)
(0.677542 7.53234e-08 0.153348)
(0.682559 9.01465e-08 0.167455)
(0.687751 9.78634e-08 0.182528)
(0.693079 9.40753e-08 0.198641)
(0.698496 7.78292e-08 0.215869)
(0.703943 5.27212e-08 0.234291)
(0.709351 2.47602e-08 0.253991)
(0.714632 -9.97491e-10 0.275052)
(0.719683 -2.06832e-08 0.297559)
(0.724379 -3.04426e-08 0.321596)
(0.728572 -2.67012e-08 0.347243)
(0.732088 -8.56735e-09 0.374574)
(0.734722 2.08266e-08 0.403652)
(0.736236 5.60701e-08 0.434523)
(0.736358 9.1402e-08 0.467211)
(0.734773 1.21503e-07 0.501708)
(0.731128 1.42876e-07 0.537966)
(0.725029 1.55348e-07 0.575884)
(0.716042 1.62557e-07 0.615293)
(0.7037 1.72674e-07 0.655945)
(0.687513 2.02164e-07 0.697489)
(0.666979 2.7393e-07 0.739461)
(0.64161 3.9163e-07 0.781265)
(0.610961 4.9985e-07 0.822158)
(0.574666 5.05522e-07 0.86125)
(0.532484 4.14714e-07 0.8975)
(0.484346 4.10881e-07 0.929737)
(0.430414 6.12371e-07 0.956677)
(0.371114 8.54754e-07 0.976958)
(0.307173 1.07767e-06 0.989136)
(0.239623 1.47363e-06 0.991559)
(0.169697 2.198e-06 0.981743)
(0.101296 4.20906e-06 0.953143)
(0.0421318 1.51844e-05 0.872897)
(-0.00648939 -1.44062e-06 1.30602)
(-0.00157776 -2.34336e-06 1.28332)
(0.00885646 5.47202e-07 1.23973)
(0.0217297 1.49223e-06 1.1877)
(0.0393777 -7.62353e-08 1.13197)
(0.0610575 2.98538e-07 1.07421)
(0.0864906 6.59573e-07 1.01556)
(0.115102 -6.75755e-08 0.956695)
(0.146358 -2.90653e-07 0.897982)
(0.179772 1.53868e-08 0.839585)
(0.21495 1.30095e-07 0.781511)
(0.2516 7.50382e-10 0.723662)
(0.289537 -9.06449e-08 0.665886)
(0.328675 -6.40806e-08 0.608008)
(0.369008 -7.43171e-09 0.549868)
(0.410585 1.52978e-08 0.491335)
(0.453485 9.99413e-09 0.43233)
(0.497795 3.32458e-09 0.372829)
(0.543586 5.76174e-09 0.312877)
(0.590893 1.14911e-08 0.252584)
(0.639696 1.23151e-08 0.192128)
(0.68991 5.99333e-09 0.131753)
(0.741376 -4.13873e-09 0.0717592)
(0.793867 -1.32995e-08 0.0124972)
(0.847018 -1.84245e-08 -0.0455581)
(0.900253 -1.90087e-08 -0.101832)
(0.953178 -1.63526e-08 -0.15591)
(1.00537 -1.22911e-08 -0.207432)
(1.0564 -8.30159e-09 -0.256083)
(1.10591 -5.16009e-09 -0.301603)
(1.15354 -2.99528e-09 -0.343797)
(1.19899 -1.55643e-09 -0.382538)
(1.24203 -5.29734e-10 -0.41776)
(1.28245 2.47111e-10 -0.449461)
(1.3201 7.37757e-10 -0.477688)
(1.35489 8.03196e-10 -0.502534)
(1.38677 3.50129e-10 -0.524131)
(1.4157 -5.65549e-10 -0.542636)
(1.44172 -1.73195e-09 -0.558231)
(1.46486 -2.85756e-09 -0.57111)
(1.4852 -3.68064e-09 -0.581477)
(1.5028 -4.05426e-09 -0.589536)
(1.51778 -3.97476e-09 -0.595494)
(1.53025 -3.5537e-09 -0.59955)
(1.54032 -2.95733e-09 -0.6019)
(1.54813 -2.34623e-09 -0.602727)
(1.55379 -1.83317e-09 -0.602205)
(1.55744 -1.46949e-09 -0.600498)
(1.5592 -1.25348e-09 -0.597755)
(1.5592 -1.15016e-09 -0.594116)
(1.55757 -1.11195e-09 -0.589708)
(1.55442 -1.09397e-09 -0.584644)
(1.54987 -1.06208e-09 -0.579028)
(1.54402 -9.94846e-10 -0.572951)
(1.53699 -8.81498e-10 -0.566497)
(1.52888 -7.19151e-10 -0.559737)
(1.51977 -5.09466e-10 -0.552733)
(1.50976 -2.56149e-10 -0.545542)
(1.49893 3.63765e-11 -0.538209)
(1.48736 3.63715e-10 -0.530776)
(1.47513 7.21035e-10 -0.523275)
(1.4623 1.10307e-09 -0.515735)
(1.44893 1.50238e-09 -0.50818)
(1.4351 1.90977e-09 -0.500627)
(1.42086 2.31345e-09 -0.493091)
(1.40625 2.70059e-09 -0.485583)
(1.39133 3.05897e-09 -0.478111)
(1.37614 3.37947e-09 -0.47068)
(1.36073 3.65866e-09 -0.463294)
(1.34514 3.89977e-09 -0.455954)
(1.32939 4.11321e-09 -0.448659)
(1.31353 4.31431e-09 -0.441408)
(1.29759 4.52075e-09 -0.434199)
(1.2816 4.74761e-09 -0.427027)
(1.26557 5.00456e-09 -0.419891)
(1.24955 5.29428e-09 -0.412785)
(1.23355 5.61147e-09 -0.405706)
(1.2176 5.94436e-09 -0.398649)
(1.20171 6.2759e-09 -0.39161)
(1.1859 6.58374e-09 -0.384587)
(1.17019 6.83928e-09 -0.377574)
(1.1546 7.00552e-09 -0.370571)
(1.13914 7.03438e-09 -0.363573)
(1.12383 6.8666e-09 -0.35658)
(1.10867 6.43455e-09 -0.349589)
(1.09369 5.66955e-09 -0.3426)
(1.07889 4.51206e-09 -0.335614)
(1.06427 2.92698e-09 -0.328629)
(1.04986 9.21379e-10 -0.321647)
(1.03566 -1.4372e-09 -0.314671)
(1.02167 -4.0084e-09 -0.307701)
(1.00791 -6.58337e-09 -0.30074)
(0.99438 -8.92077e-09 -0.293791)
(0.981086 -1.08199e-08 -0.286858)
(0.968034 -1.22256e-08 -0.279944)
(0.955229 -1.33309e-08 -0.273054)
(0.942677 -1.46242e-08 -0.266191)
(0.93038 -1.68301e-08 -0.25936)
(0.918343 -2.07151e-08 -0.252566)
(0.906569 -2.67994e-08 -0.245812)
(0.89506 -3.50669e-08 -0.239103)
(0.883821 -4.48063e-08 -0.232443)
(0.872852 -5.46749e-08 -0.225836)
(0.862155 -6.29938e-08 -0.219284)
(0.851731 -6.81738e-08 -0.212792)
(0.84158 -6.91094e-08 -0.206361)
(0.831703 -6.53998e-08 -0.199995)
(0.822097 -5.73343e-08 -0.193696)
(0.812761 -4.5675e-08 -0.187467)
(0.803693 -3.13496e-08 -0.18131)
(0.79489 -1.53466e-08 -0.175228)
(0.786349 9.41657e-10 -0.169225)
(0.778068 1.63359e-08 -0.163303)
(0.770044 3.08566e-08 -0.157466)
(0.762274 4.35296e-08 -0.151717)
(0.754754 5.19316e-08 -0.146059)
(0.747483 5.90432e-08 -0.140494)
(0.740458 7.02805e-08 -0.135026)
(0.733676 7.70181e-08 -0.129654)
(0.727136 6.8084e-08 -0.124382)
(0.720834 5.57339e-08 -0.119209)
(0.714769 5.68084e-08 -0.114135)
(0.70894 6.40274e-08 -0.109161)
(0.703344 6.00177e-08 -0.104283)
(0.697979 4.24419e-08 -0.0995013)
(0.692844 2.21038e-08 -0.0948119)
(0.687936 7.65345e-09 -0.0902116)
(0.683255 -3.19143e-10 -0.0856965)
(0.678798 -5.15949e-09 -0.081262)
(0.674563 -9.278e-09 -0.0769029)
(0.67055 -1.26896e-08 -0.0726135)
(0.666758 -1.34268e-08 -0.0683874)
(0.663185 -9.08159e-09 -0.0642179)
(0.659831 3.85402e-10 -0.0600974)
(0.656696 1.06279e-08 -0.0560178)
(0.65378 1.66095e-08 -0.0519703)
(0.651083 1.72995e-08 -0.0479454)
(0.648606 1.55284e-08 -0.0439331)
(0.64635 1.37482e-08 -0.0399223)
(0.644318 1.22938e-08 -0.0359014)
(0.64251 1.0682e-08 -0.0318578)
(0.640929 8.64655e-09 -0.0277784)
(0.639577 5.95734e-09 -0.0236489)
(0.638459 2.11567e-09 -0.0194545)
(0.637576 -3.51567e-09 -0.0151793)
(0.636933 -1.14083e-08 -0.0108065)
(0.636534 -2.14413e-08 -0.00631843)
(0.636384 -3.25421e-08 -0.00169619)
(0.636487 -4.33454e-08 0.0030802)
(0.63685 -5.33996e-08 0.00803196)
(0.637478 -6.25565e-08 0.0131816)
(0.638376 -6.80275e-08 0.0185531)
(0.639552 -6.39106e-08 0.0241719)
(0.64101 -4.79255e-08 0.0300649)
(0.642757 -2.70675e-08 0.036261)
(0.6448 -1.24193e-08 0.0427906)
(0.647144 -7.29942e-09 0.0496864)
(0.649795 -3.14501e-09 0.056983)
(0.652757 5.54065e-09 0.0647177)
(0.656037 1.27342e-08 0.0729301)
(0.659636 1.2337e-08 0.0816628)
(0.663557 6.73339e-09 0.0909613)
(0.667801 5.56465e-09 0.100875)
(0.672368 1.2741e-08 0.111456)
(0.677252 2.38271e-08 0.122761)
(0.682447 3.76114e-08 0.134852)
(0.687941 5.53824e-08 0.147794)
(0.693719 7.42623e-08 0.161659)
(0.699757 8.85435e-08 0.176523)
(0.706027 9.19106e-08 0.192467)
(0.712488 7.94719e-08 0.209578)
(0.719092 5.21473e-08 0.227948)
(0.725774 1.70137e-08 0.247674)
(0.732459 -1.87227e-08 0.268859)
(0.739048 -5.02466e-08 0.291608)
(0.745424 -7.2942e-08 0.316028)
(0.751445 -8.02681e-08 0.342227)
(0.756937 -6.73567e-08 0.370312)
(0.761695 -3.54822e-08 0.400379)
(0.765474 9.74196e-09 0.432516)
(0.767988 6.1556e-08 0.466789)
(0.7689 1.11888e-07 0.503239)
(0.767826 1.52227e-07 0.541866)
(0.764323 1.77622e-07 0.582618)
(0.757897 1.90569e-07 0.625373)
(0.748 2.00628e-07 0.669921)
(0.734038 2.25024e-07 0.715941)
(0.715386 2.86139e-07 0.762974)
(0.691411 3.91672e-07 0.810403)
(0.661505 5.03651e-07 0.857427)
(0.625129 5.48234e-07 0.903045)
(0.581874 5.08533e-07 0.946051)
(0.531523 4.98952e-07 0.985045)
(0.474135 6.23782e-07 1.01845)
(0.41011 8.09177e-07 1.04457)
(0.340246 1.01973e-06 1.06159)
(0.265768 1.32979e-06 1.06748)
(0.188224 1.89641e-06 1.0594)
(0.112158 3.48586e-06 1.03027)
(0.0463553 1.22014e-05 0.944891)
(-0.00648668 -1.44059e-06 1.30603)
(-0.00157372 -2.34308e-06 1.28333)
(0.00886017 5.47196e-07 1.23973)
(0.02173 1.49223e-06 1.1877)
(0.0393766 -7.62352e-08 1.13197)
(0.061058 2.98538e-07 1.07421)
(0.0864908 6.59574e-07 1.01556)
(0.115101 -6.75755e-08 0.956696)
(0.146357 -2.90654e-07 0.897982)
(0.179773 1.53868e-08 0.839585)
(0.214951 1.30095e-07 0.781511)
(0.2516 7.50382e-10 0.723662)
(0.289536 -9.06449e-08 0.665886)
(0.328675 -6.40806e-08 0.608008)
(0.369009 -7.43172e-09 0.549868)
(0.410585 1.52978e-08 0.491335)
(0.453485 9.99413e-09 0.432329)
(0.497795 3.32458e-09 0.372829)
(0.543586 5.76174e-09 0.312877)
(0.590893 1.14911e-08 0.252584)
(0.639696 1.23151e-08 0.192128)
(0.68991 5.99333e-09 0.131753)
(0.741376 -4.13873e-09 0.0717592)
(0.793867 -1.32995e-08 0.0124972)
(0.847018 -1.84245e-08 -0.0455581)
(0.900253 -1.90087e-08 -0.101832)
(0.953178 -1.63526e-08 -0.15591)
(1.00537 -1.22911e-08 -0.207432)
(1.0564 -8.30159e-09 -0.256083)
(1.10591 -5.16009e-09 -0.301603)
(1.15354 -2.99528e-09 -0.343797)
(1.19899 -1.55643e-09 -0.382538)
(1.24203 -5.29734e-10 -0.417761)
(1.28245 2.47111e-10 -0.449461)
(1.3201 7.37758e-10 -0.477688)
(1.35489 8.03197e-10 -0.502534)
(1.38677 3.50129e-10 -0.524131)
(1.4157 -5.65549e-10 -0.542636)
(1.44172 -1.73196e-09 -0.558231)
(1.46486 -2.85756e-09 -0.571111)
(1.4852 -3.68064e-09 -0.581477)
(1.5028 -4.05427e-09 -0.589536)
(1.51778 -3.97477e-09 -0.595494)
(1.53025 -3.5537e-09 -0.59955)
(1.54032 -2.95734e-09 -0.6019)
(1.54813 -2.34623e-09 -0.602727)
(1.55379 -1.83317e-09 -0.602205)
(1.55744 -1.46949e-09 -0.600498)
(1.5592 -1.25348e-09 -0.597755)
(1.5592 -1.15016e-09 -0.594117)
(1.55757 -1.11195e-09 -0.589708)
(1.55442 -1.09397e-09 -0.584644)
(1.54987 -1.06208e-09 -0.579028)
(1.54402 -9.94847e-10 -0.572952)
(1.53699 -8.81499e-10 -0.566497)
(1.52888 -7.19151e-10 -0.559737)
(1.51977 -5.09466e-10 -0.552733)
(1.50976 -2.56149e-10 -0.545542)
(1.49893 3.63765e-11 -0.538209)
(1.48736 3.63715e-10 -0.530776)
(1.47513 7.21035e-10 -0.523275)
(1.4623 1.10307e-09 -0.515735)
(1.44893 1.50238e-09 -0.50818)
(1.4351 1.90977e-09 -0.500627)
(1.42086 2.31345e-09 -0.493091)
(1.40625 2.70059e-09 -0.485583)
(1.39133 3.05898e-09 -0.478111)
(1.37614 3.37947e-09 -0.47068)
(1.36073 3.65866e-09 -0.463294)
(1.34514 3.89977e-09 -0.455954)
(1.32939 4.11321e-09 -0.448659)
(1.31353 4.31431e-09 -0.441408)
(1.29759 4.52075e-09 -0.434199)
(1.2816 4.74761e-09 -0.427027)
(1.26557 5.00456e-09 -0.419891)
(1.24955 5.29428e-09 -0.412785)
(1.23355 5.61147e-09 -0.405706)
(1.2176 5.94437e-09 -0.398649)
(1.20171 6.2759e-09 -0.39161)
(1.1859 6.58374e-09 -0.384587)
(1.17019 6.83929e-09 -0.377574)
(1.1546 7.00552e-09 -0.370571)
(1.13914 7.03438e-09 -0.363573)
(1.12383 6.8666e-09 -0.35658)
(1.10867 6.43455e-09 -0.349589)
(1.09369 5.66955e-09 -0.3426)
(1.07889 4.51206e-09 -0.335614)
(1.06427 2.92698e-09 -0.328629)
(1.04986 9.2138e-10 -0.321647)
(1.03566 -1.4372e-09 -0.314671)
(1.02167 -4.0084e-09 -0.3077)
(1.00791 -6.58337e-09 -0.30074)
(0.99438 -8.92077e-09 -0.293791)
(0.981086 -1.08199e-08 -0.286858)
(0.968034 -1.22256e-08 -0.279944)
(0.95523 -1.33309e-08 -0.273054)
(0.942677 -1.46243e-08 -0.266191)
(0.93038 -1.68301e-08 -0.25936)
(0.918343 -2.07151e-08 -0.252566)
(0.906569 -2.67994e-08 -0.245812)
(0.89506 -3.50669e-08 -0.239103)
(0.883821 -4.48063e-08 -0.232443)
(0.872852 -5.4675e-08 -0.225836)
(0.862155 -6.29939e-08 -0.219284)
(0.851731 -6.81738e-08 -0.212792)
(0.841581 -6.91094e-08 -0.206361)
(0.831703 -6.53999e-08 -0.199995)
(0.822097 -5.73344e-08 -0.193696)
(0.812761 -4.56751e-08 -0.187467)
(0.803693 -3.13497e-08 -0.18131)
(0.79489 -1.53466e-08 -0.175228)
(0.786349 9.41658e-10 -0.169225)
(0.778068 1.63359e-08 -0.163303)
(0.770044 3.08566e-08 -0.157466)
(0.762274 4.35297e-08 -0.151717)
(0.754754 5.19316e-08 -0.146059)
(0.747483 5.90433e-08 -0.140494)
(0.740458 7.02806e-08 -0.135025)
(0.733676 7.70182e-08 -0.129654)
(0.727136 6.8084e-08 -0.124382)
(0.720834 5.5734e-08 -0.119209)
(0.714769 5.68084e-08 -0.114135)
(0.70894 6.40275e-08 -0.10916)
(0.703344 6.00178e-08 -0.104283)
(0.697979 4.24419e-08 -0.0995013)
(0.692844 2.21038e-08 -0.0948119)
(0.687936 7.65346e-09 -0.0902116)
(0.683255 -3.19143e-10 -0.0856965)
(0.678798 -5.15949e-09 -0.081262)
(0.674563 -9.27801e-09 -0.0769029)
(0.67055 -1.26896e-08 -0.0726135)
(0.666758 -1.34269e-08 -0.0683875)
(0.663185 -9.0816e-09 -0.064218)
(0.659831 3.85402e-10 -0.0600975)
(0.656696 1.0628e-08 -0.0560179)
(0.65378 1.66095e-08 -0.0519703)
(0.651083 1.72995e-08 -0.0479455)
(0.648606 1.55284e-08 -0.0439331)
(0.64635 1.37482e-08 -0.0399223)
(0.644318 1.22938e-08 -0.0359014)
(0.64251 1.0682e-08 -0.0318579)
(0.640929 8.64656e-09 -0.0277784)
(0.639577 5.95735e-09 -0.0236489)
(0.638459 2.11567e-09 -0.0194545)
(0.637576 -3.51567e-09 -0.0151793)
(0.636933 -1.14083e-08 -0.0108065)
(0.636534 -2.14414e-08 -0.00631844)
(0.636384 -3.25421e-08 -0.00169621)
(0.636488 -4.33454e-08 0.00308017)
(0.63685 -5.33996e-08 0.00803192)
(0.637478 -6.25565e-08 0.0131816)
(0.638376 -6.80275e-08 0.0185531)
(0.639552 -6.39107e-08 0.0241718)
(0.64101 -4.79255e-08 0.0300649)
(0.642757 -2.70675e-08 0.0362609)
(0.6448 -1.24194e-08 0.0427905)
(0.647144 -7.29943e-09 0.0496863)
(0.649795 -3.14501e-09 0.0569829)
(0.652757 5.54065e-09 0.0647176)
(0.656037 1.27342e-08 0.0729301)
(0.659636 1.2337e-08 0.0816627)
(0.663557 6.73339e-09 0.0909612)
(0.667801 5.56466e-09 0.100875)
(0.672368 1.2741e-08 0.111455)
(0.677252 2.38272e-08 0.122761)
(0.682447 3.76114e-08 0.134852)
(0.687941 5.53824e-08 0.147794)
(0.693719 7.42623e-08 0.161659)
(0.699758 8.85436e-08 0.176523)
(0.706027 9.19107e-08 0.192467)
(0.712488 7.94719e-08 0.209578)
(0.719092 5.21473e-08 0.227948)
(0.725775 1.70137e-08 0.247674)
(0.732459 -1.87227e-08 0.268859)
(0.739048 -5.02466e-08 0.291608)
(0.745425 -7.29421e-08 0.316028)
(0.751445 -8.02682e-08 0.342227)
(0.756938 -6.73567e-08 0.370311)
(0.761696 -3.54822e-08 0.400379)
(0.765475 9.74196e-09 0.432515)
(0.767988 6.1556e-08 0.466789)
(0.768901 1.11889e-07 0.503239)
(0.767827 1.52227e-07 0.541866)
(0.764324 1.77622e-07 0.582617)
(0.757899 1.90569e-07 0.625372)
(0.748001 2.00628e-07 0.66992)
(0.734039 2.25024e-07 0.715939)
(0.715387 2.86139e-07 0.762972)
(0.691413 3.91672e-07 0.810401)
(0.661507 5.03652e-07 0.857424)
(0.625132 5.48234e-07 0.903042)
(0.581877 5.08533e-07 0.946048)
(0.531527 4.98952e-07 0.98504)
(0.474139 6.23782e-07 1.01845)
(0.410114 8.09178e-07 1.04456)
(0.34025 1.01973e-06 1.06158)
(0.265771 1.32979e-06 1.06747)
(0.188226 1.89642e-06 1.05938)
(0.112158 3.48587e-06 1.03023)
(0.0463533 1.22017e-05 0.944836)
(0.0239811 6.67629e-06 1.30362)
(0.00474738 1.3048e-06 1.27603)
(0.0213746 9.71862e-07 1.22656)
(0.0379085 1.30229e-06 1.16896)
(0.0617359 -2.88621e-07 1.10807)
(0.0906709 9.23761e-07 1.04576)
(0.124027 5.76392e-07 0.983244)
(0.160853 -4.07231e-07 0.921205)
(0.20036 -3.00722e-07 0.859958)
(0.241886 2.23067e-07 0.799561)
(0.284921 2.90725e-07 0.739892)
(0.329116 3.46574e-08 0.680718)
(0.374272 -1.31275e-07 0.621762)
(0.420324 -1.15763e-07 0.562745)
(0.467301 -4.18514e-08 0.503426)
(0.515295 -7.68881e-10 0.443627)
(0.564426 4.89233e-09 0.383251)
(0.614806 3.41449e-09 0.322287)
(0.666514 8.29087e-09 0.260817)
(0.719569 1.50849e-08 0.199008)
(0.773914 1.58789e-08 0.137112)
(0.829409 8.67144e-09 0.0754526)
(0.885826 -2.75246e-09 0.0144106)
(0.942786 -1.31092e-08 -0.0454889)
(0.999641 -1.90426e-08 -0.103593)
(1.05597 -2.00629e-08 -0.159441)
(1.11132 -1.75879e-08 -0.212636)
(1.16525 -1.35788e-08 -0.262828)
(1.21735 -9.59144e-09 -0.309729)
(1.26726 -6.41279e-09 -0.353123)
(1.31467 -4.14276e-09 -0.392869)
(1.35931 -2.51083e-09 -0.428894)
(1.40101 -1.21887e-09 -0.461192)
(1.4396 -1.50632e-10 -0.489813)
(1.47501 6.03898e-10 -0.514859)
(1.50719 8.66702e-10 -0.536469)
(1.53614 5.29915e-10 -0.554817)
(1.56189 -3.42542e-10 -0.570099)
(1.58451 -1.51803e-09 -0.582524)
(1.60407 -2.68186e-09 -0.592313)
(1.6207 -3.5535e-09 -0.599689)
(1.63451 -3.97287e-09 -0.604874)
(1.64563 -3.93003e-09 -0.608086)
(1.65421 -3.53493e-09 -0.609533)
(1.66038 -2.95488e-09 -0.609414)
(1.6643 -2.35331e-09 -0.607916)
(1.66611 -1.84618e-09 -0.605215)
(1.66596 -1.48748e-09 -0.601471)
(1.66399 -1.27695e-09 -0.596833)
(1.66033 -1.18006e-09 -0.591436)
(1.65511 -1.14804e-09 -0.585402)
(1.64847 -1.13455e-09 -0.57884)
(1.64052 -1.10323e-09 -0.571847)
(1.63138 -1.03095e-09 -0.564509)
(1.62115 -9.06406e-10 -0.556904)
(1.60993 -7.26318e-10 -0.549095)
(1.59783 -4.93371e-10 -0.541142)
(1.58492 -2.12191e-10 -0.533091)
(1.5713 1.10779e-10 -0.524986)
(1.55704 4.68893e-10 -0.516859)
(1.54221 8.55583e-10 -0.508741)
(1.52688 1.2629e-09 -0.500653)
(1.51111 1.68123e-09 -0.492614)
(1.49495 2.09928e-09 -0.484638)
(1.47848 2.50436e-09 -0.476736)
(1.46172 2.8837e-09 -0.468914)
(1.44473 3.22718e-09 -0.461176)
(1.42756 3.52974e-09 -0.453525)
(1.41023 3.79308e-09 -0.44596)
(1.39279 4.0271e-09 -0.438479)
(1.37527 4.24806e-09 -0.43108)
(1.3577 4.47539e-09 -0.423758)
(1.34011 4.72789e-09 -0.416508)
(1.32253 5.01921e-09 -0.409325)
(1.30498 5.35446e-09 -0.402203)
(1.28749 5.72942e-09 -0.395137)
(1.27007 6.13169e-09 -0.38812)
(1.25275 6.54169e-09 -0.381146)
(1.23554 6.93394e-09 -0.37421)
(1.21846 7.27639e-09 -0.367307)
(1.20152 7.52748e-09 -0.360433)
(1.18475 7.63441e-09 -0.353582)
(1.16815 7.53087e-09 -0.346752)
(1.15174 7.13976e-09 -0.33994)
(1.13552 6.37919e-09 -0.333142)
(1.11951 5.17383e-09 -0.326358)
(1.10372 3.46987e-09 -0.319586)
(1.08815 1.25516e-09 -0.312826)
(1.07282 -1.41743e-09 -0.306078)
(1.05773 -4.40734e-09 -0.299343)
(1.04289 -7.47655e-09 -0.292622)
(1.0283 -1.03115e-08 -0.285916)
(1.01398 -1.2594e-08 -0.27923)
(0.999919 -1.41266e-08 -0.272564)
(0.986129 -1.4986e-08 -0.265923)
(0.972614 -1.5638e-08 -0.25931)
(0.959378 -1.69342e-08 -0.252729)
(0.946423 -1.99209e-08 -0.246184)
(0.933753 -2.54714e-08 -0.239678)
(0.921372 -3.38476e-08 -0.233216)
(0.90928 -4.4375e-08 -0.226802)
(0.897481 -5.54189e-08 -0.220438)
(0.885976 -6.47292e-08 -0.214129)
(0.874766 -7.00531e-08 -0.207877)
(0.863852 -6.97659e-08 -0.201684)
(0.853233 -6.32561e-08 -0.195553)
(0.842908 -5.0939e-08 -0.189485)
(0.832876 -3.39704e-08 -0.183482)
(0.823134 -1.38178e-08 -0.177547)
(0.813678 8.25504e-09 -0.17168)
(0.804506 3.13998e-08 -0.165886)
(0.795614 5.39134e-08 -0.160167)
(0.786997 7.35979e-08 -0.154526)
(0.778653 9.08003e-08 -0.148967)
(0.770578 1.04702e-07 -0.143492)
(0.762769 1.07618e-07 -0.138105)
(0.755222 1.01118e-07 -0.132808)
(0.747935 1.03617e-07 -0.127604)
(0.740904 1.08736e-07 -0.122496)
(0.734128 8.54665e-08 -0.117483)
(0.727603 4.21306e-08 -0.112568)
(0.721328 1.5333e-08 -0.10775)
(0.7153 8.42189e-09 -0.103029)
(0.709516 -3.44115e-09 -0.0984025)
(0.703975 -3.10715e-08 -0.0938696)
(0.698675 -6.34076e-08 -0.089427)
(0.693613 -8.72212e-08 -0.0850714)
(0.688787 -9.92842e-08 -0.0807989)
(0.684194 -1.03481e-07 -0.0766052)
(0.679834 -1.04165e-07 -0.0724852)
(0.675704 -1.03396e-07 -0.0684334)
(0.671803 -1.0025e-07 -0.0644438)
(0.668129 -9.07306e-08 -0.0605098)
(0.664683 -7.07252e-08 -0.0566243)
(0.661463 -4.33725e-08 -0.0527794)
(0.658469 -1.77304e-08 -0.0489669)
(0.655702 -5.56761e-11 -0.0451776)
(0.653162 1.12621e-08 -0.0414018)
(0.650852 1.99659e-08 -0.037629)
(0.648771 2.70781e-08 -0.0338479)
(0.646924 3.19089e-08 -0.0300465)
(0.645311 3.40801e-08 -0.0262119)
(0.643935 3.3639e-08 -0.0223304)
(0.642801 3.0603e-08 -0.0183876)
(0.641912 2.49989e-08 -0.0143681)
(0.641273 1.69465e-08 -0.0102556)
(0.640887 6.95001e-09 -0.00603292)
(0.640761 -3.2092e-09 -0.00168168)
(0.640901 -1.08694e-08 0.00281765)
(0.641314 -1.53915e-08 0.00748587)
(0.642005 -2.00315e-08 0.0123452)
(0.642983 -2.67967e-08 0.0174192)
(0.644256 -2.86308e-08 0.0227331)
(0.64583 -1.58993e-08 0.0283137)
(0.647715 8.72129e-09 0.0341897)
(0.649919 2.75279e-08 0.0403915)
(0.65245 2.57375e-08 0.046952)
(0.655317 1.46067e-08 0.0539061)
(0.658528 1.20431e-08 0.0612913)
(0.662091 1.67068e-08 0.0691482)
(0.666014 1.68728e-08 0.0775201)
(0.670303 6.19886e-09 0.0864538)
(0.674964 -3.0355e-09 0.0959999)
(0.680002 -4.23645e-10 0.106213)
(0.685419 7.70025e-09 0.117154)
(0.691214 1.7169e-08 0.128886)
(0.697384 2.95065e-08 0.14148)
(0.703921 4.23812e-08 0.155013)
(0.710811 5.25031e-08 0.169568)
(0.718034 5.66689e-08 0.185234)
(0.725561 4.81182e-08 0.20211)
(0.733352 2.32637e-08 0.220299)
(0.741357 -1.08251e-08 0.239913)
(0.749509 -4.46483e-08 0.261073)
(0.757723 -7.41024e-08 0.283904)
(0.765891 -9.8298e-08 0.30854)
(0.773882 -1.10825e-07 0.335119)
(0.78153 -1.02295e-07 0.36378)
(0.788633 -7.10704e-08 0.394663)
(0.794947 -2.2571e-08 0.427899)
(0.800177 3.77989e-08 0.463607)
(0.803975 1.0372e-07 0.501886)
(0.805925 1.64297e-07 0.542797)
(0.805546 2.07676e-07 0.586354)
(0.802281 2.31155e-07 0.632505)
(0.795497 2.42389e-07 0.6811)
(0.784487 2.58366e-07 0.731873)
(0.768486 3.02654e-07 0.7844)
(0.746685 3.87975e-07 0.838068)
(0.71827 4.90106e-07 0.892035)
(0.682473 5.53205e-07 0.945202)
(0.638647 5.50738e-07 0.996186)
(0.58635 5.4278e-07 1.04332)
(0.525462 6.09446e-07 1.08468)
(0.456291 7.35489e-07 1.11811)
(0.379679 9.01353e-07 1.14129)
(0.297065 1.14006e-06 1.15169)
(0.210409 1.57616e-06 1.14591)
(0.125093 2.82377e-06 1.11619)
(0.0513107 9.67225e-06 1.02472)
(0.0239867 6.67494e-06 1.30364)
(0.00475005 1.30438e-06 1.27603)
(0.0213782 9.7187e-07 1.22656)
(0.0379061 1.3023e-06 1.16896)
(0.0617349 -2.88619e-07 1.10806)
(0.0906741 9.23758e-07 1.04576)
(0.124028 5.76392e-07 0.983244)
(0.160851 -4.07231e-07 0.921204)
(0.200359 -3.00722e-07 0.859958)
(0.241886 2.23067e-07 0.799561)
(0.284922 2.90725e-07 0.739892)
(0.329116 3.46574e-08 0.680719)
(0.374272 -1.31275e-07 0.621762)
(0.420324 -1.15763e-07 0.562745)
(0.467301 -4.18514e-08 0.503426)
(0.515295 -7.68881e-10 0.443627)
(0.564426 4.89234e-09 0.383251)
(0.614806 3.41449e-09 0.322287)
(0.666514 8.29087e-09 0.260817)
(0.719569 1.50849e-08 0.199008)
(0.773914 1.58789e-08 0.137112)
(0.829409 8.67144e-09 0.0754526)
(0.885826 -2.75246e-09 0.0144106)
(0.942786 -1.31092e-08 -0.0454889)
(0.999641 -1.90426e-08 -0.103593)
(1.05597 -2.00629e-08 -0.159441)
(1.11132 -1.75879e-08 -0.212636)
(1.16525 -1.35788e-08 -0.262828)
(1.21735 -9.59145e-09 -0.309729)
(1.26726 -6.41279e-09 -0.353123)
(1.31467 -4.14276e-09 -0.392869)
(1.35931 -2.51084e-09 -0.428895)
(1.40101 -1.21887e-09 -0.461192)
(1.4396 -1.50632e-10 -0.489813)
(1.47501 6.03898e-10 -0.514859)
(1.50719 8.66703e-10 -0.536469)
(1.53614 5.29915e-10 -0.554817)
(1.56189 -3.42543e-10 -0.570099)
(1.58451 -1.51803e-09 -0.582524)
(1.60407 -2.68186e-09 -0.592313)
(1.6207 -3.5535e-09 -0.599689)
(1.63451 -3.97288e-09 -0.604874)
(1.64563 -3.93003e-09 -0.608086)
(1.65421 -3.53494e-09 -0.609533)
(1.66038 -2.95488e-09 -0.609414)
(1.6643 -2.35331e-09 -0.607916)
(1.66611 -1.84619e-09 -0.605215)
(1.66596 -1.48748e-09 -0.601471)
(1.66399 -1.27695e-09 -0.596834)
(1.66033 -1.18007e-09 -0.591437)
(1.65511 -1.14804e-09 -0.585402)
(1.64847 -1.13455e-09 -0.57884)
(1.64052 -1.10323e-09 -0.571847)
(1.63138 -1.03095e-09 -0.56451)
(1.62115 -9.06407e-10 -0.556904)
(1.60993 -7.26318e-10 -0.549095)
(1.59783 -4.93371e-10 -0.541142)
(1.58492 -2.12191e-10 -0.533091)
(1.5713 1.10779e-10 -0.524986)
(1.55704 4.68893e-10 -0.516859)
(1.54221 8.55583e-10 -0.508741)
(1.52688 1.2629e-09 -0.500653)
(1.51111 1.68123e-09 -0.492614)
(1.49495 2.09928e-09 -0.484638)
(1.47848 2.50436e-09 -0.476736)
(1.46172 2.88371e-09 -0.468914)
(1.44473 3.22719e-09 -0.461176)
(1.42756 3.52974e-09 -0.453525)
(1.41023 3.79308e-09 -0.44596)
(1.39279 4.0271e-09 -0.438479)
(1.37527 4.24806e-09 -0.43108)
(1.3577 4.47539e-09 -0.423758)
(1.34011 4.72789e-09 -0.416508)
(1.32253 5.01922e-09 -0.409325)
(1.30498 5.35446e-09 -0.402203)
(1.28749 5.72942e-09 -0.395137)
(1.27007 6.13169e-09 -0.388119)
(1.25275 6.5417e-09 -0.381146)
(1.23554 6.93394e-09 -0.37421)
(1.21846 7.27639e-09 -0.367307)
(1.20152 7.52748e-09 -0.360433)
(1.18475 7.63441e-09 -0.353582)
(1.16815 7.53087e-09 -0.346752)
(1.15174 7.13977e-09 -0.33994)
(1.13552 6.3792e-09 -0.333142)
(1.11951 5.17383e-09 -0.326358)
(1.10372 3.46987e-09 -0.319586)
(1.08815 1.25516e-09 -0.312826)
(1.07282 -1.41743e-09 -0.306078)
(1.05773 -4.40734e-09 -0.299343)
(1.04289 -7.47655e-09 -0.292622)
(1.0283 -1.03115e-08 -0.285916)
(1.01398 -1.2594e-08 -0.27923)
(0.999919 -1.41266e-08 -0.272564)
(0.986129 -1.4986e-08 -0.265923)
(0.972614 -1.5638e-08 -0.25931)
(0.959378 -1.69342e-08 -0.252729)
(0.946423 -1.99209e-08 -0.246184)
(0.933754 -2.54714e-08 -0.239678)
(0.921372 -3.38476e-08 -0.233216)
(0.90928 -4.43751e-08 -0.226802)
(0.897481 -5.5419e-08 -0.220438)
(0.885976 -6.47292e-08 -0.214129)
(0.874766 -7.00531e-08 -0.207877)
(0.863852 -6.9766e-08 -0.201684)
(0.853233 -6.32562e-08 -0.195553)
(0.842908 -5.09391e-08 -0.189485)
(0.832876 -3.39705e-08 -0.183482)
(0.823134 -1.38178e-08 -0.177547)
(0.813678 8.25504e-09 -0.17168)
(0.804506 3.13998e-08 -0.165886)
(0.795614 5.39134e-08 -0.160167)
(0.786997 7.35979e-08 -0.154526)
(0.778653 9.08004e-08 -0.148967)
(0.770578 1.04702e-07 -0.143492)
(0.762769 1.07618e-07 -0.138105)
(0.755222 1.01118e-07 -0.132808)
(0.747935 1.03617e-07 -0.127604)
(0.740904 1.08736e-07 -0.122496)
(0.734128 8.54666e-08 -0.117483)
(0.727603 4.21306e-08 -0.112568)
(0.721328 1.5333e-08 -0.10775)
(0.715299 8.4219e-09 -0.103029)
(0.709516 -3.44116e-09 -0.0984025)
(0.703975 -3.10715e-08 -0.0938695)
(0.698675 -6.34077e-08 -0.089427)
(0.693613 -8.72213e-08 -0.0850714)
(0.688787 -9.92843e-08 -0.080799)
(0.684194 -1.03481e-07 -0.0766052)
(0.679834 -1.04165e-07 -0.0724852)
(0.675704 -1.03396e-07 -0.0684334)
(0.671803 -1.0025e-07 -0.0644439)
(0.668129 -9.07307e-08 -0.0605099)
(0.664683 -7.07253e-08 -0.0566244)
(0.661463 -4.33726e-08 -0.0527795)
(0.658469 -1.77304e-08 -0.048967)
(0.655702 -5.56761e-11 -0.0451776)
(0.653162 1.12621e-08 -0.0414018)
(0.650852 1.99659e-08 -0.037629)
(0.648771 2.70781e-08 -0.0338479)
(0.646923 3.19089e-08 -0.0300465)
(0.645311 3.40801e-08 -0.0262119)
(0.643935 3.3639e-08 -0.0223304)
(0.642801 3.06031e-08 -0.0183876)
(0.641912 2.49989e-08 -0.0143681)
(0.641273 1.69465e-08 -0.0102556)
(0.640887 6.95001e-09 -0.00603293)
(0.640761 -3.2092e-09 -0.00168171)
(0.640901 -1.08694e-08 0.00281759)
(0.641314 -1.53915e-08 0.00748578)
(0.642005 -2.00315e-08 0.0123451)
(0.642983 -2.67967e-08 0.0174191)
(0.644256 -2.86308e-08 0.0227329)
(0.64583 -1.58993e-08 0.0283136)
(0.647715 8.72129e-09 0.0341896)
(0.649919 2.75279e-08 0.0403914)
(0.65245 2.57375e-08 0.0469519)
(0.655317 1.46067e-08 0.0539059)
(0.658528 1.20431e-08 0.0612912)
(0.662091 1.67068e-08 0.0691481)
(0.666014 1.68728e-08 0.07752)
(0.670303 6.19886e-09 0.0864537)
(0.674964 -3.0355e-09 0.0959998)
(0.680002 -4.23645e-10 0.106213)
(0.685419 7.70026e-09 0.117154)
(0.691214 1.7169e-08 0.128886)
(0.697384 2.95065e-08 0.14148)
(0.703921 4.23812e-08 0.155013)
(0.710811 5.25032e-08 0.169568)
(0.718034 5.66689e-08 0.185234)
(0.725561 4.81182e-08 0.20211)
(0.733353 2.32637e-08 0.220299)
(0.741358 -1.08251e-08 0.239913)
(0.749509 -4.46483e-08 0.261072)
(0.757723 -7.41024e-08 0.283904)
(0.765892 -9.8298e-08 0.30854)
(0.773882 -1.10825e-07 0.335119)
(0.78153 -1.02295e-07 0.36378)
(0.788633 -7.10704e-08 0.394663)
(0.794947 -2.2571e-08 0.427898)
(0.800178 3.77989e-08 0.463607)
(0.803976 1.0372e-07 0.501885)
(0.805926 1.64297e-07 0.542796)
(0.805548 2.07676e-07 0.586354)
(0.802282 2.31155e-07 0.632504)
(0.795498 2.4239e-07 0.681099)
(0.784489 2.58367e-07 0.731872)
(0.768488 3.02654e-07 0.784399)
(0.746687 3.87975e-07 0.838066)
(0.718272 4.90106e-07 0.892033)
(0.682475 5.53205e-07 0.945199)
(0.638649 5.50738e-07 0.996183)
(0.586353 5.42781e-07 1.04332)
(0.525465 6.09447e-07 1.08467)
(0.456293 7.3549e-07 1.1181)
(0.379681 9.01354e-07 1.14128)
(0.297068 1.14006e-06 1.15167)
(0.21041 1.57616e-06 1.14589)
(0.125092 2.82378e-06 1.11617)
(0.0513087 9.67239e-06 1.02468)
(0.0199823 1.54058e-05 1.28671)
(0.0106598 3.20142e-06 1.27098)
(0.0321078 -8.86221e-07 1.21015)
(0.0552326 -6.17309e-07 1.14405)
(0.087563 -5.24895e-07 1.07626)
(0.126011 1.03153e-06 1.00839)
(0.169454 3.25344e-07 0.941501)
(0.216535 -6.6738e-07 0.876146)
(0.266168 -3.07373e-07 0.812482)
(0.317487 3.89297e-07 0.75037)
(0.36986 4.58268e-07 0.689485)
(0.42289 1.19668e-07 0.629399)
(0.476384 -1.2179e-07 0.569665)
(0.530319 -1.41057e-07 0.509871)
(0.584784 -6.92158e-08 0.449685)
(0.639933 -1.70925e-08 0.388882)
(0.695936 -5.9689e-10 0.327359)
(0.752934 4.27371e-09 0.265141)
(0.811007 1.16135e-08 0.202368)
(0.870149 1.8635e-08 0.139294)
(0.930251 1.86433e-08 0.0762613)
(0.991102 1.03247e-08 0.013691)
(1.05229 -2.11932e-09 -0.0478208)
(1.11311 -1.31621e-08 -0.107542)
(1.17311 -1.94693e-08 -0.164957)
(1.23181 -2.06602e-08 -0.21963)
(1.28875 -1.82755e-08 -0.271171)
(1.34349 -1.43663e-08 -0.319265)
(1.39565 -1.05051e-08 -0.363675)
(1.44492 -7.42702e-09 -0.404242)
(1.49103 -5.1661e-09 -0.440887)
(1.53379 -3.42097e-09 -0.473602)
(1.57307 -1.91385e-09 -0.502442)
(1.6088 -5.85007e-10 -0.527515)
(1.64094 4.1341e-10 -0.548975)
(1.66952 8.59672e-10 -0.567006)
(1.6946 6.31699e-10 -0.58182)
(1.71626 -1.97944e-10 -0.593646)
(1.73462 -1.37612e-09 -0.602721)
(1.74981 -2.56718e-09 -0.609284)
(1.76199 -3.47536e-09 -0.613577)
(1.7713 -3.93107e-09 -0.61583)
(1.77791 -3.92038e-09 -0.616271)
(1.78199 -3.55146e-09 -0.61511)
(1.78371 -2.99273e-09 -0.612549)
(1.78324 -2.40864e-09 -0.608775)
(1.78074 -1.91578e-09 -0.603958)
(1.77636 -1.56901e-09 -0.598258)
(1.77026 -1.36872e-09 -0.591815)
(1.76258 -1.27997e-09 -0.58476)
(1.75347 -1.25328e-09 -0.577206)
(1.74305 -1.24092e-09 -0.569258)
(1.73144 -1.2057e-09 -0.561004)
(1.71877 -1.12358e-09 -0.552523)
(1.70513 -9.82677e-10 -0.543885)
(1.69064 -7.80196e-10 -0.535148)
(1.67538 -5.19436e-10 -0.526361)
(1.65943 -2.06917e-10 -0.517568)
(1.64289 1.49283e-10 -0.508804)
(1.62583 5.4073e-10 -0.500096)
(1.6083 9.5812e-10 -0.491468)
(1.59039 1.3913e-09 -0.482938)
(1.57214 1.8286e-09 -0.474518)
(1.55361 2.25695e-09 -0.466218)
(1.53485 2.66318e-09 -0.458044)
(1.5159 3.0358e-09 -0.449999)
(1.49681 3.36796e-09 -0.442083)
(1.47761 3.65916e-09 -0.434294)
(1.45835 3.91796e-09 -0.426631)
(1.43905 4.16026e-09 -0.419086)
(1.41974 4.4075e-09 -0.411656)
(1.40046 4.68173e-09 -0.404333)
(1.38122 5.00094e-09 -0.39711)
(1.36205 5.37445e-09 -0.389979)
(1.34298 5.8009e-09 -0.382934)
(1.32401 6.26844e-09 -0.375965)
(1.30518 6.75608e-09 -0.369066)
(1.2865 7.23572e-09 -0.362229)
(1.26798 7.67182e-09 -0.355448)
(1.24964 8.01946e-09 -0.348716)
(1.23149 8.2213e-09 -0.342026)
(1.21355 8.20561e-09 -0.335375)
(1.19582 7.88692e-09 -0.328756)
(1.17832 7.17267e-09 -0.322166)
(1.16106 5.9725e-09 -0.315603)
(1.14404 4.21382e-09 -0.309062)
(1.12728 1.86155e-09 -0.302543)
(1.11078 -1.05654e-09 -0.296044)
(1.09454 -4.4193e-09 -0.289564)
(1.07858 -7.98526e-09 -0.283104)
(1.0629 -1.13919e-08 -0.276665)
(1.04751 -1.42078e-08 -0.270247)
(1.03241 -1.60623e-08 -0.263853)
(1.0176 -1.68423e-08 -0.257486)
(1.00309 -1.68939e-08 -0.251146)
(0.988878 -1.71176e-08 -0.244839)
(0.974973 -1.88361e-08 -0.238567)
(0.961377 -2.33838e-08 -0.232334)
(0.94809 -3.14992e-08 -0.226144)
(0.935116 -4.27594e-08 -0.219999)
(0.922456 -5.53525e-08 -0.213905)
(0.910112 -6.63956e-08 -0.207863)
(0.898085 -7.27522e-08 -0.201876)
(0.886376 -7.20251e-08 -0.195947)
(0.874986 -6.32607e-08 -0.190078)
(0.863912 -4.70425e-08 -0.184269)
(0.853155 -2.50119e-08 -0.178521)
(0.84271 7.96395e-10 -0.172836)
(0.832575 2.83898e-08 -0.167215)
(0.822745 5.63529e-08 -0.161659)
(0.813217 8.46424e-08 -0.156171)
(0.803985 1.11831e-07 -0.150754)
(0.795044 1.33882e-07 -0.145411)
(0.786392 1.52068e-07 -0.140145)
(0.778023 1.70391e-07 -0.13496)
(0.769934 1.7248e-07 -0.129858)
(0.762122 1.4651e-07 -0.124844)
(0.754582 1.32525e-07 -0.119919)
(0.747311 1.45157e-07 -0.115087)
(0.740308 1.23628e-07 -0.110348)
(0.733569 5.30461e-08 -0.105703)
(0.72709 -9.11523e-09 -0.101153)
(0.720871 -3.83445e-08 -0.0966968)
(0.714908 -6.25646e-08 -0.0923338)
(0.709198 -1.02883e-07 -0.0880614)
(0.70374 -1.49728e-07 -0.0838768)
(0.69853 -1.84629e-07 -0.0797765)
(0.693566 -2.00427e-07 -0.0757568)
(0.688844 -2.01328e-07 -0.0718135)
(0.684364 -1.94348e-07 -0.0679418)
(0.680122 -1.85247e-07 -0.0641364)
(0.676116 -1.77452e-07 -0.0603918)
(0.672346 -1.68646e-07 -0.0567016)
(0.66881 -1.48663e-07 -0.053059)
(0.665508 -1.13167e-07 -0.0494567)
(0.662439 -7.12559e-08 -0.0458868)
(0.659603 -3.59624e-08 -0.0423406)
(0.657002 -9.32884e-09 -0.0388089)
(0.654636 1.27725e-08 -0.0352816)
(0.652507 3.1587e-08 -0.0317481)
(0.650618 4.53636e-08 -0.0281966)
(0.648971 5.27876e-08 -0.024615)
(0.647569 5.39442e-08 -0.0209899)
(0.646416 4.98473e-08 -0.0173074)
(0.645516 4.2238e-08 -0.0135528)
(0.644874 3.29961e-08 -0.00971047)
(0.644495 2.35104e-08 -0.00576383)
(0.644386 1.60551e-08 -0.00169519)
(0.644554 1.52584e-08 0.00251436)
(0.645005 2.44478e-08 0.00688506)
(0.64575 3.71293e-08 0.0114386)
(0.646796 3.93014e-08 0.016198)
(0.648152 3.04223e-08 0.0211882)
(0.649828 2.76355e-08 0.0264355)
(0.651836 4.40656e-08 0.0319682)
(0.654184 6.47435e-08 0.0378166)
(0.656885 5.57811e-08 0.0440132)
(0.65995 2.27201e-08 0.0505929)
(0.663391 -1.25402e-10 0.0575933)
(0.667218 1.45948e-09 0.0650551)
(0.671444 1.53691e-08 0.0730221)
(0.67608 1.58884e-08 0.0815418)
(0.681138 9.47683e-09 0.0906658)
(0.686627 1.42076e-08 0.10045)
(0.692556 2.21528e-08 0.110957)
(0.698934 2.49102e-08 0.122254)
(0.705764 2.36517e-08 0.134414)
(0.713048 1.46675e-08 0.14752)
(0.720782 -2.02261e-09 0.16166)
(0.728957 -1.77848e-08 0.176933)
(0.737557 -3.34345e-08 0.193444)
(0.746554 -5.71553e-08 0.211309)
(0.755912 -8.3164e-08 0.230655)
(0.76558 -9.82243e-08 0.25162)
(0.775488 -9.90167e-08 0.27435)
(0.785544 -9.56394e-08 0.299005)
(0.795632 -9.0385e-08 0.325754)
(0.805602 -7.15116e-08 0.354773)
(0.815263 -3.43982e-08 0.386245)
(0.824379 1.3307e-08 0.420354)
(0.83266 6.68674e-08 0.457279)
(0.839749 1.27839e-07 0.497186)
(0.845215 1.91659e-07 0.540214)
(0.848542 2.42604e-07 0.586463)
(0.849118 2.71363e-07 0.63597)
(0.846229 2.80967e-07 0.688681)
(0.839051 2.85763e-07 0.744416)
(0.82666 3.11042e-07 0.802826)
(0.808041 3.77008e-07 0.863342)
(0.782129 4.69311e-07 0.925119)
(0.747859 5.40815e-07 0.986985)
(0.704253 5.61736e-07 1.04739)
(0.650536 5.60444e-07 1.10437)
(0.586285 5.91441e-07 1.15557)
(0.51161 6.65894e-07 1.19826)
(0.427322 7.77854e-07 1.22943)
(0.335078 9.48879e-07 1.24577)
(0.237364 1.27286e-06 1.24313)
(0.140689 2.24169e-06 1.21283)
(0.0571651 7.59702e-06 1.11396)
(0.0199759 1.54046e-05 1.28671)
(0.0106588 3.20195e-06 1.27098)
(0.0321106 -8.86588e-07 1.21016)
(0.0552307 -6.17417e-07 1.14405)
(0.0875636 -5.24915e-07 1.07626)
(0.126015 1.03154e-06 1.00839)
(0.169455 3.25344e-07 0.941502)
(0.216532 -6.67381e-07 0.876146)
(0.266168 -3.07373e-07 0.812481)
(0.317488 3.89297e-07 0.75037)
(0.369861 4.58268e-07 0.689485)
(0.42289 1.19668e-07 0.629399)
(0.476384 -1.2179e-07 0.569665)
(0.530319 -1.41057e-07 0.509871)
(0.584784 -6.92159e-08 0.449685)
(0.639933 -1.70925e-08 0.388882)
(0.695936 -5.9689e-10 0.327359)
(0.752934 4.27371e-09 0.265141)
(0.811007 1.16135e-08 0.202368)
(0.870149 1.8635e-08 0.139294)
(0.930251 1.86433e-08 0.0762613)
(0.991102 1.03247e-08 0.013691)
(1.05229 -2.11933e-09 -0.0478209)
(1.11311 -1.31621e-08 -0.107542)
(1.17311 -1.94693e-08 -0.164957)
(1.23181 -2.06602e-08 -0.21963)
(1.28875 -1.82755e-08 -0.271171)
(1.34349 -1.43663e-08 -0.319265)
(1.39565 -1.05051e-08 -0.363675)
(1.44492 -7.42703e-09 -0.404242)
(1.49103 -5.1661e-09 -0.440887)
(1.53379 -3.42097e-09 -0.473602)
(1.57307 -1.91385e-09 -0.502442)
(1.6088 -5.85007e-10 -0.527515)
(1.64094 4.13411e-10 -0.548975)
(1.66952 8.59672e-10 -0.567006)
(1.6946 6.317e-10 -0.58182)
(1.71626 -1.97944e-10 -0.593646)
(1.73462 -1.37612e-09 -0.602721)
(1.74981 -2.56718e-09 -0.609284)
(1.76199 -3.47536e-09 -0.613577)
(1.7713 -3.93108e-09 -0.615831)
(1.77791 -3.92038e-09 -0.616271)
(1.78199 -3.55146e-09 -0.61511)
(1.78371 -2.99273e-09 -0.612549)
(1.78324 -2.40865e-09 -0.608775)
(1.78074 -1.91578e-09 -0.603959)
(1.77636 -1.56901e-09 -0.598258)
(1.77026 -1.36872e-09 -0.591815)
(1.76258 -1.27997e-09 -0.58476)
(1.75347 -1.25328e-09 -0.577206)
(1.74305 -1.24092e-09 -0.569258)
(1.73144 -1.2057e-09 -0.561004)
(1.71877 -1.12358e-09 -0.552523)
(1.70513 -9.82678e-10 -0.543885)
(1.69064 -7.80196e-10 -0.535148)
(1.67538 -5.19436e-10 -0.526361)
(1.65943 -2.06917e-10 -0.517568)
(1.64289 1.49283e-10 -0.508804)
(1.62583 5.40731e-10 -0.500096)
(1.6083 9.5812e-10 -0.491468)
(1.59039 1.3913e-09 -0.482938)
(1.57214 1.8286e-09 -0.474518)
(1.55361 2.25695e-09 -0.466218)
(1.53485 2.66318e-09 -0.458044)
(1.5159 3.03581e-09 -0.449999)
(1.49681 3.36796e-09 -0.442083)
(1.47761 3.65917e-09 -0.434294)
(1.45835 3.91796e-09 -0.426631)
(1.43905 4.16026e-09 -0.419086)
(1.41974 4.4075e-09 -0.411656)
(1.40046 4.68173e-09 -0.404333)
(1.38122 5.00094e-09 -0.39711)
(1.36205 5.37445e-09 -0.389979)
(1.34298 5.8009e-09 -0.382934)
(1.32401 6.26844e-09 -0.375965)
(1.30518 6.75608e-09 -0.369066)
(1.2865 7.23572e-09 -0.362229)
(1.26798 7.67182e-09 -0.355448)
(1.24964 8.01946e-09 -0.348716)
(1.23149 8.2213e-09 -0.342026)
(1.21355 8.20561e-09 -0.335375)
(1.19582 7.88692e-09 -0.328756)
(1.17832 7.17267e-09 -0.322166)
(1.16106 5.9725e-09 -0.315603)
(1.14404 4.21382e-09 -0.309062)
(1.12728 1.86155e-09 -0.302543)
(1.11078 -1.05654e-09 -0.296044)
(1.09454 -4.4193e-09 -0.289564)
(1.07858 -7.98526e-09 -0.283104)
(1.0629 -1.13919e-08 -0.276665)
(1.04751 -1.42078e-08 -0.270247)
(1.03241 -1.60623e-08 -0.263853)
(1.0176 -1.68424e-08 -0.257486)
(1.00309 -1.68939e-08 -0.251146)
(0.988878 -1.71176e-08 -0.244839)
(0.974973 -1.88361e-08 -0.238567)
(0.961377 -2.33838e-08 -0.232334)
(0.94809 -3.14992e-08 -0.226144)
(0.935116 -4.27594e-08 -0.219999)
(0.922456 -5.53525e-08 -0.213905)
(0.910112 -6.63956e-08 -0.207863)
(0.898085 -7.27522e-08 -0.201876)
(0.886376 -7.20252e-08 -0.195947)
(0.874986 -6.32608e-08 -0.190078)
(0.863912 -4.70425e-08 -0.184269)
(0.853155 -2.50119e-08 -0.178521)
(0.84271 7.96395e-10 -0.172836)
(0.832575 2.83899e-08 -0.167215)
(0.822746 5.63529e-08 -0.161659)
(0.813217 8.46424e-08 -0.156171)
(0.803985 1.11832e-07 -0.150754)
(0.795044 1.33882e-07 -0.145411)
(0.786392 1.52068e-07 -0.140145)
(0.778023 1.70391e-07 -0.13496)
(0.769935 1.7248e-07 -0.129858)
(0.762122 1.4651e-07 -0.124844)
(0.754582 1.32525e-07 -0.119919)
(0.747312 1.45157e-07 -0.115087)
(0.740308 1.23628e-07 -0.110348)
(0.733569 5.30461e-08 -0.105703)
(0.72709 -9.11524e-09 -0.101153)
(0.720871 -3.83445e-08 -0.0966968)
(0.714908 -6.25646e-08 -0.0923337)
(0.709198 -1.02883e-07 -0.0880614)
(0.70374 -1.49729e-07 -0.0838767)
(0.69853 -1.84629e-07 -0.0797765)
(0.693566 -2.00427e-07 -0.0757568)
(0.688844 -2.01329e-07 -0.0718135)
(0.684364 -1.94348e-07 -0.0679418)
(0.680122 -1.85247e-07 -0.0641365)
(0.676116 -1.77452e-07 -0.0603918)
(0.672346 -1.68646e-07 -0.0567016)
(0.66881 -1.48663e-07 -0.053059)
(0.665508 -1.13168e-07 -0.0494568)
(0.662439 -7.12559e-08 -0.0458868)
(0.659603 -3.59625e-08 -0.0423406)
(0.657002 -9.32885e-09 -0.0388089)
(0.654636 1.27725e-08 -0.0352816)
(0.652507 3.1587e-08 -0.0317481)
(0.650618 4.53636e-08 -0.0281966)
(0.648971 5.27876e-08 -0.0246149)
(0.647569 5.39443e-08 -0.0209898)
(0.646416 4.98473e-08 -0.0173073)
(0.645516 4.22381e-08 -0.0135527)
(0.644874 3.29961e-08 -0.00971044)
(0.644495 2.35104e-08 -0.00576384)
(0.644386 1.60551e-08 -0.00169524)
(0.644554 1.52584e-08 0.00251427)
(0.645005 2.44478e-08 0.00688493)
(0.64575 3.71293e-08 0.0114384)
(0.646796 3.93015e-08 0.0161978)
(0.648152 3.04224e-08 0.021188)
(0.649828 2.76355e-08 0.0264353)
(0.651836 4.40656e-08 0.0319681)
(0.654184 6.47435e-08 0.0378165)
(0.656885 5.57812e-08 0.0440131)
(0.65995 2.27201e-08 0.0505927)
(0.663391 -1.25402e-10 0.0575931)
(0.667218 1.45948e-09 0.0650549)
(0.671444 1.53691e-08 0.073022)
(0.67608 1.58884e-08 0.0815417)
(0.681138 9.47683e-09 0.0906657)
(0.686627 1.42076e-08 0.10045)
(0.692556 2.21528e-08 0.110957)
(0.698934 2.49102e-08 0.122254)
(0.705764 2.36517e-08 0.134414)
(0.713048 1.46676e-08 0.14752)
(0.720782 -2.02261e-09 0.161661)
(0.728957 -1.77848e-08 0.176933)
(0.737557 -3.34345e-08 0.193444)
(0.746554 -5.71554e-08 0.211309)
(0.755913 -8.31641e-08 0.230655)
(0.76558 -9.82243e-08 0.25162)
(0.775488 -9.90167e-08 0.27435)
(0.785544 -9.56394e-08 0.299005)
(0.795633 -9.0385e-08 0.325753)
(0.805602 -7.15116e-08 0.354772)
(0.815263 -3.43982e-08 0.386245)
(0.82438 1.33071e-08 0.420354)
(0.832661 6.68675e-08 0.457279)
(0.839749 1.27839e-07 0.497185)
(0.845216 1.91659e-07 0.540214)
(0.848543 2.42604e-07 0.586463)
(0.84912 2.71363e-07 0.635969)
(0.84623 2.80967e-07 0.68868)
(0.839053 2.85763e-07 0.744415)
(0.826661 3.11042e-07 0.802824)
(0.808043 3.77008e-07 0.86334)
(0.782131 4.69311e-07 0.925118)
(0.747861 5.40815e-07 0.986983)
(0.704255 5.61736e-07 1.04739)
(0.650538 5.60444e-07 1.10437)
(0.586288 5.91441e-07 1.15556)
(0.511612 6.65895e-07 1.19825)
(0.427324 7.77855e-07 1.22942)
(0.33508 9.4888e-07 1.24576)
(0.237365 1.27286e-06 1.24312)
(0.140688 2.2417e-06 1.21281)
(0.0571633 7.5971e-06 1.11393)
(-0.015784 4.31915e-06 1.27673)
(0.0134406 3.72848e-06 1.25467)
(0.0391464 5.29992e-07 1.18432)
(0.0735316 -2.89292e-07 1.10909)
(0.117841 -1.66254e-08 1.03341)
(0.169043 3.77386e-07 0.959269)
(0.225564 -4.50071e-07 0.887724)
(0.285613 -1.01899e-06 0.81915)
(0.347775 -3.94242e-07 0.753443)
(0.410963 3.7935e-07 0.690166)
(0.47444 4.623e-07 0.628697)
(0.537786 1.24283e-07 0.568341)
(0.600849 -1.25497e-07 0.508431)
(0.663688 -1.53852e-07 0.448393)
(0.726486 -8.3184e-08 0.387796)
(0.789484 -2.49014e-08 0.326377)
(0.852922 -8.90442e-10 0.26405)
(0.916973 8.48964e-09 0.200904)
(0.981713 1.66662e-08 0.137175)
(1.0471 2.23382e-08 0.0732193)
(1.11296 2.04401e-08 0.00950737)
(1.17882 1.06291e-08 -0.0532584)
(1.24394 -2.54287e-09 -0.114267)
(1.30786 -1.37219e-08 -0.172943)
(1.37007 -1.98789e-08 -0.228802)
(1.43008 -2.08889e-08 -0.281412)
(1.48744 -1.84547e-08 -0.330426)
(1.54176 -1.46695e-08 -0.375582)
(1.5927 -1.10374e-08 -0.416709)
(1.64002 -8.17617e-09 -0.45372)
(1.68354 -6.02083e-09 -0.486606)
(1.72313 -4.23281e-09 -0.515427)
(1.75874 -2.56182e-09 -0.540302)
(1.79038 -1.01353e-09 -0.561394)
(1.81809 1.91703e-10 -0.578905)
(1.84196 7.89209e-10 -0.593063)
(1.86211 6.45154e-10 -0.604113)
(1.87869 -1.55171e-10 -0.612309)
(1.89186 -1.33726e-09 -0.617911)
(1.90181 -2.54783e-09 -0.621173)
(1.90872 -3.48007e-09 -0.622346)
(1.91278 -3.96067e-09 -0.621669)
(1.9142 -3.97431e-09 -0.619368)
(1.91316 -3.62957e-09 -0.615658)
(1.90985 -3.09481e-09 -0.610734)
(1.90446 -2.53352e-09 -0.60478)
(1.89717 -2.06175e-09 -0.59796)
(1.88813 -1.73305e-09 -0.590425)
(1.87752 -1.54689e-09 -0.582309)
(1.86548 -1.46762e-09 -0.573733)
(1.85216 -1.44497e-09 -0.564804)
(1.83768 -1.43065e-09 -0.555614)
(1.82217 -1.38667e-09 -0.546245)
(1.80575 -1.28898e-09 -0.536767)
(1.78851 -1.12575e-09 -0.527241)
(1.77057 -8.9482e-10 -0.517717)
(1.752 -6.00854e-10 -0.508237)
(1.73289 -2.51934e-10 -0.498838)
(1.71332 1.42124e-10 -0.489546)
(1.69335 5.70687e-10 -0.480385)
(1.67306 1.02197e-09 -0.471371)
(1.65249 1.48366e-09 -0.462516)
(1.6317 1.94174e-09 -0.453828)
(1.61074 2.38246e-09 -0.445313)
(1.58966 2.79253e-09 -0.436971)
(1.56849 3.16295e-09 -0.428802)
(1.54728 3.4905e-09 -0.420802)
(1.52605 3.78125e-09 -0.412968)
(1.50484 4.04981e-09 -0.405291)
(1.48367 4.31813e-09 -0.397765)
(1.46257 4.61161e-09 -0.390382)
(1.44157 4.95253e-09 -0.383132)
(1.42069 5.35564e-09 -0.376006)
(1.39994 5.82449e-09 -0.368995)
(1.37935 6.34949e-09 -0.36209)
(1.35894 6.91013e-09 -0.35528)
(1.33871 7.47668e-09 -0.348558)
(1.31868 8.01071e-09 -0.341913)
(1.29887 8.46435e-09 -0.335339)
(1.27929 8.77669e-09 -0.328828)
(1.25995 8.87168e-09 -0.322372)
(1.24086 8.65743e-09 -0.315965)
(1.22202 8.03181e-09 -0.309602)
(1.20346 6.89204e-09 -0.303278)
(1.18517 5.14855e-09 -0.296989)
(1.16716 2.74231e-09 -0.290731)
(1.14945 -3.30449e-10 -0.284503)
(1.13203 -3.98587e-09 -0.278301)
(1.11492 -8.01043e-09 -0.272125)
(1.09811 -1.20315e-08 -0.265975)
(1.08161 -1.55343e-08 -0.25985)
(1.06543 -1.79679e-08 -0.253752)
(1.04957 -1.89636e-08 -0.247682)
(1.03403 -1.86212e-08 -0.241642)
(1.01882 -1.7744e-08 -0.235633)
(1.00394 -1.78422e-08 -0.22966)
(0.989383 -2.07575e-08 -0.223724)
(0.975163 -2.7921e-08 -0.21783)
(0.961277 -3.94771e-08 -0.211981)
(0.947728 -5.37048e-08 -0.206179)
(0.934517 -6.71453e-08 -0.200429)
(0.921645 -7.556e-08 -0.194733)
(0.909113 -7.53908e-08 -0.189093)
(0.896921 -6.50381e-08 -0.183511)
(0.88507 -4.5289e-08 -0.177988)
(0.873558 -1.86832e-08 -0.172525)
(0.862383 1.17477e-08 -0.16712)
(0.851542 4.34898e-08 -0.161773)
(0.84103 7.44098e-08 -0.156486)
(0.830842 1.02646e-07 -0.15126)
(0.820971 1.29371e-07 -0.146096)
(0.811413 1.5475e-07 -0.140997)
(0.802162 1.70925e-07 -0.135968)
(0.793214 1.78073e-07 -0.131012)
(0.784564 1.97163e-07 -0.126131)
(0.776207 2.08424e-07 -0.121331)
(0.768139 1.60175e-07 -0.116613)
(0.760356 1.11062e-07 -0.111981)
(0.752856 1.33102e-07 -0.107437)
(0.745635 1.39588e-07 -0.102984)
(0.73869 6.61695e-08 -0.0986224)
(0.732018 -1.76398e-08 -0.0943524)
(0.725615 -5.8996e-08 -0.0901738)
(0.719481 -8.35355e-08 -0.0860854)
(0.713611 -1.24062e-07 -0.0820847)
(0.708002 -1.75494e-07 -0.0781688)
(0.702652 -2.14529e-07 -0.0743342)
(0.697557 -2.28761e-07 -0.070577)
(0.692713 -2.21825e-07 -0.0668933)
(0.688118 -2.02683e-07 -0.0632785)
(0.68377 -1.79836e-07 -0.0597279)
(0.679666 -1.63221e-07 -0.056236)
(0.675803 -1.59637e-07 -0.0527971)
(0.672182 -1.56745e-07 -0.0494047)
(0.668801 -1.36751e-07 -0.0460521)
(0.665659 -9.98021e-08 -0.0427318)
(0.662756 -6.31771e-08 -0.0394355)
(0.660094 -3.3472e-08 -0.0361547)
(0.657674 -6.76855e-09 -0.0328799)
(0.655496 1.79362e-08 -0.0296007)
(0.653564 3.66408e-08 -0.0263063)
(0.651881 4.56297e-08 -0.0229848)
(0.650449 4.42077e-08 -0.0196235)
(0.649273 3.45276e-08 -0.0162091)
(0.648357 2.10107e-08 -0.0127277)
(0.647706 8.6432e-09 -0.00916426)
(0.647327 7.54549e-11 -0.00550315)
(0.647226 -3.93166e-09 -0.00172753)
(0.647411 1.01812e-09 0.00218071)
(0.647892 2.45233e-08 0.00624108)
(0.648677 6.4123e-08 0.0104745)
(0.649777 9.11674e-08 0.0149036)
(0.651203 8.29485e-08 0.0195524)
(0.652965 5.24609e-08 0.0244466)
(0.655078 3.93993e-08 0.0296141)
(0.657553 5.61503e-08 0.0350846)
(0.660404 4.98187e-08 0.0408899)
(0.663645 4.07895e-09 0.0470646)
(0.667293 -3.93555e-08 0.0536459)
(0.67136 -4.14392e-08 0.0606742)
(0.675865 1.96627e-09 0.0681933)
(0.680821 3.7617e-08 0.0762505)
(0.686247 5.12487e-08 0.0848977)
(0.692159 6.62669e-08 0.0941916)
(0.698574 7.4288e-08 0.104195)
(0.705506 6.46765e-08 0.114978)
(0.71297 4.26053e-08 0.126617)
(0.720977 1.13097e-09 0.139197)
(0.729534 -6.23807e-08 0.152812)
(0.738645 -1.20559e-07 0.167567)
(0.748308 -1.55993e-07 0.183574)
(0.758511 -1.80547e-07 0.200962)
(0.769234 -1.93882e-07 0.219869)
(0.780445 -1.77521e-07 0.240449)
(0.792093 -1.2318e-07 0.26287)
(0.804111 -5.66884e-08 0.287315)
(0.816401 -2.11114e-09 0.313985)
(0.828837 4.99543e-08 0.343096)
(0.841251 1.08559e-07 0.374876)
(0.853425 1.59731e-07 0.409566)
(0.865082 1.91255e-07 0.447411)
(0.875875 2.14036e-07 0.488656)
(0.88537 2.42441e-07 0.533531)
(0.893032 2.66842e-07 0.582242)
(0.898209 2.75289e-07 0.634945)
(0.900113 2.66497e-07 0.691714)
(0.897809 2.48787e-07 0.752504)
(0.890204 2.46458e-07 0.817091)
(0.876058 2.91949e-07 0.885012)
(0.854003 3.85429e-07 0.95548)
(0.822599 4.7873e-07 1.0273)
(0.780425 5.3002e-07 1.09879)
(0.726219 5.48846e-07 1.16769)
(0.659079 5.71959e-07 1.23114)
(0.578721 6.1735e-07 1.2857)
(0.485777 6.86821e-07 1.32738)
(0.382058 7.99226e-07 1.35179)
(0.270712 1.02815e-06 1.35356)
(0.159779 1.77663e-06 1.32269)
(0.0641206 6.01053e-06 1.21457)
(-0.0157694 4.32093e-06 1.27672)
(0.0134423 3.73176e-06 1.25468)
(0.0391502 5.30302e-07 1.18432)
(0.0735329 -2.89354e-07 1.10909)
(0.117844 -1.66264e-08 1.03341)
(0.169047 3.77391e-07 0.959271)
(0.225563 -4.50072e-07 0.887724)
(0.285611 -1.01899e-06 0.81915)
(0.347774 -3.94243e-07 0.753443)
(0.410964 3.7935e-07 0.690166)
(0.474441 4.623e-07 0.628697)
(0.537785 1.24283e-07 0.568341)
(0.600849 -1.25497e-07 0.508431)
(0.663688 -1.53852e-07 0.448393)
(0.726486 -8.3184e-08 0.387796)
(0.789485 -2.49014e-08 0.326377)
(0.852922 -8.90442e-10 0.26405)
(0.916973 8.48964e-09 0.200904)
(0.981713 1.66662e-08 0.137175)
(1.0471 2.23382e-08 0.0732192)
(1.11296 2.04402e-08 0.00950732)
(1.17882 1.06291e-08 -0.0532585)
(1.24394 -2.54287e-09 -0.114267)
(1.30786 -1.37219e-08 -0.172943)
(1.37007 -1.98789e-08 -0.228802)
(1.43008 -2.08889e-08 -0.281412)
(1.48744 -1.84547e-08 -0.330426)
(1.54176 -1.46695e-08 -0.375582)
(1.5927 -1.10374e-08 -0.416709)
(1.64002 -8.17617e-09 -0.45372)
(1.68354 -6.02083e-09 -0.486606)
(1.72313 -4.23281e-09 -0.515428)
(1.75874 -2.56182e-09 -0.540302)
(1.79038 -1.01353e-09 -0.561394)
(1.81809 1.91703e-10 -0.578905)
(1.84196 7.8921e-10 -0.593063)
(1.86211 6.45154e-10 -0.604113)
(1.87869 -1.55171e-10 -0.612309)
(1.89186 -1.33726e-09 -0.617911)
(1.90181 -2.54783e-09 -0.621173)
(1.90872 -3.48007e-09 -0.622346)
(1.91278 -3.96067e-09 -0.621669)
(1.9142 -3.97431e-09 -0.619369)
(1.91316 -3.62957e-09 -0.615658)
(1.90985 -3.09481e-09 -0.610734)
(1.90446 -2.53353e-09 -0.60478)
(1.89717 -2.06175e-09 -0.59796)
(1.88813 -1.73305e-09 -0.590425)
(1.87752 -1.54689e-09 -0.582309)
(1.86548 -1.46762e-09 -0.573734)
(1.85216 -1.44497e-09 -0.564804)
(1.83768 -1.43065e-09 -0.555614)
(1.82217 -1.38667e-09 -0.546245)
(1.80575 -1.28898e-09 -0.536767)
(1.78851 -1.12575e-09 -0.527241)
(1.77057 -8.9482e-10 -0.517717)
(1.752 -6.00854e-10 -0.508237)
(1.73289 -2.51934e-10 -0.498838)
(1.71332 1.42124e-10 -0.489546)
(1.69335 5.70687e-10 -0.480385)
(1.67306 1.02197e-09 -0.471371)
(1.65249 1.48366e-09 -0.462516)
(1.6317 1.94174e-09 -0.453828)
(1.61075 2.38246e-09 -0.445313)
(1.58966 2.79253e-09 -0.436971)
(1.56849 3.16295e-09 -0.428802)
(1.54728 3.4905e-09 -0.420802)
(1.52605 3.78125e-09 -0.412967)
(1.50484 4.04981e-09 -0.405291)
(1.48367 4.31813e-09 -0.397765)
(1.46257 4.61161e-09 -0.390382)
(1.44157 4.95253e-09 -0.383132)
(1.42069 5.35564e-09 -0.376006)
(1.39994 5.82449e-09 -0.368995)
(1.37935 6.34949e-09 -0.36209)
(1.35894 6.91013e-09 -0.35528)
(1.33871 7.47668e-09 -0.348558)
(1.31868 8.01071e-09 -0.341913)
(1.29887 8.46435e-09 -0.335339)
(1.27929 8.77669e-09 -0.328828)
(1.25995 8.87168e-09 -0.322372)
(1.24086 8.65743e-09 -0.315965)
(1.22202 8.03181e-09 -0.309602)
(1.20346 6.89204e-09 -0.303278)
(1.18517 5.14855e-09 -0.296989)
(1.16716 2.74231e-09 -0.290731)
(1.14945 -3.3045e-10 -0.284503)
(1.13203 -3.98588e-09 -0.278301)
(1.11492 -8.01044e-09 -0.272125)
(1.09811 -1.20316e-08 -0.265975)
(1.08161 -1.55343e-08 -0.25985)
(1.06543 -1.79679e-08 -0.253752)
(1.04957 -1.89636e-08 -0.247682)
(1.03403 -1.86212e-08 -0.241642)
(1.01882 -1.7744e-08 -0.235633)
(1.00394 -1.78422e-08 -0.22966)
(0.989383 -2.07575e-08 -0.223724)
(0.975163 -2.7921e-08 -0.21783)
(0.961278 -3.94771e-08 -0.211981)
(0.947729 -5.37049e-08 -0.206179)
(0.934517 -6.71453e-08 -0.200429)
(0.921645 -7.556e-08 -0.194733)
(0.909113 -7.53908e-08 -0.189093)
(0.896921 -6.50381e-08 -0.183511)
(0.88507 -4.5289e-08 -0.177988)
(0.873558 -1.86832e-08 -0.172525)
(0.862383 1.17477e-08 -0.16712)
(0.851542 4.34898e-08 -0.161773)
(0.84103 7.44098e-08 -0.156486)
(0.830842 1.02646e-07 -0.15126)
(0.820971 1.29371e-07 -0.146096)
(0.811413 1.5475e-07 -0.140998)
(0.802162 1.70925e-07 -0.135968)
(0.793214 1.78073e-07 -0.131012)
(0.784564 1.97163e-07 -0.126132)
(0.776207 2.08424e-07 -0.121331)
(0.768139 1.60175e-07 -0.116613)
(0.760356 1.11062e-07 -0.111981)
(0.752856 1.33102e-07 -0.107437)
(0.745635 1.39589e-07 -0.102984)
(0.73869 6.61695e-08 -0.0986224)
(0.732018 -1.76398e-08 -0.0943524)
(0.725615 -5.8996e-08 -0.0901738)
(0.719481 -8.35355e-08 -0.0860854)
(0.713611 -1.24062e-07 -0.0820847)
(0.708002 -1.75494e-07 -0.0781688)
(0.702652 -2.14529e-07 -0.0743342)
(0.697557 -2.28761e-07 -0.070577)
(0.692713 -2.21825e-07 -0.0668932)
(0.688118 -2.02683e-07 -0.0632785)
(0.68377 -1.79836e-07 -0.0597278)
(0.679666 -1.63222e-07 -0.056236)
(0.675803 -1.59637e-07 -0.052797)
(0.672182 -1.56745e-07 -0.0494047)
(0.668801 -1.36751e-07 -0.0460521)
(0.665659 -9.98022e-08 -0.0427317)
(0.662756 -6.31772e-08 -0.0394355)
(0.660094 -3.3472e-08 -0.0361547)
(0.657674 -6.76856e-09 -0.0328798)
(0.655496 1.79362e-08 -0.0296007)
(0.653564 3.66409e-08 -0.0263063)
(0.651881 4.56297e-08 -0.0229847)
(0.650449 4.42078e-08 -0.0196234)
(0.649273 3.45276e-08 -0.0162091)
(0.648357 2.10107e-08 -0.0127276)
(0.647706 8.6432e-09 -0.00916424)
(0.647327 7.54549e-11 -0.00550317)
(0.647226 -3.93166e-09 -0.0017276)
(0.647411 1.01812e-09 0.0021806)
(0.647892 2.45233e-08 0.00624093)
(0.648677 6.4123e-08 0.0104744)
(0.649777 9.11674e-08 0.0149034)
(0.651203 8.29485e-08 0.0195521)
(0.652965 5.2461e-08 0.0244464)
(0.655078 3.93993e-08 0.0296139)
(0.657553 5.61503e-08 0.0350843)
(0.660404 4.98187e-08 0.0408897)
(0.663645 4.07896e-09 0.0470644)
(0.667293 -3.93555e-08 0.0536457)
(0.671361 -4.14392e-08 0.060674)
(0.675865 1.96627e-09 0.0681931)
(0.680822 3.7617e-08 0.0762504)
(0.686247 5.12487e-08 0.0848976)
(0.692159 6.62669e-08 0.0941916)
(0.698574 7.4288e-08 0.104195)
(0.705506 6.46766e-08 0.114978)
(0.71297 4.26053e-08 0.126617)
(0.720977 1.13097e-09 0.139197)
(0.729534 -6.23807e-08 0.152812)
(0.738645 -1.2056e-07 0.167567)
(0.748308 -1.55993e-07 0.183574)
(0.758511 -1.80547e-07 0.200962)
(0.769234 -1.93882e-07 0.219869)
(0.780445 -1.77521e-07 0.240449)
(0.792093 -1.2318e-07 0.262869)
(0.804111 -5.66884e-08 0.287315)
(0.816402 -2.11114e-09 0.313985)
(0.828838 4.99543e-08 0.343096)
(0.841252 1.08559e-07 0.374876)
(0.853426 1.59731e-07 0.409566)
(0.865083 1.91255e-07 0.447411)
(0.875876 2.14036e-07 0.488655)
(0.885371 2.42441e-07 0.53353)
(0.893033 2.66842e-07 0.582242)
(0.89821 2.75289e-07 0.634944)
(0.900114 2.66497e-07 0.691713)
(0.89781 2.48787e-07 0.752503)
(0.890206 2.46458e-07 0.81709)
(0.87606 2.91949e-07 0.88501)
(0.854005 3.85429e-07 0.955478)
(0.822601 4.7873e-07 1.0273)
(0.780427 5.3002e-07 1.09879)
(0.72622 5.48846e-07 1.16769)
(0.659081 5.71959e-07 1.23114)
(0.578723 6.17351e-07 1.28569)
(0.485779 6.86821e-07 1.32738)
(0.38206 7.99227e-07 1.35178)
(0.270712 1.02815e-06 1.35355)
(0.159778 1.77663e-06 1.32267)
(0.064119 6.01058e-06 1.21454)
(0.0271883 -1.67846e-05 1.27382)
(0.0133947 7.85293e-07 1.22789)
(0.0483111 1.8382e-06 1.14673)
(0.0957687 1.13591e-06 1.0606)
(0.155669 2.99143e-07 0.975776)
(0.223634 -3.35236e-07 0.894747)
(0.297084 -8.88778e-07 0.818534)
(0.373556 -9.4347e-07 0.747205)
(0.451215 -2.28609e-07 0.680236)
(0.528744 3.92717e-07 0.616747)
(0.605326 3.71303e-07 0.5557)
(0.680574 3.51049e-08 0.496049)
(0.754441 -1.7585e-07 0.436849)
(0.827127 -1.75252e-07 0.377336)
(0.898966 -8.9116e-08 0.316984)
(0.970328 -2.13727e-08 0.255508)
(1.04155 8.5159e-09 0.192874)
(1.11283 1.95418e-08 0.129288)
(1.18426 2.56213e-08 0.0650966)
(1.25574 2.73938e-08 0.00082711)
(1.32671 2.18708e-08 -0.0626526)
(1.39644 9.90411e-09 -0.124461)
(1.46446 -3.91377e-09 -0.183955)
(1.53025 -1.47916e-08 -0.240584)
(1.5933 -2.03255e-08 -0.293869)
(1.65314 -2.08447e-08 -0.343422)
(1.70938 -1.82548e-08 -0.388957)
(1.76169 -1.46251e-08 -0.430288)
(1.80982 -1.131e-08 -0.467321)
(1.85361 -8.75243e-09 -0.500049)
(1.89297 -6.76654e-09 -0.528539)
(1.92788 -4.9777e-09 -0.55292)
(1.95837 -3.17633e-09 -0.57337)
(1.98453 -1.44429e-09 -0.590107)
(2.00648 -7.25801e-11 -0.603374)
(2.02439 6.35935e-10 -0.613434)
(2.03845 5.42566e-10 -0.620559)
(2.04886 -2.48531e-10 -0.625026)
(2.05584 -1.43985e-09 -0.627106)
(2.05961 -2.66215e-09 -0.627064)
(2.06041 -3.60505e-09 -0.625154)
(2.05844 -4.09653e-09 -0.621614)
(2.05395 -4.12417e-09 -0.61667)
(2.04714 -3.79875e-09 -0.610529)
(2.03821 -3.28796e-09 -0.603381)
(2.02738 -2.75336e-09 -0.595399)
(2.01481 -2.30799e-09 -0.586739)
(2.00069 -2.00257e-09 -0.577541)
(1.98519 -1.83418e-09 -0.56793)
(1.96845 -1.7654e-09 -0.558013)
(1.95061 -1.7454e-09 -0.547888)
(1.93181 -1.72546e-09 -0.537637)
(1.91217 -1.66762e-09 -0.527331)
(1.89179 -1.54797e-09 -0.517031)
(1.87078 -1.3555e-09 -0.506788)
(1.84923 -1.08916e-09 -0.496643)
(1.82723 -7.55086e-10 -0.486632)
(1.80484 -3.62813e-10 -0.476781)
(1.78215 7.56218e-11 -0.467112)
(1.7592 5.47104e-10 -0.45764)
(1.73607 1.03783e-09 -0.448376)
(1.7128 1.5328e-09 -0.439328)
(1.68943 2.01649e-09 -0.430497)
(1.66602 2.47439e-09 -0.421885)
(1.64259 2.89435e-09 -0.413489)
(1.61919 3.27032e-09 -0.405303)
(1.59583 3.60445e-09 -0.397322)
(1.57257 3.909e-09 -0.389537)
(1.54941 4.20506e-09 -0.381939)
(1.52638 4.5197e-09 -0.374518)
(1.50351 4.87987e-09 -0.367263)
(1.48081 5.30654e-09 -0.360164)
(1.45829 5.80924e-09 -0.35321)
(1.43599 6.38371e-09 -0.346388)
(1.4139 7.01175e-09 -0.339689)
(1.39205 7.66342e-09 -0.333101)
(1.37045 8.29887e-09 -0.326615)
(1.34911 8.86756e-09 -0.320219)
(1.32803 9.30607e-09 -0.313906)
(1.30723 9.53431e-09 -0.307667)
(1.28672 9.45539e-09 -0.301493)
(1.26651 8.95931e-09 -0.295379)
(1.2466 7.93258e-09 -0.289316)
(1.22699 6.27119e-09 -0.2833)
(1.20771 3.89547e-09 -0.277327)
(1.18874 7.68668e-10 -0.271392)
(1.1701 -3.07355e-09 -0.265491)
(1.15179 -7.4742e-09 -0.259623)
(1.13382 -1.20995e-08 -0.253787)
(1.11619 -1.6407e-08 -0.24798)
(1.0989 -1.96981e-08 -0.242202)
(1.08196 -2.13151e-08 -0.236455)
(1.06537 -2.0985e-08 -0.230739)
(1.04912 -1.92097e-08 -0.225055)
(1.03323 -1.74837e-08 -0.219406)
(1.0177 -1.80827e-08 -0.213794)
(1.00252 -2.32869e-08 -0.208222)
(0.987698 -3.41977e-08 -0.202692)
(0.973235 -4.96493e-08 -0.197209)
(0.959131 -6.58875e-08 -0.191775)
(0.945388 -7.74625e-08 -0.186393)
(0.932007 -7.91715e-08 -0.181067)
(0.918988 -6.81793e-08 -0.175798)
(0.906331 -4.51807e-08 -0.170586)
(0.894038 -1.39142e-08 -0.165434)
(0.882105 2.06695e-08 -0.160338)
(0.870532 5.44885e-08 -0.155298)
(0.859313 8.54407e-08 -0.150312)
(0.848441 1.11884e-07 -0.145379)
(0.837911 1.30278e-07 -0.140499)
(0.827715 1.42674e-07 -0.135677)
(0.817846 1.55084e-07 -0.130913)
(0.808299 1.54265e-07 -0.126214)
(0.799069 1.26433e-07 -0.121581)
(0.790149 1.24942e-07 -0.11702)
(0.781537 1.57026e-07 -0.112534)
(0.773226 9.65056e-08 -0.108126)
(0.765212 -1.52618e-08 -0.103799)
(0.757493 -7.25736e-09 -0.0995576)
(0.750064 3.91557e-08 -0.095403)
(0.742923 -7.10598e-09 -0.0913366)
(0.736066 -7.95139e-08 -0.0873588)
(0.729491 -9.67048e-08 -0.0834692)
(0.723193 -7.96398e-08 -0.0796666)
(0.717171 -7.69973e-08 -0.0759486)
(0.711422 -9.60608e-08 -0.072312)
(0.70594 -1.13661e-07 -0.0687528)
(0.700722 -1.12466e-07 -0.0652672)
(0.695764 -9.38982e-08 -0.0618517)
(0.691062 -6.56417e-08 -0.0585021)
(0.686613 -3.13981e-08 -0.0552138)
(0.682416 -1.00214e-09 -0.0519819)
(0.678466 3.64783e-09 -0.0488011)
(0.674764 -1.62774e-08 -0.0456655)
(0.671307 -3.25252e-08 -0.0425688)
(0.668096 -2.86756e-08 -0.039504)
(0.665129 -2.08756e-08 -0.0364638)
(0.662407 -1.79953e-08 -0.0334399)
(0.659932 -1.41313e-08 -0.0304234)
(0.657705 -6.21337e-09 -0.0274048)
(0.655729 6.26063e-10 -0.0243736)
(0.654008 -6.12012e-11 -0.0213185)
(0.652543 -1.06782e-08 -0.0182276)
(0.65134 -2.8969e-08 -0.0150881)
(0.650403 -4.87774e-08 -0.0118867)
(0.649737 -6.21286e-08 -0.00860972)
(0.649349 -6.48844e-08 -0.00524229)
(0.649247 -6.13078e-08 -0.00176873)
(0.64944 -5.59782e-08 0.00182808)
(0.649938 -3.47737e-08 0.00556671)
(0.65075 1.8843e-08 0.00946729)
(0.65189 7.61266e-08 0.0135515)
(0.653369 8.54167e-08 0.0178426)
(0.6552 2.84474e-08 0.0223656)
(0.657398 -3.51318e-08 0.0271475)
(0.659979 -3.13835e-08 0.032217)
(0.662957 -1.36128e-08 0.0376053)
(0.666351 -3.42214e-08 0.0433461)
(0.670178 -7.52477e-08 0.0494758)
(0.674458 -8.1654e-08 0.056034)
(0.679211 -7.30899e-09 0.0630636)
(0.684456 7.22625e-08 0.0706114)
(0.690217 1.08736e-07 0.0787286)
(0.696516 1.26237e-07 0.0874712)
(0.703378 1.17445e-07 0.0969026)
(0.710827 7.57773e-08 0.107093)
(0.718887 2.61396e-08 0.118121)
(0.727579 -3.5489e-08 0.130074)
(0.736925 -1.3048e-07 0.14305)
(0.746939 -2.18892e-07 0.157158)
(0.757636 -2.56905e-07 0.172517)
(0.769024 -2.62378e-07 0.189263)
(0.7811 -2.53137e-07 0.207547)
(0.793854 -2.10289e-07 0.227534)
(0.807262 -1.06466e-07 0.249412)
(0.821282 2.5941e-08 0.273389)
(0.835849 1.31312e-07 0.299695)
(0.850865 2.13045e-07 0.328584)
(0.866194 2.93367e-07 0.360332)
(0.881652 3.54577e-07 0.395237)
(0.89699 3.62187e-07 0.433617)
(0.911888 3.24936e-07 0.475803)
(0.925927 2.82614e-07 0.522131)
(0.93858 2.43663e-07 0.572931)
(0.949177 2.01812e-07 0.628506)
(0.95688 1.5631e-07 0.689102)
(0.960659 1.05653e-07 0.754861)
(0.959262 6.12693e-08 0.825754)
(0.951208 6.65285e-08 0.901503)
(0.934791 1.53723e-07 0.981475)
(0.908115 2.8195e-07 1.06455)
(0.869183 3.85116e-07 1.149)
(0.816051 4.50607e-07 1.2323)
(0.747074 5.02686e-07 1.31107)
(0.661264 5.57425e-07 1.38097)
(0.558773 6.16491e-07 1.43674)
(0.441365 6.95053e-07 1.47234)
(0.31294 8.5518e-07 1.48052)
(0.183629 1.44126e-06 1.44921)
(0.072425 4.88715e-06 1.32889)
(0.0271978 -1.6791e-05 1.27382)
(0.0133943 7.86003e-07 1.22789)
(0.0483186 1.83887e-06 1.14673)
(0.0957736 1.13608e-06 1.0606)
(0.155673 2.9916e-07 0.97578)
(0.223637 -3.35241e-07 0.894749)
(0.297083 -8.88783e-07 0.818535)
(0.373554 -9.43472e-07 0.747206)
(0.451215 -2.28609e-07 0.680237)
(0.528745 3.92717e-07 0.616748)
(0.605327 3.71303e-07 0.5557)
(0.680574 3.51049e-08 0.496049)
(0.75444 -1.7585e-07 0.436849)
(0.827127 -1.75252e-07 0.377336)
(0.898967 -8.9116e-08 0.316984)
(0.970329 -2.13727e-08 0.255508)
(1.04155 8.5159e-09 0.192874)
(1.11283 1.95418e-08 0.129288)
(1.18426 2.56213e-08 0.0650965)
(1.25574 2.73938e-08 0.000827051)
(1.32671 2.18709e-08 -0.0626527)
(1.39644 9.90412e-09 -0.124461)
(1.46446 -3.91377e-09 -0.183955)
(1.53025 -1.47916e-08 -0.240584)
(1.5933 -2.03255e-08 -0.293869)
(1.65314 -2.08447e-08 -0.343422)
(1.70938 -1.82548e-08 -0.388957)
(1.76169 -1.46252e-08 -0.430288)
(1.80982 -1.131e-08 -0.467321)
(1.85361 -8.75244e-09 -0.500049)
(1.89298 -6.76654e-09 -0.528539)
(1.92788 -4.9777e-09 -0.55292)
(1.95837 -3.17633e-09 -0.573371)
(1.98453 -1.44429e-09 -0.590107)
(2.00648 -7.25801e-11 -0.603374)
(2.02439 6.35936e-10 -0.613434)
(2.03845 5.42566e-10 -0.62056)
(2.04886 -2.48531e-10 -0.625026)
(2.05584 -1.43985e-09 -0.627106)
(2.05961 -2.66215e-09 -0.627064)
(2.06041 -3.60506e-09 -0.625154)
(2.05844 -4.09654e-09 -0.621614)
(2.05395 -4.12417e-09 -0.61667)
(2.04714 -3.79875e-09 -0.610529)
(2.03821 -3.28796e-09 -0.603381)
(2.02738 -2.75337e-09 -0.595399)
(2.01481 -2.30799e-09 -0.586739)
(2.00069 -2.00257e-09 -0.577541)
(1.98519 -1.83418e-09 -0.56793)
(1.96845 -1.7654e-09 -0.558013)
(1.95061 -1.74541e-09 -0.547888)
(1.93181 -1.72546e-09 -0.537637)
(1.91217 -1.66762e-09 -0.527331)
(1.89179 -1.54797e-09 -0.517031)
(1.87078 -1.3555e-09 -0.506788)
(1.84923 -1.08916e-09 -0.496643)
(1.82723 -7.55086e-10 -0.486632)
(1.80484 -3.62813e-10 -0.476781)
(1.78215 7.56219e-11 -0.467112)
(1.7592 5.47104e-10 -0.45764)
(1.73607 1.03783e-09 -0.448376)
(1.7128 1.5328e-09 -0.439328)
(1.68943 2.01649e-09 -0.430497)
(1.66602 2.47439e-09 -0.421885)
(1.64259 2.89435e-09 -0.413489)
(1.61919 3.27032e-09 -0.405303)
(1.59584 3.60445e-09 -0.397322)
(1.57257 3.909e-09 -0.389537)
(1.54941 4.20506e-09 -0.381939)
(1.52638 4.5197e-09 -0.374518)
(1.50351 4.87987e-09 -0.367263)
(1.48081 5.30654e-09 -0.360164)
(1.45829 5.80924e-09 -0.35321)
(1.43599 6.38371e-09 -0.346388)
(1.4139 7.01175e-09 -0.339689)
(1.39205 7.66342e-09 -0.333101)
(1.37045 8.29887e-09 -0.326615)
(1.34911 8.86756e-09 -0.320219)
(1.32803 9.30607e-09 -0.313906)
(1.30723 9.53431e-09 -0.307667)
(1.28672 9.45539e-09 -0.301493)
(1.26651 8.95931e-09 -0.295379)
(1.2466 7.93258e-09 -0.289316)
(1.22699 6.27119e-09 -0.2833)
(1.20771 3.89548e-09 -0.277327)
(1.18874 7.68668e-10 -0.271392)
(1.1701 -3.07355e-09 -0.265491)
(1.15179 -7.4742e-09 -0.259623)
(1.13382 -1.20995e-08 -0.253786)
(1.11619 -1.6407e-08 -0.24798)
(1.0989 -1.96981e-08 -0.242202)
(1.08196 -2.13151e-08 -0.236455)
(1.06537 -2.09851e-08 -0.230739)
(1.04912 -1.92097e-08 -0.225055)
(1.03323 -1.74838e-08 -0.219406)
(1.0177 -1.80827e-08 -0.213794)
(1.00252 -2.32869e-08 -0.208222)
(0.987698 -3.41977e-08 -0.202692)
(0.973235 -4.96494e-08 -0.197209)
(0.959131 -6.58875e-08 -0.191775)
(0.945388 -7.74626e-08 -0.186393)
(0.932007 -7.91715e-08 -0.181067)
(0.918988 -6.81793e-08 -0.175798)
(0.906332 -4.51807e-08 -0.170586)
(0.894038 -1.39142e-08 -0.165434)
(0.882105 2.06695e-08 -0.160338)
(0.870532 5.44885e-08 -0.155298)
(0.859313 8.54408e-08 -0.150312)
(0.848441 1.11884e-07 -0.145379)
(0.837911 1.30278e-07 -0.140499)
(0.827714 1.42674e-07 -0.135677)
(0.817846 1.55084e-07 -0.130914)
(0.808299 1.54265e-07 -0.126214)
(0.799069 1.26433e-07 -0.121581)
(0.790149 1.24942e-07 -0.11702)
(0.781537 1.57026e-07 -0.112534)
(0.773226 9.65057e-08 -0.108126)
(0.765212 -1.52618e-08 -0.103799)
(0.757493 -7.25736e-09 -0.0995577)
(0.750064 3.91557e-08 -0.0954031)
(0.742923 -7.10598e-09 -0.0913367)
(0.736066 -7.95139e-08 -0.0873588)
(0.72949 -9.67049e-08 -0.0834692)
(0.723193 -7.96399e-08 -0.0796667)
(0.717171 -7.69974e-08 -0.0759487)
(0.711422 -9.60609e-08 -0.072312)
(0.70594 -1.13661e-07 -0.0687528)
(0.700722 -1.12467e-07 -0.0652672)
(0.695764 -9.38983e-08 -0.0618517)
(0.691062 -6.56417e-08 -0.058502)
(0.686613 -3.13981e-08 -0.0552137)
(0.682416 -1.00214e-09 -0.0519818)
(0.678466 3.64783e-09 -0.048801)
(0.674764 -1.62774e-08 -0.0456654)
(0.671307 -3.25252e-08 -0.0425687)
(0.668096 -2.86756e-08 -0.0395039)
(0.665129 -2.08756e-08 -0.0364637)
(0.662407 -1.79953e-08 -0.0334397)
(0.659932 -1.41313e-08 -0.0304233)
(0.657705 -6.21338e-09 -0.0274047)
(0.655729 6.26063e-10 -0.0243735)
(0.654008 -6.12012e-11 -0.0213184)
(0.652543 -1.06782e-08 -0.0182275)
(0.65134 -2.8969e-08 -0.015088)
(0.650403 -4.87774e-08 -0.0118867)
(0.649737 -6.21286e-08 -0.00860974)
(0.649349 -6.48845e-08 -0.00524236)
(0.649247 -6.13078e-08 -0.00176885)
(0.64944 -5.59783e-08 0.00182792)
(0.649937 -3.47737e-08 0.00556653)
(0.65075 1.8843e-08 0.00946711)
(0.65189 7.61266e-08 0.0135513)
(0.653368 8.54167e-08 0.0178424)
(0.6552 2.84474e-08 0.0223654)
(0.657398 -3.51318e-08 0.0271472)
(0.659978 -3.13835e-08 0.0322167)
(0.662957 -1.36128e-08 0.037605)
(0.666351 -3.42214e-08 0.0433458)
(0.670178 -7.52477e-08 0.0494755)
(0.674459 -8.16541e-08 0.0560336)
(0.679211 -7.30899e-09 0.0630633)
(0.684456 7.22625e-08 0.0706113)
(0.690217 1.08736e-07 0.0787285)
(0.696516 1.26237e-07 0.0874712)
(0.703378 1.17445e-07 0.0969026)
(0.710827 7.57774e-08 0.107093)
(0.718887 2.61396e-08 0.118121)
(0.72758 -3.5489e-08 0.130074)
(0.736925 -1.3048e-07 0.14305)
(0.746939 -2.18892e-07 0.157158)
(0.757637 -2.56905e-07 0.172517)
(0.769024 -2.62379e-07 0.189263)
(0.7811 -2.53137e-07 0.207546)
(0.793854 -2.10289e-07 0.227534)
(0.807262 -1.06466e-07 0.249412)
(0.821282 2.5941e-08 0.273389)
(0.835849 1.31312e-07 0.299695)
(0.850865 2.13045e-07 0.328583)
(0.866195 2.93367e-07 0.360331)
(0.881652 3.54577e-07 0.395236)
(0.896991 3.62187e-07 0.433616)
(0.911888 3.24936e-07 0.475802)
(0.925928 2.82614e-07 0.52213)
(0.938581 2.43663e-07 0.57293)
(0.949178 2.01812e-07 0.628505)
(0.956881 1.5631e-07 0.689101)
(0.96066 1.05653e-07 0.754859)
(0.959263 6.12693e-08 0.825752)
(0.951209 6.65285e-08 0.901502)
(0.934792 1.53723e-07 0.981473)
(0.908116 2.8195e-07 1.06455)
(0.869185 3.85116e-07 1.14899)
(0.816052 4.50607e-07 1.2323)
(0.747075 5.02686e-07 1.31107)
(0.661266 5.57426e-07 1.38096)
(0.558775 6.16492e-07 1.43673)
(0.441366 6.95054e-07 1.47234)
(0.312941 8.55181e-07 1.48051)
(0.183628 1.44127e-06 1.44919)
(0.0724237 4.88718e-06 1.32887)
(0.0224682 -1.70251e-05 1.26666)
(0.0094552 -3.6532e-06 1.19916)
(0.0581514 9.30322e-07 1.09689)
(0.124096 1.72728e-06 0.994653)
(0.20571 4.35239e-07 0.898483)
(0.296238 -3.89827e-07 0.809967)
(0.391797 -6.99707e-07 0.729517)
(0.489071 -6.02665e-07 0.656505)
(0.585771 -4.61874e-08 0.589703)
(0.680394 3.02886e-07 0.527577)
(0.772134 1.44504e-07 0.468521)
(0.860741 -1.67254e-07 0.411033)
(0.946387 -2.96119e-07 0.353829)
(1.02952 -2.29086e-07 0.295931)
(1.11072 -1.04879e-07 0.236735)
(1.19054 -1.72604e-08 0.175978)
(1.26946 2.20017e-08 0.113739)
(1.34769 3.48208e-08 0.0503403)
(1.42538 3.73618e-08 -0.013604)
(1.50176 3.34835e-08 -0.0769934)
(1.57626 2.31619e-08 -0.138897)
(1.64841 8.57531e-09 -0.198582)
(1.71769 -5.82466e-09 -0.255411)
(1.78356 -1.6078e-08 -0.308836)
(1.84557 -2.06796e-08 -0.358421)
(1.90331 -2.05535e-08 -0.403847)
(1.95645 -1.78041e-08 -0.444912)
(2.00478 -1.44114e-08 -0.481519)
(2.04816 -1.15087e-08 -0.513664)
(2.08652 -9.32307e-09 -0.541422)
(2.1199 -7.53877e-09 -0.564935)
(2.14836 -5.76234e-09 -0.584398)
(2.17206 -3.84359e-09 -0.600044)
(2.19117 -1.9529e-09 -0.612136)
(2.2059 -4.50764e-10 -0.620952)
(2.21649 3.29086e-10 -0.626783)
(2.22318 2.53992e-10 -0.62992)
(2.22625 -5.46892e-10 -0.630649)
(2.22596 -1.74881e-09 -0.62925)
(2.22257 -2.97022e-09 -0.625988)
(2.21635 -3.90288e-09 -0.621114)
(2.20755 -4.38437e-09 -0.614862)
(2.19642 -4.40924e-09 -0.607446)
(2.18317 -4.09199e-09 -0.599065)
(2.16804 -3.60001e-09 -0.589897)
(2.15123 -3.09143e-09 -0.580102)
(2.13293 -2.67442e-09 -0.569823)
(2.11332 -2.395e-09 -0.559186)
(2.09256 -2.24636e-09 -0.548304)
(2.07079 -2.18841e-09 -0.537271)
(2.04817 -2.16907e-09 -0.526171)
(2.0248 -2.13931e-09 -0.515076)
(2.00082 -2.0617e-09 -0.504044)
(1.97631 -1.91311e-09 -0.493126)
(1.95137 -1.6837e-09 -0.482363)
(1.92609 -1.37393e-09 -0.471789)
(1.90054 -9.91366e-10 -0.461428)
(1.87479 -5.47762e-10 -0.4513)
(1.8489 -5.73848e-11 -0.441419)
(1.82292 4.64404e-10 -0.431796)
(1.79691 1.00109e-09 -0.422433)
(1.7709 1.53548e-09 -0.413334)
(1.74493 2.05107e-09 -0.404496)
(1.71904 2.53289e-09 -0.395916)
(1.69327 2.97093e-09 -0.387585)
(1.66763 3.36311e-09 -0.379497)
(1.64215 3.71756e-09 -0.371642)
(1.61686 4.05291e-09 -0.364008)
(1.59177 4.39646e-09 -0.356585)
(1.5669 4.77892e-09 -0.34936)
(1.54227 5.22727e-09 -0.34232)
(1.5179 5.7588e-09 -0.335452)
(1.49378 6.37627e-09 -0.328744)
(1.46995 7.06655e-09 -0.322184)
(1.4464 7.80229e-09 -0.315759)
(1.42315 8.54313e-09 -0.309457)
(1.40021 9.23712e-09 -0.303267)
(1.37758 9.81821e-09 -0.297178)
(1.35527 1.02037e-08 -0.29118)
(1.33329 1.02915e-08 -0.285265)
(1.31164 9.96429e-09 -0.279423)
(1.29034 9.09922e-09 -0.273647)
(1.26938 7.57988e-09 -0.267929)
(1.24877 5.30991e-09 -0.262265)
(1.22852 2.22493e-09 -0.256648)
(1.20863 -1.68749e-09 -0.251074)
(1.1891 -6.34532e-09 -0.245539)
(1.16993 -1.14992e-08 -0.240041)
(1.15114 -1.66528e-08 -0.234578)
(1.13271 -2.10366e-08 -0.229147)
(1.11466 -2.37313e-08 -0.223749)
(1.09699 -2.40082e-08 -0.218384)
(1.07969 -2.18462e-08 -0.213052)
(1.06277 -1.84166e-08 -0.207753)
(1.04623 -1.61786e-08 -0.202491)
(1.03007 -1.82623e-08 -0.197267)
(1.01429 -2.70927e-08 -0.192084)
(0.998892 -4.27103e-08 -0.186944)
(0.983875 -6.16852e-08 -0.181852)
(0.969241 -7.7542e-08 -0.176809)
(0.954989 -8.29776e-08 -0.17182)
(0.94112 -7.305e-08 -0.166886)
(0.927635 -4.76319e-08 -0.162011)
(0.914533 -1.15706e-08 -0.157193)
(0.901817 2.76307e-08 -0.152434)
(0.889484 6.30784e-08 -0.14773)
(0.877532 9.07217e-08 -0.143077)
(0.865955 1.10191e-07 -0.138472)
(0.854745 1.21775e-07 -0.133911)
(0.843892 1.18418e-07 -0.129397)
(0.833388 1.00621e-07 -0.124931)
(0.823225 9.11539e-08 -0.120518)
(0.813398 7.98364e-08 -0.116162)
(0.8039 6.59836e-09 -0.111867)
(0.794726 -4.84755e-08 -0.107638)
(0.78587 1.29333e-08 -0.10348)
(0.777329 -2.09486e-08 -0.0993948)
(0.769097 -2.02268e-07 -0.0953867)
(0.76117 -2.54206e-07 -0.0914591)
(0.753545 -1.99889e-07 -0.0876149)
(0.746219 -2.22799e-07 -0.0838557)
(0.739188 -2.65815e-07 -0.0801818)
(0.732448 -2.23115e-07 -0.0765929)
(0.725998 -1.12585e-07 -0.0730876)
(0.719834 -6.85084e-09 -0.0696632)
(0.713953 5.95708e-08 -0.0663161)
(0.708349 9.72461e-08 -0.063042)
(0.703017 1.24938e-07 -0.0598367)
(0.697953 1.45972e-07 -0.0566975)
(0.693152 1.58019e-07 -0.0536203)
(0.688611 1.74981e-07 -0.0506014)
(0.684326 2.08168e-07 -0.047636)
(0.680296 2.2945e-07 -0.0447194)
(0.676518 2.12476e-07 -0.0418461)
(0.67299 1.78477e-07 -0.0390106)
(0.669711 1.53991e-07 -0.0362066)
(0.666682 1.22802e-07 -0.0334272)
(0.663903 7.53367e-08 -0.0306652)
(0.661374 2.45353e-08 -0.0279122)
(0.659098 -1.66195e-08 -0.0251593)
(0.657077 -4.68605e-08 -0.0223967)
(0.655315 -7.09942e-08 -0.0196136)
(0.653815 -9.25259e-08 -0.0167986)
(0.652581 -1.11961e-07 -0.0139395)
(0.651618 -1.26773e-07 -0.0110239)
(0.65093 -1.30186e-07 -0.00803934)
(0.650526 -1.15315e-07 -0.00497217)
(0.650414 -9.05516e-08 -0.00180815)
(0.650603 -8.30237e-08 0.00146868)
(0.651104 -9.17372e-08 0.00487578)
(0.65193 -7.30995e-08 0.00843228)
(0.653093 -1.95141e-08 0.0121589)
(0.654608 1.65553e-08 0.016078)
(0.656488 -4.06626e-08 0.0202134)
(0.658751 -1.51696e-07 0.024591)
(0.661414 -1.6651e-07 0.0292385)
(0.664495 -1.03818e-07 0.034186)
(0.668013 -4.13304e-08 0.0394659)
(0.671992 -2.90416e-08 0.0451136)
(0.676452 -3.72906e-08 0.0511675)
(0.681417 3.92383e-08 0.0576689)
(0.686913 1.27233e-07 0.064663)
(0.692967 1.47377e-07 0.0721992)
(0.69961 1.25404e-07 0.080332)
(0.706874 5.66179e-08 0.0891236)
(0.714792 -5.70132e-08 0.098644)
(0.723397 -1.44642e-07 0.108972)
(0.732724 -1.82587e-07 0.120197)
(0.742806 -2.31619e-07 0.132419)
(0.753673 -2.66743e-07 0.145748)
(0.765355 -2.2721e-07 0.160309)
(0.77788 -1.47339e-07 0.176243)
(0.791269 -8.6967e-08 0.193707)
(0.805536 -4.71719e-08 0.212881)
(0.820687 3.50386e-08 0.233964)
(0.836714 1.54568e-07 0.257187)
(0.853587 2.30918e-07 0.282806)
(0.871251 2.63635e-07 0.311111)
(0.889613 3.0793e-07 0.342425)
(0.908534 3.6501e-07 0.377105)
(0.927815 3.69347e-07 0.41554)
(0.947179 3.03647e-07 0.458152)
(0.966256 2.18971e-07 0.505393)
(0.984551 1.39968e-07 0.557734)
(1.00142 6.799e-08 0.615652)
(1.01601 1.00026e-08 0.679608)
(1.02723 -4.45223e-08 0.74999)
(1.03371 -1.19324e-07 0.827051)
(1.03373 -1.84086e-07 0.910805)
(1.02525 -1.57751e-07 1.00091)
(1.00584 -3.47153e-08 1.09646)
(0.97279 1.04888e-07 1.19585)
(0.923246 2.2109e-07 1.29643)
(0.85446 3.25142e-07 1.39435)
(0.764257 4.26075e-07 1.48425)
(0.651755 5.16244e-07 1.55923)
(0.518166 6.003e-07 1.61088)
(0.368047 7.31511e-07 1.62887)
(0.21426 1.21491e-06 1.59765)
(0.0823991 4.13859e-06 1.46076)
(0.0224627 -1.70291e-05 1.26665)
(0.00945911 -3.65471e-06 1.19916)
(0.0581638 9.30208e-07 1.09689)
(0.124101 1.72718e-06 0.994657)
(0.205713 4.35243e-07 0.898485)
(0.29624 -3.89832e-07 0.809967)
(0.391796 -6.99712e-07 0.729518)
(0.48907 -6.02667e-07 0.656506)
(0.585772 -4.61875e-08 0.589704)
(0.680395 3.02887e-07 0.527578)
(0.772134 1.44504e-07 0.468521)
(0.860741 -1.67254e-07 0.411033)
(0.946387 -2.96119e-07 0.353829)
(1.02952 -2.29086e-07 0.295931)
(1.11072 -1.04879e-07 0.236735)
(1.19054 -1.72604e-08 0.175978)
(1.26946 2.20017e-08 0.113739)
(1.34769 3.48208e-08 0.0503402)
(1.42538 3.73618e-08 -0.0136041)
(1.50176 3.34835e-08 -0.0769935)
(1.57626 2.31619e-08 -0.138897)
(1.64841 8.57531e-09 -0.198582)
(1.71769 -5.82467e-09 -0.255411)
(1.78356 -1.6078e-08 -0.308836)
(1.84557 -2.06796e-08 -0.358421)
(1.90331 -2.05536e-08 -0.403847)
(1.95645 -1.78042e-08 -0.444913)
(2.00478 -1.44114e-08 -0.481519)
(2.04816 -1.15087e-08 -0.513664)
(2.08652 -9.32307e-09 -0.541422)
(2.1199 -7.53877e-09 -0.564935)
(2.14836 -5.76235e-09 -0.584398)
(2.17206 -3.84359e-09 -0.600045)
(2.19117 -1.9529e-09 -0.612136)
(2.2059 -4.50764e-10 -0.620952)
(2.21649 3.29086e-10 -0.626783)
(2.22318 2.53992e-10 -0.62992)
(2.22625 -5.46893e-10 -0.630649)
(2.22596 -1.74881e-09 -0.62925)
(2.22257 -2.97022e-09 -0.625988)
(2.21635 -3.90288e-09 -0.621114)
(2.20755 -4.38437e-09 -0.614862)
(2.19642 -4.40924e-09 -0.607446)
(2.18317 -4.09199e-09 -0.599065)
(2.16804 -3.60001e-09 -0.589897)
(2.15123 -3.09143e-09 -0.580102)
(2.13293 -2.67442e-09 -0.569823)
(2.11332 -2.395e-09 -0.559186)
(2.09256 -2.24636e-09 -0.548304)
(2.07079 -2.18841e-09 -0.537271)
(2.04817 -2.16908e-09 -0.526171)
(2.0248 -2.13931e-09 -0.515076)
(2.00082 -2.0617e-09 -0.504044)
(1.97631 -1.91311e-09 -0.493126)
(1.95137 -1.6837e-09 -0.482363)
(1.92609 -1.37393e-09 -0.471789)
(1.90054 -9.91366e-10 -0.461428)
(1.87479 -5.47762e-10 -0.4513)
(1.8489 -5.73848e-11 -0.441419)
(1.82292 4.64404e-10 -0.431796)
(1.79691 1.00109e-09 -0.422433)
(1.7709 1.53548e-09 -0.413334)
(1.74493 2.05107e-09 -0.404496)
(1.71904 2.53289e-09 -0.395916)
(1.69327 2.97093e-09 -0.387585)
(1.66763 3.36311e-09 -0.379497)
(1.64215 3.71755e-09 -0.371642)
(1.61686 4.05291e-09 -0.364008)
(1.59177 4.39646e-09 -0.356585)
(1.5669 4.77892e-09 -0.34936)
(1.54227 5.22727e-09 -0.342319)
(1.5179 5.7588e-09 -0.335452)
(1.49378 6.37627e-09 -0.328744)
(1.46995 7.06655e-09 -0.322184)
(1.4464 7.80229e-09 -0.315759)
(1.42315 8.54313e-09 -0.309457)
(1.40021 9.23712e-09 -0.303267)
(1.37758 9.81821e-09 -0.297178)
(1.35527 1.02037e-08 -0.29118)
(1.33329 1.02915e-08 -0.285265)
(1.31164 9.96429e-09 -0.279423)
(1.29034 9.09921e-09 -0.273647)
(1.26938 7.57988e-09 -0.267929)
(1.24877 5.30991e-09 -0.262265)
(1.22852 2.22493e-09 -0.256648)
(1.20863 -1.68749e-09 -0.251074)
(1.1891 -6.34532e-09 -0.245539)
(1.16993 -1.14992e-08 -0.240041)
(1.15114 -1.66529e-08 -0.234578)
(1.13271 -2.10366e-08 -0.229147)
(1.11466 -2.37313e-08 -0.223749)
(1.09699 -2.40082e-08 -0.218384)
(1.07969 -2.18462e-08 -0.213052)
(1.06277 -1.84166e-08 -0.207753)
(1.04623 -1.61786e-08 -0.202491)
(1.03007 -1.82623e-08 -0.197267)
(1.01429 -2.70927e-08 -0.192084)
(0.998892 -4.27103e-08 -0.186944)
(0.983875 -6.16852e-08 -0.181852)
(0.969241 -7.7542e-08 -0.176809)
(0.954989 -8.29777e-08 -0.17182)
(0.94112 -7.305e-08 -0.166886)
(0.927635 -4.76319e-08 -0.162011)
(0.914534 -1.15706e-08 -0.157193)
(0.901817 2.76307e-08 -0.152434)
(0.889484 6.30785e-08 -0.14773)
(0.877532 9.07217e-08 -0.143077)
(0.865955 1.10191e-07 -0.138472)
(0.854745 1.21775e-07 -0.133911)
(0.843892 1.18418e-07 -0.129397)
(0.833388 1.00621e-07 -0.124931)
(0.823225 9.1154e-08 -0.120518)
(0.813398 7.98364e-08 -0.116162)
(0.8039 6.59836e-09 -0.111867)
(0.794726 -4.84755e-08 -0.107638)
(0.78587 1.29333e-08 -0.103479)
(0.777329 -2.09487e-08 -0.0993944)
(0.769097 -2.02268e-07 -0.0953864)
(0.76117 -2.54206e-07 -0.0914589)
(0.753545 -1.9989e-07 -0.0876148)
(0.746219 -2.228e-07 -0.0838555)
(0.739187 -2.65815e-07 -0.0801816)
(0.732448 -2.23116e-07 -0.0765928)
(0.725998 -1.12585e-07 -0.0730876)
(0.719834 -6.85084e-09 -0.0696633)
(0.713953 5.95709e-08 -0.0663162)
(0.708349 9.72462e-08 -0.0630421)
(0.703017 1.24938e-07 -0.0598368)
(0.697953 1.45972e-07 -0.0566976)
(0.693152 1.58019e-07 -0.0536205)
(0.688611 1.74981e-07 -0.0506015)
(0.684326 2.08168e-07 -0.0476361)
(0.680296 2.2945e-07 -0.0447194)
(0.676518 2.12476e-07 -0.0418461)
(0.67299 1.78477e-07 -0.0390106)
(0.669711 1.53991e-07 -0.0362065)
(0.666682 1.22802e-07 -0.0334271)
(0.663903 7.53368e-08 -0.030665)
(0.661374 2.45353e-08 -0.027912)
(0.659098 -1.66195e-08 -0.0251591)
(0.657077 -4.68605e-08 -0.0223965)
(0.655315 -7.09942e-08 -0.0196134)
(0.653815 -9.25259e-08 -0.0167985)
(0.652581 -1.11961e-07 -0.0139395)
(0.651618 -1.26773e-07 -0.011024)
(0.65093 -1.30186e-07 -0.00803948)
(0.650526 -1.15315e-07 -0.00497235)
(0.650413 -9.05516e-08 -0.00180837)
(0.650602 -8.30237e-08 0.00146844)
(0.651104 -9.17372e-08 0.00487554)
(0.65193 -7.30995e-08 0.00843209)
(0.653093 -1.95141e-08 0.0121588)
(0.654607 1.65553e-08 0.0160778)
(0.656488 -4.06626e-08 0.0202132)
(0.658751 -1.51696e-07 0.0245907)
(0.661414 -1.6651e-07 0.0292381)
(0.664494 -1.03818e-07 0.0341856)
(0.668013 -4.13304e-08 0.0394655)
(0.671991 -2.90416e-08 0.0451133)
(0.676452 -3.72906e-08 0.0511672)
(0.681417 3.92383e-08 0.0576687)
(0.686913 1.27233e-07 0.0646629)
(0.692967 1.47377e-07 0.0721991)
(0.69961 1.25404e-07 0.080332)
(0.706874 5.66179e-08 0.0891237)
(0.714792 -5.70132e-08 0.098644)
(0.723397 -1.44642e-07 0.108972)
(0.732725 -1.82587e-07 0.120197)
(0.742806 -2.31619e-07 0.132418)
(0.753673 -2.66743e-07 0.145747)
(0.765355 -2.2721e-07 0.160309)
(0.77788 -1.47339e-07 0.176242)
(0.791269 -8.6967e-08 0.193707)
(0.805536 -4.71719e-08 0.21288)
(0.820688 3.50386e-08 0.233964)
(0.836714 1.54568e-07 0.257186)
(0.853588 2.30918e-07 0.282805)
(0.871252 2.63635e-07 0.31111)
(0.889614 3.0793e-07 0.342425)
(0.908535 3.6501e-07 0.377104)
(0.927815 3.69347e-07 0.415539)
(0.947179 3.03647e-07 0.458151)
(0.966256 2.18971e-07 0.505392)
(0.984552 1.39968e-07 0.557733)
(1.00142 6.799e-08 0.615652)
(1.01601 1.00026e-08 0.679607)
(1.02723 -4.45223e-08 0.749989)
(1.03371 -1.19324e-07 0.82705)
(1.03373 -1.84086e-07 0.910804)
(1.02525 -1.57751e-07 1.0009)
(1.00584 -3.47153e-08 1.09646)
(0.972791 1.04888e-07 1.19585)
(0.923248 2.2109e-07 1.29643)
(0.854461 3.25142e-07 1.39434)
(0.764259 4.26076e-07 1.48425)
(0.651756 5.16245e-07 1.55922)
(0.518167 6.00301e-07 1.61087)
(0.368048 7.31512e-07 1.62886)
(0.214259 1.21491e-06 1.59764)
(0.0823981 4.13862e-06 1.46074)
(-0.0158988 -4.7345e-06 1.26977)
(-0.000109793 -2.27511e-06 1.15995)
(0.0707146 -4.99007e-07 1.02727)
(0.164661 1.21862e-07 0.903575)
(0.277565 -7.8422e-07 0.794107)
(0.398864 -4.77501e-07 0.698294)
(0.523266 -6.07277e-08 0.615089)
(0.646562 2.75162e-07 0.542582)
(0.766112 5.94712e-07 0.478435)
(0.880407 5.30703e-07 0.420185)
(0.988865 1.06846e-07 0.365478)
(1.0916 -2.70039e-07 0.312243)
(1.1892 -3.68763e-07 0.258804)
(1.28256 -2.61247e-07 0.203977)
(1.37261 -1.10589e-07 0.147141)
(1.46023 -8.02096e-09 0.0880802)
(1.54599 3.83777e-08 0.027027)
(1.63014 5.15413e-08 -0.0352042)
(1.7119 4.94859e-08 -0.0973283)
(1.79101 3.93846e-08 -0.158334)
(1.86699 2.40438e-08 -0.217361)
(1.93935 6.92434e-09 -0.273635)
(2.00754 -7.77841e-09 -0.326506)
(2.07108 -1.71264e-08 -0.375468)
(2.12958 -2.06468e-08 -0.420163)
(2.18273 -1.98785e-08 -0.460368)
(2.23033 -1.70774e-08 -0.49598)
(2.27227 -1.40617e-08 -0.527004)
(2.30856 -1.16847e-08 -0.553528)
(2.33927 -9.93291e-09 -0.575709)
(2.36453 -8.37157e-09 -0.593762)
(2.38456 -6.61166e-09 -0.607936)
(2.39959 -4.58677e-09 -0.618513)
(2.40991 -2.56596e-09 -0.625789)
(2.41579 -9.76395e-10 -0.630069)
(2.41756 -1.69687e-10 -0.631659)
(2.41553 -2.62036e-10 -0.630857)
(2.41002 -1.09177e-09 -0.627955)
(2.40133 -2.30496e-09 -0.623228)
(2.38977 -3.50844e-09 -0.616933)
(2.37562 -4.40519e-09 -0.609314)
(2.35916 -4.84868e-09 -0.600589)
(2.34065 -4.84705e-09 -0.59096)
(2.32032 -4.52044e-09 -0.580609)
(2.29841 -4.03597e-09 -0.569698)
(2.27512 -3.54732e-09 -0.558372)
(2.25064 -3.15654e-09 -0.546756)
(2.22515 -2.90267e-09 -0.534961)
(2.19879 -2.77349e-09 -0.523083)
(2.17171 -2.72572e-09 -0.511203)
(2.14405 -2.70484e-09 -0.499391)
(2.11591 -2.66188e-09 -0.487704)
(2.0874 -2.55968e-09 -0.476191)
(2.05861 -2.37632e-09 -0.464891)
(2.02963 -2.10355e-09 -0.453833)
(2.00052 -1.7436e-09 -0.443042)
(1.97135 -1.3061e-09 -0.432535)
(1.94217 -8.04823e-10 -0.422323)
(1.91304 -2.56495e-10 -0.412414)
(1.88399 3.20508e-10 -0.402812)
(1.85508 9.07605e-10 -0.393514)
(1.82632 1.4857e-09 -0.384518)
(1.79776 2.03701e-09 -0.375818)
(1.76941 2.54751e-09 -0.367404)
(1.7413 3.01014e-09 -0.359269)
(1.71345 3.42781e-09 -0.351399)
(1.68587 3.81508e-09 -0.343783)
(1.65858 4.19733e-09 -0.336407)
(1.63159 4.60702e-09 -0.329258)
(1.60492 5.077e-09 -0.322321)
(1.57857 5.63302e-09 -0.315583)
(1.55256 6.28663e-09 -0.30903)
(1.52689 7.03292e-09 -0.302647)
(1.50157 7.84943e-09 -0.29642)
(1.4766 8.69812e-09 -0.290338)
(1.45199 9.52679e-09 -0.284386)
(1.42775 1.02681e-08 -0.278554)
(1.40387 1.08363e-08 -0.272829)
(1.38038 1.11251e-08 -0.267202)
(1.35726 1.10094e-08 -0.261662)
(1.33452 1.03561e-08 -0.2562)
(1.31217 9.03682e-09 -0.250809)
(1.29021 6.94221e-09 -0.245481)
(1.26863 3.9886e-09 -0.24021)
(1.24746 1.24906e-10 -0.234989)
(1.22667 -4.64109e-09 -0.229815)
(1.20629 -1.0174e-08 -0.224683)
(1.1863 -1.60971e-08 -0.21959)
(1.16672 -2.16805e-08 -0.214534)
(1.14754 -2.58452e-08 -0.209513)
(1.12876 -2.7415e-08 -0.204525)
(1.11039 -2.56789e-08 -0.199572)
(1.09242 -2.11249e-08 -0.194652)
(1.07485 -1.59625e-08 -0.189768)
(1.0577 -1.39103e-08 -0.184919)
(1.04094 -1.88974e-08 -0.180109)
(1.02459 -3.2887e-08 -0.17534)
(1.00865 -5.37748e-08 -0.170615)
(0.993104 -7.47784e-08 -0.165936)
(0.977965 -8.63592e-08 -0.161308)
(0.963229 -8.03861e-08 -0.156733)
(0.948896 -5.45438e-08 -0.152214)
(0.934967 -1.41781e-08 -0.147754)
(0.921443 3.00416e-08 -0.143354)
(0.908325 6.7352e-08 -0.139011)
(0.895614 9.11669e-08 -0.134722)
(0.883306 9.93879e-08 -0.13048)
(0.871396 9.44996e-08 -0.126276)
(0.859869 8.22153e-08 -0.122106)
(0.848715 5.23756e-08 -0.117972)
(0.837922 -4.95624e-09 -0.113878)
(0.827484 -3.46616e-08 -0.109829)
(0.817393 -7.41203e-09 -0.105829)
(0.807644 -7.12989e-08 -0.101885)
(0.798229 -1.82214e-07 -0.0980008)
(0.789145 -8.67506e-08 -0.0941821)
(0.780387 -2.8611e-08 -0.0904324)
(0.77195 -2.17108e-07 -0.0867549)
(0.763827 -3.44394e-07 -0.0831532)
(0.756018 -3.48786e-07 -0.0796309)
(0.748518 -4.12472e-07 -0.0761901)
(0.741323 -4.68286e-07 -0.0728317)
(0.734431 -3.86713e-07 -0.0695552)
(0.727839 -1.8442e-07 -0.0663588)
(0.721544 3.57113e-08 -0.0632394)
(0.715542 1.96947e-07 -0.0601925)
(0.709827 2.82585e-07 -0.0572127)
(0.704392 3.10236e-07 -0.0542956)
(0.699231 2.94864e-07 -0.05144)
(0.694339 2.39734e-07 -0.0486421)
(0.689713 1.80215e-07 -0.0458988)
(0.685349 1.71005e-07 -0.0432057)
(0.681244 2.08863e-07 -0.0405585)
(0.677396 2.39258e-07 -0.0379524)
(0.673802 2.58439e-07 -0.0353824)
(0.670461 2.78144e-07 -0.0328431)
(0.667373 2.63171e-07 -0.0303286)
(0.664538 1.94425e-07 -0.0278322)
(0.661956 9.36415e-08 -0.0253466)
(0.659631 -5.40151e-09 -0.0228635)
(0.657564 -8.07996e-08 -0.0203739)
(0.65576 -1.25466e-07 -0.0178674)
(0.654222 -1.41472e-07 -0.015333)
(0.652953 -1.37218e-07 -0.0127589)
(0.651959 -1.24391e-07 -0.0101333)
(0.651244 -1.06695e-07 -0.00744549)
(0.650815 -6.92712e-08 -0.00468338)
(0.650681 -6.50949e-09 -0.00183461)
(0.650855 2.81406e-08 0.00111547)
(0.651347 -1.25635e-08 0.00418301)
(0.652171 -8.78824e-08 0.00738603)
(0.653341 -1.21842e-07 0.0107442)
(0.654872 -8.6329e-08 0.0142788)
(0.656781 -1.00665e-07 0.0180124)
(0.659086 -2.04605e-07 0.0219697)
(0.661806 -2.22252e-07 0.0261764)
(0.664961 -1.20708e-07 0.0306615)
(0.668575 5.38651e-08 0.0354559)
(0.672671 1.64128e-07 0.0405939)
(0.677275 1.59864e-07 0.0461125)
(0.682414 1.88416e-07 0.0520506)
(0.688118 2.08084e-07 0.0584504)
(0.694418 1.3448e-07 0.0653584)
(0.701352 1.09541e-08 0.072826)
(0.708962 -1.61166e-07 0.0809136)
(0.717289 -3.82632e-07 0.0896892)
(0.726378 -5.19562e-07 0.0992315)
(0.736275 -4.79777e-07 0.109628)
(0.747024 -3.74591e-07 0.120981)
(0.758673 -2.30507e-07 0.1334)
(0.771268 -1.40343e-10 0.147012)
(0.784858 2.53145e-07 0.16196)
(0.799488 4.06853e-07 0.178405)
(0.815202 4.06041e-07 0.196532)
(0.832038 3.49697e-07 0.216554)
(0.850026 3.10113e-07 0.238713)
(0.869185 2.09329e-07 0.263291)
(0.889506 4.74861e-08 0.290609)
(0.910954 -6.73056e-08 0.321031)
(0.93345 -6.89907e-08 0.354968)
(0.956861 -3.75776e-08 0.39288)
(0.980985 -2.92891e-08 0.435279)
(1.00553 -1.83671e-08 0.482732)
(1.03007 2.32906e-09 0.535863)
(1.05403 1.77134e-08 0.595343)
(1.07663 4.35882e-08 0.661887)
(1.09676 7.84922e-08 0.736195)
(1.113 4.94034e-08 0.81889)
(1.12347 -7.81883e-08 0.910413)
(1.12579 -1.92841e-07 1.01087)
(1.11701 -1.90652e-07 1.11984)
(1.09361 -1.19313e-07 1.23605)
(1.05157 -2.95618e-08 1.35704)
(0.986612 8.2727e-08 1.47867)
(0.894672 2.19441e-07 1.59467)
(0.772895 3.5605e-07 1.69612)
(0.620844 4.76466e-07 1.77129)
(0.443052 6.19527e-07 1.80487)
(0.255615 1.05568e-06 1.77499)
(0.0946058 3.639e-06 1.61288)
(-0.0158824 -4.73474e-06 1.26974)
(-9.56118e-05 -2.27424e-06 1.15994)
(0.0707186 -4.9868e-07 1.02727)
(0.16466 1.21833e-07 0.903584)
(0.277566 -7.84194e-07 0.794113)
(0.398866 -4.77504e-07 0.698296)
(0.523266 -6.07282e-08 0.615091)
(0.646562 2.75163e-07 0.542583)
(0.766113 5.94713e-07 0.478436)
(0.880408 5.30704e-07 0.420186)
(0.988865 1.06846e-07 0.365478)
(1.0916 -2.70039e-07 0.312242)
(1.1892 -3.68763e-07 0.258804)
(1.28256 -2.61247e-07 0.203977)
(1.37261 -1.10589e-07 0.147141)
(1.46023 -8.02096e-09 0.0880803)
(1.54599 3.83777e-08 0.027027)
(1.63014 5.15413e-08 -0.0352042)
(1.7119 4.94859e-08 -0.0973284)
(1.79101 3.93846e-08 -0.158334)
(1.86699 2.40438e-08 -0.217361)
(1.93935 6.92434e-09 -0.273635)
(2.00754 -7.77842e-09 -0.326506)
(2.07108 -1.71264e-08 -0.375468)
(2.12958 -2.06468e-08 -0.420163)
(2.18273 -1.98785e-08 -0.460368)
(2.23033 -1.70774e-08 -0.495981)
(2.27227 -1.40617e-08 -0.527004)
(2.30856 -1.16847e-08 -0.553528)
(2.33927 -9.93292e-09 -0.57571)
(2.36453 -8.37157e-09 -0.593762)
(2.38456 -6.61166e-09 -0.607937)
(2.39959 -4.58677e-09 -0.618513)
(2.40991 -2.56597e-09 -0.625789)
(2.41579 -9.76395e-10 -0.630069)
(2.41756 -1.69687e-10 -0.631659)
(2.41553 -2.62036e-10 -0.630857)
(2.41002 -1.09177e-09 -0.627955)
(2.40133 -2.30496e-09 -0.623228)
(2.38977 -3.50844e-09 -0.616934)
(2.37562 -4.40519e-09 -0.609314)
(2.35916 -4.84869e-09 -0.600589)
(2.34065 -4.84706e-09 -0.59096)
(2.32032 -4.52044e-09 -0.580609)
(2.29841 -4.03597e-09 -0.569698)
(2.27512 -3.54732e-09 -0.558372)
(2.25064 -3.15654e-09 -0.546756)
(2.22515 -2.90267e-09 -0.534961)
(2.19879 -2.77349e-09 -0.523083)
(2.17171 -2.72572e-09 -0.511203)
(2.14405 -2.70484e-09 -0.499391)
(2.11591 -2.66188e-09 -0.487704)
(2.0874 -2.55968e-09 -0.476191)
(2.05861 -2.37632e-09 -0.464891)
(2.02963 -2.10355e-09 -0.453833)
(2.00052 -1.7436e-09 -0.443042)
(1.97135 -1.3061e-09 -0.432535)
(1.94217 -8.04823e-10 -0.422323)
(1.91304 -2.56495e-10 -0.412414)
(1.88399 3.20508e-10 -0.402812)
(1.85508 9.07605e-10 -0.393514)
(1.82632 1.4857e-09 -0.384518)
(1.79776 2.03701e-09 -0.375818)
(1.76941 2.54751e-09 -0.367404)
(1.7413 3.01014e-09 -0.359269)
(1.71345 3.4278e-09 -0.351399)
(1.68587 3.81507e-09 -0.343783)
(1.65858 4.19733e-09 -0.336407)
(1.63159 4.60702e-09 -0.329258)
(1.60492 5.077e-09 -0.322321)
(1.57857 5.63302e-09 -0.315583)
(1.55256 6.28663e-09 -0.30903)
(1.52689 7.03292e-09 -0.302646)
(1.50157 7.84943e-09 -0.29642)
(1.4766 8.69811e-09 -0.290338)
(1.45199 9.52679e-09 -0.284386)
(1.42775 1.02681e-08 -0.278554)
(1.40387 1.08363e-08 -0.272829)
(1.38038 1.11251e-08 -0.267202)
(1.35726 1.10094e-08 -0.261662)
(1.33452 1.03561e-08 -0.2562)
(1.31217 9.03682e-09 -0.250809)
(1.29021 6.94221e-09 -0.245481)
(1.26863 3.9886e-09 -0.24021)
(1.24746 1.24906e-10 -0.234989)
(1.22667 -4.64109e-09 -0.229815)
(1.20629 -1.0174e-08 -0.224683)
(1.1863 -1.60971e-08 -0.21959)
(1.16672 -2.16805e-08 -0.214534)
(1.14754 -2.58452e-08 -0.209512)
(1.12876 -2.7415e-08 -0.204525)
(1.11039 -2.56789e-08 -0.199572)
(1.09242 -2.11249e-08 -0.194652)
(1.07485 -1.59625e-08 -0.189768)
(1.0577 -1.39103e-08 -0.184919)
(1.04094 -1.88975e-08 -0.180109)
(1.02459 -3.2887e-08 -0.17534)
(1.00865 -5.37748e-08 -0.170615)
(0.993104 -7.47784e-08 -0.165936)
(0.977965 -8.63592e-08 -0.161308)
(0.963229 -8.03861e-08 -0.156733)
(0.948896 -5.45438e-08 -0.152214)
(0.934967 -1.41781e-08 -0.147754)
(0.921443 3.00416e-08 -0.143354)
(0.908326 6.7352e-08 -0.139011)
(0.895614 9.1167e-08 -0.134722)
(0.883306 9.9388e-08 -0.13048)
(0.871396 9.44996e-08 -0.126276)
(0.859869 8.22154e-08 -0.122106)
(0.848714 5.23756e-08 -0.117973)
(0.837922 -4.95624e-09 -0.113878)
(0.827484 -3.46616e-08 -0.109829)
(0.817394 -7.41203e-09 -0.105829)
(0.807644 -7.12989e-08 -0.101884)
(0.798229 -1.82214e-07 -0.0980002)
(0.789145 -8.67506e-08 -0.0941814)
(0.780387 -2.8611e-08 -0.0904317)
(0.77195 -2.17108e-07 -0.0867543)
(0.763827 -3.44395e-07 -0.0831527)
(0.756018 -3.48786e-07 -0.0796304)
(0.748518 -4.12472e-07 -0.0761897)
(0.741323 -4.68286e-07 -0.0728313)
(0.734431 -3.86713e-07 -0.0695549)
(0.727839 -1.8442e-07 -0.0663587)
(0.721543 3.57113e-08 -0.0632394)
(0.715541 1.96947e-07 -0.0601926)
(0.709827 2.82585e-07 -0.0572129)
(0.704392 3.10237e-07 -0.0542958)
(0.699231 2.94865e-07 -0.0514403)
(0.694339 2.39734e-07 -0.0486424)
(0.689713 1.80215e-07 -0.0458991)
(0.685349 1.71005e-07 -0.043206)
(0.681244 2.08863e-07 -0.0405587)
(0.677396 2.39258e-07 -0.0379526)
(0.673802 2.58439e-07 -0.0353825)
(0.670461 2.78144e-07 -0.0328431)
(0.667373 2.63171e-07 -0.0303285)
(0.664537 1.94425e-07 -0.027832)
(0.661956 9.36415e-08 -0.0253464)
(0.659631 -5.40151e-09 -0.0228633)
(0.657564 -8.07997e-08 -0.0203738)
(0.65576 -1.25466e-07 -0.0178673)
(0.654221 -1.41472e-07 -0.015333)
(0.652953 -1.37218e-07 -0.012759)
(0.651959 -1.24391e-07 -0.0101335)
(0.651243 -1.06695e-07 -0.00744575)
(0.650814 -6.92712e-08 -0.00468367)
(0.650681 -6.50949e-09 -0.0018349)
(0.650854 2.81406e-08 0.00111515)
(0.651346 -1.25635e-08 0.00418267)
(0.652171 -8.78824e-08 0.00738573)
(0.653341 -1.21842e-07 0.010744)
(0.654872 -8.6329e-08 0.0142787)
(0.656781 -1.00665e-07 0.0180124)
(0.659086 -2.04605e-07 0.0219695)
(0.661805 -2.22252e-07 0.0261761)
(0.664961 -1.20708e-07 0.0306611)
(0.668575 5.38651e-08 0.0354556)
(0.672671 1.64128e-07 0.0405937)
(0.677275 1.59864e-07 0.0461124)
(0.682415 1.88416e-07 0.0520507)
(0.688118 2.08084e-07 0.0584505)
(0.694418 1.3448e-07 0.0653585)
(0.701352 1.09541e-08 0.0728261)
(0.708962 -1.61166e-07 0.0809137)
(0.717289 -3.82631e-07 0.0896892)
(0.726378 -5.19562e-07 0.0992313)
(0.736275 -4.79777e-07 0.109628)
(0.747024 -3.74591e-07 0.120981)
(0.758672 -2.30507e-07 0.133399)
(0.771268 -1.40343e-10 0.147012)
(0.784858 2.53144e-07 0.161959)
(0.799488 4.06853e-07 0.178405)
(0.815202 4.06041e-07 0.196532)
(0.832038 3.49697e-07 0.216554)
(0.850026 3.10113e-07 0.238713)
(0.869185 2.09329e-07 0.263291)
(0.889507 4.74861e-08 0.290609)
(0.910955 -6.73056e-08 0.321031)
(0.933451 -6.89907e-08 0.354968)
(0.956862 -3.75776e-08 0.39288)
(0.980986 -2.92891e-08 0.435279)
(1.00553 -1.83671e-08 0.482732)
(1.03007 2.32906e-09 0.535862)
(1.05403 1.77134e-08 0.595343)
(1.07663 4.35882e-08 0.661886)
(1.09676 7.84922e-08 0.736194)
(1.113 4.94034e-08 0.818889)
(1.12347 -7.81883e-08 0.910411)
(1.12579 -1.92841e-07 1.01087)
(1.11701 -1.90652e-07 1.11984)
(1.09361 -1.19313e-07 1.23605)
(1.05157 -2.95618e-08 1.35704)
(0.986613 8.2727e-08 1.47867)
(0.894673 2.19441e-07 1.59467)
(0.772896 3.5605e-07 1.69612)
(0.620844 4.76466e-07 1.77129)
(0.443053 6.19528e-07 1.80486)
(0.255614 1.05568e-06 1.77498)
(0.094605 3.63901e-06 1.61287)
(-0.0279417 5.21887e-06 1.28519)
(-0.0175258 -2.55691e-06 1.10298)
(0.0954466 -1.78133e-06 0.925132)
(0.233176 2.70087e-07 0.774662)
(0.391699 8.57101e-07 0.651378)
(0.554841 1.37245e-06 0.550357)
(0.716037 9.89455e-07 0.467896)
(0.870519 8.36015e-07 0.400037)
(1.01578 8.69967e-07 0.342798)
(1.15082 5.82613e-07 0.292433)
(1.27577 6.11091e-08 0.245624)
(1.39152 -3.05883e-07 0.199643)
(1.49949 -3.67194e-07 0.152396)
(1.60123 -2.38753e-07 0.102479)
(1.69815 -8.3613e-08 0.0492723)
(1.79159 1.78094e-08 -0.00704467)
(1.88159 6.12537e-08 -0.0654274)
(1.96806 6.94692e-08 -0.124589)
(2.05095 6.07972e-08 -0.183341)
(2.12988 4.41173e-08 -0.240599)
(2.20437 2.41538e-08 -0.295363)
(2.27385 5.10777e-09 -0.34682)
(2.33783 -9.38979e-09 -0.394359)
(2.39589 -1.75629e-08 -0.43756)
(2.44775 -1.99646e-08 -0.476175)
(2.49323 -1.86771e-08 -0.510098)
(2.53229 -1.60146e-08 -0.539346)
(2.56497 -1.35514e-08 -0.564024)
(2.59143 -1.18145e-08 -0.584313)
(2.6119 -1.05457e-08 -0.600448)
(2.62664 -9.21378e-09 -0.612701)
(2.63597 -7.46865e-09 -0.62137)
(2.64026 -5.35122e-09 -0.626768)
(2.63987 -3.23696e-09 -0.629213)
(2.63517 -1.61206e-09 -0.629022)
(2.62653 -8.31613e-10 -0.626506)
(2.61434 -9.81295e-10 -0.62196)
(2.59896 -1.86289e-09 -0.615667)
(2.58071 -3.09102e-09 -0.607889)
(2.55994 -4.26385e-09 -0.59887)
(2.53695 -5.1003e-09 -0.588833)
(2.51202 -5.47967e-09 -0.577979)
(2.48542 -5.42802e-09 -0.56649)
(2.4574 -5.07328e-09 -0.554526)
(2.42816 -4.58385e-09 -0.542229)
(2.39793 -4.10802e-09 -0.529723)
(2.36686 -3.73998e-09 -0.517117)
(2.33514 -3.51099e-09 -0.504502)
(2.30289 -3.40221e-09 -0.491956)
(2.27026 -3.36527e-09 -0.479546)
(2.23735 -3.34382e-09 -0.467325)
(2.20427 -3.2873e-09 -0.455338)
(2.17111 -3.15932e-09 -0.443621)
(2.13793 -2.93938e-09 -0.432201)
(2.10481 -2.62088e-09 -0.421098)
(2.07181 -2.20832e-09 -0.410327)
(2.03897 -1.7135e-09 -0.399896)
(2.00634 -1.15267e-09 -0.389811)
(1.97396 -5.4529e-10 -0.380072)
(1.94185 8.83098e-11 -0.370676)
(1.91004 7.26354e-10 -0.361617)
(1.87856 1.34819e-09 -0.352888)
(1.84742 1.93584e-09 -0.344478)
(1.81665 2.47705e-09 -0.336376)
(1.78624 2.96854e-09 -0.328569)
(1.75621 3.41901e-09 -0.321042)
(1.72658 3.85027e-09 -0.313782)
(1.69734 4.29406e-09 -0.306774)
(1.66851 4.78725e-09 -0.300001)
(1.64009 5.36347e-09 -0.293449)
(1.61208 6.04537e-09 -0.287103)
(1.58448 6.8385e-09 -0.280947)
(1.55731 7.72911e-09 -0.274967)
(1.53055 8.68464e-09 -0.269148)
(1.50422 9.65513e-09 -0.263477)
(1.47831 1.05732e-08 -0.257941)
(1.45282 1.13518e-08 -0.252527)
(1.42776 1.18801e-08 -0.247223)
(1.40313 1.20258e-08 -0.24202)
(1.37892 1.1643e-08 -0.236907)
(1.35514 1.05895e-08 -0.231874)
(1.33179 8.743e-09 -0.226913)
(1.30887 6.00684e-09 -0.222018)
(1.28638 2.30744e-09 -0.217181)
(1.26433 -2.40464e-09 -0.212396)
(1.2427 -8.1093e-09 -0.207659)
(1.22151 -1.45993e-08 -0.202966)
(1.20074 -2.13024e-08 -0.198312)
(1.18041 -2.71438e-08 -0.193696)
(1.16052 -3.06282e-08 -0.189115)
(1.14105 -3.03181e-08 -0.184569)
(1.12202 -2.57128e-08 -0.180056)
(1.10342 -1.82191e-08 -0.175578)
(1.08525 -1.15729e-08 -0.171134)
(1.06751 -1.10101e-08 -0.166725)
(1.05019 -2.09397e-08 -0.162354)
(1.03331 -4.18217e-08 -0.158023)
(1.01684 -6.79626e-08 -0.153735)
(1.00081 -8.82066e-08 -0.149492)
(0.985195 -9.03639e-08 -0.145299)
(0.970003 -6.78331e-08 -0.141159)
(0.955233 -2.45901e-08 -0.137077)
(0.940885 2.54247e-08 -0.133054)
(0.926962 6.52897e-08 -0.129092)
(0.913466 8.41793e-08 -0.12519)
(0.9004 8.10597e-08 -0.12134)
(0.887762 5.84459e-08 -0.117533)
(0.875545 1.98991e-08 -0.113751)
(0.863729 -1.86317e-08 -0.109988)
(0.852297 -6.05901e-08 -0.106249)
(0.841237 -1.47917e-07 -0.102538)
(0.830542 -1.90918e-07 -0.0988642)
(0.820206 -4.90927e-08 -0.0952331)
(0.810221 2.41999e-08 -0.0916514)
(0.800581 -7.59088e-08 -0.0881239)
(0.791283 5.26642e-08 -0.0846565)
(0.782323 2.29429e-07 -0.0812532)
(0.773695 1.58176e-07 -0.0779176)
(0.765391 3.87829e-08 -0.0746532)
(0.757409 -5.26866e-08 -0.0714637)
(0.749748 -2.33929e-07 -0.0683521)
(0.742402 -3.86113e-07 -0.0653201)
(0.735368 -3.55831e-07 -0.0623672)
(0.728645 -1.6014e-07 -0.0594918)
(0.72223 7.35689e-08 -0.0566892)
(0.71612 2.30623e-07 -0.0539538)
(0.710308 2.69563e-07 -0.0512775)
(0.704781 2.17452e-07 -0.048655)
(0.699533 1.19548e-07 -0.0460896)
(0.694561 -2.41948e-08 -0.0435766)
(0.689859 -1.85865e-07 -0.0411144)
(0.685424 -2.84022e-07 -0.0386986)
(0.681252 -2.66079e-07 -0.0363254)
(0.67734 -1.88222e-07 -0.0339904)
(0.673686 -5.96889e-08 -0.0316895)
(0.670287 9.70127e-08 -0.029418)
(0.667144 1.98355e-07 -0.027171)
(0.664255 1.94199e-07 -0.0249428)
(0.661622 1.06375e-07 -0.0227273)
(0.659247 -5.95535e-09 -0.0205171)
(0.657134 -8.88141e-08 -0.018304)
(0.655286 -1.1562e-07 -0.0160778)
(0.653707 -8.89808e-08 -0.013828)
(0.652402 -3.39618e-08 -0.0115422)
(0.651372 1.2966e-08 -0.00920905)
(0.650623 2.92947e-08 -0.00682045)
(0.650161 5.01726e-08 -0.00436605)
(0.649996 1.40945e-07 -0.00183634)
(0.650142 2.47012e-07 0.000782057)
(0.65061 2.43448e-07 0.00350382)
(0.651416 8.06301e-08 0.00634574)
(0.652575 -1.2614e-07 0.00932662)
(0.654104 -1.57081e-07 0.0124662)
(0.65602 -1.00115e-07 0.0157864)
(0.658342 -8.95948e-08 0.0193098)
(0.661091 -5.64e-08 0.0230599)
(0.664292 2.69765e-08 0.0270642)
(0.667968 2.46008e-07 0.0313509)
(0.672147 4.19495e-07 0.0359544)
(0.676857 4.17518e-07 0.0409106)
(0.682126 3.71969e-07 0.0462551)
(0.687987 2.73222e-07 0.0520254)
(0.694479 6.19634e-08 0.058263)
(0.701644 -1.72702e-07 0.0650148)
(0.709535 -4.15831e-07 0.0723383)
(0.718202 -7.10428e-07 0.0802986)
(0.727699 -8.83962e-07 0.088973)
(0.738086 -7.49285e-07 0.0984463)
(0.749418 -4.65112e-07 0.108821)
(0.761757 -1.16997e-07 0.120202)
(0.775169 3.02791e-07 0.132717)
(0.789722 7.17933e-07 0.146506)
(0.805489 9.65628e-07 0.161731)
(0.822542 9.21014e-07 0.178578)
(0.840955 6.83687e-07 0.197262)
(0.860806 4.24547e-07 0.218034)
(0.882163 9.09141e-08 0.241192)
(0.905079 -3.32839e-07 0.267082)
(0.929584 -6.97349e-07 0.296103)
(0.955676 -8.24985e-07 0.328712)
(0.983307 -7.66759e-07 0.365431)
(1.01237 -5.83057e-07 0.406851)
(1.04269 -3.05054e-07 0.45365)
(1.07397 -2.50076e-09 0.506596)
(1.10577 2.36038e-07 0.566565)
(1.13743 4.24283e-07 0.634554)
(1.16797 6.25429e-07 0.711632)
(1.196 7.50865e-07 0.798882)
(1.21959 6.50077e-07 0.897312)
(1.23616 3.84725e-07 1.0077)
(1.24232 1.65019e-07 1.13037)
(1.23373 2.85332e-08 1.26482)
(1.20506 -4.78721e-08 1.40925)
(1.15004 -4.54603e-08 1.55981)
(1.06185 4.38228e-08 1.70971)
(0.934211 1.82721e-07 1.84812)
(0.762912 3.29807e-07 1.95913)
(0.550391 5.00171e-07 2.01978)
(0.314901 9.23016e-07 1.99676)
(0.110168 3.25699e-06 1.80035)
(-0.0279086 5.2186e-06 1.28515)
(-0.0175263 -2.55446e-06 1.10295)
(0.0954455 -1.77964e-06 0.925139)
(0.233173 2.69994e-07 0.774674)
(0.391697 8.57051e-07 0.651386)
(0.554841 1.37245e-06 0.550362)
(0.716036 9.89463e-07 0.467899)
(0.870518 8.36018e-07 0.400039)
(1.01578 8.69969e-07 0.342799)
(1.15082 5.82614e-07 0.292433)
(1.27577 6.11091e-08 0.245624)
(1.39152 -3.05883e-07 0.199643)
(1.49949 -3.67194e-07 0.152395)
(1.60123 -2.38753e-07 0.102479)
(1.69815 -8.3613e-08 0.0492724)
(1.7916 1.78094e-08 -0.00704454)
(1.88159 6.12537e-08 -0.0654274)
(1.96806 6.94692e-08 -0.124588)
(2.05095 6.07973e-08 -0.183341)
(2.12988 4.41173e-08 -0.240599)
(2.20437 2.41538e-08 -0.295363)
(2.27385 5.10778e-09 -0.34682)
(2.33783 -9.38979e-09 -0.394359)
(2.39589 -1.75629e-08 -0.43756)
(2.44775 -1.99646e-08 -0.476175)
(2.49323 -1.86771e-08 -0.510099)
(2.53229 -1.60146e-08 -0.539346)
(2.56497 -1.35514e-08 -0.564024)
(2.59143 -1.18145e-08 -0.584314)
(2.6119 -1.05457e-08 -0.600448)
(2.62664 -9.21379e-09 -0.612701)
(2.63597 -7.46865e-09 -0.62137)
(2.64026 -5.35122e-09 -0.626768)
(2.63987 -3.23696e-09 -0.629213)
(2.63517 -1.61206e-09 -0.629023)
(2.62653 -8.31613e-10 -0.626506)
(2.61434 -9.81295e-10 -0.62196)
(2.59896 -1.86289e-09 -0.615667)
(2.58071 -3.09102e-09 -0.607889)
(2.55994 -4.26385e-09 -0.59887)
(2.53695 -5.1003e-09 -0.588833)
(2.51202 -5.47967e-09 -0.577979)
(2.48542 -5.42802e-09 -0.56649)
(2.4574 -5.07328e-09 -0.554526)
(2.42816 -4.58385e-09 -0.542229)
(2.39793 -4.10802e-09 -0.529723)
(2.36686 -3.73998e-09 -0.517117)
(2.33514 -3.51099e-09 -0.504502)
(2.30289 -3.40221e-09 -0.491956)
(2.27026 -3.36527e-09 -0.479546)
(2.23735 -3.34382e-09 -0.467325)
(2.20427 -3.2873e-09 -0.455338)
(2.17111 -3.15932e-09 -0.443621)
(2.13793 -2.93938e-09 -0.432201)
(2.10481 -2.62088e-09 -0.421098)
(2.07181 -2.20832e-09 -0.410327)
(2.03897 -1.7135e-09 -0.399896)
(2.00634 -1.15267e-09 -0.389811)
(1.97396 -5.4529e-10 -0.380072)
(1.94185 8.83097e-11 -0.370676)
(1.91004 7.26353e-10 -0.361617)
(1.87856 1.34819e-09 -0.352888)
(1.84742 1.93584e-09 -0.344478)
(1.81665 2.47705e-09 -0.336376)
(1.78624 2.96854e-09 -0.328569)
(1.75621 3.419e-09 -0.321042)
(1.72658 3.85027e-09 -0.313782)
(1.69734 4.29405e-09 -0.306774)
(1.66851 4.78725e-09 -0.300001)
(1.64009 5.36346e-09 -0.293449)
(1.61208 6.04537e-09 -0.287103)
(1.58448 6.8385e-09 -0.280947)
(1.55731 7.72911e-09 -0.274967)
(1.53055 8.68464e-09 -0.269148)
(1.50422 9.65513e-09 -0.263477)
(1.47831 1.05732e-08 -0.257941)
(1.45282 1.13518e-08 -0.252527)
(1.42776 1.18801e-08 -0.247223)
(1.40313 1.20258e-08 -0.24202)
(1.37892 1.1643e-08 -0.236907)
(1.35514 1.05895e-08 -0.231874)
(1.33179 8.743e-09 -0.226913)
(1.30887 6.00684e-09 -0.222018)
(1.28638 2.30744e-09 -0.217181)
(1.26433 -2.40464e-09 -0.212396)
(1.2427 -8.1093e-09 -0.207659)
(1.22151 -1.45993e-08 -0.202965)
(1.20074 -2.13024e-08 -0.198312)
(1.18041 -2.71438e-08 -0.193696)
(1.16052 -3.06282e-08 -0.189115)
(1.14105 -3.03181e-08 -0.184569)
(1.12202 -2.57128e-08 -0.180056)
(1.10342 -1.82191e-08 -0.175578)
(1.08525 -1.15729e-08 -0.171134)
(1.06751 -1.10101e-08 -0.166725)
(1.05019 -2.09397e-08 -0.162354)
(1.03331 -4.18218e-08 -0.158023)
(1.01684 -6.79626e-08 -0.153735)
(1.00081 -8.82066e-08 -0.149492)
(0.985195 -9.0364e-08 -0.145299)
(0.970003 -6.78331e-08 -0.141159)
(0.955233 -2.45901e-08 -0.137077)
(0.940886 2.54247e-08 -0.133054)
(0.926962 6.52898e-08 -0.129092)
(0.913466 8.41793e-08 -0.12519)
(0.9004 8.10597e-08 -0.121341)
(0.887762 5.84459e-08 -0.117533)
(0.875545 1.98991e-08 -0.113752)
(0.863729 -1.86317e-08 -0.109989)
(0.852297 -6.05901e-08 -0.106249)
(0.841237 -1.47917e-07 -0.102538)
(0.830543 -1.90918e-07 -0.0988644)
(0.820206 -4.90927e-08 -0.0952333)
(0.810221 2.41999e-08 -0.0916512)
(0.800581 -7.59088e-08 -0.0881234)
(0.791284 5.26642e-08 -0.0846559)
(0.782323 2.29429e-07 -0.0812527)
(0.773694 1.58176e-07 -0.0779173)
(0.765391 3.87829e-08 -0.074653)
(0.75741 -5.26866e-08 -0.0714634)
(0.749748 -2.33929e-07 -0.0683518)
(0.742401 -3.86113e-07 -0.0653198)
(0.735367 -3.55831e-07 -0.062367)
(0.728644 -1.6014e-07 -0.0594916)
(0.722229 7.35689e-08 -0.0566892)
(0.716119 2.30623e-07 -0.053954)
(0.710307 2.69563e-07 -0.0512777)
(0.704781 2.17452e-07 -0.0486553)
(0.699533 1.19548e-07 -0.0460899)
(0.694561 -2.41948e-08 -0.0435769)
(0.689859 -1.85865e-07 -0.0411146)
(0.685424 -2.84022e-07 -0.0386988)
(0.681252 -2.66079e-07 -0.0363256)
(0.67734 -1.88222e-07 -0.0339906)
(0.673686 -5.96889e-08 -0.0316897)
(0.670288 9.70126e-08 -0.0294181)
(0.667144 1.98355e-07 -0.027171)
(0.664255 1.94199e-07 -0.0249427)
(0.661622 1.06375e-07 -0.0227272)
(0.659247 -5.95535e-09 -0.020517)
(0.657134 -8.88141e-08 -0.018304)
(0.655286 -1.1562e-07 -0.0160779)
(0.653707 -8.89808e-08 -0.0138281)
(0.652402 -3.39617e-08 -0.0115424)
(0.651372 1.2966e-08 -0.00920931)
(0.650623 2.92947e-08 -0.00682075)
(0.650161 5.01726e-08 -0.00436633)
(0.649996 1.40945e-07 -0.00183658)
(0.650141 2.47012e-07 0.000781756)
(0.65061 2.43448e-07 0.00350336)
(0.651416 8.06301e-08 0.00634514)
(0.652575 -1.2614e-07 0.00932598)
(0.654104 -1.57081e-07 0.0124658)
(0.65602 -1.00115e-07 0.0157861)
(0.658342 -8.95947e-08 0.0193095)
(0.661091 -5.64e-08 0.0230596)
(0.664292 2.69764e-08 0.0270637)
(0.667968 2.46008e-07 0.0313507)
(0.672148 4.19495e-07 0.0359544)
(0.676857 4.17518e-07 0.0409108)
(0.682126 3.71968e-07 0.0462554)
(0.687988 2.73222e-07 0.0520255)
(0.694479 6.19634e-08 0.058263)
(0.701645 -1.72702e-07 0.0650146)
(0.709535 -4.15831e-07 0.072338)
(0.718202 -7.10427e-07 0.0802983)
(0.727699 -8.83961e-07 0.0889726)
(0.738086 -7.49284e-07 0.0984457)
(0.749418 -4.65112e-07 0.10882)
(0.761756 -1.16997e-07 0.120201)
(0.775169 3.0279e-07 0.132716)
(0.789723 7.17933e-07 0.146505)
(0.805489 9.65627e-07 0.161731)
(0.822542 9.21014e-07 0.178578)
(0.840955 6.83686e-07 0.197262)
(0.860806 4.24547e-07 0.218034)
(0.882164 9.09141e-08 0.241192)
(0.90508 -3.32839e-07 0.267082)
(0.929585 -6.97348e-07 0.296103)
(0.955676 -8.24985e-07 0.328712)
(0.983308 -7.66759e-07 0.365431)
(1.01237 -5.83057e-07 0.406851)
(1.04269 -3.05054e-07 0.45365)
(1.07397 -2.50076e-09 0.506595)
(1.10577 2.36038e-07 0.566564)
(1.13743 4.24283e-07 0.634554)
(1.16797 6.25429e-07 0.711631)
(1.196 7.50865e-07 0.798881)
(1.21959 6.50077e-07 0.89731)
(1.23616 3.84725e-07 1.0077)
(1.24232 1.65019e-07 1.13036)
(1.23373 2.85332e-08 1.26482)
(1.20506 -4.78721e-08 1.40925)
(1.15004 -4.54603e-08 1.5598)
(1.06185 4.38228e-08 1.70971)
(0.934211 1.82721e-07 1.84811)
(0.762912 3.29808e-07 1.95913)
(0.550392 5.00171e-07 2.01978)
(0.314901 9.23017e-07 1.99675)
(0.110167 3.25701e-06 1.80033)
(-0.0832914 4.42362e-06 1.34004)
(-0.0355771 -3.29503e-06 1.01585)
(0.160544 -1.68635e-06 0.767316)
(0.370183 -5.27893e-07 0.587057)
(0.594249 7.35912e-07 0.454888)
(0.811719 1.54562e-06 0.356481)
(1.01622 9.30978e-07 0.282902)
(1.20373 6.26654e-07 0.227232)
(1.37322 5.70258e-07 0.183498)
(1.5254 2.71315e-07 0.146527)
(1.66207 -1.50943e-07 0.111993)
(1.78565 -3.82355e-07 0.0764724)
(1.89893 -3.51933e-07 0.0376012)
(2.0042 -1.90831e-07 -0.00574304)
(2.1032 -3.70814e-08 -0.0536297)
(2.19667 5.31673e-08 -0.105166)
(2.28562 8.60451e-08 -0.159091)
(2.37019 8.53627e-08 -0.213876)
(2.45011 6.8928e-08 -0.26801)
(2.52485 4.6206e-08 -0.320142)
(2.59379 2.28144e-08 -0.369193)
(2.65635 2.96459e-09 -0.414386)
(2.71207 -1.06157e-08 -0.455211)
(2.76066 -1.73543e-08 -0.491384)
(2.80198 -1.87179e-08 -0.522803)
(2.83604 -1.71679e-08 -0.549503)
(2.86297 -1.49252e-08 -0.571619)
(2.88302 -1.32223e-08 -0.589363)
(2.89649 -1.22253e-08 -0.602995)
(2.90377 -1.14468e-08 -0.612814)
(2.90527 -1.03027e-08 -0.619135)
(2.90144 -8.52607e-09 -0.622287)
(2.89272 -6.2928e-09 -0.6226)
(2.87957 -4.09312e-09 -0.620397)
(2.86244 -2.46361e-09 -0.615992)
(2.84176 -1.74449e-09 -0.609685)
(2.81794 -1.97604e-09 -0.601758)
(2.79137 -2.91895e-09 -0.592473)
(2.76242 -4.15661e-09 -0.582071)
(2.73143 -5.27972e-09 -0.57077)
(2.69871 -6.02964e-09 -0.558768)
(2.66455 -6.31691e-09 -0.546242)
(2.6292 -6.19133e-09 -0.533347)
(2.5929 -5.79154e-09 -0.520218)
(2.55586 -5.28528e-09 -0.506975)
(2.51827 -4.81578e-09 -0.493719)
(2.48028 -4.46802e-09 -0.480535)
(2.44204 -4.26449e-09 -0.467497)
(2.40368 -4.17799e-09 -0.454664)
(2.3653 -4.15483e-09 -0.442085)
(2.32701 -4.13496e-09 -0.4298)
(2.28887 -4.06703e-09 -0.41784)
(2.25096 -3.91461e-09 -0.406226)
(2.21334 -3.65816e-09 -0.394977)
(2.17605 -3.29303e-09 -0.384102)
(2.13914 -2.82581e-09 -0.373608)
(2.10264 -2.27077e-09 -0.363495)
(2.06657 -1.64671e-09 -0.353762)
(2.03096 -9.75835e-10 -0.344403)
(1.99583 -2.81445e-10 -0.33541)
(1.96117 4.12737e-10 -0.326774)
(1.92702 1.08462e-09 -0.318483)
(1.89337 1.71653e-09 -0.310523)
(1.86022 2.29844e-09 -0.30288)
(1.82758 2.83224e-09 -0.295539)
(1.79545 3.33311e-09 -0.288485)
(1.76383 3.82994e-09 -0.281701)
(1.73272 4.36077e-09 -0.275171)
(1.70211 4.96562e-09 -0.268879)
(1.67201 5.67803e-09 -0.262809)
(1.64241 6.51635e-09 -0.256944)
(1.6133 7.47894e-09 -0.25127)
(1.58469 8.54245e-09 -0.24577)
(1.55657 9.66278e-09 -0.240432)
(1.52894 1.07753e-08 -0.235241)
(1.5018 1.17929e-08 -0.230184)
(1.47513 1.2602e-08 -0.225248)
(1.44895 1.30625e-08 -0.220422)
(1.42324 1.30153e-08 -0.215695)
(1.39801 1.2299e-08 -0.211058)
(1.37325 1.07732e-08 -0.206501)
(1.34897 8.32916e-09 -0.202016)
(1.32515 4.88356e-09 -0.197595)
(1.3018 3.57937e-10 -0.193232)
(1.27892 -5.31589e-09 -0.188921)
(1.2565 -1.21073e-08 -0.184657)
(1.23455 -1.96882e-08 -0.180436)
(1.21306 -2.71724e-08 -0.176255)
(1.19203 -3.29803e-08 -0.172111)
(1.17147 -3.50926e-08 -0.168001)
(1.15136 -3.18904e-08 -0.163925)
(1.13172 -2.34544e-08 -0.159881)
(1.11253 -1.27259e-08 -0.15587)
(1.09379 -5.55236e-09 -0.151892)
(1.0755 -8.7933e-09 -0.147948)
(1.05767 -2.65691e-08 -0.14404)
(1.04029 -5.62164e-08 -0.14017)
(1.02335 -8.66751e-08 -0.13634)
(1.00685 -1.01754e-07 -0.132554)
(0.990799 -8.82712e-08 -0.128816)
(0.975184 -4.52785e-08 -0.12513)
(0.960006 1.2049e-08 -0.121502)
(0.945267 5.86395e-08 -0.117935)
(0.930968 7.39117e-08 -0.114433)
(0.917118 5.48016e-08 -0.110995)
(0.90372 1.55532e-08 -0.107611)
(0.890782 -3.33176e-08 -0.104266)
(0.878293 -9.78964e-08 -0.100928)
(0.866218 -1.55171e-07 -0.0975842)
(0.854532 -1.73191e-07 -0.0942498)
(0.843227 -2.63606e-07 -0.0909325)
(0.832295 -3.4266e-07 -0.087644)
(0.821731 -5.64868e-08 -0.0843915)
(0.811528 2.49107e-07 -0.0811839)
(0.80168 2.0843e-07 -0.0780251)
(0.792184 3.14413e-07 -0.0749206)
(0.783037 4.87613e-07 -0.0718744)
(0.774233 6.04669e-07 -0.0688911)
(0.765763 6.59319e-07 -0.0659747)
(0.757624 5.64064e-07 -0.0631282)
(0.749814 2.92962e-07 -0.0603555)
(0.742328 4.543e-08 -0.0576597)
(0.735164 -2.65177e-08 -0.0550413)
(0.728321 4.33091e-08 -0.0524987)
(0.721799 1.2569e-07 -0.0500258)
(0.715595 1.15093e-07 -0.0476146)
(0.709702 -1.12269e-08 -0.0452506)
(0.704098 -1.88411e-07 -0.0429266)
(0.698775 -3.14883e-07 -0.0406567)
(0.693732 -4.18545e-07 -0.0384332)
(0.688964 -5.5239e-07 -0.0362568)
(0.684467 -6.94107e-07 -0.0341226)
(0.680237 -7.44748e-07 -0.0320273)
(0.676269 -7.26697e-07 -0.0299668)
(0.672562 -5.70472e-07 -0.0279377)
(0.669112 -3.06572e-07 -0.0259361)
(0.665918 -7.47433e-08 -0.0239582)
(0.662979 2.90237e-08 -0.0219996)
(0.660296 1.39505e-08 -0.0200555)
(0.657873 -4.35254e-08 -0.0181199)
(0.655711 -6.46919e-08 -0.0161858)
(0.653818 -1.76586e-08 -0.014243)
(0.652197 7.38082e-08 -0.0122811)
(0.650853 1.56164e-07 -0.0102862)
(0.649785 1.76659e-07 -0.00824574)
(0.648995 1.04774e-07 -0.00615638)
(0.648492 7.18395e-09 -0.00400978)
(0.648285 6.50171e-08 -0.00180098)
(0.648389 2.69166e-07 0.000482718)
(0.64882 4.33296e-07 0.00285425)
(0.649592 3.11868e-07 0.00532911)
(0.650722 -7.15946e-08 0.00792571)
(0.652228 -2.16804e-07 0.0106621)
(0.654128 -9.70419e-08 0.0135595)
(0.656441 1.40978e-07 0.0166385)
(0.659192 3.00405e-07 0.0199196)
(0.662404 2.49652e-07 0.0234284)
(0.666108 3.37132e-07 0.0271883)
(0.670334 4.33806e-07 0.0312351)
(0.675109 4.27471e-07 0.0356063)
(0.680461 3.5963e-07 0.040333)
(0.686426 2.01962e-07 0.0454452)
(0.693046 -7.02225e-08 0.0509773)
(0.700376 -2.93079e-07 0.0569683)
(0.708473 -4.25523e-07 0.0634736)
(0.7174 -6.27229e-07 0.0705538)
(0.727218 -7.73504e-07 0.078285)
(0.738001 -6.04182e-07 0.0867462)
(0.749813 -3.15826e-07 0.0960422)
(0.762729 3.45264e-09 0.106265)
(0.776837 3.31434e-07 0.117542)
(0.792224 6.61919e-07 0.130007)
(0.808986 8.95417e-07 0.143818)
(0.827227 8.79165e-07 0.159154)
(0.847058 6.45919e-07 0.176227)
(0.868606 3.96254e-07 0.19528)
(0.892002 8.03323e-08 0.216626)
(0.917363 -3.95217e-07 0.240624)
(0.944797 -9.14577e-07 0.267697)
(0.974389 -1.17957e-06 0.298337)
(1.0062 -1.17018e-06 0.333113)
(1.04024 -8.63527e-07 0.372679)
(1.07647 -3.38487e-07 0.417799)
(1.11478 2.20573e-07 0.469363)
(1.15495 5.97578e-07 0.528432)
(1.19657 7.8917e-07 0.596302)
(1.23888 1.035e-06 0.674436)
(1.2807 1.34592e-06 0.764451)
(1.32026 1.43968e-06 0.868041)
(1.35501 1.19823e-06 0.986867)
(1.38136 8.51551e-07 1.12234)
(1.39439 5.23916e-07 1.27524)
(1.38753 2.43749e-07 1.44515)
(1.35234 6.47015e-08 1.62945)
(1.27845 2.26606e-08 1.82192)
(1.15438 9.01422e-08 2.01057)
(0.96861 2.14999e-07 2.17506)
(0.716418 3.90156e-07 2.28106)
(0.414069 7.97088e-07 2.2736)
(0.134902 2.8786e-06 2.00547)
(-0.0832789 4.42298e-06 1.33998)
(-0.0355945 -3.29123e-06 1.01581)
(0.160532 -1.6847e-06 0.76732)
(0.370171 -5.27702e-07 0.587063)
(0.594243 7.35861e-07 0.454893)
(0.811717 1.54562e-06 0.356486)
(1.01621 9.30986e-07 0.282904)
(1.20373 6.26657e-07 0.227233)
(1.37322 5.7026e-07 0.183497)
(1.5254 2.71315e-07 0.146526)
(1.66207 -1.50943e-07 0.111992)
(1.78565 -3.82355e-07 0.0764716)
(1.89893 -3.51933e-07 0.0376009)
(2.0042 -1.90831e-07 -0.00574298)
(2.1032 -3.70814e-08 -0.0536294)
(2.19667 5.31673e-08 -0.105166)
(2.28562 8.60451e-08 -0.15909)
(2.37019 8.53627e-08 -0.213875)
(2.45011 6.8928e-08 -0.26801)
(2.52485 4.6206e-08 -0.320142)
(2.59379 2.28144e-08 -0.369194)
(2.65635 2.96459e-09 -0.414386)
(2.71207 -1.06157e-08 -0.455211)
(2.76066 -1.73543e-08 -0.491384)
(2.80198 -1.87179e-08 -0.522804)
(2.83604 -1.71679e-08 -0.549503)
(2.86297 -1.49252e-08 -0.57162)
(2.88302 -1.32223e-08 -0.589363)
(2.89649 -1.22253e-08 -0.602996)
(2.90377 -1.14468e-08 -0.612814)
(2.90527 -1.03027e-08 -0.619135)
(2.90144 -8.52607e-09 -0.622288)
(2.89272 -6.2928e-09 -0.6226)
(2.87957 -4.09312e-09 -0.620397)
(2.86244 -2.46361e-09 -0.615992)
(2.84176 -1.74449e-09 -0.609685)
(2.81794 -1.97604e-09 -0.601758)
(2.79137 -2.91895e-09 -0.592473)
(2.76242 -4.15661e-09 -0.582071)
(2.73143 -5.27972e-09 -0.57077)
(2.69871 -6.02964e-09 -0.558769)
(2.66455 -6.31691e-09 -0.546242)
(2.6292 -6.19133e-09 -0.533347)
(2.5929 -5.79154e-09 -0.520219)
(2.55586 -5.28528e-09 -0.506975)
(2.51827 -4.81578e-09 -0.493719)
(2.48028 -4.46802e-09 -0.480535)
(2.44204 -4.26449e-09 -0.467497)
(2.40368 -4.17798e-09 -0.454664)
(2.3653 -4.15483e-09 -0.442085)
(2.32701 -4.13496e-09 -0.4298)
(2.28887 -4.06703e-09 -0.41784)
(2.25096 -3.91461e-09 -0.406226)
(2.21334 -3.65816e-09 -0.394977)
(2.17605 -3.29303e-09 -0.384102)
(2.13914 -2.82581e-09 -0.373608)
(2.10264 -2.27076e-09 -0.363495)
(2.06657 -1.64671e-09 -0.353762)
(2.03096 -9.75834e-10 -0.344403)
(1.99583 -2.81445e-10 -0.33541)
(1.96117 4.12736e-10 -0.326774)
(1.92702 1.08462e-09 -0.318483)
(1.89337 1.71653e-09 -0.310523)
(1.86022 2.29844e-09 -0.30288)
(1.82758 2.83224e-09 -0.295539)
(1.79545 3.33311e-09 -0.288485)
(1.76383 3.82994e-09 -0.281701)
(1.73272 4.36077e-09 -0.275171)
(1.70211 4.96562e-09 -0.268879)
(1.67201 5.67802e-09 -0.262809)
(1.64241 6.51634e-09 -0.256944)
(1.6133 7.47894e-09 -0.25127)
(1.58469 8.54245e-09 -0.24577)
(1.55657 9.66277e-09 -0.240432)
(1.52894 1.07753e-08 -0.235241)
(1.5018 1.17929e-08 -0.230184)
(1.47513 1.2602e-08 -0.225248)
(1.44895 1.30625e-08 -0.220422)
(1.42324 1.30153e-08 -0.215695)
(1.39801 1.2299e-08 -0.211058)
(1.37325 1.07731e-08 -0.206501)
(1.34897 8.32916e-09 -0.202016)
(1.32515 4.88356e-09 -0.197595)
(1.3018 3.57937e-10 -0.193232)
(1.27892 -5.31588e-09 -0.188921)
(1.2565 -1.21073e-08 -0.184657)
(1.23455 -1.96882e-08 -0.180436)
(1.21306 -2.71724e-08 -0.176255)
(1.19203 -3.29803e-08 -0.17211)
(1.17147 -3.50926e-08 -0.168001)
(1.15136 -3.18904e-08 -0.163925)
(1.13172 -2.34544e-08 -0.159881)
(1.11253 -1.27259e-08 -0.15587)
(1.09379 -5.55236e-09 -0.151892)
(1.0755 -8.7933e-09 -0.147948)
(1.05767 -2.65691e-08 -0.14404)
(1.04029 -5.62164e-08 -0.14017)
(1.02335 -8.66751e-08 -0.13634)
(1.00685 -1.01754e-07 -0.132554)
(0.990799 -8.82713e-08 -0.128816)
(0.975184 -4.52785e-08 -0.12513)
(0.960006 1.2049e-08 -0.121502)
(0.945267 5.86395e-08 -0.117935)
(0.930968 7.39117e-08 -0.114433)
(0.917117 5.48016e-08 -0.110995)
(0.90372 1.55532e-08 -0.107611)
(0.890782 -3.33176e-08 -0.104266)
(0.878293 -9.78964e-08 -0.100928)
(0.866218 -1.55171e-07 -0.0975842)
(0.854532 -1.73191e-07 -0.0942494)
(0.843227 -2.63606e-07 -0.0909319)
(0.832295 -3.42659e-07 -0.0876439)
(0.821731 -5.64867e-08 -0.0843921)
(0.811528 2.49107e-07 -0.0811846)
(0.801681 2.0843e-07 -0.0780255)
(0.792185 3.14413e-07 -0.0749208)
(0.783037 4.87612e-07 -0.0718749)
(0.774232 6.04669e-07 -0.068892)
(0.765762 6.59319e-07 -0.0659754)
(0.757624 5.64063e-07 -0.0631286)
(0.749814 2.92962e-07 -0.0603558)
(0.742328 4.543e-08 -0.0576599)
(0.735163 -2.65176e-08 -0.0550414)
(0.728321 4.33091e-08 -0.0524988)
(0.721798 1.2569e-07 -0.0500259)
(0.715595 1.15093e-07 -0.0476147)
(0.709702 -1.12269e-08 -0.0452507)
(0.704098 -1.8841e-07 -0.0429268)
(0.698775 -3.14882e-07 -0.0406567)
(0.693732 -4.18544e-07 -0.0384331)
(0.688963 -5.52389e-07 -0.0362567)
(0.684467 -6.94105e-07 -0.0341225)
(0.680237 -7.44747e-07 -0.0320272)
(0.676269 -7.26695e-07 -0.0299668)
(0.672562 -5.70471e-07 -0.0279377)
(0.669112 -3.06572e-07 -0.0259361)
(0.665918 -7.47432e-08 -0.0239581)
(0.662979 2.90236e-08 -0.0219996)
(0.660296 1.39504e-08 -0.0200555)
(0.657872 -4.35253e-08 -0.0181199)
(0.655711 -6.46917e-08 -0.0161858)
(0.653817 -1.76585e-08 -0.0142431)
(0.652196 7.38081e-08 -0.0122812)
(0.650852 1.56164e-07 -0.0102864)
(0.649784 1.76658e-07 -0.00824587)
(0.648995 1.04773e-07 -0.00615651)
(0.648492 7.18393e-09 -0.00400988)
(0.648285 6.5017e-08 -0.00180105)
(0.648389 2.69165e-07 0.000482511)
(0.648819 4.33295e-07 0.00285362)
(0.649591 3.11867e-07 0.00532805)
(0.650722 -7.15944e-08 0.0079243)
(0.652228 -2.16803e-07 0.0106609)
(0.654128 -9.70417e-08 0.0135585)
(0.656441 1.40978e-07 0.0166378)
(0.659191 3.00404e-07 0.0199191)
(0.662404 2.49651e-07 0.0234277)
(0.666108 3.37131e-07 0.0271879)
(0.670335 4.33805e-07 0.031235)
(0.67511 4.2747e-07 0.0356065)
(0.680462 3.59629e-07 0.0403331)
(0.686426 2.01961e-07 0.045445)
(0.693046 -7.02223e-08 0.0509767)
(0.700376 -2.93079e-07 0.0569673)
(0.708473 -4.25522e-07 0.0634725)
(0.7174 -6.27228e-07 0.070553)
(0.727218 -7.73502e-07 0.0782845)
(0.738001 -6.04181e-07 0.0867458)
(0.749813 -3.15825e-07 0.0960417)
(0.762729 3.45264e-09 0.106264)
(0.776837 3.31433e-07 0.117542)
(0.792224 6.61918e-07 0.130007)
(0.808986 8.95416e-07 0.143818)
(0.827227 8.79164e-07 0.159154)
(0.847058 6.45918e-07 0.176227)
(0.868606 3.96254e-07 0.19528)
(0.892003 8.03322e-08 0.216625)
(0.917364 -3.95216e-07 0.240623)
(0.944798 -9.14576e-07 0.267697)
(0.97439 -1.17957e-06 0.298337)
(1.0062 -1.17018e-06 0.333112)
(1.04024 -8.63527e-07 0.372678)
(1.07647 -3.38487e-07 0.417798)
(1.11478 2.20573e-07 0.469363)
(1.15495 5.97578e-07 0.528431)
(1.19657 7.8917e-07 0.596301)
(1.23888 1.035e-06 0.674435)
(1.2807 1.34592e-06 0.76445)
(1.32026 1.43968e-06 0.86804)
(1.35501 1.19823e-06 0.986866)
(1.38136 8.51551e-07 1.12234)
(1.39439 5.23916e-07 1.27524)
(1.38753 2.4375e-07 1.44515)
(1.35234 6.47016e-08 1.62945)
(1.27845 2.26606e-08 1.82192)
(1.15438 9.01422e-08 2.01057)
(0.96861 2.14999e-07 2.17506)
(0.716418 3.90156e-07 2.28106)
(0.414069 7.97089e-07 2.2736)
(0.134901 2.87861e-06 2.00546)
(-0.143241 7.16287e-06 1.38714)
(-0.00803458 -3.22051e-07 0.803427)
(0.363778 -1.74096e-06 0.503253)
(0.688827 1.13212e-06 0.313896)
(0.998639 3.4407e-06 0.18593)
(1.27455 2.99021e-06 0.102415)
(1.51482 1.47159e-06 0.0511957)
(1.72177 7.22821e-07 0.0205921)
(1.89958 3.93813e-07 0.00126891)
(2.05288 1.35443e-08 -0.0138488)
(2.18632 -3.18287e-07 -0.0299908)
(2.3043 -4.15863e-07 -0.0507863)
(2.41048 -3.02945e-07 -0.0782019)
(2.50811 -1.2217e-07 -0.112786)
(2.59959 1.81698e-08 -0.153729)
(2.68604 8.89787e-08 -0.1996)
(2.76799 1.06656e-07 -0.2485)
(2.84519 9.52673e-08 -0.298106)
(2.91688 7.14322e-08 -0.346488)
(2.98219 4.42794e-08 -0.392148)
(3.04035 1.93183e-08 -0.434051)
(3.09077 9.88578e-11 -0.471563)
(3.13312 -1.17961e-08 -0.504368)
(3.16727 -1.69335e-08 -0.532376)
(3.1933 -1.74784e-08 -0.555663)
(3.21144 -1.60283e-08 -0.574413)
(3.22204 -1.4529e-08 -0.58888)
(3.22554 -1.37727e-08 -0.599364)
(3.22244 -1.35499e-08 -0.606192)
(3.21326 -1.31842e-08 -0.609701)
(3.19856 -1.21009e-08 -0.610233)
(3.17888 -1.01669e-08 -0.608123)
(3.15475 -7.72584e-09 -0.603698)
(3.12672 -5.38885e-09 -0.597269)
(3.09526 -3.73623e-09 -0.589132)
(3.06086 -3.07159e-09 -0.579561)
(3.02395 -3.37571e-09 -0.56881)
(2.98493 -4.36215e-09 -0.55711)
(2.94417 -5.58254e-09 -0.54467)
(2.90202 -6.62377e-09 -0.531677)
(2.85877 -7.25307e-09 -0.518297)
(2.81469 -7.41743e-09 -0.504674)
(2.77002 -7.19311e-09 -0.490934)
(2.72497 -6.73114e-09 -0.477184)
(2.67974 -6.19833e-09 -0.463518)
(2.63446 -5.73051e-09 -0.450011)
(2.58929 -5.40268e-09 -0.436728)
(2.54434 -5.22653e-09 -0.42372)
(2.49971 -5.16609e-09 -0.411029)
(2.45549 -5.16026e-09 -0.398688)
(2.41173 -5.14528e-09 -0.38672)
(2.36849 -5.06758e-09 -0.375144)
(2.32583 -4.89035e-09 -0.36397)
(2.28377 -4.59478e-09 -0.353206)
(2.24234 -4.17796e-09 -0.342853)
(2.20156 -3.64846e-09 -0.332908)
(2.16144 -3.02312e-09 -0.323368)
(2.122 -2.32355e-09 -0.314223)
(2.08324 -1.57455e-09 -0.305465)
(2.04515 -8.0321e-10 -0.297081)
(2.00774 -3.43827e-11 -0.289057)
(1.971 7.08368e-10 -0.28138)
(1.93492 1.40812e-09 -0.274033)
(1.8995 2.05803e-09 -0.267002)
(1.86472 2.66576e-09 -0.260268)
(1.83059 3.25339e-09 -0.253816)
(1.79708 3.85692e-09 -0.247629)
(1.76418 4.51975e-09 -0.241689)
(1.7319 5.28421e-09 -0.235981)
(1.70021 6.18219e-09 -0.230488)
(1.66911 7.22659e-09 -0.225194)
(1.63858 8.40743e-09 -0.220084)
(1.60863 9.69015e-09 -0.215143)
(1.57923 1.10165e-08 -0.210356)
(1.55039 1.23021e-08 -0.205711)
(1.52209 1.34327e-08 -0.201195)
(1.49433 1.42631e-08 -0.196796)
(1.4671 1.46196e-08 -0.192501)
(1.4404 1.43182e-08 -0.188302)
(1.41422 1.31915e-08 -0.184189)
(1.38855 1.11103e-08 -0.180152)
(1.36339 7.98404e-09 -0.176184)
(1.33875 3.73001e-09 -0.172278)
(1.3146 -1.76152e-09 -0.168427)
(1.29096 -8.59782e-09 -0.164626)
(1.26782 -1.67181e-08 -0.16087)
(1.24517 -2.55719e-08 -0.157154)
(1.22301 -3.37761e-08 -0.153477)
(1.20134 -3.90482e-08 -0.149834)
(1.18016 -3.87844e-08 -0.146223)
(1.15947 -3.14316e-08 -0.142645)
(1.13926 -1.82829e-08 -0.139096)
(1.11953 -4.65731e-09 -0.135578)
(1.10027 8.89229e-10 -0.132091)
(1.08149 -9.87436e-09 -0.128635)
(1.06319 -3.93137e-08 -0.125212)
(1.04535 -7.92727e-08 -0.121824)
(1.02797 -1.1128e-07 -0.118473)
(1.01106 -1.14189e-07 -0.115162)
(0.994604 -7.73922e-08 -0.111896)
(0.978602 -1.20747e-08 -0.108681)
(0.96305 4.94699e-08 -0.105522)
(0.947948 7.10718e-08 -0.102427)
(0.9333 3.76733e-08 -0.0994029)
(0.919118 -3.10473e-08 -0.096452)
(0.905413 -9.27796e-08 -0.0935625)
(0.892207 -1.28577e-07 -0.0907147)
(0.879489 -1.82024e-07 -0.0878427)
(0.86719 -2.49253e-07 -0.0849245)
(0.855276 -1.93562e-07 -0.0820013)
(0.843746 -2.47375e-07 -0.0790842)
(0.832596 -4.98686e-07 -0.0761886)
(0.821822 -1.88591e-07 -0.073323)
(0.811418 3.51922e-07 -0.0705017)
(0.80138 2.62908e-07 -0.0677242)
(0.791704 9.9485e-08 -0.0649937)
(0.782388 -1.9648e-08 -0.0623151)
(0.773423 2.50729e-07 -0.0596941)
(0.764804 6.51308e-07 -0.0571351)
(0.756525 7.23636e-07 -0.0546406)
(0.748582 5.30501e-07 -0.0522155)
(0.740969 3.54439e-07 -0.0498646)
(0.733687 2.83073e-07 -0.0475903)
(0.726735 2.23209e-07 -0.0453928)
(0.720116 7.96526e-08 -0.0432638)
(0.713836 -1.50195e-07 -0.041193)
(0.707886 -3.95801e-07 -0.0391499)
(0.70222 -5.56385e-07 -0.037123)
(0.696831 -4.86699e-07 -0.035153)
(0.69173 -2.7361e-07 -0.0332227)
(0.686905 -1.23202e-07 -0.0313367)
(0.682357 -1.79491e-07 -0.029488)
(0.678078 -3.46543e-07 -0.0276737)
(0.674065 -5.81108e-07 -0.0258901)
(0.670313 -6.23627e-07 -0.0241343)
(0.666819 -4.52778e-07 -0.0224036)
(0.66358 -2.42803e-07 -0.0206951)
(0.660596 -1.23864e-07 -0.0190059)
(0.657867 -9.57554e-08 -0.0173328)
(0.655394 -7.61857e-08 -0.0156718)
(0.653184 6.67789e-09 -0.0140178)
(0.651242 1.41392e-07 -0.0123612)
(0.649577 2.38665e-07 -0.0106905)
(0.648195 2.19308e-07 -0.00898931)
(0.647087 8.56242e-08 -0.00723844)
(0.646253 -1.4354e-07 -0.0054455)
(0.645699 -4.17367e-07 -0.00360375)
(0.645438 -4.65627e-07 -0.00171605)
(0.645489 -2.22923e-07 0.000232028)
(0.645865 1.75672e-07 0.00225071)
(0.646587 3.12474e-07 0.00435449)
(0.64767 -1.27181e-07 0.00656201)
(0.649132 -3.76419e-07 0.00888896)
(0.650995 -2.50228e-07 0.0113569)
(0.653274 2.40503e-07 0.0139842)
(0.655995 5.84534e-07 0.0167879)
(0.659184 2.71656e-07 0.0197912)
(0.662875 3.12579e-08 0.0230075)
(0.667112 -7.08437e-08 0.0264768)
(0.671913 -3.72762e-08 0.0302457)
(0.677299 -1.65545e-09 0.0343387)
(0.683308 -7.87489e-08 0.0387738)
(0.689987 -2.63408e-07 0.0435738)
(0.697403 -2.84102e-07 0.0487663)
(0.705625 -3.31072e-08 0.0544058)
(0.714722 1.07586e-07 0.0605483)
(0.724764 6.06251e-08 0.06727)
(0.735836 9.65344e-08 0.0746386)
(0.748009 5.26485e-08 0.0827698)
(0.761366 -3.55982e-08 0.0917248)
(0.776025 -2.19515e-07 0.101636)
(0.792085 -3.33059e-07 0.112624)
(0.809667 -2.41303e-07 0.124842)
(0.8289 -6.17599e-08 0.13845)
(0.849929 8.6082e-08 0.153651)
(0.872939 2.64041e-07 0.17066)
(0.898131 3.94302e-07 0.189799)
(0.92569 2.69757e-07 0.211431)
(0.955807 -1.41256e-07 0.23599)
(0.988668 -5.00092e-07 0.263985)
(1.02445 -6.97325e-07 0.296014)
(1.0633 -5.43092e-07 0.332767)
(1.10535 -1.16398e-07 0.375062)
(1.15069 3.34594e-07 0.423852)
(1.19945 4.86177e-07 0.48032)
(1.25157 2.73609e-07 0.546058)
(1.30666 2.23579e-07 0.622915)
(1.36399 6.47624e-07 0.713055)
(1.42221 1.13634e-06 0.818928)
(1.47917 1.25703e-06 0.943237)
(1.53158 1.10435e-06 1.0888)
(1.57445 8.37677e-07 1.25829)
(1.60058 5.32754e-07 1.45362)
(1.59974 2.7506e-07 1.675)
(1.55782 1.33163e-07 1.91915)
(1.4567 1.11974e-07 2.17616)
(1.2729 1.77861e-07 2.4251)
(0.985636 3.22028e-07 2.62219)
(0.588299 6.87825e-07 2.68223)
(0.182983 2.47524e-06 2.38711)
(-0.143239 7.16154e-06 1.38709)
(-0.00803645 -3.21697e-07 0.803416)
(0.363749 -1.73946e-06 0.503263)
(0.688804 1.13175e-06 0.313896)
(0.998626 3.44047e-06 0.185932)
(1.27454 2.99021e-06 0.102417)
(1.51482 1.4716e-06 0.0511961)
(1.72177 7.22825e-07 0.0205912)
(1.89958 3.93814e-07 0.00126724)
(2.05288 1.35443e-08 -0.0138507)
(2.18632 -3.18288e-07 -0.0299924)
(2.3043 -4.15864e-07 -0.0507872)
(2.41048 -3.02945e-07 -0.0782022)
(2.50811 -1.2217e-07 -0.112786)
(2.59959 1.81698e-08 -0.153729)
(2.68604 8.89787e-08 -0.199599)
(2.76799 1.06656e-07 -0.248499)
(2.84519 9.52673e-08 -0.298106)
(2.91688 7.14322e-08 -0.346488)
(2.98219 4.42794e-08 -0.392148)
(3.04035 1.93183e-08 -0.434051)
(3.09077 9.88578e-11 -0.471564)
(3.13311 -1.17961e-08 -0.504368)
(3.16727 -1.69335e-08 -0.532376)
(3.1933 -1.74784e-08 -0.555663)
(3.21144 -1.60283e-08 -0.574413)
(3.22204 -1.4529e-08 -0.58888)
(3.22554 -1.37727e-08 -0.599364)
(3.22244 -1.35499e-08 -0.606192)
(3.21326 -1.31842e-08 -0.609702)
(3.19856 -1.21009e-08 -0.610233)
(3.17888 -1.01669e-08 -0.608123)
(3.15475 -7.72584e-09 -0.603698)
(3.12672 -5.38885e-09 -0.597269)
(3.09526 -3.73623e-09 -0.589132)
(3.06086 -3.07159e-09 -0.579561)
(3.02395 -3.37571e-09 -0.56881)
(2.98493 -4.36215e-09 -0.55711)
(2.94417 -5.58254e-09 -0.54467)
(2.90202 -6.62377e-09 -0.531677)
(2.85877 -7.25307e-09 -0.518297)
(2.81469 -7.41742e-09 -0.504674)
(2.77002 -7.19311e-09 -0.490934)
(2.72497 -6.73114e-09 -0.477184)
(2.67974 -6.19833e-09 -0.463518)
(2.63446 -5.73051e-09 -0.450011)
(2.58929 -5.40267e-09 -0.436728)
(2.54434 -5.22653e-09 -0.42372)
(2.49971 -5.16609e-09 -0.411029)
(2.45549 -5.16025e-09 -0.398688)
(2.41173 -5.14527e-09 -0.38672)
(2.36849 -5.06758e-09 -0.375144)
(2.32583 -4.89035e-09 -0.36397)
(2.28376 -4.59478e-09 -0.353206)
(2.24234 -4.17795e-09 -0.342853)
(2.20156 -3.64846e-09 -0.332908)
(2.16144 -3.02311e-09 -0.323368)
(2.122 -2.32354e-09 -0.314223)
(2.08324 -1.57455e-09 -0.305465)
(2.04515 -8.03209e-10 -0.297081)
(2.00774 -3.43827e-11 -0.289057)
(1.971 7.08368e-10 -0.28138)
(1.93492 1.40812e-09 -0.274033)
(1.8995 2.05803e-09 -0.267002)
(1.86472 2.66575e-09 -0.260268)
(1.83058 3.25339e-09 -0.253816)
(1.79708 3.85692e-09 -0.247629)
(1.76418 4.51975e-09 -0.241689)
(1.7319 5.2842e-09 -0.235981)
(1.70021 6.18219e-09 -0.230488)
(1.66911 7.22658e-09 -0.225194)
(1.63858 8.40742e-09 -0.220084)
(1.60863 9.69015e-09 -0.215143)
(1.57923 1.10165e-08 -0.210356)
(1.55039 1.23021e-08 -0.205711)
(1.52209 1.34327e-08 -0.201195)
(1.49433 1.42631e-08 -0.196796)
(1.4671 1.46196e-08 -0.192501)
(1.4404 1.43182e-08 -0.188302)
(1.41422 1.31915e-08 -0.184189)
(1.38855 1.11103e-08 -0.180152)
(1.36339 7.98404e-09 -0.176184)
(1.33875 3.73001e-09 -0.172278)
(1.3146 -1.76152e-09 -0.168427)
(1.29096 -8.59782e-09 -0.164626)
(1.26782 -1.67181e-08 -0.16087)
(1.24517 -2.55719e-08 -0.157154)
(1.22301 -3.37761e-08 -0.153476)
(1.20134 -3.90482e-08 -0.149834)
(1.18016 -3.87844e-08 -0.146223)
(1.15947 -3.14316e-08 -0.142645)
(1.13926 -1.82829e-08 -0.139096)
(1.11953 -4.65731e-09 -0.135578)
(1.10027 8.89229e-10 -0.132091)
(1.08149 -9.87436e-09 -0.128635)
(1.06319 -3.93137e-08 -0.125212)
(1.04535 -7.92727e-08 -0.121824)
(1.02797 -1.1128e-07 -0.118473)
(1.01106 -1.14189e-07 -0.115162)
(0.994604 -7.73922e-08 -0.111896)
(0.978602 -1.20747e-08 -0.108681)
(0.96305 4.94699e-08 -0.105522)
(0.947948 7.10718e-08 -0.102428)
(0.9333 3.76733e-08 -0.0994034)
(0.919117 -3.10473e-08 -0.0964527)
(0.905413 -9.27795e-08 -0.093563)
(0.892207 -1.28577e-07 -0.0907149)
(0.87949 -1.82024e-07 -0.0878426)
(0.867191 -2.49253e-07 -0.0849244)
(0.855276 -1.93562e-07 -0.0820007)
(0.843746 -2.47375e-07 -0.079083)
(0.832595 -4.98686e-07 -0.0761879)
(0.821822 -1.88591e-07 -0.0733241)
(0.811418 3.51921e-07 -0.0705034)
(0.801381 2.62908e-07 -0.0677252)
(0.791704 9.94847e-08 -0.0649944)
(0.782387 -1.96479e-08 -0.0623164)
(0.773422 2.50728e-07 -0.0596958)
(0.764804 6.51307e-07 -0.0571361)
(0.756526 7.23635e-07 -0.0546412)
(0.748582 5.305e-07 -0.052216)
(0.740969 3.54438e-07 -0.049865)
(0.733686 2.83073e-07 -0.0475906)
(0.726734 2.23209e-07 -0.0453929)
(0.720116 7.96525e-08 -0.043264)
(0.713835 -1.50195e-07 -0.0411931)
(0.707886 -3.95799e-07 -0.0391499)
(0.70222 -5.56383e-07 -0.037123)
(0.696831 -4.86697e-07 -0.0351527)
(0.691729 -2.73608e-07 -0.0332223)
(0.686905 -1.23201e-07 -0.0313364)
(0.682356 -1.7949e-07 -0.0294878)
(0.678078 -3.46541e-07 -0.0276735)
(0.674065 -5.81105e-07 -0.02589)
(0.670313 -6.23623e-07 -0.0241343)
(0.666819 -4.52776e-07 -0.0224036)
(0.663581 -2.42801e-07 -0.020695)
(0.660596 -1.23864e-07 -0.0190058)
(0.657867 -9.57548e-08 -0.0173328)
(0.655394 -7.61852e-08 -0.0156718)
(0.653184 6.67785e-09 -0.0140179)
(0.651242 1.41391e-07 -0.0123613)
(0.649576 2.38663e-07 -0.0106906)
(0.648195 2.19307e-07 -0.00898929)
(0.647087 8.56238e-08 -0.00723833)
(0.646253 -1.43539e-07 -0.00544544)
(0.645699 -4.17365e-07 -0.00360386)
(0.645437 -4.65625e-07 -0.00171629)
(0.645487 -2.22922e-07 0.00023165)
(0.645864 1.75671e-07 0.00224977)
(0.646586 3.12472e-07 0.00435306)
(0.64767 -1.27181e-07 0.00656018)
(0.649133 -3.76417e-07 0.00888699)
(0.650995 -2.50226e-07 0.0113551)
(0.653274 2.40502e-07 0.0139831)
(0.655995 5.84529e-07 0.0167873)
(0.659184 2.71654e-07 0.0197905)
(0.662876 3.12576e-08 0.0230069)
(0.667113 -7.08432e-08 0.0264765)
(0.671913 -3.7276e-08 0.0302456)
(0.677299 -1.65545e-09 0.0343382)
(0.683308 -7.87485e-08 0.0387728)
(0.689987 -2.63406e-07 0.0435727)
(0.697403 -2.84099e-07 0.0487647)
(0.705626 -3.3107e-08 0.0544042)
(0.714723 1.07586e-07 0.0605474)
(0.724764 6.06248e-08 0.0672697)
(0.735836 9.6534e-08 0.0746386)
(0.748009 5.26484e-08 0.0827698)
(0.761367 -3.55981e-08 0.091725)
(0.776025 -2.19514e-07 0.101636)
(0.792086 -3.33058e-07 0.112625)
(0.809667 -2.41302e-07 0.124842)
(0.8289 -6.17597e-08 0.13845)
(0.849929 8.60818e-08 0.153651)
(0.872938 2.6404e-07 0.170659)
(0.898131 3.94301e-07 0.189798)
(0.92569 2.69757e-07 0.211429)
(0.955808 -1.41256e-07 0.235988)
(0.988669 -5.00091e-07 0.263984)
(1.02445 -6.97323e-07 0.296012)
(1.0633 -5.43092e-07 0.332766)
(1.10535 -1.16398e-07 0.375061)
(1.15069 3.34594e-07 0.423851)
(1.19945 4.86176e-07 0.48032)
(1.25157 2.73609e-07 0.546057)
(1.30666 2.23579e-07 0.622915)
(1.36399 6.47625e-07 0.713055)
(1.42221 1.13634e-06 0.818928)
(1.47917 1.25703e-06 0.943236)
(1.53158 1.10435e-06 1.0888)
(1.57445 8.37678e-07 1.25829)
(1.60058 5.32754e-07 1.45362)
(1.59974 2.7506e-07 1.675)
(1.55783 1.33163e-07 1.91914)
(1.45671 1.11974e-07 2.17616)
(1.2729 1.77861e-07 2.4251)
(0.985637 3.22029e-07 2.62218)
(0.588299 6.87826e-07 2.68222)
(0.182983 2.47525e-06 2.3871)
(0.096922 -1.82419e-07 1.75293)
(0.443947 7.13929e-07 0.417431)
(1.09804 3.91906e-06 0.0325124)
(1.53002 4.09788e-06 -0.0919072)
(1.87687 4.04511e-06 -0.151112)
(2.14832 2.23985e-06 -0.172605)
(2.36147 7.78311e-07 -0.174268)
(2.53078 2.79123e-07 -0.16709)
(2.66803 3.9101e-08 -0.157523)
(2.78217 -2.45941e-07 -0.150443)
(2.88013 -4.24742e-07 -0.149721)
(2.96731 -3.90462e-07 -0.158005)
(3.04782 -2.19606e-07 -0.176503)
(3.12463 -4.09885e-08 -0.204947)
(3.19898 7.32689e-08 -0.241156)
(3.27051 1.18487e-07 -0.282657)
(3.33851 1.18468e-07 -0.32688)
(3.40173 9.61769e-08 -0.370819)
(3.45856 6.64035e-08 -0.412395)
(3.50775 3.70698e-08 -0.450234)
(3.54842 1.27359e-08 -0.483568)
(3.5801 -4.26173e-09 -0.512076)
(3.60268 -1.36536e-08 -0.535732)
(3.6163 -1.70273e-08 -0.554695)
(3.62132 -1.69842e-08 -0.56923)
(3.61825 -1.59873e-08 -0.579663)
(3.60767 -1.55084e-08 -0.586346)
(3.59021 -1.58092e-08 -0.58964)
(3.56655 -1.63023e-08 -0.589907)
(3.53735 -1.61766e-08 -0.587496)
(3.50326 -1.49374e-08 -0.582746)
(3.46493 -1.26468e-08 -0.575975)
(3.42294 -9.84576e-09 -0.567485)
(3.37786 -7.27261e-09 -0.557555)
(3.33022 -5.54306e-09 -0.546445)
(3.2805 -4.9007e-09 -0.534389)
(3.22912 -5.24657e-09 -0.521601)
(3.17649 -6.24187e-09 -0.508271)
(3.12295 -7.40303e-09 -0.494567)
(3.06882 -8.31755e-09 -0.480638)
(3.01436 -8.78252e-09 -0.466612)
(2.95981 -8.78383e-09 -0.452597)
(2.90538 -8.42771e-09 -0.438688)
(2.85124 -7.87713e-09 -0.424962)
(2.79754 -7.29993e-09 -0.411483)
(2.74439 -6.82259e-09 -0.398303)
(2.69191 -6.50849e-09 -0.385463)
(2.64016 -6.35692e-09 -0.372996)
(2.58922 -6.32162e-09 -0.360925)
(2.53913 -6.33361e-09 -0.349267)
(2.48993 -6.32378e-09 -0.338033)
(2.44165 -6.23569e-09 -0.327229)
(2.39429 -6.03125e-09 -0.316856)
(2.34788 -5.69237e-09 -0.306912)
(2.3024 -5.2173e-09 -0.29739)
(2.25786 -4.61623e-09 -0.288284)
(2.21426 -3.90831e-09 -0.279582)
(2.17156 -3.11829e-09 -0.271273)
(2.12977 -2.27409e-09 -0.263343)
(2.08886 -1.40464e-09 -0.255778)
(2.04882 -5.38262e-10 -0.248561)
(2.00963 3.01223e-10 -0.241678)
(1.97126 1.09817e-09 -0.23511)
(1.93369 1.84967e-09 -0.228842)
(1.89691 2.56885e-09 -0.222857)
(1.8609 3.28532e-09 -0.217137)
(1.82563 4.04182e-09 -0.211666)
(1.79108 4.88701e-09 -0.206428)
(1.75723 5.86486e-09 -0.201406)
(1.72408 7.00456e-09 -0.196584)
(1.69159 8.3128e-09 -0.191948)
(1.65976 9.76945e-09 -0.187483)
(1.62857 1.13272e-08 -0.183174)
(1.59801 1.29081e-08 -0.179009)
(1.56806 1.4402e-08 -0.174974)
(1.53871 1.56608e-08 -0.171059)
(1.50995 1.64997e-08 -0.167251)
(1.48177 1.67099e-08 -0.16354)
(1.45416 1.60881e-08 -0.159917)
(1.42711 1.44691e-08 -0.156373)
(1.40062 1.17422e-08 -0.152899)
(1.37468 7.82781e-09 -0.149489)
(1.34928 2.61863e-09 -0.146135)
(1.32442 -4.05794e-09 -0.142831)
(1.30009 -1.23553e-08 -0.139574)
(1.27629 -2.21133e-08 -0.136357)
(1.25301 -3.23871e-08 -0.133178)
(1.23025 -4.10502e-08 -0.130033)
(1.20801 -4.49322e-08 -0.12692)
(1.18627 -4.09244e-08 -0.123836)
(1.16505 -2.80665e-08 -0.120781)
(1.14434 -9.80876e-09 -0.117752)
(1.12412 5.15801e-09 -0.114751)
(1.10441 5.21227e-09 -0.111777)
(1.08519 -1.8275e-08 -0.108831)
(1.06646 -6.34302e-08 -0.105914)
(1.04821 -1.13427e-07 -0.103028)
(1.03045 -1.40432e-07 -0.100174)
(1.01317 -1.20028e-07 -0.0973557)
(0.996359 -5.08506e-08 -0.0945776)
(0.980013 3.40685e-08 -0.0918455)
(0.964126 7.93745e-08 -0.089168)
(0.948697 4.5118e-08 -0.0865563)
(0.933725 -5.49102e-08 -0.084023)
(0.919231 -1.53803e-07 -0.0815805)
(0.905234 -1.79702e-07 -0.0792183)
(0.891797 -1.31091e-07 -0.0769196)
(0.878913 -1.47015e-07 -0.0745393)
(0.866431 -2.95016e-07 -0.0720387)
(0.854307 -1.31702e-07 -0.069526)
(0.842571 5.62745e-08 -0.0670113)
(0.831223 -5.8923e-07 -0.0645145)
(0.820254 -7.62327e-07 -0.0620416)
(0.809663 5.57938e-08 -0.0596195)
(0.799456 4.43867e-08 -0.0572371)
(0.789622 -7.75264e-07 -0.0548915)
(0.780156 -1.46821e-06 -0.0525901)
(0.771051 -1.00723e-06 -0.0503417)
(0.762302 -1.08936e-07 -0.0481492)
(0.753902 2.4403e-07 -0.046015)
(0.745844 2.32321e-07 -0.0439448)
(0.738121 2.49917e-07 -0.0419457)
(0.73073 2.84312e-07 -0.0400236)
(0.723678 1.5885e-07 -0.0381833)
(0.716972 -1.36802e-07 -0.0364161)
(0.710635 -4.06576e-07 -0.0347115)
(0.704665 -4.67644e-07 -0.0329981)
(0.698955 -3.40313e-07 -0.0312543)
(0.693506 3.01485e-08 -0.0295891)
(0.688357 5.63825e-07 -0.0279557)
(0.683488 1.01749e-06 -0.0263656)
(0.678901 1.0965e-06 -0.0248063)
(0.674586 7.58216e-07 -0.0232753)
(0.670538 1.64148e-07 -0.0217698)
(0.666752 -1.87944e-07 -0.0202879)
(0.663224 -2.24725e-07 -0.0188277)
(0.65995 -1.59482e-07 -0.0173874)
(0.656927 -1.35155e-07 -0.0159653)
(0.654156 -1.30428e-07 -0.0145606)
(0.651635 -5.30365e-08 -0.0131716)
(0.649374 1.22217e-07 -0.0117974)
(0.647379 2.76191e-07 -0.0104294)
(0.645666 2.18399e-07 -0.00905516)
(0.644251 -9.60945e-08 -0.00765294)
(0.643106 -4.31913e-07 -0.00618306)
(0.642221 -6.04059e-07 -0.00468035)
(0.641606 -8.07332e-07 -0.00313702)
(0.641278 -1.00004e-06 -0.00156981)
(0.641263 -1.01648e-06 4.44761e-05)
(0.641571 -6.38894e-07 0.00170938)
(0.642226 3.25896e-09 0.00344177)
(0.643243 -1.07776e-07 0.00525693)
(0.644643 -4.67687e-07 0.00716925)
(0.646446 -5.7079e-07 0.00920461)
(0.648665 -6.74413e-08 0.0113764)
(0.651327 5.26192e-07 0.0137012)
(0.654452 1.07471e-07 0.0161952)
(0.658084 -5.41522e-07 0.0188501)
(0.662294 -8.22528e-07 0.0217176)
(0.667087 -6.4955e-07 0.0248714)
(0.672459 -4.40627e-07 0.0283288)
(0.678448 -3.53654e-07 0.0320828)
(0.685106 -3.89465e-07 0.036136)
(0.692521 -2.30515e-07 0.0404977)
(0.700777 4.44076e-07 0.04523)
(0.709949 1.03461e-06 0.0503852)
(0.720103 1.08987e-06 0.056042)
(0.731351 7.47821e-07 0.0622456)
(0.743747 1.50144e-07 0.0691488)
(0.757384 -3.56711e-07 0.07674)
(0.772424 -1.01496e-06 0.0851728)
(0.78897 -1.62817e-06 0.0945505)
(0.807162 -1.60538e-06 0.105017)
(0.827149 -1.02642e-06 0.116712)
(0.849092 -2.92807e-07 0.129813)
(0.873248 3.16425e-07 0.144468)
(0.899905 8.0625e-07 0.161022)
(0.929305 1.1004e-06 0.179825)
(0.961732 1.02507e-06 0.201307)
(0.997475 6.33033e-07 0.225976)
(1.03683 1.12539e-07 0.254436)
(1.0801 -1.65968e-07 0.28739)
(1.12758 -2.27798e-07 0.325663)
(1.17957 -1.98773e-07 0.370165)
(1.23664 -3.56121e-07 0.422076)
(1.29925 -1.02429e-06 0.483265)
(1.36754 -1.58428e-06 0.555899)
(1.44142 -1.14154e-06 0.642616)
(1.52035 -1.85864e-07 0.746562)
(1.60311 4.77683e-07 0.871481)
(1.68743 7.08971e-07 1.02173)
(1.76937 6.80587e-07 1.2022)
(1.8425 5.27591e-07 1.41792)
(1.89676 3.52178e-07 1.67333)
(1.91656 2.26237e-07 1.97054)
(1.87945 1.75032e-07 2.30564)
(1.74993 1.93427e-07 2.66262)
(1.48176 2.88749e-07 2.99072)
(1.04741 5.77813e-07 3.17323)
(0.402318 1.90202e-06 2.48316)
(0.0969258 -1.824e-07 1.75296)
(0.443975 7.13419e-07 0.417483)
(1.098 3.91732e-06 0.0325136)
(1.52999 4.09733e-06 -0.091922)
(1.87685 4.04505e-06 -0.151121)
(2.14831 2.23988e-06 -0.172609)
(2.36147 7.78321e-07 -0.174271)
(2.53078 2.79126e-07 -0.167093)
(2.66803 3.91011e-08 -0.157526)
(2.78218 -2.45942e-07 -0.150446)
(2.88013 -4.24743e-07 -0.149722)
(2.96732 -3.90462e-07 -0.158005)
(3.04782 -2.19606e-07 -0.176503)
(3.12463 -4.09885e-08 -0.204946)
(3.19898 7.32689e-08 -0.241156)
(3.27051 1.18487e-07 -0.282656)
(3.33851 1.18468e-07 -0.326879)
(3.40173 9.61769e-08 -0.370819)
(3.45856 6.64035e-08 -0.412395)
(3.50775 3.70698e-08 -0.450234)
(3.54842 1.27359e-08 -0.483568)
(3.5801 -4.26173e-09 -0.512076)
(3.60268 -1.36536e-08 -0.535732)
(3.6163 -1.70273e-08 -0.554695)
(3.62132 -1.69842e-08 -0.569231)
(3.61825 -1.59873e-08 -0.579663)
(3.60767 -1.55084e-08 -0.586346)
(3.59021 -1.58092e-08 -0.589641)
(3.56655 -1.63022e-08 -0.589907)
(3.53735 -1.61766e-08 -0.587497)
(3.50326 -1.49374e-08 -0.582746)
(3.46493 -1.26468e-08 -0.575975)
(3.42294 -9.84576e-09 -0.567485)
(3.37786 -7.27261e-09 -0.557555)
(3.33022 -5.54306e-09 -0.546445)
(3.2805 -4.9007e-09 -0.534389)
(3.22912 -5.24657e-09 -0.521601)
(3.17649 -6.24186e-09 -0.508271)
(3.12295 -7.40303e-09 -0.494567)
(3.06882 -8.31755e-09 -0.480638)
(3.01436 -8.78252e-09 -0.466612)
(2.95981 -8.78383e-09 -0.452597)
(2.90538 -8.4277e-09 -0.438688)
(2.85124 -7.87713e-09 -0.424962)
(2.79754 -7.29993e-09 -0.411483)
(2.74439 -6.82258e-09 -0.398303)
(2.69191 -6.50849e-09 -0.385463)
(2.64016 -6.35692e-09 -0.372996)
(2.58922 -6.32161e-09 -0.360925)
(2.53913 -6.33361e-09 -0.349267)
(2.48993 -6.32378e-09 -0.338033)
(2.44165 -6.23569e-09 -0.327229)
(2.39429 -6.03125e-09 -0.316856)
(2.34788 -5.69237e-09 -0.306912)
(2.3024 -5.2173e-09 -0.29739)
(2.25786 -4.61622e-09 -0.288284)
(2.21426 -3.9083e-09 -0.279582)
(2.17156 -3.11829e-09 -0.271273)
(2.12977 -2.27409e-09 -0.263343)
(2.08886 -1.40464e-09 -0.255778)
(2.04882 -5.38261e-10 -0.248561)
(2.00963 3.01222e-10 -0.241678)
(1.97126 1.09817e-09 -0.23511)
(1.93369 1.84966e-09 -0.228842)
(1.89691 2.56885e-09 -0.222857)
(1.8609 3.28532e-09 -0.217137)
(1.82563 4.04181e-09 -0.211666)
(1.79108 4.887e-09 -0.206428)
(1.75723 5.86485e-09 -0.201406)
(1.72408 7.00455e-09 -0.196584)
(1.69159 8.31279e-09 -0.191948)
(1.65976 9.76944e-09 -0.187483)
(1.62857 1.13272e-08 -0.183174)
(1.59801 1.29081e-08 -0.179009)
(1.56806 1.4402e-08 -0.174974)
(1.53871 1.56608e-08 -0.171059)
(1.50995 1.64997e-08 -0.167251)
(1.48177 1.67099e-08 -0.16354)
(1.45416 1.60881e-08 -0.159917)
(1.42711 1.44691e-08 -0.156373)
(1.40062 1.17422e-08 -0.152899)
(1.37468 7.82781e-09 -0.149488)
(1.34928 2.61863e-09 -0.146135)
(1.32442 -4.05794e-09 -0.142831)
(1.30009 -1.23553e-08 -0.139574)
(1.27629 -2.21133e-08 -0.136357)
(1.25301 -3.23871e-08 -0.133178)
(1.23025 -4.10502e-08 -0.130033)
(1.20801 -4.49322e-08 -0.12692)
(1.18627 -4.09244e-08 -0.123836)
(1.16505 -2.80665e-08 -0.12078)
(1.14434 -9.80876e-09 -0.117752)
(1.12412 5.15801e-09 -0.114751)
(1.10441 5.21227e-09 -0.111777)
(1.08519 -1.8275e-08 -0.108831)
(1.06646 -6.34302e-08 -0.105914)
(1.04821 -1.13427e-07 -0.103028)
(1.03045 -1.40432e-07 -0.100174)
(1.01317 -1.20028e-07 -0.0973558)
(0.996359 -5.08506e-08 -0.0945777)
(0.980013 3.40685e-08 -0.0918457)
(0.964126 7.93745e-08 -0.0891683)
(0.948696 4.5118e-08 -0.0865569)
(0.933725 -5.49102e-08 -0.0840237)
(0.919231 -1.53803e-07 -0.0815811)
(0.905234 -1.79701e-07 -0.0792186)
(0.891797 -1.31091e-07 -0.0769194)
(0.878913 -1.47015e-07 -0.0745391)
(0.866432 -2.95016e-07 -0.0720392)
(0.854308 -1.31702e-07 -0.0695267)
(0.842571 5.62744e-08 -0.0670103)
(0.83122 -5.89233e-07 -0.0645126)
(0.820251 -7.62333e-07 -0.0620423)
(0.809664 5.57941e-08 -0.0596215)
(0.799458 4.43869e-08 -0.0572373)
(0.789622 -7.75265e-07 -0.0548908)
(0.780154 -1.46821e-06 -0.0525904)
(0.77105 -1.00723e-06 -0.0503424)
(0.762302 -1.08936e-07 -0.0481492)
(0.753903 2.4403e-07 -0.0460149)
(0.745844 2.32321e-07 -0.0439449)
(0.73812 2.49918e-07 -0.0419459)
(0.73073 2.84313e-07 -0.0400237)
(0.723678 1.5885e-07 -0.0381833)
(0.716971 -1.36802e-07 -0.0364161)
(0.710634 -4.06574e-07 -0.0347115)
(0.704664 -4.67639e-07 -0.0329981)
(0.698955 -3.40306e-07 -0.0312545)
(0.693506 3.0148e-08 -0.0295893)
(0.688357 5.63815e-07 -0.0279557)
(0.683487 1.01747e-06 -0.0263656)
(0.6789 1.09648e-06 -0.0248062)
(0.674586 7.58202e-07 -0.0232752)
(0.670538 1.64145e-07 -0.0217697)
(0.666752 -1.8794e-07 -0.0202878)
(0.663224 -2.24721e-07 -0.0188276)
(0.65995 -1.59479e-07 -0.0173872)
(0.656927 -1.35153e-07 -0.0159652)
(0.654155 -1.30425e-07 -0.0145605)
(0.651635 -5.30355e-08 -0.0131715)
(0.649373 1.22215e-07 -0.0117974)
(0.647379 2.76186e-07 -0.0104294)
(0.645666 2.18395e-07 -0.00905506)
(0.644251 -9.60933e-08 -0.0076528)
(0.643105 -4.31909e-07 -0.00618297)
(0.64222 -6.0405e-07 -0.00468061)
(0.641606 -8.0732e-07 -0.00313788)
(0.641277 -1.00002e-06 -0.00157102)
(0.641261 -1.01647e-06 4.36461e-05)
(0.641569 -6.38892e-07 0.00170836)
(0.642225 3.25892e-09 0.00344069)
(0.643243 -1.07774e-07 0.00525616)
(0.644643 -4.67678e-07 0.00716748)
(0.646447 -5.70785e-07 0.00920274)
(0.648666 -6.74408e-08 0.0113754)
(0.651327 5.26183e-07 0.0137007)
(0.654452 1.07468e-07 0.0161952)
(0.658085 -5.41511e-07 0.0188494)
(0.662296 -8.22515e-07 0.0217169)
(0.667088 -6.49548e-07 0.024871)
(0.672459 -4.40629e-07 0.0283274)
(0.678447 -3.53653e-07 0.0320816)
(0.685105 -3.89458e-07 0.0361358)
(0.692521 -2.3051e-07 0.0404972)
(0.700779 4.44067e-07 0.045229)
(0.709951 1.03459e-06 0.0503845)
(0.720104 1.08986e-06 0.056042)
(0.73135 7.47815e-07 0.0622456)
(0.743746 1.50143e-07 0.0691488)
(0.757385 -3.56709e-07 0.0767401)
(0.772424 -1.01495e-06 0.0851729)
(0.788971 -1.62816e-06 0.0945503)
(0.807162 -1.60537e-06 0.105017)
(0.827149 -1.02641e-06 0.116711)
(0.849091 -2.92805e-07 0.129812)
(0.873247 3.16423e-07 0.144467)
(0.899904 8.06245e-07 0.161021)
(0.929306 1.1004e-06 0.179823)
(0.961733 1.02506e-06 0.201306)
(0.997477 6.3303e-07 0.225974)
(1.03683 1.12538e-07 0.254435)
(1.08011 -1.65968e-07 0.287388)
(1.12758 -2.27798e-07 0.325662)
(1.17957 -1.98773e-07 0.370165)
(1.23664 -3.56121e-07 0.422076)
(1.29925 -1.02429e-06 0.483265)
(1.36754 -1.58428e-06 0.5559)
(1.44142 -1.14154e-06 0.642617)
(1.52035 -1.85864e-07 0.746562)
(1.60311 4.77683e-07 0.871481)
(1.68743 7.08971e-07 1.02173)
(1.76937 6.80587e-07 1.2022)
(1.8425 5.27591e-07 1.41792)
(1.89676 3.52178e-07 1.67333)
(1.91656 2.26237e-07 1.97054)
(1.87945 1.75032e-07 2.30564)
(1.74993 1.93427e-07 2.66262)
(1.48176 2.88749e-07 2.99071)
(1.04741 5.77814e-07 3.17323)
(0.402319 1.90202e-06 2.48316)
(2.4012 -6.62348e-06 0.176848)
(2.44696 8.41745e-07 -0.3504)
(3.16205 4.05024e-06 -0.500154)
(3.46295 3.20751e-06 -0.516504)
(3.58396 1.27084e-06 -0.498592)
(3.63984 -2.20733e-07 -0.451427)
(3.66444 -5.08974e-07 -0.390203)
(3.67911 -2.88736e-07 -0.331251)
(3.69474 -2.42542e-07 -0.283055)
(3.71497 -3.54492e-07 -0.249508)
(3.74105 -3.84789e-07 -0.232245)
(3.77375 -2.64838e-07 -0.23145)
(3.81331 -8.43342e-08 -0.245904)
(3.85953 5.89185e-08 -0.273052)
(3.90989 1.28208e-07 -0.307929)
(3.95997 1.39123e-07 -0.346899)
(4.00702 1.18747e-07 -0.387108)
(4.04859 8.58127e-08 -0.424865)
(4.08225 5.21962e-08 -0.458444)
(4.10665 2.3437e-08 -0.487045)
(4.12116 2.17229e-09 -0.510473)
(4.12568 -1.09652e-08 -0.528896)
(4.12051 -1.709e-08 -0.542651)
(4.10619 -1.85914e-08 -0.552152)
(4.08344 -1.81759e-08 -0.55783)
(4.05302 -1.78716e-08 -0.560113)
(4.01576 -1.84894e-08 -0.559406)
(3.97246 -1.97097e-08 -0.556092)
(3.92394 -2.06218e-08 -0.550526)
(3.87095 -2.03835e-08 -0.543037)
(3.81421 -1.86795e-08 -0.533928)
(3.7544 -1.58269e-08 -0.523478)
(3.69214 -1.25682e-08 -0.51194)
(3.62798 -9.73101e-09 -0.499544)
(3.56243 -7.92486e-09 -0.486496)
(3.49595 -7.29392e-09 -0.472981)
(3.42893 -7.63452e-09 -0.459159)
(3.36172 -8.5563e-09 -0.445173)
(3.29462 -9.55191e-09 -0.431145)
(3.2279 -1.02303e-08 -0.417178)
(3.16177 -1.04314e-08 -0.403361)
(3.09641 -1.01864e-08 -0.389767)
(3.03198 -9.63187e-09 -0.376453)
(2.96859 -8.94367e-09 -0.363469)
(2.90634 -8.28487e-09 -0.350851)
(2.8453 -7.76988e-09 -0.338626)
(2.78553 -7.44586e-09 -0.326817)
(2.72705 -7.29744e-09 -0.315436)
(2.66989 -7.26667e-09 -0.304491)
(2.61407 -7.27742e-09 -0.293986)
(2.55957 -7.25541e-09 -0.28392)
(2.5064 -7.14154e-09 -0.27429)
(2.45453 -6.89793e-09 -0.265088)
(2.40394 -6.50674e-09 -0.256306)
(2.35461 -5.96745e-09 -0.247932)
(2.3065 -5.29166e-09 -0.239955)
(2.25959 -4.50076e-09 -0.23236)
(2.21384 -3.62178e-09 -0.225132)
(2.16922 -2.68462e-09 -0.218257)
(2.12568 -1.72028e-09 -0.211718)
(2.0832 -7.58542e-10 -0.2055)
(2.04174 1.7727e-10 -0.199586)
(2.00126 1.07361e-09 -0.193959)
(1.96173 1.93186e-09 -0.188603)
(1.92312 2.7711e-09 -0.183502)
(1.88539 3.62745e-09 -0.178639)
(1.84852 4.5497e-09 -0.173999)
(1.81248 5.58891e-09 -0.169567)
(1.77723 6.78935e-09 -0.165328)
(1.74276 8.17511e-09 -0.161267)
(1.70903 9.74532e-09 -0.157371)
(1.67604 1.14688e-08 -0.153625)
(1.64375 1.32823e-08 -0.150019)
(1.61214 1.50863e-08 -0.146539)
(1.58121 1.67405e-08 -0.143174)
(1.55093 1.80594e-08 -0.139914)
(1.52128 1.88203e-08 -0.136749)
(1.49227 1.87873e-08 -0.133669)
(1.46386 1.77506e-08 -0.130666)
(1.43606 1.55613e-08 -0.127732)
(1.40884 1.21287e-08 -0.124859)
(1.38221 7.36638e-09 -0.122042)
(1.35616 1.10769e-09 -0.119275)
(1.33067 -6.90699e-09 -0.116552)
(1.30574 -1.684e-08 -0.113868)
(1.28136 -2.82887e-08 -0.11122)
(1.25754 -3.9668e-08 -0.108604)
(1.23426 -4.78712e-08 -0.106018)
(1.21151 -4.88239e-08 -0.10346)
(1.18931 -3.9363e-08 -0.100926)
(1.16763 -2.0104e-08 -0.0984169)
(1.14648 2.12632e-09 -0.0959311)
(1.12585 1.45383e-08 -0.0934682)
(1.10573 3.10315e-09 -0.0910283)
(1.08614 -3.86721e-08 -0.0886118)
(1.06705 -1.00805e-07 -0.0862194)
(1.04846 -1.5447e-07 -0.0838522)
(1.03037 -1.625e-07 -0.0815119)
(1.01277 -1.03109e-07 -0.0792009)
(0.995661 4.10218e-09 -0.0769228)
(0.979023 9.20996e-08 -0.0746836)
(0.962851 8.16766e-08 -0.0724931)
(0.947135 -4.7594e-08 -0.0703673)
(0.931869 -2.0948e-07 -0.0683287)
(0.917078 -2.6405e-07 -0.0664089)
(0.902783 -1.53481e-07 -0.0646088)
(0.88915 2.91015e-08 -0.0629434)
(0.876202 -4.56793e-09 -0.0610835)
(0.863588 -4.85378e-07 -0.0589687)
(0.85125 -3.85351e-07 -0.056861)
(0.839317 6.20426e-07 -0.0547351)
(0.827788 -5.84034e-08 -0.0526452)
(0.816641 -1.65388e-06 -0.0505749)
(0.805878 -7.72281e-07 -0.0485661)
(0.795526 4.0751e-07 -0.0465895)
(0.78556 -1.0016e-06 -0.04464)
(0.775967 -2.31047e-06 -0.0427271)
(0.766743 -1.55968e-06 -0.0408626)
(0.757889 -2.58253e-07 -0.0390455)
(0.749394 1.88924e-07 -0.0372783)
(0.741246 1.73986e-07 -0.0355679)
(0.733432 2.1496e-07 -0.0339235)
(0.725947 2.19288e-07 -0.032357)
(0.718801 -1.09175e-08 -0.0308843)
(0.712001 -3.37263e-07 -0.0294996)
(0.705631 -3.76875e-07 -0.0282072)
(0.699708 2.84172e-08 -0.0268321)
(0.693973 4.34371e-07 -0.0253303)
(0.688451 5.77743e-07 -0.0239823)
(0.683272 7.01018e-07 -0.0226504)
(0.678372 1.00386e-06 -0.0213628)
(0.673764 1.34731e-06 -0.0200961)
(0.669428 1.04181e-06 -0.0188499)
(0.66536 3.45708e-07 -0.0176225)
(0.661553 -5.86301e-08 -0.0164137)
(0.658003 -1.13013e-07 -0.0152222)
(0.654705 -9.40519e-08 -0.014047)
(0.651655 -1.27814e-07 -0.0128872)
(0.648849 -1.26326e-07 -0.0117443)
(0.646284 1.94831e-08 -0.0106204)
(0.643967 2.43836e-07 -0.00952143)
(0.641912 2.89134e-07 -0.00844459)
(0.640142 -7.34044e-08 -0.00737473)
(0.638706 -7.13887e-07 -0.00628912)
(0.637532 -1.00208e-06 -0.00507751)
(0.636588 -5.26389e-07 -0.00385243)
(0.635901 -1.06546e-07 -0.00259663)
(0.635491 -5.77517e-07 -0.00134946)
(0.6354 -1.44161e-06 -6.52118e-05)
(0.635627 -1.74997e-06 0.00124201)
(0.636201 -4.27246e-07 0.00261672)
(0.63713 6.92234e-07 0.00403467)
(0.638448 1.27839e-07 0.00552266)
(0.640172 -7.8499e-07 0.00712652)
(0.642308 -9.04732e-07 0.00884134)
(0.644885 2.94208e-08 0.0107052)
(0.647892 4.75293e-07 0.0126964)
(0.651401 -4.4704e-07 0.0147628)
(0.655553 -9.96376e-07 0.0169899)
(0.660321 -7.8159e-07 0.0195164)
(0.665636 -5.86628e-07 0.0223601)
(0.671529 -3.65436e-07 0.0254612)
(0.678068 -2.06256e-07 0.0287699)
(0.685382 -2.20872e-07 0.0322622)
(0.693579 3.12628e-07 0.0360491)
(0.702725 1.03178e-06 0.0401795)
(0.712864 1.26535e-06 0.0447327)
(0.724169 5.82167e-07 0.0496997)
(0.736635 -2.76093e-07 0.0553512)
(0.750353 -4.95539e-07 0.0614944)
(0.765583 -7.67622e-07 0.068356)
(0.782405 -1.58264e-06 0.0760095)
(0.800969 -1.60834e-06 0.0846008)
(0.821438 -7.72446e-07 0.0942336)
(0.843939 1.53764e-07 0.105068)
(0.868832 4.35524e-07 0.117083)
(0.896534 3.89069e-07 0.130703)
(0.927307 6.11625e-07 0.146245)
(0.961525 1.13434e-06 0.164116)
(0.999591 9.5313e-07 0.184795)
(1.04193 2.6955e-07 0.20888)
(1.08901 -3.59581e-07 0.237065)
(1.14119 -8.31697e-07 0.270166)
(1.19892 -9.37381e-07 0.308859)
(1.26338 -6.80681e-07 0.35407)
(1.33572 -9.60951e-07 0.407983)
(1.41667 -1.92427e-06 0.472936)
(1.50698 -1.76814e-06 0.551848)
(1.60725 -7.44033e-07 0.648333)
(1.71776 1.00359e-07 0.766939)
(1.8381 4.26269e-07 0.913375)
(1.96668 4.40353e-07 1.09471)
(2.09985 3.58255e-07 1.31946)
(2.23066 2.78951e-07 1.59763)
(2.3464 2.27477e-07 1.94016)
(2.42702 2.03817e-07 2.35784)
(2.43141 2.08578e-07 2.86015)
(2.31247 2.63982e-07 3.43677)
(1.87939 4.55111e-07 4.11151)
(1.48218 1.2637e-06 4.86932)
(2.40122 -6.62364e-06 0.176872)
(2.44697 8.41673e-07 -0.350352)
(3.16205 4.05014e-06 -0.500147)
(3.46295 3.20757e-06 -0.516511)
(3.58398 1.27088e-06 -0.498603)
(3.63986 -2.20739e-07 -0.451439)
(3.66446 -5.08984e-07 -0.390213)
(3.67912 -2.88739e-07 -0.331258)
(3.69475 -2.42544e-07 -0.28306)
(3.71498 -3.54494e-07 -0.249511)
(3.74105 -3.8479e-07 -0.232246)
(3.77375 -2.64839e-07 -0.231449)
(3.81331 -8.43342e-08 -0.245902)
(3.85953 5.89185e-08 -0.273051)
(3.90989 1.28208e-07 -0.307927)
(3.95997 1.39123e-07 -0.346897)
(4.00702 1.18747e-07 -0.387107)
(4.04859 8.58127e-08 -0.424865)
(4.08225 5.21962e-08 -0.458444)
(4.10665 2.3437e-08 -0.487045)
(4.12116 2.17229e-09 -0.510474)
(4.12568 -1.09652e-08 -0.528896)
(4.12051 -1.709e-08 -0.542652)
(4.10619 -1.85914e-08 -0.552152)
(4.08344 -1.81759e-08 -0.55783)
(4.05302 -1.78716e-08 -0.560113)
(4.01576 -1.84893e-08 -0.559406)
(3.97246 -1.97096e-08 -0.556092)
(3.92394 -2.06218e-08 -0.550526)
(3.87095 -2.03835e-08 -0.543037)
(3.81421 -1.86795e-08 -0.533929)
(3.7544 -1.58269e-08 -0.523479)
(3.69214 -1.25682e-08 -0.511941)
(3.62798 -9.73101e-09 -0.499544)
(3.56243 -7.92486e-09 -0.486497)
(3.49595 -7.29392e-09 -0.472981)
(3.42893 -7.63452e-09 -0.459159)
(3.36172 -8.55629e-09 -0.445173)
(3.29462 -9.55191e-09 -0.431145)
(3.2279 -1.02303e-08 -0.417178)
(3.16177 -1.04314e-08 -0.403362)
(3.09641 -1.01864e-08 -0.389767)
(3.03198 -9.63186e-09 -0.376453)
(2.96859 -8.94366e-09 -0.363469)
(2.90634 -8.28486e-09 -0.350851)
(2.8453 -7.76988e-09 -0.338626)
(2.78553 -7.44585e-09 -0.326817)
(2.72705 -7.29744e-09 -0.315436)
(2.66989 -7.26667e-09 -0.304491)
(2.61407 -7.27742e-09 -0.293986)
(2.55957 -7.25541e-09 -0.28392)
(2.5064 -7.14154e-09 -0.27429)
(2.45453 -6.89792e-09 -0.265088)
(2.40394 -6.50673e-09 -0.256306)
(2.35461 -5.96744e-09 -0.247932)
(2.3065 -5.29166e-09 -0.239955)
(2.25959 -4.50076e-09 -0.23236)
(2.21384 -3.62178e-09 -0.225132)
(2.16922 -2.68462e-09 -0.218257)
(2.12568 -1.72028e-09 -0.211718)
(2.0832 -7.58542e-10 -0.2055)
(2.04174 1.7727e-10 -0.199586)
(2.00126 1.07361e-09 -0.193959)
(1.96173 1.93186e-09 -0.188603)
(1.92312 2.77109e-09 -0.183502)
(1.88539 3.62745e-09 -0.178639)
(1.84852 4.54969e-09 -0.173999)
(1.81248 5.5889e-09 -0.169567)
(1.77723 6.78935e-09 -0.165328)
(1.74276 8.17511e-09 -0.161267)
(1.70903 9.74531e-09 -0.157371)
(1.67604 1.14688e-08 -0.153625)
(1.64375 1.32823e-08 -0.150019)
(1.61214 1.50863e-08 -0.146539)
(1.58121 1.67405e-08 -0.143174)
(1.55093 1.80594e-08 -0.139914)
(1.52128 1.88203e-08 -0.136749)
(1.49227 1.87873e-08 -0.133669)
(1.46386 1.77506e-08 -0.130666)
(1.43606 1.55613e-08 -0.127732)
(1.40884 1.21287e-08 -0.124859)
(1.38221 7.36638e-09 -0.122042)
(1.35616 1.10769e-09 -0.119275)
(1.33067 -6.90699e-09 -0.116552)
(1.30574 -1.684e-08 -0.113868)
(1.28136 -2.82887e-08 -0.11122)
(1.25754 -3.9668e-08 -0.108604)
(1.23426 -4.78711e-08 -0.106018)
(1.21151 -4.88239e-08 -0.103459)
(1.18931 -3.9363e-08 -0.100926)
(1.16763 -2.0104e-08 -0.0984169)
(1.14648 2.12632e-09 -0.0959311)
(1.12585 1.45383e-08 -0.0934682)
(1.10573 3.10315e-09 -0.0910283)
(1.08614 -3.86721e-08 -0.0886118)
(1.06704 -1.00805e-07 -0.0862194)
(1.04846 -1.5447e-07 -0.0838523)
(1.03037 -1.625e-07 -0.081512)
(1.01277 -1.03109e-07 -0.079201)
(0.995661 4.10218e-09 -0.0769228)
(0.979023 9.20997e-08 -0.0746837)
(0.96285 8.16766e-08 -0.0724935)
(0.947134 -4.7594e-08 -0.070368)
(0.931868 -2.09479e-07 -0.0683295)
(0.917077 -2.64049e-07 -0.0664095)
(0.902783 -1.53479e-07 -0.0646091)
(0.88915 2.91008e-08 -0.0629436)
(0.876201 -4.56783e-09 -0.0610839)
(0.863587 -4.85378e-07 -0.0589701)
(0.851252 -3.85357e-07 -0.0568636)
(0.839319 6.20418e-07 -0.0547358)
(0.827785 -5.84048e-08 -0.0526425)
(0.816636 -1.65396e-06 -0.0505738)
(0.805879 -7.72325e-07 -0.0485666)
(0.795531 4.0753e-07 -0.0465873)
(0.785561 -1.00164e-06 -0.0446376)
(0.775964 -2.31057e-06 -0.0427266)
(0.766742 -1.55974e-06 -0.040862)
(0.75789 -2.58265e-07 -0.0390443)
(0.749395 1.88932e-07 -0.0372775)
(0.741245 1.73993e-07 -0.0355675)
(0.733431 2.14969e-07 -0.0339234)
(0.725946 2.19297e-07 -0.032357)
(0.7188 -1.0918e-08 -0.0308842)
(0.712 -3.37276e-07 -0.0294997)
(0.70563 -3.76882e-07 -0.0282075)
(0.699706 2.84164e-08 -0.0268325)
(0.693972 4.34339e-07 -0.0253309)
(0.688451 5.77702e-07 -0.0239829)
(0.683272 7.00968e-07 -0.0226505)
(0.678372 1.00379e-06 -0.021363)
(0.673764 1.34721e-06 -0.0200961)
(0.669428 1.04173e-06 -0.0188498)
(0.665359 3.45683e-07 -0.0176223)
(0.661553 -5.86259e-08 -0.0164135)
(0.658003 -1.13005e-07 -0.015222)
(0.654705 -9.40452e-08 -0.0140467)
(0.651654 -1.27805e-07 -0.0128869)
(0.648848 -1.26317e-07 -0.0117441)
(0.646283 1.94817e-08 -0.0106203)
(0.643966 2.43819e-07 -0.00952135)
(0.641911 2.89115e-07 -0.00844446)
(0.640141 -7.34e-08 -0.00737463)
(0.638706 -7.13855e-07 -0.00628927)
(0.637531 -1.00206e-06 -0.00507805)
(0.636587 -5.26367e-07 -0.00385349)
(0.635899 -1.0654e-07 -0.00259832)
(0.635491 -5.77469e-07 -0.00135152)
(0.635399 -1.44159e-06 -6.58821e-05)
(0.635626 -1.75001e-06 0.00124198)
(0.6362 -4.2724e-07 0.00261676)
(0.637129 6.92191e-07 0.00403598)
(0.638447 1.27828e-07 0.00552209)
(0.640174 -7.84973e-07 0.00712558)
(0.642311 -9.04746e-07 0.0088413)
(0.644886 2.94203e-08 0.0107049)
(0.647892 4.75276e-07 0.0126977)
(0.651401 -4.47028e-07 0.0147625)
(0.655554 -9.96366e-07 0.0169889)
(0.660322 -7.81608e-07 0.0195163)
(0.665636 -5.8666e-07 0.0223591)
(0.67153 -3.65447e-07 0.0254607)
(0.678067 -2.06246e-07 0.0287717)
(0.685381 -2.20857e-07 0.0322639)
(0.69358 3.12607e-07 0.0360493)
(0.702728 1.03171e-06 0.0401786)
(0.712865 1.26529e-06 0.0447319)
(0.724168 5.82157e-07 0.0496986)
(0.736634 -2.76099e-07 0.0553501)
(0.750354 -4.95546e-07 0.0614934)
(0.765584 -7.67631e-07 0.0683553)
(0.782405 -1.58266e-06 0.0760086)
(0.800968 -1.60835e-06 0.0845999)
(0.821437 -7.72436e-07 0.0942329)
(0.843938 1.53758e-07 0.105068)
(0.868831 4.35511e-07 0.117083)
(0.896533 3.89058e-07 0.130705)
(0.927308 6.11608e-07 0.146246)
(0.961527 1.13431e-06 0.164116)
(0.999592 9.53104e-07 0.184794)
(1.04194 2.69543e-07 0.208879)
(1.08901 -3.59574e-07 0.237064)
(1.14119 -8.31691e-07 0.270165)
(1.19892 -9.37388e-07 0.30886)
(1.26338 -6.80682e-07 0.354071)
(1.33572 -9.6095e-07 0.407983)
(1.41667 -1.92427e-06 0.472935)
(1.50698 -1.76814e-06 0.551847)
(1.60725 -7.44033e-07 0.648332)
(1.71776 1.00359e-07 0.766938)
(1.8381 4.26269e-07 0.913374)
(1.96668 4.40353e-07 1.0947)
(2.09985 3.58255e-07 1.31946)
(2.23066 2.78951e-07 1.59763)
(2.3464 2.27477e-07 1.94016)
(2.42702 2.03817e-07 2.35784)
(2.43141 2.08578e-07 2.86015)
(2.31247 2.63983e-07 3.43676)
(1.87939 4.55111e-07 4.1115)
(1.48218 1.2637e-06 4.86931)
(7.8952 6.78321e-08 -1.49647)
(7.34721 3.83959e-06 -1.15884)
(6.88365 4.47614e-06 -0.742733)
(6.37674 2.26081e-06 -0.419856)
(5.89321 -6.2059e-07 -0.242092)
(5.50179 -1.99436e-06 -0.166439)
(5.19847 -1.78178e-06 -0.147121)
(4.97234 -1.16566e-06 -0.153037)
(4.81233 -7.98235e-07 -0.166162)
(4.70596 -6.04379e-07 -0.181543)
(4.64239 -4.09233e-07 -0.200929)
(4.61293 -1.86263e-07 -0.227185)
(4.60986 7.96391e-10 -0.261349)
(4.62681 1.08664e-07 -0.301804)
(4.65421 1.38683e-07 -0.341949)
(4.68051 1.24915e-07 -0.379923)
(4.70143 9.43896e-08 -0.415861)
(4.71457 5.90524e-08 -0.44643)
(4.71733 2.82881e-08 -0.47115)
(4.70909 5.20773e-09 -0.490161)
(4.68999 -9.66139e-09 -0.503912)
(4.66062 -1.72858e-08 -0.513011)
(4.62183 -1.97619e-08 -0.51806)
(4.57461 -1.96806e-08 -0.51962)
(4.51995 -1.92743e-08 -0.518194)
(4.45887 -1.97683e-08 -0.514226)
(4.39234 -2.12203e-08 -0.508111)
(4.32126 -2.28588e-08 -0.5002)
(4.24651 -2.36859e-08 -0.490802)
(4.16885 -2.30373e-08 -0.480193)
(4.08902 -2.08742e-08 -0.468619)
(4.00766 -1.77256e-08 -0.456299)
(3.92533 -1.43963e-08 -0.443428)
(3.84255 -1.16309e-08 -0.430175)
(3.75976 -9.90777e-09 -0.416693)
(3.67735 -9.25565e-09 -0.403109)
(3.59563 -9.40755e-09 -0.389537)
(3.51488 -9.98137e-09 -0.376071)
(3.43533 -1.05343e-08 -0.36279)
(3.35715 -1.07635e-08 -0.349759)
(3.28051 -1.05769e-08 -0.337031)
(3.2055 -1.00423e-08 -0.324647)
(3.13222 -9.30324e-09 -0.312639)
(3.06071 -8.52021e-09 -0.30103)
(2.99102 -7.8285e-09 -0.289837)
(2.92316 -7.31173e-09 -0.279071)
(2.85713 -6.99471e-09 -0.268735)
(2.79292 -6.84894e-09 -0.258831)
(2.73051 -6.8126e-09 -0.249357)
(2.66986 -6.81213e-09 -0.240306)
(2.61094 -6.77858e-09 -0.231672)
(2.55371 -6.65776e-09 -0.223445)
(2.49811 -6.41491e-09 -0.215612)
(2.4441 -6.03419e-09 -0.208163)
(2.39162 -5.51478e-09 -0.201083)
(2.34063 -4.86775e-09 -0.194358)
(2.29106 -4.1127e-09 -0.187974)
(2.24285 -3.27463e-09 -0.181916)
(2.19597 -2.38184e-09 -0.176167)
(2.15035 -1.46298e-09 -0.170714)
(2.10595 -5.44598e-10 -0.16554)
(2.06271 3.53433e-10 -0.16063)
(2.02058 1.22174e-09 -0.155969)
(1.97953 2.06491e-09 -0.151542)
(1.9395 2.90444e-09 -0.147334)
(1.90046 3.77692e-09 -0.143332)
(1.86237 4.72702e-09 -0.13952)
(1.82518 5.80058e-09 -0.135885)
(1.78887 7.03277e-09 -0.132415)
(1.7534 8.43928e-09 -0.129097)
(1.71875 1.00109e-08 -0.125919)
(1.68488 1.17098e-08 -0.122869)
(1.65177 1.34648e-08 -0.119936)
(1.61939 1.51687e-08 -0.117111)
(1.58773 1.66704e-08 -0.114384)
(1.55676 1.77772e-08 -0.111744)
(1.52646 1.82676e-08 -0.109185)
(1.49683 1.79238e-08 -0.106698)
(1.46784 1.65714e-08 -0.104275)
(1.43948 1.41038e-08 -0.10191)
(1.41174 1.04563e-08 -0.0995973)
(1.38461 5.52974e-09 -0.0973309)
(1.35808 -8.8815e-10 -0.0951058)
(1.33214 -9.07902e-09 -0.0929178)
(1.30678 -1.91001e-08 -0.0907628)
(1.28199 -3.02176e-08 -0.0886376)
(1.25777 -4.03094e-08 -0.0865392)
(1.23411 -4.57784e-08 -0.0844652)
(1.21101 -4.2597e-08 -0.0824138)
(1.18847 -2.87137e-08 -0.0803834)
(1.16646 -7.06518e-09 -0.0783729)
(1.145 1.26931e-08 -0.0763815)
(1.12408 1.61088e-08 -0.074409)
(1.10369 -9.25247e-09 -0.072455)
(1.08383 -6.37785e-08 -0.0705199)
(1.06448 -1.28009e-07 -0.068604)
(1.04566 -1.64837e-07 -0.0667081)
(1.02735 -1.37468e-07 -0.0648329)
(1.00954 -4.0111e-08 -0.06298)
(0.99222 7.68219e-08 -0.0611514)
(0.975386 1.17795e-07 -0.0593513)
(0.959019 1.0124e-08 -0.0575881)
(0.943102 -2.00902e-07 -0.0558796)
(0.927612 -3.38474e-07 -0.0542612)
(0.912569 -2.57442e-07 -0.052798)
(0.897961 -6.73461e-08 -0.0515402)
(0.884189 3.50505e-08 -0.0506037)
(0.871343 -1.77983e-08 -0.0492137)
(0.858639 -5.30221e-07 -0.0473113)
(0.846062 -7.48722e-07 -0.0455478)
(0.833953 6.61487e-07 -0.0437487)
(0.822273 8.66278e-07 -0.0420413)
(0.810988 -1.40033e-06 -0.0403442)
(0.800093 -1.07645e-06 -0.0387216)
(0.78964 1.53024e-06 -0.0371022)
(0.779585 1.30343e-08 -0.0355109)
(0.769907 -1.49026e-06 -0.0339542)
(0.760606 -6.22219e-07 -0.0324381)
(0.75169 4.94437e-07 -0.0309589)
(0.743143 6.81118e-07 -0.0295198)
(0.734945 5.09511e-07 -0.0281267)
(0.72708 4.01319e-07 -0.0267893)
(0.719529 2.18433e-07 -0.0255267)
(0.712299 -9.17464e-08 -0.0243758)
(0.705384 -2.85536e-07 -0.0233557)
(0.699 -1.31188e-07 -0.0225316)
(0.693243 3.36078e-07 -0.0214632)
(0.687497 5.24843e-07 -0.0200573)
(0.681863 3.28319e-08 -0.0190106)
(0.676684 -4.79291e-07 -0.0179564)
(0.671774 -5.05646e-07 -0.0169453)
(0.667167 2.9125e-07 -0.0159392)
(0.662828 3.71283e-07 -0.0149442)
(0.658756 -3.95553e-08 -0.0139613)
(0.654944 -2.41043e-07 -0.0129923)
(0.65139 -1.92055e-07 -0.0120363)
(0.648087 -1.44027e-07 -0.0110915)
(0.645028 -1.52257e-07 -0.0101569)
(0.642207 -7.8834e-08 -0.00923488)
(0.639612 1.3535e-07 -0.00833192)
(0.637246 2.94112e-07 -0.00746443)
(0.635123 1.12442e-07 -0.00664664)
(0.633277 -4.10657e-07 -0.00586351)
(0.63185 -8.90405e-07 -0.00509733)
(0.63067 -6.89663e-07 -0.00405902)
(0.629657 3.72287e-07 -0.00305782)
(0.628891 1.05068e-06 -0.00204016)
(0.628399 -2.13206e-09 -0.00107213)
(0.628233 -1.35316e-06 -7.04297e-05)
(0.628382 -1.96077e-06 0.000899421)
(0.628875 -4.00165e-07 0.00198956)
(0.629699 1.75808e-06 0.0030437)
(0.630938 8.53304e-07 0.00414952)
(0.632583 -7.22665e-07 0.0053883)
(0.63463 -1.38159e-06 0.00669325)
(0.637117 -3.5318e-07 0.00819585)
(0.639947 1.47514e-06 0.00976819)
(0.64326 5.44782e-07 0.0112764)
(0.647341 -5.3815e-07 0.0128864)
(0.652104 -5.5354e-07 0.0148606)
(0.657337 -5.81416e-07 0.0172148)
(0.663064 -4.66519e-07 0.0197917)
(0.669382 -3.43538e-08 0.0224619)
(0.676513 -2.02222e-07 0.0251304)
(0.68459 -2.80967e-07 0.0280576)
(0.693628 -6.06568e-09 0.0312828)
(0.703606 5.60279e-07 0.0348562)
(0.714865 2.16034e-07 0.0386629)
(0.727237 -2.65717e-07 0.0432698)
(0.740793 3.84894e-08 0.0480657)
(0.756012 5.4934e-07 0.0534693)
(0.772872 -2.21701e-07 0.0595292)
(0.791537 -5.83179e-07 0.0664049)
(0.812177 -1.7458e-07 0.0741648)
(0.834782 2.56704e-07 0.0829743)
(0.859867 -9.67125e-08 0.0924357)
(0.88806 -6.81099e-07 0.103213)
(0.919529 -6.47904e-07 0.115576)
(0.954726 5.08188e-07 0.129875)
(0.994164 6.60829e-07 0.146527)
(1.03842 5.6954e-08 0.166116)
(1.08812 -4.76248e-07 0.189361)
(1.14354 -6.75047e-07 0.217168)
(1.20496 -3.51157e-07 0.249683)
(1.2744 5.70686e-07 0.287131)
(1.35385 1.01331e-06 0.332226)
(1.44439 -2.06723e-07 0.387287)
(1.54763 -6.92179e-07 0.455181)
(1.6654 -1.67293e-07 0.539535)
(1.79968 3.57853e-07 0.645101)
(1.95254 4.62439e-07 0.778102)
(2.12581 3.351e-07 0.946623)
(2.32086 2.1123e-07 1.16095)
(2.53825 1.64423e-07 1.43396)
(2.77735 1.64936e-07 1.78074)
(3.0402 1.7252e-07 2.21863)
(3.32203 1.72955e-07 2.76206)
(3.70449 1.83881e-07 3.41321)
(4.03416 1.77129e-07 4.10373)
(8.06365 3.28258e-07 5.16681)
(7.89519 6.78321e-08 -1.49646)
(7.34724 3.83958e-06 -1.15886)
(6.88371 4.47618e-06 -0.742758)
(6.37681 2.26086e-06 -0.419877)
(5.89328 -6.20606e-07 -0.242102)
(5.50185 -1.99441e-06 -0.16644)
(5.19852 -1.78181e-06 -0.147118)
(4.97237 -1.16568e-06 -0.153033)
(4.81236 -7.98244e-07 -0.166158)
(4.70597 -6.04383e-07 -0.18154)
(4.6424 -4.09235e-07 -0.200926)
(4.61293 -1.86264e-07 -0.227182)
(4.60987 7.96392e-10 -0.261345)
(4.62681 1.08665e-07 -0.301801)
(4.65421 1.38683e-07 -0.341947)
(4.68051 1.24915e-07 -0.379921)
(4.70143 9.43896e-08 -0.41586)
(4.71457 5.90524e-08 -0.44643)
(4.71733 2.82881e-08 -0.47115)
(4.70909 5.20773e-09 -0.490161)
(4.68999 -9.66139e-09 -0.503913)
(4.66061 -1.72857e-08 -0.513011)
(4.62183 -1.97619e-08 -0.518061)
(4.57461 -1.96806e-08 -0.519621)
(4.51995 -1.92743e-08 -0.518194)
(4.45887 -1.97683e-08 -0.514226)
(4.39234 -2.12202e-08 -0.508112)
(4.32126 -2.28588e-08 -0.5002)
(4.24651 -2.36859e-08 -0.490802)
(4.16885 -2.30373e-08 -0.480193)
(4.08902 -2.08742e-08 -0.46862)
(4.00766 -1.77255e-08 -0.4563)
(3.92533 -1.43963e-08 -0.443428)
(3.84255 -1.16309e-08 -0.430176)
(3.75976 -9.90776e-09 -0.416693)
(3.67735 -9.25565e-09 -0.403109)
(3.59563 -9.40754e-09 -0.389537)
(3.51488 -9.98136e-09 -0.376071)
(3.43533 -1.05343e-08 -0.36279)
(3.35715 -1.07635e-08 -0.349759)
(3.28051 -1.05769e-08 -0.337031)
(3.2055 -1.00423e-08 -0.324647)
(3.13222 -9.30323e-09 -0.312639)
(3.06071 -8.5202e-09 -0.30103)
(2.99102 -7.82849e-09 -0.289837)
(2.92316 -7.31172e-09 -0.279071)
(2.85713 -6.99471e-09 -0.268735)
(2.79292 -6.84893e-09 -0.258831)
(2.73051 -6.8126e-09 -0.249357)
(2.66986 -6.81212e-09 -0.240306)
(2.61094 -6.77857e-09 -0.231672)
(2.55371 -6.65775e-09 -0.223445)
(2.49811 -6.4149e-09 -0.215612)
(2.4441 -6.03418e-09 -0.208163)
(2.39162 -5.51478e-09 -0.201083)
(2.34063 -4.86774e-09 -0.194358)
(2.29105 -4.11269e-09 -0.187974)
(2.24285 -3.27462e-09 -0.181916)
(2.19597 -2.38184e-09 -0.176167)
(2.15035 -1.46298e-09 -0.170714)
(2.10595 -5.44597e-10 -0.16554)
(2.06271 3.53433e-10 -0.16063)
(2.02058 1.22174e-09 -0.155969)
(1.97953 2.06491e-09 -0.151542)
(1.9395 2.90444e-09 -0.147334)
(1.90046 3.77691e-09 -0.143331)
(1.86237 4.72702e-09 -0.13952)
(1.82518 5.80057e-09 -0.135885)
(1.78887 7.03276e-09 -0.132415)
(1.7534 8.43927e-09 -0.129097)
(1.71875 1.00109e-08 -0.125919)
(1.68488 1.17098e-08 -0.122869)
(1.65176 1.34648e-08 -0.119936)
(1.61939 1.51686e-08 -0.117111)
(1.58773 1.66704e-08 -0.114384)
(1.55676 1.77772e-08 -0.111744)
(1.52646 1.82676e-08 -0.109185)
(1.49683 1.79238e-08 -0.106697)
(1.46784 1.65714e-08 -0.104275)
(1.43948 1.41038e-08 -0.10191)
(1.41174 1.04563e-08 -0.0995973)
(1.38461 5.52974e-09 -0.0973309)
(1.35808 -8.88149e-10 -0.0951058)
(1.33214 -9.07901e-09 -0.0929177)
(1.30678 -1.91001e-08 -0.0907628)
(1.28199 -3.02176e-08 -0.0886375)
(1.25777 -4.03094e-08 -0.0865391)
(1.23411 -4.57784e-08 -0.0844652)
(1.21101 -4.2597e-08 -0.0824138)
(1.18847 -2.87137e-08 -0.0803834)
(1.16646 -7.06518e-09 -0.0783729)
(1.145 1.26931e-08 -0.0763815)
(1.12408 1.61088e-08 -0.0744089)
(1.10369 -9.25247e-09 -0.072455)
(1.08383 -6.37785e-08 -0.0705199)
(1.06448 -1.28009e-07 -0.0686041)
(1.04566 -1.64837e-07 -0.0667082)
(1.02735 -1.37468e-07 -0.0648331)
(1.00954 -4.0111e-08 -0.0629801)
(0.99222 7.68219e-08 -0.0611515)
(0.975386 1.17795e-07 -0.0593515)
(0.959018 1.0124e-08 -0.0575886)
(0.943101 -2.00902e-07 -0.0558804)
(0.927611 -3.38474e-07 -0.0542618)
(0.912568 -2.57439e-07 -0.0527981)
(0.89796 -6.73438e-08 -0.0515404)
(0.884188 3.50481e-08 -0.0506049)
(0.87134 -1.77972e-08 -0.0492151)
(0.858636 -5.30236e-07 -0.047312)
(0.846063 -7.48768e-07 -0.0455482)
(0.833957 6.61432e-07 -0.0437486)
(0.822271 8.66347e-07 -0.04204)
(0.810981 -1.40064e-06 -0.040343)
(0.800093 -1.07674e-06 -0.0387195)
(0.789646 1.53063e-06 -0.0370992)
(0.779585 1.30376e-08 -0.0355104)
(0.769902 -1.49063e-06 -0.0339554)
(0.760604 -6.22375e-07 -0.0324378)
(0.75169 4.94561e-07 -0.0309577)
(0.743143 6.81288e-07 -0.0295191)
(0.734944 5.09639e-07 -0.0281265)
(0.727078 4.0142e-07 -0.0267893)
(0.719527 2.18489e-07 -0.0255267)
(0.712298 -9.17694e-08 -0.0243758)
(0.705382 -2.85601e-07 -0.0233561)
(0.698999 -1.31209e-07 -0.0225325)
(0.693241 3.36072e-07 -0.0214643)
(0.687496 5.24704e-07 -0.020058)
(0.681863 3.28229e-08 -0.0190107)
(0.676683 -4.79161e-07 -0.0179562)
(0.671773 -5.05509e-07 -0.0169452)
(0.667166 2.91172e-07 -0.0159393)
(0.662827 3.71183e-07 -0.0149441)
(0.658755 -3.95448e-08 -0.0139611)
(0.654944 -2.40979e-07 -0.012992)
(0.651389 -1.92004e-07 -0.0120359)
(0.648086 -1.43988e-07 -0.011091)
(0.645027 -1.52217e-07 -0.0101565)
(0.642205 -7.8813e-08 -0.00923473)
(0.63961 1.35314e-07 -0.0083319)
(0.637245 2.94035e-07 -0.00746427)
(0.635121 1.12414e-07 -0.00664628)
(0.633276 -4.10562e-07 -0.00586334)
(0.631849 -8.90275e-07 -0.00509784)
(0.630668 -6.89665e-07 -0.00406006)
(0.629654 3.72267e-07 -0.00305884)
(0.628889 1.05051e-06 -0.00204072)
(0.628399 -2.13133e-09 -0.00107209)
(0.628234 -1.35305e-06 -6.95278e-05)
(0.628381 -1.96106e-06 0.000899864)
(0.628875 -4.00188e-07 0.0019895)
(0.629698 1.75783e-06 0.00304409)
(0.630937 8.53011e-07 0.00414938)
(0.632585 -7.22601e-07 0.00538951)
(0.634633 -1.38178e-06 0.00669408)
(0.637119 -3.53212e-07 0.0081956)
(0.639947 1.47521e-06 0.00976876)
(0.643258 5.44822e-07 0.0112764)
(0.647343 -5.38205e-07 0.0128866)
(0.652105 -5.53634e-07 0.0148612)
(0.657337 -5.81546e-07 0.0172153)
(0.663067 -4.66577e-07 0.019792)
(0.669383 -3.43477e-08 0.0224621)
(0.67651 -2.02172e-07 0.0251307)
(0.684589 -2.80895e-07 0.0280577)
(0.693629 -6.0642e-09 0.0312823)
(0.703606 5.6017e-07 0.0348553)
(0.714864 2.1602e-07 0.0386615)
(0.727237 -2.65754e-07 0.043269)
(0.740794 3.84945e-08 0.0480652)
(0.756013 5.4941e-07 0.0534692)
(0.772872 -2.21728e-07 0.0595292)
(0.791536 -5.83235e-07 0.0664052)
(0.812177 -1.7458e-07 0.0741653)
(0.834782 2.56656e-07 0.0829749)
(0.859868 -9.66957e-08 0.0924364)
(0.888059 -6.80985e-07 0.103214)
(0.919528 -6.47797e-07 0.115576)
(0.954727 5.08104e-07 0.129875)
(0.994164 6.60722e-07 0.146526)
(1.03842 5.69451e-08 0.166114)
(1.08811 -4.76183e-07 0.189359)
(1.14354 -6.74997e-07 0.217166)
(1.20496 -3.51165e-07 0.249683)
(1.2744 5.70691e-07 0.287131)
(1.35385 1.01331e-06 0.332225)
(1.44439 -2.06723e-07 0.387286)
(1.54764 -6.92179e-07 0.45518)
(1.6654 -1.67293e-07 0.539534)
(1.79968 3.57854e-07 0.6451)
(1.95254 4.62439e-07 0.778101)
(2.12581 3.351e-07 0.946622)
(2.32086 2.1123e-07 1.16095)
(2.53825 1.64423e-07 1.43396)
(2.77735 1.64936e-07 1.78073)
(3.0402 1.72521e-07 2.21863)
(3.32203 1.72955e-07 2.76206)
(3.70449 1.83881e-07 3.41321)
(4.03416 1.77129e-07 4.10373)
(8.06365 3.28258e-07 5.1668)
(8.12088 2.99852e-08 -0.0131429)
(6.54776 2.76306e-06 0.00157336)
(6.50735 2.48169e-06 -0.0415646)
(6.39774 3.60746e-07 -0.0814518)
(6.20991 -1.12699e-06 -0.121774)
(6.03971 -1.26978e-06 -0.138556)
(5.87283 -7.51312e-07 -0.139376)
(5.71181 -4.17155e-07 -0.1391)
(5.5733 -3.53717e-07 -0.144221)
(5.46848 -3.13839e-07 -0.158083)
(5.4 -1.9601e-07 -0.182948)
(5.36489 -3.62226e-08 -0.218937)
(5.35628 8.77488e-08 -0.26389)
(5.36766 1.41476e-07 -0.313233)
(5.38439 1.29509e-07 -0.35488)
(5.38746 9.43043e-08 -0.389221)
(5.37704 5.91241e-08 -0.419495)
(5.35505 2.58143e-08 -0.441326)
(5.3203 1.43555e-09 -0.456362)
(5.27377 -1.39903e-08 -0.465948)
(5.21657 -2.18681e-08 -0.471002)
(5.14994 -2.41511e-08 -0.472316)
(5.07518 -2.33352e-08 -0.470542)
(4.99353 -2.18582e-08 -0.466224)
(4.9062 -2.14085e-08 -0.45982)
(4.81428 -2.25197e-08 -0.451721)
(4.71881 -2.46386e-08 -0.442261)
(4.6207 -2.66156e-08 -0.431724)
(4.52078 -2.73451e-08 -0.420355)
(4.4198 -2.62714e-08 -0.408365)
(4.31839 -2.35582e-08 -0.395935)
(4.21713 -1.99092e-08 -0.383222)
(4.1165 -1.62123e-08 -0.370362)
(4.01691 -1.32188e-08 -0.357471)
(3.91872 -1.13453e-08 -0.344648)
(3.8222 -1.05718e-08 -0.331974)
(3.72759 -1.06046e-08 -0.319519)
(3.63507 -1.10281e-08 -0.307337)
(3.54478 -1.13978e-08 -0.295474)
(3.45681 -1.14327e-08 -0.283962)
(3.37123 -1.1069e-08 -0.272828)
(3.28809 -1.03967e-08 -0.26209)
(3.20738 -9.57319e-09 -0.251758)
(3.12912 -8.76293e-09 -0.24184)
(3.05327 -8.09561e-09 -0.232337)
(2.97979 -7.64629e-09 -0.223246)
(2.90865 -7.42697e-09 -0.214565)
(2.83977 -7.39715e-09 -0.206284)
(2.77311 -7.48352e-09 -0.198396)
(2.70858 -7.60176e-09 -0.19089)
(2.64613 -7.67284e-09 -0.183755)
(2.58566 -7.63482e-09 -0.176977)
(2.52711 -7.44579e-09 -0.170545)
(2.47041 -7.0852e-09 -0.164444)
(2.41546 -6.5498e-09 -0.158662)
(2.36221 -5.84998e-09 -0.153183)
(2.31058 -5.00642e-09 -0.147994)
(2.26049 -4.04636e-09 -0.14308)
(2.21187 -3.00165e-09 -0.138428)
(2.16466 -1.90459e-09 -0.134024)
(2.1188 -7.84014e-10 -0.129854)
(2.07422 3.38041e-10 -0.125904)
(2.03086 1.45295e-09 -0.122161)
(1.98867 2.56712e-09 -0.118612)
(1.9476 3.70527e-09 -0.115245)
(1.90759 4.90683e-09 -0.112048)
(1.8686 6.21958e-09 -0.109008)
(1.83059 7.6888e-09 -0.106114)
(1.79351 9.34751e-09 -0.103356)
(1.75732 1.12053e-08 -0.100722)
(1.722 1.32437e-08 -0.0982033)
(1.68751 1.54091e-08 -0.0957895)
(1.65382 1.76071e-08 -0.0934719)
(1.6209 1.96965e-08 -0.0912419)
(1.58873 2.14825e-08 -0.0890915)
(1.55728 2.27243e-08 -0.0870132)
(1.52653 2.31572e-08 -0.0849999)
(1.49647 2.2535e-08 -0.0830452)
(1.46708 2.06723e-08 -0.0811431)
(1.43835 1.74539e-08 -0.079288)
(1.41025 1.27831e-08 -0.0774751)
(1.38278 6.48686e-09 -0.0756996)
(1.35592 -1.73849e-09 -0.0739576)
(1.32967 -1.2185e-08 -0.0722454)
(1.30402 -2.46713e-08 -0.0705599)
(1.27896 -3.78341e-08 -0.0688983)
(1.25448 -4.85698e-08 -0.0672582)
(1.23057 -5.23368e-08 -0.0656376)
(1.20724 -4.49402e-08 -0.0640351)
(1.18447 -2.57371e-08 -0.0624492)
(1.16225 -9.0457e-10 -0.0608793)
(1.14059 1.57639e-08 -0.0593245)
(1.11948 7.13002e-09 -0.0577846)
(1.09891 -3.73878e-08 -0.0562593)
(1.07888 -1.0973e-07 -0.0547486)
(1.05938 -1.76888e-07 -0.0532526)
(1.0404 -1.9033e-07 -0.0517717)
(1.02195 -1.1647e-07 -0.0503061)
(1.00401 2.1721e-08 -0.0488561)
(0.986575 1.25452e-07 -0.0474217)
(0.969628 6.93224e-08 -0.0460036)
(0.95315 -1.72535e-07 -0.0446049)
(0.937116 -4.1898e-07 -0.0432387)
(0.921476 -3.94509e-07 -0.0419475)
(0.906222 -9.62813e-08 -0.0408284)
(0.891233 -2.78511e-08 -0.040048)
(0.877363 -4.22561e-07 -0.0399579)
(0.864795 -5.4474e-07 -0.0389281)
(0.851958 -2.52793e-07 -0.0370513)
(0.839077 1.54379e-07 -0.0356302)
(0.826849 1.13946e-06 -0.0340598)
(0.815019 5.52194e-07 -0.0327903)
(0.803601 -1.21566e-06 -0.03145)
(0.792614 1.25535e-09 -0.0301675)
(0.782111 2.55945e-06 -0.0288439)
(0.771993 -1.2219e-07 -0.0275627)
(0.76226 -1.76937e-06 -0.0263256)
(0.752919 -4.05596e-07 -0.0251201)
(0.743976 9.44382e-07 -0.0239407)
(0.735413 1.16978e-06 -0.0227905)
(0.727206 9.22191e-07 -0.021672)
(0.719329 5.7464e-07 -0.0205909)
(0.711747 1.28937e-07 -0.0195696)
(0.704449 -1.55206e-07 -0.0186664)
(0.697355 -7.97066e-08 -0.0179635)
(0.690967 3.09691e-08 -0.0176819)
(0.685534 3.43353e-08 -0.0168839)
(0.679765 -9.66201e-08 -0.0154021)
(0.673922 -6.63518e-07 -0.0147028)
(0.668795 -9.51151e-07 -0.0139147)
(0.663904 -6.88686e-07 -0.0131451)
(0.659318 2.79347e-07 -0.0123615)
(0.654989 2.91555e-07 -0.0115802)
(0.650924 -1.81016e-07 -0.0108069)
(0.64712 -3.65336e-07 -0.0100446)
(0.643574 -2.82913e-07 -0.00929158)
(0.64028 -2.08978e-07 -0.00854458)
(0.637231 -1.51365e-07 -0.00780055)
(0.634415 4.74199e-08 -0.00705988)
(0.631812 3.31096e-07 -0.00633089)
(0.629411 3.27527e-07 -0.00563832)
(0.627214 -1.91337e-07 -0.00502685)
(0.625236 -7.90497e-07 -0.00449583)
(0.623858 -8.03138e-07 -0.00411112)
(0.622719 1.1482e-07 -0.00313893)
(0.621604 1.24211e-06 -0.00229265)
(0.620757 1.01909e-06 -0.00147829)
(0.620195 -7.83566e-07 -0.000746031)
(0.619955 -1.61556e-06 -2.71481e-05)
(0.620049 -1.13302e-06 0.000600199)
(0.620478 6.97699e-07 0.0015605)
(0.621156 1.90569e-06 0.00224792)
(0.622347 1.81275e-07 0.00303086)
(0.62392 -9.07613e-07 0.00393411)
(0.625894 -7.90219e-07 0.00484396)
(0.628325 5.30752e-07 0.00615439)
(0.630887 2.04349e-06 0.0073815)
(0.633907 5.52323e-07 0.00837589)
(0.637938 -8.02409e-07 0.00939866)
(0.642778 -6.77206e-07 0.0108635)
(0.647936 -4.97753e-07 0.0128656)
(0.653423 -5.88995e-07 0.0150586)
(0.65943 -5.2556e-07 0.0171899)
(0.666329 -8.65901e-07 0.0190455)
(0.674305 -6.57099e-07 0.0212399)
(0.683202 -1.97473e-08 0.0237354)
(0.69288 8.42763e-07 0.0264893)
(0.704073 7.12203e-07 0.0291881)
(0.716245 3.31357e-07 0.0329965)
(0.729421 4.35719e-07 0.0365628)
(0.744517 7.36281e-07 0.0406525)
(0.761262 -1.65776e-07 0.0452992)
(0.779844 -6.96777e-07 0.0506726)
(0.800491 -5.49493e-07 0.056807)
(0.822871 -2.18422e-07 0.0639648)
(0.847744 -7.00637e-07 0.0710212)
(0.876087 -1.07574e-06 0.0792087)
(0.907781 -5.2708e-07 0.0886912)
(0.943342 9.48439e-07 0.0997088)
(0.983397 9.2259e-07 0.112573)
(1.0287 4.46776e-08 0.12783)
(1.08016 -3.85247e-07 0.146305)
(1.13777 -6.32204e-08 0.169288)
(1.20108 6.95818e-07 0.196028)
(1.27337 1.62396e-06 0.225517)
(1.35767 1.65554e-06 0.261476)
(1.45494 1.15034e-07 0.30602)
(1.56752 -4.63303e-07 0.361651)
(1.69831 8.47076e-08 0.431637)
(1.85095 5.73438e-07 0.520401)
(2.02981 5.74054e-07 0.63387)
(2.2401 3.50052e-07 0.779875)
(2.48816 1.89235e-07 0.968414)
(2.78158 1.55718e-07 1.21178)
(3.13074 1.81918e-07 1.52285)
(3.55245 1.99274e-07 1.91419)
(4.06845 1.85822e-07 2.379)
(4.77215 1.65004e-07 2.90498)
(5.6122 1.01434e-07 3.22312)
(11.1057 2.12619e-07 3.5801)
(8.12088 2.99852e-08 -0.0131443)
(6.54776 2.76305e-06 0.00155674)
(6.50734 2.4817e-06 -0.0415898)
(6.39773 3.60749e-07 -0.0814737)
(6.2099 -1.127e-06 -0.121787)
(6.03971 -1.2698e-06 -0.13856)
(5.87284 -7.51327e-07 -0.139374)
(5.71183 -4.17163e-07 -0.139094)
(5.57331 -3.53722e-07 -0.144214)
(5.46849 -3.13843e-07 -0.158077)
(5.40001 -1.96012e-07 -0.182942)
(5.36489 -3.62227e-08 -0.218931)
(5.35628 8.77491e-08 -0.263885)
(5.36766 1.41476e-07 -0.313229)
(5.38439 1.29509e-07 -0.354878)
(5.38746 9.43043e-08 -0.389219)
(5.37703 5.91241e-08 -0.419494)
(5.35505 2.58143e-08 -0.441326)
(5.3203 1.43555e-09 -0.456362)
(5.27377 -1.39903e-08 -0.465949)
(5.21657 -2.18681e-08 -0.471003)
(5.14994 -2.41511e-08 -0.472317)
(5.07518 -2.33352e-08 -0.470543)
(4.99353 -2.18582e-08 -0.466224)
(4.9062 -2.14085e-08 -0.45982)
(4.81428 -2.25197e-08 -0.451721)
(4.71881 -2.46386e-08 -0.442261)
(4.6207 -2.66155e-08 -0.431724)
(4.52078 -2.73451e-08 -0.420355)
(4.4198 -2.62714e-08 -0.408365)
(4.31839 -2.35582e-08 -0.395935)
(4.21713 -1.99092e-08 -0.383222)
(4.1165 -1.62123e-08 -0.370362)
(4.01691 -1.32188e-08 -0.357471)
(3.91872 -1.13453e-08 -0.344648)
(3.8222 -1.05718e-08 -0.331974)
(3.72759 -1.06046e-08 -0.319519)
(3.63507 -1.10281e-08 -0.307337)
(3.54478 -1.13978e-08 -0.295474)
(3.45681 -1.14327e-08 -0.283962)
(3.37123 -1.1069e-08 -0.272828)
(3.28808 -1.03966e-08 -0.26209)
(3.20738 -9.57318e-09 -0.251758)
(3.12912 -8.76292e-09 -0.24184)
(3.05327 -8.0956e-09 -0.232337)
(2.97979 -7.64628e-09 -0.223247)
(2.90865 -7.42696e-09 -0.214565)
(2.83977 -7.39714e-09 -0.206284)
(2.77311 -7.48351e-09 -0.198396)
(2.70858 -7.60175e-09 -0.19089)
(2.64613 -7.67283e-09 -0.183755)
(2.58566 -7.63481e-09 -0.176977)
(2.52711 -7.44578e-09 -0.170545)
(2.47041 -7.08519e-09 -0.164444)
(2.41546 -6.54979e-09 -0.158662)
(2.36221 -5.84997e-09 -0.153183)
(2.31058 -5.00642e-09 -0.147994)
(2.26049 -4.04635e-09 -0.14308)
(2.21187 -3.00165e-09 -0.138428)
(2.16466 -1.90459e-09 -0.134024)
(2.1188 -7.84013e-10 -0.129854)
(2.07422 3.38041e-10 -0.125904)
(2.03086 1.45295e-09 -0.122161)
(1.98867 2.56711e-09 -0.118612)
(1.9476 3.70526e-09 -0.115245)
(1.90759 4.90682e-09 -0.112048)
(1.8686 6.21957e-09 -0.109008)
(1.83058 7.68879e-09 -0.106114)
(1.7935 9.3475e-09 -0.103356)
(1.75732 1.12053e-08 -0.100722)
(1.722 1.32437e-08 -0.0982033)
(1.68751 1.54091e-08 -0.0957895)
(1.65382 1.76071e-08 -0.0934719)
(1.6209 1.96965e-08 -0.0912419)
(1.58872 2.14825e-08 -0.0890915)
(1.55728 2.27243e-08 -0.0870131)
(1.52653 2.31572e-08 -0.0849999)
(1.49647 2.2535e-08 -0.0830452)
(1.46708 2.06723e-08 -0.081143)
(1.43835 1.74539e-08 -0.079288)
(1.41025 1.27831e-08 -0.077475)
(1.38278 6.48685e-09 -0.0756996)
(1.35592 -1.73849e-09 -0.0739576)
(1.32967 -1.2185e-08 -0.0722454)
(1.30402 -2.46713e-08 -0.0705599)
(1.27896 -3.7834e-08 -0.0688982)
(1.25448 -4.85698e-08 -0.0672581)
(1.23057 -5.23368e-08 -0.0656376)
(1.20724 -4.49402e-08 -0.064035)
(1.18447 -2.57371e-08 -0.0624492)
(1.16225 -9.0457e-10 -0.0608793)
(1.14059 1.57639e-08 -0.0593246)
(1.11948 7.13002e-09 -0.0577846)
(1.09891 -3.73878e-08 -0.0562593)
(1.07888 -1.0973e-07 -0.0547486)
(1.05938 -1.76888e-07 -0.0532526)
(1.0404 -1.9033e-07 -0.0517717)
(1.02195 -1.1647e-07 -0.0503062)
(1.00401 2.1721e-08 -0.0488562)
(0.986575 1.25452e-07 -0.047422)
(0.969627 6.93224e-08 -0.046004)
(0.953149 -1.72535e-07 -0.0446056)
(0.937114 -4.1898e-07 -0.0432393)
(0.921475 -3.94507e-07 -0.0419475)
(0.906222 -9.62792e-08 -0.0408278)
(0.89123 -2.78493e-08 -0.0400477)
(0.87736 -4.22509e-07 -0.0399585)
(0.864792 -5.44709e-07 -0.0389275)
(0.851957 -2.52834e-07 -0.03705)
(0.839078 1.54407e-07 -0.0356297)
(0.826852 1.13911e-06 -0.0340596)
(0.815016 5.52304e-07 -0.0327917)
(0.803593 -1.21648e-06 -0.0314514)
(0.792615 1.25636e-09 -0.030164)
(0.782118 2.56153e-06 -0.028842)
(0.771991 -1.22288e-07 -0.027566)
(0.762255 -1.7708e-06 -0.0263285)
(0.752917 -4.05924e-07 -0.02512)
(0.743977 9.45146e-07 -0.0239398)
(0.735413 1.17073e-06 -0.0227903)
(0.727205 9.22939e-07 -0.0216724)
(0.719328 5.75107e-07 -0.0205914)
(0.711745 1.29041e-07 -0.0195702)
(0.704448 -1.55331e-07 -0.0186668)
(0.697353 -7.9767e-08 -0.0179641)
(0.690965 3.09868e-08 -0.0176829)
(0.685532 3.43382e-08 -0.016885)
(0.679764 -9.65519e-08 -0.0154029)
(0.673922 -6.62991e-07 -0.0147026)
(0.668795 -9.50389e-07 -0.0139147)
(0.663903 -6.88136e-07 -0.0131447)
(0.659316 2.79125e-07 -0.0123615)
(0.654987 2.91323e-07 -0.01158)
(0.650923 -1.80872e-07 -0.0108066)
(0.647119 -3.65047e-07 -0.0100442)
(0.643573 -2.8269e-07 -0.00929103)
(0.640279 -2.08813e-07 -0.00854398)
(0.637229 -1.51246e-07 -0.00780018)
(0.634413 4.73825e-08 -0.00705991)
(0.63181 3.30836e-07 -0.00633102)
(0.629409 3.2727e-07 -0.00563797)
(0.627212 -1.9119e-07 -0.00502595)
(0.625235 -7.89949e-07 -0.00449509)
(0.623857 -8.02828e-07 -0.00411111)
(0.622718 1.14846e-07 -0.00313899)
(0.621603 1.24232e-06 -0.00229203)
(0.620756 1.01888e-06 -0.00147753)
(0.620197 -7.8283e-07 -0.000744522)
(0.619957 -1.61505e-06 -2.6531e-05)
(0.620048 -1.1335e-06 0.000598173)
(0.620479 6.97942e-07 0.00156011)
(0.621156 1.90533e-06 0.00224638)
(0.622347 1.81105e-07 0.00303101)
(0.623925 -9.07322e-07 0.00393742)
(0.625899 -7.90563e-07 0.00484348)
(0.628328 5.31013e-07 0.00615446)
(0.630888 2.04443e-06 0.0073806)
(0.633906 5.52606e-07 0.00837652)
(0.637942 -8.02852e-07 0.00940135)
(0.642781 -6.77632e-07 0.0108639)
(0.647938 -4.98053e-07 0.0128651)
(0.653426 -5.89131e-07 0.0150574)
(0.65943 -5.25252e-07 0.0171868)
(0.666326 -8.65239e-07 0.0190447)
(0.674305 -6.56591e-07 0.0212413)
(0.683204 -1.97327e-08 0.0237371)
(0.692881 8.42245e-07 0.0264895)
(0.704072 7.12048e-07 0.0291875)
(0.716246 3.31514e-07 0.0329967)
(0.729423 4.35951e-07 0.0365634)
(0.744518 7.36671e-07 0.040653)
(0.761263 -1.65862e-07 0.0453005)
(0.779845 -6.97082e-07 0.0506739)
(0.800491 -5.49545e-07 0.056807)
(0.822872 -2.18292e-07 0.0639635)
(0.847745 -7.00183e-07 0.0710198)
(0.876086 -1.07504e-06 0.0792064)
(0.907779 -5.26737e-07 0.0886899)
(0.943342 9.47825e-07 0.099707)
(0.983396 9.21997e-07 0.112571)
(1.0287 4.46496e-08 0.127828)
(1.08016 -3.85029e-07 0.146302)
(1.13776 -6.31974e-08 0.169286)
(1.20108 6.95815e-07 0.196027)
(1.27337 1.62398e-06 0.225518)
(1.35767 1.65554e-06 0.261476)
(1.45494 1.15034e-07 0.306021)
(1.56752 -4.63303e-07 0.361651)
(1.69831 8.47077e-08 0.431637)
(1.85095 5.73439e-07 0.5204)
(2.02981 5.74055e-07 0.633869)
(2.2401 3.50052e-07 0.779874)
(2.48816 1.89235e-07 0.968413)
(2.78158 1.55718e-07 1.21178)
(3.13074 1.81918e-07 1.52284)
(3.55245 1.99275e-07 1.91419)
(4.06845 1.85822e-07 2.379)
(4.77215 1.65004e-07 2.90498)
(5.6122 1.01435e-07 3.22312)
(11.1057 2.12619e-07 3.5801)
(7.92093 2.356e-08 -0.124906)
(7.53039 1.21144e-06 0.062131)
(7.21211 6.38391e-07 0.357211)
(6.9175 -2.92362e-07 0.577016)
(6.66607 -7.72788e-07 0.630577)
(6.51116 -4.98267e-07 0.574082)
(6.40401 -1.48698e-07 0.46163)
(6.32414 -1.3832e-07 0.326191)
(6.26699 -3.39854e-07 0.186387)
(6.23256 -4.74768e-07 0.0521907)
(6.21808 -3.91008e-07 -0.0682095)
(6.21835 -2.07976e-07 -0.17298)
(6.22691 -4.8135e-08 -0.262615)
(6.24155 3.97949e-08 -0.333527)
(6.24315 4.96822e-08 -0.361449)
(6.2024 4.39811e-08 -0.367681)
(6.14063 3.15213e-08 -0.384326)
(6.06661 4.28271e-09 -0.396689)
(5.97898 -1.37719e-08 -0.403421)
(5.88064 -2.22755e-08 -0.405408)
(5.77383 -2.44345e-08 -0.403607)
(5.66019 -2.30429e-08 -0.39893)
(5.54125 -2.08315e-08 -0.392098)
(5.41833 -1.99352e-08 -0.383663)
(5.29262 -2.13883e-08 -0.374049)
(5.16519 -2.49433e-08 -0.363587)
(5.03698 -2.93454e-08 -0.352532)
(4.90878 -3.29768e-08 -0.341086)
(4.78131 -3.45637e-08 -0.329411)
(4.65514 -3.3637e-08 -0.317638)
(4.53078 -3.05877e-08 -0.305873)
(4.40864 -2.63582e-08 -0.294204)
(4.28904 -2.20136e-08 -0.282704)
(4.17225 -1.84405e-08 -0.271432)
(4.05846 -1.61024e-08 -0.260434)
(3.94783 -1.49902e-08 -0.249748)
(3.84045 -1.4767e-08 -0.239401)
(3.73638 -1.49204e-08 -0.229413)
(3.63565 -1.49658e-08 -0.219799)
(3.53824 -1.46203e-08 -0.210566)
(3.44414 -1.38399e-08 -0.201718)
(3.35328 -1.27435e-08 -0.193255)
(3.26561 -1.15229e-08 -0.185171)
(3.18104 -1.03712e-08 -0.177462)
(3.09949 -9.43648e-09 -0.170119)
(3.02086 -8.79853e-09 -0.163133)
(2.94505 -8.46161e-09 -0.156493)
(2.87195 -8.36963e-09 -0.150187)
(2.80146 -8.42605e-09 -0.144203)
(2.73347 -8.52202e-09 -0.138531)
(2.66788 -8.55552e-09 -0.133156)
(2.60457 -8.4457e-09 -0.128066)
(2.54345 -8.13856e-09 -0.12325)
(2.4844 -7.60595e-09 -0.118694)
(2.42735 -6.84381e-09 -0.114386)
(2.37217 -5.86563e-09 -0.110314)
(2.3188 -4.70058e-09 -0.106465)
(2.26713 -3.38613e-09 -0.102829)
(2.21708 -1.96427e-09 -0.0993941)
(2.16857 -4.77991e-10 -0.0961479)
(2.12152 1.03511e-09 -0.09308)
(2.07587 2.54888e-09 -0.0901796)
(2.03153 4.05463e-09 -0.0874363)
(1.98845 5.56604e-09 -0.0848398)
(1.94657 7.1172e-09 -0.0823804)
(1.90582 8.7619e-09 -0.0800487)
(1.86615 1.056e-08 -0.0778355)
(1.82752 1.25666e-08 -0.0757321)
(1.78987 1.48173e-08 -0.0737301)
(1.75317 1.73162e-08 -0.0718215)
(1.71738 2.00272e-08 -0.0699987)
(1.68245 2.28652e-08 -0.0682545)
(1.64835 2.56849e-08 -0.066582)
(1.61506 2.8276e-08 -0.0649747)
(1.58254 3.03576e-08 -0.0634267)
(1.55077 3.15957e-08 -0.0619322)
(1.51973 3.16417e-08 -0.0604861)
(1.4894 3.01896e-08 -0.0590833)
(1.45975 2.702e-08 -0.0577195)
(1.43077 2.19888e-08 -0.0563904)
(1.40245 1.49439e-08 -0.0550924)
(1.37477 5.61717e-09 -0.053822)
(1.34771 -6.37012e-09 -0.0525763)
(1.32128 -2.11952e-08 -0.0513524)
(1.29546 -3.81317e-08 -0.050148)
(1.27024 -5.46738e-08 -0.048961)
(1.2456 -6.6142e-08 -0.0477896)
(1.22156 -6.66576e-08 -0.0466325)
(1.19809 -5.20674e-08 -0.0454884)
(1.1752 -2.42339e-08 -0.0443564)
(1.15287 5.52533e-09 -0.0432359)
(1.13111 1.72536e-08 -0.0421265)
(1.1099 -9.75499e-09 -0.0410277)
(1.08924 -8.24385e-08 -0.0399392)
(1.06912 -1.78917e-07 -0.0388609)
(1.04955 -2.45096e-07 -0.0377926)
(1.03051 -2.17095e-07 -0.0367344)
(1.012 -7.38203e-08 -0.0356862)
(0.994013 1.05228e-07 -0.0346473)
(0.976536 1.42625e-07 -0.0336156)
(0.959559 -1.02704e-07 -0.0325864)
(0.943063 -5.08659e-07 -0.0315543)
(0.927012 -6.30942e-07 -0.0305185)
(0.911328 -1.74651e-07 -0.0295187)
(0.895911 3.37626e-07 -0.0286884)
(0.880311 -1.11058e-07 -0.0284976)
(0.866385 -7.92836e-07 -0.0300147)
(0.854339 3.33155e-07 -0.0293379)
(0.841078 9.19671e-07 -0.0269177)
(0.827648 -6.25078e-07 -0.025714)
(0.815444 3.20277e-07 -0.0241002)
(0.803361 7.29529e-08 -0.0237065)
(0.791766 -1.81201e-06 -0.0227069)
(0.780731 3.43552e-07 -0.0216619)
(0.770249 1.08808e-06 -0.020586)
(0.760093 -2.17313e-06 -0.0196061)
(0.750333 -2.64039e-06 -0.0186909)
(0.74099 -3.80173e-07 -0.0178037)
(0.732065 1.24936e-06 -0.0169339)
(0.723536 1.51124e-06 -0.0160815)
(0.715377 1.06442e-06 -0.0152423)
(0.707557 2.83262e-07 -0.0144115)
(0.700018 -4.04137e-07 -0.0136075)
(0.692693 -3.17462e-07 -0.0129096)
(0.685254 3.12442e-07 -0.0125757)
(0.678842 4.85715e-07 -0.0133094)
(0.674067 5.73665e-07 -0.0127758)
(0.66824 8.25373e-07 -0.0105135)
(0.661934 3.84354e-07 -0.0103816)
(0.657058 -3.83271e-07 -0.00991559)
(0.652247 -2.43505e-08 -0.00938948)
(0.647703 5.90466e-07 -0.00882437)
(0.643396 2.92224e-07 -0.00825218)
(0.63935 -2.86759e-07 -0.00768667)
(0.635567 -4.64552e-07 -0.00713064)
(0.632048 -3.48415e-07 -0.00658113)
(0.628786 -2.03119e-07 -0.00603255)
(0.625775 1.22568e-08 -0.00547864)
(0.623001 3.89039e-07 -0.00491462)
(0.620437 6.36846e-07 -0.00434645)
(0.618046 2.40246e-07 -0.00380198)
(0.615778 -7.28664e-07 -0.00337248)
(0.613453 -1.27598e-06 -0.00311971)
(0.6122 -9.29097e-07 -0.00345924)
(0.611227 3.53994e-07 -0.00227837)
(0.609876 1.38568e-06 -0.00158092)
(0.608936 -1.04443e-07 -0.000920147)
(0.608314 -1.57093e-06 -0.000254101)
(0.607987 -1.31478e-06 4.70364e-05)
(0.608102 -9.16918e-07 0.00023313)
(0.608481 1.29741e-06 0.00140815)
(0.60888 1.35265e-06 0.00150852)
(0.610091 -2.39531e-08 0.00210317)
(0.611575 -2.12037e-07 0.00255462)
(0.613516 -9.65243e-07 0.00295935)
(0.615974 8.28322e-07 0.00440676)
(0.618036 1.46563e-06 0.00526214)
(0.620569 -3.05976e-07 0.0056676)
(0.624531 -1.01921e-06 0.00600979)
(0.629602 -6.28131e-07 0.00694021)
(0.634642 -1.09615e-06 0.00889626)
(0.639673 -8.7924e-07 0.0108216)
(0.645269 1.81494e-07 0.0123663)
(0.651931 2.01918e-07 0.0131205)
(0.659926 1.06277e-07 0.0146282)
(0.668613 8.94384e-07 0.0164736)
(0.67763 1.43188e-06 0.0184287)
(0.688776 6.82845e-07 0.0197036)
(0.700577 -7.56052e-07 0.0232955)
(0.712967 -7.37889e-07 0.0254698)
(0.727834 -1.69322e-07 0.0281142)
(0.744261 -3.24659e-07 0.0313153)
(0.762476 -6.54206e-07 0.0352351)
(0.782991 -6.33627e-07 0.0398338)
(0.804779 -1.33512e-07 0.0459304)
(0.829001 -2.49727e-07 0.0501007)
(0.857327 -7.38666e-07 0.0555186)
(0.888789 4.10685e-07 0.0620649)
(0.924055 1.59609e-06 0.0697203)
(0.963901 1.03806e-06 0.0786201)
(1.00936 -1.24424e-07 0.0892165)
(1.06203 -5.17828e-07 0.102611)
(1.12111 -3.15916e-07 0.121246)
(1.18451 -3.79004e-07 0.142217)
(1.25786 7.19241e-07 0.161853)
(1.34557 6.92366e-07 0.187044)
(1.44744 -4.01276e-07 0.219341)
(1.56652 -5.40216e-07 0.260355)
(1.70678 1.75355e-07 0.312576)
(1.87337 6.65741e-07 0.379584)
(2.07287 6.23181e-07 0.466299)
(2.31365 3.73379e-07 0.579281)
(2.60659 2.19949e-07 0.726835)
(2.96529 2.11476e-07 0.918823)
(3.4091 2.54632e-07 1.16378)
(3.9604 2.65129e-07 1.4678)
(4.66223 2.23022e-07 1.80565)
(5.54628 1.59798e-07 2.17978)
(6.65212 6.79265e-08 2.363)
(12.7856 1.66056e-07 2.5018)
(7.92093 2.356e-08 -0.124906)
(7.53039 1.21144e-06 0.0621191)
(7.2121 6.38391e-07 0.357191)
(6.91748 -2.92363e-07 0.576999)
(6.66605 -7.72795e-07 0.630568)
(6.51114 -4.98272e-07 0.574081)
(6.40399 -1.487e-07 0.461636)
(6.32413 -1.38322e-07 0.326201)
(6.26699 -3.39859e-07 0.186399)
(6.23255 -4.74774e-07 0.0522028)
(6.21808 -3.91012e-07 -0.0681986)
(6.21834 -2.07978e-07 -0.172971)
(6.2269 -4.81352e-08 -0.262608)
(6.24155 3.9795e-08 -0.333521)
(6.24314 4.96823e-08 -0.361446)
(6.2024 4.39812e-08 -0.36768)
(6.14063 3.15213e-08 -0.384325)
(6.06661 4.28271e-09 -0.396689)
(5.97898 -1.37719e-08 -0.403422)
(5.88064 -2.22755e-08 -0.405409)
(5.77383 -2.44345e-08 -0.403608)
(5.66019 -2.30429e-08 -0.398931)
(5.54125 -2.08315e-08 -0.392099)
(5.41833 -1.99352e-08 -0.383663)
(5.29262 -2.13882e-08 -0.37405)
(5.1652 -2.49433e-08 -0.363588)
(5.03698 -2.93454e-08 -0.352532)
(4.90878 -3.29768e-08 -0.341086)
(4.78131 -3.45637e-08 -0.329411)
(4.65514 -3.3637e-08 -0.317638)
(4.53078 -3.05877e-08 -0.305873)
(4.40864 -2.63582e-08 -0.294204)
(4.28904 -2.20136e-08 -0.282704)
(4.17225 -1.84405e-08 -0.271432)
(4.05846 -1.61024e-08 -0.260434)
(3.94783 -1.49901e-08 -0.249748)
(3.84045 -1.4767e-08 -0.239401)
(3.73638 -1.49204e-08 -0.229413)
(3.63565 -1.49658e-08 -0.219799)
(3.53824 -1.46202e-08 -0.210567)
(3.44414 -1.38399e-08 -0.201719)
(3.35328 -1.27435e-08 -0.193255)
(3.26561 -1.15229e-08 -0.185171)
(3.18104 -1.03712e-08 -0.177462)
(3.09949 -9.43647e-09 -0.170119)
(3.02086 -8.79852e-09 -0.163133)
(2.94504 -8.4616e-09 -0.156493)
(2.87195 -8.36962e-09 -0.150187)
(2.80146 -8.42603e-09 -0.144203)
(2.73347 -8.52201e-09 -0.138531)
(2.66787 -8.55551e-09 -0.133156)
(2.60457 -8.44569e-09 -0.128066)
(2.54344 -8.13855e-09 -0.12325)
(2.4844 -7.60594e-09 -0.118694)
(2.42734 -6.8438e-09 -0.114386)
(2.37217 -5.86562e-09 -0.110314)
(2.3188 -4.70057e-09 -0.106465)
(2.26713 -3.38613e-09 -0.102829)
(2.21708 -1.96427e-09 -0.0993941)
(2.16857 -4.7799e-10 -0.0961479)
(2.12152 1.03511e-09 -0.09308)
(2.07587 2.54888e-09 -0.0901796)
(2.03153 4.05463e-09 -0.0874363)
(1.98845 5.56603e-09 -0.0848398)
(1.94657 7.11719e-09 -0.0823804)
(1.90582 8.76189e-09 -0.0800487)
(1.86615 1.056e-08 -0.0778355)
(1.82752 1.25666e-08 -0.0757321)
(1.78987 1.48173e-08 -0.0737301)
(1.75317 1.73162e-08 -0.0718215)
(1.71738 2.00272e-08 -0.0699987)
(1.68245 2.28652e-08 -0.0682545)
(1.64835 2.56849e-08 -0.066582)
(1.61506 2.82759e-08 -0.0649747)
(1.58254 3.03576e-08 -0.0634267)
(1.55077 3.15957e-08 -0.0619322)
(1.51973 3.16416e-08 -0.060486)
(1.48939 3.01896e-08 -0.0590833)
(1.45975 2.702e-08 -0.0577194)
(1.43077 2.19888e-08 -0.0563904)
(1.40245 1.49439e-08 -0.0550924)
(1.37477 5.61716e-09 -0.053822)
(1.34771 -6.37011e-09 -0.0525763)
(1.32128 -2.11952e-08 -0.0513524)
(1.29546 -3.81317e-08 -0.050148)
(1.27024 -5.46738e-08 -0.048961)
(1.2456 -6.6142e-08 -0.0477896)
(1.22156 -6.66576e-08 -0.0466324)
(1.19809 -5.20674e-08 -0.0454883)
(1.1752 -2.42339e-08 -0.0443564)
(1.15287 5.52533e-09 -0.043236)
(1.13111 1.72536e-08 -0.0421265)
(1.1099 -9.75499e-09 -0.0410277)
(1.08924 -8.24385e-08 -0.0399393)
(1.06912 -1.78917e-07 -0.0388609)
(1.04955 -2.45096e-07 -0.0377925)
(1.03051 -2.17095e-07 -0.0367343)
(1.012 -7.38203e-08 -0.0356862)
(0.994012 1.05228e-07 -0.0346477)
(0.976535 1.42625e-07 -0.0336162)
(0.959557 -1.02704e-07 -0.0325872)
(0.943061 -5.08659e-07 -0.0315546)
(0.927011 -6.30942e-07 -0.0305181)
(0.911328 -1.7465e-07 -0.0295178)
(0.89591 3.37615e-07 -0.0286879)
(0.880307 -1.11047e-07 -0.0284976)
(0.866382 -7.92724e-07 -0.030014)
(0.854337 3.33174e-07 -0.029335)
(0.841073 9.20108e-07 -0.0269165)
(0.827645 -6.25233e-07 -0.0257145)
(0.815446 3.20064e-07 -0.0241019)
(0.803356 7.29862e-08 -0.0237105)
(0.791756 -1.81459e-06 -0.0227082)
(0.780734 3.44082e-07 -0.0216529)
(0.770254 1.08968e-06 -0.0205813)
(0.760087 -2.17624e-06 -0.0196088)
(0.750326 -2.64417e-06 -0.0186911)
(0.740987 -3.80718e-07 -0.0178004)
(0.732064 1.25115e-06 -0.0169308)
(0.723534 1.51341e-06 -0.0160799)
(0.715373 1.06595e-06 -0.0152415)
(0.707553 2.83672e-07 -0.014411)
(0.700015 -4.04722e-07 -0.0136071)
(0.692689 -3.17918e-07 -0.012909)
(0.685251 3.12865e-07 -0.0125749)
(0.678839 4.8621e-07 -0.013311)
(0.674063 5.73687e-07 -0.0127811)
(0.668238 8.24222e-07 -0.0105176)
(0.661935 3.83738e-07 -0.0103813)
(0.657059 -3.82658e-07 -0.00991538)
(0.652246 -2.43116e-08 -0.00938902)
(0.647701 5.89524e-07 -0.0088243)
(0.643394 2.91759e-07 -0.00825211)
(0.639349 -2.86304e-07 -0.00768653)
(0.635567 -4.63816e-07 -0.00713035)
(0.632047 -3.47864e-07 -0.00658066)
(0.628786 -2.02798e-07 -0.00603212)
(0.625773 1.22374e-08 -0.00547873)
(0.622999 3.88425e-07 -0.00491533)
(0.620435 6.35842e-07 -0.00434699)
(0.618046 2.39868e-07 -0.0038013)
(0.615778 -7.27535e-07 -0.00337091)
(0.613453 -1.27423e-06 -0.00311871)
(0.612199 -9.28545e-07 -0.00345969)
(0.611228 3.5428e-07 -0.00227797)
(0.609876 1.38669e-06 -0.00158038)
(0.608936 -1.0442e-07 -0.000922705)
(0.608319 -1.56829e-06 -0.000255189)
(0.607989 -1.31404e-06 4.55758e-05)
(0.608104 -9.17811e-07 0.000229576)
(0.608486 1.29847e-06 0.00140805)
(0.608881 1.35222e-06 0.00150334)
(0.610096 -2.39115e-08 0.00210278)
(0.611583 -2.11914e-07 0.0025577)
(0.613523 -9.66212e-07 0.00295659)
(0.61598 8.29268e-07 0.00440646)
(0.618035 1.46733e-06 0.00525936)
(0.620569 -3.06356e-07 0.00566976)
(0.624537 -1.0205e-06 0.00601311)
(0.629604 -6.2895e-07 0.00693669)
(0.634645 -1.09728e-06 0.00889205)
(0.639677 -8.79266e-07 0.0108171)
(0.645271 1.81243e-07 0.0123619)
(0.65193 2.01588e-07 0.0131223)
(0.659929 1.06108e-07 0.0146326)
(0.668617 8.93029e-07 0.0164769)
(0.677631 1.43008e-06 0.0184289)
(0.688774 6.82595e-07 0.0197014)
(0.700581 -7.56901e-07 0.0232947)
(0.712971 -7.3877e-07 0.0254698)
(0.727836 -1.6952e-07 0.0281134)
(0.744263 -3.25034e-07 0.0313152)
(0.762476 -6.54841e-07 0.0352335)
(0.78299 -6.33719e-07 0.0398262)
(0.804783 -1.33345e-07 0.0459268)
(0.829004 -2.49366e-07 0.050101)
(0.857328 -7.37587e-07 0.0555183)
(0.888788 4.1008e-07 0.062066)
(0.924054 1.59374e-06 0.069721)
(0.9639 1.03654e-06 0.078621)
(1.00936 -1.24245e-07 0.0892178)
(1.06203 -5.17153e-07 0.102612)
(1.12111 -3.15659e-07 0.121245)
(1.18451 -3.79e-07 0.142217)
(1.25786 7.1925e-07 0.161854)
(1.34557 6.92358e-07 0.187045)
(1.44744 -4.01273e-07 0.219342)
(1.56651 -5.40215e-07 0.260354)
(1.70678 1.75355e-07 0.312575)
(1.87337 6.65741e-07 0.379584)
(2.07287 6.23182e-07 0.466299)
(2.31365 3.73379e-07 0.57928)
(2.60659 2.19949e-07 0.726834)
(2.9653 2.11476e-07 0.918821)
(3.4091 2.54632e-07 1.16378)
(3.9604 2.65129e-07 1.4678)
(4.66223 2.23022e-07 1.80565)
(5.54628 1.59798e-07 2.17978)
(6.65212 6.79266e-08 2.36299)
(12.7856 1.66057e-07 2.50179)
(8.66818 -2.09208e-08 0.136161)
(3.26453 6.65051e-08 -0.709247)
(3.92249 -3.03462e-07 -0.888722)
(4.58007 -3.78077e-07 -1.00152)
(5.03802 -3.69101e-07 -0.856816)
(5.51529 -4.12176e-08 -0.672734)
(5.96687 1.42354e-07 -0.517883)
(6.35963 6.53454e-08 -0.39809)
(6.6881 -6.8106e-08 -0.313159)
(6.94536 -9.45922e-08 -0.259372)
(7.13088 -1.2105e-08 -0.234003)
(7.25047 9.26783e-08 -0.231678)
(7.31458 1.43748e-07 -0.248423)
(7.34821 1.00418e-07 -0.275954)
(7.32616 -1.1304e-07 -0.305343)
(7.17996 -2.55736e-07 -0.328207)
(7.0125 -1.64882e-07 -0.324075)
(6.8524 -1.10648e-07 -0.315305)
(6.68952 -7.15287e-08 -0.3077)
(6.52252 -4.18388e-08 -0.300201)
(6.35222 -2.11272e-08 -0.292286)
(6.17978 -8.42128e-09 -0.283842)
(6.00661 -3.24478e-09 -0.274886)
(5.83395 -5.01292e-09 -0.265527)
(5.66288 -1.2436e-08 -0.255905)
(5.49427 -2.33103e-08 -0.246159)
(5.32883 -3.48227e-08 -0.236406)
(5.16709 -4.42977e-08 -0.22674)
(5.00946 -4.99492e-08 -0.217233)
(4.85625 -5.12686e-08 -0.207939)
(4.70767 -4.8945e-08 -0.1989)
(4.56386 -4.44308e-08 -0.190144)
(4.42491 -3.93001e-08 -0.181694)
(4.29084 -3.48357e-08 -0.173566)
(4.16163 -3.17059e-08 -0.165765)
(4.03724 -2.99524e-08 -0.158297)
(3.91759 -2.91564e-08 -0.151161)
(3.80258 -2.86313e-08 -0.144354)
(3.69208 -2.77687e-08 -0.13787)
(3.58596 -2.62449e-08 -0.131701)
(3.48408 -2.40441e-08 -0.125839)
(3.38629 -2.13674e-08 -0.120273)
(3.29242 -1.85109e-08 -0.114993)
(3.20232 -1.57711e-08 -0.109987)
(3.11583 -1.33704e-08 -0.105244)
(3.03279 -1.14267e-08 -0.100752)
(2.95303 -9.945e-09 -0.0965008)
(2.87642 -8.83751e-09 -0.0924787)
(2.8028 -7.96033e-09 -0.0886753)
(2.73201 -7.15444e-09 -0.0850801)
(2.66392 -6.27291e-09 -0.0816832)
(2.5984 -5.2062e-09 -0.0784748)
(2.5353 -3.8869e-09 -0.0754455)
(2.47451 -2.29103e-09 -0.0725863)
(2.41589 -4.322e-10 -0.0698882)
(2.35935 1.64848e-09 -0.0673428)
(2.30475 3.889e-09 -0.0649417)
(2.25201 6.21768e-09 -0.0626769)
(2.20102 8.55646e-09 -0.0605407)
(2.15168 1.08358e-08 -0.0585254)
(2.10391 1.30003e-08 -0.0566239)
(2.05762 1.50157e-08 -0.0548289)
(2.01274 1.68849e-08 -0.0531337)
(1.96918 1.86446e-08 -0.0515317)
(1.92689 2.03685e-08 -0.0500165)
(1.88579 2.21541e-08 -0.0485821)
(1.84583 2.41066e-08 -0.0472225)
(1.80695 2.63164e-08 -0.0459321)
(1.76909 2.88348e-08 -0.0447056)
(1.73222 3.16552e-08 -0.0435378)
(1.69628 3.47003e-08 -0.042424)
(1.66124 3.78063e-08 -0.0413594)
(1.62706 4.07102e-08 -0.0403397)
(1.5937 4.30501e-08 -0.0393609)
(1.56113 4.43685e-08 -0.038419)
(1.52934 4.41555e-08 -0.0375105)
(1.49828 4.19179e-08 -0.0366321)
(1.46794 3.72508e-08 -0.0357806)
(1.4383 2.98751e-08 -0.0349532)
(1.40935 1.95834e-08 -0.0341472)
(1.38105 6.11432e-09 -0.0333604)
(1.35341 -1.09248e-08 -0.0325906)
(1.3264 -3.18519e-08 -0.0318358)
(1.30001 -5.62013e-08 -0.0310943)
(1.27424 -8.15681e-08 -0.0303646)
(1.24908 -1.02577e-07 -0.0296454)
(1.22451 -1.11104e-07 -0.0289355)
(1.20054 -9.89427e-08 -0.0282341)
(1.17714 -6.31706e-08 -0.0275405)
(1.15432 -1.2461e-08 -0.0268542)
(1.13208 2.97571e-08 -0.0261748)
(1.11039 3.04479e-08 -0.025502)
(1.08927 -3.65055e-08 -0.0248355)
(1.0687 -1.65774e-07 -0.024175)
(1.04868 -3.01512e-07 -0.0235201)
(1.0292 -3.46571e-07 -0.0228705)
(1.01026 -2.20685e-07 -0.0222264)
(0.99186 4.19668e-08 -0.0215875)
(0.973981 2.29816e-07 -0.0209528)
(0.95662 5.61053e-08 -0.0203181)
(0.939773 -5.12866e-07 -0.019673)
(0.923428 -9.49151e-07 -0.018997)
(0.907552 -4.678e-07 -0.0182508)
(0.892051 7.24439e-07 -0.017391)
(0.876606 8.26116e-07 -0.0163488)
(0.860215 -9.85757e-07 -0.0159194)
(0.846239 -1.22159e-06 -0.0165655)
(0.834273 1.74007e-06 -0.0162397)
(0.820503 2.27877e-07 -0.0155065)
(0.806116 -1.58227e-06 -0.0138923)
(0.793929 8.14018e-07 -0.0126826)
(0.780822 -2.20669e-06 -0.0145097)
(0.769222 -3.76349e-06 -0.0143715)
(0.758412 2.22123e-06 -0.0131125)
(0.748053 8.91398e-07 -0.0123399)
(0.737941 -3.01735e-06 -0.0117202)
(0.728234 -2.46188e-06 -0.0111694)
(0.718975 2.92553e-07 -0.0106285)
(0.710163 1.839e-06 -0.0100892)
(0.701773 1.73546e-06 -0.00955176)
(0.693784 6.29572e-07 -0.00900514)
(0.686167 -7.1043e-07 -0.00842059)
(0.678858 -1.11568e-06 -0.00776221)
(0.671659 -1.07955e-07 -0.00697189)
(0.663754 9.45675e-07 -0.00658588)
(0.657298 4.75922e-07 -0.0069434)
(0.653705 -4.79106e-07 -0.00669643)
(0.647849 1.32125e-07 -0.00601211)
(0.640482 9.74318e-08 -0.00614901)
(0.636518 -1.36537e-06 -0.00612345)
(0.631903 -2.34068e-07 -0.00579288)
(0.627422 5.75048e-07 -0.00541899)
(0.623154 1.23139e-07 -0.00504624)
(0.619152 -5.11916e-07 -0.00468597)
(0.615422 -5.81619e-07 -0.00433633)
(0.611964 -2.54102e-07 -0.00399193)
(0.608774 1.92371e-07 -0.00364521)
(0.605847 7.21463e-07 -0.00328626)
(0.603179 1.11788e-06 -0.00290008)
(0.600746 8.03295e-07 -0.00247438)
(0.5985 -4.02837e-07 -0.00199569)
(0.596256 -1.57814e-06 -0.00153231)
(0.593014 -1.67658e-06 -0.00118675)
(0.592038 -2.21433e-06 -0.00127332)
(0.591457 5.05603e-07 -0.000827534)
(0.589573 1.96637e-06 -0.000551289)
(0.588857 -2.37126e-06 -5.69072e-05)
(0.587999 -3.07946e-06 0.000563803)
(0.587481 -3.26676e-06 -0.000327376)
(0.588133 -1.66963e-06 -0.00034771)
(0.588374 2.22294e-06 0.000618463)
(0.588231 8.87887e-08 0.000746792)
(0.58942 -1.62755e-06 0.00139907)
(0.590712 -3.08451e-06 0.000803506)
(0.593037 -2.80407e-06 0.000864473)
(0.595569 1.54379e-06 0.00174137)
(0.596696 1.07587e-06 0.00199214)
(0.598732 -1.30245e-06 0.00287568)
(0.602347 -1.44817e-06 0.00378384)
(0.607739 -1.87587e-06 0.00398548)
(0.612555 -1.85785e-06 0.00439098)
(0.616601 5.52363e-07 0.0056859)
(0.621592 1.24354e-06 0.00647407)
(0.628073 -7.96714e-07 0.00686224)
(0.636574 -1.36998e-06 0.00813427)
(0.644874 7.99406e-07 0.00968334)
(0.652318 1.43217e-06 0.0110001)
(0.663659 -2.02308e-06 0.0115269)
(0.674829 -2.46863e-06 0.0130183)
(0.685674 6.25794e-07 0.014471)
(0.700089 7.25501e-07 0.0157699)
(0.715804 2.70615e-07 0.0175728)
(0.73295 -2.93803e-07 0.0197862)
(0.753117 -2.23838e-06 0.0227552)
(0.773744 -1.97407e-06 0.026565)
(0.796747 -1.08741e-06 0.0289648)
(0.82525 -2.10203e-06 0.0320165)
(0.855878 9.73281e-08 0.0359427)
(0.889876 1.15169e-06 0.0403463)
(0.928232 1.58352e-07 0.0450935)
(0.972289 -7.74328e-07 0.0501553)
(1.02487 -1.13976e-06 0.0563372)
(1.0835 -2.30154e-06 0.0661929)
(1.14476 -2.04795e-06 0.081867)
(1.21775 1.65979e-06 0.0962199)
(1.3076 1.11424e-06 0.111815)
(1.41144 -2.89337e-07 0.131881)
(1.53305 -2.67497e-07 0.157349)
(1.67755 5.06843e-07 0.189888)
(1.85137 9.04952e-07 0.231949)
(2.06286 7.68148e-07 0.286891)
(2.32297 4.9461e-07 0.359202)
(2.6464 3.72811e-07 0.454474)
(3.05123 4.03259e-07 0.579143)
(3.56401 4.50738e-07 0.73688)
(4.20448 4.19451e-07 0.929292)
(5.03886 3.11044e-07 1.11563)
(5.98029 1.82162e-07 1.32809)
(7.10473 6.10454e-08 1.58852)
(14.1347 2.02381e-07 1.72911)
(8.66818 -2.09208e-08 0.136161)
(3.26453 6.65052e-08 -0.709254)
(3.92247 -3.03463e-07 -0.888736)
(4.58005 -3.78079e-07 -1.00153)
(5.03799 -3.69104e-07 -0.856829)
(5.51526 -4.12179e-08 -0.672744)
(5.96684 1.42355e-07 -0.517891)
(6.3596 6.5346e-08 -0.398095)
(6.68807 -6.81066e-08 -0.313162)
(6.94534 -9.45932e-08 -0.259372)
(7.13086 -1.21051e-08 -0.234002)
(7.25046 9.26791e-08 -0.231676)
(7.31457 1.43749e-07 -0.24842)
(7.3482 1.00419e-07 -0.275952)
(7.32616 -1.13041e-07 -0.305341)
(7.17996 -2.55736e-07 -0.328205)
(7.0125 -1.64882e-07 -0.324074)
(6.8524 -1.10648e-07 -0.315305)
(6.68952 -7.15287e-08 -0.307701)
(6.52253 -4.18388e-08 -0.300201)
(6.35222 -2.11272e-08 -0.292286)
(6.17978 -8.42128e-09 -0.283842)
(6.00661 -3.24478e-09 -0.274887)
(5.83395 -5.01291e-09 -0.265527)
(5.66288 -1.2436e-08 -0.255906)
(5.49427 -2.33103e-08 -0.246159)
(5.32883 -3.48227e-08 -0.236406)
(5.16709 -4.42977e-08 -0.22674)
(5.00946 -4.99492e-08 -0.217233)
(4.85625 -5.12686e-08 -0.207939)
(4.70767 -4.89449e-08 -0.1989)
(4.56386 -4.44308e-08 -0.190144)
(4.42491 -3.93e-08 -0.181695)
(4.29084 -3.48356e-08 -0.173566)
(4.16163 -3.17059e-08 -0.165766)
(4.03724 -2.99523e-08 -0.158297)
(3.91759 -2.91564e-08 -0.151161)
(3.80258 -2.86313e-08 -0.144354)
(3.69208 -2.77687e-08 -0.13787)
(3.58596 -2.62448e-08 -0.131701)
(3.48408 -2.40441e-08 -0.125839)
(3.38629 -2.13674e-08 -0.120273)
(3.29242 -1.85108e-08 -0.114993)
(3.20232 -1.57711e-08 -0.109987)
(3.11583 -1.33704e-08 -0.105244)
(3.03278 -1.14267e-08 -0.100752)
(2.95303 -9.94499e-09 -0.0965009)
(2.87642 -8.8375e-09 -0.0924788)
(2.8028 -7.96033e-09 -0.0886753)
(2.73201 -7.15443e-09 -0.0850802)
(2.66392 -6.27291e-09 -0.0816832)
(2.5984 -5.20619e-09 -0.0784748)
(2.5353 -3.88689e-09 -0.0754456)
(2.4745 -2.29102e-09 -0.0725863)
(2.41589 -4.322e-10 -0.0698882)
(2.35934 1.64847e-09 -0.0673428)
(2.30475 3.889e-09 -0.0649417)
(2.25201 6.21767e-09 -0.0626769)
(2.20102 8.55645e-09 -0.0605407)
(2.15168 1.08358e-08 -0.0585254)
(2.10391 1.30003e-08 -0.0566239)
(2.05762 1.50157e-08 -0.0548289)
(2.01274 1.68849e-08 -0.0531337)
(1.96918 1.86446e-08 -0.0515317)
(1.92689 2.03685e-08 -0.0500165)
(1.88579 2.21541e-08 -0.0485821)
(1.84583 2.41066e-08 -0.0472225)
(1.80695 2.63164e-08 -0.0459321)
(1.76909 2.88347e-08 -0.0447056)
(1.73222 3.16552e-08 -0.0435378)
(1.69628 3.47002e-08 -0.042424)
(1.66124 3.78063e-08 -0.0413594)
(1.62706 4.07102e-08 -0.0403397)
(1.5937 4.30501e-08 -0.0393609)
(1.56113 4.43685e-08 -0.038419)
(1.52934 4.41555e-08 -0.0375105)
(1.49828 4.19178e-08 -0.036632)
(1.46794 3.72508e-08 -0.0357806)
(1.4383 2.98751e-08 -0.0349532)
(1.40935 1.95834e-08 -0.0341473)
(1.38105 6.11432e-09 -0.0333605)
(1.35341 -1.09248e-08 -0.0325907)
(1.3264 -3.18519e-08 -0.0318359)
(1.30001 -5.62013e-08 -0.0310944)
(1.27424 -8.15681e-08 -0.0303646)
(1.24908 -1.02577e-07 -0.0296454)
(1.22451 -1.11104e-07 -0.0289355)
(1.20054 -9.89427e-08 -0.0282341)
(1.17714 -6.31706e-08 -0.0275405)
(1.15432 -1.2461e-08 -0.0268542)
(1.13208 2.97572e-08 -0.0261748)
(1.11039 3.04479e-08 -0.0255021)
(1.08927 -3.65055e-08 -0.0248356)
(1.0687 -1.65774e-07 -0.024175)
(1.04868 -3.01512e-07 -0.0235199)
(1.0292 -3.46572e-07 -0.0228702)
(1.01026 -2.20685e-07 -0.022226)
(0.991859 4.19668e-08 -0.0215875)
(0.973979 2.29816e-07 -0.0209536)
(0.956618 5.61054e-08 -0.0203193)
(0.93977 -5.12867e-07 -0.0196737)
(0.923427 -9.49153e-07 -0.018996)
(0.907552 -4.678e-07 -0.0182486)
(0.89205 7.24434e-07 -0.0173905)
(0.876602 8.26088e-07 -0.016352)
(0.860213 -9.85667e-07 -0.0159207)
(0.846242 -1.22145e-06 -0.0165602)
(0.83427 1.7402e-06 -0.0162384)
(0.820491 2.27944e-07 -0.0155121)
(0.806117 -1.58178e-06 -0.0138896)
(0.793935 8.13488e-07 -0.012678)
(0.780806 -2.20859e-06 -0.014517)
(0.769206 -3.76756e-06 -0.0143689)
(0.758417 2.22192e-06 -0.0131008)
(0.748055 8.91223e-07 -0.0123371)
(0.73793 -3.01623e-06 -0.0117243)
(0.728223 -2.46087e-06 -0.0111684)
(0.71897 2.92434e-07 -0.0106237)
(0.710161 1.83827e-06 -0.0100854)
(0.70177 1.73478e-06 -0.00955015)
(0.693779 6.29331e-07 -0.00900443)
(0.686162 -7.10164e-07 -0.00841983)
(0.678853 -1.11527e-06 -0.00776152)
(0.671654 -1.07915e-07 -0.00697113)
(0.663751 9.45267e-07 -0.00658449)
(0.657294 4.75575e-07 -0.00694433)
(0.653701 -4.78466e-07 -0.00669645)
(0.647852 1.3192e-07 -0.00600908)
(0.640488 9.73596e-08 -0.00615009)
(0.636522 -1.36486e-06 -0.00612363)
(0.631906 -2.34004e-07 -0.00579396)
(0.627425 5.74907e-07 -0.00542026)
(0.623158 1.2311e-07 -0.00504715)
(0.619157 -5.11795e-07 -0.00468654)
(0.615427 -5.81482e-07 -0.00433661)
(0.611969 -2.54041e-07 -0.00399204)
(0.608779 1.92325e-07 -0.0036456)
(0.60585 7.21289e-07 -0.00328749)
(0.603181 1.11761e-06 -0.00290187)
(0.600751 8.03102e-07 -0.00247516)
(0.598507 -4.0274e-07 -0.00199421)
(0.596262 -1.57779e-06 -0.00153011)
(0.593016 -1.67651e-06 -0.00118561)
(0.592042 -2.21579e-06 -0.00126816)
(0.591461 5.062e-07 -0.00082551)
(0.589572 1.9665e-06 -0.000553291)
(0.588861 -2.36882e-06 -4.90669e-05)
(0.588011 -3.0754e-06 0.000575317)
(0.587485 -3.26894e-06 -0.000325368)
(0.588138 -1.67226e-06 -0.000341591)
(0.588377 2.22352e-06 0.000620252)
(0.588231 8.86838e-08 0.000749481)
(0.58943 -1.62525e-06 0.00141361)
(0.590725 -3.08645e-06 0.000809847)
(0.593048 -2.8085e-06 0.000870101)
(0.595573 1.54469e-06 0.00174167)
(0.596692 1.07588e-06 0.0019878)
(0.598738 -1.30229e-06 0.00288587)
(0.602356 -1.44792e-06 0.00379299)
(0.607741 -1.87576e-06 0.00398589)
(0.612559 -1.85758e-06 0.00438799)
(0.616605 5.51816e-07 0.0056842)
(0.621593 1.24178e-06 0.00647776)
(0.628075 -7.96106e-07 0.00686818)
(0.636585 -1.36942e-06 0.0081436)
(0.644886 7.992e-07 0.00968977)
(0.652322 1.43221e-06 0.0110035)
(0.66366 -2.0248e-06 0.0115341)
(0.674837 -2.47233e-06 0.0130179)
(0.685681 6.2609e-07 0.0144667)
(0.700093 7.25483e-07 0.0157711)
(0.715808 2.70569e-07 0.0175768)
(0.732949 -2.93692e-07 0.0197859)
(0.753113 -2.23623e-06 0.0227589)
(0.77375 -1.97155e-06 0.0265767)
(0.796755 -1.08678e-06 0.0289713)
(0.825254 -2.10144e-06 0.0320241)
(0.855882 9.73078e-08 0.0359508)
(0.889881 1.15147e-06 0.0403551)
(0.928238 1.58322e-07 0.0451046)
(0.972293 -7.74198e-07 0.050168)
(1.02487 -1.13973e-06 0.0563495)
(1.08349 -2.30261e-06 0.0662036)
(1.14476 -2.04988e-06 0.081865)
(1.21775 1.66041e-06 0.0962155)
(1.3076 1.11433e-06 0.111814)
(1.41145 -2.89339e-07 0.13188)
(1.53305 -2.67497e-07 0.157348)
(1.67755 5.06843e-07 0.189886)
(1.85137 9.04952e-07 0.231948)
(2.06286 7.68148e-07 0.28689)
(2.32298 4.9461e-07 0.359202)
(2.6464 3.72811e-07 0.454473)
(3.05123 4.03259e-07 0.579142)
(3.56401 4.50738e-07 0.736879)
(4.20448 4.19451e-07 0.92929)
(5.03886 3.11044e-07 1.11563)
(5.98029 1.82162e-07 1.32809)
(7.10473 6.10454e-08 1.58852)
(14.1347 2.02381e-07 1.72911)
(7.07857 6.39899e-09 4.64415)
(12.5598 3.38047e-07 3.14821)
(12.1832 5.55958e-07 2.32607)
(11.8893 6.54611e-07 1.58871)
(11.6875 7.68622e-07 1.05604)
(11.4569 7.6397e-07 0.668794)
(11.2075 5.28194e-07 0.374827)
(10.9466 1.03339e-07 0.150681)
(10.6726 -3.44437e-07 -0.0203975)
(10.3824 -6.75426e-07 -0.151702)
(10.0734 -8.52847e-07 -0.252851)
(9.74076 -8.695e-07 -0.33305)
(9.37968 -7.57846e-07 -0.402754)
(8.96622 -5.53541e-07 -0.454727)
(8.55842 -1.3328e-07 -0.257913)
(8.27946 1.34762e-07 -0.0627178)
(8.01603 6.34298e-08 -0.123545)
(7.73549 6.36257e-08 -0.148422)
(7.45125 9.83737e-08 -0.157066)
(7.17277 1.24895e-07 -0.156806)
(6.90241 1.37822e-07 -0.151985)
(6.64136 1.36261e-07 -0.145181)
(6.39036 1.19968e-07 -0.137743)
(6.14969 9.04875e-08 -0.130326)
(5.91934 5.12896e-08 -0.12322)
(5.69916 7.51805e-09 -0.116533)
(5.48891 -3.48754e-08 -0.110281)
(5.28829 -7.05608e-08 -0.104443)
(5.09698 -9.61302e-08 -0.0989872)
(4.91463 -1.10622e-07 -0.0938798)
(4.74088 -1.15467e-07 -0.0890904)
(4.57537 -1.14311e-07 -0.0845921)
(4.41774 -1.10314e-07 -0.0803638)
(4.26763 -1.05661e-07 -0.0763874)
(4.12467 -1.02241e-07 -0.0726449)
(3.98853 -1.00396e-07 -0.0691205)
(3.85885 -9.92637e-08 -0.0658002)
(3.7353 -9.74638e-08 -0.0626714)
(3.61757 -9.38382e-08 -0.059722)
(3.50535 -8.78427e-08 -0.056941)
(3.39833 -7.95986e-08 -0.054318)
(3.29624 -6.96994e-08 -0.0518434)
(3.19882 -5.89741e-08 -0.0495083)
(3.10579 -4.82391e-08 -0.0473042)
(3.01692 -3.8119e-08 -0.0452235)
(2.93198 -2.89577e-08 -0.043259)
(2.85075 -2.08092e-08 -0.0414043)
(2.77303 -1.34799e-08 -0.0396531)
(2.6986 -6.63625e-09 -0.0379999)
(2.6273 8.9538e-11 -0.0364393)
(2.55893 7.01548e-09 -0.0349664)
(2.49334 1.43583e-08 -0.0335766)
(2.43036 2.22026e-08 -0.0322654)
(2.36985 3.05127e-08 -0.0310288)
(2.31166 3.91411e-08 -0.0298626)
(2.25566 4.78665e-08 -0.0287632)
(2.20171 5.64222e-08 -0.0277268)
(2.14971 6.45187e-08 -0.0267499)
(2.09954 7.1881e-08 -0.0258292)
(2.05109 7.82686e-08 -0.0249613)
(2.00427 8.35086e-08 -0.0241431)
(1.95898 8.75232e-08 -0.0233715)
(1.91513 9.03572e-08 -0.0226436)
(1.87264 9.21767e-08 -0.0219564)
(1.83144 9.32549e-08 -0.0213073)
(1.79145 9.39359e-08 -0.0206935)
(1.75262 9.45658e-08 -0.0201126)
(1.71487 9.54248e-08 -0.019562)
(1.67816 9.66536e-08 -0.0190394)
(1.64244 9.82011e-08 -0.0185425)
(1.60765 9.9767e-08 -0.0180693)
(1.57375 1.00789e-07 -0.0176177)
(1.5407 1.00415e-07 -0.0171857)
(1.50848 9.75226e-08 -0.0167716)
(1.47703 9.07928e-08 -0.0163737)
(1.44635 7.88801e-08 -0.0159903)
(1.41639 6.06334e-08 -0.0156199)
(1.38714 3.52873e-08 -0.0152612)
(1.35857 2.49358e-09 -0.0149129)
(1.33067 -3.79166e-08 -0.0145737)
(1.30341 -8.62651e-08 -0.0142428)
(1.27679 -1.4299e-07 -0.0139189)
(1.25079 -2.07525e-07 -0.0136014)
(1.2254 -2.75727e-07 -0.0132893)
(1.2006 -3.36511e-07 -0.012982)
(1.1764 -3.69997e-07 -0.0126789)
(1.15277 -3.50763e-07 -0.0123794)
(1.12973 -2.58988e-07 -0.0120831)
(1.10724 -9.84978e-08 -0.0117899)
(1.08532 8.60127e-08 -0.0114996)
(1.06396 2.06653e-07 -0.011212)
(1.04314 1.60266e-07 -0.010927)
(1.02286 -1.08061e-07 -0.0106444)
(1.00313 -5.25749e-07 -0.0103639)
(0.983924 -8.54729e-07 -0.0100849)
(0.965255 -7.78129e-07 -0.00980722)
(0.947114 -1.57668e-07 -0.00953089)
(0.929495 6.54733e-07 -0.00925639)
(0.912388 8.16359e-07 -0.00898349)
(0.895792 -2.91714e-07 -0.00870883)
(0.879715 -1.89159e-06 -0.00842172)
(0.864194 -1.75768e-06 -0.00809791)
(0.849282 9.71028e-07 -0.00768274)
(0.835156 2.13818e-06 -0.00706812)
(0.821811 -2.66945e-06 -0.00605696)
(0.811379 -2.71636e-06 -0.00501938)
(0.796375 8.375e-06 -0.0130977)
(0.776821 2.97889e-06 -0.00961337)
(0.760835 -7.2289e-06 -0.0372307)
(0.751906 5.2044e-06 -0.0238214)
(0.738871 8.51696e-06 0.0264691)
(0.726804 -6.33424e-06 -0.025081)
(0.716363 9.34478e-07 -0.0226067)
(0.705531 4.54698e-06 -0.00790089)
(0.695171 -1.17698e-06 -0.00493714)
(0.685452 -4.37718e-06 -0.00421605)
(0.676123 -1.55702e-06 -0.00398146)
(0.667216 2.16741e-06 -0.00380423)
(0.65876 3.40482e-06 -0.00360898)
(0.65075 2.07127e-06 -0.00339523)
(0.643194 -5.8535e-07 -0.00315653)
(0.636124 -2.15815e-06 -0.00285623)
(0.629659 -8.17819e-07 -0.00241046)
(0.623822 8.49134e-07 -0.00166236)
(0.619882 -2.61521e-07 -0.00107737)
(0.613082 -1.06237e-06 -0.00641635)
(0.603262 1.60027e-06 0.000230129)
(0.596228 3.34537e-06 0.0245597)
(0.593053 -7.44671e-08 -0.000119604)
(0.58687 -5.87211e-07 -0.00221384)
(0.581771 7.68668e-07 -0.00219859)
(0.577215 6.43883e-07 -0.00200705)
(0.572996 -8.65724e-07 -0.00183492)
(0.569095 -1.78064e-06 -0.00168531)
(0.565492 -1.26609e-06 -0.00154683)
(0.562175 1.23327e-07 -0.00141243)
(0.559139 1.77458e-06 -0.00127566)
(0.556384 3.06998e-06 -0.00112791)
(0.553935 2.74077e-06 -0.000951802)
(0.551845 1.75277e-07 -0.000721425)
(0.550217 -2.18652e-06 -0.000375274)
(0.549174 -1.33009e-06 0.000115197)
(0.549691 4.9028e-07 0.000608351)
(0.547259 5.6616e-06 -0.0222983)
(0.546102 3.18283e-06 -0.00574745)
(0.545624 -1.81655e-06 -0.000178717)
(0.546013 2.96101e-06 0.00336989)
(0.545609 5.27815e-06 0.0193054)
(0.545591 -3.55084e-07 -0.0198861)
(0.547001 3.22046e-06 -0.012726)
(0.547107 3.2721e-06 0.0117193)
(0.548767 5.25682e-06 0.00563869)
(0.548281 5.6257e-06 0.0195022)
(0.548647 -1.18016e-06 -0.0199071)
(0.550925 4.40151e-06 -0.0127081)
(0.551237 5.25288e-06 0.0109811)
(0.555152 -2.64852e-07 0.00477076)
(0.559026 -2.69083e-06 0.00172259)
(0.560489 -2.7841e-06 -0.0017822)
(0.560308 -2.48036e-06 -0.0124862)
(0.563172 5.55277e-07 -0.00154007)
(0.568667 3.44878e-06 0.018577)
(0.57332 2.37841e-06 0.0311683)
(0.580039 -2.73423e-06 0.00449295)
(0.584543 1.4888e-06 0.00291608)
(0.591338 8.25427e-06 0.00381512)
(0.600875 5.70448e-06 0.00471411)
(0.608759 2.4995e-06 -0.0215305)
(0.619642 2.4745e-06 0.00027659)
(0.632451 1.51706e-06 0.00462254)
(0.644046 2.36177e-07 0.00500598)
(0.657065 -2.47175e-06 0.00579903)
(0.671696 -2.77082e-06 0.00773204)
(0.688365 2.4388e-06 0.0138203)
(0.707491 4.47441e-06 0.0389536)
(0.732785 -1.31786e-06 0.0128713)
(0.755286 -9.55659e-07 0.011452)
(0.781937 1.4401e-06 0.0127435)
(0.812064 9.26097e-07 0.0142919)
(0.845669 9.80846e-07 0.0155451)
(0.882357 4.15132e-06 0.0161111)
(0.921527 3.02996e-06 0.0172857)
(0.971461 7.9276e-07 0.0368457)
(1.04281 4.0529e-06 0.06007)
(1.12413 3.19485e-06 0.0444333)
(1.20451 1.55172e-07 0.0466109)
(1.30065 -7.19082e-07 0.0543699)
(1.41551 7.48771e-07 0.0650307)
(1.55373 2.24738e-06 0.078621)
(1.72194 2.46418e-06 0.0961346)
(1.92927 1.8438e-06 0.119054)
(2.18797 1.27838e-06 0.149357)
(2.51532 1.13036e-06 0.18953)
(2.9316 1.21252e-06 0.242369)
(3.47114 1.19643e-06 0.309019)
(4.13527 9.54378e-07 0.389057)
(5.05168 6.118e-07 0.448532)
(5.82959 3.27675e-07 0.514613)
(6.52977 1.26883e-07 0.86248)
(15.606 2.77393e-07 0.985926)
(7.07857 6.39899e-09 4.64416)
(12.5598 3.38047e-07 3.14821)
(12.1832 5.55958e-07 2.32608)
(11.8893 6.54611e-07 1.58871)
(11.6875 7.68623e-07 1.05605)
(11.4569 7.63971e-07 0.668803)
(11.2075 5.28194e-07 0.374836)
(10.9466 1.03339e-07 0.150691)
(10.6726 -3.44437e-07 -0.0203868)
(10.3824 -6.75428e-07 -0.151692)
(10.0734 -8.52849e-07 -0.252842)
(9.74076 -8.69502e-07 -0.333042)
(9.37968 -7.57849e-07 -0.402749)
(8.96624 -5.53543e-07 -0.454724)
(8.55844 -1.33281e-07 -0.257915)
(8.27948 1.34762e-07 -0.0627239)
(8.01604 6.34298e-08 -0.123549)
(7.7355 6.36257e-08 -0.148425)
(7.45125 9.83737e-08 -0.157068)
(7.17278 1.24895e-07 -0.156807)
(6.90242 1.37822e-07 -0.151986)
(6.64136 1.3626e-07 -0.145182)
(6.39036 1.19967e-07 -0.137744)
(6.14969 9.04875e-08 -0.130326)
(5.91934 5.12896e-08 -0.123221)
(5.69916 7.51805e-09 -0.116534)
(5.48891 -3.48754e-08 -0.110281)
(5.28829 -7.05608e-08 -0.104443)
(5.09698 -9.61302e-08 -0.0989874)
(4.91463 -1.10622e-07 -0.0938799)
(4.74088 -1.15467e-07 -0.0890905)
(4.57537 -1.14311e-07 -0.0845922)
(4.41774 -1.10314e-07 -0.0803639)
(4.26763 -1.05661e-07 -0.0763875)
(4.12467 -1.02241e-07 -0.072645)
(3.98853 -1.00396e-07 -0.0691206)
(3.85885 -9.92636e-08 -0.0658003)
(3.7353 -9.74638e-08 -0.0626715)
(3.61757 -9.38381e-08 -0.0597221)
(3.50535 -8.78427e-08 -0.0569411)
(3.39833 -7.95985e-08 -0.0543181)
(3.29624 -6.96994e-08 -0.0518435)
(3.19881 -5.89741e-08 -0.0495083)
(3.10579 -4.82391e-08 -0.0473042)
(3.01692 -3.8119e-08 -0.0452235)
(2.93198 -2.89577e-08 -0.0432591)
(2.85075 -2.08092e-08 -0.0414043)
(2.77303 -1.34799e-08 -0.0396532)
(2.6986 -6.63625e-09 -0.038)
(2.6273 8.9538e-11 -0.0364394)
(2.55893 7.01547e-09 -0.0349665)
(2.49334 1.43583e-08 -0.0335766)
(2.43036 2.22025e-08 -0.0322655)
(2.36985 3.05127e-08 -0.0310288)
(2.31166 3.91411e-08 -0.0298627)
(2.25565 4.78665e-08 -0.0287632)
(2.20171 5.64222e-08 -0.0277268)
(2.14971 6.45187e-08 -0.0267499)
(2.09954 7.1881e-08 -0.0258292)
(2.05109 7.82686e-08 -0.0249613)
(2.00427 8.35085e-08 -0.0241431)
(1.95897 8.75232e-08 -0.0233715)
(1.91512 9.03572e-08 -0.0226436)
(1.87264 9.21767e-08 -0.0219564)
(1.83144 9.32549e-08 -0.0213073)
(1.79145 9.39359e-08 -0.0206935)
(1.75262 9.45657e-08 -0.0201126)
(1.71487 9.54247e-08 -0.019562)
(1.67816 9.66536e-08 -0.0190394)
(1.64244 9.82011e-08 -0.0185425)
(1.60765 9.97669e-08 -0.0180693)
(1.57375 1.00789e-07 -0.0176177)
(1.5407 1.00415e-07 -0.0171857)
(1.50848 9.75226e-08 -0.0167716)
(1.47703 9.07928e-08 -0.0163737)
(1.44635 7.888e-08 -0.0159902)
(1.41639 6.06334e-08 -0.0156199)
(1.38714 3.52873e-08 -0.0152612)
(1.35857 2.49358e-09 -0.0149129)
(1.33067 -3.79166e-08 -0.0145738)
(1.30341 -8.62651e-08 -0.0142428)
(1.27679 -1.4299e-07 -0.013919)
(1.25079 -2.07525e-07 -0.0136015)
(1.2254 -2.75727e-07 -0.0132894)
(1.2006 -3.36511e-07 -0.012982)
(1.1764 -3.69997e-07 -0.0126789)
(1.15277 -3.50763e-07 -0.0123793)
(1.12973 -2.58988e-07 -0.0120831)
(1.10724 -9.84979e-08 -0.0117898)
(1.08532 8.60127e-08 -0.0114995)
(1.06396 2.06653e-07 -0.011212)
(1.04314 1.60266e-07 -0.0109272)
(1.02286 -1.08061e-07 -0.0106447)
(1.00312 -5.2575e-07 -0.0103641)
(0.983923 -8.5473e-07 -0.0100847)
(0.965256 -7.7813e-07 -0.00980658)
(0.947115 -1.57668e-07 -0.00953016)
(0.929494 6.54733e-07 -0.00925642)
(0.912384 8.16359e-07 -0.00898497)
(0.895785 -2.91714e-07 -0.00871106)
(0.879711 -1.8916e-06 -0.0084221)
(0.864196 -1.75769e-06 -0.00809428)
(0.849282 9.71028e-07 -0.0076784)
(0.835145 2.13816e-06 -0.00707234)
(0.821804 -2.66939e-06 -0.00607169)
(0.811404 -2.71613e-06 -0.00502451)
(0.796396 8.37389e-06 -0.0130842)
(0.776799 2.97899e-06 -0.00960168)
(0.760815 -7.23142e-06 -0.0372355)
(0.751929 5.20338e-06 -0.0238151)
(0.738872 8.51517e-06 0.0264298)
(0.726775 -6.33833e-06 -0.0251226)
(0.716345 9.34938e-07 -0.0226202)
(0.705541 4.54668e-06 -0.00788891)
(0.695175 -1.17653e-06 -0.00494663)
(0.685442 -4.37498e-06 -0.00422905)
(0.676116 -1.55619e-06 -0.00398672)
(0.667217 2.16626e-06 -0.00380323)
(0.658765 3.40301e-06 -0.00360765)
(0.650755 2.07016e-06 -0.00339532)
(0.643198 -5.85038e-07 -0.00315659)
(0.636126 -2.157e-06 -0.00285669)
(0.629659 -8.1739e-07 -0.00241389)
(0.623826 8.48689e-07 -0.0016672)
(0.619891 -2.61372e-07 -0.0010767)
(0.613088 -1.06168e-06 -0.00641884)
(0.603266 1.59895e-06 0.00019777)
(0.596226 3.34361e-06 0.0245201)
(0.593047 -7.44702e-08 -0.000115921)
(0.586863 -5.87357e-07 -0.00220944)
(0.581759 7.68898e-07 -0.0021978)
(0.577203 6.44083e-07 -0.00200716)
(0.572987 -8.65996e-07 -0.00183415)
(0.56909 -1.78121e-06 -0.00168378)
(0.565488 -1.26649e-06 -0.00154508)
(0.562171 1.23365e-07 -0.00141092)
(0.559131 1.77513e-06 -0.00127512)
(0.556373 3.07093e-06 -0.00112901)
(0.553924 2.74162e-06 -0.000953649)
(0.551839 1.75331e-07 -0.000721139)
(0.550216 -2.18718e-06 -0.000371428)
(0.549173 -1.33049e-06 0.000118104)
(0.549694 4.90446e-07 0.000604682)
(0.547261 5.66421e-06 -0.0223483)
(0.546096 3.1837e-06 -0.00577162)
(0.545626 -1.81633e-06 -0.00015289)
(0.546027 2.95967e-06 0.0033464)
(0.545604 5.27748e-06 0.0192556)
(0.54558 -3.5531e-07 -0.019938)
(0.546995 3.2223e-06 -0.0127503)
(0.547105 3.2716e-06 0.0117112)
(0.548771 5.25329e-06 0.00561329)
(0.548279 5.62433e-06 0.0194667)
(0.548654 -1.18086e-06 -0.0199491)
(0.550925 4.40393e-06 -0.0127323)
(0.551222 5.25225e-06 0.01096)
(0.555142 -2.64797e-07 0.00476595)
(0.559041 -2.69016e-06 0.00174968)
(0.560499 -2.78339e-06 -0.00176787)
(0.560304 -2.4802e-06 -0.0125091)
(0.563168 5.55302e-07 -0.0015643)
(0.568667 3.44696e-06 0.0185569)
(0.573313 2.37726e-06 0.0311303)
(0.580036 -2.73415e-06 0.00449534)
(0.584553 1.48907e-06 0.0029311)
(0.591343 8.25648e-06 0.00382201)
(0.600878 5.70653e-06 0.00471344)
(0.608761 2.50092e-06 -0.0215915)
(0.619634 2.4757e-06 0.000231498)
(0.632442 1.51694e-06 0.00463481)
(0.64405 2.36134e-07 0.00501629)
(0.65707 -2.47125e-06 0.0058135)
(0.671697 -2.77034e-06 0.00774489)
(0.688377 2.43784e-06 0.0137738)
(0.7075 4.47317e-06 0.0388929)
(0.73278 -1.31803e-06 0.0128666)
(0.755277 -9.55909e-07 0.0114498)
(0.781926 1.44051e-06 0.0127398)
(0.812059 9.26353e-07 0.0142896)
(0.845669 9.81112e-07 0.0155454)
(0.882354 4.15247e-06 0.0161078)
(0.921522 3.03091e-06 0.0172728)
(0.971456 7.93179e-07 0.0368124)
(1.04279 4.0557e-06 0.0600269)
(1.12412 3.19535e-06 0.0444284)
(1.2045 1.55172e-07 0.0466166)
(1.30065 -7.19076e-07 0.0543741)
(1.41551 7.48772e-07 0.0650305)
(1.55372 2.24738e-06 0.0786194)
(1.72194 2.46418e-06 0.0961334)
(1.92927 1.8438e-06 0.119053)
(2.18797 1.27838e-06 0.149356)
(2.51532 1.13036e-06 0.189529)
(2.9316 1.21252e-06 0.242368)
(3.47114 1.19643e-06 0.309018)
(4.13527 9.54378e-07 0.389056)
(5.05168 6.118e-07 0.448531)
(5.82959 3.27675e-07 0.514612)
(6.52977 1.26883e-07 0.862479)
(15.606 2.77393e-07 0.985925)
)
;
boundaryField
{
leftAndRight
{
type noSlip;
}
frontAndBack
{
type empty;
}
hot
{
type noSlip;
}
cold
{
type noSlip;
}
inlet
{
type fixedValue;
value uniform (8 0 0);
}
outlet
{
type zeroGradient;
}
}
// ************************************************************************* //
|
|
4b5bdb26ec46a581047418e007c955f117bc736f
|
2f171779ce9f15c0425a145aac26b03546a7a4cc
|
/aprspass_small.cpp
|
8a94536a480a3870053ac19a5df9fdba9594d6b8
|
[] |
no_license
|
jafo2128/aprspass
|
0656601b35962852cfc87c6e7eaa6ba00c3fa0b1
|
0e0cc2e5a987b6daf25b6e42354ee6c42d1e7217
|
refs/heads/master
| 2023-03-17T11:59:54.105453
| 2017-05-06T23:52:24
| 2017-05-06T23:52:24
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 449
|
cpp
|
aprspass_small.cpp
|
/*
Matthew Miller
May 6, 2017
Same as aprspass but to see how few lines I could make it for fun
*/
#include <iostream>
#include <string>
#include <stdint.h>
using namespace std;
uint16_t aprspass(string callsign)
{
uint16_t hash=0x73e2;
for(int x=0; x < callsign.length(); x++)
hash ^= toupper(callsign[x])<<(x%2?0:8);
return hash & 0x7fff;
}
int main(int argc, const char * argv[])
{
cout << aprspass(argv[1]) << endl;
return 0;
}
|
1aaa17cddac8e034e4ad09c10190bea74a4373fc
|
ef9056bc5ffb3e61fa78521ed87343a8df8840e5
|
/interfejs.cpp
|
95952fa6c0b87044b4eeedfcd4c6c702cc2d3dc0
|
[] |
no_license
|
Dszymczk/More-complicated-calculator
|
07d4bfbb05dc4b2aea3bd8ed2cb2f642b3155180
|
712c09a117dadd774b2a10481d5e95422db81c9a
|
refs/heads/master
| 2020-08-24T15:17:22.967823
| 2019-10-22T16:00:59
| 2019-10-22T16:00:59
| 216,853,477
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,569
|
cpp
|
interfejs.cpp
|
#include "interfejs.h"
using namespace std;
bool menu(oper *dzialania, zmienna *&zmienne, wyrazenie *&historia){
cout <<"Wybierz opcje: " <<endl;
cout <<"1) Licz "<<endl;
cout <<"2) Zdefiniuj zmienna "<<endl;
cout <<"3) Wczytaj historie "<<endl;
cout <<"4) Zapisz historie do pliku "<<endl;
cout <<"5) Wyjscie "<<endl;
string wybor;
cin>>wybor;
int i=atoi(wybor.c_str());
switch(i)
{
case 1:
{
cout<<"Podaj wyrazenie: "<<endl;
string wyr;
float wynik;
cin>>wyr;
wynik=parse(wyr, dzialania,zmienne);
cout<<endl<<"Wynik: " <<wynik<<endl;
if(historia==NULL){
historia=new wyrazenie;
historia->dzialanie=wyr;
historia->wynik=wynik;
historia->next=NULL;
}else{
wyrazenie *akt=historia;
while(akt->next!=NULL){
akt=akt->next;
}
akt->next=new wyrazenie;
akt=akt->next;
akt->dzialanie=wyr;
akt->wynik=wynik;
akt->next=NULL;
}
cin.get();
break;
}
case 2:
{
string name="", value="";
while(!(name[0]>='a'&&name[0]<='z'&&name[1]==NULL)){
cout <<endl<<"Podaj nazwe zmiennej(jedna, mala litera): ";
cin>>name;
}
while( atoi(value.c_str())==0 ){
cout<<" Podaj wartosc zmiennej: " ;
cin>>value;
}
dodaj_zmienna(zmienne,name,value);
break;
}
case 3:{
//Funkcja do wczytywania historii
wyrazenie *akt=historia;
cout<<endl<<" Historia:"<<endl;
while(akt!=NULL){
cout<<akt->dzialanie<<" = "<<akt->wynik<<endl;
akt=akt->next;
}
break;
}
case 4:
{
string nazwa;
cout<<endl<<" Podaj nazwe pliku do zapisu ";
cin >>nazwa;
ofstream plik_wy;
string tekst;
plik_wy.open(nazwa.c_str());
wyrazenie *akt=historia;
while(akt!=NULL){
tekst=akt->dzialanie;
plik_wy<<tekst<<" = ";
tekst=akt->wynik;
plik_wy<<akt->wynik<<"\n";
akt=akt->next;
}
plik_wy.close();
break;
}
case 5:
{
//Wyjście z aplilacji
return 0;
break;
}
default:
//system( "cls" );
cout<<endl<< "Podano bledna wartosc"<<endl<<endl;
menu(dzialania,zmienne,historia);
}
cout<<endl;
return 1;
}
|
e6fe328b40b8cb1dcf462613d49894121bea6ae8
|
81d61a0e4081c85076663622b14d7d71d7665d87
|
/src/network/ServerSocket.cpp
|
3c10f0b8f49d9cbbbba0b05486457d3dc70199f9
|
[
"Apache-2.0"
] |
permissive
|
cakapilrana/pushfyi
|
22dabcfbad579deef7a5847ee28b789971d93940
|
7ec8461b73e19b72c8eda38b337737c010b79885
|
refs/heads/master
| 2020-03-14T02:04:49.988696
| 2018-05-31T11:46:03
| 2018-05-31T11:46:03
| 131,391,720
| 8
| 1
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 3,895
|
cpp
|
ServerSocket.cpp
|
/*
*********************************************************
This code is a proprietary of Kapil Rana
Following may not be used in part on in whole without the
prior permission of Kapil Rana
Author: Kapil Rana
Date: 20/06/2015
Purpose: PUBNET TCP Server Socket Wrapper
*********************************************************
*/
#include <arpa/inet.h>
#include <errno.h>
#include <iostream>
#include <netdb.h>
#include <netinet/in.h>
#include <resolv.h>
#include <string.h>
#include <sys/socket.h>
#include <unistd.h>
#include "ServerSocket.h"
#include "Log.h"
using namespace std;
ServerSocket::ServerSocket()
: mSocket(-1), mHost("0.0.0.0"), mPort(0), mFinished(false)
{
}
ServerSocket::~ServerSocket()
{
}
rxStatus ServerSocket::bindAndListen(int port)
{
mPort = port;
return bindAndListen();
}
rxStatus ServerSocket::bindAndListen(std::string address, int port)
{
mHost = address;
mPort = port;
return bindAndListen();
}
rxStatus ServerSocket::bindAndListen()
{
int status = 0;
mSocket = socket(AF_INET, SOCK_STREAM, 0);
if(mSocket < 0) {
ERROR(Log::eNetwork, "Error in creating server socket");
return mSocket;
}
setSocketOption(mSocket);
INFO(Log::eNetwork, "Server socket created address = %s, port = %d socket fd = %d", mHost.c_str(), mPort, mSocket);
struct sockaddr_in tcpAddress;
memset(&tcpAddress, 0, sizeof(tcpAddress));
unsigned long inetAddress = inet_addr(mHost.c_str());
if(inetAddress != INADDR_NONE) {
//its a dotted decimal address
memcpy(&tcpAddress.sin_addr, &inetAddress, sizeof(inetAddress));
INFO(Log::eNetwork, "Dotted decimal address encountered");
} else {
res_init();
struct hostent* hostEntry = gethostbyname(mHost.c_str());
if(hostEntry == NULL) {
ERROR(Log::eNetwork, "gethostbyname error host = %s", mHost.c_str());
return h_errno;
}
INFO(Log::eNetwork, "Host name found host = %s", mHost.c_str());
memcpy(&tcpAddress.sin_addr, hostEntry->h_addr, hostEntry->h_length);
}
tcpAddress.sin_family = AF_INET;
tcpAddress.sin_port = htons(mPort);
status = bind(mSocket, (struct sockaddr*) &tcpAddress, sizeof(tcpAddress));
if(status < 0) {
ERROR(Log::eNetwork, "Bind error on port = %d", mPort);
return status;
}
INFO(Log::eNetwork, "Server Socket bind OK!! host = %s, port = %d", mHost.c_str(), mPort);
status = listen(mSocket, 1024);
if(status < 0) {
ERROR(Log::eNetwork, "Listen error on port = %d", mPort);
return status;
}
return 0;
}
void ServerSocket::Accept()
{
struct timeval tv_delta;
tv_delta.tv_usec = 0;
fd_set fdSet;
int retval=0;
FD_ZERO(&fdSet);
while(!mFinished) {
FD_SET(mSocket, &fdSet);
tv_delta.tv_usec = 0;
tv_delta.tv_sec = 2;
retval = select(mSocket+1, &fdSet, NULL, NULL, &tv_delta);
if(retval <=0) {
if(retval==0) {
idle(retval);
} else {
ERROR(Log::eNetwork, "Select failed on port = %d, error = %s", mPort, strerror(errno));
}
continue;
}
struct sockaddr peerAddress;
socklen_t socklen = sizeof(peerAddress);
int newSocket = accept(mSocket, &peerAddress, &socklen);
if(newSocket == -1) {
ERROR(Log::eNetwork, "Error in accept, listen address = %s, port = %d select returned = %d", mHost.c_str(), mPort, retval);
continue;
}
rxUShort port = ntohs(*((rxUShort*) &(peerAddress.sa_data[0])));
char ip[32] = {0};
sprintf(ip, "%hhu.%hhu.%hhu.%hhu", peerAddress.sa_data[2],peerAddress.sa_data[3],peerAddress.sa_data[4],
peerAddress.sa_data[5]);
processNewClientSocket(newSocket, ip, port);
}
::close(mSocket);
mSocket = 0;
}
void ServerSocket::setSocketOption(int socket)
{
int reuseAddr = 1;
setsockopt(socket, SOL_SOCKET, SO_REUSEADDR, &reuseAddr, sizeof(reuseAddr));
}
void ServerSocket::close()
{
::close(mSocket);
mSocket = -1;
//mFinished = true;
}
void ServerSocket::idle(int retval)
{
INFO(Log::eNetwork, "Select timed out retval = %d", retval);
}
|
94df53eeaf50f7f191f8f2eb32b46c0455298da0
|
bdd51924b6c609ed995b85a919dc2536c75b9595
|
/External/stocc/ex-evol1.cpp
|
f001c0d9d1d72ee29a1b81bf77d833959fc8ff9d
|
[
"MIT",
"GPL-3.0-only",
"LicenseRef-scancode-warranty-disclaimer",
"GPL-1.0-or-later",
"LicenseRef-scancode-other-copyleft"
] |
permissive
|
LBNL-UCB-STI/routing-framework
|
e8b2ab5e3d157636d12bc5ad8b482bf7b6af09d2
|
f600accb66652a7a9d3b7cc430a5f0df3ba7f2b1
|
refs/heads/master
| 2022-02-02T10:35:45.461877
| 2022-01-18T14:36:00
| 2022-01-18T14:36:00
| 248,285,766
| 0
| 1
|
MIT
| 2022-01-18T14:36:01
| 2020-03-18T16:33:35
|
C++
|
UTF-8
|
C++
| false
| false
| 8,641
|
cpp
|
ex-evol1.cpp
|
/*************************** ex-evol1.cpp **********************************
* Author: Agner Fog
* Date created: 2001-12-08
* Last modified: 2008-11-28
* Project: stocc.zip
* Source URL: www.agner.org/random
*
* Description:
* Example showing how to simulate biological evolution using the library *
* of non-uniform random number generators. *
* *
* This model simulates evolution at a bi-allelic Mendelian locus with *
* discreete non-overlapping generations. *
* *
* The ab locus can contain genes a and b. In the initial state, all *
* individuals have genotype (a,a). *
* Gene b can be recessive or dominant or partially dominant. *
* *
* Selection takes place in the form of differential survival, for example *
* in the form of selective predation. *
* *
* Instructions: *
* Set the parameters to the desired values. The parameters are defined at *
* "Define parameters" below. Compile for console mode. The necessary source *
* files are contained in evolc.zip. Run the compiled program. *
* Further description in the file evolc.htm. *
* *
* Further documentation:
* The file ran-instructions.pdf contains further documentation and
* instructions.
*
* Copyright 2001-2008 by Agner Fog.
* GNU General Public License http://www.gnu.org/licenses/gpl.html
*****************************************************************************/
#include <time.h> // define time()
#include "randomc.h" // define classes for random number generators
#include "mersenne.cpp" // code for random number generator
#include "stocc.h" // define random library classes
#include "stoc1.cpp" // random library source code
#include "stoc3.cpp" // random library source code
#include "userintf.cpp" // define system specific user interface
#include "wnchyppr.cpp" // define Wallenius' noncentral hypergeometric distribution
#include "fnchyppr.cpp" // define Fisher's noncentral hypergeometric distribution
//-----------------------------------------------------------------------------
// Function SplitIntoGenotypes
//-----------------------------------------------------------------------------
void SplitIntoGenotypes(int32_t * genotypes, int32_t * genes, StochasticLib1 & stoc) {
// split gene pool into (a,a), (a,b) and (b,b) genotypes
// parameters:
// genotypes: output. array with 3 places.
// gets number of (a,a), (a,b), and (b,b) genotypes, respectively
// genes: gene pool. array with 2 places
// stoc: random library
int32_t g; // total number of genes
int32_t na_; // number of individuals with gene a on first place
g = genes[0] + genes[1];
na_ = stoc.Hypergeometric(g/2, genes[0], g);
genotypes[0] = stoc.Hypergeometric(na_, genes[0] - na_, g/2);
genotypes[1] = genes[0] - 2*genotypes[0];
genotypes[2] = g/2 - genotypes[0] - genotypes[1];}
//-----------------------------------------------------------------------------
// main
//-----------------------------------------------------------------------------
int main() {
//---------------------------------------------------------------------------
// Define parameters
// You may change these parameters:
//---------------------------------------------------------------------------
int32_t PopulationSize = 100; // initial population size
double MutationRate = 1.E-5; // mutation rate
double GrowthRate = 1.10; // unrestrained growth rate
int32_t CarryingCapacity = 100000; // maximum number of individuals in habitat
double CapacityDeviation = 5000; // standard deviation of max individuals
double SelectionCoefficient = 0.1; // coefficient of selection in favor of b over a
double Dominance = 0.5; // 0 if gene a dominant,
// 1 if gene b dominant,
// between 0 and 1 if partial dominance
int32_t Generations = 8000; // number of generations to simulate
//---------------------------------------------------------------------------
// other declarations
//---------------------------------------------------------------------------
// Make random library
int32_t seed = (int32_t)time(0); // random seed
StochasticLib3 sto(seed); // make instance of random library
// Other variables
int32_t ParentGenePool[2]; // number of genes a and b
int32_t ChildGenePool[2]; // gene pool of child generation
int32_t GenerationNumber; // generation number
int32_t Mutations; // forward - backwards mutations
int32_t Children; // number of individuals in child population
int32_t MaxPopulation; // maximum population size
int32_t Genotypes[3]; // genotypes (a,a), (a,b), and (b,b)
double Fitness[3]; // relative fitness for each genotype
int32_t OutputPeriod; // period between outputs
//---------------------------------------------------------------------------
// initializations
//---------------------------------------------------------------------------
// Calculate reciprocal relative fitness of each genotype
Fitness[0] = 1.;
Fitness[1] = 1. + SelectionCoefficient * Dominance;
Fitness[2] = 1. + SelectionCoefficient;
// Make initial gene pool
ParentGenePool[0] = 2 * PopulationSize;
ParentGenePool[1] = 0;
// Prepare output
OutputPeriod = Generations / 20;
printf("generation gene a gene b");
printf("\n %8i %8li %8li", 0, ParentGenePool[0], ParentGenePool[1]);
//---------------------------------------------------------------------------
// Generation loop
//---------------------------------------------------------------------------
for (GenerationNumber = 1; GenerationNumber <= Generations; GenerationNumber++) {
// Mutation
Mutations = sto.Binomial(ParentGenePool[0], MutationRate)
- sto.Binomial(ParentGenePool[1], MutationRate);
ParentGenePool[0] -= Mutations;
ParentGenePool[1] += Mutations;
// Breeding
// Number of children can be a poisson or normal distribution
Children = sto.Poisson(PopulationSize * GrowthRate);
// Child gene pool follows binomial distribution
sto.Multinomial (ChildGenePool, ParentGenePool, Children*2, 2);
// Limit population size
PopulationSize = Children;
MaxPopulation = (int32_t)sto.Normal(CarryingCapacity, CapacityDeviation);
if (MaxPopulation < 0) MaxPopulation = 0;
if (PopulationSize > MaxPopulation) PopulationSize = MaxPopulation;
// Split child gene pool into (a,a), (a,b) and (b,b) genotypes
SplitIntoGenotypes(Genotypes, ChildGenePool, sto);
// Differential death.
// The number of deaths of each genotype follows a multivariate Wallenius
// noncentral hypergeometric distribution. The number of survivals follows
// the complementary distribution.
sto.MultiComplWalleniusNCHyp(Genotypes, Genotypes, Fitness, PopulationSize, 3);
// New gene pool
ChildGenePool[0] = Genotypes[0]*2 + Genotypes[1];
ChildGenePool[1] = Genotypes[1] + Genotypes[2]*2;
// Generation shift
ParentGenePool[0] = ChildGenePool[0];
ParentGenePool[1] = ChildGenePool[1];
// Output
if (GenerationNumber % OutputPeriod == 0) {
printf("\n %8li %8li %8li",
GenerationNumber, ParentGenePool[0], ParentGenePool[1]);
if (PopulationSize == 0) break;}
//-------------------------------------------------------------------------
// end of generation loop
//-------------------------------------------------------------------------
}
EndOfProgram(); // system-specific exit code
return 0;
}
|
a0ff473deea83d7d4d8f0ee37b190717e002cae4
|
2bfc58f1c0329516b2e76351b280a56e318bde20
|
/source/main.cpp
|
9643a4559ccafd8086c97ccbc6b12e681267fb14
|
[
"MIT"
] |
permissive
|
littlebugyang/xieguangkun
|
285dfc72f83f229816c40073e5967010f4cd1a60
|
1f3a5fe9988e2863734389e6325bce37c3d1e0d4
|
refs/heads/master
| 2022-02-23T22:43:39.860237
| 2019-09-17T09:15:04
| 2019-09-17T09:15:04
| 209,001,326
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 8,023
|
cpp
|
main.cpp
|
/*
* @Date: 2019-08-12 11:31:51
* @LastEditors: lby
*/
//Defines the entry point for the console application.
/*
注意! 本程序可能有内存泄漏!
注意! 本程序可能有内存泄漏!
注意! 本程序可能有内存泄漏!
注意! 本程序可能有内存泄漏!
注意! 本程序可能有内存泄漏!
注意! 本程序可能有内存泄漏!
注意! 本程序可能有内存泄漏!
注意! 本程序可能有内存泄漏!
注意! 本程序可能有内存泄漏!
注意! 本程序可能有内存泄漏!
注意! 本程序可能有内存泄漏!
注意! 本程序可能有内存泄漏!
注意! 本程序可能有内存泄漏!
注意! 本程序可能有内存泄漏!
注意! 本程序可能有内存泄漏!
注意! 本程序可能有内存泄漏!
注意! 本程序可能有内存泄漏!
注意! 本程序可能有内存泄漏!
注意! 本程序可能有内存泄漏!
注意! 本程序可能有内存泄漏!
注意! 本程序可能有内存泄漏!
注意! 本程序可能有内存泄漏!
注意! 本程序可能有内存泄漏!
注意! 本程序可能有内存泄漏!
注意! 本程序可能有内存泄漏!
注意! 本程序可能有内存泄漏!
注意! 本程序可能有内存泄漏!
注意! 本程序可能有内存泄漏!
注意! 本程序可能有内存泄漏!
注意! 本程序可能有内存泄漏!
*/
#include <iostream>
#include <string>
#include <stdio.h>
#include <stdlib.h>
#include <ctime>
#include <chrono>
using namespace std;
using namespace chrono;
//user defined
#include "message.h"
#include "strategy.h"
#include "socketClient.h"
#include "myLog.h"
int main(int argc, char* argv[])
{
char logPath[] = "/var/log/battle.log";
if (argc < 4)
{
LOGE("Usage: %s [player_id] [serverIp] [serverPort]\n", argv[0]);
return -1;
}
/* 提取命令行参数 */
unsigned long serverIp = inet_addr(argv[2]);
unsigned short serverPort = atoi(argv[3]);
#if defined(_MSC_VER)//win
#pragma comment(lib,"ws2_32.lib")
WORD wVersionRequested = MAKEWORD(1, 1);
WSADATA wsAdata;
if (0 != WSAStartup(wVersionRequested, &wsAdata))
{
return -1;
}
if ((LOBYTE(wsAdata.wVersion) != 1) || (HIBYTE(wsAdata.wVersion) != 1))
{
WSACleanup();
return -1;
}
// windows下存放日志文件
strcpy(logPath, "./battle.log");
#endif
// 创建日志文件
LOGINIT(logPath);
time_t now = time(0);
char* timeStr = ctime(&now);
LOGE("Current time is: %s", timeStr);
/* 创建socket */
SocketClient client(serverIp, serverPort);
// sockClient = socket(AF_INET,SOCK_STREAM,0);
// /* 连接server */
// struct sockaddr_in addrSrv;
// bzero( &addrSrv, sizeof(addrSrv) );
// addrSrv.sin_addr.s_addr = serverIp;
// addrSrv.sin_family = AF_INET;
// addrSrv.sin_port = htons(serverPort);
LOGE("try to connect server(%s:%u)", inet_ntoa(client.addrSrv_.sin_addr), ntohs(client.addrSrv_.sin_port));
while (0 != client.Connect())
{
sleep(10);
};
LOGE("connect server success", inet_ntoa(client.addrSrv_.sin_addr), ntohs(client.addrSrv_.sin_port));
int myTeamId = atoi(argv[1]);
int myPlayerId[4] = { 0 };
/* 向server注册 */
char regMsg[200] = { '\0' };
snprintf(regMsg, sizeof(regMsg), "{\"msg_name\":\"registration\",\"msg_data\":{\"team_id\":%d,\"team_name\":\"xgk\"}}", myTeamId);
char regMsgWithLength[200] = { '\0' };
snprintf(regMsgWithLength, sizeof(regMsgWithLength), "%05d%s", (int)strlen(regMsg), regMsg);
client.Send(regMsgWithLength, (int)strlen(regMsgWithLength), 0);
// send(sockClient, regMsgWithLength, (int)strlen(regMsgWithLength), 0);
LOGE("register my info to server success\n");
OurStrategy strategy = OurStrategy(myTeamId); // 设置我方teamId, 该参数一直不变
RoundMsg* globalRoundMsg = NULL;
LegStartMsg* globalLegMsg = NULL;
/* 进入游戏 */
int temptime = 0;
while (1)
{
char buffer[99999] = { '\0' };
// int size = recv(sockClient, buffer, sizeof(buffer)-1, 0);
int size = client.Recv(buffer, sizeof(buffer) - 1, 0);
if (size > 0)
{
LOGE("\r Round Server Msg: %s\r", buffer);
cJSON* msgBuf = cJSON_Parse(buffer + 5);
if (NULL == msgBuf) continue;
LOGE("\r OnMssageRecv: %d\r ", clock());
cJSON* msgNamePtr = cJSON_GetObjectItem(msgBuf, "msg_name");
if (NULL == msgNamePtr) continue;
char* msgName = msgNamePtr->valuestring;
if (0 == strcmp(msgName, "round"))
{
/* ------------- 计时 ----------------- */
auto start = system_clock::now();
//printf("the round is start, myPlayerId are:%d,%d,%d,%d\n", myPlayerId[0], myPlayerId[1], myPlayerId[2], myPlayerId[3]);
//RoundMsg roundMsg(msgBuf);
//roundMsg.DecodeMessge();
if (globalRoundMsg)
{
delete globalRoundMsg;
//printf("round1\n");
globalRoundMsg = NULL;
}
globalRoundMsg = new RoundMsg(msgBuf);
globalRoundMsg->DecodeMessge();
strategy.updateRound(globalRoundMsg);
//printf("%d\n", sizeof(globalRoundMsg->getPlayers()));
//根据策略和寻路决定下一步的动作,向服务器发送action消息
ActMsg actMsg(globalRoundMsg->getRoundId());
LOGE("********************round %d is start********************", globalRoundMsg->getRoundId());
strategy.DistinguishPlayers(myPlayerId[0], myPlayerId[1], myPlayerId[2], myPlayerId[3]);//将敌我kun
strategy.UpdateDispersed();
if (strategy.GameSituation() != DEFENSE)
strategy.updateAttacker();
else
strategy.updateEnemyKun();
//strategy.UpdateBait();//选择诱饵kun
//strategy.CheckSituation();
for (int index = 0; index < 4; ++index)
{
LOGE("----------------------------------------------");
strategy.AddMapFrequency(myPlayerId[index]);
strategy.GetEnemyVis(myPlayerId[index]);
strategy.GetPowerVis(myPlayerId[index]);
LOGE("mykun(id: %d)\ncan see %d enemys and %d powers", myPlayerId[index], strategy.GetEnemyVisNum(), strategy.GetPowerVisNum());
SubAction action;
action.moveDirect = strategy.FinalDecision(myPlayerId[index]);//我方kun做出移动决定
if (action.moveDirect == NO_MOVE)
{
LOGE("DEAD!reset it's block state");
strategy.sethasBlock(index);
}
LOGE("decides it's direct:%d", action.moveDirect);
LOGE("----------------------------------------------");
actMsg.AddSubAction(myTeamId, myPlayerId[index], action);//发送决定
}
LOGE("%d", strategy.gethasBlock(0));
LOGE("%d", strategy.gethasBlock(1));
LOGE("%d", strategy.gethasBlock(2));
LOGE("%d", strategy.gethasBlock(3));
strategy.map->printfAreaFre();
strategy.UpdateLastPos();
const int maxActMsgLenth = 9999;
char msgToSend[maxActMsgLenth] = { 0 };
actMsg.PackActMsg(msgToSend, maxActMsgLenth);
LOGE("\nsend message:\n%s", msgToSend);
auto end = system_clock::now();
auto duration = duration_cast<microseconds>(end - start);
LOGE("这一回合在计算上花费的时间是: %f秒", double(duration.count()) * microseconds::period::num / microseconds::period::den);
client.Send(msgToSend, (int)strlen(msgToSend), 0);
}
else if (0 == strcmp(msgName, "leg_start"))
{
//LegStartMsg legMsg(msgBuf);
//legMsg.DecodeMessge(myTeamId,myPlayerId);
if (globalLegMsg)
{
delete globalLegMsg;
globalLegMsg = NULL;
}
globalLegMsg = new LegStartMsg(msgBuf);
globalLegMsg->DecodeMessge(myTeamId, myPlayerId);
strategy.initKunBlock(myPlayerId[0], myPlayerId[1], myPlayerId[2], myPlayerId[3]);
LOGE("game start\n");
strategy.updateLeg(globalLegMsg);
strategy.initEnemyKun();
//DIRECT test = strategy.map->pathFind(18, 14, 13, 7);
//printf("TeST");
}
else if (0 == strcmp(msgName, "leg_end"))
{
LegEndMsg legMsg(msgBuf);
legMsg.DecodeMessge();
}
else if (0 == strcmp(msgName, "game_over"))
{
break;
}
}
/* 如果收到game_over消息, 请跳出循环,进入释放资源程序退出阶段 */
}
delete globalRoundMsg;
delete globalLegMsg;
//close(sockClient);
client.Close();
LOGEnd();
return 0;
}
|
0fd1c48f24acfe567d21e228bca88fe05c6b25ae
|
5a0a0d781b009bc592e5fc3b1e9048fadfc09adc
|
/c++/034_Network_OSC/src/ofApp.h
|
bee852a12ca65887b42dfba2b55f072c03d733fe
|
[] |
no_license
|
IAIA-CINE-392H/course-material
|
2e1050c572e2ff10d8eb8c70d2778bf1ad3d7cca
|
8f1c00b6bf5af7b19fa5fa823c3b6ca5aecc7d4a
|
refs/heads/master
| 2020-05-21T21:01:10.171759
| 2017-03-22T16:24:42
| 2017-03-22T16:24:42
| 65,834,669
| 0
| 2
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 434
|
h
|
ofApp.h
|
#pragma once
#include "ofMain.h"
#include "ofxGpuParticles.h"
#include "ofxOsc.h"
#define _PROGRAMMABLE_RENDERER
#define PORT 12345
class ofApp : public ofBaseApp
{
public:
void setup();
void update();
void draw();
private:
// set any update uniforms in this function
void onParticlesUpdate(ofShader& shader);
ofxGpuParticles particles;
ofEasyCam cam;
ofxOscReceiver receiver;
float px, py;
};
|
acdced162970d0a01873087486213abdccb1c4b2
|
14a2beab5622bbdfbab9450560d2ae37ed5eb064
|
/cxx/funcWithListOfArgs.cpp
|
31ce917a772b9876f4edd983ca261f117e14fbf2
|
[] |
no_license
|
goatold/pets
|
9fe5d12128a5f62aefb5c407e250156363a181d8
|
a307aba3f47a5bd4ed296345eb953bab5af0211e
|
refs/heads/master
| 2021-08-07T08:32:10.385172
| 2021-02-05T15:47:56
| 2021-02-05T15:47:56
| 37,509,649
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,404
|
cpp
|
funcWithListOfArgs.cpp
|
#include <string.h>
#include <stdio.h>
#include <stdarg.h>
#include <iostream>
using namespace std;
/********************
* Try function with variable list of arguments
*
*
********************/
#define M_vaf(args) vaf args
void vaf(char* arg0, ...) {
va_list args;
const char* p;
va_start(args, arg0);
cout << "dump args:" << args<< endl;
cout << "dump arg0:" << arg0<< endl;
for (p = arg0; *p != '\0'; ++p) {
char c = *p;
if (c == '%') {
++p;
if (*p == '\0') {
break;
}
switch (*p) {
case 's': {
const char* data = va_arg(args, const char*);
printf("%s", data);
}
break;
case 'd': {
int data = va_arg(args, int);
printf("%d", data);
}
break;
case 'f': {
double data = va_arg(args, double);
printf("%f", data);
}
break;
case '%': putchar('%');
break;
default: putchar(*p);
break;
}
} else {
putchar(c);
}
}
va_end(args);
}
int main() {
vaf("arg1: %d, arg2:%s, arg3: %f\n", 23, "2nd Arg", 2.3);
return 0;
}
|
0a505d05659a3e222895b7a3311d580a426f805b
|
373035950bdc8956cc0b74675aea2d1857263129
|
/cpp/common/write-event-loop.cc
|
b642ee8514c732f1f39df2eb2e19e654d601afcd
|
[
"BSD-2-Clause",
"BSD-3-Clause"
] |
permissive
|
limkokholefork/SPARTA
|
5d122cd2e920775d61a5404688aabbafa164f22e
|
6eeb28b2dd147088b6e851876b36eeba3e700f16
|
refs/heads/master
| 2021-11-11T21:09:38.366985
| 2017-06-02T16:21:48
| 2017-06-02T16:21:48
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 12,980
|
cc
|
write-event-loop.cc
|
//*****************************************************************
// Copyright 2015 MIT Lincoln Laboratory
// Project: SPAR
// Authors: OMD
// Description: Implementation of WriteEventLoop
//
// Modifications:
// Date Name Modification
// ---- ---- ------------
// 05 Oct 2012 omd Original Version
//*****************************************************************
#include "write-event-loop.h"
#include <fcntl.h>
using std::map;
////////////////////////////////////////////////////////////////////////////////
// WriteEventLoop
////////////////////////////////////////////////////////////////////////////////
WriteEventLoop::~WriteEventLoop() {
map<int, WriteQueue*>::iterator j;
for (j = write_queue_map_.begin(); j != write_queue_map_.end(); ++j) {
delete j->second;
}
}
WriteQueue* WriteEventLoop::GetWriteQueue(int file_descriptor) {
map<int, WriteQueue*>::iterator wqi = write_queue_map_.find(file_descriptor);
if (wqi == write_queue_map_.end()) {
WriteQueue* wq = new WriteQueue(this, file_descriptor);
write_queue_map_.insert(std::make_pair(file_descriptor, wq));
return wq;
} else {
return wqi->second;
}
}
////////////////////////////////////////////////////////////////////////////////
// WriteQueue Implementation
////////////////////////////////////////////////////////////////////////////////
WriteQueue::WriteQueue(WriteEventLoop* parent, int file_descriptor)
: parent_(parent), file_descriptor_(file_descriptor),
writeable_event_registered_(false), pending_bytes_(0),
num_blocked_threads_(0), logging_stream_(NULL),
max_pending_bytes_(kDefaultMaxPendingBytes),
pending_writes_event_(new FakeEvent(parent_->GetEventBase())) {
// ensure the file handle is in O_NONBLOCK mode. Calling write() with a
// regular handle is a blocking operation. With a handle in O_NONBLOCK it
// will write as much as possible before blocking and then return. That
// allows us to free up the event loop to handle other events. The 1st call
// here gets the current flags, the 2nd ensures O_NONBLOCK is set.
int cur_flags = fcntl(file_descriptor_, F_GETFL);
if ((cur_flags & O_NONBLOCK) == 0) {
fcntl(file_descriptor_, F_SETFL, cur_flags | O_NONBLOCK);
}
// Set up the event we'll want to register. Note that the event is not
// persistent as a file handle may well be writable even if we have
// nothing to write to it. Thus we only register this event when we want to
// know if the file handle has become writable when it wasn't before and we
// have data to write.
writeable_event_ =
event_new(parent_->GetEventBase(), file_descriptor_, EV_WRITE,
&WriteQueue::FileHandleWriteableCallback, this);
}
WriteQueue::~WriteQueue() {
boost::lock_guard<boost::mutex> l(data_tex_);
CHECK(output_queue_.size() == 0) << "WriteQueue destroyed but there "
<< "were still " << output_queue_.size() << " unwritten items";
// We have to free the FakeEvent before the event_base gets freed so we do it
// here explicitly.
pending_writes_event_.reset();
event_free(writeable_event_);
}
// Note that this does *NOT* aquire the data_tex_ mutex. Whatever methods call
// it *must* be holding the mutex. (Unfortunately boost::mutex doesn't seem to
// provide a way to check that a mutex is held so we can't put a CHECK here).
Knot::iterator WriteQueue::WriteItem(
const Knot* to_write, Knot::iterator start_it) {
if (logging_stream_ == NULL) {
return to_write->WriteToFileDescriptor(file_descriptor_, start_it);
} else {
Knot::iterator stop_it =
to_write->WriteToFileDescriptor(file_descriptor_, start_it);
(*logging_stream_) << to_write->SubKnot(start_it, stop_it);
return stop_it;
}
}
// This does not aquire the data_tex_ mutex. Any calling function must already
// hold this mutex.
Knot::iterator WriteQueue::TryWriteImmediate(Knot* to_write) {
if (output_queue_.size() == 0) {
pending_writes_event_->Add();
DCHECK(pending_bytes_ == 0);
Knot::iterator stop_it = WriteItem(to_write, to_write->begin());
if (stop_it == to_write->end()) {
pending_writes_event_->Remove();
}
return stop_it;
} else {
return to_write->begin();
}
}
bool WriteQueue::Write(Knot* to_write) {
DCHECK(to_write->Size() > 0);
boost::lock_guard<boost::mutex> l(data_tex_);
Knot::iterator next_write_start = to_write->begin();
// We should only try the write if we can guarantee we'll be able to complete
// the write. Otherwise we'd end up with a broken protocol. We can't know how
// much data the next write() call will accept but as long as there's room on
// the queue for the new data we know we'll be able to queue it if necessary.
if ((to_write->Size() + pending_bytes_) >=
static_cast<size_t>(max_pending_bytes_)) {
return false;
} else {
next_write_start = TryWriteImmediate(to_write);
if (next_write_start == to_write->end()) {
delete to_write;
return true;
} else {
// If we're here either we tried to write it and failed or we noticed that
// the queue isn't empty so we didn't even try to write it. In either case
// we need to queue it up to be written later.
QueueWrite(to_write, next_write_start, NULL);
return true;
}
}
}
StreamingWriter* WriteQueue::GetStreamingWriter() {
data_tex_.lock();
if (output_queue_.size() == 0) {
pending_writes_event_->Add();
output_queue_.push_back(
OutputQueueEntry(nullptr, Knot::iterator(), nullptr, true));
data_tex_.unlock();
} else {
SimpleCondition<bool> writer_ready(false);
++num_blocked_threads_;
QueueWrite(
OutputQueueEntry(nullptr, Knot::iterator(), &writer_ready, true));
// Have to unlock the mutex before we wait for the condition to become true
// or we'll deadlock.
data_tex_.unlock();
writer_ready.Wait(true);
}
return new StreamingWriter(this, logging_stream_);
}
void WriteQueue::WriteWithBlock(Knot* to_write) {
CHECK(boost::this_thread::get_id() !=
parent_->GetEventLoopThreadId())
<< "Calling WriteWithBlock from the WriteEventLoop thread "
<< "will cause a deadlock.";
DCHECK(to_write->Size() > 0);
data_tex_.lock();
Knot::iterator next_write_start = TryWriteImmediate(to_write);
if (next_write_start == to_write->end()) {
data_tex_.unlock();
delete to_write;
return;
} else {
SimpleCondition<bool> write_done(false);
QueueWrite(to_write, next_write_start, &write_done);
++num_blocked_threads_;
// Wait until the write completes.
data_tex_.unlock();
write_done.Wait(true);
}
}
void WriteQueue::QueueWrite(Knot* to_write, Knot::iterator start_it,
SimpleCondition<bool>* notify_cond) {
QueueWrite(OutputQueueEntry(to_write, start_it, notify_cond));
}
// Note that this does *NOT* aquire the data_tex_ mutex. Whatever methods call
// it *must* be holding the mutex. (Unfortunately boost::mutex doesn't seem to
// provide a way to check that a mutex is held so we can't put a CHECK here).
void WriteQueue::QueueWrite(const OutputQueueEntry& entry) {
output_queue_.push_back(entry);
if (!writeable_event_registered_) {
if (output_queue_.size() == 1) {
DCHECK(entry.output_item != nullptr);
parent_->RegisterEvent(writeable_event_);
writeable_event_registered_ = true;
} else {
// This happens if there is an allocated StreamingWriter instance but it
// currently doesn't have anything to write. In that case the file may be
// writeable but we have nothing to write and we're just queueing up a new
// write behind the StreamingWriter.
DCHECK(output_queue_.front().is_streaming_writer);
}
}
if (entry.output_item != nullptr) {
pending_bytes_ += entry.output_item->end() - entry.output_start_it;
DCHECK(pending_bytes_ > 0);
} else {
DCHECK(entry.is_streaming_writer == true);
}
}
void WriteQueue::StreamingWriterDone() {
boost::lock_guard<boost::mutex> l(data_tex_);
DCHECK(output_queue_.front().is_streaming_writer == true);
DCHECK(output_queue_.front().output_item == nullptr);
output_queue_.pop_front();
ProcessOutputQueue();
}
void WriteQueue::HandleCallback() {
boost::lock_guard<boost::mutex> l(data_tex_);
writeable_event_registered_ = false;
ProcessOutputQueue();
}
// Assumes the data_tex_ mutex is already held!
void WriteQueue::ProcessOutputQueue() {
while (output_queue_.size() > 0) {
DCHECK(pending_bytes_ >= 0);
OutputQueueEntry& to_write = output_queue_.front();
if (to_write.output_item == nullptr) {
// This should only happen if the item represents a blocked call to
// GetStreamingWriter(). In that case there isn't yet anything to write.
// Instead, we just signal that it is now safe to return the
// StreamingWriter object.
DCHECK(to_write.is_streaming_writer == true);
DCHECK(to_write.done_cond != nullptr);
--num_blocked_threads_;
DCHECK(num_blocked_threads_ >= 0);
to_write.done_cond->Set(true);
break;
} else {
// Assume we'll be able to write the everything in to_write. If not well
// adjust below.
pending_bytes_ -= to_write.output_item->end() - to_write.output_start_it;
DCHECK(pending_bytes_ >= 0);
Knot::iterator next_write_start = WriteItem(
to_write.output_item, to_write.output_start_it);
if (next_write_start == to_write.output_item->end()) {
// All written so remove it from the queue and free the Knot. Unless it
// was a StreamingWriter request in wich case we keep the item on the
// queue and exit the loop, waiting for future write requests.
if (to_write.is_streaming_writer) {
// Since this is a streaming writer, we don't remove it from the
// queue, but we do set the output_item to nullptr since it has been
// successfully written.
to_write.output_item = nullptr;
DCHECK(to_write.done_cond != nullptr);
to_write.done_cond->Set(true);
to_write.done_cond = nullptr;
--num_blocked_threads_;
DCHECK(num_blocked_threads_ >= 0);
break;
} else {
delete to_write.output_item;
if (to_write.done_cond != NULL) {
--num_blocked_threads_;
DCHECK(num_blocked_threads_ >= 0);
to_write.done_cond->Set(true);
}
output_queue_.pop_front();
}
} else {
// It wasn't all written so update the offset but don't pop it off the
// queue.
pending_bytes_ += to_write.output_item->end() - next_write_start;
to_write.output_start_it = next_write_start;
// There's still data left so we asked to get notified when we can again
// write to the file.
parent_->RegisterEvent(writeable_event_);
writeable_event_registered_ = true;
break;
}
}
}
if (output_queue_.size() == 0) {
no_items_pending_cond_.notify_all();
pending_writes_event_->Remove();
}
}
void WriteQueue::FileHandleWriteableCallback(
int file_descriptor_, short event_type, void* write_queue_ptr) {
CHECK(event_type == EV_WRITE);
WriteQueue* write_queue = reinterpret_cast<WriteQueue*>(write_queue_ptr);
write_queue->HandleCallback();
}
int WriteQueue::BytesPending() const {
boost::lock_guard<boost::mutex> l(data_tex_);
return pending_bytes_;
}
int WriteQueue::ItemsPending() const {
boost::lock_guard<boost::mutex> l(data_tex_);
return output_queue_.size();
}
void WriteQueue::WaitForPendingItems() const {
boost::unique_lock<boost::mutex> l(data_tex_);
while (output_queue_.size() > 0) {
no_items_pending_cond_.wait(l);
}
}
int WriteQueue::NumBlockedThreads() const {
boost::lock_guard<boost::mutex> l(data_tex_);
return num_blocked_threads_;
}
////////////////////////////////////////////////////////////////////////////////
// StreamingWriter
////////////////////////////////////////////////////////////////////////////////
StreamingWriter::StreamingWriter(WriteQueue* parent,
std::ostream* logging_stream)
: parent_(parent), logging_stream_(logging_stream) {
}
StreamingWriter::~StreamingWriter() {
parent_->StreamingWriterDone();
}
void StreamingWriter::Write(const Knot& to_write) {
SimpleCondition<bool> write_done(false);
{
boost::lock_guard<boost::mutex> l(parent_->data_tex_);
WriteQueue::OutputQueueEntry& entry = parent_->output_queue_.front();
DCHECK(entry.is_streaming_writer == true);
entry.output_item = &to_write;
parent_->pending_bytes_ += to_write.Size();
entry.output_start_it = to_write.begin();
entry.done_cond = &write_done;
++(parent_->num_blocked_threads_);
parent_->ProcessOutputQueue();
}
write_done.Wait(true);
}
|
1824a09480552a03c039224079e21dfc9e1675ef
|
d578b2e0da9c94fd1ea49611b06b7e86c4d34b67
|
/mqttClass.cpp
|
6f886f6f3562beb40f292c8725b5198f35cfb916
|
[
"MIT"
] |
permissive
|
ipa-rwu/weather_led_v2
|
63dd5b2ecb11bf672d1bf6b07196951170240715
|
2813efb7b67e3f6902010d5b469ec073b5b29f9f
|
refs/heads/main
| 2023-02-19T07:28:29.696678
| 2021-01-19T22:15:01
| 2021-01-19T22:15:01
| 331,079,713
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,527
|
cpp
|
mqttClass.cpp
|
#include "mqttClass.hpp"
MQTTClass::MQTTClass(Client& wifiClient):PubSubClient(wifiClient)
{
topic_location = "ball/weather/location";
topic_ball_color = "ball/color";
topic_onoff = "ball/onoff";
}
MQTTClass::~MQTTClass()
{
}
void MQTTClass::setup(const char* serverIP, int port, const char* myId) {
this->_serverIPAddress.fromString(serverIP);
this->_serverPort = port;
setServer(_serverIPAddress, _serverPort);
Serial.print("serverIP: ");
Serial.print(serverIP);
Serial.print(" port: ");
Serial.print(port);
strncpy(_id, myId, MAX_SIZE_MY_ID);
Serial.print(" id: ");
Serial.println(_id);
if (!this->connect(_id)) {
Serial.print("failed, rc=");
Serial.print(this->state());
Serial.println(" try again in 5 seconds");
}
}
bool MQTTClass::reconnect() {
if (this->connect(_id)) {
// Once connected, publish an announcement...
Serial.print("connected to mqtt");
Serial.println();
publish("esp/reconnect", "hello"); //Topic names
}
else
{
Serial.print("Not connect to mqtt, try again");
Serial.println();
}
return connected();
}
void MQTTClass::onCallback(char* topic, byte* payload, unsigned int length)
{
if (strcmp(topic, topic_location) == 0 || \
strcmp(topic, topic_ball_color) == 0 || \
strcmp(topic, topic_onoff) == 0)
{
payload[length] = '\0';
//for (int i = 0; i < length; i++) {
// Serial.println((char)payload[i]);
//}
// str_payload is payload of msg
str_payload = (char *)payload;
}
}
|
14d2b1422e9b786916da9a6f9c1fabb0ccb9ba2f
|
f6f0be9108ba516d0f49e009ffe525814c6f0c95
|
/test/strings/hashing_test.cpp
|
b5c02fa5b02381126c7d3b64c119601f7d97e0cb
|
[] |
no_license
|
PauloMiranda98/Competitive-Programming-Notebook
|
fe07a318c50c147cc3939dfde9034fe3de5056d9
|
54af0a8dcefdeb5505538a3716855db62bcdc716
|
refs/heads/master
| 2023-08-02T04:36:52.830218
| 2023-07-31T00:21:04
| 2023-07-31T00:21:04
| 242,273,238
| 20
| 4
| null | 2021-07-08T19:21:44
| 2020-02-22T03:30:13
|
C++
|
UTF-8
|
C++
| false
| false
| 511
|
cpp
|
hashing_test.cpp
|
#include "../../code/strings/hashing.h"
void test(){
srand(time(0));
int n = 500;
string s(n, 0), t(n, 0);
for (int i = 0; i < n; i++){
s[i] = 'a' + rand() % 26;
t[i] = 'a' + rand() % 26;
}
StringHashing sh_s(s), sh_t(t);
for(int i=0; i<n; i++){
for(int j=i; j<n; j++){
bool a = sh_s.getValue(i, j) == sh_t.getValue(i, j);
bool b = s.substr(i, j-i+1) == t.substr(i, j-i+1);
assert(a == b);
}
}
}
int main(){
for(int i=0; i<5; i++)
test();
return 0;
}
|
3227853fcb8e9886701a1e7466c4d3c7de32c564
|
64bd56e46ae9b4288b8ed2550d2b88079e6d90f3
|
/Classes/HeartPoints.h
|
ef4cfa51d7e2e57fd174b3610635e3d95cec87cb
|
[] |
no_license
|
HolicXXX/FruitSquad
|
c24d06aba3d7ef260e3d12f044ed41751ecc5e36
|
918f68f908be01d7c86f76b8ef06357c0ca2c7e4
|
refs/heads/master
| 2020-06-30T15:33:25.339799
| 2018-01-31T03:51:04
| 2018-01-31T03:51:04
| 74,362,568
| 1
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 322
|
h
|
HeartPoints.h
|
#ifndef _HEART_POINTS_H_
#define _HEART_POINTS_H_
#include "cocos2d.h"
class HeartPoints : public cocos2d::Node
{
public:
static HeartPoints* create();
virtual bool init();
virtual void update(float dt);
private:
cocos2d::Sprite* m_hpBG;
cocos2d::Vector<cocos2d::Sprite*> m_hearts;
void initHearts();
};
#endif
|
3ef9d79b5860b8e041db1aa8bc600a545daf61cf
|
994b6e89c696b55743eb695f99277da76d1d860d
|
/bench/src/kfs/src/cc/libkfsClient/KfsPendingOp.cc
|
86950659ed44aa218b008b4b775922eac061be56
|
[
"Apache-2.0"
] |
permissive
|
galtekar/berkeley-replay
|
a6f060c57be5510c2bf9829f861ccd1346db4e1f
|
fc63c06f8d6c1b3807862d8e7420d6b03446b370
|
refs/heads/master
| 2021-01-01T20:00:54.752487
| 2010-11-08T17:18:35
| 2010-11-08T17:18:35
| 28,765,613
| 3
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,930
|
cc
|
KfsPendingOp.cc
|
//---------------------------------------------------------- -*- Mode: C++ -*-
// $Id: KfsPendingOp.cc 353 2009-05-28 21:54:49Z sjakub $
//
// Created 2008/12/28
// Author: Mike Ovsiannikov
//
// Copyright 2008,2009 Quantcast Corp.
//
// This file is part of Kosmos File System (KFS).
//
// 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.
//
//
//----------------------------------------------------------------------------
#include "KfsPendingOp.h"
#include "KfsClientInt.h"
#include "qcdio/qcstutils.h"
#include "qcdio/qcdebug.h"
using namespace KFS;
KfsPendingOp::KfsPendingOp(
KfsClientImpl& inImpl)
: QCRunnable(),
mImpl(inImpl),
mFd(-1),
mReadFlag(false),
mStopFlag(false),
mResult(0),
mThread(),
mMutex(),
mWakeUpCond()
{
const int kStackSize = 128 << 10;
mThread.Start(this, kStackSize);
}
KfsPendingOp::~KfsPendingOp()
{
KfsPendingOp::Stop();
}
void
KfsPendingOp::Stop()
{
QCStMutexLocker theLock(mMutex);
mStopFlag = true;
mWakeUpCond.Notify();
theLock.Unlock();
mThread.Join();
}
bool
KfsPendingOp::Start(
int inFd,
bool inReadFlag)
{
if (inFd < 0) {
return false;
}
QCStMutexLocker theLock(mMutex);
mFd = inFd;
mReadFlag = inReadFlag;
mWakeUpCond.Notify();
return true;
}
/* virtual */ void
KfsPendingOp::Run()
{
QCStMutexLocker theLocker(mMutex);
while (! mStopFlag) {
mWakeUpCond.Wait(mMutex);
if (mFd < 0) {
continue;
}
const int theFd = mFd;
const bool theReadFlag = mReadFlag;
ssize_t theResult;
mFd = -1;
{
QCStMutexUnlocker theUnlocker(mMutex);
if (theReadFlag) {
MutexLock theLock(&mImpl.GetMutex());
const off_t thePos = mImpl.GetIoBufferSize(theFd) <= 0 ? -1 :
mImpl.Tell(theFd);
char theByte;
theResult = thePos < 0 ? -1 : mImpl.Read(theFd, &theByte, 1);
if (theResult > 0) {
mImpl.Seek(theFd, thePos);
}
} else {
// If sync fails the buffer remains dirty.
const bool kFlushOnlyIfHasFullChecksumBlock = true;
theResult = mImpl.Sync(theFd, kFlushOnlyIfHasFullChecksumBlock);
}
}
mResult = theResult;
}
}
|
18c5077f948ae107c8ba2f123879d47682997893
|
54b318af77e747d7d827be99b2a8c33010e79ab9
|
/Classes/MissionsScene.cpp
|
4dc840c8284dff23b8146faa0f0159fa7b975de6
|
[] |
no_license
|
jokerwoow/WalkInSpace
|
bc4c8150d52526afc455ba7e7f76b613856d4d93
|
a43536dffb37979d7b84a566ac4bf69332bc91f4
|
refs/heads/master
| 2021-04-27T09:18:36.439814
| 2018-03-05T18:02:45
| 2018-03-05T18:02:45
| 117,126,693
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 10,434
|
cpp
|
MissionsScene.cpp
|
#include "MissionsScene.h"
#include "Definitions.h"
#include "GameScene.h"
#include "GameMode.h"
#include "cocos2d.h"
USING_NS_CC;
Scene* MissionsScene::createScene()
{
// 'scene' is an autorelease object
auto scene = Scene::create();
// 'layer' is an autorelease object
auto layer = MissionsScene::create();
// add layer as a child to scene
scene->addChild(layer);
// return the scene
return scene;
}
// on "init" you need to initialize your instance
bool MissionsScene::init()
{
//////////////////////////////
// 1. super init first
if (!Layer::init())
{
return false;
}
Size visibleSize = Director::getInstance()->getVisibleSize();
Vec2 origin = Director::getInstance()->getVisibleOrigin();
auto backgroundSprite = Sprite::create("Backgrounds/bg.jpg");
backgroundSprite->setPosition(Point(visibleSize.width / 2 + origin.x, visibleSize.height / 2 + origin.y));
this->addChild(backgroundSprite);
auto back = MenuItemImage::create("but/b1.png", "but/b2.png", CC_CALLBACK_1(MissionsScene::backToGameMode, this));
back->setPosition(Point(0+origin.x, 0));
back->setAnchorPoint(Vec2(0, 0));
back->setScale(0.1);
auto menu = Menu::create(back, NULL);
menu->setPosition(Vec2::ZERO);
this->addChild(menu);
//lvl 1
//******************************************************************
lvl1 = MenuItemImage::create(/*"MissionsBox.png", "MissionsBox.png", " ",CC_CALLBACK_0(MissionsScene::lvl1f,this,3)*/);
//cocos2d::UserDefault::getInstance()->getIntegerForKey("Bonus");
lvl1->setNormalImage(Sprite::create("MissionsBox.png"));
lvl1->setCallback(CC_CALLBACK_0(MissionsScene::about, this, "Earn 20 points", 3));
lvl1->setPosition(Point(visibleSize.width / FIRST_COLUMN + origin.x, visibleSize.height / FIRST_ROW));
lvl1->setScale(0.3);
lvl1->setVisible(true);
auto Label1 = Label::createWithTTF("1", "fonts/Marker Felt.ttf", visibleSize.height*SCORE_FONT_SIZE);
Label1->setPosition(Point(visibleSize.width / FIRST_COLUMN + origin.x, visibleSize.height / FIRST_ROW));
Label1->setAnchorPoint(Vec2(0.5, 0.5));
Label1->setColor(Color3B::BLACK);
this->addChild(Label1,1);
//******************************************************************
//lvl 2
lvl2 = MenuItemImage::create();
lvl2->setNormalImage(Sprite::create("MissionsBox.png"));
lvl2->setCallback(CC_CALLBACK_0(MissionsScene::about, this,"Get bonus 10x", 4));
lvl2->setPosition(Point(visibleSize.width / SECOND_COLUMN + origin.x, visibleSize.height / FIRST_ROW));
lvl2->setScale(0.3);
lvl2->setVisible(false);
auto Label2 = Label::createWithTTF("2", "fonts/Marker Felt.ttf", visibleSize.height*SCORE_FONT_SIZE);
Label2->setPosition(Point(visibleSize.width / SECOND_COLUMN + origin.x, visibleSize.height / FIRST_ROW));
Label2->setAnchorPoint(Vec2(0.5, 0.5));
Label2->setColor(Color3B::BLACK);
this->addChild(Label2, 1);
//******************************************************************
//lvl 3
lvl3 = MenuItemImage::create();
lvl3->setNormalImage(Sprite::create("MissionsBox.png"));
lvl3->setCallback(CC_CALLBACK_0(MissionsScene::about, this,"Lost 10 points", 5));
lvl3->setPosition(Point(visibleSize.width / THIRD_COLUMN + origin.x, visibleSize.height / FIRST_ROW));
lvl3->setScale(0.3);
lvl3->setVisible(false);
auto Label3 = Label::createWithTTF("3", "fonts/Marker Felt.ttf", visibleSize.height*SCORE_FONT_SIZE);
Label3->setPosition(Point(visibleSize.width / THIRD_COLUMN + origin.x, visibleSize.height / FIRST_ROW));
Label3->setAnchorPoint(Vec2(0.5, 0.5));
Label3->setColor(Color3B::BLACK);
this->addChild(Label3, 1);
//******************************************************************
//lvl 4
lvl4 = MenuItemImage::create();
lvl4->setNormalImage(Sprite::create("MissionsBox.png"));
lvl4->setCallback(CC_CALLBACK_0(MissionsScene::about, this,"Don`t die 30sec", 6));
lvl4->setPosition(Point(visibleSize.width / FIRST_COLUMN + origin.x, visibleSize.height / SECOND_ROW + origin.y));
lvl4->setScale(0.3);
lvl4->setVisible(false);
auto Label4 = Label::createWithTTF("4", "fonts/Marker Felt.ttf", visibleSize.height*SCORE_FONT_SIZE);
Label4->setPosition(Point(visibleSize.width / FIRST_COLUMN + origin.x, visibleSize.height / SECOND_ROW + origin.y));
Label4->setAnchorPoint(Vec2(0.5, 0.5));
Label4->setColor(Color3B::BLACK);
this->addChild(Label4, 1);
//******************************************************************
//lvl 5
lvl5 = MenuItemImage::create();
lvl5->setNormalImage(Sprite::create("MissionsBox.png"));
lvl5->setCallback(CC_CALLBACK_0(MissionsScene::about, this,"Earn 50 points", 7));
lvl5->setPosition(Point(visibleSize.width / SECOND_COLUMN + origin.x, visibleSize.height / SECOND_ROW + origin.y));
lvl5->setScale(0.3);
lvl5->setVisible(false);
auto Label5 = Label::createWithTTF("5", "fonts/Marker Felt.ttf", visibleSize.height*SCORE_FONT_SIZE);
Label5->setPosition(Point(visibleSize.width / SECOND_COLUMN + origin.x, visibleSize.height / SECOND_ROW + origin.y));
Label5->setAnchorPoint(Vec2(0.5, 0.5));
Label5->setColor(Color3B::BLACK);
this->addChild(Label5, 1);
//******************************************************************
//lvl 6
lvl6 = MenuItemImage::create();
lvl6->setNormalImage(Sprite::create("MissionsBox.png"));
lvl6->setCallback(CC_CALLBACK_0(MissionsScene::about, this,"Earn 60 points", 8));
lvl6->setPosition(Point(visibleSize.width / THIRD_COLUMN + origin.x, visibleSize.height / SECOND_ROW + origin.y));
lvl6->setScale(0.3);
lvl6->setVisible(false);
auto Label6 = Label::createWithTTF("6", "fonts/Marker Felt.ttf", visibleSize.height*SCORE_FONT_SIZE);
Label6->setPosition(Point(visibleSize.width / THIRD_COLUMN + origin.x, visibleSize.height / SECOND_ROW + origin.y));
Label6->setAnchorPoint(Vec2(0.5, 0.5));
Label6->setColor(Color3B::BLACK);
this->addChild(Label6, 1);
//******************************************************************
//lvl 7
lvl7 = MenuItemImage::create();
lvl7->setNormalImage(Sprite::create("MissionsBox.png"));
lvl7->setCallback(CC_CALLBACK_0(MissionsScene::about, this,"Earn 10 coins", 9));
lvl7->setPosition(Point(visibleSize.width / FIRST_COLUMN + origin.x, visibleSize.height / 3 + origin.y));
lvl7->setScale(0.3);
lvl7->setVisible(false);
auto Label7 = Label::createWithTTF("7", "fonts/Marker Felt.ttf", visibleSize.height*SCORE_FONT_SIZE);
Label7->setPosition(Point(visibleSize.width / FIRST_COLUMN + origin.x, visibleSize.height / 3 + origin.y));
Label7->setAnchorPoint(Vec2(0.5, 0.5));
Label7->setColor(Color3B::BLACK);
this->addChild(Label7, 1);
//******************************************************************
//lvl 8
lvl8 = MenuItemImage::create();
lvl8->setNormalImage(Sprite::create("MissionsBox.png"));
lvl8->setCallback(CC_CALLBACK_0(MissionsScene::about, this, "Don`t die 40sec", 10));
lvl8->setPosition(Point(visibleSize.width / SECOND_COLUMN + origin.x, visibleSize.height / 3 + origin.y));
lvl8->setScale(0.3);
lvl8->setVisible(false);
auto Label8 = Label::createWithTTF("8", "fonts/Marker Felt.ttf", visibleSize.height*SCORE_FONT_SIZE);
Label8->setPosition(Point(visibleSize.width / SECOND_COLUMN + origin.x, visibleSize.height / 3 + origin.y));
Label8->setAnchorPoint(Vec2(0.5, 0.5));
Label8->setColor(Color3B::BLACK);
this->addChild(Label8, 1);
//******************************************************************
LvlMenu = Menu::create(lvl1,lvl2,lvl3,lvl4,lvl5,lvl6,lvl7,lvl8, NULL);
LvlMenu->setPosition(Vec2::ZERO);
this->addChild(LvlMenu);
auto listener1 = EventListenerTouchOneByOne::create();
listener1->setSwallowTouches(false);
listener1->onTouchBegan = CC_CALLBACK_2(MissionsScene::backToMainMenu, this);
Director::getInstance()->getEventDispatcher()->addEventListenerWithSceneGraphPriority(listener1, this);
MissionsSkin();
return true;
}
void MissionsScene::backToGameMode(cocos2d::Ref *senre) {
auto scene = GameMode::createScene();
Director::getInstance()->replaceScene(TransitionFade::create(TRANSITION_TIME, scene));
}
void MissionsScene::about(const char *xz,int lvl) {
Size visibleSize = Director::getInstance()->getVisibleSize();
Vec2 origin = Director::getInstance()->getVisibleOrigin();
sprite = Sprite::create("MissionsBox.png");
sprite->setPosition(visibleSize.width / 2 + origin.x, visibleSize.height / 2 + origin.y);
auto Label = LabelTTF::create(xz, "fonts/Marker Felt.ttf", 22);
Label->setPosition(sprite->getContentSize().width / 2 + origin.x, sprite->getContentSize().height / 2 + origin.y);
Label->setColor(Color3B::BLACK);
sprite->addChild(Label);
auto startButton = MenuItemImage::create("p1.png","p2.png", CC_CALLBACK_0(MissionsScene::start,this,lvl));
startButton->setPosition(Point(sprite->getContentSize().width / 2 + origin.x, sprite->getContentSize().height*0 + origin.y));
startButton->setScale(0.09);
startButton->setAnchorPoint(Vec2(0.5, 0));
auto menuButton = Menu::create(startButton, NULL);
menuButton->setPosition(Vec2::ZERO);
LvlMenu->setEnabled(false);
visible = true;
sprite->addChild(menuButton);
this->addChild(sprite,10000);
}
void MissionsScene::start(int lvl) {
auto scene = GameScene::createScene(lvl);
Director::getInstance()->replaceScene(TransitionFade::create(TRANSITION_TIME, scene));
}
bool MissionsScene::backToMainMenu(cocos2d::Touch *touch, cocos2d::Event *event) {
if (visible ==true) {
sprite->setVisible(false);
LvlMenu->setEnabled(true);
}
return true;
}
void MissionsScene::MissionsSkin() {
MenuItemImage *a[] = {lvl1,lvl2,lvl3,lvl4,lvl5,lvl6,lvl7,lvl8};
int size = (sizeof(a) / sizeof(*a));
for (int i = 1; i <=size ; i++) {
__String *Mission = __String::createWithFormat("%c""%c""%c" "%i", 'l', 'v', 'l', i);
const char *xz = Mission->getCString();
if (cocos2d::UserDefault::getInstance()->getBoolForKey(xz) == true) {
a[i-1]->setNormalImage(Sprite::create("MissionsBoxOk.png"));
if (i != size) {
a[i]->setVisible(true);
}
else {
a[i - 1]->setVisible(true);
}
}
}
}
/*void MissionsScene::falseMision() {
MenuItemImage *a[] = { lvl1,lvl2,lvl3,lvl4,lvl5,lvl6,lvl7 };
for (int i = 1; i <= (sizeof(a) / sizeof(*a)); i++) {
__String *Mission = __String::createWithFormat("%c""%c""%c" "%i", 'l', 'v', 'l', i);
}
}*/
|
713cdefb0b181f1950657285657fcf979b5c55d0
|
66213c48da0b752dc6c350789935fe2b2b9ef5ca
|
/abc/104/c.cpp
|
ee7c6fe90902fb6a4eda615481a2d3b83bc2cdbb
|
[] |
no_license
|
taketakeyyy/atcoder
|
28c58ae52606ba85852687f9e726581ab2539b91
|
a57067be27b27db3fee008cbcfe639f5309103cc
|
refs/heads/master
| 2023-09-04T16:53:55.172945
| 2023-09-04T07:25:59
| 2023-09-04T07:25:59
| 123,848,306
| 0
| 0
| null | 2019-04-21T07:39:45
| 2018-03-05T01:37:20
|
Python
|
UTF-8
|
C++
| false
| false
| 3,313
|
cpp
|
c.cpp
|
#define _USE_MATH_DEFINES // M_PI等のフラグ
#include <bits/stdc++.h>
#define MOD 1000000007
#define COUNTOF(array) (sizeof(array)/sizeof(array[0]))
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define intceil(a,b) ((a+(b-1))/b)
using namespace std;
using ll = long long;
using pii = pair<int,int>;
using pll = pair<long,long>;
const long long INF = LONG_LONG_MAX - 1001001001001001;
void chmax(int& x, int y) { x = max(x,y); }
void chmin(int& x, int y) { x = min(x,y); }
string vs = "URDL"; // 上右下左
vector<ll> vy = { -1, 0, 1, 0 };
vector<ll> vx = { 0, 1, 0, -1 };
// dp[i][score] := i番目の問題まで見て、総合スコアがscoreになるときの最小問題数
// ただし、スコア部分は配列ではなくて、vector<map<ll,ll>>のmapで実装する
// vector<map<ll,ll>> は重いので注意。直前の状態しか必要のないdpなので、iは省略して実装すれば、ギリギリ間に合う
void solve() {
ll D, G; cin >> D >> G;
vector<ll> P(D+1), C(D+1);
for(ll i=1; i<=D; i++) {
cin >> P[i] >> C[i];
}
// dp[i][score] := i番目の問題まで見て、総合スコアがscoreになるときの最小問題数
// vector<map<ll,ll>> dp(D+1, map<ll,ll>()); // TLE
map<ll,ll> dp; // 直前の情報しかいらないのでiは不要
dp[0] = 0;
for(ll i=1; i<=D; i++) { // 高々10
map<ll,ll> olddp;
swap(olddp, dp);
// i番目の問題を解く場合
for(ll p=0; p<=P[i]; p++) { // 高々100
ll plus_score = 100*i*p; // 100iの問題をp問解く
if (p == P[i]) plus_score += C[i];
for(auto[score, _]: olddp) { // 高々max(p)*D ⇛ 100*10
ll new_score = min(score+plus_score, G); // G以下に丸める
if (!dp.count(new_score)) dp[new_score] = numeric_limits<ll>::max();
dp[new_score] = min(dp[new_score], olddp[score]+p);
}
}
}
// 答え
cout << dp[G] << endl;
}
// 点数はすべて100の倍数なので、1/100する(圧縮)
// Gの最大値は、D=10で、pがすべて100で、cがすべて1000000のときなので、簡単のためにすべての問題の点数が1000点だと仮定して、
// max(G) < (1000*100 + 1000000)*10 ≒ 10^7
void solve2() {
ll D, G; cin >> D >> G;
G /= 100;
vector<ll> P(D+1), C(D+1);
for(ll i=1; i<=D; i++) {
cin >> P[i] >> C[i];
C[i] /= 100;
}
// dp[i][score] := i番目の問題まで見て、総合スコアがscoreになるときの最小問題数
vector<vector<ll>> dp(D+1, vector<ll>(G+1, INF));
dp[0][0] = 0;
for(ll i=1; i<=D; i++) {
for(ll p=0; p<=P[i]; p++) {
for(ll score=0; score<=G; score++) {
// p問問題を解く場合(0問も含む)
ll new_score = score+i*p;
if (p == P[i]) new_score += C[i];
new_score = min(new_score, G); // 最大値をGに丸める
dp[i][new_score] = min(dp[i][new_score], dp[i-1][score]+p);
}
}
}
// 答え
cout << dp[D][G] << endl;
}
int main() {
// solve();
solve2();
return 0;
}
|
84eaa67144a6dae278e9a85441eabdc22c3291d8
|
f78d81114a2537b48d72ed4084164afdf529914e
|
/INTEGRAZ/SUBSYS/MOTORE/PREPDATI/ML_CLASS.cpp
|
3cfeeb8b9fd0ec601aac1801df8b7502b56ad551
|
[] |
no_license
|
esantanche/buggycppcompiler
|
0ef95054f91ff95cdf13b903f64d0a8d2c63c2db
|
560f3bbf1d36b9480a2653a8dc26e7d5e819379c
|
refs/heads/master
| 2021-08-23T08:57:34.255468
| 2017-12-04T11:48:21
| 2017-12-04T11:48:21
| 113,035,838
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,695
|
cpp
|
ML_CLASS.cpp
|
//----------------------------------------------------------------------------
// ML_CLASS: Crea un file con l' elenco delle classifiche definite
//----------------------------------------------------------------------------
#define LIVELLO_DI_TRACE_DEL_PROGRAMMA 1
#include "motglue.hpp"
#include "FILE_RW.HPP"
#include "FT_PATHS.HPP" // Path da utilizzare
struct DESCRIZIONE_CLASSIFICHE {
char Codice[2] ;
char Acronimo[12] ;
char Descrizione[50];
char CR ;
char LF ;
};
//----------------------------------------------------------------------------
// Main
//----------------------------------------------------------------------------
int main(int argc,char *argv[]){
#undef TRCRTN
#define TRCRTN "Main()"
DESCRIZIONE_CLASSIFICHE Wrk;
Wrk.CR = '\r';
Wrk.LF = '\n';
FILE_RW Out(PATH_OUT "ML_CLASS.DB2"); Out.SetSize(0);
MM_INFO::EncodTipoMezzo(STRINGA(" ")); // Per caricare la tabella
ORD_FORALL(MM_INFO::Decod_TIPO_MEZZO,i){
STRINGA( i ).ToFix(Wrk.Codice, 2);
STRINGA Decod = MM_INFO::Decod_TIPO_MEZZO[i];
Decod.ToFix(Wrk.Descrizione, 50);
ELENCO_S Parole = Decod.Tokens(" ");
Parole.Last().UpCase().ToFix(Wrk.Acronimo, 12);
Out.Scrivi(&Wrk,sizeof(Wrk));
}
return 0;
}
|
dd8b9d41c9f5d04b426c1f804e12973ff23f89b8
|
0adc5c97f4ca28c7382f7cc1e7c029a0865edaeb
|
/hackerrank_c++/Introduction_7.cpp
|
45fec6d098536551b2c79fa88d042b3c63e7fd70
|
[] |
no_license
|
fregu856/cpp
|
047e29895558251d0562c0be5f8abd57157b52d4
|
1dc6c406ad0815f42edf94f5d013ffc9696ae7d9
|
refs/heads/master
| 2021-09-08T03:36:11.016843
| 2018-03-06T22:00:23
| 2018-03-06T22:00:23
| 106,098,643
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 446
|
cpp
|
Introduction_7.cpp
|
#include <stdio.h>
#include <cmath>
// In order to access the memory address of a variable, var, we need to prepend
// it with a & sign. E.g., &var returns the memory address of var.
void update(int *a, int *b)
{
int a_old = *a;
int b_old = *b;
*a = a_old + b_old;
*b = std::abs(a_old - b_old);
}
int main()
{
int a, b;
int *pa = &a, *pb = &b;
scanf("%d %d", &a, &b);
update(pa, pb);
printf("%d\n%d", a, b);
return 0;
}
|
d5c93797af9ec851fb2e915f10ae3da74e9a1611
|
8d38a84edc263dd708dd8ad3041b54d49b333cb5
|
/prerequisite/Osscilating price of Chakri.cpp
|
55d55aa112052c7fde6dc81964dc352620afe59f
|
[] |
no_license
|
kishankunal/100DaysOfCode
|
04571f94bdbf9e5386be80207ef1dc9c9d61bb43
|
814641dfbca7fb2a34458df0aaa0cf7304c5285a
|
refs/heads/master
| 2020-08-04T01:05:24.543691
| 2019-10-15T09:09:12
| 2019-10-15T09:09:12
| 211,946,809
| 2
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 379
|
cpp
|
Osscilating price of Chakri.cpp
|
#including<bits/stdc++.h>
using namespace std;
int main(){
int n;
cin >> n;
int arr[n];
for(int i = 0; i<n; i++){
cin >> arr[i];
}
int maxProfit = INT_MIN;
int min = 0;
for(int i = 1; i<n; i++){
if(arr[i] < arr[min]){
min = i;
}
int profit = arr[i] - arr[min];
if(maxProfit < profit){
maxProfit = profit;
}
}
cout << MaxProfit << endl;
return 0;
}
|
35c0664da636243197b8c0c5f117b2d0fb921bf0
|
4d74aa247055ba254a7f3ab305634dffcc656185
|
/tests/group_functions/group_broadcast.h
|
b8b120378e7a2ce099924fabf4f45dc24a8b30d3
|
[
"Apache-2.0"
] |
permissive
|
KhronosGroup/SYCL-CTS
|
e2ecc8ffd0f80e90f6f44a2f5e1ce167aff53ba9
|
cc653d0d88bb40d209e83267b5b91b070d84300a
|
refs/heads/SYCL-2020
| 2023-08-31T23:55:36.962775
| 2023-08-30T14:12:30
| 2023-08-30T14:12:30
| 160,528,100
| 51
| 60
|
Apache-2.0
| 2023-09-14T15:49:21
| 2018-12-05T14:11:21
|
C++
|
UTF-8
|
C++
| false
| false
| 8,672
|
h
|
group_broadcast.h
|
/*******************************************************************************
//
// SYCL 2020 Conformance Test Suite
//
// Copyright (c) 2023 The Khronos Group Inc.
//
// 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.
//
*******************************************************************************/
#include "group_functions_common.h"
template <int D, typename T>
class broadcast_group_kernel;
/**
* @brief Provides test for broadcast values inside the group
* @tparam D Dimension to use for group instance
* @tparam T Type for broadcasted value
*/
template <int D, typename T>
void broadcast_group(sycl::queue& queue) {
// 3 functions
constexpr int test_matrix = 3;
const std::string test_names[test_matrix] = {
"T group_broadcast(group g, T x)",
"T group_broadcast(group g, T x, group::linear_id_type local_linear_id)",
"T group_broadcast(group g, T x, group::id_type local_id)"};
sycl::range<D> work_group_range = sycl_cts::util::work_group_range<D>(queue);
size_t work_group_size = work_group_range.size();
// array to return results
T res[test_matrix] = {splat_init<T>(0)};
{
sycl::buffer<T, 1> res_sycl(res, sycl::range<1>(test_matrix));
queue.submit([&](sycl::handler& cgh) {
auto res_acc =
res_sycl.template get_access<sycl::access::mode::read_write>(cgh);
sycl::nd_range<D> executionRange(work_group_range, work_group_range);
cgh.parallel_for<broadcast_group_kernel<D, T>>(
executionRange, [=](sycl::nd_item<D> item) {
sycl::group<D> group = item.get_group();
// find local id of last group item
sycl::id<D> last_item = group.get_local_range();
for (int i = 0; i < D; ++i) {
--last_item[i];
}
T local_var = splat_init<T>(item.get_local_linear_id() + 1);
// broadcast from the first workitem
ASSERT_RETURN_TYPE(
T, sycl::group_broadcast(group, local_var),
"Return type of group_broadcast(group g, T x) is wrong\n");
local_var = sycl::group_broadcast(group, local_var);
if (item.get_local_linear_id() ==
group.get_local_linear_range() - 1)
res_acc[0] = local_var;
local_var = splat_init<T>(item.get_local_linear_id() + 1);
// broadcast from the last workitem 1
ASSERT_RETURN_TYPE(
T,
sycl::group_broadcast(group, local_var,
group.get_local_linear_range() - 1),
"Return type of group_broadcast(group g, T x, "
"group::linear_id_type local_linear_id) is wrong\n");
local_var = sycl::group_broadcast(
group, local_var, group.get_local_linear_range() - 1);
if (item.get_local_linear_id() == 0) res_acc[1] = local_var;
local_var = splat_init<T>(item.get_local_linear_id() + 1);
// broadcast from the last workitem 2
ASSERT_RETURN_TYPE(
T, sycl::group_broadcast(group, local_var, last_item),
"Return type of group_broadcast(group g, T x, group::id_type "
"local_id) is wrong\n");
local_var = sycl::group_broadcast(group, local_var, last_item);
if (item.get_local_linear_id() == 0) res_acc[2] = local_var;
});
});
}
T expected[test_matrix] = {splat_init<T>(1), splat_init<T>(work_group_size),
splat_init<T>(work_group_size)};
for (int i = 0; i < test_matrix; ++i) {
std::string work_group = sycl_cts::util::work_group_print(work_group_range);
CAPTURE(D, work_group);
INFO("Return value of "
<< test_names[i] << " with T = " << type_name<T>() << " is "
<< (equal(res[i], expected[i]) ? "right" : "wrong"));
CHECK(equal(res[i], expected[i]));
}
}
template <int D, typename T>
class broadcast_sub_group_kernel;
template <int D, typename T>
void broadcast_sub_group(sycl::queue& queue) {
// 4 functions
constexpr int test_matrix = 4;
const std::string test_names[test_matrix] = {
"T group_broadcast(sub_group g, T x)",
"T group_broadcast(sub_group g, T x, sub_group::linear_id_type "
"local_linear_id)",
"T group_broadcast(sub_group g, T x, sub_group::id_type local_id)",
"T select_from_group(sub_group g, T x, sub_group::id_type local_id)"};
sycl::range<D> work_group_range = sycl_cts::util::work_group_range<D>(queue);
// array to return results
T res[test_matrix + 1] = {splat_init<T>(0)};
{
sycl::buffer<T, 1> res_sycl(res, sycl::range<1>(test_matrix + 1));
queue.submit([&](sycl::handler& cgh) {
auto res_acc =
res_sycl.template get_access<sycl::access::mode::read_write>(cgh);
sycl::nd_range<D> executionRange(work_group_range, work_group_range);
cgh.parallel_for<broadcast_sub_group_kernel<
D, T>>(executionRange, [=](sycl::nd_item<D> item) {
sycl::sub_group sub_group = item.get_sub_group();
T local_var(splat_init<T>(0));
if (sub_group.get_group_id()[0] == 0) {
// find local id of last group item
sycl::id<1> last_item = sub_group.get_local_range();
--last_item[0];
// broadcast from the first workitem
local_var = splat_init<T>(item.get_global_linear_id() + 1);
ASSERT_RETURN_TYPE(
T, sycl::group_broadcast(sub_group, local_var),
"Return type of group_broadcast(sub_group g, T x) is wrong\n");
local_var = sycl::group_broadcast(sub_group, local_var);
if (sub_group.get_local_linear_id() ==
sub_group.get_local_linear_range() - 1)
res_acc[0] = local_var;
// broadcast from the last workitem 1
local_var = splat_init<T>(item.get_global_linear_id() + 1);
ASSERT_RETURN_TYPE(
T, sycl::group_broadcast(sub_group, local_var, last_item),
"Return type of group_broadcast(sub_group g, T x, "
"sub_group::linear_id_type local_linear_id) is wrong\n");
local_var = sycl::group_broadcast(
sub_group, local_var, sub_group.get_local_linear_range() - 1);
if (sub_group.get_local_linear_id() == 0) res_acc[1] = local_var;
// broadcast from the last workitem 2
local_var = splat_init<T>(item.get_global_linear_id() + 1);
ASSERT_RETURN_TYPE(
T, sycl::group_broadcast(sub_group, local_var, last_item),
"Return type of group_broadcast(sub_group g, T x, "
"sub_group::id_type local_id) is wrong\n");
local_var = sycl::group_broadcast(sub_group, local_var, last_item);
if (sub_group.get_local_linear_id() == 0) res_acc[2] = local_var;
// select from the last workitem
local_var = splat_init<T>(item.get_global_linear_id() + 1);
ASSERT_RETURN_TYPE(
T, sycl::select_from_group(sub_group, local_var, last_item),
"Return type of select_from_group(sub_group g, T x, "
"sub_group::id_type local_id) is wrong\n");
local_var = sycl::select_from_group(sub_group, local_var, last_item);
if (sub_group.get_local_linear_id() == 0) res_acc[3] = local_var;
// Return the sub-group size when possible or just its parity
if (sub_group.get_local_linear_id() == 0) {
if constexpr (std::is_same_v<T, bool>)
res_acc[4] = sub_group.get_local_linear_range() % 2;
else
res_acc[4] = sub_group.get_local_linear_range();
}
}
});
});
}
T expected[test_matrix] = {splat_init<T>(1), res[4], res[4], res[4]};
for (int i = 0; i < test_matrix; ++i) {
std::string work_group = sycl_cts::util::work_group_print(work_group_range);
CAPTURE(D, work_group);
INFO("Return value of "
<< test_names[i] << " with T = " << type_name<T>() << " is "
<< (equal(res[i], expected[i]) ? "right" : "wrong"));
CHECK(equal(res[i], expected[i]));
}
}
|
afbe9989edac07f358ca340261052c8fb153c5c6
|
11927e62e9788036bd7062790be5c28511198cd1
|
/Models/sensorlistmodel.h
|
4d9b8b6f07c7a6d962418f86050666e8c0fdf444
|
[
"BSD-3-Clause"
] |
permissive
|
Kormil/harbour-powietrze
|
fa2bfe6934048800463f90d9d3c6069b748f4ad6
|
c0f44d6c251a5b6abc8528c38639960ca58f35ba
|
refs/heads/master
| 2023-03-20T03:49:38.362380
| 2023-03-05T11:36:51
| 2023-03-05T11:36:51
| 189,732,574
| 3
| 5
|
NOASSERTION
| 2021-06-13T15:59:09
| 2019-06-01T12:54:10
|
C++
|
UTF-8
|
C++
| false
| false
| 1,286
|
h
|
sensorlistmodel.h
|
#ifndef SENSORLISTMODEL_H
#define SENSORLISTMODEL_H
#include <QAbstractItemModel>
#include "Types/sensorlist.h"
class ModelsManager;
class Station;
using StationPtr = std::shared_ptr<Station>;
class SensorListModel : public QAbstractListModel
{
Q_OBJECT
public:
enum UnitsType
{
MICROGRAM = 0,
MILLIGRAM
};
enum SensorsListRole
{
NAME = Qt::UserRole + 1,
VALUE,
DATE,
NORM,
UNIT,
LAST_COLUMN
};
explicit SensorListModel(QObject *parent = nullptr);
QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override;
QHash<int, QByteArray> roleNames() const override;
void requestData();
void setSensorList(SensorList *sensorList);
int rowCount(const QModelIndex &parent) const;
void setStation(StationPtr station);
float unitsConverter(UnitsType from, UnitsType to, float value) const;
void setModelsManager(ModelsManager *modelsManager);
void setSensorList(SensorListPtr sensorList, StationPtr station);
private:
void requestSensorData(StationPtr station);
void connectModel();
signals:
void modelLoaded();
private:
ModelsManager *m_modelsManager;
StationPtr m_station;
};
#endif // SENSORLISTMODEL_H
|
6d9417f82628fd44c1f38d0c766edfe326c7bf2a
|
24906b0aebcab90a1b95efa92f0977009e6b29fa
|
/make_ntuples_run2/trigger_check.cxx
|
63afef23dc5bb4bcdedd8b9ea875f7107da2ba43
|
[] |
no_license
|
htrauger/JetTrack2016
|
7b58b31e48394b933299b0f79143265da07879d8
|
7f363da63df29996a6b29dae085d265d554ef2c8
|
refs/heads/master
| 2020-05-21T13:34:25.383429
| 2017-10-25T19:12:08
| 2017-10-25T19:12:08
| 63,094,666
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 4,446
|
cxx
|
trigger_check.cxx
|
#include <iostream>
#include "TFile.h"
#include "TTree.h"
#include "TH1F.h"
#include "TProfile.h"
#include "TProfile2D.h"
#include "TH2D.h"
#include "TF1.h"
#include "TH2F.h"
#include "TMath.h"
#include <TNtuple.h>
#include "TChain.h"
#include <TString.h>
#include <TCut.h>
#include <fstream>
#include "TMath.h"
#include <vector>
using namespace std;
int trigger_check(){
Int_t hiBin;
Int_t HLT_L1MinimumBiasHF2AND_v1_Prescl;
Int_t HLT_AK4CaloJet80_Eta5p1ForPPRef_v1;
Float_t jtpt[206];
TBranch *b_hiBin;
TBranch *b_HLT_L1MinimumBiasHF2AND_v1_Prescl;
TBranch *b_HLT_AK4CaloJet80_Eta5p1ForPPRef_v1;
TBranch *b_jtpt;
TH1D *trig_eff_all = new TH1D("trig_eff_all","",30,0,200);
TH1D *trig_eff_cent0_cent10 = new TH1D("trig_eff_cent0_cent10","",30,0,200);
TH1D *trig_eff_cent10_cent30 = new TH1D("trig_eff_cent10_cent30","",30,0,200);
TH1D *trig_eff_cent30_cent50 = new TH1D("trig_eff_cent30_cent50","",30,0,200);
TH1D *trig_eff_cent50_cent100 = new TH1D("trig_eff_cent50_cent100","",30,0,200);
TH1D *trig_denom_all = new TH1D("trig_denom_all","",30,0,200);
TH1D *trig_denom_cent0_cent10 = new TH1D("trig_denom_cent0_cent10","",30,0,200);
TH1D *trig_denom_cent10_cent30 = new TH1D("trig_denom_cent10_cent30","",30,0,200);
TH1D *trig_denom_cent30_cent50 = new TH1D("trig_denom_cent30_cent50","",30,0,200);
TH1D *trig_denom_cent50_cent100 = new TH1D("trig_denom_cent50_cent100","",30,0,200);
trig_eff_all->Sumw2();
trig_eff_cent0_cent10->Sumw2();
trig_eff_cent10_cent30->Sumw2();
trig_eff_cent30_cent50->Sumw2();
trig_eff_cent50_cent100->Sumw2();
trig_denom_all->Sumw2();
trig_denom_cent0_cent10->Sumw2();
trig_denom_cent10_cent30->Sumw2();
trig_denom_cent30_cent50->Sumw2();
trig_denom_cent50_cent100->Sumw2();
for(int file_n = 0; file_n < 1; file_n++){
TFile *f_test = TFile::Open(Form( "root://cms-xrd-global.cern.ch///store/user/rbi/merged/MinBias_TuneCUETP8M1_5p02TeV-pythia8-HINppWinter16DR-NoPU_75X_mcRun2_asymptotic_ppAt5TeV_forest_v2/%d.root",file_n));
cout<<"0"<<endl;
TTree *hlt_tree2 = (TTree*)f_test->Get("hltanalysis/HltTree");
hlt_tree2->SetBranchAddress("HLT_L1MinimumBiasHF2AND_v1_Prescl", &HLT_L1MinimumBiasHF2AND_v1_Prescl, &b_HLT_L1MinimumBiasHF2AND_v1_Prescl);
hlt_tree2->SetBranchAddress("HLT_AK4CaloJet80_Eta5p1ForPPRef_v1", &HLT_AK4CaloJet80_Eta5p1ForPPRef_v1, &b_HLT_AK4CaloJet80_Eta5p1ForPPRef_v1);
cout<<"1"<<endl;
TTree *evt_tree = (TTree*) f_test->Get("hiEvtAnalyzer/HiTree");
int hiBin = 0;
//evt_tree->SetBranchAddress("hiBin", &hiBin, &b_hiBin);
//hiBin = evt_tree->hiBin;
cout<<"2"<<endl;
TTree *jet_tree = (TTree*)f_test->Get("ak4CaloJetAnalyzer/t");
jet_tree->SetBranchAddress("jtpt",&jtpt, &b_jtpt);
Long64_t n_evt = hlt_tree2->GetEntriesFast();
cout<<"File #: "<<file_n<<" Total events: "<<n_evt<<endl;
n_evt = 100000;
for(int evi = 0; evi < n_evt; evi++){
for(int j4i = 0; j4i< 50 ; j4i++){
jet_tree->GetEvent(evi);
if(jtpt[j4i]>500||jtpt[j4i]<25)continue;
hlt_tree2->GetEvent(evi);
if(HLT_L1MinimumBiasHF2AND_v1_Prescl==0) continue;
trig_denom_all->Fill(jtpt[j4i]);
evt_tree->GetEvent(evi);
if(hiBin < 20) trig_denom_cent0_cent10->Fill(jtpt[j4i]);
else if(hiBin >= 20 && hiBin < 60) trig_denom_cent10_cent30->Fill(jtpt[j4i]);
else if(hiBin >= 60 && hiBin < 100) trig_denom_cent30_cent50->Fill(jtpt[j4i]);
else if(hiBin >= 100 && hiBin < 200) trig_denom_cent50_cent100->Fill(jtpt[j4i]);
if(HLT_AK4CaloJet80_Eta5p1ForPPRef_v1==0) continue;
trig_eff_all->Fill(jtpt[j4i]);
if(hiBin < 20) trig_eff_cent0_cent10->Fill(jtpt[j4i]);
else if(hiBin >= 20 && hiBin < 60) trig_eff_cent10_cent30->Fill(jtpt[j4i]);
else if(hiBin >= 60 && hiBin < 100) trig_eff_cent30_cent50->Fill(jtpt[j4i]);
else if(hiBin >= 100 && hiBin < 200) trig_eff_cent50_cent100->Fill(jtpt[j4i]);
}
}
TFile *f_out = new TFile(Form("TriggerEfficiency_File%d.root",file_n),"RECREATE");
trig_eff_all->Write();
trig_eff_cent0_cent10->Write();
trig_eff_cent10_cent30->Write();
trig_eff_cent30_cent50->Write();
trig_eff_cent50_cent100->Write();
trig_denom_all->Write();
trig_denom_cent0_cent10->Write();
trig_denom_cent10_cent30->Write();
trig_denom_cent30_cent50->Write();
trig_denom_cent50_cent100->Write();
f_out->Close();
f_test->Close();
}
return 1;
}
|
9e0f0e91a992b631896e9bca22ecbc50c28ca19f
|
b292168a299483841e5eab63b8c2a153dcf5c6de
|
/Classes/MarketLayer.h
|
c391442b7cc80a27682f45438f27ef8d05c05438
|
[] |
no_license
|
francis1122/RogueDeck
|
81622d512ff6ebbbc1856f2133d80fed8a2403d4
|
f7e1853cd01bfff0ff50cd1033486889cbe8db37
|
refs/heads/master
| 2020-06-03T17:04:03.540198
| 2014-04-16T00:31:40
| 2014-04-16T00:31:40
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 763
|
h
|
MarketLayer.h
|
//
// MarketLayer.h
// RogueDeck
//
// Created by Hunter Francis on 11/26/13.
//
//
#ifndef __RogueDeck__MarketLayer__
#define __RogueDeck__MarketLayer__
#include "cocos2d.h"
USING_NS_CC;
class MarketLayer : public CCLayer
{
public:
// Here's a difference. Method 'init' in cocos2d-x returns bool, instead of returning 'id' in cocos2d-iphone
virtual bool init();
// implement the "static node()" method manually
CREATE_FUNC(MarketLayer);
void endTurn();
void updateInterface();
cocos2d::CCSprite *sellCardSprite;
cocos2d::CCSprite *sellGlowCardSprite;
void enableSellInteractive();
void disableSellInteractive();
private:
};
#endif /* defined(__RogueDeck__MarketLayer__) */
|
dda951fd481693eefe92738b9f6c0ced93f1fefe
|
293902682d7ee13be81ada6c28ef6b840983ac33
|
/SQLiteAccess/tests/QueriesInSingleTable/queriesInSingleTable.cpp
|
35307a0c9d6c7e25c953c464fea7ff30295e6129
|
[] |
no_license
|
cms-externals/coral
|
d17cba45fff7f34d7a1ba13ab3bb371e0696c1af
|
a879b41c994fa956ff0ae78e3410bb409582ad20
|
refs/heads/cms/CORAL_2_3_21py3
| 2022-02-26T18:51:25.258362
| 2022-02-23T13:19:11
| 2022-02-23T13:19:11
| 91,173,895
| 0
| 4
| null | 2022-02-14T13:20:11
| 2017-05-13T12:47:54
|
C++
|
UTF-8
|
C++
| false
| false
| 8,408
|
cpp
|
queriesInSingleTable.cpp
|
#include <iostream>
#include <stdexcept>
#include "CoralBase/../tests/Common/CoralCppUnitTest.h"
#include "CoralBase/Attribute.h"
#include "CoralBase/AttributeList.h"
#include "CoralBase/AttributeSpecification.h"
#include "CoralBase/Blob.h"
#include "CoralBase/Exception.h"
#include "CoralKernel/Context.h"
#include "RelationalAccess/ConnectionService.h"
#include "RelationalAccess/ConnectionServiceException.h"
#include "RelationalAccess/IColumn.h"
#include "RelationalAccess/IConnection.h"
#include "RelationalAccess/IConnectionServiceConfiguration.h"
#include "RelationalAccess/ICursor.h"
#include "RelationalAccess/IForeignKey.h"
#include "RelationalAccess/IIndex.h"
#include "RelationalAccess/IPrimaryKey.h"
#include "RelationalAccess/IQuery.h"
#include "RelationalAccess/IRelationalDomain.h"
#include "RelationalAccess/ISession.h"
#include "RelationalAccess/ISessionProxy.h"
#include "RelationalAccess/ISchema.h"
#include "RelationalAccess/ITable.h"
#include "RelationalAccess/ITableDataEditor.h"
#include "RelationalAccess/ITransaction.h"
#include "RelationalAccess/RelationalServiceException.h"
#include "RelationalAccess/SchemaException.h"
#include "RelationalAccess/TableDescription.h"
namespace coral
{
class QueriesInSingleTableTest;
}
class coral::QueriesInSingleTableTest : public coral::CoralCppUnitTest
{
CPPUNIT_TEST_SUITE( QueriesInSingleTableTest );
CPPUNIT_TEST( test_All );
CPPUNIT_TEST_SUITE_END();
public:
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
void
setUp()
{
std::string T1 = BuildUniqueTableName( "SQL_UT_ST_T1" );
coral::ConnectionService connSvc;
std::unique_ptr<coral::ISessionProxy> session( connSvc.connect( "CORAL-SQLite-lcgnight/admin" ) );
session->transaction().start(false);
coral::ISchema& schema = session->nominalSchema();
schema.dropIfExistsTable( T1 );
coral::TableDescription description0;
description0.setName( T1 );
description0.insertColumn( "ID",coral::AttributeSpecification::typeNameForId( typeid(int) ) );
std::cout<<"typenameforid int "<<coral::AttributeSpecification::typeNameForId( typeid(int) )<<std::endl;
description0.insertColumn( "X",coral::AttributeSpecification::typeNameForId( typeid(float) ) );
description0.insertColumn( "Y",coral::AttributeSpecification::typeNameForId( typeid(double) ) );
description0.insertColumn( "Z",coral::AttributeSpecification::typeNameForId( typeid(double) ) );
description0.insertColumn( "data1",coral::AttributeSpecification::typeNameForId( typeid(std::string) ) );
description0.insertColumn( "data2",coral::AttributeSpecification::typeNameForId( typeid(coral::Blob) ) );
description0.insertColumn( "data3",coral::AttributeSpecification::typeNameForId( typeid(coral::Blob) ) );
coral::ITable& table = schema.createTable( description0 );
coral::AttributeList rowBuffer;
table.dataEditor().rowBuffer( rowBuffer );
for ( int i = 0; i < 5; ++i )
{
std::cout << i << std::endl;
rowBuffer["ID"].data<int>() = i;
rowBuffer["X"].data<float>() = (float)(i + 0.1 * i);
if ( i%2 == 1 )
{
rowBuffer["Y"].setNull( true );
}
else
{
rowBuffer["Y"].setNull( false );
rowBuffer["Y"].data<double>() = i + 0.01 * i;
}
rowBuffer["Z"].data<double>() = i + 0.001 * i;
rowBuffer["data1"].data<std::string>() = "Data";
if ( i%2 == 1 )
{
rowBuffer["data2"].setNull( true );
}
else
{
rowBuffer["data2"].setNull( false );
// new blob
coral::Blob& blob = rowBuffer["data2"].data<coral::Blob>();
int blobSize = ( i + 1 ) * 1000;
blob.resize( blobSize );
// fill the blob
unsigned char* p = static_cast<unsigned char*>( blob.startingAddress() );
for ( int j = 0; j < blobSize; ++j, ++p ) *p = j%256;
}
coral::Blob& zeroblob = rowBuffer["data3"].data<coral::Blob>();
zeroblob.resize( 0 );
table.dataEditor().insertRow( rowBuffer );
}
session->transaction().commit();
}
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
void
test_All()
{
std::string T1 = BuildUniqueTableName( "SQL_UT_ST_T1" );
coral::ConnectionService connSvc;
std::unique_ptr<coral::ISessionProxy> session( connSvc.connect( "CORAL-SQLite-lcgnight/admin" ) );
coral::ISchema& schema = session->nominalSchema();
session->transaction().start();
coral::ITable& table = schema.tableHandle( T1 );
// Performing a query without output spec
std::cout << "Querying : SELECT * FROM mytest" << std::endl;
coral::IQuery* query1=table.newQuery();
query1->setRowCacheSize( 10 );
coral::ICursor& cursor1 = query1->execute();
unsigned int s=0;
while( cursor1.next() )
{
const coral::AttributeList& row = cursor1.currentRow();
row.toOutputStream( std::cout ) << std::endl;
if(row["ID"].isNull())
{
std::cout<<s<<" row ID column is NULL"<<std::endl;
}
else
{
std::cout<<"ID column has value: "<<row["ID"].data<int>()<<std::endl;
}
if(row["Y"].isNull())
{
std::cout<<s<<" row Y column is NULL"<<std::endl;
}
if(row["data2"].isNull())
{
std::cout<<s<<" row data2 Blob column is NULL"<<std::endl;
}
if(row["data3"].isNull())
{
std::cout<<s<<" row data3 Blob column is NULL!!!!!"<<std::endl;
}
++s;
}
cursor1.close();
std::cout << s << " row(s) selected." << std::endl;
delete query1;
std::cout << "Querying : SELECT X, Y as alias_y FROM mytest WHERE ID > 1" << std::endl;
coral::IQuery* query2=table.newQuery() ;
query2->addToOutputList( "X" );
query2->addToOutputList( "Y", "alias_y");
query2->setMemoryCacheSize( 1 );
coral::AttributeList emptyBindVariableList2;
query2->setCondition( "ID > 1", emptyBindVariableList2 );
coral::ICursor& cursor2 = query2->execute();
s=0;
while( cursor2.next() )
{
const coral::AttributeList& row = cursor2.currentRow();
row.toOutputStream( std::cout ) << std::endl;
++s;
}
std::cout << s << " row(s) selected." << std::endl;
delete query2;
std::cout << "Querying : SELECT X, Y as alias_y FROM mytest WHERE ID > 1" << std::endl;
coral::IQuery* query3=table.newQuery();
query3->addToOutputList( "X" );
query3->addToOutputList( "Y", "alias_y");
query3->setMemoryCacheSize( 1 );
coral::AttributeList BindVariableList;
BindVariableList.extend("idvalue", typeid(int) );
BindVariableList["idvalue"].data<int>()=1;
query3->setCondition( "ID > :idvalue", BindVariableList );
coral::ICursor& cursor3 = query3->execute();
s=0;
while( cursor3.next() ) {
const coral::AttributeList& row = cursor3.currentRow();
row.toOutputStream( std::cout ) << std::endl;
++s;
}
std::cout << s << " row(s) selected." << std::endl;
delete query3;
// Performing a query with SQL function
std::cout << "Querying : SELECT max(ID) FROM mytest" << std::endl;
coral::IQuery* query4=table.newQuery();
query4->addToOutputList( "max(ID)", "max_id");
coral::AttributeList myresult;
myresult.extend("max(ID)", typeid(unsigned long));
query4->defineOutput( myresult );
coral::ICursor& cursor4 = query4->execute();
s=0;
while( cursor4.next() ) {
const coral::AttributeList& row = cursor4.currentRow();
row.toOutputStream( std::cout ) << std::endl;
++s;
}
std::cout<<s << " row(s) selected." << std::endl;
delete query4;
// Committing the transaction
std::cout << "Committing..." << std::endl;
session->transaction().commit();
}
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
void
tearDown()
{
std::string T1 = BuildUniqueTableName( "SQL_UT_ST_T1" );
coral::ConnectionService connSvc;
std::unique_ptr<coral::ISessionProxy> session( connSvc.connect( "CORAL-SQLite-lcgnight/admin" ) );
coral::ISchema& schema = session->nominalSchema();
session->transaction().start(false);
schema.dropTable( T1 );
session->transaction().commit();
}
};
CPPUNIT_TEST_SUITE_REGISTRATION( coral::QueriesInSingleTableTest );
CORALCPPUNITTEST_MAIN( QueriesInSingleTableTest )
|
bd4f4bf24f60fe31b1092b19b338c30d57701184
|
1d404ed947259b564fe5c1e1b328dcde84670f42
|
/AssetLease/Menu/AdministrativeMenu.cpp
|
8fccd21885b79ec92ac93e67ce9dfe1fa0aa91d7
|
[] |
no_license
|
dadu0699/AssetLease
|
333274a4a4619794877974af96071da2271df851
|
3f02f4a9dddc2b3f5cf13569fb2945d925b5e825
|
refs/heads/master
| 2022-11-05T23:21:03.202530
| 2020-06-17T23:43:38
| 2020-06-17T23:43:38
| 269,488,721
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 4,145
|
cpp
|
AdministrativeMenu.cpp
|
#include "AdministrativeMenu.h"
#include "../Structures/SparseMatrix/SparseMatrix.h"
#include "../Structures/CircularDoublyLinkedList/CircularDoubleList.h"
AdministrativeMenu::AdministrativeMenu()
{
}
AdministrativeMenu::~AdministrativeMenu()
{
}
void AdministrativeMenu::interfaceDesign()
{
SparseMatrix *sp;
CircularDoubleList *cl;
string option;
string nickname;
string name;
string password;
string department;
string corporation;
while (true)
{
system("CLS");
cout << "----------------------------------------------------------------------" << endl;
cout << "| MENU ADMINISTRADOR |" << endl;
cout << "----------------------------------------------------------------------" << endl;
cout << "----- 1. REGISTRAR USUARIO" << endl;
cout << "----- 2. REPORTE MATRIZ DISPERSA" << endl;
cout << "----- 3. REPORTE ACTIVOS DISPONIBLES DE UN DEPARTAMENTO" << endl;
cout << "----- 4. REPORTE ACTIVOS DISPONIBLES DE UNA EMPRESA" << endl;
cout << "----- 5. REPORTE TRANSACCIONES" << endl;
cout << "----- 6. REPORTE ACTIVOS DE UN USUARIO" << endl;
cout << "----- 7. REPORTE ACTIVOS RENTADOS POR UN USUARIO" << endl;
cout << "----- 8. ORDENAR TRANSACCIONES ASCENDENTE" << endl;
cout << "----- 9. ORDENAR TRANSACCIONES DESCENDENTE" << endl;
cout << "----- 0. CERRAR SESION" << endl;
cout << ">> ";
cin >> option;
switch (option[0])
{
case '1':
system("cls");
cout << " NOMBRE DE USUARIO" << endl;
cout << ">> ";
cin.ignore();
getline(cin, nickname);
cout << " CONTRASENIA" << endl;
cout << ">> ";
getline(cin, password);
cout << " NOMBRE COMPLETO" << endl;
cout << ">> ";
getline(cin, name);
cout << " DEPARTAMENTO" << endl;
cout << ">> ";
getline(cin, department);
cout << " EMPRESA" << endl;
cout << ">> ";
getline(cin, corporation);
sp->getInstance()->addNode(department, corporation, new User(nickname, password, name));
break;
case '2':
sp->getInstance()->report();
break;
case '3':
system("cls");
cout << " DEPARTAMENTO" << endl;
cout << ">> ";
cin.ignore();
getline(cin, department);
sp->getInstance()->printAssetsByDepartment(department);
break;
case '4':
system("cls");
cout << " EMPRESA" << endl;
cout << ">> ";
cin.ignore();
getline(cin, corporation);
sp->getInstance()->printAssetsByCorporation(corporation);
break;
case '5':
cl->getInstance()->report();
break;
case '6':
system("cls");
cout << " NOMBRE DE USUARIO" << endl;
cout << ">> ";
cin.ignore();
getline(cin, nickname);
cout << " DEPARTAMENTO" << endl;
cout << ">> ";
getline(cin, department);
cout << " EMPRESA" << endl;
cout << ">> ";
getline(cin, corporation);
if (sp->getInstance()->getNode(department, corporation) != nullptr)
{
if (sp->getInstance()->getNode(department, corporation)->getUserList()->searchNode(nickname) != nullptr)
{
sp->getInstance()
->getNode(department, corporation)
->getUserList()
->searchNode(nickname)
->getUser()
->getAssetAVL()
->report(nickname, department, corporation);
}
}
break;
case '7':
system("cls");
cout << " NOMBRE DE USUARIO" << endl;
cout << ">> ";
cin.ignore();
getline(cin, nickname);
cout << " DEPARTAMENTO" << endl;
cout << ">> ";
getline(cin, department);
cout << " EMPRESA" << endl;
cout << ">> ";
getline(cin, corporation);
cl->getInstance()->report(department, corporation, nickname);
break;
case '8':
cl->getInstance()->sortAscending();
break;
case '9':
cl->getInstance()->sortDescending();
break;
case '0':
return;
default:
cout << ">> OPCION INCORRECTA" << endl;
break;
}
system("pause");
}
}
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.