blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 3 264 | content_id stringlengths 40 40 | detected_licenses listlengths 0 85 | license_type stringclasses 2 values | repo_name stringlengths 5 140 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 905 values | visit_date timestamp[us]date 2015-08-09 11:21:18 2023-09-06 10:45:07 | revision_date timestamp[us]date 1997-09-14 05:04:47 2023-09-17 19:19:19 | committer_date timestamp[us]date 1997-09-14 05:04:47 2023-09-06 06:22:19 | github_id int64 3.89k 681M ⌀ | star_events_count int64 0 209k | fork_events_count int64 0 110k | gha_license_id stringclasses 22 values | gha_event_created_at timestamp[us]date 2012-06-07 00:51:45 2023-09-14 21:58:39 ⌀ | gha_created_at timestamp[us]date 2008-03-27 23:40:48 2023-08-21 23:17:38 ⌀ | gha_language stringclasses 141 values | src_encoding stringclasses 34 values | language stringclasses 1 value | is_vendor bool 1 class | is_generated bool 2 classes | length_bytes int64 3 10.4M | extension stringclasses 115 values | content stringlengths 3 10.4M | authors listlengths 1 1 | author_id stringlengths 0 158 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
dded14e6573e2022e0960b3d84ffee2d0e35d63e | 1deda48055f6ff3c4afb3d20c9c27ab78b403e70 | /src/classes/player/SWBestow.h | e3544668cd04a67c441e49b2e438c38a37469e61 | [] | no_license | Trogious/swmud | c5d60eb78bcdcbe9473db502a139285671cebcf1 | 93e0b40a69511b44d0175dcda6612a8ef79f3912 | refs/heads/master | 2021-07-24T14:25:48.787119 | 2020-04-13T16:54:01 | 2020-04-13T16:54:01 | 132,245,599 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 476 | h | /*
* SWBestow.h
*
* Created on: 2010-07-15
* Author: Trog
*/
#ifndef SWBESTOW_H_
#define SWBESTOW_H_
#include "SWCommand.h"
namespace player
{
class SWBestow: public SWCommand
{
public:
SWBestow()
{
}
SWBestow(const SWString &cmd) :
SWCommand(cmd)
{
}
SWBestow(const SWString &cmd, const SWInt &ownerEntityId) :
SWCommand(cmd, ownerEntityId)
{
}
const SWString getTableName() const
{
return "bestow_pdata";
}
};
}
#endif /* SWBESTOW_H_ */
| [
"trog@swmud.net"
] | trog@swmud.net |
6b312579b18ffcb801737d8250b914d0b6feffae | e213a99049af2297ed455c10de07adb0199964fc | /Sources/Serialized/Xml/Xml.cpp | cc3bd16a8365cdb55e48b5a4afcd25f1e86ccb5f | [
"MIT"
] | permissive | firedtoad/Acid | aab0541804b38775c620529b0157d61866de90d5 | ba6f1340206cd138ad4d30ac3e1a7c58af5b0c8e | refs/heads/master | 2020-04-26T19:25:54.908370 | 2019-03-02T03:08:07 | 2019-03-02T03:08:07 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,435 | cpp | #include "Xml.hpp"
#include "Files/Files.hpp"
namespace acid
{
Xml::Xml(const std::string &rootName) :
Metadata(rootName, "")
{
}
Xml::Xml(const std::string &rootName, Metadata *metadata) :
Metadata(rootName, "")
{
AddChildren(metadata, this);
}
void Xml::Load(std::istream *inStream)
{
ClearChildren();
ClearAttributes();
auto topNode = std::make_unique<Node>(nullptr, "", "");
Node *currentSection = nullptr;
std::stringstream summation;
bool end = false;
size_t lineNum = 0;
std::string linebuf;
while (inStream->peek() != -1)
{
Files::SafeGetLine(*inStream, linebuf);
lineNum++;
for (auto it = linebuf.begin(); it != linebuf.end(); ++it)
{
if (*it == '<')
{
if (*(it + 1) == '?') // Prolog.
{
currentSection = topNode.get();
continue;
}
if (*(it + 1) == '/') // End tag.
{
currentSection->m_content += summation.str();
end = true;
}
else // Start tag.
{
auto section = new Node(currentSection, "", "");
currentSection->m_children.emplace_back(section);
currentSection = section;
}
summation.str(std::string());
}
else if (*it == '>')
{
if (!end)
{
currentSection->m_attributes += summation.str();
}
summation.str(std::string());
if (end || *(it - 1) == '/') // End tag.
{
end = false;
if (currentSection->m_parent != nullptr)
{
currentSection = currentSection->m_parent;
}
}
}
else if (*it == '\n')
{
}
else
{
summation << *it;
}
}
}
if (!topNode->m_children.empty())
{
Convert(topNode->m_children[0].get(), this, 1);
}
}
void Xml::Write(std::ostream *inStream) const
{
// std::stringstream data;
// data << "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n";
// AppendData(this, data, 0);
// return data.str();
}
void Xml::AddChildren(const Metadata *source, Metadata *destination)
{
for (const auto &child : source->GetChildren())
{
auto created = destination->AddChild(new Metadata(child->GetName(), child->GetValue()));
AddChildren(child.get(), created);
}
for (const auto &attribute : source->GetAttributes())
{
destination->AddAttribute(attribute.first, attribute.second);
}
}
void Xml::Convert(const Node *source, Metadata *parent, const uint32_t &depth)
{
int32_t firstSpace = String::FindCharPos(source->m_attributes, ' ');
std::string name = String::Trim(String::Substring(source->m_attributes, 0, firstSpace));
std::string attributes = String::Substring(source->m_attributes, firstSpace + 1, static_cast<int32_t>(source->m_attributes.size()));
attributes = String::Trim(attributes);
if (attributes[attributes.size() - 1] == '/' || attributes[attributes.size() - 1] == '?')
{
attributes.pop_back();
}
attributes = String::Trim(attributes);
std::map<std::string, std::string> parseAttributes = {};
if (!attributes.empty())
{
std::string currentKey;
std::string summation;
for (const char &c : attributes)
{
switch (c)
{
case '"':
{
if (currentKey.empty())
{
currentKey = summation;
summation.clear();
continue;
}
parseAttributes.emplace(String::Trim(currentKey), String::Trim(summation));
currentKey.clear();
summation.clear();
break;
}
case '=':
{
if (!currentKey.empty())
{
summation += c;
}
break;
}
default:
{
summation += c;
break;
}
}
}
}
auto thisValue = parent;
if (depth != 0)
{
if (depth != 1)
{
thisValue = new Metadata(name, source->m_content, parseAttributes);
parent->AddChild(thisValue);
}
else
{
thisValue->SetName(name);
thisValue->SetValue(source->m_content);
thisValue->SetAttributes(parseAttributes);
}
for (const auto &child : source->m_children)
{
Convert(child.get(), thisValue, depth + 1);
}
}
else
{
parent->SetName(name);
parent->SetValue(source->m_content);
parent->SetAttributes(parseAttributes);
}
}
void Xml::AppendData(const Metadata *source, std::ostream *outStream, const int32_t &indentation)
{
std::stringstream indents;
for (int32_t i = 0; i < indentation; i++)
{
indents << " ";
}
std::string name = String::ReplaceAll(source->GetName(), " ", "_");
std::stringstream nameAttributes;
nameAttributes << name;
for (const auto &[attributeName, value] : source->GetAttributes())
{
nameAttributes << " " << attributeName << "=\"" << value << "\"";
}
std::string nameAndAttribs = String::Trim(nameAttributes.str());
*outStream << indents.str();
if (source->GetName()[0] == '?')
{
*outStream << "<" << nameAndAttribs << "?>\n";
for (const auto &child : source->GetChildren())
{
AppendData(child.get(), outStream, indentation);
}
return;
}
if (source->GetChildren().empty() && source->GetValue().empty())
{
*outStream << "<" << nameAndAttribs << "/>\n";
return;
}
*outStream << "<" << nameAndAttribs << ">" << source->GetString();
if (!source->GetChildren().empty())
{
*outStream << "\n";
for (const auto &child : source->GetChildren())
{
AppendData(child.get(), outStream, indentation + 1);
}
*outStream << indents.str();
}
*outStream << "</" << name << ">\n";
}
}
| [
"mattparks5855@gmail.com"
] | mattparks5855@gmail.com |
fb3760069ea3569c3dfc43babc5128d9d1302617 | deae7011a968494f64d3406123040760cc2b6361 | /src/win32/sdl_winmain.cpp | 013213f3c4bd88453180d46c12098d22c18cc3b0 | [] | no_license | ioan-chera/AutoWolf | 9499508ec1ca75bdee95ba5a0b7e92fc0881db09 | 0780662807138aad4145a65851215d8d8a8815de | refs/heads/master | 2022-02-11T18:34:01.393793 | 2022-01-19T06:27:33 | 2022-01-19T06:27:33 | 11,735,081 | 3 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 587 | cpp | #ifdef _WIN32
/*
SDL_main.c, placed in the public domain by Sam Lantinga 4/13/98
Modified to write stdout/stderr to a message box at shutdown by Ripper 2007-12-27
The WinMain function -- calls your program's main() function
*/
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
/* Include the SDL main definition header */
#include "SDL.h"
#ifdef main
# undef main
#endif /* main */
/* This is where execution begins [windowed apps] */
int WINAPI WinMain(HINSTANCE hInst, HINSTANCE hPrev, LPSTR szCmdLine, int sw)
{
return SDL_main(0, nullptr);
}
#endif // _WIN32
| [
"ioan_chera@yahoo.com"
] | ioan_chera@yahoo.com |
8e2d238f7bb0450b64c22fb47ae4b30747093d91 | 4a56d4cd2a933ceb7f4b0296923c4506df34d807 | /OI - zadania/VIII OI/mapa_gest.cpp | d5302bf0c98eedaa945ccadebfe77d79864d176d | [] | no_license | kjamrozy/Algorytmika | 027b02f48b3b7b1a107f3d89df5202174dbd8b7b | 58249bd653651aaec8281fa3a83ced8f20490d88 | refs/heads/master | 2020-05-20T09:10:02.649972 | 2015-08-28T07:49:30 | 2015-08-28T07:49:30 | 41,513,165 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,076 | cpp | #include <algorithm>
#include <cstdio>
using namespace std;
#define FOR(x,b,e) for(int x=b;x<=e;x++)
#define FORD(x,b,e) for(int x=b;x>=e;x--)
#define REP(x,e) for(int x=0;x<e;x++)
#define MAXN 251
int n[MAXN][MAXN];
int l,r;
void init(){
FOR(i,1,l)
n[i][0]=n[i][0]+n[i-1][0];
FOR(i,1,l)
n[0][i]=n[0][i]+n[0][i-1];
FOR(i,1,l-1)
FOR(j,1,l-1)
n[j][i]=n[j][i]+n[j-1][i]+n[j][i-1]-n[j-1][i-1];
}
int suma(int xp,int xk,int yp,int yk){
if(xp && yp){
return n[xk][yk]-n[xp-1][yk]-n[xk][yp-1]+n[xp-1][yp-1];
}else if(xp){
return n[xk][yk]-n[xp-1][yk];
}else if(yp){
return n[xk][yk]-n[xk][yp-1];
}else{
return n[xk][yk];
}
}
int main(){
scanf("%d %d",&l,&r);
REP(i,l)
REP(j,l)
scanf("%d",&n[j][i]);
init();
REP(i,l)
REP(j,l){
printf("%d",suma(max(0,j-r),min(j+r,l-1),max(0,i-r),min(i+r,l-1)));
(j==l-1) ? printf("\n") : printf(" ");
}
return 0;
}
| [
"karol.j.jamrozy@gmail.com"
] | karol.j.jamrozy@gmail.com |
48ed7a580e9edb972a8f991b4315180b109d29bb | f4201ae4eae45a1176c64341b33135b078f04f3d | /PGGroup/Entity.cpp | e96777d8c734598e359cc7fc26e35a0dc662383d | [] | no_license | Lefevrest/cs495-group | 381842a1a9ff199e371261847ee9ab03170f0706 | 9411afe1a266afe994f1ea7dcf4d44c79954b19b | refs/heads/master | 2021-01-14T10:16:49.187182 | 2015-12-08T21:52:36 | 2015-12-08T21:52:36 | 46,585,345 | 0 | 0 | null | 2015-11-20T20:33:11 | 2015-11-20T20:33:11 | null | UTF-8 | C++ | false | false | 5,184 | cpp | #include "Entity.h"
#include "PlaneEntity.h"
Entity::Entity(Vector* aPosition, GLuint *aTexture, GLfloat* aVertices, float aRadius) {
position = aPosition;
rotation = new Vector(0.0, 0.0, 0.0);
velocity = new Vector(0.0, 0.0, 0.0);
texture = aTexture;
opacity = 0;
radius = ((aRadius == NULL) ? 0.8f : aRadius);
if(aVertices) {
memcpy(&vertices[0], &aVertices[0], sizeof(vertices));
} else {
GLfloat vertZero[12] = { 0 };
memcpy(&vertices[0], &vertZero[0], sizeof(vertices));
}
}
Entity::~Entity(void) {
delete position;
delete rotation;
delete velocity;
}
// Check if this entity has collided with another entity by comparing their colliders.
bool Entity::hasCollided(Entity* otherEntity) {
return (position->distanceTo(otherEntity->getPosition()) <= (radius + otherEntity->getRadius()));
}
// Check if this entity has collided with a plane entity.
// The plane entity doesn't use colliders, but has its own implementation of hasCollided so let it handle checking
// if it's collided with this entity.
bool Entity::hasCollided(PlaneEntity* otherEntity) { return otherEntity->hasCollided(this); }
// Check if entity has collided with another entity and stop further velocity if it has.
// If the entity is not moving toward it (i.e., trying to get away), allow it to move.
bool Entity::checkForCollision(Entity* otherEntity) {
bool collisionAndMovingToward = hasCollided(otherEntity) && isMovingToward(otherEntity);
if(collisionAndMovingToward) {
velocity->zero();
}
return collisionAndMovingToward;
}
// Check if entity has collided with a plane entity and stop further velocity if it has.
// The plane entity doesn't use colliders, but has its own implementation of checkForCollisions so let it handle checking
// if it's collided with this entity.
bool Entity::checkForCollision(PlaneEntity* otherEntity) {
return otherEntity->checkForCollision(this);
}
// Rotate the entity according to its rotation variables.
void Entity::rotateEntity() {
glRotatef(rotation->getX(), 1, 0, 0);
glRotatef(rotation->getY(), 0, 1, 0);
glRotatef(rotation->getZ(), 0, 0, 1);
}
// Check if this entity is moving toward another by comparing the distance to the other entity at its current position to the
// distance to the other entity at its new position. If the latter is less than the first, its moving toward the other entity.
bool Entity::isMovingToward(Entity* otherEntity) { return (position->distanceTo(otherEntity->getPosition()) > ((position->add(velocity))->distanceTo(otherEntity->getPosition())) ); }
bool Entity::isMovingToward(PlaneEntity* otherEntity) { return otherEntity->isMovingToward(this); }
// Check if an entity is within the plane's boundaries. Without this, a plane is considered infinite when checking for collisions.
bool Entity::withinPlaneBoundaries(PlaneEntity* plane) {
Orientation planeOrientation = plane->getOrientation();
if(planeOrientation == VERTICAL_X) {
return ( (position->getX()-radius < plane->getMax(X) && position->getX()+radius > plane->getMin(X)) &&
(position->getY()-radius < plane->getMax(Y) && position->getY()+radius > plane->getMin(Y)) );
} else if (planeOrientation == VERTICAL_Z) {
return ( (position->getY()-radius < plane->getMax(Y) && position->getY()+radius > plane->getMin(Y)) &&
(position->getZ()-radius < plane->getMax(Z) && position->getZ()+radius > plane->getMin(Z)) );
} else if (planeOrientation == HORIZONTAL) {
return ( (position->getX() < plane->getMax(X) && position->getX() > plane->getMin(X)) &&
(position->getZ() < plane->getMax(Z) && position->getZ() > plane->getMin(Z)) );
} else {
return false;
}
}
// Return the Vector location information based on its corresponding enum.
Vector* Entity::getCorrespondingVector(LocationInfo locationInfo) {
return (locationInfo == POSITION) ? position
: (locationInfo == ROTATION) ? rotation : velocity;
}
// Increment the values for use in creating fluid movement.
void Entity::incrementXOf(LocationInfo locInfo, float x) { getCorrespondingVector(locInfo)->incrementX(x); }
void Entity::incrementYOf(LocationInfo locInfo, float y) { getCorrespondingVector(locInfo)->incrementY(y); }
void Entity::incrementZOf(LocationInfo locInfo, float z) { getCorrespondingVector(locInfo)->incrementZ(z); }
Vector* Entity::getPosition() { return position; }
Vector* Entity::getRotation() { return rotation; }
Vector* Entity::getVelocity() { return velocity; }
float Entity::getRadius() { return radius; }
// The entity knows how to draw itself and where to draw itself.
void Entity::drawSelf() {
glPushMatrix();
glBindTexture( GL_TEXTURE_2D, *texture );
glTranslatef(position->getX(), position->getY(), position->getZ());
rotateEntity();
glBegin(GL_QUADS);
glTexCoord2f(0, 1.0f); glVertex3f(vertices[0], vertices[1], vertices[2]);
glTexCoord2f(1.0f, 1.0f); glVertex3f(vertices[3], vertices[4], vertices[5]);
glTexCoord2f(1.0f, 0); glVertex3f(vertices[6], vertices[7], vertices[8]);
glTexCoord2f(0, 0); glVertex3f(vertices[9], vertices[10], vertices[11]);
glEnd();
glPopMatrix();
} | [
"finapani@gmail.com"
] | finapani@gmail.com |
fd0601d6ae34c2e94956d86bc72f51b2f7734070 | 8308932a4ff85453f12834672cbd5d93ea394eef | /blib/wm/widgets/Image.cpp | d1f6501024834547c9e131cddc6c615d00ff058b | [] | no_license | psyops8905/blib | 1d34317b4a0f4aa5ca1dec8d24eea9b477c12d41 | b3c036bf5a2228b359e8de66dd60f9bdef8c982c | refs/heads/master | 2023-03-18T06:18:22.197039 | 2019-02-01T02:03:50 | 2019-02-01T02:03:50 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,373 | cpp | #include "Image.h"
//#include <gl/glew.h>
#include <glm/gtc/matrix_transform.hpp>
#include <blib/wm/WM.h>
#include <blib/Texture.h>
#include <blib/SpriteBatch.h>
#include <blib/Math.h>
namespace blib
{
namespace wm
{
namespace widgets
{
Image::Image(Texture* texture )
{
this->texture = texture;
this->width = 100;
this->height = 100;
showBorder = true;
scaleAspect = true;
}
void Image::draw(SpriteBatch &spriteBatch, glm::mat4 matrix, Renderer* renderer) const
{
if(showBorder)
spriteBatch.drawStretchyRect(WM::getInstance()->skinTexture, glm::translate(matrix, glm::vec3(x,y,0)), WM::getInstance()->skin["frame"], glm::vec2(width, height));
if (texture)
{
// if (!texture->loaded)
// return;
glm::vec2 scale = glm::vec2((width - 2.0f) / texture->originalWidth, (height - 2.0f) / texture->originalHeight);
if (scaleAspect)
scale.x = (scale.y = glm::min(scale.x, scale.y)); //uninitialized read in min function?
spriteBatch.draw(texture, blib::math::easyMatrix(
glm::vec2(x + 2, y + 2),
0,
scale,
matrix));
}
}
void Image::setTexture(Texture* texture)
{
this->texture = texture;
}
Texture* Image::getTexture()
{
return this->texture;
}
}
}
}
| [
"borfje@gmail.com"
] | borfje@gmail.com |
513870f4239b06935df853234f0dd84f17394ab0 | dbe0391bc048ab2719e2694f02b85f5096585b74 | /sortitout.cpp | cdaac15d28771e169ea42f931dc625f135cc47cf | [] | no_license | Asaad27/Competitive-programming | 4821e8030e7d4d551f65a13d67633b075d18a08e | e876736c2e1accfe3ff774454155fb80723178e6 | refs/heads/master | 2022-03-31T23:52:18.556535 | 2020-01-17T13:10:05 | 2020-01-17T13:10:05 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 294 | cpp | #include<bits/stdc++.h>
using namespace std;
int main()
{
int n,x;
cin>>n;
vector< pair<int,int>> v;
for(int i=0;i<n;i++)
{
cin>>x;
v.push_back(make_pair(x,i));
}
sort(v.begin(),v.end());
for(int i=0;i<v.size();i++)
{
cout<<v[i].second<<" ";
}
cout<<endl;
return 0;
} | [
"asaadbelarbi15@gmail.com"
] | asaadbelarbi15@gmail.com |
2d92808552628a1d4d08430117aab1c3f6fadd3c | d7b84a31cafb72a3cb71b3a3cc724a68119ba18e | /Kvasir/0.7/U | 9571214a2be9f440d340d57d3cbb46f24df405ec | [] | no_license | benroque/Ragnorak | 6cc7c68db801f9281a4ac241da754bce88ef6caf | a1bfc2430cccb207192792acebdd1530f1388a4c | refs/heads/master | 2021-01-14T08:13:18.774988 | 2017-02-20T08:32:53 | 2017-02-20T08:32:53 | 82,008,402 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 703,013 | /*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 4.1 |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volVectorField;
location "0.7";
object U;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 1 -1 0 0 0 0];
internalField nonuniform List<vector>
18000
(
(8.54436e-14 3.86738e-13 -5.98469e-12)
(9.07241e-14 3.85997e-13 -5.91761e-12)
(8.18334e-14 -9.81064e-15 -5.85072e-12)
(7.31585e-14 -1.34246e-14 -5.78516e-12)
(6.47205e-14 -1.31803e-14 -5.72022e-12)
(5.65146e-14 -1.28278e-14 -5.65608e-12)
(4.85891e-14 -1.28472e-14 -5.59261e-12)
(4.09912e-14 -1.28427e-14 -5.5304e-12)
(3.35887e-14 -1.26223e-14 -5.46906e-12)
(2.64743e-14 -9.43035e-15 -5.40968e-12)
(1.26142e-13 3.98131e-13 -7.47473e-12)
(1.39599e-13 3.85843e-13 -7.21451e-12)
(1.22316e-13 -4.58378e-14 -6.96214e-12)
(1.05939e-13 -4.80802e-14 -6.72105e-12)
(9.07587e-14 -4.64468e-14 -6.49039e-12)
(7.66298e-14 -4.46188e-14 -6.26912e-12)
(6.33588e-14 -4.29323e-14 -6.05675e-12)
(5.11542e-14 -4.14705e-14 -5.8533e-12)
(3.96747e-14 -3.99053e-14 -5.65749e-12)
(2.90275e-14 -2.93766e-14 -5.47371e-12)
(1.38358e-13 4.01702e-13 -9.4465e-12)
(1.47941e-13 3.73354e-13 -8.87887e-12)
(1.22436e-13 -9.79251e-14 -8.34566e-12)
(9.95698e-14 -9.58349e-14 -7.85222e-12)
(7.93296e-14 -8.95551e-14 -7.39318e-12)
(6.13687e-14 -8.40972e-14 -6.96653e-12)
(4.53514e-14 -7.90149e-14 -6.57018e-12)
(3.11219e-14 -7.42842e-14 -6.20017e-12)
(1.8476e-14 -6.99771e-14 -5.85568e-12)
(7.2811e-15 -5.02538e-14 -5.53916e-12)
(1.87249e-13 3.91484e-13 -1.20891e-11)
(1.88633e-13 3.40448e-13 -1.10333e-11)
(1.51006e-13 -1.72692e-13 -1.00799e-11)
(1.18937e-13 -1.60853e-13 -9.22278e-12)
(9.18888e-14 -1.46192e-13 -8.45373e-12)
(6.89677e-14 -1.33201e-13 -7.76138e-12)
(4.96506e-14 -1.21684e-13 -7.13691e-12)
(3.31352e-14 -1.11371e-13 -6.5726e-12)
(1.91912e-14 -1.01881e-13 -6.0618e-12)
(7.44147e-15 -7.16782e-14 -5.60547e-12)
(2.59159e-13 3.55859e-13 -1.56853e-11)
(2.44607e-13 2.73642e-13 -1.38563e-11)
(1.88619e-13 -2.80543e-13 -1.22706e-11)
(1.43346e-13 -2.50334e-13 -1.08962e-11)
(1.07134e-13 -2.19915e-13 -9.70561e-12)
(7.80013e-14 -1.94111e-13 -8.66937e-12)
(5.44657e-14 -1.72228e-13 -7.7648e-12)
(3.5425e-14 -1.53445e-13 -6.97299e-12)
(1.99798e-14 -1.36713e-13 -6.27706e-12)
(7.51721e-15 -9.40709e-14 -5.67299e-12)
(3.67731e-13 2.75914e-13 -2.06573e-11)
(3.23645e-13 1.49618e-13 -1.76021e-11)
(2.38973e-13 -4.37722e-13 -1.50665e-11)
(1.74461e-13 -3.73545e-13 -1.29529e-11)
(1.25753e-13 -3.16453e-13 -1.119e-11)
(8.85088e-14 -2.70219e-13 -9.70998e-12)
(5.99101e-14 -2.32315e-13 -8.46173e-12)
(3.78607e-14 -2.00897e-13 -7.40344e-12)
(2.08174e-14 -1.74287e-13 -6.50156e-12)
(7.61014e-15 -1.17415e-13 -5.7416e-12)
(5.35566e-13 1.18064e-13 -2.7641e-11)
(4.36524e-13 -7.1189e-14 -2.26463e-11)
(3.06561e-13 -6.70432e-13 -1.86693e-11)
(2.13762e-13 -5.45413e-13 -1.55004e-11)
(1.47783e-13 -4.43532e-13 -1.29598e-11)
(1.00088e-13 -3.65147e-13 -1.09068e-11)
(6.53135e-14 -3.03637e-13 -9.23601e-12)
(3.98162e-14 -2.54779e-13 -7.86659e-12)
(2.10087e-14 -2.15088e-13 -6.73639e-12)
(7.06331e-15 -1.4174e-13 -5.81119e-12)
(-1.94607e-12 -1.7982e-13 -3.76604e-11)
(-2.1456e-12 -4.59436e-13 -2.95349e-11)
(-2.20128e-12 -1.01878e-12 -2.33695e-11)
(-2.19943e-12 -7.86651e-13 -1.86839e-11)
(-2.16574e-12 -6.11704e-13 -1.5086e-11)
(-2.11417e-12 -4.84122e-13 -1.22933e-11)
(-2.05325e-12 -3.88475e-13 -1.01037e-11)
(-1.9881e-12 -3.15606e-13 -8.37062e-12)
(-1.92204e-12 -2.59059e-13 -6.98559e-12)
(-1.88654e-12 -1.67051e-13 -5.88645e-12)
(-5.35699e-09 -1.21414e-12 -8.28191e-11)
(-5.38067e-09 -1.1455e-12 -6.62632e-11)
(-5.06702e-09 -1.1633e-12 -5.36782e-11)
(-4.78258e-09 -7.69746e-13 -4.41821e-11)
(-4.526e-09 -5.08365e-13 -3.69116e-11)
(-4.29382e-09 -3.33155e-13 -3.12465e-11)
(-4.08302e-09 -2.13725e-13 -2.67649e-11)
(-3.89099e-09 -1.31664e-13 -2.31699e-11)
(-3.71584e-09 -1.52827e-13 -2.02486e-11)
(-3.63314e-09 -2.61437e-13 -1.80607e-11)
(5.79988e-07 -1.19936e-09 -6.32135e-08)
(3.34503e-08 -1.40644e-10 -5.53737e-08)
(2.61853e-08 7.57054e-10 -4.86167e-08)
(2.17281e-08 6.91822e-10 -4.29678e-08)
(1.79525e-08 6.27502e-10 -3.82092e-08)
(1.47242e-08 5.70258e-10 -3.41723e-08)
(1.19424e-08 5.19532e-10 -3.07238e-08)
(9.52711e-09 4.73664e-10 -2.77584e-08)
(7.04134e-09 2.26799e-10 -2.51948e-08)
(-1.00915e-07 -2.1699e-10 -2.34732e-08)
(2.57342e-13 3.65695e-13 -6.35903e-12)
(2.41506e-13 3.44649e-13 -6.28573e-12)
(2.12001e-13 -5.08176e-14 -6.21284e-12)
(1.83562e-13 -5.3915e-14 -6.14069e-12)
(1.56248e-13 -5.33604e-14 -6.06991e-12)
(1.29907e-13 -5.26727e-14 -6.00031e-12)
(1.04563e-13 -5.21694e-14 -5.93055e-12)
(8.02206e-14 -5.15616e-14 -5.86297e-12)
(5.66408e-14 -5.04429e-14 -5.79609e-12)
(3.44473e-14 -2.93055e-14 -5.73091e-12)
(5.14841e-13 3.19795e-13 -7.99249e-12)
(4.75313e-13 2.34241e-13 -7.70641e-12)
(4.07709e-13 -1.93104e-13 -7.42862e-12)
(3.44479e-13 -1.89873e-13 -7.16395e-12)
(2.85481e-13 -1.83308e-13 -6.91123e-12)
(2.30443e-13 -1.76971e-13 -6.66872e-12)
(1.79079e-13 -1.70806e-13 -6.43709e-12)
(1.31086e-13 -1.652e-13 -6.21468e-12)
(8.62119e-14 -1.58111e-13 -6.0018e-12)
(4.49131e-14 -8.9957e-14 -5.80084e-12)
(6.30641e-13 2.37968e-13 -1.01766e-11)
(5.61749e-13 6.21369e-14 -9.54456e-12)
(4.65405e-13 -3.92476e-13 -8.95448e-12)
(3.78767e-13 -3.72698e-13 -8.40798e-12)
(3.01558e-13 -3.5044e-13 -7.90232e-12)
(2.32625e-13 -3.29597e-13 -7.43323e-12)
(1.71015e-13 -3.1057e-13 -6.99866e-12)
(1.15933e-13 -2.92932e-13 -6.59389e-12)
(6.68211e-14 -2.74312e-13 -6.21745e-12)
(2.34202e-14 -1.53821e-13 -5.87292e-12)
(8.17696e-13 1.00018e-13 -1.31367e-11)
(7.02882e-13 -2.01176e-13 -1.19485e-11)
(5.65355e-13 -6.7116e-13 -1.08825e-11)
(4.46956e-13 -6.17328e-13 -9.92701e-12)
(3.4614e-13 -5.64164e-13 -9.0736e-12)
(2.59893e-13 -5.16874e-13 -8.3084e-12)
(1.8616e-13 -4.74425e-13 -7.6212e-12)
(1.23138e-13 -4.3615e-13 -7.00253e-12)
(6.91948e-14 -3.98583e-13 -6.44289e-12)
(2.37991e-14 -2.20054e-13 -5.94505e-12)
(1.07661e-12 -1.26576e-13 -1.72194e-11)
(8.90155e-13 -6.02002e-13 -1.51352e-11)
(6.92885e-13 -1.06089e-12 -1.33424e-11)
(5.31006e-13 -9.44339e-13 -1.17965e-11)
(3.99114e-13 -8.37724e-13 -1.04656e-11)
(2.91321e-13 -7.45955e-13 -9.31405e-12)
(2.03154e-13 -6.66229e-13 -8.31369e-12)
(1.30972e-13 -5.9695e-13 -7.44192e-12)
(7.1781e-14 -5.32395e-13 -6.67873e-12)
(2.41269e-14 -2.89236e-13 -6.01946e-12)
(1.44051e-12 -4.92653e-13 -2.29572e-11)
(1.14318e-12 -1.20981e-12 -1.94189e-11)
(8.57616e-13 -1.6087e-12 -1.65166e-11)
(6.35294e-13 -1.3829e-12 -1.41138e-11)
(4.62462e-13 -1.18811e-12 -1.21275e-11)
(3.27534e-13 -1.02653e-12 -1.04724e-11)
(2.22012e-13 -8.91174e-13 -9.08598e-12)
(1.39312e-13 -7.77405e-13 -7.91713e-12)
(7.45312e-14 -6.76012e-13 -6.92642e-12)
(2.4435e-14 -3.61036e-13 -6.0956e-12)
(1.96473e-12 -1.07748e-12 -3.11755e-11)
(1.48893e-12 -2.13226e-12 -2.52789e-11)
(1.07247e-12 -2.38572e-12 -2.06587e-11)
(7.65461e-13 -1.97316e-12 -1.70116e-11)
(5.38402e-13 -1.63818e-12 -1.41241e-11)
(3.69369e-13 -1.37078e-12 -1.18126e-11)
(2.42975e-13 -1.15501e-12 -9.94709e-12)
(1.48338e-13 -9.79752e-13 -8.4303e-12)
(7.73135e-14 -8.30431e-13 -7.18479e-12)
(2.47911e-14 -4.36176e-13 -6.17338e-12)
(2.71753e-12 -2.02872e-12 -4.32473e-11)
(1.83636e-12 -3.54934e-12 -3.34327e-11)
(1.23878e-12 -3.49375e-12 -2.61413e-11)
(8.23964e-13 -2.77194e-12 -2.0676e-11)
(5.33879e-13 -2.21728e-12 -1.65439e-11)
(3.28914e-13 -1.79348e-12 -1.33753e-11)
(1.83153e-13 -1.46466e-12 -1.09181e-11)
(7.91988e-14 -1.20705e-12 -8.99001e-12)
(4.83239e-15 -9.96291e-13 -7.46055e-12)
(-4.77831e-14 -5.14077e-13 -6.25693e-12)
(-1.65087e-10 -4.47153e-12 -9.36505e-11)
(-4.16511e-10 -6.50864e-12 -7.36035e-11)
(-3.42725e-10 -5.46615e-12 -5.87665e-11)
(-2.83491e-10 -4.19986e-12 -4.78069e-11)
(-2.37029e-10 -3.27644e-12 -3.95773e-11)
(-2.00089e-10 -2.59805e-12 -3.32641e-11)
(-1.70387e-10 -2.08937e-12 -2.8334e-11)
(-1.46256e-10 -1.7025e-12 -2.44219e-11)
(-1.26488e-10 -1.39716e-12 -2.12696e-11)
(-1.11516e-10 -8.10867e-13 -1.89178e-11)
(3.97055e-07 -2.10286e-09 -6.88842e-08)
(-7.92741e-09 -1.66938e-09 -5.9891e-08)
(-8.69427e-09 -6.9796e-10 -5.2043e-08)
(-8.08122e-09 -6.35367e-10 -4.56072e-08)
(-7.50061e-09 -5.8336e-10 -4.02734e-08)
(-6.96958e-09 -5.35481e-10 -3.58088e-08)
(-6.49037e-09 -4.91978e-10 -3.20371e-08)
(-6.06178e-09 -4.52721e-10 -2.88242e-08)
(-5.70646e-09 -4.21032e-10 -2.60687e-08)
(-7.90188e-09 -4.35282e-10 -2.42058e-08)
(2.31337e-13 3.69581e-13 -3.8627e-13)
(2.18237e-13 3.46482e-13 -3.79482e-13)
(1.91324e-13 -4.92187e-14 -3.72539e-13)
(1.65674e-13 -5.23354e-14 -3.65534e-13)
(1.41094e-13 -5.1425e-14 -3.58875e-13)
(1.174e-13 -5.10044e-14 -3.52459e-13)
(9.49807e-14 -5.05471e-14 -3.45953e-13)
(7.33234e-14 -4.97195e-14 -3.40193e-13)
(5.2599e-14 -4.88611e-14 -3.34279e-13)
(3.31559e-14 -2.5716e-14 -3.2858e-13)
(5.03263e-13 3.33904e-13 -5.36054e-13)
(4.6449e-13 2.39482e-13 -5.08557e-13)
(3.97969e-13 -1.88048e-13 -4.81618e-13)
(3.35789e-13 -1.84533e-13 -4.56223e-13)
(2.78044e-13 -1.78024e-13 -4.32995e-13)
(2.24252e-13 -1.71516e-13 -4.11313e-13)
(1.74348e-13 -1.65327e-13 -3.90038e-13)
(1.27712e-13 -1.59686e-13 -3.70292e-13)
(8.42016e-14 -1.52697e-13 -3.52896e-13)
(4.44864e-14 -7.95705e-14 -3.35195e-13)
(6.22446e-13 2.65283e-13 -7.59203e-13)
(5.53072e-13 6.94788e-14 -6.91311e-13)
(4.571e-13 -3.84818e-13 -6.30846e-13)
(3.7096e-13 -3.64767e-13 -5.75498e-13)
(2.94586e-13 -3.41786e-13 -5.2629e-13)
(2.26778e-13 -3.20739e-13 -4.81313e-13)
(1.66389e-13 -3.01522e-13 -4.4118e-13)
(1.12769e-13 -2.83998e-13 -4.05075e-13)
(6.48148e-14 -2.65069e-13 -3.71627e-13)
(2.29479e-14 -1.35916e-13 -3.4273e-13)
(8.16646e-13 1.45648e-13 -1.09436e-12)
(6.98944e-13 -1.95228e-13 -9.55553e-13)
(5.59857e-13 -6.63239e-13 -8.36024e-13)
(4.40893e-13 -6.08128e-13 -7.32021e-13)
(3.40142e-13 -5.53534e-13 -6.43231e-13)
(2.54595e-13 -5.05173e-13 -5.66846e-13)
(1.81833e-13 -4.61927e-13 -5.00973e-13)
(1.19984e-13 -4.23844e-13 -4.43929e-13)
(6.73399e-14 -3.86207e-13 -3.93716e-13)
(2.33311e-14 -1.95286e-13 -3.50306e-13)
(1.09025e-12 -5.69294e-14 -1.61329e-12)
(8.94847e-13 -6.04986e-13 -1.34247e-12)
(6.92642e-13 -1.05804e-12 -1.12293e-12)
(5.27722e-13 -9.37325e-13 -9.41353e-13)
(3.94668e-13 -8.26883e-13 -7.92847e-13)
(2.86823e-13 -7.32699e-13 -6.71214e-13)
(1.99269e-13 -6.51644e-13 -5.70835e-13)
(1.28012e-13 -5.81692e-13 -4.87583e-13)
(7.01685e-14 -5.16293e-13 -4.17476e-13)
(2.38876e-14 -2.56839e-13 -3.59938e-13)
(1.48203e-12 -3.94212e-13 -2.43601e-12)
(1.16369e-12 -1.23851e-12 -1.92097e-12)
(8.6624e-13 -1.62086e-12 -1.52944e-12)
(6.36454e-13 -1.38434e-12 -1.22135e-12)
(4.60325e-13 -1.18058e-12 -9.84531e-13)
(3.2411e-13 -1.01347e-12 -7.99164e-13)
(2.18616e-13 -8.74876e-13 -6.5364e-13)
(1.36804e-13 -7.5944e-13 -5.3797e-13)
(7.30059e-14 -6.56749e-13 -4.43444e-13)
(2.43581e-14 -3.22016e-13 -3.70027e-13)
(2.05844e-12 -9.45968e-13 -3.77301e-12)
(1.53784e-12 -2.21916e-12 -2.80333e-12)
(1.09597e-12 -2.43267e-12 -2.11239e-12)
(7.74244e-13 -1.99409e-12 -1.60146e-12)
(5.3996e-13 -1.63949e-12 -1.23114e-12)
(3.67696e-13 -1.36116e-12 -9.56229e-13)
(2.40477e-13 -1.13848e-12 -7.50571e-13)
(1.46146e-13 -9.60039e-13 -5.94289e-13)
(7.59163e-14 -8.08342e-13 -4.72536e-13)
(2.47945e-14 -3.8981e-13 -3.81642e-13)
(3.06299e-12 -1.86698e-12 -6.0178e-12)
(2.0729e-12 -3.75874e-12 -4.18136e-12)
(1.40649e-12 -3.61024e-12 -2.96564e-12)
(9.51005e-13 -2.8308e-12 -2.12556e-12)
(6.37178e-13 -2.23754e-12 -1.55306e-12)
(4.18302e-13 -1.79167e-12 -1.15141e-12)
(2.64338e-13 -1.45037e-12 -8.65492e-13)
(1.55443e-13 -1.18678e-12 -6.58082e-13)
(7.81203e-14 -9.71839e-13 -5.0538e-13)
(2.41536e-14 -4.61072e-13 -3.93637e-13)
(2.99803e-10 -3.82994e-12 -1.16488e-11)
(-1.21725e-11 -6.5972e-12 -7.79497e-12)
(-1.02475e-11 -5.39129e-12 -5.37788e-12)
(-7.47685e-12 -4.0261e-12 -3.81796e-12)
(-5.58055e-12 -3.05122e-12 -2.80012e-12)
(-4.24591e-12 -2.35374e-12 -2.11471e-12)
(-3.28837e-12 -1.8426e-12 -1.64171e-12)
(-2.58833e-12 -1.46304e-12 -1.30782e-12)
(-2.0672e-12 -1.16699e-12 -1.06526e-12)
(-1.66286e-12 -5.52814e-13 -8.93308e-13)
(3.44252e-07 -1.09617e-09 -6.05991e-09)
(6.16348e-10 -9.91056e-10 -4.70324e-09)
(-4.6958e-10 -1.27678e-10 -3.54755e-09)
(-3.8305e-10 -9.51112e-11 -2.72019e-09)
(-3.11619e-10 -7.51334e-11 -2.11956e-09)
(-2.56479e-10 -6.00361e-11 -1.67512e-09)
(-2.13102e-10 -4.85012e-11 -1.34088e-09)
(-1.78719e-10 -3.95779e-11 -1.08581e-09)
(-1.52171e-10 -3.25678e-11 -8.88693e-10)
(-1.6893e-10 -2.78745e-11 -7.43614e-10)
(2.26819e-13 3.701e-13 -1.68397e-14)
(2.14222e-13 3.46632e-13 -1.60002e-14)
(1.8784e-13 -4.90172e-14 -1.37451e-14)
(1.62603e-13 -5.21033e-14 -1.27279e-14)
(1.38565e-13 -5.14156e-14 -1.11716e-14)
(1.15528e-13 -5.07666e-14 -1.01143e-14)
(9.34013e-14 -5.01012e-14 -9.07339e-15)
(7.22255e-14 -4.93494e-14 -7.88916e-15)
(5.20415e-14 -4.83002e-14 -7.44932e-15)
(3.30151e-14 -2.51779e-14 -7.51374e-15)
(4.98047e-13 3.36361e-13 -2.5559e-14)
(4.60027e-13 2.41278e-13 -2.29318e-14)
(3.9421e-13 -1.86483e-13 -2.07756e-14)
(3.32724e-13 -1.82983e-13 -1.79338e-14)
(2.75598e-13 -1.7608e-13 -1.54203e-14)
(2.22387e-13 -1.70031e-13 -1.39622e-14)
(1.72968e-13 -1.64101e-13 -1.19503e-14)
(1.26863e-13 -1.5792e-13 -1.06143e-14)
(8.37907e-14 -1.50926e-13 -9.57385e-15)
(4.44771e-14 -7.77152e-14 -8.83681e-15)
(6.155e-13 2.71258e-13 -4.09359e-14)
(5.47526e-13 7.36638e-14 -3.62054e-14)
(4.52551e-13 -3.80812e-13 -3.09929e-14)
(3.67371e-13 -3.60938e-13 -2.63193e-14)
(2.91826e-13 -3.38548e-13 -2.2827e-14)
(2.24681e-13 -3.17699e-13 -1.94725e-14)
(1.65075e-13 -2.9842e-13 -1.63244e-14)
(1.11992e-13 -2.8111e-13 -1.43934e-14)
(6.45753e-14 -2.62343e-13 -1.24843e-14)
(2.3094e-14 -1.32807e-13 -1.16987e-14)
(8.07542e-13 1.57878e-13 -6.69691e-14)
(6.91812e-13 -1.86897e-13 -5.81597e-14)
(5.54404e-13 -6.56331e-13 -4.8607e-14)
(4.36698e-13 -6.01804e-13 -4.02135e-14)
(3.37042e-13 -5.4768e-13 -3.34505e-14)
(2.52473e-13 -4.99935e-13 -2.8372e-14)
(1.80541e-13 -4.57296e-13 -2.36323e-14)
(1.19389e-13 -4.19333e-13 -1.98686e-14)
(6.73445e-14 -3.82109e-13 -1.74518e-14)
(2.37547e-14 -1.91396e-13 -1.52655e-14)
(1.07829e-12 -3.50024e-14 -1.14821e-13)
(8.85905e-13 -5.91014e-13 -9.49995e-14)
(6.86058e-13 -1.04619e-12 -7.65814e-14)
(5.2296e-13 -9.27314e-13 -6.12976e-14)
(3.91405e-13 -8.18304e-13 -4.98994e-14)
(2.84688e-13 -7.25031e-13 -4.0295e-14)
(1.98111e-13 -6.44662e-13 -3.31488e-14)
(1.27705e-13 -5.75585e-13 -2.8629e-14)
(7.01341e-14 -5.11107e-13 -2.49939e-14)
(2.44284e-14 -2.51857e-13 -2.10812e-14)
(1.46598e-12 -3.54818e-13 -1.99979e-13)
(1.15237e-12 -1.21588e-12 -1.56769e-13)
(8.58231e-13 -1.60291e-12 -1.22021e-13)
(6.3107e-13 -1.36952e-12 -9.44508e-14)
(4.56856e-13 -1.16812e-12 -7.43225e-14)
(3.22103e-13 -1.00301e-12 -5.94368e-14)
(2.17728e-13 -8.65778e-13 -4.79315e-14)
(1.3656e-13 -7.52315e-13 -3.95857e-14)
(7.3269e-14 -6.50715e-13 -3.21169e-14)
(2.49988e-14 -3.15711e-13 -2.75066e-14)
(2.03714e-12 -8.7676e-13 -3.5203e-13)
(1.52316e-12 -2.18417e-12 -2.62122e-13)
(1.08633e-12 -2.40547e-12 -1.92792e-13)
(7.68102e-13 -1.97284e-12 -1.44846e-13)
(5.3631e-13 -1.62267e-12 -1.09739e-13)
(3.65825e-13 -1.34734e-12 -8.49563e-14)
(2.39677e-13 -1.12741e-12 -6.69459e-14)
(1.46069e-13 -9.51394e-13 -5.36663e-14)
(7.66469e-14 -8.01271e-13 -4.3518e-14)
(2.56044e-14 -3.83003e-13 -3.56029e-14)
(3.03656e-12 -1.74599e-12 -6.35429e-13)
(2.05156e-12 -3.70612e-12 -4.38326e-13)
(1.39314e-12 -3.57067e-12 -3.07177e-13)
(9.43326e-13 -2.80158e-12 -2.18741e-13)
(6.33338e-13 -2.21495e-12 -1.60248e-13)
(4.16958e-13 -1.77468e-12 -1.19787e-13)
(2.64495e-13 -1.43738e-12 -9.11052e-14)
(1.56645e-13 -1.17637e-12 -7.10325e-14)
(7.99868e-14 -9.64109e-13 -5.67951e-14)
(2.64171e-14 -4.53679e-13 -4.54351e-14)
(3.31644e-10 -3.57244e-12 -1.26014e-12)
(4.43073e-12 -6.48048e-12 -7.14968e-13)
(1.50149e-12 -5.29064e-12 -4.71833e-13)
(9.71409e-13 -3.94941e-12 -3.25691e-13)
(6.25766e-13 -2.99163e-12 -2.31803e-13)
(3.92562e-13 -2.30658e-12 -1.70648e-13)
(2.34862e-13 -1.80454e-12 -1.28817e-13)
(1.27692e-13 -1.43158e-12 -9.98772e-14)
(5.45997e-14 -1.14037e-12 -7.91329e-14)
(6.32135e-15 -5.28076e-13 -6.44009e-14)
(3.41583e-07 -9.38498e-10 -5.94034e-10)
(1.19926e-09 -8.73482e-10 -1.94059e-10)
(-1.28727e-11 -1.96779e-11 -1.25013e-10)
(-1.12118e-11 -9.81259e-12 -8.31091e-11)
(-8.00866e-12 -6.9518e-12 -5.67631e-11)
(-5.85237e-12 -5.04753e-12 -3.96472e-11)
(-4.35287e-12 -3.73431e-12 -2.82657e-11)
(-3.29204e-12 -2.81293e-12 -2.05299e-11)
(-2.54807e-12 -2.14181e-12 -1.51607e-11)
(-2.41354e-12 -1.22788e-12 -1.13052e-11)
(2.27082e-13 3.70004e-13 -1.11986e-14)
(2.1438e-13 3.46025e-13 -1.00892e-14)
(1.88095e-13 -4.9753e-14 -7.61542e-15)
(1.62784e-13 -5.26082e-14 -5.55722e-15)
(1.38675e-13 -5.17265e-14 -4.34692e-15)
(1.15513e-13 -5.11148e-14 -3.18223e-15)
(9.35308e-14 -5.07231e-14 -2.51081e-15)
(7.24091e-14 -4.96676e-14 -1.5162e-15)
(5.21355e-14 -4.83206e-14 -4.83722e-16)
(3.31e-14 -2.5407e-14 -4.06775e-16)
(4.9884e-13 3.36045e-13 -1.62205e-14)
(4.60717e-13 2.40733e-13 -1.44174e-14)
(3.94854e-13 -1.87028e-13 -1.11512e-14)
(3.33162e-13 -1.83811e-13 -9.42671e-15)
(2.76023e-13 -1.76904e-13 -6.46818e-15)
(2.22726e-13 -1.70338e-13 -4.79296e-15)
(1.73287e-13 -1.64242e-13 -4.09451e-15)
(1.2724e-13 -1.58352e-13 -3.51242e-15)
(8.41328e-14 -1.51232e-13 -2.47768e-15)
(4.48613e-14 -7.77323e-14 -1.35932e-15)
(6.16936e-13 2.70923e-13 -2.65075e-14)
(5.48863e-13 7.27866e-14 -2.35595e-14)
(4.53662e-13 -3.82103e-13 -1.91636e-14)
(3.68299e-13 -3.61985e-13 -1.5032e-14)
(2.92666e-13 -3.39036e-13 -1.22048e-14)
(2.25488e-13 -3.18331e-13 -9.69682e-15)
(1.65695e-13 -2.98995e-13 -7.82982e-15)
(1.12565e-13 -2.81382e-13 -6.51224e-15)
(6.51342e-14 -2.62365e-13 -5.93692e-15)
(2.36633e-14 -1.32954e-13 -5.30241e-15)
(8.10119e-13 1.57298e-13 -4.54777e-14)
(6.9418e-13 -1.88281e-13 -3.96856e-14)
(5.56335e-13 -6.57891e-13 -3.29191e-14)
(4.38363e-13 -6.03331e-13 -2.68301e-14)
(3.3847e-13 -5.48857e-13 -2.18841e-14)
(2.53627e-13 -5.00888e-13 -1.8053e-14)
(1.81573e-13 -4.58139e-13 -1.53381e-14)
(1.20373e-13 -4.2002e-13 -1.30148e-14)
(6.83065e-14 -3.82513e-13 -1.12637e-14)
(2.4494e-14 -1.91157e-13 -1.05774e-14)
(1.08281e-12 -3.58744e-14 -7.97215e-14)
(8.89747e-13 -5.93723e-13 -6.90664e-14)
(6.89233e-13 -1.04945e-12 -5.59735e-14)
(5.25567e-13 -9.29831e-13 -4.52955e-14)
(3.9359e-13 -8.20302e-13 -3.77333e-14)
(2.86559e-13 -7.26927e-13 -3.11728e-14)
(1.99698e-13 -6.45894e-13 -2.55883e-14)
(1.29041e-13 -5.76207e-13 -2.21187e-14)
(7.14108e-14 -5.11898e-13 -1.93928e-14)
(2.54803e-14 -2.52424e-13 -1.67848e-14)
(1.47353e-12 -3.57355e-13 -1.40969e-13)
(1.15867e-12 -1.22132e-12 -1.17434e-13)
(8.63192e-13 -1.60803e-12 -9.38129e-14)
(6.35147e-13 -1.37405e-12 -7.51132e-14)
(4.6009e-13 -1.17162e-12 -6.07991e-14)
(3.24827e-13 -1.00591e-12 -5.05357e-14)
(2.19945e-13 -8.68298e-13 -4.09387e-14)
(1.38416e-13 -7.5407e-13 -3.44016e-14)
(7.47697e-14 -6.52169e-13 -2.99028e-14)
(2.62935e-14 -3.16536e-13 -2.54704e-14)
(2.04982e-12 -8.81354e-13 -2.50319e-13)
(1.53338e-12 -2.19491e-12 -2.01274e-13)
(1.09397e-12 -2.41545e-12 -1.55387e-13)
(7.74005e-13 -1.98064e-12 -1.20661e-13)
(5.40959e-13 -1.62895e-12 -9.6183e-14)
(3.6941e-13 -1.35249e-12 -7.69367e-14)
(2.42598e-13 -1.1314e-12 -6.20452e-14)
(1.4848e-13 -9.54388e-13 -5.12986e-14)
(7.85324e-14 -8.03998e-13 -4.30986e-14)
(2.72415e-14 -3.84505e-13 -3.62044e-14)
(3.06423e-12 -1.75554e-12 -4.47829e-13)
(2.06744e-12 -3.72744e-12 -3.419e-13)
(1.40473e-12 -3.58871e-12 -2.52427e-13)
(9.52059e-13 -2.81535e-12 -1.90407e-13)
(6.3989e-13 -2.22579e-12 -1.46321e-13)
(4.2195e-13 -1.78307e-12 -1.14138e-13)
(2.68382e-13 -1.44388e-12 -9.05154e-14)
(1.59615e-13 -1.18162e-12 -7.26883e-14)
(8.22568e-14 -9.68179e-13 -5.93056e-14)
(2.82372e-14 -4.56076e-13 -4.98154e-14)
(3.48413e-10 -3.61455e-12 -9.57859e-13)
(5.10231e-12 -6.53976e-12 -5.78671e-13)
(1.82058e-12 -5.32303e-12 -4.07479e-13)
(1.17196e-12 -3.9732e-12 -2.95797e-13)
(7.54366e-13 -3.00964e-12 -2.19016e-13)
(4.77921e-13 -2.32012e-12 -1.65541e-13)
(2.92851e-13 -1.8148e-12 -1.2657e-13)
(1.67959e-13 -1.43952e-12 -9.95114e-14)
(8.29136e-14 -1.14659e-12 -7.87915e-14)
(2.61964e-14 -5.31333e-13 -6.37839e-14)
(3.62592e-07 -9.85992e-10 -4.7214e-10)
(1.34804e-09 -9.05969e-10 -1.0353e-11)
(4.40966e-12 -1.40437e-11 -3.83784e-12)
(8.65772e-13 -5.73018e-12 -2.28347e-12)
(5.82742e-13 -4.11487e-12 -1.40543e-12)
(3.97741e-13 -3.03544e-12 -9.0217e-13)
(2.69067e-13 -2.28351e-12 -5.98262e-13)
(1.7959e-13 -1.74991e-12 -4.08237e-13)
(1.16639e-13 -1.3519e-12 -2.84443e-13)
(6.96949e-14 -6.19478e-13 -2.01619e-13)
(2.27599e-13 3.69657e-13 -1.38279e-14)
(2.14848e-13 3.45232e-13 -1.16511e-14)
(1.88355e-13 -5.07875e-14 -9.64578e-15)
(1.63119e-13 -5.33747e-14 -6.7205e-15)
(1.38826e-13 -5.2335e-14 -5.14605e-15)
(1.157e-13 -5.14706e-14 -2.96877e-15)
(9.35844e-14 -5.07398e-14 -2.10588e-15)
(7.24898e-14 -5.01357e-14 -1.39098e-15)
(5.23219e-14 -4.87212e-14 -6.64965e-16)
(3.31543e-14 -2.52127e-14 -9.82124e-16)
(5.00153e-13 3.35649e-13 -2.01863e-14)
(4.61899e-13 2.39383e-13 -1.79944e-14)
(3.95752e-13 -1.88308e-13 -1.30489e-14)
(3.34006e-13 -1.84715e-13 -1.05771e-14)
(2.76665e-13 -1.77801e-13 -8.1199e-15)
(2.23266e-13 -1.70881e-13 -5.81696e-15)
(1.73697e-13 -1.6453e-13 -4.25488e-15)
(1.27572e-13 -1.58491e-13 -3.40922e-15)
(8.45977e-14 -1.51725e-13 -3.12918e-15)
(4.52201e-14 -7.81383e-14 -2.52393e-15)
(6.19326e-13 2.70109e-13 -3.23913e-14)
(5.50896e-13 7.10596e-14 -2.87509e-14)
(4.55473e-13 -3.83841e-13 -2.30744e-14)
(3.69733e-13 -3.63431e-13 -1.8794e-14)
(2.93935e-13 -3.40441e-13 -1.44529e-14)
(2.26523e-13 -3.19248e-13 -1.13425e-14)
(1.66671e-13 -2.99553e-13 -9.31362e-15)
(1.13374e-13 -2.81773e-13 -8.3207e-15)
(6.58855e-14 -2.62763e-13 -7.32821e-15)
(2.44982e-14 -1.33353e-13 -6.43926e-15)
(8.14228e-13 1.55572e-13 -5.63046e-14)
(6.97639e-13 -1.91162e-13 -4.8411e-14)
(5.59219e-13 -6.60749e-13 -3.97625e-14)
(4.40746e-13 -6.05659e-13 -3.23627e-14)
(3.4052e-13 -5.50781e-13 -2.62229e-14)
(2.55453e-13 -5.02255e-13 -2.1234e-14)
(1.83075e-13 -4.59131e-13 -1.82467e-14)
(1.21673e-13 -4.20867e-13 -1.60003e-14)
(6.93562e-14 -3.83051e-13 -1.43934e-14)
(2.55048e-14 -1.91535e-13 -1.2495e-14)
(1.08963e-12 -3.9254e-14 -9.83915e-14)
(8.95485e-13 -5.98819e-13 -8.36915e-14)
(6.93802e-13 -1.05417e-12 -6.82243e-14)
(5.293e-13 -9.33638e-13 -5.56901e-14)
(3.96672e-13 -8.23372e-13 -4.61833e-14)
(2.89212e-13 -7.29543e-13 -3.86551e-14)
(2.01761e-13 -6.48107e-13 -3.18523e-14)
(1.30822e-13 -5.78011e-13 -2.71475e-14)
(7.29063e-14 -5.1321e-13 -2.29812e-14)
(2.6696e-14 -2.53072e-13 -2.07135e-14)
(1.48499e-12 -3.63762e-13 -1.72114e-13)
(1.16793e-12 -1.23079e-12 -1.44014e-13)
(8.70415e-13 -1.6167e-12 -1.14286e-13)
(6.40686e-13 -1.38073e-12 -9.12999e-14)
(4.64596e-13 -1.17686e-12 -7.44705e-14)
(3.28383e-13 -1.01041e-12 -6.18176e-14)
(2.22876e-13 -8.71972e-13 -5.05558e-14)
(1.40789e-13 -7.56743e-13 -4.22399e-14)
(7.67976e-14 -6.54486e-13 -3.62501e-14)
(2.79558e-14 -3.17808e-13 -3.15715e-14)
(2.06912e-12 -8.94677e-13 -3.0489e-13)
(1.54817e-12 -2.21259e-12 -2.44124e-13)
(1.10506e-12 -2.43088e-12 -1.89528e-13)
(7.82395e-13 -1.99254e-12 -1.48027e-13)
(5.47422e-13 -1.63814e-12 -1.18215e-13)
(3.7442e-13 -1.36001e-12 -9.49037e-14)
(2.46616e-13 -1.13742e-12 -7.71742e-14)
(1.51585e-13 -9.59099e-13 -6.25381e-14)
(8.10099e-14 -8.07727e-13 -5.27036e-14)
(2.9308e-14 -3.8664e-13 -4.46797e-14)
(3.10375e-12 -1.78211e-12 -5.42779e-13)
(2.09132e-12 -3.7614e-12 -4.15711e-13)
(1.42162e-12 -3.61637e-12 -3.09385e-13)
(9.64361e-13 -2.83601e-12 -2.34162e-13)
(6.48909e-13 -2.24141e-12 -1.80631e-13)
(4.2874e-13 -1.79531e-12 -1.41757e-13)
(2.73447e-13 -1.45365e-12 -1.12771e-13)
(1.63555e-13 -1.18918e-12 -8.93331e-14)
(8.52657e-14 -9.73984e-13 -7.26389e-14)
(3.06104e-14 -4.59276e-13 -6.07853e-14)
(3.70403e-10 -3.67296e-12 -9.66068e-13)
(5.33503e-12 -6.62255e-12 -7.05249e-13)
(1.85462e-12 -5.37288e-12 -5.02529e-13)
(1.19368e-12 -4.00874e-12 -3.64622e-13)
(7.69138e-13 -3.03574e-12 -2.71317e-13)
(4.88243e-13 -2.33998e-12 -2.05265e-13)
(3.00284e-13 -1.82982e-12 -1.57607e-13)
(1.73375e-13 -1.45088e-12 -1.22764e-13)
(8.68702e-14 -1.15552e-12 -9.75482e-14)
(2.91507e-14 -5.36362e-13 -7.90274e-14)
(3.95835e-07 -1.04129e-09 -3.64382e-10)
(1.46459e-09 -9.62456e-10 -2.04821e-12)
(5.44831e-12 -1.43898e-11 -8.80767e-13)
(1.17375e-12 -5.67002e-12 -5.99341e-13)
(7.76739e-13 -4.08333e-12 -4.20107e-13)
(5.21273e-13 -3.01991e-12 -3.03389e-13)
(3.50593e-13 -2.27668e-12 -2.24503e-13)
(2.3456e-13 -1.74769e-12 -1.68329e-13)
(1.54698e-13 -1.35193e-12 -1.28976e-13)
(1.00039e-13 -6.17925e-13 -1.01387e-13)
(2.2827e-13 3.69113e-13 -1.60824e-14)
(2.15508e-13 3.44361e-13 -1.40606e-14)
(1.88731e-13 -5.17044e-14 -1.07772e-14)
(1.63459e-13 -5.43968e-14 -8.44558e-15)
(1.39178e-13 -5.32161e-14 -6.25442e-15)
(1.1597e-13 -5.23242e-14 -4.23105e-15)
(9.38616e-14 -5.13498e-14 -2.59943e-15)
(7.27344e-14 -5.02497e-14 -2.92437e-15)
(5.25702e-14 -4.85341e-14 -8.02734e-15)
(3.33974e-14 -2.53459e-14 -2.30763e-14)
(5.01754e-13 3.35033e-13 -2.41167e-14)
(4.63347e-13 2.37954e-13 -2.04182e-14)
(3.96928e-13 -1.89908e-13 -1.62885e-14)
(3.35e-13 -1.85747e-13 -1.27754e-14)
(2.77467e-13 -1.78793e-13 -1.02234e-14)
(2.24013e-13 -1.71877e-13 -7.48364e-15)
(1.74391e-13 -1.65215e-13 -6.01773e-15)
(1.283e-13 -1.58826e-13 -5.10264e-15)
(8.51747e-14 -1.51663e-13 -6.55819e-15)
(4.57397e-14 -7.84616e-14 -1.78083e-14)
(6.22214e-13 2.69121e-13 -3.86364e-14)
(5.53294e-13 6.91922e-14 -3.28761e-14)
(4.57562e-13 -3.859e-13 -2.64292e-14)
(3.71514e-13 -3.65324e-13 -2.15109e-14)
(2.95348e-13 -3.41945e-13 -1.71871e-14)
(2.27803e-13 -3.20402e-13 -1.43571e-14)
(1.67803e-13 -3.00263e-13 -1.18168e-14)
(1.14483e-13 -2.82276e-13 -1.08835e-14)
(6.68723e-14 -2.63284e-13 -1.17632e-14)
(2.52174e-14 -1.33936e-13 -1.72933e-14)
(8.19215e-13 1.53434e-13 -6.5778e-14)
(7.01803e-13 -1.94524e-13 -5.56674e-14)
(5.62676e-13 -6.63935e-13 -4.56326e-14)
(4.43614e-13 -6.08517e-13 -3.73295e-14)
(3.4305e-13 -5.53225e-13 -3.09936e-14)
(2.57632e-13 -5.0415e-13 -2.63922e-14)
(1.84928e-13 -4.60401e-13 -2.27694e-14)
(1.23209e-13 -4.21762e-13 -1.98878e-14)
(7.06999e-14 -3.84192e-13 -1.89402e-14)
(2.66958e-14 -1.92417e-13 -2.10711e-14)
(1.09793e-12 -4.329e-14 -1.15305e-13)
(9.02386e-13 -6.04809e-13 -9.61791e-14)
(6.9931e-13 -1.05979e-12 -7.79845e-14)
(5.33728e-13 -9.38223e-13 -6.40298e-14)
(4.00409e-13 -8.27017e-13 -5.3518e-14)
(2.92418e-13 -7.32781e-13 -4.56678e-14)
(2.04465e-13 -6.508e-13 -3.923e-14)
(1.32971e-13 -5.80158e-13 -3.39356e-14)
(7.47241e-14 -5.14919e-13 -2.97742e-14)
(2.84124e-14 -2.54324e-13 -3.01418e-14)
(1.49897e-12 -3.71729e-13 -2.03452e-13)
(1.17892e-12 -1.24189e-12 -1.65305e-13)
(8.78964e-13 -1.62692e-12 -1.31704e-13)
(6.47539e-13 -1.38894e-12 -1.06683e-13)
(4.70022e-13 -1.18316e-12 -8.73212e-14)
(3.32809e-13 -1.01569e-12 -7.37415e-14)
(2.26526e-13 -8.76591e-13 -6.13905e-14)
(1.43666e-13 -7.60469e-13 -5.20761e-14)
(7.92526e-14 -6.57231e-13 -4.54732e-14)
(2.99661e-14 -3.19741e-13 -4.18747e-14)
(2.09262e-12 -9.10862e-13 -3.58706e-13)
(1.56582e-12 -2.23375e-12 -2.80368e-13)
(1.11829e-12 -2.44872e-12 -2.18424e-13)
(7.92562e-13 -2.00662e-12 -1.72698e-13)
(5.55229e-13 -1.64925e-12 -1.38016e-13)
(3.80535e-13 -1.369e-12 -1.12988e-13)
(2.51495e-13 -1.14498e-12 -9.21957e-14)
(1.55393e-13 -9.65149e-13 -7.64201e-14)
(8.39948e-14 -8.12367e-13 -6.48442e-14)
(3.17076e-14 -3.89643e-13 -5.71274e-14)
(3.1356e-12 -1.81442e-12 -6.36958e-13)
(2.11949e-12 -3.80147e-12 -4.76162e-13)
(1.44205e-12 -3.64876e-12 -3.57215e-13)
(9.79188e-13 -2.86054e-12 -2.72393e-13)
(6.59918e-13 -2.26013e-12 -2.11205e-13)
(4.37002e-13 -1.80984e-12 -1.67816e-13)
(2.79761e-13 -1.46568e-12 -1.35178e-13)
(1.68372e-13 -1.19899e-12 -1.07911e-13)
(8.8953e-14 -9.81372e-13 -8.89016e-14)
(3.34775e-14 -4.63637e-13 -7.52838e-14)
(3.78271e-10 -3.60955e-12 -2.11192e-13)
(5.2612e-12 -6.67655e-12 -7.96806e-13)
(1.88454e-12 -5.43055e-12 -5.8314e-13)
(1.21545e-12 -4.05109e-12 -4.25196e-13)
(7.84576e-13 -3.06714e-12 -3.18998e-13)
(4.99364e-13 -2.36382e-12 -2.43965e-13)
(3.08362e-13 -1.84866e-12 -1.90626e-13)
(1.79294e-13 -1.46525e-12 -1.46934e-13)
(9.12755e-14 -1.16663e-12 -1.18737e-13)
(3.23812e-14 -5.4292e-13 -9.75967e-14)
(4.20425e-07 -8.68936e-10 1.17323e-09)
(1.46647e-09 -9.80877e-10 1.43962e-11)
(4.82497e-12 -1.41671e-11 -8.57043e-13)
(1.19776e-12 -5.73457e-12 -6.55008e-13)
(7.94245e-13 -4.13278e-12 -4.71266e-13)
(5.33433e-13 -3.05637e-12 -3.46978e-13)
(3.59272e-13 -2.30452e-12 -2.61277e-13)
(2.40974e-13 -1.7687e-12 -1.96416e-13)
(1.59257e-13 -1.36785e-12 -1.52872e-13)
(1.03512e-13 -6.26856e-13 -1.22186e-13)
(2.28846e-13 3.68851e-13 -1.46552e-14)
(2.15508e-13 3.43203e-13 -6.15526e-15)
(1.88975e-13 -5.29504e-14 -5.04047e-15)
(1.63731e-13 -5.51426e-14 -5.98384e-15)
(1.39596e-13 -5.4037e-14 -1.0417e-14)
(1.16632e-13 -5.30411e-14 -1.92427e-14)
(9.47982e-14 -5.15156e-14 -3.47083e-14)
(7.46429e-14 -4.89186e-14 -1.20269e-13)
(5.64008e-14 -4.4399e-14 -4.68498e-13)
(3.66519e-14 -3.8075e-14 -1.4053e-12)
(5.03204e-13 3.34236e-13 -1.97752e-14)
(4.63869e-13 2.36764e-13 -5.74534e-15)
(3.9764e-13 -1.9101e-13 -6.69121e-15)
(3.3572e-13 -1.86916e-13 -7.20149e-15)
(2.78342e-13 -1.79889e-13 -1.13075e-14)
(2.25124e-13 -1.72822e-13 -1.98006e-14)
(1.75657e-13 -1.6611e-13 -3.21923e-14)
(1.2997e-13 -1.60149e-13 -8.23733e-14)
(8.76896e-14 -1.53249e-13 -2.78948e-13)
(4.71239e-14 -1.00654e-13 -9.15855e-13)
(6.24725e-13 2.67937e-13 -3.24965e-14)
(5.54691e-13 6.74264e-14 -1.18705e-14)
(4.58864e-13 -3.87402e-13 -1.06352e-14)
(3.72838e-13 -3.66504e-13 -1.1837e-14)
(2.96855e-13 -3.43076e-13 -1.49573e-14)
(2.29553e-13 -3.21719e-13 -2.36248e-14)
(1.69698e-13 -3.01951e-13 -3.72634e-14)
(1.16445e-13 -2.84059e-13 -6.61827e-14)
(6.93877e-14 -2.67302e-13 -1.86172e-13)
(2.68084e-14 -1.58099e-13 -6.00019e-13)
(8.23647e-13 1.51846e-13 -5.63617e-14)
(7.04406e-13 -1.96555e-13 -2.48691e-14)
(5.6509e-13 -6.6599e-13 -2.20173e-14)
(4.46005e-13 -6.10176e-13 -2.25544e-14)
(3.45451e-13 -5.546e-13 -2.58759e-14)
(2.60114e-13 -5.05794e-13 -3.24138e-14)
(1.87552e-13 -4.62964e-13 -4.49085e-14)
(1.25757e-13 -4.24884e-13 -6.33454e-14)
(7.31907e-14 -3.89492e-13 -1.39876e-13)
(2.86941e-14 -2.1537e-13 -4.16314e-13)
(1.10563e-12 -4.61614e-14 -9.96468e-14)
(9.06954e-13 -6.08228e-13 -5.14513e-14)
(7.0335e-13 -1.06279e-12 -4.37211e-14)
(5.37655e-13 -9.40781e-13 -4.2556e-14)
(4.03993e-13 -8.29333e-13 -4.27637e-14)
(2.95835e-13 -7.34968e-13 -4.55063e-14)
(2.07704e-13 -6.54056e-13 -5.73757e-14)
(1.36111e-13 -5.84499e-13 -7.04309e-14)
(7.7729e-14 -5.21533e-13 -1.21516e-13)
(3.0733e-14 -2.75255e-13 -3.08328e-13)
(1.51165e-12 -3.77237e-13 -1.77344e-13)
(1.18652e-12 -1.24813e-12 -9.97081e-14)
(8.85594e-13 -1.6319e-12 -8.34041e-14)
(6.53462e-13 -1.39347e-12 -7.69984e-14)
(4.75286e-13 -1.18731e-12 -7.18817e-14)
(3.37524e-13 -1.01986e-12 -7.05224e-14)
(2.30687e-13 -8.81714e-13 -7.67975e-14)
(1.47534e-13 -7.66489e-13 -8.97398e-14)
(8.27019e-14 -6.65384e-13 -1.19574e-13)
(3.2697e-14 -3.39432e-13 -2.46226e-13)
(2.1135e-12 -9.21265e-13 -3.15054e-13)
(1.57823e-12 -2.24525e-12 -1.83682e-13)
(1.12859e-12 -2.45796e-12 -1.50077e-13)
(8.01214e-13 -2.01494e-12 -1.30463e-13)
(5.62603e-13 -1.65653e-12 -1.15362e-13)
(3.86833e-13 -1.37607e-12 -1.06244e-13)
(2.5709e-13 -1.15251e-12 -1.04004e-13)
(1.60131e-13 -9.73624e-13 -1.11419e-13)
(8.80233e-14 -8.22495e-13 -1.29286e-13)
(3.48672e-14 -4.08138e-13 -2.13288e-13)
(3.09469e-12 -1.83357e-12 -5.56523e-13)
(2.13868e-12 -3.82372e-12 -3.28794e-13)
(1.45812e-12 -3.66605e-12 -2.58373e-13)
(9.92029e-13 -2.87563e-12 -2.14286e-13)
(6.70422e-13 -2.27287e-12 -1.80345e-13)
(4.45518e-13 -1.82093e-12 -1.56032e-13)
(2.86978e-13 -1.47671e-12 -1.40648e-13)
(1.74059e-13 -1.21119e-12 -1.41234e-13)
(9.37288e-14 -9.94623e-13 -1.48939e-13)
(3.71252e-14 -4.82129e-13 -1.98705e-13)
(2.73768e-10 -3.18292e-12 1.8198e-12)
(3.99594e-12 -6.51778e-12 -5.35881e-13)
(1.90207e-12 -5.45941e-12 -4.32786e-13)
(1.23395e-12 -4.07784e-12 -3.41213e-13)
(7.99064e-13 -3.08868e-12 -2.7475e-13)
(5.10596e-13 -2.38195e-12 -2.26341e-13)
(3.17253e-13 -1.86588e-12 -1.93577e-13)
(1.86244e-13 -1.48267e-12 -1.78993e-13)
(9.67142e-14 -1.18323e-12 -1.74431e-13)
(3.65576e-14 -5.61917e-13 -1.98422e-13)
(3.46816e-07 1.6015e-10 6.10331e-09)
(7.03586e-10 -7.04216e-10 4.74421e-11)
(1.22666e-12 -1.08465e-11 -5.29452e-13)
(1.2001e-12 -5.76509e-12 -5.45885e-13)
(8.05082e-13 -4.16825e-12 -4.08221e-13)
(5.42072e-13 -3.08524e-12 -3.21002e-13)
(3.66453e-13 -2.32987e-12 -2.61024e-13)
(2.47274e-13 -1.79241e-12 -2.25007e-13)
(1.64135e-13 -1.38959e-12 -2.06265e-13)
(1.07441e-13 -6.47543e-13 -2.0903e-13)
(2.18227e-13 3.67258e-13 1.49665e-13)
(1.97915e-13 3.43292e-13 2.87217e-13)
(1.78375e-13 -4.99294e-14 1.95694e-13)
(1.60826e-13 -5.17063e-14 5.54717e-14)
(1.46081e-13 -4.95716e-14 -1.84364e-13)
(1.35095e-13 -4.81893e-14 -6.18343e-13)
(1.27034e-13 -2.36257e-14 -1.39397e-12)
(1.62726e-13 7.28966e-14 -5.5573e-12)
(2.41712e-13 2.75958e-13 -2.10925e-11)
(1.44111e-13 -5.73947e-13 -5.39649e-11)
(4.85996e-13 3.37193e-13 2.54563e-13)
(4.37038e-13 2.45532e-13 4.44568e-13)
(3.79884e-13 -1.80084e-13 3.30453e-13)
(3.27666e-13 -1.79075e-13 1.70572e-13)
(2.80332e-13 -1.75512e-13 -6.86571e-14)
(2.39503e-13 -1.76662e-13 -4.88375e-13)
(2.00457e-13 -1.69339e-13 -1.0758e-12)
(1.80044e-13 -1.54932e-13 -3.49547e-12)
(1.69937e-13 -1.52684e-13 -1.24097e-11)
(4.36879e-14 -1.07806e-12 -3.54061e-11)
(5.99999e-13 2.80072e-13 3.74987e-13)
(5.17141e-13 9.11134e-14 6.32146e-13)
(4.32986e-13 -3.62794e-13 4.92191e-13)
(3.58796e-13 -3.48876e-13 3.11641e-13)
(2.94135e-13 -3.33664e-13 6.91439e-14)
(2.39129e-13 -3.25698e-13 -3.22993e-13)
(1.91832e-13 -3.25048e-13 -9.35161e-13)
(1.52426e-13 -3.3008e-13 -2.38742e-12)
(1.27483e-13 -4.05718e-13 -7.93513e-12)
(2.8371e-14 -1.20677e-12 -2.32054e-11)
(7.87882e-13 1.80333e-13 5.41944e-13)
(6.52527e-13 -1.47777e-13 8.78073e-13)
(5.28895e-13 -6.18451e-13 6.96477e-13)
(4.24753e-13 -5.7494e-13 4.78433e-13)
(3.37738e-13 -5.345e-13 2.10883e-13)
(2.64809e-13 -5.05363e-13 -1.59881e-13)
(2.06167e-13 -4.96442e-13 -7.87496e-13)
(1.53421e-13 -4.9268e-13 -1.74531e-12)
(1.17306e-13 -5.86595e-13 -5.48412e-12)
(3.60315e-14 -1.20003e-12 -1.57119e-11)
(1.05324e-12 1.27441e-14 7.86997e-13)
(8.35888e-13 -5.18329e-13 1.20385e-12)
(6.54014e-13 -9.7997e-13 9.54383e-13)
(5.07595e-13 -8.78792e-13 6.80658e-13)
(3.90192e-13 -7.9117e-13 3.79466e-13)
(2.95501e-13 -7.21876e-13 2.27878e-14)
(2.21743e-13 -6.84334e-13 -5.72869e-13)
(1.59676e-13 -6.62678e-13 -1.36948e-12)
(1.13082e-13 -7.44256e-13 -4.04713e-12)
(4.01221e-14 -1.155e-12 -1.09871e-11)
(1.43456e-12 -2.64786e-13 1.14832e-12)
(1.08899e-12 -1.09278e-12 1.64457e-12)
(8.18868e-13 -1.49503e-12 1.28804e-12)
(6.12458e-13 -1.29136e-12 9.26865e-13)
(4.54656e-13 -1.12092e-12 5.68239e-13)
(3.33771e-13 -9.91046e-13 1.57701e-13)
(2.40499e-13 -9.00262e-13 -3.76815e-13)
(1.70203e-13 -8.62525e-13 -1.25899e-12)
(1.1223e-13 -8.99417e-13 -3.1372e-12)
(4.25352e-14 -1.1094e-12 -7.91123e-12)
(1.99873e-12 -7.16477e-13 1.68191e-12)
(1.44307e-12 -1.98611e-12 2.26245e-12)
(1.0386e-12 -2.23984e-12 1.72526e-12)
(7.46463e-13 -1.85484e-12 1.23165e-12)
(5.3383e-13 -1.54961e-12 7.88321e-13)
(3.77748e-13 -1.32034e-12 3.3721e-13)
(2.62291e-13 -1.15324e-12 -1.83798e-13)
(1.78504e-13 -1.06284e-12 -1.00404e-12)
(1.13494e-13 -1.05656e-12 -2.51464e-12)
(4.43575e-14 -1.07694e-12 -5.84416e-12)
(2.74302e-12 -1.46251e-12 2.5259e-12)
(1.94637e-12 -3.39898e-12 3.13345e-12)
(1.33623e-12 -3.32605e-12 2.30635e-12)
(9.19443e-13 -2.632e-12 1.61334e-12)
(6.31791e-13 -2.11028e-12 1.04469e-12)
(4.30801e-13 -1.72985e-12 5.25148e-13)
(2.88553e-13 -1.45312e-12 -8.19292e-15)
(1.88854e-13 -1.28227e-12 -7.59247e-13)
(1.15642e-13 -1.22069e-12 -2.04865e-12)
(4.60976e-14 -1.06125e-12 -4.413e-12)
(-1.23783e-10 -2.03122e-12 6.55716e-12)
(6.78155e-13 -5.37067e-12 4.42234e-12)
(1.72502e-12 -4.92782e-12 3.09828e-12)
(1.13943e-12 -3.71404e-12 2.10139e-12)
(7.48186e-13 -2.84867e-12 1.35133e-12)
(4.89651e-13 -2.24178e-12 7.29024e-13)
(3.16277e-13 -1.81514e-12 1.30233e-13)
(1.97462e-13 -1.53084e-12 -5.43038e-13)
(1.15284e-13 -1.3909e-12 -1.65497e-12)
(4.5233e-14 -1.06172e-12 -3.39635e-12)
(-6.80277e-08 1.80927e-09 9.13011e-09)
(-1.86533e-09 3.30114e-10 5.05974e-11)
(-5.25715e-12 -2.15139e-12 4.22876e-12)
(1.0545e-12 -5.20164e-12 2.71707e-12)
(7.32713e-13 -3.82774e-12 1.71526e-12)
(5.08955e-13 -2.88142e-12 9.51762e-13)
(3.58295e-13 -2.23942e-12 3.03345e-13)
(2.52956e-13 -1.81062e-12 -3.40706e-13)
(1.7955e-13 -1.56842e-12 -1.31205e-12)
(1.18018e-13 -1.07783e-12 -2.66114e-12)
(9.30965e-15 3.42977e-13 2.82183e-12)
(2.35762e-14 3.51133e-13 2.64652e-12)
(7.34241e-14 5.45582e-14 1.7034e-12)
(1.44518e-13 9.49996e-14 5.79149e-14)
(2.49906e-13 1.82161e-13 -3.05096e-12)
(4.42782e-13 3.26679e-13 -1.01127e-11)
(8.96932e-13 1.59719e-12 -3.18558e-11)
(2.31412e-12 6.47636e-12 -1.33764e-10)
(3.70196e-12 1.49891e-11 -4.3467e-10)
(-5.00916e-13 -6.2537e-12 -6.10944e-10)
(1.84639e-13 3.81262e-13 3.98294e-12)
(1.71434e-13 3.21042e-13 3.84552e-12)
(1.95871e-13 -4.75946e-15 2.84879e-12)
(2.37336e-13 1.89668e-15 1.26718e-12)
(3.03235e-13 2.94607e-14 -1.49803e-12)
(4.25781e-13 5.30082e-15 -7.22101e-12)
(7.07846e-13 3.42198e-13 -2.26892e-11)
(1.21734e-12 1.86783e-12 -8.26618e-11)
(1.02742e-12 4.86006e-12 -2.59385e-10)
(-3.20575e-12 -1.27394e-11 -3.92134e-10)
(1.96843e-13 4.43819e-13 5.41745e-12)
(1.62621e-13 2.82759e-13 5.27312e-12)
(1.75587e-13 -6.94045e-14 4.17093e-12)
(2.04713e-13 -8.58485e-14 2.58046e-12)
(2.5645e-13 -1.05229e-13 1.8902e-14)
(3.40493e-13 -1.70272e-13 -4.6968e-12)
(5.51516e-13 -2.94478e-13 -1.6063e-11)
(8.8818e-13 -2.31944e-13 -5.45195e-11)
(8.88569e-13 -1.24825e-13 -1.64388e-10)
(-1.99144e-12 -1.43353e-11 -2.66117e-10)
(2.47326e-13 5.42462e-13 7.29602e-12)
(1.84796e-13 2.32458e-13 7.05754e-12)
(1.8339e-13 -1.38126e-13 5.74537e-12)
(2.00967e-13 -1.64636e-13 4.02646e-12)
(2.38617e-13 -2.17258e-13 1.5537e-12)
(2.98354e-13 -3.1172e-13 -2.58884e-12)
(4.32187e-13 -6.35961e-13 -1.12889e-11)
(6.87721e-13 -1.19543e-12 -3.76133e-11)
(7.29637e-13 -2.41388e-12 -1.09251e-10)
(-1.13812e-12 -1.39773e-11 -1.86461e-10)
(3.28409e-13 6.92862e-13 9.81248e-12)
(2.23654e-13 1.56124e-13 9.33092e-12)
(2.0126e-13 -2.22424e-13 7.65645e-12)
(2.03272e-13 -2.4773e-13 5.68931e-12)
(2.26284e-13 -3.22269e-13 3.14792e-12)
(2.74869e-13 -4.49922e-13 -6.94579e-13)
(3.52607e-13 -8.17702e-13 -7.75883e-12)
(5.66765e-13 -1.59926e-12 -2.65616e-11)
(5.82047e-13 -3.41384e-12 -7.53143e-11)
(-6.55249e-13 -1.28825e-11 -1.33899e-10)
(4.5954e-13 9.14146e-13 1.32467e-11)
(2.88002e-13 2.5587e-14 1.22786e-11)
(2.33203e-13 -3.38082e-13 1.0017e-11)
(2.14152e-13 -3.42862e-13 7.62506e-12)
(2.2202e-13 -4.05231e-13 4.84826e-12)
(2.55082e-13 -5.58774e-13 1.16077e-12)
(3.05049e-13 -8.89236e-13 -4.93878e-12)
(4.47424e-13 -1.73608e-12 -1.87382e-11)
(4.60544e-13 -3.83239e-12 -5.34006e-11)
(-3.80367e-13 -1.15757e-11 -9.81762e-11)
(6.72713e-13 1.23695e-12 1.80333e-11)
(3.9215e-13 -2.0584e-13 1.61855e-11)
(2.85661e-13 -5.1201e-13 1.29871e-11)
(2.3614e-13 -4.66228e-13 9.92286e-12)
(2.23927e-13 -5.06172e-13 6.74221e-12)
(2.36932e-13 -6.60913e-13 2.96374e-12)
(2.71959e-13 -9.86456e-13 -2.54967e-12)
(3.39122e-13 -1.79241e-12 -1.33615e-11)
(3.6522e-13 -3.86926e-12 -3.86963e-11)
(-2.20396e-13 -1.02801e-11 -7.32769e-11)
(8.49607e-13 1.71397e-12 2.48961e-11)
(5.58842e-13 -6.22473e-13 2.1461e-11)
(3.69065e-13 -7.90656e-13 1.6782e-11)
(2.73232e-13 -6.41406e-13 1.2699e-11)
(2.34457e-13 -6.25259e-13 8.8727e-12)
(2.31161e-13 -7.58319e-13 4.79505e-12)
(2.53158e-13 -1.07195e-12 -4.08917e-13)
(2.82826e-13 -1.81067e-12 -9.32894e-12)
(2.88818e-13 -3.75339e-12 -2.84541e-11)
(-1.2476e-13 -9.07695e-12 -5.55064e-11)
(-4.78716e-10 2.9496e-12 3.539e-11)
(-2.0984e-12 -9.32335e-13 2.87091e-11)
(4.85756e-13 -1.2468e-12 2.1725e-11)
(3.26023e-13 -9.05421e-13 1.61074e-11)
(2.5042e-13 -7.82445e-13 1.13193e-11)
(2.26254e-13 -8.50981e-13 6.74324e-12)
(2.31369e-13 -1.14527e-12 1.58252e-12)
(2.41332e-13 -1.8301e-12 -6.14744e-12)
(2.26934e-13 -3.58261e-12 -2.11066e-11)
(-6.81929e-14 -7.98692e-12 -4.25468e-11)
(-9.16697e-07 1.78846e-09 2.96891e-09)
(-2.61725e-09 1.23863e-09 -1.45608e-12)
(-1.4175e-12 5.60047e-12 2.84331e-11)
(5.61441e-14 -1.29599e-12 2.03589e-11)
(1.30319e-13 -1.00566e-12 1.41564e-11)
(1.83485e-13 -9.78041e-13 8.82675e-12)
(2.30776e-13 -1.2228e-12 3.46445e-12)
(2.67765e-13 -1.83623e-12 -3.53388e-12)
(2.86312e-13 -3.3898e-12 -1.56568e-11)
(1.79133e-13 -7.01515e-12 -3.29028e-11)
(-2.43093e-13 5.09442e-13 3.72399e-12)
(-1.92995e-13 9.90662e-13 3.23385e-12)
(-1.04573e-13 1.141e-12 1.91348e-12)
(2.91084e-14 1.90785e-12 -1.13467e-12)
(2.64291e-13 3.79036e-12 -8.82477e-12)
(7.85743e-13 9.97068e-12 -3.30647e-11)
(2.5352e-12 3.9465e-11 -1.49396e-10)
(4.26092e-12 1.19548e-10 -6.0043e-10)
(-5.58503e-12 1.39203e-10 -1.15759e-09)
(-1.6342e-11 6.26541e-11 -1.34027e-09)
(-3.18491e-13 5.89477e-13 4.94096e-12)
(-2.74011e-13 1.0314e-12 4.52173e-12)
(-1.96561e-13 1.10679e-12 3.35639e-12)
(-9.99213e-14 1.67069e-12 8.16459e-13)
(3.53595e-14 2.9856e-12 -5.19487e-12)
(2.16991e-13 6.89169e-12 -2.23342e-11)
(4.64459e-13 2.26933e-11 -9.14553e-11)
(-2.87703e-12 6.51306e-11 -3.49542e-10)
(-1.98236e-11 7.80299e-11 -7.15549e-10)
(-2.88643e-11 2.94153e-11 -8.10157e-10)
(-4.28634e-13 7.27019e-13 6.41145e-12)
(-3.73853e-13 1.12084e-12 5.98577e-12)
(-2.90119e-13 1.13241e-12 4.87399e-12)
(-1.90471e-13 1.54803e-12 2.66239e-12)
(-7.26136e-14 2.43597e-12 -2.10514e-12)
(6.87382e-14 4.91315e-12 -1.46485e-11)
(1.90398e-13 1.40246e-11 -5.89073e-11)
(-1.36591e-12 3.75961e-11 -2.15917e-10)
(-1.06909e-11 4.56818e-11 -4.64284e-10)
(-1.76078e-11 1.32349e-11 -5.18324e-10)
(-5.53968e-13 9.51289e-13 8.2867e-12)
(-4.76762e-13 1.2916e-12 7.73816e-12)
(-3.73907e-13 1.2481e-12 6.54664e-12)
(-2.63718e-13 1.5338e-12 4.50783e-12)
(-1.47183e-13 2.13954e-12 5.17157e-13)
(-8.31487e-15 3.70163e-12 -8.97299e-12)
(8.9526e-14 9.18332e-12 -3.90492e-11)
(-7.43002e-13 2.272e-11 -1.39549e-10)
(-6.17394e-12 2.7298e-11 -3.10739e-10)
(-1.15515e-11 4.75479e-12 -3.43682e-10)
(-7.18062e-13 1.30176e-12 1.07351e-11)
(-6.04598e-13 1.56949e-12 9.89972e-12)
(-4.71559e-13 1.45573e-12 8.47325e-12)
(-3.43841e-13 1.62936e-12 6.41315e-12)
(-2.13927e-13 2.02928e-12 2.85184e-12)
(-8.75638e-14 3.00529e-12 -4.6737e-12)
(2.17439e-14 6.31416e-12 -2.60086e-11)
(-5.05766e-13 1.42469e-11 -9.3052e-11)
(-3.79251e-12 1.65518e-11 -2.13199e-10)
(-7.8757e-12 3.32496e-13 -2.34445e-10)
(-9.38255e-13 1.83687e-12 1.40134e-11)
(-7.67363e-13 1.99256e-12 1.2635e-11)
(-5.89193e-13 1.78278e-12 1.07621e-11)
(-4.30777e-13 1.84036e-12 8.47645e-12)
(-2.85981e-13 2.04494e-12 5.12016e-12)
(-1.58405e-13 2.63773e-12 -1.13873e-12)
(-4.77903e-14 4.56169e-12 -1.68223e-11)
(-3.65492e-13 9.28579e-12 -6.314e-11)
(-2.44895e-12 1.02037e-11 -1.49473e-10)
(-5.52271e-12 -1.87121e-12 -1.63753e-10)
(-1.24157e-12 2.65445e-12 1.85053e-11)
(-9.79948e-13 2.61995e-12 1.61791e-11)
(-7.33937e-13 2.26459e-12 1.35552e-11)
(-5.31212e-13 2.17281e-12 1.08057e-11)
(-3.6191e-13 2.20452e-12 7.36846e-12)
(-2.12499e-13 2.49879e-12 1.81405e-12)
(-1.07861e-13 3.58109e-12 -1.03064e-11)
(-2.60652e-13 6.30595e-12 -4.33999e-11)
(-1.65769e-12 6.31594e-12 -1.06294e-10)
(-3.97059e-12 -2.85749e-12 -1.16566e-10)
(-1.78858e-12 3.91195e-12 2.48126e-11)
(-1.25935e-12 3.54714e-12 2.08742e-11)
(-9.16218e-13 2.95588e-12 1.70466e-11)
(-6.49746e-13 2.65828e-12 1.35109e-11)
(-4.40969e-13 2.50123e-12 9.71002e-12)
(-2.73826e-13 2.53091e-12 4.50341e-12)
(-1.62477e-13 3.04803e-12 -5.34672e-12)
(-2.29971e-13 4.51802e-12 -2.98311e-11)
(-1.17135e-12 3.96152e-12 -7.647e-11)
(-2.92139e-12 -3.1667e-12 -8.42423e-11)
(-2.42305e-10 6.21752e-12 3.42282e-11)
(4.55001e-12 5.24269e-12 2.71839e-11)
(-1.20475e-12 3.92687e-12 2.15044e-11)
(-7.98552e-13 3.33889e-12 1.67356e-11)
(-5.32722e-13 2.93512e-12 1.226e-11)
(-3.4057e-13 2.71013e-12 7.04556e-12)
(-2.09624e-13 2.82636e-12 -1.37455e-12)
(-2.24132e-13 3.47449e-12 -2.01888e-11)
(-8.63981e-13 2.55314e-12 -5.54516e-11)
(-2.19863e-12 -3.10768e-12 -6.1541e-11)
(-1.91412e-07 5.43694e-10 -1.68144e-10)
(8.90028e-09 6.57577e-10 -4.5512e-11)
(4.00937e-11 -1.11719e-11 3.17471e-11)
(-1.36009e-12 4.40188e-12 2.05813e-11)
(-6.23084e-13 3.5405e-12 1.50888e-11)
(-3.47315e-13 3.03346e-12 9.52268e-12)
(-1.36452e-13 2.80847e-12 1.879e-12)
(-2.75764e-15 2.89281e-12 -1.30952e-11)
(-8.04757e-14 1.73929e-12 -4.03399e-11)
(6.60952e-13 -2.84589e-12 -4.52691e-11)
(-8.12029e-14 6.16188e-13 9.83164e-13)
(-7.73259e-14 1.28779e-12 6.56651e-13)
(-8.30581e-14 1.72811e-12 2.08502e-13)
(-6.8754e-14 3.31876e-12 -1.45856e-12)
(-2.59822e-14 6.93066e-12 -6.53116e-12)
(7.3624e-14 1.63886e-11 -2.25993e-11)
(3.19761e-13 4.86582e-11 -8.43731e-11)
(-1.326e-12 1.36594e-10 -2.56838e-10)
(-1.30264e-11 2.11003e-10 -3.71345e-10)
(-2.85423e-11 1.09479e-10 -3.2788e-10)
(-1.14242e-13 5.71043e-13 1.12777e-12)
(-1.3398e-13 1.13513e-12 9.06468e-13)
(-1.75941e-13 1.4507e-12 6.65983e-13)
(-2.29406e-13 2.7066e-12 -4.93088e-13)
(-3.38619e-13 5.41283e-12 -4.11768e-12)
(-5.81877e-13 1.21068e-11 -1.53472e-11)
(-1.34788e-12 3.30357e-11 -5.59668e-11)
(-5.75859e-12 8.49036e-11 -1.65789e-10)
(-2.31751e-11 1.23212e-10 -2.28902e-10)
(-4.562e-11 5.72292e-11 -1.13915e-10)
(-1.28149e-13 5.36418e-13 1.26593e-12)
(-1.46548e-13 1.00918e-12 1.12458e-12)
(-1.84982e-13 1.22552e-12 1.03107e-12)
(-2.38971e-13 2.21101e-12 2.59339e-13)
(-3.35022e-13 4.29894e-12 -2.3315e-12)
(-5.30188e-13 9.12711e-12 -1.03362e-11)
(-1.09748e-12 2.30856e-11 -3.77751e-11)
(-3.95202e-12 5.54702e-11 -1.0964e-10)
(-1.41046e-11 7.61072e-11 -1.46582e-10)
(-2.68178e-11 3.3245e-11 -2.89721e-11)
(-1.30263e-13 5.16753e-13 1.40046e-12)
(-1.45506e-13 9.18051e-13 1.31541e-12)
(-1.7846e-13 1.04964e-12 1.33311e-12)
(-2.26761e-13 1.84438e-12 8.44696e-13)
(-3.00515e-13 3.46997e-12 -1.00217e-12)
(-4.68401e-13 7.05818e-12 -6.74578e-12)
(-8.75766e-13 1.66676e-11 -2.58322e-11)
(-2.77513e-12 3.7765e-11 -7.40919e-11)
(-9.10067e-12 4.91784e-11 -9.66699e-11)
(-1.67258e-11 2.11406e-11 2.52345e-12)
(-1.33794e-13 5.09021e-13 1.53625e-12)
(-1.45981e-13 8.5347e-13 1.49144e-12)
(-1.73989e-13 9.25722e-13 1.58284e-12)
(-2.12571e-13 1.57898e-12 1.28858e-12)
(-2.76928e-13 2.85116e-12 2.71079e-15)
(-4.11933e-13 5.57147e-12 -4.13088e-12)
(-7.26073e-13 1.23885e-11 -1.76451e-11)
(-2.02525e-12 2.66038e-11 -5.10276e-11)
(-6.17389e-12 3.29839e-11 -6.50446e-11)
(-1.09521e-11 1.44502e-11 1.33703e-11)
(-1.39358e-13 5.13867e-13 1.68541e-12)
(-1.48424e-13 8.12034e-13 1.66359e-12)
(-1.71353e-13 8.40368e-13 1.80228e-12)
(-2.02984e-13 1.37376e-12 1.6518e-12)
(-2.5876e-13 2.39186e-12 7.6752e-13)
(-3.59664e-13 4.4897e-12 -2.26726e-12)
(-6.12504e-13 9.44856e-12 -1.19176e-11)
(-1.52576e-12 1.93039e-11 -3.58206e-11)
(-4.35045e-12 2.28692e-11 -4.43967e-11)
(-7.45557e-12 1.04675e-11 1.62837e-11)
(-1.46725e-13 5.29738e-13 1.85659e-12)
(-1.52333e-13 7.90692e-13 1.84174e-12)
(-1.70799e-13 7.86072e-13 2.00336e-12)
(-1.95645e-13 1.22868e-12 1.94923e-12)
(-2.386e-13 2.06211e-12 1.33146e-12)
(-3.21367e-13 3.69319e-12 -8.61846e-13)
(-5.19469e-13 7.36748e-12 -7.84221e-12)
(-1.1824e-12 1.43984e-11 -2.51219e-11)
(-3.16019e-12 1.63507e-11 -3.05265e-11)
(-5.24078e-12 7.94943e-12 1.62369e-11)
(-4.83454e-13 5.59727e-13 2.06233e-12)
(-1.5954e-13 7.86129e-13 2.03478e-12)
(-1.72204e-13 7.57714e-13 2.20196e-12)
(-1.906e-13 1.13126e-12 2.20291e-12)
(-2.23869e-13 1.80905e-12 1.78434e-12)
(-2.93585e-13 3.10577e-12 1.91597e-13)
(-4.44973e-13 5.88882e-12 -4.95369e-12)
(-9.34847e-13 1.10147e-11 -1.76012e-11)
(-2.35471e-12 1.20312e-11 -2.10321e-11)
(-3.78443e-12 6.28265e-12 1.51331e-11)
(-6.3403e-10 1.66428e-12 3.53796e-12)
(-9.42606e-12 1.79274e-12 2.16919e-12)
(-8.23776e-14 7.56193e-13 2.40476e-12)
(-1.89031e-13 1.06931e-12 2.43321e-12)
(-2.14286e-13 1.62776e-12 2.1466e-12)
(-2.67674e-13 2.66838e-12 9.65967e-13)
(-3.84908e-13 4.81222e-12 -2.87285e-12)
(-7.55782e-13 8.63137e-12 -1.22464e-11)
(-1.79555e-12 9.10403e-12 -1.43831e-11)
(-2.79988e-12 5.13638e-12 1.37395e-11)
(-3.26203e-07 2.06962e-09 2.21917e-09)
(-9.86795e-09 1.92687e-09 -1.18815e-10)
(-8.22845e-12 2.82781e-11 -5.77354e-12)
(5.97962e-13 7.5787e-13 2.73851e-12)
(-1.75373e-13 1.50015e-12 2.44618e-12)
(-1.84708e-13 2.34881e-12 1.54589e-12)
(-2.11918e-13 4.01778e-12 -1.32678e-12)
(-3.56507e-13 6.91351e-12 -8.3756e-12)
(-6.74674e-13 7.07886e-12 -9.66977e-12)
(5.96963e-13 4.32172e-12 1.23673e-11)
(-2.25828e-15 8.44425e-13 -2.61682e-13)
(1.05303e-15 1.50476e-12 -7.52496e-13)
(-2.52345e-14 1.61739e-12 -8.26209e-13)
(-6.94768e-14 2.66486e-12 -1.00087e-12)
(-1.57482e-13 4.57012e-12 -1.01156e-12)
(-3.61896e-13 7.8466e-12 3.69091e-13)
(-8.37811e-13 1.36119e-11 9.37315e-12)
(-2.08081e-12 2.77858e-11 5.64392e-11)
(-5.56631e-12 4.54087e-11 2.46906e-10)
(-1.10338e-11 -2.86257e-11 7.17994e-10)
(-2.89649e-14 7.74748e-13 -2.3939e-13)
(-4.45444e-14 1.33983e-12 -6.97536e-13)
(-9.13555e-14 1.36815e-12 -7.70676e-13)
(-1.72009e-13 2.23237e-12 -9.31822e-13)
(-3.20599e-13 3.78794e-12 -1.02001e-12)
(-6.24424e-13 6.53983e-12 -3.70339e-13)
(-1.22419e-12 1.1724e-11 4.36966e-12)
(-2.59818e-12 2.27691e-11 3.1734e-11)
(-6.70781e-12 3.11685e-11 1.49284e-10)
(-1.53346e-11 -9.64618e-12 4.15682e-10)
(-3.6553e-14 7.0934e-13 -2.09097e-13)
(-4.94143e-14 1.18962e-12 -6.37893e-13)
(-8.98609e-14 1.15131e-12 -7.07081e-13)
(-1.56014e-13 1.86215e-12 -8.56931e-13)
(-2.77873e-13 3.12924e-12 -1.01192e-12)
(-5.18754e-13 5.39475e-12 -6.97202e-13)
(-9.89084e-13 9.70712e-12 1.83261e-12)
(-2.07936e-12 1.83376e-11 1.81084e-11)
(-4.81941e-12 2.26869e-11 9.43631e-11)
(-9.32085e-12 -1.43547e-12 2.5422e-10)
(-3.10812e-14 6.54267e-13 -1.8412e-13)
(-4.05819e-14 1.06272e-12 -5.84223e-13)
(-7.44361e-14 9.74333e-13 -6.46996e-13)
(-1.27276e-13 1.56148e-12 -8.01179e-13)
(-2.26287e-13 2.59759e-12 -9.7113e-13)
(-4.12478e-13 4.45631e-12 -8.87376e-13)
(-7.80234e-13 7.9465e-12 5.58314e-13)
(-1.60655e-12 1.47979e-11 1.03336e-11)
(-3.50339e-12 1.71892e-11 6.17416e-11)
(-6.02819e-12 2.00053e-12 1.62537e-10)
(-2.6502e-14 6.06612e-13 -1.61328e-13)
(-3.3455e-14 9.54887e-13 -5.36101e-13)
(-6.18424e-14 8.26662e-13 -5.90192e-13)
(-1.05451e-13 1.31166e-12 -7.34967e-13)
(-1.84469e-13 2.16905e-12 -9.02724e-13)
(-3.30342e-13 3.70004e-12 -9.77179e-13)
(-6.19596e-13 6.5162e-12 -1.57525e-13)
(-1.2393e-12 1.1967e-11 5.82138e-12)
(-2.61472e-12 1.33605e-11 4.14814e-11)
(-4.10776e-12 3.31675e-12 1.07621e-10)
(-2.27942e-14 5.65565e-13 -1.43022e-13)
(-2.75866e-14 8.63131e-13 -4.94111e-13)
(-5.17636e-14 7.03505e-13 -5.39602e-13)
(-8.77126e-14 1.11109e-12 -6.74323e-13)
(-1.50209e-13 1.82271e-12 -8.54337e-13)
(-2.68767e-13 3.0774e-12 -9.94588e-13)
(-4.95996e-13 5.36982e-12 -5.91202e-13)
(-9.63889e-13 9.72561e-12 3.10445e-12)
(-1.98739e-12 1.0565e-11 2.84675e-11)
(-2.9175e-12 3.65022e-12 7.3358e-11)
(-1.99525e-14 5.3019e-13 -1.2697e-13)
(-2.26461e-14 7.84229e-13 -4.57904e-13)
(-4.36089e-14 6.00217e-13 -4.93151e-13)
(-7.34694e-14 9.4392e-13 -6.16538e-13)
(-1.2502e-13 1.53366e-12 -7.89617e-13)
(-2.20782e-13 2.57366e-12 -9.53239e-13)
(-3.9919e-13 4.45839e-12 -8.41888e-13)
(-7.59007e-13 7.94696e-12 1.43941e-12)
(-1.53277e-12 8.45056e-12 1.99044e-11)
(-2.1418e-12 3.52927e-12 5.12608e-11)
(-5.24497e-13 5.00343e-13 -1.12163e-13)
(-2.60426e-14 7.1706e-13 -4.25103e-13)
(-3.65229e-14 5.12832e-13 -4.54208e-13)
(-6.19944e-14 8.04209e-13 -5.6276e-13)
(-1.04575e-13 1.29929e-12 -7.26202e-13)
(-1.8044e-13 2.16313e-12 -9.16712e-13)
(-3.24014e-13 3.7177e-12 -9.61989e-13)
(-6.06625e-13 6.53703e-12 4.16138e-13)
(-1.19884e-12 6.82303e-12 1.41327e-11)
(-1.61256e-12 3.21137e-12 3.661e-11)
(-9.63754e-10 2.14878e-12 1.0365e-12)
(-2.7819e-11 2.37684e-12 -5.57558e-13)
(1.67137e-13 4.63691e-13 -4.2585e-13)
(-4.9234e-14 6.86308e-13 -5.14782e-13)
(-9.04948e-14 1.10656e-12 -6.6667e-13)
(-1.52167e-13 1.82734e-12 -8.66088e-13)
(-2.69111e-13 3.11203e-12 -1.00288e-12)
(-4.93485e-13 5.40722e-12 -2.07057e-13)
(-9.55068e-13 5.5565e-12 1.01655e-11)
(-1.2431e-12 2.83665e-12 2.66341e-11)
(-3.2416e-07 3.18014e-09 2.19381e-09)
(-3.17419e-08 3.26143e-09 -2.50066e-10)
(-1.46874e-10 9.38003e-11 -2.37345e-11)
(2.01457e-12 -8.13222e-14 -2.4349e-13)
(-2.98949e-14 9.26276e-13 -5.95692e-13)
(-8.09841e-14 1.54694e-12 -8.00841e-13)
(-1.3775e-13 2.61664e-12 -9.79109e-13)
(-2.45913e-13 4.49825e-12 -5.76998e-13)
(-4.71758e-13 4.55591e-12 7.3992e-12)
(1.43093e-13 2.46314e-12 1.97e-11)
(3.72349e-16 1.13462e-12 -3.66067e-13)
(7.82671e-15 1.81718e-12 -1.0228e-12)
(-1.56835e-14 1.52455e-12 -1.03557e-12)
(-4.95808e-14 2.20869e-12 -1.06937e-12)
(-1.06672e-13 3.28773e-12 -9.15445e-13)
(-2.08459e-13 4.93919e-12 -1.13884e-13)
(-3.81042e-13 7.35493e-12 2.25802e-12)
(-6.79863e-13 9.82619e-12 1.06252e-11)
(-1.21163e-12 3.38393e-12 5.65816e-11)
(-1.8024e-12 -2.33169e-11 1.89236e-10)
(-2.79069e-14 1.05537e-12 -3.42046e-13)
(-3.85338e-14 1.65066e-12 -9.64165e-13)
(-7.80082e-14 1.3216e-12 -9.88005e-13)
(-1.35364e-13 1.90919e-12 -1.0663e-12)
(-2.2842e-13 2.83334e-12 -1.02178e-12)
(-3.8545e-13 4.25372e-12 -5.54674e-13)
(-6.47206e-13 6.3661e-12 1.08304e-12)
(-1.08373e-12 8.87802e-12 7.15939e-12)
(-1.74777e-12 3.64984e-12 3.99367e-11)
(-2.57827e-12 -1.21775e-11 1.15131e-10)
(-3.62001e-14 9.81744e-13 -3.09773e-13)
(-4.43983e-14 1.49565e-12 -8.99175e-13)
(-7.94708e-14 1.13429e-12 -9.28353e-13)
(-1.28266e-13 1.63613e-12 -1.02951e-12)
(-2.0686e-13 2.4243e-12 -1.05951e-12)
(-3.36466e-13 3.642e-12 -8.27795e-13)
(-5.52066e-13 5.46756e-12 2.50826e-13)
(-9.06922e-13 7.83568e-12 4.39984e-12)
(-1.48092e-12 3.71809e-12 2.82099e-11)
(-1.92815e-12 -6.54465e-12 7.41308e-11)
(-3.03573e-14 9.17512e-13 -2.81768e-13)
(-3.57359e-14 1.36173e-12 -8.40165e-13)
(-6.55912e-14 9.76243e-13 -8.72301e-13)
(-1.05999e-13 1.40551e-12 -9.81812e-13)
(-1.70649e-13 2.07912e-12 -1.06293e-12)
(-2.7554e-13 3.11764e-12 -9.80598e-13)
(-4.50457e-13 4.70167e-12 -3.25805e-13)
(-7.33538e-13 6.8432e-12 2.41688e-12)
(-1.21121e-12 3.57147e-12 2.01943e-11)
(-1.47224e-12 -3.54431e-12 4.99143e-11)
(-2.56134e-14 8.61791e-13 -2.56987e-13)
(-2.85578e-14 1.24575e-12 -7.87046e-13)
(-5.41933e-14 8.41157e-13 -8.19328e-13)
(-8.81056e-14 1.20918e-12 -9.31937e-13)
(-1.41355e-13 1.78797e-12 -1.04794e-12)
(-2.27375e-13 2.67652e-12 -1.05944e-12)
(-3.69044e-13 4.0441e-12 -6.95758e-13)
(-5.98335e-13 5.93673e-12 1.08336e-12)
(-9.90401e-13 3.31932e-12 1.45599e-11)
(-1.15339e-12 -1.87791e-12 3.4767e-11)
(-2.16585e-14 8.13168e-13 -2.35235e-13)
(-2.2722e-14 1.14506e-12 -7.38979e-13)
(-4.48985e-14 7.25314e-13 -7.69048e-13)
(-7.3619e-14 1.04271e-12 -8.81863e-13)
(-1.17882e-13 1.5399e-12 -1.00981e-12)
(-1.89184e-13 2.30152e-12 -1.08428e-12)
(-3.04815e-13 3.48402e-12 -9.30196e-13)
(-4.92362e-13 5.13347e-12 2.13124e-13)
(-8.13854e-13 3.01363e-12 1.05622e-11)
(-9.21194e-13 -9.30097e-13 2.48562e-11)
(-1.86211e-14 7.70296e-13 -2.15892e-13)
(-1.80223e-14 1.05681e-12 -6.95196e-13)
(-3.72109e-14 6.25278e-13 -7.22778e-13)
(-6.17379e-14 8.99881e-13 -8.32172e-13)
(-9.90872e-14 1.32895e-12 -9.65932e-13)
(-1.58256e-13 1.98383e-12 -1.08586e-12)
(-2.53791e-13 3.0036e-12 -1.06188e-12)
(-4.09509e-13 4.43394e-12 -3.47205e-13)
(-6.73094e-13 2.69714e-12 7.69572e-12)
(-7.46089e-13 -3.845e-13 1.81232e-11)
(-7.31557e-13 7.33121e-13 -1.98868e-13)
(-2.86008e-14 9.80571e-13 -6.55618e-13)
(-3.06397e-14 5.39322e-13 -6.79851e-13)
(-5.18637e-14 7.76685e-13 -7.8411e-13)
(-8.36945e-14 1.14818e-12 -9.18203e-13)
(-1.3325e-13 1.71261e-12 -1.05996e-12)
(-2.12807e-13 2.59043e-12 -1.12208e-12)
(-3.41886e-13 3.83042e-12 -7.02224e-13)
(-5.61441e-13 2.39367e-12 5.6247e-12)
(-6.1133e-13 -7.20193e-14 1.34181e-11)
(-1.40097e-09 3.27961e-12 8.98967e-13)
(-4.93943e-11 3.63198e-12 -8.60177e-13)
(1.5904e-13 5.19877e-13 -6.52886e-13)
(-3.53808e-14 6.69405e-13 -7.38262e-13)
(-7.36114e-14 9.93203e-13 -8.69457e-13)
(-1.15129e-13 1.48135e-12 -1.01973e-12)
(-1.81966e-13 2.24054e-12 -1.13965e-12)
(-2.894e-13 3.30763e-12 -9.18683e-13)
(-4.74258e-13 2.10741e-12 4.11282e-12)
(-5.0969e-13 1.05288e-13 1.00547e-11)
(-3.97985e-07 5.01879e-09 2.1171e-09)
(-5.58124e-08 5.31389e-09 -4.29592e-10)
(-3.84671e-10 1.87841e-10 -4.12485e-11)
(2.71842e-12 -1.29523e-13 -4.79561e-13)
(1.613e-14 8.19258e-13 -8.01144e-13)
(-5.52697e-14 1.28363e-12 -9.7484e-13)
(-8.60673e-14 1.93884e-12 -1.13195e-12)
(-1.35055e-13 2.85835e-12 -1.044e-12)
(-2.21095e-13 1.84435e-12 2.99718e-12)
(7.85148e-14 1.94624e-13 7.60936e-12)
(1.11201e-15 1.58338e-12 -4.5736e-13)
(1.17706e-14 2.28876e-12 -1.29464e-12)
(-1.09754e-14 1.43412e-12 -1.18245e-12)
(-3.65442e-14 1.84381e-12 -1.09693e-12)
(-7.29953e-14 2.42993e-12 -8.49528e-13)
(-1.25703e-13 3.18333e-12 -2.17597e-13)
(-2.00031e-13 4.10123e-12 1.22332e-12)
(-3.01109e-13 4.87453e-12 4.43276e-12)
(-4.32786e-13 -8.38264e-14 1.59353e-11)
(-4.30123e-13 -5.99051e-12 3.01866e-11)
(-2.86529e-14 1.49688e-12 -4.34378e-13)
(-3.54213e-14 2.12514e-12 -1.24041e-12)
(-6.92451e-14 1.27746e-12 -1.15883e-12)
(-1.09891e-13 1.64721e-12 -1.1253e-12)
(-1.67195e-13 2.1797e-12 -9.77908e-13)
(-2.48504e-13 2.87675e-12 -5.55412e-13)
(-3.62896e-13 3.74745e-12 4.67835e-13)
(-5.1903e-13 4.55853e-12 2.863e-12)
(-7.25393e-13 2.82475e-13 1.26523e-11)
(-7.26513e-13 -4.25653e-12 2.25046e-11)
(-3.82121e-14 1.41342e-12 -3.99586e-13)
(-4.30172e-14 1.96897e-12 -1.17451e-12)
(-7.34037e-14 1.12529e-12 -1.11625e-12)
(-1.09665e-13 1.45453e-12 -1.11957e-12)
(-1.60118e-13 1.93391e-12 -1.04674e-12)
(-2.31116e-13 2.56729e-12 -7.7852e-13)
(-3.3098e-13 3.38115e-12 -6.93287e-14)
(-4.65977e-13 4.19243e-12 1.68601e-12)
(-6.48878e-13 6.13448e-13 9.77635e-12)
(-6.27164e-13 -3.00878e-12 1.69643e-11)
(-3.21129e-14 1.34008e-12 -3.68246e-13)
(-3.42929e-14 1.83106e-12 -1.11315e-12)
(-6.0813e-14 9.90996e-13 -1.07156e-12)
(-9.19697e-14 1.28409e-12 -1.09978e-12)
(-1.34978e-13 1.71496e-12 -1.07996e-12)
(-1.95152e-13 2.28823e-12 -9.24339e-13)
(-2.79583e-13 3.03969e-12 -4.51552e-13)
(-3.94694e-13 3.82179e-12 8.37447e-13)
(-5.52989e-13 8.15785e-13 7.49354e-12)
(-5.33569e-13 -2.15745e-12 1.29701e-11)
(-2.69598e-14 1.2751e-12 -3.40336e-13)
(-2.71173e-14 1.70882e-12 -1.05579e-12)
(-5.04796e-14 8.72334e-13 -1.02611e-12)
(-7.73009e-14 1.13275e-12 -1.07081e-12)
(-1.14208e-13 1.52026e-12 -1.08991e-12)
(-1.65829e-13 2.03733e-12 -1.01386e-12)
(-2.37718e-13 2.72663e-12 -7.1383e-13)
(-3.36907e-13 3.46562e-12 2.22462e-13)
(-4.73275e-13 9.1984e-13 5.71508e-12)
(-4.55633e-13 -1.56727e-12 1.0019e-11)
(-2.28353e-14 1.21722e-12 -3.15386e-13)
(-2.12993e-14 1.59948e-12 -1.00258e-12)
(-4.19916e-14 7.67459e-13 -9.81027e-13)
(-6.52235e-14 9.99247e-13 -1.03695e-12)
(-9.71898e-14 1.3459e-12 -1.08087e-12)
(-1.41668e-13 1.81193e-12 -1.06344e-12)
(-2.03272e-13 2.43794e-12 -8.87247e-13)
(-2.88561e-13 3.13001e-12 -2.19548e-13)
(-4.08138e-13 9.66167e-13 4.32738e-12)
(-3.90891e-13 -1.14576e-12 7.78512e-12)
(-1.96383e-14 1.16577e-12 -2.92837e-13)
(-1.64212e-14 1.50232e-12 -9.53094e-13)
(-3.48451e-14 6.74452e-13 -9.37255e-13)
(-5.52009e-14 8.8017e-13 -1.00014e-12)
(-8.31063e-14 1.19112e-12 -1.06096e-12)
(-1.21436e-13 1.61086e-12 -1.08462e-12)
(-1.74654e-13 2.18116e-12 -1.00162e-12)
(-2.47823e-13 2.8147e-12 -5.32249e-13)
(-3.53344e-13 9.62885e-13 3.25232e-12)
(-3.38263e-13 -8.40784e-13 6.07143e-12)
(-9.22953e-13 1.1208e-12 -2.72415e-13)
(-3.67521e-14 1.4161e-12 -9.0762e-13)
(-2.86439e-14 5.91449e-13 -8.95033e-13)
(-4.67952e-14 7.74144e-13 -9.61478e-13)
(-7.12696e-14 1.05332e-12 -1.03384e-12)
(-1.04686e-13 1.43116e-12 -1.08664e-12)
(-1.50883e-13 1.94812e-12 -1.07015e-12)
(-2.14965e-13 2.52746e-12 -7.55149e-13)
(-3.06469e-13 9.30513e-13 2.41456e-12)
(-2.94797e-13 -6.25278e-13 4.75088e-12)
(-1.75612e-09 4.71646e-12 6.52507e-13)
(-7.19687e-11 5.20352e-12 -1.17128e-12)
(4.34431e-14 6.22361e-13 -8.74811e-13)
(-2.79135e-14 6.7838e-13 -9.22227e-13)
(-6.39833e-14 9.29915e-13 -1.00144e-12)
(-9.29293e-14 1.27045e-12 -1.07392e-12)
(-1.33422e-13 1.73808e-12 -1.10496e-12)
(-1.89927e-13 2.26584e-12 -9.0309e-13)
(-2.70058e-13 8.79499e-13 1.757e-12)
(-2.6129e-13 -4.72712e-13 3.72414e-12)
(-3.24274e-07 6.98883e-09 1.50149e-09)
(-7.68517e-08 7.48009e-09 -5.81968e-10)
(-6.03188e-10 3.08345e-10 -5.72516e-11)
(3.06695e-12 2.98425e-13 -8.05077e-13)
(6.43839e-14 7.59006e-13 -9.4387e-13)
(-3.65293e-14 1.1275e-12 -1.05089e-12)
(-5.53002e-14 1.54727e-12 -1.11483e-12)
(-7.86174e-14 2.02732e-12 -9.9873e-13)
(-1.10143e-13 8.15391e-13 1.24678e-12)
(7.06728e-14 -3.66082e-13 2.91803e-12)
(8.82734e-16 2.24768e-12 -5.41619e-13)
(1.24226e-14 2.93425e-12 -1.55641e-12)
(-8.04827e-15 1.27948e-12 -1.28816e-12)
(-2.70975e-14 1.45898e-12 -1.07115e-12)
(-4.95645e-14 1.72954e-12 -7.33892e-13)
(-7.62601e-14 2.02557e-12 -1.82816e-13)
(-1.06846e-13 2.30733e-12 7.27056e-13)
(-1.39891e-13 2.38257e-12 2.30006e-12)
(-1.76118e-13 -9.52209e-13 7.14785e-12)
(-1.57851e-13 -2.88108e-12 9.15721e-12)
(-3.03137e-14 2.15487e-12 -5.2255e-13)
(-3.48757e-14 2.78441e-12 -1.51176e-12)
(-6.18912e-14 1.17649e-12 -1.29197e-12)
(-8.92632e-14 1.35013e-12 -1.13021e-12)
(-1.22316e-13 1.61588e-12 -8.74982e-13)
(-1.62291e-13 1.91552e-12 -4.49631e-13)
(-2.09453e-13 2.21902e-12 2.68388e-13)
(-2.62517e-13 2.3558e-12 1.53932e-12)
(-3.20318e-13 -6.81276e-13 5.81863e-12)
(-2.8763e-13 -2.41938e-12 7.56935e-12)
(-4.14665e-14 2.06529e-12 -4.8828e-13)
(-4.41056e-14 2.63723e-12 -1.45221e-12)
(-6.92958e-14 1.06724e-12 -1.27185e-12)
(-9.46576e-14 1.2323e-12 -1.15641e-12)
(-1.25451e-13 1.48904e-12 -9.69731e-13)
(-1.62404e-13 1.78482e-12 -6.48503e-13)
(-2.06479e-13 2.09859e-12 -9.32114e-14)
(-2.56476e-13 2.28395e-12 9.2475e-13)
(-3.10741e-13 -3.89899e-13 4.62233e-12)
(-2.66178e-13 -1.9615e-12 6.17383e-12)
(-3.49877e-14 1.98453e-12 -4.56813e-13)
(-3.55325e-14 2.50337e-12 -1.39433e-12)
(-5.81909e-14 9.6644e-13 -1.24519e-12)
(-8.08334e-14 1.12105e-12 -1.16575e-12)
(-1.08253e-13 1.36691e-12 -1.03247e-12)
(-1.41243e-13 1.65481e-12 -7.93671e-13)
(-1.80836e-13 1.97e-12 -3.67586e-13)
(-2.26432e-13 2.18848e-12 4.44031e-13)
(-2.76523e-13 -1.741e-13 3.64676e-12)
(-2.3852e-13 -1.59934e-12 5.03123e-12)
(-2.95956e-14 1.91139e-12 -4.27636e-13)
(-2.83413e-14 2.38094e-12 -1.33819e-12)
(-4.89017e-14 8.72815e-13 -1.21404e-12)
(-6.91679e-14 1.01746e-12 -1.16311e-12)
(-9.36862e-14 1.25123e-12 -1.0721e-12)
(-1.23361e-13 1.52782e-12 -8.97901e-13)
(-1.58899e-13 1.83765e-12 -5.74216e-13)
(-1.99978e-13 2.07728e-12 7.1846e-14)
(-2.47552e-13 -1.71178e-14 2.85231e-12)
(-2.14724e-13 -1.31325e-12 4.09357e-12)
(-2.51309e-14 1.84543e-12 -4.00996e-13)
(-2.23978e-14 2.26925e-12 -1.28465e-12)
(-4.10412e-14 7.86619e-13 -1.18056e-12)
(-5.92207e-14 9.20618e-13 -1.15104e-12)
(-8.1408e-14 1.14135e-12 -1.09313e-12)
(-1.0825e-13 1.40615e-12 -9.71396e-13)
(-1.40217e-13 1.71001e-12 -7.31446e-13)
(-1.7708e-13 1.95491e-12 -2.20157e-13)
(-2.2224e-13 9.00835e-14 2.20665e-12)
(-1.94005e-13 -1.08446e-12 3.32375e-12)
(-2.17279e-14 1.78533e-12 -3.76763e-13)
(-1.74856e-14 2.16718e-12 -1.23378e-12)
(-3.43523e-14 7.0748e-13 -1.1458e-12)
(-5.08712e-14 8.30524e-13 -1.13279e-12)
(-7.08494e-14 1.03744e-12 -1.10061e-12)
(-9.51125e-14 1.28973e-12 -1.0204e-12)
(-1.24173e-13 1.58502e-12 -8.47666e-13)
(-1.58121e-13 1.82986e-12 -4.42984e-13)
(-1.99316e-13 1.63194e-13 1.67506e-12)
(-1.75817e-13 -9.04329e-13 2.68964e-12)
(-1.10506e-12 1.73217e-12 -3.5389e-13)
(-4.83558e-14 2.07563e-12 -1.18563e-12)
(-2.8551e-14 6.34469e-13 -1.11027e-12)
(-4.37019e-14 7.4697e-13 -1.11031e-12)
(-6.18702e-14 9.41299e-13 -1.09874e-12)
(-8.37434e-14 1.17943e-12 -1.05058e-12)
(-1.10275e-13 1.46273e-12 -9.31327e-13)
(-1.41526e-13 1.70563e-12 -6.15744e-13)
(-1.79244e-13 2.10049e-13 1.24038e-12)
(-1.59757e-13 -7.62611e-13 2.16385e-12)
(-2.0509e-09 6.56148e-12 5.33658e-13)
(-9.09466e-11 7.17348e-12 -1.49811e-12)
(-4.25456e-13 7.35833e-13 -1.10068e-12)
(-2.5491e-14 6.68454e-13 -1.08469e-12)
(-5.63125e-14 8.50977e-13 -1.08918e-12)
(-7.66626e-14 1.07582e-12 -1.06717e-12)
(-1.00709e-13 1.34601e-12 -9.90064e-13)
(-1.29647e-13 1.58415e-12 -7.47912e-13)
(-1.64678e-13 2.36311e-13 8.8447e-13)
(-1.4857e-13 -6.51231e-13 1.72595e-12)
(-1.03522e-07 9.13962e-09 1.32877e-09)
(-8.65013e-08 9.77738e-09 -6.96301e-10)
(-1.46019e-09 4.36574e-10 -6.72939e-11)
(-5.80431e-12 2.52527e-12 -1.49528e-12)
(7.82277e-14 6.96053e-13 -1.05279e-12)
(-1.88262e-14 9.76816e-13 -1.07028e-12)
(-3.04134e-14 1.23438e-12 -1.02866e-12)
(-3.99276e-14 1.464e-12 -8.4668e-13)
(-4.9417e-14 2.4561e-13 5.93268e-13)
(7.33381e-14 -5.64137e-13 1.36056e-12)
(-6.33815e-16 3.15693e-12 -5.91149e-13)
(9.12162e-15 3.73168e-12 -1.71922e-12)
(-6.82512e-15 9.88219e-13 -1.30281e-12)
(-1.92293e-14 9.72939e-13 -9.686e-13)
(-3.13317e-14 1.05719e-12 -5.79417e-13)
(-4.28418e-14 1.13041e-12 -9.55529e-14)
(-5.33766e-14 1.17044e-12 5.22663e-13)
(-6.1785e-14 1.06637e-12 1.35387e-12)
(-6.87016e-14 -1.15267e-12 3.50267e-12)
(-6.38012e-14 -1.86683e-12 3.79945e-12)
(-3.27107e-14 3.06472e-12 -5.79878e-13)
(-3.72771e-14 3.61155e-12 -1.69174e-12)
(-5.51792e-14 9.45075e-13 -1.33148e-12)
(-7.02547e-14 9.39629e-13 -1.05046e-12)
(-8.57975e-14 1.03616e-12 -7.21236e-13)
(-1.01527e-13 1.12659e-12 -3.0828e-13)
(-1.16887e-13 1.19053e-12 2.25584e-13)
(-1.30645e-13 1.12202e-12 9.5718e-13)
(-1.41788e-13 -1.03094e-12 2.98246e-12)
(-1.23529e-13 -1.72958e-12 3.30698e-12)
(-4.57863e-14 2.97401e-12 -5.50572e-13)
(-4.87846e-14 3.48994e-12 -1.64568e-12)
(-6.6109e-14 8.91173e-13 -1.33661e-12)
(-8.08623e-14 8.92851e-13 -1.10325e-12)
(-9.63052e-14 9.9743e-13 -8.29161e-13)
(-1.12258e-13 1.1003e-12 -4.81097e-13)
(-1.28036e-13 1.18314e-12 -2.46714e-14)
(-1.42888e-13 1.15034e-12 6.10451e-13)
(-1.54668e-13 -8.3442e-13 2.45828e-12)
(-1.2217e-13 -1.51621e-12 2.80944e-12)
(-3.91517e-14 2.89078e-12 -5.22391e-13)
(-4.04227e-14 3.3751e-12 -1.59824e-12)
(-5.66261e-14 8.3555e-13 -1.33161e-12)
(-7.04825e-14 8.42067e-13 -1.13898e-12)
(-8.51517e-14 9.52103e-13 -9.11659e-13)
(-1.00442e-13 1.06499e-12 -6.19149e-13)
(-1.15723e-13 1.16245e-12 -2.30704e-13)
(-1.30581e-13 1.15904e-12 3.19573e-13)
(-1.42609e-13 -6.7312e-13 2.0069e-12)
(-1.14017e-13 -1.33517e-12 2.37722e-12)
(-3.34761e-14 2.81388e-12 -4.95639e-13)
(-3.33444e-14 3.26747e-12 -1.55064e-12)
(-4.85021e-14 7.80601e-13 -1.32033e-12)
(-6.15512e-14 7.89816e-13 -1.16188e-12)
(-7.53473e-14 9.0266e-13 -9.7398e-13)
(-9.00137e-14 1.02201e-12 -7.2901e-13)
(-1.04787e-13 1.12996e-12 -3.98972e-13)
(-1.19228e-13 1.15247e-12 7.55968e-14)
(-1.3189e-13 -5.41092e-13 1.61708e-12)
(-1.06624e-13 -1.18223e-12 2.00006e-12)
(-2.87407e-14 2.74277e-12 -4.70218e-13)
(-2.73725e-14 3.16573e-12 -1.50353e-12)
(-4.15722e-14 7.25658e-13 -1.30369e-12)
(-5.39367e-14 7.36737e-13 -1.1738e-12)
(-6.69927e-14 8.50868e-13 -1.01986e-12)
(-8.0848e-14 9.74695e-13 -8.16488e-13)
(-9.50267e-14 1.09201e-12 -5.37727e-13)
(-1.08712e-13 1.13234e-12 -1.26048e-13)
(-1.22357e-13 -4.35563e-13 1.2786e-12)
(-9.98194e-14 -1.05146e-12 1.66937e-12)
(-2.52166e-14 2.67707e-12 -4.46318e-13)
(-2.22903e-14 3.07076e-12 -1.45737e-12)
(-3.56314e-14 6.72163e-13 -1.28323e-12)
(-4.71984e-14 6.83187e-13 -1.17762e-12)
(-5.95685e-14 7.98223e-13 -1.05293e-12)
(-7.2715e-14 9.24841e-13 -8.85585e-13)
(-8.63104e-14 1.04924e-12 -6.51648e-13)
(-9.9583e-14 1.10216e-12 -2.94974e-13)
(-1.13404e-13 -3.52276e-13 9.87128e-13)
(-9.35807e-14 -9.4003e-13 1.37916e-12)
(-1.30445e-12 2.61873e-12 -4.23578e-13)
(-6.29099e-14 2.98357e-12 -1.41281e-12)
(-3.06838e-14 6.20379e-13 -1.26038e-12)
(-4.12758e-14 6.31138e-13 -1.17563e-12)
(-5.30101e-14 7.44753e-13 -1.07531e-12)
(-6.55263e-14 8.72812e-13 -9.38548e-13)
(-7.86593e-14 1.0024e-12 -7.44142e-13)
(-9.17335e-14 1.06568e-12 -4.37117e-13)
(-1.05199e-13 -2.86381e-13 7.35358e-13)
(-8.77747e-14 -8.46365e-13 1.12462e-12)
(-2.38262e-09 8.99315e-12 4.37618e-13)
(-1.02517e-10 9.67931e-12 -1.75606e-12)
(-7.53166e-13 8.09923e-13 -1.26372e-12)
(-2.97982e-14 5.80772e-13 -1.16835e-12)
(-4.95095e-14 6.91732e-13 -1.08946e-12)
(-6.18634e-14 8.19514e-13 -9.79279e-13)
(-7.43737e-14 9.51592e-13 -8.18688e-13)
(-8.71393e-14 1.02408e-12 -5.55391e-13)
(-1.0049e-13 -2.33793e-13 5.17057e-13)
(-8.54186e-14 -7.66596e-13 9.00371e-13)
(1.50387e-07 1.18839e-08 1.32791e-09)
(-7.98159e-08 1.25967e-08 -7.73938e-10)
(-1.34215e-09 5.45242e-10 -6.66893e-11)
(-1.01733e-11 4.4021e-12 -1.82571e-12)
(9.76257e-15 5.90505e-13 -1.08355e-12)
(-7.74315e-16 7.64288e-13 -1.00811e-12)
(-6.1446e-15 9.00447e-13 -8.77997e-13)
(-8.08501e-15 9.78042e-13 -6.53858e-13)
(-7.52194e-15 -1.96261e-13 3.29261e-13)
(8.21658e-14 -7.01248e-13 7.0349e-13)
(-3.05915e-15 4.25005e-12 -5.68253e-13)
(1.7127e-15 4.5874e-12 -1.65656e-12)
(-6.85265e-15 5.3236e-13 -1.16082e-12)
(-1.18356e-14 3.72503e-13 -7.76918e-13)
(-1.56855e-14 3.87574e-13 -4.04364e-13)
(-1.84274e-14 3.95524e-13 -1.77909e-14)
(-1.97606e-14 3.83585e-13 3.91808e-13)
(-1.98263e-14 2.75552e-13 8.51641e-13)
(-1.90983e-14 -1.25601e-12 1.85561e-12)
(-2.38131e-14 -1.41222e-12 1.78564e-12)
(-3.53916e-14 4.16519e-12 -5.6621e-13)
(-4.235e-14 4.511e-12 -1.64696e-12)
(-4.86818e-14 5.50708e-13 -1.20658e-12)
(-5.19594e-14 4.00235e-13 -8.64337e-13)
(-5.44135e-14 4.22049e-13 -5.29109e-13)
(-5.62113e-14 4.39129e-13 -1.7536e-13)
(-5.6994e-14 4.36451e-13 2.04411e-13)
(-5.63955e-14 3.37537e-13 6.3818e-13)
(-5.42456e-14 -1.23413e-12 1.6421e-12)
(-5.00749e-14 -1.40734e-12 1.6141e-12)
(-5.08379e-14 4.08273e-12 -5.45411e-13)
(-5.64817e-14 4.43306e-12 -1.61919e-12)
(-6.32134e-14 5.56356e-13 -1.23032e-12)
(-6.71466e-14 4.14182e-13 -9.28692e-13)
(-7.04706e-14 4.4329e-13 -6.3057e-13)
(-7.32143e-14 4.66753e-13 -3.10907e-13)
(-7.51481e-14 4.73612e-13 3.66144e-14)
(-7.55411e-14 3.91683e-13 4.3885e-13)
(-7.38226e-14 -1.11117e-12 1.39669e-12)
(-5.38858e-14 -1.30419e-12 1.41072e-12)
(-4.41203e-14 4.00485e-12 -5.24538e-13)
(-4.86929e-14 4.35487e-12 -1.58777e-12)
(-5.56423e-14 5.55091e-13 -1.24451e-12)
(-5.98916e-14 4.1999e-13 -9.79467e-13)
(-6.37712e-14 4.53964e-13 -7.14848e-13)
(-6.7178e-14 4.85065e-13 -4.27237e-13)
(-6.96436e-14 5.01115e-13 -1.09774e-13)
(-7.09312e-14 4.33256e-13 2.61725e-13)
(-7.00642e-14 -1.00417e-12 1.17493e-12)
(-5.17137e-14 -1.21189e-12 1.22459e-12)
(-3.84343e-14 3.93126e-12 -5.03566e-13)
(-4.18656e-14 4.27841e-12 -1.55453e-12)
(-4.89311e-14 5.47553e-13 -1.25055e-12)
(-5.3656e-14 4.18614e-13 -1.01786e-12)
(-5.78347e-14 4.57168e-13 -7.83881e-13)
(-6.15497e-14 4.94267e-13 -5.26036e-13)
(-6.45696e-14 5.18037e-13 -2.37249e-13)
(-6.66118e-14 4.6489e-13 1.04083e-13)
(-6.63777e-14 -9.08589e-13 9.73541e-13)
(-4.95373e-14 -1.12873e-12 1.05295e-12)
(-3.36462e-14 3.8628e-12 -4.83061e-13)
(-3.607e-14 4.20394e-12 -1.51984e-12)
(-4.32123e-14 5.34566e-13 -1.25058e-12)
(-4.80933e-14 4.11388e-13 -1.04732e-12)
(-5.25824e-14 4.55151e-13 -8.4134e-13)
(-5.65743e-14 4.97826e-13 -6.10777e-13)
(-5.99379e-14 5.27755e-13 -3.48859e-13)
(-6.23843e-14 4.87538e-13 -3.4654e-14)
(-6.29629e-14 -8.25442e-13 7.90411e-13)
(-4.76342e-14 -1.05466e-12 8.95144e-13)
(-3.00028e-14 3.79798e-12 -4.62997e-13)
(-3.10829e-14 4.13152e-12 -1.48463e-12)
(-3.80819e-14 5.18772e-13 -1.24573e-12)
(-4.30341e-14 4.00257e-13 -1.06888e-12)
(-4.77383e-14 4.47291e-13 -8.87844e-13)
(-5.21311e-14 4.9526e-13 -6.82911e-13)
(-5.57982e-14 5.31761e-13 -4.46342e-13)
(-5.85269e-14 5.0265e-13 -1.57445e-13)
(-5.97797e-14 -7.53421e-13 6.24005e-13)
(-4.58056e-14 -9.88781e-13 7.50141e-13)
(-1.48768e-12 3.74024e-12 -4.43407e-13)
(-7.96052e-14 4.06506e-12 -1.44961e-12)
(-3.4142e-14 5.00496e-13 -1.2376e-12)
(-3.8662e-14 3.85412e-13 -1.08376e-12)
(-4.34536e-14 4.35184e-13 -9.25498e-13)
(-4.79041e-14 4.87734e-13 -7.44361e-13)
(-5.1909e-14 5.30721e-13 -5.31462e-13)
(-5.50774e-14 5.11798e-13 -2.66814e-13)
(-5.67517e-14 -6.90977e-13 4.73067e-13)
(-4.4008e-14 -9.30082e-13 6.16368e-13)
(-2.68573e-09 1.17632e-11 2.44744e-13)
(-1.04001e-10 1.24163e-11 -1.77573e-12)
(-1.1757e-12 7.86032e-13 -1.25236e-12)
(-3.79264e-14 3.71321e-13 -1.09352e-12)
(-4.20199e-14 4.21086e-13 -9.56459e-13)
(-4.69429e-14 4.76915e-13 -7.96125e-13)
(-5.10539e-14 5.23905e-13 -6.05408e-13)
(-5.45422e-14 5.15176e-13 -3.64544e-13)
(-5.68454e-14 -6.36369e-13 3.35911e-13)
(-4.51845e-14 -8.78008e-13 4.93426e-13)
(4.29508e-07 1.48352e-08 1.03957e-09)
(-5.25793e-08 1.54881e-08 -7.4497e-10)
(-1.12617e-09 6.02209e-10 -5.33171e-11)
(-1.33475e-11 6.99094e-12 -1.91897e-12)
(-6.94625e-14 4.05545e-13 -9.78601e-13)
(1.81944e-14 4.60964e-13 -8.39343e-13)
(1.85667e-14 5.14914e-13 -6.69618e-13)
(2.00405e-14 5.1285e-13 -4.50148e-13)
(2.49361e-14 -5.90761e-13 2.12244e-13)
(9.93907e-14 -8.31456e-13 3.78796e-13)
(-5.78706e-15 5.31395e-12 -4.41455e-13)
(-7.44945e-15 5.32862e-12 -1.25939e-12)
(-6.8934e-15 -2.36833e-15 -8.28069e-13)
(-5.22041e-15 -2.33909e-13 -5.11665e-13)
(-3.13399e-15 -1.99368e-13 -2.34941e-13)
(-1.1194e-15 -1.69853e-13 2.0243e-14)
(1.12479e-15 -1.52924e-13 2.59155e-13)
(3.69527e-15 -2.071e-13 4.96169e-13)
(5.47152e-15 -1.31575e-12 9.41471e-13)
(-5.08795e-15 -1.18502e-12 8.19695e-13)
(-3.77731e-14 5.24115e-12 -4.45417e-13)
(-4.85538e-14 5.30247e-12 -1.26149e-12)
(-4.23639e-14 6.61036e-14 -8.71704e-13)
(-3.57911e-14 -1.68924e-13 -5.80768e-13)
(-2.95107e-14 -1.39213e-13 -3.2226e-13)
(-2.40158e-14 -1.1449e-13 -7.8673e-14)
(-1.87401e-14 -9.95834e-14 1.53978e-13)
(-1.36733e-14 -1.60537e-13 3.88406e-13)
(-9.26272e-15 -1.35833e-12 8.55587e-13)
(-1.44669e-14 -1.24281e-12 7.59444e-13)
(-5.54094e-14 5.17215e-12 -4.34431e-13)
(-6.52237e-14 5.27456e-12 -1.24894e-12)
(-6.02557e-14 1.25046e-13 -8.98995e-13)
(-5.45669e-14 -1.12183e-13 -6.35278e-13)
(-4.93763e-14 -8.61379e-14 -3.9588e-13)
(-4.45788e-14 -6.43439e-14 -1.66746e-13)
(-4.00413e-14 -5.20446e-14 5.54427e-14)
(-3.54795e-14 -1.12417e-13 2.84059e-13)
(-3.0595e-14 -1.28734e-12 7.44946e-13)
(-1.93186e-14 -1.19485e-12 6.75667e-13)
(-4.89643e-14 5.10527e-12 -4.22192e-13)
(-5.81454e-14 5.24194e-12 -1.23301e-12)
(-5.45168e-14 1.73713e-13 -9.19298e-13)
(-4.99548e-14 -6.51731e-14 -6.79707e-13)
(-4.57536e-14 -4.20522e-14 -4.60121e-13)
(-4.17775e-14 -2.22387e-14 -2.4548e-13)
(-3.79974e-14 -1.00162e-14 -3.39108e-14)
(-3.39039e-14 -6.88765e-14 1.87406e-13)
(-2.95884e-14 -1.22291e-12 6.40974e-13)
(-1.89171e-14 -1.15051e-12 5.95396e-13)
(-4.3379e-14 5.0416e-12 -4.09115e-13)
(-5.19346e-14 5.20641e-12 -1.21448e-12)
(-4.9422e-14 2.12027e-13 -9.32883e-13)
(-4.57733e-14 -2.6368e-14 -7.16929e-13)
(-4.23123e-14 -4.70484e-15 -5.15405e-13)
(-3.9178e-14 1.39814e-14 -3.15257e-13)
(-3.58527e-14 2.60733e-14 -1.14846e-13)
(-3.25922e-14 -3.06204e-14 9.76933e-14)
(-2.85864e-14 -1.1624e-12 5.42961e-13)
(-1.83971e-14 -1.10871e-12 5.19174e-13)
(-3.86073e-14 4.98016e-12 -3.95579e-13)
(-4.65606e-14 5.16821e-12 -1.1939e-12)
(-4.48776e-14 2.4346e-13 -9.41698e-13)
(-4.19259e-14 6.28918e-15 -7.47083e-13)
(-3.9304e-14 2.56671e-14 -5.63461e-13)
(-3.66628e-14 4.43489e-14 -3.77347e-13)
(-3.38846e-14 5.66713e-14 -1.88605e-13)
(-3.12055e-14 2.67461e-15 1.4968e-14)
(-2.76157e-14 -1.10582e-12 4.50795e-13)
(-1.80239e-14 -1.06963e-12 4.46455e-13)
(-3.51008e-14 4.92191e-12 -3.82193e-13)
(-4.17487e-14 5.12935e-12 -1.17256e-12)
(-4.07626e-14 2.68383e-13 -9.46755e-13)
(-3.85514e-14 3.19776e-14 -7.72013e-13)
(-3.65999e-14 5.13859e-14 -6.05127e-13)
(-3.42812e-14 7.09306e-14 -4.33332e-13)
(-3.20976e-14 8.27026e-14 -2.55421e-13)
(-2.98019e-14 3.18327e-14 -6.12232e-14)
(-2.65979e-14 -1.05431e-12 3.63907e-13)
(-1.76176e-14 -1.03363e-12 3.77076e-13)
(-1.62739e-12 4.87022e-12 -3.68315e-13)
(-9.51529e-14 5.09344e-12 -1.15027e-12)
(-3.78958e-14 2.87481e-13 -9.4797e-13)
(-3.54997e-14 5.27347e-14 -7.91513e-13)
(-3.38016e-14 7.25946e-14 -6.41157e-13)
(-3.22496e-14 9.27798e-14 -4.82918e-13)
(-3.05022e-14 1.0455e-13 -3.16353e-13)
(-2.85252e-14 5.77742e-14 -1.32153e-13)
(-2.57531e-14 -1.00642e-12 2.82517e-13)
(-1.72029e-14 -1.00028e-12 3.10803e-13)
(-2.9083e-09 1.43196e-11 6.43773e-14)
(-9.69396e-11 1.4844e-11 -1.39114e-12)
(-1.40188e-12 6.56677e-13 -9.65326e-13)
(-4.62246e-14 7.52411e-14 -8.07783e-13)
(-3.43306e-14 8.93066e-14 -6.71921e-13)
(-3.31631e-14 1.09306e-13 -5.26748e-13)
(-3.17274e-14 1.23481e-13 -3.71958e-13)
(-3.011e-14 7.99493e-14 -1.97559e-13)
(-2.7822e-14 -9.62543e-13 2.05718e-13)
(-1.94835e-14 -9.68757e-13 2.47238e-13)
(6.82297e-07 1.73731e-08 6.19549e-10)
(-1.39636e-08 1.78649e-08 -5.54336e-10)
(-4.56897e-10 5.96757e-10 -3.26421e-11)
(-7.72527e-12 8.50363e-12 -1.44444e-12)
(-5.17872e-14 1.68718e-13 -7.03379e-13)
(3.70917e-14 1.24542e-13 -5.66171e-13)
(3.97107e-14 1.38925e-13 -4.22047e-13)
(4.22409e-14 9.84869e-14 -2.57799e-13)
(5.08546e-14 -9.21054e-13 1.32947e-13)
(1.56886e-13 -9.38372e-13 1.85435e-13)
(-7.54367e-15 6.0014e-12 -2.14958e-13)
(-1.4039e-14 5.75815e-12 -5.30472e-13)
(-6.89057e-15 -3.96989e-13 -3.35431e-13)
(-6.84264e-16 -6.44985e-13 -1.96746e-13)
(4.49927e-15 -5.71175e-13 -8.08781e-14)
(8.63516e-15 -4.97508e-13 1.86046e-14)
(1.19201e-14 -4.41399e-13 1.04607e-13)
(1.48533e-14 -4.47885e-13 1.83216e-13)
(1.62544e-14 -1.32367e-12 3.10096e-13)
(2.63948e-15 -1.06644e-12 2.26878e-13)
(-3.89561e-14 5.93716e-12 -2.18351e-13)
(-5.29689e-14 5.76501e-12 -5.33251e-13)
(-3.81138e-14 -2.99049e-13 -3.55342e-13)
(-2.52228e-14 -5.62145e-13 -2.26929e-13)
(-1.46558e-14 -5.0345e-13 -1.16161e-13)
(-5.98605e-15 -4.43596e-13 -1.94224e-14)
(1.04392e-15 -3.96621e-13 6.61458e-14)
(6.86625e-15 -4.16448e-13 1.46966e-13)
(1.08978e-14 -1.40074e-12 2.84395e-13)
(4.35847e-16 -1.15264e-12 2.12102e-13)
(-5.82893e-14 5.87821e-12 -2.14261e-13)
(-7.14226e-14 5.77223e-12 -5.28916e-13)
(-5.81267e-14 -2.07086e-13 -3.68504e-13)
(-4.64207e-14 -4.84205e-13 -2.50502e-13)
(-3.65583e-14 -4.38398e-13 -1.45945e-13)
(-2.83492e-14 -3.88367e-13 -5.32426e-14)
(-2.14633e-14 -3.51477e-13 3.10588e-14)
(-1.58231e-14 -3.78042e-13 1.11601e-13)
(-1.08179e-14 -1.35962e-12 2.50262e-13)
(-4.3898e-15 -1.13106e-12 1.8958e-13)
(-5.21326e-14 5.82076e-12 -2.08962e-13)
(-6.49881e-14 5.77268e-12 -5.22897e-13)
(-5.35968e-14 -1.27953e-13 -3.77994e-13)
(-4.32188e-14 -4.14436e-13 -2.6983e-13)
(-3.43839e-14 -3.7885e-13 -1.72583e-13)
(-2.7071e-14 -3.3885e-13 -8.40321e-14)
(-2.08001e-14 -3.09133e-13 -2.17161e-15)
(-1.5354e-14 -3.41611e-13 7.83705e-14)
(-1.05838e-14 -1.32011e-12 2.17644e-13)
(-4.3159e-15 -1.10949e-12 1.67178e-13)
(-4.68451e-14 5.76477e-12 -2.03149e-13)
(-5.92736e-14 5.76752e-12 -5.1557e-13)
(-4.9479e-14 -5.79909e-14 -3.85235e-13)
(-4.03789e-14 -3.5265e-13 -2.86526e-13)
(-3.24792e-14 -3.27031e-13 -1.95866e-13)
(-2.58297e-14 -2.94097e-13 -1.11751e-13)
(-1.99374e-14 -2.69807e-13 -3.26248e-14)
(-1.49136e-14 -3.06497e-13 4.68713e-14)
(-1.03162e-14 -1.28197e-12 1.86165e-13)
(-4.31269e-15 -1.0892e-12 1.45742e-13)
(-4.22154e-14 5.71121e-12 -1.96772e-13)
(-5.4161e-14 5.75881e-12 -5.07616e-13)
(-4.56916e-14 1.56426e-15 -3.90279e-13)
(-3.77543e-14 -2.98026e-13 -3.00171e-13)
(-3.06387e-14 -2.7858e-13 -2.16046e-13)
(-2.44909e-14 -2.51948e-13 -1.36971e-13)
(-1.91476e-14 -2.33213e-13 -6.05978e-14)
(-1.4492e-14 -2.7435e-13 1.68032e-14)
(-1.00007e-14 -1.24571e-12 1.55982e-13)
(-4.29184e-15 -1.06961e-12 1.24884e-13)
(-3.87985e-14 5.65944e-12 -1.90295e-13)
(-4.9654e-14 5.74684e-12 -4.98847e-13)
(-4.23227e-14 5.45826e-14 -3.93441e-13)
(-3.52633e-14 -2.49568e-13 -3.11599e-13)
(-2.88593e-14 -2.35723e-13 -2.34571e-13)
(-2.33723e-14 -2.14572e-13 -1.59614e-13)
(-1.85337e-14 -2.00331e-13 -8.65417e-14)
(-1.39838e-14 -2.42741e-13 -1.12582e-14)
(-9.82799e-15 -1.21055e-12 1.26975e-13)
(-4.21426e-15 -1.05146e-12 1.04563e-13)
(-1.70272e-12 5.61397e-12 -1.83723e-13)
(-1.05047e-13 5.73656e-12 -4.89491e-13)
(-4.02229e-14 1.00336e-13 -3.95085e-13)
(-3.31705e-14 -2.05871e-13 -3.21138e-13)
(-2.73621e-14 -1.96723e-13 -2.50631e-13)
(-2.23268e-14 -1.80499e-13 -1.79884e-13)
(-1.77369e-14 -1.68161e-13 -1.10509e-13)
(-1.35787e-14 -2.13887e-13 -3.80778e-14)
(-9.64115e-15 -1.17747e-12 9.95319e-14)
(-4.04056e-15 -1.03273e-12 8.46604e-14)
(-3.02309e-09 1.59008e-11 -3.76953e-14)
(-8.94524e-11 1.6296e-11 -5.78621e-13)
(-1.43756e-12 5.17641e-13 -4.02389e-13)
(-5.03616e-14 -1.62014e-13 -3.28783e-13)
(-2.90316e-14 -1.61229e-13 -2.64182e-13)
(-2.40943e-14 -1.48124e-13 -1.99137e-13)
(-1.99137e-14 -1.39854e-13 -1.33195e-13)
(-1.60346e-14 -1.86607e-13 -6.31274e-14)
(-1.21606e-14 -1.14414e-12 7.2631e-14)
(-6.49027e-15 -1.01489e-12 6.51007e-14)
(8.37957e-07 1.88484e-08 1.97346e-10)
(1.51179e-08 1.92015e-08 -2.08634e-10)
(1.93137e-10 5.68648e-10 -1.07867e-11)
(1.75188e-12 8.76648e-12 -5.58275e-13)
(5.83365e-14 -2.45494e-14 -2.79786e-13)
(5.05078e-14 -1.17838e-13 -2.16335e-13)
(5.28226e-14 -1.12569e-13 -1.53735e-13)
(5.5862e-14 -1.60373e-13 -8.69434e-14)
(6.91834e-14 -1.11136e-12 4.67773e-14)
(3.29537e-13 -9.95938e-13 4.53071e-14)
(-7.69855e-15 6.0097e-12 5.75113e-14)
(-1.42504e-14 5.73899e-12 3.5173e-13)
(-6.51683e-15 -4.50037e-13 2.2215e-13)
(1.30883e-16 -6.88586e-13 1.37189e-13)
(5.44399e-15 -6.0691e-13 6.49179e-14)
(9.74072e-15 -5.26895e-13 7.69987e-16)
(1.31995e-14 -4.63246e-13 -5.79475e-14)
(1.59037e-14 -4.60569e-13 -1.14967e-13)
(1.71962e-14 -1.26456e-12 -2.27039e-13)
(2.72729e-15 -1.00831e-12 -2.59949e-13)
(-3.90601e-14 5.94545e-12 6.08296e-14)
(-5.31824e-14 5.74813e-12 3.54574e-13)
(-3.73319e-14 -3.48219e-13 2.34829e-13)
(-2.38371e-14 -6.04286e-13 1.55128e-13)
(-1.2982e-14 -5.39054e-13 8.60662e-14)
(-4.07243e-15 -4.72146e-13 2.32769e-14)
(3.04163e-15 -4.19792e-13 -3.5225e-14)
(8.72084e-15 -4.31973e-13 -9.28037e-14)
(1.25479e-14 -1.34818e-12 -2.13919e-13)
(4.72397e-16 -1.09952e-12 -2.46838e-13)
(-5.88005e-14 5.88674e-12 6.15161e-14)
(-7.20334e-14 5.75849e-12 3.55031e-13)
(-5.77993e-14 -2.52155e-13 2.45324e-13)
(-4.54382e-14 -5.24286e-13 1.71647e-13)
(-3.51979e-14 -4.72777e-13 1.06218e-13)
(-2.67311e-14 -4.17505e-13 4.59666e-14)
(-1.98676e-14 -3.75298e-13 -1.0981e-14)
(-1.42133e-14 -3.94348e-13 -6.87282e-14)
(-9.41336e-15 -1.31335e-12 -1.89841e-13)
(-4.53687e-15 -1.0827e-12 -2.23804e-13)
(-5.28091e-14 5.82952e-12 6.18372e-14)
(-6.56788e-14 5.76123e-12 3.54489e-13)
(-5.3463e-14 -1.68695e-13 2.53922e-13)
(-4.25378e-14 -4.51656e-13 1.86082e-13)
(-3.32583e-14 -4.12006e-13 1.24676e-13)
(-2.55926e-14 -3.67358e-13 6.70445e-14)
(-1.91673e-14 -3.33647e-13 1.17796e-14)
(-1.38386e-14 -3.59518e-13 -4.57572e-14)
(-9.24526e-15 -1.27982e-12 -1.66632e-13)
(-4.48394e-15 -1.06571e-12 -2.01022e-13)
(-4.75378e-14 5.77431e-12 6.20565e-14)
(-5.99443e-14 5.75914e-12 3.52968e-13)
(-4.94107e-14 -9.57837e-14 2.60966e-13)
(-3.97785e-14 -3.87854e-13 1.98679e-13)
(-3.15428e-14 -3.57723e-13 1.41029e-13)
(-2.45566e-14 -3.2126e-13 8.59826e-14)
(-1.85765e-14 -2.94544e-13 3.25366e-14)
(-1.34766e-14 -3.257e-13 -2.37736e-14)
(-8.99741e-15 -1.24741e-12 -1.44093e-13)
(-4.45189e-15 -1.04996e-12 -1.79136e-13)
(-4.29884e-14 5.72121e-12 6.18261e-14)
(-5.49436e-14 5.75251e-12 3.50789e-13)
(-4.58585e-14 -3.22573e-14 2.66834e-13)
(-3.72804e-14 -3.30947e-13 2.09401e-13)
(-2.97948e-14 -3.08651e-13 1.55883e-13)
(-2.34641e-14 -2.78883e-13 1.03773e-13)
(-1.79152e-14 -2.57703e-13 5.25382e-14)
(-1.3146e-14 -2.9344e-13 -2.74717e-15)
(-8.79914e-15 -1.21635e-12 -1.22651e-13)
(-4.41289e-15 -1.03469e-12 -1.57846e-13)
(-3.95969e-14 5.66996e-12 6.16721e-14)
(-5.05348e-14 5.74267e-12 3.48298e-13)
(-4.25945e-14 2.38083e-14 2.71664e-13)
(-3.49664e-14 -2.79356e-13 2.19088e-13)
(-2.8168e-14 -2.63925e-13 1.69465e-13)
(-2.24778e-14 -2.40253e-13 1.20122e-13)
(-1.73191e-14 -2.23921e-13 7.0667e-14)
(-1.27351e-14 -2.62954e-13 1.71571e-14)
(-8.64247e-15 -1.18616e-12 -1.01667e-13)
(-4.31673e-15 -1.02028e-12 -1.37319e-13)
(-1.70344e-12 5.62443e-12 6.11628e-14)
(-1.0591e-13 5.73402e-12 3.45237e-13)
(-4.04764e-14 7.31994e-14 2.75606e-13)
(-3.29531e-14 -2.33542e-13 2.27292e-13)
(-2.6765e-14 -2.23901e-13 1.81612e-13)
(-2.13965e-14 -2.04945e-13 1.34915e-13)
(-1.6669e-14 -1.91179e-13 8.78565e-14)
(-1.23566e-14 -2.33869e-13 3.64593e-14)
(-8.4712e-15 -1.15741e-12 -8.17241e-14)
(-4.15809e-15 -1.00568e-12 -1.17077e-13)
(-3.02309e-09 1.59113e-11 -7.88498e-14)
(-8.94533e-11 1.62952e-11 4.40439e-13)
(-1.43787e-12 4.93074e-13 2.85237e-13)
(-5.0295e-14 -1.87116e-13 2.34324e-13)
(-2.84687e-14 -1.85632e-13 1.92106e-13)
(-2.31795e-14 -1.71554e-13 1.48912e-13)
(-1.88963e-14 -1.62276e-13 1.04063e-13)
(-1.48719e-14 -2.06789e-13 5.43586e-14)
(-1.10717e-14 -1.12891e-12 -6.21503e-14)
(-6.47396e-15 -9.91616e-13 -9.701e-14)
(8.37957e-07 1.88484e-08 -1.97457e-10)
(1.51179e-08 1.92015e-08 2.08501e-10)
(1.93137e-10 5.68627e-10 1.06721e-11)
(1.75235e-12 8.7437e-12 4.63372e-13)
(5.89719e-14 -4.69473e-14 2.05179e-13)
(5.1289e-14 -1.40034e-13 1.61645e-13)
(5.36552e-14 -1.3461e-13 1.18993e-13)
(5.68194e-14 -1.80454e-13 7.14587e-14)
(7.17988e-14 -1.09917e-12 -4.32295e-14)
(3.70164e-13 -9.75478e-13 -7.76986e-14)
(-6.54712e-15 5.32921e-12 2.98653e-13)
(-8.05641e-15 5.27004e-12 1.10621e-12)
(-5.81342e-15 -1.47897e-13 7.20679e-13)
(-2.7879e-15 -3.5921e-13 4.53145e-13)
(8.3787e-17 -3.06073e-13 2.20692e-13)
(2.6964e-15 -2.5668e-13 6.22175e-15)
(5.07112e-15 -2.22614e-13 -1.95017e-13)
(7.49047e-15 -2.50822e-13 -3.95098e-13)
(8.90701e-15 -1.12258e-12 -7.67815e-13)
(-4.67541e-15 -9.95215e-13 -8.02502e-13)
(-3.86028e-14 5.2584e-12 3.07656e-13)
(-4.92337e-14 5.25297e-12 1.11098e-12)
(-4.03113e-14 -6.67515e-14 7.59337e-13)
(-3.16577e-14 -2.8696e-13 5.11162e-13)
(-2.41637e-14 -2.42631e-13 2.91829e-13)
(-1.77435e-14 -2.01403e-13 8.58576e-14)
(-1.22704e-14 -1.73304e-13 -1.10987e-13)
(-7.17297e-15 -2.10924e-13 -3.10373e-13)
(-3.40634e-15 -1.189e-12 -7.0783e-13)
(-1.43014e-14 -1.07078e-12 -7.49344e-13)
(-5.72445e-14 5.19132e-12 3.04314e-13)
(-6.69387e-14 5.23404e-12 1.10411e-12)
(-5.93961e-14 4.77784e-15 7.86881e-13)
(-5.20074e-14 -2.22787e-13 5.59544e-13)
(-4.53659e-14 -1.85622e-13 3.55335e-13)
(-3.97173e-14 -1.50448e-13 1.60576e-13)
(-3.47803e-14 -1.26504e-13 -2.82136e-14)
(-2.99386e-14 -1.66296e-13 -2.23282e-13)
(-2.55518e-14 -1.1405e-12 -6.18059e-13)
(-1.96814e-14 -1.03985e-12 -6.69105e-13)
(-5.10129e-14 5.12641e-12 2.99335e-13)
(-6.01161e-14 5.21003e-12 1.09439e-12)
(-5.41319e-14 6.40059e-14 8.07511e-13)
(-4.78842e-14 -1.67965e-13 6.00285e-13)
(-4.22349e-14 -1.35848e-13 4.11699e-13)
(-3.74129e-14 -1.06272e-13 2.28406e-13)
(-3.30928e-14 -8.44365e-14 4.77259e-14)
(-2.88412e-14 -1.25662e-13 -1.4178e-13)
(-2.48405e-14 -1.09604e-12 -5.33377e-13)
(-1.9237e-14 -1.01126e-12 -5.92616e-13)
(-4.56152e-14 5.06427e-12 2.93533e-13)
(-5.40734e-14 5.18217e-12 1.08227e-12)
(-4.94363e-14 1.14204e-13 8.23529e-13)
(-4.41636e-14 -1.21006e-13 6.34546e-13)
(-3.94225e-14 -9.37647e-14 4.60597e-13)
(-3.52829e-14 -6.75964e-14 2.88616e-13)
(-3.1433e-14 -4.82004e-14 1.17034e-13)
(-2.77984e-14 -8.98298e-14 -6.59962e-14)
(-2.402e-14 -1.05404e-12 -4.52905e-13)
(-1.87608e-14 -9.84501e-13 -5.19555e-13)
(-4.09216e-14 5.00482e-12 2.87219e-13)
(-4.87987e-14 5.15146e-12 1.06847e-12)
(-4.51946e-14 1.55052e-13 8.34734e-13)
(-4.08427e-14 -8.12746e-14 6.63464e-13)
(-3.68861e-14 -5.70726e-14 5.03929e-13)
(-3.32618e-14 -3.36066e-14 3.43156e-13)
(-2.98921e-14 -1.57089e-14 1.80305e-13)
(-2.67502e-14 -5.6942e-14 4.63455e-15)
(-2.32221e-14 -1.01532e-12 -3.76582e-13)
(-1.83028e-14 -9.60374e-13 -4.49983e-13)
(-3.74529e-14 4.94776e-12 2.80146e-13)
(-4.41215e-14 5.11898e-12 1.05323e-12)
(-4.14271e-14 1.89594e-13 8.42216e-13)
(-3.77474e-14 -4.79301e-14 6.87622e-13)
(-3.44232e-14 -2.58708e-14 5.4194e-13)
(-3.13163e-14 -3.6782e-15 3.92591e-13)
(-2.84388e-14 1.20242e-14 2.38691e-13)
(-2.5734e-14 -2.80205e-14 7.04989e-14)
(-2.25854e-14 -9.7911e-13 -3.04574e-13)
(-1.78805e-14 -9.37867e-13 -3.8329e-13)
(-1.62982e-12 4.89728e-12 2.72848e-13)
(-9.7566e-14 5.08866e-12 1.03703e-12)
(-3.87906e-14 2.1759e-13 8.46655e-13)
(-3.49419e-14 -1.89707e-14 7.07874e-13)
(-3.20713e-14 1.15336e-15 5.75357e-13)
(-2.96184e-14 2.16586e-14 4.36669e-13)
(-2.71094e-14 3.65509e-14 2.92204e-13)
(-2.47299e-14 -2.33227e-15 1.31605e-13)
(-2.19509e-14 -9.4605e-13 -2.36344e-13)
(-1.75618e-14 -9.1708e-13 -3.19655e-13)
(-2.9083e-09 1.43479e-11 -1.53429e-13)
(-9.6942e-11 1.48446e-11 1.28379e-12)
(-1.40282e-12 5.95417e-13 8.67354e-13)
(-4.5781e-14 1.01705e-14 7.24256e-13)
(-3.29614e-14 2.32336e-14 6.04245e-13)
(-3.0805e-14 4.31069e-14 4.7691e-13)
(-2.86424e-14 5.79751e-14 3.4172e-13)
(-2.65049e-14 2.03627e-14 1.89116e-13)
(-2.40952e-14 -9.15877e-13 -1.71516e-13)
(-1.96499e-14 -8.98413e-13 -2.58623e-13)
(6.82297e-07 1.73731e-08 -6.19633e-10)
(-1.39636e-08 1.78649e-08 5.54234e-10)
(-4.56896e-10 5.96704e-10 3.25478e-11)
(-7.72386e-12 8.44504e-12 1.36168e-12)
(-4.99259e-14 1.07729e-13 6.34251e-13)
(3.93938e-14 6.24742e-14 5.12568e-13)
(4.21603e-14 7.69505e-14 3.86274e-13)
(4.49949e-14 4.04796e-14 2.4187e-13)
(5.63689e-14 -8.86436e-13 -1.10187e-13)
(2.16412e-13 -8.78972e-13 -1.99061e-13)
(-4.6295e-15 4.26357e-12 4.64695e-13)
(8.82449e-16 4.50401e-12 1.54931e-12)
(-5.19172e-15 3.27038e-13 1.06814e-12)
(-7.9178e-15 1.79362e-13 7.19959e-13)
(-9.87998e-15 2.13373e-13 3.92888e-13)
(-1.1205e-14 2.39489e-13 6.12806e-14)
(-1.1556e-14 2.4809e-13 -2.82514e-13)
(-1.10888e-14 1.8363e-13 -6.61909e-13)
(-1.04446e-14 -8.7456e-13 -1.42788e-12)
(-2.23806e-14 -1.03215e-12 -1.61821e-12)
(-3.76746e-14 4.18464e-12 4.71841e-13)
(-4.34924e-14 4.44537e-12 1.54491e-12)
(-4.57798e-14 3.68052e-13 1.1133e-12)
(-4.52792e-14 2.23266e-13 7.98514e-13)
(-4.4832e-14 2.57716e-13 4.99813e-13)
(-4.43755e-14 2.86968e-13 1.9249e-13)
(-4.35757e-14 2.99338e-13 -1.30793e-13)
(-4.19401e-14 2.36446e-13 -4.94181e-13)
(-4.00008e-14 -9.07678e-13 -1.28183e-12)
(-4.88606e-14 -1.06994e-12 -1.47312e-12)
(-5.41229e-14 4.10748e-12 4.60826e-13)
(-5.8985e-14 4.38226e-12 1.52424e-12)
(-6.21626e-14 3.94349e-13 1.14029e-12)
(-6.28144e-14 2.53323e-13 8.59632e-13)
(-6.3442e-14 2.89092e-13 5.90298e-13)
(-6.4043e-14 3.20158e-13 3.09382e-13)
(-6.43013e-14 3.37747e-13 9.97834e-15)
(-6.36336e-14 2.85152e-13 -3.29733e-13)
(-6.1763e-14 -8.33789e-13 -1.09228e-12)
(-5.38449e-14 -1.00582e-12 -1.29015e-12)
(-4.75643e-14 4.0333e-12 4.48423e-13)
(-5.15498e-14 4.31764e-12 1.49997e-12)
(-5.53741e-14 4.11458e-13 1.15792e-12)
(-5.6667e-14 2.73496e-13 9.08179e-13)
(-5.7964e-14 3.10764e-13 6.67118e-13)
(-5.91747e-14 3.45493e-13 4.11262e-13)
(-5.99964e-14 3.6799e-13 1.35035e-13)
(-6.01339e-14 3.2406e-13 -1.81324e-13)
(-5.89234e-14 -7.68713e-13 -9.18535e-13)
(-5.16871e-14 -9.48769e-13 -1.12164e-12)
(-4.19815e-14 3.96341e-12 4.35352e-13)
(-4.49694e-14 4.25256e-12 1.47331e-12)
(-4.93055e-14 4.21044e-13 1.16858e-12)
(-5.11802e-14 2.87096e-13 9.47447e-13)
(-5.30632e-14 3.25651e-13 7.31578e-13)
(-5.46598e-14 3.62711e-13 4.9961e-13)
(-5.59867e-14 3.89112e-13 2.45401e-13)
(-5.67334e-14 3.54639e-13 -4.90116e-14)
(-5.62688e-14 -7.1198e-13 -7.58865e-13)
(-4.96541e-14 -8.98623e-13 -9.6605e-13)
(-3.71223e-14 3.89743e-12 4.21371e-13)
(-3.93048e-14 4.1885e-12 1.44489e-12)
(-4.3869e-14 4.23999e-13 1.17292e-12)
(-4.63592e-14 2.93024e-13 9.77415e-13)
(-4.86513e-14 3.33936e-13 7.85673e-13)
(-5.07706e-14 3.74946e-13 5.7635e-13)
(-5.23894e-14 4.04784e-13 3.43406e-13)
(-5.36254e-14 3.77081e-13 6.93346e-14)
(-5.36377e-14 -6.63203e-13 -6.12402e-13)
(-4.77873e-14 -8.54057e-13 -8.22346e-13)
(-3.34435e-14 3.83474e-12 4.07527e-13)
(-3.43404e-14 4.12533e-12 1.41545e-12)
(-3.90914e-14 4.22162e-13 1.17308e-12)
(-4.20027e-14 2.94255e-13 1.00079e-12)
(-4.4574e-14 3.36711e-13 8.30341e-13)
(-4.70546e-14 3.80586e-13 6.42765e-13)
(-4.91814e-14 4.14437e-13 4.30256e-13)
(-5.05887e-14 3.94767e-13 1.76057e-13)
(-5.11715e-14 -6.21242e-13 -4.78482e-13)
(-4.5947e-14 -8.16317e-13 -6.90176e-13)
(-1.49118e-12 3.77885e-12 3.93312e-13)
(-8.28924e-14 4.06685e-12 1.38586e-12)
(-3.54504e-14 4.16031e-13 1.16882e-12)
(-3.79854e-14 2.90838e-13 1.01801e-12)
(-4.0887e-14 3.35666e-13 8.68186e-13)
(-4.36215e-14 3.81785e-13 6.99884e-13)
(-4.61168e-14 4.20089e-13 5.07111e-13)
(-4.79027e-14 4.06673e-13 2.72517e-13)
(-4.90271e-14 -5.86164e-13 -3.56334e-13)
(-4.41867e-14 -7.82437e-13 -5.67596e-13)
(-2.68574e-09 1.18038e-11 -2.90213e-13)
(-1.04005e-10 1.24259e-11 1.71689e-12)
(-1.17722e-12 7.13719e-13 1.18824e-12)
(-3.74271e-14 2.87699e-13 1.03081e-12)
(-3.98435e-14 3.30273e-13 8.99157e-13)
(-4.31657e-14 3.78724e-13 7.49205e-13)
(-4.58467e-14 4.20104e-13 5.74974e-13)
(-4.80633e-14 4.13533e-13 3.59211e-13)
(-4.95755e-14 -5.55472e-13 -2.43891e-13)
(-4.5249e-14 -7.53215e-13 -4.54831e-13)
(4.29508e-07 1.48352e-08 -1.03961e-09)
(-5.25793e-08 1.54881e-08 7.44915e-10)
(-1.12617e-09 6.02147e-10 5.32571e-11)
(-1.33456e-11 6.91804e-12 1.8591e-12)
(-6.67306e-14 3.24293e-13 9.22227e-13)
(2.17832e-14 3.7099e-13 7.90628e-13)
(2.27566e-14 4.17471e-13 6.34004e-13)
(2.48687e-14 4.15741e-13 4.3628e-13)
(3.12511e-14 -5.30864e-13 -1.4187e-13)
(1.22421e-13 -7.27876e-13 -3.49499e-13)
(-2.39477e-15 3.1697e-12 5.44898e-13)
(8.6492e-15 3.64266e-12 1.66602e-12)
(-4.62959e-15 7.63509e-13 1.23563e-12)
(-1.37028e-14 7.31069e-13 9.16831e-13)
(-2.23165e-14 8.06831e-13 5.74443e-13)
(-3.03223e-14 8.7579e-13 1.72484e-13)
(-3.74198e-14 9.21571e-13 -3.18158e-13)
(-4.27885e-14 8.7388e-13 -9.54162e-13)
(-4.74942e-14 -4.6294e-13 -2.41536e-12)
(-5.90053e-14 -1.15462e-12 -3.1837e-12)
(-3.60896e-14 3.08682e-12 5.43269e-13)
(-3.85372e-14 3.54659e-12 1.64561e-12)
(-5.15387e-14 7.52268e-13 1.26849e-12)
(-6.10804e-14 7.2662e-13 9.93762e-13)
(-7.10439e-14 8.08874e-13 6.96516e-13)
(-8.12572e-14 8.88596e-13 3.44728e-13)
(-9.11264e-14 9.50204e-13 -8.87958e-14)
(-9.99375e-14 9.21824e-13 -6.60134e-13)
(-1.0776e-13 -4.61665e-13 -2.08954e-12)
(-1.17637e-13 -1.11839e-12 -2.79627e-12)
(-5.0158e-14 3.00297e-12 5.22432e-13)
(-5.17208e-14 3.44439e-12 1.60744e-12)
(-6.4825e-14 7.25354e-13 1.27933e-12)
(-7.50151e-14 7.05675e-13 1.0465e-12)
(-8.56419e-14 7.92729e-13 7.93389e-13)
(-9.65931e-14 8.80647e-13 4.90654e-13)
(-1.07461e-13 9.54392e-13 1.12916e-13)
(-1.17852e-13 9.4829e-13 -3.9123e-13)
(-1.26274e-13 -3.66049e-13 -1.72295e-12)
(-1.18819e-13 -9.9191e-13 -2.38153e-12)
(-4.34427e-14 2.92466e-12 5.01314e-13)
(-4.36551e-14 3.34637e-12 1.56668e-12)
(-5.62734e-14 6.93964e-13 1.28096e-12)
(-6.62457e-14 6.77394e-13 1.08404e-12)
(-7.66393e-14 7.68682e-13 8.69454e-13)
(-8.74586e-14 8.63561e-13 6.10198e-13)
(-9.82674e-14 9.46426e-13 2.82043e-13)
(-1.08633e-13 9.59832e-13 -1.62492e-13)
(-1.17913e-13 -2.8866e-13 -1.39917e-12)
(-1.1135e-13 -8.86153e-13 -2.0174e-12)
(-3.76247e-14 2.85187e-12 4.80195e-13)
(-3.67009e-14 3.25222e-12 1.5248e-12)
(-4.88834e-14 6.59261e-13 1.27497e-12)
(-5.85354e-14 6.4618e-13 1.10993e-12)
(-6.86084e-14 7.39287e-13 9.28484e-13)
(-7.92372e-14 8.38788e-13 7.07646e-13)
(-8.98755e-14 9.30403e-13 4.2386e-13)
(-9.99743e-14 9.57373e-13 3.11439e-14)
(-1.10224e-13 -2.30123e-13 -1.11782e-12)
(-1.04492e-13 -7.97684e-13 -1.69723e-12)
(-3.2705e-14 2.78362e-12 4.59117e-13)
(-3.07619e-14 3.16223e-12 1.48279e-12)
(-4.24976e-14 6.22635e-13 1.26395e-12)
(-5.17823e-14 6.11093e-13 1.1258e-12)
(-6.15285e-14 7.058e-13 9.73991e-13)
(-7.19203e-14 8.09119e-13 7.87072e-13)
(-8.23895e-14 9.08019e-13 5.43443e-13)
(-9.23273e-14 9.45287e-13 1.97265e-13)
(-1.0291e-13 -1.86342e-13 -8.7245e-13)
(-9.80942e-14 -7.24245e-13 -1.41525e-12)
(-2.90544e-14 2.72034e-12 4.39232e-13)
(-2.57444e-14 3.07636e-12 1.44106e-12)
(-3.69219e-14 5.84948e-13 1.24894e-12)
(-4.58968e-14 5.75335e-13 1.13413e-12)
(-5.53088e-14 6.69507e-13 1.00793e-12)
(-6.5293e-14 7.74583e-13 8.50108e-13)
(-7.5571e-14 8.79923e-13 6.42764e-13)
(-8.56258e-14 9.25784e-13 3.38797e-13)
(-9.60939e-14 -1.54284e-13 -6.57957e-13)
(-9.22436e-14 -6.64146e-13 -1.16729e-12)
(-1.30808e-12 2.66347e-12 4.19403e-13)
(-6.63195e-14 2.99781e-12 1.40019e-12)
(-3.22004e-14 5.46987e-13 1.23083e-12)
(-4.06462e-14 5.37085e-13 1.13588e-12)
(-4.98057e-14 6.32022e-13 1.03267e-12)
(-5.94214e-14 7.38412e-13 9.01062e-13)
(-6.94858e-14 8.46327e-13 7.24744e-13)
(-7.95589e-14 9.00286e-13 4.60047e-13)
(-8.99231e-14 -1.31487e-13 -4.69758e-13)
(-8.67699e-14 -6.15564e-13 -9.48442e-13)
(-2.38263e-09 9.03899e-12 -4.39675e-13)
(-1.0252e-10 9.69984e-12 1.74667e-12)
(-7.54898e-13 7.48256e-13 1.23896e-12)
(-2.94498e-14 5.00207e-13 1.13347e-12)
(-4.69391e-14 5.92485e-13 1.04911e-12)
(-5.68079e-14 6.99197e-13 9.40554e-13)
(-6.64683e-14 8.09881e-13 7.92728e-13)
(-7.63613e-14 8.7005e-13 5.62327e-13)
(-8.68766e-14 -1.16356e-13 -3.05214e-13)
(-8.44335e-14 -5.75632e-13 -7.55147e-13)
(1.50387e-07 1.18839e-08 -1.32791e-09)
(-7.98159e-08 1.25968e-08 7.73931e-10)
(-1.34215e-09 5.45191e-10 6.66681e-11)
(-1.01711e-11 4.33326e-12 1.7949e-12)
(1.29949e-14 5.03618e-13 1.04631e-12)
(3.75003e-15 6.57307e-13 9.70253e-13)
(-1.34937e-16 7.71657e-13 8.47589e-13)
(-7.79884e-16 8.35369e-13 6.48654e-13)
(1.60046e-15 -1.09787e-13 -1.61802e-13)
(8.47333e-14 -5.44667e-13 -5.84391e-13)
(-2.60265e-16 2.26602e-12 5.54258e-13)
(1.27041e-14 2.85714e-12 1.55673e-12)
(-5.11705e-15 1.05851e-12 1.25176e-12)
(-1.97545e-14 1.17588e-12 1.03222e-12)
(-3.60124e-14 1.37891e-12 7.41514e-13)
(-5.44822e-14 1.60349e-12 3.17371e-13)
(-7.47786e-14 1.82821e-12 -3.28983e-13)
(-9.64183e-14 1.93809e-12 -1.3833e-12)
(-1.1959e-13 2.72512e-13 -4.22912e-12)
(-1.38016e-13 -1.47563e-12 -6.94711e-12)
(-3.38995e-14 2.18267e-12 5.41432e-13)
(-3.58942e-14 2.73445e-12 1.51984e-12)
(-5.74152e-14 9.95093e-13 1.26306e-12)
(-7.71504e-14 1.11212e-12 1.09084e-12)
(-1.00352e-13 1.31412e-12 8.61151e-13)
(-1.27724e-13 1.54311e-12 5.22244e-13)
(-1.59321e-13 1.78137e-12 -1.76575e-15)
(-1.94719e-13 1.92229e-12 -8.80315e-13)
(-2.33399e-13 2.82915e-13 -3.49788e-12)
(-2.59991e-13 -1.27258e-12 -5.81853e-12)
(-4.57953e-14 2.09894e-12 5.11408e-13)
(-4.6744e-14 2.60757e-12 1.46624e-12)
(-6.76497e-14 9.18254e-13 1.25096e-12)
(-8.69546e-14 1.03178e-12 1.12055e-12)
(-1.09652e-13 1.22927e-12 9.45568e-13)
(-1.36405e-13 1.45686e-12 6.81508e-13)
(-1.67379e-13 1.70216e-12 2.66246e-13)
(-2.01992e-13 1.87229e-12 -4.5089e-13)
(-2.40621e-13 3.6652e-13 -2.77601e-12)
(-2.46601e-13 -1.02162e-12 -4.76688e-12)
(-3.90606e-14 2.02239e-12 4.82982e-13)
(-3.83173e-14 2.48952e-12 1.41276e-12)
(-5.75363e-14 8.43666e-13 1.23178e-12)
(-7.52679e-14 9.52594e-13 1.13505e-12)
(-9.59163e-14 1.14361e-12 1.00366e-12)
(-1.2046e-13 1.3677e-12 8.01592e-13)
(-1.488e-13 1.61611e-12 4.7578e-13)
(-1.80652e-13 1.79987e-12 -1.12834e-13)
(-2.18072e-13 4.16053e-13 -2.17594e-12)
(-2.23109e-13 -8.25663e-13 -3.89811e-12)
(-3.33426e-14 1.95244e-12 4.55657e-13)
(-3.12671e-14 2.38024e-12 1.35999e-12)
(-4.8938e-14 7.72232e-13 1.2068e-12)
(-6.51991e-14 8.76088e-13 1.13767e-12)
(-8.42341e-14 1.05971e-12 1.04232e-12)
(-1.06673e-13 1.27735e-12 8.90183e-13)
(-1.32732e-13 1.52536e-12 6.38462e-13)
(-1.62348e-13 1.71674e-12 1.57817e-13)
(-1.97345e-13 4.3881e-13 -1.68082e-12)
(-2.02423e-13 -6.77254e-13 -3.18217e-12)
(-2.86238e-14 1.88787e-12 4.30085e-13)
(-2.5396e-14 2.27851e-12 1.30911e-12)
(-4.16592e-14 7.04489e-13 1.17884e-12)
(-5.65848e-14 8.01464e-13 1.13119e-12)
(-7.41975e-14 9.77255e-13 1.06481e-12)
(-9.47098e-14 1.18838e-12 9.54061e-13)
(-1.18802e-13 1.43211e-12 7.62963e-13)
(-1.46495e-13 1.62741e-12 3.74169e-13)
(-1.78989e-13 4.43282e-13 -1.2708e-12)
(-1.84114e-13 -5.649e-13 -2.58784e-12)
(-2.50137e-14 1.82898e-12 4.06478e-13)
(-2.03721e-14 2.18472e-12 1.26017e-12)
(-3.53648e-14 6.40735e-13 1.14883e-12)
(-4.91458e-14 7.3077e-13 1.11828e-12)
(-6.53367e-14 8.98362e-13 1.07557e-12)
(-8.41973e-14 1.10089e-12 9.98293e-13)
(-1.0653e-13 1.33782e-12 8.57025e-13)
(-1.3238e-13 1.53497e-12 5.46174e-13)
(-1.62836e-13 4.33694e-13 -9.30748e-13)
(-1.67896e-13 -4.81033e-13 -2.0917e-12)
(-1.10808e-12 1.77641e-12 3.83535e-13)
(-5.11736e-14 2.09944e-12 1.21312e-12)
(-2.99359e-14 5.80515e-13 1.11734e-12)
(-4.2743e-14 6.63126e-13 1.1005e-12)
(-5.75996e-14 8.22496e-13 1.07716e-12)
(-7.50908e-14 1.01641e-12 1.02754e-12)
(-9.58361e-14 1.24495e-12 9.27061e-13)
(-1.19894e-13 1.44034e-12 6.80768e-13)
(-1.48515e-13 4.1358e-13 -6.48625e-13)
(-1.53437e-13 -4.1855e-13 -1.67709e-12)
(-2.0509e-09 6.60575e-12 -5.03987e-13)
(-9.09492e-11 7.20181e-12 1.52659e-12)
(-4.26926e-13 6.925e-13 1.11093e-12)
(-2.49727e-14 5.99662e-13 1.07977e-12)
(-5.29364e-14 7.50505e-13 1.07168e-12)
(-6.96085e-14 9.34165e-13 1.04399e-12)
(-8.86755e-14 1.15407e-12 9.77364e-13)
(-1.11287e-13 1.34673e-12 7.85844e-13)
(-1.38336e-13 3.8612e-13 -4.14469e-13)
(-1.43297e-13 -3.73415e-13 -1.33048e-12)
(-1.03522e-07 9.13967e-09 -1.32874e-09)
(-8.65013e-08 9.77741e-09 6.9633e-10)
(-1.46019e-09 4.36539e-10 6.73067e-11)
(-5.80191e-12 2.46824e-12 1.49461e-12)
(8.19133e-14 6.10685e-13 1.03906e-12)
(-1.30664e-14 8.54902e-13 1.0494e-12)
(-2.20586e-14 1.06638e-12 1.01096e-12)
(-2.84413e-14 1.25224e-12 8.65067e-13)
(-3.43232e-14 3.51803e-13 -2.21246e-13)
(5.39033e-14 -3.41917e-13 -1.03913e-12)
(1.29173e-15 1.60526e-12 5.13188e-13)
(1.32333e-14 2.22799e-12 1.33912e-12)
(-6.82402e-15 1.22243e-12 1.1775e-12)
(-2.64718e-14 1.50832e-12 1.07577e-12)
(-5.23123e-14 1.92341e-12 8.76298e-13)
(-8.70795e-14 2.45034e-12 4.57269e-13)
(-1.33875e-13 3.0932e-12 -4.15415e-13)
(-1.94124e-13 3.69276e-12 -2.27318e-12)
(-2.71074e-13 1.91694e-12 -7.93629e-12)
(-3.33788e-13 -2.33538e-12 -1.82331e-11)
(-3.13852e-14 1.52577e-12 4.91104e-13)
(-3.55198e-14 2.09087e-12 1.28962e-12)
(-6.34002e-14 1.11252e-12 1.1644e-12)
(-9.37519e-14 1.37743e-12 1.10708e-12)
(-1.34204e-13 1.76413e-12 9.81421e-13)
(-1.88672e-13 2.25992e-12 6.91925e-13)
(-2.62216e-13 2.88156e-12 6.39923e-14)
(-3.58636e-13 3.49105e-12 -1.3436e-12)
(-4.85107e-13 1.77652e-12 -6.38476e-12)
(-5.95312e-13 -1.66943e-12 -1.43628e-11)
(-4.16143e-14 1.44654e-12 4.56097e-13)
(-4.45953e-14 1.953e-12 1.22709e-12)
(-7.07358e-14 9.95109e-13 1.13049e-12)
(-9.91932e-14 1.2363e-12 1.10887e-12)
(-1.36657e-13 1.59189e-12 1.0409e-12)
(-1.86662e-13 2.05166e-12 8.55646e-13)
(-2.53506e-13 2.63996e-12 4.22767e-13)
(-3.4122e-13 3.24377e-12 -6.24344e-13)
(-4.57544e-13 1.70943e-12 -4.91641e-12)
(-5.30925e-13 -1.12443e-12 -1.1213e-11)
(-3.51885e-14 1.37592e-12 4.23733e-13)
(-3.60111e-14 1.82893e-12 1.16697e-12)
(-5.93105e-14 8.88184e-13 1.09222e-12)
(-8.43535e-14 1.10714e-12 1.09605e-12)
(-1.17052e-13 1.4331e-12 1.07172e-12)
(-1.60694e-13 1.85737e-12 9.64231e-13)
(-2.18739e-13 2.4098e-12 6.78755e-13)
(-2.95302e-13 2.98672e-12 -1.00157e-13)
(-3.99569e-13 1.61473e-12 -3.74103e-12)
(-4.57807e-13 -7.44564e-13 -8.78115e-12)
(-2.97014e-14 1.31271e-12 3.94156e-13)
(-2.89276e-14 1.71708e-12 1.11001e-12)
(-4.97579e-14 7.91164e-13 1.05187e-12)
(-7.18204e-14 9.89393e-13 1.07371e-12)
(-1.00547e-13 1.28755e-12 1.08215e-12)
(-1.38744e-13 1.67726e-12 1.03217e-12)
(-1.89556e-13 2.19157e-12 8.56948e-13)
(-2.57125e-13 2.73551e-12 2.87475e-13)
(-3.49195e-13 1.50486e-12 -2.80302e-12)
(-3.97055e-13 -4.84304e-13 -6.89437e-12)
(-2.53193e-14 1.25544e-12 3.67484e-13)
(-2.31431e-14 1.61564e-12 1.05652e-12)
(-4.19529e-14 7.03622e-13 1.01089e-12)
(-6.13103e-14 8.82524e-13 1.04555e-12)
(-8.66285e-14 1.15454e-12 1.07628e-12)
(-1.20328e-13 1.51155e-12 1.06949e-12)
(-1.6507e-13 1.9867e-12 9.76523e-13)
(-2.2495e-13 2.49533e-12 5.67765e-13)
(-3.06288e-13 1.38507e-12 -2.06571e-12)
(-3.46816e-13 -3.1016e-13 -5.41997e-12)
(-2.18961e-14 1.20434e-12 3.42795e-13)
(-1.82279e-14 1.52393e-12 1.00612e-12)
(-3.52297e-14 6.24521e-13 9.69928e-13)
(-5.24642e-14 7.86503e-13 1.01391e-12)
(-7.5019e-14 1.03317e-12 1.06026e-12)
(-1.04786e-13 1.35894e-12 1.08539e-12)
(-1.4435e-13 1.79644e-12 1.05328e-12)
(-1.97547e-13 2.26951e-12 7.70033e-13)
(-2.69794e-13 1.25993e-12 -1.49101e-12)
(-3.04412e-13 -1.98223e-13 -4.26279e-12)
(-9.25017e-13 1.15907e-12 3.20261e-13)
(-3.85575e-14 1.44211e-12 9.5945e-13)
(-2.92227e-14 5.52582e-13 9.29987e-13)
(-4.5015e-14 6.97956e-13 9.79484e-13)
(-6.51777e-14 9.22783e-13 1.03689e-12)
(-9.15894e-14 1.22029e-12 1.08534e-12)
(-1.26696e-13 1.62091e-12 1.09815e-12)
(-1.7407e-13 2.05874e-12 9.11979e-13)
(-2.38599e-13 1.13596e-12 -1.04044e-12)
(-2.6791e-13 -1.28475e-13 -3.34662e-12)
(-1.75613e-09 4.75421e-12 -6.08084e-13)
(-7.19702e-11 5.2327e-12 1.22147e-12)
(4.26948e-14 5.92375e-13 9.1064e-13)
(-2.67173e-14 6.17135e-13 9.43882e-13)
(-5.91595e-14 8.22299e-13 1.00915e-12)
(-8.25235e-14 1.09318e-12 1.07355e-12)
(-1.13739e-13 1.45993e-12 1.11912e-12)
(-1.56345e-13 1.86346e-12 1.00803e-12)
(-2.14415e-13 1.01653e-12 -6.86431e-13)
(-2.3973e-13 -8.78251e-14 -2.62278e-12)
(-3.24274e-07 6.98887e-09 -1.50145e-09)
(-7.68517e-08 7.48013e-09 5.82017e-10)
(-6.03186e-10 3.08322e-10 5.72884e-11)
(3.0697e-12 2.49368e-13 8.30145e-13)
(6.88682e-14 6.69991e-13 9.55374e-13)
(-2.88238e-14 9.79223e-13 1.0526e-12)
(-4.27242e-14 1.31154e-12 1.12163e-12)
(-5.91581e-14 1.68116e-12 1.06815e-12)
(-8.03994e-14 9.00467e-13 -4.10492e-13)
(1.86855e-14 -6.92558e-14 -2.04835e-12)
(1.95617e-15 1.15377e-12 4.43107e-13)
(1.09582e-14 1.76399e-12 1.09579e-12)
(-9.93508e-15 1.30851e-12 1.06053e-12)
(-3.51307e-14 1.7847e-12 1.07017e-12)
(-7.41376e-14 2.50671e-12 9.69657e-13)
(-1.36457e-13 3.57009e-12 5.41451e-13)
(-2.37635e-13 5.093e-12 -7.53885e-13)
(-3.8251e-13 6.98558e-12 -3.37378e-12)
(-5.73046e-13 6.88076e-12 -1.30546e-11)
(-9.86997e-13 -8.50588e-12 -8.63095e-11)
(-2.93178e-14 1.08022e-12 4.16713e-13)
(-3.71029e-14 1.62145e-12 1.04005e-12)
(-7.01911e-14 1.15918e-12 1.02566e-12)
(-1.12887e-13 1.58037e-12 1.07279e-12)
(-1.7701e-13 2.21884e-12 1.05375e-12)
(-2.76425e-13 3.15992e-12 8.21012e-13)
(-4.34274e-13 4.51981e-12 -3.18582e-14)
(-6.71799e-13 6.29308e-12 -2.14046e-12)
(-1.00055e-12 5.61615e-12 -1.1867e-11)
(-1.55155e-12 -3.98836e-12 -5.51854e-11)
(-3.83068e-14 1.00881e-12 3.8063e-13)
(-4.45609e-14 1.48235e-12 9.75137e-13)
(-7.49557e-14 1.00984e-12 9.74722e-13)
(-1.13401e-13 1.37844e-12 1.04658e-12)
(-1.70176e-13 1.93746e-12 1.08573e-12)
(-2.56794e-13 2.75931e-12 9.91163e-13)
(-3.92074e-13 3.96568e-12 4.7769e-13)
(-5.95115e-13 5.5741e-12 -1.06387e-12)
(-9.04279e-13 4.82096e-12 -9.42771e-12)
(-1.27642e-12 -1.71753e-12 -3.72486e-11)
(-3.21595e-14 9.46298e-13 3.48692e-13)
(-3.59053e-14 1.36011e-12 9.14728e-13)
(-6.2319e-14 8.79851e-13 9.23141e-13)
(-9.47738e-14 1.20207e-12 1.00882e-12)
(-1.42812e-13 1.69149e-12 1.08676e-12)
(-2.15037e-13 2.41043e-12 1.08589e-12)
(-3.2666e-13 3.47859e-12 8.2116e-13)
(-4.96486e-13 4.90875e-12 -2.59793e-13)
(-7.65894e-13 4.17785e-12 -7.19154e-12)
(-1.03772e-12 -5.64652e-13 -2.63125e-11)
(-2.71623e-14 8.91452e-13 3.20029e-13)
(-2.89421e-14 1.25275e-12 8.59304e-13)
(-5.19249e-14 7.6665e-13 8.73025e-13)
(-7.9646e-14 1.04834e-12 9.65825e-13)
(-1.20267e-13 1.47711e-12 1.06682e-12)
(-1.81006e-13 2.10654e-12 1.1294e-12)
(-2.7414e-13 3.04643e-12 1.03125e-12)
(-4.16958e-13 4.30537e-12 3.12506e-13)
(-6.47144e-13 3.62683e-12 -5.37993e-12)
(-8.5272e-13 4.97661e-14 -1.90252e-11)
(-2.30083e-14 8.42818e-13 2.9476e-13)
(-2.32524e-14 1.15799e-12 8.08325e-13)
(-4.33386e-14 6.6766e-13 8.24479e-13)
(-6.72507e-14 9.1471e-13 9.2053e-13)
(-1.01746e-13 1.29062e-12 1.03479e-12)
(-1.53395e-13 1.84124e-12 1.13757e-12)
(-2.31677e-13 2.66782e-12 1.15168e-12)
(-3.52156e-13 3.77019e-12 6.98108e-13)
(-5.46433e-13 3.14144e-12 -3.96107e-12)
(-7.07741e-13 3.59798e-13 -1.39984e-11)
(-1.98102e-14 7.99688e-13 2.71779e-13)
(-1.85258e-14 1.07426e-12 7.61557e-13)
(-3.62259e-14 5.80846e-13 7.77772e-13)
(-5.69195e-14 7.9766e-13 8.74426e-13)
(-8.6572e-14 1.12744e-12 9.95301e-13)
(-1.30687e-13 1.60976e-12 1.12278e-12)
(-1.97013e-13 2.33575e-12 1.21084e-12)
(-2.99398e-13 3.30196e-12 9.57032e-13)
(-4.63375e-13 2.71415e-12 -2.87443e-12)
(-5.9254e-13 4.94572e-13 -1.04519e-11)
(-7.32238e-13 7.62125e-13 2.51269e-13)
(-2.90713e-14 1.00085e-12 7.18797e-13)
(-3.00073e-14 5.04789e-13 7.3484e-13)
(-4.83175e-14 6.95043e-13 8.28834e-13)
(-7.40236e-14 9.8485e-13 9.50511e-13)
(-1.11827e-13 1.40771e-12 1.09216e-12)
(-1.68435e-13 2.045e-12 1.22744e-12)
(-2.55815e-13 2.89137e-12 1.11419e-12)
(-3.95316e-13 2.33724e-12 -2.0436e-12)
(-4.98854e-13 5.30811e-13 -7.90595e-12)
(-1.40097e-09 3.30686e-12 -8.74679e-13)
(-4.93947e-11 3.65315e-12 9.19387e-13)
(1.59468e-13 4.92897e-13 7.06621e-13)
(-3.27202e-14 6.03687e-13 7.84263e-13)
(-6.60153e-14 8.5993e-13 9.05045e-13)
(-9.81694e-14 1.23136e-12 1.05301e-12)
(-1.469e-13 1.79092e-12 1.21722e-12)
(-2.22305e-13 2.53234e-12 1.20383e-12)
(-3.4185e-13 2.01009e-12 -1.41558e-12)
(-4.24982e-13 5.16868e-13 -6.02809e-12)
(-3.97985e-07 5.01882e-09 -2.11718e-09)
(-5.58124e-08 5.31392e-09 4.29646e-10)
(-3.84669e-10 1.87819e-10 4.13018e-11)
(2.72192e-12 -1.82269e-13 5.25205e-13)
(2.22782e-14 7.10703e-13 8.3903e-13)
(-4.37471e-14 1.07828e-12 1.00753e-12)
(-6.54526e-14 1.56649e-12 1.1865e-12)
(-9.84665e-14 2.21602e-12 1.24294e-12)
(-1.49769e-13 1.72396e-12 -9.43816e-13)
(-3.75066e-14 4.74497e-13 -4.62432e-12)
(1.42885e-15 8.55921e-13 3.62511e-13)
(6.52194e-15 1.44457e-12 8.62775e-13)
(-1.56666e-14 1.37101e-12 9.09894e-13)
(-4.83866e-14 2.07941e-12 1.0129e-12)
(-1.07681e-13 3.2689e-12 9.98778e-13)
(-2.21835e-13 5.2762e-12 4.70919e-13)
(-4.35843e-13 8.04056e-12 -1.87727e-12)
(-7.72007e-13 1.17565e-11 -1.21321e-11)
(-1.72084e-12 2.66674e-11 -8.46982e-11)
(-5.44381e-12 -2.59816e-11 -5.18618e-10)
(-2.80037e-14 7.89709e-13 3.35451e-13)
(-4.05754e-14 1.30198e-12 8.05911e-13)
(-7.95032e-14 1.18642e-12 8.5927e-13)
(-1.38025e-13 1.7902e-12 9.90591e-13)
(-2.38398e-13 2.79407e-12 1.06249e-12)
(-4.19377e-13 4.49005e-12 8.19736e-13)
(-7.47247e-13 7.09051e-12 -6.65528e-13)
(-1.21557e-12 1.1179e-11 -6.97765e-12)
(-2.15716e-12 1.9196e-11 -5.22911e-11)
(-7.28424e-12 -9.05409e-12 -3.01272e-10)
(-3.60896e-14 7.25776e-13 3.01597e-13)
(-4.67984e-14 1.16531e-12 7.441e-13)
(-8.17859e-14 1.01165e-12 7.98452e-13)
(-1.32728e-13 1.52042e-12 9.36812e-13)
(-2.18358e-13 2.36222e-12 1.06745e-12)
(-3.68026e-13 3.7809e-12 1.02459e-12)
(-6.39567e-13 6.06981e-12 1.6906e-13)
(-1.06871e-12 9.83376e-12 -3.71291e-12)
(-1.94513e-12 1.45576e-11 -3.37483e-11)
(-4.69969e-12 -1.3918e-12 -1.81993e-10)
(-3.0386e-14 6.7142e-13 2.72331e-13)
(-3.79953e-14 1.04896e-12 6.88949e-13)
(-6.76346e-14 8.64758e-13 7.42043e-13)
(-1.09619e-13 1.29455e-12 8.81233e-13)
(-1.79222e-13 2.003e-12 1.0436e-12)
(-2.99494e-13 3.18702e-12 1.1192e-12)
(-5.16666e-13 5.15611e-12 7.05845e-13)
(-8.78562e-13 8.43295e-12 -1.69284e-12)
(-1.60549e-12 1.14585e-11 -2.24537e-11)
(-3.22907e-12 1.90867e-12 -1.14055e-10)
(-2.55859e-14 6.24196e-13 2.46983e-13)
(-3.09138e-14 9.48578e-13 6.39178e-13)
(-5.61643e-14 7.4024e-13 6.88738e-13)
(-9.11399e-14 1.10564e-12 8.25266e-13)
(-1.48216e-13 1.70333e-12 9.96454e-13)
(-2.45655e-13 2.69476e-12 1.14671e-12)
(-4.18911e-13 4.36416e-12 1.01579e-12)
(-7.18043e-13 7.16151e-12 -4.18077e-13)
(-1.30877e-12 9.15641e-12 -1.53224e-11)
(-2.35618e-12 3.06788e-12 -7.42532e-11)
(-2.17614e-14 5.8314e-13 2.24624e-13)
(-2.51762e-14 8.62083e-13 5.94217e-13)
(-4.67763e-14 6.34497e-13 6.39248e-13)
(-7.61523e-14 9.45939e-13 7.70004e-13)
(-1.23504e-13 1.45282e-12 9.43749e-13)
(-2.03162e-13 2.28671e-12 1.13272e-12)
(-3.4273e-13 3.69719e-12 1.18263e-12)
(-5.87325e-13 6.05187e-12 3.71566e-13)
(-1.06791e-12 7.38923e-12 -1.06444e-11)
(-1.77352e-12 3.29118e-12 -4.99489e-11)
(-1.87326e-14 5.47383e-13 2.04845e-13)
(-2.03877e-14 7.87259e-13 5.53781e-13)
(-3.92091e-14 5.44331e-13 5.93984e-13)
(-6.39604e-14 8.1046e-13 7.16562e-13)
(-1.03401e-13 1.24177e-12 8.86844e-13)
(-1.69173e-13 1.94581e-12 1.09361e-12)
(-2.82804e-13 3.13489e-12 1.25288e-12)
(-4.82914e-13 5.10942e-12 8.47133e-13)
(-8.75e-13 6.01581e-12 -7.47358e-12)
(-1.36433e-12 3.1198e-12 -3.45249e-11)
(-5.16174e-13 5.16692e-13 1.87259e-13)
(-2.37326e-14 7.22225e-13 5.1721e-13)
(-3.27462e-14 4.66892e-13 5.52337e-13)
(-5.39957e-14 6.95915e-13 6.66525e-13)
(-8.71741e-14 1.06404e-12 8.30057e-13)
(-1.41885e-13 1.66038e-12 1.0409e-12)
(-2.35216e-13 2.66541e-12 1.26364e-12)
(-3.98857e-13 4.31051e-12 1.12899e-12)
(-7.20724e-13 4.93409e-12 -5.30015e-12)
(-1.06989e-12 2.80847e-12 -2.43906e-11)
(-9.63713e-10 2.13916e-12 -9.3472e-13)
(-2.78161e-11 2.36013e-12 6.43989e-13)
(1.70401e-13 4.24783e-13 5.21614e-13)
(-4.20711e-14 5.96629e-13 6.19302e-13)
(-7.62196e-14 9.12907e-13 7.73234e-13)
(-1.21748e-13 1.42019e-12 9.80966e-13)
(-1.99352e-13 2.27146e-12 1.23587e-12)
(-3.3505e-13 3.64431e-12 1.2656e-12)
(-5.98363e-13 4.06785e-12 -3.757e-12)
(-8.57428e-13 2.45277e-12 -1.75615e-11)
(-3.2416e-07 3.18005e-09 -2.19396e-09)
(-3.17419e-08 3.26131e-09 2.50136e-10)
(-1.4687e-10 9.3766e-11 2.38255e-11)
(2.02205e-12 -1.54887e-13 3.45523e-13)
(-1.80693e-14 7.65893e-13 7.06595e-13)
(-6.11804e-14 1.21752e-12 9.19397e-13)
(-9.69554e-14 1.93776e-12 1.18318e-12)
(-1.60141e-13 3.08565e-12 1.31448e-12)
(-2.87775e-13 3.36523e-12 -2.66099e-12)
(-1.77963e-13 2.10309e-12 -1.28473e-11)
(-1.72364e-15 6.67615e-13 2.55054e-13)
(-6.73736e-15 1.24724e-12 5.32032e-13)
(-3.13496e-14 1.45989e-12 6.15157e-13)
(-7.33246e-14 2.4792e-12 8.2362e-13)
(-1.64138e-13 4.42436e-12 9.3489e-13)
(-3.92783e-13 7.83433e-12 -5.36408e-13)
(-1.03388e-12 1.44075e-11 -1.48621e-11)
(-2.91431e-12 4.83387e-11 -7.68521e-11)
(-9.03061e-12 1.40076e-10 -1.71262e-10)
(-1.98827e-11 8.81949e-11 -3.07739e-10)
(-3.02262e-14 6.08028e-13 2.18762e-13)
(-5.37388e-14 1.10669e-12 4.66608e-13)
(-1.01003e-13 1.23968e-12 5.25343e-13)
(-1.80939e-13 2.07882e-12 7.07451e-13)
(-3.36446e-13 3.67118e-12 9.31712e-13)
(-6.68427e-13 6.6178e-12 4.48017e-13)
(-1.35649e-12 1.24979e-11 -6.04597e-12)
(-3.13604e-12 3.43789e-11 -3.87986e-11)
(-1.15131e-11 8.82314e-11 -1.11601e-10)
(-3.11927e-11 5.34328e-11 -2.98422e-10)
(-3.78667e-14 5.51779e-13 1.8452e-13)
(-5.8778e-14 9.75549e-13 4.14861e-13)
(-1.01638e-13 1.04398e-12 4.47348e-13)
(-1.69496e-13 1.72814e-12 5.99511e-13)
(-2.98396e-13 3.01315e-12 8.41975e-13)
(-5.64733e-13 5.45158e-12 7.18349e-13)
(-1.11328e-12 1.033e-11 -2.24895e-12)
(-2.441e-12 2.53523e-11 -1.96652e-11)
(-7.41731e-12 5.83011e-11 -7.18634e-11)
(-1.90266e-11 3.64949e-11 -2.34657e-10)
(-3.28618e-14 5.04342e-13 1.53446e-13)
(-5.01567e-14 8.65395e-13 3.59095e-13)
(-8.5063e-14 8.8296e-13 4.03004e-13)
(-1.42119e-13 1.44579e-12 5.04799e-13)
(-2.44292e-13 2.49004e-12 7.16238e-13)
(-4.49626e-13 4.47941e-12 8.3833e-13)
(-8.79027e-13 8.45606e-12 -5.74543e-13)
(-1.85407e-12 1.92313e-11 -9.84369e-12)
(-5.03133e-12 4.00705e-11 -4.71477e-11)
(-1.20541e-11 2.66893e-11 -1.71925e-10)
(-2.88765e-14 4.64699e-13 1.24921e-13)
(-4.33467e-14 7.73824e-13 3.07108e-13)
(-7.22028e-14 7.50382e-13 3.48165e-13)
(-1.19473e-13 1.21968e-12 4.32679e-13)
(-2.01611e-13 2.0731e-12 6.0946e-13)
(-3.61854e-13 3.68835e-12 8.33206e-13)
(-6.95911e-13 6.91158e-12 2.44451e-13)
(-1.43103e-12 1.48723e-11 -4.8268e-12)
(-3.58019e-12 2.85229e-11 -3.16286e-11)
(-7.93697e-12 2.02902e-11 -1.22979e-10)
(-2.55244e-14 4.31034e-13 1.00166e-13)
(-3.80083e-14 6.97065e-13 2.58944e-13)
(-6.21863e-14 6.41049e-13 2.93963e-13)
(-9.99765e-14 1.03253e-12 3.96312e-13)
(-1.68948e-13 1.73922e-12 5.12357e-13)
(-2.95399e-13 3.05524e-12 7.54692e-13)
(-5.55747e-13 5.66079e-12 6.3186e-13)
(-1.1197e-12 1.16821e-11 -2.23007e-12)
(-2.63468e-12 2.09133e-11 -2.18567e-11)
(-5.42744e-12 1.57628e-11 -8.77098e-11)
(-2.30891e-14 4.0247e-13 7.67012e-14)
(-3.38406e-14 6.32551e-13 2.13457e-13)
(-5.42497e-14 5.51066e-13 2.41807e-13)
(-8.51668e-14 8.79529e-13 3.39359e-13)
(-1.42202e-13 1.4679e-12 4.37406e-13)
(-2.44326e-13 2.54685e-12 6.49093e-13)
(-4.47944e-13 4.65637e-12 7.94042e-13)
(-8.89364e-13 9.30179e-12 -8.66435e-13)
(-1.98564e-12 1.57158e-11 -1.55298e-11)
(-3.83689e-12 1.24103e-11 -6.29935e-11)
(-3.5586e-13 3.79046e-13 5.22199e-14)
(-3.23704e-14 5.78971e-13 1.71555e-13)
(-4.79458e-14 4.76819e-13 1.92208e-13)
(-7.35248e-14 7.5342e-13 2.82066e-13)
(-1.19046e-13 1.24317e-12 4.09936e-13)
(-2.03933e-13 2.13825e-12 5.49615e-13)
(-3.65067e-13 3.84526e-12 7.94862e-13)
(-7.11849e-13 7.49859e-12 -9.86112e-14)
(-1.52897e-12 1.20607e-11 -1.12648e-11)
(-2.79007e-12 9.86002e-12 -4.57721e-11)
(-6.33813e-10 1.4401e-12 -1.16551e-12)
(-9.28754e-12 1.54999e-12 2.24003e-13)
(5.01326e-14 4.20821e-13 1.48166e-13)
(-6.47796e-14 6.5003e-13 2.26368e-13)
(-1.03271e-13 1.06063e-12 3.53279e-13)
(-1.73769e-13 1.80655e-12 4.64069e-13)
(-3.03159e-13 3.2019e-12 7.29487e-13)
(-5.74379e-13 6.09342e-12 3.54566e-13)
(-1.20404e-12 9.41257e-12 -8.35024e-12)
(-2.08199e-12 7.90675e-12 -3.36934e-11)
(-3.26203e-07 2.06907e-09 -2.21632e-09)
(-9.86779e-09 1.92636e-09 1.21291e-10)
(-8.08616e-12 2.78776e-11 8.50731e-12)
(7.27977e-13 2.84024e-13 7.81322e-14)
(-6.21384e-14 9.06562e-13 2.8829e-13)
(-9.82128e-14 1.53141e-12 4.18765e-13)
(-1.60703e-13 2.68367e-12 6.36577e-13)
(-2.92625e-13 4.9897e-12 5.93032e-13)
(-6.27593e-13 7.4556e-12 -6.34486e-12)
(-6.79235e-13 6.39436e-12 -2.51921e-11)
(-1.21869e-13 6.21798e-13 -1.46826e-12)
(-1.32692e-13 1.22484e-12 -1.50962e-12)
(-1.16962e-13 1.61476e-12 -9.2532e-13)
(-7.49596e-14 3.04691e-12 1.04872e-12)
(2.09526e-14 6.27303e-12 7.20171e-12)
(3.40832e-13 1.56035e-11 2.95799e-11)
(1.59327e-12 5.23615e-11 1.42922e-10)
(1.04695e-12 1.30669e-10 5.01412e-10)
(-1.08146e-11 1.25252e-10 6.8787e-10)
(-1.68117e-11 3.41664e-11 7.53585e-10)
(-1.7274e-13 6.12349e-13 -1.8473e-12)
(-2.11965e-13 1.14402e-12 -2.06978e-12)
(-2.24799e-13 1.42068e-12 -1.64855e-12)
(-2.5144e-13 2.52427e-12 -1.86202e-13)
(-3.23166e-13 4.94337e-12 4.27175e-12)
(-4.4288e-13 1.1225e-11 1.94786e-11)
(-9.12249e-13 3.30423e-11 8.75847e-11)
(-6.44305e-12 8.03764e-11 3.06149e-10)
(-2.44637e-11 8.46617e-11 4.73733e-10)
(-3.0056e-11 2.20545e-11 5.00823e-10)
(-2.05346e-13 6.14573e-13 -2.21292e-12)
(-2.50157e-13 1.09191e-12 -2.62639e-12)
(-2.64275e-13 1.28197e-12 -2.32028e-12)
(-2.83257e-13 2.13818e-12 -1.2681e-12)
(-3.38922e-13 3.99772e-12 1.97821e-12)
(-4.58584e-13 8.38344e-12 1.26347e-11)
(-8.13074e-13 2.19727e-11 5.55034e-11)
(-4.05787e-12 5.12342e-11 1.92042e-10)
(-1.54169e-11 5.69115e-11 3.20878e-10)
(-2.16412e-11 1.33123e-11 3.33955e-10)
(-2.28445e-13 6.48492e-13 -2.6313e-12)
(-2.72183e-13 1.06991e-12 -3.19593e-12)
(-2.84791e-13 1.20484e-12 -3.01262e-12)
(-2.91313e-13 1.90168e-12 -2.17347e-12)
(-3.27409e-13 3.30249e-12 2.20153e-13)
(-4.39726e-13 6.51202e-12 7.81963e-12)
(-7.01369e-13 1.53854e-11 3.61729e-11)
(-2.69349e-12 3.39499e-11 1.24223e-10)
(-9.97676e-12 3.84806e-11 2.16631e-10)
(-1.54791e-11 7.40271e-12 2.24409e-10)
(-2.59928e-13 7.14385e-13 -3.14384e-12)
(-3.01832e-13 1.10051e-12 -3.81962e-12)
(-3.01655e-13 1.1778e-12 -3.68295e-12)
(-3.09202e-13 1.7499e-12 -3.00911e-12)
(-3.25532e-13 2.829e-12 -1.20408e-12)
(-4.0792e-13 5.22235e-12 4.30725e-12)
(-6.27482e-13 1.12798e-11 2.38146e-11)
(-1.89941e-12 2.34109e-11 8.2354e-11)
(-6.6878e-12 2.63741e-11 1.47105e-10)
(-1.10821e-11 3.67668e-12 1.52794e-10)
(-3.04594e-13 8.25742e-13 -3.8229e-12)
(-3.40293e-13 1.18536e-12 -4.55016e-12)
(-3.26322e-13 1.19091e-12 -4.39283e-12)
(-3.2643e-13 1.68184e-12 -3.85193e-12)
(-3.2711e-13 2.53779e-12 -2.35999e-12)
(-3.80006e-13 4.32005e-12 1.7223e-12)
(-5.62122e-13 8.61684e-12 1.55295e-11)
(-1.41046e-12 1.67843e-11 5.57687e-11)
(-4.64124e-12 1.84201e-11 1.00846e-10)
(-7.99487e-12 1.43323e-12 1.05377e-10)
(-3.68619e-13 1.0037e-12 -4.76933e-12)
(-3.91562e-13 1.33457e-12 -5.45376e-12)
(-3.58424e-13 1.27447e-12 -5.17624e-12)
(-3.38862e-13 1.67207e-12 -4.64244e-12)
(-3.40788e-13 2.35938e-12 -3.37956e-12)
(-3.61444e-13 3.69625e-12 -2.2475e-13)
(-5.02185e-13 6.84003e-12 9.75029e-12)
(-1.09791e-12 1.24849e-11 3.82742e-11)
(-3.34273e-12 1.32021e-11 6.95002e-11)
(-5.83686e-12 1.67654e-13 7.35412e-11)
(-5.86028e-13 1.28846e-12 -6.16204e-12)
(-4.59622e-13 1.57123e-12 -6.64278e-12)
(-4.01047e-13 1.42933e-12 -6.09947e-12)
(-3.61331e-13 1.71133e-12 -5.47748e-12)
(-3.5255e-13 2.28528e-12 -4.37878e-12)
(-3.51834e-13 3.30972e-12 -1.77625e-12)
(-4.48486e-13 5.62139e-12 5.61122e-12)
(-8.95342e-13 9.61021e-12 2.62883e-11)
(-2.48519e-12 9.74872e-12 4.81615e-11)
(-4.32016e-12 -4.73738e-13 5.18596e-11)
(-2.40671e-10 2.12666e-12 -8.79595e-12)
(5.66418e-12 2.26587e-12 -8.2338e-12)
(-5.12748e-13 1.66649e-12 -7.25498e-12)
(-3.94176e-13 1.83703e-12 -6.37868e-12)
(-3.58505e-13 2.28123e-12 -5.27773e-12)
(-3.54299e-13 3.06405e-12 -3.04659e-12)
(-4.09397e-13 4.76214e-12 2.5849e-12)
(-7.53217e-13 7.65724e-12 1.78313e-11)
(-1.89357e-12 7.45599e-12 3.34435e-11)
(-3.24318e-12 -7.36669e-13 3.68375e-11)
(-1.91409e-07 5.37917e-10 2.0109e-10)
(8.90183e-09 6.53213e-10 7.07718e-11)
(4.10796e-11 -1.4528e-11 -1.32395e-11)
(-8.10192e-13 2.18468e-12 -7.35144e-12)
(-3.49425e-13 2.34036e-12 -6.17149e-12)
(-2.94737e-13 2.93993e-12 -4.17542e-12)
(-2.4257e-13 4.17633e-12 3.45746e-13)
(-3.36968e-13 6.31744e-12 1.17688e-11)
(-5.61108e-13 5.9131e-12 2.31596e-11)
(9.91254e-13 -7.72986e-13 2.62221e-11)
(-2.5685e-13 6.90864e-13 -4.47914e-12)
(-1.94627e-13 1.09335e-12 -4.01001e-12)
(-1.17659e-13 1.07397e-12 -2.74239e-12)
(-1.93049e-14 1.67745e-12 -3.82429e-13)
(1.36858e-13 2.9059e-12 4.48955e-12)
(3.53009e-13 5.47805e-12 1.55192e-11)
(8.30172e-13 1.26005e-11 4.76878e-11)
(2.03234e-12 3.49286e-11 1.76069e-10)
(7.98985e-13 2.87602e-11 4.78423e-10)
(-3.7374e-12 2.30807e-11 6.5203e-10)
(-3.2974e-13 8.31625e-13 -6.1461e-12)
(-2.48305e-13 1.17308e-12 -5.65476e-12)
(-1.80548e-13 1.03733e-12 -4.3567e-12)
(-1.08228e-13 1.5426e-12 -2.20007e-12)
(-1.4329e-14 2.47807e-12 1.91768e-12)
(4.09519e-14 4.36168e-12 1.06931e-11)
(1.09004e-13 9.1797e-12 3.35317e-11)
(-9.25886e-14 2.24081e-11 1.14387e-10)
(-4.09437e-12 1.15501e-11 3.09985e-10)
(-8.29923e-12 5.53154e-12 4.62374e-10)
(-4.70556e-13 1.06366e-12 -8.27837e-12)
(-3.67494e-13 1.3327e-12 -7.65263e-12)
(-2.72318e-13 1.07905e-12 -6.1995e-12)
(-1.91447e-13 1.49142e-12 -4.07841e-12)
(-1.10528e-13 2.17869e-12 -4.74469e-13)
(-3.82343e-14 3.57506e-12 6.73212e-12)
(-2.13898e-14 6.94521e-12 2.36301e-11)
(-2.43748e-13 1.52059e-11 7.7051e-11)
(-2.68297e-12 3.05205e-12 2.06442e-10)
(-5.06912e-12 -3.09602e-12 3.27442e-10)
(-6.26907e-13 1.41038e-12 -1.11384e-11)
(-4.91567e-13 1.60875e-12 -1.01677e-11)
(-3.6255e-13 1.21247e-12 -8.40275e-12)
(-2.6146e-13 1.48894e-12 -6.11873e-12)
(-1.7554e-13 2.04586e-12 -2.75616e-12)
(-8.4874e-14 3.05084e-12 3.32251e-12)
(-8.0642e-14 5.36122e-12 1.65027e-11)
(-2.85933e-13 1.07989e-11 5.33615e-11)
(-1.93123e-12 -1.03709e-12 1.41596e-10)
(-3.23994e-12 -6.97457e-12 2.33024e-10)
(-8.35128e-13 1.93947e-12 -1.50636e-11)
(-6.4585e-13 2.00946e-12 -1.34332e-11)
(-4.7885e-13 1.4591e-12 -1.10741e-11)
(-3.32725e-13 1.61108e-12 -8.42589e-12)
(-2.3091e-13 2.0188e-12 -5.0163e-12)
(-1.45506e-13 2.72972e-12 3.58289e-13)
(-1.13323e-13 4.32834e-12 1.09858e-11)
(-2.83046e-13 7.85253e-12 3.77511e-11)
(-1.49571e-12 -2.97039e-12 9.95173e-11)
(-2.17646e-12 -8.26264e-12 1.67333e-10)
(-1.11813e-12 2.74779e-12 -2.05655e-11)
(-8.45966e-13 2.59345e-12 -1.77735e-11)
(-6.17477e-13 1.86266e-12 -1.44203e-11)
(-4.27776e-13 1.85355e-12 -1.11389e-11)
(-2.94064e-13 2.06747e-12 -7.3976e-12)
(-2.0574e-13 2.57642e-12 -2.33684e-12)
(-1.44649e-13 3.64367e-12 6.55607e-12)
(-2.88283e-13 5.82507e-12 2.68835e-11)
(-1.1495e-12 -3.75117e-12 7.13749e-11)
(-1.52674e-12 -8.15981e-12 1.21448e-10)
(-1.50971e-12 3.9966e-12 -2.84418e-11)
(-1.10902e-12 3.44531e-12 -2.36605e-11)
(-7.90629e-13 2.43328e-12 -1.8712e-11)
(-5.47747e-13 2.2406e-12 -1.4364e-11)
(-3.5579e-13 2.24467e-12 -1.0018e-11)
(-2.50612e-13 2.56048e-12 -4.92933e-12)
(-1.79197e-13 3.22097e-12 2.86801e-12)
(-2.77796e-13 4.5244e-12 1.8956e-11)
(-8.77042e-13 -3.94612e-12 5.20846e-11)
(-1.11214e-12 -7.51625e-12 8.90629e-11)
(-2.20716e-12 5.95572e-12 -3.99729e-11)
(-1.45991e-12 4.68522e-12 -3.1791e-11)
(-1.01067e-12 3.25242e-12 -2.4328e-11)
(-6.85359e-13 2.82872e-12 -1.83208e-11)
(-4.3937e-13 2.58494e-12 -1.30137e-11)
(-2.92697e-13 2.63309e-12 -7.4795e-12)
(-2.19576e-13 2.98001e-12 -2.8372e-13)
(-2.57872e-13 3.68884e-12 1.28984e-11)
(-7.04563e-13 -3.82819e-12 3.83188e-11)
(-8.37451e-13 -6.65583e-12 6.58895e-11)
(-4.82638e-10 9.49267e-12 -5.7343e-11)
(-4.82512e-12 6.88125e-12 -4.32187e-11)
(-1.30506e-12 4.41904e-12 -3.18043e-11)
(-8.56138e-13 3.6229e-12 -2.32788e-11)
(-5.4934e-13 3.0789e-12 -1.64563e-11)
(-3.44942e-13 2.83792e-12 -1.01709e-11)
(-2.60417e-13 2.92292e-12 -3.1229e-12)
(-2.47214e-13 3.19381e-12 8.06355e-12)
(-5.8708e-13 -3.55816e-12 2.82132e-11)
(-6.49236e-13 -5.74273e-12 4.9059e-11)
(-9.167e-07 1.79528e-09 -2.98725e-09)
(-2.62013e-09 1.2489e-09 -1.72738e-11)
(-3.24237e-12 1.36071e-11 -4.21129e-11)
(-1.14704e-12 4.72735e-12 -2.95727e-11)
(-6.78361e-13 3.77313e-12 -2.05151e-11)
(-3.57611e-13 3.18153e-12 -1.30929e-11)
(-1.74973e-13 2.99292e-12 -5.79812e-12)
(-3.72015e-14 2.92373e-12 4.12718e-12)
(-5.61075e-14 -3.19583e-12 2.06304e-11)
(1.9779e-12 -4.84276e-12 3.66602e-11)
(1.26735e-14 4.12881e-13 -3.09076e-12)
(6.50675e-14 4.06441e-13 -2.36686e-12)
(1.13576e-13 1.95358e-14 -1.25911e-12)
(1.77037e-13 3.94265e-14 4.41456e-13)
(2.4807e-13 8.76782e-14 3.1246e-12)
(3.52398e-13 1.4176e-13 8.01962e-12)
(5.03086e-13 1.447e-13 1.74135e-11)
(7.3908e-13 7.31373e-13 4.0937e-11)
(1.01732e-12 1.25088e-13 1.09323e-10)
(2.60328e-13 -3.59184e-14 1.24545e-10)
(1.73694e-13 4.76624e-13 -4.52253e-12)
(2.24308e-13 3.84442e-13 -3.61822e-12)
(2.50347e-13 -5.08525e-14 -2.39211e-12)
(2.86975e-13 -6.83015e-14 -6.61122e-13)
(3.32651e-13 -7.82484e-14 1.98234e-12)
(3.9702e-13 -7.93449e-14 6.34839e-12)
(4.94127e-13 -2.70957e-13 1.43477e-11)
(6.43752e-13 -2.89204e-13 3.24798e-11)
(6.36573e-13 -1.56106e-12 7.95147e-11)
(8.14534e-15 -1.6358e-12 8.41846e-11)
(1.52253e-13 5.88825e-13 -6.48627e-12)
(2.09472e-13 3.68975e-13 -5.24938e-12)
(2.31822e-13 -1.32402e-13 -3.80477e-12)
(2.60667e-13 -1.73207e-13 -1.91507e-12)
(3.06472e-13 -2.19891e-13 7.54234e-13)
(3.51737e-13 -2.81438e-13 4.72911e-12)
(4.19215e-13 -5.26716e-13 1.17154e-11)
(5.74136e-13 -9.43012e-13 2.61636e-11)
(5.29702e-13 -2.54853e-12 6.02607e-11)
(2.37286e-14 -2.27048e-12 5.92082e-11)
(1.5057e-13 7.75356e-13 -9.21061e-12)
(2.14892e-13 3.65286e-13 -7.45659e-12)
(2.38162e-13 -2.1051e-13 -5.55449e-12)
(2.62039e-13 -2.62481e-13 -3.42533e-12)
(2.9747e-13 -3.49926e-13 -6.66729e-13)
(3.35486e-13 -4.77326e-13 3.23235e-12)
(3.81218e-13 -6.84537e-13 9.363e-12)
(4.82087e-13 -1.34114e-12 2.11393e-11)
(4.94432e-13 -3.15885e-12 4.69573e-11)
(4.08379e-14 -2.3924e-12 4.31101e-11)
(1.45034e-13 1.081e-12 -1.30553e-11)
(2.19959e-13 3.77667e-13 -1.04504e-11)
(2.43285e-13 -2.84015e-13 -7.85815e-12)
(2.64397e-13 -3.61726e-13 -5.25113e-12)
(2.88938e-13 -4.74329e-13 -2.22608e-12)
(3.24461e-13 -6.41237e-13 1.70958e-12)
(3.53901e-13 -8.942e-13 7.30001e-12)
(3.91326e-13 -1.53993e-12 1.72192e-11)
(4.59695e-13 -3.4259e-12 3.70909e-11)
(4.82706e-14 -2.3891e-12 3.22498e-11)
(1.34178e-13 1.5789e-12 -1.85591e-11)
(2.23902e-13 4.14602e-13 -1.45593e-11)
(2.48071e-13 -3.50895e-13 -1.08912e-11)
(2.70163e-13 -4.59634e-13 -7.45921e-12)
(2.87999e-13 -5.8706e-13 -4.02696e-12)
(3.17605e-13 -7.87802e-13 6.43517e-14)
(3.33319e-13 -1.08902e-12 5.41583e-12)
(3.46901e-13 -1.65061e-12 1.39313e-11)
(3.64523e-13 -3.53106e-12 2.9516e-11)
(5.08946e-14 -2.41285e-12 2.4626e-11)
(1.16008e-13 2.39159e-12 -2.65941e-11)
(2.239e-13 4.90033e-13 -2.02982e-11)
(2.52275e-13 -4.08856e-13 -1.49236e-11)
(2.74129e-13 -5.46529e-13 -1.03087e-11)
(2.88922e-13 -6.88707e-13 -6.12948e-12)
(3.04542e-13 -9.18065e-13 -1.7342e-12)
(3.16876e-13 -1.26906e-12 3.62916e-12)
(3.15362e-13 -1.81695e-12 1.11201e-11)
(2.77238e-13 -3.57723e-12 2.38428e-11)
(5.17127e-14 -2.35049e-12 1.9083e-11)
(-3.98468e-14 3.72937e-12 -3.86041e-11)
(2.18532e-13 6.18187e-13 -2.84146e-11)
(2.55111e-13 -4.49731e-13 -2.03522e-11)
(2.78681e-13 -6.23974e-13 -1.39521e-11)
(2.93602e-13 -8.10912e-13 -8.57322e-12)
(2.96357e-13 -1.04806e-12 -3.64497e-12)
(3.0609e-13 -1.41092e-12 1.84484e-12)
(2.9228e-13 -1.96027e-12 8.69274e-12)
(2.41316e-13 -3.58372e-12 1.93735e-11)
(5.25456e-14 -2.25813e-12 1.49245e-11)
(-1.28883e-10 6.62127e-12 -5.92531e-11)
(-1.93821e-12 1.15327e-12 -4.0133e-11)
(2.39642e-13 -4.64648e-13 -2.77534e-11)
(2.77512e-13 -6.90228e-13 -1.86661e-11)
(2.92155e-13 -9.13594e-13 -1.16214e-11)
(2.92916e-13 -1.16137e-12 -5.79846e-12)
(2.96816e-13 -1.53489e-12 -1.69262e-14)
(2.71966e-13 -2.09555e-12 6.5821e-12)
(2.14762e-13 -3.56608e-12 1.57499e-11)
(5.14521e-14 -2.15162e-12 1.17143e-11)
(-6.80349e-08 1.82509e-09 -9.20502e-09)
(-1.86909e-09 3.43065e-10 -1.01117e-10)
(-7.38844e-12 5.10023e-12 -3.79997e-11)
(-6.33169e-14 -7.20271e-13 -2.47783e-11)
(1.40157e-13 -1.00607e-12 -1.53684e-11)
(2.42574e-13 -1.26901e-12 -8.19466e-12)
(2.95648e-13 -1.64356e-12 -1.94889e-12)
(3.11218e-13 -2.22076e-12 4.66368e-12)
(2.80474e-13 -3.52874e-12 1.27262e-11)
(2.90128e-13 -2.03984e-12 9.1909e-12)
(2.18341e-13 3.69775e-13 -1.67822e-13)
(2.08787e-13 3.43621e-13 -1.24268e-13)
(1.86148e-13 -5.23303e-14 -5.89166e-14)
(1.6488e-13 -5.4237e-14 3.11978e-14)
(1.45794e-13 -5.24772e-14 1.90651e-13)
(1.28789e-13 -5.13204e-14 4.59102e-13)
(1.12558e-13 -5.16068e-14 8.6106e-13)
(9.29358e-14 -3.70648e-14 1.34312e-12)
(8.37421e-14 -5.6833e-14 3.73769e-12)
(4.27496e-14 -3.29537e-14 4.22645e-12)
(4.86789e-13 3.40521e-13 -2.7109e-13)
(4.52887e-13 2.41318e-13 -2.12731e-13)
(3.91705e-13 -1.87423e-13 -1.32353e-13)
(3.35486e-13 -1.85409e-13 -1.04758e-14)
(2.82854e-13 -1.80132e-13 1.32203e-13)
(2.35624e-13 -1.76688e-13 3.88678e-13)
(1.92555e-13 -1.7937e-13 8.0558e-13)
(1.45629e-13 -1.69984e-13 1.09595e-12)
(1.05202e-13 -2.02288e-13 2.67016e-12)
(4.94666e-14 -1.31515e-13 2.91337e-12)
(5.99e-13 2.8552e-13 -4.30138e-13)
(5.37564e-13 8.05668e-14 -3.38401e-13)
(4.48644e-13 -3.77434e-13 -2.33185e-13)
(3.69422e-13 -3.61028e-13 -9.97024e-14)
(2.99477e-13 -3.42309e-13 6.10017e-14)
(2.38571e-13 -3.28518e-13 3.15888e-13)
(1.8489e-13 -3.22931e-13 7.13242e-13)
(1.33505e-13 -3.1516e-13 1.07614e-12)
(8.39095e-14 -3.36009e-13 1.99602e-12)
(2.97079e-14 -2.06153e-13 2.10053e-12)
(7.83327e-13 1.91601e-13 -6.72367e-13)
(6.77814e-13 -1.67178e-13 -5.24479e-13)
(5.48953e-13 -6.441e-13 -3.70469e-13)
(4.38977e-13 -5.96354e-13 -2.02296e-13)
(3.46596e-13 -5.51223e-13 8.97584e-15)
(2.67512e-13 -5.13651e-13 2.43639e-13)
(2.0111e-13 -4.88034e-13 6.17135e-13)
(1.44477e-13 -4.80074e-13 1.17862e-12)
(8.71151e-14 -4.73238e-13 1.63398e-12)
(3.16818e-14 -2.70731e-13 1.57474e-12)
(1.04142e-12 3.56975e-14 -1.05681e-12)
(8.65674e-13 -5.4848e-13 -8.00715e-13)
(6.78565e-13 -1.01918e-12 -5.64541e-13)
(5.25608e-13 -9.13169e-13 -3.35352e-13)
(4.01988e-13 -8.17721e-13 -9.61147e-14)
(3.01367e-13 -7.39709e-13 1.63371e-13)
(2.19941e-13 -6.81644e-13 5.26812e-13)
(1.52843e-13 -6.49344e-13 1.06159e-12)
(9.36624e-14 -6.30047e-13 1.6023e-12)
(3.38725e-14 -3.30921e-13 1.21957e-12)
(1.40811e-12 -2.15357e-13 -1.6804e-12)
(1.12273e-12 -1.13381e-12 -1.21727e-12)
(8.47637e-13 -1.55092e-12 -8.43875e-13)
(6.34491e-13 -1.34207e-12 -5.09821e-13)
(4.69617e-13 -1.16168e-12 -2.14545e-13)
(3.41628e-13 -1.01893e-12 8.94469e-14)
(2.41702e-13 -9.08723e-13 4.41003e-13)
(1.62784e-13 -8.33133e-13 9.34883e-13)
(9.95889e-14 -8.03863e-13 1.65807e-12)
(3.60881e-14 -3.96267e-13 9.71088e-13)
(1.94349e-12 -6.08733e-13 -2.70884e-12)
(1.47773e-12 -2.03307e-12 -1.87682e-12)
(1.07101e-12 -2.31395e-12 -1.25102e-12)
(7.72529e-13 -1.9248e-12 -7.52343e-13)
(5.52309e-13 -1.60789e-12 -3.59124e-13)
(3.89372e-13 -1.36579e-12 2.31443e-14)
(2.66668e-13 -1.17636e-12 3.61001e-13)
(1.74331e-13 -1.04187e-12 8.19113e-13)
(1.02694e-13 -9.67723e-13 1.48008e-12)
(3.84628e-14 -4.63857e-13 7.90478e-13)
(2.79481e-12 -1.23139e-12 -4.47659e-12)
(1.97725e-12 -3.4329e-12 -2.93352e-12)
(1.37041e-12 -3.41444e-12 -1.85733e-12)
(9.49152e-13 -2.72304e-12 -1.08749e-12)
(6.53883e-13 -2.19049e-12 -5.40675e-13)
(4.446e-13 -1.7915e-12 -1.04039e-13)
(2.95287e-13 -1.49186e-12 2.77083e-13)
(1.87483e-13 -1.27761e-12 7.19993e-13)
(1.07266e-13 -1.14041e-12 1.30551e-12)
(4.10128e-14 -5.35098e-13 6.58221e-13)
(2.73359e-10 -1.95087e-12 -1.06512e-11)
(3.72326e-12 -5.76676e-12 -4.70338e-12)
(1.7667e-12 -5.02406e-12 -2.78126e-12)
(1.16999e-12 -3.82564e-12 -1.56488e-12)
(7.73701e-13 -2.95332e-12 -7.81113e-13)
(5.06485e-13 -2.32477e-12 -2.28658e-13)
(3.24189e-13 -1.87008e-12 2.12849e-13)
(1.98794e-13 -1.546e-12 6.36897e-13)
(1.09641e-13 -1.3267e-12 1.15522e-12)
(4.08256e-14 -6.11367e-13 5.62894e-13)
(3.46814e-07 1.64227e-10 -6.13218e-09)
(7.03207e-10 -7.02887e-10 -5.78132e-11)
(9.87727e-13 -1.00779e-11 -4.35658e-12)
(1.09484e-12 -5.35229e-12 -2.23834e-12)
(7.60801e-13 -3.9535e-12 -1.0967e-12)
(5.29126e-13 -2.99183e-12 -3.70514e-13)
(3.69389e-13 -2.32258e-12 1.70962e-13)
(2.57209e-13 -1.84805e-12 5.66625e-13)
(1.7612e-13 -1.52829e-12 1.03243e-12)
(1.15748e-13 -6.94045e-13 5.00472e-13)
(2.28661e-13 3.68246e-13 1.42928e-14)
(2.1581e-13 3.42771e-13 1.31557e-14)
(1.89177e-13 -5.27397e-14 1.07561e-14)
(1.63808e-13 -5.50504e-14 9.79117e-15)
(1.39516e-13 -5.37928e-14 1.0803e-14)
(1.16419e-13 -5.2856e-14 1.47982e-14)
(9.43847e-14 -5.19168e-14 2.19561e-14)
(7.32323e-14 -5.04345e-14 3.15517e-14)
(5.32033e-14 -4.9181e-14 8.1994e-14)
(3.37434e-14 -2.5633e-14 8.57685e-14)
(5.03057e-13 3.3386e-13 2.03282e-14)
(4.6429e-13 2.36302e-13 1.77312e-14)
(3.97883e-13 -1.91036e-13 1.48561e-14)
(3.35835e-13 -1.87057e-13 1.39605e-14)
(2.78259e-13 -1.79703e-13 1.39875e-14)
(2.2492e-13 -1.72655e-13 1.71933e-14)
(1.75386e-13 -1.66239e-13 2.43177e-14)
(1.29152e-13 -1.59642e-13 2.92047e-14)
(8.60597e-14 -1.52784e-13 6.17075e-14)
(4.63387e-14 -7.91768e-14 6.24908e-14)
(6.24441e-13 2.67362e-13 3.13031e-14)
(5.55195e-13 6.64983e-14 2.7611e-14)
(4.59098e-13 -3.8755e-13 2.36156e-14)
(3.73024e-13 -3.66831e-13 2.12626e-14)
(2.96838e-13 -3.42951e-13 2.13348e-14)
(2.29251e-13 -3.21271e-13 2.39777e-14)
(1.69298e-13 -3.01703e-13 2.99031e-14)
(1.1593e-13 -2.83715e-13 3.67171e-14)
(6.81084e-14 -2.65023e-13 5.4182e-14)
(2.61253e-14 -1.35099e-13 5.23771e-14)
(8.2301e-13 1.51603e-13 5.28805e-14)
(7.05059e-13 -1.98313e-13 4.7177e-14)
(5.65427e-13 -6.66458e-13 4.0195e-14)
(4.46172e-13 -6.1048e-13 3.61457e-14)
(3.45415e-13 -5.55037e-13 3.50718e-14)
(2.59653e-13 -5.05759e-13 3.62609e-14)
(1.86933e-13 -4.62206e-13 4.04365e-14)
(1.25165e-13 -4.24209e-13 4.97883e-14)
(7.23364e-14 -3.86711e-13 5.61216e-14)
(2.79807e-14 -1.94053e-13 5.06556e-14)
(1.10428e-12 -4.5955e-14 9.17844e-14)
(9.07466e-13 -6.10633e-13 8.13443e-14)
(7.03856e-13 -1.0637e-12 6.9124e-14)
(5.37648e-13 -9.41456e-13 6.14019e-14)
(4.03967e-13 -8.3015e-13 5.5878e-14)
(2.95393e-13 -7.35375e-13 5.49257e-14)
(2.07175e-13 -6.53317e-13 5.70063e-14)
(1.35521e-13 -5.83403e-13 6.32562e-14)
(7.70813e-14 -5.18377e-13 6.64209e-14)
(3.00518e-14 -2.5624e-13 5.49987e-14)
(1.50892e-12 -3.75326e-13 1.57119e-13)
(1.18708e-12 -1.25092e-12 1.38341e-13)
(8.85928e-13 -1.63312e-12 1.16922e-13)
(6.53492e-13 -1.39423e-12 1.01706e-13)
(4.7509e-13 -1.18821e-12 8.94471e-14)
(3.37196e-13 -1.0204e-12 8.28988e-14)
(2.30026e-13 -8.80505e-13 8.02318e-14)
(1.46882e-13 -7.64473e-13 8.10618e-14)
(8.20288e-14 -6.62729e-13 8.83238e-14)
(3.20622e-14 -3.22544e-13 6.46088e-14)
(2.10816e-12 -9.1461e-13 2.69587e-13)
(1.57852e-12 -2.2485e-12 2.32058e-13)
(1.12864e-12 -2.45929e-12 1.92314e-13)
(8.01138e-13 -2.01572e-12 1.62693e-13)
(5.62283e-13 -1.65734e-12 1.38375e-13)
(3.86519e-13 -1.37679e-12 1.23755e-13)
(2.56033e-13 -1.15179e-12 1.13826e-13)
(1.59274e-13 -9.71114e-13 1.06616e-13)
(8.71064e-14 -8.1938e-13 1.06953e-13)
(3.41268e-14 -3.93033e-13 7.88986e-14)
(3.16605e-12 -1.81624e-12 4.55696e-13)
(2.1385e-12 -3.82531e-12 3.8221e-13)
(1.45743e-12 -3.66685e-12 3.11696e-13)
(9.91544e-13 -2.87577e-12 2.56092e-13)
(6.69755e-13 -2.27322e-12 2.10823e-13)
(4.44748e-13 -1.82244e-12 1.77816e-13)
(2.86046e-13 -1.47627e-12 1.57469e-13)
(1.7305e-13 -1.20765e-12 1.40249e-13)
(9.27638e-14 -9.90884e-13 1.31315e-13)
(3.62446e-14 -4.68113e-13 9.73754e-14)
(3.78453e-10 -3.60001e-12 -3.30857e-13)
(5.30819e-12 -6.73176e-12 6.08387e-13)
(1.90697e-12 -5.46018e-12 4.97392e-13)
(1.23275e-12 -4.07639e-12 3.93665e-13)
(7.97877e-13 -3.08861e-12 3.14188e-13)
(5.09564e-13 -2.38219e-12 2.54768e-13)
(3.16428e-13 -1.86502e-12 2.16772e-13)
(1.84966e-13 -1.47903e-12 1.84006e-13)
(9.57013e-14 -1.17884e-12 1.61619e-13)
(3.56002e-14 -5.48774e-13 1.20365e-13)
(4.20425e-07 -8.69355e-10 -1.17318e-09)
(1.4666e-09 -9.81315e-10 -1.49315e-11)
(4.87545e-12 -1.42635e-11 6.84066e-13)
(1.20984e-12 -5.77524e-12 5.9127e-13)
(8.04369e-13 -4.16569e-12 4.55711e-13)
(5.41869e-13 -3.08421e-12 3.55666e-13)
(3.66126e-13 -2.32835e-12 2.85955e-13)
(2.46071e-13 -1.78836e-12 2.3725e-13)
(1.63352e-13 -1.38416e-12 1.98529e-13)
(1.06852e-13 -6.34547e-13 1.47211e-13)
(2.28101e-13 3.68766e-13 1.61099e-14)
(2.1525e-13 3.43909e-13 1.34847e-14)
(1.88716e-13 -5.15677e-14 1.08058e-14)
(1.63326e-13 -5.40783e-14 7.97928e-15)
(1.39096e-13 -5.29937e-14 6.07753e-15)
(1.15898e-13 -5.21279e-14 4.22612e-15)
(9.38167e-14 -5.14443e-14 2.82713e-15)
(7.27673e-14 -5.03458e-14 2.18775e-15)
(5.25203e-14 -4.87329e-14 2.19818e-15)
(3.33794e-14 -2.52189e-14 1.60023e-15)
(5.01577e-13 3.34506e-13 2.40011e-14)
(4.62999e-13 2.37798e-13 2.05693e-14)
(3.96698e-13 -1.89557e-13 1.5902e-14)
(3.34773e-13 -1.85651e-13 1.26664e-14)
(2.77227e-13 -1.78478e-13 9.46494e-15)
(2.2382e-13 -1.71632e-13 7.24247e-15)
(1.74295e-13 -1.65004e-13 5.43512e-15)
(1.28218e-13 -1.58788e-13 3.74989e-15)
(8.50386e-14 -1.51851e-13 3.46356e-15)
(4.57057e-14 -7.83465e-14 3.50729e-15)
(6.21941e-13 2.68355e-13 3.88496e-14)
(5.52913e-13 6.85486e-14 3.27723e-14)
(4.57115e-13 -3.85495e-13 2.67846e-14)
(3.71171e-13 -3.65041e-13 2.11205e-14)
(2.95054e-13 -3.41638e-13 1.6815e-14)
(2.2758e-13 -3.19861e-13 1.44515e-14)
(1.67576e-13 -3.00025e-13 1.18781e-14)
(1.14205e-13 -2.824e-13 1.01758e-14)
(6.65817e-14 -2.63222e-13 8.91346e-15)
(2.51346e-14 -1.33381e-13 7.96405e-15)
(8.18602e-13 1.52859e-13 6.57472e-14)
(7.0109e-13 -1.95164e-13 5.59597e-14)
(5.62074e-13 -6.63481e-13 4.55975e-14)
(4.43151e-13 -6.07976e-13 3.77769e-14)
(3.42628e-13 -5.526e-13 3.09004e-14)
(2.57226e-13 -5.03666e-13 2.54784e-14)
(1.84554e-13 -4.60238e-13 2.24133e-14)
(1.22913e-13 -4.21758e-13 1.91593e-14)
(7.05037e-14 -3.83732e-13 1.68805e-14)
(2.65276e-14 -1.91771e-13 1.52704e-14)
(1.09706e-12 -4.38277e-14 1.15268e-13)
(9.01172e-13 -6.05335e-13 9.6953e-14)
(6.98408e-13 -1.05864e-12 7.84189e-14)
(5.3304e-13 -9.37373e-13 6.44085e-14)
(3.9982e-13 -8.26335e-13 5.33495e-14)
(2.91764e-13 -7.3184e-13 4.37294e-14)
(2.03943e-13 -6.5006e-13 3.7474e-14)
(1.32657e-13 -5.79586e-13 3.22499e-14)
(7.4497e-14 -5.14388e-13 2.84484e-14)
(2.81114e-14 -2.53674e-13 2.47829e-14)
(1.4974e-12 -3.71985e-13 2.01877e-13)
(1.17707e-12 -1.24223e-12 1.65428e-13)
(8.77593e-13 -1.62478e-12 1.32497e-13)
(6.46407e-13 -1.38716e-12 1.0645e-13)
(4.69187e-13 -1.18205e-12 8.79565e-14)
(3.32036e-13 -1.01457e-12 7.18437e-14)
(2.25793e-13 -8.75236e-13 5.97665e-14)
(1.43166e-13 -7.59446e-13 5.08655e-14)
(7.88617e-14 -6.56538e-13 4.43051e-14)
(2.9623e-14 -3.18828e-13 3.7341e-14)
(2.08968e-12 -9.09578e-13 3.55429e-13)
(1.56302e-12 -2.23327e-12 2.82822e-13)
(1.11608e-12 -2.445e-12 2.19486e-13)
(7.90872e-13 -2.00372e-12 1.73367e-13)
(5.53947e-13 -1.64702e-12 1.38651e-13)
(3.79537e-13 -1.36714e-12 1.11397e-13)
(2.50523e-13 -1.14305e-12 8.96573e-14)
(1.54716e-13 -9.63283e-13 7.44946e-14)
(8.34836e-14 -8.11031e-13 6.32025e-14)
(3.12674e-14 -3.88572e-13 5.33709e-14)
(3.13961e-12 -1.80914e-12 6.29036e-13)
(2.11502e-12 -3.7988e-12 4.7858e-13)
(1.43864e-12 -3.64229e-12 3.59203e-13)
(9.76745e-13 -2.85526e-12 2.73685e-13)
(6.58061e-13 -2.2562e-12 2.12884e-13)
(4.35562e-13 -1.80699e-12 1.66708e-13)
(2.78638e-13 -1.46245e-12 1.30083e-13)
(1.67461e-13 -1.19609e-12 1.05103e-13)
(8.82404e-14 -9.79448e-13 8.6435e-14)
(3.29797e-14 -4.61979e-13 7.1473e-14)
(3.70494e-10 -3.7353e-12 1.19529e-12)
(5.37738e-12 -6.69445e-12 8.10231e-13)
(1.88143e-12 -5.41877e-12 5.82442e-13)
(1.21222e-12 -4.04228e-12 4.26841e-13)
(7.8223e-13 -3.06059e-12 3.19799e-13)
(4.97631e-13 -2.35838e-12 2.42114e-13)
(3.07061e-13 -1.84396e-12 1.85594e-13)
(1.78123e-13 -1.46147e-12 1.43494e-13)
(9.05346e-14 -1.16341e-12 1.15875e-13)
(3.19087e-14 -5.40329e-13 9.27714e-14)
(3.95835e-07 -1.04168e-09 3.66703e-10)
(1.46465e-09 -9.6268e-10 2.42929e-12)
(5.47412e-12 -1.44817e-11 1.01065e-12)
(1.18847e-12 -5.72784e-12 6.94131e-13)
(7.87326e-13 -4.1241e-12 4.92008e-13)
(5.29045e-13 -3.04965e-12 3.56927e-13)
(3.56398e-13 -2.29886e-12 2.62822e-13)
(2.39057e-13 -1.76344e-12 1.95664e-13)
(1.58158e-13 -1.36329e-12 1.51624e-13)
(1.02733e-13 -6.23584e-13 1.18358e-13)
(2.27454e-13 3.69286e-13 1.36355e-14)
(2.14682e-13 3.44854e-13 1.16187e-14)
(1.88344e-13 -5.05706e-14 8.96568e-15)
(1.62999e-13 -5.31727e-14 6.60889e-15)
(1.38838e-13 -5.22762e-14 5.04585e-15)
(1.15695e-13 -5.14949e-14 3.57215e-15)
(9.36287e-14 -5.09747e-14 2.81113e-15)
(7.25902e-14 -4.99753e-14 1.10124e-15)
(5.23562e-14 -4.83808e-14 3.83304e-16)
(3.32227e-14 -2.53715e-14 3.16381e-16)
(4.99948e-13 3.3519e-13 2.01023e-14)
(4.61592e-13 2.39325e-13 1.69975e-14)
(3.9559e-13 -1.8805e-13 1.33721e-14)
(3.3385e-13 -1.84555e-13 1.05733e-14)
(2.76543e-13 -1.77516e-13 8.23443e-15)
(2.23158e-13 -1.70873e-13 5.79928e-15)
(1.73677e-13 -1.64473e-13 4.4115e-15)
(1.27616e-13 -1.58338e-13 3.73e-15)
(8.45711e-14 -1.5146e-13 2.79602e-15)
(4.52038e-14 -7.79944e-14 1.99489e-15)
(6.19096e-13 2.69599e-13 3.25408e-14)
(5.50537e-13 7.07247e-14 2.81229e-14)
(4.55048e-13 -3.83354e-13 2.26099e-14)
(3.69459e-13 -3.63107e-13 1.78578e-14)
(2.9362e-13 -3.40262e-13 1.38293e-14)
(2.26346e-13 -3.1901e-13 1.13308e-14)
(1.66453e-13 -2.99403e-13 9.83799e-15)
(1.13268e-13 -2.81602e-13 8.25899e-15)
(6.57099e-14 -2.62522e-13 6.45166e-15)
(2.42056e-14 -1.33104e-13 5.99483e-15)
(8.13784e-13 1.55067e-13 5.5671e-14)
(6.96985e-13 -1.91636e-13 4.75224e-14)
(5.58703e-13 -6.6025e-13 3.92612e-14)
(4.4027e-13 -6.05189e-13 3.17199e-14)
(3.40172e-13 -5.50256e-13 2.57828e-14)
(2.5522e-13 -5.02011e-13 2.14591e-14)
(1.82868e-13 -4.5883e-13 1.8209e-14)
(1.21486e-13 -4.20492e-13 1.52807e-14)
(6.9081e-14 -3.83174e-13 1.30754e-14)
(2.53165e-14 -1.91468e-13 1.22414e-14)
(1.08884e-12 -3.9787e-14 9.75225e-14)
(8.9439e-13 -5.99135e-13 8.16158e-14)
(6.93003e-13 -1.05309e-12 6.65497e-14)
(5.28632e-13 -9.32757e-13 5.43397e-14)
(3.96121e-13 -8.22445e-13 4.46768e-14)
(2.8866e-13 -7.28754e-13 3.68443e-14)
(2.0146e-13 -6.47606e-13 3.01506e-14)
(1.30466e-13 -5.77832e-13 2.59478e-14)
(7.26781e-14 -5.12899e-13 2.28322e-14)
(2.66085e-14 -2.52687e-13 2.0431e-14)
(1.48366e-12 -3.63945e-13 1.71855e-13)
(1.16618e-12 -1.23069e-12 1.40819e-13)
(8.69093e-13 -1.61477e-12 1.1165e-13)
(6.39716e-13 -1.37933e-12 8.95974e-14)
(4.63745e-13 -1.17572e-12 7.31208e-14)
(3.27698e-13 -1.00921e-12 6.02763e-14)
(2.223e-13 -8.70932e-13 4.93543e-14)
(1.40363e-13 -7.56004e-13 4.13386e-14)
(7.65101e-14 -6.53745e-13 3.52295e-14)
(2.76428e-14 -3.17418e-13 3.06561e-14)
(2.06674e-12 -8.93871e-13 3.04485e-13)
(1.54552e-12 -2.21171e-12 2.40599e-13)
(1.10298e-12 -2.42719e-12 1.85971e-13)
(7.80869e-13 -1.9899e-12 1.45199e-13)
(5.46248e-13 -1.63593e-12 1.15732e-13)
(3.73563e-13 -1.35802e-12 9.21e-14)
(2.4586e-13 -1.13581e-12 7.41236e-14)
(1.51086e-13 -9.57811e-13 6.06113e-14)
(8.05412e-14 -8.06781e-13 5.16199e-14)
(2.88788e-14 -3.85893e-13 4.38005e-14)
(3.09192e-12 -1.77818e-12 5.42226e-13)
(2.08693e-12 -3.75826e-12 4.0887e-13)
(1.41853e-12 -3.61018e-12 3.0291e-13)
(9.62114e-13 -2.83114e-12 2.28988e-13)
(6.47261e-13 -2.23757e-12 1.76668e-13)
(4.27451e-13 -1.79217e-12 1.37709e-13)
(2.7253e-13 -1.45093e-12 1.08648e-13)
(1.62838e-13 -1.18718e-12 8.71051e-14)
(8.46903e-14 -9.72592e-13 7.0586e-14)
(3.02094e-14 -4.58306e-13 5.90223e-14)
(3.48445e-10 -3.65659e-12 1.12968e-12)
(5.13369e-12 -6.59453e-12 6.9245e-13)
(1.84153e-12 -5.3611e-12 4.90847e-13)
(1.18645e-12 -4.00063e-12 3.57886e-13)
(7.64571e-13 -3.02955e-12 2.65128e-13)
(4.85184e-13 -2.33484e-12 1.99945e-13)
(2.98186e-13 -1.82583e-12 1.53315e-13)
(1.71815e-13 -1.44793e-12 1.19006e-13)
(8.58535e-14 -1.15304e-12 9.45472e-14)
(2.84444e-14 -5.34519e-13 7.69657e-14)
(3.62592e-07 -9.86071e-10 4.72832e-10)
(1.34805e-09 -9.06038e-10 1.0613e-11)
(4.42726e-12 -1.41138e-11 3.99036e-12)
(8.77969e-13 -5.77699e-12 2.38885e-12)
(5.91409e-13 -4.14753e-12 1.48002e-12)
(4.04038e-13 -3.05878e-12 9.55986e-13)
(2.73783e-13 -2.30052e-12 6.3665e-13)
(1.83106e-13 -1.7624e-12 4.35423e-13)
(1.19475e-13 -1.36116e-12 3.05759e-13)
(7.18948e-14 -6.24075e-13 2.18493e-13)
(2.26924e-13 3.69592e-13 1.09574e-14)
(2.14318e-13 3.45753e-13 1.0639e-14)
(1.87953e-13 -4.95872e-14 8.09534e-15)
(1.62679e-13 -5.25301e-14 6.66469e-15)
(1.38582e-13 -5.17893e-14 4.92462e-15)
(1.15544e-13 -5.12407e-14 3.67826e-15)
(9.35696e-14 -5.04634e-14 2.66343e-15)
(7.236e-14 -4.93766e-14 1.48183e-15)
(5.21446e-14 -4.84111e-14 1.31646e-15)
(3.31201e-14 -2.52488e-14 1.52571e-15)
(4.98674e-13 3.35835e-13 1.61378e-14)
(4.60489e-13 2.40405e-13 1.48631e-14)
(3.94652e-13 -1.87082e-13 1.25473e-14)
(3.33076e-13 -1.83653e-13 9.88714e-15)
(2.75913e-13 -1.76624e-13 8.11099e-15)
(2.22658e-13 -1.70136e-13 6.29929e-15)
(1.73242e-13 -1.64188e-13 4.75855e-15)
(1.27146e-13 -1.58157e-13 4.34421e-15)
(8.41167e-14 -1.51163e-13 3.86211e-15)
(4.48341e-14 -7.78456e-14 3.23665e-15)
(6.16811e-13 2.70382e-13 2.65532e-14)
(5.48533e-13 7.23025e-14 2.45519e-14)
(4.53376e-13 -3.81618e-13 2.0215e-14)
(3.68106e-13 -3.617e-13 1.6429e-14)
(2.92496e-13 -3.39121e-13 1.349e-14)
(2.25254e-13 -3.18256e-13 1.05397e-14)
(1.65516e-13 -2.98772e-13 8.8186e-15)
(1.12464e-13 -2.8102e-13 7.68346e-15)
(6.50178e-14 -2.6227e-13 6.57226e-15)
(2.35654e-14 -1.33155e-13 6.47118e-15)
(8.0977e-13 1.56683e-13 4.51748e-14)
(6.93765e-13 -1.89096e-13 4.17724e-14)
(5.55976e-13 -6.57628e-13 3.43431e-14)
(4.37993e-13 -6.02876e-13 2.78199e-14)
(3.38212e-13 -5.4863e-13 2.29519e-14)
(2.53526e-13 -5.00666e-13 1.90966e-14)
(1.81545e-13 -4.57691e-13 1.56657e-14)
(1.20269e-13 -4.19613e-13 1.40789e-14)
(6.80258e-14 -3.82386e-13 1.23549e-14)
(2.43185e-14 -1.91245e-13 1.06119e-14)
(1.08213e-12 -3.63089e-14 7.91117e-14)
(8.88954e-13 -5.9419e-13 7.04663e-14)
(6.88713e-13 -1.04872e-12 5.7359e-14)
(5.25106e-13 -9.29187e-13 4.69031e-14)
(3.93196e-13 -8.19595e-13 3.8765e-14)
(2.86241e-13 -7.2613e-13 3.21122e-14)
(1.99407e-13 -6.45583e-13 2.65935e-14)
(1.28796e-13 -5.76417e-13 2.30418e-14)
(7.11595e-14 -5.11887e-13 2.00961e-14)
(2.52982e-14 -2.52073e-13 1.76497e-14)
(1.47238e-12 -3.57422e-13 1.38984e-13)
(1.1573e-12 -1.22149e-12 1.20364e-13)
(8.62238e-13 -1.60673e-12 9.62245e-14)
(6.3436e-13 -1.37305e-12 7.67399e-14)
(4.59465e-13 -1.17079e-12 6.17162e-14)
(3.24282e-13 -1.00517e-12 5.03895e-14)
(2.1947e-13 -8.67498e-13 4.18891e-14)
(1.38065e-13 -7.53384e-13 3.5358e-14)
(7.45419e-14 -6.51703e-13 3.02782e-14)
(2.60587e-14 -3.16086e-13 2.65306e-14)
(2.04772e-12 -8.80599e-13 2.4494e-13)
(1.53136e-12 -2.19436e-12 2.03765e-13)
(1.0925e-12 -2.41267e-12 1.58205e-13)
(7.72954e-13 -1.97867e-12 1.22585e-13)
(5.40144e-13 -1.62715e-12 9.69243e-14)
(3.68877e-13 -1.35095e-12 7.75755e-14)
(2.42129e-13 -1.1303e-12 6.24747e-14)
(1.48054e-13 -9.53659e-13 5.17196e-14)
(7.82046e-14 -8.03426e-13 4.33077e-14)
(2.69449e-14 -3.83824e-13 3.6383e-14)
(3.055e-12 -1.75147e-12 4.34866e-13)
(2.06459e-12 -3.72482e-12 3.42816e-13)
(1.40266e-12 -3.58393e-12 2.54518e-13)
(9.50391e-13 -2.81178e-12 1.91869e-13)
(6.38677e-13 -2.2229e-12 1.47443e-13)
(4.21004e-13 -1.78091e-12 1.14721e-13)
(2.67596e-13 -1.44226e-12 9.04241e-14)
(1.59045e-13 -1.18013e-12 7.2936e-14)
(8.18655e-14 -9.66993e-13 5.90122e-14)
(2.7933e-14 -4.55311e-13 4.8485e-14)
(3.3167e-10 -3.58164e-12 8.58244e-13)
(4.44969e-12 -6.5167e-12 5.43126e-13)
(1.51514e-12 -5.31459e-12 3.90589e-13)
(9.81159e-13 -3.96723e-12 2.89159e-13)
(6.32888e-13 -3.00477e-12 2.1773e-13)
(3.97789e-13 -2.31666e-12 1.6787e-13)
(2.38785e-13 -1.81227e-12 1.31838e-13)
(1.30595e-13 -1.43747e-12 1.05228e-13)
(5.67675e-14 -1.14514e-12 8.49004e-14)
(7.91646e-15 -5.30425e-13 7.06883e-14)
(3.41583e-07 -9.38485e-10 5.93005e-10)
(1.19927e-09 -8.73539e-10 1.93739e-10)
(-1.28641e-11 -1.97174e-11 1.24876e-10)
(-1.12048e-11 -9.84145e-12 8.30566e-11)
(-8.0032e-12 -6.97276e-12 5.67479e-11)
(-5.84817e-12 -5.06303e-12 3.96484e-11)
(-4.34952e-12 -3.74598e-12 2.82736e-11)
(-3.28947e-12 -2.82177e-12 2.05395e-11)
(-2.54601e-12 -2.14857e-12 1.51706e-11)
(-2.41183e-12 -1.23111e-12 1.13148e-11)
(2.26516e-13 3.69439e-13 8.77915e-15)
(2.14565e-13 3.45895e-13 5.53413e-14)
(1.88161e-13 -4.90994e-14 5.38562e-14)
(1.62957e-13 -5.2015e-14 5.22956e-14)
(1.38733e-13 -5.11885e-14 5.02593e-14)
(1.15611e-13 -5.06926e-14 4.8902e-14)
(9.35447e-14 -5.01907e-14 4.68045e-14)
(7.2332e-14 -4.95328e-14 4.61527e-14)
(5.20748e-14 -4.84916e-14 4.51809e-14)
(3.29955e-14 -2.51144e-14 4.44033e-14)
(4.97702e-13 3.35745e-13 2.14054e-14)
(4.6041e-13 2.4032e-13 7.94418e-14)
(3.94554e-13 -1.86534e-13 7.52231e-14)
(3.33036e-13 -1.83228e-13 7.09427e-14)
(2.7579e-13 -1.76493e-13 6.73413e-14)
(2.22554e-13 -1.69933e-13 6.40358e-14)
(1.73069e-13 -1.64056e-13 6.07912e-14)
(1.26894e-13 -1.58319e-13 5.82999e-14)
(8.38981e-14 -1.51348e-13 5.57724e-14)
(4.44875e-14 -7.80575e-14 5.32143e-14)
(6.15094e-13 2.70546e-13 3.17738e-14)
(5.47822e-13 7.23022e-14 1.03937e-13)
(4.52857e-13 -3.81105e-13 9.54235e-14)
(3.67639e-13 -3.61324e-13 8.82651e-14)
(2.92083e-13 -3.38736e-13 8.1236e-14)
(2.2494e-13 -3.17877e-13 7.47965e-14)
(1.65171e-13 -2.98893e-13 6.93316e-14)
(1.1204e-13 -2.81289e-13 6.4946e-14)
(6.45585e-14 -2.62598e-13 6.07319e-14)
(2.31184e-14 -1.33486e-13 5.71234e-14)
(8.06855e-13 1.56864e-13 4.87613e-14)
(6.92161e-13 -1.89079e-13 1.39711e-13)
(5.5471e-13 -6.56506e-13 1.25033e-13)
(4.36903e-13 -6.02199e-13 1.11347e-13)
(3.3728e-13 -5.48085e-13 9.95051e-14)
(2.52631e-13 -5.00235e-13 8.96571e-14)
(1.80631e-13 -4.57786e-13 8.07443e-14)
(1.1945e-13 -4.20014e-13 7.36057e-14)
(6.71803e-14 -3.82564e-13 6.70407e-14)
(2.36491e-14 -1.91646e-13 6.11949e-14)
(1.07706e-12 -3.54283e-14 7.90015e-14)
(8.86023e-13 -5.93742e-13 1.92779e-13)
(6.86213e-13 -1.04686e-12 1.67505e-13)
(5.23061e-13 -9.27845e-13 1.43936e-13)
(3.91542e-13 -8.1857e-13 1.25229e-13)
(2.8481e-13 -7.25569e-13 1.0936e-13)
(1.98085e-13 -6.45379e-13 9.62072e-14)
(1.27596e-13 -5.7637e-13 8.49949e-14)
(7.01296e-14 -5.11694e-13 7.55308e-14)
(2.42205e-14 -2.52173e-13 6.71194e-14)
(1.46394e-12 -3.547e-13 1.32246e-13)
(1.15205e-12 -1.2197e-12 2.71646e-13)
(8.58034e-13 -1.60306e-12 2.28846e-13)
(6.31063e-13 -1.36983e-12 1.89488e-13)
(4.56802e-13 -1.16835e-12 1.59232e-13)
(3.2202e-13 -1.00361e-12 1.34557e-13)
(2.17624e-13 -8.66727e-13 1.15142e-13)
(1.36453e-13 -7.52779e-13 9.94188e-14)
(7.31891e-14 -6.51316e-13 8.52443e-14)
(2.48296e-14 -3.16171e-13 7.43591e-14)
(2.03354e-12 -8.74164e-13 2.22126e-13)
(1.52245e-12 -2.18897e-12 3.90842e-13)
(1.08582e-12 -2.40506e-12 3.14947e-13)
(7.67787e-13 -1.97265e-12 2.5303e-13)
(5.36021e-13 -1.62285e-12 2.0553e-13)
(3.65538e-13 -1.34775e-12 1.68691e-13)
(2.39529e-13 -1.12797e-12 1.39956e-13)
(1.45957e-13 -9.51952e-13 1.18079e-13)
(7.64173e-14 -8.01837e-13 9.74824e-14)
(2.55792e-14 -3.83406e-13 8.30606e-14)
(3.02866e-12 -1.73655e-12 3.81503e-13)
(2.05277e-12 -3.71122e-12 5.7751e-13)
(1.39393e-12 -3.56936e-12 4.45632e-13)
(9.43501e-13 -2.80086e-12 3.43742e-13)
(6.33026e-13 -2.21474e-12 2.69055e-13)
(4.16261e-13 -1.77461e-12 2.13435e-13)
(2.63496e-13 -1.43758e-12 1.7098e-13)
(1.55522e-13 -1.17677e-12 1.38815e-13)
(7.8725e-14 -9.64184e-13 1.13244e-13)
(2.50506e-14 -4.54009e-13 9.395e-14)
(2.99757e-10 -3.58841e-12 2.37502e-12)
(-1.21993e-11 -6.52377e-12 2.24626e-12)
(-1.02633e-11 -5.33156e-12 1.7762e-12)
(-7.48562e-12 -3.98385e-12 1.42093e-12)
(-5.585e-12 -3.02121e-12 1.17117e-12)
(-4.24784e-12 -2.33248e-12 9.87577e-13)
(-3.28877e-12 -1.82722e-12 8.47999e-13)
(-2.58787e-12 -1.4517e-12 7.40251e-13)
(-2.06639e-12 -1.15883e-12 6.5567e-13)
(-1.66185e-12 -5.44957e-13 5.90767e-13)
(3.44251e-07 -1.09572e-09 6.04414e-09)
(6.16263e-10 -9.90953e-10 4.69459e-09)
(-4.69622e-10 -1.27595e-10 3.54236e-09)
(-3.83072e-10 -9.5055e-11 2.71697e-09)
(-3.1163e-10 -7.50952e-11 2.1175e-09)
(-2.56484e-10 -6.00102e-11 1.67377e-09)
(-2.13104e-10 -4.84834e-11 1.33998e-09)
(-1.7872e-10 -3.95656e-11 1.08519e-09)
(-1.5217e-10 -3.25592e-11 8.88264e-10)
(-1.68929e-10 -2.78662e-11 7.4331e-10)
(2.25053e-13 3.51359e-13 1.32356e-14)
(2.16693e-13 3.27228e-13 8.19038e-13)
(1.90049e-13 -4.93416e-14 8.1948e-13)
(1.64431e-13 -5.20573e-14 8.12933e-13)
(1.39836e-13 -5.13884e-14 8.06181e-13)
(1.16368e-13 -5.08068e-14 8.00367e-13)
(9.3845e-14 -5.02978e-14 7.93404e-13)
(7.22145e-14 -4.96516e-14 7.87429e-13)
(5.15375e-14 -4.86256e-14 7.81211e-13)
(3.21008e-14 -2.57844e-14 7.75936e-13)
(4.96434e-13 3.13669e-13 1.46726e-13)
(4.6165e-13 2.16755e-13 1.06935e-12)
(3.95684e-13 -1.87554e-13 1.05152e-12)
(3.33812e-13 -1.84263e-13 1.02888e-12)
(2.76297e-13 -1.77503e-13 1.00569e-12)
(2.22771e-13 -1.71056e-13 9.83707e-13)
(1.72879e-13 -1.65333e-13 9.62837e-13)
(1.26409e-13 -1.59485e-13 9.41805e-13)
(8.29815e-14 -1.52374e-13 9.21946e-13)
(4.32857e-14 -7.96917e-14 9.02713e-13)
(6.14353e-13 2.43806e-13 1.73569e-13)
(5.49797e-13 4.28514e-14 1.23293e-12)
(4.54569e-13 -3.82939e-13 1.19326e-12)
(3.69166e-13 -3.63221e-13 1.14781e-12)
(2.93384e-13 -3.40576e-13 1.10387e-12)
(2.25861e-13 -3.19992e-13 1.06245e-12)
(1.65811e-13 -3.00994e-13 1.02362e-12)
(1.124e-13 -2.83437e-13 9.85735e-13)
(6.45956e-14 -2.6474e-13 9.50903e-13)
(2.27546e-14 -1.36323e-13 9.17426e-13)
(8.0511e-13 1.24615e-13 2.08876e-13)
(6.9329e-13 -2.2588e-13 1.43318e-12)
(5.55671e-13 -6.58985e-13 1.3631e-12)
(4.3801e-13 -6.04407e-13 1.28661e-12)
(3.38153e-13 -5.50765e-13 1.21561e-12)
(2.53299e-13 -5.03163e-13 1.1507e-12)
(1.81096e-13 -4.60568e-13 1.09013e-12)
(1.1963e-13 -4.22764e-13 1.03367e-12)
(6.71194e-14 -3.85488e-13 9.81229e-13)
(2.32077e-14 -1.95754e-13 9.32508e-13)
(1.07355e-12 -7.43728e-14 2.58249e-13)
(8.85672e-13 -6.38946e-13 1.67992e-12)
(6.86196e-13 -1.04906e-12 1.56801e-12)
(5.23398e-13 -9.30056e-13 1.45033e-12)
(3.91814e-13 -8.21601e-13 1.34524e-12)
(2.85075e-13 -7.28776e-13 1.25013e-12)
(1.98167e-13 -6.48737e-13 1.1635e-12)
(1.27455e-13 -5.79863e-13 1.08513e-12)
(6.97935e-14 -5.15426e-13 1.01337e-12)
(2.37117e-14 -2.57668e-13 9.48847e-13)
(1.45772e-12 -4.01144e-13 3.32366e-13)
(1.14946e-12 -1.27398e-12 1.98783e-12)
(8.56648e-13 -1.60402e-12 1.81945e-12)
(6.30223e-13 -1.37128e-12 1.64504e-12)
(4.56347e-13 -1.1712e-12 1.49492e-12)
(3.2174e-13 -1.007e-12 1.36252e-12)
(2.1724e-13 -8.70503e-13 1.24555e-12)
(1.35832e-13 -7.56547e-13 1.14144e-12)
(7.26732e-14 -6.55155e-13 1.04883e-12)
(2.40569e-14 -3.22552e-13 9.65897e-13)
(2.02269e-12 -9.2886e-13 4.28514e-13)
(1.51578e-12 -2.25264e-12 2.38355e-12)
(1.08168e-12 -2.40294e-12 2.12951e-12)
(7.65145e-13 -1.97229e-12 1.87864e-12)
(5.34393e-13 -1.62429e-12 1.66965e-12)
(3.64399e-13 -1.3506e-12 1.48996e-12)
(2.38593e-13 -1.13205e-12 1.33667e-12)
(1.45087e-13 -9.55618e-13 1.20277e-12)
(7.55034e-14 -8.05871e-13 1.08621e-12)
(2.43992e-14 -3.90958e-13 9.84834e-13)
(2.85932e-12 -1.80039e-12 6.00737e-13)
(1.90419e-12 -3.78484e-12 2.91084e-12)
(1.26663e-12 -3.56006e-12 2.53466e-12)
(8.33178e-13 -2.79539e-12 2.17094e-12)
(5.34327e-13 -2.21337e-12 1.88249e-12)
(3.2594e-13 -1.77591e-12 1.64353e-12)
(1.79565e-13 -1.44045e-12 1.44407e-12)
(7.64749e-14 -1.18031e-12 1.27483e-12)
(3.05529e-15 -9.68703e-13 1.1316e-12)
(-4.80389e-14 -4.6213e-13 1.00964e-12)
(-1.64791e-10 -4.13411e-12 3.31064e-11)
(-4.16379e-10 -6.98257e-12 3.2306e-11)
(-3.42671e-10 -5.63793e-12 2.83477e-11)
(-2.83471e-10 -4.27226e-12 2.5011e-11)
(-2.37025e-10 -3.29624e-12 2.22358e-11)
(-2.00091e-10 -2.59013e-12 1.98918e-11)
(-1.7039e-10 -2.0672e-12 1.78944e-11)
(-1.46259e-10 -1.67484e-12 1.61803e-11)
(-1.2649e-10 -1.36707e-12 1.4696e-11)
(-1.11517e-10 -7.52108e-13 1.36134e-11)
(3.97056e-07 -2.10238e-09 6.87961e-08)
(-7.92756e-09 -1.67032e-09 5.9834e-08)
(-8.69438e-09 -6.98322e-10 5.20033e-08)
(-8.08131e-09 -6.35525e-10 4.55789e-08)
(-7.50067e-09 -5.83417e-10 4.02528e-08)
(-6.96962e-09 -5.35487e-10 3.57935e-08)
(-6.49039e-09 -4.9196e-10 3.20256e-08)
(-6.06179e-09 -4.52691e-10 2.88154e-08)
(-5.70647e-09 -4.21e-10 2.60619e-08)
(-7.90188e-09 -4.35218e-10 2.42004e-08)
(2.0775e-13 5.36965e-14 9.31777e-15)
(1.8858e-13 2.90331e-14 7.68978e-13)
(1.63363e-13 -4.89898e-14 7.69898e-13)
(1.39002e-13 -4.9065e-14 7.64433e-13)
(1.1573e-13 -4.85002e-14 7.58658e-13)
(9.35758e-14 -4.78921e-14 7.53505e-13)
(7.21942e-14 -4.73017e-14 7.47717e-13)
(5.18808e-14 -4.69096e-14 7.42404e-13)
(3.23647e-14 -4.61202e-14 7.37311e-13)
(1.41263e-14 -2.39655e-14 7.32638e-13)
(4.76481e-13 -1.13976e-14 1.32478e-13)
(4.19414e-13 -1.03679e-13 9.97314e-13)
(3.56458e-13 -1.80025e-13 9.82663e-13)
(2.97731e-13 -1.74409e-13 9.62898e-13)
(2.43208e-13 -1.67618e-13 9.42629e-13)
(1.92655e-13 -1.61651e-13 9.23352e-13)
(1.45473e-13 -1.55854e-13 9.04887e-13)
(1.0177e-13 -1.50225e-13 8.85972e-13)
(6.0911e-14 -1.43685e-13 8.68592e-13)
(2.37238e-14 -7.33739e-14 8.51632e-13)
(6.09851e-13 -1.11231e-13 1.53997e-13)
(5.20224e-13 -3.01869e-13 1.14082e-12)
(4.28609e-13 -3.66677e-13 1.10788e-12)
(3.4722e-13 -3.44371e-13 1.06789e-12)
(2.75056e-13 -3.22294e-13 1.02967e-12)
(2.10989e-13 -3.02413e-13 9.93133e-13)
(1.5417e-13 -2.83869e-13 9.58604e-13)
(1.0367e-13 -2.66942e-13 9.24987e-13)
(5.86928e-14 -2.49147e-13 8.93693e-13)
(1.95556e-14 -1.25325e-13 8.63927e-13)
(7.99629e-13 -2.64839e-13 1.80488e-13)
(6.59352e-13 -5.97226e-13 1.31376e-12)
(5.2629e-13 -6.31505e-13 1.25451e-12)
(4.13434e-13 -5.74639e-13 1.18871e-12)
(3.17977e-13 -5.22442e-13 1.12736e-12)
(2.37096e-13 -4.76315e-13 1.07003e-12)
(1.68604e-13 -4.35075e-13 1.01682e-12)
(1.10375e-13 -3.98553e-13 9.66892e-13)
(6.09885e-14 -3.62389e-13 9.205e-13)
(1.98634e-14 -1.7954e-13 8.76632e-13)
(1.06628e-12 -5.02262e-13 2.14575e-13)
(8.46654e-13 -1.03931e-12 1.52121e-12)
(6.5241e-13 -1.00824e-12 1.42797e-12)
(4.95761e-13 -8.87173e-13 1.32898e-12)
(3.69474e-13 -7.81443e-13 1.2385e-12)
(2.67422e-13 -6.91125e-13 1.15604e-12)
(1.84708e-13 -6.13482e-13 1.0804e-12)
(1.17731e-13 -5.46767e-13 1.01147e-12)
(6.33323e-14 -4.84421e-13 9.47868e-13)
(2.01598e-14 -2.3637e-13 8.89999e-13)
(1.44917e-12 -8.71388e-13 2.62258e-13)
(1.10345e-12 -1.70558e-12 1.77325e-12)
(8.17397e-13 -1.54658e-12 1.63677e-12)
(5.99012e-13 -1.31157e-12 1.49207e-12)
(4.31523e-13 -1.11673e-12 1.36465e-12)
(3.02504e-13 -9.56929e-13 1.25115e-12)
(2.02706e-13 -8.24272e-13 1.14981e-12)
(1.25622e-13 -7.14037e-13 1.05876e-12)
(6.57833e-14 -6.15916e-13 9.77688e-13)
(2.03989e-14 -2.95572e-13 9.04189e-13)
(2.01023e-12 -1.45158e-12 3.14821e-13)
(1.4598e-12 -2.72117e-12 2.08848e-12)
(1.03468e-12 -2.32305e-12 1.8892e-12)
(7.28712e-13 -1.89161e-12 1.68329e-12)
(5.05833e-13 -1.55271e-12 1.50931e-12)
(3.42461e-13 -1.28598e-12 1.35761e-12)
(2.22182e-13 -1.07312e-12 1.2259e-12)
(1.33387e-13 -9.02473e-13 1.10898e-12)
(6.77387e-14 -7.57704e-13 1.00877e-12)
(2.00021e-14 -3.57959e-13 9.18378e-13)
(1.06201e-13 -2.3793e-12 4.10892e-13)
(-7.89995e-13 -4.29003e-12 2.49277e-12)
(-1.27624e-12 -3.45071e-12 2.20826e-12)
(-1.57179e-12 -2.68714e-12 1.91702e-12)
(-1.74534e-12 -2.12076e-12 1.68218e-12)
(-1.83927e-12 -1.69388e-12 1.48337e-12)
(-1.88086e-12 -1.36727e-12 1.31452e-12)
(-1.88823e-12 -1.11507e-12 1.16933e-12)
(-1.87302e-12 -9.10273e-13 1.04549e-12)
(-1.87387e-12 -4.22853e-13 9.3759e-13)
(-5.35407e-09 -4.39688e-12 3.1099e-11)
(-5.37884e-09 -6.76759e-12 3.02954e-11)
(-5.06582e-09 -4.71033e-12 2.67438e-11)
(-4.78181e-09 -3.42827e-12 2.37193e-11)
(-4.5255e-09 -2.53467e-12 2.11642e-11)
(-4.29351e-09 -1.89871e-12 1.89829e-11)
(-4.08283e-09 -1.43817e-12 1.71094e-11)
(-3.89089e-09 -1.10005e-12 1.54913e-11)
(-3.71579e-09 -9.22035e-13 1.40828e-11)
(-3.63313e-09 -5.61488e-13 1.30586e-11)
(5.79991e-07 -1.20405e-09 6.31402e-08)
(3.34522e-08 -1.49007e-10 5.5325e-08)
(2.61865e-08 7.51861e-10 4.8582e-08)
(2.17289e-08 6.88109e-10 4.29426e-08)
(1.79531e-08 6.24797e-10 3.81906e-08)
(1.47246e-08 5.68249e-10 3.41584e-08)
(1.19427e-08 5.18016e-10 3.07132e-08)
(9.5273e-09 4.72503e-10 2.77503e-08)
(7.04147e-09 2.25906e-10 2.51884e-08)
(-1.00915e-07 -2.17332e-10 2.34682e-08)
(2.59625e-14 6.5863e-15 -5.40719e-12)
(3.15684e-14 1.06176e-14 -5.46694e-12)
(3.8917e-14 1.26178e-14 -5.52841e-12)
(4.64953e-14 1.27524e-14 -5.59097e-12)
(5.43463e-14 1.28674e-14 -5.6543e-12)
(6.24852e-14 1.31556e-14 -5.71843e-12)
(7.08387e-14 1.34711e-14 -5.78335e-12)
(7.94397e-14 1.33286e-14 -5.8486e-12)
(8.8308e-14 -6.19096e-15 -5.90845e-12)
(8.74669e-14 -1.05175e-14 -5.21418e-12)
(2.80604e-14 1.99286e-14 -5.46748e-12)
(3.55457e-14 3.3797e-14 -5.65196e-12)
(4.6824e-14 4.10247e-14 -5.84756e-12)
(5.89024e-14 4.25625e-14 -6.05073e-12)
(7.19094e-14 4.42598e-14 -6.2629e-12)
(8.58284e-14 4.59955e-14 -6.48412e-12)
(1.00763e-13 4.76838e-14 -6.71455e-12)
(1.16823e-13 4.91889e-14 -6.95514e-12)
(1.34047e-13 1.96758e-14 -7.19932e-12)
(1.3959e-13 3.40818e-15 -6.58859e-12)
(6.31136e-15 3.41385e-14 -5.52892e-12)
(1.41788e-14 5.9165e-14 -5.84621e-12)
(2.6452e-14 7.31795e-14 -6.18994e-12)
(4.03119e-14 7.78777e-14 -6.55926e-12)
(5.59171e-14 8.28691e-14 -6.95523e-12)
(7.34383e-14 8.83066e-14 -7.38113e-12)
(9.31926e-14 9.43805e-14 -7.83959e-12)
(1.1547e-13 1.00553e-13 -8.33292e-12)
(1.40649e-13 7.08086e-14 -8.85531e-12)
(1.56944e-13 3.81346e-14 -8.42118e-12)
(6.41941e-15 4.84973e-14 -5.59063e-12)
(1.4719e-14 8.60441e-14 -6.04779e-12)
(2.81066e-14 1.0895e-13 -6.55753e-12)
(4.40168e-14 1.19232e-13 -7.12088e-12)
(6.26973e-14 1.30573e-13 -7.74407e-12)
(8.48585e-14 1.43273e-13 -8.43494e-12)
(1.11051e-13 1.57585e-13 -9.20268e-12)
(1.42177e-13 1.7373e-13 -1.00585e-11)
(1.7897e-13 1.48442e-13 -1.09989e-11)
(2.08226e-13 9.31847e-14 -1.08953e-11)
(6.43786e-15 6.36109e-14 -5.65325e-12)
(1.52545e-14 1.15332e-13 -6.25849e-12)
(2.99881e-14 1.49255e-13 -6.95259e-12)
(4.81865e-14 1.67791e-13 -7.74255e-12)
(7.07498e-14 1.89173e-13 -8.64476e-12)
(9.87494e-14 2.14377e-13 -9.67879e-12)
(1.33672e-13 2.44096e-13 -1.08667e-11)
(1.77325e-13 2.78591e-13 -1.22382e-11)
(2.31869e-13 2.67201e-13 -1.38071e-11)
(2.82891e-13 1.8152e-13 -1.42854e-11)
(6.49257e-15 7.90712e-14 -5.71743e-12)
(1.58109e-14 1.46921e-13 -6.47862e-12)
(3.1955e-14 1.94352e-13 -7.37719e-12)
(5.2859e-14 2.25048e-13 -8.43238e-12)
(8.01032e-14 2.62008e-13 -9.67722e-12)
(1.15736e-13 3.07109e-13 -1.11533e-11)
(1.62538e-13 3.62564e-13 -1.29114e-11)
(2.24395e-13 4.30813e-13 -1.50202e-11)
(3.06703e-13 4.52189e-13 -1.75379e-11)
(3.9452e-13 3.23781e-13 -1.89973e-11)
(5.9033e-15 9.52736e-14 -5.78227e-12)
(1.5784e-14 1.81015e-13 -6.70839e-12)
(3.34105e-14 2.45173e-13 -7.83402e-12)
(5.74724e-14 2.9258e-13 -9.19899e-12)
(9.04116e-14 3.52354e-13 -1.08643e-11)
(1.35836e-13 4.28678e-13 -1.29107e-11)
(1.98947e-13 5.27108e-13 -1.54432e-11)
(2.87742e-13 6.55319e-13 -1.86046e-11)
(4.13691e-13 7.44565e-13 -2.25546e-11)
(5.65683e-13 5.56243e-13 -2.56652e-11)
(-1.88779e-12 1.12011e-13 -5.85285e-12)
(-1.92746e-12 2.17761e-13 -6.95224e-12)
(-1.99504e-12 3.0213e-13 -8.33092e-12)
(-2.06202e-12 3.72558e-13 -1.00574e-11)
(-2.12535e-12 4.6506e-13 -1.22391e-11)
(-2.18008e-12 5.88784e-13 -1.50218e-11)
(-2.21794e-12 7.57517e-13 -1.8607e-11)
(-2.22504e-12 9.9087e-13 -2.32808e-11)
(-2.17693e-12 1.21685e-12 -2.94071e-11)
(-1.91295e-12 9.43798e-13 -3.52856e-11)
(-3.63314e-09 1.97517e-13 -1.80223e-11)
(-3.71584e-09 1.0359e-13 -2.02096e-11)
(-3.891e-09 1.13198e-13 -2.31222e-11)
(-4.08303e-09 1.91475e-13 -2.67082e-11)
(-4.29383e-09 3.0569e-13 -3.11784e-11)
(-4.52601e-09 4.74183e-13 -3.68288e-11)
(-4.78261e-09 7.26562e-13 -4.40801e-11)
(-5.06705e-09 1.11457e-12 -5.35489e-11)
(-5.38072e-09 1.99905e-12 -6.60918e-11)
(-5.35695e-09 2.08681e-12 -7.99445e-11)
(-1.00915e-07 2.16917e-10 -2.34732e-08)
(7.04134e-09 -2.26857e-10 -2.51947e-08)
(9.5271e-09 -4.73689e-10 -2.77584e-08)
(1.19424e-08 -5.19562e-10 -3.07238e-08)
(1.47242e-08 -5.70297e-10 -3.41722e-08)
(1.79525e-08 -6.27552e-10 -3.82091e-08)
(2.17281e-08 -6.91887e-10 -4.29677e-08)
(2.61853e-08 -7.57133e-10 -4.86166e-08)
(3.34503e-08 1.41609e-10 -5.53735e-08)
(5.79988e-07 1.20036e-09 -6.321e-08)
(3.33647e-14 2.4619e-14 -5.7289e-12)
(5.41052e-14 4.8643e-14 -5.79407e-12)
(7.75869e-14 5.15299e-14 -5.86088e-12)
(1.0182e-13 5.21624e-14 -5.92857e-12)
(1.27086e-13 5.2651e-14 -5.99795e-12)
(1.53366e-13 5.3329e-14 -6.06806e-12)
(1.80572e-13 5.38368e-14 -6.13881e-12)
(2.08917e-13 5.1462e-14 -6.21025e-12)
(2.3829e-13 -2.64643e-13 -6.27619e-12)
(2.47949e-13 -2.87123e-13 -5.54048e-12)
(4.27631e-14 7.58155e-14 -5.79419e-12)
(8.09775e-14 1.52232e-13 -5.99592e-12)
(1.25532e-13 1.64595e-13 -6.20816e-12)
(1.73266e-13 1.70281e-13 -6.43076e-12)
(2.24353e-13 1.7655e-13 -6.66242e-12)
(2.79092e-13 1.82784e-13 -6.90402e-12)
(3.37789e-13 1.89239e-13 -7.15708e-12)
(4.00758e-13 1.93245e-13 -7.42128e-12)
(4.67891e-13 -1.54433e-13 -7.69004e-12)
(5.04137e-13 -2.43003e-13 -7.04531e-12)
(2.11431e-14 1.29858e-13 -5.86175e-12)
(6.12664e-14 2.63599e-13 -6.20714e-12)
(1.09911e-13 2.91365e-13 -6.58313e-12)
(1.64556e-13 3.09119e-13 -6.98673e-12)
(2.2564e-13 3.28051e-13 -7.42125e-12)
(2.93973e-13 3.48806e-13 -7.88937e-12)
(3.70592e-13 3.71104e-13 -8.39444e-12)
(4.56585e-13 3.91328e-13 -8.94022e-12)
(5.52112e-13 2.68263e-14 -9.5191e-12)
(6.216e-13 -1.53592e-13 -9.07279e-12)
(2.13385e-14 1.85412e-13 -5.92887e-12)
(6.33892e-14 3.82858e-13 -6.42815e-12)
(1.16666e-13 4.33145e-13 -6.98599e-12)
(1.78973e-13 4.71338e-13 -7.60392e-12)
(2.51854e-13 5.13458e-13 -8.29001e-12)
(3.3721e-13 5.60483e-13 -9.05359e-12)
(4.36966e-13 6.134e-13 -9.90511e-12)
(5.54139e-13 6.67596e-13 -1.08593e-11)
(6.9031e-13 3.0195e-13 -1.19114e-11)
(8.06878e-13 -5.89122e-15 -1.184e-11)
(2.16432e-14 2.43599e-13 -5.99917e-12)
(6.57683e-14 5.11119e-13 -6.65969e-12)
(1.23982e-13 5.91709e-13 -7.41972e-12)
(1.95101e-13 6.60615e-13 -8.2897e-12)
(2.82095e-13 7.39779e-13 -9.28755e-12)
(3.88531e-13 8.30915e-13 -1.04362e-11)
(5.18808e-13 9.36682e-13 -1.17647e-11)
(6.78764e-13 1.05309e-12 -1.3307e-11)
(8.74299e-13 7.17151e-13 -1.5082e-11)
(1.06288e-12 2.33087e-13 -1.56835e-11)
(2.19415e-14 3.04059e-13 -6.07007e-12)
(6.81858e-14 6.48392e-13 -6.90239e-12)
(1.31755e-13 7.68995e-13 -7.88851e-12)
(2.13054e-13 8.82158e-13 -9.05442e-12)
(3.16931e-13 1.01642e-12 -1.04373e-11)
(4.49828e-13 1.17654e-12 -1.20872e-11)
(6.20271e-13 1.36958e-12 -1.40683e-11)
(8.39613e-13 1.59568e-12 -1.64659e-11)
(1.12207e-12 1.34119e-12 -1.93468e-11)
(1.42394e-12 6.11712e-13 -2.11171e-11)
(2.22254e-14 3.67248e-13 -6.14286e-12)
(7.06292e-14 7.95776e-13 -7.1561e-12)
(1.40147e-13 9.67585e-13 -8.39435e-12)
(2.3301e-13 1.14132e-12 -9.90695e-12)
(3.57145e-13 1.3549e-12 -1.17666e-11)
(5.23362e-13 1.61969e-12 -1.40703e-11)
(7.46885e-13 1.95127e-12 -1.69487e-11)
(1.04942e-12 2.36199e-12 -2.05863e-11)
(1.46014e-12 2.28627e-12 -2.5176e-11)
(1.94476e-12 1.21742e-12 -2.89513e-11)
(-5.04296e-14 4.32689e-13 -6.22133e-12)
(-2.11466e-15 9.53791e-13 -7.42612e-12)
(7.02929e-14 1.18994e-12 -8.94589e-12)
(1.71986e-13 1.44497e-12 -1.08677e-11)
(3.14811e-13 1.76997e-12 -1.33162e-11)
(5.15937e-13 2.18894e-12 -1.64731e-11)
(8.00953e-13 2.73745e-12 -2.05904e-11)
(1.20889e-12 3.45408e-12 -2.60415e-11)
(1.79819e-12 3.73063e-12 -3.3288e-11)
(2.69212e-12 2.19447e-12 -4.05275e-11)
(-1.11519e-10 7.16577e-13 -1.88769e-11)
(-1.26496e-10 1.3459e-12 -2.12287e-11)
(-1.46266e-10 1.67917e-12 -2.43692e-11)
(-1.70399e-10 2.06194e-12 -2.82722e-11)
(-2.00105e-10 2.56428e-12 -3.31892e-11)
(-2.37051e-10 3.23448e-12 -3.94856e-11)
(-2.8352e-10 4.14643e-12 -4.76927e-11)
(-3.42764e-10 5.40266e-12 -5.86207e-11)
(-4.16563e-10 6.72487e-12 -7.34034e-11)
(-1.6512e-10 4.67045e-12 -9.0285e-11)
(-7.90188e-09 4.35174e-10 -2.42057e-08)
(-5.70647e-09 4.20972e-10 -2.60686e-08)
(-6.06178e-09 4.5269e-10 -2.88241e-08)
(-6.49038e-09 4.91941e-10 -3.2037e-08)
(-6.96959e-09 5.35434e-10 -3.58087e-08)
(-7.50063e-09 5.83299e-10 -4.02733e-08)
(-8.08125e-09 6.35288e-10 -4.5607e-08)
(-8.6943e-09 6.97858e-10 -5.20428e-08)
(-7.92746e-09 1.66963e-09 -5.98907e-08)
(3.97055e-07 2.1031e-09 -6.888e-08)
(3.19358e-14 2.12614e-14 -3.28679e-13)
(4.99991e-14 4.68328e-14 -3.34566e-13)
(7.05915e-14 4.95209e-14 -3.40387e-13)
(9.22493e-14 5.0353e-14 -3.46021e-13)
(1.14664e-13 5.10947e-14 -3.52311e-13)
(1.38089e-13 5.15933e-14 -3.58647e-13)
(1.62644e-13 5.21014e-14 -3.65091e-13)
(1.8827e-13 4.97461e-14 -3.71897e-13)
(2.14959e-13 -2.85031e-13 -3.78723e-13)
(2.26073e-13 -3.0887e-13 -3.37262e-13)
(4.21219e-14 6.51465e-14 -3.34997e-13)
(7.8833e-14 1.46692e-13 -3.52737e-13)
(1.22109e-13 1.59116e-13 -3.6995e-13)
(1.68456e-13 1.65101e-13 -3.90077e-13)
(2.18165e-13 1.70868e-13 -4.10353e-13)
(2.71567e-13 1.77413e-13 -4.32714e-13)
(3.29012e-13 1.84151e-13 -4.55668e-13)
(3.90924e-13 1.87914e-13 -4.81577e-13)
(4.56959e-13 -1.82119e-13 -5.07289e-13)
(4.9558e-13 -2.76757e-13 -4.73742e-13)
(2.05337e-14 1.11303e-13 -3.42125e-13)
(5.92147e-14 2.54582e-13 -3.71569e-13)
(1.06668e-13 2.82424e-13 -4.04353e-13)
(1.59827e-13 3.00074e-13 -4.40314e-13)
(2.19689e-13 3.19296e-13 -4.80331e-13)
(2.8702e-13 3.40133e-13 -5.25312e-13)
(3.62651e-13 3.63017e-13 -5.74068e-13)
(4.48166e-13 3.83387e-13 -6.29446e-13)
(5.43423e-13 -7.40386e-15 -6.89636e-13)
(6.16377e-13 -2.02948e-13 -6.78207e-13)
(2.09353e-14 1.59912e-13 -3.48781e-13)
(6.16097e-14 3.70555e-13 -3.93182e-13)
(1.13357e-13 4.20756e-13 -4.4228e-13)
(1.74592e-13 4.59125e-13 -4.99905e-13)
(2.46449e-13 5.019e-13 -5.65266e-13)
(3.31075e-13 5.4973e-13 -6.41467e-13)
(4.30831e-13 6.04169e-13 -7.30352e-13)
(5.486e-13 6.59578e-13 -8.34136e-13)
(6.86346e-13 2.62753e-13 -9.52473e-13)
(8.08722e-13 -7.68902e-14 -9.88768e-13)
(2.14082e-14 2.10965e-13 -3.58887e-13)
(6.41272e-14 4.9472e-13 -4.16791e-13)
(1.20939e-13 5.76158e-13 -4.85524e-13)
(1.9115e-13 6.46234e-13 -5.69167e-13)
(2.77518e-13 7.26507e-13 -6.69478e-13)
(3.83891e-13 8.20209e-13 -7.9029e-13)
(5.15393e-13 9.29824e-13 -9.38156e-13)
(6.78401e-13 1.05e-12 -1.1199e-12)
(8.78733e-13 6.79217e-13 -1.33872e-12)
(1.0794e-12 1.34108e-13 -1.47281e-12)
(2.17149e-14 2.64317e-13 -3.68218e-13)
(6.66545e-14 6.29055e-13 -4.42572e-13)
(1.29079e-13 7.50906e-13 -5.3489e-13)
(2.09556e-13 8.66218e-13 -6.50779e-13)
(3.13422e-13 1.00328e-12 -7.96645e-13)
(4.47597e-13 1.1689e-12 -9.81019e-13)
(6.21242e-13 1.3713e-12 -1.21686e-12)
(8.47957e-13 1.60724e-12 -1.5239e-12)
(1.1422e-12 1.31932e-12 -1.91104e-12)
(1.46749e-12 4.79874e-13 -2.24903e-12)
(2.21435e-14 3.20319e-13 -3.79404e-13)
(6.92654e-14 7.73426e-13 -4.71151e-13)
(1.37734e-13 9.47408e-13 -5.9004e-13)
(2.30362e-13 1.1253e-12 -7.46896e-13)
(3.5531e-13 1.34539e-12 -9.52441e-13)
(5.24795e-13 1.62102e-12 -1.22621e-12)
(7.55446e-13 1.97209e-12 -1.59482e-12)
(1.07258e-12 2.40828e-12 -2.10388e-12)
(1.50878e-12 2.30896e-12 -2.79095e-12)
(2.03902e-12 1.04473e-12 -3.5137e-12)
(2.13925e-14 3.78957e-13 -3.91589e-13)
(7.10215e-14 9.28993e-13 -5.03232e-13)
(1.46392e-13 1.16921e-12 -6.53577e-13)
(2.5305e-13 1.43136e-12 -8.61504e-13)
(4.0399e-13 1.76827e-12 -1.14562e-12)
(6.19035e-13 2.20913e-12 -1.54553e-12)
(9.27682e-13 2.79628e-12 -2.11538e-12)
(1.37625e-12 3.5698e-12 -2.95191e-12)
(2.03396e-12 3.85777e-12 -4.16266e-12)
(3.03599e-12 1.98168e-12 -5.6546e-12)
(-1.66573e-12 4.57405e-13 -8.9051e-13)
(-2.07488e-12 1.11552e-12 -1.06252e-12)
(-2.59784e-12 1.4395e-12 -1.30275e-12)
(-3.30098e-12 1.81572e-12 -1.63596e-12)
(-4.26249e-12 2.3201e-12 -2.10706e-12)
(-5.6024e-12 3.00927e-12 -2.7899e-12)
(-7.506e-12 3.97251e-12 -3.80326e-12)
(-1.02867e-11 5.32613e-12 -5.35921e-12)
(-1.22262e-11 6.70595e-12 -7.76248e-12)
(2.99765e-10 3.96401e-12 -1.11307e-11)
(-1.68933e-10 2.77646e-11 -7.4361e-10)
(-1.52177e-10 3.25074e-11 -8.8869e-10)
(-1.78727e-10 3.95476e-11 -1.0858e-09)
(-2.13112e-10 4.84637e-11 -1.34087e-09)
(-2.56492e-10 5.99887e-11 -1.67511e-09)
(-3.11637e-10 7.50723e-11 -2.11955e-09)
(-3.83074e-10 9.50314e-11 -2.72017e-09)
(-4.69612e-10 1.27574e-10 -3.54752e-09)
(6.16302e-10 9.91172e-10 -4.70319e-09)
(3.44252e-07 1.09633e-09 -6.05915e-09)
(3.18861e-14 2.06425e-14 -6.5475e-15)
(4.94392e-14 4.65388e-14 -7.24604e-15)
(6.95136e-14 4.92333e-14 -7.85601e-15)
(9.06551e-14 4.99579e-14 -8.71892e-15)
(1.12595e-13 5.06304e-14 -9.92304e-15)
(1.35679e-13 5.12692e-14 -1.08017e-14)
(1.59605e-13 5.18653e-14 -1.246e-14)
(1.84863e-13 4.95412e-14 -1.37525e-14)
(2.11001e-13 -2.85489e-13 -1.58519e-14)
(2.22228e-13 -3.0952e-13 -1.61211e-14)
(4.2223e-14 6.34539e-14 -9.04867e-15)
(7.85124e-14 1.45014e-13 -9.94402e-15)
(1.2119e-13 1.57419e-13 -1.11589e-14)
(1.67034e-13 1.63359e-13 -1.18237e-14)
(2.16194e-13 1.69501e-13 -1.34256e-14)
(2.69138e-13 1.7574e-13 -1.55094e-14)
(3.25927e-13 1.82457e-13 -1.74875e-14)
(3.87198e-13 1.86379e-13 -2.03684e-14)
(4.52596e-13 -1.84493e-13 -2.26321e-14)
(4.91075e-13 -2.79291e-13 -2.43702e-14)
(2.06187e-14 1.08628e-13 -1.13427e-14)
(5.89796e-14 2.51656e-13 -1.31346e-14)
(1.05798e-13 2.79282e-13 -1.40106e-14)
(1.58491e-13 2.96945e-13 -1.64073e-14)
(2.17653e-13 3.16175e-13 -1.89296e-14)
(2.84091e-13 3.36822e-13 -2.24877e-14)
(3.5912e-13 3.5927e-13 -2.614e-14)
(4.43561e-13 3.79658e-13 -3.04598e-14)
(5.37843e-13 -1.24812e-14 -3.60075e-14)
(6.10425e-13 -2.09081e-13 -3.88662e-14)
(2.12343e-14 1.56068e-13 -1.58341e-14)
(6.14646e-14 3.66478e-13 -1.77462e-14)
(1.12762e-13 4.16262e-13 -2.00294e-14)
(1.73292e-13 4.54382e-13 -2.33789e-14)
(2.44385e-13 4.96383e-13 -2.69669e-14)
(3.27988e-13 5.44122e-13 -3.27458e-14)
(4.26602e-13 5.98012e-13 -3.9835e-14)
(5.43119e-13 6.5246e-13 -4.76661e-14)
(6.79253e-13 2.5361e-13 -5.77383e-14)
(8.00914e-13 -8.84049e-14 -6.47595e-14)
(2.19104e-14 2.05703e-13 -2.06148e-14)
(6.40903e-14 4.89612e-13 -2.38853e-14)
(1.20561e-13 5.70193e-13 -2.82437e-14)
(1.89888e-13 6.39448e-13 -3.3517e-14)
(2.75442e-13 7.18825e-13 -4.01714e-14)
(3.80744e-13 8.11315e-13 -4.99063e-14)
(5.10576e-13 9.1982e-13 -6.02701e-14)
(6.7172e-13 1.03859e-12 -7.58226e-14)
(8.69663e-13 6.63899e-13 -9.49467e-14)
(1.069e-12 1.13078e-13 -1.10698e-13)
(2.2336e-14 2.57951e-13 -2.7232e-14)
(6.68505e-14 6.22936e-13 -3.18955e-14)
(1.28757e-13 7.43504e-13 -3.86712e-14)
(2.08592e-13 8.57379e-13 -4.7297e-14)
(3.11363e-13 9.93125e-13 -5.86348e-14)
(4.44123e-13 1.15642e-12 -7.39962e-14)
(6.15885e-13 1.35613e-12 -9.30974e-14)
(8.39899e-13 1.58885e-12 -1.19778e-13)
(1.13082e-12 1.2952e-12 -1.54978e-13)
(1.45346e-12 4.43004e-13 -1.92797e-13)
(2.30153e-14 3.13035e-13 -3.50845e-14)
(6.98093e-14 7.66288e-13 -4.24766e-14)
(1.37763e-13 9.38917e-13 -5.28496e-14)
(2.29688e-13 1.11454e-12 -6.63843e-14)
(3.53362e-13 1.33174e-12 -8.41103e-14)
(5.21039e-13 1.60409e-12 -1.08587e-13)
(7.49216e-13 1.95079e-12 -1.42777e-13)
(1.06287e-12 2.38122e-12 -1.91217e-13)
(1.49427e-12 2.27143e-12 -2.59504e-13)
(2.02035e-12 9.79255e-13 -3.41477e-13)
(2.37026e-14 3.71181e-13 -4.4939e-14)
(7.28849e-14 9.21277e-13 -5.57428e-14)
(1.47735e-13 1.15938e-12 -7.07296e-14)
(2.53215e-13 1.41817e-12 -9.03342e-14)
(4.0261e-13 1.75106e-12 -1.18568e-13)
(6.15112e-13 2.18652e-12 -1.58244e-13)
(9.19911e-13 2.76682e-12 -2.16166e-13)
(1.36286e-12 3.53049e-12 -3.03752e-13)
(2.01256e-12 3.80168e-12 -4.34721e-13)
(3.01328e-12 1.86676e-12 -6.1728e-13)
(3.36952e-15 4.32323e-13 -6.38848e-14)
(4.70928e-14 1.08909e-12 -7.8166e-14)
(1.18053e-13 1.40825e-12 -9.9252e-14)
(2.22116e-13 1.77753e-12 -1.27706e-13)
(3.76007e-13 2.27293e-12 -1.6897e-13)
(6.03877e-13 2.94947e-12 -2.29353e-13)
(9.42274e-13 3.89593e-12 -3.21549e-13)
(1.46231e-12 5.22566e-12 -4.67478e-13)
(4.37696e-12 6.58421e-12 -7.08143e-13)
(3.3161e-10 3.71741e-12 -1.23108e-12)
(-2.41593e-12 1.11788e-12 -1.13047e-11)
(-2.5543e-12 2.08139e-12 -1.516e-11)
(-3.29977e-12 2.78224e-12 -2.05277e-11)
(-4.36307e-12 3.69711e-12 -2.82639e-11)
(-5.86577e-12 5.00013e-12 -3.96447e-11)
(-8.02647e-12 6.89067e-12 -5.67593e-11)
(-1.12356e-11 9.73281e-12 -8.31043e-11)
(-1.29052e-11 1.95734e-11 -1.25005e-10)
(1.19922e-09 8.73589e-10 -1.94048e-10)
(3.41583e-07 9.38672e-10 -5.93972e-10)
(3.20617e-14 2.04849e-14 -3.50584e-16)
(4.96207e-14 4.66627e-14 -1.26135e-16)
(6.976e-14 4.94076e-14 -1.1835e-15)
(9.08274e-14 5.04632e-14 -1.92742e-15)
(1.12715e-13 5.1198e-14 -2.41721e-15)
(1.35737e-13 5.1864e-14 -4.09333e-15)
(1.59727e-13 5.25211e-14 -5.2509e-15)
(1.84985e-13 5.03292e-14 -7.50725e-15)
(2.11085e-13 -2.84855e-13 -9.84867e-15)
(2.22479e-13 -3.09415e-13 -1.12311e-14)
(4.25917e-14 6.35389e-14 -1.29931e-15)
(7.88922e-14 1.45353e-13 -2.23583e-15)
(1.21579e-13 1.57578e-13 -2.77015e-15)
(1.67455e-13 1.63585e-13 -3.55576e-15)
(2.16604e-13 1.69786e-13 -5.1566e-15)
(2.69548e-13 1.76327e-13 -6.10424e-15)
(3.26396e-13 1.83241e-13 -8.99449e-15)
(3.87727e-13 1.86947e-13 -1.08499e-14)
(4.53179e-13 -1.83657e-13 -1.37815e-14)
(4.91919e-13 -2.78846e-13 -1.65857e-14)
(2.13021e-14 1.08437e-13 -4.46881e-15)
(5.95198e-14 2.51864e-13 -5.60992e-15)
(1.06408e-13 2.79589e-13 -6.46438e-15)
(1.59123e-13 2.97507e-13 -8.03523e-15)
(2.18292e-13 3.16743e-13 -9.84161e-15)
(2.84988e-13 3.37521e-13 -1.16886e-14)
(3.60023e-13 3.60188e-13 -1.51555e-14)
(4.44664e-13 3.80669e-13 -1.85605e-14)
(5.39204e-13 -1.12429e-14 -2.2907e-14)
(6.1196e-13 -2.08425e-13 -2.67747e-14)
(2.20843e-14 1.56161e-13 -1.10303e-14)
(6.23101e-14 3.6668e-13 -1.06059e-14)
(1.13754e-13 4.16742e-13 -1.29855e-14)
(1.74367e-13 4.54749e-13 -1.45675e-14)
(2.45544e-13 4.9746e-13 -1.74014e-14)
(3.29469e-13 5.45468e-13 -2.19152e-14)
(4.28193e-13 5.99305e-13 -2.61391e-14)
(5.45052e-13 6.54216e-13 -3.18841e-14)
(6.81626e-13 2.55426e-13 -3.91367e-14)
(8.03561e-13 -8.76227e-14 -4.6082e-14)
(2.28736e-14 2.05963e-13 -1.68687e-14)
(6.52918e-14 4.90353e-13 -1.87943e-14)
(1.2182e-13 5.71264e-13 -2.18305e-14)
(1.91531e-13 6.406e-13 -2.5244e-14)
(2.77346e-13 7.20592e-13 -3.03393e-14)
(3.82878e-13 8.13345e-13 -3.71262e-14)
(5.13144e-13 9.22116e-13 -4.48196e-14)
(6.74844e-13 1.04174e-12 -5.44867e-14)
(8.73486e-13 6.66927e-13 -6.7677e-14)
(1.07353e-12 1.14346e-13 -8.01358e-14)
(2.3645e-14 2.58711e-13 -2.59789e-14)
(6.84297e-14 6.24229e-13 -2.92194e-14)
(1.30641e-13 7.45446e-13 -3.40361e-14)
(2.10773e-13 8.59779e-13 -4.10818e-14)
(3.1404e-13 9.95825e-13 -4.91628e-14)
(4.47225e-13 1.1598e-12 -5.96693e-14)
(6.19839e-13 1.36045e-12 -7.38252e-14)
(8.44869e-13 1.5944e-12 -9.29199e-14)
(1.13703e-12 1.30096e-12 -1.17203e-13)
(1.46117e-12 4.45642e-13 -1.41407e-13)
(2.45603e-14 3.14493e-13 -3.65008e-14)
(7.17627e-14 7.68998e-13 -4.25805e-14)
(1.40169e-13 9.42038e-13 -5.07462e-14)
(2.32481e-13 1.1183e-12 -6.13789e-14)
(3.56988e-13 1.33658e-12 -7.59378e-14)
(5.25598e-13 1.61015e-12 -9.42889e-14)
(7.55116e-13 1.95863e-12 -1.19107e-13)
(1.07053e-12 2.39109e-12 -1.5358e-13)
(1.50425e-12 2.28247e-12 -1.98477e-13)
(2.03333e-12 9.84871e-13 -2.51387e-13)
(2.54779e-14 3.73411e-13 -4.95182e-14)
(7.51729e-14 9.25438e-13 -5.85959e-14)
(1.50602e-13 1.16425e-12 -7.16787e-14)
(2.57021e-13 1.42455e-12 -8.84749e-14)
(4.07552e-13 1.75936e-12 -1.12331e-13)
(6.2163e-13 2.1971e-12 -1.44172e-13)
(9.28591e-13 2.78068e-12 -1.88368e-13)
(1.37431e-12 3.54831e-12 -2.4959e-13)
(2.02826e-12 3.82314e-12 -3.37637e-13)
(3.04119e-12 1.87776e-12 -4.49261e-13)
(2.33152e-14 4.35431e-13 -6.34735e-14)
(7.52997e-14 1.09512e-12 -7.7706e-14)
(1.58197e-13 1.41601e-12 -9.76877e-14)
(2.80124e-13 1.78766e-12 -1.24777e-13)
(4.61211e-13 2.28617e-12 -1.62901e-13)
(7.32363e-13 2.96713e-12 -2.15501e-13)
(1.14267e-12 3.91942e-12 -2.91989e-13)
(1.78106e-12 5.25758e-12 -4.02011e-13)
(5.04826e-12 6.6435e-12 -5.71778e-13)
(3.48379e-10 3.76138e-12 -9.57399e-13)
(6.72956e-14 5.09203e-13 -2.01087e-13)
(1.10433e-13 1.291e-12 -2.82768e-13)
(1.7176e-13 1.71921e-12 -4.06063e-13)
(2.5879e-13 2.24615e-12 -5.95887e-13)
(3.84258e-13 2.9876e-12 -8.98837e-13)
(5.6484e-13 4.05335e-12 -1.40077e-12)
(8.41785e-13 5.6497e-12 -2.27669e-12)
(4.37699e-12 1.39384e-11 -3.82774e-12)
(1.34799e-09 9.06075e-10 -1.03414e-11)
(3.62592e-07 9.86171e-10 -4.72152e-10)
(3.20262e-14 2.05175e-14 -1.21788e-15)
(4.97398e-14 4.68525e-14 -8.26614e-16)
(6.97186e-14 4.99312e-14 -1.43395e-15)
(9.08591e-14 5.0431e-14 -2.6302e-15)
(1.12942e-13 5.14665e-14 -3.06625e-15)
(1.35914e-13 5.23695e-14 -4.49289e-15)
(1.60097e-13 5.31929e-14 -6.30876e-15)
(1.85332e-13 5.13352e-14 -9.07385e-15)
(2.11558e-13 -2.84036e-13 -1.11862e-14)
(2.23048e-13 -3.08972e-13 -1.33406e-14)
(4.28459e-14 6.37479e-14 -2.15532e-15)
(7.93197e-14 1.45534e-13 -2.52086e-15)
(1.21936e-13 1.57866e-13 -3.01757e-15)
(1.67886e-13 1.64225e-13 -4.41525e-15)
(2.17214e-13 1.70424e-13 -5.72731e-15)
(2.70162e-13 1.7715e-13 -7.78777e-15)
(3.27276e-13 1.84216e-13 -1.04181e-14)
(3.88693e-13 1.88142e-13 -1.34147e-14)
(4.54401e-13 -1.82357e-13 -1.74132e-14)
(4.93253e-13 -2.78188e-13 -2.05633e-14)
(2.21003e-14 1.08705e-13 -5.94081e-15)
(6.02247e-14 2.52372e-13 -7.04224e-15)
(1.07288e-13 2.80151e-13 -8.0852e-15)
(1.60061e-13 2.98157e-13 -9.59048e-15)
(2.19358e-13 3.1747e-13 -1.1561e-14)
(2.86245e-13 3.3869e-13 -1.37193e-14)
(3.61428e-13 3.61712e-13 -1.78525e-14)
(4.46391e-13 3.8241e-13 -2.27984e-14)
(5.41214e-13 -9.58258e-15 -2.80738e-14)
(6.14326e-13 -2.07568e-13 -3.25339e-14)
(2.31231e-14 1.56125e-13 -1.2591e-14)
(6.3433e-14 3.67204e-13 -1.39399e-14)
(1.15007e-13 4.1775e-13 -1.5675e-14)
(1.75748e-13 4.55991e-13 -1.80894e-14)
(2.47261e-13 4.99065e-13 -2.19478e-14)
(3.31469e-13 5.47238e-13 -2.6262e-14)
(4.30563e-13 6.01486e-13 -3.18616e-14)
(5.47829e-13 6.56935e-13 -3.91221e-14)
(6.84978e-13 2.58413e-13 -4.75496e-14)
(8.07639e-13 -8.56839e-14 -5.58642e-14)
(2.41867e-14 2.0672e-13 -2.04482e-14)
(6.68695e-14 4.91639e-13 -2.3586e-14)
(1.23633e-13 5.72737e-13 -2.71436e-14)
(1.93658e-13 6.42667e-13 -3.12921e-14)
(2.79853e-13 7.23195e-13 -3.74565e-14)
(3.85828e-13 8.16456e-13 -4.4887e-14)
(5.16836e-13 9.25841e-13 -5.46469e-14)
(6.79454e-13 1.04622e-12 -6.65188e-14)
(8.79211e-13 6.72225e-13 -8.15811e-14)
(1.08039e-12 1.18007e-13 -9.81091e-14)
(2.53253e-14 2.59997e-13 -3.15344e-14)
(7.03934e-14 6.26374e-13 -3.61533e-14)
(1.32955e-13 7.48279e-13 -4.22137e-14)
(2.13692e-13 8.63207e-13 -4.98511e-14)
(3.176e-13 1.00001e-12 -5.99603e-14)
(4.51692e-13 1.16519e-12 -7.35735e-14)
(6.25381e-13 1.36746e-12 -9.06477e-14)
(8.52082e-13 1.60302e-12 -1.13462e-13)
(1.14622e-12 1.31048e-12 -1.42363e-13)
(1.4727e-12 4.52391e-13 -1.72222e-13)
(2.65976e-14 3.16623e-13 -4.47876e-14)
(7.41697e-14 7.72413e-13 -5.19751e-14)
(1.43188e-13 9.46566e-13 -6.1825e-14)
(2.36313e-13 1.12431e-12 -7.54919e-14)
(3.61896e-13 1.34397e-12 -9.35376e-14)
(5.32014e-13 1.61933e-12 -1.16471e-13)
(7.63433e-13 1.97057e-12 -1.46676e-13)
(1.08137e-12 2.40626e-12 -1.87758e-13)
(1.51886e-12 2.30067e-12 -2.42347e-13)
(2.05264e-12 9.98688e-13 -3.04826e-13)
(2.78053e-14 3.7641e-13 -6.06883e-14)
(7.80787e-14 9.30853e-13 -7.14586e-14)
(1.54461e-13 1.17166e-12 -8.80138e-14)
(2.61975e-13 1.43394e-12 -1.09172e-13)
(4.14165e-13 1.7716e-12 -1.39468e-13)
(6.30514e-13 2.21297e-12 -1.79446e-13)
(9.40702e-13 2.80108e-12 -2.32137e-13)
(1.39094e-12 3.57556e-12 -3.06109e-13)
(2.05188e-12 3.85793e-12 -4.11315e-13)
(3.08072e-12 1.90526e-12 -5.4302e-13)
(2.61627e-14 4.40077e-13 -7.86759e-14)
(7.92208e-14 1.10362e-12 -9.59598e-14)
(1.63562e-13 1.42717e-12 -1.20451e-13)
(2.87453e-13 1.80227e-12 -1.53399e-13)
(4.71478e-13 2.30567e-12 -2.02158e-13)
(7.46923e-13 2.9931e-12 -2.67204e-13)
(1.16403e-12 3.95475e-12 -3.60931e-13)
(1.81464e-12 5.30691e-12 -4.96191e-13)
(5.28055e-12 6.72737e-12 -6.98286e-13)
(3.70371e-10 3.82142e-12 -9.69187e-13)
(9.76543e-14 5.07079e-13 -1.0091e-13)
(1.48498e-13 1.29075e-12 -1.2661e-13)
(2.26771e-13 1.71656e-12 -1.64527e-13)
(3.40323e-13 2.23887e-12 -2.20306e-13)
(5.07789e-13 2.97166e-12 -2.99204e-13)
(7.58846e-13 4.02115e-12 -4.15516e-13)
(1.14964e-12 5.58866e-12 -5.92566e-13)
(5.4154e-12 1.42841e-11 -8.71511e-13)
(1.46454e-09 9.62567e-10 -2.02908e-12)
(3.95835e-07 1.04148e-09 -3.64456e-10)
(3.2214e-14 2.04478e-14 -3.91995e-15)
(5.00622e-14 4.69059e-14 -2.3177e-14)
(7.00716e-14 5.01614e-14 -6.54484e-15)
(9.11206e-14 5.11188e-14 -3.31575e-15)
(1.13169e-13 5.19477e-14 -4.81715e-15)
(1.36292e-13 5.31547e-14 -6.09608e-15)
(1.60442e-13 5.43403e-14 -8.23351e-15)
(1.85752e-13 5.22602e-14 -1.04614e-14)
(2.12174e-13 -2.83162e-13 -1.3314e-14)
(2.23795e-13 -3.08534e-13 -1.60874e-14)
(4.33232e-14 6.36126e-14 -5.01234e-15)
(7.99405e-14 1.45971e-13 -1.5583e-14)
(1.22637e-13 1.58418e-13 -7.64526e-15)
(1.68529e-13 1.6469e-13 -6.25828e-15)
(2.17901e-13 1.71128e-13 -7.43692e-15)
(2.70979e-13 1.78183e-13 -9.67491e-15)
(3.28164e-13 1.85441e-13 -1.24715e-14)
(3.89819e-13 1.89655e-13 -1.53474e-14)
(4.55798e-13 -1.80873e-13 -2.02253e-14)
(4.94853e-13 -2.77505e-13 -2.29055e-14)
(2.29069e-14 1.08841e-13 -9.19174e-15)
(6.13231e-14 2.53067e-13 -1.65624e-14)
(1.08357e-13 2.80754e-13 -1.23016e-14)
(1.61192e-13 2.98963e-13 -1.23909e-14)
(2.20722e-13 3.18438e-13 -1.45459e-14)
(2.87733e-13 3.40012e-13 -1.71412e-14)
(3.63162e-13 3.63671e-13 -2.06491e-14)
(4.48413e-13 3.84561e-13 -2.5779e-14)
(5.43606e-13 -7.50074e-15 -3.23846e-14)
(6.17071e-13 -2.06366e-13 -3.7695e-14)
(2.43071e-14 1.57017e-13 -1.58772e-14)
(6.48729e-14 3.68415e-13 -2.29959e-14)
(1.16644e-13 4.18675e-13 -2.13282e-14)
(1.77617e-13 4.57436e-13 -2.31021e-14)
(2.49364e-13 5.00818e-13 -2.65153e-14)
(3.33967e-13 5.4937e-13 -3.0455e-14)
(4.33454e-13 6.0427e-13 -3.72056e-14)
(5.51224e-13 6.60157e-13 -4.51903e-14)
(6.89086e-13 2.61748e-13 -5.53119e-14)
(8.12537e-13 -8.36733e-14 -6.47829e-14)
(2.57744e-14 2.07733e-13 -2.61452e-14)
(6.86852e-14 4.93683e-13 -3.27136e-14)
(1.25808e-13 5.74843e-13 -3.48354e-14)
(1.96223e-13 6.45077e-13 -3.89321e-14)
(2.82847e-13 7.26185e-13 -4.48153e-14)
(3.89596e-13 8.20185e-13 -5.38104e-14)
(5.21309e-13 9.30432e-13 -6.41656e-14)
(6.84945e-13 1.05182e-12 -7.79683e-14)
(8.86044e-13 6.7849e-13 -9.51865e-14)
(1.08859e-12 1.22208e-13 -1.13105e-13)
(2.73652e-14 2.61602e-13 -3.87698e-14)
(7.27356e-14 6.29482e-13 -4.74723e-14)
(1.35806e-13 7.51719e-13 -5.30259e-14)
(2.17203e-13 8.67427e-13 -6.1292e-14)
(3.21981e-13 1.00546e-12 -7.15708e-14)
(4.57153e-13 1.17189e-12 -8.79091e-14)
(6.32237e-13 1.37545e-12 -1.06753e-13)
(8.60659e-13 1.613e-12 -1.31126e-13)
(1.15731e-12 1.32175e-12 -1.64111e-13)
(1.48636e-12 4.60144e-13 -1.98295e-13)
(2.90112e-14 3.19202e-13 -5.51431e-14)
(7.70784e-14 7.77178e-13 -6.57407e-14)
(1.46924e-13 9.52632e-13 -7.76219e-14)
(2.40996e-13 1.13166e-12 -9.15528e-14)
(3.68083e-13 1.35316e-12 -1.12702e-13)
(5.39893e-13 1.63065e-12 -1.38541e-13)
(7.73555e-13 1.98474e-12 -1.72613e-13)
(1.09462e-12 2.42431e-12 -2.17686e-13)
(1.53649e-12 2.32196e-12 -2.80097e-13)
(2.0757e-12 1.01411e-12 -3.50782e-13)
(3.06441e-14 3.80316e-13 -7.34437e-14)
(8.17614e-14 9.38378e-13 -9.01465e-14)
(1.59152e-13 1.1809e-12 -1.07845e-13)
(2.68041e-13 1.44585e-12 -1.31564e-13)
(4.22445e-13 1.78722e-12 -1.68425e-13)
(6.4149e-13 2.23192e-12 -2.12922e-13)
(9.55543e-13 2.8255e-12 -2.72877e-13)
(1.41125e-12 3.608e-12 -3.5717e-13)
(2.07993e-12 3.8984e-12 -4.75492e-13)
(3.11211e-12 1.93642e-12 -6.23504e-13)
(2.94387e-14 4.46079e-13 -9.56459e-14)
(8.35014e-14 1.11455e-12 -1.18606e-13)
(1.69225e-13 1.44111e-12 -1.47347e-13)
(2.95488e-13 1.82077e-12 -1.84302e-13)
(4.8249e-13 2.33031e-12 -2.44101e-13)
(7.62281e-13 3.02492e-12 -3.19422e-13)
(1.18579e-12 3.99725e-12 -4.25852e-13)
(1.84461e-12 5.36482e-12 -5.82841e-13)
(5.20609e-12 6.78329e-12 -7.96762e-13)
(3.78243e-10 3.75628e-12 -1.88887e-13)
(1.01067e-13 5.15281e-13 -1.20016e-13)
(1.52949e-13 1.30592e-12 -1.52482e-13)
(2.32845e-13 1.73726e-12 -1.93132e-13)
(3.48998e-13 2.26688e-12 -2.57101e-13)
(5.19878e-13 3.00871e-12 -3.45533e-13)
(7.76325e-13 4.07112e-12 -4.70975e-13)
(1.17364e-12 5.65377e-12 -6.55428e-13)
(4.79158e-12 1.40602e-11 -8.57847e-13)
(1.46642e-09 9.81e-10 1.44082e-11)
(4.20425e-07 8.69137e-10 1.17321e-09)
(3.3136e-14 2.2974e-14 -3.08123e-13)
(6.19103e-14 5.9471e-14 -1.44964e-12)
(7.54473e-14 4.49059e-14 -3.64203e-13)
(9.30844e-14 5.03992e-14 -8.54747e-14)
(1.14383e-13 5.28652e-14 -4.11877e-14)
(1.36993e-13 5.38421e-14 -2.07697e-14)
(1.6098e-13 5.49562e-14 -1.27366e-14)
(1.86098e-13 5.33306e-14 -9.71541e-15)
(2.12495e-13 -2.81851e-13 -9.45851e-15)
(2.23851e-13 -3.07908e-13 -9.67394e-15)
(4.41476e-14 6.66767e-14 -1.64088e-13)
(8.60909e-14 1.66905e-13 -8.51409e-13)
(1.26369e-13 1.59751e-13 -2.36974e-13)
(1.70816e-13 1.65898e-13 -7.86e-14)
(2.19525e-13 1.72509e-13 -3.83437e-14)
(2.72189e-13 1.79376e-13 -2.09048e-14)
(3.29156e-13 1.86428e-13 -1.34116e-14)
(3.90722e-13 1.90982e-13 -1.08254e-14)
(4.56683e-13 -1.7971e-13 -1.04326e-14)
(4.95641e-13 -2.77371e-13 -1.07795e-14)
(2.407e-14 1.1242e-13 -1.07892e-13)
(6.62809e-14 2.75102e-13 -5.46406e-13)
(1.11947e-13 2.85348e-13 -1.80715e-13)
(1.63968e-13 3.01685e-13 -7.77356e-14)
(2.2287e-13 3.20364e-13 -4.02714e-14)
(2.89568e-13 3.41404e-13 -2.61887e-14)
(3.64907e-13 3.64914e-13 -1.98709e-14)
(4.50179e-13 3.8639e-13 -1.73031e-14)
(5.45317e-13 -5.79203e-15 -1.76516e-14)
(6.18986e-13 -2.06089e-13 -1.90621e-14)
(2.59339e-14 1.61047e-13 -8.75757e-14)
(6.92003e-14 3.89749e-13 -3.80553e-13)
(1.20472e-13 4.25627e-13 -1.58319e-13)
(1.80807e-13 4.6116e-13 -7.77629e-14)
(2.52198e-13 5.03137e-13 -4.80831e-14)
(3.36799e-13 5.51553e-13 -3.63381e-14)
(4.36331e-13 6.06563e-13 -3.145e-14)
(5.54211e-13 6.6261e-13 -3.07157e-14)
(6.9214e-13 2.64111e-13 -3.29108e-14)
(8.15739e-13 -8.33031e-14 -3.5719e-14)
(2.78578e-14 2.12334e-13 -8.44976e-14)
(7.29088e-14 5.13841e-13 -2.87972e-13)
(1.30085e-13 5.83776e-13 -1.51065e-13)
(2.00147e-13 6.5e-13 -8.52366e-14)
(2.8668e-13 7.3016e-13 -6.31723e-14)
(3.93699e-13 8.23616e-13 -5.37004e-14)
(5.2567e-13 9.33693e-13 -5.32565e-14)
(6.89566e-13 1.05537e-12 -5.50855e-14)
(8.91222e-13 6.81822e-13 -6.21724e-14)
(1.09416e-12 1.22361e-13 -6.88969e-14)
(2.98933e-14 2.67347e-13 -8.94076e-14)
(7.70779e-14 6.49229e-13 -2.37442e-13)
(1.40645e-13 7.62405e-13 -1.48748e-13)
(2.22008e-13 8.74083e-13 -1.0187e-13)
(3.27365e-13 1.01141e-12 -8.88231e-14)
(4.62816e-13 1.17749e-12 -8.34171e-14)
(6.38658e-13 1.38097e-12 -8.98322e-14)
(8.67887e-13 1.61919e-12 -9.82211e-14)
(1.16576e-12 1.32792e-12 -1.1478e-13)
(1.49615e-12 4.60735e-13 -1.31789e-13)
(3.20035e-14 3.25934e-13 -1.00516e-13)
(8.18558e-14 7.97289e-13 -2.14284e-13)
(1.52314e-13 9.65433e-13 -1.58257e-13)
(2.46883e-13 1.14157e-12 -1.29048e-13)
(3.7516e-13 1.36222e-12 -1.22669e-13)
(5.47851e-13 1.63941e-12 -1.29861e-13)
(7.82963e-13 1.9943e-12 -1.46222e-13)
(1.10587e-12 2.43533e-12 -1.68541e-13)
(1.55007e-12 2.33352e-12 -2.02978e-13)
(2.09238e-12 1.0162e-12 -2.474e-13)
(3.4073e-14 3.89071e-13 -1.15948e-13)
(8.69619e-14 9.59599e-13 -2.0991e-13)
(1.65446e-13 1.1966e-12 -1.7914e-13)
(2.75426e-13 1.46087e-12 -1.68629e-13)
(4.31513e-13 1.80126e-12 -1.73198e-13)
(6.52564e-13 2.24633e-12 -1.96049e-13)
(9.69296e-13 2.84267e-12 -2.3412e-13)
(1.42878e-12 3.62824e-12 -2.84053e-13)
(2.10093e-12 3.92067e-12 -3.57749e-13)
(3.06455e-12 1.94125e-12 -4.53948e-13)
(3.33333e-14 4.56452e-13 -1.36742e-13)
(8.92559e-14 1.13855e-12 -2.19798e-13)
(1.76535e-13 1.46164e-12 -2.12516e-13)
(3.05039e-13 1.84241e-12 -2.21445e-13)
(4.94149e-13 2.35275e-12 -2.44956e-13)
(7.77366e-13 3.04923e-12 -2.94677e-13)
(1.2054e-12 4.02743e-12 -3.66772e-13)
(1.86404e-12 5.39877e-12 -4.69505e-13)
(3.94294e-12 6.62394e-12 -5.78942e-13)
(2.73731e-10 3.30711e-12 1.95921e-12)
(1.04885e-13 5.28616e-13 -1.62175e-13)
(1.58435e-13 1.33404e-12 -2.4366e-13)
(2.39194e-13 1.76557e-12 -2.58689e-13)
(3.57242e-13 2.29726e-12 -2.87583e-13)
(5.2922e-13 3.04189e-12 -3.41747e-13)
(7.88178e-13 4.11073e-12 -4.32181e-13)
(1.17747e-12 5.68976e-12 -5.79489e-13)
(1.197e-12 1.07465e-11 -5.81062e-13)
(7.03543e-10 7.04355e-10 4.72951e-11)
(3.46816e-07 -1.60069e-10 6.10404e-09)
(8.15066e-14 2.21604e-13 -2.06834e-11)
(5.87936e-13 6.15599e-13 -6.08735e-11)
(3.42139e-13 -3.42122e-13 -1.69097e-11)
(1.75873e-13 -4.54953e-14 -3.56115e-12)
(1.57642e-13 3.92515e-14 -1.45334e-12)
(1.55289e-13 4.638e-14 -5.07083e-13)
(1.65668e-13 5.09967e-14 -1.22294e-13)
(1.81547e-13 5.02035e-14 7.49096e-14)
(2.00258e-13 -2.85029e-13 1.93872e-13)
(2.0601e-13 -3.10906e-13 2.59894e-13)
(4.68656e-14 3.01911e-13 -9.96026e-12)
(3.03924e-13 1.12077e-12 -3.51375e-11)
(2.82268e-13 1.45782e-13 -1.09182e-11)
(2.36702e-13 1.6413e-13 -2.89262e-12)
(2.52922e-13 1.79227e-13 -1.14697e-12)
(2.84997e-13 1.77975e-13 -3.61343e-13)
(3.28837e-13 1.81387e-13 -5.40849e-15)
(3.79758e-13 1.82739e-13 2.00338e-13)
(4.36077e-13 -1.90455e-13 3.37281e-13)
(4.67479e-13 -2.89103e-13 4.16672e-13)
(2.99955e-14 3.28389e-13 -5.47461e-12)
(2.15004e-13 1.26192e-12 -2.18578e-11)
(2.29098e-13 4.42016e-13 -7.72697e-12)
(2.21984e-13 3.57938e-13 -2.54831e-12)
(2.48545e-13 3.37009e-13 -8.71698e-13)
(2.97059e-13 3.40801e-13 -2.07742e-13)
(3.58956e-13 3.53659e-13 1.28975e-13)
(4.31997e-13 3.67151e-13 3.45611e-13)
(5.15279e-13 -3.08493e-14 5.05239e-13)
(5.78636e-13 -2.34324e-13 6.03095e-13)
(3.24932e-14 3.53663e-13 -3.43791e-12)
(1.74473e-13 1.30126e-12 -1.44355e-11)
(2.11923e-13 6.6436e-13 -5.82633e-12)
(2.25545e-13 5.37427e-13 -1.97569e-12)
(2.71306e-13 5.23259e-13 -6.34906e-13)
(3.38201e-13 5.44035e-13 -4.42258e-14)
(4.23616e-13 5.82187e-13 2.8299e-13)
(5.26748e-13 6.24914e-13 5.26677e-13)
(6.49437e-13 2.14886e-13 7.22968e-13)
(7.5887e-13 -1.39841e-13 8.55689e-13)
(3.41995e-14 3.87744e-13 -2.40028e-12)
(1.49803e-13 1.32267e-12 -9.98407e-12)
(2.00891e-13 8.55401e-13 -4.49282e-12)
(2.35094e-13 7.30785e-13 -1.51893e-12)
(3.0003e-13 7.4485e-13 -4.23236e-13)
(3.89577e-13 8.03203e-13 1.11606e-13)
(5.05297e-13 8.88428e-13 4.63538e-13)
(6.50641e-13 9.87956e-13 7.53867e-13)
(8.31626e-13 5.94314e-13 1.0103e-12)
(1.01413e-12 1.93419e-14 1.20631e-12)
(3.58443e-14 4.29203e-13 -1.80406e-12)
(1.35052e-13 1.35382e-12 -7.1624e-12)
(1.94203e-13 1.0289e-12 -3.40115e-12)
(2.4941e-13 9.52115e-13 -1.15414e-12)
(3.34579e-13 1.01354e-12 -2.25457e-13)
(4.5274e-13 1.13497e-12 2.88211e-13)
(6.08751e-13 1.30306e-12 6.78963e-13)
(8.1386e-13 1.50555e-12 1.04407e-12)
(1.08275e-12 1.17917e-12 1.39638e-12)
(1.38246e-12 2.80668e-13 1.70457e-12)
(3.77001e-14 4.76218e-13 -1.42063e-12)
(1.26808e-13 1.40812e-12 -5.2949e-12)
(1.94326e-13 1.21242e-12 -2.59677e-12)
(2.68251e-13 1.20651e-12 -8.55039e-13)
(3.7708e-13 1.34565e-12 -5.1536e-14)
(5.30423e-13 1.56574e-12 4.83933e-13)
(7.41118e-13 1.86752e-12 9.41562e-13)
(1.03167e-12 2.25148e-12 1.42091e-12)
(1.43398e-12 2.08813e-12 1.93795e-12)
(1.92931e-12 7.1047e-13 2.41763e-12)
(3.98113e-14 5.28345e-13 -1.15688e-12)
(1.22852e-13 1.4888e-12 -4.01196e-12)
(1.99047e-13 1.41795e-12 -2.00145e-12)
(2.91485e-13 1.50556e-12 -6.03727e-13)
(4.28311e-13 1.75404e-12 1.40599e-13)
(6.26593e-13 2.12742e-12 7.0786e-13)
(9.12212e-13 2.6458e-12 1.26677e-12)
(1.32707e-12 3.33903e-12 1.91952e-12)
(1.93431e-12 3.52107e-12 2.69875e-12)
(2.65154e-12 1.42146e-12 3.49501e-12)
(3.93549e-14 5.85152e-13 -9.63823e-13)
(1.19009e-13 1.59683e-12 -3.10557e-12)
(2.04041e-13 1.6527e-12 -1.55057e-12)
(3.15432e-13 1.85935e-12 -3.7876e-13)
(4.85476e-13 2.26564e-12 3.29325e-13)
(7.41269e-13 2.86635e-12 9.66156e-13)
(1.12996e-12 3.72841e-12 1.6776e-12)
(1.71325e-12 4.94202e-12 2.59572e-12)
(6.68026e-13 5.52538e-12 3.82787e-12)
(-1.23944e-10 1.94093e-12 7.84056e-12)
(1.13001e-13 6.46409e-13 -8.18034e-13)
(1.89153e-13 1.73141e-12 -2.45141e-12)
(2.60928e-13 1.92171e-12 -1.20506e-12)
(3.60336e-13 2.28391e-12 -2.08474e-13)
(5.09535e-13 2.90512e-12 5.22389e-13)
(7.32925e-13 3.84519e-12 1.26609e-12)
(1.05586e-12 5.21647e-12 2.18983e-12)
(-5.24856e-12 2.18159e-12 3.56921e-12)
(-1.86532e-09 -3.30025e-10 4.98124e-11)
(-6.80279e-08 -1.80952e-09 9.13163e-09)
(9.02925e-13 9.24377e-12 -6.57452e-10)
(5.59429e-12 6.78596e-12 -8.31078e-10)
(5.3702e-12 -1.95731e-11 -3.25792e-10)
(1.94248e-12 -5.37278e-12 -7.316e-11)
(7.26373e-13 -9.68189e-13 -1.93038e-11)
(3.65208e-13 -4.13544e-13 -6.01304e-12)
(1.96896e-13 -1.63867e-13 -1.08993e-12)
(9.89218e-14 -8.27888e-14 1.20749e-12)
(3.67546e-14 -3.77909e-13 2.40829e-12)
(2.21822e-17 -3.61389e-13 2.80612e-12)
(-1.0297e-12 9.6821e-12 -3.30811e-10)
(-2.37476e-13 1.53831e-11 -4.99125e-10)
(2.42628e-12 -6.79974e-12 -1.95499e-10)
(1.30097e-12 -2.23554e-12 -4.85794e-11)
(6.05071e-13 -4.00487e-13 -1.40113e-11)
(3.86577e-13 -1.47746e-13 -3.86962e-12)
(2.76169e-13 -3.76879e-14 3.1531e-13)
(2.14783e-13 -9.78053e-15 2.42313e-12)
(1.81671e-13 -3.66644e-13 3.61679e-12)
(1.63476e-13 -4.24763e-13 3.99517e-12)
(-2.92127e-13 8.32011e-12 -1.791e-10)
(5.10524e-13 1.68697e-11 -3.17081e-10)
(1.70377e-12 -1.13661e-12 -1.24856e-10)
(9.04394e-13 -7.19874e-13 -3.33009e-11)
(4.81495e-13 -8.87746e-14 -9.91447e-12)
(3.2058e-13 5.67415e-14 -1.88656e-12)
(2.36648e-13 7.31336e-14 1.77696e-12)
(1.9276e-13 6.57256e-14 3.76915e-12)
(1.72019e-13 -3.43466e-13 5.04339e-12)
(1.73488e-13 -5.08732e-13 5.45738e-12)
(-4.63872e-14 6.75998e-12 -1.04321e-10)
(6.63078e-13 1.59253e-11 -2.10627e-10)
(1.21426e-12 1.33348e-12 -8.35542e-11)
(6.53359e-13 1.04413e-13 -2.37371e-11)
(4.10719e-13 2.33662e-13 -6.64357e-12)
(2.91346e-13 2.15587e-13 -1.52315e-14)
(2.27628e-13 1.7483e-13 3.32772e-12)
(1.98501e-13 1.43477e-13 5.36186e-12)
(1.93801e-13 -3.11816e-13 6.81231e-12)
(2.17778e-13 -6.34258e-13 7.36739e-12)
(2.58506e-14 5.4824e-12 -6.49363e-11)
(6.24631e-13 1.4236e-11 -1.44934e-10)
(8.6383e-13 2.44219e-12 -5.79518e-11)
(5.27068e-13 6.10756e-13 -1.69958e-11)
(3.58162e-13 4.70377e-13 -3.87399e-12)
(2.70852e-13 3.44327e-13 1.84266e-12)
(2.27044e-13 2.69287e-13 5.03823e-12)
(2.15227e-13 2.35687e-13 7.27016e-12)
(2.3325e-13 -2.56722e-13 9.0531e-12)
(2.90905e-13 -8.16832e-13 9.91837e-12)
(4.32061e-14 4.51547e-12 -4.27415e-11)
(5.41211e-13 1.24284e-11 -1.02612e-10)
(6.41797e-13 2.92619e-12 -4.13493e-11)
(4.40026e-13 9.75285e-13 -1.19531e-11)
(3.21769e-13 6.41442e-13 -1.41927e-12)
(2.57583e-13 4.61095e-13 3.732e-12)
(2.35069e-13 3.76564e-13 7.01025e-12)
(2.46869e-13 3.61216e-13 9.60729e-12)
(2.9853e-13 -1.52348e-13 1.19485e-11)
(4.12182e-13 -1.08069e-12 1.33944e-11)
(4.52676e-14 3.79423e-12 -2.94282e-11)
(4.57098e-13 1.07915e-11 -7.42969e-11)
(5.11814e-13 3.08789e-12 -2.99003e-11)
(3.76468e-13 1.21157e-12 -7.95422e-12)
(2.94033e-13 7.75718e-13 8.55408e-13)
(2.55446e-13 5.75677e-13 5.71567e-12)
(2.55324e-13 5.11515e-13 9.31377e-12)
(2.99935e-13 5.45949e-13 1.2527e-11)
(4.04424e-13 5.11825e-14 1.57696e-11)
(6.12865e-13 -1.45479e-12 1.82368e-11)
(4.39974e-14 3.24625e-12 -2.09482e-11)
(3.84358e-13 9.38213e-12 -5.47253e-11)
(4.2174e-13 3.08796e-12 -2.16579e-11)
(3.29176e-13 1.35768e-12 -4.66386e-12)
(2.75073e-13 8.94597e-13 3.03237e-12)
(2.61683e-13 7.10675e-13 7.9262e-12)
(2.91728e-13 7.00371e-13 1.20651e-11)
(3.84874e-13 8.39072e-13 1.62411e-11)
(5.74562e-13 4.37259e-13 2.09192e-11)
(7.72537e-13 -1.99693e-12 2.5168e-11)
(3.94042e-14 2.81514e-12 -1.52354e-11)
(3.22367e-13 8.19433e-12 -4.08038e-11)
(3.53048e-13 3.00824e-12 -1.55014e-11)
(2.9569e-13 1.46037e-12 -1.85168e-12)
(2.64427e-13 1.02073e-12 5.19156e-12)
(2.7489e-13 8.81816e-13 1.04096e-11)
(3.4477e-13 9.81074e-13 1.54156e-11)
(5.04155e-13 1.31531e-12 2.1061e-11)
(-2.08325e-12 7.14401e-13 2.79814e-11)
(-4.78797e-10 -3.32162e-12 3.57767e-11)
(2.10241e-13 2.46769e-12 -1.12198e-11)
(5.81321e-13 7.20193e-12 -3.06483e-11)
(3.94197e-13 2.90577e-12 -1.07422e-11)
(2.98763e-13 1.53694e-12 6.66978e-13)
(2.23331e-13 1.15438e-12 7.40968e-12)
(1.59197e-13 1.12059e-12 1.32419e-11)
(8.31057e-14 1.39301e-12 1.95696e-11)
(-1.39117e-12 -5.51875e-12 2.75939e-11)
(-2.61722e-09 -1.23884e-09 -2.35947e-12)
(-9.16697e-07 -1.78878e-09 2.96883e-09)
(-3.30852e-11 7.78364e-11 -7.54964e-10)
(-2.22254e-11 -8.27325e-11 -8.78429e-10)
(1.74514e-12 -2.18911e-10 -9.72643e-10)
(4.34754e-12 -9.58407e-11 -3.07791e-10)
(1.32423e-12 -2.2711e-11 -6.06617e-11)
(3.9085e-13 -6.65752e-12 -1.41904e-11)
(7.07484e-14 -2.84591e-12 -2.69755e-12)
(-8.8236e-14 -1.51144e-12 1.34589e-12)
(-1.84436e-13 -1.12949e-12 3.00644e-12)
(-2.30566e-13 -5.44884e-13 3.43387e-12)
(-4.50906e-11 7.1296e-11 -3.36843e-10)
(-4.61345e-11 -2.46338e-11 -4.36621e-10)
(-1.27688e-11 -1.22192e-10 -5.67895e-10)
(-3.61675e-13 -5.43479e-11 -1.81038e-10)
(2.22001e-13 -1.45048e-11 -3.92753e-11)
(3.50412e-14 -5.01187e-12 -9.08468e-12)
(-9.99221e-14 -2.39514e-12 -4.30755e-13)
(-1.93966e-13 -1.39472e-12 2.88345e-12)
(-2.72753e-13 -1.1458e-12 4.32818e-12)
(-3.08055e-13 -6.2266e-13 4.63071e-12)
(-2.23309e-11 5.6765e-11 -1.67918e-10)
(-2.62934e-11 -2.96166e-12 -2.42406e-10)
(-6.68551e-12 -7.2134e-11 -3.51205e-10)
(-2.06099e-13 -3.28676e-11 -1.12671e-10)
(5.12143e-14 -9.74238e-12 -2.57252e-11)
(-7.58314e-14 -3.9299e-12 -5.0726e-12)
(-1.90481e-13 -2.09382e-12 1.66239e-12)
(-2.86096e-13 -1.35593e-12 4.48498e-12)
(-3.72609e-13 -1.21921e-12 5.81365e-12)
(-4.11878e-13 -7.48242e-13 6.06803e-12)
(-1.17278e-11 4.34466e-11 -9.23146e-11)
(-1.58873e-11 4.88049e-12 -1.48218e-10)
(-3.78779e-12 -4.43768e-11 -2.26611e-10)
(-1.07605e-13 -2.0922e-11 -7.32286e-11)
(-3.79679e-14 -7.02527e-12 -1.68476e-11)
(-1.49993e-13 -3.24514e-12 -1.80776e-12)
(-2.59152e-13 -1.95467e-12 3.6813e-12)
(-3.72057e-13 -1.42182e-12 6.21533e-12)
(-4.75257e-13 -1.37215e-12 7.58125e-12)
(-5.32788e-13 -9.59831e-13 7.89498e-12)
(-6.56751e-12 3.2976e-11 -5.45593e-11)
(-1.00799e-11 7.36249e-12 -9.73227e-11)
(-2.28175e-12 -2.8287e-11 -1.5121e-10)
(-1.28698e-13 -1.39656e-11 -4.88038e-11)
(-1.11126e-13 -5.35995e-12 -1.04411e-11)
(-2.19278e-13 -2.83885e-12 1.05013e-12)
(-3.39083e-13 -1.94798e-12 5.74096e-12)
(-4.69027e-13 -1.59912e-12 8.17789e-12)
(-6.02584e-13 -1.6347e-12 9.74914e-12)
(-6.91698e-13 -1.29363e-12 1.02819e-11)
(-3.91638e-12 2.5112e-11 -3.37218e-11)
(-6.66202e-12 7.74329e-12 -6.68252e-11)
(-1.46923e-12 -1.86057e-11 -1.03593e-10)
(-1.62103e-13 -9.8018e-12 -3.28751e-11)
(-1.74786e-13 -4.33189e-12 -5.52754e-12)
(-2.81966e-13 -2.65866e-12 3.65789e-12)
(-4.28647e-13 -2.0819e-12 7.91027e-12)
(-5.86221e-13 -1.89504e-12 1.04935e-11)
(-7.64541e-13 -2.04485e-12 1.24846e-11)
(-9.05637e-13 -1.80844e-12 1.34753e-11)
(-2.47591e-12 1.92429e-11 -2.12662e-11)
(-4.56407e-12 7.23659e-12 -4.72204e-11)
(-1.02885e-12 -1.26368e-11 -7.22394e-11)
(-1.96475e-13 -7.22543e-12 -2.18652e-11)
(-2.31955e-13 -3.71508e-12 -1.51036e-12)
(-3.569e-13 -2.6606e-12 6.19514e-12)
(-5.27812e-13 -2.36957e-12 1.03027e-11)
(-7.30182e-13 -2.35078e-12 1.32997e-11)
(-9.75691e-13 -2.65993e-12 1.60158e-11)
(-1.20097e-12 -2.60019e-12 1.78601e-11)
(-1.65478e-12 1.48288e-11 -1.3238e-11)
(-3.22621e-12 6.40543e-12 -3.39481e-11)
(-7.67559e-13 -8.88917e-12 -5.08342e-11)
(-2.24925e-13 -5.61933e-12 -1.38631e-11)
(-2.82092e-13 -3.4195e-12 1.88162e-12)
(-4.40836e-13 -2.83896e-12 8.7406e-12)
(-6.45544e-13 -2.80714e-12 1.30593e-11)
(-9.1121e-13 -3.01909e-12 1.67913e-11)
(-1.25314e-12 -3.574e-12 2.06867e-11)
(-1.73847e-12 -3.82317e-12 2.4028e-11)
(-1.16312e-12 1.14715e-11 -7.80783e-12)
(-2.34764e-12 5.49221e-12 -2.4538e-11)
(-6.09331e-13 -6.52025e-12 -3.57471e-11)
(-2.59734e-13 -4.641e-12 -7.80271e-12)
(-3.39088e-13 -3.36873e-12 4.94648e-12)
(-5.30561e-13 -3.1946e-12 1.14238e-11)
(-7.93254e-13 -3.44779e-12 1.63143e-11)
(-1.19801e-12 -3.96808e-12 2.12349e-11)
(4.55916e-12 -5.2566e-12 2.69563e-11)
(-2.42242e-10 -6.08373e-12 3.32606e-11)
(1.30155e-12 8.89677e-12 -4.15132e-12)
(1.33113e-12 4.57791e-12 -1.75581e-11)
(6.91195e-14 -5.04769e-12 -2.48225e-11)
(-1.0441e-13 -4.10132e-12 -2.9861e-12)
(-3.21331e-13 -3.51015e-12 7.83651e-12)
(-6.07287e-13 -3.7404e-12 1.43448e-11)
(-1.34743e-12 -4.47635e-12 2.01693e-11)
(4.01068e-11 1.11539e-11 3.14462e-11)
(8.90029e-09 -6.57567e-10 -4.58358e-11)
(-1.91412e-07 -5.43519e-10 -1.69239e-10)
(-4.00849e-11 -1.16411e-10 -6.4828e-10)
(-2.61307e-11 -2.66106e-10 -8.14241e-11)
(-3.45861e-12 -2.04167e-10 -1.87016e-10)
(-7.25757e-13 -5.02473e-11 -4.59686e-11)
(-1.78329e-13 -1.82173e-11 -1.82196e-11)
(-9.62343e-14 -8.12447e-12 -6.19178e-12)
(-8.88634e-14 -3.86806e-12 -1.49397e-12)
(-8.8008e-14 -1.98522e-12 1.27649e-13)
(-7.98221e-14 -1.31074e-12 5.9846e-13)
(-7.08203e-14 -5.74293e-13 7.1043e-13)
(-6.2382e-11 -5.58653e-11 -3.99724e-10)
(-4.05551e-11 -1.49811e-10 -2.83753e-11)
(-7.21786e-12 -1.22695e-10 -1.23461e-10)
(-2.07599e-12 -3.58296e-11 -3.65472e-11)
(-8.56358e-13 -1.39411e-11 -1.30513e-11)
(-4.36064e-13 -6.3484e-12 -3.89022e-12)
(-2.63699e-13 -3.12098e-12 -5.28345e-13)
(-1.90122e-13 -1.6629e-12 5.76922e-13)
(-1.41188e-13 -1.15186e-12 8.51755e-13)
(-1.0712e-13 -5.26249e-13 8.66773e-13)
(-3.45778e-11 -2.67681e-11 -2.51027e-10)
(-2.34553e-11 -9.06322e-11 -9.98381e-12)
(-5.02399e-12 -7.83738e-11 -8.37557e-11)
(-1.63127e-12 -2.6005e-11 -2.75507e-11)
(-7.27341e-13 -1.06774e-11 -8.93397e-12)
(-3.9916e-13 -5.01864e-12 -2.19399e-12)
(-2.62802e-13 -2.55517e-12 1.93768e-13)
(-1.98043e-13 -1.40487e-12 9.52971e-13)
(-1.52225e-13 -1.0032e-12 1.07354e-12)
(-1.16584e-13 -4.8043e-13 1.01034e-12)
(-2.06218e-11 -1.22967e-11 -1.58407e-10)
(-1.45031e-11 -5.79582e-11 -3.09173e-12)
(-3.5861e-12 -5.25317e-11 -5.79097e-11)
(-1.26906e-12 -1.92598e-11 -1.97666e-11)
(-6.0561e-13 -8.3061e-12 -5.86647e-12)
(-3.50426e-13 -4.04183e-12 -9.28931e-13)
(-2.47984e-13 -2.13561e-12 7.56753e-13)
(-1.87408e-13 -1.20555e-12 1.25288e-12)
(-1.50124e-13 -8.96251e-13 1.26763e-12)
(-1.18483e-13 -4.49724e-13 1.14901e-12)
(-1.3051e-11 -5.01519e-12 -9.95784e-11)
(-9.48512e-12 -3.86566e-11 1.81703e-14)
(-2.63412e-12 -3.6622e-11 -4.05801e-11)
(-1.01005e-12 -1.45661e-11 -1.39057e-11)
(-5.11157e-13 -6.5684e-12 -3.60529e-12)
(-3.14705e-13 -3.32564e-12 -7.40046e-15)
(-2.32224e-13 -1.82091e-12 1.21019e-12)
(-1.81362e-13 -1.04997e-12 1.50903e-12)
(-1.49786e-13 -8.19667e-13 1.4454e-12)
(-1.22076e-13 -4.33526e-13 1.29039e-12)
(-8.64639e-12 -1.4513e-12 -6.24081e-11)
(-6.49365e-12 -2.66954e-11 1.78385e-12)
(-1.98738e-12 -2.63741e-11 -2.8502e-11)
(-8.14645e-13 -1.12365e-11 -9.55843e-12)
(-4.36524e-13 -5.29163e-12 -1.93473e-12)
(-2.9091e-13 -2.78702e-12 7.06156e-13)
(-2.16317e-13 -1.58282e-12 1.56428e-12)
(-1.77141e-13 -9.44465e-13 1.73075e-12)
(-1.51439e-13 -7.67302e-13 1.61938e-12)
(-1.27296e-13 -4.29585e-13 1.44438e-12)
(-5.95402e-12 1.9304e-13 -3.88066e-11)
(-4.59697e-12 -1.89911e-11 2.91518e-12)
(-1.53096e-12 -1.95132e-11 -2.00638e-11)
(-6.67592e-13 -8.83232e-12 -6.38318e-12)
(-3.77837e-13 -4.36304e-12 -7.11561e-13)
(-2.68194e-13 -2.38957e-12 1.27894e-12)
(-2.06462e-13 -1.3939e-12 1.86774e-12)
(-1.75293e-13 -8.73559e-13 1.93389e-12)
(-1.54735e-13 -7.37108e-13 1.7985e-12)
(-1.34631e-13 -4.37963e-13 1.61928e-12)
(-4.2322e-12 9.0447e-13 -2.34666e-11)
(-3.33438e-12 -1.38522e-11 3.69747e-12)
(-1.20009e-12 -1.48237e-11 -1.41583e-11)
(-5.57392e-13 -7.0755e-12 -4.04038e-12)
(-3.37557e-13 -3.65851e-12 2.24911e-13)
(-2.44113e-13 -2.09135e-12 1.704e-12)
(-1.9928e-13 -1.26822e-12 2.12237e-12)
(-1.75644e-13 -8.312e-13 2.13368e-12)
(-1.61538e-13 -7.25006e-13 1.99219e-12)
(-4.71275e-13 -4.60621e-13 1.82791e-12)
(-3.06755e-12 1.13444e-12 -1.34096e-11)
(-2.491e-12 -1.03445e-11 4.21175e-12)
(-9.59366e-13 -1.15434e-11 -9.96303e-12)
(-4.73366e-13 -5.78855e-12 -2.30372e-12)
(-3.09516e-13 -3.13091e-12 9.54887e-13)
(-2.30342e-13 -1.85964e-12 2.0599e-12)
(-1.95725e-13 -1.18362e-12 2.35234e-12)
(-8.50095e-14 -8.18213e-13 2.33763e-12)
(-9.42744e-12 -1.72524e-12 2.12663e-12)
(-6.34017e-10 -1.55799e-12 3.30196e-12)
(6.5175e-13 1.05999e-12 -7.03638e-12)
(-8.87274e-14 -7.94658e-12 4.44016e-12)
(-4.22283e-13 -9.17001e-12 -6.88015e-12)
(-2.488e-13 -4.82359e-12 -1.02091e-12)
(-2.03317e-13 -2.73403e-12 1.52281e-12)
(-1.80674e-13 -1.68502e-12 2.36337e-12)
(5.96796e-13 -8.52929e-13 2.65867e-12)
(-8.22802e-12 -2.833e-11 -5.84037e-12)
(-9.86795e-09 -1.9268e-09 -1.18858e-10)
(-3.26203e-07 -2.06951e-09 2.21893e-09)
(-1.51321e-11 3.97941e-11 9.59704e-10)
(-7.97277e-12 -4.61079e-11 4.42009e-10)
(-1.92266e-12 -3.35247e-11 5.52263e-11)
(-1.01072e-12 -1.36475e-11 1.29557e-11)
(-4.28018e-13 -9.23082e-12 6.22065e-13)
(-1.85462e-13 -5.33272e-12 -1.09386e-12)
(-8.16515e-14 -3.08943e-12 -1.12882e-12)
(-3.1217e-14 -1.85633e-12 -9.08655e-13)
(-3.64054e-15 -1.43602e-12 -7.74818e-13)
(3.67324e-15 -7.31328e-13 -5.23955e-13)
(-2.05964e-11 1.5965e-11 5.38096e-10)
(-8.60507e-12 -3.05387e-11 2.56648e-10)
(-2.43182e-12 -2.69351e-11 3.22377e-11)
(-1.44697e-12 -1.27991e-11 6.18714e-12)
(-7.25241e-13 -7.69911e-12 -3.46731e-13)
(-3.6793e-13 -4.42499e-12 -1.18239e-12)
(-1.96588e-13 -2.58789e-12 -1.05218e-12)
(-1.0512e-13 -1.56784e-12 -8.36191e-13)
(-5.35339e-14 -1.26752e-12 -7.18275e-13)
(-2.6847e-14 -6.63104e-13 -4.81245e-13)
(-1.18585e-11 5.89945e-12 3.23106e-10)
(-6.0422e-12 -2.14385e-11 1.58485e-10)
(-2.16512e-12 -2.14392e-11 1.92104e-11)
(-1.15441e-12 -1.10844e-11 2.55057e-12)
(-5.93853e-13 -6.36689e-12 -8.49519e-13)
(-3.16455e-13 -3.66245e-12 -1.18106e-12)
(-1.75289e-13 -2.16226e-12 -9.67189e-13)
(-1.00416e-13 -1.32261e-12 -7.76766e-13)
(-5.68999e-14 -1.10222e-12 -6.56114e-13)
(-2.91798e-14 -5.87207e-13 -4.41112e-13)
(-7.40207e-12 1.66894e-12 2.05048e-10)
(-4.29601e-12 -1.57631e-11 1.02526e-10)
(-1.77697e-12 -1.72708e-11 1.12567e-11)
(-9.07338e-13 -9.24212e-12 7.64125e-13)
(-4.71264e-13 -5.27448e-12 -1.09992e-12)
(-2.57356e-13 -3.04583e-12 -1.12223e-12)
(-1.43811e-13 -1.81073e-12 -8.91214e-13)
(-8.35145e-14 -1.12129e-12 -7.11113e-13)
(-4.73194e-14 -9.61771e-13 -5.9935e-13)
(-2.36881e-14 -5.2166e-13 -4.04967e-13)
(-4.92184e-12 8.19863e-14 1.3637e-10)
(-3.1684e-12 -1.17437e-11 6.91928e-11)
(-1.40175e-12 -1.40469e-11 6.31995e-12)
(-7.18934e-13 -7.65361e-12 -2.28334e-13)
(-3.78375e-13 -4.38136e-12 -1.19913e-12)
(-2.08468e-13 -2.54937e-12 -1.05173e-12)
(-1.18733e-13 -1.5279e-12 -8.3329e-13)
(-6.95771e-14 -9.53473e-13 -6.4929e-13)
(-3.94311e-14 -8.42624e-13 -5.48235e-13)
(-1.9267e-14 -4.65203e-13 -3.73621e-13)
(-3.38153e-12 -5.23661e-13 9.39733e-11)
(-2.40871e-12 -8.89215e-12 4.82067e-11)
(-1.10312e-12 -1.14769e-11 3.2856e-12)
(-5.75065e-13 -6.3501e-12 -7.8753e-13)
(-3.0956e-13 -3.64971e-12 -1.20431e-12)
(-1.71507e-13 -2.1436e-12 -9.79454e-13)
(-9.90077e-14 -1.29588e-12 -7.64864e-13)
(-5.84509e-14 -8.13013e-13 -5.93455e-13)
(-3.29389e-14 -7.41748e-13 -5.03649e-13)
(-1.57166e-14 -4.16567e-13 -3.46406e-13)
(-2.39725e-12 -7.35428e-13 6.6558e-11)
(-1.86363e-12 -6.85076e-12 3.43876e-11)
(-8.76272e-13 -9.41814e-12 1.42161e-12)
(-4.6296e-13 -5.29762e-12 -1.0826e-12)
(-2.53798e-13 -3.05614e-12 -1.1564e-12)
(-1.42254e-13 -1.80426e-12 -9.22105e-13)
(-8.30962e-14 -1.10277e-12 -6.9926e-13)
(-4.93743e-14 -6.95016e-13 -5.41791e-13)
(-2.74842e-14 -6.54899e-13 -4.64636e-13)
(-1.28054e-14 -3.74488e-13 -3.22191e-13)
(-1.75804e-12 -7.531e-13 4.81948e-11)
(-1.4638e-12 -5.35033e-12 2.51027e-11)
(-7.05355e-13 -7.76539e-12 2.89028e-13)
(-3.77232e-13 -4.42954e-12 -1.21409e-12)
(-2.07803e-13 -2.57288e-12 -1.08895e-12)
(-1.19039e-13 -1.53078e-12 -8.50249e-13)
(-7.01588e-14 -9.40871e-13 -6.37898e-13)
(-4.15668e-14 -5.95069e-13 -4.97461e-13)
(-3.05439e-14 -5.80888e-13 -4.29953e-13)
(-5.17041e-13 -3.38123e-13 -2.99879e-13)
(-1.32571e-12 -6.70857e-13 3.56175e-11)
(-1.16929e-12 -4.21531e-12 1.87465e-11)
(-5.76092e-13 -6.43721e-12 -3.9354e-13)
(-3.14602e-13 -3.71579e-12 -1.24402e-12)
(-1.75453e-13 -2.17218e-12 -1.03001e-12)
(-1.0291e-13 -1.30414e-12 -7.7922e-13)
(-5.62988e-14 -8.04448e-13 -5.82279e-13)
(1.62598e-13 -5.3597e-13 -4.64517e-13)
(-2.78229e-11 -2.23365e-12 -5.5969e-13)
(-9.63746e-10 -1.97942e-12 8.55041e-13)
(1.92989e-13 -5.71201e-13 2.68929e-11)
(-5.45589e-14 -3.34958e-12 1.42052e-11)
(-2.60994e-13 -5.36313e-12 -7.95676e-13)
(-1.50497e-13 -3.12931e-12 -1.21419e-12)
(-8.7501e-14 -1.83687e-12 -9.63869e-13)
(-3.28321e-14 -1.09508e-12 -6.96827e-13)
(2.01283e-12 -2.08802e-14 -3.03428e-13)
(-1.46876e-10 -9.38628e-11 -2.37685e-11)
(-3.17419e-08 -3.26128e-09 -2.50067e-10)
(-3.2416e-07 -3.17997e-09 2.19364e-09)
(-2.15558e-12 3.68989e-11 2.57384e-10)
(-1.34792e-12 2.92662e-12 7.72221e-11)
(-7.42513e-13 -1.05854e-11 1.0325e-11)
(-4.52279e-13 -8.41004e-12 3.20858e-12)
(-2.45686e-13 -5.72009e-12 1.09896e-13)
(-1.27261e-13 -3.78448e-12 -8.88371e-13)
(-6.1282e-14 -2.53139e-12 -1.10137e-12)
(-2.24622e-14 -1.73074e-12 -1.07221e-12)
(1.8868e-15 -1.57613e-12 -1.00994e-12)
(8.37398e-15 -8.93704e-13 -7.47182e-13)
(-2.93467e-12 2.11964e-11 1.53199e-10)
(-1.88868e-12 2.07137e-12 5.65905e-11)
(-1.22202e-12 -9.71554e-12 8.08968e-12)
(-7.5136e-13 -7.34006e-12 1.68293e-12)
(-4.43646e-13 -4.93055e-12 -4.41193e-13)
(-2.62757e-13 -3.26768e-12 -1.03493e-12)
(-1.55986e-13 -2.19151e-12 -1.11309e-12)
(-9.07436e-14 -1.50041e-12 -1.02799e-12)
(-4.84549e-14 -1.41786e-12 -9.55058e-13)
(-2.38994e-14 -8.21092e-13 -6.99665e-13)
(-2.12655e-12 1.34878e-11 9.85002e-11)
(-1.6582e-12 1.44501e-12 4.18023e-11)
(-1.03224e-12 -8.66866e-12 5.59392e-12)
(-6.33096e-13 -6.35436e-12 5.9963e-13)
(-3.82962e-13 -4.23598e-12 -7.92665e-13)
(-2.3452e-13 -2.80672e-12 -1.10085e-12)
(-1.44606e-13 -1.88444e-12 -1.0839e-12)
(-8.96586e-14 -1.29231e-12 -9.70277e-13)
(-5.28006e-14 -1.2515e-12 -8.91646e-13)
(-2.58139e-14 -7.34608e-13 -6.54239e-13)
(-1.57267e-12 9.28207e-12 6.71284e-11)
(-1.38329e-12 1.04831e-12 3.1552e-11)
(-8.43423e-13 -7.65404e-12 3.38326e-12)
(-5.17239e-13 -5.49324e-12 -1.4023e-13)
(-3.14599e-13 -3.6419e-12 -9.99719e-13)
(-1.93607e-13 -2.41644e-12 -1.13051e-12)
(-1.1997e-13 -1.62409e-12 -1.04087e-12)
(-7.44637e-14 -1.11607e-12 -9.15283e-13)
(-4.32441e-14 -1.10764e-12 -8.34165e-13)
(-2.01377e-14 -6.58888e-13 -6.13572e-13)
(-1.19628e-12 6.77854e-12 4.75214e-11)
(-1.14796e-12 8.12713e-13 2.42743e-11)
(-6.92381e-13 -6.70255e-12 1.79201e-12)
(-4.25207e-13 -4.74555e-12 -6.21142e-13)
(-2.60467e-13 -3.13588e-12 -1.10953e-12)
(-1.61035e-13 -2.08404e-12 -1.11996e-12)
(-1.00232e-13 -1.40265e-12 -9.92587e-13)
(-6.19418e-14 -9.64969e-13 -8.61577e-13)
(-3.53639e-14 -9.83169e-13 -7.81018e-13)
(-1.54786e-14 -5.92869e-13 -5.76598e-13)
(-9.2651e-13 5.1908e-12 3.47754e-11)
(-9.56397e-13 6.58466e-13 1.88773e-11)
(-5.72007e-13 -5.83639e-12 7.12977e-13)
(-3.52092e-13 -4.1017e-12 -9.28818e-13)
(-2.1732e-13 -2.7058e-12 -1.15969e-12)
(-1.34839e-13 -1.80084e-12 -1.08746e-12)
(-8.40437e-14 -1.21326e-12 -9.42069e-13)
(-5.16655e-14 -8.34795e-13 -8.10062e-13)
(-2.8854e-14 -8.74787e-13 -7.32827e-13)
(-1.16074e-14 -5.34546e-13 -5.43518e-13)
(-7.2966e-13 4.12028e-12 2.62035e-11)
(-7.98904e-13 5.59699e-13 1.48196e-11)
(-4.77181e-13 -5.06167e-12 8.53781e-15)
(-2.93838e-13 -3.54899e-12 -1.11068e-12)
(-1.82208e-13 -2.33878e-12 -1.1774e-12)
(-1.13584e-13 -1.55785e-12 -1.04474e-12)
(-7.07801e-14 -1.05074e-12 -8.90627e-13)
(-4.32528e-14 -7.22618e-13 -7.6222e-13)
(-2.35236e-14 -7.80205e-13 -6.88855e-13)
(-8.71214e-15 -4.8323e-13 -5.1387e-13)
(-5.82458e-13 3.36612e-12 2.02161e-11)
(-6.67921e-13 4.92379e-13 1.17301e-11)
(-4.00894e-13 -4.38924e-12 -4.63106e-13)
(-2.46981e-13 -3.06983e-12 -1.2009e-12)
(-1.53691e-13 -2.0247e-12 -1.15704e-12)
(-9.62629e-14 -1.35019e-12 -9.96493e-13)
(-5.98816e-14 -9.10756e-13 -8.40667e-13)
(-3.60767e-14 -6.25355e-13 -7.16593e-13)
(-3.38667e-14 -6.97877e-13 -6.48123e-13)
(-7.21582e-13 -4.38334e-13 -4.86244e-13)
(-4.72246e-13 2.81281e-12 1.58776e-11)
(-5.6462e-13 4.48625e-13 9.35428e-12)
(-3.40632e-13 -3.8099e-12 -7.76393e-13)
(-2.11553e-13 -2.6584e-12 -1.23921e-12)
(-1.32951e-13 -1.75558e-12 -1.11934e-12)
(-8.47907e-14 -1.17164e-12 -9.45716e-13)
(-4.24607e-14 -7.8851e-13 -7.91567e-13)
(1.54172e-13 -5.96904e-13 -6.87017e-13)
(-4.93989e-11 -3.3435e-12 -8.52641e-13)
(-1.40096e-09 -2.97609e-12 6.2207e-13)
(1.21784e-13 2.38735e-12 1.26583e-11)
(1.26274e-13 4.16761e-13 7.5011e-12)
(-1.39436e-13 -3.30914e-12 -9.74669e-13)
(-9.32342e-14 -2.30397e-12 -1.24458e-12)
(-5.94942e-14 -1.52491e-12 -1.07432e-12)
(1.3867e-14 -9.7649e-13 -8.73875e-13)
(2.71704e-12 2.4143e-14 -5.29695e-13)
(-3.84672e-10 -1.87908e-10 -4.12797e-11)
(-5.58124e-08 -5.3136e-09 -4.29584e-10)
(-3.97985e-07 -5.01848e-09 2.11684e-09)
(-4.03822e-13 1.32183e-11 4.09531e-11)
(-5.02935e-13 6.87457e-12 2.50188e-11)
(-3.50381e-13 -4.92416e-12 6.18529e-12)
(-2.337e-13 -4.55856e-12 1.93254e-12)
(-1.48494e-13 -3.56678e-12 1.01604e-13)
(-8.84111e-14 -2.72183e-12 -7.02211e-13)
(-4.68972e-14 -2.06392e-12 -1.03126e-12)
(-1.80804e-14 -1.58568e-12 -1.15096e-12)
(4.14287e-15 -1.73006e-12 -1.218e-12)
(1.10062e-14 -1.09579e-12 -9.9596e-13)
(-6.55345e-13 1.05394e-11 3.11108e-11)
(-8.15261e-13 5.83209e-12 2.10978e-11)
(-5.88406e-13 -4.68307e-12 4.26288e-12)
(-4.10619e-13 -4.19056e-12 9.85541e-13)
(-2.8193e-13 -3.23742e-12 -3.28086e-13)
(-1.90622e-13 -2.44976e-12 -8.77619e-13)
(-1.26074e-13 -1.84916e-12 -1.08555e-12)
(-8.05867e-14 -1.41634e-12 -1.14171e-12)
(-4.58796e-14 -1.59342e-12 -1.17689e-12)
(-2.28373e-14 -1.02364e-12 -9.46352e-13)
(-5.76173e-13 8.67055e-12 2.42487e-11)
(-7.29258e-13 4.96188e-12 1.74775e-11)
(-5.2398e-13 -4.36312e-12 2.80596e-12)
(-3.70591e-13 -3.80594e-12 3.08272e-13)
(-2.58721e-13 -2.90889e-12 -6.22858e-13)
(-1.79255e-13 -2.18615e-12 -9.84518e-13)
(-1.22906e-13 -1.64113e-12 -1.09969e-12)
(-8.26437e-14 -1.25227e-12 -1.11043e-12)
(-5.15487e-14 -1.43317e-12 -1.12015e-12)
(-2.44586e-14 -9.28113e-13 -8.96792e-13)
(-4.76334e-13 7.30897e-12 1.93365e-11)
(-6.27182e-13 4.25767e-12 1.44356e-11)
(-4.45986e-13 -4.02683e-12 1.71968e-12)
(-3.14726e-13 -3.44258e-12 -1.78244e-13)
(-2.19465e-13 -2.60625e-12 -8.21376e-13)
(-1.51713e-13 -1.94813e-12 -1.04611e-12)
(-1.0362e-13 -1.45614e-12 -1.09449e-12)
(-6.9118e-14 -1.10683e-12 -1.07407e-12)
(-4.22008e-14 -1.29109e-12 -1.06587e-12)
(-1.84772e-14 -8.43022e-13 -8.51449e-13)
(-3.94329e-13 6.24841e-12 1.56501e-11)
(-5.41565e-13 3.67577e-12 1.19293e-11)
(-3.81725e-13 -3.68399e-12 9.17872e-13)
(-2.68571e-13 -3.10303e-12 -5.21556e-13)
(-1.87156e-13 -2.33253e-12 -9.51911e-13)
(-1.2906e-13 -1.73541e-12 -1.07661e-12)
(-8.76792e-14 -1.29149e-12 -1.07678e-12)
(-5.79133e-14 -9.78379e-13 -1.03499e-12)
(-3.44525e-14 -1.16469e-12 -1.01406e-12)
(-1.36528e-14 -7.66757e-13 -8.09501e-13)
(-3.30775e-13 5.41607e-12 1.28512e-11)
(-4.68435e-13 3.20495e-12 9.88341e-12)
(-3.28934e-13 -3.35402e-12 3.25999e-13)
(-2.30697e-13 -2.79106e-12 -7.59275e-13)
(-1.60581e-13 -2.08469e-12 -1.03257e-12)
(-1.10326e-13 -1.544e-12 -1.08411e-12)
(-7.4548e-14 -1.14489e-12 -1.05138e-12)
(-4.85908e-14 -8.63848e-13 -9.941e-13)
(-2.78896e-14 -1.05225e-12 -9.65046e-13)
(-9.62393e-15 -6.98765e-13 -7.70929e-13)
(-2.78998e-13 4.74643e-12 1.06834e-11)
(-4.07146e-13 2.81832e-12 8.20406e-12)
(-2.84645e-13 -3.04328e-12 -1.08992e-13)
(-1.99059e-13 -2.50382e-12 -9.18991e-13)
(-1.38227e-13 -1.86134e-12 -1.07781e-12)
(-9.48027e-14 -1.37316e-12 -1.0759e-12)
(-6.3513e-14 -1.0138e-12 -1.01948e-12)
(-4.09046e-14 -7.61262e-13 -9.52945e-13)
(-2.26223e-14 -9.514e-13 -9.1866e-13)
(-6.58736e-15 -6.37693e-13 -7.35558e-13)
(-2.37026e-13 4.19534e-12 8.97667e-12)
(-3.55668e-13 2.50195e-12 6.83727e-12)
(-2.47015e-13 -2.75272e-12 -4.29465e-13)
(-1.72538e-13 -2.244e-12 -1.02303e-12)
(-1.19574e-13 -1.66102e-12 -1.09685e-12)
(-8.17415e-14 -1.21989e-12 -1.05692e-12)
(-5.41952e-14 -8.96807e-13 -9.85176e-13)
(-3.42532e-14 -6.70735e-13 -9.1292e-13)
(-4.24666e-14 -8.62126e-13 -8.75562e-13)
(-9.10039e-13 -5.83269e-13 -7.02185e-13)
(-2.04166e-13 3.73606e-12 7.61632e-12)
(-3.1462e-13 2.24092e-12 5.72234e-12)
(-2.18177e-13 -2.48428e-12 -6.59554e-13)
(-1.52867e-13 -2.00887e-12 -1.08552e-12)
(-1.06333e-13 -1.48081e-12 -1.09659e-12)
(-7.35051e-14 -1.08264e-12 -1.03057e-12)
(-3.45818e-14 -7.91307e-13 -9.48489e-13)
(3.82303e-14 -6.93387e-13 -8.92524e-13)
(-7.19738e-11 -4.64564e-12 -1.14209e-12)
(-1.75611e-09 -4.17037e-12 2.34881e-13)
(1.00513e-13 3.3417e-12 6.50929e-12)
(2.09933e-13 2.01752e-12 4.79937e-12)
(-7.18531e-14 -2.23729e-12 -8.2089e-13)
(-5.89992e-14 -1.79566e-12 -1.11771e-12)
(-3.87609e-14 -1.32e-12 -1.08327e-12)
(6.30827e-14 -8.98009e-13 -9.76885e-13)
(3.06601e-12 -4.01728e-13 -8.32712e-13)
(-6.03189e-10 -3.0841e-10 -5.72697e-11)
(-7.68517e-08 -7.47954e-09 -5.8194e-10)
(-3.24274e-07 -6.98828e-09 1.50109e-09)
(-1.1175e-13 8.64003e-12 1.34506e-11)
(-2.04664e-13 7.19939e-12 1.31038e-11)
(-1.59097e-13 -2.13795e-12 3.371e-12)
(-1.22109e-13 -2.45097e-12 1.26398e-12)
(-8.90092e-14 -2.17975e-12 1.58512e-13)
(-6.00061e-14 -1.86823e-12 -5.07936e-13)
(-3.53988e-14 -1.57917e-12 -9.17269e-13)
(-1.47799e-14 -1.35206e-12 -1.17437e-12)
(4.31919e-15 -1.83478e-12 -1.39207e-12)
(1.13459e-14 -1.30722e-12 -1.2617e-12)
(-2.02612e-13 7.74032e-12 1.15756e-11)
(-3.50981e-13 6.38451e-12 1.12246e-11)
(-2.87829e-13 -2.17767e-12 2.44457e-12)
(-2.30031e-13 -2.3769e-12 7.10361e-13)
(-1.79303e-13 -2.07629e-12 -1.72604e-13)
(-1.36157e-13 -1.75526e-12 -6.92589e-13)
(-1.0024e-13 -1.46805e-12 -1.00653e-12)
(-7.06266e-14 -1.24708e-12 -1.20023e-12)
(-4.43285e-14 -1.73553e-12 -1.37151e-12)
(-2.33264e-14 -1.24479e-12 -1.21499e-12)
(-2.0452e-13 6.98003e-12 9.98535e-12)
(-3.39521e-13 5.71153e-12 9.62247e-12)
(-2.78451e-13 -2.15424e-12 1.69825e-12)
(-2.24098e-13 -2.26594e-12 2.74598e-13)
(-1.76687e-13 -1.94812e-12 -4.22323e-13)
(-1.36813e-13 -1.62846e-12 -8.23923e-13)
(-1.03677e-13 -1.34867e-12 -1.05858e-12)
(-7.63979e-14 -1.1364e-12 -1.19921e-12)
(-5.2009e-14 -1.59404e-12 -1.32918e-12)
(-2.4662e-14 -1.14511e-12 -1.16619e-12)
(-1.79292e-13 6.33087e-12 8.66455e-12)
(-3.04063e-13 5.14073e-12 8.27456e-12)
(-2.46901e-13 -2.09734e-12 1.1053e-12)
(-1.97178e-13 -2.14203e-12 -6.41205e-14)
(-1.54558e-13 -1.81864e-12 -6.11578e-13)
(-1.18801e-13 -1.50463e-12 -9.16442e-13)
(-8.91841e-14 -1.2348e-12 -1.08914e-12)
(-6.48087e-14 -1.03266e-12 -1.18782e-12)
(-4.29234e-14 -1.46357e-12 -1.28532e-12)
(-1.85091e-14 -1.05371e-12 -1.11941e-12)
(-1.57915e-13 5.77494e-12 7.58118e-12)
(-2.73077e-13 4.65479e-12 7.13184e-12)
(-2.19548e-13 -2.01762e-12 6.34422e-13)
(-1.74208e-13 -2.01296e-12 -3.26181e-13)
(-1.3565e-13 -1.6899e-12 -7.51984e-13)
(-1.03398e-13 -1.38524e-12 -9.80282e-13)
(-7.67956e-14 -1.12742e-12 -1.10333e-12)
(-5.50508e-14 -9.35961e-13 -1.16971e-12)
(-3.53139e-14 -1.3447e-12 -1.24171e-12)
(-1.34445e-14 -9.70941e-13 -1.07544e-12)
(-1.39673e-13 5.29239e-12 6.67484e-12)
(-2.46009e-13 4.23845e-12 6.16406e-12)
(-1.95886e-13 -1.92383e-12 2.60067e-13)
(-1.5441e-13 -1.88141e-12 -5.27513e-13)
(-1.19445e-13 -1.5641e-12 -8.55858e-13)
(-9.03575e-14 -1.27111e-12 -1.0219e-12)
(-6.6418e-14 -1.02689e-12 -1.10575e-12)
(-4.68089e-14 -8.46619e-13 -1.1465e-12)
(-2.89734e-14 -1.23489e-12 -1.19809e-12)
(-9.12794e-15 -8.94803e-13 -1.03383e-12)
(-1.24116e-13 4.87004e-12 5.91243e-12)
(-2.22204e-13 3.88062e-12 5.342e-12)
(-1.75211e-13 -1.82071e-12 -3.86351e-14)
(-1.37278e-13 -1.75172e-12 -6.81918e-13)
(-1.05538e-13 -1.4434e-12 -9.30462e-13)
(-7.91668e-14 -1.16368e-12 -1.04733e-12)
(-5.75124e-14 -9.32631e-13 -1.09989e-12)
(-3.97485e-14 -7.63049e-13 -1.11992e-12)
(-2.36001e-14 -1.13407e-12 -1.1552e-12)
(-6.08921e-15 -8.2486e-13 -9.94735e-13)
(-1.10718e-13 4.4984e-12 5.26756e-12)
(-2.01133e-13 3.57108e-12 4.63937e-12)
(-1.57246e-13 -1.71348e-12 -2.74627e-13)
(-1.22576e-13 -1.62498e-12 -7.98238e-13)
(-9.35667e-14 -1.3277e-12 -9.81757e-13)
(-6.95981e-14 -1.06172e-12 -1.05919e-12)
(-4.98269e-14 -8.44579e-13 -1.0867e-12)
(-3.39235e-14 -6.86184e-13 -1.09137e-12)
(-5.3964e-14 -1.04376e-12 -1.11439e-12)
(-1.08951e-12 -7.6299e-13 -9.57587e-13)
(-1.00179e-13 4.16853e-12 4.71492e-12)
(-1.85165e-13 3.30178e-12 4.03729e-12)
(-1.44179e-13 -1.60511e-12 -4.60584e-13)
(-1.12233e-13 -1.50302e-12 -8.8487e-13)
(-8.57638e-14 -1.21789e-12 -1.01557e-12)
(-6.36543e-14 -9.66062e-13 -1.0612e-12)
(-3.12722e-14 -7.63112e-13 -1.06959e-12)
(-4.30599e-13 -7.82469e-13 -1.08704e-12)
(-9.09519e-11 -6.13968e-12 -1.43259e-12)
(-2.05089e-09 -5.583e-12 -5.60201e-14)
(9.05162e-14 3.86643e-12 4.2312e-12)
(2.7682e-13 3.0585e-12 3.51254e-12)
(-2.62005e-14 -1.49682e-12 -6.06295e-13)
(-3.11031e-14 -1.38567e-12 -9.47251e-13)
(-1.91131e-14 -1.11305e-12 -1.03377e-12)
(7.79493e-14 -8.05632e-13 -1.03471e-12)
(-5.8046e-12 -2.61498e-12 -1.48628e-12)
(-1.46019e-09 -4.36616e-10 -6.72846e-11)
(-8.65013e-08 -9.77635e-09 -6.9624e-10)
(-1.03522e-07 -9.13864e-09 1.32819e-09)
(-2.68342e-14 6.91824e-12 6.27956e-12)
(-7.83434e-14 6.7062e-12 7.13934e-12)
(-6.81638e-14 -7.51316e-13 1.99967e-12)
(-5.90035e-14 -1.18407e-12 9.18374e-13)
(-4.86286e-14 -1.16559e-12 2.17051e-13)
(-3.68604e-14 -1.10038e-12 -3.24709e-13)
(-2.43242e-14 -1.01613e-12 -7.55669e-13)
(-1.17207e-14 -9.65221e-13 -1.10974e-12)
(2.15128e-15 -1.80439e-12 -1.46471e-12)
(7.61692e-15 -1.46073e-12 -1.45775e-12)
(-6.26059e-14 6.51357e-12 5.73317e-12)
(-1.49419e-13 6.24088e-12 6.38898e-12)
(-1.3745e-13 -8.4494e-13 1.54155e-12)
(-1.23082e-13 -1.21715e-12 5.78395e-13)
(-1.07743e-13 -1.17318e-12 -3.33182e-14)
(-9.14726e-14 -1.08636e-12 -4.99065e-13)
(-7.53281e-14 -9.87721e-13 -8.66062e-13)
(-5.98143e-14 -9.27897e-13 -1.16538e-12)
(-4.35394e-14 -1.75978e-12 -1.46809e-12)
(-2.65521e-14 -1.42137e-12 -1.42068e-12)
(-8.19553e-14 6.14838e-12 5.2324e-12)
(-1.62262e-13 5.83458e-12 5.71306e-12)
(-1.48372e-13 -9.033e-13 1.14338e-12)
(-1.33356e-13 -1.22202e-12 2.89426e-13)
(-1.17251e-13 -1.1545e-12 -2.37577e-13)
(-1.00782e-13 -1.05338e-12 -6.34566e-13)
(-8.48405e-14 -9.45902e-13 -9.43547e-13)
(-6.97897e-14 -8.7752e-13 -1.19246e-12)
(-5.37854e-14 -1.65142e-12 -1.44612e-12)
(-2.79948e-14 -1.32678e-12 -1.37849e-12)
(-7.51842e-14 5.81731e-12 4.79331e-12)
(-1.50428e-13 5.47228e-12 5.11593e-12)
(-1.36103e-13 -9.39305e-13 8.04029e-13)
(-1.20984e-13 -1.21119e-12 4.90387e-14)
(-1.05414e-13 -1.12553e-12 -4.04519e-13)
(-8.98025e-14 -1.01292e-12 -7.42012e-13)
(-7.46044e-14 -8.9877e-13 -1.00116e-12)
(-6.03322e-14 -8.2492e-13 -1.20781e-12)
(-4.53344e-14 -1.54792e-12 -1.41955e-12)
(-2.17754e-14 -1.23878e-12 -1.33682e-12)
(-6.90917e-14 5.51566e-12 4.40588e-12)
(-1.39695e-13 5.14737e-12 4.58602e-12)
(-1.25117e-13 -9.56465e-13 5.15925e-13)
(-1.1e-13 -1.18762e-12 -1.51301e-13)
(-9.49179e-14 -1.0891e-12 -5.41133e-13)
(-8.00092e-14 -9.67804e-13 -8.2603e-13)
(-6.57292e-14 -8.48566e-13 -1.04259e-12)
(-5.22188e-14 -7.70707e-13 -1.21287e-12)
(-3.8191e-14 -1.44953e-12 -1.39021e-12)
(-1.65886e-14 -1.15661e-12 -1.29605e-12)
(-6.37857e-14 5.23939e-12 4.06253e-12)
(-1.2996e-13 4.85541e-12 4.11506e-12)
(-1.15106e-13 -9.59316e-13 2.70316e-13)
(-1.00349e-13 -1.1546e-12 -3.18144e-13)
(-8.57191e-14 -1.04613e-12 -6.52049e-13)
(-7.13447e-14 -9.19403e-13 -8.91788e-13)
(-5.7858e-14 -7.9721e-13 -1.07096e-12)
(-4.52614e-14 -7.16851e-13 -1.21141e-12)
(-3.21588e-14 -1.3563e-12 -1.35873e-12)
(-1.22192e-14 -1.08005e-12 -1.25654e-12)
(-5.91225e-14 4.98627e-12 3.75625e-12)
(-1.20976e-13 4.5935e-12 3.69609e-12)
(-1.05947e-13 -9.50569e-13 6.20229e-14)
(-9.16308e-14 -1.11517e-12 -4.56831e-13)
(-7.76601e-14 -9.98492e-13 -7.41791e-13)
(-6.39001e-14 -8.68143e-13 -9.42264e-13)
(-5.10838e-14 -7.4586e-13 -1.09047e-12)
(-3.92875e-14 -6.64235e-13 -1.20414e-12)
(-2.69609e-14 -1.26772e-12 -1.32634e-12)
(-8.97677e-15 -1.00805e-12 -1.21801e-12)
(-5.43189e-14 4.75382e-12 3.48194e-12)
(-1.12839e-13 4.35805e-12 3.32281e-12)
(-9.78131e-14 -9.32946e-13 -1.15649e-13)
(-8.38441e-14 -1.0717e-12 -5.72785e-13)
(-7.03881e-14 -9.49058e-13 -8.14125e-13)
(-5.74132e-14 -8.16022e-13 -9.80091e-13)
(-4.51087e-14 -6.94133e-13 -1.10096e-12)
(-3.43966e-14 -6.12056e-13 -1.19224e-12)
(-6.72431e-14 -1.1861e-12 -1.2932e-12)
(-1.28839e-12 -9.43343e-13 -1.18111e-12)
(-5.03906e-14 4.53599e-12 3.23477e-12)
(-1.07831e-13 4.14166e-12 2.98761e-12)
(-9.30595e-14 -9.07989e-13 -2.66739e-13)
(-7.94873e-14 -1.02358e-12 -6.68455e-13)
(-6.66289e-14 -8.97574e-13 -8.71629e-13)
(-5.38131e-14 -7.63114e-13 -1.00769e-12)
(-3.34521e-14 -6.44638e-13 -1.10567e-12)
(-7.5688e-13 -8.00298e-13 -1.20664e-12)
(-1.02521e-10 -7.88481e-12 -1.64654e-12)
(-2.38261e-09 -7.31164e-12 -3.06197e-13)
(9.11624e-14 4.32379e-12 3.00502e-12)
(3.51628e-13 3.93408e-12 2.67997e-12)
(9.87842e-15 -8.78675e-13 -3.95152e-13)
(-4.12762e-15 -9.74433e-13 -7.46973e-13)
(2.00505e-16 -8.43389e-13 -9.15936e-13)
(1.06255e-14 -6.61749e-13 -1.01462e-12)
(-1.01728e-11 -4.46605e-12 -1.77307e-12)
(-1.34215e-09 -5.45233e-10 -6.6641e-11)
(-7.98159e-08 -1.2595e-08 -7.73838e-10)
(1.50387e-07 -1.18822e-08 1.32718e-09)
(3.35066e-15 6.05874e-12 3.33438e-12)
(-2.11568e-14 6.33624e-12 4.05999e-12)
(-2.09974e-14 2.54162e-14 1.23353e-12)
(-2.08894e-14 -3.71311e-13 6.56406e-13)
(-1.98868e-14 -3.97279e-13 2.27518e-13)
(-1.71799e-14 -3.99041e-13 -1.74293e-13)
(-1.33089e-14 -3.87579e-13 -5.5679e-13)
(-8.38153e-15 -4.18112e-13 -9.31115e-13)
(-1.93598e-15 -1.58478e-12 -1.35096e-12)
(-6.60855e-16 -1.49434e-12 -1.45533e-12)
(-1.09703e-14 5.8809e-12 3.16237e-12)
(-5.36474e-14 6.09835e-12 3.75473e-12)
(-5.59871e-14 -5.58907e-14 9.99598e-13)
(-5.62703e-14 -4.29322e-13 4.53449e-13)
(-5.59796e-14 -4.45171e-13 5.19798e-14)
(-5.3941e-14 -4.35926e-13 -3.17883e-13)
(-5.12087e-14 -4.16485e-13 -6.64668e-13)
(-4.78172e-14 -4.41835e-13 -1.00044e-12)
(-4.31234e-14 -1.60517e-12 -1.37327e-12)
(-3.30209e-14 -1.49038e-12 -1.43197e-12)
(-3.32872e-14 5.71389e-12 2.99214e-12)
(-7.35959e-14 5.88062e-12 3.46488e-12)
(-7.45261e-14 -1.21207e-13 7.84251e-13)
(-7.38127e-14 -4.71417e-13 2.70968e-13)
(-7.22872e-14 -4.77787e-13 -9.95893e-14)
(-6.93929e-14 -4.59585e-13 -4.3604e-13)
(-6.59459e-14 -4.33819e-13 -7.4794e-13)
(-6.19589e-14 -4.50618e-13 -1.04551e-12)
(-5.63769e-14 -1.5426e-12 -1.37173e-12)
(-3.47245e-14 -1.41296e-12 -1.40164e-12)
(-3.16483e-14 5.55603e-12 2.83552e-12)
(-7.01414e-14 5.67956e-12 3.19835e-12)
(-7.007e-14 -1.74762e-13 5.91219e-13)
(-6.87975e-14 -5.03145e-13 1.09346e-13)
(-6.66145e-14 -4.99626e-13 -2.31082e-13)
(-6.33412e-14 -4.73417e-13 -5.36511e-13)
(-5.93189e-14 -4.41345e-13 -8.15446e-13)
(-5.49257e-14 -4.51627e-13 -1.07856e-12)
(-4.89649e-14 -1.47849e-12 -1.36364e-12)
(-2.86888e-14 -1.33802e-12 -1.37048e-12)
(-3.00327e-14 5.40722e-12 2.69122e-12)
(-6.67203e-14 5.49325e-12 2.95297e-12)
(-6.59136e-14 -2.17905e-13 4.17601e-13)
(-6.40951e-14 -5.25796e-13 -3.25865e-14)
(-6.1341e-14 -5.14269e-13 -3.45234e-13)
(-5.77553e-14 -4.80103e-13 -6.21347e-13)
(-5.35042e-14 -4.42098e-13 -8.70226e-13)
(-4.87331e-14 -4.45351e-13 -1.10224e-12)
(-4.26059e-14 -1.41391e-12 -1.35076e-12)
(-2.36012e-14 -1.26769e-12 -1.33865e-12)
(-2.8178e-14 5.26649e-12 2.55762e-12)
(-6.36183e-14 5.32029e-12 2.72618e-12)
(-6.22529e-14 -2.52563e-13 2.61548e-13)
(-5.9868e-14 -5.40319e-13 -1.5793e-13)
(-5.65669e-14 -5.20757e-13 -4.43814e-13)
(-5.25972e-14 -4.81085e-13 -6.93312e-13)
(-4.81152e-14 -4.3708e-13 -9.14744e-13)
(-4.32107e-14 -4.34397e-13 -1.11774e-12)
(-3.71434e-14 -1.34999e-12 -1.33454e-12)
(-1.9247e-14 -1.19972e-12 -1.30652e-12)
(-2.61337e-14 5.1306e-12 2.43282e-12)
(-6.06733e-14 5.15629e-12 2.51566e-12)
(-5.87704e-14 -2.79067e-13 1.21498e-13)
(-5.5844e-14 -5.4737e-13 -2.69026e-13)
(-5.23088e-14 -5.21292e-13 -5.29573e-13)
(-4.81084e-14 -4.75953e-13 -7.53208e-13)
(-4.33397e-14 -4.28022e-13 -9.49845e-13)
(-3.85356e-14 -4.20388e-13 -1.12754e-12)
(-3.24098e-14 -1.28722e-12 -1.31584e-12)
(-1.61307e-14 -1.13577e-12 -1.27465e-12)
(-2.4869e-14 5.00003e-12 2.31632e-12)
(-5.79347e-14 5.00232e-12 2.32082e-12)
(-5.53427e-14 -2.98527e-13 -3.76343e-15)
(-5.22004e-14 -5.49507e-13 -3.66979e-13)
(-4.85317e-14 -5.17648e-13 -6.04114e-13)
(-4.41349e-14 -4.66889e-13 -8.03781e-13)
(-3.91967e-14 -4.15447e-13 -9.77219e-13)
(-3.48247e-14 -4.03609e-13 -1.13221e-12)
(-8.1048e-14 -1.22823e-12 -1.29541e-12)
(-1.47379e-12 -1.0774e-12 -1.24307e-12)
(-2.4705e-14 4.87743e-12 2.21027e-12)
(-5.76206e-14 4.86063e-12 2.1407e-12)
(-5.50883e-14 -3.12036e-13 -1.17032e-13)
(-5.1685e-14 -5.47777e-13 -4.5407e-13)
(-4.77454e-14 -5.09857e-13 -6.68349e-13)
(-4.28219e-14 -4.53715e-13 -8.46235e-13)
(-3.86288e-14 -4.02465e-13 -9.98772e-13)
(-1.17655e-12 -6.89946e-13 -1.15961e-12)
(-1.04003e-10 -9.58452e-12 -1.63386e-12)
(-2.68572e-09 -9.09791e-12 -5.41215e-13)
(1.0176e-13 4.75182e-12 2.10848e-12)
(4.50196e-13 4.71559e-12 1.96836e-12)
(4.19755e-14 -3.23586e-13 -2.18833e-13)
(2.1608e-14 -5.4087e-13 -5.30033e-13)
(2.03449e-14 -4.95988e-13 -7.23096e-13)
(-6.76664e-14 -4.40689e-13 -8.79767e-13)
(-1.33462e-11 -7.02429e-12 -1.83473e-12)
(-1.12617e-09 -6.02114e-10 -5.32354e-11)
(-5.25793e-08 -1.54853e-08 -7.44841e-10)
(4.29508e-07 -1.48325e-08 1.03881e-09)
(1.54775e-14 5.62195e-12 1.7173e-12)
(6.28087e-15 6.12676e-12 2.14247e-12)
(4.43479e-15 4.68152e-13 6.9582e-13)
(2.10175e-15 1.43827e-13 4.07429e-13)
(9.17882e-17 1.49668e-13 1.73013e-13)
(-1.79142e-15 1.72989e-13 -7.68171e-14)
(-3.52914e-15 2.03658e-13 -3.45172e-13)
(-4.93838e-15 1.75364e-13 -6.40261e-13)
(-6.47473e-15 -1.23056e-12 -9.98172e-13)
(-1.12518e-14 -1.39816e-12 -1.13091e-12)
(1.02374e-14 5.55949e-12 1.66503e-12)
(-6.34235e-15 6.02671e-12 2.02401e-12)
(-1.0798e-14 4.14774e-13 5.83771e-13)
(-1.55668e-14 9.34122e-14 2.98185e-13)
(-2.02487e-14 9.7193e-14 6.77078e-14)
(-2.51016e-14 1.16381e-13 -1.72978e-13)
(-3.04541e-14 1.43746e-13 -4.26024e-13)
(-3.61398e-14 1.07871e-13 -6.99147e-13)
(-4.25656e-14 -1.31098e-12 -1.0246e-12)
(-4.09672e-14 -1.43318e-12 -1.11977e-12)
(-1.19671e-14 5.49858e-12 1.60936e-12)
(-2.80202e-14 5.93067e-12 1.90726e-12)
(-3.20803e-14 3.65146e-13 4.75939e-13)
(-3.61946e-14 4.68329e-14 1.9665e-13)
(-4.04714e-14 5.03729e-14 -2.64148e-14)
(-4.46177e-14 6.77247e-14 -2.54485e-13)
(-4.91566e-14 9.17363e-14 -4.90681e-13)
(-5.40498e-14 5.37831e-14 -7.41073e-13)
(-5.85946e-14 -1.29466e-12 -1.03267e-12)
(-4.3335e-14 -1.37976e-12 -1.10244e-12)
(-1.15057e-14 5.4396e-12 1.55595e-12)
(-2.72114e-14 5.83892e-12 1.79584e-12)
(-3.07828e-14 3.21388e-13 3.7583e-13)
(-3.43616e-14 6.5766e-15 1.0309e-13)
(-3.79548e-14 9.17418e-15 -1.11095e-13)
(-4.15241e-14 2.5644e-14 -3.26496e-13)
(-4.52708e-14 4.74809e-14 -5.46056e-13)
(-4.91135e-14 9.49317e-15 -7.74182e-13)
(-5.2592e-14 -1.27191e-12 -1.03535e-12)
(-3.76581e-14 -1.32617e-12 -1.08278e-12)
(-1.0902e-14 5.38184e-12 1.50509e-12)
(-2.63129e-14 5.75125e-12 1.69042e-12)
(-2.95596e-14 2.81601e-13 2.8266e-13)
(-3.28178e-14 -2.87899e-14 1.72781e-14)
(-3.57117e-14 -2.5783e-14 -1.87743e-13)
(-3.85715e-14 -1.01742e-14 -3.90163e-13)
(-4.15527e-14 1.16527e-14 -5.93317e-13)
(-4.47593e-14 -2.62034e-14 -8.00741e-13)
(-4.72691e-14 -1.24597e-12 -1.03337e-12)
(-3.29356e-14 -1.27386e-12 -1.0626e-12)
(-1.05221e-14 5.32564e-12 1.45698e-12)
(-2.54641e-14 5.66634e-12 1.5899e-12)
(-2.84082e-14 2.45e-13 1.95623e-13)
(-3.10572e-14 -5.93668e-14 -6.14169e-14)
(-3.3559e-14 -5.45898e-14 -2.56176e-13)
(-3.59037e-14 -3.92278e-14 -4.46242e-13)
(-3.81772e-14 -1.97868e-14 -6.33493e-13)
(-4.0883e-14 -5.59852e-14 -8.21137e-13)
(-4.25897e-14 -1.21676e-12 -1.02836e-12)
(-2.88244e-14 -1.22353e-12 -1.04159e-12)
(-1.03964e-14 5.2718e-12 1.41256e-12)
(-2.47864e-14 5.58624e-12 1.49465e-12)
(-2.73604e-14 2.13689e-13 1.14258e-13)
(-2.94636e-14 -8.55029e-14 -1.33586e-13)
(-3.15873e-14 -8.0671e-14 -3.18142e-13)
(-3.36314e-14 -6.40167e-14 -4.95392e-13)
(-3.54475e-14 -4.44221e-14 -6.67147e-13)
(-3.73249e-14 -7.96038e-14 -8.36607e-13)
(-3.84367e-14 -1.18589e-12 -1.02086e-12)
(-2.57383e-14 -1.17443e-12 -1.02023e-12)
(-1.01436e-14 5.22e-12 1.3713e-12)
(-2.40099e-14 5.50968e-12 1.40408e-12)
(-2.62926e-14 1.85389e-13 3.84634e-14)
(-2.81043e-14 -1.0759e-13 -1.99689e-13)
(-2.98239e-14 -1.02398e-13 -3.74024e-13)
(-3.13319e-14 -8.53132e-14 -5.39036e-13)
(-3.27012e-14 -6.46543e-14 -6.95797e-13)
(-3.48846e-14 -9.7183e-14 -8.48638e-13)
(-9.23908e-14 -1.15663e-12 -1.01118e-12)
(-1.61884e-12 -1.1306e-12 -9.98448e-13)
(-1.04064e-14 5.17005e-12 1.33105e-12)
(-2.5345e-14 5.43704e-12 1.31786e-12)
(-2.80608e-14 1.60133e-13 -3.2228e-14)
(-2.95259e-14 -1.26979e-13 -2.60918e-13)
(-3.09736e-14 -1.20105e-13 -4.2496e-13)
(-3.21369e-14 -1.01333e-13 -5.77702e-13)
(-4.37572e-14 -8.56276e-14 -7.20156e-13)
(-1.39923e-12 -4.66573e-13 -8.7527e-13)
(-9.69374e-11 -1.09161e-11 -1.26346e-12)
(-2.9083e-09 -1.05887e-11 -5.51429e-13)
(1.36972e-13 5.11195e-12 1.28894e-12)
(6.04457e-13 5.35314e-12 1.2309e-12)
(7.09243e-14 1.33445e-13 -9.90484e-14)
(4.29076e-14 -1.42994e-13 -3.16574e-13)
(3.94485e-14 -1.35676e-13 -4.70462e-13)
(-4.96109e-14 -1.81284e-13 -6.15925e-13)
(-7.72326e-12 -8.51392e-12 -1.36473e-12)
(-4.5689e-10 -5.96567e-10 -3.25614e-11)
(-1.39636e-08 -1.7861e-08 -5.54208e-10)
(6.8229e-07 -1.73694e-08 6.19972e-10)
(2.03132e-14 5.45138e-12 5.84862e-13)
(1.79749e-14 6.05742e-12 6.99355e-13)
(1.59252e-14 6.81402e-13 2.40839e-13)
(1.35262e-14 4.08167e-13 1.47344e-13)
(1.06929e-14 4.51622e-13 6.49724e-14)
(7.2751e-15 5.16283e-13 -2.98372e-14)
(2.91762e-15 5.88391e-13 -1.3938e-13)
(-2.42471e-15 5.97568e-13 -2.67485e-13)
(-9.46602e-15 -9.46958e-13 -4.29052e-13)
(-1.9157e-14 -1.29445e-12 -4.62969e-13)
(1.88766e-14 5.43948e-12 5.70157e-13)
(1.42717e-14 6.02177e-12 6.65485e-13)
(1.00536e-14 6.48281e-13 2.04323e-13)
(4.96174e-15 3.6994e-13 1.08833e-13)
(-9.48096e-16 4.05542e-13 2.63604e-14)
(-8.29483e-15 4.58802e-13 -6.71171e-14)
(-1.74375e-14 5.16771e-13 -1.72514e-13)
(-2.85035e-14 5.06537e-13 -2.92472e-13)
(-4.22788e-14 -1.06557e-12 -4.40957e-13)
(-4.70064e-14 -1.35721e-12 -4.59412e-13)
(-2.91484e-15 5.42653e-12 5.54414e-13)
(-7.67397e-15 5.98509e-12 6.31936e-13)
(-1.19056e-14 6.13664e-13 1.69355e-13)
(-1.70145e-14 3.30051e-13 7.29083e-14)
(-2.28921e-14 3.58131e-13 -9.28977e-15)
(-2.99915e-14 4.01038e-13 -9.91199e-14)
(-3.84789e-14 4.48331e-13 -1.9898e-13)
(-4.86882e-14 4.2655e-13 -3.10054e-13)
(-6.03094e-14 -1.07935e-12 -4.43887e-13)
(-5.00484e-14 -1.32137e-12 -4.52341e-13)
(-2.73781e-15 5.41343e-12 5.3945e-13)
(-7.54589e-15 5.94843e-12 5.99477e-13)
(-1.16531e-14 5.80508e-13 1.35853e-13)
(-1.63287e-14 2.92258e-13 3.99274e-14)
(-2.18659e-14 3.1433e-13 -4.11078e-14)
(-2.84694e-14 3.50038e-13 -1.27573e-13)
(-3.59778e-14 3.87329e-13 -2.2216e-13)
(-4.51325e-14 3.55971e-13 -3.24321e-13)
(-5.51829e-14 -1.08621e-12 -4.45024e-13)
(-4.47677e-14 -1.28502e-12 -4.44308e-13)
(-2.79895e-15 5.40021e-12 5.25217e-13)
(-7.4014e-15 5.91263e-12 5.6807e-13)
(-1.13351e-14 5.49979e-13 1.04285e-13)
(-1.57516e-14 2.57928e-13 8.8391e-15)
(-2.08612e-14 2.73011e-13 -7.01235e-14)
(-2.68871e-14 3.02584e-13 -1.53136e-13)
(-3.38606e-14 3.32921e-13 -2.42044e-13)
(-4.18889e-14 2.9404e-13 -3.35769e-13)
(-5.06117e-14 -1.08715e-12 -4.44051e-13)
(-4.0099e-14 -1.24814e-12 -4.35711e-13)
(-2.89815e-15 5.38852e-12 5.12248e-13)
(-7.26495e-15 5.87883e-12 5.38137e-13)
(-1.10189e-14 5.20066e-13 7.37083e-14)
(-1.53073e-14 2.25065e-13 -2.06365e-14)
(-2.0075e-14 2.36304e-13 -9.67002e-14)
(-2.54468e-14 2.59499e-13 -1.75961e-13)
(-3.18389e-14 2.83522e-13 -2.58804e-13)
(-3.89947e-14 2.40309e-13 -3.4515e-13)
(-4.64447e-14 -1.08334e-12 -4.41652e-13)
(-3.61454e-14 -1.21126e-12 -4.2723e-13)
(-2.87701e-15 5.37687e-12 4.992e-13)
(-7.13796e-15 5.84612e-12 5.09103e-13)
(-1.06902e-14 4.91934e-13 4.49993e-14)
(-1.4773e-14 1.94297e-13 -4.74916e-14)
(-1.92518e-14 2.02025e-13 -1.21275e-13)
(-2.42044e-14 2.20709e-13 -1.96237e-13)
(-2.98778e-14 2.39259e-13 -2.73087e-13)
(-3.62406e-14 1.9307e-13 -3.52055e-13)
(-4.28961e-14 -1.07615e-12 -4.38513e-13)
(-3.3384e-14 -1.17589e-12 -4.18415e-13)
(-2.78372e-15 5.36585e-12 4.8638e-13)
(-6.96213e-15 5.81464e-12 4.80902e-13)
(-1.03589e-14 4.65052e-13 1.73759e-14)
(-1.41814e-14 1.65114e-13 -7.29129e-14)
(-1.8393e-14 1.70414e-13 -1.43691e-13)
(-2.28923e-14 1.85547e-13 -2.14744e-13)
(-2.81582e-14 2.0026e-13 -2.8608e-13)
(-3.46713e-14 1.50371e-13 -3.57788e-13)
(-9.9007e-14 -1.07111e-12 -4.34377e-13)
(-1.69925e-12 -1.14419e-12 -4.09418e-13)
(-2.83553e-15 5.35473e-12 4.74064e-13)
(-8.41475e-15 5.7838e-12 4.54006e-13)
(-1.29424e-14 4.39977e-13 -8.68498e-15)
(-1.66223e-14 1.38163e-13 -9.66248e-14)
(-2.04447e-14 1.41252e-13 -1.64435e-13)
(-2.49576e-14 1.52859e-13 -2.31063e-13)
(-4.58834e-14 1.58351e-13 -2.96475e-13)
(-1.43259e-12 -2.63378e-13 -3.6823e-13)
(-8.94512e-11 -1.16443e-11 -5.28242e-13)
(-3.02341e-09 -1.14543e-11 -2.56527e-13)
(5.03878e-13 5.33469e-12 4.59915e-13)
(8.96748e-13 5.7363e-12 4.25032e-13)
(9.85313e-14 4.07095e-13 -3.42643e-14)
(5.59486e-14 1.12863e-13 -1.1871e-13)
(5.27015e-14 1.12577e-13 -1.83448e-13)
(6.04105e-14 1.84371e-14 -2.48728e-13)
(1.75114e-12 -8.76654e-12 -5.28958e-13)
(1.92908e-10 -5.68418e-10 -1.07545e-11)
(1.51037e-08 -1.91989e-08 -2.08678e-10)
(8.37329e-07 -1.8846e-08 1.96252e-10)
(2.13035e-14 5.4927e-12 -4.23495e-13)
(1.87761e-14 6.11556e-12 -6.31397e-13)
(1.70396e-14 7.01923e-13 -1.92397e-13)
(1.4693e-14 4.31564e-13 -1.21517e-13)
(1.17406e-14 4.81834e-13 -6.69588e-14)
(8.09148e-15 5.53288e-13 -7.47139e-15)
(3.45637e-15 6.32691e-13 5.8843e-14)
(-2.24483e-15 6.47261e-13 1.33949e-13)
(-9.7447e-15 -9.56729e-13 2.38264e-13)
(-1.94146e-14 -1.33213e-12 3.68915e-13)
(2.08269e-14 5.48082e-12 -4.22169e-13)
(1.57992e-14 6.0804e-12 -6.09233e-13)
(1.1822e-14 6.70718e-13 -1.6975e-13)
(6.96068e-15 3.93816e-13 -9.76282e-14)
(9.7532e-16 4.34798e-13 -4.26149e-14)
(-6.77939e-15 4.94238e-13 1.69333e-14)
(-1.63002e-14 5.59143e-13 8.17868e-14)
(-2.79681e-14 5.5345e-13 1.53549e-13)
(-4.25775e-14 -1.07927e-12 2.51513e-13)
(-4.74031e-14 -1.3969e-12 3.67055e-13)
(-1.35322e-15 5.46745e-12 -4.1831e-13)
(-6.42603e-15 6.04243e-12 -5.84416e-13)
(-1.04861e-14 6.37397e-13 -1.44951e-13)
(-1.54173e-14 3.55882e-13 -7.25395e-14)
(-2.12544e-14 3.86948e-13 -1.76295e-14)
(-2.87293e-14 4.34885e-13 4.03059e-14)
(-3.75894e-14 4.8836e-13 1.02325e-13)
(-4.85273e-14 4.68944e-13 1.69728e-13)
(-6.09427e-14 -1.09718e-12 2.6016e-13)
(-5.06107e-14 -1.36218e-12 3.64743e-13)
(-1.43826e-15 5.45487e-12 -4.13798e-13)
(-6.34396e-15 6.00635e-12 -5.60305e-13)
(-1.02289e-14 6.05178e-13 -1.21434e-13)
(-1.50128e-14 3.18694e-13 -4.90511e-14)
(-2.06468e-14 3.42811e-13 4.90399e-15)
(-2.73466e-14 3.82157e-13 6.1529e-14)
(-3.53545e-14 4.24223e-13 1.20816e-13)
(-4.50635e-14 3.94557e-13 1.84155e-13)
(-5.5882e-14 -1.10685e-12 2.6715e-13)
(-4.53477e-14 -1.32681e-12 3.61561e-13)
(-1.50188e-15 5.44243e-12 -4.09134e-13)
(-6.25167e-15 5.97092e-12 -5.36901e-13)
(-9.9024e-15 5.74292e-13 -9.86373e-14)
(-1.44822e-14 2.83499e-13 -2.66789e-14)
(-1.98836e-14 3.01819e-13 2.65512e-14)
(-2.59168e-14 3.33934e-13 8.05916e-14)
(-3.33047e-14 3.6754e-13 1.37715e-13)
(-4.18836e-14 3.29092e-13 1.96525e-13)
(-5.14448e-14 -1.11148e-12 2.72505e-13)
(-4.07803e-14 -1.29066e-12 3.57755e-13)
(-1.50222e-15 5.43073e-12 -4.04932e-13)
(-6.14995e-15 5.93767e-12 -5.14317e-13)
(-9.64412e-15 5.45243e-13 -7.69779e-14)
(-1.39979e-14 2.49494e-13 -5.19045e-15)
(-1.89634e-14 2.63934e-13 4.63649e-14)
(-2.46818e-14 2.90052e-13 9.85934e-14)
(-3.14129e-14 3.15314e-13 1.52137e-13)
(-3.91401e-14 2.70922e-13 2.06923e-13)
(-4.73098e-14 -1.1107e-12 2.7662e-13)
(-3.67707e-14 -1.25439e-12 3.53491e-13)
(-1.41457e-15 5.41884e-12 -4.0091e-13)
(-6.01656e-15 5.90421e-12 -4.92265e-13)
(-9.51005e-15 5.17156e-13 -5.60498e-14)
(-1.36295e-14 2.18939e-13 1.44748e-14)
(-1.81805e-14 2.28229e-13 6.4674e-14)
(-2.3572e-14 2.48604e-13 1.14519e-13)
(-2.9636e-14 2.68995e-13 1.65082e-13)
(-3.6503e-14 2.20633e-13 2.1589e-13)
(-4.36263e-14 -1.10584e-12 2.79762e-13)
(-3.38811e-14 -1.21909e-12 3.49035e-13)
(-1.41143e-15 5.40733e-12 -3.96768e-13)
(-5.93567e-15 5.87154e-12 -4.70727e-13)
(-9.25189e-15 4.89944e-13 -3.60386e-14)
(-1.32011e-14 1.89527e-13 3.31162e-14)
(-1.75166e-14 1.95554e-13 8.1751e-14)
(-2.23635e-14 2.11604e-13 1.29715e-13)
(-2.79803e-14 2.27126e-13 1.77053e-13)
(-3.50097e-14 1.75387e-13 2.2373e-13)
(-9.98118e-14 -1.10222e-12 2.81447e-13)
(-1.69992e-12 -1.18801e-12 3.43884e-13)
(-1.44087e-15 5.39584e-12 -3.92774e-13)
(-7.38671e-15 5.84001e-12 -4.49867e-13)
(-1.18214e-14 4.644e-13 -1.64922e-14)
(-1.56176e-14 1.61915e-13 5.12626e-14)
(-1.96641e-14 1.65241e-13 9.79848e-14)
(-2.44874e-14 1.76969e-13 1.43532e-13)
(-4.57942e-14 1.83228e-13 1.87533e-13)
(-1.43358e-12 -2.41697e-13 2.37175e-13)
(-8.94251e-11 -1.16801e-11 3.79472e-13)
(-3.02281e-09 -1.15008e-11 1.92451e-13)
(5.44249e-13 5.37507e-12 -3.87221e-13)
(8.99411e-13 5.79121e-12 -4.27246e-13)
(9.983e-14 4.31238e-13 2.51835e-15)
(5.69848e-14 1.35578e-13 6.76464e-14)
(5.34843e-14 1.3488e-13 1.12691e-13)
(6.16729e-14 4.06402e-14 1.58472e-13)
(1.79925e-12 -8.75004e-12 4.14495e-13)
(1.96112e-10 -5.68329e-10 1.04012e-11)
(1.52555e-08 -1.91986e-08 2.04402e-10)
(8.39617e-07 -1.88467e-08 -2.04271e-10)
(1.89102e-14 5.754e-12 -1.50803e-12)
(9.14551e-15 6.31845e-12 -2.0782e-12)
(7.94983e-15 5.37071e-13 -6.38047e-13)
(5.65684e-15 2.18659e-13 -3.81184e-13)
(3.40206e-15 2.38956e-13 -1.82038e-13)
(1.00861e-15 2.79614e-13 3.00112e-14)
(-1.58668e-15 3.27863e-13 2.57935e-13)
(-4.32319e-15 3.11082e-13 5.10285e-13)
(-7.39704e-15 -1.26912e-12 8.34951e-13)
(-1.16506e-14 -1.51314e-12 1.06804e-12)
(1.7162e-14 5.69332e-12 -1.48055e-12)
(-9.32811e-16 6.21852e-12 -1.97857e-12)
(-4.71953e-15 4.87316e-13 -5.45833e-13)
(-9.53511e-15 1.70362e-13 -2.9026e-13)
(-1.45645e-14 1.86044e-13 -9.31397e-14)
(-2.03115e-14 2.19363e-13 1.12659e-13)
(-2.7024e-14 2.5968e-13 3.30044e-13)
(-3.46965e-14 2.30514e-13 5.66863e-13)
(-4.37014e-14 -1.36083e-12 8.65484e-13)
(-4.17717e-14 -1.55103e-12 1.05794e-12)
(-5.69355e-15 5.63065e-12 -1.44394e-12)
(-2.34593e-14 6.11915e-12 -1.87538e-12)
(-2.68815e-14 4.39584e-13 -4.5335e-13)
(-3.134e-14 1.24266e-13 -2.01631e-13)
(-3.59557e-14 1.37228e-13 -9.54117e-15)
(-4.11354e-14 1.65347e-13 1.87125e-13)
(-4.69255e-14 1.9961e-13 3.9165e-13)
(-5.36739e-14 1.6402e-13 6.1065e-13)
(-6.05988e-14 -1.35456e-12 8.80518e-13)
(-4.48225e-14 -1.4993e-12 1.044e-12)
(-5.81153e-15 5.57086e-12 -1.40949e-12)
(-2.28802e-14 6.02514e-12 -1.77696e-12)
(-2.59899e-14 3.96323e-13 -3.66262e-13)
(-2.98194e-14 8.32295e-14 -1.19997e-13)
(-3.40035e-14 9.35427e-14 6.60498e-14)
(-3.84833e-14 1.18115e-13 2.53306e-13)
(-4.35628e-14 1.47304e-13 4.45378e-13)
(-4.92729e-14 1.07641e-13 6.46475e-13)
(-5.47622e-14 -1.34087e-12 8.90458e-13)
(-3.92119e-14 -1.44743e-12 1.02874e-12)
(-5.772e-15 5.51299e-12 -1.37788e-12)
(-2.22552e-14 5.93478e-12 -1.68292e-12)
(-2.50992e-14 3.57295e-13 -2.84739e-13)
(-2.86407e-14 4.66919e-14 -4.38458e-14)
(-3.22436e-14 5.5082e-14 1.35101e-13)
(-3.60622e-14 7.6515e-14 3.12674e-13)
(-4.04175e-14 1.02178e-13 4.91577e-13)
(-4.50759e-14 6.12013e-14 6.76436e-13)
(-4.95567e-14 -1.32191e-12 8.95685e-13)
(-3.43067e-14 -1.39592e-12 1.01188e-12)
(-5.64361e-15 5.45705e-12 -1.34689e-12)
(-2.16778e-14 5.84858e-12 -1.59293e-12)
(-2.42014e-14 3.2009e-13 -2.07636e-13)
(-2.73943e-14 1.37836e-14 2.6439e-14)
(-3.04916e-14 2.21445e-14 1.97509e-13)
(-3.37682e-14 4.11729e-14 3.65707e-13)
(-3.73701e-14 6.44946e-14 5.31776e-13)
(-4.13821e-14 2.1728e-14 7.00417e-13)
(-4.49169e-14 -1.29938e-12 8.97555e-13)
(-3.02208e-14 -1.34499e-12 9.93964e-13)
(-5.58945e-15 5.40193e-12 -1.31631e-12)
(-2.11827e-14 5.76535e-12 -1.50662e-12)
(-2.33498e-14 2.87638e-13 -1.3551e-13)
(-2.60106e-14 -1.48914e-14 9.15884e-14)
(-2.88876e-14 -7.09926e-15 2.54989e-13)
(-3.17734e-14 1.05553e-14 4.12858e-13)
(-3.48207e-14 3.1232e-14 5.66535e-13)
(-3.80397e-14 -1.11945e-14 7.19737e-13)
(-4.07783e-14 -1.27422e-12 8.96886e-13)
(-2.7227e-14 -1.29626e-12 9.75774e-13)
(-5.48423e-15 5.34877e-12 -1.2868e-12)
(-2.06265e-14 5.68636e-12 -1.42432e-12)
(-2.26011e-14 2.58207e-13 -6.75906e-14)
(-2.49763e-14 -4.08465e-14 1.51962e-13)
(-2.74606e-14 -3.38327e-14 3.0735e-13)
(-2.99244e-14 -1.62704e-14 4.55025e-13)
(-3.24313e-14 4.78882e-15 5.96322e-13)
(-3.58709e-14 -3.7679e-14 7.35479e-13)
(-9.4717e-14 -1.25054e-12 8.93716e-13)
(-1.6199e-12 -1.252e-12 9.57178e-13)
(-5.78743e-15 5.29653e-12 -1.25829e-12)
(-2.20598e-14 5.60924e-12 -1.34536e-12)
(-2.47135e-14 2.30797e-13 -3.63826e-15)
(-2.67288e-14 -6.32025e-14 2.07914e-13)
(-2.88006e-14 -5.57655e-14 3.54989e-13)
(-3.08484e-14 -3.85024e-14 4.92734e-13)
(-4.36122e-14 -2.39072e-14 6.22114e-13)
(-1.40304e-12 -4.14438e-13 7.66186e-13)
(-9.69562e-11 -1.10157e-11 1.15097e-12)
(-2.90756e-09 -1.07126e-11 5.11358e-13)
(1.95286e-13 5.2363e-12 -1.22705e-12)
(6.10475e-13 5.52074e-12 -1.26479e-12)
(7.37875e-14 2.01281e-13 5.74301e-14)
(4.56612e-14 -8.23882e-14 2.59289e-13)
(4.18987e-14 -7.5283e-14 3.98162e-13)
(-4.76424e-14 -1.23886e-13 5.30673e-13)
(-7.70543e-12 -8.47977e-12 1.26638e-12)
(-4.54314e-10 -5.96937e-10 3.2311e-11)
(-1.37815e-08 -1.7866e-08 5.5222e-10)
(6.86624e-07 -1.73748e-08 -6.20941e-10)
(1.228e-14 6.30132e-12 -2.96311e-12)
(-1.44841e-14 6.71994e-12 -3.99767e-12)
(-1.34716e-14 1.62787e-13 -1.14627e-12)
(-1.39674e-14 -2.318e-13 -6.2298e-13)
(-1.3942e-14 -2.42342e-13 -2.46126e-13)
(-1.25929e-14 -2.30327e-13 1.13254e-13)
(-1.05288e-14 -2.06532e-13 4.62995e-13)
(-7.71708e-15 -2.38664e-13 8.16714e-13)
(-3.10166e-15 -1.66926e-12 1.24082e-12)
(-6.68573e-16 -1.67436e-12 1.43569e-12)
(5.67676e-15 6.12665e-12 -2.8538e-12)
(-4.1374e-14 6.47512e-12 -3.72895e-12)
(-4.32117e-14 8.40532e-14 -9.47139e-13)
(-4.4714e-14 -2.91164e-13 -4.47053e-13)
(-4.59549e-14 -2.95913e-13 -8.95289e-14)
(-4.62287e-14 -2.78776e-13 2.46366e-13)
(-4.6273e-14 -2.53191e-13 5.68034e-13)
(-4.62456e-14 -2.83894e-13 8.88949e-13)
(-4.48741e-14 -1.70383e-12 1.27015e-12)
(-3.35773e-14 -1.67198e-12 1.41317e-12)
(-1.87709e-14 5.96e-12 -2.73337e-12)
(-6.33388e-14 6.24889e-12 -3.46654e-12)
(-6.40639e-14 1.83399e-14 -7.56988e-13)
(-6.44475e-14 -3.36953e-13 -2.83857e-13)
(-6.45773e-14 -3.36356e-13 5.0406e-14)
(-6.39959e-14 -3.14546e-13 3.59948e-13)
(-6.31458e-14 -2.85634e-13 6.52211e-13)
(-6.20687e-14 -3.11802e-13 9.40168e-13)
(-5.93622e-14 -1.65244e-12 1.27667e-12)
(-3.63576e-14 -1.59429e-12 1.38535e-12)
(-1.74623e-14 5.80034e-12 -2.61995e-12)
(-6.06881e-14 6.0366e-12 -3.22221e-12)
(-6.07087e-14 -3.68285e-14 -5.84446e-13)
(-6.05939e-14 -3.73145e-13 -1.36814e-13)
(-6.00573e-14 -3.67462e-13 1.73941e-13)
(-5.88033e-14 -3.41044e-13 4.57535e-13)
(-5.72318e-14 -3.08902e-13 7.22687e-13)
(-5.55688e-14 -3.30003e-13 9.7924e-13)
(-5.2204e-14 -1.5984e-12 1.27651e-12)
(-3.04171e-14 -1.51952e-12 1.35604e-12)
(-1.65653e-14 5.64479e-12 -2.51084e-12)
(-5.81874e-14 5.835e-12 -2.99343e-12)
(-5.74602e-14 -8.43572e-14 -4.27876e-13)
(-5.69165e-14 -4.01911e-13 -5.78247e-15)
(-5.5823e-14 -3.89821e-13 2.82078e-13)
(-5.40851e-14 -3.58622e-13 5.41727e-13)
(-5.19695e-14 -3.23751e-13 7.80362e-13)
(-4.97346e-14 -3.40413e-13 1.00906e-12)
(-4.59797e-14 -1.5416e-12 1.27114e-12)
(-2.51906e-14 -1.44723e-12 1.32588e-12)
(-1.63293e-14 5.4978e-12 -2.41009e-12)
(-5.588e-14 5.64809e-12 -2.7809e-12)
(-5.45049e-14 -1.22725e-13 -2.85528e-13)
(-5.33853e-14 -4.23176e-13 1.11037e-13)
(-5.18461e-14 -4.05945e-13 3.77315e-13)
(-4.97637e-14 -3.70408e-13 6.13657e-13)
(-4.73191e-14 -3.31996e-13 8.28315e-13)
(-4.45099e-14 -3.445e-13 1.03133e-12)
(-4.05541e-14 -1.48392e-12 1.26177e-12)
(-2.08245e-14 -1.37719e-12 1.29554e-12)
(-1.58802e-14 5.3579e-12 -2.31664e-12)
(-5.35797e-14 5.47317e-12 -2.58297e-12)
(-5.18189e-14 -1.54318e-13 -1.56005e-13)
(-5.02504e-14 -4.38089e-13 2.16028e-13)
(-4.83144e-14 -4.16063e-13 4.61381e-13)
(-4.58453e-14 -3.76571e-13 6.75808e-13)
(-4.30179e-14 -3.34439e-13 8.67625e-13)
(-4.00144e-14 -3.43113e-13 1.04693e-12)
(-3.57005e-14 -1.42619e-12 1.24944e-12)
(-1.76947e-14 -1.31043e-12 1.26503e-12)
(-1.53273e-14 5.22461e-12 -2.22869e-12)
(-5.13773e-14 5.30901e-12 -2.39824e-12)
(-4.91915e-14 -1.79941e-13 -3.85485e-14)
(-4.72645e-14 -4.47534e-13 3.09795e-13)
(-4.50157e-14 -4.20896e-13 5.34511e-13)
(-4.22496e-14 -3.77328e-13 7.27834e-13)
(-3.90491e-14 -3.33089e-13 8.99339e-13)
(-3.6529e-14 -3.37823e-13 1.05759e-12)
(-8.43904e-14 -1.37147e-12 1.23452e-12)
(-1.47533e-12 -1.25004e-12 1.23468e-12)
(-1.53754e-14 5.09659e-12 -2.14388e-12)
(-5.15186e-14 5.155e-12 -2.22577e-12)
(-4.95018e-14 -1.99933e-13 6.82255e-14)
(-4.72034e-14 -4.52434e-13 3.93658e-13)
(-4.47076e-14 -4.2152e-13 5.98795e-13)
(-4.13355e-14 -3.74001e-13 7.72938e-13)
(-3.87351e-14 -3.30945e-13 9.25268e-13)
(-1.18251e-12 -6.36104e-13 1.08993e-12)
(-1.04204e-10 -9.73601e-12 1.57819e-12)
(-2.6855e-09 -9.27223e-12 5.35328e-13)
(1.26689e-13 4.96462e-12 -2.05928e-12)
(4.56458e-13 4.99704e-12 -2.05871e-12)
(4.67256e-14 -2.18107e-13 1.65139e-13)
(2.5836e-14 -4.52859e-13 4.67872e-13)
(2.37898e-14 -4.16314e-13 6.54644e-13)
(-6.60412e-14 -3.6985e-13 8.09567e-13)
(-1.34328e-11 -6.99137e-12 1.76717e-12)
(-1.13051e-09 -6.03655e-10 5.32015e-11)
(-5.2656e-08 -1.54954e-08 7.44954e-10)
(4.33385e-07 -1.48413e-08 -1.03644e-09)
(-4.00568e-15 7.30185e-12 -5.351e-12)
(-6.34616e-14 7.43037e-12 -7.06309e-12)
(-5.33511e-14 -4.96834e-13 -1.8315e-12)
(-4.67445e-14 -9.48975e-13 -8.59811e-13)
(-3.93648e-14 -9.33949e-13 -2.38742e-13)
(-3.06549e-14 -8.7958e-13 2.57541e-13)
(-2.09715e-14 -8.11338e-13 6.69937e-13)
(-1.08593e-14 -7.8613e-13 1.02858e-12)
(1.26573e-15 -1.93179e-12 1.42305e-12)
(8.29416e-15 -1.67649e-12 1.47544e-12)
(-2.0778e-14 6.90953e-12 -5.00169e-12)
(-1.22565e-13 6.92976e-12 -6.3901e-12)
(-1.12908e-13 -5.96896e-13 -1.4417e-12)
(-1.0269e-13 -9.95368e-13 -5.62777e-13)
(-9.22549e-14 -9.61371e-13 -1.07378e-14)
(-8.09993e-14 -8.89788e-13 4.24593e-13)
(-6.94693e-14 -8.09426e-13 7.82516e-13)
(-5.83466e-14 -7.77013e-13 1.09147e-12)
(-4.56756e-14 -1.90117e-12 1.43381e-12)
(-2.68033e-14 -1.63527e-12 1.43835e-12)
(-4.63371e-14 6.54705e-12 -4.6559e-12)
(-1.40246e-13 6.48599e-12 -5.7686e-12)
(-1.28711e-13 -6.64703e-13 -1.09218e-12)
(-1.17549e-13 -1.01463e-12 -3.02294e-13)
(-1.05755e-13 -9.6352e-13 1.81931e-13)
(-9.35814e-14 -8.79197e-13 5.58493e-13)
(-8.17681e-14 -7.90871e-13 8.65764e-13)
(-7.03292e-14 -7.50171e-13 1.12767e-12)
(-5.7227e-14 -1.80248e-12 1.41943e-12)
(-2.92668e-14 -1.53802e-12 1.39727e-12)
(-4.37527e-14 6.21254e-12 -4.34153e-12)
(-1.31219e-13 6.08605e-12 -5.21169e-12)
(-1.18977e-13 -7.14251e-13 -7.88987e-13)
(-1.07772e-13 -1.01949e-12 -8.14835e-14)
(-9.60536e-14 -9.52381e-13 3.41849e-13)
(-8.4152e-14 -8.5961e-13 6.67403e-13)
(-7.25806e-14 -7.65123e-13 9.29762e-13)
(-6.14909e-14 -7.17941e-13 1.15117e-12)
(-4.9002e-14 -1.70624e-12 1.3995e-12)
(-2.30328e-14 -1.44588e-12 1.3556e-12)
(-4.08801e-14 5.90391e-12 -4.05477e-12)
(-1.22918e-13 5.72661e-12 -4.7129e-12)
(-1.10217e-13 -7.45274e-13 -5.27693e-13)
(-9.87616e-14 -1.01279e-12 1.05532e-13)
(-8.73145e-14 -9.34129e-13 4.74936e-13)
(-7.57253e-14 -8.33018e-13 7.55308e-13)
(-6.44672e-14 -7.3381e-13 9.78057e-13)
(-5.38385e-14 -6.82392e-13 1.1643e-12)
(-4.19133e-14 -1.61247e-12 1.37553e-12)
(-1.77714e-14 -1.35877e-12 1.31463e-12)
(-3.74614e-14 5.61525e-12 -3.79178e-12)
(-1.15203e-13 5.39792e-12 -4.26255e-12)
(-1.02385e-13 -7.63278e-13 -3.00962e-13)
(-9.08652e-14 -9.9626e-13 2.6432e-13)
(-7.95985e-14 -9.07988e-13 5.85437e-13)
(-6.82089e-14 -8.01315e-13 8.25255e-13)
(-5.73757e-14 -6.99333e-13 1.01403e-12)
(-4.71574e-14 -6.44499e-13 1.16988e-12)
(-3.58112e-14 -1.52208e-12 1.34891e-12)
(-1.34304e-14 -1.27673e-12 1.27518e-12)
(-3.47448e-14 5.34403e-12 -3.54818e-12)
(-1.08125e-13 5.09631e-12 -3.8553e-12)
(-9.50004e-14 -7.6987e-13 -1.0548e-13)
(-8.36107e-14 -9.72343e-13 3.98432e-13)
(-7.25254e-14 -8.76793e-13 6.76744e-13)
(-6.14982e-14 -7.65459e-13 8.80644e-13)
(-5.11479e-14 -6.62102e-13 1.03917e-12)
(-4.13529e-14 -6.0522e-13 1.16898e-12)
(-3.04506e-14 -1.43549e-12 1.32015e-12)
(-1.01998e-14 -1.19979e-12 1.23647e-12)
(-3.30643e-14 5.0917e-12 -3.3254e-12)
(-1.01562e-13 4.82273e-12 -3.488e-12)
(-8.82913e-14 -7.66835e-13 6.2722e-14)
(-7.71047e-14 -9.42728e-13 5.12074e-13)
(-6.61549e-14 -8.41188e-13 7.51369e-13)
(-5.56036e-14 -7.28005e-13 9.24166e-13)
(-4.55901e-14 -6.24016e-13 1.05633e-12)
(-3.65516e-14 -5.6464e-13 1.16343e-12)
(-7.07066e-14 -1.35475e-12 1.2909e-12)
(-1.28975e-12 -1.13e-12 1.19877e-12)
(-3.22522e-14 4.85867e-12 -3.12357e-12)
(-9.78242e-14 4.57464e-12 -3.15715e-12)
(-8.47128e-14 -7.56806e-13 2.08275e-13)
(-7.37837e-14 -9.08411e-13 6.07684e-13)
(-6.3283e-14 -8.03172e-13 8.13197e-13)
(-5.26428e-14 -6.88165e-13 9.57633e-13)
(-3.40372e-14 -5.85891e-13 1.06722e-12)
(-7.62106e-13 -7.6333e-13 1.18248e-12)
(-1.02883e-10 -8.05931e-12 1.64726e-12)
(-2.38285e-09 -7.49783e-12 3.24075e-13)
(9.94621e-14 4.63229e-12 -2.93375e-12)
(3.59409e-13 4.33873e-12 -2.85185e-12)
(1.65291e-14 -7.41648e-13 3.33548e-13)
(1.34181e-15 -8.72404e-13 6.87616e-13)
(4.25482e-15 -7.61105e-13 8.61278e-13)
(1.33827e-14 -5.97147e-13 9.69387e-13)
(-1.02679e-11 -4.43672e-12 1.74226e-12)
(-1.35127e-09 -5.47552e-10 6.68606e-11)
(-8.01865e-08 -1.26063e-08 7.74951e-10)
(1.53064e-07 -1.18904e-08 -1.32613e-09)
(-4.62663e-14 9.16318e-12 -1.02795e-11)
(-1.69722e-13 8.68351e-12 -1.30025e-11)
(-1.28143e-13 -1.65542e-12 -2.96893e-12)
(-9.99008e-14 -2.05255e-12 -1.12886e-12)
(-7.42961e-14 -1.84772e-12 -1.5846e-13)
(-5.12159e-14 -1.60082e-12 4.55125e-13)
(-3.09517e-14 -1.37054e-12 8.59765e-13)
(-1.33082e-14 -1.20083e-12 1.14047e-12)
(4.71955e-15 -1.98574e-12 1.41871e-12)
(1.28005e-14 -1.51965e-12 1.30195e-12)
(-8.70598e-14 8.32803e-12 -9.16502e-12)
(-2.898e-13 7.72567e-12 -1.12747e-11)
(-2.3825e-13 -1.72984e-12 -2.20102e-12)
(-1.94494e-13 -2.02191e-12 -6.51066e-13)
(-1.555e-13 -1.78878e-12 1.42524e-13)
(-1.21706e-13 -1.52958e-12 6.34489e-13)
(-9.31254e-14 -1.29649e-12 9.55458e-13)
(-6.89522e-14 -1.12724e-12 1.1756e-12)
(-4.58822e-14 -1.89686e-12 1.40248e-12)
(-2.29322e-14 -1.45311e-12 1.25448e-12)
(-1.09377e-13 7.59668e-12 -8.16405e-12)
(-2.90719e-13 6.9215e-12 -9.77347e-12)
(-2.39642e-13 -1.74514e-12 -1.55929e-12)
(-1.97101e-13 -1.95233e-12 -2.61253e-13)
(-1.59558e-13 -1.69973e-12 3.77689e-13)
(-1.27227e-13 -1.43809e-12 7.6676e-13)
(-1.00064e-13 -1.20761e-12 1.01588e-12)
(-7.70699e-14 -1.04089e-12 1.18326e-12)
(-5.50156e-14 -1.76079e-12 1.36437e-12)
(-2.54575e-14 -1.34778e-12 1.20492e-12)
(-9.87056e-14 6.95368e-12 -7.30846e-12)
(-2.63284e-13 6.2324e-12 -8.49669e-12)
(-2.1501e-13 -1.72739e-12 -1.0397e-12)
(-1.75372e-13 -1.86727e-12 4.66143e-14)
(-1.41059e-13 -1.60544e-12 5.59667e-13)
(-1.11814e-13 -1.3448e-12 8.64429e-13)
(-8.68737e-14 -1.11963e-12 1.05479e-12)
(-6.60481e-14 -9.57669e-13 1.18027e-12)
(-4.59722e-14 -1.63349e-12 1.32375e-12)
(-1.91805e-14 -1.25036e-12 1.15709e-12)
(-8.93594e-14 6.38449e-12 -6.5707e-12)
(-2.39027e-13 5.6385e-12 -7.40378e-12)
(-1.93404e-13 -1.68691e-12 -6.1787e-13)
(-1.56602e-13 -1.77311e-12 2.90475e-13)
(-1.25061e-13 -1.50866e-12 6.99957e-13)
(-9.83335e-14 -1.2517e-12 9.34378e-13)
(-7.56833e-14 -1.03305e-12 1.07709e-12)
(-5.66775e-14 -8.77862e-13 1.16826e-12)
(-3.83837e-14 -1.51488e-12 1.28175e-12)
(-1.40943e-14 -1.16054e-12 1.11175e-12)
(-8.15652e-14 5.87813e-12 -5.92784e-12)
(-2.17511e-13 5.1243e-12 -6.46429e-12)
(-1.74362e-13 -1.62982e-12 -2.74915e-13)
(-1.4018e-13 -1.67339e-12 4.8207e-13)
(-1.11239e-13 -1.41031e-12 8.05565e-13)
(-8.66375e-14 -1.16076e-12 9.83514e-13)
(-6.60225e-14 -9.50651e-13 1.08733e-12)
(-4.86423e-14 -8.01908e-13 1.1509e-12)
(-3.19103e-14 -1.40482e-12 1.23902e-12)
(-9.84965e-15 -1.0778e-12 1.06864e-12)
(-7.44683e-14 5.42746e-12 -5.36517e-12)
(-1.98335e-13 4.67947e-12 -5.65535e-12)
(-1.57338e-13 -1.56135e-12 2.42982e-15)
(-1.25871e-13 -1.5719e-12 6.31998e-13)
(-9.90986e-14 -1.31348e-12 8.83718e-13)
(-7.66108e-14 -1.07199e-12 1.01545e-12)
(-5.76009e-14 -8.71051e-13 1.08764e-12)
(-4.18784e-14 -7.29895e-13 1.12927e-12)
(-2.64163e-14 -1.30245e-12 1.19699e-12)
(-6.63556e-15 -1.00149e-12 1.02758e-12)
(-6.73909e-14 5.02248e-12 -4.86918e-12)
(-1.8118e-13 4.29119e-12 -4.95576e-12)
(-1.42358e-13 -1.48563e-12 2.26332e-13)
(-1.13314e-13 -1.47058e-12 7.48416e-13)
(-8.86721e-14 -1.21841e-12 9.40904e-13)
(-6.78912e-14 -9.86983e-13 1.0344e-12)
(-5.04715e-14 -7.96371e-13 1.08082e-12)
(-3.60571e-14 -6.62411e-13 1.10458e-12)
(-5.68337e-14 -1.20858e-12 1.15644e-12)
(-1.09017e-12 -9.32477e-13 9.89094e-13)
(-6.15847e-14 4.65628e-12 -4.42998e-12)
(-1.68241e-13 3.94874e-12 -4.34717e-12)
(-1.31767e-13 -1.40563e-12 4.06016e-13)
(-1.04589e-13 -1.3716e-12 8.37825e-13)
(-8.19413e-14 -1.12684e-12 9.80929e-13)
(-6.24693e-14 -9.05063e-13 1.04269e-12)
(-3.1863e-14 -7.24861e-13 1.0687e-12)
(-4.33336e-13 -7.66859e-13 1.10346e-12)
(-9.13744e-11 -6.30612e-12 1.47509e-12)
(-2.05094e-09 -5.74891e-12 8.55706e-14)
(8.68852e-14 4.31532e-12 -4.02945e-12)
(2.88799e-13 3.63659e-12 -3.80847e-12)
(-1.72875e-14 -1.32315e-12 5.50082e-13)
(-2.43757e-14 -1.2738e-12 9.03737e-13)
(-1.4379e-14 -1.0374e-12 1.005e-12)
(8.21399e-14 -7.55653e-13 1.02174e-12)
(-5.84378e-12 -2.59146e-12 1.49117e-12)
(-1.47046e-09 -4.38966e-10 6.76707e-11)
(-8.70258e-08 -9.78396e-09 6.97336e-10)
(-1.02088e-07 -9.14265e-09 -1.32809e-09)
(-1.79331e-13 1.30446e-11 -2.40675e-11)
(-4.29443e-13 1.08183e-11 -2.67496e-11)
(-2.79233e-13 -3.93595e-12 -5.19084e-12)
(-1.89937e-13 -3.82866e-12 -1.57131e-12)
(-1.23428e-13 -3.06687e-12 -2.576e-14)
(-7.50742e-14 -2.38766e-12 6.91317e-13)
(-4.0372e-14 -1.85184e-12 1.02105e-12)
(-1.51928e-14 -1.46356e-12 1.16891e-12)
(6.23439e-15 -1.87343e-12 1.29431e-12)
(1.29524e-14 -1.27616e-12 1.0451e-12)
(-2.85321e-13 1.11348e-11 -1.9931e-11)
(-6.75705e-13 9.04977e-12 -2.21813e-11)
(-4.79153e-13 -3.80564e-12 -3.63057e-12)
(-3.43743e-13 -3.57963e-12 -7.85959e-13)
(-2.42941e-13 -2.82879e-12 3.54468e-13)
(-1.69575e-13 -2.18353e-12 8.60639e-13)
(-1.16448e-13 -1.68443e-12 1.08032e-12)
(-7.76887e-14 -1.32614e-12 1.16717e-12)
(-4.61137e-14 -1.74462e-12 1.25426e-12)
(-2.20824e-14 -1.19956e-12 9.94336e-13)
(-2.78087e-13 9.58713e-12 -1.65838e-11)
(-6.17857e-13 7.63598e-12 -1.83382e-11)
(-4.41746e-13 -3.59484e-12 -2.41983e-12)
(-3.21016e-13 -3.2949e-12 -2.01057e-13)
(-2.30879e-13 -2.57331e-12 6.23834e-13)
(-1.65309e-13 -1.97253e-12 9.68894e-13)
(-1.17533e-13 -1.51307e-12 1.1025e-12)
(-8.23772e-14 -1.18591e-12 1.14235e-12)
(-5.33806e-14 -1.58723e-12 1.19765e-12)
(-2.47849e-14 -1.09788e-12 9.42941e-13)
(-2.36532e-13 8.32396e-12 -1.39298e-11)
(-5.35055e-13 6.48682e-12 -1.51609e-11)
(-3.81336e-13 -3.36345e-12 -1.49577e-12)
(-2.76204e-13 -3.01676e-12 2.2881e-13)
(-1.98454e-13 -2.33331e-12 8.11712e-13)
(-1.41601e-13 -1.77816e-12 1.03557e-12)
(-1.00115e-13 -1.35724e-12 1.10526e-12)
(-6.94447e-14 -1.0593e-12 1.11086e-12)
(-4.40741e-14 -1.44482e-12 1.14192e-12)
(-1.87238e-14 -1.0058e-12 8.9529e-13)
(-2.03135e-13 7.27907e-12 -1.17989e-11)
(-4.66283e-13 5.55868e-12 -1.25941e-11)
(-3.31111e-13 -3.12136e-12 -7.96618e-13)
(-2.38805e-13 -2.75085e-12 5.3775e-13)
(-1.71278e-13 -2.11048e-12 9.38717e-13)
(-1.21787e-13 -1.59922e-12 1.07116e-12)
(-8.55611e-14 -1.21499e-12 1.09425e-12)
(-5.86901e-14 -9.44938e-13 1.07492e-12)
(-3.61461e-14 -1.31719e-12 1.08848e-12)
(-1.37604e-14 -9.2288e-13 8.51281e-13)
(-1.75969e-13 6.40831e-12 -1.00971e-11)
(-4.08388e-13 4.8027e-12 -1.05154e-11)
(-2.88838e-13 -2.87865e-12 -2.71142e-13)
(-2.07462e-13 -2.49814e-12 7.55809e-13)
(-1.48236e-13 -1.90483e-12 1.02046e-12)
(-1.05145e-13 -1.43649e-12 1.08525e-12)
(-7.33511e-14 -1.08644e-12 1.0734e-12)
(-4.98373e-14 -8.40984e-13 1.03651e-12)
(-2.96471e-14 -1.20112e-12 1.03662e-12)
(-9.64811e-15 -8.48113e-13 8.10135e-13)
(-1.53561e-13 5.67323e-12 -8.70515e-12)
(-3.59128e-13 4.18331e-12 -8.81775e-12)
(-2.52485e-13 -2.64181e-12 1.26275e-13)
(-1.80946e-13 -2.26231e-12 9.07007e-13)
(-1.28909e-13 -1.71626e-12 1.06928e-12)
(-9.09695e-14 -1.28859e-12 1.08366e-12)
(-6.29812e-14 -9.70002e-13 1.04648e-12)
(-4.21973e-14 -7.47564e-13 9.97414e-13)
(-2.43572e-14 -1.09607e-12 9.88074e-13)
(-6.70531e-15 -7.79926e-13 7.72414e-13)
(-1.34836e-13 5.04818e-12 -7.55739e-12)
(-3.16908e-13 3.67286e-12 -7.42188e-12)
(-2.21482e-13 -2.41524e-12 4.22534e-13)
(-1.58477e-13 -2.04527e-12 1.00878e-12)
(-1.12645e-13 -1.54351e-12 1.0931e-12)
(-7.9062e-14 -1.15376e-12 1.07034e-12)
(-5.42749e-14 -8.64761e-13 1.01567e-12)
(-3.55894e-14 -6.63461e-13 9.57742e-13)
(-4.41635e-14 -1.00294e-12 9.42424e-13)
(-9.10195e-13 -7.19441e-13 7.37239e-13)
(-1.2035e-13 4.51243e-12 -6.5973e-12)
(-2.83295e-13 3.24894e-12 -6.26413e-12)
(-1.97673e-13 -2.20136e-12 6.40144e-13)
(-1.41685e-13 -1.84602e-12 1.07303e-12)
(-1.00989e-13 -1.38632e-12 1.09817e-12)
(-7.17173e-14 -1.03141e-12 1.04845e-12)
(-3.47063e-14 -7.68266e-13 9.81686e-13)
(3.91738e-14 -6.91619e-13 9.38246e-13)
(-7.23663e-11 -4.78417e-12 1.2063e-12)
(-1.7562e-09 -4.30139e-12 -1.99651e-13)
(7.68135e-14 4.04444e-12 -5.77951e-12)
(2.29748e-13 2.88943e-12 -5.30042e-12)
(-5.81373e-14 -1.99996e-12 7.95304e-13)
(-5.00484e-14 -1.66223e-12 1.10858e-12)
(-3.29486e-14 -1.24471e-12 1.0902e-12)
(6.77569e-14 -8.58104e-13 9.98904e-13)
(3.11476e-12 -3.76088e-13 8.65523e-13)
(-6.07245e-10 -3.10298e-10 5.76984e-11)
(-7.73795e-08 -7.48466e-09 5.82749e-10)
(-3.23495e-07 -6.99025e-09 -1.49158e-09)
(-7.79626e-13 2.65029e-11 -1.06237e-10)
(-1.13654e-12 1.39161e-11 -6.61927e-11)
(-6.02248e-13 -9.07063e-12 -9.31766e-12)
(-3.58229e-13 -6.97838e-12 -2.40476e-12)
(-1.99408e-13 -4.858e-12 1.14434e-13)
(-1.05081e-13 -3.31622e-12 9.52117e-13)
(-5.02542e-14 -2.28688e-12 1.14932e-12)
(-1.74518e-14 -1.61476e-12 1.13251e-12)
(5.69202e-15 -1.68772e-12 1.11483e-12)
(1.06591e-14 -1.03108e-12 7.97377e-13)
(-1.04478e-12 1.85403e-11 -6.82387e-11)
(-1.64651e-12 1.0669e-11 -5.20756e-11)
(-9.7752e-13 -8.2353e-12 -6.40186e-12)
(-6.11605e-13 -6.19012e-12 -1.13149e-12)
(-3.73905e-13 -4.26678e-12 5.88686e-13)
(-2.29306e-13 -2.90966e-12 1.08847e-12)
(-1.41047e-13 -2.00906e-12 1.15851e-12)
(-8.55783e-14 -1.42102e-12 1.0959e-12)
(-4.7029e-14 -1.53682e-12 1.05861e-12)
(-2.27944e-14 -9.5458e-13 7.47918e-13)
(-8.56649e-13 1.39418e-11 -4.74069e-11)
(-1.42659e-12 8.22831e-12 -4.05609e-11)
(-8.42107e-13 -7.33448e-12 -4.07106e-12)
(-5.32885e-13 -5.43372e-12 -2.23483e-13)
(-3.33721e-13 -3.71526e-12 8.91062e-13)
(-2.11661e-13 -2.53125e-12 1.15376e-12)
(-1.3574e-13 -1.74789e-12 1.13632e-12)
(-8.73069e-14 -1.23704e-12 1.04336e-12)
(-5.2864e-14 -1.37193e-12 9.92001e-13)
(-2.57521e-14 -8.62352e-13 6.99445e-13)
(-6.77282e-13 1.09542e-11 -3.50201e-11)
(-1.18856e-12 6.42137e-12 -3.16899e-11)
(-6.9841e-13 -6.45478e-12 -2.39295e-12)
(-4.41716e-13 -4.75559e-12 3.78163e-13)
(-2.77881e-13 -3.23313e-12 1.07169e-12)
(-1.77038e-13 -2.20348e-12 1.17519e-12)
(-1.13592e-13 -1.5223e-12 1.10089e-12)
(-7.28803e-14 -1.07754e-12 9.88795e-13)
(-4.33995e-14 -1.22729e-12 9.29447e-13)
(-1.99333e-14 -7.81179e-13 6.5636e-13)
(-5.3883e-13 8.85911e-12 -2.68848e-11)
(-9.82806e-13 5.08619e-12 -2.49012e-11)
(-5.82254e-13 -5.66415e-12 -1.21166e-12)
(-3.67949e-13 -4.15705e-12 7.81868e-13)
(-2.32784e-13 -2.81634e-12 1.17196e-12)
(-1.48775e-13 -1.92005e-12 1.16821e-12)
(-9.54966e-14 -1.3263e-12 1.05622e-12)
(-6.09705e-14 -9.39107e-13 9.35044e-13)
(-3.55407e-14 -1.10061e-12 8.71614e-13)
(-1.5152e-14 -7.09236e-13 6.17328e-13)
(-4.32585e-13 7.29073e-12 -2.11275e-11)
(-8.18046e-13 4.07504e-12 -1.96982e-11)
(-4.88916e-13 -4.96964e-12 -3.63652e-13)
(-3.08739e-13 -3.63233e-12 1.04241e-12)
(-1.96349e-13 -2.45472e-12 1.21707e-12)
(-1.25729e-13 -1.67425e-12 1.14222e-12)
(-8.06159e-14 -1.15666e-12 1.00731e-12)
(-5.12346e-14 -8.18267e-13 8.82198e-13)
(-2.90936e-14 -9.88812e-13 8.18587e-13)
(-1.12738e-14 -6.4553e-13 5.81828e-13)
(-3.5418e-13 6.0868e-12 -1.69297e-11)
(-6.87254e-13 3.30931e-12 -1.56924e-11)
(-4.1327e-13 -4.35729e-12 2.2313e-13)
(-2.60757e-13 -3.1705e-12 1.19552e-12)
(-1.66432e-13 -2.14157e-12 1.22757e-12)
(-1.06844e-13 -1.4604e-12 1.10227e-12)
(-6.83977e-14 -1.00863e-12 9.56007e-13)
(-4.31161e-14 -7.1303e-13 8.31586e-13)
(-2.39124e-14 -8.90108e-13 7.69693e-13)
(-8.4011e-15 -5.88561e-13 5.4971e-13)
(-2.93253e-13 5.13542e-12 -1.37689e-11)
(-5.82419e-13 2.72296e-12 -1.25838e-11)
(-3.50563e-13 -3.81803e-12 6.21976e-13)
(-2.21513e-13 -2.76725e-12 1.27524e-12)
(-1.4178e-13 -1.86925e-12 1.2101e-12)
(-9.10374e-14 -1.27491e-12 1.05625e-12)
(-5.82381e-14 -8.7981e-13 9.05391e-13)
(-3.60948e-14 -6.21094e-13 7.84296e-13)
(-3.42007e-14 -8.03731e-13 7.24514e-13)
(-7.21973e-13 -5.38348e-13 5.1999e-13)
(-2.47177e-13 4.36958e-12 -1.13331e-11)
(-4.98549e-13 2.27178e-12 -1.01635e-11)
(-3.01288e-13 -3.34158e-12 8.83975e-13)
(-1.91712e-13 -2.4162e-12 1.30388e-12)
(-1.23643e-13 -1.63248e-12 1.17585e-12)
(-8.07909e-14 -1.1133e-12 1.00546e-12)
(-4.11789e-14 -7.6651e-13 8.55633e-13)
(1.57253e-13 -5.962e-13 7.5222e-13)
(-4.97066e-11 -3.44877e-12 9.24148e-13)
(-1.4036e-09 -3.07437e-12 -6.09492e-13)
(6.38589e-14 3.74515e-12 -9.41934e-12)
(1.66578e-13 1.91707e-12 -8.24745e-12)
(-1.16172e-13 -2.92685e-12 1.05294e-12)
(-7.91548e-14 -2.11002e-12 1.29758e-12)
(-5.11296e-14 -1.42771e-12 1.13063e-12)
(1.94717e-14 -9.31453e-13 9.3412e-13)
(2.75932e-12 5.19598e-14 5.87083e-13)
(-3.88127e-10 -1.89181e-10 4.16603e-11)
(-5.6263e-08 -5.32621e-09 4.31008e-10)
(-4.01543e-07 -5.02823e-09 -2.11241e-09)
(-6.02544e-12 6.26924e-11 -6.1212e-10)
(-4.77949e-12 1.44002e-11 -3.22195e-10)
(-1.59689e-12 -2.08941e-11 -3.78926e-11)
(-7.11194e-13 -1.25881e-11 -5.53727e-12)
(-3.29267e-13 -7.72462e-12 2.28733e-13)
(-1.45744e-13 -4.58682e-12 1.31494e-12)
(-6.24118e-14 -2.75251e-12 1.25622e-12)
(-2.13351e-14 -1.7212e-12 1.05606e-12)
(2.98579e-15 -1.50452e-12 9.18122e-13)
(7.22988e-15 -8.26771e-13 5.88686e-13)
(-7.39917e-12 3.61578e-11 -3.51044e-10)
(-5.22374e-12 8.87827e-12 -2.03704e-10)
(-2.15248e-12 -1.8606e-11 -2.18337e-11)
(-1.12754e-12 -1.08897e-11 -2.76979e-12)
(-5.89069e-13 -6.51359e-12 8.7006e-13)
(-3.10841e-13 -3.86327e-12 1.37223e-12)
(-1.70542e-13 -2.34159e-12 1.20036e-12)
(-9.53057e-14 -1.47701e-12 9.80985e-13)
(-4.93294e-14 -1.34248e-12 8.53385e-13)
(-2.43239e-14 -7.55162e-13 5.43654e-13)
(-4.33938e-12 2.24677e-11 -2.13643e-10)
(-4.06595e-12 5.45126e-12 -1.3566e-10)
(-1.77048e-12 -1.57833e-11 -1.26445e-11)
(-9.28704e-13 -9.19401e-12 -9.30415e-13)
(-4.96975e-13 -5.44475e-12 1.22368e-12)
(-2.74219e-13 -3.23868e-12 1.35955e-12)
(-1.58254e-13 -1.97908e-12 1.13379e-12)
(-9.42883e-14 -1.25605e-12 9.05638e-13)
(-5.4144e-14 -1.17753e-12 7.8391e-13)
(-2.76662e-14 -6.74326e-13 5.00919e-13)
(-2.7297e-12 1.47882e-11 -1.3672e-10)
(-3.12394e-12 3.17946e-12 -9.36806e-11)
(-1.40262e-12 -1.31819e-11 -7.1841e-12)
(-7.40661e-13 -7.70858e-12 1.81233e-13)
(-4.00177e-13 -4.56521e-12 1.39951e-12)
(-2.24503e-13 -2.72631e-12 1.30921e-12)
(-1.30861e-13 -1.67732e-12 1.05009e-12)
(-7.81479e-14 -1.07049e-12 8.35026e-13)
(-4.45403e-14 -1.03741e-12 7.22168e-13)
(-2.22392e-14 -6.04918e-13 4.63439e-13)
(-1.86757e-12 1.02655e-11 -9.15866e-11)
(-2.41984e-12 1.79005e-12 -6.64876e-11)
(-1.11481e-12 -1.09563e-11 -3.85438e-12)
(-5.97385e-13 -6.47047e-12 8.60763e-13)
(-3.25463e-13 -3.83351e-12 1.45258e-12)
(-1.85143e-13 -2.30299e-12 1.24138e-12)
(-1.08558e-13 -1.42562e-12 9.73041e-13)
(-6.50336e-14 -9.14972e-13 7.70623e-13)
(-3.67162e-14 -9.17531e-13 6.66807e-13)
(-1.76405e-14 -5.44661e-13 4.30065e-13)
(-1.34595e-12 7.47091e-12 -6.38697e-11)
(-1.89258e-12 9.65838e-13 -4.82609e-11)
(-8.95443e-13 -9.11821e-12 -1.76437e-12)
(-4.84748e-13 -5.43244e-12 1.24367e-12)
(-2.67526e-13 -3.22669e-12 1.4354e-12)
(-1.53335e-13 -1.95196e-12 1.1644e-12)
(-9.05722e-14 -1.21466e-12 8.99315e-13)
(-5.43434e-14 -7.8354e-13 7.11706e-13)
(-3.0354e-14 -8.14109e-13 6.17342e-13)
(-1.38385e-14 -4.91785e-13 4.00948e-13)
(-1.001e-12 5.63007e-12 -4.60332e-11)
(-1.49883e-12 4.78272e-13 -3.56797e-11)
(-7.23705e-13 -7.60581e-12 -4.49182e-13)
(-3.95852e-13 -4.57357e-12 1.43472e-12)
(-2.21514e-13 -2.72347e-12 1.37404e-12)
(-1.27891e-13 -1.65753e-12 1.07971e-12)
(-7.5995e-14 -1.0382e-12 8.30933e-13)
(-4.56721e-14 -6.72585e-13 6.58201e-13)
(-2.50881e-14 -7.24741e-13 5.72898e-13)
(-1.10204e-14 -4.45216e-13 3.75226e-13)
(-7.65093e-13 4.35943e-12 -3.409e-11)
(-1.19908e-12 1.95577e-13 -2.67941e-11)
(-5.90494e-13 -6.36354e-12 3.67386e-13)
(-3.25513e-13 -3.85955e-12 1.50448e-12)
(-1.84147e-13 -2.3065e-12 1.29816e-12)
(-1.07338e-13 -1.41279e-12 1.0004e-12)
(-6.4221e-14 -8.89309e-13 7.67692e-13)
(-3.84037e-14 -5.77639e-13 6.09161e-13)
(-2.80434e-14 -6.47617e-13 5.32379e-13)
(-5.09848e-13 -4.05074e-13 3.51506e-13)
(-5.99631e-13 3.45333e-12 -2.58354e-11)
(-9.72712e-13 3.67144e-14 -2.041e-11)
(-4.88409e-13 -5.34528e-12 8.66166e-13)
(-2.71898e-13 -3.2647e-12 1.50155e-12)
(-1.56173e-13 -1.95935e-12 1.21986e-12)
(-9.31965e-14 -1.20741e-12 9.25014e-13)
(-5.07216e-14 -7.62907e-13 7.09427e-13)
(1.68036e-13 -5.21004e-13 5.71796e-13)
(-2.80269e-11 -2.27911e-12 6.56284e-13)
(-9.64898e-10 -2.02272e-12 -7.7933e-13)
(7.01993e-16 2.7793e-12 -1.99474e-11)
(5.85291e-14 -4.8267e-14 -1.57254e-11)
(-2.12109e-13 -4.50166e-12 1.14929e-12)
(-1.21702e-13 -2.76673e-12 1.45262e-12)
(-7.23271e-14 -1.67096e-12 1.13469e-12)
(-2.24057e-14 -1.01548e-12 8.40485e-13)
(2.04974e-12 2.187e-14 4.21806e-13)
(-1.48399e-10 -9.4582e-11 2.40824e-11)
(-3.20322e-08 -3.26631e-09 2.50534e-10)
(-3.25079e-07 -3.18296e-09 -2.19766e-09)
(-2.43237e-11 6.80206e-12 -6.57962e-10)
(-1.93978e-11 -9.50097e-11 -5.81627e-10)
(-5.47685e-12 -1.03582e-10 -8.75618e-11)
(-1.46178e-12 -3.20861e-11 -8.53506e-12)
(-4.5549e-13 -1.32756e-11 3.88661e-12)
(-1.66093e-13 -6.54111e-12 2.86056e-12)
(-7.08945e-14 -3.34119e-12 1.53014e-12)
(-2.89176e-14 -1.83277e-12 8.96049e-13)
(-6.72446e-15 -1.35746e-12 6.39165e-13)
(-1.67053e-15 -6.74281e-13 3.46711e-13)
(-3.49592e-11 9.31776e-12 -4.80962e-10)
(-2.4824e-11 -5.55985e-11 -3.81597e-10)
(-6.55388e-12 -6.93201e-11 -3.93057e-11)
(-2.07489e-12 -2.46589e-11 1.14342e-12)
(-8.80121e-13 -1.07286e-11 4.02966e-12)
(-4.05416e-13 -5.28253e-12 2.3606e-12)
(-2.07449e-13 -2.75156e-12 1.26621e-12)
(-1.10641e-13 -1.54216e-12 7.52317e-13)
(-5.9214e-14 -1.19696e-12 5.58634e-13)
(-3.25044e-14 -6.10145e-13 2.89177e-13)
(-1.99035e-11 7.32119e-12 -3.41782e-10)
(-1.5463e-11 -3.52136e-11 -2.54767e-10)
(-4.60153e-12 -4.86601e-11 -1.64156e-11)
(-1.62654e-12 -1.8944e-11 4.07479e-12)
(-7.20484e-13 -8.5455e-12 3.52647e-12)
(-3.51283e-13 -4.26555e-12 1.91876e-12)
(-1.90786e-13 -2.26405e-12 1.02946e-12)
(-1.09855e-13 -1.28586e-12 6.36695e-13)
(-6.39608e-14 -1.03791e-12 4.81643e-13)
(-3.6663e-14 -5.41475e-13 2.4273e-13)
(-1.19415e-11 4.91488e-12 -2.41775e-10)
(-1.02094e-11 -2.37703e-11 -1.73777e-10)
(-3.29068e-12 -3.53596e-11 -5.47393e-12)
(-1.24869e-12 -1.46939e-11 4.52612e-12)
(-5.7012e-13 -6.83823e-12 2.95674e-12)
(-2.87153e-13 -3.46734e-12 1.55739e-12)
(-1.57465e-13 -1.87861e-12 8.59069e-13)
(-9.26973e-14 -1.08533e-12 5.47709e-13)
(-5.504e-14 -9.05645e-13 4.12183e-13)
(-3.19719e-14 -4.83533e-13 2.01285e-13)
(-7.51884e-12 2.98661e-12 -1.71919e-10)
(-7.06547e-12 -1.68773e-11 -1.20987e-10)
(-2.41795e-12 -2.63304e-11 -3.95044e-13)
(-9.73309e-13 -1.15277e-11 4.2058e-12)
(-4.56528e-13 -5.5121e-12 2.43897e-12)
(-2.37219e-13 -2.84646e-12 1.27205e-12)
(-1.32597e-13 -1.56863e-12 7.31069e-13)
(-7.92861e-14 -9.19179e-13 4.62884e-13)
(-4.78346e-14 -7.94964e-13 3.49387e-13)
(-2.83762e-14 -4.34457e-13 1.63088e-13)
(-4.94465e-12 1.65169e-12 -1.2366e-10)
(-5.0534e-12 -1.24643e-11 -8.58302e-11)
(-1.82213e-12 -2.0009e-11 1.74544e-12)
(-7.67341e-13 -9.14189e-12 3.66326e-12)
(-3.69266e-13 -4.47622e-12 1.99951e-12)
(-1.96235e-13 -2.35569e-12 1.05804e-12)
(-1.12367e-13 -1.31899e-12 6.11609e-13)
(-6.8488e-14 -7.82996e-13 3.87958e-13)
(-4.20872e-14 -7.02342e-13 2.93406e-13)
(-2.56239e-14 -3.93337e-13 1.29681e-13)
(-3.38017e-12 7.86922e-13 -9.0193e-11)
(-3.71026e-12 -9.48466e-12 -6.19682e-11)
(-1.39946e-12 -1.54624e-11 2.56565e-12)
(-6.10882e-13 -7.31817e-12 3.09798e-12)
(-3.02331e-13 -3.66606e-12 1.63795e-12)
(-1.63846e-13 -1.96677e-12 8.88544e-13)
(-9.60928e-14 -1.11794e-12 5.11384e-13)
(-5.9671e-14 -6.71008e-13 3.21177e-13)
(-3.74839e-14 -6.24811e-13 2.4191e-13)
(-2.34235e-14 -3.58625e-13 9.94697e-14)
(-2.38872e-12 2.4736e-13 -6.67929e-11)
(-2.78115e-12 -7.37859e-12 -4.54648e-11)
(-1.09069e-12 -1.2124e-11 2.76466e-12)
(-4.92635e-13 -5.91554e-12 2.59034e-12)
(-2.51183e-13 -3.02693e-12 1.36735e-12)
(-1.38844e-13 -1.65347e-12 7.385e-13)
(-8.29248e-14 -9.52455e-13 4.23815e-13)
(-5.26341e-14 -5.78255e-13 2.598e-13)
(-3.5683e-14 -5.59847e-13 1.95907e-13)
(-3.56099e-13 -3.29855e-13 6.90611e-14)
(-1.73842e-12 -7.80523e-14 -5.02545e-11)
(-2.12494e-12 -5.83347e-12 -3.38052e-11)
(-8.64005e-13 -9.63437e-12 2.68453e-12)
(-4.03965e-13 -4.82812e-12 2.16024e-12)
(-2.1186e-13 -2.51874e-12 1.13456e-12)
(-1.20413e-13 -1.39681e-12 6.10747e-13)
(-7.28115e-14 -8.16832e-13 3.45523e-13)
(4.7698e-14 -5.0741e-13 2.07547e-13)
(-9.40351e-12 -1.52068e-12 2.45503e-13)
(-6.35047e-10 -1.38533e-12 -1.15776e-12)
(-3.12861e-13 -2.7289e-13 -3.83658e-11)
(-1.24181e-13 -4.67985e-12 -2.55148e-11)
(-3.95747e-13 -7.74368e-12 2.47164e-12)
(-1.90151e-13 -3.97134e-12 1.79006e-12)
(-1.07663e-13 -2.10977e-12 9.44972e-13)
(-6.62356e-14 -1.18594e-12 4.98465e-13)
(7.40627e-13 -4.19682e-13 1.77827e-13)
(-8.52787e-12 -2.82941e-11 8.6719e-12)
(-1.00336e-08 -1.93046e-09 1.21521e-10)
(-3.27944e-07 -2.07223e-09 -2.2188e-09)
(-2.77626e-11 7.55491e-11 -9.37078e-11)
(-2.07616e-11 -8.2774e-11 5.49836e-10)
(2.93913e-13 -1.99261e-10 8.1207e-10)
(3.2237e-12 -9.42368e-11 2.74705e-10)
(9.27837e-13 -2.59956e-11 5.63409e-11)
(1.98751e-13 -8.59015e-12 1.31574e-11)
(-6.49707e-15 -3.7538e-12 2.98213e-12)
(-8.5498e-14 -1.89479e-12 -1.92093e-13)
(-1.19045e-13 -1.27693e-12 -1.21699e-12)
(-1.1988e-13 -5.94092e-13 -1.40972e-12)
(-3.95633e-11 4.76553e-11 -8.87559e-11)
(-4.0618e-11 -4.85815e-11 3.52489e-10)
(-1.26532e-11 -1.21045e-10 4.99977e-10)
(-1.33689e-12 -5.73163e-11 1.66661e-10)
(-3.19512e-13 -1.74193e-11 3.67108e-11)
(-2.43699e-13 -6.5528e-12 8.80207e-12)
(-2.15465e-13 -3.06618e-12 1.3757e-12)
(-2.07897e-13 -1.63582e-12 -1.02283e-12)
(-2.02626e-13 -1.1717e-12 -1.82157e-12)
(-1.73321e-13 -5.77118e-13 -1.83544e-12)
(-2.49357e-11 3.07641e-11 -7.61843e-11)
(-2.51173e-11 -2.88133e-11 2.32311e-10)
(-7.39782e-12 -7.66157e-11 3.19484e-10)
(-9.41796e-13 -3.6827e-11 1.05902e-10)
(-3.62443e-13 -1.22992e-11 2.45172e-11)
(-2.78481e-13 -5.12421e-12 5.52492e-12)
(-2.51096e-13 -2.56248e-12 4.39248e-14)
(-2.46603e-13 -1.45129e-12 -1.78764e-12)
(-2.39279e-13 -1.08879e-12 -2.38719e-12)
(-2.06458e-13 -5.75007e-13 -2.24826e-12)
(-1.63174e-11 2.03199e-11 -6.30811e-11)
(-1.62e-11 -1.71619e-11 1.56442e-10)
(-4.6288e-12 -5.03036e-11 2.10865e-10)
(-7.17254e-13 -2.4785e-11 6.98272e-11)
(-3.531e-13 -9.11161e-12 1.65224e-11)
(-2.81689e-13 -4.14046e-12 3.06694e-12)
(-2.68378e-13 -2.2157e-12 -1.07231e-12)
(-2.64766e-13 -1.32909e-12 -2.51899e-12)
(-2.62857e-13 -1.0507e-12 -2.96503e-12)
(-2.33389e-13 -6.03665e-13 -2.71952e-12)
(-1.10291e-11 1.36392e-11 -5.16815e-11)
(-1.08768e-11 -1.02023e-11 1.06926e-10)
(-3.07027e-12 -3.4127e-11 1.42925e-10)
(-6.0401e-13 -1.7368e-11 4.71869e-11)
(-3.42707e-13 -7.01111e-12 1.09495e-11)
(-2.88855e-13 -3.46242e-12 1.13618e-12)
(-2.82455e-13 -1.98481e-12 -2.08491e-12)
(-2.84313e-13 -1.26323e-12 -3.22351e-12)
(-2.92165e-13 -1.06265e-12 -3.58875e-12)
(-2.68917e-13 -6.67417e-13 -3.29047e-12)
(-7.65566e-12 9.18571e-12 -4.27157e-11)
(-7.5538e-12 -6.02095e-12 7.38535e-11)
(-2.1442e-12 -2.38521e-11 9.90295e-11)
(-5.27167e-13 -1.2648e-11 3.24087e-11)
(-3.32009e-13 -5.5904e-12 6.94525e-12)
(-2.9817e-13 -2.99275e-12 -4.5258e-13)
(-2.95613e-13 -1.83982e-12 -2.99139e-12)
(-3.09437e-13 -1.26377e-12 -3.94305e-12)
(-3.29575e-13 -1.12709e-12 -4.30775e-12)
(-3.18238e-13 -7.79329e-13 -4.03268e-12)
(-5.44044e-12 6.11403e-12 -3.57946e-11)
(-5.40248e-12 -3.54329e-12 5.14404e-11)
(-1.57729e-12 -1.71551e-11 6.97329e-11)
(-4.7094e-13 -9.53827e-12 2.23051e-11)
(-3.27026e-13 -4.61551e-12 3.9379e-12)
(-3.0438e-13 -2.68291e-12 -1.77924e-12)
(-3.14567e-13 -1.77599e-12 -3.85314e-12)
(-3.40925e-13 -1.32477e-12 -4.72809e-12)
(-3.78913e-13 -1.2546e-12 -5.18521e-12)
(-3.88107e-13 -9.6316e-13 -5.05525e-12)
(-3.94566e-12 3.94064e-12 -3.03073e-11)
(-3.96874e-12 -2.10401e-12 3.60128e-11)
(-1.20545e-12 -1.26897e-11 4.96456e-11)
(-4.26622e-13 -7.44971e-12 1.52061e-11)
(-3.23594e-13 -3.9486e-12 1.5799e-12)
(-3.12927e-13 -2.48832e-12 -2.93508e-12)
(-3.37557e-13 -1.79082e-12 -4.7164e-12)
(-3.81895e-13 -1.45478e-12 -5.6343e-12)
(-4.43917e-13 -1.4675e-12 -6.32967e-12)
(-6.1188e-13 -1.25874e-12 -6.53428e-12)
(-2.9187e-12 2.36066e-12 -2.58738e-11)
(-2.97888e-12 -1.30004e-12 2.52399e-11)
(-9.53239e-13 -9.65122e-12 3.55268e-11)
(-3.92784e-13 -6.01581e-12 1.0081e-11)
(-3.21379e-13 -3.50237e-12 -2.97811e-13)
(-3.27833e-13 -2.40069e-12 -3.98057e-12)
(-3.69764e-13 -1.88178e-12 -5.63463e-12)
(-4.90686e-13 -1.66434e-12 -6.75057e-12)
(5.63859e-12 -2.13245e-12 -7.84982e-12)
(-2.41072e-10 -2.11322e-12 -9.2652e-12)
(1.2372e-12 1.20122e-12 -2.23891e-11)
(9.97791e-13 -8.82796e-13 1.75766e-11)
(-1.15342e-13 -7.56736e-12 2.54419e-11)
(-1.58989e-13 -5.03166e-12 6.27462e-12)
(-2.31443e-13 -3.21867e-12 -1.8206e-12)
(-3.09576e-13 -2.40364e-12 -4.96714e-12)
(-7.78123e-13 -2.1911e-12 -6.60378e-12)
(4.10233e-11 1.44414e-11 -1.26411e-11)
(8.84559e-09 -6.54171e-10 7.10453e-11)
(-1.91844e-07 -5.38771e-10 1.98377e-10)
(-6.24947e-12 2.87385e-12 6.25449e-10)
(3.14263e-12 -4.86078e-11 7.59384e-10)
(4.54044e-12 -3.69239e-11 3.19949e-10)
(1.82147e-12 -1.31598e-11 8.17648e-11)
(6.24734e-13 -5.03242e-12 2.31889e-11)
(2.35763e-13 -2.72472e-12 6.819e-12)
(3.40062e-14 -1.54577e-12 5.35353e-13)
(-9.32304e-14 -9.78994e-13 -2.32309e-12)
(-1.79901e-13 -9.65914e-13 -3.78885e-12)
(-2.42866e-13 -5.94101e-13 -4.32711e-12)
(-1.24565e-11 1.02985e-11 3.99638e-10)
(-3.32663e-12 -2.33412e-11 4.88028e-10)
(1.26675e-12 -2.06935e-11 2.02409e-10)
(7.93615e-13 -8.74813e-12 5.52077e-11)
(2.47727e-13 -4.01065e-12 1.63649e-11)
(6.59104e-14 -2.25836e-12 3.81861e-12)
(-6.21461e-14 -1.39365e-12 -1.41206e-12)
(-1.57397e-13 -9.51024e-13 -3.97909e-12)
(-2.38243e-13 -1.03196e-12 -5.43995e-12)
(-3.06428e-13 -7.22631e-13 -5.96671e-12)
(-7.92212e-12 1.26923e-11 2.63614e-10)
(-1.84999e-12 -1.05115e-11 3.25546e-10)
(7.74951e-13 -1.21825e-11 1.34165e-10)
(4.08598e-13 -6.21782e-12 3.83773e-11)
(1.12086e-13 -3.25391e-12 1.10008e-11)
(-3.60627e-14 -1.94812e-12 1.11332e-12)
(-1.5548e-13 -1.32652e-12 -3.38561e-12)
(-2.55757e-13 -9.96102e-13 -5.8508e-12)
(-3.59951e-13 -1.16998e-12 -7.42244e-12)
(-4.39782e-13 -9.18489e-13 -8.06131e-12)
(-5.35024e-12 1.27351e-11 1.78394e-10)
(-1.13743e-12 -3.7835e-12 2.24236e-10)
(4.43222e-13 -7.51415e-12 9.21255e-11)
(2.03308e-13 -4.62693e-12 2.70881e-11)
(3.09255e-14 -2.69821e-12 6.71976e-12)
(-1.08926e-13 -1.78876e-12 -1.41219e-12)
(-2.2707e-13 -1.3455e-12 -5.50793e-12)
(-3.51151e-13 -1.1334e-12 -8.04825e-12)
(-4.82839e-13 -1.40493e-12 -9.9185e-12)
(-5.90717e-13 -1.22685e-12 -1.08696e-11)
(-3.73288e-12 1.17592e-11 1.23168e-10)
(-7.74734e-13 -2.73968e-13 1.58452e-10)
(2.13664e-13 -4.82754e-12 6.48471e-11)
(8.40585e-14 -3.58954e-12 1.89046e-11)
(-4.55402e-14 -2.34353e-12 3.12856e-12)
(-1.75443e-13 -1.74647e-12 -3.87526e-12)
(-3.12169e-13 -1.47693e-12 -7.87133e-12)
(-4.66784e-13 -1.3885e-12 -1.07075e-11)
(-6.378e-13 -1.76168e-12 -1.31519e-11)
(-7.92343e-13 -1.708e-12 -1.47228e-11)
(-2.6616e-12 1.04352e-11 8.65757e-11)
(-5.74651e-13 1.37909e-12 1.14274e-10)
(7.08407e-14 -3.24942e-12 4.6404e-11)
(3.95882e-15 -2.90705e-12 1.26437e-11)
(-1.14569e-13 -2.15066e-12 -7.3651e-14)
(-2.47571e-13 -1.8221e-12 -6.41823e-12)
(-4.14029e-13 -1.7311e-12 -1.05779e-11)
(-6.06223e-13 -1.77177e-12 -1.40293e-11)
(-8.38764e-13 -2.2949e-12 -1.7445e-11)
(-1.06587e-12 -2.45631e-12 -2.01241e-11)
(-1.96885e-12 9.0595e-12 6.17611e-11)
(-4.58948e-13 2.04579e-12 8.37012e-11)
(-9.49197e-15 -2.31439e-12 3.33316e-11)
(-5.46825e-14 -2.49242e-12 7.68785e-12)
(-1.71255e-13 -2.11954e-12 -3.01751e-12)
(-3.29748e-13 -2.02813e-12 -9.13932e-12)
(-5.30438e-13 -2.12348e-12 -1.37987e-11)
(-7.80806e-13 -2.33736e-12 -1.82784e-11)
(-1.1021e-12 -3.0815e-12 -2.32553e-11)
(-1.44494e-12 -3.62595e-12 -2.78686e-11)
(-1.50968e-12 7.75674e-12 4.45288e-11)
(-3.86189e-13 2.20171e-12 6.19586e-11)
(-6.3736e-14 -1.78809e-12 2.37189e-11)
(-1.10622e-13 -2.27793e-12 3.57629e-12)
(-2.31398e-13 -2.23089e-12 -5.89684e-12)
(-4.20388e-13 -2.37899e-12 -1.21549e-11)
(-6.70193e-13 -2.68846e-12 -1.77345e-11)
(-1.00266e-12 -3.14984e-12 -2.3827e-11)
(-1.45373e-12 -4.23859e-12 -3.12803e-11)
(-2.12658e-12 -5.48086e-12 -3.92129e-11)
(-1.18552e-12 6.57965e-12 3.2319e-11)
(-3.39762e-13 2.07389e-12 4.6091e-11)
(-1.05206e-13 -1.53717e-12 1.64157e-11)
(-1.61494e-13 -2.23504e-12 2.23868e-15)
(-3.01201e-13 -2.46657e-12 -8.79624e-12)
(-5.26218e-13 -2.88582e-12 -1.56178e-11)
(-8.42714e-13 -3.47866e-12 -2.26461e-11)
(-1.29758e-12 -4.30999e-12 -3.12064e-11)
(-4.8278e-12 -6.32805e-12 -4.25579e-11)
(-4.8297e-10 -8.8777e-12 -5.6322e-11)
(1.80188e-12 5.52642e-12 2.34793e-11)
(2.93841e-13 1.79409e-12 3.43178e-11)
(7.2536e-14 -1.46326e-12 1.07085e-11)
(-1.00881e-13 -2.33103e-12 -3.1702e-12)
(-3.32228e-13 -2.84594e-12 -1.18333e-11)
(-6.5489e-13 -3.57228e-12 -1.96766e-11)
(-1.12787e-12 -4.57632e-12 -2.88633e-11)
(-3.23626e-12 -1.35087e-11 -4.13692e-11)
(-2.62298e-09 -1.24939e-09 -1.66565e-11)
(-9.17408e-07 -1.79604e-09 -2.98818e-09)
(3.42095e-13 1.5613e-12 1.82781e-10)
(1.08314e-12 -9.13475e-13 1.16642e-10)
(7.57388e-13 -9.32616e-13 4.25881e-11)
(4.63087e-13 -2.93059e-13 1.61204e-11)
(3.38627e-13 -4.70292e-14 7.41032e-12)
(2.32629e-13 -1.31575e-14 2.75293e-12)
(1.61829e-13 -2.72745e-14 2.24724e-13)
(1.07503e-13 -1.5704e-14 -1.32178e-12)
(6.28144e-14 -3.40747e-13 -2.35452e-12)
(1.52863e-14 -3.49352e-13 -2.98891e-12)
(-1.71883e-14 3.45838e-12 1.27e-10)
(6.33509e-13 1.03046e-12 8.10382e-11)
(5.94549e-13 7.39714e-14 3.24684e-11)
(4.66899e-13 1.50342e-13 1.35285e-11)
(3.92066e-13 1.8531e-13 5.77581e-12)
(3.1491e-13 1.19986e-13 1.61313e-12)
(2.72563e-13 7.44923e-14 -8.19418e-13)
(2.41632e-13 6.06996e-14 -2.43576e-12)
(2.19434e-13 -3.211e-13 -3.57993e-12)
(1.78998e-13 -4.12275e-13 -4.3565e-12)
(1.01626e-13 4.26296e-12 9.22813e-11)
(4.88534e-13 1.9686e-12 5.92195e-11)
(4.82809e-13 7.32249e-13 2.56687e-11)
(4.10521e-13 5.22136e-13 1.10916e-11)
(3.43018e-13 3.69461e-13 4.19217e-12)
(2.84415e-13 2.30365e-13 3.94383e-13)
(2.48542e-13 1.7408e-13 -2.05683e-12)
(2.22962e-13 1.37074e-13 -3.81318e-12)
(2.02493e-13 -2.99272e-13 -5.20925e-12)
(1.65363e-13 -5.10565e-13 -6.23738e-12)
(1.78811e-13 4.52911e-12 6.91564e-11)
(4.02367e-13 2.33642e-12 4.49234e-11)
(4.25023e-13 1.18904e-12 2.0637e-11)
(3.77539e-13 7.86434e-13 8.77871e-12)
(3.15252e-13 5.28044e-13 2.68617e-12)
(2.77248e-13 3.48103e-13 -9.60523e-13)
(2.48277e-13 2.66537e-13 -3.53006e-12)
(2.2676e-13 2.119e-13 -5.56289e-12)
(2.06467e-13 -2.85666e-13 -7.39494e-12)
(1.69584e-13 -6.76804e-13 -8.85601e-12)
(1.41659e-13 4.52487e-12 5.30747e-11)
(3.39081e-13 2.46906e-12 3.49906e-11)
(3.80172e-13 1.51743e-12 1.66497e-11)
(3.51852e-13 9.87754e-13 6.68808e-12)
(3.02303e-13 6.61444e-13 1.17983e-12)
(2.71652e-13 4.6605e-13 -2.47691e-12)
(2.50336e-13 3.60295e-13 -5.30041e-12)
(2.29895e-13 2.82127e-13 -7.84967e-12)
(2.09635e-13 -2.85268e-13 -1.03613e-11)
(1.71462e-13 -9.53195e-13 -1.25624e-11)
(7.05255e-14 4.40507e-12 4.17248e-11)
(2.93585e-13 2.60176e-12 2.77704e-11)
(3.44482e-13 1.75909e-12 1.32932e-11)
(3.23757e-13 1.15173e-12 4.74287e-12)
(2.91301e-13 7.72365e-13 -4.2206e-13)
(2.69797e-13 5.69956e-13 -4.20914e-12)
(2.51875e-13 4.47386e-13 -7.53324e-12)
(2.32281e-13 3.46822e-13 -1.08556e-11)
(2.09992e-13 -3.06378e-13 -1.44371e-11)
(1.71071e-13 -1.41034e-12 -1.78868e-11)
(4.22466e-14 4.24417e-12 3.34619e-11)
(2.62555e-13 2.73257e-12 2.23006e-11)
(3.15182e-13 1.92143e-12 1.04691e-11)
(2.98734e-13 1.28116e-12 2.93542e-12)
(2.80732e-13 8.89644e-13 -2.1224e-12)
(2.69141e-13 6.75977e-13 -6.26073e-12)
(2.53727e-13 5.27311e-13 -1.03551e-11)
(2.33332e-13 3.98899e-13 -1.4851e-11)
(2.05719e-13 -3.5787e-13 -2.01256e-11)
(1.66608e-13 -2.15984e-12 -2.56824e-11)
(4.1393e-14 4.06304e-12 2.71914e-11)
(2.38666e-13 2.82273e-12 1.80068e-11)
(2.9105e-13 2.03715e-12 8.03186e-12)
(2.85915e-13 1.39094e-12 1.16968e-12)
(2.76581e-13 1.00296e-12 -3.96573e-12)
(2.69302e-13 7.72813e-13 -8.73818e-12)
(2.55273e-13 5.96983e-13 -1.39646e-11)
(2.31882e-13 4.32311e-13 -2.02329e-11)
(1.9521e-13 -4.5494e-13 -2.8173e-11)
(2.8213e-14 -3.40936e-12 -3.73681e-11)
(4.17552e-14 3.8729e-12 2.23036e-11)
(2.16806e-13 2.88012e-12 1.45407e-11)
(2.66293e-13 2.12807e-12 5.86969e-12)
(2.68472e-13 1.48404e-12 -6.21803e-13)
(2.69407e-13 1.1034e-12 -6.04786e-12)
(2.65539e-13 8.61795e-13 -1.17567e-11)
(2.50463e-13 6.52351e-13 -1.86314e-11)
(2.10549e-13 4.35613e-13 -2.75734e-11)
(-1.97168e-12 -9.48214e-13 -3.97971e-11)
(-1.28988e-10 -6.17378e-12 -5.75755e-11)
(2.90625e-13 3.68479e-12 1.84304e-11)
(2.80536e-13 2.907e-12 1.16702e-11)
(2.97351e-13 2.18516e-12 3.91062e-12)
(2.71291e-13 1.57201e-12 -2.44664e-12)
(2.21444e-13 1.20692e-12 -8.43192e-12)
(1.19204e-13 9.41041e-13 -1.54622e-11)
(-8.21107e-14 6.67623e-13 -2.46818e-11)
(-7.4114e-12 -5.15092e-12 -3.77264e-11)
(-1.87041e-09 -3.43329e-10 -1.00721e-10)
(-6.81973e-08 -1.82582e-09 -9.20777e-09)
(4.52361e-14 7.0301e-14 6.49407e-12)
(8.3774e-14 3.28295e-14 3.98614e-12)
(9.22342e-14 3.5783e-14 1.4809e-12)
(1.03329e-13 4.66845e-14 5.66037e-13)
(1.20389e-13 5.19912e-14 2.52104e-13)
(1.41394e-13 5.39676e-14 1.48065e-13)
(1.61333e-13 5.44207e-14 2.10284e-14)
(1.82657e-13 5.28562e-14 -6.59427e-14)
(2.05511e-13 -2.82749e-13 -1.24647e-13)
(2.1396e-13 -3.09361e-13 -1.62154e-13)
(4.65899e-14 1.69307e-13 4.41793e-12)
(1.0223e-13 1.85383e-13 2.87231e-12)
(1.40409e-13 1.68119e-13 1.18693e-12)
(1.79192e-13 1.68859e-13 4.60399e-13)
(2.25432e-13 1.74926e-13 2.26628e-13)
(2.75276e-13 1.7993e-13 9.83575e-14)
(3.27565e-13 1.84441e-13 -3.82211e-14)
(3.84344e-13 1.87545e-13 -1.37684e-13)
(4.45512e-13 -1.84608e-13 -2.11175e-13)
(4.80282e-13 -2.83675e-13 -2.61364e-13)
(2.8672e-14 2.39838e-13 3.26455e-12)
(7.97868e-14 3.18775e-13 2.16002e-12)
(1.23407e-13 3.03934e-13 9.27007e-13)
(1.71626e-13 3.09877e-13 3.91816e-13)
(2.29352e-13 3.26015e-13 2.26731e-13)
(2.90921e-13 3.40215e-13 3.42719e-14)
(3.60651e-13 3.58903e-13 -1.14951e-13)
(4.39631e-13 3.76208e-13 -2.3624e-13)
(5.27902e-13 -1.96034e-14 -3.36217e-13)
(5.94899e-13 -2.23084e-13 -4.126e-13)
(3.38066e-14 3.1802e-13 2.8658e-12)
(8.07386e-14 4.45347e-13 1.67435e-12)
(1.30313e-13 4.5012e-13 7.49266e-13)
(1.88237e-13 4.73263e-13 3.43698e-13)
(2.57543e-13 5.08721e-13 1.77709e-13)
(3.36067e-13 5.45789e-13 -3.36071e-14)
(4.28346e-13 5.92196e-13 -2.14214e-13)
(5.37533e-13 6.40001e-13 -3.7275e-13)
(6.65304e-13 2.33527e-13 -5.20018e-13)
(7.7804e-13 -1.21014e-13 -6.45029e-13)
(3.72097e-14 4.03904e-13 2.7229e-12)
(8.2944e-14 5.71659e-13 1.33037e-12)
(1.38915e-13 6.11439e-13 6.16711e-13)
(2.07612e-13 6.64628e-13 3.1353e-13)
(2.90344e-13 7.31011e-13 1.03446e-13)
(3.90232e-13 8.09379e-13 -1.25139e-13)
(5.12846e-13 9.0527e-13 -3.43352e-13)
(6.64085e-13 1.0113e-12 -5.64641e-13)
(8.49943e-13 6.20987e-13 -7.92885e-13)
(1.03426e-12 4.48696e-14 -1.01314e-12)
(3.75832e-14 4.74827e-13 2.42895e-12)
(8.60973e-14 7.06662e-13 1.06973e-12)
(1.49193e-13 7.92844e-13 5.29854e-13)
(2.29906e-13 8.91289e-13 3.03526e-13)
(3.29518e-13 1.00597e-12 4.58046e-14)
(4.55985e-13 1.14867e-12 -2.36754e-13)
(6.1876e-13 1.32815e-12 -5.18923e-13)
(8.29287e-13 1.53749e-12 -8.41425e-13)
(1.10162e-12 1.21261e-12 -1.20693e-12)
(1.39923e-12 3.07689e-13 -1.61259e-12)
(3.83939e-14 5.31878e-13 2.06088e-12)
(9.03272e-14 8.5536e-13 8.83985e-13)
(1.60998e-13 9.9809e-13 4.73616e-13)
(2.54215e-13 1.15427e-12 2.52757e-13)
(3.74974e-13 1.34387e-12 -4.45381e-14)
(5.36296e-13 1.58806e-12 -3.78007e-13)
(7.53233e-13 1.90231e-12 -7.58388e-13)
(1.04764e-12 2.29026e-12 -1.24497e-12)
(1.44905e-12 2.12021e-12 -1.86278e-12)
(1.93265e-12 7.21216e-13 -2.60098e-12)
(4.03482e-14 5.88251e-13 1.75234e-12)
(9.5347e-14 1.01871e-12 7.5926e-13)
(1.744e-13 1.23086e-12 4.39419e-13)
(2.81678e-13 1.46533e-12 1.97766e-13)
(4.29062e-13 1.76386e-12 -1.44709e-13)
(6.3472e-13 2.16015e-12 -5.60083e-13)
(9.25315e-13 2.68788e-12 -1.09147e-12)
(1.34025e-12 3.3751e-12 -1.84617e-12)
(1.93889e-12 3.52903e-12 -2.91083e-12)
(2.78068e-12 1.37107e-12 -4.30881e-12)
(3.97107e-14 6.46736e-13 1.50485e-12)
(9.7875e-14 1.19862e-12 6.76135e-13)
(1.85834e-13 1.4954e-12 4.18224e-13)
(3.09927e-13 1.837e-12 1.56802e-13)
(4.88551e-13 2.28809e-12 -2.63141e-13)
(7.50787e-13 2.90899e-12 -7.9863e-13)
(1.14026e-12 3.77214e-12 -1.56476e-12)
(1.72768e-12 4.96099e-12 -2.76204e-12)
(3.67017e-12 5.87275e-12 -4.66716e-12)
(2.73322e-10 2.1303e-12 -1.03883e-11)
(1.15418e-13 7.09601e-13 1.31329e-12)
(1.66443e-13 1.39625e-12 6.30394e-13)
(2.46754e-13 1.79427e-12 3.96188e-13)
(3.57618e-13 2.27272e-12 8.0708e-14)
(5.14616e-13 2.93987e-12 -4.04639e-13)
(7.4235e-13 3.8901e-12 -1.11173e-12)
(1.07099e-12 5.27269e-12 -2.23336e-12)
(9.54846e-13 9.97563e-12 -4.32931e-12)
(7.03021e-10 7.0295e-10 -5.77718e-11)
(3.46835e-07 -1.64415e-10 -6.13429e-09)
(3.26633e-14 2.16655e-14 1.46756e-13)
(5.06038e-14 4.6952e-14 8.04657e-14)
(7.05292e-14 5.03436e-14 3.18022e-14)
(9.14834e-14 5.16662e-14 1.45762e-14)
(1.13468e-13 5.26813e-14 9.79472e-15)
(1.36568e-13 5.36981e-14 9.86655e-15)
(1.6079e-13 5.5092e-14 9.61507e-15)
(1.86026e-13 5.32738e-14 1.05024e-14)
(2.12538e-13 -2.8216e-13 1.28316e-14)
(2.24096e-13 -3.0799e-13 1.44965e-14)
(4.39909e-14 6.56219e-14 1.0253e-13)
(8.0738e-14 1.46738e-13 6.24626e-14)
(1.23497e-13 1.59083e-13 3.00539e-14)
(1.69311e-13 1.6553e-13 1.63392e-14)
(2.18639e-13 1.71988e-13 1.28637e-14)
(2.71764e-13 1.79083e-13 1.2608e-14)
(3.29032e-13 1.86464e-13 1.25497e-14)
(3.90734e-13 1.9087e-13 1.38271e-14)
(4.56799e-13 -1.79619e-13 1.7395e-14)
(4.95967e-13 -2.77016e-13 1.97161e-14)
(2.38318e-14 1.11398e-13 8.04557e-14)
(6.26223e-14 2.54465e-13 5.53644e-14)
(1.09698e-13 2.81876e-13 3.13282e-14)
(1.62531e-13 2.99898e-13 2.22519e-14)
(2.22094e-13 3.19658e-13 2.1484e-14)
(2.89237e-13 3.41311e-13 2.02003e-14)
(3.64726e-13 3.65133e-13 2.04432e-14)
(4.50171e-13 3.86176e-13 2.32305e-14)
(5.45507e-13 -5.86514e-15 2.74609e-14)
(6.19191e-13 -2.05644e-13 3.12021e-14)
(2.56406e-14 1.6036e-13 7.59053e-14)
(6.65464e-14 3.70721e-13 5.58911e-14)
(1.18377e-13 4.20134e-13 3.8242e-14)
(1.79509e-13 4.5887e-13 3.32327e-14)
(2.51477e-13 5.02601e-13 3.38613e-14)
(3.36273e-13 5.51282e-13 3.30145e-14)
(4.35933e-13 6.06364e-13 3.52839e-14)
(5.54026e-13 6.62594e-13 3.9865e-14)
(6.92317e-13 2.64155e-13 4.59989e-14)
(8.16003e-13 -8.28568e-14 5.27503e-14)
(2.76547e-14 2.12145e-13 8.70975e-14)
(7.07613e-14 4.96423e-13 6.1979e-14)
(1.28132e-13 5.77093e-13 5.14057e-14)
(1.98908e-13 6.47497e-13 5.0337e-14)
(2.86029e-13 7.29015e-13 5.24144e-14)
(3.93045e-13 8.23011e-13 5.45678e-14)
(5.25253e-13 9.33713e-13 6.04873e-14)
(6.894e-13 1.05583e-12 6.85457e-14)
(8.91266e-13 6.82135e-13 8.00092e-14)
(1.09441e-12 1.22907e-13 9.14492e-14)
(2.95321e-14 2.67273e-13 9.85084e-14)
(7.53746e-14 6.33199e-13 7.40042e-14)
(1.38855e-13 7.55272e-13 7.0002e-14)
(2.20813e-13 8.71781e-13 7.57068e-14)
(3.26394e-13 1.01002e-12 8.01434e-14)
(4.62154e-13 1.17644e-12 8.77164e-14)
(6.38147e-13 1.38081e-12 1.00617e-13)
(8.67537e-13 1.61928e-12 1.15319e-13)
(1.16541e-12 1.32799e-12 1.37115e-13)
(1.49594e-12 4.61009e-13 1.57203e-13)
(3.14808e-14 3.25629e-13 1.0883e-13)
(8.01978e-14 7.82498e-13 9.15173e-14)
(1.50676e-13 9.57926e-13 9.67704e-14)
(2.45821e-13 1.13855e-12 1.09308e-13)
(3.73857e-13 1.36043e-12 1.19457e-13)
(5.46825e-13 1.63817e-12 1.36091e-13)
(7.82055e-13 1.99368e-12 1.60905e-13)
(1.10496e-12 2.43476e-12 1.90264e-13)
(1.54902e-12 2.3328e-12 2.29211e-13)
(2.09076e-12 1.01503e-12 2.70847e-13)
(3.35468e-14 3.87963e-13 1.23008e-13)
(8.53466e-14 9.45754e-13 1.1579e-13)
(1.63852e-13 1.18972e-12 1.31906e-13)
(2.74523e-13 1.45682e-12 1.53177e-13)
(4.3014e-13 1.79827e-12 1.74954e-13)
(6.51274e-13 2.24451e-12 2.08316e-13)
(9.67864e-13 2.84082e-12 2.53751e-13)
(1.42663e-12 3.62572e-12 3.07781e-13)
(2.09898e-12 3.9166e-12 3.78755e-13)
(3.14158e-12 1.93442e-12 4.58546e-13)
(3.27553e-14 4.54843e-13 1.42348e-13)
(8.77845e-14 1.12504e-12 1.47058e-13)
(1.75085e-13 1.45498e-12 1.75706e-13)
(3.03371e-13 1.83699e-12 2.07946e-13)
(4.9254e-13 2.34762e-12 2.50666e-13)
(7.75578e-13 3.04562e-12 3.10248e-13)
(1.20303e-12 4.02219e-12 3.89576e-13)
(1.86702e-12 5.39424e-12 4.93066e-13)
(5.2535e-12 6.82903e-12 6.01908e-13)
(3.78428e-10 3.74127e-12 -3.24111e-13)
(1.04443e-13 5.26083e-13 1.66144e-13)
(1.57076e-13 1.32082e-12 1.85177e-13)
(2.38145e-13 1.75701e-12 2.2881e-13)
(3.55676e-13 2.28984e-12 2.78855e-13)
(5.28176e-13 3.03557e-12 3.50739e-13)
(7.86366e-13 4.10364e-12 4.49896e-13)
(1.18562e-12 5.69397e-12 5.84735e-13)
(4.84253e-12 1.41573e-11 6.76939e-13)
(1.46663e-09 9.81439e-10 -1.49468e-11)
(4.20447e-07 8.69515e-10 -1.17346e-09)
(3.21459e-14 2.06565e-14 3.03066e-15)
(4.99073e-14 4.70255e-14 1.93489e-15)
(6.98576e-14 5.02754e-14 2.21108e-15)
(9.09945e-14 5.09565e-14 2.97605e-15)
(1.1309e-13 5.18935e-14 3.83497e-15)
(1.36186e-13 5.29115e-14 5.73116e-15)
(1.6035e-13 5.40688e-14 7.49809e-15)
(1.8565e-13 5.22075e-14 1.05708e-14)
(2.11974e-13 -2.83216e-13 1.294e-14)
(2.23495e-13 -3.08604e-13 1.58075e-14)
(4.32945e-14 6.3738e-14 3.67874e-15)
(7.97879e-14 1.45757e-13 3.49071e-15)
(1.22441e-13 1.58144e-13 4.05078e-15)
(1.68342e-13 1.64769e-13 5.14695e-15)
(2.177e-13 1.71163e-13 7.05939e-15)
(2.70802e-13 1.7794e-13 9.10355e-15)
(3.28049e-13 1.85204e-13 1.27216e-14)
(3.89588e-13 1.8939e-13 1.56344e-14)
(4.55491e-13 -1.81296e-13 1.99139e-14)
(4.94537e-13 -2.77798e-13 2.37896e-14)
(2.28149e-14 1.08836e-13 7.99352e-15)
(6.10941e-14 2.52715e-13 8.76674e-15)
(1.08216e-13 2.80502e-13 9.94278e-15)
(1.61054e-13 2.98646e-13 1.14672e-14)
(2.20504e-13 3.18384e-13 1.38129e-14)
(2.8747e-13 3.39954e-13 1.63683e-14)
(3.62913e-13 3.63236e-13 2.09624e-14)
(4.48128e-13 3.84136e-13 2.65678e-14)
(5.43218e-13 -7.79559e-15 3.21348e-14)
(6.16709e-13 -2.06661e-13 3.79788e-14)
(2.41013e-14 1.56775e-13 1.51793e-14)
(6.45932e-14 3.68052e-13 1.71573e-14)
(1.16252e-13 4.18415e-13 1.90049e-14)
(1.77362e-13 4.57174e-13 2.17687e-14)
(2.4906e-13 5.00441e-13 2.55393e-14)
(3.33559e-13 5.48981e-13 3.14688e-14)
(4.32986e-13 6.03832e-13 3.73543e-14)
(5.50772e-13 6.59595e-13 4.54669e-14)
(6.88466e-13 2.61165e-13 5.53133e-14)
(8.11715e-13 -8.41891e-14 6.50112e-14)
(2.55422e-14 2.07345e-13 2.51321e-14)
(6.83583e-14 4.92794e-13 2.83537e-14)
(1.25437e-13 5.74385e-13 3.22409e-14)
(1.9577e-13 6.44733e-13 3.67615e-14)
(2.82421e-13 7.2542e-13 4.36058e-14)
(3.88968e-13 8.19456e-13 5.28706e-14)
(5.20582e-13 9.29721e-13 6.3171e-14)
(6.84042e-13 1.05082e-12 7.71112e-14)
(8.84957e-13 6.77107e-13 9.52438e-14)
(1.08723e-12 1.20808e-13 1.12841e-13)
(2.69987e-14 2.61085e-13 3.81611e-14)
(7.23825e-14 6.286e-13 4.35619e-14)
(1.35445e-13 7.50775e-13 4.98162e-14)
(2.16606e-13 8.66645e-13 5.91685e-14)
(3.21331e-13 1.00434e-12 7.13328e-14)
(4.56383e-13 1.17029e-12 8.66226e-14)
(6.31118e-13 1.37392e-12 1.05973e-13)
(8.59252e-13 1.61108e-12 1.31346e-13)
(1.15554e-12 1.31954e-12 1.64952e-13)
(1.48427e-12 4.5778e-13 1.98884e-13)
(2.85756e-14 3.18387e-13 5.35743e-14)
(7.67388e-14 7.76023e-13 6.22804e-14)
(1.46247e-13 9.50963e-13 7.33606e-14)
(2.40321e-13 1.12992e-12 8.86386e-14)
(3.66984e-13 1.35132e-12 1.10679e-13)
(5.38604e-13 1.62809e-12 1.3673e-13)
(7.71897e-13 1.98158e-12 1.71459e-13)
(1.0926e-12 2.42082e-12 2.17886e-13)
(1.5337e-12 2.31776e-12 2.79717e-13)
(2.07214e-12 1.00943e-12 3.51719e-13)
(3.01802e-14 3.79494e-13 7.22787e-14)
(8.11765e-14 9.363e-13 8.50557e-14)
(1.58417e-13 1.1784e-12 1.03933e-13)
(2.67255e-13 1.44326e-12 1.29635e-13)
(4.21062e-13 1.7834e-12 1.65527e-13)
(6.39671e-13 2.22773e-12 2.10609e-13)
(9.5324e-13 2.82071e-12 2.71626e-13)
(1.40806e-12 3.60152e-12 3.55413e-13)
(2.07563e-12 3.89001e-12 4.74507e-13)
(3.11499e-12 1.92655e-12 6.22778e-13)
(2.89313e-14 4.44284e-13 9.33436e-14)
(8.28129e-14 1.11184e-12 1.13301e-13)
(1.68474e-13 1.43782e-12 1.41582e-13)
(2.94302e-13 1.8166e-12 1.83881e-13)
(4.80832e-13 2.32433e-12 2.40019e-13)
(7.60171e-13 3.01814e-12 3.16242e-13)
(1.18278e-12 3.98831e-12 4.22715e-13)
(1.84161e-12 5.35301e-12 5.77052e-13)
(5.32316e-12 6.79212e-12 8.03374e-13)
(3.70465e-10 3.87465e-12 1.18235e-12)
(1.0036e-13 5.13006e-13 1.18852e-13)
(1.51921e-13 1.30243e-12 1.48644e-13)
(2.3118e-13 1.73256e-12 1.93253e-13)
(3.46077e-13 2.26093e-12 2.60362e-13)
(5.15531e-13 3.00171e-12 3.52713e-13)
(7.69403e-13 4.06268e-12 4.87259e-13)
(1.1644e-12 5.64687e-12 6.87686e-13)
(5.4415e-12 1.43761e-11 1.00173e-12)
(1.46464e-09 9.62794e-10 2.41642e-12)
(3.95843e-07 1.04188e-09 3.66797e-10)
(3.21722e-14 2.05112e-14 4.66631e-16)
(4.97236e-14 4.67246e-14 2.09409e-16)
(6.98466e-14 4.97218e-14 1.79366e-15)
(9.09249e-14 5.09368e-14 2.1625e-15)
(1.12825e-13 5.15479e-14 3.08846e-15)
(1.35909e-13 5.222e-14 4.5498e-15)
(1.59894e-13 5.31676e-14 6.06073e-15)
(1.85209e-13 5.11313e-14 9.15839e-15)
(2.11426e-13 -2.84214e-13 1.13445e-14)
(2.22855e-13 -3.09129e-13 1.34318e-14)
(4.29629e-14 6.35153e-14 1.592e-15)
(7.92249e-14 1.45346e-13 2.76394e-15)
(1.21985e-13 1.57879e-13 3.30602e-15)
(1.67832e-13 1.64115e-13 4.1321e-15)
(2.17013e-13 1.70323e-13 5.74625e-15)
(2.70087e-13 1.76825e-13 7.54091e-15)
(3.27037e-13 1.83949e-13 1.01962e-14)
(3.88473e-13 1.88169e-13 1.32299e-14)
(4.54113e-13 -1.82662e-13 1.68073e-14)
(4.92948e-13 -2.78504e-13 1.97292e-14)
(2.1877e-14 1.08467e-13 6.07954e-15)
(6.01785e-14 2.52033e-13 6.8172e-15)
(1.07174e-13 2.80045e-13 8.00082e-15)
(1.59872e-13 2.97999e-13 9.1197e-15)
(2.19215e-13 3.17495e-13 1.14343e-14)
(2.85919e-13 3.38475e-13 1.38005e-14)
(3.61259e-13 3.61352e-13 1.81061e-14)
(4.46096e-13 3.82148e-13 2.18103e-14)
(5.40824e-13 -9.87586e-15 2.74404e-14)
(6.13891e-13 -2.07815e-13 3.18403e-14)
(2.28603e-14 1.5647e-13 1.23522e-14)
(6.32865e-14 3.67226e-13 1.33986e-14)
(1.14822e-13 4.17342e-13 1.55716e-14)
(1.75611e-13 4.55745e-13 1.75124e-14)
(2.47024e-13 4.98522e-13 2.13717e-14)
(3.31088e-13 5.46771e-13 2.56356e-14)
(4.30202e-13 6.01367e-13 3.18272e-14)
(5.47428e-13 6.56445e-13 3.83427e-14)
(6.84401e-13 2.57718e-13 4.69334e-14)
(8.06947e-13 -8.62963e-14 5.55613e-14)
(2.39854e-14 2.06451e-13 1.99732e-14)
(6.65448e-14 4.91363e-13 2.27312e-14)
(1.23361e-13 5.72483e-13 2.56764e-14)
(1.93312e-13 6.42267e-13 3.0773e-14)
(2.79426e-13 7.22431e-13 3.62552e-14)
(3.85479e-13 8.15741e-13 4.40572e-14)
(5.16254e-13 9.25303e-13 5.36438e-14)
(6.78668e-13 1.04534e-12 6.56588e-14)
(8.78206e-13 6.71022e-13 8.12749e-14)
(1.07918e-12 1.16902e-13 9.61881e-14)
(2.50438e-14 2.59482e-13 3.04384e-14)
(7.00901e-14 6.26015e-13 3.4905e-14)
(1.32637e-13 7.4755e-13 4.07674e-14)
(2.132e-13 8.62305e-13 4.86429e-14)
(3.1703e-13 9.99248e-13 5.96776e-14)
(4.51015e-13 1.16401e-12 7.20599e-14)
(6.24456e-13 1.36586e-12 8.87834e-14)
(8.50772e-13 1.60102e-12 1.11406e-13)
(1.14467e-12 1.30834e-12 1.40363e-13)
(1.47068e-12 4.50229e-13 1.69432e-13)
(2.61542e-14 3.16006e-13 4.33193e-14)
(7.38408e-14 7.71729e-13 5.03925e-14)
(1.42629e-13 9.45495e-13 6.02275e-14)
(2.357e-13 1.12275e-12 7.33596e-14)
(3.61081e-13 1.34229e-12 9.18742e-14)
(5.30937e-13 1.61725e-12 1.14724e-13)
(7.61998e-13 1.9678e-12 1.44087e-13)
(1.07961e-12 2.40304e-12 1.84459e-13)
(1.51645e-12 2.29666e-12 2.38477e-13)
(2.04944e-12 9.94093e-13 3.01344e-13)
(2.73884e-14 3.75678e-13 5.93555e-14)
(7.76314e-14 9.29813e-13 7.04076e-14)
(1.53839e-13 1.16964e-12 8.53739e-14)
(2.61156e-13 1.43179e-12 1.07296e-13)
(4.13052e-13 1.76875e-12 1.36101e-13)
(6.28991e-13 2.20923e-12 1.75013e-13)
(9.38689e-13 2.79663e-12 2.26934e-13)
(1.38819e-12 3.56976e-12 3.0055e-13)
(2.04779e-12 3.85017e-12 4.05659e-13)
(3.0679e-12 1.89617e-12 5.3709e-13)
(2.5587e-14 4.38668e-13 7.65805e-14)
(7.82752e-14 1.10182e-12 9.40312e-14)
(1.62198e-13 1.42438e-12 1.17919e-13)
(2.85528e-13 1.7987e-12 1.51575e-13)
(4.68581e-13 2.30109e-12 1.9794e-13)
(7.42589e-13 2.9873e-12 2.62334e-13)
(1.15723e-12 3.94699e-12 3.54545e-13)
(1.80208e-12 5.29584e-12 4.86391e-13)
(5.07983e-12 6.69361e-12 6.861e-13)
(3.48411e-10 3.7974e-12 1.11807e-12)
(6.95204e-14 5.13936e-13 2.17834e-13)
(1.1326e-13 1.3005e-12 3.04279e-13)
(1.75307e-13 1.73173e-12 4.3407e-13)
(2.6356e-13 2.26323e-12 6.34676e-13)
(3.90584e-13 3.01103e-12 9.52349e-13)
(5.73562e-13 4.08636e-12 1.47674e-12)
(8.54047e-13 5.69697e-12 2.38374e-12)
(4.39474e-12 1.4009e-11 3.98265e-12)
(1.34801e-09 9.06141e-10 1.06033e-11)
(3.62592e-07 9.8625e-10 4.72899e-10)
(3.19679e-14 2.06832e-14 4.4953e-16)
(4.95105e-14 4.64907e-14 1.08378e-15)
(6.96182e-14 4.94935e-14 1.16508e-15)
(9.06828e-14 5.04404e-14 2.27942e-15)
(1.12675e-13 5.09463e-14 3.48701e-15)
(1.35701e-13 5.17323e-14 4.59433e-15)
(1.59683e-13 5.22507e-14 6.34225e-15)
(1.84945e-13 5.01186e-14 8.07794e-15)
(2.11045e-13 -2.84901e-13 1.04744e-14)
(2.22376e-13 -3.09454e-13 1.20159e-14)
(4.24332e-14 6.34086e-14 3.23665e-15)
(7.87814e-14 1.45067e-13 3.23406e-15)
(1.21508e-13 1.57602e-13 4.12911e-15)
(1.67302e-13 1.63812e-13 5.0605e-15)
(2.16451e-13 1.69827e-13 6.22605e-15)
(2.69422e-13 1.76215e-13 8.01555e-15)
(3.26225e-13 1.82988e-13 9.537e-15)
(3.87684e-13 1.86844e-13 1.21918e-14)
(4.53053e-13 -1.8381e-13 1.46442e-14)
(4.91739e-13 -2.79045e-13 1.76629e-14)
(2.11671e-14 1.08429e-13 6.30544e-15)
(5.94792e-14 2.51906e-13 6.92164e-15)
(1.06371e-13 2.79547e-13 7.53107e-15)
(1.59059e-13 2.97268e-13 9.02911e-15)
(2.18197e-13 3.16532e-13 1.05836e-14)
(2.84836e-13 3.37396e-13 1.31939e-14)
(3.59777e-13 3.60172e-13 1.60837e-14)
(4.44485e-13 3.8059e-13 1.96859e-14)
(5.38902e-13 -1.15815e-14 2.4152e-14)
(6.11613e-13 -2.08637e-13 2.82796e-14)
(2.19749e-14 1.56098e-13 1.12999e-14)
(6.21834e-14 3.66623e-13 1.20618e-14)
(1.1361e-13 4.1666e-13 1.39092e-14)
(1.74169e-13 4.54797e-13 1.57657e-14)
(2.45448e-13 4.97215e-13 1.84463e-14)
(3.29193e-13 5.44894e-13 2.18355e-14)
(4.27967e-13 5.99013e-13 2.77717e-14)
(5.44664e-13 6.53966e-13 3.35932e-14)
(6.81095e-13 2.54823e-13 4.10214e-14)
(8.03041e-13 -8.80888e-14 4.80443e-14)
(2.27773e-14 2.05935e-13 1.71957e-14)
(6.51173e-14 4.90213e-13 1.99673e-14)
(1.21696e-13 5.70932e-13 2.24497e-14)
(1.91243e-13 6.40397e-13 2.63525e-14)
(2.76962e-13 7.20146e-13 3.1523e-14)
(3.82459e-13 8.12738e-13 3.77918e-14)
(5.1279e-13 9.21655e-13 4.61843e-14)
(6.74282e-13 1.04081e-12 5.65796e-14)
(8.72772e-13 6.66159e-13 7.00303e-14)
(1.07274e-12 1.13819e-13 8.27473e-14)
(2.34343e-14 2.58469e-13 2.56424e-14)
(6.82297e-14 6.23918e-13 2.97742e-14)
(1.30368e-13 7.44896e-13 3.49244e-14)
(2.10479e-13 8.5891e-13 4.11614e-14)
(3.13536e-13 9.9508e-13 5.04883e-14)
(4.46733e-13 1.15916e-12 6.15351e-14)
(6.19102e-13 1.35949e-12 7.52365e-14)
(8.4397e-13 1.59293e-12 9.48673e-14)
(1.13595e-12 1.29942e-12 1.18907e-13)
(1.45967e-12 4.44162e-13 1.44837e-13)
(2.41686e-14 3.14263e-13 3.60444e-14)
(7.14413e-14 7.68407e-13 4.26908e-14)
(1.39752e-13 9.41198e-13 5.11327e-14)
(2.32018e-13 1.11716e-12 6.20645e-14)
(3.56453e-13 1.33521e-12 7.68295e-14)
(5.24889e-13 1.60857e-12 9.5455e-14)
(7.54138e-13 1.95671e-12 1.20734e-13)
(1.06925e-12 2.38875e-12 1.556e-13)
(1.50239e-12 2.2794e-12 2.01776e-13)
(2.03078e-12 9.81357e-13 2.55256e-13)
(2.51168e-14 3.72666e-13 4.79529e-14)
(7.47031e-14 9.24694e-13 5.84266e-14)
(1.50099e-13 1.16288e-12 7.16625e-14)
(2.56332e-13 1.42294e-12 8.94087e-14)
(4.06723e-13 1.75737e-12 1.12737e-13)
(6.20515e-13 2.19461e-12 1.45554e-13)
(9.27137e-13 2.77743e-12 1.89386e-13)
(1.37243e-12 3.54356e-12 2.51293e-13)
(2.02563e-12 3.81679e-12 3.38316e-13)
(3.03172e-12 1.87061e-12 4.52521e-13)
(5.08593e-15 4.34635e-13 7.0075e-14)
(4.92464e-14 1.09404e-12 8.44496e-14)
(1.20901e-13 1.41433e-12 1.0415e-13)
(2.26104e-13 1.78521e-12 1.29727e-13)
(3.81235e-13 2.28293e-12 1.65537e-13)
(6.11038e-13 2.96279e-12 2.14526e-13)
(9.52059e-13 3.91375e-12 2.84532e-13)
(1.47589e-12 5.24966e-12 3.84805e-13)
(4.39608e-12 6.61605e-12 5.34301e-13)
(3.31635e-10 3.7249e-12 8.899e-13)
(-2.41421e-12 1.12125e-12 1.13143e-11)
(-2.5522e-12 2.08823e-12 1.51701e-11)
(-3.29719e-12 2.79113e-12 2.05376e-11)
(-4.35975e-12 3.70883e-12 2.82715e-11)
(-5.86156e-12 5.01566e-12 3.96455e-11)
(-8.02101e-12 6.91182e-12 5.67434e-11)
(-1.12287e-11 9.76177e-12 8.30504e-11)
(-1.28966e-11 1.96131e-11 1.24866e-10)
(1.19922e-09 8.73637e-10 1.93724e-10)
(3.41581e-07 9.38657e-10 5.93058e-10)
(3.17786e-14 2.07755e-14 4.43727e-14)
(4.95035e-14 4.65324e-14 4.53425e-14)
(6.95648e-14 4.93343e-14 4.57623e-14)
(9.07477e-14 5.0106e-14 4.70851e-14)
(1.12728e-13 5.07252e-14 4.85997e-14)
(1.35773e-13 5.11854e-14 4.97608e-14)
(1.59863e-13 5.18879e-14 5.19013e-14)
(1.85058e-13 4.95946e-14 5.28218e-14)
(2.11327e-13 -2.85672e-13 5.55843e-14)
(2.22582e-13 -3.09661e-13 5.72263e-14)
(4.21067e-14 6.38296e-14 5.288e-14)
(7.84602e-14 1.45312e-13 5.44052e-14)
(1.21235e-13 1.57492e-13 5.67507e-14)
(1.67131e-13 1.63638e-13 5.96623e-14)
(2.16365e-13 1.69529e-13 6.27795e-14)
(2.6933e-13 1.7591e-13 6.61795e-14)
(3.2622e-13 1.82716e-13 6.97781e-14)
(3.87495e-13 1.86596e-13 7.38825e-14)
(4.52946e-13 -1.84361e-13 7.79119e-14)
(4.91546e-13 -2.79329e-13 8.27105e-14)
(2.06838e-14 1.08765e-13 5.60062e-14)
(5.89681e-14 2.52072e-13 5.86145e-14)
(1.05932e-13 2.79773e-13 6.27648e-14)
(1.58619e-13 2.9741e-13 6.71602e-14)
(2.17868e-13 3.16524e-13 7.21335e-14)
(2.84496e-13 3.37063e-13 7.82687e-14)
(3.59353e-13 3.59609e-13 8.48749e-14)
(4.43941e-13 3.79905e-13 9.26233e-14)
(5.3816e-13 -1.22629e-14 1.01252e-13)
(6.1092e-13 -2.08712e-13 1.09876e-13)
(2.12359e-14 1.56471e-13 6.04158e-14)
(6.14489e-14 3.66903e-13 6.41703e-14)
(1.12833e-13 4.16653e-13 7.0101e-14)
(1.73434e-13 4.54856e-13 7.78045e-14)
(2.44495e-13 4.97128e-13 8.5622e-14)
(3.28251e-13 5.4432e-13 9.53945e-14)
(4.26823e-13 5.98153e-13 1.06113e-13)
(5.43422e-13 6.52897e-13 1.19846e-13)
(6.79522e-13 2.53892e-13 1.34391e-13)
(8.01307e-13 -8.78839e-14 1.49398e-13)
(2.18381e-14 2.06174e-13 6.64012e-14)
(6.40182e-14 4.90132e-13 7.15725e-14)
(1.20512e-13 5.70987e-13 8.04083e-14)
(1.90017e-13 6.39904e-13 9.10953e-14)
(2.75439e-13 7.19416e-13 1.0355e-13)
(3.8072e-13 8.11795e-13 1.18411e-13)
(5.10805e-13 9.20198e-13 1.36529e-13)
(6.71855e-13 1.03887e-12 1.581e-13)
(8.69785e-13 6.64062e-13 1.82491e-13)
(1.06911e-12 1.13711e-13 2.10885e-13)
(2.22119e-14 2.58766e-13 7.31518e-14)
(6.68325e-14 6.2332e-13 8.11392e-14)
(1.28707e-13 7.4429e-13 9.35234e-14)
(2.08518e-13 8.5779e-13 1.08413e-13)
(3.11326e-13 9.93309e-13 1.27053e-13)
(4.44065e-13 1.157e-12 1.49782e-13)
(6.1583e-13 1.3565e-12 1.77791e-13)
(8.39737e-13 1.58891e-12 2.1332e-13)
(1.1305e-12 1.29485e-12 2.54422e-13)
(1.45299e-12 4.42813e-13 3.06487e-13)
(2.28001e-14 3.13885e-13 8.18093e-14)
(6.97221e-14 7.6681e-13 9.24381e-14)
(1.37584e-13 9.39345e-13 1.09619e-13)
(2.29362e-13 1.11476e-12 1.30764e-13)
(3.53247e-13 1.33207e-12 1.57552e-13)
(5.20814e-13 1.60418e-12 1.91412e-13)
(7.48851e-13 1.95043e-12 2.34835e-13)
(1.06241e-12 2.38037e-12 2.91921e-13)
(1.4934e-12 2.26978e-12 3.6518e-13)
(2.01875e-12 9.77304e-13 4.55281e-13)
(2.22676e-14 3.71707e-13 9.13813e-14)
(7.1626e-14 9.21456e-13 1.06419e-13)
(1.4657e-13 1.15922e-12 1.30051e-13)
(2.52294e-13 1.41838e-12 1.59353e-13)
(4.0197e-13 1.75107e-12 1.98051e-13)
(6.14805e-13 2.18599e-12 2.4903e-13)
(9.20137e-13 2.766e-12 3.17076e-13)
(1.36352e-12 3.52847e-12 4.0974e-13)
(2.01377e-12 3.79663e-12 5.33534e-13)
(3.00781e-12 1.85885e-12 6.99609e-13)
(-1.6647e-12 4.49471e-13 5.88451e-13)
(-2.074e-12 1.10749e-12 6.47068e-13)
(-2.59745e-12 1.42838e-12 7.28648e-13)
(-3.30135e-12 1.80006e-12 8.32803e-13)
(-4.26446e-12 2.29842e-12 9.66937e-13)
(-5.60689e-12 2.97878e-12 1.14326e-12)
(-7.51481e-12 3.92967e-12 1.38146e-12)
(-1.03027e-11 5.26555e-12 1.71954e-12)
(-1.22532e-11 6.61172e-12 2.16904e-12)
(2.99728e-10 3.73576e-12 2.8177e-12)
(-1.68932e-10 2.77564e-11 7.43308e-10)
(-1.52177e-10 3.24988e-11 8.88254e-10)
(-1.78727e-10 3.9535e-11 1.08518e-09)
(-2.13114e-10 4.84457e-11 1.33996e-09)
(-2.56497e-10 5.99624e-11 1.67374e-09)
(-3.11648e-10 7.50336e-11 2.11747e-09)
(-3.83096e-10 9.49743e-11 2.71691e-09)
(-4.69655e-10 1.27489e-10 3.54228e-09)
(6.16215e-10 9.91039e-10 4.69446e-09)
(3.44251e-07 1.0959e-09 6.04477e-09)
(3.09965e-14 2.11703e-14 7.74769e-13)
(4.91303e-14 4.68445e-14 7.75759e-13)
(6.96363e-14 4.9715e-14 7.81527e-13)
(9.11585e-14 5.02345e-14 7.87504e-13)
(1.13621e-13 5.08142e-14 7.9449e-13)
(1.37029e-13 5.13625e-14 8.00319e-13)
(1.6152e-13 5.1983e-14 8.07052e-13)
(1.87038e-13 4.96166e-14 8.13364e-13)
(2.13687e-13 -2.85684e-13 8.20415e-13)
(2.25316e-13 -3.09204e-13 8.27117e-13)
(4.10483e-14 6.59128e-14 8.97649e-13)
(7.79722e-14 1.46704e-13 9.04394e-13)
(1.20998e-13 1.58769e-13 9.22688e-13)
(1.67244e-13 1.64772e-13 9.4333e-13)
(2.16832e-13 1.70692e-13 9.63822e-13)
(2.70065e-13 1.76986e-13 9.85208e-13)
(3.27273e-13 1.83595e-13 1.00749e-12)
(3.88828e-13 1.87384e-13 1.03056e-12)
(4.54521e-13 -1.83425e-13 1.05471e-12)
(4.93405e-13 -2.77326e-13 1.07859e-12)
(2.04196e-14 1.12832e-13 9.08992e-13)
(5.92391e-14 2.54604e-13 9.19515e-13)
(1.06521e-13 2.81792e-13 9.52934e-13)
(1.59508e-13 2.99459e-13 9.88761e-13)
(2.19054e-13 3.18348e-13 1.02621e-12)
(2.85958e-13 3.38892e-13 1.0659e-12)
(3.61169e-13 3.61393e-13 1.1074e-12)
(4.45929e-13 3.8141e-13 1.15107e-12)
(5.40407e-13 -1.07219e-14 1.19858e-12)
(6.13375e-13 -2.04966e-13 1.24642e-12)
(2.07974e-14 1.61924e-13 9.2008e-13)
(6.14924e-14 3.70438e-13 9.37006e-13)
(1.13213e-13 4.19439e-13 9.85019e-13)
(1.73975e-13 4.5743e-13 1.03807e-12)
(2.4544e-13 4.99698e-13 1.09498e-12)
(3.29376e-13 5.46979e-13 1.15606e-12)
(4.28126e-13 6.00371e-13 1.22145e-12)
(5.44749e-13 6.54771e-13 1.29268e-12)
(6.81099e-13 2.56026e-13 1.36985e-12)
(8.02769e-13 -8.23154e-14 1.45227e-12)
(2.12492e-14 2.13209e-13 9.3321e-13)
(6.38551e-14 4.9465e-13 9.54852e-13)
(1.20555e-13 5.74124e-13 1.01963e-12)
(1.90311e-13 6.43229e-13 1.09232e-12)
(2.75951e-13 7.22555e-13 1.17112e-12)
(3.81361e-13 8.14379e-13 1.25856e-12)
(5.11342e-13 9.22356e-13 1.35466e-12)
(6.72306e-13 1.04093e-12 1.46008e-12)
(8.70097e-13 6.65732e-13 1.57779e-12)
(1.06874e-12 1.20759e-13 1.70873e-12)
(2.15066e-14 2.668e-13 9.46427e-13)
(6.64233e-14 6.28262e-13 9.7505e-13)
(1.28494e-13 7.47947e-13 1.05695e-12)
(2.08513e-13 8.61272e-13 1.15134e-12)
(3.11256e-13 9.96427e-13 1.25633e-12)
(4.43932e-13 1.15937e-12 1.37481e-12)
(6.1549e-13 1.35788e-12 1.50926e-12)
(8.38882e-13 1.5898e-12 1.66086e-12)
(1.12862e-12 1.29438e-12 1.83694e-12)
(1.44969e-12 4.50741e-13 2.0296e-12)
(2.18188e-14 3.23499e-13 9.61032e-13)
(6.90183e-14 7.72274e-13 9.9636e-13)
(1.36949e-13 9.43054e-13 1.09708e-12)
(2.28757e-13 1.11794e-12 1.21618e-12)
(3.52422e-13 1.33432e-12 1.35118e-12)
(5.19634e-13 1.60546e-12 1.50907e-12)
(7.46957e-13 1.95008e-12 1.69064e-12)
(1.05912e-12 2.3776e-12 1.90217e-12)
(1.48775e-12 2.2641e-12 2.15277e-12)
(2.01022e-12 9.85289e-13 2.44388e-12)
(-5.0708e-14 3.82646e-13 9.80715e-13)
(-3.73493e-15 9.26913e-13 1.02465e-12)
(6.76722e-14 1.16253e-12 1.14608e-12)
(1.68613e-13 1.4207e-12 1.29373e-12)
(3.12124e-13 1.75192e-12 1.46615e-12)
(5.16719e-13 2.18466e-12 1.67035e-12)
(8.10744e-13 2.7609e-12 1.91553e-12)
(1.23765e-12 3.51844e-12 2.2121e-12)
(1.86757e-12 3.78088e-12 2.57324e-12)
(2.83969e-12 1.86366e-12 3.00933e-12)
(-1.11519e-10 6.59887e-13 1.35802e-11)
(-1.26497e-10 1.31697e-12 1.45705e-11)
(-1.46269e-10 1.65093e-12 1.60265e-11)
(-1.70402e-10 2.03942e-12 1.77109e-11)
(-2.00107e-10 2.55578e-12 1.96685e-11)
(-2.37046e-10 3.25408e-12 2.19619e-11)
(-2.83499e-10 4.2195e-12 2.46705e-11)
(-3.42709e-10 5.57342e-12 2.79178e-11)
(-4.16429e-10 6.95432e-12 3.17915e-11)
(-1.64824e-10 4.20414e-12 3.60289e-11)
(-7.90188e-09 4.35112e-10 2.42004e-08)
(-5.70648e-09 4.2094e-10 2.60617e-08)
(-6.0618e-09 4.5266e-10 2.88152e-08)
(-6.4904e-09 4.91921e-10 3.20254e-08)
(-6.96963e-09 5.35439e-10 3.57932e-08)
(-7.50068e-09 5.83355e-10 4.02525e-08)
(-8.08133e-09 6.35446e-10 4.55784e-08)
(-8.69442e-09 6.9822e-10 5.20027e-08)
(-7.92761e-09 1.67024e-09 5.98332e-08)
(3.97056e-07 2.10246e-09 6.87996e-08)
(1.35051e-14 2.22639e-14 7.31131e-13)
(3.16161e-14 4.60357e-14 7.31513e-13)
(5.10801e-14 4.68746e-14 7.36625e-13)
(7.13889e-14 4.71891e-14 7.42141e-13)
(9.27219e-14 4.78927e-14 7.4782e-13)
(1.14864e-13 4.84811e-14 7.53073e-13)
(1.381e-13 4.9021e-14 7.58704e-13)
(1.62336e-13 4.66312e-14 7.64207e-13)
(1.87629e-13 -2.88764e-13 7.69953e-13)
(1.97969e-13 -3.10802e-13 7.75751e-13)
(2.24518e-14 6.80965e-14 8.46962e-13)
(5.936e-14 1.43106e-13 8.51815e-13)
(1.00069e-13 1.50011e-13 8.68298e-13)
(1.43719e-13 1.5557e-13 8.86585e-13)
(1.90777e-13 1.61454e-13 9.04709e-13)
(2.41224e-13 1.67438e-13 9.23616e-13)
(2.95644e-13 1.73904e-13 9.43098e-13)
(3.54252e-13 1.77385e-13 9.62946e-13)
(4.1681e-13 -1.93561e-13 9.83825e-13)
(4.526e-13 -2.82562e-13 1.00464e-12)
(1.82389e-14 1.16256e-13 8.56103e-13)
(5.70289e-14 2.47889e-13 8.64905e-13)
(1.01782e-13 2.66308e-13 8.94195e-13)
(1.52137e-13 2.83216e-13 9.26472e-13)
(2.08758e-13 3.01729e-13 9.59263e-13)
(2.726e-13 3.21647e-13 9.94165e-13)
(3.4453e-13 3.43657e-13 1.03034e-12)
(4.25856e-13 3.62752e-13 1.0684e-12)
(5.1656e-13 -2.98927e-14 1.10905e-12)
(5.85497e-13 -2.15052e-13 1.15055e-12)
(1.85357e-14 1.66463e-13 8.65269e-13)
(5.91767e-14 3.60226e-13 8.78854e-13)
(1.08305e-13 3.97252e-13 9.21683e-13)
(1.6625e-13 4.33762e-13 9.68358e-13)
(2.34469e-13 4.7488e-13 1.01828e-12)
(3.14986e-13 5.20911e-13 1.07155e-12)
(4.09952e-13 5.73191e-13 1.12871e-12)
(5.22594e-13 6.26007e-13 1.18921e-12)
(6.54373e-13 2.25537e-13 1.25536e-12)
(7.71e-13 -9.88791e-14 1.32576e-12)
(1.883e-14 2.19069e-13 8.75021e-13)
(6.14242e-14 4.8109e-13 8.93006e-13)
(1.15493e-13 5.44538e-13 9.50012e-13)
(1.82066e-13 6.11176e-13 1.01354e-12)
(2.64254e-13 6.88567e-13 1.08281e-12)
(3.6577e-13 7.78336e-13 1.15805e-12)
(4.914e-13 8.84365e-13 1.24016e-12)
(6.47531e-13 9.9996e-13 1.32882e-12)
(8.39431e-13 6.21437e-13 1.42857e-12)
(1.03266e-12 9.61601e-14 1.5372e-12)
(1.89989e-14 2.7399e-13 8.85307e-13)
(6.38058e-14 6.11202e-13 9.08119e-13)
(1.23175e-13 7.10579e-13 9.79895e-13)
(1.99738e-13 8.20266e-13 1.06212e-12)
(2.98818e-13 9.52419e-13 1.15283e-12)
(4.26993e-13 1.11177e-12 1.25392e-12)
(5.9351e-13 1.30669e-12 1.3669e-12)
(8.11077e-13 1.53296e-12 1.49221e-12)
(1.09418e-12 1.23425e-12 1.63851e-12)
(1.40801e-12 4.17843e-13 1.79199e-12)
(1.8628e-14 3.31769e-13 8.95728e-13)
(6.5603e-14 7.51409e-13 9.23918e-13)
(1.30706e-13 8.97357e-13 1.0114e-12)
(2.18758e-13 1.06725e-12 1.11441e-12)
(3.38171e-13 1.27895e-12 1.22915e-12)
(5.00337e-13 1.54441e-12 1.36163e-12)
(7.21653e-13 1.88364e-12 1.51187e-12)
(1.02662e-12 2.30397e-12 1.68304e-12)
(1.4473e-12 2.18326e-12 1.88249e-12)
(1.95947e-12 9.37989e-13 2.10836e-12)
(-1.87526e-12 3.92026e-13 9.10622e-13)
(-1.87529e-12 9.01869e-13 9.44938e-13)
(-1.89118e-12 1.10786e-12 1.04936e-12)
(-1.88477e-12 1.35863e-12 1.17567e-12)
(-1.84446e-12 1.68346e-12 1.32016e-12)
(-1.75221e-12 2.10798e-12 1.48874e-12)
(-1.58096e-12 2.67494e-12 1.68675e-12)
(-1.28929e-12 3.4216e-12 1.91944e-12)
(-8.05592e-13 3.67245e-12 2.19592e-12)
(4.23497e-14 1.79738e-12 2.52045e-12)
(-3.63313e-09 5.25639e-13 1.30273e-11)
(-3.71579e-09 9.11355e-13 1.39653e-11)
(-3.89089e-09 1.0902e-12 1.53487e-11)
(-4.08284e-09 1.42589e-12 1.694e-11)
(-4.29351e-09 1.88334e-12 1.87787e-11)
(-4.52551e-09 2.51527e-12 2.09161e-11)
(-4.78182e-09 3.4034e-12 2.34154e-11)
(-5.06584e-09 4.67288e-12 2.63667e-11)
(-5.37886e-09 6.05526e-12 2.98525e-11)
(-5.35415e-09 3.7232e-12 3.36138e-11)
(-1.00915e-07 2.17291e-10 2.34681e-08)
(7.04147e-09 -2.25919e-10 2.51883e-08)
(9.52729e-09 -4.72516e-10 2.77501e-08)
(1.19427e-08 -5.18033e-10 3.0713e-08)
(1.47246e-08 -5.68271e-10 3.41581e-08)
(1.79531e-08 -6.24825e-10 3.81903e-08)
(2.17289e-08 -6.88147e-10 4.29422e-08)
(2.61865e-08 -7.51918e-10 4.85815e-08)
(3.34522e-08 1.48178e-10 5.53243e-08)
(5.79991e-07 1.20328e-09 6.31431e-08)
(0.000517941 -0.000121386 6.0363e-07)
(0.00392639 -9.84016e-05 4.89068e-08)
(-8.76109e-08 -4.41705e-08 2.36741e-11)
(-3.23001e-09 6.18574e-09 1.42379e-13)
(9.78376e-10 4.60985e-09 1.15689e-13)
(7.46492e-10 3.49145e-09 3.83655e-14)
(5.75194e-10 2.67711e-09 -6.55264e-15)
(4.4795e-10 2.07721e-09 3.38949e-16)
(3.52259e-10 1.63347e-09 -3.06804e-14)
(3.60447e-10 1.31426e-09 -2.35777e-14)
(0.000512273 -8.0241e-05 1.25489e-05)
(0.003954 -5.94236e-05 7.6589e-06)
(4.69817e-06 -5.54645e-08 3.05157e-09)
(-1.15674e-09 2.55115e-09 -5.14859e-10)
(3.44262e-10 1.87248e-09 -3.90614e-10)
(2.56223e-10 1.39266e-09 -2.99775e-10)
(1.92483e-10 1.05368e-09 -2.32231e-10)
(1.47075e-10 8.0931e-10 -1.81632e-10)
(1.14999e-10 6.31069e-10 -1.43806e-10)
(8.55393e-11 5.01492e-10 -1.15875e-10)
(0.000517483 -2.49469e-05 5.53537e-06)
(0.00397301 -1.37846e-05 3.71377e-07)
(6.0584e-06 -2.7629e-08 3.23803e-09)
(1.63206e-09 -6.36722e-11 4.81146e-11)
(-1.03221e-11 -4.8812e-11 3.92531e-11)
(-8.71787e-12 -4.59896e-11 3.26939e-11)
(-7.41384e-12 -4.03777e-11 2.67309e-11)
(-6.17994e-12 -3.42521e-11 2.17366e-11)
(-5.22357e-12 -2.88745e-11 1.7758e-11)
(-4.7947e-12 -2.57939e-11 1.57203e-11)
(0.00051802 -9.18417e-06 1.57698e-06)
(0.00397968 -5.21397e-06 -1.94758e-06)
(6.3152e-06 -9.25311e-09 -1.56252e-09)
(2.54936e-09 -1.48395e-11 2.78716e-11)
(1.17613e-12 -4.41682e-12 1.96944e-11)
(6.24829e-13 -2.92254e-12 1.39582e-11)
(5.05842e-13 -1.97544e-12 1.01866e-11)
(4.08652e-13 -1.38799e-12 7.57975e-12)
(1.88479e-13 -9.6826e-13 5.75733e-12)
(8.61793e-13 -4.48847e-13 4.76846e-12)
(0.000517628 -4.37805e-06 -6.65911e-08)
(0.00398257 -3.40578e-06 -2.54788e-06)
(6.41157e-06 -4.88286e-09 -3.4254e-09)
(2.74922e-09 7.75948e-12 1.09927e-11)
(3.18017e-12 8.23074e-12 9.06106e-12)
(1.80676e-12 5.96055e-12 6.45115e-12)
(1.33851e-12 4.4101e-12 4.69515e-12)
(1.01183e-12 3.33691e-12 3.51974e-12)
(6.30658e-13 2.57458e-12 2.67095e-12)
(1.19894e-12 2.29824e-12 2.35522e-12)
(0.000517355 -2.07954e-06 -1.47329e-06)
(0.00398376 -2.58534e-06 -3.35195e-06)
(6.40942e-06 -3.46268e-09 -4.81433e-09)
(2.74765e-09 1.01909e-11 8.80558e-12)
(3.24897e-12 8.59089e-12 8.84605e-12)
(1.84152e-12 6.14181e-12 6.35489e-12)
(1.36661e-12 4.51651e-12 4.69273e-12)
(1.03992e-12 3.38901e-12 3.52453e-12)
(6.45854e-13 2.57886e-12 2.70518e-12)
(1.2335e-12 2.29461e-12 2.38908e-12)
(0.000517227 -3.02194e-07 -3.88163e-06)
(0.00398355 -1.99943e-06 -5.00285e-06)
(6.33631e-06 -1.68241e-09 -8.89321e-09)
(2.57355e-09 2.52191e-11 -9.25347e-12)
(1.75037e-12 1.81946e-11 -1.28717e-12)
(9.86848e-13 1.30532e-11 -9.65478e-13)
(7.31446e-13 9.6041e-12 -7.81522e-13)
(5.4796e-13 7.21437e-12 -5.98809e-13)
(2.89464e-13 5.53437e-12 -4.60865e-13)
(1.02571e-12 4.60705e-12 -9.5948e-14)
(0.000516594 2.90418e-06 -1.25721e-05)
(0.00398076 2.74927e-07 -1.30196e-05)
(6.10025e-06 2.81624e-09 -2.56797e-08)
(1.71918e-09 3.79037e-11 -3.2837e-11)
(-6.08855e-12 3.22863e-11 -2.84951e-11)
(-6.04616e-12 2.81297e-11 -3.27921e-11)
(-5.63979e-12 2.36732e-11 -3.15614e-11)
(-4.96717e-12 1.96189e-11 -2.82615e-11)
(-4.36774e-12 1.61605e-11 -2.45121e-11)
(-3.94819e-12 1.46347e-11 -2.2841e-11)
(0.000513179 8.60509e-06 -4.46923e-05)
(0.00396944 7.32209e-06 -5.45303e-05)
(4.82679e-06 3.35673e-09 -5.24484e-08)
(-8.23555e-10 -4.88543e-10 2.43357e-09)
(3.35724e-10 -3.72992e-10 1.80712e-09)
(2.53123e-10 -2.89378e-10 1.36147e-09)
(1.91944e-10 -2.26095e-10 1.04073e-09)
(1.47646e-10 -1.77881e-10 8.05805e-10)
(1.16134e-10 -1.41255e-10 6.32072e-10)
(8.83381e-11 -1.14413e-10 5.05386e-10)
(0.000516642 3.09649e-06 -6.32635e-05)
(0.00395764 6.1502e-07 -8.8674e-05)
(3.83393e-07 3.30088e-10 -4.40734e-08)
(-3.00646e-09 -5.73069e-12 5.79303e-09)
(9.25978e-10 -1.80555e-12 4.37465e-09)
(7.16669e-10 1.73403e-13 3.36545e-09)
(5.59635e-10 1.29558e-12 2.61305e-09)
(4.4043e-10 1.76616e-12 2.04661e-09)
(3.48585e-10 1.95032e-12 1.61959e-09)
(3.7171e-10 1.92025e-12 1.31324e-09)
(0.000513048 -7.84901e-05 -1.10577e-05)
(0.0039528 -5.93575e-05 -7.5834e-06)
(4.67694e-06 -5.53721e-08 -2.98844e-09)
(-1.16792e-09 2.54979e-09 5.14968e-10)
(3.44145e-10 1.87167e-09 3.90684e-10)
(2.56142e-10 1.39229e-09 2.99796e-10)
(1.92475e-10 1.05356e-09 2.3222e-10)
(1.47079e-10 8.09313e-10 1.8164e-10)
(1.15015e-10 6.31177e-10 1.43794e-10)
(8.55706e-11 5.01605e-10 1.15863e-10)
(0.000514206 -4.10896e-05 8.93145e-07)
(0.0039671 -2.72576e-05 4.35449e-08)
(7.06807e-06 -4.98326e-08 2.90633e-11)
(2.6328e-09 8.71068e-12 -6.18835e-14)
(-2.21738e-11 -7.31661e-12 -2.25576e-14)
(-1.9657e-11 -2.72569e-11 -1.76013e-14)
(-1.69497e-11 -3.31046e-11 -9.38676e-15)
(-1.42722e-11 -3.28671e-11 -7.37906e-15)
(-1.14383e-11 -3.04749e-11 -1.39856e-14)
(-1.99081e-11 -2.97432e-11 -4.13736e-15)
(0.00051642 -1.50794e-05 1.1239e-07)
(0.0039769 -7.53026e-06 -2.38724e-06)
(7.48657e-06 -1.6654e-08 -2.37736e-09)
(4.20252e-09 -2.02834e-10 9.00428e-11)
(-2.41473e-11 -1.31191e-10 6.31816e-11)
(-1.83721e-11 -9.45308e-11 4.56335e-11)
(-1.34613e-11 -6.9757e-11 3.37237e-11)
(-1.00747e-11 -5.25221e-11 2.5455e-11)
(-7.53495e-12 -4.02362e-11 1.95501e-11)
(-7.63023e-12 -3.18459e-11 1.57214e-11)
(0.000516638 -6.71292e-06 -8.44728e-07)
(0.00398076 -4.09459e-06 -2.80333e-06)
(7.50841e-06 -6.82151e-09 -3.9023e-09)
(4.44213e-09 -2.42919e-11 1.6623e-11)
(-1.30558e-12 -1.20631e-11 1.2753e-11)
(-2.31095e-12 -8.22214e-12 8.8927e-12)
(-1.6436e-12 -5.75838e-12 6.39226e-12)
(-1.20829e-12 -4.17732e-12 4.70728e-12)
(-8.02629e-13 -3.07947e-12 3.5436e-12)
(-1.40479e-12 -2.22649e-12 2.91924e-12)
(0.000516467 -3.57732e-06 -1.34039e-06)
(0.00398255 -3.21917e-06 -2.84585e-06)
(7.51966e-06 -4.89276e-09 -4.24105e-09)
(4.48373e-09 -2.67896e-12 4.02009e-12)
(8.98973e-13 5.42023e-13 4.68023e-12)
(-8.36624e-13 4.49737e-13 3.31742e-12)
(-6.03856e-13 3.50117e-13 2.41118e-12)
(-4.41958e-13 2.90528e-13 1.79864e-12)
(-2.51715e-13 2.27663e-13 1.37126e-12)
(-7.69024e-13 3.49491e-13 1.23121e-12)
(0.000516396 -1.86989e-06 -2.06588e-06)
(0.0039831 -2.85752e-06 -3.21741e-06)
(7.51855e-06 -4.24573e-09 -4.88812e-09)
(4.48093e-09 3.78894e-12 -2.21203e-12)
(9.3803e-13 4.54957e-12 8.18946e-13)
(-8.06141e-13 3.2413e-12 6.04873e-13)
(-5.80881e-13 2.37794e-12 4.66029e-13)
(-4.35634e-13 1.77434e-12 3.58706e-13)
(-2.45083e-13 1.35772e-12 2.69268e-13)
(-7.64407e-13 1.22388e-12 3.78634e-13)
(0.000516465 -6.18747e-07 -3.4334e-06)
(0.00398251 -2.77136e-06 -4.02159e-06)
(7.5144e-06 -3.86076e-09 -6.74179e-09)
(4.44891e-09 1.6279e-11 -2.22088e-11)
(-1.07596e-12 1.25881e-11 -1.09435e-11)
(-2.17829e-12 8.81531e-12 -7.53715e-12)
(-1.57023e-12 6.3495e-12 -5.37228e-12)
(-1.14992e-12 4.6984e-12 -3.93071e-12)
(-7.68616e-13 3.55266e-12 -2.93115e-12)
(-1.38835e-12 2.9282e-12 -2.13768e-12)
(0.000516368 1.10443e-06 -7.98553e-06)
(0.00398024 -2.2637e-06 -7.41268e-06)
(7.49269e-06 -2.28431e-09 -1.61194e-08)
(4.20754e-09 8.89111e-11 -1.90014e-10)
(-2.28258e-11 6.28875e-11 -1.24776e-10)
(-1.76629e-11 4.56887e-11 -9.11296e-11)
(-1.30588e-11 3.38814e-11 -6.78871e-11)
(-9.85824e-12 2.56246e-11 -5.15181e-11)
(-7.42146e-12 1.97016e-11 -3.97419e-11)
(-7.58705e-12 1.58731e-11 -3.1613e-11)
(0.000515112 3.49764e-06 -2.38891e-05)
(0.00397319 2.71316e-07 -2.60834e-05)
(7.06412e-06 3.19473e-10 -4.66817e-08)
(2.70092e-09 7.09629e-12 4.13156e-11)
(-1.61205e-11 4.65699e-12 1.57896e-11)
(-1.58977e-11 3.11975e-12 -1.1832e-11)
(-1.45754e-11 2.16906e-12 -2.28883e-11)
(-1.26595e-11 1.50957e-12 -2.57235e-11)
(-1.02663e-11 1.09556e-12 -2.50801e-11)
(-1.91555e-11 7.69208e-13 -2.61052e-11)
(0.000516159 -2.60749e-06 -4.04478e-05)
(0.00396358 -6.54232e-06 -5.471e-05)
(4.75019e-06 -2.70323e-09 -5.23976e-08)
(-8.94136e-10 4.84693e-10 2.43289e-09)
(3.33817e-10 3.72039e-10 1.80534e-09)
(2.51705e-10 2.89927e-10 1.35961e-09)
(1.90848e-10 2.27401e-10 1.03876e-09)
(1.46767e-10 1.79468e-10 8.03986e-10)
(1.15404e-10 1.42899e-10 6.30362e-10)
(8.82806e-11 1.15991e-10 5.03925e-10)
(0.00051846 -2.41194e-05 -4.06555e-06)
(0.00397065 -1.38661e-05 -3.33986e-07)
(6.03864e-06 -2.7632e-08 -3.18155e-09)
(1.60833e-09 -6.32829e-11 -4.81933e-11)
(-1.02886e-11 -4.87255e-11 -3.93269e-11)
(-8.68714e-12 -4.59186e-11 -3.27323e-11)
(-7.37545e-12 -4.02583e-11 -2.67306e-11)
(-6.16759e-12 -3.42773e-11 -2.17319e-11)
(-5.2195e-12 -2.88472e-11 -1.77302e-11)
(-4.81233e-12 -2.57918e-11 -1.57055e-11)
(0.000516698 -1.54295e-05 1.55436e-06)
(0.00397586 -7.60019e-06 2.43715e-06)
(7.48533e-06 -1.67225e-08 2.43327e-09)
(4.19742e-09 -2.02418e-10 -9.01046e-11)
(-2.41399e-11 -1.3099e-10 -6.32381e-11)
(-1.83452e-11 -9.44168e-11 -4.5648e-11)
(-1.34653e-11 -6.97168e-11 -3.37408e-11)
(-1.00884e-11 -5.25259e-11 -2.54451e-11)
(-7.53582e-12 -4.02582e-11 -1.95373e-11)
(-7.63944e-12 -3.18676e-11 -1.57125e-11)
(0.000516951 -5.88681e-06 6.74697e-07)
(0.00398065 -9.51032e-07 7.21287e-09)
(7.65913e-06 -3.39151e-09 1.18488e-11)
(4.81566e-09 -6.81717e-11 2.87328e-14)
(-5.52118e-12 -4.36692e-11 -5.73588e-15)
(-5.32254e-12 -3.05764e-11 1.22949e-16)
(-3.79688e-12 -2.20112e-11 1.32292e-14)
(-2.78128e-12 -1.62503e-11 -5.40217e-15)
(-2.08456e-12 -1.22497e-11 2.32686e-15)
(-1.74632e-12 -9.86026e-12 2.426e-15)
(0.000516758 -2.56616e-06 1.55981e-07)
(0.0039828 -2.56073e-07 -2.97755e-07)
(7.64253e-06 -9.18021e-10 -7.45076e-10)
(4.82904e-09 -1.60906e-11 -7.79885e-12)
(3.81179e-13 -1.01985e-11 -5.22212e-12)
(-1.30415e-12 -7.10289e-12 -3.80744e-12)
(-9.32527e-13 -5.11319e-12 -2.84269e-12)
(-6.81869e-13 -3.76601e-12 -2.15454e-12)
(-5.15463e-13 -2.84265e-12 -1.66404e-12)
(-4.2879e-13 -2.31076e-12 -1.4001e-12)
(0.000516587 -1.06355e-06 -1.47369e-07)
(0.00398379 -2.39107e-07 -2.39038e-07)
(7.63841e-06 -7.0044e-10 -6.91763e-10)
(4.81942e-09 -8.74307e-12 -7.49672e-12)
(1.04825e-12 -5.69741e-12 -4.85018e-12)
(-8.3776e-13 -4.05148e-12 -3.47492e-12)
(-6.0352e-13 -2.95177e-12 -2.54782e-12)
(-4.46577e-13 -2.20877e-12 -1.91591e-12)
(-3.40407e-13 -1.68131e-12 -1.46489e-12)
(-2.86457e-13 -1.40151e-12 -1.23018e-12)
(0.000516592 -6.16538e-08 -5.9578e-07)
(0.0039839 -2.49914e-07 -2.38087e-07)
(7.63911e-06 -7.02426e-10 -7.06274e-10)
(4.81958e-09 -7.5451e-12 -8.57147e-12)
(1.06241e-12 -4.87952e-12 -5.59353e-12)
(-8.29513e-13 -3.49492e-12 -3.98304e-12)
(-5.99848e-13 -2.57163e-12 -2.91804e-12)
(-4.42816e-13 -1.92991e-12 -2.1823e-12)
(-3.37885e-13 -1.47513e-12 -1.66244e-12)
(-2.85081e-13 -1.23814e-12 -1.3889e-12)
(0.000516792 7.80409e-07 -1.30614e-06)
(0.00398316 -2.8769e-07 -2.36804e-07)
(7.64481e-06 -7.23779e-10 -9.07548e-10)
(4.83058e-09 -7.78638e-12 -1.56336e-11)
(4.36713e-13 -5.23105e-12 -9.92852e-12)
(-1.27198e-12 -3.82273e-12 -6.95278e-12)
(-9.10154e-13 -2.84285e-12 -5.00988e-12)
(-6.69218e-13 -2.16125e-12 -3.70378e-12)
(-5.06989e-13 -1.67382e-12 -2.80427e-12)
(-4.23382e-13 -1.40695e-12 -2.28521e-12)
(0.00051707 1.93895e-06 -3.2943e-06)
(0.00398132 3.40901e-08 -9.43451e-07)
(7.66161e-06 6.32907e-11 -3.417e-09)
(4.81323e-09 3.43603e-13 -6.59074e-11)
(-5.31423e-12 1.55487e-13 -4.25201e-11)
(-5.19983e-12 9.8447e-14 -2.99203e-11)
(-3.72848e-12 3.53059e-14 -2.16367e-11)
(-2.74642e-12 1.38109e-14 -1.60506e-11)
(-2.06692e-12 8.93512e-15 -1.21544e-11)
(-1.73936e-12 3.02853e-15 -9.81443e-12)
(0.000517075 3.8956e-06 -1.00796e-05)
(0.003977 2.475e-06 -7.60076e-06)
(7.48336e-06 2.57203e-09 -1.63504e-08)
(4.18239e-09 -8.65194e-11 -1.93117e-10)
(-2.32358e-11 -6.16009e-11 -1.26584e-10)
(-1.79257e-11 -4.49057e-11 -9.23118e-11)
(-1.32386e-11 -3.33986e-11 -6.86348e-11)
(-9.95919e-12 -2.53232e-11 -5.20145e-11)
(-7.4807e-12 -1.95318e-11 -4.00543e-11)
(-7.62745e-12 -1.57652e-11 -3.18302e-11)
(0.00051939 4.73449e-07 -1.35731e-05)
(0.00397256 -9.74477e-08 -1.34033e-05)
(6.03393e-06 -2.55966e-09 -2.60338e-08)
(1.62689e-09 -4.35997e-11 -5.17817e-11)
(-8.62357e-12 -3.61451e-11 -4.08789e-11)
(-7.68037e-12 -3.0663e-11 -4.09439e-11)
(-6.79362e-12 -2.54835e-11 -3.72936e-11)
(-5.77938e-12 -2.08991e-11 -3.22501e-11)
(-4.9413e-12 -1.71249e-11 -2.73441e-11)
(-4.07917e-12 -1.53336e-11 -2.48433e-11)
(0.000519266 -8.78039e-06 3.34058e-08)
(0.00397624 -5.2504e-06 2.01009e-06)
(6.29386e-06 -9.29439e-09 1.61736e-09)
(2.52536e-09 -1.45737e-11 -2.78914e-11)
(1.18849e-12 -4.29499e-12 -1.97033e-11)
(6.52718e-13 -2.82263e-12 -1.39721e-11)
(5.10179e-13 -1.96702e-12 -1.01747e-11)
(4.05069e-13 -1.37823e-12 -7.59285e-12)
(1.89202e-13 -9.84926e-13 -5.7681e-12)
(8.51122e-13 -4.5421e-13 -4.7691e-12)
(0.000517131 -7.40785e-06 2.55768e-06)
(0.0039789 -4.13963e-06 2.8626e-06)
(7.50373e-06 -6.88063e-09 3.96276e-09)
(4.43634e-09 -2.4192e-11 -1.66295e-11)
(-1.30757e-12 -1.19756e-11 -1.27497e-11)
(-2.31242e-12 -8.18579e-12 -8.91086e-12)
(-1.65461e-12 -5.77666e-12 -6.39784e-12)
(-1.20336e-12 -4.16263e-12 -4.7107e-12)
(-8.07285e-13 -3.08635e-12 -3.54761e-12)
(-1.40776e-12 -2.23557e-12 -2.92632e-12)
(0.00051694 -2.93414e-06 1.0037e-06)
(0.00398211 -2.54216e-07 3.16974e-07)
(7.63967e-06 -9.23259e-10 7.64204e-10)
(4.82755e-09 -1.61515e-11 7.84957e-12)
(3.79186e-13 -1.02143e-11 5.23276e-12)
(-1.3074e-12 -7.12474e-12 3.82455e-12)
(-9.30555e-13 -5.11123e-12 2.84085e-12)
(-6.82364e-13 -3.77128e-12 2.15899e-12)
(-5.14826e-13 -2.84389e-12 1.66514e-12)
(-4.27885e-13 -2.30997e-12 1.40024e-12)
(0.000516692 -1.24541e-06 3.77548e-07)
(0.00398359 9.2579e-08 7.83874e-09)
(7.62765e-06 6.47457e-11 4.82057e-12)
(4.8266e-09 -1.69057e-12 3.4913e-15)
(2.08051e-12 -8.22986e-13 2.78147e-15)
(-2.0435e-13 -5.30611e-13 -9.52162e-16)
(-1.39736e-13 -3.55559e-13 2.98769e-16)
(-9.81287e-14 -2.46467e-13 -2.26145e-16)
(-7.48644e-14 -1.76098e-13 -4.74423e-16)
(-5.91519e-14 -1.29384e-13 -1.60435e-16)
(0.000516563 -3.45309e-07 7.19307e-09)
(0.00398419 5.48792e-08 3.78648e-08)
(7.62382e-06 5.08393e-11 1.20121e-11)
(4.8163e-09 -5.75723e-13 -4.36292e-13)
(2.13591e-12 -2.98744e-13 -1.43068e-13)
(-1.47667e-13 -1.94625e-13 -9.27825e-14)
(-1.01863e-13 -1.31572e-13 -6.24964e-14)
(-7.20527e-14 -9.14326e-14 -4.33205e-14)
(-5.6139e-14 -6.58079e-14 -3.06948e-14)
(-4.53587e-14 -4.78055e-14 -2.26214e-14)
(0.000516621 3.77879e-07 -4.35086e-07)
(0.00398405 4.0152e-08 5.62711e-08)
(7.62455e-06 1.22638e-11 4.9277e-11)
(4.81737e-09 -4.85943e-13 -5.04141e-13)
(2.1421e-12 -1.75262e-13 -2.53493e-13)
(-1.43838e-13 -1.13404e-13 -1.65028e-13)
(-9.91519e-14 -7.59608e-14 -1.10998e-13)
(-7.03147e-14 -5.26123e-14 -7.74662e-14)
(-5.48817e-14 -3.7765e-14 -5.57101e-14)
(-4.44206e-14 -2.75664e-14 -4.07208e-14)
(0.000516876 1.07167e-06 -1.01939e-06)
(0.00398316 3.34738e-08 1.06256e-07)
(7.62643e-06 2.9693e-11 7.43868e-11)
(4.82493e-09 -2.22275e-14 -1.53896e-12)
(2.10214e-12 -2.51444e-14 -7.30304e-13)
(-1.90068e-13 -1.58904e-14 -4.73449e-13)
(-1.3026e-13 -1.20734e-14 -3.18237e-13)
(-9.16866e-14 -8.62465e-15 -2.20638e-13)
(-7.02271e-14 -6.25046e-15 -1.57406e-13)
(-5.60487e-14 -4.57959e-15 -1.16344e-13)
(0.000517267 2.09487e-06 -2.29472e-06)
(0.00398136 3.53959e-07 -2.28577e-07)
(7.63706e-06 7.9743e-10 -9.22436e-10)
(4.82432e-09 7.89694e-12 -1.58128e-11)
(4.18906e-13 5.25729e-12 -1.00183e-11)
(-1.27911e-12 3.82403e-12 -6.99591e-12)
(-9.17276e-13 2.84753e-12 -5.04822e-12)
(-6.73438e-13 2.16263e-12 -3.72944e-12)
(-5.09108e-13 1.66869e-12 -2.81739e-12)
(-4.25202e-13 1.40296e-12 -2.29496e-12)
(0.000517643 4.23221e-06 -6.10861e-06)
(0.00397775 2.92196e-06 -4.14366e-06)
(7.49866e-06 4.0113e-09 -6.92582e-09)
(4.4264e-09 -1.59141e-11 -2.33421e-11)
(-1.22895e-12 -1.24009e-11 -1.15894e-11)
(-2.26021e-12 -8.69413e-12 -7.98e-12)
(-1.60819e-12 -6.26392e-12 -5.61418e-12)
(-1.18429e-12 -4.63687e-12 -4.09151e-12)
(-7.94367e-13 -3.50475e-12 -3.05464e-12)
(-1.40278e-12 -2.89821e-12 -2.21976e-12)
(0.000520155 2.31265e-06 -5.92854e-06)
(0.00397463 2.09942e-06 -5.20413e-06)
(6.27715e-06 1.7601e-09 -9.16353e-09)
(2.50212e-09 -2.63898e-11 -1.25585e-11)
(1.33448e-12 -1.89015e-11 -3.24132e-12)
(7.16601e-13 -1.35102e-11 -2.29509e-12)
(5.5277e-13 -9.91248e-12 -1.61003e-12)
(4.42362e-13 -7.42122e-12 -1.1621e-12)
(2.116e-13 -5.65355e-12 -8.43286e-13)
(1.14163e-12 -4.7003e-12 -3.69534e-13)
(0.000519156 -4.23912e-06 2.01058e-06)
(0.00397807 -3.45687e-06 2.6139e-06)
(6.38281e-06 -4.92984e-09 3.48665e-09)
(2.71867e-09 7.86862e-12 -1.10466e-11)
(3.18964e-12 8.29088e-12 -9.11045e-12)
(1.81407e-12 5.98156e-12 -6.44935e-12)
(1.3415e-12 4.41254e-12 -4.71393e-12)
(1.01441e-12 3.34171e-12 -3.50429e-12)
(6.31676e-13 2.56852e-12 -2.6692e-12)
(1.18286e-12 2.29246e-12 -2.33801e-12)
(0.000517109 -4.63534e-06 3.30797e-06)
(0.00398004 -3.28119e-06 2.91108e-06)
(7.51068e-06 -4.95972e-09 4.30733e-09)
(4.47269e-09 -2.63787e-12 -4.00614e-12)
(8.77966e-13 5.92745e-13 -4.68383e-12)
(-8.46162e-13 4.4822e-13 -3.3221e-12)
(-6.05697e-13 3.65493e-13 -2.40981e-12)
(-4.47781e-13 2.78695e-13 -1.80179e-12)
(-2.54341e-13 2.24464e-13 -1.36999e-12)
(-7.70747e-13 3.37718e-13 -1.22845e-12)
(0.00051686 -1.82051e-06 1.26095e-06)
(0.00398271 -2.48468e-07 2.61071e-07)
(7.63301e-06 -7.15461e-10 7.17117e-10)
(4.81497e-09 -8.80506e-12 7.55862e-12)
(1.04363e-12 -5.72635e-12 4.87148e-12)
(-8.37108e-13 -4.05496e-12 3.48021e-12)
(-6.0356e-13 -2.95758e-12 2.5521e-12)
(-4.45355e-13 -2.20558e-12 1.91427e-12)
(-3.39325e-13 -1.67959e-12 1.46321e-12)
(-2.85006e-13 -1.39688e-12 1.2261e-12)
(0.000516626 -7.36963e-07 4.75636e-07)
(0.00398392 4.82263e-08 -2.30636e-08)
(7.62257e-06 4.70204e-11 6.10651e-13)
(4.81505e-09 -5.79627e-13 4.44395e-13)
(2.135e-12 -2.99651e-13 1.44205e-13)
(-1.47844e-13 -1.95617e-13 9.36906e-14)
(-1.01775e-13 -1.31748e-13 6.2734e-14)
(-7.21535e-14 -9.16246e-14 4.35293e-14)
(-5.62151e-14 -6.57984e-14 3.06196e-14)
(-4.52152e-14 -4.79889e-14 2.28019e-14)
(0.000516526 -1.07906e-07 5.65318e-09)
(0.00398435 2.32651e-08 1.83016e-09)
(7.61826e-06 4.0312e-11 2.91205e-12)
(4.80544e-09 -6.36446e-14 1.68097e-15)
(2.1499e-12 -1.03529e-13 9.1693e-17)
(-1.2016e-13 -6.83795e-14 -2.73521e-16)
(-8.33617e-14 -4.70358e-14 -2.21907e-17)
(-5.91897e-14 -3.33659e-14 -2.9092e-19)
(-4.66206e-14 -2.36196e-14 -6.43107e-17)
(-3.84839e-14 -1.72698e-14 -9.04977e-17)
(0.000516612 4.71182e-07 -4.84158e-07)
(0.00398409 1.9266e-08 1.01488e-08)
(7.61786e-06 1.78205e-11 2.81227e-11)
(4.80571e-09 -3.58557e-14 -2.04838e-14)
(2.15439e-12 -2.79929e-14 -7.2342e-14)
(-1.17477e-13 -1.82628e-14 -4.8079e-14)
(-8.15798e-14 -1.26937e-14 -3.31863e-14)
(-5.7736e-14 -8.7355e-15 -2.36822e-14)
(-4.56753e-14 -6.08985e-15 -1.67279e-14)
(-3.78573e-14 -4.5337e-15 -1.22715e-14)
(0.000516893 1.07935e-06 -1.05412e-06)
(0.00398312 1.23785e-08 3.75875e-08)
(7.61548e-06 3.32075e-11 3.66743e-11)
(4.80758e-09 4.07739e-13 -5.12211e-13)
(2.14565e-12 1.11542e-13 -2.5492e-13)
(-1.38284e-13 7.16157e-14 -1.66032e-13)
(-9.53837e-14 4.7112e-14 -1.11228e-13)
(-6.76612e-14 3.27622e-14 -7.79953e-14)
(-5.29255e-14 2.32272e-14 -5.55791e-14)
(-4.32018e-14 1.72506e-14 -4.0901e-14)
(0.000517318 2.05285e-06 -2.09804e-06)
(0.00398132 2.89214e-07 -2.361e-07)
(7.62156e-06 7.47186e-10 -7.13069e-10)
(4.80394e-09 7.53922e-12 -8.71014e-12)
(1.05875e-12 4.84233e-12 -5.65672e-12)
(-8.26866e-13 3.46697e-12 -4.02332e-12)
(-5.97282e-13 2.548e-12 -2.94101e-12)
(-4.40578e-13 1.9103e-12 -2.19387e-12)
(-3.3662e-13 1.46195e-12 -1.67223e-12)
(-2.84259e-13 1.22707e-12 -1.39478e-12)
(0.000517776 4.39618e-06 -4.90494e-06)
(0.00397792 2.96469e-06 -3.30062e-06)
(7.49897e-06 4.36322e-09 -4.99087e-09)
(4.45764e-09 -3.73985e-12 -2.7742e-12)
(8.78987e-13 -4.53666e-12 4.98962e-13)
(-8.27285e-13 -3.2234e-12 4.13174e-13)
(-5.99904e-13 -2.35617e-12 3.25953e-13)
(-4.45712e-13 -1.76298e-12 2.52435e-13)
(-2.49809e-13 -1.34467e-12 2.03466e-13)
(-7.70193e-13 -1.21507e-12 3.32629e-13)
(0.000520236 3.03354e-06 -3.92035e-06)
(0.00397509 2.68308e-06 -3.46614e-06)
(6.35523e-06 3.54549e-09 -4.94728e-09)
(2.68714e-09 -1.05458e-11 7.93484e-12)
(3.12854e-12 -8.81527e-12 8.29915e-12)
(1.78569e-12 -6.29432e-12 5.98554e-12)
(1.33194e-12 -4.59529e-12 4.44424e-12)
(1.0074e-12 -3.42511e-12 3.35544e-12)
(6.20153e-13 -2.61646e-12 2.57713e-12)
(1.36137e-12 -2.31339e-12 2.30397e-12)
(0.000519156 -2.01061e-06 4.23907e-06)
(0.00397807 -2.6139e-06 3.45687e-06)
(6.38281e-06 -3.48743e-09 4.92884e-09)
(2.71872e-09 1.03701e-11 -8.78511e-12)
(3.25054e-12 8.67931e-12 -8.87384e-12)
(1.85304e-12 6.17976e-12 -6.37412e-12)
(1.37406e-12 4.5315e-12 -4.69523e-12)
(1.03726e-12 3.38121e-12 -3.52476e-12)
(6.47693e-13 2.57994e-12 -2.70751e-12)
(1.21602e-12 2.27492e-12 -2.39127e-12)
(0.000517109 -3.30798e-06 4.63532e-06)
(0.00398004 -2.91108e-06 3.28119e-06)
(7.51068e-06 -4.30763e-09 4.95931e-09)
(4.47272e-09 3.84856e-12 2.27089e-12)
(9.16387e-13 4.58881e-12 -8.18384e-13)
(-8.15479e-13 3.2653e-12 -6.03464e-13)
(-5.90289e-13 2.38442e-12 -4.63151e-13)
(-4.3821e-13 1.77717e-12 -3.5248e-13)
(-2.45756e-13 1.35707e-12 -2.73439e-13)
(-7.66787e-13 1.22056e-12 -3.72411e-13)
(0.00051686 -1.26096e-06 1.8205e-06)
(0.00398271 -2.6107e-07 2.48468e-07)
(7.63301e-06 -7.17252e-10 7.1527e-10)
(4.81499e-09 -7.61599e-12 8.65295e-12)
(1.05616e-12 -4.90803e-12 5.6304e-12)
(-8.30847e-13 -3.5096e-12 3.99993e-12)
(-5.99257e-13 -2.57664e-12 2.92372e-12)
(-4.41686e-13 -1.92837e-12 2.17992e-12)
(-3.37491e-13 -1.47557e-12 1.66289e-12)
(-2.83375e-13 -1.23498e-12 1.38413e-12)
(0.000516626 -4.75638e-07 7.36959e-07)
(0.00398392 2.30636e-08 -4.82262e-08)
(7.62257e-06 -7.01041e-13 -4.71478e-11)
(4.81506e-09 -4.95351e-13 5.08489e-13)
(2.14077e-12 -1.76432e-13 2.5514e-13)
(-1.43873e-13 -1.1415e-13 1.66038e-13)
(-9.90558e-14 -7.58563e-14 1.11118e-13)
(-7.03612e-14 -5.3095e-14 7.78479e-14)
(-5.4793e-14 -3.70572e-14 5.53403e-14)
(-4.43176e-14 -2.74611e-14 4.0616e-14)
(0.000516526 -5.65575e-09 1.07902e-07)
(0.00398435 -1.83024e-09 -2.3265e-08)
(7.61826e-06 -2.98936e-12 -4.04156e-11)
(4.80545e-09 -4.64625e-14 1.43493e-14)
(2.15417e-12 -2.847e-14 7.22168e-14)
(-1.17385e-13 -1.83169e-14 4.80274e-14)
(-8.14382e-14 -1.26218e-14 3.33422e-14)
(-5.76491e-14 -8.81488e-15 2.36253e-14)
(-4.56509e-14 -6.00962e-15 1.67424e-14)
(-3.80064e-14 -4.45007e-15 1.23601e-14)
(0.000516612 4.84155e-07 -4.71184e-07)
(0.00398409 -1.01489e-08 -1.92665e-08)
(7.61786e-06 -2.82002e-11 -1.79035e-11)
(4.80571e-09 -3.40804e-14 -9.12044e-15)
(2.15889e-12 3.77294e-14 -3.56096e-16)
(-1.14486e-13 2.54011e-14 -3.67858e-16)
(-7.9478e-14 1.79184e-14 -6.38839e-18)
(-5.61781e-14 1.29704e-14 -7.27304e-18)
(-4.46658e-14 9.35541e-15 1.0015e-16)
(-3.73354e-14 6.79652e-15 -6.94391e-17)
(0.000516893 1.05411e-06 -1.07935e-06)
(0.00398312 -3.75872e-08 -1.23787e-08)
(7.61548e-06 -3.68148e-11 -3.33264e-11)
(4.80758e-09 4.25795e-13 -4.64508e-13)
(2.15266e-12 1.99591e-13 -1.4602e-13)
(-1.33576e-13 1.29959e-13 -9.42465e-14)
(-9.22429e-14 8.69714e-14 -6.23562e-14)
(-6.53345e-14 6.08534e-14 -4.35757e-14)
(-5.12579e-14 4.34843e-14 -3.06706e-14)
(-4.22356e-14 3.18683e-14 -2.24552e-14)
(0.000517318 2.09803e-06 -2.05285e-06)
(0.00398132 2.361e-07 -2.89214e-07)
(7.62156e-06 7.12795e-10 -7.47428e-10)
(4.80395e-09 8.51963e-12 -7.61285e-12)
(1.07252e-12 5.54591e-12 -4.89902e-12)
(-8.17139e-13 3.95101e-12 -3.50386e-12)
(-5.90676e-13 2.89154e-12 -2.57344e-12)
(-4.35949e-13 2.1593e-12 -1.9278e-12)
(-3.33637e-13 1.64804e-12 -1.47391e-12)
(-2.82396e-13 1.37821e-12 -1.23699e-12)
(0.000517776 4.90492e-06 -4.39619e-06)
(0.00397792 3.30062e-06 -2.96469e-06)
(7.49897e-06 4.99036e-09 -4.36364e-09)
(4.45765e-09 2.4202e-12 3.4476e-12)
(9.13504e-13 -7.18389e-13 4.37079e-12)
(-8.10132e-13 -5.551e-13 3.11538e-12)
(-5.88131e-13 -4.2397e-13 2.28408e-12)
(-4.3784e-13 -3.19387e-13 1.71062e-12)
(-2.42808e-13 -2.51896e-13 1.30881e-12)
(-7.67122e-13 -3.6022e-13 1.18755e-12)
(0.000520236 3.92033e-06 -3.03356e-06)
(0.00397509 3.46614e-06 -2.68309e-06)
(6.35523e-06 4.9468e-09 -3.54587e-09)
(2.68715e-09 -8.28131e-12 1.0193e-11)
(3.14954e-12 -8.55787e-12 8.5912e-12)
(1.80235e-12 -6.15366e-12 6.14786e-12)
(1.34349e-12 -4.54561e-12 4.50804e-12)
(1.01531e-12 -3.42567e-12 3.3617e-12)
(6.28665e-13 -2.63152e-12 2.56956e-12)
(1.33827e-12 -2.34187e-12 2.27674e-12)
(0.000519266 -3.35653e-08 8.78008e-06)
(0.00397624 -2.0101e-06 5.25038e-06)
(6.29387e-06 -1.62287e-09 9.28443e-09)
(2.52601e-09 2.58389e-11 1.02772e-11)
(1.67162e-12 1.84408e-11 1.61539e-12)
(9.59693e-13 1.31655e-11 1.13863e-12)
(7.15892e-13 9.66313e-12 8.57945e-13)
(5.48635e-13 7.21063e-12 5.89831e-13)
(2.87184e-13 5.51746e-12 4.44707e-13)
(1.00475e-12 4.57917e-12 4.99134e-14)
(0.000517131 -2.55769e-06 7.40777e-06)
(0.0039789 -2.86261e-06 4.13962e-06)
(7.50373e-06 -3.96354e-09 6.87818e-09)
(4.43661e-09 1.65129e-11 2.28503e-11)
(-1.14277e-12 1.27069e-11 1.11626e-11)
(-2.20514e-12 8.87445e-12 7.65895e-12)
(-1.57958e-12 6.37642e-12 5.41637e-12)
(-1.15698e-12 4.70292e-12 3.93795e-12)
(-7.68802e-13 3.54002e-12 2.91522e-12)
(-1.3817e-12 2.91807e-12 2.11288e-12)
(0.00051694 -1.0037e-06 2.93412e-06)
(0.00398211 -3.16974e-07 2.54216e-07)
(7.63967e-06 -7.64138e-10 9.22913e-10)
(4.82762e-09 -7.89146e-12 1.58072e-11)
(4.27033e-13 -5.25794e-12 1.00089e-11)
(-1.27429e-12 -3.83559e-12 6.98042e-12)
(-9.10145e-13 -2.85296e-12 5.02048e-12)
(-6.67694e-13 -2.16365e-12 3.7049e-12)
(-5.04849e-13 -1.67074e-12 2.79835e-12)
(-4.21303e-13 -1.4047e-12 2.2795e-12)
(0.000516692 -3.77551e-07 1.2454e-06)
(0.00398359 -7.83925e-09 -9.25786e-08)
(7.62765e-06 -4.90191e-12 -6.49354e-11)
(4.82663e-09 -4.65063e-14 1.55324e-12)
(2.10277e-12 -2.90552e-14 7.3688e-13)
(-1.89951e-13 -1.86374e-14 4.74413e-13)
(-1.30099e-13 -1.24886e-14 3.18534e-13)
(-9.14695e-14 -9.03597e-15 2.20091e-13)
(-7.00962e-14 -6.32046e-15 1.56969e-13)
(-5.58631e-14 -4.20183e-15 1.15451e-13)
(0.000516563 -7.19659e-09 3.45305e-07)
(0.00398419 -3.78655e-08 -5.48793e-08)
(7.62382e-06 -1.21308e-11 -5.09905e-11)
(4.81633e-09 3.82804e-13 5.04004e-13)
(2.15101e-12 1.0832e-13 2.52992e-13)
(-1.37756e-13 7.07064e-14 1.65537e-13)
(-9.52749e-14 4.6781e-14 1.11088e-13)
(-6.76014e-14 3.26167e-14 7.77354e-14)
(-5.26802e-14 2.2743e-14 5.50919e-14)
(-4.31487e-14 1.71585e-14 4.07621e-14)
(0.000516621 4.3508e-07 -3.77883e-07)
(0.00398405 -5.62715e-08 -4.0152e-08)
(7.62455e-06 -4.94697e-11 -1.23697e-11)
(4.8174e-09 4.15232e-13 4.36871e-13)
(2.15838e-12 1.9828e-13 1.44015e-13)
(-1.33124e-13 1.28254e-13 9.24497e-14)
(-9.19971e-14 8.63538e-14 6.19701e-14)
(-6.51864e-14 6.03218e-14 4.293e-14)
(-5.12526e-14 4.30495e-14 3.03564e-14)
(-4.21896e-14 3.17225e-14 2.24952e-14)
(0.000516876 1.01937e-06 -1.07167e-06)
(0.00398316 -1.06257e-07 -3.34748e-08)
(7.62643e-06 -7.48043e-11 -2.97638e-11)
(4.82499e-09 1.35939e-12 -2.28316e-14)
(2.12955e-12 6.17446e-13 -3.64891e-15)
(-1.72576e-13 4.01829e-13 -1.31695e-15)
(-1.18354e-13 2.67275e-13 -7.47141e-16)
(-8.35698e-14 1.86223e-13 4.84645e-16)
(-6.4267e-14 1.32755e-13 -1.71253e-16)
(-5.21484e-14 9.90241e-14 -8.32652e-17)
(0.000517267 2.29469e-06 -2.09487e-06)
(0.00398136 2.28575e-07 -3.53961e-07)
(7.63706e-06 9.21362e-10 -7.97764e-10)
(4.82445e-09 1.53486e-11 -7.96414e-12)
(4.82204e-13 9.73113e-12 -5.29672e-12)
(-1.23842e-12 6.80827e-12 -3.85134e-12)
(-8.89686e-13 4.91926e-12 -2.86677e-12)
(-6.53726e-13 3.6419e-12 -2.17414e-12)
(-4.94874e-13 2.7548e-12 -1.67746e-12)
(-4.16348e-13 2.25265e-12 -1.40958e-12)
(0.000517643 6.10853e-06 -4.23225e-06)
(0.00397775 4.14366e-06 -2.92196e-06)
(7.49866e-06 6.9232e-09 -4.01304e-09)
(4.42665e-09 2.22127e-11 1.53621e-11)
(-1.08278e-12 1.08861e-11 1.20745e-11)
(-2.16393e-12 7.50616e-12 8.47129e-12)
(-1.55118e-12 5.34463e-12 6.12695e-12)
(-1.14345e-12 3.9006e-12 4.54409e-12)
(-7.62626e-13 2.91228e-12 3.43764e-12)
(-1.38198e-12 2.10862e-12 2.85245e-12)
(0.000520155 5.92839e-06 -2.31274e-06)
(0.00397463 5.20412e-06 -2.09942e-06)
(6.27715e-06 9.15929e-09 -1.76292e-09)
(2.50238e-09 1.08141e-11 2.53152e-11)
(1.5191e-12 2.1981e-12 1.82764e-11)
(8.52198e-13 1.60379e-12 1.30971e-11)
(6.43789e-13 1.12368e-12 9.60311e-12)
(4.9611e-13 8.30789e-13 7.21342e-12)
(2.43694e-13 6.42444e-13 5.52995e-12)
(1.06529e-12 2.11292e-13 4.6118e-12)
(0.000518461 4.06494e-06 2.41176e-05)
(0.00397065 3.33977e-07 1.38661e-05)
(6.03865e-06 3.16958e-09 2.75901e-08)
(1.61492e-09 3.81442e-11 3.41577e-11)
(-6.60163e-12 3.28512e-11 3.0034e-11)
(-6.25806e-12 2.84163e-11 3.3602e-11)
(-5.69e-12 2.35847e-11 3.14697e-11)
(-5.01048e-12 1.96221e-11 2.82578e-11)
(-4.37994e-12 1.6169e-11 2.44926e-11)
(-3.92945e-12 1.45589e-11 2.25818e-11)
(0.000516698 -1.55432e-06 1.5429e-05)
(0.00397586 -2.43715e-06 7.60014e-06)
(7.48533e-06 -2.43305e-09 1.6705e-08)
(4.19892e-09 9.05759e-11 1.96183e-10)
(-2.33414e-11 6.3688e-11 1.27389e-10)
(-1.78754e-11 4.60342e-11 9.23147e-11)
(-1.31388e-11 3.39505e-11 6.82738e-11)
(-9.85896e-12 2.56033e-11 5.14831e-11)
(-7.3917e-12 1.96529e-11 3.95767e-11)
(-7.51954e-12 1.57884e-11 3.1331e-11)
(0.000516951 -6.74686e-07 5.88674e-06)
(0.00398065 -7.21246e-09 9.51021e-07)
(7.65913e-06 -1.09106e-11 3.38967e-09)
(4.81586e-09 1.13603e-14 6.68606e-11)
(-5.34836e-12 3.69333e-15 4.28759e-11)
(-5.21412e-12 -5.87958e-15 3.00641e-11)
(-3.72805e-12 4.45492e-15 2.17062e-11)
(-2.73544e-12 4.55258e-15 1.60487e-11)
(-2.05222e-12 3.28776e-15 1.21079e-11)
(-1.72337e-12 5.25503e-15 9.75873e-12)
(0.000516758 -1.55982e-07 2.56614e-06)
(0.0039828 2.97754e-07 2.56072e-07)
(7.64253e-06 7.45044e-10 9.18009e-10)
(4.82912e-09 7.76467e-12 1.57819e-11)
(4.3359e-13 5.1929e-12 1.00097e-11)
(-1.27066e-12 3.79824e-12 6.98602e-12)
(-9.07554e-13 2.82526e-12 5.02116e-12)
(-6.67119e-13 2.14891e-12 3.71207e-12)
(-5.03807e-13 1.65931e-12 2.80253e-12)
(-4.20873e-13 1.39696e-12 2.28302e-12)
(0.000516587 1.47365e-07 1.06354e-06)
(0.00398379 2.39037e-07 2.39107e-07)
(7.63841e-06 6.91682e-10 7.00368e-10)
(4.81949e-09 7.40472e-12 8.60378e-12)
(1.08092e-12 4.7994e-12 5.61825e-12)
(-8.14947e-13 3.43396e-12 3.99011e-12)
(-5.89995e-13 2.52831e-12 2.92105e-12)
(-4.35771e-13 1.89672e-12 2.17954e-12)
(-3.33314e-13 1.45481e-12 1.66468e-12)
(-2.80902e-13 1.21954e-12 1.38615e-12)
(0.000516592 5.95771e-07 6.16517e-08)
(0.0039839 2.38086e-07 2.49915e-07)
(7.63911e-06 7.06103e-10 7.02448e-10)
(4.81965e-09 8.4072e-12 7.48938e-12)
(1.09856e-12 5.48623e-12 4.83956e-12)
(-8.07325e-13 3.92223e-12 3.47512e-12)
(-5.83073e-13 2.86875e-12 2.55246e-12)
(-4.31862e-13 2.14951e-12 1.91715e-12)
(-3.3021e-13 1.64079e-12 1.46709e-12)
(-2.79535e-13 1.37183e-12 1.23144e-12)
(0.000516792 1.30611e-06 -7.80405e-07)
(0.00398316 2.36802e-07 2.87691e-07)
(7.64481e-06 9.06877e-10 7.24164e-10)
(4.83071e-09 1.52034e-11 7.77348e-12)
(5.07363e-13 9.65768e-12 5.21837e-12)
(-1.22507e-12 6.76443e-12 3.8057e-12)
(-8.80876e-13 4.89311e-12 2.8423e-12)
(-6.47379e-13 3.62058e-12 2.15587e-12)
(-4.91639e-13 2.74398e-12 1.66907e-12)
(-4.1297e-13 2.24225e-12 1.40282e-12)
(0.00051707 3.29421e-06 -1.93894e-06)
(0.00398132 9.43447e-07 -3.40892e-08)
(7.66161e-06 3.41422e-09 -6.22369e-11)
(4.8137e-09 6.4298e-11 -2.59049e-13)
(-5.09646e-12 4.15472e-11 -1.17879e-13)
(-5.05693e-12 2.92639e-11 -6.62341e-14)
(-3.63873e-12 2.12494e-11 -2.59375e-14)
(-2.68124e-12 1.57676e-11 -1.42258e-14)
(-2.02101e-12 1.19527e-11 -4.92943e-15)
(-1.70599e-12 9.65901e-12 -5.21755e-15)
(0.000517075 1.00792e-05 -3.89565e-06)
(0.003977 7.60075e-06 -2.475e-06)
(7.48336e-06 1.63427e-08 -2.57298e-09)
(4.18379e-09 1.88305e-10 8.524e-11)
(-2.2534e-11 1.23482e-10 6.07028e-11)
(-1.74639e-11 9.03052e-11 4.43337e-11)
(-1.28963e-11 6.7144e-11 3.2978e-11)
(-9.74141e-12 5.09776e-11 2.5021e-11)
(-7.33458e-12 3.93647e-11 1.93039e-11)
(-7.53014e-12 3.13356e-11 1.56037e-11)
(0.00051939 1.35723e-05 -4.73755e-07)
(0.00397256 1.34033e-05 9.74412e-08)
(6.03393e-06 2.60152e-08 2.55224e-09)
(1.6299e-09 3.85999e-11 3.81781e-11)
(-6.96464e-12 3.23934e-11 3.26374e-11)
(-6.61542e-12 3.52912e-11 2.83087e-11)
(-5.98071e-12 3.29457e-11 2.37318e-11)
(-5.17991e-12 2.92209e-11 1.96668e-11)
(-4.51092e-12 2.51344e-11 1.61878e-11)
(-4.12046e-12 2.32219e-11 1.46457e-11)
(0.000513048 1.10588e-05 7.84913e-05)
(0.0039528 7.5834e-06 5.93575e-05)
(4.67694e-06 3.0098e-09 5.54005e-08)
(-1.16721e-09 -4.98205e-10 -2.53678e-09)
(3.45936e-10 -3.79832e-10 -1.86435e-09)
(2.57336e-10 -2.92594e-10 -1.38812e-09)
(1.9288e-10 -2.26451e-10 -1.04818e-09)
(1.47519e-10 -1.77768e-10 -8.05808e-10)
(1.15244e-10 -1.40916e-10 -6.28563e-10)
(8.67479e-11 -1.13554e-10 -4.98879e-10)
(0.000514207 -8.92685e-07 4.10874e-05)
(0.0039671 -4.35416e-08 2.72576e-05)
(7.06808e-06 -1.79338e-11 4.97906e-08)
(2.641e-09 7.45153e-12 -4.20333e-11)
(-1.76158e-11 4.87367e-12 -1.39674e-11)
(-1.67336e-11 3.18328e-12 1.30023e-11)
(-1.48884e-11 2.20691e-12 2.25466e-11)
(-1.28378e-11 1.49244e-12 2.57252e-11)
(-1.03892e-11 1.08938e-12 2.51979e-11)
(-1.90936e-11 7.5927e-13 2.57774e-11)
(0.00051642 -1.12326e-07 1.50792e-05)
(0.0039769 2.38725e-06 7.53023e-06)
(7.48657e-06 2.38065e-09 1.6642e-08)
(4.20295e-09 -8.89271e-11 1.99553e-10)
(-2.37174e-11 -6.26838e-11 1.29383e-10)
(-1.81109e-11 -4.53697e-11 9.3607e-11)
(-1.32713e-11 -3.35521e-11 6.90515e-11)
(-9.95893e-12 -2.53085e-11 5.20321e-11)
(-7.4535e-12 -1.9465e-11 3.99261e-11)
(-7.56602e-12 -1.56468e-11 3.1588e-11)
(0.000516638 8.44751e-07 6.71291e-06)
(0.00398076 2.80333e-06 4.09458e-06)
(7.50841e-06 3.90262e-09 6.82159e-09)
(4.44214e-09 -1.61505e-11 2.38896e-11)
(-1.22517e-12 -1.24438e-11 1.17972e-11)
(-2.26386e-12 -8.70944e-12 8.04594e-12)
(-1.62043e-12 -6.26578e-12 5.69326e-12)
(-1.18195e-12 -4.63291e-12 4.12087e-12)
(-7.90068e-13 -3.48728e-12 3.04456e-12)
(-1.39498e-12 -2.88912e-12 2.20073e-12)
(0.000516467 1.3404e-06 3.57733e-06)
(0.00398255 2.84585e-06 3.21917e-06)
(7.51966e-06 4.24138e-09 4.8932e-09)
(4.4837e-09 -3.75028e-12 2.85954e-12)
(9.10149e-13 -4.5247e-12 -4.38269e-13)
(-8.30862e-13 -3.2026e-12 -3.65615e-13)
(-5.95911e-13 -2.3411e-12 -3.13233e-13)
(-4.427e-13 -1.74785e-12 -2.46107e-13)
(-2.48844e-13 -1.33629e-12 -2.04022e-13)
(-7.70227e-13 -1.20429e-12 -3.25708e-13)
(0.000516396 2.06589e-06 1.86991e-06)
(0.0039831 3.21741e-06 2.85752e-06)
(7.51855e-06 4.88852e-09 4.24619e-09)
(4.48088e-09 2.39808e-12 -3.41747e-12)
(9.44015e-13 -7.05602e-13 -4.29924e-12)
(-8.01014e-13 -5.45617e-13 -3.08856e-12)
(-5.85635e-13 -4.10327e-13 -2.26332e-12)
(-4.31782e-13 -3.21242e-13 -1.70212e-12)
(-2.43789e-13 -2.48555e-13 -1.3017e-12)
(-7.64129e-13 -3.62236e-13 -1.18868e-12)
(0.000516465 3.4334e-06 6.18796e-07)
(0.00398251 4.02159e-06 2.77136e-06)
(7.5144e-06 6.7418e-09 3.86188e-09)
(4.44888e-09 2.20827e-11 -1.53886e-11)
(-1.04511e-12 1.08972e-11 -1.2026e-11)
(-2.14957e-12 7.49771e-12 -8.43469e-12)
(-1.54784e-12 5.36156e-12 -6.11867e-12)
(-1.14173e-12 3.91352e-12 -4.52667e-12)
(-7.60924e-13 2.92329e-12 -3.42968e-12)
(-1.37963e-12 2.11617e-12 -2.84107e-12)
(0.000516368 7.98542e-06 -1.10427e-06)
(0.00398024 7.41267e-06 2.26371e-06)
(7.49269e-06 1.6117e-08 2.28877e-09)
(4.20787e-09 1.88057e-10 -8.60848e-11)
(-2.24603e-11 1.23309e-10 -6.11142e-11)
(-1.74381e-11 9.02883e-11 -4.45091e-11)
(-1.2893e-11 6.71994e-11 -3.30247e-11)
(-9.75261e-12 5.10514e-11 -2.50207e-11)
(-7.34243e-12 3.93977e-11 -1.92933e-11)
(-7.54039e-12 3.13941e-11 -1.55709e-11)
(0.000515112 2.38887e-05 -3.49722e-06)
(0.00397319 2.60833e-05 -2.71313e-07)
(7.06412e-06 4.66759e-08 -3.08507e-10)
(2.70238e-09 -4.60718e-11 7.48332e-14)
(-1.50575e-11 -1.84583e-11 1.45597e-13)
(-1.51558e-11 9.80972e-12 6.33037e-15)
(-1.394e-11 2.06786e-11 -4.87445e-14)
(-1.21741e-11 2.41937e-11 -3.13404e-14)
(-9.90001e-12 2.39366e-11 1.50295e-14)
(-1.8961e-11 2.51879e-11 1.42926e-14)
(0.000516159 4.04481e-05 2.60783e-06)
(0.00396358 5.47099e-05 6.54231e-06)
(4.75019e-06 5.23966e-08 2.70901e-09)
(-8.92334e-10 -2.43363e-09 -4.80942e-10)
(3.35473e-10 -1.80619e-09 -3.6978e-10)
(2.52585e-10 -1.35964e-09 -2.88216e-10)
(1.90999e-10 -1.03629e-09 -2.25433e-10)
(1.4696e-10 -8.0223e-10 -1.78087e-10)
(1.15553e-10 -6.29202e-10 -1.41884e-10)
(8.69397e-11 -5.03252e-10 -1.15274e-10)
(0.00051794 -6.03038e-07 0.000121396)
(0.00392639 -4.89036e-08 9.84017e-05)
(-8.7632e-08 -1.04502e-11 4.43394e-08)
(-3.25591e-09 9.45633e-12 -6.05402e-09)
(9.61142e-10 6.21813e-12 -4.52705e-09)
(7.3592e-10 4.09204e-12 -3.43735e-09)
(5.66261e-10 2.84166e-12 -2.63135e-09)
(4.41508e-10 1.93082e-12 -2.04687e-09)
(3.47785e-10 1.41896e-12 -1.61081e-09)
(3.66621e-10 9.93002e-13 -1.29549e-09)
(0.000512273 -1.25495e-05 8.02427e-05)
(0.003954 -7.6589e-06 5.94236e-05)
(4.69817e-06 -3.05956e-09 5.55017e-08)
(-1.15976e-09 5.06819e-10 -2.52939e-09)
(3.42876e-10 3.85408e-10 -1.8591e-09)
(2.55233e-10 2.96279e-10 -1.38458e-09)
(1.91362e-10 2.2895e-10 -1.04547e-09)
(1.46459e-10 1.79498e-10 -8.03972e-10)
(1.14458e-10 1.42159e-10 -6.27094e-10)
(8.67678e-11 1.1444e-10 -4.97844e-10)
(0.000517483 -5.53513e-06 2.49463e-05)
(0.00397302 -3.71371e-07 1.37846e-05)
(6.05841e-06 -3.23422e-09 2.76147e-08)
(1.63423e-09 -4.40584e-11 5.44667e-11)
(-9.25518e-12 -3.68085e-11 4.31933e-11)
(-8.01252e-12 -3.10108e-11 4.2256e-11)
(-6.86677e-12 -2.54382e-11 3.73272e-11)
(-5.79939e-12 -2.08608e-11 3.22426e-11)
(-4.95162e-12 -1.71001e-11 2.73566e-11)
(-4.05614e-12 -1.52037e-11 2.45846e-11)
(0.00051802 -1.57691e-06 9.18408e-06)
(0.00397968 1.94759e-06 5.21395e-06)
(6.3152e-06 1.56493e-09 9.24966e-09)
(2.54942e-09 -2.6887e-11 1.38863e-11)
(1.22498e-12 -1.90535e-11 3.78619e-12)
(6.69493e-13 -1.3585e-11 2.5381e-12)
(5.29988e-13 -9.89241e-12 1.73237e-12)
(4.16493e-13 -7.39821e-12 1.20779e-12)
(1.95332e-13 -5.62987e-12 8.53241e-13)
(1.11496e-12 -4.67507e-12 3.49169e-13)
(0.000517628 6.66182e-08 4.37806e-06)
(0.00398257 2.54788e-06 3.40578e-06)
(6.41157e-06 3.426e-09 4.88301e-09)
(2.7491e-09 -1.04658e-11 -7.6626e-12)
(3.10957e-12 -8.74242e-12 -8.19636e-12)
(1.75423e-12 -6.22315e-12 -5.91562e-12)
(1.30519e-12 -4.57124e-12 -4.3885e-12)
(9.90333e-13 -3.41032e-12 -3.31507e-12)
(6.14107e-13 -2.60558e-12 -2.56295e-12)
(1.33697e-12 -2.29714e-12 -2.28694e-12)
(0.000517355 1.47332e-06 2.07955e-06)
(0.00398376 3.35195e-06 2.58534e-06)
(6.40942e-06 4.81501e-09 3.46292e-09)
(2.7475e-09 -8.18835e-12 -1.00112e-11)
(3.12497e-12 -8.41351e-12 -8.49608e-12)
(1.76974e-12 -6.10351e-12 -6.08704e-12)
(1.31891e-12 -4.49975e-12 -4.46664e-12)
(9.99199e-13 -3.40216e-12 -3.35107e-12)
(6.18044e-13 -2.61324e-12 -2.56117e-12)
(1.3192e-12 -2.3369e-12 -2.27012e-12)
(0.000517227 3.88171e-06 3.02195e-07)
(0.00398355 5.00284e-06 1.99943e-06)
(6.33631e-06 8.89529e-09 1.68214e-09)
(2.57325e-09 1.08034e-11 -2.5169e-11)
(1.53433e-12 2.15379e-12 -1.80686e-11)
(8.17564e-13 1.64621e-12 -1.30196e-11)
(6.23609e-13 1.19412e-12 -9.5821e-12)
(4.76113e-13 9.15339e-13 -7.20653e-12)
(2.32291e-13 6.64469e-13 -5.51141e-12)
(1.03982e-12 2.60202e-13 -4.61174e-12)
(0.000516594 1.25724e-05 -2.90419e-06)
(0.00398076 1.30196e-05 -2.74923e-07)
(6.10025e-06 2.56875e-08 -2.81683e-09)
(1.71788e-09 3.86478e-11 -3.82429e-11)
(-6.95352e-12 3.25689e-11 -3.27924e-11)
(-6.55805e-12 3.53503e-11 -2.8336e-11)
(-5.94223e-12 3.28896e-11 -2.36686e-11)
(-5.19461e-12 2.92182e-11 -1.95999e-11)
(-4.52621e-12 2.52058e-11 -1.61791e-11)
(-4.14234e-12 2.33165e-11 -1.46085e-11)
(0.000513179 4.4693e-05 -8.60494e-06)
(0.00396944 5.45302e-05 -7.32207e-06)
(4.82679e-06 5.24559e-08 -3.34949e-09)
(-8.25323e-10 -2.42593e-09 4.93178e-10)
(3.34305e-10 -1.80187e-09 3.76186e-10)
(2.5184e-10 -1.35768e-09 2.91271e-10)
(1.90664e-10 -1.03569e-09 2.26598e-10)
(1.46881e-10 -8.02238e-10 1.78235e-10)
(1.15539e-10 -6.29435e-10 1.41486e-10)
(8.69399e-11 -5.03702e-10 1.146e-10)
(0.000516641 6.32656e-05 -3.09598e-06)
(0.00395764 8.86738e-05 -6.15018e-07)
(3.834e-07 4.4093e-08 -3.17359e-10)
(-3.00962e-09 -5.77422e-09 1.48912e-11)
(9.24143e-10 -4.36428e-09 7.98083e-12)
(7.15716e-10 -3.35645e-09 3.83764e-12)
(5.57333e-10 -2.59866e-09 1.43861e-12)
(4.38288e-10 -2.03643e-09 1.55814e-13)
(3.46967e-10 -1.61213e-09 -5.1009e-13)
(3.6134e-10 -1.30798e-09 -8.95071e-13)
(5.49991e-07 -0.0034919 0.0174537)
(3.61377e-08 -1.66564e-06 0.0160048)
(3.01944e-08 -2.84968e-08 0.0147762)
(2.67821e-08 -1.92636e-08 0.0137228)
(2.39241e-08 -1.65871e-08 0.0128095)
(2.15057e-08 -1.44259e-08 0.0120102)
(1.94426e-08 -1.26562e-08 0.0113048)
(1.76684e-08 -1.23363e-08 0.0106777)
(1.57853e-08 -3.33777e-07 0.0101165)
(-8.33329e-08 -3.31158e-07 0.00961101)
(-1.05976e-07 -0.00350856 0.0175376)
(-5.39009e-09 -1.49819e-06 0.0162177)
(-2.82693e-09 -1.76467e-08 0.0150808)
(-9.89581e-10 -1.02292e-08 0.0140929)
(5.61013e-10 -8.55732e-09 0.0132264)
(1.88468e-09 -7.21537e-09 0.0124604)
(3.02602e-09 -6.1232e-09 0.0117782)
(4.01936e-09 -6.29946e-09 0.0111668)
(4.94801e-09 -3.08483e-07 0.0106157)
(2.20578e-08 -3.07865e-07 0.0101162)
(-1.04436e-07 -0.00352539 0.0176223)
(-3.6451e-09 -1.33575e-06 0.0164363)
(-2.52364e-09 -1.54889e-08 0.0153983)
(-1.93497e-09 -9.05636e-09 0.0144836)
(-1.47292e-09 -7.67752e-09 0.0136714)
(-1.10698e-09 -6.55096e-09 0.0129455)
(-8.15144e-10 -5.61894e-09 0.0122928)
(-5.80752e-10 -5.83556e-09 0.0117028)
(-3.3008e-10 -2.86169e-07 0.0111668)
(1.74054e-08 -2.85329e-07 0.0106774)
(-1.05381e-07 -0.00354238 0.0177079)
(-3.21274e-09 -1.17006e-06 0.0166609)
(-2.16529e-09 -1.33924e-08 0.0157294)
(-1.62644e-09 -7.90815e-09 0.0148965)
(-1.19582e-09 -6.79579e-09 0.0141474)
(-8.49238e-10 -5.86983e-09 0.01347)
(-5.68768e-10 -5.08984e-09 0.0128545)
(-3.40507e-10 -5.3347e-09 0.0122928)
(-8.78234e-11 -2.614e-07 0.0117781)
(1.90177e-08 -2.60349e-07 0.0113045)
(-1.06334e-07 -0.00355954 0.0177942)
(-2.75044e-09 -1.00103e-06 0.0168918)
(-1.76729e-09 -1.13412e-08 0.016075)
(-1.27128e-09 -6.76972e-09 0.0153337)
(-8.66413e-10 -5.89598e-09 0.0146577)
(-5.33934e-10 -5.15433e-09 0.0140387)
(-2.59813e-10 -4.51773e-09 0.01347)
(-3.27947e-11 -4.7771e-09 0.0129455)
(2.27378e-10 -2.3377e-07 0.0124603)
(2.09029e-08 -2.32538e-07 0.0120099)
(-1.07314e-07 -0.00357686 0.0178815)
(-2.2571e-09 -8.28485e-07 0.0171291)
(-1.326e-09 -9.31302e-09 0.0164362)
(-8.63194e-10 -5.62025e-09 0.0157973)
(-4.75651e-10 -4.95699e-09 0.0152061)
(-1.4939e-10 -4.38229e-09 0.0146576)
(1.26141e-10 -3.87907e-09 0.0141473)
(3.5973e-10 -4.1365e-09 0.0136714)
(6.36122e-10 -2.02761e-07 0.0132264)
(2.31304e-08 -2.01406e-07 0.0128092)
(-1.08323e-07 -0.00359436 0.0179696)
(-1.7309e-09 -6.52274e-07 0.0173732)
(-8.37051e-10 -7.28015e-09 0.016814)
(-3.94639e-10 -4.43222e-09 0.0162898)
(-1.23444e-11 -3.94919e-09 0.0157973)
(3.19679e-10 -3.52145e-09 0.0153336)
(6.08896e-10 -3.13897e-09 0.0148964)
(8.618e-10 -3.37347e-09 0.0144835)
(1.16867e-09 -1.67726e-07 0.0140928)
(2.57882e-08 -1.66351e-07 0.0137224)
(-1.09367e-07 -0.00361203 0.0180586)
(-1.16965e-09 -4.72209e-07 0.0176243)
(-2.94499e-10 -5.20809e-09 0.0172096)
(1.447e-10 -3.16883e-09 0.016814)
(5.3897e-10 -2.83159e-09 0.0164362)
(8.9476e-10 -2.52586e-09 0.016075)
(1.21687e-09 -2.24605e-09 0.0157293)
(1.50969e-09 -2.42894e-09 0.0153982)
(1.87027e-09 -1.27848e-07 0.0150807)
(2.89965e-08 -1.26625e-07 0.0147759)
(-1.09422e-07 -0.00362987 0.0181485)
(1.69936e-09 -2.88086e-07 0.0178828)
(4.06711e-09 -3.05012e-09 0.0176243)
(5.98595e-09 -1.77923e-09 0.0173731)
(7.86103e-09 -1.54542e-09 0.017129)
(9.69297e-09 -1.32719e-09 0.0168917)
(1.14852e-08 -1.12196e-09 0.0166608)
(1.32364e-08 -1.21134e-09 0.0164362)
(1.50671e-08 -8.20859e-08 0.0162176)
(4.65282e-08 -8.12945e-08 0.0160045)
(-5.46023e-08 -0.00364788 0.0182393)
(2.00374e-09 -9.0262e-08 0.0181491)
(3.83869e-09 9.49616e-09 0.0180594)
(5.43025e-09 9.98098e-09 0.0179707)
(6.98782e-09 1.01288e-08 0.0178829)
(8.50868e-09 1.02593e-08 0.0177959)
(9.99361e-09 1.03709e-08 0.0177097)
(1.14389e-08 1.04104e-08 0.0176244)
(1.29152e-08 -1.91636e-08 0.0175398)
(3.04919e-08 -2.41496e-08 0.0174561)
(3.74857e-07 -0.00349182 3.51112e-06)
(-6.56183e-09 -1.21921e-06 4.52801e-07)
(-7.48634e-09 4.81889e-09 3.38273e-07)
(-7.05058e-09 7.47645e-09 2.60022e-07)
(-6.59745e-09 6.18626e-09 2.00331e-07)
(-6.15683e-09 5.0897e-09 1.54181e-07)
(-5.74066e-09 4.17334e-09 1.18059e-07)
(-5.3548e-09 3.32683e-09 8.94752e-08)
(-5.00992e-09 -5.0813e-09 6.3547e-08)
(-2.58697e-09 -2.24754e-08 -7.87741e-07)
(-6.90308e-08 -0.00350852 3.13218e-06)
(3.41519e-09 -1.10655e-06 4.09853e-07)
(3.06972e-09 3.35974e-09 3.27689e-07)
(2.57461e-09 6.23201e-09 2.71541e-07)
(2.16006e-09 5.41354e-09 2.27621e-07)
(1.81406e-09 4.69424e-09 1.92818e-07)
(1.52434e-09 4.07652e-09 1.64902e-07)
(1.28061e-09 3.4702e-09 1.42257e-07)
(1.0931e-09 -5.04718e-09 1.20653e-07)
(5.4783e-09 -2.01852e-08 -7.18537e-07)
(-7.06887e-08 -0.00352537 2.80194e-06)
(3.16725e-09 -9.90357e-07 3.88882e-07)
(2.85534e-09 1.7627e-09 3.18216e-07)
(2.38153e-09 4.59037e-09 2.68875e-07)
(1.98265e-09 4.05487e-09 2.29368e-07)
(1.64749e-09 3.56751e-09 1.97398e-07)
(1.36481e-09 3.13729e-09 1.71266e-07)
(1.12537e-09 2.68692e-09 1.49703e-07)
(9.39759e-10 -5.9478e-09 1.28785e-07)
(5.28158e-09 -1.8805e-08 -6.93693e-07)
(-7.23833e-08 -0.00354238 2.47394e-06)
(2.80482e-09 -8.70924e-07 3.7039e-07)
(2.60787e-09 5.11206e-10 3.10491e-07)
(2.21305e-09 3.18079e-09 2.67723e-07)
(1.86993e-09 2.85393e-09 2.32643e-07)
(1.57299e-09 2.54429e-09 2.03623e-07)
(1.31548e-09 2.26262e-09 1.79424e-07)
(1.09163e-09 1.94031e-09 1.59088e-07)
(9.14037e-10 -6.75492e-09 1.39018e-07)
(5.18256e-09 -1.72906e-08 -6.57292e-07)
(-7.41057e-08 -0.00355956 2.14658e-06)
(2.41533e-09 -7.4824e-07 3.54784e-07)
(2.32677e-09 -4.03848e-10 3.04959e-07)
(2.00972e-09 2.00728e-09 2.68563e-07)
(1.72407e-09 1.82097e-09 2.37962e-07)
(1.46837e-09 1.63674e-09 2.12062e-07)
(1.23931e-09 1.46398e-09 1.90006e-07)
(1.03398e-09 1.24021e-09 1.7111e-07)
(8.66698e-10 -7.41325e-09 1.52127e-07)
(5.02857e-09 -1.5617e-08 -6.05448e-07)
(-7.58761e-08 -0.00357691 1.81993e-06)
(1.99685e-09 -6.22247e-07 3.42411e-07)
(2.00825e-09 -9.97846e-10 3.02145e-07)
(1.76602e-09 1.06937e-09 2.71991e-07)
(1.53838e-09 9.63515e-10 2.45994e-07)
(1.32622e-09 8.55717e-10 2.23469e-07)
(1.12862e-09 7.52546e-10 2.03866e-07)
(9.44776e-10 5.96709e-10 1.86727e-07)
(7.90197e-10 -7.84112e-09 1.69196e-07)
(4.80636e-09 -1.37484e-08 -5.32733e-07)
(-7.7712e-08 -0.00359443 1.49401e-06)
(1.54687e-09 -4.92868e-07 3.33813e-07)
(1.64825e-09 -1.29261e-09 3.02672e-07)
(1.47571e-09 3.60504e-10 2.78749e-07)
(1.30499e-09 2.85187e-10 2.57607e-07)
(1.13762e-09 2.09905e-10 2.38858e-07)
(9.73978e-10 1.3877e-10 2.2218e-07)
(8.14417e-10 2.01499e-11 2.07297e-07)
(6.75068e-10 -7.91636e-09 1.91787e-07)
(4.50119e-09 -1.16351e-08 -4.31495e-07)
(-7.96651e-08 -0.00361212 1.16872e-06)
(1.06335e-09 -3.59993e-07 3.29585e-07)
(1.2423e-09 -1.31753e-09 3.07277e-07)
(1.132e-09 -1.33491e-10 2.89766e-07)
(1.01482e-09 -2.16255e-10 2.73939e-07)
(8.91961e-10 -2.9559e-10 2.59602e-07)
(7.63903e-10 -3.68719e-10 2.46593e-07)
(6.31111e-10 -4.79237e-10 2.34764e-07)
(5.09758e-10 -7.45317e-09 2.22203e-07)
(4.10015e-09 -9.20528e-09 -2.90767e-07)
(-8.16384e-08 -0.00362999 8.43677e-07)
(7.28045e-10 -2.23381e-07 3.30255e-07)
(1.08686e-09 -1.1124e-09 3.16854e-07)
(1.14175e-09 -4.36043e-10 3.0623e-07)
(1.18211e-09 -5.51037e-10 2.9651e-07)
(1.20816e-09 -6.60922e-10 2.87612e-07)
(1.21957e-09 -7.63957e-10 2.79466e-07)
(1.21596e-09 -8.91175e-10 2.72007e-07)
(1.21358e-09 -6.15894e-09 2.63939e-07)
(4.62107e-09 -6.34807e-09 -9.44681e-08)
(-4.14359e-08 -0.00364803 5.30855e-07)
(1.14471e-10 -8.21835e-08 3.74778e-07)
(1.92699e-10 1.38491e-10 3.95802e-07)
(8.55468e-11 2.8897e-10 4.1743e-07)
(-5.91121e-11 1.39352e-10 4.39223e-07)
(-2.40781e-10 -8.38803e-12 4.61098e-07)
(-4.59335e-10 -1.53508e-10 4.83047e-07)
(-7.1439e-10 -3.05978e-10 5.04981e-07)
(-9.97914e-10 -2.67235e-09 5.2664e-07)
(4.0538e-10 -2.32208e-09 4.07706e-07)
(3.25209e-07 -0.00349176 8.17137e-07)
(8.41334e-10 -1.04694e-06 -1.27865e-07)
(-9.26778e-11 -7.20501e-09 -1.10789e-07)
(4.62173e-11 -3.1233e-09 -9.46035e-08)
(1.49133e-10 -2.71528e-09 -8.12076e-08)
(2.21757e-10 -2.38283e-09 -7.01647e-08)
(2.72907e-10 -2.0994e-09 -6.10416e-08)
(3.0854e-10 -1.86245e-09 -5.34788e-08)
(3.34215e-10 -1.78577e-09 -4.73967e-08)
(5.29537e-10 -2.42591e-09 -6.20145e-08)
(-6.03686e-08 -0.00350846 7.58124e-07)
(2.24372e-10 -9.50652e-07 -9.96904e-08)
(4.41964e-10 -5.86326e-09 -8.84424e-08)
(4.48197e-10 -2.27526e-09 -7.69664e-08)
(4.50392e-10 -2.00824e-09 -6.72592e-08)
(4.50451e-10 -1.79065e-09 -5.91016e-08)
(4.48519e-10 -1.60217e-09 -5.22449e-08)
(4.45165e-10 -1.44353e-09 -4.6474e-08)
(4.43041e-10 -1.4506e-09 -4.1818e-08)
(6.71748e-10 -2.12074e-09 -5.94729e-08)
(-6.2408e-08 -0.00352531 7.03249e-07)
(1.60049e-10 -8.50067e-07 -7.17908e-08)
(3.78534e-10 -4.68614e-09 -6.6458e-08)
(3.82601e-10 -1.58019e-09 -5.97426e-08)
(3.857e-10 -1.42893e-09 -5.37645e-08)
(3.88912e-10 -1.30525e-09 -4.85309e-08)
(3.91583e-10 -1.19493e-09 -4.39783e-08)
(3.93735e-10 -1.10107e-09 -4.00345e-08)
(3.9763e-10 -1.18316e-09 -3.68357e-08)
(6.53505e-10 -1.85979e-09 -5.76106e-08)
(-6.39632e-08 -0.00354233 6.47182e-07)
(9.37921e-11 -7.46445e-07 -4.57511e-08)
(3.14602e-10 -3.66242e-09 -4.50996e-08)
(3.17061e-10 -1.00632e-09 -4.23912e-08)
(3.2057e-10 -9.38495e-10 -3.97056e-08)
(3.25895e-10 -8.84169e-10 -3.71686e-08)
(3.32057e-10 -8.33667e-10 -3.4828e-08)
(3.38752e-10 -7.90941e-10 -3.2704e-08)
(3.4795e-10 -9.40289e-10 -3.10081e-08)
(6.30827e-10 -1.59805e-09 -5.49792e-08)
(-6.54273e-08 -0.00355952 5.86463e-07)
(3.21892e-11 -6.40072e-07 -2.18732e-08)
(2.50692e-10 -2.78435e-09 -2.46332e-08)
(2.50224e-10 -5.55771e-10 -2.51069e-08)
(2.52771e-10 -5.42609e-10 -2.51884e-08)
(2.58712e-10 -5.34992e-10 -2.50363e-08)
(2.66997e-10 -5.26469e-10 -2.47457e-08)
(2.77136e-10 -5.20969e-10 -2.4383e-08)
(2.90794e-10 -7.2831e-10 -2.42e-08)
(5.9944e-10 -1.33719e-09 -5.12691e-08)
(-6.69164e-08 -0.00357688 5.20783e-07)
(-2.82208e-11 -5.30837e-07 -3.99009e-10)
(1.8699e-10 -2.06057e-09 -5.37426e-09)
(1.82462e-10 -2.28245e-10 -8.14146e-09)
(1.82608e-10 -2.45343e-10 -1.03701e-08)
(1.87506e-10 -2.64664e-10 -1.21923e-08)
(1.96273e-10 -2.81532e-10 -1.37012e-08)
(2.08352e-10 -2.99812e-10 -1.49688e-08)
(2.25378e-10 -5.53428e-10 -1.62539e-08)
(5.56017e-10 -1.07915e-09 -4.5999e-08)
(-6.84251e-08 -0.0035944 4.49645e-07)
(-9.62767e-11 -4.18629e-07 1.82489e-08)
(1.23648e-10 -1.46491e-09 1.23057e-08)
(1.14223e-10 -1.98383e-11 8.18361e-09)
(1.10454e-10 -4.85057e-11 4.52507e-09)
(1.12548e-10 -7.87187e-11 1.25334e-09)
(1.19924e-10 -1.06879e-10 -1.69101e-09)
(1.3207e-10 -1.36204e-10 -4.35712e-09)
(1.50867e-10 -4.20053e-10 -6.98083e-09)
(4.9563e-10 -8.26774e-10 -3.83961e-08)
(-6.99326e-08 -0.0036121 3.72138e-07)
(-1.63637e-10 -3.03342e-07 3.37566e-08)
(6.09642e-11 -9.66589e-10 2.79703e-08)
(4.59226e-11 7.77348e-11 2.34623e-08)
(3.68342e-11 4.97607e-11 1.91863e-08)
(3.42918e-11 2.02189e-11 1.51202e-08)
(3.81463e-11 -8.52895e-12 1.12482e-08)
(4.81845e-11 -3.87799e-11 7.55609e-09)
(6.64009e-11 -3.28149e-10 3.85558e-09)
(4.10977e-10 -5.83719e-10 -2.71779e-08)
(-7.11233e-08 -0.00362998 2.85139e-07)
(-2.14207e-10 -1.8492e-07 4.57073e-08)
(1.60749e-11 -5.57601e-10 4.11084e-08)
(9.68871e-13 7.84522e-11 3.71884e-08)
(-8.83984e-12 5.67991e-11 3.3193e-08)
(-1.23058e-11 3.37104e-11 2.91342e-08)
(-9.02228e-12 1.06079e-11 2.50262e-08)
(1.31784e-12 -1.41573e-11 2.08812e-08)
(2.08355e-11 -2.65983e-10 1.6576e-08)
(3.44366e-10 -3.55675e-10 -1.01155e-08)
(-3.58761e-08 -0.00364803 1.74675e-07)
(-1.74449e-10 -6.42424e-08 5.66659e-08)
(-9.81346e-11 -1.60557e-10 5.62112e-08)
(-1.4869e-10 5.93898e-11 5.572e-08)
(-1.98044e-10 4.52712e-11 5.4814e-08)
(-2.44475e-10 3.0427e-11 5.3504e-08)
(-2.86589e-10 1.53461e-11 5.18041e-08)
(-3.23049e-10 -5.97371e-13 4.97255e-08)
(-3.51775e-10 -1.32339e-10 4.72347e-08)
(-2.18151e-10 -1.0473e-10 3.38504e-08)
(3.2301e-07 -0.0034918 -2.73264e-07)
(1.15909e-09 -1.03327e-06 -1.06837e-08)
(1.49902e-11 -4.00275e-09 -6.36341e-09)
(1.78011e-11 -2.54446e-10 -4.69482e-09)
(1.98599e-11 -1.85428e-10 -3.50383e-09)
(2.00525e-11 -1.42496e-10 -2.6614e-09)
(1.9272e-11 -1.1085e-10 -2.05138e-09)
(1.8035e-11 -8.73726e-11 -1.60324e-09)
(1.67219e-11 -7.13742e-11 -1.27713e-09)
(1.98909e-11 -7.61968e-11 -1.33041e-09)
(-6.01743e-08 -0.00350849 -2.37974e-07)
(-1.76005e-10 -9.37525e-07 -8.67003e-09)
(2.9578e-11 -3.58475e-09 -5.28817e-09)
(2.90749e-11 -1.98202e-10 -4.03692e-09)
(2.72382e-11 -1.47812e-10 -3.1074e-09)
(2.51818e-11 -1.16707e-10 -2.42777e-09)
(2.30673e-11 -9.31038e-11 -1.9205e-09)
(2.10252e-11 -7.51486e-11 -1.53749e-09)
(1.92425e-11 -6.33942e-11 -1.25331e-09)
(2.35619e-11 -7.25627e-11 -1.40357e-09)
(-6.22327e-08 -0.00352534 -2.04335e-07)
(-1.88487e-10 -8.37497e-07 -6.62678e-09)
(2.51902e-11 -3.16122e-09 -4.13972e-09)
(2.53226e-11 -1.46841e-10 -3.30624e-09)
(2.42989e-11 -1.12703e-10 -2.65136e-09)
(2.30495e-11 -9.21216e-11 -2.14965e-09)
(2.16698e-11 -7.58897e-11 -1.75917e-09)
(2.02619e-11 -6.3133e-11 -1.45309e-09)
(1.90186e-11 -5.55989e-11 -1.22024e-09)
(2.51274e-11 -6.87972e-11 -1.48886e-09)
(-6.37881e-08 -0.00354235 -1.7407e-07)
(-1.98456e-10 -7.34125e-07 -4.63517e-09)
(2.04947e-11 -2.73632e-09 -2.93023e-09)
(2.1083e-11 -1.00315e-10 -2.47894e-09)
(2.07505e-11 -7.9419e-11 -2.09482e-09)
(2.0253e-11 -6.77212e-11 -1.78065e-09)
(1.96164e-11 -5.80378e-11 -1.52173e-09)
(1.88991e-11 -5.01233e-11 -1.30824e-09)
(1.82846e-11 -4.68703e-11 -1.14136e-09)
(2.6563e-11 -6.36845e-11 -1.55848e-09)
(-6.51491e-08 -0.00355953 -1.44066e-07)
(-2.10782e-10 -6.28037e-07 -2.72162e-09)
(1.55226e-11 -2.31638e-09 -1.67247e-09)
(1.63089e-11 -6.00191e-11 -1.55428e-09)
(1.64714e-11 -4.91728e-11 -1.4255e-09)
(1.66109e-11 -4.44349e-11 -1.30167e-09)
(1.66813e-11 -4.01859e-11 -1.18599e-09)
(1.66852e-11 -3.65102e-11 -1.08037e-09)
(1.67818e-11 -3.74431e-11 -9.95634e-10)
(2.7642e-11 -5.69894e-11 -1.59462e-09)
(-6.65193e-08 -0.00357688 -1.14268e-07)
(-2.22095e-10 -5.19162e-07 -8.20438e-10)
(1.03189e-11 -1.88878e-09 -3.8512e-10)
(1.09994e-11 -2.73878e-11 -5.36344e-10)
(1.13917e-11 -2.33878e-11 -6.32302e-10)
(1.19698e-11 -2.34844e-11 -6.91128e-10)
(1.26344e-11 -2.32814e-11 -7.24061e-10)
(1.33282e-11 -2.29661e-11 -7.38692e-10)
(1.41871e-11 -2.77732e-11 -7.52786e-10)
(2.79877e-11 -4.84881e-11 -1.56506e-09)
(-6.78814e-08 -0.0035944 -8.46302e-08)
(-2.32184e-10 -4.07452e-07 9.72542e-10)
(4.93484e-12 -1.47148e-09 9.03869e-10)
(5.17466e-12 -3.79492e-12 5.65033e-10)
(5.44431e-12 -3.64976e-12 2.93092e-10)
(6.16312e-12 -6.42463e-12 7.47265e-11)
(7.20341e-12 -8.66859e-12 -1.01059e-10)
(8.45969e-12 -1.05919e-11 -2.42208e-10)
(1.00379e-11 -1.8598e-11 -3.67133e-10)
(2.69321e-11 -3.8084e-11 -1.41068e-09)
(-6.91337e-08 -0.0036121 -5.51065e-08)
(-2.4513e-10 -2.92895e-07 2.43045e-09)
(-5.66608e-13 -1.05092e-09 2.15745e-09)
(-1.11275e-12 9.63919e-12 1.73001e-09)
(-1.40084e-12 8.35268e-12 1.35258e-09)
(-9.72189e-13 4.92158e-12 1.02012e-09)
(5.8696e-14 1.84638e-12 7.26688e-10)
(1.58533e-12 -9.93128e-13 4.67512e-10)
(3.68692e-12 -1.10469e-11 2.28777e-10)
(2.32502e-11 -2.60365e-11 -1.01851e-09)
(-6.9414e-08 -0.00362997 -2.62512e-08)
(-2.51526e-10 -1.75774e-07 3.6177e-09)
(-5.36938e-12 -6.27976e-10 3.32339e-09)
(-6.83059e-12 1.22677e-11 2.92399e-09)
(-7.9551e-12 1.10956e-11 2.53822e-09)
(-8.1895e-12 8.47634e-12 2.16765e-09)
(-7.56774e-12 5.94932e-12 1.81218e-09)
(-6.13493e-12 3.45924e-12 1.47187e-09)
(-3.8026e-12 -6.57506e-12 1.13902e-09)
(1.67408e-11 -1.35249e-11 -1.64042e-10)
(-3.46168e-08 -0.00364803 -2.36835e-09)
(-1.33497e-10 -5.89962e-08 4.67654e-09)
(-1.56991e-11 -2.15876e-10 4.61892e-09)
(-2.1652e-11 7.16889e-12 4.47938e-09)
(-2.73515e-11 6.63514e-12 4.30893e-09)
(-3.23512e-11 5.50784e-12 4.11012e-09)
(-3.65066e-11 4.34202e-12 3.88473e-09)
(-3.96883e-11 3.11795e-12 3.63453e-09)
(-4.17198e-11 -2.74292e-12 3.35813e-09)
(-3.23132e-11 -1.21535e-12 2.51052e-09)
(3.4352e-07 -0.00349188 -8.05348e-07)
(1.27861e-09 -1.09639e-06 -3.63344e-09)
(5.0165e-12 -4.07439e-09 -2.535e-10)
(1.83646e-12 -2.68446e-11 -1.55927e-10)
(1.56399e-12 -1.18406e-11 -1.01086e-10)
(1.30963e-12 -8.23175e-12 -6.7421e-11)
(1.08371e-12 -5.86946e-12 -4.59875e-11)
(8.94118e-13 -4.27045e-12 -3.20226e-11)
(7.41487e-13 -3.17701e-12 -2.28827e-11)
(6.85269e-13 -2.17316e-12 -1.98906e-11)
(-6.32717e-08 -0.00350856 -7.40205e-07)
(-2.29252e-10 -9.9453e-07 -3.24077e-09)
(1.64791e-12 -3.68232e-09 -2.20072e-10)
(1.99537e-12 -2.4007e-11 -1.41891e-10)
(1.76921e-12 -1.09422e-11 -9.60694e-11)
(1.53833e-12 -7.88051e-12 -6.66311e-11)
(1.32483e-12 -5.79926e-12 -4.70995e-11)
(1.13679e-12 -4.3412e-12 -3.389e-11)
(9.78803e-13 -3.31881e-12 -2.49789e-11)
(9.43996e-13 -2.33555e-12 -2.33061e-11)
(-6.50848e-08 -0.00352539 -6.73987e-07)
(-2.35826e-10 -8.88522e-07 -2.82823e-09)
(1.51841e-12 -3.27624e-09 -1.80283e-10)
(1.97895e-12 -2.10268e-11 -1.22924e-10)
(1.82998e-12 -9.91541e-12 -8.77338e-11)
(1.65291e-12 -7.4256e-12 -6.38072e-11)
(1.47379e-12 -5.65972e-12 -4.71e-11)
(1.3051e-12 -4.3737e-12 -3.52653e-11)
(1.15635e-12 -3.44841e-12 -2.69856e-11)
(1.16309e-12 -2.49741e-12 -2.73768e-11)
(-6.64783e-08 -0.0035424 -6.24444e-07)
(-2.40444e-10 -7.7993e-07 -2.49085e-09)
(1.36933e-12 -2.86441e-09 -1.34356e-10)
(1.93532e-12 -1.79414e-11 -9.76396e-11)
(1.87143e-12 -8.72995e-12 -7.43472e-11)
(1.76072e-12 -6.81917e-12 -5.73199e-11)
(1.62986e-12 -5.39996e-12 -4.46314e-11)
(1.49372e-12 -4.32154e-12 -3.51003e-11)
(1.36578e-12 -3.52912e-12 -2.8139e-11)
(1.43851e-12 -2.62921e-12 -3.17998e-11)
(-6.79859e-08 -0.00355957 -5.69854e-07)
(-2.47205e-10 -6.68409e-07 -2.11877e-09)
(1.19861e-12 -2.44386e-09 -8.19009e-11)
(1.86246e-12 -1.48042e-11 -6.50018e-11)
(1.88923e-12 -7.40756e-12 -5.44133e-11)
(1.85758e-12 -6.05548e-12 -4.55963e-11)
(1.79151e-12 -4.9997e-12 -3.82609e-11)
(1.70535e-12 -4.15875e-12 -3.22001e-11)
(1.61499e-12 -3.53686e-12 -2.75174e-11)
(1.78902e-12 -2.70389e-12 -3.61529e-11)
(-6.95372e-08 -0.00357691 -5.08979e-07)
(-2.55394e-10 -5.53855e-07 -1.77157e-09)
(1.0308e-12 -2.01069e-09 -2.30953e-11)
(1.75821e-12 -1.17103e-11 -2.40102e-11)
(1.87742e-12 -5.98803e-12 -2.61316e-11)
(1.9364e-12 -5.1413e-12 -2.6498e-11)
(1.95317e-12 -4.44274e-12 -2.58449e-11)
(1.93919e-12 -3.85701e-12 -2.46178e-11)
(1.91011e-12 -3.44126e-12 -2.34826e-11)
(2.23429e-12 -2.67997e-12 -3.93714e-11)
(-7.11292e-08 -0.00359443 -4.40033e-07)
(-2.5718e-10 -4.36162e-07 -1.35852e-09)
(7.73808e-13 -1.56352e-09 4.19071e-11)
(1.62172e-12 -8.8199e-12 2.61655e-11)
(1.8289e-12 -4.5281e-12 1.26671e-11)
(1.98759e-12 -4.10011e-12 2.87077e-12)
(2.10693e-12 -3.72396e-12 -4.18914e-12)
(2.19177e-12 -3.38926e-12 -9.16652e-12)
(2.25728e-12 -3.20447e-12 -1.31031e-11)
(2.79482e-12 -2.49931e-12 -3.89743e-11)
(-7.27098e-08 -0.00361212 -3.60203e-07)
(-2.55118e-10 -3.15239e-07 -9.69168e-10)
(5.20197e-13 -1.12601e-09 1.09931e-10)
(1.45591e-12 -5.93057e-12 8.60633e-11)
(1.74108e-12 -3.10707e-12 6.42772e-11)
(2.00202e-12 -2.97447e-12 4.63355e-11)
(2.24073e-12 -2.85063e-12 3.15551e-11)
(2.45659e-12 -2.73421e-12 1.93934e-11)
(2.65847e-12 -2.77747e-12 9.02066e-12)
(3.48095e-12 -2.0891e-12 -2.91532e-11)
(-7.37187e-08 -0.00362998 -2.63511e-07)
(-2.56668e-10 -1.91163e-07 -5.7993e-10)
(3.23854e-13 -6.87088e-10 1.80077e-10)
(1.26935e-12 -3.42803e-12 1.55429e-10)
(1.62278e-12 -1.80735e-12 1.31153e-10)
(1.98703e-12 -1.83229e-12 1.08913e-10)
(2.36251e-12 -1.85846e-12 8.85568e-11)
(2.74699e-12 -1.88588e-12 6.99539e-11)
(3.14467e-12 -2.1005e-12 5.26999e-11)
(4.29211e-12 -1.38908e-12 3.89688e-12)
(-3.7005e-08 -0.00364803 -1.27415e-07)
(-1.29768e-10 -6.57688e-08 -9.32373e-11)
(-7.95963e-13 -2.455e-10 2.60302e-10)
(-6.68665e-13 -1.11841e-12 2.49045e-10)
(-8.11492e-13 -5.52618e-13 2.3561e-10)
(-9.08802e-13 -5.98691e-13 2.20916e-10)
(-9.49754e-13 -6.49442e-13 2.05092e-10)
(-9.26105e-13 -7.05824e-13 1.88274e-10)
(-8.32007e-13 -9.09511e-13 1.7063e-10)
(-1.84784e-13 -3.45305e-13 1.31396e-10)
(3.75818e-07 -0.00349194 -8.59709e-07)
(1.38306e-09 -1.19674e-06 -1.61293e-09)
(4.53581e-12 -4.40555e-09 -6.35807e-12)
(9.04571e-13 -1.80645e-11 -4.44813e-12)
(7.24401e-13 -5.01783e-12 -2.63835e-12)
(5.89665e-13 -3.62484e-12 -1.60037e-12)
(4.84336e-13 -2.69074e-12 -1.01517e-12)
(4.01517e-13 -2.03801e-12 -6.66591e-13)
(3.35573e-13 -1.55895e-12 -4.5129e-13)
(2.84296e-13 -7.16715e-13 -3.43687e-13)
(-6.76605e-08 -0.00350861 -8.11476e-07)
(-2.52178e-10 -1.08758e-06 -1.65076e-09)
(1.27905e-13 -3.99057e-09 -6.95364e-12)
(8.11284e-13 -1.70086e-11 -4.26753e-12)
(7.66488e-13 -5.16982e-12 -2.65368e-12)
(7.00719e-13 -3.8286e-12 -1.68142e-12)
(6.30537e-13 -2.90209e-12 -1.10585e-12)
(5.62828e-13 -2.23835e-12 -7.48788e-13)
(5.00402e-13 -1.73958e-12 -5.20149e-13)
(4.46451e-13 -8.04342e-13 -4.17969e-13)
(-6.87432e-08 -0.00352545 -7.56949e-07)
(-2.53974e-10 -9.73954e-07 -1.64473e-09)
(2.16969e-13 -3.55902e-09 -7.01989e-12)
(9.20957e-13 -1.58332e-11 -3.91061e-12)
(8.96272e-13 -5.28012e-12 -2.57269e-12)
(8.40977e-13 -4.01574e-12 -1.71518e-12)
(7.74345e-13 -3.11451e-12 -1.17925e-12)
(7.05326e-13 -2.45095e-12 -8.29913e-13)
(6.38531e-13 -1.93937e-12 -5.96566e-13)
(5.79214e-13 -9.02986e-13 -5.13096e-13)
(-6.95024e-08 -0.00354245 -7.43883e-07)
(-2.53765e-10 -8.60405e-07 -1.75995e-09)
(3.16128e-13 -3.13411e-09 -6.51525e-12)
(1.04656e-12 -1.45998e-11 -3.31155e-12)
(1.05064e-12 -5.32647e-12 -2.3353e-12)
(1.0137e-12 -4.16864e-12 -1.65947e-12)
(9.56689e-13 -3.3149e-12 -1.20635e-12)
(8.90817e-13 -2.66758e-12 -8.90576e-13)
(8.227e-13 -2.15348e-12 -6.70061e-13)
(7.60176e-13 -1.01061e-12 -6.31255e-13)
(-7.14805e-08 -0.00355962 -7.22451e-07)
(-2.59714e-10 -7.43135e-07 -1.83496e-09)
(3.97958e-13 -2.69683e-09 -5.50856e-12)
(1.19375e-12 -1.32093e-11 -2.40226e-12)
(1.23864e-12 -5.2778e-12 -1.86721e-12)
(1.23147e-12 -4.25895e-12 -1.44775e-12)
(1.19402e-12 -3.48084e-12 -1.13563e-12)
(1.13958e-12 -2.87106e-12 -8.97676e-13)
(1.07646e-12 -2.37056e-12 -7.18805e-13)
(1.01577e-12 -1.12309e-12 -7.7059e-13)
(-7.36576e-08 -0.00357695 -6.89505e-07)
(-2.66667e-10 -6.21834e-07 -1.88009e-09)
(4.60835e-13 -2.24602e-09 -3.87346e-12)
(1.36784e-12 -1.15997e-11 -1.0955e-12)
(1.46982e-12 -5.08987e-12 -1.06126e-12)
(1.50902e-12 -4.24513e-12 -9.7846e-13)
(1.50725e-12 -3.57462e-12 -8.81327e-13)
(1.47846e-12 -3.03002e-12 -7.81884e-13)
(1.43245e-12 -2.56637e-12 -6.94069e-13)
(1.3847e-12 -1.22861e-12 -9.12336e-13)
(-7.6115e-08 -0.00359446 -6.40222e-07)
(-2.73012e-10 -4.96097e-07 -1.8705e-09)
(6.11816e-13 -1.77944e-09 -1.10099e-12)
(1.57363e-12 -9.63452e-12 7.15786e-13)
(1.75504e-12 -4.70105e-12 2.34591e-13)
(1.86603e-12 -4.06184e-12 -8.27511e-14)
(1.92615e-12 -3.53407e-12 -2.90329e-13)
(1.9483e-12 -3.08864e-12 -4.08985e-13)
(1.943e-12 -2.69191e-12 -4.89127e-13)
(1.93025e-12 -1.30312e-12 -9.91711e-13)
(-7.90071e-08 -0.00361214 -5.66681e-07)
(-2.80024e-10 -3.6535e-07 -1.65444e-09)
(7.91881e-13 -1.30182e-09 1.32036e-12)
(1.82003e-12 -7.59146e-12 3.09928e-12)
(2.11176e-12 -4.01935e-12 2.18456e-12)
(2.33173e-12 -3.60692e-12 1.4642e-12)
(2.49495e-12 -3.25249e-12 9.08049e-13)
(2.61212e-12 -2.94141e-12 4.84789e-13)
(2.69234e-12 -2.65011e-12 1.41616e-13)
(2.75985e-12 -1.29785e-12 -8.12902e-13)
(-8.26565e-08 -0.00363 -4.49945e-07)
(-2.89274e-10 -2.28701e-07 -1.28143e-09)
(8.83476e-13 -8.08877e-10 5.05469e-12)
(2.0856e-12 -5.03848e-12 6.16804e-12)
(2.53038e-12 -2.91442e-12 5.04421e-12)
(2.91506e-12 -2.72478e-12 4.0452e-12)
(3.2492e-12 -2.55528e-12 3.16677e-12)
(3.5382e-12 -2.40081e-12 2.3985e-12)
(3.77713e-12 -2.24638e-12 1.73869e-12)
(3.93051e-12 -1.10731e-12 4.29828e-13)
(-4.23594e-08 -0.00364804 -2.34113e-07)
(-1.47174e-10 -8.4571e-08 -6.66206e-10)
(4.25175e-13 -2.99283e-10 9.71506e-12)
(1.05383e-12 -1.92547e-12 1.05233e-11)
(1.31182e-12 -1.18555e-12 9.80446e-12)
(1.54881e-12 -1.15812e-12 9.03796e-12)
(1.76791e-12 -1.13595e-12 8.25185e-12)
(1.96112e-12 -1.15169e-12 7.80346e-12)
(1.93444e-12 -1.3587e-12 1.37764e-11)
(5.12022e-13 -4.97816e-13 5.74489e-11)
(3.97411e-07 -0.00349178 7.2215e-07)
(1.32493e-09 -1.26978e-06 1.02413e-08)
(3.46804e-12 -4.40613e-09 5.16553e-11)
(8.72817e-13 -1.58215e-11 -6.80504e-13)
(7.03818e-13 -4.88029e-12 -5.86016e-13)
(5.75731e-13 -3.55638e-12 -4.24173e-13)
(4.75208e-13 -2.65543e-12 -3.19182e-13)
(3.9584e-13 -2.02116e-12 -2.44156e-13)
(3.31956e-13 -1.55128e-12 -1.87756e-13)
(2.81583e-13 -7.07194e-13 -1.51639e-13)
(-7.24768e-08 -0.00350849 6.4084e-07)
(-2.9755e-10 -1.15812e-06 8.84826e-09)
(-8.06003e-14 -4.02451e-09 4.38642e-11)
(7.6906e-13 -1.53091e-11 -6.32213e-13)
(7.36045e-13 -5.04052e-12 -5.45716e-13)
(6.79054e-13 -3.75803e-12 -4.0657e-13)
(6.15306e-13 -2.86246e-12 -3.14702e-13)
(5.52141e-13 -2.21675e-12 -2.452e-13)
(4.92886e-13 -1.72797e-12 -1.9376e-13)
(4.40142e-13 -7.9039e-13 -1.59495e-13)
(-7.18477e-08 -0.00352535 5.64047e-07)
(-2.88698e-10 -1.04105e-06 7.37335e-09)
(3.89796e-14 -3.61898e-09 3.48222e-11)
(8.80399e-13 -1.46244e-11 -5.73827e-13)
(8.65332e-13 -5.16621e-12 -4.98277e-13)
(8.17763e-13 -3.9478e-12 -3.83209e-13)
(7.57103e-13 -3.07252e-12 -3.04781e-13)
(6.92524e-13 -2.42611e-12 -2.45355e-13)
(6.29083e-13 -1.92403e-12 -1.97847e-13)
(5.70463e-13 -8.84256e-13 -1.68491e-13)
(-7.09022e-08 -0.00354238 4.5718e-07)
(-2.81288e-10 -9.29737e-07 6.4315e-09)
(1.37418e-13 -3.23293e-09 3.01592e-11)
(1.00973e-12 -1.3768e-11 -4.89011e-13)
(1.02102e-12 -5.23526e-12 -4.42028e-13)
(9.901e-13 -4.10874e-12 -3.51988e-13)
(9.37968e-13 -3.27477e-12 -2.87583e-13)
(8.76194e-13 -2.64147e-12 -2.40485e-13)
(8.11352e-13 -2.13554e-12 -2.01814e-13)
(7.48419e-13 -9.87505e-13 -1.77351e-13)
(-7.32809e-08 -0.00355957 3.4252e-07)
(-2.85301e-10 -8.13799e-07 5.41514e-09)
(2.56822e-13 -2.82858e-09 2.52724e-11)
(1.16354e-12 -1.27262e-11 -3.90714e-13)
(1.21283e-12 -5.21708e-12 -3.72947e-13)
(1.20937e-12 -4.21441e-12 -3.09405e-13)
(1.17531e-12 -3.4473e-12 -2.62564e-13)
(1.12402e-12 -2.84701e-12 -2.30364e-13)
(1.06354e-12 -2.35196e-12 -2.0323e-13)
(1.00067e-12 -1.09627e-12 -1.91832e-13)
(-7.61389e-08 -0.00357693 2.21119e-07)
(-2.90298e-10 -6.9251e-07 4.20485e-09)
(3.92353e-13 -2.40436e-09 1.9356e-11)
(1.34671e-12 -1.14522e-11 -2.76233e-13)
(1.45059e-12 -5.06539e-12 -2.85857e-13)
(1.49132e-12 -4.22195e-12 -2.52421e-13)
(1.4913e-12 -3.55378e-12 -2.28489e-13)
(1.46399e-12 -3.013e-12 -2.12269e-13)
(1.41965e-12 -2.55016e-12 -2.02812e-13)
(1.36637e-12 -1.20029e-12 -2.14415e-13)
(-7.97501e-08 -0.00359446 9.54547e-08)
(-2.9816e-10 -5.64798e-07 2.83441e-09)
(5.45989e-13 -1.95372e-09 1.32581e-11)
(1.56808e-12 -9.85272e-12 -1.35868e-13)
(1.74924e-12 -4.71269e-12 -1.70748e-13)
(1.85921e-12 -4.06306e-12 -1.73542e-13)
(1.91803e-12 -3.52995e-12 -1.76717e-13)
(1.93921e-12 -3.08326e-12 -1.85613e-13)
(1.93401e-12 -2.68214e-12 -2.04544e-13)
(1.91144e-12 -1.27864e-12 -2.63956e-13)
(-8.48885e-08 -0.00361215 -2.95521e-08)
(-3.08724e-10 -4.28976e-07 1.62516e-09)
(7.05806e-13 -1.46921e-09 8.22265e-12)
(1.83662e-12 -7.86796e-12 1.17703e-14)
(2.12799e-12 -4.0641e-12 -3.69929e-14)
(2.34548e-12 -3.63622e-12 -6.93021e-14)
(2.5052e-12 -3.27202e-12 -1.00835e-13)
(2.6192e-12 -2.95274e-12 -1.40238e-13)
(2.69569e-12 -2.6486e-12 -2.11583e-13)
(2.73465e-12 -1.28289e-12 -3.77061e-13)
(-9.3835e-08 -0.00363002 -1.27167e-07)
(-3.25029e-10 -2.81356e-07 6.09483e-10)
(8.68232e-13 -9.51294e-10 2.58368e-12)
(2.12854e-12 -5.33369e-12 1.8362e-13)
(2.57696e-12 -2.971e-12 1.34814e-13)
(2.96178e-12 -2.76808e-12 7.46435e-14)
(3.29263e-12 -2.58834e-12 1.3081e-14)
(3.5548e-12 -2.43007e-12 -2.32262e-14)
(3.3724e-12 -2.29244e-12 4.54681e-13)
(6.7912e-13 -1.04255e-12 5.06553e-12)
(-4.99336e-08 -0.00364805 -8.29295e-08)
(-1.69465e-10 -1.1263e-07 1.62464e-10)
(4.98435e-13 -3.82725e-10 -2.0668e-12)
(1.14738e-12 -2.15952e-12 3.99627e-13)
(1.42531e-12 -1.21807e-12 3.71186e-13)
(1.67817e-12 -1.18811e-12 3.24377e-13)
(1.895e-12 -1.23472e-12 7.67615e-13)
(1.68399e-12 -2.54209e-12 1.35947e-11)
(-5.68347e-12 -1.05181e-11 2.16675e-10)
(-5.8714e-11 3.16253e-13 1.48706e-09)
(3.12759e-07 -0.00349069 7.24272e-06)
(3.89325e-10 -1.04279e-06 4.49627e-08)
(-5.895e-13 -2.1063e-09 1.21362e-10)
(8.58174e-13 -5.03812e-12 -3.48591e-13)
(7.02298e-13 -4.87829e-12 -4.57286e-13)
(5.75604e-13 -3.58303e-12 -3.58461e-13)
(4.76682e-13 -2.67894e-12 -2.97995e-13)
(3.9872e-13 -2.04437e-12 -2.56647e-13)
(3.36474e-13 -1.57509e-12 -2.41833e-13)
(2.88282e-13 -7.29597e-13 -2.47028e-13)
(-7.46798e-08 -0.00350756 6.83747e-06)
(-3.32678e-10 -9.51769e-07 4.06256e-08)
(1.59284e-13 -2.0262e-09 1.11293e-10)
(7.59112e-13 -6.11424e-12 -2.29412e-13)
(7.28074e-13 -5.03246e-12 -3.85071e-13)
(6.74259e-13 -3.77482e-12 -3.16741e-13)
(6.12974e-13 -2.87938e-12 -2.77098e-13)
(5.5208e-13 -2.2357e-12 -2.51984e-13)
(4.95917e-13 -1.74997e-12 -2.59701e-13)
(4.47427e-13 -8.17168e-13 -3.02932e-13)
(-7.31323e-08 -0.00352457 6.3624e-06)
(-3.25351e-10 -8.55386e-07 3.43441e-08)
(1.6676e-13 -1.94104e-09 9.50522e-11)
(8.68584e-13 -7.30897e-12 -1.2105e-13)
(8.56342e-13 -5.15174e-12 -2.93078e-13)
(8.11751e-13 -3.9551e-12 -2.60488e-13)
(7.53548e-13 -3.08276e-12 -2.47819e-13)
(6.92025e-13 -2.4403e-12 -2.45281e-13)
(6.32905e-13 -1.94499e-12 -2.86953e-13)
(5.8158e-13 -9.18014e-13 -3.96461e-13)
(-7.15179e-08 -0.0035417 6.27982e-06)
(-3.4853e-10 -7.64417e-07 3.26351e-08)
(-9.88458e-16 -1.73893e-09 8.96724e-11)
(9.9637e-13 -7.37848e-12 -6.4908e-15)
(1.01045e-12 -5.2119e-12 -1.75625e-13)
(9.82306e-13 -4.10752e-12 -1.82292e-13)
(9.33118e-13 -3.27808e-12 -2.05443e-13)
(8.75009e-13 -2.65016e-12 -2.35202e-13)
(8.16576e-13 -2.1556e-12 -3.28639e-13)
(7.66322e-13 -1.03189e-12 -5.49708e-13)
(-7.24247e-08 -0.003559 6.14083e-06)
(-3.31317e-10 -6.71147e-07 3.10832e-08)
(1.998e-13 -1.53561e-09 8.41598e-11)
(1.14986e-12 -7.31018e-12 1.12994e-13)
(1.20021e-12 -5.18644e-12 -3.04769e-14)
(1.1995e-12 -4.2045e-12 -7.78656e-14)
(1.16905e-12 -3.44373e-12 -1.44949e-13)
(1.12229e-12 -2.85038e-12 -2.22663e-13)
(1.07178e-12 -2.37113e-12 -4.05944e-13)
(1.03106e-12 -1.1563e-12 -8.22426e-13)
(-7.35535e-08 -0.00357647 5.92255e-06)
(-3.10348e-10 -5.75066e-07 2.95228e-08)
(4.20112e-13 -1.35478e-09 7.51098e-11)
(1.33315e-12 -7.20971e-12 2.67992e-13)
(1.43611e-12 -5.02984e-12 1.50061e-13)
(1.4793e-12 -4.20416e-12 6.02447e-14)
(1.48317e-12 -3.54338e-12 -5.98103e-14)
(1.46235e-12 -3.01102e-12 -2.10018e-13)
(1.43469e-12 -2.5694e-12 -5.63624e-13)
(1.42266e-12 -1.2872e-12 -1.36874e-12)
(-7.51166e-08 -0.00359412 5.58789e-06)
(-3.09217e-10 -4.75284e-07 2.76775e-08)
(6.8023e-13 -1.18584e-09 5.91937e-11)
(1.55428e-12 -6.74225e-12 4.17194e-13)
(1.73216e-12 -4.67677e-12 3.65703e-13)
(1.84415e-12 -4.04066e-12 2.36024e-13)
(1.90771e-12 -3.51396e-12 5.76176e-14)
(1.93896e-12 -3.07503e-12 -2.09334e-13)
(1.96497e-12 -2.70107e-12 -9.15755e-13)
(2.02268e-12 -1.4079e-12 -2.51126e-12)
(-7.85263e-08 -0.00361193 5.07017e-06)
(-3.22498e-10 -3.70253e-07 2.48627e-08)
(1.08009e-12 -9.65846e-10 3.60287e-11)
(1.82193e-12 -5.90316e-12 5.88919e-13)
(2.10682e-12 -4.02962e-12 6.46514e-13)
(2.32592e-12 -3.60885e-12 4.77917e-13)
(2.49192e-12 -3.24871e-12 2.10398e-13)
(2.61923e-12 -2.93535e-12 -2.61099e-13)
(2.71957e-12 -2.66188e-12 -1.73679e-12)
(2.60304e-12 -1.4734e-12 -4.91151e-12)
(-9.01525e-08 -0.0036299 4.22499e-06)
(-3.51434e-10 -2.53679e-07 2.07929e-08)
(1.57648e-12 -6.8498e-10 -1.22572e-12)
(2.11354e-12 -4.60789e-12 7.76235e-13)
(2.55134e-12 -2.94367e-12 1.01304e-12)
(2.93585e-12 -2.74053e-12 8.01156e-13)
(3.24246e-12 -2.5701e-12 4.76018e-13)
(2.74876e-12 -2.52246e-12 6.01326e-13)
(-9.54444e-12 -3.2029e-12 9.90737e-12)
(-8.91972e-11 -1.39882e-13 9.00625e-11)
(-5.19616e-08 -0.00364802 2.79807e-06)
(-2.22388e-10 -1.01053e-07 1.41076e-08)
(1.4524e-12 -2.67186e-10 -5.7438e-11)
(1.13345e-12 -2.46393e-12 1.02145e-12)
(1.39767e-12 -1.20862e-12 1.45614e-12)
(1.6342e-12 -1.27196e-12 1.80569e-12)
(1.34631e-12 -3.79632e-12 1.75083e-11)
(-1.20114e-11 -4.326e-11 3.78346e-10)
(-2.17685e-10 -2.69237e-10 5.18575e-09)
(-1.54246e-09 -7.51003e-12 3.26321e-08)
(-1.25114e-07 -0.00348807 1.87493e-05)
(-2.03415e-09 2.11175e-07 4.48846e-08)
(-5.31666e-12 5.60143e-09 1.56906e-11)
(7.68527e-13 1.43247e-11 3.55954e-12)
(6.38501e-13 -4.42273e-12 2.14695e-12)
(5.28872e-13 -3.32646e-12 1.22064e-12)
(4.50928e-13 -2.5551e-12 4.64581e-13)
(3.98247e-13 -2.03448e-12 -2.17527e-13)
(3.88474e-13 -1.74361e-12 -1.31311e-12)
(4.4432e-13 -1.2385e-12 -3.19115e-12)
(-5.91419e-08 -0.00350523 1.80452e-05)
(1.89868e-10 2.3715e-07 4.64656e-08)
(2.12443e-12 4.92392e-09 4.06262e-11)
(6.66064e-13 1.18958e-11 4.12149e-12)
(6.47283e-13 -4.53671e-12 2.67583e-12)
(6.12917e-13 -3.48572e-12 1.60632e-12)
(5.76929e-13 -2.73182e-12 6.81094e-13)
(5.49552e-13 -2.2159e-12 -2.09516e-13)
(5.67905e-13 -1.94932e-12 -1.78252e-12)
(6.76531e-13 -1.48027e-12 -4.5968e-12)
(-7.61791e-08 -0.00352257 1.70433e-05)
(-2.64004e-11 2.54962e-07 4.98595e-08)
(1.67265e-12 3.86468e-09 4.71933e-11)
(7.69878e-13 8.26369e-12 4.64898e-12)
(7.59111e-13 -4.62395e-12 3.34059e-12)
(7.35478e-13 -3.63008e-12 2.10307e-12)
(7.07873e-13 -2.90806e-12 9.64445e-13)
(6.89896e-13 -2.40923e-12 -2.17511e-13)
(7.40228e-13 -2.18691e-12 -2.55186e-12)
(9.25281e-13 -1.79215e-12 -6.81338e-12)
(-9.81075e-08 -0.00353982 1.7751e-05)
(-3.87991e-10 3.46885e-07 5.51377e-08)
(1.56212e-12 3.79419e-09 -1.38188e-12)
(8.92677e-13 7.3916e-12 5.07746e-12)
(8.93199e-13 -4.66245e-12 4.17798e-12)
(8.86998e-13 -3.74424e-12 2.74825e-12)
(8.74488e-13 -3.07273e-12 1.3369e-12)
(8.75084e-13 -2.60622e-12 -2.60267e-13)
(9.78589e-13 -2.44277e-12 -3.72401e-12)
(1.28647e-12 -2.17165e-12 -1.02105e-11)
(-9.4733e-08 -0.00355725 1.85241e-05)
(-4.56571e-10 4.31969e-07 6.04946e-08)
(2.94772e-12 3.78213e-09 -8.53006e-11)
(1.03956e-12 6.69707e-12 5.43397e-12)
(1.05824e-12 -4.62726e-12 5.23187e-12)
(1.07958e-12 -3.80571e-12 3.59174e-12)
(1.09308e-12 -3.20436e-12 1.8317e-12)
(1.12802e-12 -2.78686e-12 -3.81061e-13)
(1.32798e-12 -2.7107e-12 -5.70792e-12)
(1.8378e-12 -2.63482e-12 -1.56267e-11)
(-8.86029e-08 -0.00357488 1.93742e-05)
(-5.02963e-10 5.06427e-07 6.63139e-08)
(5.30686e-12 3.79544e-09 -2.1093e-10)
(1.21809e-12 5.48488e-12 5.72771e-12)
(1.26261e-12 -4.47149e-12 6.57862e-12)
(1.32698e-12 -3.77571e-12 4.70962e-12)
(1.38433e-12 -3.26764e-12 2.49305e-12)
(1.48109e-12 -2.9129e-12 -6.70312e-13)
(1.86288e-12 -2.94966e-12 -9.27888e-12)
(2.74026e-12 -3.23725e-12 -2.51807e-11)
(-7.75164e-08 -0.00359272 2.03237e-05)
(-4.99941e-10 5.63929e-07 7.27148e-08)
(8.56921e-12 3.78461e-09 -3.89776e-10)
(1.43636e-12 3.18648e-12 6.01641e-12)
(1.51776e-12 -4.14669e-12 8.31459e-12)
(1.64831e-12 -3.59562e-12 6.20873e-12)
(1.77928e-12 -3.20117e-12 3.37106e-12)
(1.98831e-12 -2.90568e-12 -1.34215e-12)
(2.72779e-12 -3.06648e-12 -1.6158e-11)
(4.29653e-12 -4.01929e-12 -4.30914e-11)
(-5.62495e-08 -0.00361076 2.14596e-05)
(-4.47175e-10 5.92838e-07 7.95323e-08)
(1.31697e-11 3.62015e-09 -6.40941e-10)
(1.69963e-12 -1.30582e-13 6.35921e-12)
(1.83849e-12 -3.57055e-12 1.05761e-11)
(2.07118e-12 -3.17036e-12 8.24576e-12)
(2.32169e-12 -2.89554e-12 4.52e-12)
(2.67708e-12 -2.60729e-12 -2.93106e-12)
(3.32744e-12 -2.83129e-12 -3.00956e-11)
(5.17931e-13 -4.90203e-12 -7.76472e-11)
(-1.61838e-08 -0.00362905 2.27595e-05)
(-3.11751e-10 5.68059e-07 8.67443e-08)
(1.93841e-11 3.25405e-09 -9.69402e-10)
(1.98476e-12 -5.62725e-12 6.70329e-12)
(2.21353e-12 -2.62e-12 1.35585e-11)
(2.56608e-12 -2.36018e-12 1.1101e-11)
(2.01342e-12 -2.35278e-12 7.33372e-12)
(-1.94116e-11 -4.31493e-12 9.46169e-12)
(-3.11295e-10 -2.01257e-11 1.00823e-10)
(-1.99384e-09 -8.52791e-13 7.83255e-10)
(-2.76057e-08 -0.0036476 2.41242e-05)
(-4.89518e-10 4.48298e-07 9.44405e-08)
(2.2211e-11 2.44261e-09 -1.39336e-09)
(1.0113e-12 -1.40098e-11 7.00975e-12)
(9.85657e-13 -1.22435e-12 1.78427e-11)
(8.28318e-13 -4.26657e-12 2.75718e-11)
(-1.36441e-11 -7.56984e-11 4.23382e-10)
(-3.47842e-10 -1.00778e-09 8.25946e-09)
(-4.47357e-09 -5.9477e-09 9.27633e-08)
(-2.7099e-08 -1.28188e-09 5.01199e-07)
(-9.43791e-07 -0.00348863 7.88148e-06)
(-2.21348e-09 2.75847e-06 -6.35878e-08)
(2.69871e-12 7.80976e-09 -3.19268e-10)
(2.11053e-13 3.20526e-12 2.6612e-11)
(1.78997e-13 -1.0689e-12 1.69185e-11)
(1.68594e-13 -1.04424e-12 1.08003e-11)
(2.48489e-13 -1.26957e-12 4.9069e-12)
(4.81304e-13 -1.84572e-12 -2.46231e-12)
(1.1398e-12 -3.34511e-12 -1.56463e-11)
(2.99715e-12 -9.22576e-12 -4.55838e-11)
(3.68522e-08 -0.00350557 7.79352e-06)
(-2.11382e-10 2.71005e-06 -8.52793e-09)
(1.75746e-12 8.16303e-09 -1.73833e-10)
(1.50587e-13 7.29033e-12 2.65885e-11)
(1.2762e-13 -1.10896e-12 1.95667e-11)
(1.88433e-13 -1.03712e-12 1.29358e-11)
(3.31323e-13 -1.26508e-12 6.19095e-12)
(6.6411e-13 -1.84473e-12 -2.78074e-12)
(1.59803e-12 -3.53607e-12 -2.02865e-11)
(3.84194e-12 -1.01602e-11 -5.55449e-11)
(-4.92755e-08 -0.00352268 7.78676e-06)
(-1.03549e-09 2.60653e-06 5.54072e-08)
(4.70052e-12 8.90263e-09 -3.5358e-11)
(3.06259e-13 6.52965e-12 2.51605e-11)
(1.57652e-13 -1.17868e-12 2.27485e-11)
(2.27407e-13 -1.01311e-12 1.55957e-11)
(4.02464e-13 -1.23707e-12 7.80821e-12)
(8.33893e-13 -1.78473e-12 -3.3514e-12)
(2.13455e-12 -3.69624e-12 -2.73094e-11)
(4.97471e-12 -1.15167e-11 -7.0963e-11)
(-1.56691e-07 -0.00353976 8.13898e-06)
(-1.75299e-09 2.84187e-06 1.20749e-07)
(8.83814e-12 1.01385e-08 7.27922e-11)
(5.15743e-13 -5.94199e-12 2.21e-11)
(1.94791e-13 -1.29702e-12 2.65387e-11)
(2.74891e-13 -9.67861e-13 1.89125e-11)
(4.93658e-13 -1.16896e-12 9.86785e-12)
(1.07183e-12 -1.65032e-12 -4.38963e-12)
(2.90418e-12 -3.70356e-12 -3.74373e-11)
(6.61354e-12 -1.31079e-11 -9.33283e-11)
(-1.66627e-07 -0.00355701 8.57291e-06)
(-2.38045e-09 3.09026e-06 1.91542e-07)
(1.23926e-11 1.13598e-08 1.52265e-10)
(7.93245e-13 -2.5924e-11 1.6806e-11)
(2.39228e-13 -1.44011e-12 3.12329e-11)
(3.36353e-13 -8.88998e-13 2.30909e-11)
(6.1628e-13 -1.03096e-12 1.25109e-11)
(1.41963e-12 -1.33251e-12 -6.25951e-12)
(4.07851e-12 -3.40903e-12 -5.27416e-11)
(8.98255e-12 -1.47397e-11 -1.24082e-10)
(-1.79136e-07 -0.00357443 9.11225e-06)
(-3.0901e-09 3.3543e-06 2.68703e-07)
(1.71022e-11 1.26253e-08 2.02989e-10)
(1.15568e-12 -5.43976e-11 8.59844e-12)
(2.94769e-13 -1.60875e-12 3.70062e-11)
(4.16521e-13 -7.53716e-13 2.84158e-11)
(7.85669e-13 -7.72055e-13 1.59136e-11)
(1.94713e-12 -6.34609e-13 -9.67167e-12)
(5.98468e-12 -2.40033e-12 -7.76004e-11)
(1.26071e-11 -1.64495e-11 -1.68438e-10)
(-1.99175e-07 -0.00359202 9.84045e-06)
(-3.88064e-09 3.639e-06 3.53249e-07)
(2.37563e-11 1.39684e-08 2.16591e-10)
(1.62494e-12 -9.28536e-11 -3.35375e-12)
(3.64987e-13 -1.78004e-12 4.41813e-11)
(5.22391e-13 -5.26687e-13 3.52815e-11)
(1.02626e-12 -2.94139e-13 2.03096e-11)
(2.79532e-12 8.51031e-13 -1.62722e-11)
(9.24234e-12 2.22017e-13 -1.20155e-10)
(1.8733e-11 -1.87424e-11 -2.42213e-10)
(-2.27654e-07 -0.00360974 1.14826e-05)
(-4.7802e-09 3.96307e-06 4.49477e-07)
(3.26798e-11 1.54132e-08 1.37745e-10)
(2.24148e-12 -1.44475e-10 -2.01929e-11)
(4.53725e-13 -1.92706e-12 5.32003e-11)
(6.61694e-13 -1.50407e-13 4.42309e-11)
(1.29258e-12 5.99885e-13 2.59979e-11)
(3.21189e-12 3.98356e-12 -2.97617e-11)
(4.58217e-12 6.34076e-12 -1.95337e-10)
(-3.28011e-11 -2.01413e-11 -3.52401e-10)
(-2.58171e-07 -0.00362768 1.33725e-05)
(-5.78232e-09 4.32731e-06 5.54509e-07)
(4.30379e-11 1.69685e-08 -6.01578e-13)
(3.01203e-12 -2.09031e-10 -4.30489e-11)
(5.14836e-13 -2.04963e-12 6.46363e-11)
(6.88372e-14 1.83299e-13 5.62523e-11)
(-2.31936e-11 -1.0814e-12 4.0947e-11)
(-4.93932e-10 -2.12385e-11 8.47118e-11)
(-5.59523e-09 -1.58346e-10 7.61249e-10)
(-2.99011e-08 -3.0168e-10 -3.89512e-09)
(-1.59259e-07 -0.00364585 1.58137e-05)
(-6.35281e-09 4.7356e-06 6.70867e-07)
(2.59529e-11 1.87289e-08 -2.12142e-10)
(2.67561e-12 -2.88565e-10 -7.37123e-11)
(-9.00542e-13 -4.66468e-12 8.11226e-11)
(-5.115e-12 -8.33974e-11 1.82443e-10)
(-1.64953e-10 -1.67772e-09 3.72997e-09)
(-3.60441e-09 -1.86254e-08 7.08323e-08)
(-4.56493e-08 -9.57466e-08 8.04817e-07)
(-2.35592e-07 -4.93735e-08 3.69289e-06)
(-2.00736e-07 -0.00398269 -4.4458e-06)
(2.50367e-09 5.97061e-07 -7.69544e-08)
(-9.26278e-11 -2.72337e-08 7.89467e-09)
(-1.61522e-12 -1.19896e-10 8.21616e-11)
(-3.62021e-13 5.10768e-12 1.6832e-11)
(-2.48441e-13 3.42872e-12 1.15062e-11)
(4.78517e-14 3.10239e-12 3.56803e-12)
(8.38889e-13 3.3023e-12 -1.20392e-11)
(3.38541e-12 4.01233e-12 -5.24826e-11)
(9.91744e-12 1.22635e-12 -1.33203e-10)
(-6.4121e-08 -0.0039925 -4.14191e-06)
(-1.44735e-08 6.96985e-07 -3.09388e-08)
(-4.67367e-11 -2.56491e-09 9.68288e-10)
(-2.86262e-14 -6.41903e-11 5.33074e-11)
(-3.81356e-13 4.09581e-12 2.0123e-11)
(-2.1375e-13 3.79338e-12 1.33411e-11)
(1.9936e-13 3.70667e-12 3.98762e-12)
(1.36249e-12 4.5239e-12 -1.61739e-11)
(4.79472e-12 5.43379e-12 -6.55002e-11)
(1.08241e-11 1.51374e-12 -1.5164e-10)
(-5.95491e-08 -0.00400266 -3.73969e-06)
(-1.6033e-08 8.95631e-07 5.54566e-09)
(7.5828e-11 2.51276e-08 -7.32122e-09)
(1.08095e-12 -1.04027e-11 2.18363e-11)
(-4.60984e-13 2.31218e-12 2.4531e-11)
(-2.40371e-13 4.22472e-12 1.55555e-11)
(2.7582e-13 4.51336e-12 4.29305e-12)
(1.86355e-12 6.32902e-12 -2.26103e-11)
(6.34011e-12 7.7285e-12 -8.55137e-11)
(1.31986e-11 2.02435e-12 -1.77785e-10)
(-2.54447e-08 -0.0040134 -4.17006e-06)
(-1.76814e-08 9.7322e-07 6.31774e-08)
(2.1545e-10 5.51683e-08 -1.68176e-08)
(2.38724e-12 4.55115e-11 -1.49606e-11)
(-5.78364e-13 -3.61966e-13 3.02889e-11)
(-2.71127e-13 4.71652e-12 1.82632e-11)
(3.87796e-13 5.61832e-12 4.34201e-12)
(2.59857e-12 8.90873e-12 -3.22127e-11)
(8.57346e-12 1.11592e-11 -1.1503e-10)
(1.62748e-11 2.93469e-12 -2.14987e-10)
(-2.55279e-08 -0.00402451 -4.21295e-06)
(-1.95875e-08 1.05091e-06 1.30174e-07)
(3.76841e-10 8.80769e-08 -2.77885e-08)
(3.88304e-12 9.64934e-11 -5.40806e-11)
(-7.42515e-13 -4.23053e-12 3.7895e-11)
(-3.04499e-13 5.34183e-12 2.15286e-11)
(5.62886e-13 7.18252e-12 3.84848e-12)
(3.72204e-12 1.27714e-11 -4.71581e-11)
(1.19056e-11 1.60235e-11 -1.57081e-10)
(2.06287e-11 4.57983e-12 -2.69155e-10)
(-2.99373e-08 -0.00403604 -4.3374e-06)
(-2.16848e-08 1.12608e-06 2.04647e-07)
(5.60982e-10 1.242e-07 -4.04116e-08)
(5.61319e-12 1.43005e-10 -9.64554e-11)
(-9.51489e-13 -9.64598e-12 4.78602e-11)
(-3.39806e-13 6.12561e-12 2.55082e-11)
(8.44001e-13 9.48675e-12 2.25528e-12)
(5.55539e-12 1.89636e-11 -7.1899e-11)
(1.71073e-11 2.33353e-11 -2.19779e-10)
(2.75108e-11 7.29803e-12 -3.46961e-10)
(-1.24995e-07 -0.00404798 -4.57068e-06)
(-2.43324e-08 1.21717e-06 2.84191e-07)
(7.76283e-10 1.63926e-07 -5.49007e-08)
(7.62968e-12 1.8265e-10 -1.42136e-10)
(-1.23036e-12 -1.70787e-11 6.0916e-11)
(-3.72397e-13 7.14529e-12 3.03518e-11)
(1.31428e-12 1.30982e-11 -1.7206e-12)
(8.72646e-12 2.94229e-11 -1.14923e-10)
(2.58407e-11 3.60699e-11 -3.24981e-10)
(3.75651e-11 1.20067e-11 -4.62885e-10)
(-1.92643e-07 -0.00406017 -5.1142e-06)
(-2.6558e-08 1.64424e-06 3.16916e-07)
(1.03073e-09 2.09069e-07 -7.2153e-08)
(9.81313e-12 1.9516e-10 -1.84321e-10)
(-1.5988e-12 -2.71438e-11 7.80186e-11)
(-4.1078e-13 8.53381e-12 3.62055e-11)
(1.54049e-12 1.91771e-11 -1.09904e-11)
(4.17158e-12 4.7721e-11 -1.92287e-10)
(-2.91847e-11 5.59935e-11 -4.89441e-10)
(2.10222e-10 2.03048e-11 -6.39274e-10)
(-1.59428e-07 -0.00407281 -5.71629e-06)
(-2.86022e-08 1.99195e-06 3.69311e-07)
(1.31159e-09 2.58163e-07 -9.1629e-08)
(1.22876e-11 1.94773e-10 -2.28425e-10)
(-2.28113e-12 -4.05337e-11 1.0041e-10)
(-1.00044e-11 8.39957e-12 4.72097e-11)
(-2.81012e-10 -5.42686e-12 6.56573e-11)
(-4.75866e-09 -1.54519e-10 6.42103e-10)
(-4.58649e-08 6.82082e-10 -4.45503e-09)
(-1.74296e-07 8.63673e-10 -1.11614e-08)
(-6.3473e-08 -0.0040859 -6.40989e-06)
(-1.67105e-08 2.30265e-06 4.35703e-07)
(1.6168e-09 3.11788e-07 -1.13753e-07)
(9.67504e-12 1.77409e-10 -2.73542e-10)
(-4.69843e-12 -9.20457e-11 1.76267e-10)
(-8.38423e-11 -1.00733e-09 2.06248e-09)
(-2.35227e-09 -1.74025e-08 4.93385e-08)
(-3.93238e-08 -1.73095e-07 7.27186e-07)
(-2.87656e-07 -6.74007e-07 4.5571e-06)
(-1.4015e-07 1.49896e-08 -4.8904e-07)
(-3.4844e-07 -0.00439306 3.94515e-07)
(-1.83727e-08 1.15194e-06 1.80336e-08)
(1.40078e-10 3.40415e-08 -8.42477e-09)
(2.03363e-12 2.88156e-11 -2.0977e-11)
(-1.02579e-13 -1.09665e-12 4.18406e-12)
(-2.35062e-14 2.32725e-12 1.81666e-12)
(1.28289e-13 3.94485e-12 -8.74456e-13)
(6.1083e-13 7.23041e-12 -8.63056e-12)
(1.85094e-12 1.18778e-11 -2.26221e-11)
(1.10809e-12 2.88493e-12 2.81512e-11)
(-2.90497e-08 -0.00442026 3.24395e-07)
(-1.89626e-08 1.26265e-06 2.10477e-08)
(3.36523e-10 7.31604e-08 -1.93878e-08)
(4.33448e-12 1.84203e-10 -9.66758e-11)
(-1.14571e-13 -4.0835e-12 6.40452e-12)
(5.94162e-14 2.58389e-12 1.87318e-12)
(3.17853e-13 4.63931e-12 -1.45278e-12)
(1.10994e-12 8.93018e-12 -1.1361e-11)
(2.82153e-12 1.48788e-11 -2.80383e-11)
(2.18002e-13 2.3115e-12 3.53773e-11)
(-8.13951e-09 -0.00444826 6.00996e-07)
(-2.09136e-08 1.2851e-06 4.13666e-08)
(5.90434e-10 1.16555e-07 -3.21816e-08)
(7.4366e-12 3.65568e-10 -1.89813e-10)
(-1.97807e-13 -8.43468e-12 9.69485e-12)
(8.48321e-14 2.91009e-12 1.89979e-12)
(4.16318e-13 5.57465e-12 -2.30916e-12)
(1.46607e-12 1.13159e-11 -1.5293e-11)
(3.6895e-12 1.91641e-11 -3.56449e-11)
(5.95539e-13 2.51483e-12 4.33452e-11)
(-1.08075e-07 -0.00447705 9.13703e-07)
(-2.37892e-08 1.30814e-06 6.5505e-08)
(8.87696e-10 1.65423e-07 -4.72488e-08)
(1.12869e-11 5.77815e-10 -3.05225e-10)
(-3.28153e-13 -1.47133e-11 1.45419e-11)
(1.15304e-13 3.32973e-12 1.90011e-12)
(5.48201e-13 6.84699e-12 -3.57959e-12)
(1.97103e-12 1.47313e-11 -2.10164e-11)
(4.98425e-12 2.53195e-11 -4.72085e-11)
(1.2133e-12 2.9152e-12 5.35166e-11)
(-1.96024e-07 -0.00450648 7.05642e-07)
(-2.59219e-08 1.74007e-06 3.35834e-08)
(1.2496e-09 2.22802e-07 -6.58729e-08)
(1.58935e-11 8.0991e-10 -4.44012e-10)
(-5.13677e-13 -2.35718e-11 2.14031e-11)
(1.55527e-13 3.88665e-12 1.84459e-12)
(7.31945e-13 8.62558e-12 -5.50696e-12)
(2.71621e-12 1.97949e-11 -2.96716e-11)
(6.95991e-12 3.43972e-11 -6.48394e-11)
(2.47311e-12 3.47291e-12 6.36719e-11)
(-1.6814e-07 -0.00453676 5.32117e-07)
(-2.76877e-08 2.13684e-06 9.03639e-09)
(1.66007e-09 2.86955e-07 -8.75178e-08)
(2.15041e-11 1.07694e-09 -6.09678e-10)
(-7.73318e-13 -3.57893e-11 3.10853e-11)
(2.09123e-13 4.61428e-12 1.71211e-12)
(9.92217e-13 1.11672e-11 -8.45382e-12)
(3.85105e-12 2.7546e-11 -4.3171e-11)
(1.00648e-11 4.84436e-11 -9.21803e-11)
(4.99484e-12 4.71833e-12 7.16287e-11)
(-4.23866e-08 -0.00456793 3.8989e-07)
(-2.93714e-08 2.46812e-06 -2.66813e-09)
(2.15345e-09 3.58503e-07 -1.12322e-07)
(2.91282e-11 1.38821e-09 -8.09885e-10)
(-1.13881e-12 -5.27768e-11 4.47497e-11)
(2.81173e-13 5.57953e-12 1.45525e-12)
(1.37893e-12 1.4917e-11 -1.30899e-11)
(5.65655e-12 3.99271e-11 -6.49571e-11)
(1.52294e-11 7.1119e-11 -1.36102e-10)
(9.47824e-12 7.79083e-12 8.04291e-11)
(4.56942e-08 -0.00460018 -1.27747e-07)
(-3.24919e-08 2.34121e-06 5.61993e-08)
(2.67613e-09 4.3638e-07 -1.38565e-07)
(3.63065e-11 1.62047e-09 -9.71167e-10)
(-1.72088e-12 -7.92984e-11 6.5948e-11)
(3.89151e-13 6.89725e-12 9.72121e-13)
(2.19689e-12 2.06934e-11 -2.0699e-11)
(1.00876e-11 6.09297e-11 -1.02166e-10)
(9.23972e-12 1.093e-10 -2.11262e-10)
(2.91325e-11 1.48032e-11 6.52421e-11)
(1.60014e-08 -0.0046333 -5.25989e-07)
(-3.62706e-08 2.30191e-06 1.10783e-07)
(3.27161e-09 5.2426e-07 -1.69474e-07)
(4.43443e-11 1.89714e-09 -1.17441e-09)
(-2.46115e-12 -1.14341e-10 9.46206e-11)
(3.72164e-12 9.79633e-12 -1.52217e-12)
(7.92299e-11 3.68645e-11 -5.2735e-11)
(1.02935e-09 2.87516e-11 -1.22946e-10)
(3.42592e-09 2.7916e-10 -1.63486e-09)
(-6.0807e-08 2.23367e-11 3.26985e-09)
(6.76371e-09 -0.00466734 -8.68021e-07)
(-1.81577e-08 2.29668e-06 1.69726e-07)
(4.00586e-09 6.23154e-07 -2.05907e-07)
(4.15044e-11 2.13029e-09 -1.37746e-09)
(-3.12652e-12 -1.46092e-10 1.15998e-10)
(2.73734e-11 3.77019e-10 -6.15808e-10)
(6.39254e-10 5.36523e-09 -1.30067e-08)
(6.29161e-09 2.24224e-08 -1.13867e-07)
(-1.47446e-08 -3.03214e-07 2.368e-07)
(1.57905e-07 1.40559e-07 -3.91673e-06)
(-3.29613e-07 -0.00488396 1.30338e-07)
(-4.17476e-08 1.26987e-06 2.05012e-08)
(6.46788e-10 1.23466e-07 -2.9088e-08)
(1.09746e-11 5.71736e-10 -2.34454e-10)
(-9.62452e-14 -6.95618e-12 3.57185e-12)
(6.30807e-14 1.44814e-12 -8.15782e-13)
(1.2967e-13 2.59605e-12 -1.15044e-12)
(2.30787e-13 4.48741e-12 -1.07832e-12)
(2.31572e-13 7.07943e-12 2.75619e-12)
(-8.17479e-13 1.21259e-12 3.62739e-11)
(-1.31184e-07 -0.0049359 3.66283e-07)
(-2.53593e-08 1.32965e-06 3.63301e-08)
(1.15151e-09 1.83945e-07 -4.49682e-08)
(1.57221e-11 9.31234e-10 -3.9227e-10)
(-1.72988e-13 -1.27009e-11 6.77796e-12)
(1.42768e-13 1.63723e-12 -1.02706e-12)
(2.69269e-13 3.0735e-12 -1.59249e-12)
(4.76343e-13 5.37039e-12 -1.68968e-12)
(6.04766e-13 8.43382e-12 3.04605e-12)
(-1.41569e-12 5.82149e-13 4.44148e-11)
(-2.14257e-07 -0.00498927 1.28588e-07)
(-2.76945e-08 1.90489e-06 -1.01322e-08)
(1.682e-09 2.57518e-07 -6.55496e-08)
(2.31279e-11 1.35594e-09 -5.89947e-10)
(-3.23583e-13 -2.09931e-11 1.16185e-11)
(1.75404e-13 1.87803e-12 -1.297e-12)
(3.4369e-13 3.71492e-12 -2.20072e-12)
(6.22029e-13 6.57088e-12 -2.5469e-12)
(7.95839e-13 1.0229e-11 3.5708e-12)
(-1.68569e-12 -8.62307e-15 5.52276e-11)
(-6.56065e-08 -0.00504441 6.27756e-09)
(-2.92868e-08 2.36626e-06 -3.93303e-08)
(2.34066e-09 3.41457e-07 -8.95433e-08)
(3.34344e-11 1.87287e-09 -8.36481e-10)
(-5.57434e-13 -3.35897e-11 1.91556e-11)
(2.1295e-13 2.16216e-12 -1.62731e-12)
(4.40045e-13 4.58209e-12 -3.04929e-12)
(8.15636e-13 8.2208e-12 -3.77073e-12)
(1.05962e-12 1.27584e-11 4.247e-12)
(-2.03497e-12 -9.07372e-13 7.05849e-11)
(4.84178e-08 -0.00510159 -5.07738e-07)
(-3.31062e-08 2.26902e-06 3.54967e-09)
(3.05778e-09 4.34659e-07 -1.14859e-07)
(4.19862e-11 2.2471e-09 -1.01813e-09)
(-1.01775e-12 -5.65619e-11 3.30074e-11)
(2.60055e-13 2.48987e-12 -2.03616e-12)
(5.69885e-13 5.76563e-12 -4.23877e-12)
(1.08172e-12 1.05311e-11 -5.52536e-12)
(1.43696e-12 1.64571e-11 5.15978e-12)
(-2.47564e-12 -2.32143e-12 9.27991e-11)
(2.92055e-08 -0.00516063 -9.49178e-07)
(-3.80339e-08 2.20327e-06 5.28352e-08)
(3.82533e-09 5.42527e-07 -1.46615e-07)
(5.12582e-11 2.67679e-09 -1.24651e-09)
(-1.63244e-12 -8.65817e-11 5.17513e-11)
(3.22171e-13 2.93938e-12 -2.59363e-12)
(7.49409e-13 7.40405e-12 -5.94424e-12)
(1.45672e-12 1.38284e-11 -8.09125e-12)
(2.00433e-12 2.21811e-11 6.11014e-12)
(-3.08319e-12 -4.55753e-12 1.26146e-10)
(1.08048e-08 -0.0052216 -1.29241e-06)
(-4.28713e-08 2.19148e-06 1.05799e-07)
(4.368e-09 6.67111e-07 -1.84677e-07)
(6.37535e-11 3.40218e-09 -1.62799e-09)
(-2.38834e-12 -1.26593e-10 7.7343e-11)
(4.04174e-13 3.4991e-12 -3.31762e-12)
(1.00115e-12 9.71686e-12 -8.43692e-12)
(1.98909e-12 1.86087e-11 -1.1824e-11)
(2.84525e-12 3.11464e-11 7.511e-12)
(-4.00043e-12 -8.34794e-12 1.78777e-10)
(-2.55299e-09 -0.00528466 -1.11446e-06)
(-4.82689e-08 2.20539e-06 1.69818e-07)
(5.11766e-09 8.08623e-07 -2.29032e-07)
(1.07232e-10 6.13746e-09 -2.97052e-09)
(-3.16055e-12 -1.68464e-10 1.04636e-10)
(4.97549e-13 3.86212e-12 -3.97681e-12)
(1.35682e-12 1.3022e-11 -1.20739e-11)
(3.10067e-12 2.56565e-11 -1.7129e-11)
(5.41508e-12 4.56771e-11 1.07319e-11)
(2.17396e-12 -1.51121e-11 2.65686e-10)
(-1.21068e-08 -0.00534988 -1.01202e-06)
(-5.47938e-08 2.24227e-06 2.44094e-07)
(6.50387e-09 9.72201e-07 -2.8162e-07)
(1.58385e-10 8.99171e-09 -4.44096e-09)
(-4.48266e-12 -2.31646e-10 1.46402e-10)
(3.41937e-13 4.39958e-12 -4.87147e-12)
(6.12265e-13 1.97535e-11 -1.85263e-11)
(1.06711e-10 4.32936e-11 -2.63832e-11)
(3.06478e-09 1.45764e-10 -2.88448e-10)
(3.55822e-09 1.94822e-11 3.53278e-10)
(-4.83725e-09 -0.00541737 -9.35999e-07)
(-2.68125e-08 2.28798e-06 3.32635e-07)
(8.52747e-09 1.16156e-06 -3.438e-07)
(1.89398e-10 1.16539e-08 -5.89705e-09)
(-7.11167e-12 -3.27697e-10 2.11626e-10)
(-9.48294e-13 -6.15452e-12 2.72044e-11)
(2.03581e-11 5.87383e-10 -2.75323e-10)
(1.57637e-09 1.95782e-08 -2.53247e-08)
(4.8915e-09 2.29971e-08 -2.88574e-08)
(8.08363e-08 2.52877e-07 -1.35613e-06)
(-4.74665e-07 -0.00546006 -1.31606e-07)
(-6.70599e-08 1.74281e-06 -3.41032e-08)
(1.51121e-09 2.4568e-07 -5.24867e-08)
(2.92942e-11 1.70152e-09 -5.89835e-10)
(-1.21109e-13 -1.12219e-11 4.65304e-12)
(7.70652e-14 1.06693e-12 -9.25071e-13)
(1.40176e-13 1.9739e-12 -1.28953e-12)
(2.21654e-13 2.94242e-12 -1.345e-12)
(2.2085e-13 3.23234e-12 7.62371e-13)
(-2.03657e-13 -1.52398e-12 1.38671e-11)
(-3.03384e-08 -0.00554668 -3.57566e-07)
(-2.88972e-08 2.20623e-06 -6.83826e-08)
(2.63222e-09 3.41782e-07 -7.37912e-08)
(4.16864e-11 2.50001e-09 -8.75852e-10)
(-3.12632e-13 -2.19409e-11 9.7063e-12)
(1.50866e-13 1.11981e-12 -1.07511e-12)
(2.61997e-13 2.38437e-12 -1.70075e-12)
(4.08903e-13 3.5643e-12 -1.89135e-12)
(4.68603e-13 3.86311e-12 5.80531e-13)
(-3.90074e-13 -2.20522e-12 1.66252e-11)
(7.8217e-08 -0.00563707 -1.01557e-06)
(-3.40842e-08 1.98419e-06 -2.53908e-08)
(3.53364e-09 4.50794e-07 -9.94266e-08)
(5.01053e-11 2.92205e-09 -1.04323e-09)
(-6.82976e-13 -4.09865e-11 1.90254e-11)
(1.8294e-13 1.20325e-12 -1.27407e-12)
(3.33113e-13 2.94343e-12 -2.26287e-12)
(5.29835e-13 4.41868e-12 -2.65491e-12)
(6.17919e-13 4.68978e-12 3.55874e-13)
(-4.17629e-13 -2.86443e-12 1.98968e-11)
(4.18041e-08 -0.00573109 -1.5279e-06)
(-3.9865e-08 1.89507e-06 1.30969e-08)
(4.009e-09 5.81306e-07 -1.31638e-07)
(6.3918e-11 3.94016e-09 -1.4413e-09)
(-1.08032e-12 -6.47344e-11 3.09856e-11)
(2.20444e-13 1.22612e-12 -1.47534e-12)
(4.24832e-13 3.70677e-12 -3.0358e-12)
(6.91357e-13 5.60056e-12 -3.73763e-12)
(8.21844e-13 5.86277e-12 -4.16459e-14)
(-4.46566e-13 -3.74602e-12 2.44192e-11)
(2.4268e-08 -0.00582903 -1.47521e-06)
(-4.65019e-08 1.85054e-06 6.08806e-08)
(4.98504e-09 7.33176e-07 -1.70046e-07)
(1.28103e-10 8.10484e-09 -3.04273e-09)
(-1.22466e-12 -7.78246e-11 3.76227e-11)
(2.54742e-13 8.5067e-13 -1.46696e-12)
(5.48523e-13 4.75771e-12 -4.11148e-12)
(9.15901e-13 7.26514e-12 -5.31254e-12)
(1.11033e-12 7.5548e-12 -7.22608e-13)
(-4.91627e-13 -4.98019e-12 3.09211e-11)
(1.13987e-08 -0.00593114 -1.43945e-06)
(-5.46192e-08 1.83819e-06 1.16966e-07)
(6.76111e-09 9.15592e-07 -2.17354e-07)
(1.84925e-10 1.13612e-08 -4.36645e-09)
(-1.91497e-12 -1.14838e-10 5.67388e-11)
(2.98445e-13 3.85366e-13 -1.46659e-12)
(7.19182e-13 6.24623e-12 -5.64746e-12)
(1.23394e-12 9.64914e-12 -7.63954e-12)
(1.52753e-12 1.00543e-11 -1.89184e-12)
(-5.81687e-13 -6.81938e-12 4.08548e-11)
(2.88275e-10 -0.00603768 -1.44037e-06)
(-6.3514e-08 1.84935e-06 1.85139e-07)
(8.56765e-09 1.1329e-06 -2.75228e-07)
(2.47726e-10 1.50075e-08 -5.90301e-09)
(-3.02019e-12 -1.7341e-10 8.75698e-11)
(3.51359e-13 -3.93624e-13 -1.34769e-12)
(9.58413e-13 8.38935e-12 -7.87316e-12)
(1.69443e-12 1.31367e-11 -1.11452e-11)
(2.14813e-12 1.38519e-11 -3.94843e-12)
(-7.42393e-13 -9.7202e-12 5.63785e-11)
(-1.07372e-08 -0.00614894 -1.44928e-06)
(-7.36998e-08 1.88064e-06 2.71315e-07)
(1.06921e-08 1.39189e-06 -3.47428e-07)
(3.26341e-10 1.9454e-08 -7.84171e-09)
(-4.59279e-12 -2.56561e-10 1.32343e-10)
(4.14187e-13 -1.64135e-12 -1.03118e-12)
(1.30326e-12 1.15468e-11 -1.11821e-11)
(2.56123e-12 1.83681e-11 -1.65755e-11)
(5.4532e-12 1.99043e-11 -7.79669e-12)
(5.67957e-12 -1.45898e-11 8.18644e-11)
(-1.96011e-08 -0.00626523 -1.45686e-06)
(-8.53035e-08 1.93176e-06 3.77499e-07)
(1.32121e-08 1.70088e-06 -4.3466e-07)
(4.27315e-10 2.49847e-08 -1.03096e-08)
(-7.00568e-12 -3.82842e-10 2.01152e-10)
(5.38046e-13 -3.74286e-12 -3.25667e-13)
(4.06483e-12 1.76771e-11 -1.76632e-11)
(4.94879e-11 4.45389e-11 -4.64472e-11)
(1.30751e-09 8.67878e-11 -1.00963e-10)
(1.20746e-08 1.83229e-11 7.20705e-11)
(-9.05835e-09 -0.0063869 -1.46096e-06)
(-4.15236e-08 1.98485e-06 5.10886e-07)
(1.72868e-08 2.06901e-06 -5.39583e-07)
(5.21175e-10 3.1953e-08 -1.34868e-08)
(-1.21393e-11 -5.7236e-10 3.05386e-10)
(1.0733e-12 9.56111e-12 -1.57583e-11)
(2.59435e-11 3.84941e-10 -4.30001e-10)
(8.46916e-10 1.09288e-08 -1.32799e-08)
(1.04276e-08 1.05706e-07 -1.37632e-07)
(3.33398e-08 1.71695e-07 -3.30126e-07)
(-2.74191e-07 -0.00612021 -1.19222e-06)
(-8.90752e-08 1.59404e-06 -6.45278e-08)
(2.39316e-09 3.82336e-07 -6.90136e-08)
(4.7994e-11 3.02369e-09 -8.51398e-10)
(-1.19689e-13 -1.46081e-11 5.00977e-12)
(9.27108e-14 7.17441e-13 -9.31303e-13)
(1.5152e-13 1.61143e-12 -1.26171e-12)
(2.13642e-13 2.15345e-12 -1.2366e-12)
(2.11023e-13 1.78974e-12 1.00876e-13)
(1.60605e-14 -2.12425e-12 5.93006e-12)
(7.5833e-08 -0.00625487 -1.76503e-06)
(-3.69355e-08 1.389e-06 -3.9382e-08)
(3.68936e-09 5.12023e-07 -9.5323e-08)
(9.75888e-11 6.39892e-09 -1.86728e-09)
(8.96207e-14 -8.31099e-12 2.38812e-12)
(1.65766e-13 5.7244e-13 -1.00576e-12)
(2.68712e-13 1.98834e-12 -1.63162e-12)
(3.74013e-13 2.65675e-12 -1.67373e-12)
(4.0248e-13 2.21494e-12 -1.39045e-13)
(-3.80886e-14 -2.73907e-12 7.016e-12)
(5.55655e-08 -0.00639646 -1.71251e-06)
(-4.51586e-08 1.2501e-06 -8.6123e-09)
(5.22881e-09 6.71744e-07 -1.28167e-07)
(1.55547e-10 9.9136e-09 -2.96655e-09)
(1.5269e-13 -1.01485e-11 2.88292e-12)
(1.94502e-13 2.84401e-13 -1.04418e-12)
(3.4245e-13 2.50745e-12 -2.13502e-12)
(4.83204e-13 3.3496e-12 -2.27675e-12)
(5.28531e-13 2.76147e-12 -4.35944e-13)
(3.0407e-15 -3.27203e-12 8.13164e-12)
(4.45606e-08 -0.00654553 -1.77614e-06)
(-5.46099e-08 1.138e-06 2.80718e-08)
(7.01467e-09 8.68788e-07 -1.70137e-07)
(2.16988e-10 1.36638e-08 -4.18449e-09)
(2.84937e-14 -2.18209e-11 7.41575e-12)
(2.25321e-13 -2.24617e-13 -1.01494e-12)
(4.38613e-13 3.22804e-12 -2.829e-12)
(6.29318e-13 4.32002e-12 -3.12783e-12)
(7.01088e-13 3.55082e-12 -9.01361e-13)
(7.3096e-14 -3.93717e-12 9.58548e-12)
(3.58719e-08 -0.00670268 -1.88093e-06)
(-6.5466e-08 1.04068e-06 7.76393e-08)
(9.1255e-09 1.11176e-06 -2.25443e-07)
(2.9576e-10 1.84041e-08 -5.77908e-09)
(-1.2861e-13 -3.84805e-11 1.42724e-11)
(2.59656e-13 -1.07918e-12 -8.60602e-13)
(5.69477e-13 4.24273e-12 -3.80226e-12)
(8.32339e-13 5.70232e-12 -4.3511e-12)
(9.45831e-13 4.71374e-12 -1.64172e-12)
(1.81582e-13 -4.77551e-12 1.14984e-11)
(2.73643e-08 -0.00686859 -2.01149e-06)
(-7.80456e-08 9.54737e-07 1.39821e-07)
(1.16719e-08 1.41038e-06 -2.92921e-07)
(3.9973e-10 2.45501e-08 -7.87499e-09)
(-5.6666e-13 -7.32794e-11 2.87964e-11)
(2.89828e-13 -2.69804e-12 -3.83325e-13)
(7.50907e-13 5.69915e-12 -5.19225e-12)
(1.12054e-12 7.71307e-12 -6.14749e-12)
(1.30139e-12 6.46832e-12 -2.84567e-12)
(3.52141e-13 -5.84235e-12 1.4056e-11)
(1.78759e-08 -0.007044 -2.15915e-06)
(-9.28355e-08 8.79202e-07 2.20293e-07)
(1.47805e-08 1.77797e-06 -3.76947e-07)
(5.37738e-10 3.26549e-08 -1.06866e-08)
(-1.3983e-12 -1.33124e-10 5.42323e-11)
(3.08017e-13 -5.59053e-12 6.71218e-13)
(1.00823e-12 7.83668e-12 -7.22324e-12)
(1.5397e-12 1.07053e-11 -8.84627e-12)
(1.83262e-12 9.18602e-12 -4.84358e-12)
(6.22429e-13 -7.21012e-12 1.75356e-11)
(6.43735e-09 -0.00722974 -2.31762e-06)
(-1.10337e-07 8.15193e-07 3.25023e-07)
(1.85949e-08 2.23145e-06 -4.81959e-07)
(7.23492e-10 4.3437e-08 -1.44938e-08)
(-2.8373e-12 -2.32468e-10 9.70489e-11)
(2.98254e-13 -1.06706e-11 2.77043e-12)
(1.38102e-12 1.10546e-11 -1.02677e-11)
(2.37649e-12 1.52856e-11 -1.30164e-11)
(5.27395e-12 1.34959e-11 -8.21376e-12)
(7.84998e-12 -9.01595e-12 2.24795e-11)
(-3.52167e-09 -0.00742675 -2.48038e-06)
(-1.3111e-07 7.6554e-07 4.61301e-07)
(2.32897e-08 2.7924e-06 -6.13396e-07)
(9.75248e-10 5.78823e-08 -1.96758e-08)
(-5.27249e-12 -3.95836e-10 1.6835e-10)
(2.80531e-13 -1.96023e-11 6.78005e-12)
(4.79046e-12 1.78847e-11 -1.64241e-11)
(7.13983e-11 4.69873e-11 -4.24371e-11)
(1.26898e-09 8.50783e-11 -8.06328e-11)
(1.4453e-08 3.27054e-11 -1.73956e-11)
(-4.69402e-09 -0.00763609 -2.64858e-06)
(-6.54481e-08 7.0187e-07 6.42899e-07)
(3.17583e-08 3.48819e-06 -7.7817e-07)
(1.27281e-09 7.73477e-08 -2.67669e-08)
(-1.29678e-11 -6.61041e-10 2.85106e-10)
(5.88796e-13 -1.02407e-11 -3.29481e-12)
(3.79876e-11 6.60298e-10 -5.44062e-10)
(8.84054e-10 1.27362e-08 -1.19763e-08)
(1.2934e-08 1.53193e-07 -1.59872e-07)
(3.0324e-08 1.82134e-07 -2.10559e-07)
(-4.88072e-08 -0.00684816 -1.76989e-06)
(-1.04147e-07 5.63804e-07 -6.7764e-08)
(3.04377e-09 4.838e-07 -7.42018e-08)
(1.25107e-10 8.22567e-09 -1.92229e-09)
(9.85312e-13 3.37123e-11 -1.1443e-11)
(1.17504e-13 5.23265e-13 -9.80565e-13)
(1.67308e-13 1.31342e-12 -1.17274e-12)
(2.12207e-13 1.60327e-12 -1.04484e-12)
(2.01734e-13 9.95725e-13 -7.7822e-14)
(6.02141e-14 -2.43048e-12 3.30505e-12)
(9.5658e-08 -0.00704541 -1.89562e-06)
(-4.62812e-08 2.55378e-07 -5.24739e-08)
(5.71836e-09 6.52415e-07 -1.04191e-07)
(1.8127e-10 1.13989e-08 -2.73368e-09)
(1.35369e-12 4.67295e-11 -1.58727e-11)
(2.02604e-13 4.30174e-13 -1.12132e-12)
(2.87852e-13 1.65621e-12 -1.5025e-12)
(3.60951e-13 2.01447e-12 -1.38718e-12)
(3.66507e-13 1.30483e-12 -2.82854e-13)
(4.54691e-14 -3.1127e-12 3.98007e-12)
(8.87051e-08 -0.00725548 -2.07939e-06)
(-5.73955e-08 -4.01439e-08 -3.45891e-08)
(7.66779e-09 8.66723e-07 -1.42393e-07)
(2.50085e-10 1.55973e-08 -3.82156e-09)
(1.80935e-12 6.06975e-11 -2.07362e-11)
(2.44378e-13 1.4124e-13 -1.23257e-12)
(3.6915e-13 2.13589e-12 -1.95117e-12)
(4.67851e-13 2.58987e-12 -1.86055e-12)
(4.82108e-13 1.68602e-12 -5.33614e-13)
(9.33056e-14 -3.69017e-12 4.60044e-12)
(8.69268e-08 -0.00747967 -2.31161e-06)
(-7.05558e-08 -3.56207e-07 -1.0035e-08)
(1.00916e-08 1.13865e-06 -1.91163e-07)
(3.44466e-10 2.13661e-08 -5.3363e-09)
(2.38562e-12 7.68966e-11 -2.648e-11)
(2.8901e-13 -5.1808e-13 -1.25634e-12)
(4.76436e-13 2.81096e-12 -2.57054e-12)
(6.11486e-13 3.40823e-12 -2.52905e-12)
(6.40287e-13 2.25442e-12 -9.17167e-13)
(1.73087e-13 -4.40487e-12 5.38308e-12)
(8.54794e-08 -0.00771946 -2.58785e-06)
(-8.63779e-08 -7.00654e-07 2.45172e-08)
(1.31308e-08 1.48423e-06 -2.54102e-07)
(4.76565e-10 2.9431e-08 -7.48897e-09)
(3.1839e-12 9.75221e-11 -3.39066e-11)
(3.35682e-13 -1.84702e-12 -1.08728e-12)
(6.23871e-13 3.77596e-12 -3.43993e-12)
(8.1216e-13 4.5925e-12 -3.4907e-12)
(8.64611e-13 3.11424e-12 -1.51226e-12)
(2.93694e-13 -5.29722e-12 6.38194e-12)
(8.33922e-08 -0.00797652 -2.90926e-06)
(-1.05597e-07 -1.07974e-06 7.36384e-08)
(1.69581e-08 1.9248e-06 -3.35523e-07)
(6.63584e-10 4.08255e-08 -1.05705e-08)
(4.33515e-12 1.2473e-10 -4.37346e-11)
(3.76567e-13 -4.44798e-12 -4.98606e-13)
(8.30742e-13 5.1806e-12 -4.6849e-12)
(1.09844e-12 6.34176e-12 -4.90324e-12)
(1.19006e-12 4.43757e-12 -2.44949e-12)
(4.7937e-13 -6.41901e-12 7.67046e-12)
(7.96917e-08 -0.00825277 -3.27912e-06)
(-1.29107e-07 -1.49874e-06 1.43083e-07)
(2.17971e-08 2.48884e-06 -4.4116e-07)
(9.30568e-10 5.70488e-08 -1.50171e-08)
(6.0485e-12 1.61471e-10 -5.71166e-11)
(3.94669e-13 -9.41982e-12 9.4235e-13)
(1.12722e-12 7.2627e-12 -6.50364e-12)
(1.51697e-12 8.98657e-12 -7.02738e-12)
(1.67546e-12 6.52179e-12 -3.95712e-12)
(7.73208e-13 -7.83605e-12 9.35134e-12)
(7.31912e-08 -0.00855044 -3.7017e-06)
(-1.58068e-07 -1.96189e-06 2.40687e-07)
(2.79362e-08 3.21445e-06 -5.7862e-07)
(1.31468e-09 8.03197e-08 -2.14776e-08)
(8.67467e-12 2.1167e-10 -7.5648e-11)
(3.53587e-13 -1.88652e-11 4.09125e-12)
(1.55274e-12 1.04214e-11 -9.22554e-12)
(2.36312e-12 1.31063e-11 -1.03157e-11)
(5.03557e-12 9.90765e-12 -6.45146e-12)
(8.12184e-12 -9.61005e-12 1.15324e-11)
(6.84405e-08 -0.00887212 -4.18101e-06)
(-1.93851e-07 -2.47213e-06 3.77438e-07)
(3.5771e-08 4.15334e-06 -7.5815e-07)
(1.87172e-09 1.13968e-07 -3.09317e-08)
(1.27858e-11 2.80144e-10 -1.01446e-10)
(2.1094e-13 -3.69843e-11 1.07156e-11)
(4.78698e-12 1.75719e-11 -1.47625e-11)
(6.81073e-11 4.80127e-11 -3.51882e-11)
(1.25983e-09 8.9089e-11 -6.50704e-11)
(1.48665e-08 3.75731e-11 -2.28183e-11)
(2.15316e-08 -0.00922085 -4.73037e-06)
(-1.03824e-07 -3.0847e-06 5.73081e-07)
(5.187e-08 5.37459e-06 -9.93238e-07)
(2.69232e-09 1.62896e-07 -4.48266e-08)
(1.25059e-11 3.74073e-10 -1.37883e-10)
(-2.08835e-13 -4.48775e-11 9.71134e-12)
(3.8558e-11 7.34723e-10 -4.60904e-10)
(8.9978e-10 1.46451e-08 -1.02246e-08)
(1.32709e-08 1.80347e-07 -1.39305e-07)
(2.93561e-08 2.00542e-07 -1.57283e-07)
(2.28367e-07 -0.0076034 -1.87974e-06)
(-1.02807e-07 -9.28685e-07 -9.45969e-08)
(3.57677e-09 4.96392e-07 -6.35782e-08)
(1.26325e-10 8.40025e-09 -1.54358e-09)
(1.62633e-12 6.47722e-11 -1.64501e-11)
(1.5961e-13 7.9023e-13 -1.11162e-12)
(1.858e-13 9.85195e-13 -1.01692e-12)
(2.14932e-13 1.10933e-12 -8.15085e-13)
(1.9665e-13 4.0841e-13 -9.1375e-14)
(7.20152e-14 -2.71588e-12 2.05706e-12)
(1.54129e-07 -0.00787671 -2.14128e-06)
(-5.17618e-08 -1.54846e-06 -9.96534e-08)
(6.20473e-09 6.75664e-07 -8.8249e-08)
(1.99111e-10 1.2499e-08 -2.34125e-09)
(2.60134e-12 1.02193e-10 -2.60074e-11)
(2.69044e-13 9.54621e-13 -1.36481e-12)
(3.14165e-13 1.27085e-12 -1.2963e-12)
(3.60456e-13 1.42032e-12 -1.07079e-12)
(3.47868e-13 6.0924e-13 -2.39815e-13)
(6.58109e-14 -3.62217e-12 2.62362e-12)
(1.5931e-07 -0.00817184 -2.45797e-06)
(-6.55079e-08 -2.22826e-06 -1.05966e-07)
(8.34269e-09 9.10141e-07 -1.21057e-07)
(2.93723e-10 1.84133e-08 -3.51064e-09)
(4.03015e-12 1.59989e-10 -4.09022e-11)
(3.41675e-13 1.11591e-12 -1.67923e-12)
(4.06153e-13 1.67566e-12 -1.67732e-12)
(4.69637e-13 1.86263e-12 -1.4237e-12)
(4.58453e-13 8.30728e-13 -4.1147e-13)
(1.08328e-13 -4.37008e-12 3.09223e-12)
(1.71162e-07 -0.00849151 -2.84078e-06)
(-8.24383e-08 -3.02315e-06 -1.10288e-07)
(1.11148e-08 1.21779e-06 -1.64855e-07)
(4.30992e-10 2.70142e-08 -5.23744e-09)
(6.27664e-12 2.51156e-10 -6.46018e-11)
(4.3459e-13 1.23066e-12 -2.06256e-12)
(5.29377e-13 2.25597e-12 -2.20504e-12)
(6.17718e-13 2.50315e-12 -1.92253e-12)
(6.10434e-13 1.17849e-12 -6.72189e-13)
(1.81905e-13 -5.30926e-12 3.68249e-12)
(1.84922e-07 -0.00883892 -3.30043e-06)
(-1.03487e-07 -3.961e-06 -1.10747e-07)
(1.47194e-08 1.62319e-06 -2.23516e-07)
(6.31431e-10 3.9605e-08 -7.80237e-09)
(9.86832e-12 3.96994e-10 -1.02848e-10)
(5.57636e-13 1.19574e-12 -2.51381e-12)
(7.00613e-13 3.09723e-12 -2.94746e-12)
(8.2603e-13 3.44822e-12 -2.64212e-12)
(8.26631e-13 1.72587e-12 -1.07352e-12)
(2.93988e-13 -6.50659e-12 4.43553e-12)
(2.00291e-07 -0.00921783 -3.85243e-06)
(-1.29907e-07 -5.07497e-06 -1.04838e-07)
(1.94216e-08 2.16053e-06 -3.02406e-07)
(9.26386e-10 5.81957e-08 -1.16401e-08)
(1.57064e-11 6.33915e-10 -1.65482e-10)
(7.21091e-13 7.79746e-13 -3.00221e-12)
(9.43382e-13 4.33367e-12 -4.01151e-12)
(1.12567e-12 4.87235e-12 -3.70289e-12)
(1.14139e-12 2.60063e-12 -1.70364e-12)
(4.6779e-13 -8.05263e-12 5.40772e-12)
(2.16896e-07 -0.00963271 -4.51729e-06)
(-1.63381e-07 -6.40569e-06 -8.89633e-08)
(2.55796e-08 2.87785e-06 -4.09033e-07)
(1.36452e-09 8.59311e-08 -1.74336e-08)
(2.53677e-11 1.02536e-09 -2.69725e-10)
(9.39291e-13 -5.2422e-13 -3.42369e-12)
(1.29556e-12 6.18364e-12 -5.56785e-12)
(1.56794e-12 7.07267e-12 -5.30826e-12)
(1.61228e-12 4.02284e-12 -2.71271e-12)
(7.44241e-13 -1.00766e-11 6.6769e-12)
(2.34003e-07 -0.010089 -5.32168e-06)
(-2.06231e-07 -8.00332e-06 -5.77647e-08)
(3.36805e-08 3.84347e-06 -5.54027e-07)
(2.02256e-09 1.27817e-07 -2.62728e-08)
(4.16772e-11 1.68434e-09 -4.46304e-10)
(1.2316e-12 -3.82937e-12 -3.49451e-12)
(1.80737e-12 8.99463e-12 -7.89194e-12)
(2.43967e-12 1.05774e-11 -7.81019e-12)
(4.70753e-12 6.40585e-12 -4.37573e-12)
(7.53579e-12 -1.27502e-11 8.3502e-12)
(2.5835e-07 -0.010593 -6.29988e-06)
(-2.61328e-07 -9.92913e-06 -3.38328e-09)
(4.43771e-08 5.15616e-06 -7.52617e-07)
(3.02221e-09 1.91979e-07 -3.99266e-08)
(6.97678e-11 2.81693e-09 -7.5119e-10)
(1.63479e-12 -1.17981e-11 -2.41659e-12)
(4.80068e-12 1.57155e-11 -1.25426e-11)
(5.99833e-11 4.53123e-11 -2.62203e-11)
(1.15853e-09 8.52734e-11 -4.44062e-11)
(1.37502e-08 3.84156e-11 -1.27645e-11)
(9.65494e-08 -0.0111529 -7.50705e-06)
(-1.6234e-07 -1.23453e-05 9.12658e-08)
(6.97262e-08 6.95671e-06 -1.02617e-06)
(4.82278e-09 2.92029e-07 -6.13452e-08)
(1.15083e-10 4.826e-09 -1.29323e-09)
(1.4333e-12 -3.07754e-12 -9.11689e-12)
(3.62374e-11 7.33344e-10 -3.39655e-10)
(8.58357e-10 1.52807e-08 -7.72061e-09)
(1.23756e-08 1.86308e-07 -1.02781e-07)
(2.77619e-08 2.2039e-07 -1.09721e-07)
(5.42085e-07 -0.00831441 -1.81063e-06)
(-8.00434e-08 -2.89195e-06 -1.23252e-07)
(2.51531e-09 3.57127e-07 -3.55495e-08)
(1.12585e-10 7.68415e-09 -1.03706e-09)
(2.16197e-12 9.20569e-11 -1.68858e-11)
(2.05652e-13 1.13973e-12 -1.08126e-12)
(2.04028e-13 5.93242e-13 -7.86934e-13)
(2.18893e-13 6.16111e-13 -5.68247e-13)
(1.95948e-13 -5.87318e-14 -6.78897e-14)
(1.10658e-13 -2.53159e-12 9.65463e-13)
(2.37847e-07 -0.00866981 -2.12608e-06)
(-5.08284e-08 -4.0195e-06 -1.47619e-07)
(4.54341e-09 4.89998e-07 -5.00282e-08)
(1.84597e-10 1.16866e-08 -1.60774e-09)
(3.70764e-12 1.53576e-10 -2.81607e-11)
(3.49694e-13 1.822e-12 -1.43151e-12)
(3.41885e-13 7.84435e-13 -9.98438e-13)
(3.64436e-13 8.01265e-13 -7.37471e-13)
(3.38382e-13 6.77446e-15 -1.47778e-13)
(7.94216e-14 -3.97869e-12 1.57815e-12)
(2.6048e-07 -0.00905871 -2.50768e-06)
(-6.55887e-08 -5.33994e-06 -1.78903e-07)
(6.15241e-09 6.68948e-07 -6.99092e-08)
(2.78558e-10 1.76977e-08 -2.4789e-09)
(6.06027e-12 2.55788e-10 -4.70698e-11)
(4.71009e-13 3.0076e-12 -1.95972e-12)
(4.46233e-13 1.06696e-12 -1.28912e-12)
(4.77466e-13 1.06944e-12 -9.70742e-13)
(4.46511e-13 4.48857e-14 -2.42365e-13)
(1.09369e-13 -5.05696e-12 1.99081e-12)
(2.94422e-07 -0.00948612 -2.97512e-06)
(-8.40366e-08 -6.95907e-06 -2.16898e-07)
(8.27664e-09 9.10255e-07 -9.72378e-08)
(4.19771e-10 2.68082e-08 -3.8197e-09)
(9.99092e-12 4.2851e-10 -7.9326e-11)
(6.48921e-13 5.13606e-12 -2.79237e-12)
(5.87881e-13 1.49011e-12 -1.69481e-12)
(6.31839e-13 1.4674e-12 -1.29918e-12)
(5.9528e-13 1.29827e-13 -3.79397e-13)
(1.65047e-13 -6.42817e-12 2.55417e-12)
(3.35566e-07 -0.00995804 -3.5497e-06)
(-1.07427e-07 -8.96242e-06 -2.63103e-07)
(1.10876e-08 1.23777e-06 -1.34992e-07)
(6.33865e-10 4.07589e-08 -5.90222e-09)
(1.6669e-11 7.24978e-10 -1.35215e-10)
(9.2462e-13 9.07391e-12 -4.1675e-12)
(7.87902e-13 2.13445e-12 -2.2728e-12)
(8.50686e-13 2.06953e-12 -1.77249e-12)
(8.07665e-13 2.95787e-13 -5.91078e-13)
(2.54191e-13 -8.20354e-12 3.26319e-12)
(3.85472e-07 -0.0104818 -4.26046e-06)
(-1.374e-07 -1.14641e-05 -3.19582e-07)
(1.48167e-08 1.68595e-06 -1.87507e-07)
(9.61829e-10 6.23935e-08 -9.17429e-09)
(2.82244e-11 1.24346e-09 -2.33852e-10)
(1.37239e-12 1.66135e-11 -6.55893e-12)
(1.07718e-12 3.14024e-12 -3.11677e-12)
(1.16837e-12 2.9986e-12 -2.47093e-12)
(1.11775e-12 5.98448e-13 -9.21277e-13)
(3.97163e-13 -1.05579e-11 4.18274e-12)
(4.46104e-07 -0.0110664 -5.14699e-06)
(-1.76238e-07 -1.46182e-05 -3.89235e-07)
(1.97772e-08 2.30536e-06 -2.6118e-07)
(1.47039e-09 9.64545e-08 -1.43876e-08)
(4.86418e-11 2.17029e-09 -4.11709e-10)
(2.13911e-12 3.15965e-11 -1.09539e-11)
(1.5064e-12 4.75774e-12 -4.38426e-12)
(1.64161e-12 4.4682e-12 -3.52965e-12)
(1.58298e-12 1.1436e-12 -1.4482e-12)
(6.30265e-13 -1.37503e-11 5.41143e-12)
(5.19959e-07 -0.0117232 -6.26366e-06)
(-2.27177e-07 -1.86354e-05 -4.76289e-07)
(2.63891e-08 3.17138e-06 -3.65606e-07)
(2.27006e-09 1.51038e-07 -2.28323e-08)
(8.55847e-11 3.86982e-09 -7.40465e-10)
(3.5299e-12 6.26064e-11 -1.95045e-11)
(2.15332e-12 7.45639e-12 -6.35137e-12)
(2.47933e-12 6.86996e-12 -5.18446e-12)
(3.79948e-12 2.13524e-12 -2.3071e-12)
(5.4129e-12 -1.81752e-11 7.09681e-12)
(6.20337e-07 -0.0124662 -7.68654e-06)
(-2.94278e-07 -2.38085e-05 -5.8723e-07)
(3.52072e-08 4.39871e-06 -5.15462e-07)
(3.54565e-09 2.40338e-07 -3.67791e-08)
(1.54119e-10 7.07957e-09 -1.36579e-09)
(6.19201e-12 1.29611e-10 -3.71196e-11)
(4.00707e-12 1.36792e-11 -1.00165e-11)
(3.15846e-11 3.08329e-11 -1.34672e-11)
(6.98693e-10 5.79912e-11 -1.18398e-11)
(9.23569e-09 3.54549e-11 7.92354e-12)
(2.45474e-07 -0.0133139 -9.53372e-06)
(-2.40626e-07 -3.06818e-05 -7.26752e-07)
(6.22499e-08 6.15755e-06 -7.32953e-07)
(6.39763e-09 3.89981e-07 -6.03596e-08)
(3.06271e-10 1.33754e-08 -2.59977e-09)
(1.03566e-11 2.94743e-10 -7.87073e-11)
(1.97625e-11 4.08854e-10 -1.19842e-10)
(5.24134e-10 1.00807e-08 -3.15036e-09)
(8.21445e-09 1.35126e-07 -4.51442e-08)
(2.25724e-08 2.34302e-07 -3.10572e-08)
(8.30742e-07 -0.00888185 -1.36271e-06)
(-4.41723e-08 -4.91161e-06 -1.12507e-07)
(5.71342e-10 1.01191e-07 -1.02851e-08)
(4.67533e-11 3.31783e-09 -3.2099e-10)
(1.38483e-12 5.66197e-11 -7.08323e-12)
(2.29033e-13 8.03488e-13 -7.32923e-13)
(2.16933e-13 1.85245e-13 -4.97845e-13)
(2.21632e-13 1.82941e-13 -3.32728e-13)
(2.14236e-13 -1.20936e-13 -1.1536e-13)
(5.12336e-13 3.19247e-12 -1.46656e-12)
(3.24374e-07 -0.00931002 -1.62518e-06)
(-4.37601e-08 -6.62819e-06 -1.4234e-07)
(1.16407e-09 1.33846e-07 -1.44518e-08)
(7.86229e-11 5.0594e-09 -5.01639e-10)
(2.44282e-12 9.65617e-11 -1.19136e-11)
(3.89951e-13 1.4435e-12 -9.73154e-13)
(3.63351e-13 2.55116e-13 -6.26654e-13)
(3.68698e-13 2.34885e-13 -4.23863e-13)
(3.48826e-13 -2.14422e-13 -1.38486e-13)
(3.16661e-13 -4.24838e-13 -4.62153e-13)
(3.66849e-07 -0.00978362 -1.94594e-06)
(-5.70483e-08 -8.71398e-06 -1.81946e-07)
(1.50568e-09 1.78185e-07 -2.03147e-08)
(1.19124e-10 7.73993e-09 -7.85006e-10)
(4.02282e-12 1.65433e-10 -2.02885e-11)
(5.30378e-13 2.65783e-12 -1.3456e-12)
(4.77289e-13 3.71181e-13 -8.03876e-13)
(4.85511e-13 3.3124e-13 -5.52433e-13)
(4.58237e-13 -3.07298e-13 -1.85842e-13)
(3.04243e-13 -2.28561e-12 -6.69107e-14)
(4.26886e-07 -0.0103103 -2.34399e-06)
(-7.352e-08 -1.13485e-05 -2.33135e-07)
(1.92855e-09 2.36498e-07 -2.85232e-08)
(1.80652e-10 1.18794e-08 -1.23226e-09)
(6.72257e-12 2.8597e-10 -3.50617e-11)
(7.40489e-13 5.01532e-12 -1.95258e-12)
(6.33749e-13 5.64392e-13 -1.05126e-12)
(6.45308e-13 4.68725e-13 -7.2907e-13)
(6.00756e-13 -5.44011e-13 -2.26178e-13)
(3.10027e-13 -4.48628e-12 4.00558e-13)
(5.01783e-07 -0.0108996 -2.84112e-06)
(-9.42935e-08 -1.47119e-05 -2.99875e-07)
(2.43683e-09 3.13042e-07 -4.00977e-08)
(2.74825e-10 1.83435e-08 -1.94653e-09)
(1.14273e-11 5.00719e-10 -6.16296e-11)
(1.0739e-12 9.71104e-12 -2.9995e-12)
(8.5728e-13 8.94612e-13 -1.40698e-12)
(8.73483e-13 6.917e-13 -9.82015e-13)
(8.08038e-13 -8.20995e-13 -2.951e-13)
(3.52722e-13 -7.32404e-12 1.00247e-12)
(5.96021e-07 -0.0115633 -3.4671e-06)
(-1.20698e-07 -1.90555e-05 -3.87924e-07)
(3.02221e-09 4.13211e-07 -5.65716e-08)
(4.202e-10 2.8575e-08 -3.10383e-09)
(1.9796e-11 8.91526e-10 -1.10495e-10)
(1.63116e-12 1.93552e-11 -4.91702e-12)
(1.18508e-12 1.48152e-12 -1.93328e-12)
(1.20704e-12 1.05394e-12 -1.35294e-12)
(1.11296e-12 -1.15831e-12 -4.08558e-13)
(4.33426e-13 -1.10855e-11 1.77907e-12)
(7.15919e-07 -0.0123164 -4.26342e-06)
(-1.54519e-07 -2.47374e-05 -5.05811e-07)
(3.64385e-09 5.43476e-07 -8.02911e-08)
(6.46708e-10 4.50287e-08 -5.01194e-09)
(3.50256e-11 1.62067e-09 -2.02743e-10)
(2.61886e-12 3.98811e-11 -8.65715e-12)
(1.68099e-12 2.58537e-12 -2.7445e-12)
(1.70768e-12 1.65485e-12 -1.91125e-12)
(1.57028e-12 -1.61181e-12 -5.87192e-13)
(5.78001e-13 -1.62335e-11 2.84543e-12)
(8.70442e-07 -0.0131783 -5.28884e-06)
(-1.98153e-07 -3.22772e-05 -6.66497e-07)
(4.19095e-09 7.10725e-07 -1.14928e-07)
(1.00293e-09 7.1981e-08 -8.224e-09)
(6.34465e-11 3.02102e-09 -3.82223e-10)
(4.48481e-12 8.53899e-11 -1.64403e-11)
(2.44969e-12 4.80815e-12 -4.06075e-12)
(2.26303e-12 2.66166e-12 -2.77003e-12)
(7.31476e-13 -2.25916e-12 -8.57845e-13)
(-1.49791e-13 -2.35382e-11 4.35444e-12)
(1.08463e-06 -0.0141745 -6.62814e-06)
(-2.5392e-07 -4.2447e-05 -8.90308e-07)
(4.43352e-09 9.19967e-07 -1.66377e-07)
(1.57143e-09 1.17043e-07 -1.37631e-08)
(1.17877e-10 5.80249e-09 -7.43883e-10)
(8.09334e-12 1.9102e-10 -3.37346e-11)
(2.24707e-14 6.52149e-12 -5.57522e-12)
(-6.89872e-11 -1.88324e-11 5.75814e-12)
(-9.92344e-10 -2.43602e-11 5.45949e-11)
(-7.72602e-09 7.55939e-11 2.11465e-11)
(4.39882e-07 -0.0153389 -8.41353e-06)
(-3.21442e-07 -5.66005e-05 -1.2056e-06)
(1.05519e-08 1.15462e-06 -2.43767e-07)
(3.13002e-09 1.93671e-07 -2.35648e-08)
(2.58354e-10 1.14788e-08 -1.49554e-09)
(1.28056e-11 3.95236e-10 -6.42466e-11)
(-4.85379e-11 -1.1195e-09 2.53374e-10)
(-8.44819e-10 -1.60264e-08 4.54591e-09)
(-8.07564e-09 -1.27716e-07 5.17582e-08)
(1.66391e-08 4.43549e-07 1.74827e-07)
(1.00934e-06 -0.00920156 -5.14416e-07)
(-1.61909e-08 -6.25439e-06 -4.58655e-08)
(-1.03125e-09 -1.13053e-07 -2.32637e-10)
(-2.22508e-11 -1.44659e-09 5.5496e-12)
(-5.28533e-14 -1.29276e-11 -1.99427e-13)
(2.22572e-13 -1.89627e-13 -2.47075e-13)
(2.23477e-13 -1.00148e-13 -1.81272e-13)
(2.24208e-13 -6.47241e-14 -1.16739e-13)
(2.84705e-13 9.20998e-13 -1.42281e-13)
(1.33469e-12 1.50638e-11 -1.88678e-12)
(3.79804e-07 -0.00967326 -6.16786e-07)
(-3.66433e-08 -8.38288e-06 -5.94963e-08)
(-1.74612e-09 -1.70281e-07 -2.29631e-10)
(-3.91993e-11 -2.43894e-09 1.23198e-11)
(-1.58973e-13 -2.45205e-11 -1.2791e-13)
(3.73213e-13 -3.14907e-13 -3.04595e-13)
(3.74428e-13 -1.29965e-13 -2.24944e-13)
(3.71876e-13 -1.03203e-13 -1.45368e-13)
(4.00079e-13 5.25623e-13 -1.30843e-13)
(1.07613e-12 1.2904e-11 -1.5903e-12)
(4.35732e-07 -0.0101982 -7.42671e-07)
(-4.77338e-08 -1.10136e-05 -7.79386e-08)
(-2.56325e-09 -2.51542e-07 -2.38397e-10)
(-6.47107e-11 -4.03848e-09 2.36235e-11)
(-5.04626e-13 -4.5659e-11 5.19408e-14)
(4.86511e-13 -5.4089e-13 -3.81048e-13)
(4.93144e-13 -1.60382e-13 -2.8437e-13)
(4.90632e-13 -1.31091e-13 -1.85874e-13)
(5.17755e-13 4.58511e-13 -1.51942e-13)
(1.19401e-12 1.22938e-11 -1.56897e-12)
(5.13656e-07 -0.0107859 -8.99968e-07)
(-6.1084e-08 -1.43849e-05 -1.02387e-07)
(-3.74062e-09 -3.71182e-07 -2.284e-10)
(-1.06962e-10 -6.71835e-09 4.40881e-11)
(-1.21979e-12 -8.59545e-11 4.89202e-13)
(6.3809e-13 -9.95845e-13 -4.82841e-13)
(6.56416e-13 -1.92038e-13 -3.6608e-13)
(6.53904e-13 -1.60571e-13 -2.42034e-13)
(6.75236e-13 3.30412e-13 -1.83309e-13)
(1.28567e-12 1.12522e-11 -1.55872e-12)
(6.12012e-07 -0.0114484 -1.09782e-06)
(-7.73862e-08 -1.87552e-05 -1.3513e-07)
(-5.46132e-09 -5.5003e-07 -1.77177e-10)
(-1.78255e-10 -1.13003e-08 8.17455e-11)
(-2.68956e-12 -1.64833e-10 1.50069e-12)
(8.4514e-13 -1.97886e-12 -6.16976e-13)
(8.89748e-13 -2.2597e-13 -4.8138e-13)
(8.87478e-13 -1.92263e-13 -3.20944e-13)
(8.97989e-13 1.08381e-13 -2.22647e-13)
(1.40373e-12 9.45644e-12 -1.49341e-12)
(7.37533e-07 -0.0122009 -1.34893e-06)
(-9.72346e-08 -2.44934e-05 -1.79548e-07)
(-8.0065e-09 -8.22106e-07 -4.31874e-11)
(-3.0102e-10 -1.9323e-08 1.52434e-10)
(-5.74474e-12 -3.24121e-10 3.81608e-12)
(1.12552e-12 -4.2402e-12 -7.88126e-13)
(1.23136e-12 -2.62532e-13 -6.46967e-13)
(1.22985e-12 -2.21287e-13 -4.34881e-13)
(1.22446e-12 -2.02041e-13 -2.80025e-13)
(1.54316e-12 6.33799e-12 -1.35208e-12)
(8.9985e-07 -0.0130631 -1.67103e-06)
(-1.21197e-07 -3.21362e-05 -2.40743e-07)
(-1.18192e-08 -1.24446e-06 2.48791e-10)
(-5.17409e-10 -3.37686e-08 2.88448e-10)
(-1.22286e-11 -6.57634e-10 9.17126e-12)
(1.49127e-12 -9.74355e-12 -9.82909e-13)
(1.74495e-12 -3.18758e-13 -8.917e-13)
(1.74367e-12 -2.45884e-13 -6.02899e-13)
(1.70599e-12 -7.71019e-13 -3.56128e-13)
(1.72195e-12 1.27194e-12 -1.08163e-12)
(1.11299e-06 -0.0140608 -2.08942e-06)
(-1.49597e-07 -4.24823e-05 -3.26612e-07)
(-1.76065e-08 -1.91555e-06 8.31905e-10)
(-9.09031e-10 -6.06443e-08 5.58049e-10)
(-2.63927e-11 -1.38601e-09 2.18727e-11)
(1.91008e-12 -2.39474e-11 -1.11606e-12)
(2.46864e-12 -4.86019e-13 -1.26032e-12)
(9.71734e-13 -3.07616e-13 -8.52244e-13)
(-1.3297e-11 -1.74224e-12 -4.52896e-13)
(-7.28229e-12 -6.2709e-12 -6.73387e-13)
(1.41103e-06 -0.0152286 -2.64095e-06)
(-1.80903e-07 -5.67505e-05 -4.49738e-07)
(-2.64387e-08 -3.01108e-06 1.95354e-09)
(-1.63544e-09 -1.12556e-07 1.11028e-09)
(-5.84086e-11 -3.05676e-09 5.31279e-11)
(1.60625e-12 -6.40631e-11 -7.76577e-13)
(-1.29925e-11 -2.45983e-11 -2.07865e-13)
(-4.00644e-10 -2.36117e-10 1.86959e-11)
(-7.348e-09 -1.22116e-10 5.09809e-11)
(-9.10976e-08 2.34757e-09 -1.58476e-10)
(5.76262e-07 -0.0166141 -3.38322e-06)
(-3.71343e-07 -7.7063e-05 -6.29066e-07)
(-5.18034e-08 -4.87347e-06 4.30995e-09)
(-3.61208e-09 -2.18307e-07 2.3225e-09)
(-1.59033e-10 -7.16867e-09 1.35489e-10)
(-1.24416e-11 -4.4066e-10 1.66153e-11)
(-2.79721e-10 -6.48522e-09 4.2975e-10)
(-6.06623e-09 -1.20893e-07 9.05555e-09)
(-8.64715e-08 -1.49812e-06 1.27226e-07)
(1.59088e-07 4.22029e-06 -8.80206e-08)
(1.00934e-06 -0.00920156 5.14416e-07)
(-1.61909e-08 -6.25439e-06 4.58653e-08)
(-1.03125e-09 -1.13053e-07 2.32515e-10)
(-2.22499e-11 -1.44661e-09 -5.65041e-12)
(-5.23981e-14 -1.29516e-11 1.19285e-13)
(2.22658e-13 -2.13247e-13 1.87177e-13)
(2.23324e-13 -1.22591e-13 1.42124e-13)
(2.24572e-13 -7.23947e-14 9.76201e-14)
(3.04057e-13 1.24009e-12 1.49673e-13)
(1.36888e-12 1.49796e-11 1.52921e-12)
(3.79804e-07 -0.00967326 6.16786e-07)
(-3.66433e-08 -8.38288e-06 5.94961e-08)
(-1.74611e-09 -1.70281e-07 2.29491e-10)
(-3.91979e-11 -2.43898e-09 -1.24346e-11)
(-1.58209e-13 -2.45503e-11 3.74189e-14)
(3.73417e-13 -3.43338e-13 2.37379e-13)
(3.74172e-13 -1.56711e-13 1.81004e-13)
(3.72077e-13 -1.11612e-13 1.23537e-13)
(4.1901e-13 8.6747e-13 1.33479e-13)
(1.07169e-12 1.28228e-11 1.23671e-12)
(4.35732e-07 -0.0101982 7.42671e-07)
(-4.77338e-08 -1.10136e-05 7.79384e-08)
(-2.56325e-09 -2.51542e-07 2.38234e-10)
(-6.4709e-11 -4.03852e-09 -2.37554e-11)
(-5.03706e-13 -4.56963e-11 -1.5526e-13)
(4.86744e-13 -5.76307e-13 3.047e-13)
(4.92782e-13 -1.92681e-13 2.34512e-13)
(4.90921e-13 -1.39645e-13 1.60261e-13)
(5.38859e-13 8.3725e-13 1.55836e-13)
(1.19094e-12 1.22148e-11 1.20246e-12)
(5.13656e-07 -0.0107859 8.99968e-07)
(-6.1084e-08 -1.43849e-05 1.02387e-07)
(-3.74061e-09 -3.71182e-07 2.28208e-10)
(-1.06959e-10 -6.7184e-09 -4.42416e-11)
(-1.21862e-12 -8.60022e-11 -6.08283e-13)
(6.38357e-13 -1.04029e-12 3.95032e-13)
(6.56086e-13 -2.31813e-13 3.0884e-13)
(6.54418e-13 -1.69216e-13 2.10627e-13)
(6.98919e-13 7.52596e-13 1.85242e-13)
(1.28347e-12 1.11772e-11 1.19157e-12)
(6.12012e-07 -0.0114484 1.09782e-06)
(-7.73862e-08 -1.87552e-05 1.3513e-07)
(-5.46131e-09 -5.5003e-07 1.76948e-10)
(-1.78252e-10 -1.13004e-08 -8.19259e-11)
(-2.68807e-12 -1.64895e-10 -1.63977e-12)
(8.45526e-13 -2.03501e-12 5.15145e-13)
(8.89425e-13 -2.74346e-13 4.14629e-13)
(8.88183e-13 -2.01586e-13 2.83038e-13)
(9.24862e-13 5.83373e-13 2.21451e-13)
(1.40225e-12 9.38581e-12 1.10566e-12)
(7.37533e-07 -0.0122009 1.34893e-06)
(-9.72346e-08 -2.44934e-05 1.79548e-07)
(-8.00649e-09 -8.22106e-07 4.29113e-11)
(-3.01017e-10 -1.93231e-08 -1.52649e-10)
(-5.74281e-12 -3.24202e-10 -3.98081e-12)
(1.12613e-12 -4.31286e-12 6.67896e-13)
(1.23102e-12 -3.24453e-13 5.68018e-13)
(1.23086e-12 -2.30062e-13 3.89484e-13)
(1.25517e-12 3.35778e-13 2.74225e-13)
(1.54262e-12 6.27301e-12 9.42793e-13)
(8.9985e-07 -0.0130631 1.67103e-06)
(-1.21197e-07 -3.21362e-05 2.40743e-07)
(-1.18192e-08 -1.24446e-06 -2.49129e-10)
(-5.17404e-10 -3.37688e-08 -2.88709e-10)
(-1.2226e-11 -6.57743e-10 -9.36982e-12)
(1.49212e-12 -9.83851e-12 8.38465e-13)
(1.74467e-12 -3.99187e-13 7.96684e-13)
(1.74553e-12 -2.55189e-13 5.47932e-13)
(1.74012e-12 -1.55227e-13 3.43924e-13)
(1.72513e-12 1.21487e-12 6.45646e-13)
(1.11299e-06 -0.0140608 2.08941e-06)
(-1.49597e-07 -4.24823e-05 3.26611e-07)
(-1.76065e-08 -1.91555e-06 -8.32327e-10)
(-9.09025e-10 -6.06445e-08 -5.58371e-10)
(-2.6389e-11 -1.38616e-09 -2.21167e-11)
(1.91146e-12 -2.40751e-11 9.39178e-13)
(2.46862e-12 -5.87411e-13 1.14373e-12)
(9.7365e-13 -3.36565e-13 7.81865e-13)
(-1.32483e-11 -1.00396e-12 4.37264e-13)
(-7.28328e-12 -6.29535e-12 1.97034e-13)
(1.41103e-06 -0.0152286 2.64095e-06)
(-1.80903e-07 -5.67505e-05 4.49738e-07)
(-2.64387e-08 -3.01108e-06 -1.95408e-09)
(-1.63543e-09 -1.12556e-07 -1.11069e-09)
(-5.84032e-11 -3.05697e-09 -5.34349e-11)
(1.60855e-12 -6.42405e-11 5.54e-13)
(-1.29921e-11 -2.47369e-11 5.9903e-14)
(-4.00636e-10 -2.36042e-10 -1.87735e-11)
(-7.34797e-09 -1.21369e-10 -5.1068e-11)
(-9.1098e-08 2.34745e-09 1.57997e-10)
(5.76262e-07 -0.0166141 3.38322e-06)
(-3.71343e-07 -7.7063e-05 6.29065e-07)
(-5.18034e-08 -4.87347e-06 -4.31066e-09)
(-3.61208e-09 -2.18307e-07 -2.32303e-09)
(-1.59035e-10 -7.16898e-09 -1.35888e-10)
(-1.24452e-11 -4.40912e-10 -1.69036e-11)
(-2.79726e-10 -6.48541e-09 -4.29941e-10)
(-6.06624e-09 -1.20893e-07 -9.05555e-09)
(-8.64718e-08 -1.49813e-06 -1.27225e-07)
(1.59089e-07 4.2203e-06 8.80584e-08)
(8.30742e-07 -0.00888185 1.36271e-06)
(-4.41723e-08 -4.91161e-06 1.12507e-07)
(5.71346e-10 1.01191e-07 1.0285e-08)
(4.67559e-11 3.31776e-09 3.20902e-10)
(1.38633e-12 5.65555e-11 7.00925e-12)
(2.29436e-13 7.3713e-13 6.74187e-13)
(2.16235e-13 1.18849e-13 4.56942e-13)
(2.214e-13 1.42449e-13 3.16113e-13)
(2.45165e-13 3.49571e-13 2.31806e-13)
(5.78177e-13 3.30207e-12 1.5212e-12)
(3.24374e-07 -0.00931002 1.62518e-06)
(-4.37601e-08 -6.62819e-06 1.4234e-07)
(1.16407e-09 1.33845e-07 1.44517e-08)
(7.86271e-11 5.05932e-09 5.01538e-10)
(2.44516e-12 9.64822e-11 1.18294e-11)
(3.90495e-13 1.36255e-12 9.06177e-13)
(3.62374e-13 1.75858e-13 5.79532e-13)
(3.6848e-13 1.96357e-13 4.05531e-13)
(3.77787e-13 2.86462e-13 2.60728e-13)
(3.29052e-13 -2.84954e-13 5.19596e-13)
(3.66849e-07 -0.00978362 1.94594e-06)
(-5.70483e-08 -8.71398e-06 1.81946e-07)
(1.50569e-09 1.78185e-07 2.03146e-08)
(1.19129e-10 7.73982e-09 7.8489e-10)
(4.02575e-12 1.65334e-10 2.01911e-11)
(5.31208e-13 2.55837e-12 1.26793e-12)
(4.76336e-13 2.76373e-13 7.48632e-13)
(4.85496e-13 2.78468e-13 5.28248e-13)
(4.90287e-13 2.58799e-13 3.20957e-13)
(3.1862e-13 -2.10572e-12 1.27405e-13)
(4.26886e-07 -0.0103103 2.34399e-06)
(-7.352e-08 -1.13485e-05 2.33135e-07)
(1.92856e-09 2.36498e-07 2.8523e-08)
(1.80659e-10 1.18792e-08 1.23213e-09)
(6.72627e-12 2.85845e-10 3.49478e-11)
(7.41591e-13 4.89172e-12 1.86136e-12)
(6.32882e-13 4.52449e-13 9.86613e-13)
(6.45516e-13 4.0629e-13 6.99436e-13)
(6.35927e-13 5.2812e-14 3.6673e-13)
(3.2846e-13 -4.26336e-12 -3.38358e-13)
(5.01783e-07 -0.0108996 2.84112e-06)
(-9.42935e-08 -1.47119e-05 2.99875e-07)
(2.43684e-09 3.13042e-07 4.00976e-08)
(2.74834e-10 1.83433e-08 1.94637e-09)
(1.14321e-11 5.00558e-10 6.14944e-11)
(1.07542e-12 9.55515e-12 2.8907e-12)
(8.56509e-13 7.57659e-13 1.32967e-12)
(8.73652e-13 6.18335e-13 9.4586e-13)
(8.49243e-13 -1.30974e-13 4.54185e-13)
(3.78784e-13 -7.06485e-12 -9.41674e-13)
(5.96021e-07 -0.0115633 3.4671e-06)
(-1.20698e-07 -1.90555e-05 3.87924e-07)
(3.02222e-09 4.13211e-07 5.65714e-08)
(4.20211e-10 2.85748e-08 3.10363e-09)
(1.98024e-11 8.91316e-10 1.10332e-10)
(1.6334e-12 1.91552e-11 4.78545e-12)
(1.18434e-12 1.30899e-12 1.83897e-12)
(1.20741e-12 9.66332e-13 1.30829e-12)
(1.16117e-12 -3.62185e-13 5.88603e-13)
(4.63716e-13 -1.07726e-11 -1.72058e-12)
(7.15919e-07 -0.0123164 4.26342e-06)
(-1.54519e-07 -2.47374e-05 5.05811e-07)
(3.64387e-09 5.43476e-07 8.02908e-08)
(6.46723e-10 4.50284e-08 5.0117e-09)
(3.50344e-11 1.62039e-09 2.02543e-10)
(2.62213e-12 3.96178e-11 8.49436e-12)
(1.68035e-12 2.36136e-12 2.62742e-12)
(1.7087e-12 1.54976e-12 1.85578e-12)
(1.62753e-12 -6.8341e-13 7.92666e-13)
(6.15349e-13 -1.58544e-11 -2.79151e-12)
(8.70442e-07 -0.0131783 5.28884e-06)
(-1.98153e-07 -3.22772e-05 6.66497e-07)
(4.19098e-09 7.10725e-07 1.14928e-07)
(1.00295e-09 7.19806e-08 8.2237e-09)
(6.34587e-11 3.02065e-09 3.81972e-10)
(4.48974e-12 8.50369e-11 1.62348e-11)
(2.44975e-12 4.51056e-12 3.9119e-12)
(2.26392e-12 2.53318e-12 2.70086e-12)
(8.10136e-13 -1.15594e-12 1.09169e-12)
(-1.12889e-13 -2.30712e-11 -4.30158e-12)
(1.08463e-06 -0.0141745 6.62814e-06)
(-2.5392e-07 -4.2447e-05 8.90308e-07)
(4.43356e-09 9.19966e-07 1.66376e-07)
(1.57146e-09 1.17043e-07 1.37628e-08)
(1.17895e-10 5.80196e-09 7.43561e-10)
(8.10123e-12 1.90538e-10 3.3469e-11)
(2.20922e-14 6.09265e-12 5.37321e-12)
(-6.90146e-11 -1.88606e-11 -5.80646e-12)
(-9.93096e-10 -2.31593e-11 -5.43514e-11)
(-7.73817e-09 7.60256e-11 -2.113e-11)
(4.39882e-07 -0.0153389 8.41353e-06)
(-3.21442e-07 -5.66005e-05 1.2056e-06)
(1.05519e-08 1.15462e-06 2.43766e-07)
(3.13002e-09 1.9367e-07 2.35643e-08)
(2.58353e-10 1.1478e-08 1.49511e-09)
(1.27962e-11 3.94537e-10 6.38874e-11)
(-4.85766e-11 -1.12068e-09 -2.53747e-10)
(-8.45485e-10 -1.60398e-08 -4.54854e-09)
(-8.08677e-09 -1.27908e-07 -5.17973e-08)
(1.66283e-08 4.43559e-07 -1.74793e-07)
(5.42085e-07 -0.00831441 1.81063e-06)
(-8.00434e-08 -2.89195e-06 1.23252e-07)
(2.51532e-09 3.57127e-07 3.55494e-08)
(1.12589e-10 7.68407e-09 1.037e-09)
(2.1645e-12 9.19725e-11 1.68261e-11)
(2.0653e-13 1.04584e-12 1.02843e-12)
(2.03318e-13 4.91795e-13 7.45551e-13)
(2.17507e-13 5.22529e-13 5.50872e-13)
(2.12477e-13 1.52025e-13 1.98267e-13)
(1.46477e-13 -2.39105e-12 -7.32591e-13)
(2.37847e-07 -0.00866981 2.12608e-06)
(-5.08284e-08 -4.0195e-06 1.47619e-07)
(4.54342e-09 4.89998e-07 5.00281e-08)
(1.84604e-10 1.16866e-08 1.60767e-09)
(3.71165e-12 1.53473e-10 2.80914e-11)
(3.51054e-13 1.70982e-12 1.36906e-12)
(3.40741e-13 6.64943e-13 9.48591e-13)
(3.61967e-13 6.94502e-13 7.14555e-13)
(3.54408e-13 2.38094e-13 2.903e-13)
(9.68893e-14 -3.81596e-12 -1.34645e-12)
(2.6048e-07 -0.00905871 2.50768e-06)
(-6.55886e-08 -5.33994e-06 1.78903e-07)
(6.15242e-09 6.68948e-07 6.99091e-08)
(2.78566e-10 1.76976e-08 2.47882e-09)
(6.0654e-12 2.55661e-10 4.69884e-11)
(4.7295e-13 2.87142e-12 1.88538e-12)
(4.45024e-13 9.24333e-13 1.22823e-12)
(4.74833e-13 9.4627e-13 9.41431e-13)
(4.64992e-13 3.11681e-13 3.9755e-13)
(1.30768e-13 -4.86864e-12 -1.75225e-12)
(2.94422e-07 -0.00948612 2.97512e-06)
(-8.40366e-08 -6.95907e-06 2.16898e-07)
(8.27665e-09 9.10255e-07 9.72377e-08)
(4.19781e-10 2.6808e-08 3.8196e-09)
(9.99749e-12 4.28352e-10 7.92293e-11)
(6.51539e-13 4.96798e-12 2.70251e-12)
(5.86656e-13 1.31658e-12 1.61973e-12)
(6.28989e-13 1.32327e-12 1.26308e-12)
(6.17034e-13 4.42411e-13 5.54534e-13)
(1.89812e-13 -6.20905e-12 -2.32229e-12)
(3.35566e-07 -0.00995804 3.5497e-06)
(-1.07427e-07 -8.96242e-06 2.63103e-07)
(1.10876e-08 1.23777e-06 1.34992e-07)
(6.33879e-10 4.07587e-08 5.9021e-09)
(1.66776e-11 7.24779e-10 1.35098e-10)
(9.28189e-13 8.86408e-12 4.05732e-12)
(7.86749e-13 1.92027e-12 2.17941e-12)
(8.47585e-13 1.89787e-12 1.72686e-12)
(8.33827e-13 6.68199e-13 7.93386e-13)
(2.84284e-13 -7.9423e-12 -3.01919e-12)
(3.85472e-07 -0.0104818 4.26046e-06)
(-1.374e-07 -1.14641e-05 3.19582e-07)
(1.48167e-08 1.68595e-06 1.87507e-07)
(9.61847e-10 6.23932e-08 9.17415e-09)
(2.82358e-11 1.2432e-09 2.33709e-10)
(1.37749e-12 1.63467e-11 6.4223e-12)
(1.07604e-12 2.8702e-12 2.99871e-12)
(1.16498e-12 2.79043e-12 2.41222e-12)
(1.15008e-12 1.05464e-12 1.16091e-12)
(4.34587e-13 -1.02397e-11 -3.92614e-12)
(4.46104e-07 -0.0110664 5.14699e-06)
(-1.76238e-07 -1.46182e-05 3.89235e-07)
(1.97773e-08 2.30536e-06 2.6118e-07)
(1.47041e-09 9.64541e-08 1.43874e-08)
(4.86574e-11 2.16996e-09 4.11531e-10)
(2.14643e-12 3.12494e-11 1.07807e-11)
(1.50544e-12 4.4083e-12 4.23137e-12)
(1.63818e-12 4.21168e-12 3.45326e-12)
(1.62423e-12 1.71612e-12 1.73917e-12)
(6.7769e-13 -1.33552e-11 -5.13911e-12)
(5.19959e-07 -0.0117232 6.26366e-06)
(-2.27177e-07 -1.86354e-05 4.76289e-07)
(2.63892e-08 3.17138e-06 3.65606e-07)
(2.27009e-09 1.51038e-07 2.2832e-08)
(8.56067e-11 3.86938e-09 7.40239e-10)
(3.54072e-12 6.21454e-11 1.92806e-11)
(2.15396e-12 6.99454e-12 6.14953e-12)
(2.47213e-12 6.54772e-12 5.08315e-12)
(3.86076e-12 2.8724e-12 2.66917e-12)
(5.46454e-12 -1.76736e-11 -6.80233e-12)
(6.20337e-07 -0.0124662 7.68654e-06)
(-2.94278e-07 -2.38085e-05 5.8723e-07)
(3.52073e-08 4.39871e-06 5.15461e-07)
(3.5457e-09 2.40338e-07 3.67788e-08)
(1.54152e-10 7.07897e-09 1.3655e-09)
(6.20972e-12 1.28995e-10 3.6826e-11)
(4.00477e-12 1.2994e-11 9.72215e-12)
(3.15288e-11 3.05054e-11 1.3371e-11)
(6.97633e-10 5.88833e-11 1.22707e-11)
(9.22455e-09 3.5997e-11 -7.64784e-12)
(2.45474e-07 -0.0133139 9.53372e-06)
(-2.40626e-07 -3.06817e-05 7.26752e-07)
(6.225e-08 6.15755e-06 7.32953e-07)
(6.39765e-09 3.8998e-07 6.03593e-08)
(3.06277e-10 1.33746e-08 2.59938e-09)
(1.03486e-11 2.93836e-10 7.82875e-11)
(1.97037e-11 4.07109e-10 1.19192e-10)
(5.23238e-10 1.00635e-08 3.14435e-09)
(8.20398e-09 1.3496e-07 4.5081e-08)
(2.25515e-08 2.34144e-07 3.09893e-08)
(2.28367e-07 -0.0076034 1.87974e-06)
(-1.02807e-07 -9.28685e-07 9.45969e-08)
(3.57677e-09 4.96392e-07 6.35781e-08)
(1.26331e-10 8.40018e-09 1.54355e-09)
(1.6299e-12 6.46842e-11 1.64115e-11)
(1.61246e-13 6.81716e-13 1.07028e-12)
(1.85142e-13 8.53144e-13 9.8067e-13)
(2.12401e-13 9.63563e-13 8.03073e-13)
(2.08173e-13 4.94495e-13 2.58435e-13)
(9.10755e-14 -2.56664e-12 -1.77553e-12)
(1.54129e-07 -0.00787671 2.14128e-06)
(-5.17618e-08 -1.54846e-06 9.96534e-08)
(6.20474e-09 6.75664e-07 8.8249e-08)
(1.99119e-10 1.24989e-08 2.34121e-09)
(2.60682e-12 1.02089e-10 2.59617e-11)
(2.71293e-13 8.2658e-13 1.31417e-12)
(3.12662e-13 1.11649e-12 1.24961e-12)
(3.55857e-13 1.25478e-12 1.05156e-12)
(3.58453e-13 7.14145e-13 4.24532e-13)
(8.81603e-14 -3.44754e-12 -2.33723e-12)
(1.5931e-07 -0.00817184 2.45797e-06)
(-6.55079e-08 -2.22826e-06 1.05966e-07)
(8.3427e-09 9.10141e-07 1.21057e-07)
(2.93733e-10 1.84132e-08 3.5106e-09)
(4.0371e-12 1.59864e-10 4.08475e-11)
(3.4473e-13 9.64045e-13 1.61699e-12)
(4.04713e-13 1.49332e-12 1.6173e-12)
(4.64393e-13 1.67077e-12 1.39531e-12)
(4.71539e-13 9.69202e-13 6.25186e-13)
(1.35106e-13 -4.16478e-12 -2.79222e-12)
(1.71162e-07 -0.00849151 2.84078e-06)
(-8.24383e-08 -3.02315e-06 1.10288e-07)
(1.11148e-08 1.21779e-06 1.64855e-07)
(4.31005e-10 2.7014e-08 5.2374e-09)
(6.28553e-12 2.51005e-10 6.45358e-11)
(4.38789e-13 1.04774e-12 1.98576e-12)
(5.27829e-13 2.03651e-12 2.12806e-12)
(6.1156e-13 2.27775e-12 1.88306e-12)
(6.26769e-13 1.36224e-12 9.2534e-13)
(2.13389e-13 -5.06271e-12 -3.36225e-12)
(1.84922e-07 -0.00883892 3.30043e-06)
(-1.03487e-07 -3.961e-06 1.10747e-07)
(1.47194e-08 1.62319e-06 2.23516e-07)
(6.31447e-10 3.96048e-08 7.80231e-09)
(9.88005e-12 3.96809e-10 1.02768e-10)
(5.63267e-13 9.71756e-13 2.41773e-12)
(6.99032e-13 2.82764e-12 2.84742e-12)
(8.18746e-13 3.17802e-12 2.5877e-12)
(8.47585e-13 1.97195e-12 1.37992e-12)
(3.32173e-13 -6.20292e-12 -4.08479e-12)
(2.00291e-07 -0.00921783 3.85243e-06)
(-1.29906e-07 -5.07497e-06 1.04838e-07)
(1.94216e-08 2.16053e-06 3.02406e-07)
(9.26408e-10 5.81955e-08 1.164e-08)
(1.57221e-11 6.33686e-10 1.65384e-10)
(7.2888e-13 5.00026e-13 2.88032e-12)
(9.42003e-13 3.99742e-12 3.88051e-12)
(1.11709e-12 4.54319e-12 3.62906e-12)
(1.16905e-12 2.93445e-12 2.08366e-12)
(5.15489e-13 -7.67057e-12 -5.01272e-12)
(2.16896e-07 -0.00963271 4.51729e-06)
(-1.63381e-07 -6.40569e-06 8.89633e-08)
(2.55797e-08 2.87785e-06 4.09033e-07)
(1.36455e-09 8.59308e-08 1.74336e-08)
(2.53889e-11 1.02508e-09 2.69603e-10)
(9.50462e-13 -8.78843e-13 3.26737e-12)
(1.29466e-12 5.75359e-12 5.39229e-12)
(1.55801e-12 6.66304e-12 5.20758e-12)
(1.6499e-12 4.48332e-12 3.19648e-12)
(8.05751e-13 -9.5829e-12 -6.2172e-12)
(2.34003e-07 -0.010089 5.32168e-06)
(-2.06231e-07 -8.00332e-06 5.77649e-08)
(3.36805e-08 3.84347e-06 5.54027e-07)
(2.0226e-09 1.27817e-07 2.62728e-08)
(4.17069e-11 1.68398e-09 4.46151e-10)
(1.24801e-12 -4.28774e-12 3.29005e-12)
(1.80874e-12 8.43497e-12 7.65582e-12)
(2.42427e-12 1.00568e-11 7.6693e-12)
(4.76689e-12 7.04663e-12 4.993e-12)
(7.61087e-12 -1.20914e-11 -7.78082e-12)
(2.5835e-07 -0.010593 6.29988e-06)
(-2.61328e-07 -9.92913e-06 3.38348e-09)
(4.43771e-08 5.15616e-06 7.52617e-07)
(3.02227e-09 1.91979e-07 3.99265e-08)
(6.98114e-11 2.81646e-09 7.50997e-10)
(1.66224e-12 -1.23912e-11 2.14984e-12)
(4.79963e-12 1.49194e-11 1.2198e-11)
(5.99295e-11 4.47171e-11 2.6073e-11)
(1.15774e-09 8.61372e-11 4.51815e-11)
(1.37403e-08 3.92439e-11 1.34022e-11)
(9.65494e-08 -0.0111529 7.50705e-06)
(-1.6234e-07 -1.23453e-05 -9.12656e-08)
(6.97262e-08 6.95671e-06 1.02617e-06)
(4.82281e-09 2.92029e-07 6.13451e-08)
(1.15101e-10 4.8254e-09 1.29299e-09)
(1.43319e-12 -3.92719e-12 8.73361e-12)
(3.61847e-11 7.31696e-10 3.38919e-10)
(8.57687e-10 1.52684e-08 7.71446e-09)
(1.23665e-08 1.86172e-07 1.02704e-07)
(2.77723e-08 2.20678e-07 1.09903e-07)
(-4.88072e-08 -0.00684816 1.76989e-06)
(-1.04147e-07 5.63804e-07 6.7764e-08)
(3.04377e-09 4.838e-07 7.42018e-08)
(1.25113e-10 8.22561e-09 1.92229e-09)
(9.89527e-13 3.36292e-11 1.14305e-11)
(1.19683e-13 4.02592e-13 9.56969e-13)
(1.66483e-13 1.14366e-12 1.1485e-12)
(2.08072e-13 1.38391e-12 1.04924e-12)
(2.10455e-13 9.58724e-13 3.35552e-13)
(7.05863e-14 -2.23746e-12 -2.72614e-12)
(9.5658e-08 -0.00704541 1.89562e-06)
(-4.62812e-08 2.55378e-07 5.2474e-08)
(5.71837e-09 6.52415e-07 1.04191e-07)
(1.81279e-10 1.13988e-08 2.73368e-09)
(1.36003e-12 4.6634e-11 1.58563e-11)
(2.05246e-13 2.91773e-13 1.09001e-12)
(2.85452e-13 1.46118e-12 1.46675e-12)
(3.528e-13 1.76579e-12 1.38373e-12)
(3.73631e-13 1.29432e-12 5.87949e-13)
(8.36362e-14 -2.88627e-12 -3.37274e-12)
(8.87051e-08 -0.00725548 2.07939e-06)
(-5.73955e-08 -4.01439e-08 3.45891e-08)
(7.6678e-09 8.66722e-07 1.42393e-07)
(2.50096e-10 1.55973e-08 3.82157e-09)
(1.8174e-12 6.05877e-11 2.07157e-11)
(2.47975e-13 -1.92824e-14 1.19153e-12)
(3.66386e-13 1.90769e-12 1.90063e-12)
(4.57974e-13 2.30193e-12 1.84587e-12)
(4.91483e-13 1.71023e-12 8.99002e-13)
(1.36829e-13 -3.41276e-12 -3.93489e-12)
(8.69268e-08 -0.00747967 2.31161e-06)
(-7.05558e-08 -3.56207e-07 1.00351e-08)
(1.00916e-08 1.13865e-06 1.91164e-07)
(3.4448e-10 2.1366e-08 5.3363e-09)
(2.39587e-12 7.67691e-11 2.64544e-11)
(2.93785e-13 -7.07844e-13 1.20287e-12)
(4.73224e-13 2.539e-12 2.50012e-12)
(5.9937e-13 3.06892e-12 2.4997e-12)
(6.53115e-13 2.32813e-12 1.36547e-12)
(2.24047e-13 -4.05707e-12 -4.63774e-12)
(8.54795e-08 -0.00771946 2.58785e-06)
(-8.63778e-08 -7.00654e-07 -2.45171e-08)
(1.31308e-08 1.48423e-06 2.54102e-07)
(4.76582e-10 2.94309e-08 7.48898e-09)
(3.1972e-12 9.73731e-11 3.38753e-11)
(3.42207e-13 -2.07352e-12 1.0179e-12)
(6.2034e-13 3.44598e-12 3.34285e-12)
(7.97143e-13 4.1849e-12 3.44169e-12)
(8.82439e-13 3.25706e-12 2.07361e-12)
(3.54989e-13 -4.85345e-12 -5.52619e-12)
(8.33922e-08 -0.00797652 2.90926e-06)
(-1.05597e-07 -1.07974e-06 -7.36383e-08)
(1.69581e-08 1.9248e-06 3.35523e-07)
(6.63607e-10 4.08254e-08 1.05705e-08)
(4.3527e-12 1.24555e-10 4.36973e-11)
(3.85681e-13 -4.72242e-12 4.08536e-13)
(8.26903e-13 4.77146e-12 4.54972e-12)
(1.0795e-12 5.84156e-12 4.8267e-12)
(1.21512e-12 4.68182e-12 3.16929e-12)
(5.555e-13 -5.8387e-12 -6.6583e-12)
(7.96917e-08 -0.00825277 3.27912e-06)
(-1.29107e-07 -1.49874e-06 -1.43083e-07)
(2.17971e-08 2.48884e-06 4.4116e-07)
(9.30597e-10 5.70487e-08 1.50171e-08)
(6.07219e-12 1.61264e-10 5.70731e-11)
(4.07902e-13 -9.7555e-12 -1.0585e-12)
(1.12289e-12 6.74399e-12 6.31537e-12)
(1.49354e-12 8.35746e-12 6.91089e-12)
(1.71443e-12 6.91581e-12 4.90136e-12)
(8.68208e-13 -7.05593e-12 -8.103e-12)
(7.31913e-08 -0.00855044 3.7017e-06)
(-1.58068e-07 -1.96189e-06 -2.40686e-07)
(2.79363e-08 3.21445e-06 5.7862e-07)
(1.31472e-09 8.03196e-08 2.14777e-08)
(8.70751e-12 2.11427e-10 7.56004e-11)
(3.72966e-13 -1.92853e-11 -4.2435e-12)
(1.54867e-12 9.75514e-12 8.96758e-12)
(2.32994e-12 1.23292e-11 1.01617e-11)
(5.10002e-12 1.04824e-11 7.66979e-12)
(8.24602e-12 -8.58935e-12 -9.9847e-12)
(6.84406e-08 -0.00887212 4.18101e-06)
(-1.93851e-07 -2.47213e-06 -3.77437e-07)
(3.57711e-08 4.15334e-06 7.5815e-07)
(1.87177e-09 1.13968e-07 3.09318e-08)
(1.28332e-11 2.7986e-10 1.01399e-10)
(2.41445e-13 -3.75152e-11 -1.09138e-11)
(4.7787e-12 1.66392e-11 1.43745e-11)
(6.80342e-11 4.71099e-11 3.50309e-11)
(1.25911e-09 9.00092e-11 6.66312e-11)
(1.48561e-08 3.89198e-11 2.46249e-11)
(2.15316e-08 -0.00922085 4.73037e-06)
(-1.03824e-07 -3.0847e-06 -5.7308e-07)
(5.187e-08 5.37459e-06 9.93238e-07)
(2.69235e-09 1.62896e-07 4.48267e-08)
(1.25311e-11 3.73756e-10 1.3785e-10)
(-2.03577e-13 -4.55981e-11 -9.98824e-12)
(3.8503e-11 7.33033e-10 4.60096e-10)
(8.99162e-10 1.46345e-08 1.02179e-08)
(1.32617e-08 1.80221e-07 1.39209e-07)
(2.93606e-08 2.00719e-07 1.5746e-07)
(-2.74191e-07 -0.00612021 1.19222e-06)
(-8.90752e-08 1.59404e-06 6.45278e-08)
(2.39316e-09 3.82336e-07 6.90136e-08)
(4.79994e-11 3.02365e-09 8.51425e-10)
(-1.15295e-13 -1.46921e-11 -4.99611e-12)
(9.52676e-14 5.74348e-13 9.31166e-13)
(1.50036e-13 1.37726e-12 1.25964e-12)
(2.06679e-13 1.79919e-12 1.28059e-12)
(2.18002e-13 1.54215e-12 3.59345e-13)
(3.00117e-14 -1.8772e-12 -4.40635e-12)
(7.5833e-08 -0.00625487 1.76503e-06)
(-3.69355e-08 1.389e-06 3.93821e-08)
(3.68937e-09 5.12023e-07 9.5323e-08)
(9.75971e-11 6.39887e-09 1.86731e-09)
(9.59395e-14 -8.40332e-12 -2.37468e-12)
(1.67972e-13 4.11171e-13 9.98638e-13)
(2.63629e-13 1.71993e-12 1.61569e-12)
(3.58378e-13 2.2504e-12 1.70541e-12)
(4.03401e-13 1.98867e-12 7.04163e-13)
(4.61606e-14 -2.4189e-12 -5.32284e-12)
(5.55655e-08 -0.00639646 1.71251e-06)
(-4.51586e-08 1.2501e-06 8.61238e-09)
(5.22882e-09 6.71744e-07 1.28167e-07)
(1.55557e-10 9.91355e-09 2.96659e-09)
(1.6061e-13 -1.02505e-11 -2.86946e-12)
(1.97403e-13 1.01012e-13 1.02859e-12)
(3.36323e-13 2.19539e-12 2.10115e-12)
(4.63717e-13 2.87693e-12 2.29266e-12)
(5.31746e-13 2.55832e-12 1.13586e-12)
(9.85422e-14 -2.85525e-12 -6.20921e-12)
(4.45607e-08 -0.00654553 1.77614e-06)
(-5.46099e-08 1.138e-06 -2.80717e-08)
(7.01469e-09 8.68788e-07 1.70137e-07)
(2.17e-10 1.36638e-08 4.18454e-09)
(3.84981e-14 -2.19344e-11 -7.40164e-12)
(2.29246e-13 -4.36227e-13 9.88478e-13)
(4.30992e-13 2.85858e-12 2.77027e-12)
(6.04388e-13 3.75875e-12 3.12092e-12)
(7.07259e-13 3.3869e-12 1.7874e-12)
(1.85949e-13 -3.38307e-12 -7.34071e-12)
(3.58719e-08 -0.00670268 1.88093e-06)
(-6.54659e-08 1.04068e-06 -7.76392e-08)
(9.12552e-09 1.11176e-06 2.25443e-07)
(2.95775e-10 1.84041e-08 5.77914e-09)
(-1.15723e-13 -3.86062e-11 -1.42558e-11)
(2.65012e-13 -1.3265e-12 8.20711e-13)
(5.60117e-13 3.7956e-12 3.70874e-12)
(8.0003e-13 5.02082e-12 4.3108e-12)
(9.56607e-13 4.61142e-12 2.7852e-12)
(3.18364e-13 -4.02574e-12 -8.80794e-12)
(2.73643e-08 -0.00686859 2.01149e-06)
(-7.80456e-08 9.54737e-07 -1.39821e-07)
(1.1672e-08 1.41038e-06 2.92921e-07)
(3.9975e-10 2.45501e-08 7.87507e-09)
(-5.49804e-13 -7.34192e-11 -2.87755e-11)
(2.97308e-13 -2.98984e-12 3.27336e-13)
(7.39267e-13 5.14775e-12 5.0515e-12)
(1.07793e-12 6.86514e-12 6.05609e-12)
(1.31908e-12 6.46266e-12 4.34579e-12)
(5.22375e-13 -4.8036e-12 -1.07105e-11)
(1.78759e-08 -0.007044 2.15915e-06)
(-9.28355e-08 8.79202e-07 -2.20293e-07)
(1.47806e-08 1.77797e-06 3.76947e-07)
(5.37764e-10 3.26548e-08 1.06867e-08)
(-1.3759e-12 -1.33278e-10 -5.42033e-11)
(3.18836e-13 -5.93981e-12 -7.47007e-13)
(9.92841e-13 7.14048e-12 7.01352e-12)
(1.48338e-12 9.62572e-12 8.68075e-12)
(1.86312e-12 9.31478e-12 6.8259e-12)
(8.42352e-13 -5.74341e-12 -1.32183e-11)
(6.43735e-09 -0.00722974 2.31762e-06)
(-1.10337e-07 8.15193e-07 -3.25023e-07)
(1.85949e-08 2.23145e-06 4.8196e-07)
(7.23525e-10 4.3437e-08 1.4494e-08)
(-2.80686e-12 -2.32634e-10 -9.7004e-11)
(3.14046e-13 -1.10976e-11 -2.873e-12)
(1.36013e-12 1.01578e-11 9.95132e-12)
(2.30154e-12 1.39155e-11 1.27794e-11)
(5.35338e-12 1.38315e-11 1.08864e-11)
(8.18199e-12 -6.89783e-12 -1.66231e-11)
(-3.52166e-09 -0.00742675 2.48038e-06)
(-1.3111e-07 7.6554e-07 -4.613e-07)
(2.32897e-08 2.7924e-06 6.13396e-07)
(9.75293e-10 5.78823e-08 1.9676e-08)
(-5.22935e-12 -3.96009e-10 -1.68277e-10)
(3.04982e-13 -2.01356e-11 -6.92153e-12)
(4.75779e-12 1.66849e-11 1.59395e-11)
(7.126e-11 4.54657e-11 4.22874e-11)
(1.26807e-09 8.59378e-11 8.41701e-11)
(1.44398e-08 3.61189e-11 2.67524e-11)
(-4.69401e-09 -0.00763609 2.64858e-06)
(-6.54481e-08 7.01871e-07 -6.42899e-07)
(3.17583e-08 3.48819e-06 7.7817e-07)
(1.27284e-09 7.73478e-08 2.67672e-08)
(-1.29417e-11 -6.61203e-10 -2.84979e-10)
(5.91575e-13 -1.09564e-11 3.0824e-12)
(3.79033e-11 6.58154e-10 5.4292e-10)
(8.83229e-10 1.27237e-08 1.19658e-08)
(1.29221e-08 1.53049e-07 1.59726e-07)
(3.03089e-08 1.82084e-07 2.10565e-07)
(-4.74665e-07 -0.00546006 1.31606e-07)
(-6.70599e-08 1.74281e-06 3.41032e-08)
(1.51121e-09 2.4568e-07 5.24868e-08)
(2.9299e-11 1.70147e-09 5.89881e-10)
(-1.1688e-13 -1.13227e-11 -4.61779e-12)
(7.96009e-14 8.70277e-13 9.55657e-13)
(1.3718e-13 1.60858e-12 1.3262e-12)
(2.10759e-13 2.30838e-12 1.49579e-12)
(2.33185e-13 2.43157e-12 2.4179e-13)
(-8.89752e-14 -1.36512e-12 -8.20001e-12)
(-3.03384e-08 -0.00554668 3.57566e-07)
(-2.88972e-08 2.20623e-06 6.83827e-08)
(2.63223e-09 3.41782e-07 7.37913e-08)
(4.16934e-11 2.49997e-09 8.75903e-10)
(-3.07336e-13 -2.20492e-11 -9.67351e-12)
(1.5157e-13 9.00712e-13 1.10057e-12)
(2.51356e-13 1.96651e-12 1.71997e-12)
(3.79844e-13 2.83169e-12 2.0294e-12)
(4.58199e-13 3.02128e-12 6.66439e-13)
(-9.00676e-14 -1.88544e-12 -9.95939e-12)
(7.8217e-08 -0.00563707 1.01557e-06)
(-3.40841e-08 1.98419e-06 2.53909e-08)
(3.53365e-09 4.50794e-07 9.94266e-08)
(5.01138e-11 2.922e-09 1.04329e-09)
(-6.76482e-13 -4.1103e-11 -1.89966e-11)
(1.83972e-13 9.56098e-13 1.29287e-12)
(3.19585e-13 2.45731e-12 2.25726e-12)
(4.91941e-13 3.55295e-12 2.77126e-12)
(6.07803e-13 3.79858e-12 1.2291e-12)
(-5.74772e-14 -2.30824e-12 -1.18555e-11)
(4.18041e-08 -0.00573109 1.5279e-06)
(-3.9865e-08 1.89507e-06 -1.30968e-08)
(4.00901e-09 5.81306e-07 1.31638e-07)
(6.39284e-11 3.94011e-09 1.44137e-09)
(-1.07227e-12 -6.48608e-11 -3.09563e-11)
(2.21688e-13 9.43308e-13 1.48277e-12)
(4.07365e-13 3.13039e-12 2.99593e-12)
(6.41206e-13 4.55644e-12 3.82162e-12)
(8.13729e-13 4.91545e-12 2.10691e-12)
(4.1299e-15 -2.83113e-12 -1.43638e-11)
(2.4268e-08 -0.00582903 1.47521e-06)
(-4.65019e-08 1.85054e-06 -6.08805e-08)
(4.98505e-09 7.33176e-07 1.70046e-07)
(1.28116e-10 8.1048e-09 3.04281e-09)
(-1.21437e-12 -7.79615e-11 -3.75882e-11)
(2.56288e-13 5.22385e-13 1.45764e-12)
(5.25605e-13 4.06042e-12 4.02299e-12)
(8.48612e-13 5.97799e-12 5.33975e-12)
(1.10887e-12 6.55586e-12 3.50664e-12)
(9.99819e-14 -3.48771e-12 -1.77458e-11)
(1.13987e-08 -0.00593114 1.43945e-06)
(-5.46192e-08 1.8382e-06 -1.16966e-07)
(6.76113e-09 9.15592e-07 2.17355e-07)
(1.84941e-10 1.13611e-08 4.36655e-09)
(-1.90161e-12 -1.14986e-10 -5.66967e-11)
(3.00306e-13 -3.3944e-15 1.43109e-12)
(6.8906e-13 5.38523e-12 5.49154e-12)
(1.14248e-12 8.03154e-12 7.58431e-12)
(1.54003e-12 9.00165e-12 5.75298e-12)
(2.46689e-13 -4.34107e-12 -2.24691e-11)
(2.88286e-10 -0.00603768 1.44037e-06)
(-6.3514e-08 1.84935e-06 -1.85139e-07)
(8.56767e-09 1.1329e-06 2.75228e-07)
(2.47747e-10 1.50075e-08 5.90313e-09)
(-3.00267e-12 -1.73572e-10 -8.75163e-11)
(3.5394e-13 -8.61017e-13 1.27649e-12)
(9.20081e-13 7.30132e-12 7.62716e-12)
(1.5709e-12 1.10704e-11 1.10315e-11)
(2.18619e-12 1.27477e-11 9.42133e-12)
(4.7097e-13 -5.50635e-12 -2.94051e-11)
(-1.07372e-08 -0.00614894 1.44928e-06)
(-7.36998e-08 1.88064e-06 -2.71315e-07)
(1.06921e-08 1.39189e-06 3.47428e-07)
(3.26367e-10 1.9454e-08 7.84188e-09)
(-4.56935e-12 -2.56734e-10 -1.32272e-10)
(4.18937e-13 -2.20444e-12 9.16931e-13)
(1.25286e-12 1.01358e-11 1.08047e-11)
(2.39605e-12 1.56681e-11 1.63343e-11)
(5.61156e-12 1.8716e-11 1.58547e-11)
(7.43756e-12 -7.24073e-12 -4.03161e-11)
(-1.96011e-08 -0.00626523 1.45686e-06)
(-8.53035e-08 1.93176e-06 -3.77499e-07)
(1.32122e-08 1.70088e-06 4.3466e-07)
(4.2735e-10 2.49848e-08 1.03098e-08)
(-6.97268e-12 -3.8302e-10 -2.0105e-10)
(5.46201e-13 -4.43511e-12 1.5524e-13)
(3.99045e-12 1.58207e-11 1.70326e-11)
(4.93238e-11 4.13587e-11 4.59693e-11)
(1.30642e-09 8.42518e-11 1.10425e-10)
(1.20579e-08 2.89171e-11 -1.41228e-11)
(-9.05835e-09 -0.0063869 1.46096e-06)
(-4.15236e-08 1.98485e-06 -5.10886e-07)
(1.72868e-08 2.06901e-06 5.39583e-07)
(5.21199e-10 3.19531e-08 1.34871e-08)
(-1.2119e-11 -5.72536e-10 -3.05232e-10)
(1.06463e-12 8.66576e-12 1.55075e-11)
(2.58597e-11 3.82773e-10 4.29147e-10)
(8.46077e-10 1.09146e-08 1.32681e-08)
(1.04121e-08 1.05534e-07 1.37425e-07)
(3.33157e-08 1.71577e-07 3.30102e-07)
(-3.29613e-07 -0.00488396 -1.30338e-07)
(-4.17476e-08 1.26987e-06 -2.05012e-08)
(6.46793e-10 1.23466e-07 2.90881e-08)
(1.09805e-11 5.71669e-10 2.3456e-10)
(-8.92817e-14 -7.10916e-12 -3.46008e-12)
(6.63127e-14 1.13124e-12 9.36491e-13)
(1.27036e-13 1.94435e-12 1.33317e-12)
(2.20485e-13 3.11461e-12 1.6384e-12)
(2.42074e-13 4.11942e-12 -4.52854e-13)
(-4.63094e-13 1.46254e-13 -1.81282e-11)
(-1.31184e-07 -0.0049359 -3.66283e-07)
(-2.53593e-08 1.32965e-06 -3.633e-08)
(1.15151e-09 1.83944e-07 4.49683e-08)
(1.57297e-11 9.31168e-10 3.92414e-10)
(-1.65785e-13 -1.28658e-11 -6.65646e-12)
(1.40838e-13 1.28072e-12 1.14587e-12)
(2.50324e-13 2.32515e-12 1.76976e-12)
(4.25514e-13 3.76247e-12 2.32343e-12)
(5.50406e-13 5.0196e-12 1.52492e-14)
(-5.31942e-13 -3.66611e-13 -2.25873e-11)
(-2.14257e-07 -0.00498927 -1.28588e-07)
(-2.76945e-08 1.90489e-06 1.01323e-08)
(1.68201e-09 2.57518e-07 6.55497e-08)
(2.31368e-11 1.35588e-09 5.90109e-10)
(-3.15494e-13 -2.11721e-11 -1.14848e-11)
(1.72923e-13 1.47095e-12 1.41107e-12)
(3.18906e-13 2.83941e-12 2.37165e-12)
(5.549e-13 4.64529e-12 3.2835e-12)
(7.38681e-13 6.21956e-12 6.42283e-13)
(-6.32198e-13 -7.33206e-13 -2.83652e-11)
(-6.56065e-08 -0.00504441 -6.27747e-09)
(-2.92868e-08 2.36626e-06 3.93304e-08)
(2.34067e-09 3.41457e-07 8.95434e-08)
(3.34446e-11 1.87282e-09 8.36657e-10)
(-5.49165e-13 -3.37833e-11 -1.90088e-11)
(2.10153e-13 1.69365e-12 1.73629e-12)
(4.06629e-13 3.53498e-12 3.19962e-12)
(7.27117e-13 5.85955e-12 4.65445e-12)
(9.98878e-13 7.92396e-12 1.66562e-12)
(-7.70408e-13 -1.24923e-12 -3.66545e-11)
(4.84178e-08 -0.00510159 5.07738e-07)
(-3.31062e-08 2.26902e-06 -3.54954e-09)
(3.05779e-09 4.34659e-07 1.14859e-07)
(4.19982e-11 2.24705e-09 1.01832e-09)
(-1.00818e-12 -5.67703e-11 -3.28467e-11)
(2.56835e-13 1.94425e-12 2.13796e-12)
(5.24483e-13 4.48883e-12 4.35514e-12)
(9.64534e-13 7.55399e-12 6.64128e-12)
(1.37e-12 1.0399e-11 3.32094e-12)
(-9.82877e-13 -2.03461e-12 -4.89343e-11)
(2.92056e-08 -0.00516063 9.49178e-07)
(-3.80339e-08 2.20327e-06 -5.28351e-08)
(3.82534e-09 5.42527e-07 1.46615e-07)
(5.12726e-11 2.67675e-09 1.24672e-09)
(-1.62036e-12 -8.68057e-11 -5.15706e-11)
(3.17999e-13 2.29003e-12 2.67847e-12)
(6.84791e-13 5.81036e-12 5.98679e-12)
(1.29095e-12 9.95939e-12 9.57808e-12)
(1.91589e-12 1.41094e-11 6.05955e-12)
(-1.33793e-12 -3.33801e-12 -6.82063e-11)
(1.08048e-08 -0.0052216 1.29241e-06)
(-4.28713e-08 2.19148e-06 -1.05799e-07)
(4.36801e-09 6.67111e-07 1.84677e-07)
(6.37709e-11 3.40215e-09 1.62823e-09)
(-2.37268e-12 -1.26834e-10 -7.71359e-11)
(3.98161e-13 2.70091e-12 3.36256e-12)
(9.03924e-13 7.63367e-12 8.27754e-12)
(1.76663e-12 1.34601e-11 1.40325e-11)
(2.71395e-12 1.99353e-11 1.06585e-11)
(-1.98231e-12 -5.74897e-12 -1.0048e-10)
(-2.55299e-09 -0.00528466 1.11446e-06)
(-4.82689e-08 2.20539e-06 -1.69818e-07)
(5.11768e-09 8.08623e-07 2.29032e-07)
(1.07254e-10 6.13745e-09 2.9708e-09)
(-3.14014e-12 -1.68721e-10 -1.04396e-10)
(4.8765e-13 2.84888e-12 3.94694e-12)
(1.22728e-12 1.02654e-11 1.1637e-11)
(2.90505e-12 1.85215e-11 2.07499e-11)
(5.42766e-12 2.94221e-11 1.82364e-11)
(5.10499e-12 -1.03653e-11 -1.56566e-10)
(-1.21068e-08 -0.00534988 1.01202e-06)
(-5.47938e-08 2.24227e-06 -2.44094e-07)
(6.50389e-09 9.72202e-07 2.8162e-07)
(1.58413e-10 8.99174e-09 4.4413e-09)
(-4.45616e-12 -2.31924e-10 -1.46139e-10)
(3.2667e-13 3.15162e-12 4.80613e-12)
(5.24429e-13 1.66232e-11 1.89579e-11)
(1.06236e-10 3.3819e-11 3.19349e-11)
(3.0621e-09 1.26813e-10 3.57323e-10)
(3.53664e-09 3.01765e-11 -1.84182e-10)
(-4.83724e-09 -0.00541737 9.36e-07)
(-2.68125e-08 2.28798e-06 -3.32635e-07)
(8.52749e-09 1.16156e-06 3.43801e-07)
(1.89418e-10 1.1654e-08 5.89747e-09)
(-7.09324e-12 -3.28005e-10 -2.1127e-10)
(-9.66976e-13 -7.55978e-12 -2.72015e-11)
(2.01431e-11 5.81547e-10 2.72653e-10)
(1.57323e-09 1.95359e-08 2.52809e-08)
(4.86526e-09 2.27667e-08 2.85205e-08)
(8.09739e-08 2.53418e-07 1.35904e-06)
(-3.4844e-07 -0.00439306 -3.94513e-07)
(-1.83727e-08 1.15194e-06 -1.80309e-08)
(1.40113e-10 3.40411e-08 8.42748e-09)
(2.09077e-12 2.83224e-11 2.40174e-11)
(-2.73489e-14 -1.70523e-12 -1.23863e-12)
(4.316e-14 1.49238e-12 5.01555e-13)
(9.99981e-14 2.63411e-12 7.40772e-13)
(2.04139e-13 4.8236e-12 9.01867e-13)
(6.23996e-14 8.29697e-12 -5.43883e-12)
(-2.08004e-12 7.918e-12 -5.2503e-11)
(-2.90497e-08 -0.00442026 -3.24393e-07)
(-1.89625e-08 1.26265e-06 -2.1045e-08)
(3.36563e-10 7.31601e-08 1.93906e-08)
(4.39518e-12 1.83764e-10 9.98977e-11)
(-3.51907e-14 -4.66631e-12 -3.1602e-12)
(1.22925e-13 1.6923e-12 6.94997e-13)
(2.42054e-13 3.08143e-12 1.12743e-12)
(4.71907e-13 5.77659e-12 1.47324e-12)
(5.19012e-13 1.001e-11 -6.36364e-12)
(-2.32072e-12 7.53374e-12 -6.66083e-11)
(-8.1395e-09 -0.00444826 -6.00993e-07)
(-2.09136e-08 1.2851e-06 -4.13638e-08)
(5.90482e-10 1.16554e-07 3.21846e-08)
(7.5079e-12 3.65161e-10 1.93265e-10)
(-1.09301e-13 -9.00544e-12 -6.1083e-12)
(1.53797e-13 1.9453e-12 9.46159e-13)
(3.10659e-13 3.67718e-12 1.65677e-12)
(6.17796e-13 7.07319e-12 2.2594e-12)
(7.15403e-13 1.25057e-11 -7.61264e-12)
(-2.80349e-12 7.9246e-12 -8.46968e-11)
(-1.08075e-07 -0.00447705 -9.137e-07)
(-2.37892e-08 1.30814e-06 -6.55021e-08)
(8.87749e-10 1.65422e-07 4.72521e-08)
(1.13651e-11 5.77454e-10 3.08931e-10)
(-2.27399e-13 -1.52743e-11 -1.0517e-11)
(1.89966e-13 2.26872e-12 1.27258e-12)
(3.98835e-13 4.46908e-12 2.39206e-12)
(8.09674e-13 8.85178e-12 3.34829e-12)
(9.97817e-13 1.60864e-11 -9.19333e-12)
(-3.44153e-12 8.37578e-12 -1.09653e-10)
(-1.96024e-07 -0.00450648 -7.05639e-07)
(-2.59219e-08 1.74007e-06 -3.35804e-08)
(1.24966e-09 2.22802e-07 6.58766e-08)
(1.59795e-11 8.09602e-10 4.48044e-10)
(-3.99963e-13 -2.41159e-11 -1.68989e-11)
(2.36354e-13 2.69555e-12 1.70928e-12)
(5.16758e-13 5.53608e-12 3.4258e-12)
(1.06907e-12 1.13477e-11 4.83063e-12)
(1.4258e-12 2.13539e-11 -1.11674e-11)
(-4.14317e-12 8.80762e-12 -1.43436e-10)
(-1.6814e-07 -0.00453676 -5.32114e-07)
(-2.76877e-08 2.13684e-06 -9.0333e-09)
(1.66013e-09 2.86955e-07 8.75219e-08)
(2.15992e-11 1.0767e-09 6.14102e-10)
(-6.44203e-13 -3.63088e-11 -2.59963e-11)
(2.96483e-13 3.25333e-12 2.29594e-12)
(6.76318e-13 6.98833e-12 4.87732e-12)
(1.42022e-12 1.49317e-11 6.78973e-12)
(2.10235e-12 2.94896e-11 -1.38578e-11)
(-4.87453e-12 9.38339e-12 -1.9195e-10)
(-4.23866e-08 -0.00456793 -3.89888e-07)
(-2.93714e-08 2.46812e-06 2.67138e-09)
(2.15352e-09 3.58503e-07 1.12327e-07)
(2.9234e-11 1.38805e-09 8.14791e-10)
(-9.90042e-13 -5.32617e-11 -3.89447e-11)
(3.74748e-13 3.99203e-12 3.09669e-12)
(8.96732e-13 8.98758e-12 6.90719e-12)
(1.8918e-12 2.02797e-11 9.20157e-12)
(3.29296e-12 4.27223e-11 -1.67121e-11)
(-5.36785e-12 1.03091e-11 -2.61043e-10)
(4.56942e-08 -0.00460018 1.27749e-07)
(-3.24919e-08 2.34121e-06 -5.61959e-08)
(2.67621e-09 4.3638e-07 1.38571e-07)
(3.64256e-11 1.62043e-09 9.76649e-10)
(-1.54421e-12 -7.97325e-11 -5.92504e-11)
(4.86239e-13 4.98541e-12 4.21641e-12)
(1.36157e-12 1.17564e-11 9.71323e-12)
(4.2527e-12 2.86427e-11 1.20812e-11)
(-1.03468e-11 6.50832e-11 -1.93361e-11)
(5.29882e-12 1.24551e-11 -3.53049e-10)
(1.60015e-08 -0.0046333 5.25992e-07)
(-3.62706e-08 2.30191e-06 -1.10779e-07)
(3.27171e-09 5.2426e-07 1.6948e-07)
(4.44819e-11 1.89725e-09 1.1806e-09)
(-2.26033e-12 -1.14711e-10 -8.6798e-11)
(3.81183e-12 7.10696e-12 7.04651e-12)
(7.80981e-11 2.40088e-11 3.55315e-11)
(1.01986e-09 -3.0647e-11 -3.5766e-11)
(3.39789e-09 2.05197e-10 1.28387e-09)
(-6.09871e-08 1.34795e-11 -3.73323e-09)
(6.76373e-09 -0.00466734 8.68024e-07)
(-1.81577e-08 2.29668e-06 -1.69722e-07)
(4.00595e-09 6.23154e-07 2.05914e-07)
(4.16537e-11 2.13056e-09 1.38443e-09)
(-2.8938e-12 -1.46337e-10 -1.0676e-10)
(2.75383e-11 3.7408e-10 6.22924e-10)
(6.3817e-10 5.3478e-09 1.29869e-08)
(6.28533e-09 2.23424e-08 1.13772e-07)
(-1.48295e-08 -3.04059e-07 -2.38096e-07)
(1.58214e-07 1.40927e-07 3.92491e-06)
(-2.00735e-07 -0.00398269 4.44584e-06)
(2.5039e-09 5.97056e-07 7.69849e-08)
(-9.23346e-11 -2.72377e-08 -7.8731e-09)
(-1.369e-12 -1.22654e-10 -6.66094e-11)
(-1.59997e-13 3.55819e-12 -6.09226e-12)
(-1.35187e-13 3.06485e-12 -4.94013e-12)
(7.29456e-14 4.22868e-12 -5.56253e-13)
(7.73836e-13 6.80947e-12 1.20363e-11)
(2.99952e-12 9.67397e-12 4.19653e-11)
(8.23287e-12 9.39177e-12 8.45147e-11)
(-6.4121e-08 -0.0039925 4.14195e-06)
(-1.44732e-08 6.96979e-07 3.09692e-08)
(-4.64384e-11 -2.56873e-09 -9.45498e-10)
(2.71311e-13 -6.70323e-11 -3.58744e-11)
(-1.45479e-13 2.43247e-12 -7.79283e-12)
(-5.88315e-14 3.38742e-12 -5.54529e-12)
(2.70875e-13 4.96298e-12 -1.65141e-13)
(1.40333e-12 8.45059e-12 1.61342e-11)
(4.36154e-12 1.19255e-11 5.24347e-11)
(8.1039e-12 1.04815e-11 9.32074e-11)
(-5.95491e-08 -0.00400266 3.73973e-06)
(-1.60327e-08 8.95626e-07 -5.51188e-09)
(7.61007e-11 2.5124e-08 7.3451e-09)
(1.4148e-12 -1.33131e-11 -2.22868e-12)
(-1.95419e-13 5.62275e-13 -1.02962e-11)
(-5.35773e-14 3.79008e-12 -6.24944e-12)
(3.72326e-13 5.94691e-12 5.4232e-13)
(1.90908e-12 1.0799e-11 2.2468e-11)
(5.83997e-12 1.53302e-11 6.9003e-11)
(9.82116e-12 1.1894e-11 1.04616e-10)
(-2.54445e-08 -0.0040134 4.17011e-06)
(-1.76811e-08 9.73215e-07 -6.31391e-08)
(2.15745e-10 5.51646e-08 1.68459e-08)
(2.76197e-12 4.26724e-11 3.71351e-11)
(-2.71754e-13 -2.19508e-12 -1.37908e-11)
(-4.68779e-14 4.29049e-12 -7.07919e-12)
(5.1265e-13 7.28315e-12 1.74979e-12)
(2.65786e-12 1.41735e-11 3.21405e-11)
(7.97001e-12 2.01896e-11 9.3173e-11)
(1.19566e-11 1.3768e-11 1.19858e-10)
(-2.55278e-08 -0.00402451 4.21299e-06)
(-1.95872e-08 1.05091e-06 -1.30132e-07)
(3.7718e-10 8.80733e-08 2.78202e-08)
(4.30198e-12 9.37743e-11 7.92868e-11)
(-3.81972e-13 -6.11392e-12 -1.86756e-11)
(-3.56653e-14 4.93164e-12 -8.04852e-12)
(7.20306e-13 9.16016e-12 3.82865e-12)
(3.81143e-12 1.9158e-11 4.72795e-11)
(1.11482e-11 2.70992e-11 1.28009e-10)
(1.50653e-11 1.63801e-11 1.41124e-10)
(-2.99372e-08 -0.00403604 4.33744e-06)
(-2.16845e-08 1.12608e-06 -2.04603e-07)
(5.61345e-10 1.24197e-07 4.04454e-08)
(6.08426e-12 1.40452e-10 1.25164e-10)
(-5.33969e-13 -1.15456e-11 -2.53638e-11)
(-1.75732e-14 5.76455e-12 -9.17438e-12)
(1.03956e-12 1.18988e-11 7.4666e-12)
(5.68901e-12 2.69028e-11 7.22611e-11)
(1.61526e-11 3.7552e-11 1.8176e-10)
(1.96387e-11 2.00299e-11 1.69732e-10)
(-1.24995e-07 -0.00404798 4.57072e-06)
(-2.4332e-08 1.21717e-06 -2.84145e-07)
(7.76672e-10 1.63923e-07 5.49372e-08)
(8.16117e-12 1.80331e-10 1.74866e-10)
(-7.45807e-13 -1.89428e-11 -3.44508e-11)
(1.25065e-14 6.87718e-12 -1.04616e-11)
(1.55408e-12 1.61177e-11 1.41021e-11)
(8.87663e-12 3.94114e-11 1.14913e-10)
(2.41972e-11 5.36793e-11 2.66097e-10)
(2.61602e-11 2.5463e-11 2.10246e-10)
(-1.92643e-07 -0.00406017 5.11425e-06)
(-2.65576e-08 1.64424e-06 -3.16869e-07)
(1.03115e-09 2.09067e-07 7.21926e-08)
(1.04177e-11 1.93161e-10 2.21744e-10)
(-1.03773e-12 -2.89175e-11 -4.67364e-11)
(4.16056e-14 8.41531e-12 -1.18723e-11)
(1.80578e-12 2.30099e-11 2.66733e-11)
(4.08359e-12 6.05887e-11 1.90919e-10)
(-3.34657e-11 7.84939e-11 3.96675e-10)
(1.93271e-10 3.3792e-11 2.64562e-10)
(-1.59428e-07 -0.00407281 5.71634e-06)
(-2.86018e-08 1.99194e-06 -3.69261e-07)
(1.31203e-09 2.58161e-07 9.16711e-08)
(1.2982e-11 1.93184e-10 2.71376e-10)
(-1.6246e-12 -4.21632e-11 -6.32722e-11)
(-9.4909e-12 8.44813e-12 -1.74489e-11)
(-2.8129e-10 -1.2248e-12 -4.90729e-11)
(-4.77038e-09 -1.42692e-10 -6.67202e-10)
(-4.59791e-08 7.11197e-10 4.27363e-09)
(-1.74716e-07 8.84962e-10 1.06369e-08)
(-6.34729e-08 -0.0040859 6.40995e-06)
(-1.67101e-08 2.30265e-06 -4.35651e-07)
(1.61738e-09 3.11787e-07 1.13799e-07)
(1.05889e-11 1.76372e-10 3.22977e-10)
(-3.71629e-12 -9.35051e-11 -1.32303e-10)
(-8.30297e-11 -1.00863e-09 -2.02892e-09)
(-2.35663e-09 -1.74359e-08 -4.94236e-08)
(-3.94165e-08 -1.73479e-07 -7.28921e-07)
(-2.8833e-07 -6.75507e-07 -4.56786e-06)
(-1.40812e-07 1.46612e-08 4.84196e-07)
(-9.43793e-07 -0.00348863 -7.8815e-06)
(-2.21438e-09 2.75848e-06 6.35677e-08)
(1.95607e-12 7.81906e-09 3.05341e-10)
(-5.28436e-13 1.00598e-11 -3.7596e-11)
(-4.15927e-13 4.37066e-12 -2.43789e-11)
(-2.75651e-13 3.62664e-12 -1.58622e-11)
(-3.88119e-14 3.35666e-12 -7.79338e-12)
(4.52821e-13 3.43809e-12 2.37847e-12)
(1.62937e-12 3.20994e-12 2.11126e-11)
(5.84711e-12 -1.18754e-12 5.26359e-11)
(3.68522e-08 -0.00350557 -7.79353e-06)
(-2.11878e-10 2.71006e-06 8.51192e-09)
(1.35157e-12 8.17124e-09 1.60246e-10)
(-5.09284e-13 1.39853e-11 -3.871e-11)
(-4.40883e-13 4.63036e-12 -2.79888e-11)
(-2.55525e-13 4.0517e-12 -1.87307e-11)
(7.9174e-14 4.02839e-12 -9.54229e-12)
(7.83735e-13 4.54468e-12 2.77192e-12)
(2.4568e-12 4.49827e-12 2.64743e-11)
(5.32706e-12 -6.9986e-14 6.40572e-11)
(-4.92755e-08 -0.00352268 -7.78678e-06)
(-1.03664e-09 2.60654e-06 -5.54295e-08)
(3.92166e-12 8.91099e-09 2.31396e-11)
(-4.35052e-13 1.28763e-11 -3.86372e-11)
(-4.9994e-13 4.86235e-12 -3.23066e-11)
(-2.94679e-13 4.54589e-12 -2.22659e-11)
(1.04971e-13 4.87522e-12 -1.17169e-11)
(1.00489e-12 6.05939e-12 3.4662e-12)
(3.25207e-12 6.36091e-12 3.44323e-11)
(6.9711e-12 1.31799e-12 8.15712e-11)
(-1.56692e-07 -0.00353976 -8.13899e-06)
(-1.75421e-09 2.84188e-06 -1.20782e-07)
(7.66475e-12 1.01486e-08 -9.36551e-11)
(-3.26788e-13 1.30998e-12 -3.71236e-11)
(-5.69043e-13 5.04258e-12 -3.75021e-11)
(-3.43899e-13 5.12677e-12 -2.66501e-11)
(1.39682e-13 5.96494e-12 -1.44663e-11)
(1.31503e-12 8.18924e-12 4.6308e-12)
(4.41734e-12 9.11265e-12 4.61115e-11)
(9.32852e-12 3.5033e-12 1.06398e-10)
(-1.66628e-07 -0.00355701 -8.57293e-06)
(-2.38145e-09 3.09027e-06 -1.91581e-07)
(1.14494e-11 1.13705e-08 -1.78878e-10)
(-1.68924e-13 -1.83807e-11 -3.36897e-11)
(-6.49362e-13 5.19166e-12 -4.38018e-11)
(-4.02918e-13 5.80282e-12 -3.21361e-11)
(1.91572e-13 7.39774e-12 -1.79814e-11)
(1.76599e-12 1.12736e-11 6.65304e-12)
(6.18633e-12 1.33197e-11 6.36789e-11)
(1.28134e-11 7.16971e-12 1.41175e-10)
(-1.79137e-07 -0.00357443 -9.11227e-06)
(-3.09088e-09 3.35431e-06 -2.68743e-07)
(1.62373e-11 1.26355e-08 -2.31491e-10)
(6.55635e-14 -4.73217e-11 -2.76717e-11)
(-7.46979e-13 5.27509e-12 -5.14951e-11)
(-4.73311e-13 6.61116e-12 -3.90713e-11)
(2.7124e-13 9.31989e-12 -2.25139e-11)
(2.44835e-12 1.59079e-11 1.02636e-11)
(9.00335e-12 2.00835e-11 9.15501e-11)
(1.82687e-11 1.34189e-11 1.93017e-10)
(-1.99176e-07 -0.00359202 -9.84048e-06)
(-3.88127e-09 3.639e-06 -3.53295e-07)
(2.27574e-11 1.39774e-08 -2.46685e-10)
(3.84591e-13 -8.62906e-11 -1.8237e-11)
(-8.62758e-13 5.2724e-12 -6.09622e-11)
(-5.56554e-13 7.59534e-12 -4.79301e-11)
(3.99941e-13 1.19831e-11 -2.83995e-11)
(3.53722e-12 2.31625e-11 1.70898e-11)
(1.36775e-11 3.14789e-11 1.37338e-10)
(2.70721e-11 2.41311e-11 2.7133e-10)
(-2.27655e-07 -0.00360974 -1.14827e-05)
(-4.78096e-09 3.96307e-06 -4.49521e-07)
(3.1674e-11 1.54207e-08 -1.70719e-10)
(8.15774e-13 -1.38579e-10 -4.30048e-12)
(-1.00108e-12 5.18752e-12 -7.27263e-11)
(-6.56291e-13 8.83313e-12 -5.93628e-11)
(5.68452e-13 1.58192e-11 -3.60955e-11)
(4.37001e-12 3.50883e-11 3.05752e-11)
(1.2013e-11 5.17032e-11 2.15847e-10)
(-1.91855e-11 4.39547e-11 3.86963e-10)
(-2.58171e-07 -0.00362768 -1.33726e-05)
(-5.78325e-09 4.32732e-06 -5.54556e-07)
(4.19863e-11 1.69747e-08 -3.25938e-11)
(1.37384e-12 -2.04474e-10 1.51869e-11)
(-1.19941e-12 4.98137e-12 -8.74668e-11)
(-1.56125e-12 1.02999e-11 -7.45248e-11)
(-2.44293e-11 1.83673e-11 -5.38785e-11)
(-4.93249e-10 2.60792e-11 -8.66588e-11)
(-5.59571e-09 -8.66381e-11 -7.59526e-10)
(-2.99439e-08 -1.97653e-10 3.93642e-09)
(-1.59259e-07 -0.00364585 -1.58137e-05)
(-6.35343e-09 4.7356e-06 -6.70916e-07)
(2.51358e-11 1.87333e-08 1.76303e-10)
(1.52598e-12 -2.85356e-10 4.19538e-11)
(-2.12592e-12 2.00601e-12 -1.07744e-10)
(-6.3562e-12 -7.33518e-11 -2.05129e-10)
(-1.66431e-10 -1.65572e-09 -3.75476e-09)
(-3.61149e-09 -1.859e-08 -7.09925e-08)
(-4.57474e-08 -9.58384e-08 -8.06676e-07)
(-2.36113e-07 -4.83556e-08 -3.70128e-06)
(-1.25115e-07 -0.00348807 -1.87493e-05)
(-2.03539e-09 2.11192e-07 -4.49498e-08)
(-6.24741e-12 5.6109e-09 -5.59498e-11)
(1.66571e-13 2.02854e-11 -3.02878e-11)
(1.66537e-13 -9.3892e-13 -1.89631e-11)
(2.18183e-13 -1.30085e-12 -1.04357e-11)
(3.30845e-13 -1.69585e-12 -3.3207e-12)
(5.54334e-13 -2.31264e-12 4.07068e-12)
(9.49463e-13 -3.27974e-12 1.31133e-11)
(1.79924e-12 -4.53967e-12 2.60064e-11)
(-5.91421e-08 -0.00350523 -1.80453e-05)
(1.89245e-10 2.37166e-07 -4.65312e-08)
(1.24412e-12 4.93387e-09 -8.36178e-11)
(9.73457e-15 1.8229e-11 -3.43459e-11)
(1.07434e-13 -8.57675e-13 -2.22189e-11)
(2.41533e-13 -1.25555e-12 -1.26674e-11)
(4.3045e-13 -1.70155e-12 -4.32639e-12)
(7.48478e-13 -2.40971e-12 4.85506e-12)
(1.31031e-12 -3.59226e-12 1.67661e-11)
(2.23808e-12 -5.05073e-12 3.32069e-11)
(-7.61792e-08 -0.00352257 -1.70434e-05)
(-2.64667e-11 2.54978e-07 -4.99326e-08)
(1.17155e-12 3.87342e-09 -9.24177e-11)
(2.27881e-14 1.5099e-11 -3.89294e-11)
(1.24487e-13 -7.67868e-13 -2.61531e-11)
(2.84349e-13 -1.18587e-12 -1.54489e-11)
(5.20444e-13 -1.67708e-12 -5.60307e-12)
(9.39304e-13 -2.47211e-12 5.95712e-12)
(1.71724e-12 -3.91745e-12 2.19893e-11)
(2.95992e-12 -5.64521e-12 4.36352e-11)
(-9.81076e-08 -0.00353982 -1.77511e-05)
(-3.88178e-10 3.46901e-07 -5.52207e-08)
(1.25343e-12 3.80184e-09 -5.25883e-11)
(3.84646e-14 1.30581e-11 -4.40719e-11)
(1.42311e-13 -6.6239e-13 -3.09553e-11)
(3.35064e-13 -1.0816e-12 -1.89403e-11)
(6.34986e-13 -1.60087e-12 -7.23832e-12)
(1.197e-12 -2.45854e-12 7.54179e-12)
(2.30318e-12 -4.21459e-12 2.9641e-11)
(4.01621e-12 -6.27624e-12 5.88869e-11)
(-9.47331e-08 -0.00355725 -1.85242e-05)
(-4.57272e-10 4.31984e-07 -6.05855e-08)
(2.18959e-12 3.78881e-09 2.45214e-11)
(5.78384e-14 1.16031e-11 -5.00409e-11)
(1.65048e-13 -5.39512e-13 -3.67948e-11)
(3.99168e-13 -9.26479e-13 -2.33613e-11)
(7.86593e-13 -1.43877e-12 -9.34635e-12)
(1.55672e-12 -2.29452e-12 9.884e-12)
(3.17886e-12 -4.39493e-12 4.12202e-11)
(5.6183e-12 -6.86091e-12 8.19021e-11)
(-8.86029e-08 -0.00357488 -1.93743e-05)
(-5.03731e-10 5.06441e-07 -6.64128e-08)
(4.23503e-12 3.80149e-09 1.45822e-10)
(8.4424e-14 1.01061e-11 -5.69238e-11)
(1.93078e-13 -3.8777e-13 -4.39875e-11)
(4.81129e-13 -6.96287e-13 -2.90143e-11)
(9.90598e-13 -1.13403e-12 -1.20823e-11)
(2.07073e-12 -1.83508e-12 1.34243e-11)
(4.53936e-12 -4.2674e-12 5.94385e-11)
(8.16424e-12 -7.20791e-12 1.18414e-10)
(-7.75164e-08 -0.00359272 -2.03238e-05)
(-5.00768e-10 5.63941e-07 -7.28135e-08)
(7.39652e-12 3.78913e-09 3.17994e-10)
(1.19806e-13 7.48427e-12 -6.49169e-11)
(2.27806e-13 -1.9655e-13 -5.29104e-11)
(5.87294e-13 -3.54371e-13 -3.63106e-11)
(1.27166e-12 -5.89959e-13 -1.56441e-11)
(2.82957e-12 -8.06174e-13 1.90199e-11)
(6.75264e-12 -3.41911e-12 8.94261e-11)
(1.24227e-11 -6.8313e-12 1.79138e-10)
(-5.62492e-08 -0.00361076 -2.14597e-05)
(-4.48215e-10 5.92847e-07 -7.96334e-08)
(1.18135e-11 3.62383e-09 5.62041e-10)
(1.63372e-13 3.38229e-12 -7.4396e-11)
(2.71088e-13 5.06145e-14 -6.40737e-11)
(7.26354e-13 1.59722e-13 -4.58248e-11)
(1.66706e-12 3.63199e-13 -2.02456e-11)
(3.88069e-12 1.34751e-12 2.82988e-11)
(9.35059e-12 -8.51841e-13 1.41396e-10)
(1.24525e-11 -4.45929e-12 2.85906e-10)
(-1.61834e-08 -0.00362905 -2.27596e-05)
(-3.12828e-10 5.68064e-07 -8.68514e-08)
(1.78904e-11 3.25618e-09 8.84612e-10)
(1.8815e-13 -2.84586e-12 -8.56871e-11)
(2.95903e-13 3.76566e-13 -7.81553e-11)
(8.63812e-13 9.3331e-13 -5.84118e-11)
(1.24495e-12 1.66713e-12 -2.68396e-11)
(-1.7652e-11 2.03262e-12 2.90449e-11)
(-3.01795e-10 -1.61192e-11 8.64798e-11)
(-1.97702e-09 4.80231e-12 -4.36468e-10)
(-2.76056e-08 -0.0036476 -2.41243e-05)
(-4.90571e-10 4.483e-07 -9.4554e-08)
(2.08423e-11 2.44321e-09 1.30006e-09)
(-8.56204e-13 -1.27553e-11 -9.90172e-11)
(-1.07005e-12 7.56658e-13 -9.60656e-11)
(-1.08498e-12 -1.03885e-12 -8.77786e-11)
(-1.4727e-11 -7.07875e-11 -4.54168e-10)
(-3.46016e-10 -9.9862e-10 -8.21611e-09)
(-4.46742e-09 -5.94426e-09 -9.26361e-08)
(-2.71249e-08 -1.20564e-09 -5.01687e-07)
(3.12758e-07 -0.00349069 -7.24277e-06)
(3.89355e-10 -1.04279e-06 -4.49811e-08)
(-7.19384e-13 -2.10542e-09 -1.30319e-10)
(7.90667e-13 -4.42613e-12 -3.31628e-12)
(6.56776e-13 -4.57943e-12 -1.5516e-12)
(5.50088e-13 -3.44674e-12 -5.95097e-13)
(4.69868e-13 -2.64835e-12 6.26186e-14)
(4.11539e-13 -2.09476e-12 5.74889e-13)
(3.74185e-13 -1.70899e-12 1.11453e-12)
(3.64327e-13 -9.54265e-13 1.783e-12)
(-7.46799e-08 -0.00350756 -6.83751e-06)
(-3.32835e-10 -9.51765e-07 -4.06486e-08)
(7.62171e-15 -2.0252e-09 -1.22082e-10)
(6.74491e-13 -5.46758e-12 -4.11728e-12)
(6.67058e-13 -4.68725e-12 -2.10647e-12)
(6.37046e-13 -3.60569e-12 -9.30427e-13)
(5.99822e-13 -2.83058e-12 -6.54903e-14)
(5.66076e-13 -2.28595e-12 6.58732e-13)
(5.46523e-13 -1.90931e-12 1.47323e-12)
(5.47274e-13 -1.09035e-12 2.43443e-12)
(-7.31324e-08 -0.00352457 -6.36245e-06)
(-3.25483e-10 -8.55383e-07 -3.43646e-08)
(-1.82954e-14 -1.93994e-09 -1.08715e-10)
(7.68093e-13 -6.57399e-12 -5.05398e-12)
(7.79943e-13 -4.75746e-12 -2.81436e-12)
(7.63075e-13 -3.74839e-12 -1.3726e-12)
(7.3524e-13 -3.01234e-12 -2.46173e-13)
(7.1062e-13 -2.48941e-12 7.80546e-13)
(7.05986e-13 -2.13664e-12 2.02261e-12)
(7.2507e-13 -1.25361e-12 3.43749e-12)
(-7.15179e-08 -0.0035417 -6.27986e-06)
(-3.48625e-10 -7.64414e-07 -3.26502e-08)
(-1.38201e-13 -1.73849e-09 -9.94025e-11)
(8.76655e-13 -6.63105e-12 -6.17031e-12)
(9.14596e-13 -4.76954e-12 -3.72346e-12)
(9.18039e-13 -3.85853e-12 -1.96951e-12)
(9.07451e-13 -3.18076e-12 -4.99228e-13)
(9.0097e-13 -2.69636e-12 9.66994e-13)
(9.25878e-13 -2.38822e-12 2.89516e-12)
(9.79443e-13 -1.44733e-12 5.03181e-12)
(-7.24247e-08 -0.003559 -6.14087e-06)
(-3.31279e-10 -6.71145e-07 -3.1096e-08)
(4.73168e-14 -1.53555e-09 -9.21942e-11)
(1.00642e-12 -6.50845e-12 -7.52691e-12)
(1.07912e-12 -4.69879e-12 -4.89862e-12)
(1.1141e-12 -3.91039e-12 -2.77894e-12)
(1.13295e-12 -3.31364e-12 -8.53427e-13)
(1.16013e-12 -2.88787e-12 1.26357e-12)
(1.24146e-12 -2.65389e-12 4.33321e-12)
(1.35972e-12 -1.67184e-12 7.67125e-12)
(-7.35535e-08 -0.00357647 -5.92259e-06)
(-3.10612e-10 -5.75065e-07 -2.95372e-08)
(3.06984e-13 -1.35519e-09 -8.44088e-11)
(1.16148e-12 -6.32056e-12 -9.18366e-12)
(1.28209e-12 -4.50671e-12 -6.42791e-12)
(1.36482e-12 -3.8641e-12 -3.89089e-12)
(1.43226e-12 -3.37265e-12 -1.35351e-12)
(1.51993e-12 -3.02653e-12 1.75378e-12)
(1.70888e-12 -2.90622e-12 6.80745e-12)
(1.94964e-12 -1.91497e-12 1.22372e-11)
(-7.51166e-08 -0.00359412 -5.58793e-06)
(-3.09652e-10 -4.75283e-07 -2.76895e-08)
(5.68756e-13 -1.18538e-09 -7.08452e-11)
(1.34706e-12 -6.04198e-12 -1.12423e-11)
(1.5348e-12 -4.13754e-12 -8.44107e-12)
(1.68922e-12 -3.65979e-12 -5.42941e-12)
(1.83576e-12 -3.29312e-12 -2.06579e-12)
(2.0312e-12 -3.03911e-12 2.60679e-12)
(2.42878e-12 -3.079e-12 1.12747e-11)
(2.90683e-12 -2.1273e-12 2.04991e-11)
(-7.85263e-08 -0.00361193 -5.0702e-06)
(-3.22716e-10 -3.70252e-07 -2.48775e-08)
(8.89088e-13 -9.65314e-10 -4.93975e-11)
(1.56983e-12 -5.29919e-12 -1.38181e-11)
(1.85163e-12 -3.50916e-12 -1.11307e-11)
(2.11393e-12 -3.20279e-12 -7.60848e-12)
(2.38996e-12 -2.96349e-12 -3.08614e-12)
(2.77302e-12 -2.77944e-12 4.16859e-12)
(3.53286e-12 -3.00693e-12 1.97982e-11)
(4.1371e-12 -2.16498e-12 3.64923e-11)
(-9.01526e-08 -0.0036299 -4.22502e-06)
(-3.51587e-10 -2.53679e-07 -2.08091e-08)
(1.33231e-12 -6.84485e-10 -1.63323e-11)
(1.80523e-12 -4.12007e-12 -1.70698e-11)
(2.21844e-12 -2.50192e-12 -1.47552e-11)
(2.64131e-12 -2.34275e-12 -1.07313e-11)
(3.10238e-12 -2.20634e-12 -4.59398e-12)
(2.98506e-12 -2.11663e-12 5.39123e-12)
(-8.26625e-12 -3.29154e-12 1.85695e-11)
(-8.70211e-11 -1.51119e-13 -4.50214e-11)
(-5.19618e-08 -0.00364802 -2.79809e-06)
(-2.2252e-10 -1.01053e-07 -1.41268e-08)
(1.19941e-12 -2.6703e-10 3.6918e-11)
(7.82229e-13 -2.24136e-12 -2.11422e-11)
(9.91195e-13 -9.51212e-13 -1.96317e-11)
(1.25972e-12 -9.40311e-13 -1.54942e-11)
(1.18714e-12 -3.35874e-12 -2.25349e-11)
(-1.16932e-11 -4.24566e-11 -3.69695e-10)
(-2.15992e-10 -2.68667e-10 -5.14527e-09)
(-1.54104e-09 -3.594e-12 -3.26021e-08)
(3.97411e-07 -0.00349178 -7.22158e-07)
(1.32506e-09 -1.26978e-06 -1.02399e-08)
(3.49e-12 -4.40651e-09 -5.21845e-11)
(8.70897e-13 -1.59733e-11 5.77298e-13)
(7.03673e-13 -4.91418e-12 5.56491e-13)
(5.77001e-13 -3.58505e-12 4.30019e-13)
(4.77456e-13 -2.6817e-12 3.43815e-13)
(3.98327e-13 -2.04337e-12 2.86907e-13)
(3.3528e-13 -1.56873e-12 2.40755e-13)
(2.85625e-13 -7.19504e-13 2.12103e-13)
(-7.24768e-08 -0.00350849 -6.40847e-07)
(-2.97555e-10 -1.15812e-06 -8.8469e-09)
(-1.10476e-13 -4.02493e-09 -4.43915e-11)
(7.58942e-13 -1.54155e-11 4.80959e-13)
(7.30009e-13 -5.06307e-12 4.89829e-13)
(6.75752e-13 -3.77941e-12 3.97593e-13)
(6.14173e-13 -2.88489e-12 3.3336e-13)
(5.52576e-13 -2.2368e-12 2.92988e-13)
(4.94886e-13 -1.74413e-12 2.58739e-13)
(4.4342e-13 -8.04019e-13 2.41579e-13)
(-7.18477e-08 -0.00352535 -5.64054e-07)
(-2.88738e-10 -1.04105e-06 -7.37159e-09)
(8.44478e-15 -3.61934e-09 -3.56191e-11)
(8.69358e-13 -1.47048e-11 3.58631e-13)
(8.58152e-13 -5.178e-12 4.02784e-13)
(8.13451e-13 -3.96147e-12 3.54174e-13)
(7.55283e-13 -3.08995e-12 3.15769e-13)
(6.93014e-13 -2.44369e-12 2.97987e-13)
(6.3164e-13 -1.93967e-12 2.83799e-13)
(5.74998e-13 -8.99585e-13 2.85203e-13)
(-7.09022e-08 -0.00354238 -4.57186e-07)
(-2.81345e-10 -9.29738e-07 -6.42955e-09)
(1.0382e-13 -3.23321e-09 -3.09472e-11)
(9.97306e-13 -1.38105e-11 1.92176e-13)
(1.01239e-12 -5.23632e-12 2.89151e-13)
(9.84528e-13 -4.11459e-12 2.9028e-13)
(9.35276e-13 -3.28668e-12 2.87691e-13)
(8.767e-13 -2.65595e-12 3.02651e-13)
(8.15001e-13 -2.1512e-12 3.23259e-13)
(7.55328e-13 -1.00564e-12 3.5617e-13)
(-7.32809e-08 -0.00355957 -3.42524e-07)
(-2.85349e-10 -8.13801e-07 -5.41277e-09)
(2.23824e-13 -2.82875e-09 -2.63161e-11)
(1.14898e-12 -1.27332e-11 -1.71304e-14)
(1.20225e-12 -5.20771e-12 1.39916e-13)
(1.2023e-12 -4.2123e-12 1.99946e-13)
(1.17159e-12 -3.45308e-12 2.45847e-13)
(1.12483e-12 -2.85794e-12 3.07418e-13)
(1.06948e-12 -2.36841e-12 3.91012e-13)
(1.012e-12 -1.11845e-12 4.7999e-13)
(-7.6139e-08 -0.00357693 -2.21121e-07)
(-2.90338e-10 -6.92511e-07 -4.20045e-09)
(3.61793e-13 -2.40443e-09 -2.09476e-11)
(1.33094e-12 -1.14338e-11 -2.8132e-13)
(1.43796e-12 -5.0447e-12 -6.29058e-14)
(1.48229e-12 -4.21166e-12 6.74003e-14)
(1.48621e-12 -3.55261e-12 1.82815e-13)
(1.46566e-12 -3.01947e-12 3.17701e-13)
(1.43031e-12 -2.56884e-12 5.17125e-13)
(1.38644e-12 -1.22873e-12 7.09793e-13)
(-7.97501e-08 -0.00359446 -9.54558e-08)
(-2.9822e-10 -5.64799e-07 -2.83435e-09)
(5.245e-13 -1.95372e-09 -1.42893e-11)
(1.55061e-12 -9.82875e-12 -5.93479e-13)
(1.73397e-12 -4.68668e-12 -3.33937e-13)
(1.84765e-12 -4.04689e-12 -1.25358e-13)
(1.91181e-12 -3.5212e-12 8.07656e-14)
(1.94259e-12 -3.08374e-12 3.43603e-13)
(1.95486e-12 -2.70388e-12 7.72211e-13)
(1.94893e-12 -1.3137e-12 1.16116e-12)
(-8.48886e-08 -0.00361215 2.95521e-08)
(-3.08758e-10 -4.28977e-07 -1.62622e-09)
(6.89205e-13 -1.46916e-09 -9.37028e-12)
(1.81549e-12 -7.83413e-12 -9.80879e-13)
(2.10833e-12 -4.0325e-12 -6.90313e-13)
(2.33002e-12 -3.61338e-12 -4.00131e-13)
(2.49734e-12 -3.25631e-12 -6.92467e-14)
(2.62625e-12 -2.94548e-12 4.06818e-13)
(2.73842e-12 -2.67257e-12 1.32667e-12)
(2.80905e-12 -1.32247e-12 2.1286e-12)
(-9.38352e-08 -0.00363002 1.27167e-07)
(-3.25044e-10 -2.81357e-07 -6.11191e-10)
(8.44413e-13 -9.51241e-10 -4.13987e-12)
(2.10369e-12 -5.32356e-12 -1.46771e-12)
(2.55171e-12 -2.93988e-12 -1.17581e-12)
(2.94034e-12 -2.74124e-12 -8.05323e-13)
(3.28217e-12 -2.56524e-12 -3.05221e-13)
(3.56963e-12 -2.40752e-12 4.90267e-13)
(3.45536e-12 -2.30573e-12 1.67345e-12)
(8.12241e-13 -1.05387e-12 -2.04904e-12)
(-4.99337e-08 -0.00364805 8.29286e-08)
(-1.69473e-10 -1.1263e-07 -1.64133e-10)
(4.70499e-13 -3.8271e-10 2.77854e-13)
(1.12021e-12 -2.14172e-12 -2.08715e-12)
(1.39516e-12 -1.19646e-12 -1.85369e-12)
(1.65005e-12 -1.16207e-12 -1.46422e-12)
(1.88306e-12 -1.20315e-12 -1.18034e-12)
(1.70817e-12 -2.49071e-12 -1.28375e-11)
(-5.54754e-12 -1.04763e-11 -2.12944e-10)
(-5.85097e-11 4.72853e-13 -1.4821e-09)
(3.75818e-07 -0.00349194 8.59719e-07)
(1.38309e-09 -1.19674e-06 1.61513e-09)
(4.54315e-12 -4.40575e-09 6.9835e-12)
(9.05147e-13 -1.81392e-11 4.56363e-12)
(7.25803e-13 -5.06092e-12 2.72337e-12)
(5.91501e-13 -3.65607e-12 1.66511e-12)
(4.86456e-13 -2.71384e-12 1.06334e-12)
(4.03621e-13 -2.05503e-12 6.98526e-13)
(3.37629e-13 -1.57209e-12 4.78021e-13)
(2.86203e-13 -7.23458e-13 3.66019e-13)
(-6.76605e-08 -0.00350861 8.11487e-07)
(-2.52182e-10 -1.08758e-06 1.65313e-09)
(1.22939e-13 -3.99073e-09 7.43347e-12)
(8.06806e-13 -1.70696e-11 4.36246e-12)
(7.64101e-13 -5.20527e-12 2.72859e-12)
(6.99673e-13 -3.85526e-12 1.74229e-12)
(6.30221e-13 -2.92253e-12 1.15314e-12)
(5.62818e-13 -2.25322e-12 7.79204e-13)
(5.00875e-13 -1.75145e-12 5.48695e-13)
(4.47177e-13 -8.10657e-13 4.42392e-13)
(-6.87432e-08 -0.00352545 7.56959e-07)
(-2.53986e-10 -9.73954e-07 1.64696e-09)
(2.10913e-13 -3.55915e-09 7.4305e-12)
(9.1592e-13 -1.58833e-11 3.98666e-12)
(8.93334e-13 -5.30799e-12 2.63639e-12)
(8.39496e-13 -4.03736e-12 1.76956e-12)
(7.73771e-13 -3.13171e-12 1.2258e-12)
(7.05096e-13 -2.46373e-12 8.60083e-13)
(6.38872e-13 -1.9498e-12 6.26366e-13)
(5.79907e-13 -9.08779e-13 5.39824e-13)
(-6.95024e-08 -0.00354245 7.43894e-07)
(-2.5378e-10 -8.60405e-07 1.76172e-09)
(3.08356e-13 -3.13419e-09 6.79839e-12)
(1.04117e-12 -1.4637e-11 3.36846e-12)
(1.0472e-12 -5.34691e-12 2.38658e-12)
(1.01163e-12 -4.1851e-12 1.70577e-12)
(9.55689e-13 -3.32893e-12 1.24926e-12)
(8.90331e-13 -2.67812e-12 9.20744e-13)
(8.22855e-13 -2.1622e-12 7.01879e-13)
(7.60755e-13 -1.01571e-12 6.60507e-13)
(-7.14805e-08 -0.00355962 7.22462e-07)
(-2.59727e-10 -7.43135e-07 1.83624e-09)
(3.89751e-13 -2.69687e-09 5.66467e-12)
(1.18844e-12 -1.32352e-11 2.43703e-12)
(1.23482e-12 -5.29197e-12 1.90365e-12)
(1.22886e-12 -4.27053e-12 1.48335e-12)
(1.19257e-12 -3.4908e-12 1.17319e-12)
(1.13882e-12 -2.87913e-12 9.26627e-13)
(1.07647e-12 -2.37766e-12 7.53211e-13)
(1.01636e-12 -1.12726e-12 8.03896e-13)
(-7.36577e-08 -0.00357695 6.89517e-07)
(-2.66675e-10 -6.21834e-07 1.88108e-09)
(4.51885e-13 -2.24604e-09 3.93352e-12)
(1.36146e-12 -1.16157e-11 1.10069e-12)
(1.46529e-12 -5.09924e-12 1.07911e-12)
(1.50602e-12 -4.25232e-12 1.0022e-12)
(1.50553e-12 -3.58097e-12 9.10589e-13)
(1.47737e-12 -3.03558e-12 8.11304e-13)
(1.43247e-12 -2.57139e-12 7.32675e-13)
(1.38543e-12 -1.23187e-12 9.52287e-13)
(-7.6115e-08 -0.00359446 6.40233e-07)
(-2.73019e-10 -4.96097e-07 1.87077e-09)
(6.03431e-13 -1.77946e-09 1.14095e-12)
(1.56712e-12 -9.64242e-12 -7.23124e-13)
(1.75027e-12 -4.70304e-12 -2.31754e-13)
(1.86249e-12 -4.06335e-12 9.23021e-14)
(1.92373e-12 -3.53696e-12 3.07691e-13)
(1.94706e-12 -3.09195e-12 4.40628e-13)
(1.94292e-12 -2.69448e-12 5.37147e-13)
(1.93156e-12 -1.30543e-12 1.04677e-12)
(-7.90071e-08 -0.00361214 5.66692e-07)
(-2.80032e-10 -3.6535e-07 1.65438e-09)
(7.85185e-13 -1.30183e-09 -1.34067e-12)
(1.8148e-12 -7.59317e-12 -3.13197e-12)
(2.10739e-12 -4.01823e-12 -2.20128e-12)
(2.3282e-12 -3.60601e-12 -1.46795e-12)
(2.49239e-12 -3.25207e-12 -8.97722e-13)
(2.61122e-12 -2.94209e-12 -4.49802e-13)
(2.69339e-12 -2.65004e-12 -6.68251e-14)
(2.7624e-12 -1.29807e-12 9.02325e-13)
(-8.26565e-08 -0.00363 4.49954e-07)
(-2.89281e-10 -2.28701e-07 1.28126e-09)
(8.7878e-13 -8.08879e-10 -5.0151e-12)
(2.08134e-12 -5.03755e-12 -6.23015e-12)
(2.52661e-12 -2.91085e-12 -5.09018e-12)
(2.91212e-12 -2.721e-12 -4.07117e-12)
(3.24738e-12 -2.5519e-12 -3.16881e-12)
(3.53843e-12 -2.39811e-12 -2.35851e-12)
(3.78146e-12 -2.24452e-12 -1.60956e-12)
(3.93708e-12 -1.10627e-12 -2.66879e-13)
(-4.23593e-08 -0.00364804 2.34118e-07)
(-1.47177e-10 -8.4571e-08 6.66104e-10)
(4.219e-13 -2.99281e-10 -9.81573e-12)
(1.05126e-12 -1.92081e-12 -1.06222e-11)
(1.30938e-12 -1.18087e-12 -9.88688e-12)
(1.54676e-12 -1.15263e-12 -9.09561e-12)
(1.76703e-12 -1.12961e-12 -8.26379e-12)
(1.96261e-12 -1.14401e-12 -7.74358e-12)
(1.94224e-12 -1.351e-12 -1.35402e-11)
(5.25309e-13 -4.89811e-13 -5.70913e-11)
(3.43519e-07 -0.00349188 8.05356e-07)
(1.27859e-09 -1.09639e-06 3.63396e-09)
(5.0167e-12 -4.0744e-09 2.53717e-10)
(1.83744e-12 -2.68931e-11 1.56039e-10)
(1.56549e-12 -1.18752e-11 1.01167e-10)
(1.31132e-12 -8.25673e-12 6.74807e-11)
(1.08548e-12 -5.888e-12 4.60324e-11)
(8.9587e-13 -4.28432e-12 3.20567e-11)
(7.43139e-13 -3.18748e-12 2.29089e-11)
(6.86798e-13 -2.1785e-12 1.99113e-11)
(-6.32717e-08 -0.00350856 7.40213e-07)
(-2.2926e-10 -9.94529e-07 3.24128e-09)
(1.64218e-12 -3.68232e-09 2.20263e-10)
(1.99187e-12 -2.40461e-11 1.41992e-10)
(1.76734e-12 -1.09711e-11 9.61446e-11)
(1.53744e-12 -7.90183e-12 6.66879e-11)
(1.32456e-12 -5.81529e-12 4.7143e-11)
(1.13692e-12 -4.35359e-12 3.39235e-11)
(9.79176e-13 -3.32839e-12 2.50056e-11)
(9.44485e-13 -2.34046e-12 2.33275e-11)
(-6.50848e-08 -0.00352539 6.73995e-07)
(-2.3583e-10 -8.88521e-07 2.82864e-09)
(1.51251e-12 -3.27623e-09 1.80453e-10)
(1.97501e-12 -2.10571e-11 1.2301e-10)
(1.82765e-12 -9.93838e-12 8.78011e-11)
(1.65168e-12 -7.44314e-12 6.38604e-11)
(1.47322e-12 -5.67323e-12 4.71418e-11)
(1.30498e-12 -4.38421e-12 3.52988e-11)
(1.15658e-12 -3.45682e-12 2.70129e-11)
(1.16353e-12 -2.50194e-12 2.73996e-11)
(-6.64783e-08 -0.0035424 6.24452e-07)
(-2.40446e-10 -7.79929e-07 2.49113e-09)
(1.36329e-12 -2.86439e-09 1.3449e-10)
(1.93108e-12 -1.79637e-11 9.77102e-11)
(1.86871e-12 -8.7472e-12 7.44051e-11)
(1.7591e-12 -6.83271e-12 5.73681e-11)
(1.62901e-12 -5.41083e-12 4.4671e-11)
(1.49336e-12 -4.33013e-12 3.51317e-11)
(1.36578e-12 -3.53604e-12 2.81664e-11)
(1.43882e-12 -2.63302e-12 3.18229e-11)
(-6.7986e-08 -0.00355957 5.69862e-07)
(-2.47214e-10 -6.68408e-07 2.1189e-09)
(1.19261e-12 -2.44385e-09 8.19986e-11)
(1.85804e-12 -1.48192e-11 6.50547e-11)
(1.88618e-12 -7.41953e-12 5.44593e-11)
(1.85557e-12 -6.06506e-12 4.56361e-11)
(1.79028e-12 -5.00757e-12 3.82954e-11)
(1.70476e-12 -4.16533e-12 3.22299e-11)
(1.61481e-12 -3.5423e-12 2.75431e-11)
(1.78922e-12 -2.70683e-12 3.61762e-11)
(-6.95373e-08 -0.00357691 5.08986e-07)
(-2.55395e-10 -5.53854e-07 1.77187e-09)
(1.02501e-12 -2.01065e-09 2.3159e-11)
(1.75373e-12 -1.17196e-11 2.4048e-11)
(1.87413e-12 -5.99535e-12 2.61644e-11)
(1.93409e-12 -5.14724e-12 2.65279e-11)
(1.95159e-12 -4.44766e-12 2.58732e-11)
(1.93824e-12 -3.86115e-12 2.46431e-11)
(1.90975e-12 -3.44484e-12 2.35062e-11)
(2.23438e-12 -2.68217e-12 3.93939e-11)
(-7.11292e-08 -0.00359443 4.4004e-07)
(-2.57173e-10 -4.36161e-07 1.35854e-09)
(7.68272e-13 -1.56351e-09 -4.18907e-11)
(1.6172e-12 -8.82378e-12 -2.61632e-11)
(1.82544e-12 -4.53104e-12 -1.26573e-11)
(1.98502e-12 -4.10272e-12 -2.85496e-12)
(2.10518e-12 -3.72634e-12 4.20933e-12)
(2.19059e-12 -3.39093e-12 9.18409e-12)
(2.25673e-12 -3.20594e-12 1.31225e-11)
(2.79485e-12 -2.50043e-12 3.89949e-11)
(-7.27097e-08 -0.00361212 3.6021e-07)
(-2.55119e-10 -3.15237e-07 9.69165e-10)
(5.15441e-13 -1.126e-09 -1.09954e-10)
(1.45184e-12 -5.93064e-12 -8.60883e-11)
(1.73778e-12 -3.1068e-12 -6.42913e-11)
(1.99942e-12 -2.97405e-12 -4.63418e-11)
(2.23885e-12 -2.85012e-12 -3.15544e-11)
(2.45537e-12 -2.73364e-12 -1.93893e-11)
(2.65781e-12 -2.7767e-12 -9.01391e-12)
(3.4811e-12 -2.08905e-12 2.91691e-11)
(-7.37185e-08 -0.00362998 2.63517e-07)
(-2.5667e-10 -1.91162e-07 5.79897e-10)
(3.20401e-13 -6.87088e-10 -1.80135e-10)
(1.26624e-12 -3.42609e-12 -1.55485e-10)
(1.62008e-12 -1.80486e-12 -1.31199e-10)
(1.98483e-12 -1.82968e-12 -1.08947e-10)
(2.36093e-12 -1.85574e-12 -8.85811e-11)
(2.7461e-12 -1.88306e-12 -6.99702e-11)
(3.14455e-12 -2.09767e-12 -5.27084e-11)
(4.29279e-12 -1.38765e-12 -3.89717e-12)
(-3.70048e-08 -0.00364803 1.27419e-07)
(-1.2977e-10 -6.57682e-08 9.3151e-11)
(-7.97767e-13 -2.45498e-10 -2.60407e-10)
(-6.70385e-13 -1.11548e-12 -2.49138e-10)
(-8.13189e-13 -5.49264e-13 -2.35695e-10)
(-9.10405e-13 -5.9466e-13 -2.20991e-10)
(-9.51084e-13 -6.44764e-13 -2.05158e-10)
(-9.27055e-13 -7.00728e-13 -1.88328e-10)
(-8.32329e-13 -9.04153e-13 -1.70668e-10)
(-1.84425e-13 -3.42491e-13 -1.31418e-10)
(3.2301e-07 -0.0034918 2.73258e-07)
(1.15908e-09 -1.03327e-06 1.06831e-08)
(1.4989e-11 -4.00278e-09 6.36326e-09)
(1.7801e-11 -2.54476e-10 4.69477e-09)
(1.98604e-11 -1.85451e-10 3.50382e-09)
(2.00534e-11 -1.42513e-10 2.66141e-09)
(1.92731e-11 -1.10862e-10 2.05139e-09)
(1.80361e-11 -8.73825e-11 1.60325e-09)
(1.67231e-11 -7.13818e-11 1.27715e-09)
(1.9892e-11 -7.62005e-11 1.33042e-09)
(-6.01743e-08 -0.00350849 2.37968e-07)
(-1.76015e-10 -9.37524e-07 8.66934e-09)
(2.9572e-11 -3.58477e-09 5.28794e-09)
(2.90712e-11 -1.98224e-10 4.03682e-09)
(2.7236e-11 -1.47829e-10 3.10735e-09)
(2.51805e-11 -1.16721e-10 2.42776e-09)
(2.30667e-11 -9.31145e-11 1.9205e-09)
(2.1025e-11 -7.5157e-11 1.53749e-09)
(1.92425e-11 -6.34009e-11 1.25332e-09)
(2.35621e-11 -7.25661e-11 1.40359e-09)
(-6.22328e-08 -0.00352534 2.04328e-07)
(-1.88497e-10 -8.37495e-07 6.62598e-09)
(2.51838e-11 -3.16123e-09 4.1394e-09)
(2.53183e-11 -1.46856e-10 3.30607e-09)
(2.42961e-11 -1.12715e-10 2.65127e-09)
(2.30478e-11 -9.21316e-11 2.14961e-09)
(2.16688e-11 -7.58979e-11 1.75915e-09)
(2.02614e-11 -6.31398e-11 1.45309e-09)
(1.90184e-11 -5.56044e-11 1.22024e-09)
(2.51275e-11 -6.87997e-11 1.48887e-09)
(-6.37881e-08 -0.00354235 1.74063e-07)
(-1.98463e-10 -7.34123e-07 4.63428e-09)
(2.0488e-11 -2.73632e-09 2.9298e-09)
(2.10782e-11 -1.00323e-10 2.47868e-09)
(2.07471e-11 -7.94261e-11 2.09467e-09)
(2.02507e-11 -6.77275e-11 1.78056e-09)
(1.96148e-11 -5.80432e-11 1.52168e-09)
(1.88981e-11 -5.0128e-11 1.30821e-09)
(1.82841e-11 -4.68744e-11 1.14134e-09)
(2.65628e-11 -6.36864e-11 1.55847e-09)
(-6.51491e-08 -0.00355953 1.44059e-07)
(-2.10806e-10 -6.28035e-07 2.72067e-09)
(1.55156e-11 -2.31639e-09 1.67191e-09)
(1.63036e-11 -6.00206e-11 1.55391e-09)
(1.64673e-11 -4.91749e-11 1.42526e-09)
(1.66079e-11 -4.44373e-11 1.30152e-09)
(1.66792e-11 -4.01884e-11 1.18589e-09)
(1.66837e-11 -3.65127e-11 1.0803e-09)
(1.67809e-11 -3.74455e-11 9.95591e-10)
(2.76414e-11 -5.69901e-11 1.59459e-09)
(-6.65193e-08 -0.00357688 1.1426e-07)
(-2.22105e-10 -5.19161e-07 8.18856e-10)
(1.03118e-11 -1.88872e-09 3.844e-10)
(1.09934e-11 -2.7384e-11 5.35839e-10)
(1.13869e-11 -2.33856e-11 6.31945e-10)
(1.19659e-11 -2.34831e-11 6.90874e-10)
(1.26314e-11 -2.32808e-11 7.23879e-10)
(1.33259e-11 -2.2966e-11 7.38563e-10)
(1.41854e-11 -2.77735e-11 7.52694e-10)
(2.79866e-11 -4.84877e-11 1.565e-09)
(-6.78814e-08 -0.0035944 8.4623e-08)
(-2.32177e-10 -4.07451e-07 -9.73786e-10)
(4.92776e-12 -1.47147e-09 -9.04777e-10)
(5.16816e-12 -3.78744e-12 -5.65722e-10)
(5.4386e-12 -3.64394e-12 -2.93616e-10)
(6.15815e-12 -6.42006e-12 -7.51296e-11)
(7.19924e-12 -8.66512e-12 1.00753e-10)
(8.45625e-12 -1.05892e-11 2.4197e-10)
(1.00351e-11 -1.85959e-11 3.6695e-10)
(2.69301e-11 -3.80819e-11 1.41054e-09)
(-6.91337e-08 -0.0036121 5.50998e-08)
(-2.45139e-10 -2.92894e-07 -2.43183e-09)
(-5.73591e-13 -1.05091e-09 -2.15859e-09)
(-1.11971e-12 9.64869e-12 -1.73094e-09)
(-1.40752e-12 8.36077e-12 -1.35334e-09)
(-9.78467e-13 4.9285e-12 -1.02074e-09)
(5.30178e-14 1.85246e-12 -7.27203e-10)
(1.58027e-12 -9.87882e-13 -4.67937e-10)
(3.68254e-12 -1.10423e-11 -2.29128e-10)
(2.32466e-11 -2.60325e-11 1.01822e-09)
(-6.94138e-08 -0.00362997 2.6246e-08)
(-2.51531e-10 -1.75773e-07 -3.61927e-09)
(-5.37598e-12 -6.27959e-10 -3.32481e-09)
(-6.83793e-12 1.22765e-11 -2.92524e-09)
(-7.96287e-12 1.11039e-11 -2.53932e-09)
(-8.19739e-12 8.4842e-12 -2.16863e-09)
(-7.5755e-12 5.95676e-12 -1.81304e-09)
(-6.14239e-12 3.46617e-12 -1.47263e-09)
(-3.80958e-12 -6.56832e-12 -1.13969e-09)
(1.67345e-11 -1.35191e-11 1.63446e-10)
(-3.46166e-08 -0.00364803 2.3666e-09)
(-1.33501e-10 -5.89953e-08 -4.67834e-09)
(-1.57066e-11 -2.15868e-10 -4.62066e-09)
(-2.16617e-11 7.17412e-12 -4.48105e-09)
(-2.73632e-11 6.6407e-12 -4.31052e-09)
(-3.23647e-11 5.51388e-12 -4.11164e-09)
(-3.65217e-11 4.34842e-12 -3.88619e-09)
(-3.97048e-11 3.12451e-12 -3.63593e-09)
(-4.17375e-11 -2.73623e-12 -3.35946e-09)
(-3.2332e-11 -1.2101e-12 -2.51179e-09)
(3.25209e-07 -0.00349176 -8.17177e-07)
(8.41319e-10 -1.04694e-06 1.27856e-07)
(-9.26892e-11 -7.20491e-09 1.10784e-07)
(4.62072e-11 -3.12325e-09 9.46003e-08)
(1.49125e-10 -2.71524e-09 8.12056e-08)
(2.2175e-10 -2.38281e-09 7.01634e-08)
(2.72902e-10 -2.09938e-09 6.10407e-08)
(3.08537e-10 -1.86244e-09 5.34783e-08)
(3.34212e-10 -1.78576e-09 4.73963e-08)
(5.29535e-10 -2.4259e-09 6.20142e-08)
(-6.03686e-08 -0.00350846 -7.58166e-07)
(2.24357e-10 -9.50652e-07 9.96804e-08)
(4.4195e-10 -5.86316e-09 8.84362e-08)
(4.48184e-10 -2.2752e-09 7.69625e-08)
(4.50382e-10 -2.0082e-09 6.72567e-08)
(4.50443e-10 -1.79062e-09 5.90999e-08)
(4.48512e-10 -1.60215e-09 5.22437e-08)
(4.4516e-10 -1.44351e-09 4.64732e-08)
(4.43037e-10 -1.45059e-09 4.18174e-08)
(6.71745e-10 -2.12073e-09 5.94725e-08)
(-6.2408e-08 -0.00352531 -7.03292e-07)
(1.60035e-10 -8.50067e-07 7.17798e-08)
(3.78518e-10 -4.68603e-09 6.64509e-08)
(3.82587e-10 -1.58012e-09 5.97379e-08)
(3.85688e-10 -1.42889e-09 5.37613e-08)
(3.88901e-10 -1.30521e-09 4.85287e-08)
(3.91574e-10 -1.1949e-09 4.39768e-08)
(3.93728e-10 -1.10105e-09 4.00333e-08)
(3.97624e-10 -1.18314e-09 3.68349e-08)
(6.535e-10 -1.85978e-09 5.761e-08)
(-6.39633e-08 -0.00354233 -6.47226e-07)
(9.37752e-11 -7.46445e-07 4.5739e-08)
(3.14585e-10 -3.66231e-09 4.50914e-08)
(3.17045e-10 -1.00625e-09 4.23854e-08)
(3.20556e-10 -9.3844e-10 3.97016e-08)
(3.25882e-10 -8.84127e-10 3.71657e-08)
(3.32046e-10 -8.33635e-10 3.48258e-08)
(3.38742e-10 -7.90917e-10 3.27025e-08)
(3.47941e-10 -9.4027e-10 3.10069e-08)
(6.3082e-10 -1.59803e-09 5.49784e-08)
(-6.54273e-08 -0.00355952 -5.86508e-07)
(3.21966e-11 -6.40072e-07 2.18599e-08)
(2.50674e-10 -2.78424e-09 2.46237e-08)
(2.50206e-10 -5.55695e-10 2.50999e-08)
(2.52753e-10 -5.42548e-10 2.51832e-08)
(2.58695e-10 -5.34945e-10 2.50324e-08)
(2.66982e-10 -5.26431e-10 2.47428e-08)
(2.77122e-10 -5.20939e-10 2.43807e-08)
(2.90782e-10 -7.28285e-10 2.41982e-08)
(5.99429e-10 -1.33717e-09 5.12678e-08)
(-6.69164e-08 -0.00357688 -5.20829e-07)
(-2.82344e-11 -5.30836e-07 3.84107e-10)
(1.8697e-10 -2.06055e-09 5.36318e-09)
(1.82441e-10 -2.28169e-10 8.13293e-09)
(1.82586e-10 -2.4528e-10 1.03635e-08)
(1.87485e-10 -2.64612e-10 1.21872e-08)
(1.96253e-10 -2.81489e-10 1.36971e-08)
(2.08334e-10 -2.99777e-10 1.49655e-08)
(2.25361e-10 -5.53399e-10 1.62513e-08)
(5.56001e-10 -1.07912e-09 4.59969e-08)
(-6.84252e-08 -0.0035944 -4.49691e-07)
(-9.63149e-11 -4.18629e-07 -1.8265e-08)
(1.23627e-10 -1.46482e-09 -1.23186e-08)
(1.14199e-10 -1.97667e-11 -8.19409e-09)
(1.10428e-10 -4.84434e-11 -4.53362e-09)
(1.12522e-10 -7.86659e-11 -1.26035e-09)
(1.19897e-10 -1.06833e-10 1.68523e-09)
(1.32044e-10 -1.36164e-10 4.35233e-09)
(1.50842e-10 -4.20019e-10 6.97684e-09)
(4.95607e-10 -8.26736e-10 3.83928e-08)
(-6.99327e-08 -0.0036121 -3.72185e-07)
(-1.63653e-10 -3.03342e-07 -3.37743e-08)
(6.09417e-11 -9.66515e-10 -2.79853e-08)
(4.58953e-11 7.7796e-11 -2.34753e-08)
(3.68036e-11 4.9816e-11 -1.91975e-08)
(3.42589e-11 2.02687e-11 -1.51298e-08)
(3.81124e-11 -8.4841e-12 -1.12565e-08)
(4.81498e-11 -3.87396e-11 -7.56331e-09)
(6.63662e-11 -3.28112e-10 -3.86187e-09)
(4.10943e-10 -5.83676e-10 2.71725e-08)
(-7.11234e-08 -0.00362998 -2.85184e-07)
(-2.14223e-10 -1.8492e-07 -4.57268e-08)
(1.60507e-11 -5.57549e-10 -4.11261e-08)
(9.38039e-13 7.84959e-11 -3.72045e-08)
(-8.87619e-12 5.68405e-11 -3.32076e-08)
(-1.23465e-11 3.37494e-11 -2.91476e-08)
(-9.06655e-12 1.06447e-11 -2.50383e-08)
(1.27091e-12 -1.41226e-11 -2.08923e-08)
(2.07867e-11 -2.65951e-10 -1.65861e-08)
(3.44315e-10 -3.55632e-10 1.01061e-08)
(-3.58762e-08 -0.00364803 -1.74713e-07)
(-1.74478e-10 -6.42418e-08 -5.66873e-08)
(-9.81811e-11 -1.60535e-10 -5.62318e-08)
(-1.48754e-10 5.94075e-11 -5.574e-08)
(-1.98124e-10 4.5289e-11 -5.48334e-08)
(-2.44571e-10 3.04448e-11 -5.35227e-08)
(-2.867e-10 1.53638e-11 -5.18222e-08)
(-3.23174e-10 -5.79811e-13 -4.97431e-08)
(-3.51914e-10 -1.32321e-10 -4.72517e-08)
(-2.18302e-10 -1.04704e-10 -3.38668e-08)
(3.74858e-07 -0.00349182 -3.51124e-06)
(-6.56184e-09 -1.21922e-06 -4.52874e-07)
(-7.48637e-09 4.81866e-09 -3.38322e-07)
(-7.05062e-09 7.4764e-09 -2.60056e-07)
(-6.59749e-09 6.18629e-09 -2.00356e-07)
(-6.15687e-09 5.08976e-09 -1.54199e-07)
(-5.7407e-09 4.17341e-09 -1.18072e-07)
(-5.35484e-09 3.3269e-09 -8.94855e-08)
(-5.00995e-09 -5.08124e-09 -6.35549e-08)
(-2.587e-09 -2.24753e-08 7.87734e-07)
(-6.90307e-08 -0.00350852 -3.1323e-06)
(3.41521e-09 -1.10656e-06 -4.0993e-07)
(3.06974e-09 3.35948e-09 -3.27744e-07)
(2.57462e-09 6.23194e-09 -2.71581e-07)
(2.16006e-09 5.41355e-09 -2.2765e-07)
(1.81405e-09 4.69428e-09 -1.9284e-07)
(1.52433e-09 4.07658e-09 -1.64919e-07)
(1.2806e-09 3.47026e-09 -1.4227e-07)
(1.09308e-09 -5.04712e-09 -1.20663e-07)
(5.47829e-09 -2.01851e-08 7.18529e-07)
(-7.06887e-08 -0.00352537 -2.80206e-06)
(3.16728e-09 -9.90361e-07 -3.88965e-07)
(2.85536e-09 1.76242e-09 -3.18277e-07)
(2.38154e-09 4.59027e-09 -2.68921e-07)
(1.98265e-09 4.05485e-09 -2.29402e-07)
(1.64748e-09 3.56754e-09 -1.97425e-07)
(1.3648e-09 3.13734e-09 -1.71287e-07)
(1.12536e-09 2.68697e-09 -1.49719e-07)
(9.3974e-10 -5.94775e-09 -1.28798e-07)
(5.28156e-09 -1.88049e-08 6.93683e-07)
(-7.23833e-08 -0.00354238 -2.47406e-06)
(2.80485e-09 -8.70928e-07 -3.70478e-07)
(2.6079e-09 5.10905e-10 -3.10558e-07)
(2.21307e-09 3.18065e-09 -2.67775e-07)
(1.86994e-09 2.85388e-09 -2.32683e-07)
(1.57299e-09 2.54429e-09 -2.03655e-07)
(1.31547e-09 2.26265e-09 -1.79449e-07)
(1.09162e-09 1.94035e-09 -1.59109e-07)
(9.14018e-10 -6.75487e-09 -1.39035e-07)
(5.18254e-09 -1.72905e-08 6.57279e-07)
(-7.41057e-08 -0.00355956 -2.14671e-06)
(2.41537e-09 -7.48245e-07 -3.54878e-07)
(2.3268e-09 -4.04164e-10 -3.05033e-07)
(2.00975e-09 2.00712e-09 -2.68623e-07)
(1.72409e-09 1.82089e-09 -2.3801e-07)
(1.46837e-09 1.63671e-09 -2.12101e-07)
(1.2393e-09 1.46399e-09 -1.90038e-07)
(1.03397e-09 1.24024e-09 -1.71137e-07)
(8.66684e-10 -7.41322e-09 -1.52149e-07)
(5.02855e-09 -1.56168e-08 6.05429e-07)
(-7.58761e-08 -0.00357691 -1.82006e-06)
(1.99689e-09 -6.22251e-07 -3.42511e-07)
(2.0083e-09 -9.98172e-10 -3.02228e-07)
(1.76606e-09 1.06917e-09 -2.7206e-07)
(1.53841e-09 9.63398e-10 -2.46051e-07)
(1.32624e-09 8.55653e-10 -2.23517e-07)
(1.12863e-09 7.52518e-10 -2.03906e-07)
(9.4478e-10 5.96705e-10 -1.86762e-07)
(7.90193e-10 -7.84111e-09 -1.69225e-07)
(4.80635e-09 -1.37483e-08 5.32708e-07)
(-7.7712e-08 -0.00359443 -1.49414e-06)
(1.54692e-09 -4.92873e-07 -3.3392e-07)
(1.64831e-09 -1.29292e-09 -3.02764e-07)
(1.47577e-09 3.60293e-10 -2.78829e-07)
(1.30505e-09 2.8504e-10 -2.57676e-07)
(1.13767e-09 2.09805e-10 -2.38917e-07)
(9.74016e-10 1.38706e-10 -2.22232e-07)
(8.14445e-10 2.0112e-11 -2.07343e-07)
(6.75086e-10 -7.91638e-09 -1.91827e-07)
(4.5012e-09 -1.1635e-08 4.3146e-07)
(-7.96653e-08 -0.00361212 -1.16886e-06)
(1.06341e-09 -3.59997e-07 -3.297e-07)
(1.24238e-09 -1.31781e-09 -3.0738e-07)
(1.13208e-09 -1.33699e-10 -2.89858e-07)
(1.01491e-09 -2.16418e-10 -2.74021e-07)
(8.92047e-10 -2.95717e-10 -2.59676e-07)
(7.63984e-10 -3.68817e-10 -2.4666e-07)
(6.31185e-10 -4.79311e-10 -2.34825e-07)
(5.09823e-10 -7.45323e-09 -2.22258e-07)
(4.10021e-09 -9.20517e-09 2.90717e-07)
(-8.16388e-08 -0.00362999 -8.43819e-07)
(7.28104e-10 -2.23384e-07 -3.30378e-07)
(1.08696e-09 -1.11261e-09 -3.16969e-07)
(1.14187e-09 -4.36215e-10 -3.06338e-07)
(1.18224e-09 -5.51186e-10 -2.96611e-07)
(1.20831e-09 -6.61052e-10 -2.87706e-07)
(1.21972e-09 -7.64069e-10 -2.79554e-07)
(1.21611e-09 -8.91272e-10 -2.7209e-07)
(1.21374e-09 -6.15902e-09 -2.64017e-07)
(4.62122e-09 -6.34799e-09 9.4395e-08)
(-4.14362e-08 -0.00364803 -5.31e-07)
(1.14432e-10 -8.21859e-08 -3.7491e-07)
(1.92635e-10 1.384e-10 -3.9593e-07)
(8.54546e-11 2.88892e-10 -4.17556e-07)
(-5.92351e-11 1.39277e-10 -4.39346e-07)
(-2.40936e-10 -8.45959e-12 -4.61218e-07)
(-4.59524e-10 -1.53576e-10 -4.83164e-07)
(-7.14613e-10 -3.06044e-10 -5.05096e-07)
(-9.98173e-10 -2.67242e-09 -5.26752e-07)
(4.05085e-10 -2.32205e-09 -4.07816e-07)
(5.49992e-07 -0.0034919 -0.0174537)
(3.61389e-08 -1.66565e-06 -0.0160048)
(3.01953e-08 -2.85034e-08 -0.0147762)
(2.67828e-08 -1.92682e-08 -0.0137228)
(2.39247e-08 -1.65904e-08 -0.0128095)
(2.15062e-08 -1.44283e-08 -0.0120102)
(1.9443e-08 -1.2658e-08 -0.0113048)
(1.76687e-08 -1.23377e-08 -0.0106777)
(1.57856e-08 -3.33778e-07 -0.0101165)
(-8.33327e-08 -3.31158e-07 -0.00961101)
(-1.05976e-07 -0.00350856 -0.0175376)
(-5.38962e-09 -1.4982e-06 -0.0162177)
(-2.82638e-09 -1.76531e-08 -0.0150808)
(-9.89021e-10 -1.02339e-08 -0.0140929)
(5.61546e-10 -8.56075e-09 -0.0132264)
(1.88517e-09 -7.21794e-09 -0.0124604)
(3.02647e-09 -6.12517e-09 -0.0117782)
(4.01975e-09 -6.30098e-09 -0.0111668)
(4.94836e-09 -3.08484e-07 -0.0106157)
(2.20581e-08 -3.07866e-07 -0.0101162)
(-1.04436e-07 -0.00352539 -0.0176223)
(-3.64461e-09 -1.33576e-06 -0.0164363)
(-2.52304e-09 -1.54951e-08 -0.0153983)
(-1.93434e-09 -9.06102e-09 -0.0144836)
(-1.4723e-09 -7.68105e-09 -0.0136714)
(-1.10639e-09 -6.55368e-09 -0.0129455)
(-8.14602e-10 -5.62106e-09 -0.0122928)
(-5.80257e-10 -5.83724e-09 -0.0117028)
(-3.29632e-10 -2.8617e-07 -0.0111668)
(1.74058e-08 -2.8533e-07 -0.0106774)
(-1.0538e-07 -0.00354238 -0.0177079)
(-3.21221e-09 -1.17007e-06 -0.0166609)
(-2.16462e-09 -1.33984e-08 -0.0157294)
(-1.62571e-09 -7.91274e-09 -0.0148965)
(-1.19509e-09 -6.79939e-09 -0.0141474)
(-8.48528e-10 -5.87268e-09 -0.01347)
(-5.68097e-10 -5.09212e-09 -0.0128545)
(-3.39879e-10 -5.33654e-09 -0.0122928)
(-8.72435e-11 -2.61401e-07 -0.0117781)
(1.90182e-08 -2.60349e-07 -0.0113045)
(-1.06334e-07 -0.00355954 -0.0177942)
(-2.74988e-09 -1.00103e-06 -0.0168918)
(-1.76655e-09 -1.13468e-08 -0.016075)
(-1.27045e-09 -6.77416e-09 -0.0153337)
(-8.65547e-10 -5.89958e-09 -0.0146577)
(-5.3307e-10 -5.15725e-09 -0.0140387)
(-2.58973e-10 -4.52013e-09 -0.01347)
(-3.19904e-11 -4.77909e-09 -0.0129455)
(2.28139e-10 -2.33771e-07 -0.0124603)
(2.09036e-08 -2.32538e-07 -0.0120099)
(-1.07314e-07 -0.00357686 -0.0178815)
(-2.2565e-09 -8.28493e-07 -0.0171291)
(-1.32518e-09 -9.31805e-09 -0.0164362)
(-8.62239e-10 -5.62442e-09 -0.0157973)
(-4.74622e-10 -4.96048e-09 -0.0152061)
(-1.4833e-10 -4.38523e-09 -0.0146576)
(1.27203e-10 -3.88155e-09 -0.0141473)
(3.60774e-10 -4.13861e-09 -0.0136714)
(6.37135e-10 -2.02763e-07 -0.0132264)
(2.31314e-08 -2.01406e-07 -0.0128092)
(-1.08323e-07 -0.00359436 -0.0179696)
(-1.73026e-09 -6.5228e-07 -0.0173732)
(-8.36138e-10 -7.28449e-09 -0.016814)
(-3.93535e-10 -4.43596e-09 -0.0162898)
(-1.11133e-11 -3.95242e-09 -0.0157973)
(3.20991e-10 -3.52427e-09 -0.0153336)
(6.10251e-10 -3.14143e-09 -0.0148964)
(8.63174e-10 -3.37562e-09 -0.0144835)
(1.17004e-09 -1.67727e-07 -0.0140928)
(2.57895e-08 -1.66351e-07 -0.0137224)
(-1.09367e-07 -0.00361203 -0.0180586)
(-1.16896e-09 -4.72215e-07 -0.0176243)
(-2.93482e-10 -5.21155e-09 -0.0172096)
(1.4598e-10 -3.17192e-09 -0.016814)
(5.40452e-10 -2.83437e-09 -0.0164362)
(8.96397e-10 -2.52837e-09 -0.016075)
(1.21862e-09 -2.24831e-09 -0.0157293)
(1.51152e-09 -2.43099e-09 -0.0153982)
(1.87216e-09 -1.2785e-07 -0.0150807)
(2.89984e-08 -1.26626e-07 -0.0147759)
(-1.09422e-07 -0.00362987 -0.0181485)
(1.70006e-09 -2.8809e-07 -0.0178828)
(4.06822e-09 -3.05243e-09 -0.0176243)
(5.98742e-09 -1.78138e-09 -0.0173731)
(7.8628e-09 -1.54744e-09 -0.017129)
(9.695e-09 -1.32908e-09 -0.0168917)
(1.14875e-08 -1.12374e-09 -0.0166608)
(1.32389e-08 -1.21301e-09 -0.0164362)
(1.50697e-08 -8.20874e-08 -0.0162176)
(4.6531e-08 -8.12951e-08 -0.0160045)
(-5.46022e-08 -0.00364788 -0.0182393)
(2.00404e-09 -9.02641e-08 -0.0181491)
(3.83918e-09 9.49529e-09 -0.0180594)
(5.43092e-09 9.98014e-09 -0.0179707)
(6.98864e-09 1.0128e-08 -0.0178829)
(8.50965e-09 1.02585e-08 -0.0177959)
(9.9947e-09 1.03702e-08 -0.0177097)
(1.14401e-08 1.04097e-08 -0.0176244)
(1.29165e-08 -1.91644e-08 -0.0175398)
(3.04933e-08 -2.41499e-08 -0.0174561)
(-8.33329e-08 3.31157e-07 0.00961101)
(1.57853e-08 3.33777e-07 0.0101165)
(1.76684e-08 1.23363e-08 0.0106777)
(1.94426e-08 1.26561e-08 0.0113048)
(2.15057e-08 1.44258e-08 0.0120102)
(2.39241e-08 1.65871e-08 0.0128095)
(2.67821e-08 1.92636e-08 0.0137228)
(3.01943e-08 2.84968e-08 0.0147762)
(3.61377e-08 1.66564e-06 0.0160048)
(5.49991e-07 0.0034919 0.0174537)
(2.20578e-08 3.07865e-07 0.0101162)
(4.948e-09 3.08483e-07 0.0106157)
(4.01936e-09 6.29943e-09 0.0111668)
(3.02602e-09 6.12317e-09 0.0117782)
(1.88468e-09 7.21533e-09 0.0124604)
(5.61014e-10 8.55726e-09 0.0132264)
(-9.89578e-10 1.02292e-08 0.0140929)
(-2.82692e-09 1.76466e-08 0.0150808)
(-5.39008e-09 1.49819e-06 0.0162177)
(-1.05976e-07 0.00350856 0.0175376)
(1.74054e-08 2.85329e-07 0.0106774)
(-3.30082e-10 2.86168e-07 0.0111668)
(-5.80753e-10 5.83554e-09 0.0117028)
(-8.15145e-10 5.61891e-09 0.0122928)
(-1.10698e-09 6.55092e-09 0.0129455)
(-1.47292e-09 7.67747e-09 0.0136714)
(-1.93497e-09 9.0563e-09 0.0144836)
(-2.52363e-09 1.54888e-08 0.0153983)
(-3.64509e-09 1.33575e-06 0.0164363)
(-1.04436e-07 0.00352539 0.0176223)
(1.90177e-08 2.60349e-07 0.0113045)
(-8.7824e-11 2.614e-07 0.0117781)
(-3.40507e-10 5.33468e-09 0.0122928)
(-5.68768e-10 5.08981e-09 0.0128545)
(-8.49236e-10 5.8698e-09 0.01347)
(-1.19582e-09 6.79575e-09 0.0141474)
(-1.62643e-09 7.9081e-09 0.0148965)
(-2.16528e-09 1.33924e-08 0.0157294)
(-3.21272e-09 1.17007e-06 0.0166609)
(-1.05381e-07 0.00354238 0.0177079)
(2.09029e-08 2.32537e-07 0.0120099)
(2.27378e-10 2.3377e-07 0.0124603)
(-3.27941e-11 4.77708e-09 0.0129455)
(-2.59811e-10 4.5177e-09 0.01347)
(-5.33931e-10 5.1543e-09 0.0140387)
(-8.66408e-10 5.89595e-09 0.0146577)
(-1.27128e-09 6.76968e-09 0.0153337)
(-1.76728e-09 1.13412e-08 0.016075)
(-2.75043e-09 1.00103e-06 0.0168918)
(-1.06334e-07 0.00355954 0.0177942)
(2.31304e-08 2.01405e-07 0.0128092)
(6.36123e-10 2.02761e-07 0.0132264)
(3.59732e-10 4.13649e-09 0.0136714)
(1.26144e-10 3.87905e-09 0.0141473)
(-1.49386e-10 4.38227e-09 0.0146576)
(-4.75645e-10 4.95697e-09 0.0152061)
(-8.63186e-10 5.62022e-09 0.0157973)
(-1.32599e-09 9.313e-09 0.0164362)
(-2.25709e-09 8.28486e-07 0.0171291)
(-1.07314e-07 0.00357686 0.0178815)
(2.57882e-08 1.6635e-07 0.0137224)
(1.16867e-09 1.67726e-07 0.0140928)
(8.61805e-10 3.37346e-09 0.0144835)
(6.08901e-10 3.13895e-09 0.0148964)
(3.19687e-10 3.52144e-09 0.0153336)
(-1.23357e-11 3.94917e-09 0.0157973)
(-3.94628e-10 4.4322e-09 0.0162898)
(-8.37037e-10 7.28013e-09 0.016814)
(-1.73088e-09 6.52275e-07 0.0173732)
(-1.08323e-07 0.00359436 0.0179696)
(2.89965e-08 1.26625e-07 0.0147759)
(1.87028e-09 1.27848e-07 0.0150807)
(1.5097e-09 2.42893e-09 0.0153982)
(1.21688e-09 2.24604e-09 0.0157293)
(8.94771e-10 2.52585e-09 0.016075)
(5.38982e-10 2.83158e-09 0.0164362)
(1.44714e-10 3.16882e-09 0.016814)
(-2.94483e-10 5.20809e-09 0.0172096)
(-1.16963e-09 4.7221e-07 0.0176243)
(-1.09367e-07 0.00361203 0.0180586)
(4.65282e-08 8.12944e-08 0.0160045)
(1.50671e-08 8.20858e-08 0.0162176)
(1.32364e-08 1.21133e-09 0.0164362)
(1.14852e-08 1.12196e-09 0.0166608)
(9.69298e-09 1.32718e-09 0.0168917)
(7.86104e-09 1.54542e-09 0.017129)
(5.98597e-09 1.77922e-09 0.0173731)
(4.06713e-09 3.05012e-09 0.0176243)
(1.69938e-09 2.88087e-07 0.0178828)
(-1.09422e-07 0.00362987 0.0181485)
(3.04919e-08 2.41496e-08 0.0174561)
(1.29152e-08 1.91636e-08 0.0175398)
(1.14389e-08 -1.04104e-08 0.0176244)
(9.99361e-09 -1.03709e-08 0.0177097)
(8.50869e-09 -1.02593e-08 0.0177959)
(6.98783e-09 -1.01288e-08 0.0178829)
(5.43026e-09 -9.98098e-09 0.0179707)
(3.8387e-09 -9.49615e-09 0.0180594)
(2.00375e-09 9.02631e-08 0.0181491)
(-5.46023e-08 0.00364788 0.0182393)
(-2.58697e-09 2.24753e-08 -7.8774e-07)
(-5.00992e-09 5.08123e-09 6.35471e-08)
(-5.3548e-09 -3.32687e-09 8.94753e-08)
(-5.74066e-09 -4.17339e-09 1.18059e-07)
(-6.15684e-09 -5.08975e-09 1.54181e-07)
(-6.59745e-09 -6.18633e-09 2.00331e-07)
(-7.05058e-09 -7.47654e-09 2.60022e-07)
(-7.48634e-09 -4.81901e-09 3.38273e-07)
(-6.56184e-09 1.21921e-06 4.52802e-07)
(3.74857e-07 0.00349182 3.51113e-06)
(5.4783e-09 2.01851e-08 -7.18537e-07)
(1.09309e-09 5.04711e-09 1.20653e-07)
(1.28061e-09 -3.47023e-09 1.42257e-07)
(1.52434e-09 -4.07657e-09 1.64902e-07)
(1.81406e-09 -4.69429e-09 1.92818e-07)
(2.16007e-09 -5.4136e-09 2.27621e-07)
(2.57462e-09 -6.23209e-09 2.71541e-07)
(3.06973e-09 -3.35984e-09 3.27689e-07)
(3.4152e-09 1.10655e-06 4.09853e-07)
(-6.90307e-08 0.00350852 3.13219e-06)
(5.28158e-09 1.88048e-08 -6.93693e-07)
(9.39758e-10 5.94774e-09 1.28785e-07)
(1.12537e-09 -2.68695e-09 1.49703e-07)
(1.36481e-09 -3.13733e-09 1.71266e-07)
(1.64749e-09 -3.56756e-09 1.97398e-07)
(1.98266e-09 -4.05493e-09 2.29368e-07)
(2.38154e-09 -4.59044e-09 2.68876e-07)
(2.85535e-09 -1.76279e-09 3.18217e-07)
(3.16726e-09 9.90357e-07 3.88882e-07)
(-7.06887e-08 0.00352537 2.80194e-06)
(5.18256e-09 1.72905e-08 -6.57292e-07)
(9.14036e-10 6.75485e-09 1.39018e-07)
(1.09163e-09 -1.94034e-09 1.59088e-07)
(1.31548e-09 -2.26266e-09 1.79424e-07)
(1.573e-09 -2.54433e-09 2.03623e-07)
(1.86993e-09 -2.85398e-09 2.32643e-07)
(2.21306e-09 -3.18085e-09 2.67723e-07)
(2.60788e-09 -5.11278e-10 3.10491e-07)
(2.80484e-09 8.70924e-07 3.7039e-07)
(-7.23833e-08 0.00354238 2.47394e-06)
(5.02857e-09 1.56168e-08 -6.05448e-07)
(8.66699e-10 7.41319e-09 1.52128e-07)
(1.03398e-09 -1.24024e-09 1.7111e-07)
(1.23931e-09 -1.46401e-09 1.90006e-07)
(1.46837e-09 -1.63677e-09 2.12062e-07)
(1.72408e-09 -1.82101e-09 2.37962e-07)
(2.00973e-09 -2.00733e-09 2.68563e-07)
(2.32678e-09 4.03793e-10 3.04959e-07)
(2.41535e-09 7.48241e-07 3.54784e-07)
(-7.41057e-08 0.00355956 2.14659e-06)
(4.80636e-09 1.37483e-08 -5.32733e-07)
(7.90199e-10 7.84106e-09 1.69196e-07)
(9.44779e-10 -5.96729e-10 1.86728e-07)
(1.12862e-09 -7.52569e-10 2.03866e-07)
(1.32622e-09 -8.55744e-10 2.23469e-07)
(1.53839e-09 -9.63546e-10 2.45994e-07)
(1.76603e-09 -1.0694e-09 2.71992e-07)
(2.00826e-09 9.97807e-10 3.02145e-07)
(1.99687e-09 6.22247e-07 3.42411e-07)
(-7.58761e-08 0.00357691 1.81994e-06)
(4.50119e-09 1.1635e-08 -4.31495e-07)
(6.75072e-10 7.91631e-09 1.91787e-07)
(8.14422e-10 -2.01649e-11 2.07297e-07)
(9.73985e-10 -1.38787e-10 2.2218e-07)
(1.13763e-09 -2.09924e-10 2.38858e-07)
(1.305e-09 -2.85208e-10 2.57607e-07)
(1.47572e-09 -3.60528e-10 2.7875e-07)
(1.64827e-09 1.29259e-09 3.02672e-07)
(1.54689e-09 4.92869e-07 3.33813e-07)
(-7.7712e-08 0.00359443 1.49401e-06)
(4.10015e-09 9.20517e-09 -2.90767e-07)
(5.09766e-10 7.45313e-09 2.22203e-07)
(6.3112e-10 4.79227e-10 2.34764e-07)
(7.63914e-10 3.68708e-10 2.46593e-07)
(8.91974e-10 2.95578e-10 2.59602e-07)
(1.01484e-09 2.16242e-10 2.73939e-07)
(1.13202e-09 1.33477e-10 2.89766e-07)
(1.24232e-09 1.31752e-09 3.07277e-07)
(1.06338e-09 3.59994e-07 3.29585e-07)
(-7.96651e-08 0.00361212 1.16873e-06)
(4.62107e-09 6.34799e-09 -9.4468e-08)
(1.21359e-09 6.15891e-09 2.63939e-07)
(1.21597e-09 8.9117e-10 2.72007e-07)
(1.21959e-09 7.63952e-10 2.79466e-07)
(1.20818e-09 6.60917e-10 2.87612e-07)
(1.18213e-09 5.51031e-10 2.9651e-07)
(1.14178e-09 4.36038e-10 3.06231e-07)
(1.08689e-09 1.1124e-09 3.16854e-07)
(7.28071e-10 2.23381e-07 3.30255e-07)
(-8.16384e-08 0.00362999 8.43683e-07)
(4.05384e-10 2.32205e-09 4.07706e-07)
(-9.97905e-10 2.67234e-09 5.2664e-07)
(-7.1438e-10 3.05978e-10 5.04981e-07)
(-4.59324e-10 1.53507e-10 4.83047e-07)
(-2.4077e-10 8.38739e-12 4.61098e-07)
(-5.91006e-11 -1.39353e-10 4.39223e-07)
(8.55589e-11 -2.88971e-10 4.17431e-07)
(1.92711e-10 -1.3849e-10 3.95802e-07)
(1.14484e-10 8.21838e-08 3.74778e-07)
(-4.14359e-08 0.00364803 5.30861e-07)
(5.29535e-10 2.42579e-09 -6.20145e-08)
(3.34211e-10 1.7857e-09 -4.73967e-08)
(3.08537e-10 1.86241e-09 -5.34788e-08)
(2.72903e-10 2.09936e-09 -6.10416e-08)
(2.21753e-10 2.38277e-09 -7.01647e-08)
(1.49128e-10 2.71521e-09 -8.12076e-08)
(4.62117e-11 3.12321e-09 -9.46035e-08)
(-9.2684e-11 7.20488e-09 -1.10789e-07)
(8.41327e-10 1.04694e-06 -1.27865e-07)
(3.25209e-07 0.00349176 8.17138e-07)
(6.71747e-10 2.12061e-09 -5.94729e-08)
(4.4304e-10 1.45054e-09 -4.1818e-08)
(4.45164e-10 1.44349e-09 -4.64739e-08)
(4.48518e-10 1.60213e-09 -5.22449e-08)
(4.50452e-10 1.7906e-09 -5.91016e-08)
(4.50394e-10 2.00818e-09 -6.72592e-08)
(4.48201e-10 2.27518e-09 -7.69664e-08)
(4.41973e-10 5.86316e-09 -8.84424e-08)
(2.24386e-10 9.50652e-07 -9.96904e-08)
(-6.03686e-08 0.00350846 7.58126e-07)
(6.53504e-10 1.85966e-09 -5.76106e-08)
(3.97629e-10 1.18309e-09 -3.68357e-08)
(3.93735e-10 1.10104e-09 -4.00344e-08)
(3.91583e-10 1.19489e-09 -4.39783e-08)
(3.88913e-10 1.3052e-09 -4.85309e-08)
(3.85703e-10 1.42888e-09 -5.37645e-08)
(3.82606e-10 1.58012e-09 -5.97426e-08)
(3.78543e-10 4.68605e-09 -6.6458e-08)
(1.60065e-10 8.50067e-07 -7.17908e-08)
(-6.2408e-08 0.00352531 7.03251e-07)
(6.30827e-10 1.59792e-09 -5.49792e-08)
(3.4795e-10 9.40223e-10 -3.10081e-08)
(3.38752e-10 7.90913e-10 -3.2704e-08)
(3.32058e-10 8.33634e-10 -3.48279e-08)
(3.25898e-10 8.84129e-10 -3.71686e-08)
(3.20575e-10 9.38447e-10 -3.97056e-08)
(3.17069e-10 1.00626e-09 -4.23911e-08)
(3.14613e-10 3.66235e-09 -4.50996e-08)
(9.38093e-11 7.46445e-07 -4.57511e-08)
(-6.39632e-08 0.00354233 6.47183e-07)
(5.9944e-10 1.33706e-09 -5.12691e-08)
(2.90795e-10 7.28246e-10 -2.42e-08)
(2.77137e-10 5.20944e-10 -2.4383e-08)
(2.67e-10 5.26441e-10 -2.47457e-08)
(2.58716e-10 5.34959e-10 -2.50363e-08)
(2.52778e-10 5.42569e-10 -2.51884e-08)
(2.50234e-10 5.55724e-10 -2.51069e-08)
(2.50706e-10 2.78429e-09 -2.46332e-08)
(3.22081e-11 6.40073e-07 -2.18731e-08)
(-6.54273e-08 0.00355952 5.86465e-07)
(5.56017e-10 1.07902e-09 -4.5999e-08)
(2.2538e-10 5.53368e-10 -1.62539e-08)
(2.08356e-10 2.99792e-10 -1.49688e-08)
(1.96278e-10 2.81509e-10 -1.37012e-08)
(1.87513e-10 2.64638e-10 -1.21923e-08)
(1.82617e-10 2.45313e-10 -1.03701e-08)
(1.82474e-10 2.2821e-10 -8.14144e-09)
(1.87005e-10 2.06053e-09 -5.37424e-09)
(-2.82003e-11 5.30837e-07 -3.98976e-10)
(-6.69163e-08 0.00357688 5.20785e-07)
(4.95631e-10 8.26652e-10 -3.83961e-08)
(1.50871e-10 4.19999e-10 -6.98082e-09)
(1.32076e-10 1.36188e-10 -4.35711e-09)
(1.19931e-10 1.06862e-10 -1.691e-09)
(1.12557e-10 7.86995e-11 1.25335e-09)
(1.10466e-10 4.84842e-11 4.52508e-09)
(1.14238e-10 1.98139e-11 8.18363e-09)
(1.23666e-10 1.46488e-09 1.23057e-08)
(-9.62544e-11 4.18629e-07 1.82489e-08)
(-6.84251e-08 0.0035944 4.49647e-07)
(4.10981e-10 5.83612e-10 -2.71779e-08)
(6.64093e-11 3.28104e-10 3.85559e-09)
(4.81944e-11 3.87696e-11 7.5561e-09)
(3.81579e-11 8.51816e-12 1.12482e-08)
(3.43053e-11 -2.02306e-11 1.51202e-08)
(3.68498e-11 -4.97736e-11 1.91863e-08)
(4.59408e-11 -7.77489e-11 2.34624e-08)
(6.09853e-11 9.66574e-10 2.79703e-08)
(-1.63612e-10 3.03342e-07 3.37566e-08)
(-6.99326e-08 0.0036121 3.7214e-07)
(3.44372e-10 3.55595e-10 -1.01155e-08)
(2.085e-11 2.65952e-10 1.6576e-08)
(1.33371e-12 1.41525e-11 2.08812e-08)
(-9.00496e-12 -1.06127e-11 2.50262e-08)
(-1.22869e-11 -3.37156e-11 2.91342e-08)
(-8.81929e-12 -5.68046e-11 3.3193e-08)
(9.91311e-13 -7.84579e-11 3.71884e-08)
(1.60994e-11 5.57595e-10 4.11084e-08)
(-2.1418e-10 1.8492e-07 4.57074e-08)
(-7.11233e-08 0.00362998 2.85141e-07)
(-2.18147e-10 1.04695e-10 3.38504e-08)
(-3.51766e-10 1.32326e-10 4.72347e-08)
(-3.23039e-10 5.96686e-13 4.97255e-08)
(-2.86579e-10 -1.53467e-11 5.18041e-08)
(-2.44464e-10 -3.04276e-11 5.3504e-08)
(-1.98032e-10 -4.52719e-11 5.4814e-08)
(-1.48678e-10 -5.93905e-11 5.572e-08)
(-9.81214e-11 1.60556e-10 5.62112e-08)
(-1.74435e-10 6.42425e-08 5.66659e-08)
(-3.58761e-08 0.00364803 1.74676e-07)
(1.98895e-11 7.60771e-11 -1.33041e-09)
(1.67188e-11 7.13083e-11 -1.27713e-09)
(1.80315e-11 8.73385e-11 -1.60324e-09)
(1.92681e-11 1.10807e-10 -2.05138e-09)
(2.00481e-11 1.42442e-10 -2.6614e-09)
(1.9855e-11 1.85358e-10 -3.50383e-09)
(1.77956e-11 2.54353e-10 -4.69482e-09)
(1.49841e-11 4.00263e-09 -6.36341e-09)
(1.15908e-09 1.03327e-06 -1.06837e-08)
(3.2301e-07 0.0034918 -2.73264e-07)
(2.35609e-11 7.24388e-11 -1.40357e-09)
(1.9241e-11 6.33277e-11 -1.25331e-09)
(2.10241e-11 7.51159e-11 -1.53748e-09)
(2.30669e-11 9.3064e-11 -1.9205e-09)
(2.51824e-11 1.16657e-10 -2.42777e-09)
(2.72404e-11 1.47748e-10 -3.10739e-09)
(2.90795e-11 1.9812e-10 -4.03692e-09)
(2.95865e-11 3.58464e-09 -5.28817e-09)
(-1.7599e-10 9.37526e-07 -8.67004e-09)
(-6.01743e-08 0.00350849 -2.37974e-07)
(2.51266e-11 6.86693e-11 -1.48886e-09)
(1.90175e-11 5.55326e-11 -1.22024e-09)
(2.02613e-11 6.31024e-11 -1.45309e-09)
(2.16701e-11 7.58532e-11 -1.75917e-09)
(2.3051e-11 9.20765e-11 -2.14965e-09)
(2.43022e-11 1.12647e-10 -2.65136e-09)
(2.53286e-11 1.4677e-10 -3.30623e-09)
(2.52002e-11 3.16114e-09 -4.13972e-09)
(-1.88471e-10 8.37497e-07 -6.62679e-09)
(-6.22327e-08 0.00352534 -2.04334e-07)
(2.65625e-11 6.35543e-11 -1.55848e-09)
(1.82842e-11 4.68048e-11 -1.14136e-09)
(1.88993e-11 5.00953e-11 -1.30824e-09)
(1.96176e-11 5.80052e-11 -1.52173e-09)
(2.02557e-11 6.76817e-11 -1.78065e-09)
(2.07553e-11 7.93708e-11 -2.09482e-09)
(2.10907e-11 1.00255e-10 -2.47894e-09)
(2.05063e-11 2.73625e-09 -2.93023e-09)
(-1.98439e-10 7.34125e-07 -4.63518e-09)
(-6.3788e-08 0.00354235 -1.7407e-07)
(2.76418e-11 5.68584e-11 -1.59462e-09)
(1.67824e-11 3.73797e-11 -9.95635e-10)
(1.66867e-11 3.64855e-11 -1.08037e-09)
(1.66841e-11 4.01578e-11 -1.18599e-09)
(1.66153e-11 4.44016e-11 -1.30167e-09)
(1.6478e-11 4.91332e-11 -1.42549e-09)
(1.63185e-11 5.99716e-11 -1.55427e-09)
(1.55362e-11 2.31633e-09 -1.67247e-09)
(-2.10764e-10 6.28037e-07 -2.72163e-09)
(-6.5149e-08 0.00355953 -1.44066e-07)
(2.79883e-11 4.83595e-11 -1.56506e-09)
(1.41893e-11 2.77136e-11 -7.52788e-10)
(1.33314e-11 2.29455e-11 -7.3869e-10)
(1.26392e-11 2.32586e-11 -7.2406e-10)
(1.19764e-11 2.3458e-11 -6.91127e-10)
(1.14007e-11 2.33573e-11 -6.32301e-10)
(1.10113e-11 2.73521e-11 -5.36343e-10)
(1.03347e-11 1.88874e-09 -3.85118e-10)
(-2.22074e-10 5.19162e-07 -8.2044e-10)
(-6.65193e-08 0.00357688 -1.14267e-07)
(2.69338e-11 3.79626e-11 -1.41068e-09)
(1.00426e-11 1.85441e-11 -3.67136e-10)
(8.4656e-12 1.0576e-11 -2.42204e-10)
(7.21099e-12 8.65189e-12 -1.01058e-10)
(6.17268e-12 6.4055e-12 7.47268e-11)
(5.45622e-12 3.62826e-12 2.93093e-10)
(5.18944e-12 3.77065e-12 5.65034e-10)
(4.95311e-12 1.47145e-09 9.0387e-10)
(-2.32162e-10 4.07452e-07 9.72539e-10)
(-6.78814e-08 0.0035944 -8.46299e-08)
(2.32537e-11 2.59298e-11 -1.01851e-09)
(3.69535e-12 1.1002e-11 2.28775e-10)
(1.59534e-12 9.82741e-13 4.67514e-10)
(7.02993e-14 -1.85704e-12 7.26688e-10)
(-9.58657e-13 -4.93331e-12 1.02012e-09)
(-1.38509e-12 -8.36545e-12 1.35258e-09)
(-1.09446e-12 -9.65327e-12 1.73001e-09)
(-5.454e-13 1.05091e-09 2.15745e-09)
(-2.45106e-10 2.92895e-07 2.43044e-09)
(-6.91337e-08 0.0036121 -5.51062e-08)
(1.67473e-11 1.34448e-11 -1.64042e-10)
(-3.78802e-12 6.54345e-12 1.13902e-09)
(-6.11894e-12 -3.46417e-12 1.47187e-09)
(-7.55037e-12 -5.95415e-12 1.81218e-09)
(-8.17057e-12 -8.48139e-12 2.16765e-09)
(-7.93447e-12 -1.1101e-11 2.53822e-09)
(-6.80807e-12 -1.22735e-11 2.92399e-09)
(-5.34479e-12 6.27971e-10 3.32339e-09)
(-2.51499e-10 1.75774e-07 3.6177e-09)
(-6.94139e-08 0.00362997 -2.6251e-08)
(-3.23088e-11 1.18109e-12 2.51051e-09)
(-4.17103e-11 2.73065e-12 3.35813e-09)
(-3.96782e-11 -3.1188e-12 3.63453e-09)
(-3.64959e-11 -4.34285e-12 3.88473e-09)
(-3.23399e-11 -5.50857e-12 4.11012e-09)
(-2.73396e-11 -6.63577e-12 4.30893e-09)
(-2.16394e-11 -7.16957e-12 4.47938e-09)
(-1.56858e-11 2.15876e-10 4.61892e-09)
(-1.33483e-10 5.89963e-08 4.67654e-09)
(-3.46167e-08 0.00364803 -2.36827e-09)
(6.83846e-13 2.05346e-12 -1.98904e-11)
(7.38421e-13 3.11062e-12 -2.28821e-11)
(8.90661e-13 4.23595e-12 -3.20204e-11)
(1.07981e-12 5.82715e-12 -4.59856e-11)
(1.30526e-12 8.17742e-12 -6.7418e-11)
(1.55911e-12 1.17701e-11 -1.01083e-10)
(1.83097e-12 2.67515e-11 -1.55921e-10)
(5.01046e-12 4.07426e-09 -2.53491e-10)
(1.2786e-09 1.09639e-06 -3.63343e-09)
(3.4352e-07 0.00349188 -8.05348e-07)
(9.43047e-13 2.21137e-12 -2.33054e-11)
(9.77356e-13 3.25198e-12 -2.49778e-11)
(1.13567e-12 4.30826e-12 -3.38872e-11)
(1.32443e-12 5.75956e-12 -4.70974e-11)
(1.53897e-12 7.83039e-12 -6.66282e-11)
(1.77147e-12 1.08784e-11 -9.60663e-11)
(2.00014e-12 2.39245e-11 -1.41887e-10)
(1.65657e-12 3.68221e-09 -2.20065e-10)
(-2.29237e-10 9.9453e-07 -3.24076e-09)
(-6.32716e-08 0.00350856 -7.40205e-07)
(1.16234e-12 2.36975e-12 -2.7377e-11)
(1.15534e-12 3.38165e-12 -2.69853e-11)
(1.30452e-12 4.34285e-12 -3.52635e-11)
(1.47412e-12 5.62341e-12 -4.70988e-11)
(1.65445e-12 7.38036e-12 -6.38052e-11)
(1.83336e-12 9.85903e-12 -8.77314e-11)
(1.98503e-12 2.09556e-11 -1.2292e-10)
(1.52851e-12 3.27616e-09 -1.80278e-10)
(-2.3581e-10 8.88522e-07 -2.82823e-09)
(-6.50848e-08 0.00352539 -6.73987e-07)
(1.43796e-12 2.49916e-12 -3.17996e-11)
(1.36543e-12 3.46319e-12 -2.81397e-11)
(1.49396e-12 4.29325e-12 -3.50982e-11)
(1.63119e-12 5.3675e-12 -4.46301e-11)
(1.7635e-12 6.77958e-12 -5.73189e-11)
(1.87623e-12 8.68165e-12 -7.43451e-11)
(1.943e-12 1.78819e-11 -9.76374e-11)
(1.38109e-12 2.86434e-09 -1.34353e-10)
(-2.40427e-10 7.7993e-07 -2.49084e-09)
(-6.64783e-08 0.0035424 -6.24445e-07)
(1.78886e-12 2.57321e-12 -3.61529e-11)
(1.61568e-12 3.47313e-12 -2.75188e-11)
(1.70678e-12 4.13374e-12 -3.21976e-11)
(1.79429e-12 4.97196e-12 -3.82602e-11)
(1.86204e-12 6.02207e-12 -4.55953e-11)
(1.89586e-12 7.3679e-12 -5.44124e-11)
(1.87209e-12 1.47567e-11 -6.5e-11)
(1.21224e-12 2.44381e-09 -8.18982e-11)
(-2.47186e-10 6.68409e-07 -2.11877e-09)
(-6.79859e-08 0.00355957 -5.69854e-07)
(2.23485e-12 2.55183e-12 -3.93718e-11)
(1.91248e-12 3.3811e-12 -2.34847e-11)
(1.94231e-12 3.83594e-12 -2.46145e-11)
(1.9579e-12 4.4205e-12 -2.58449e-11)
(1.94302e-12 5.11478e-12 -2.64968e-11)
(1.88639e-12 5.95738e-12 -2.61312e-11)
(1.77019e-12 1.16746e-11 -2.40097e-11)
(1.04657e-12 2.01065e-09 -2.30939e-11)
(-2.55374e-10 5.53855e-07 -1.77157e-09)
(-6.95372e-08 0.00357691 -5.08979e-07)
(2.79652e-12 2.37873e-12 -3.89749e-11)
(2.26196e-12 3.14987e-12 -1.3106e-11)
(2.19776e-12 3.37247e-12 -9.16385e-12)
(2.1145e-12 3.70796e-12 -4.1881e-12)
(1.9971e-12 4.08112e-12 2.87098e-12)
(1.84084e-12 4.50659e-12 1.26671e-11)
(1.63652e-12 8.79559e-12 2.61657e-11)
(7.92127e-13 1.5635e-09 4.19078e-11)
(-2.57157e-10 4.36162e-07 -1.35852e-09)
(-7.11292e-08 0.00359443 -4.40033e-07)
(3.4845e-12 1.98287e-12 -2.91536e-11)
(2.66676e-12 2.73227e-12 9.02e-12)
(2.46668e-12 2.72331e-12 1.93967e-11)
(2.2524e-12 2.84017e-12 3.15554e-11)
(2.01557e-12 2.96274e-12 4.63358e-11)
(1.75688e-12 3.09437e-12 6.42767e-11)
(1.47417e-12 5.91653e-12 8.60639e-11)
(5.41438e-13 1.12599e-09 1.09931e-10)
(-2.55094e-10 3.15239e-07 -9.69172e-10)
(-7.27098e-08 0.00361212 -3.60203e-07)
(4.29866e-12 1.30938e-12 3.89695e-12)
(3.15924e-12 2.06863e-12 5.26957e-11)
(2.76303e-12 1.88066e-12 6.99563e-11)
(2.37994e-12 1.85396e-12 8.85555e-11)
(2.00602e-12 1.8272e-12 1.08913e-10)
(1.64345e-12 1.80184e-12 1.31153e-10)
(1.29191e-12 3.42221e-12 1.55429e-10)
(3.48446e-13 6.87083e-10 1.80077e-10)
(-2.56641e-10 1.91163e-07 -5.79933e-10)
(-7.37186e-08 0.00362998 -2.63512e-07)
(-1.80474e-13 3.11415e-13 1.31398e-10)
(-8.22492e-13 8.97062e-13 1.70627e-10)
(-9.15917e-13 7.04899e-13 1.88273e-10)
(-9.39081e-13 6.48737e-13 2.05091e-10)
(-8.97528e-13 5.97978e-13 2.20915e-10)
(-7.99585e-13 5.5194e-13 2.35609e-10)
(-6.56038e-13 1.11762e-12 2.49044e-10)
(-7.82649e-13 2.455e-10 2.60301e-10)
(-1.29754e-10 6.57688e-08 -9.32394e-11)
(-3.7005e-08 0.00364803 -1.27415e-07)
(2.82891e-13 5.96698e-13 -3.43026e-13)
(3.32502e-13 1.4921e-12 -4.48858e-13)
(3.97958e-13 2.00316e-12 -6.61973e-13)
(4.80436e-13 2.6479e-12 -1.01115e-12)
(5.85271e-13 3.57e-12 -1.59629e-12)
(7.19578e-13 4.94679e-12 -2.63285e-12)
(8.9925e-13 1.79704e-11 -4.44109e-12)
(4.52984e-12 4.40543e-09 -6.33878e-12)
(1.38306e-09 1.19674e-06 -1.61289e-09)
(3.75818e-07 0.00349194 -8.59709e-07)
(4.45508e-13 6.79846e-13 -4.17637e-13)
(4.98951e-13 1.67226e-12 -5.18038e-13)
(5.61669e-13 2.20493e-12 -7.43667e-13)
(6.30126e-13 2.86216e-12 -1.10241e-12)
(7.0138e-13 3.77822e-12 -1.6778e-12)
(7.6879e-13 5.10579e-12 -2.64931e-12)
(8.16111e-13 1.69255e-11 -4.26188e-12)
(1.36711e-13 3.99046e-09 -6.94013e-12)
(-2.52163e-10 1.08758e-06 -1.6507e-09)
(-6.76605e-08 0.00350861 -8.11476e-07)
(5.78448e-13 7.75126e-13 -5.12813e-13)
(6.37545e-13 1.87234e-12 -5.94604e-13)
(7.04715e-13 2.41967e-12 -8.24344e-13)
(7.74667e-13 3.0778e-12 -1.17637e-12)
(8.42642e-13 3.97026e-12 -1.71254e-12)
(8.99677e-13 5.22344e-12 -2.56913e-12)
(9.27117e-13 1.57616e-11 -3.90612e-12)
(2.27197e-13 3.55893e-09 -7.0117e-12)
(-2.53958e-10 9.73954e-07 -1.64468e-09)
(-6.87431e-08 0.00352545 -7.56949e-07)
(7.59612e-13 8.80426e-13 -6.30754e-13)
(8.22389e-13 2.08732e-12 -6.68797e-13)
(8.90918e-13 2.63871e-12 -8.85443e-13)
(9.57995e-13 3.28251e-12 -1.2041e-12)
(1.01651e-12 4.1289e-12 -1.65796e-12)
(1.05551e-12 5.2779e-12 -2.33304e-12)
(1.05431e-12 1.45401e-11 -3.3085e-12)
(3.27941e-13 3.13404e-09 -6.51094e-12)
(-2.53748e-10 8.60405e-07 -1.75992e-09)
(-6.95024e-08 0.00354245 -7.43884e-07)
(1.01564e-12 9.92537e-13 -7.69948e-13)
(1.07716e-12 2.30644e-12 -7.18607e-13)
(1.14086e-12 2.84542e-12 -8.91988e-13)
(1.19684e-12 3.45311e-12 -1.13394e-12)
(1.23583e-12 4.2256e-12 -1.44579e-12)
(1.24537e-12 5.23805e-12 -1.8655e-12)
(1.20345e-12 1.31614e-11 -2.3996e-12)
(4.11675e-13 2.69677e-09 -5.50616e-12)
(-2.59695e-10 7.43135e-07 -1.83494e-09)
(-7.14805e-08 0.00355962 -7.22451e-07)
(1.38524e-12 1.10065e-12 -9.11544e-13)
(1.43478e-12 2.5058e-12 -6.96072e-13)
(1.48157e-12 3.00856e-12 -7.76019e-13)
(1.51199e-12 3.55237e-12 -8.7999e-13)
(1.51568e-12 4.21865e-12 -9.77269e-13)
(1.47881e-12 5.05952e-12 -1.06077e-12)
(1.37986e-12 1.15638e-11 -1.09451e-12)
(4.7671e-13 2.24598e-09 -3.87165e-12)
(-2.66646e-10 6.21834e-07 -1.88007e-09)
(-7.36576e-08 0.00357695 -6.89506e-07)
(1.93184e-12 1.18249e-12 -9.88846e-13)
(1.9476e-12 2.6373e-12 -4.9305e-13)
(1.95422e-12 3.07167e-12 -4.05721e-13)
(1.93374e-12 3.51804e-12 -2.90584e-13)
(1.87564e-12 4.04294e-12 -8.19813e-14)
(1.76702e-12 4.67958e-12 2.34662e-13)
(1.58841e-12 9.61011e-12 7.15959e-13)
(6.30177e-13 1.77942e-09 -1.09984e-12)
(-2.72989e-10 4.96097e-07 -1.87049e-09)
(-7.6115e-08 0.00359446 -6.40222e-07)
(2.76313e-12 1.19116e-12 -8.06247e-13)
(2.70119e-12 2.60476e-12 1.28104e-13)
(2.62217e-12 2.93077e-12 4.86426e-13)
(2.50671e-12 3.24256e-12 9.08512e-13)
(2.34534e-12 3.59545e-12 1.46269e-12)
(2.12755e-12 4.00657e-12 2.1828e-12)
(1.83837e-12 7.57728e-12 3.0983e-12)
(8.13139e-13 1.30181e-09 1.32099e-12)
(-2.79999e-10 3.6535e-07 -1.65444e-09)
(-7.9007e-08 0.00361214 -5.66681e-07)
(3.93623e-12 1.02778e-12 4.48803e-13)
(3.79252e-12 2.21465e-12 1.71614e-12)
(3.55449e-12 2.39525e-12 2.39791e-12)
(3.26673e-12 2.55109e-12 3.164e-12)
(2.93413e-12 2.71946e-12 4.04343e-12)
(2.55106e-12 2.90902e-12 5.04402e-12)
(2.10823e-12 5.03273e-12 6.16645e-12)
(9.0814e-13 8.08872e-10 5.05458e-12)
(-2.89248e-10 2.28701e-07 -1.28142e-09)
(-8.26565e-08 0.00363 -4.49945e-07)
(5.13666e-13 4.63419e-13 5.75256e-11)
(1.94523e-12 1.34722e-12 1.37308e-11)
(1.97171e-12 1.15042e-12 7.79172e-12)
(1.77863e-12 1.13531e-12 8.24821e-12)
(1.56015e-12 1.15741e-12 9.03577e-12)
(1.3238e-12 1.18479e-12 9.80303e-12)
(1.06645e-12 1.92473e-12 1.05218e-11)
(4.38561e-13 2.99282e-10 9.71352e-12)
(-1.4716e-10 8.4571e-08 -6.66205e-10)
(-4.23594e-08 0.00364804 -2.34113e-07)
(2.80099e-13 5.86102e-13 -1.49444e-13)
(3.28997e-13 1.4838e-12 -1.88834e-13)
(3.92134e-13 1.98562e-12 -2.37741e-13)
(4.71369e-13 2.61327e-12 -3.16041e-13)
(5.71488e-13 3.50213e-12 -4.24424e-13)
(6.99058e-13 4.80976e-12 -5.87467e-13)
(8.67515e-13 1.57259e-11 -6.8091e-13)
(3.46179e-12 4.406e-09 5.16483e-11)
(1.32492e-09 1.26978e-06 1.02414e-08)
(3.97411e-07 0.00349178 7.2215e-07)
(4.39159e-13 6.65124e-13 -1.5703e-13)
(4.91642e-13 1.66004e-12 -1.96638e-13)
(5.50918e-13 2.18322e-12 -2.40972e-13)
(6.15065e-13 2.82352e-12 -3.14135e-13)
(6.79961e-13 3.7084e-12 -4.09657e-13)
(7.38566e-13 4.97683e-12 -5.48003e-13)
(7.74121e-13 1.52252e-11 -6.33979e-13)
(-7.09821e-14 4.0244e-09 4.38576e-11)
(-2.97535e-10 1.15812e-06 8.84833e-09)
(-7.24767e-08 0.00350849 6.4084e-07)
(5.69531e-13 7.55402e-13 -1.64275e-13)
(6.28372e-13 1.85623e-12 -2.03e-13)
(6.91952e-13 2.39489e-12 -2.42453e-13)
(7.57635e-13 3.03752e-12 -3.06637e-13)
(8.19611e-13 3.90304e-12 -3.87072e-13)
(8.6898e-13 5.10994e-12 -5.01117e-13)
(8.86783e-13 1.45529e-11 -5.77001e-13)
(4.98081e-14 3.61889e-09 3.48202e-11)
(-2.88681e-10 1.04105e-06 7.37343e-09)
(-7.18477e-08 0.00352535 5.64047e-07)
(7.47578e-13 8.56305e-13 -1.70601e-13)
(8.11469e-13 2.06903e-12 -2.10607e-13)
(8.76548e-13 2.61312e-12 -2.40917e-13)
(9.39657e-13 3.24424e-12 -2.95364e-13)
(9.93057e-13 4.06962e-12 -3.55809e-13)
(1.02609e-12 5.18715e-12 -4.46425e-13)
(1.01764e-12 1.37086e-11 -4.93276e-13)
(1.49673e-13 3.23286e-09 3.01532e-11)
(-2.8127e-10 9.29737e-07 6.43156e-09)
(-7.09022e-08 0.00354238 4.5718e-07)
(9.99977e-13 9.64314e-13 -1.78615e-13)
(1.06508e-12 2.28812e-12 -2.20716e-13)
(1.12571e-12 2.82221e-12 -2.36652e-13)
(1.17849e-12 3.42159e-12 -2.73915e-13)
(1.21399e-12 4.18144e-12 -3.14001e-13)
(1.21969e-12 5.17767e-12 -3.77078e-13)
(1.17341e-12 1.26791e-11 -3.95108e-13)
(2.70776e-13 2.82852e-09 2.52602e-11)
(-2.85281e-10 8.138e-07 5.41521e-09)
(-7.32809e-08 0.00355957 3.4252e-07)
(1.36568e-12 1.07069e-12 -1.8645e-13)
(1.42358e-12 2.49096e-12 -2.40162e-13)
(1.46789e-12 2.99215e-12 -2.27749e-13)
(1.49658e-12 3.53376e-12 -2.43078e-13)
(1.49819e-12 4.19609e-12 -2.58593e-13)
(1.45977e-12 5.0351e-12 -2.90223e-13)
(1.35894e-12 1.14166e-11 -2.80866e-13)
(4.08342e-13 2.40432e-09 1.93447e-11)
(-2.90277e-10 6.9251e-07 4.20493e-09)
(-7.61389e-08 0.00357693 2.21119e-07)
(1.91015e-12 1.15505e-12 -1.97954e-13)
(1.94231e-12 2.63147e-12 -2.87585e-13)
(1.94647e-12 3.06695e-12 -2.13561e-13)
(1.92619e-12 3.51554e-12 -1.9539e-13)
(1.86906e-12 4.04432e-12 -1.80236e-13)
(1.76144e-12 4.69159e-12 -1.76175e-13)
(1.5831e-12 9.82847e-12 -1.4166e-13)
(5.64471e-13 1.9537e-09 1.32504e-11)
(-2.98137e-10 5.64798e-07 2.83444e-09)
(-7.97501e-08 0.00359446 9.54546e-08)
(2.73047e-12 1.17223e-12 -2.04975e-13)
(2.71244e-12 2.61198e-12 -4.21283e-13)
(2.63134e-12 2.94043e-12 -1.95416e-13)
(2.5176e-12 3.26304e-12 -1.21922e-13)
(2.35941e-12 3.62532e-12 -7.91049e-14)
(2.14393e-12 4.05152e-12 -4.44062e-14)
(1.8551e-12 7.85366e-12 4.44731e-15)
(7.27212e-13 1.46919e-09 8.21449e-12)
(-3.08699e-10 4.28976e-07 1.62519e-09)
(-8.48885e-08 0.00361215 -2.95522e-08)
(6.60849e-13 9.52413e-13 5.59631e-12)
(3.40768e-12 2.27645e-12 -9.10467e-14)
(3.57571e-12 2.42311e-12 -1.53154e-13)
(3.31112e-12 2.58473e-12 -1.81338e-14)
(2.98112e-12 2.76271e-12 6.05435e-14)
(2.59777e-12 2.96563e-12 1.2562e-13)
(2.15123e-12 5.32802e-12 1.75224e-13)
(8.93052e-13 9.51288e-10 2.57414e-12)
(-3.25002e-10 2.81357e-07 6.095e-10)
(-9.3835e-08 0.00363002 -1.27167e-07)
(-5.87781e-11 -3.6843e-13 1.48873e-09)
(-5.63803e-12 1.05312e-11 2.15679e-10)
(1.70276e-12 2.5342e-12 1.33374e-11)
(1.90695e-12 1.23235e-12 7.20107e-13)
(1.68994e-12 1.18708e-12 3.02425e-13)
(1.43749e-12 1.2173e-12 3.59653e-13)
(1.16013e-12 2.15881e-12 3.89962e-13)
(5.11917e-13 3.82724e-10 -2.0756e-12)
(-1.69451e-10 1.1263e-07 1.62481e-10)
(-4.99336e-08 0.00364805 -8.29295e-08)
(2.85285e-13 6.03695e-13 -2.10973e-13)
(3.37113e-13 1.51969e-12 -3.24313e-13)
(3.96774e-13 2.01548e-12 -3.01941e-13)
(4.74126e-13 2.64321e-12 -3.26883e-13)
(5.72406e-13 3.53419e-12 -3.85909e-13)
(6.98468e-13 4.81277e-12 -4.90016e-13)
(8.53825e-13 4.95332e-12 -3.9719e-13)
(-5.93246e-13 2.10618e-09 1.21224e-10)
(3.89316e-10 1.04279e-06 4.49626e-08)
(3.12759e-07 0.00349069 7.24272e-06)
(4.42982e-13 6.82583e-13 -2.28031e-13)
(5.00006e-13 1.69976e-12 -3.87722e-13)
(5.53658e-13 2.21013e-12 -3.14996e-13)
(6.14197e-13 2.84695e-12 -3.13216e-13)
(6.76098e-13 3.72989e-12 -3.4876e-13)
(7.31361e-13 4.97365e-12 -4.24311e-13)
(7.65048e-13 6.03951e-12 -2.81099e-13)
(1.69812e-13 2.0261e-09 1.11123e-10)
(-3.32662e-10 9.51769e-07 4.06254e-08)
(-7.46797e-08 0.00350756 6.83747e-06)
(5.74029e-13 7.73094e-13 -2.52483e-13)
(6.40688e-13 1.90335e-12 -4.9285e-13)
(6.95101e-13 2.41885e-12 -3.33352e-13)
(7.56061e-13 3.05391e-12 -2.95026e-13)
(8.1454e-13 3.91486e-12 -3.01225e-13)
(8.60937e-13 5.10068e-12 -3.40424e-13)
(8.75877e-13 7.24407e-12 -1.76893e-13)
(1.78115e-13 1.94095e-09 9.49556e-11)
(-3.25333e-10 8.55386e-07 3.4344e-08)
(-7.31323e-08 0.00352457 6.3624e-06)
(7.53505e-13 8.75349e-13 -2.91313e-13)
(8.31197e-13 2.12806e-12 -6.77092e-13)
(8.80584e-13 2.63452e-12 -3.64871e-13)
(9.3712e-13 3.25328e-12 -2.68742e-13)
(9.86524e-13 4.07222e-12 -2.3503e-13)
(1.01662e-12 5.16934e-12 -2.32372e-13)
(1.00523e-12 7.32556e-12 -6.80181e-14)
(1.22974e-14 1.73885e-09 8.96067e-11)
(-3.48511e-10 7.64417e-07 3.2635e-08)
(-7.15179e-08 0.0035417 6.27982e-06)
(1.00871e-12 9.86202e-13 -3.61417e-13)
(1.09921e-12 2.3669e-12 -1.02085e-12)
(1.13199e-12 2.84068e-12 -4.25053e-13)
(1.17504e-12 3.42323e-12 -2.33575e-13)
(1.20578e-12 4.17511e-12 -1.45947e-13)
(1.2083e-12 5.15232e-12 -9.5472e-14)
(1.16071e-12 7.2701e-12 4.45566e-14)
(2.14528e-13 1.53555e-09 8.4102e-11)
(-3.31299e-10 6.71147e-07 3.10831e-08)
(-7.24247e-08 0.003559 6.14083e-06)
(1.38033e-12 1.09845e-12 -4.93992e-13)
(1.4872e-12 2.6029e-12 -1.70407e-12)
(1.47917e-12 3.00774e-12 -5.52846e-13)
(1.49232e-12 3.52791e-12 -1.90622e-13)
(1.48835e-12 4.18125e-12 -2.76828e-14)
(1.44674e-12 5.00434e-12 7.58841e-14)
(1.3466e-12 7.18112e-12 1.86275e-13)
(4.36694e-13 1.35473e-09 7.50214e-11)
(-3.10325e-10 5.75067e-07 2.95227e-08)
(-7.35535e-08 0.00357647 5.92255e-06)
(1.93477e-12 1.19094e-12 -7.24636e-13)
(2.07079e-12 2.79678e-12 -3.1642e-12)
(1.96941e-12 3.07575e-12 -8.31602e-13)
(1.92175e-12 3.50367e-12 -1.44962e-13)
(1.85684e-12 4.02463e-12 1.24529e-13)
(1.74611e-12 4.65975e-12 2.80179e-13)
(1.57073e-12 6.72336e-12 3.25046e-13)
(6.99454e-13 1.18581e-09 5.91006e-11)
(-3.09191e-10 4.75284e-07 2.76775e-08)
(-7.51166e-08 0.00359412 5.58789e-06)
(2.40751e-12 1.22252e-12 -1.11167e-12)
(2.94511e-12 2.86026e-12 -6.44978e-12)
(2.67862e-12 2.92726e-12 -1.48465e-12)
(2.5144e-12 3.24103e-12 -1.21174e-13)
(2.34369e-12 3.59988e-12 3.31462e-13)
(2.12485e-12 4.02004e-12 5.48349e-13)
(1.842e-12 5.89294e-12 4.90333e-13)
(1.10252e-12 9.65828e-10 3.59371e-11)
(-3.22472e-10 3.70253e-07 2.48628e-08)
(-7.85263e-08 0.00361193 5.07017e-06)
(-8.97303e-11 -1.81938e-13 1.00199e-10)
(-9.06733e-12 3.57224e-12 -5.65712e-13)
(2.8671e-12 2.46175e-12 -1.97259e-12)
(3.27901e-12 2.55376e-12 -1.04457e-13)
(2.96072e-12 2.73508e-12 5.99688e-13)
(2.57467e-12 2.93976e-12 8.9617e-13)
(2.13797e-12 4.60463e-12 6.71212e-13)
(1.60248e-12 6.84972e-10 -1.33876e-12)
(-3.51407e-10 2.53679e-07 2.0793e-08)
(-9.01525e-08 0.0036299 4.22499e-06)
(-1.54364e-09 7.13174e-12 3.26572e-08)
(-2.16983e-10 2.69763e-10 5.16896e-09)
(-1.18331e-11 4.30968e-11 3.73765e-10)
(1.38174e-12 3.75297e-12 1.67215e-11)
(1.6544e-12 1.26639e-12 1.47614e-12)
(1.41269e-12 1.20642e-12 1.31543e-12)
(1.14792e-12 2.46348e-12 9.11091e-13)
(1.46693e-12 2.67182e-10 -5.75426e-11)
(-2.22374e-10 1.01053e-07 1.41077e-08)
(-5.19616e-08 0.00364802 2.79807e-06)
(3.5621e-13 8.4541e-13 -1.50915e-12)
(5.12816e-13 2.15383e-12 -3.93974e-12)
(4.3933e-13 2.1595e-12 -1.27783e-12)
(4.67447e-13 2.60333e-12 -1.07546e-13)
(5.39355e-13 3.35324e-12 7.43324e-13)
(6.46919e-13 4.4427e-12 1.63964e-12)
(7.75662e-13 -1.42938e-11 2.95626e-12)
(-5.30495e-12 -5.60142e-09 1.49974e-11)
(-2.03415e-09 -2.11175e-07 4.48836e-08)
(-1.25114e-07 0.00348807 1.87493e-05)
(5.23462e-13 9.38688e-13 -1.77015e-12)
(7.435e-13 2.49444e-12 -5.48355e-12)
(6.08497e-13 2.36751e-12 -1.64029e-12)
(6.0244e-13 2.78987e-12 -3.08666e-14)
(6.30444e-13 3.51814e-12 1.06162e-12)
(6.63687e-13 4.55991e-12 2.12818e-12)
(6.82991e-13 -1.18547e-11 3.49238e-12)
(2.13934e-12 -4.9239e-09 3.99601e-11)
(1.89891e-10 -2.3715e-07 4.64646e-08)
(-5.91419e-08 0.00350523 1.80452e-05)
(6.82551e-13 1.07295e-12 -2.31609e-12)
(9.99881e-13 2.92314e-12 -7.94711e-12)
(7.73284e-13 2.59179e-12 -2.20749e-12)
(7.41519e-13 2.97895e-12 5.36204e-14)
(7.56889e-13 3.66788e-12 1.47372e-12)
(7.77855e-13 4.64945e-12 2.74689e-12)
(7.88725e-13 -8.23791e-12 3.99481e-12)
(1.68587e-12 -3.86465e-09 4.64225e-11)
(-2.6384e-11 -2.54962e-07 4.98585e-08)
(-7.61791e-08 0.00352257 1.70433e-05)
(9.18627e-13 1.26737e-12 -3.41011e-12)
(1.38085e-12 3.46165e-12 -1.19701e-11)
(9.98101e-13 2.82282e-12 -3.14556e-12)
(9.19482e-13 3.15494e-12 1.51582e-13)
(9.13039e-13 3.78713e-12 2.00986e-12)
(9.14464e-13 4.68956e-12 3.53251e-12)
(9.13665e-13 -7.37192e-12 4.39732e-12)
(1.58152e-12 -3.79417e-09 -2.15092e-12)
(-3.87972e-10 -3.46885e-07 5.51368e-08)
(-9.81074e-08 0.00353982 1.7751e-05)
(1.26987e-12 1.51304e-12 -5.25368e-12)
(1.97589e-12 4.1387e-12 -1.88055e-11)
(1.31815e-12 3.03559e-12 -4.76239e-12)
(1.15472e-12 3.29372e-12 2.4994e-13)
(1.11183e-12 3.85118e-12 2.70892e-12)
(1.08268e-12 4.65561e-12 4.52298e-12)
(1.06343e-12 -6.67841e-12 4.72809e-12)
(2.97263e-12 -3.78212e-09 -8.6047e-11)
(-4.56547e-10 -4.31969e-07 6.04938e-08)
(-9.4733e-08 0.00355725 1.85241e-05)
(1.7992e-12 1.80277e-12 -8.31599e-12)
(2.95299e-12 4.98367e-12 -3.09516e-11)
(1.7908e-12 3.1729e-12 -7.68462e-12)
(1.47151e-12 3.3524e-12 3.0728e-13)
(1.36749e-12 3.82013e-12 3.62982e-12)
(1.29122e-12 4.50061e-12 5.79586e-12)
(1.24462e-12 -5.46178e-12 5.01286e-12)
(5.33396e-12 -3.79544e-09 -2.11628e-10)
(-5.02938e-10 -5.06427e-07 6.6313e-08)
(-8.86029e-08 0.00357488 1.93742e-05)
(2.60992e-12 2.12257e-12 -1.33458e-11)
(4.65852e-12 6.01568e-12 -5.38165e-11)
(2.52377e-12 3.09859e-12 -1.32696e-11)
(1.90713e-12 3.25134e-12 2.26336e-13)
(1.70058e-12 3.63134e-12 4.84973e-12)
(1.55158e-12 4.17369e-12 7.44317e-12)
(1.4653e-12 -3.16548e-12 5.29146e-12)
(8.59632e-12 -3.78462e-09 -3.90448e-10)
(-4.99917e-10 -5.63929e-07 7.2714e-08)
(-7.75164e-08 0.00359272 2.03237e-05)
(-2.69891e-12 2.56443e-12 -2.38578e-11)
(6.96918e-12 7.15238e-12 -9.97925e-11)
(3.66677e-12 2.49508e-12 -2.46682e-11)
(2.51836e-12 2.83932e-12 -2.25345e-13)
(2.14094e-12 3.18255e-12 6.47687e-12)
(1.87887e-12 3.58932e-12 9.59801e-12)
(1.73187e-12 1.46304e-13 5.62336e-12)
(1.32002e-11 -3.62016e-09 -6.41574e-10)
(-4.47147e-10 -5.92838e-07 7.95316e-08)
(-5.62494e-08 0.00361076 2.14596e-05)
(-2.00049e-09 -2.12432e-12 8.91459e-10)
(-3.04913e-10 2.64188e-11 -2.63139e-11)
(-1.76874e-11 3.09434e-12 -2.89365e-11)
(2.32978e-12 2.03238e-12 -6.75327e-13)
(2.66462e-12 2.31617e-12 8.69422e-12)
(2.26252e-12 2.62266e-12 1.24421e-11)
(2.02118e-12 5.63963e-12 5.9613e-12)
(1.94166e-11 -3.25407e-09 -9.6996e-10)
(-3.1172e-10 -5.68059e-07 8.67437e-08)
(-1.61837e-08 0.00362905 2.27595e-05)
(-2.711e-08 1.27823e-09 5.01402e-07)
(-4.46459e-09 5.95567e-09 9.25698e-08)
(-3.45496e-10 1.00493e-09 8.20303e-09)
(-1.3296e-11 7.48972e-11 4.13801e-10)
(9.42259e-13 4.16111e-12 2.42593e-11)
(1.02936e-12 1.18974e-12 1.65439e-11)
(1.03756e-12 1.4008e-11 6.26762e-12)
(2.22302e-11 -2.44264e-09 -1.39386e-09)
(-4.89501e-10 -4.48298e-07 9.44401e-08)
(-2.76057e-08 0.0036476 2.41242e-05)
(1.85727e-12 5.76886e-12 -2.65369e-11)
(3.02462e-12 1.04532e-11 -4.8189e-11)
(8.9468e-13 2.61647e-12 -1.08718e-11)
(3.6856e-13 1.54658e-12 2.02286e-12)
(2.18246e-13 1.21948e-12 9.33787e-12)
(2.05027e-13 1.18974e-12 1.59433e-11)
(2.28336e-13 -3.11671e-12 2.57466e-11)
(2.70288e-12 -7.80968e-09 -3.20131e-10)
(-2.21347e-09 -2.75847e-06 -6.35889e-08)
(-9.43791e-07 0.00348863 7.88148e-06)
(2.30204e-12 6.32717e-12 -3.24592e-11)
(3.94513e-12 1.21788e-11 -6.2814e-11)
(1.22921e-12 2.63458e-12 -1.4021e-11)
(4.91642e-13 1.51585e-12 2.59269e-12)
(2.53142e-13 1.2018e-12 1.12103e-11)
(1.61231e-13 1.22148e-12 1.84941e-11)
(1.74385e-13 -7.21786e-12 2.56849e-11)
(1.78049e-12 -8.16298e-09 -1.74643e-10)
(-2.11364e-10 -2.71005e-06 -8.52892e-09)
(3.68522e-08 0.00350557 7.79352e-06)
(3.07099e-12 7.32097e-12 -4.26677e-11)
(5.31323e-12 1.42678e-11 -8.38804e-11)
(1.61864e-12 2.52381e-12 -1.87401e-11)
(6.0876e-13 1.42552e-12 3.24607e-12)
(3.05899e-13 1.15511e-12 1.35329e-11)
(1.95706e-13 1.27842e-12 2.15634e-11)
(3.31884e-13 -6.44495e-12 2.42188e-11)
(4.7283e-12 -8.90256e-09 -3.62707e-11)
(-1.03547e-09 -2.60653e-06 5.54062e-08)
(-4.92755e-08 0.00352268 7.78676e-06)
(4.18681e-12 8.64744e-12 -5.77576e-11)
(7.3451e-12 1.67512e-11 -1.14865e-10)
(2.19259e-12 2.14874e-12 -2.59568e-11)
(7.64125e-13 1.2283e-12 3.95196e-12)
(3.71447e-13 1.07001e-12 1.64212e-11)
(2.38397e-13 1.37819e-12 2.52207e-11)
(5.43533e-13 6.01445e-12 2.11147e-11)
(8.8595e-12 -1.01384e-08 7.18561e-11)
(-1.75297e-09 -2.84187e-06 1.20748e-07)
(-1.56691e-07 0.00353976 8.13898e-06)
(5.91028e-12 1.05589e-11 -8.18311e-11)
(1.04758e-11 1.97248e-11 -1.61789e-10)
(3.0754e-12 1.24582e-12 -3.73941e-11)
(9.81505e-13 8.35816e-13 4.64222e-12)
(4.57308e-13 9.26054e-13 2.0036e-11)
(2.89934e-13 1.49464e-12 2.97443e-11)
(8.22387e-13 2.59767e-11 1.57784e-11)
(1.24123e-11 -1.13598e-08 1.51342e-10)
(-2.38043e-09 -3.09026e-06 1.91541e-07)
(-1.66627e-07 0.00355701 8.57291e-06)
(8.69634e-12 1.31866e-11 -1.21843e-10)
(1.55058e-11 2.32094e-11 -2.35261e-10)
(4.49772e-12 -7.17549e-13 -5.62806e-11)
(1.29464e-12 7.80281e-14 5.15729e-12)
(5.71178e-13 6.79677e-13 2.45995e-11)
(3.5417e-13 1.6196e-12 3.53094e-11)
(1.18668e-12 5.44199e-11 7.53705e-12)
(1.71224e-11 -1.26253e-08 2.02136e-10)
(-3.09008e-09 -3.3543e-06 2.68702e-07)
(-1.79136e-07 0.00357443 9.11225e-06)
(1.37227e-11 1.69527e-11 -1.94346e-10)
(2.40284e-11 2.71228e-11 -3.55358e-10)
(6.92932e-12 -4.90576e-12 -8.91395e-11)
(1.76212e-12 -1.38792e-12 5.09872e-12)
(7.2498e-13 2.63646e-13 3.04037e-11)
(4.35511e-13 1.72759e-12 4.22233e-11)
(1.65971e-12 9.28466e-11 -4.45873e-12)
(2.37794e-11 -1.39684e-08 2.15781e-10)
(-3.88062e-09 -3.639e-06 3.53248e-07)
(-1.99175e-07 0.00359202 9.84045e-06)
(-3.8222e-11 2.27117e-11 -3.38456e-10)
(2.81555e-11 3.04427e-11 -5.62038e-10)
(1.00539e-11 -1.39923e-11 -1.49823e-10)
(2.43894e-12 -4.29905e-12 3.43576e-12)
(9.34846e-13 -4.42553e-13 3.78424e-11)
(5.38681e-13 1.78027e-12 5.09116e-11)
(2.28056e-12 1.44432e-10 -2.13526e-11)
(3.27027e-11 -1.54132e-08 1.36981e-10)
(-4.78018e-09 -3.96307e-06 4.49476e-07)
(-2.27654e-07 0.00360974 1.14826e-05)
(-2.99037e-08 3.08215e-10 -3.99287e-09)
(-5.55815e-09 2.10131e-10 1.47143e-10)
(-4.83255e-10 7.61928e-14 -1.16595e-10)
(-2.15347e-11 -5.91387e-12 4.10864e-12)
(4.40123e-13 -1.4673e-12 4.76868e-11)
(6.19183e-13 1.75575e-12 6.19144e-11)
(3.05595e-12 2.08937e-10 -4.42718e-11)
(4.3062e-11 -1.69686e-08 -1.27102e-12)
(-5.7823e-09 -4.32731e-06 5.54508e-07)
(-2.58171e-07 0.00362768 1.33725e-05)
(-2.35564e-07 4.93769e-08 3.6923e-06)
(-4.55804e-08 9.58144e-08 8.03492e-07)
(-3.58856e-09 1.85902e-08 7.04898e-08)
(-1.62574e-10 1.66723e-09 3.66891e-09)
(-4.67878e-12 8.17913e-11 1.705e-10)
(-7.95334e-13 4.16329e-12 7.77948e-11)
(2.71209e-12 2.88412e-10 -7.50076e-11)
(2.59701e-11 -1.8729e-08 -2.12742e-10)
(-6.3528e-09 -4.7356e-06 6.70867e-07)
(-1.59259e-07 0.00364585 1.58137e-05)
(8.19599e-12 6.16129e-12 -9.86618e-11)
(5.31767e-12 3.10194e-12 -3.7504e-11)
(2.41632e-12 -9.23367e-12 -3.73838e-11)
(3.44886e-13 -4.68468e-12 -2.04177e-12)
(-1.66182e-13 -3.91182e-12 9.78185e-12)
(-3.32012e-13 -5.30372e-12 1.60732e-11)
(-1.60228e-12 1.19826e-10 8.17338e-11)
(-9.26201e-11 2.72337e-08 7.89431e-09)
(2.50368e-09 -5.97061e-07 -7.69548e-08)
(-2.00736e-07 0.00398269 -4.4458e-06)
(7.68025e-12 8.44836e-12 -1.03088e-10)
(5.55104e-12 3.39099e-12 -4.63164e-11)
(3.56505e-12 -1.23497e-11 -4.99944e-11)
(6.60357e-13 -5.91268e-12 -3.58116e-12)
(-8.36361e-14 -4.44097e-12 1.11822e-11)
(-3.35912e-13 -4.35779e-12 1.92331e-11)
(-9.50681e-15 6.40912e-11 5.28474e-11)
(-4.67271e-11 2.56489e-09 9.67912e-10)
(-1.44735e-08 -6.96985e-07 -3.09391e-08)
(-6.4121e-08 0.0039925 -4.14191e-06)
(8.80804e-12 1.17029e-11 -1.08842e-10)
(7.47268e-12 3.39486e-12 -6.03383e-11)
(4.89219e-12 -1.68435e-11 -6.8539e-11)
(9.07463e-13 -7.6495e-12 -6.15507e-12)
(-7.48084e-14 -5.1001e-12 1.28016e-11)
(-4.06717e-13 -2.6631e-12 2.34701e-11)
(1.1029e-12 1.02666e-11 2.1335e-11)
(7.58379e-11 -2.51277e-08 -7.32154e-09)
(-1.6033e-08 -8.95631e-07 5.54535e-09)
(-5.95491e-08 0.00400266 -3.73969e-06)
(1.01987e-11 1.65178e-11 -1.14109e-10)
(1.02995e-11 3.19498e-12 -8.06537e-11)
(6.88044e-12 -2.34683e-11 -9.63171e-11)
(1.27716e-12 -1.01623e-11 -1.04466e-11)
(-5.74119e-14 -5.92123e-12 1.46725e-11)
(-5.11889e-13 -1.0256e-13 2.90083e-11)
(2.41227e-12 -4.56877e-11 -1.55117e-11)
(2.15462e-10 -5.51684e-08 -1.68179e-08)
(-1.76814e-08 -9.7322e-07 6.31772e-08)
(-2.54447e-08 0.0040134 -4.17007e-06)
(1.22963e-11 2.37564e-11 -1.19497e-10)
(1.46577e-11 2.41587e-12 -1.11861e-10)
(9.97084e-12 -3.3533e-11 -1.39107e-10)
(1.84989e-12 -1.39365e-11 -1.77175e-11)
(-2.12807e-14 -7.03183e-12 1.67353e-11)
(-6.60044e-13 3.61208e-12 3.63224e-11)
(3.91174e-12 -9.6723e-11 -5.46967e-11)
(3.76853e-10 -8.8077e-08 -2.77889e-08)
(-1.95875e-08 -1.05091e-06 1.30174e-07)
(-2.55279e-08 0.00402451 -4.21295e-06)
(1.56591e-11 3.50811e-11 -1.23629e-10)
(2.16644e-11 4.30229e-13 -1.61541e-10)
(1.49731e-11 -4.93541e-11 -2.07221e-10)
(2.77216e-12 -1.98601e-11 -3.03324e-11)
(4.51665e-14 -8.54802e-12 1.89437e-11)
(-8.48298e-13 8.8163e-12 4.58913e-11)
(5.64723e-12 -1.43302e-10 -9.71646e-11)
(5.60996e-10 -1.242e-07 -4.04119e-08)
(-2.16848e-08 -1.12608e-06 2.04647e-07)
(-2.99373e-08 0.00403604 -4.3374e-06)
(2.17235e-11 5.35081e-11 -1.2479e-10)
(3.36421e-11 -4.51851e-12 -2.46714e-10)
(2.34856e-11 -7.53289e-11 -3.20369e-10)
(4.34189e-12 -2.96733e-11 -5.30942e-11)
(1.6577e-13 -1.07168e-11 2.10742e-11)
(-1.09904e-12 1.59513e-11 5.83976e-11)
(7.67019e-12 -1.83033e-10 -1.42962e-10)
(7.76298e-10 -1.63926e-07 -5.49011e-08)
(-2.43324e-08 -1.21717e-06 2.84191e-07)
(-1.24995e-07 0.00404798 -4.57068e-06)
(1.90806e-10 8.29897e-11 -1.35865e-10)
(-1.30927e-11 -1.70432e-11 -4.06695e-10)
(2.78711e-11 -1.20221e-10 -5.17844e-10)
(6.66567e-12 -4.69751e-11 -9.62101e-11)
(3.65856e-13 -1.40303e-11 2.25016e-11)
(-1.42818e-12 2.55871e-11 7.47208e-11)
(9.86183e-12 -1.95656e-10 -1.85296e-10)
(1.03074e-09 -2.0907e-07 -7.21534e-08)
(-2.6558e-08 -1.64424e-06 3.16916e-07)
(-1.92643e-07 0.00406017 -5.1142e-06)
(-1.7431e-07 -6.92549e-10 -1.04089e-08)
(-4.58174e-08 -6.38979e-10 -4.42177e-09)
(-4.71881e-09 3.15274e-11 8.28875e-11)
(-2.723e-10 -4.17255e-11 -7.78398e-11)
(-8.79097e-12 -1.76771e-11 2.5158e-11)
(-2.05211e-12 3.83567e-11 9.59969e-11)
(1.23468e-11 -1.95421e-10 -2.29599e-10)
(1.31161e-09 -2.58164e-07 -9.16294e-08)
(-2.86022e-08 -1.99195e-06 3.69311e-07)
(-1.59428e-07 0.00407281 -5.71629e-06)
(-1.40198e-07 -1.46501e-08 -4.87689e-07)
(-2.87598e-07 6.74005e-07 4.55661e-06)
(-3.92589e-08 1.72826e-07 7.25981e-07)
(-2.34027e-09 1.73218e-08 4.90898e-08)
(-8.22839e-11 9.91472e-10 2.02592e-09)
(-4.46125e-12 8.88784e-11 1.70127e-10)
(9.72581e-12 -1.78272e-10 -2.74992e-10)
(1.61681e-09 -3.11789e-07 -1.13754e-07)
(-1.67105e-08 -2.30265e-06 4.35703e-07)
(-6.3473e-08 0.0040859 -6.4099e-06)
(2.09469e-12 3.28567e-12 1.34766e-11)
(1.79174e-12 -1.47813e-11 4.18508e-12)
(9.19608e-13 -1.20771e-11 -1.1752e-11)
(1.70698e-13 -4.84794e-12 -7.64396e-13)
(-2.20709e-15 -2.72618e-12 1.75004e-12)
(-9.10258e-14 9.08793e-13 4.0872e-12)
(2.03952e-12 -2.89128e-11 -2.10633e-11)
(1.40081e-10 -3.40416e-08 -8.42483e-09)
(-1.83727e-08 -1.15194e-06 1.80335e-08)
(-3.4844e-07 0.00439306 3.94515e-07)
(1.22947e-12 5.37848e-12 2.00651e-11)
(1.93077e-12 -1.80081e-11 6.96956e-12)
(1.54182e-12 -1.51617e-11 -1.54252e-11)
(4.00654e-13 -5.7788e-12 -1.38408e-12)
(1.00827e-13 -3.08345e-12 1.76147e-12)
(-9.36228e-14 3.85025e-12 6.27763e-12)
(4.34515e-12 -1.84322e-10 -9.6777e-11)
(3.36528e-10 -7.31605e-08 -1.93879e-08)
(-1.89625e-08 -1.26265e-06 2.10477e-08)
(-2.90497e-08 0.00442026 3.24395e-07)
(1.81055e-12 7.2035e-12 2.71334e-11)
(2.56593e-12 -2.25783e-11 1.05151e-11)
(2.03885e-12 -1.94747e-11 -2.06071e-11)
(5.2898e-13 -7.03586e-12 -2.31733e-12)
(1.3905e-13 -3.54459e-12 1.72519e-12)
(-1.71429e-13 8.14195e-12 9.52223e-12)
(7.44962e-12 -3.65716e-10 -1.89935e-10)
(5.90441e-10 -1.16555e-07 -3.21817e-08)
(-2.09136e-08 -1.2851e-06 4.13665e-08)
(-8.13951e-09 0.00444826 6.00995e-07)
(2.80567e-12 9.64102e-12 3.56569e-11)
(3.54562e-12 -2.90901e-11 1.52096e-11)
(2.7456e-12 -2.56627e-11 -2.81396e-11)
(7.03e-13 -8.75672e-12 -3.701e-12)
(1.87321e-13 -4.14929e-12 1.61661e-12)
(-2.94511e-13 1.43411e-11 1.43027e-11)
(1.13027e-11 -5.77999e-10 -3.05374e-10)
(8.87704e-10 -1.65423e-07 -4.72489e-08)
(-2.37892e-08 -1.30814e-06 6.55049e-08)
(-1.08075e-07 0.00447705 9.13702e-07)
(4.60762e-12 1.2829e-11 4.64105e-11)
(5.14418e-12 -3.87483e-11 2.11635e-11)
(3.78753e-12 -3.48189e-11 -3.93727e-11)
(9.46018e-13 -1.11659e-11 -5.77347e-12)
(2.52026e-13 -4.96384e-12 1.38672e-12)
(-4.70365e-13 2.3092e-11 2.10708e-11)
(1.5913e-11 -8.1014e-10 -4.44201e-10)
(1.24961e-09 -2.22802e-07 -6.5873e-08)
(-2.59219e-08 -1.74007e-06 3.35833e-08)
(-1.96024e-07 0.00450648 7.05642e-07)
(8.06349e-12 1.69374e-11 5.8833e-11)
(7.93002e-12 -5.38285e-11 2.77327e-11)
(5.38764e-12 -4.88942e-11 -5.67047e-11)
(1.29366e-12 -1.46333e-11 -8.94523e-12)
(3.40003e-13 -6.05983e-12 9.82111e-13)
(-7.16947e-13 3.51638e-11 3.06185e-11)
(2.15283e-11 -1.07723e-09 -6.09921e-10)
(1.66008e-09 -2.86955e-07 -8.75179e-08)
(-2.76877e-08 -2.13684e-06 9.03632e-09)
(-1.6814e-07 0.00453676 5.32116e-07)
(1.47987e-11 2.17819e-11 7.20234e-11)
(1.31275e-11 -7.8932e-11 3.22794e-11)
(7.93614e-12 -7.1542e-11 -8.44433e-11)
(1.80423e-12 -1.9819e-11 -1.39536e-11)
(4.61625e-13 -7.56344e-12 2.98747e-13)
(-1.06469e-12 5.19507e-11 4.40885e-11)
(2.91584e-11 -1.38858e-09 -8.10202e-10)
(2.15346e-09 -3.58503e-07 -1.12323e-07)
(-2.93714e-08 -2.46812e-06 -2.66821e-09)
(-4.23866e-08 0.00456793 3.8989e-07)
(3.83239e-11 2.66046e-11 8.56685e-11)
(8.36706e-12 -1.23469e-10 2.74087e-11)
(1.40663e-11 -1.10073e-10 -1.3115e-10)
(2.71424e-12 -2.78444e-11 -2.19163e-11)
(6.39501e-13 -9.64943e-12 -8.09292e-13)
(-1.6221e-12 7.8191e-11 6.50007e-11)
(3.63447e-11 -1.62096e-09 -9.71587e-10)
(2.67614e-09 -4.3638e-07 -1.38566e-07)
(-3.24919e-08 -2.34121e-06 5.61992e-08)
(4.56942e-08 0.00460018 -1.27747e-07)
(-6.07926e-08 3.69818e-11 3.34111e-09)
(3.42882e-09 -3.07691e-10 -1.28108e-09)
(1.03425e-09 -1.11171e-10 -1.81388e-10)
(7.98939e-11 -4.98521e-11 -5.69632e-11)
(4.03893e-12 -1.33153e-11 -3.75444e-12)
(-2.3306e-12 1.12836e-10 9.3256e-11)
(4.43925e-11 -1.89778e-09 -1.17498e-09)
(3.27163e-09 -5.24261e-07 -1.69474e-07)
(-3.62706e-08 -2.30191e-06 1.10783e-07)
(1.60014e-08 0.0046333 -5.25989e-07)
(1.57883e-07 -1.40428e-07 -3.91613e-06)
(-1.47724e-08 3.03175e-07 2.37628e-07)
(6.29905e-09 -2.25709e-08 -1.13989e-07)
(6.38969e-10 -5.37532e-09 -1.29918e-08)
(2.75909e-11 -3.81081e-10 -6.17762e-10)
(-3.01519e-12 1.44078e-10 1.14113e-10)
(4.1543e-11 -2.13112e-09 -1.37822e-09)
(4.00587e-09 -6.23154e-07 -2.05908e-07)
(-1.81577e-08 -2.29668e-06 1.69726e-07)
(6.76371e-09 0.00466734 -8.68022e-07)
(-1.23724e-12 1.47223e-12 4.52555e-11)
(3.82996e-13 -6.45622e-12 1.31068e-11)
(4.78202e-13 -7.19871e-12 -4.0565e-12)
(1.8157e-13 -3.17906e-12 -1.47443e-12)
(8.88924e-14 -1.75513e-12 -1.00649e-12)
(-8.24736e-14 6.78113e-12 3.45879e-12)
(1.09818e-11 -5.71843e-10 -2.34521e-10)
(6.46792e-10 -1.23466e-07 -2.90881e-08)
(-4.17476e-08 -1.26987e-06 2.05012e-08)
(-3.29613e-07 0.00488396 1.30338e-07)
(-2.1108e-12 3.07223e-12 5.63837e-11)
(2.54789e-13 -7.41483e-12 1.66572e-11)
(8.14394e-13 -8.73175e-12 -5.4507e-12)
(3.57087e-13 -3.82683e-12 -2.06297e-12)
(1.87508e-13 -2.02949e-12 -1.29546e-12)
(-1.49174e-13 1.24798e-11 6.62172e-12)
(1.57349e-11 -9.31366e-10 -3.92361e-10)
(1.15151e-09 -1.83945e-07 -4.49683e-08)
(-2.53593e-08 -1.32965e-06 3.63301e-08)
(-1.31184e-07 0.0049359 3.66283e-07)
(-2.61883e-12 4.97628e-12 7.16667e-11)
(3.11913e-13 -8.63587e-12 2.17485e-11)
(1.05784e-12 -1.07893e-11 -7.34186e-12)
(4.61433e-13 -4.7057e-12 -2.88537e-12)
(2.33375e-13 -2.38738e-12 -1.67444e-12)
(-2.93391e-13 2.07124e-11 1.14044e-11)
(2.31438e-11 -1.3561e-09 -5.9007e-10)
(1.68201e-09 -2.57518e-07 -6.55497e-08)
(-2.76945e-08 -1.90489e-06 -1.01322e-08)
(-2.14257e-07 0.00498927 1.28588e-07)
(-3.31704e-12 7.73432e-12 9.36696e-11)
(3.74993e-13 -1.03035e-11 2.90736e-11)
(1.38676e-12 -1.36005e-11 -9.97347e-12)
(5.99819e-13 -5.90665e-12 -4.04457e-12)
(2.89873e-13 -2.83548e-12 -2.16157e-12)
(-5.1854e-13 3.32279e-11 1.88612e-11)
(3.34544e-11 -1.87308e-09 -8.36646e-10)
(2.34068e-09 -3.41457e-07 -8.95434e-08)
(-2.92868e-08 -2.36626e-06 -3.93303e-08)
(-6.56064e-08 0.00504441 6.27732e-09)
(-4.32062e-12 1.18663e-11 1.26506e-10)
(4.36656e-13 -1.26588e-11 3.99346e-11)
(1.84086e-12 -1.75059e-11 -1.36842e-11)
(7.8972e-13 -7.56925e-12 -5.69773e-12)
(3.6335e-13 -3.39433e-12 -2.79972e-12)
(-9.67021e-13 5.6087e-11 3.25994e-11)
(4.20115e-11 -2.24737e-09 -1.01835e-09)
(3.05779e-09 -4.34659e-07 -1.14859e-07)
(-3.31062e-08 -2.26902e-06 3.54962e-09)
(4.84178e-08 0.00510159 -5.07738e-07)
(-5.81324e-12 1.83169e-11 1.77766e-10)
(4.71274e-13 -1.61342e-11 5.66694e-11)
(2.4641e-12 -2.30277e-11 -1.89527e-11)
(1.05457e-12 -9.89772e-12 -8.08823e-12)
(4.62593e-13 -4.17679e-12 -3.70035e-12)
(-1.56581e-12 8.59483e-11 5.11817e-11)
(5.12904e-11 -2.67714e-09 -1.24681e-09)
(3.82535e-09 -5.42527e-07 -1.46615e-07)
(-3.80339e-08 -2.20327e-06 5.28351e-08)
(2.92056e-08 0.00516063 -9.49178e-07)
(-8.15625e-12 2.89235e-11 2.62349e-10)
(4.29603e-13 -2.16183e-11 8.35822e-11)
(3.32144e-12 -3.09726e-11 -2.63678e-11)
(1.42563e-12 -1.3147e-11 -1.15018e-11)
(5.97973e-13 -5.2188e-12 -4.93682e-12)
(-2.29965e-12 1.25735e-10 7.65406e-11)
(6.37948e-11 -3.40264e-09 -1.6284e-09)
(4.36802e-09 -6.67111e-07 -1.84677e-07)
(-4.28713e-08 -2.19148e-06 1.05799e-07)
(1.08048e-08 0.0052216 -1.29241e-06)
(-4.16444e-12 4.76388e-11 4.10164e-10)
(1.52568e-12 -3.0693e-11 1.29707e-10)
(5.13154e-12 -4.269e-11 -3.69222e-11)
(1.95562e-12 -1.77093e-11 -1.64072e-11)
(7.70372e-13 -6.29955e-12 -6.37881e-12)
(-3.04077e-12 1.67279e-10 1.03493e-10)
(1.07286e-10 -6.13807e-09 -2.97108e-09)
(5.11769e-09 -8.08623e-07 -2.29032e-07)
(-4.82689e-08 -2.20539e-06 1.69818e-07)
(-2.55298e-09 0.00528466 -1.11446e-06)
(3.54068e-09 3.46698e-11 6.18572e-10)
(3.05522e-09 -1.2212e-10 -9.25764e-11)
(1.08656e-10 -6.71567e-11 -5.00604e-11)
(1.65084e-12 -2.7704e-11 -2.73779e-11)
(7.48654e-13 -7.94909e-12 -8.52449e-12)
(-4.31947e-12 2.29976e-10 1.44747e-10)
(1.58455e-10 -8.99255e-09 -4.44174e-09)
(6.5039e-09 -9.72202e-07 -2.8162e-07)
(-5.47938e-08 -2.24227e-06 2.44094e-07)
(-1.21068e-08 0.00534988 -1.01202e-06)
(8.07895e-08 -2.52701e-07 -1.35539e-06)
(4.86685e-09 -2.29086e-08 -2.83996e-08)
(1.57734e-09 -1.95954e-08 -2.5343e-08)
(2.114e-11 -5.94312e-10 -2.8378e-10)
(-5.30606e-13 4.9858e-13 2.10479e-11)
(-6.96148e-12 3.25207e-10 2.09108e-10)
(1.89455e-10 -1.16551e-08 -5.89814e-09)
(8.5275e-09 -1.16156e-06 -3.43801e-07)
(-2.68125e-08 -2.28798e-06 3.32635e-07)
(-4.83724e-09 0.00541737 -9.36e-07)
(-5.92071e-13 4.57473e-12 1.97863e-11)
(3.83184e-13 -1.07343e-12 6.54645e-12)
(4.04411e-13 -5.07654e-12 -3.22982e-12)
(1.8271e-13 -2.41201e-12 -1.47289e-12)
(1.01499e-13 -1.32531e-12 -1.04713e-12)
(-1.06122e-13 1.10552e-11 4.56767e-12)
(2.93031e-11 -1.70163e-09 -5.89894e-10)
(1.51121e-09 -2.4568e-07 -5.24868e-08)
(-6.70599e-08 -1.74281e-06 -3.41032e-08)
(-4.74665e-07 0.00546006 -1.31606e-07)
(-1.02327e-12 6.27291e-12 2.44332e-11)
(2.57605e-13 -9.45483e-13 8.00692e-12)
(6.50521e-13 -6.17286e-12 -4.2227e-12)
(3.3348e-13 -2.95336e-12 -1.97454e-12)
(1.9281e-13 -1.45388e-12 -1.254e-12)
(-2.87179e-13 2.17278e-11 9.58369e-12)
(4.17019e-11 -2.50016e-09 -8.75935e-10)
(2.63223e-09 -3.41782e-07 -7.37912e-08)
(-2.88972e-08 -2.20623e-06 -6.83826e-08)
(-3.03384e-08 0.00554668 -3.57566e-07)
(-1.2564e-12 8.32417e-12 3.03269e-11)
(3.33466e-13 -7.15001e-13 1.00119e-11)
(8.38022e-13 -7.63927e-12 -5.56563e-12)
(4.28887e-13 -3.69518e-12 -2.66935e-12)
(2.38368e-13 -1.64182e-12 -1.53717e-12)
(-6.49979e-13 4.07099e-11 1.88504e-11)
(5.0125e-11 -2.92223e-09 -1.04335e-09)
(3.53365e-09 -4.50794e-07 -9.94266e-08)
(-3.40841e-08 -1.98419e-06 -2.53908e-08)
(7.82171e-08 0.00563707 -1.01557e-06)
(-1.57e-12 1.116e-11 3.85522e-11)
(4.35811e-13 -4.0491e-13 1.26925e-11)
(1.091e-12 -9.63142e-12 -7.42239e-12)
(5.55269e-13 -4.71994e-12 -3.64241e-12)
(2.94776e-13 -1.81289e-12 -1.86272e-12)
(-1.03709e-12 6.43693e-11 3.07346e-11)
(6.39434e-11 -3.9404e-09 -1.44147e-09)
(4.00902e-09 -5.81306e-07 -1.31638e-07)
(-3.9865e-08 -1.89507e-06 1.30969e-08)
(4.18041e-08 0.00573109 -1.5279e-06)
(-2.0159e-12 1.51888e-11 5.03732e-11)
(5.79161e-13 2.06423e-14 1.63277e-11)
(1.44282e-12 -1.23852e-11 -1.00428e-11)
(7.29157e-13 -6.1525e-12 -5.02478e-12)
(3.55794e-13 -1.6511e-12 -2.03817e-12)
(-1.16739e-12 7.73337e-11 3.72629e-11)
(1.28136e-10 -8.10515e-09 -3.04296e-09)
(4.98506e-09 -7.33176e-07 -1.70046e-07)
(-4.65019e-08 -1.85054e-06 6.08806e-08)
(2.4268e-08 0.00582903 -1.47521e-06)
(-2.66848e-12 2.10863e-11 6.79627e-11)
(7.85525e-13 5.80394e-13 2.12853e-11)
(1.94167e-12 -1.62601e-11 -1.38257e-11)
(9.73515e-13 -8.2104e-12 -7.03932e-12)
(4.37595e-13 -1.50042e-12 -2.31616e-12)
(-1.83812e-12 1.14165e-10 5.62183e-11)
(1.84967e-10 -1.13616e-08 -4.36677e-09)
(6.76114e-09 -9.15592e-07 -2.17355e-07)
(-5.46192e-08 -1.83819e-06 1.16966e-07)
(1.13988e-08 0.00593114 -1.43945e-06)
(-3.677e-12 3.00518e-11 9.53433e-11)
(1.09209e-12 1.25123e-12 2.80543e-11)
(2.67021e-12 -2.18352e-11 -1.95008e-11)
(1.32431e-12 -1.12242e-11 -1.00365e-11)
(5.4567e-13 -1.19181e-12 -2.62404e-12)
(-2.91585e-12 1.72472e-10 8.68121e-11)
(2.47783e-10 -1.5008e-08 -5.90346e-09)
(8.56768e-09 -1.1329e-06 -2.75228e-07)
(-6.3514e-08 -1.84935e-06 1.85139e-07)
(2.883e-10 0.00603768 -1.44037e-06)
(1.39582e-12 4.43788e-11 1.40314e-10)
(3.75459e-12 1.96003e-12 3.74359e-11)
(3.98889e-12 -3.00343e-11 -2.82336e-11)
(1.85038e-12 -1.57592e-11 -1.46188e-11)
(6.91258e-13 -6.69432e-13 -2.97867e-12)
(-4.44898e-12 2.55228e-10 1.31229e-10)
(3.26416e-10 -1.94548e-08 -7.84236e-09)
(1.06921e-08 -1.39189e-06 -3.47428e-07)
(-7.36998e-08 -1.88064e-06 2.71315e-07)
(-1.07372e-08 0.00614894 -1.44928e-06)
(1.20584e-08 2.61504e-11 1.65595e-10)
(1.30359e-09 -5.3551e-11 -3.27149e-11)
(5.13533e-11 -5.89324e-11 -5.98737e-11)
(4.92046e-12 -2.44704e-11 -2.36291e-11)
(9.39098e-13 2.34986e-13 -3.39409e-12)
(-6.80543e-12 3.80907e-10 1.99492e-10)
(4.27416e-10 -2.49858e-08 -1.03105e-08)
(1.32122e-08 -1.70088e-06 -4.34661e-07)
(-8.53035e-08 -1.93176e-06 3.77499e-07)
(-1.96011e-08 0.00626523 -1.45686e-06)
(3.33378e-08 -1.71781e-07 -3.30215e-07)
(1.04142e-08 -1.05573e-07 -1.37426e-07)
(8.48181e-10 -1.09393e-08 -1.32918e-08)
(2.67786e-11 -3.95299e-10 -4.39158e-10)
(1.45433e-12 -1.49949e-11 -2.05554e-11)
(-1.19624e-11 5.69515e-10 3.02895e-10)
(5.21258e-10 -3.19546e-08 -1.34882e-08)
(1.72868e-08 -2.06901e-06 -5.39584e-07)
(-4.15236e-08 -1.98485e-06 5.10886e-07)
(-9.05833e-09 0.0063869 -1.46096e-06)
(-3.24887e-13 5.41147e-12 9.79492e-12)
(3.504e-13 1.13046e-12 4.25819e-12)
(3.69654e-13 -4.08865e-12 -2.59229e-12)
(1.86322e-13 -1.94707e-12 -1.33095e-12)
(1.15501e-13 -9.25155e-13 -9.7963e-13)
(-1.03892e-13 1.44571e-11 4.96492e-12)
(4.80045e-11 -3.02381e-09 -8.51434e-10)
(2.39316e-09 -3.82336e-07 -6.90136e-08)
(-8.90752e-08 -1.59403e-06 -6.45277e-08)
(-2.74191e-07 0.00612021 -1.19222e-06)
(-5.84141e-13 7.04766e-12 1.2026e-11)
(2.0116e-13 1.63047e-12 5.21587e-12)
(5.70483e-13 -4.99131e-12 -3.32549e-12)
(3.27016e-13 -2.42425e-12 -1.74806e-12)
(2.0441e-13 -8.42118e-13 -1.08773e-12)
(1.16141e-13 8.11518e-12 2.31562e-12)
(9.76069e-11 -6.39907e-09 -1.86734e-09)
(3.68937e-09 -5.12023e-07 -9.5323e-08)
(-3.69355e-08 -1.389e-06 -3.9382e-08)
(7.58331e-08 0.00625487 -1.76503e-06)
(-7.0998e-13 8.96964e-12 1.46942e-11)
(2.57359e-13 2.35166e-12 6.53847e-12)
(7.31942e-13 -6.19469e-12 -4.30769e-12)
(4.211e-13 -3.08663e-12 -2.32572e-12)
(2.46107e-13 -6.41064e-13 -1.17781e-12)
(1.87705e-13 9.89049e-12 2.77006e-12)
(1.5557e-10 -9.91379e-09 -2.96664e-09)
(5.22882e-09 -6.71744e-07 -1.28167e-07)
(-4.51586e-08 -1.2501e-06 -8.61228e-09)
(5.55655e-08 0.00639646 -1.71251e-06)
(-8.70217e-13 1.15538e-11 1.83036e-11)
(3.31486e-13 3.32885e-12 8.30996e-12)
(9.48727e-13 -7.82586e-12 -5.64914e-12)
(5.46522e-13 -4.01444e-12 -3.13526e-12)
(2.95394e-13 -2.5707e-13 -1.22705e-12)
(7.53045e-14 2.1474e-11 7.24238e-12)
(2.17019e-10 -1.36641e-08 -4.18463e-09)
(7.01469e-09 -8.68789e-07 -1.70137e-07)
(-5.46099e-08 -1.138e-06 2.80718e-08)
(4.45607e-08 0.00654553 -1.77614e-06)
(-1.08417e-12 1.50881e-11 2.3257e-11)
(4.34887e-13 4.67104e-12 1.0713e-11)
(1.24904e-12 -1.00732e-11 -7.51341e-12)
(7.19818e-13 -5.33487e-12 -4.29113e-12)
(3.55992e-13 4.13931e-13 -1.19385e-12)
(-6.52234e-14 3.8004e-11 1.40074e-11)
(2.95801e-10 -1.84044e-08 -5.77927e-09)
(9.12553e-09 -1.11176e-06 -2.25443e-07)
(-6.54659e-08 -1.04068e-06 7.76393e-08)
(3.58719e-08 0.00670268 -1.88093e-06)
(-1.37317e-12 2.00212e-11 3.02069e-11)
(5.83785e-13 6.5395e-12 1.40129e-11)
(1.67453e-12 -1.32334e-11 -1.01582e-11)
(9.64785e-13 -7.25556e-12 -5.97523e-12)
(4.24305e-13 1.75909e-12 -9.04805e-13)
(-4.79743e-13 7.26112e-11 2.8392e-11)
(3.99786e-10 -2.45506e-08 -7.87529e-09)
(1.1672e-08 -1.41038e-06 -2.92921e-07)
(-7.80456e-08 -9.54736e-07 1.39821e-07)
(2.73643e-08 0.00686859 -2.01149e-06)
(-1.76542e-12 2.70551e-11 4.01943e-11)
(8.07304e-13 9.16734e-12 1.85871e-11)
(2.29057e-12 -1.77727e-11 -1.39953e-11)
(1.31971e-12 -1.01195e-11 -8.49322e-12)
(4.99445e-13 4.22779e-12 -1.53584e-13)
(-1.27741e-12 1.32165e-10 5.36129e-11)
(5.37813e-10 -3.26555e-08 -1.0687e-08)
(1.47806e-08 -1.77797e-06 -3.76947e-07)
(-9.28354e-08 -8.79201e-07 2.20293e-07)
(1.78759e-08 0.007044 -2.15915e-06)
(4.62324e-12 3.73108e-11 5.48854e-11)
(3.54295e-12 1.28535e-11 2.49275e-11)
(3.44387e-12 -2.44656e-11 -1.97019e-11)
(1.85318e-12 -1.44976e-11 -1.23489e-11)
(5.76639e-13 8.63557e-12 1.44856e-12)
(-2.66611e-12 2.3106e-10 9.60909e-11)
(7.23596e-10 -4.34379e-08 -1.44945e-08)
(1.85949e-08 -2.23145e-06 -4.8196e-07)
(-1.10337e-07 -8.15192e-07 3.25023e-07)
(6.4374e-09 0.00722974 -2.31762e-06)
(1.44375e-08 4.63264e-12 2.49332e-11)
(1.26581e-09 -4.72721e-11 -3.33122e-11)
(7.26567e-11 -5.6718e-11 -4.88772e-11)
(5.53279e-12 -2.35005e-11 -2.01315e-11)
(6.93012e-13 1.64016e-11 4.57963e-12)
(-5.0269e-12 3.93715e-10 1.6685e-10)
(9.75392e-10 -5.78837e-08 -1.96768e-08)
(2.32898e-08 -2.7924e-06 -6.13396e-07)
(-1.3111e-07 -7.65539e-07 4.613e-07)
(-3.5216e-09 0.00742675 -2.48039e-06)
(3.03187e-08 -1.82197e-07 -2.10631e-07)
(1.29202e-08 -1.53019e-07 -1.59681e-07)
(8.84646e-10 -1.27416e-08 -1.19775e-08)
(3.86581e-11 -6.68413e-10 -5.49602e-10)
(9.66579e-13 5.08105e-12 -6.99945e-12)
(-1.27561e-11 6.57792e-10 2.82737e-10)
(1.27292e-09 -7.73498e-08 -2.67684e-08)
(3.17584e-08 -3.48819e-06 -7.78171e-07)
(-6.54481e-08 -7.01869e-07 6.42899e-07)
(-4.69398e-09 0.00763609 -2.64859e-06)
(-2.6775e-13 5.91577e-12 6.19768e-12)
(3.39444e-13 2.49488e-12 3.08532e-12)
(3.58142e-13 -3.56898e-12 -2.0996e-12)
(1.95175e-13 -1.56551e-12 -1.15093e-12)
(1.37055e-13 -6.71974e-13 -9.51753e-13)
(1.00057e-12 -3.38336e-11 -1.14326e-11)
(1.25118e-10 -8.22577e-09 -1.92229e-09)
(3.04378e-09 -4.838e-07 -7.42017e-08)
(-1.04147e-07 -5.63803e-07 -6.77639e-08)
(-4.88072e-08 0.00684816 -1.76989e-06)
(-4.77719e-13 7.66403e-12 7.72979e-12)
(1.5803e-13 3.24097e-12 3.80596e-12)
(5.35743e-13 -4.36304e-12 -2.65648e-12)
(3.34015e-13 -1.98392e-12 -1.49539e-12)
(2.35723e-13 -6.22592e-13 -1.10087e-12)
(1.37918e-12 -4.68868e-11 -1.58731e-11)
(1.81289e-10 -1.1399e-08 -2.73368e-09)
(5.71837e-09 -6.52415e-07 -1.04191e-07)
(-4.62812e-08 -2.55376e-07 -5.24739e-08)
(9.56581e-08 0.00704541 -1.89562e-06)
(-5.89785e-13 9.67823e-12 9.50148e-12)
(2.00082e-13 4.30178e-12 4.81611e-12)
(6.86235e-13 -5.41487e-12 -3.39575e-12)
(4.31814e-13 -2.56891e-12 -1.97101e-12)
(2.89437e-13 -3.95381e-13 -1.22823e-12)
(1.84379e-12 -6.09072e-11 -2.0756e-11)
(2.50111e-10 -1.55975e-08 -3.82159e-09)
(7.66781e-09 -8.66723e-07 -1.42393e-07)
(-5.73955e-08 4.01454e-08 -3.4589e-08)
(8.87051e-08 0.00725548 -2.07939e-06)
(-7.29922e-13 1.23706e-11 1.18747e-11)
(2.5442e-13 5.739e-12 6.18014e-12)
(8.88274e-13 -6.83307e-12 -4.39565e-12)
(5.63063e-13 -3.39692e-12 -2.63654e-12)
(3.51034e-13 1.7498e-13 -1.28072e-12)
(2.43279e-12 -7.71822e-11 -2.6532e-11)
(3.44501e-10 -2.13663e-08 -5.33635e-09)
(1.00917e-08 -1.13865e-06 -1.91164e-07)
(-7.05558e-08 3.56209e-07 -1.00349e-08)
(8.69269e-08 0.00747967 -2.31161e-06)
(-9.15923e-13 1.60281e-11 1.51026e-11)
(3.28757e-13 7.71898e-12 8.0485e-12)
(1.16788e-12 -8.77553e-12 -5.77101e-12)
(7.45954e-13 -4.58982e-12 -3.58607e-12)
(4.22492e-13 1.37131e-12 -1.16199e-12)
(3.24943e-12 -9.79206e-11 -3.40127e-11)
(4.76613e-10 -2.94313e-08 -7.48907e-09)
(1.31308e-08 -1.48423e-06 -2.54102e-07)
(-8.63778e-08 7.00656e-07 2.45173e-08)
(8.54795e-08 0.00771946 -2.58785e-06)
(-1.16497e-12 2.10852e-11 1.95702e-11)
(4.33653e-13 1.04918e-11 1.06506e-11)
(1.56244e-12 -1.14856e-11 -7.69803e-12)
(1.00592e-12 -6.34038e-12 -4.96815e-12)
(5.00205e-13 3.76927e-12 -6.61508e-13)
(4.42742e-12 -1.25301e-10 -4.39298e-11)
(6.63651e-10 -4.08259e-08 -1.05706e-08)
(1.69581e-08 -1.9248e-06 -3.35523e-07)
(-1.05597e-07 1.07974e-06 7.36384e-08)
(8.33923e-08 0.00797652 -2.90926e-06)
(-1.49938e-12 2.82158e-11 2.58795e-11)
(5.87672e-13 1.44426e-11 1.43367e-11)
(2.13232e-12 -1.53495e-11 -1.04538e-11)
(1.38358e-12 -8.96139e-12 -7.02133e-12)
(5.74116e-13 8.42166e-12 6.25526e-13)
(6.18063e-12 -1.62313e-10 -5.74606e-11)
(9.30662e-10 -5.70495e-08 -1.50174e-08)
(2.17972e-08 -2.48884e-06 -4.4116e-07)
(-1.29107e-07 1.49874e-06 1.43083e-07)
(7.96918e-08 0.00825277 -3.27913e-06)
(5.12205e-12 3.84791e-11 3.49888e-11)
(3.15258e-12 2.01582e-11 1.96439e-11)
(3.21942e-12 -2.10073e-11 -1.45032e-11)
(1.95328e-12 -1.29823e-11 -1.01479e-11)
(6.19986e-13 1.73511e-11 3.5054e-12)
(8.86775e-12 -2.12946e-10 -7.62429e-11)
(1.31481e-09 -8.03207e-08 -2.14781e-08)
(2.79363e-08 -3.21445e-06 -5.78621e-07)
(-1.58068e-07 1.9619e-06 2.40686e-07)
(7.31914e-08 0.00855044 -3.70171e-06)
(1.48486e-08 -6.91439e-13 7.39066e-12)
(1.25628e-09 -4.69844e-11 -2.87982e-11)
(6.89962e-11 -5.45385e-11 -3.79036e-11)
(5.42713e-12 -2.18288e-11 -1.6603e-11)
(6.16775e-13 3.44402e-11 9.55683e-12)
(1.30725e-11 -2.82143e-10 -1.02472e-10)
(1.87192e-09 -1.13969e-07 -3.09326e-08)
(3.57712e-08 -4.15334e-06 -7.5815e-07)
(-1.93851e-07 2.47213e-06 3.77437e-07)
(6.84407e-08 0.00887212 -4.18102e-06)
(2.93297e-08 -2.00387e-07 -1.57136e-07)
(1.32544e-08 -1.80113e-07 -1.39116e-07)
(8.99776e-10 -1.46413e-08 -1.02193e-08)
(3.9077e-11 -7.40438e-10 -4.63427e-10)
(1.38338e-13 4.05945e-11 7.54181e-12)
(1.27402e-11 -3.77256e-10 -1.3964e-10)
(2.69247e-09 -1.62898e-07 -4.4828e-08)
(5.18701e-08 -5.37459e-06 -9.93239e-07)
(-1.03824e-07 3.0847e-06 5.7308e-07)
(2.15317e-08 0.00922085 -4.73037e-06)
(-2.51321e-13 6.38116e-12 4.24876e-12)
(3.58062e-13 3.57045e-12 2.21292e-12)
(3.63413e-13 -3.32748e-12 -1.69942e-12)
(2.07108e-13 -1.17383e-12 -9.32447e-13)
(1.74388e-13 -8.81042e-13 -1.02072e-12)
(1.63889e-12 -6.48511e-11 -1.6382e-11)
(1.26336e-10 -8.40032e-09 -1.54353e-09)
(3.57678e-09 -4.96392e-07 -6.35781e-08)
(-1.02807e-07 9.28687e-07 -9.45968e-08)
(2.28367e-07 0.0076034 -1.87974e-06)
(-4.52143e-13 8.39409e-12 5.45853e-12)
(1.30029e-13 4.55387e-12 2.77096e-12)
(5.31089e-13 -4.05755e-12 -2.12553e-12)
(3.47935e-13 -1.51292e-12 -1.20287e-12)
(2.93986e-13 -1.06857e-12 -1.25901e-12)
(2.62232e-12 -1.02296e-10 -2.59305e-11)
(1.99128e-10 -1.24991e-08 -2.34119e-09)
(6.20474e-09 -6.75664e-07 -8.8249e-08)
(-5.17618e-08 1.54846e-06 -9.96533e-08)
(1.54129e-07 0.00787671 -2.14128e-06)
(-5.66555e-13 1.06421e-11 6.79794e-12)
(1.63161e-13 5.93645e-12 3.55821e-12)
(6.80629e-13 -5.01249e-12 -2.68606e-12)
(4.52923e-13 -1.99586e-12 -1.57775e-12)
(3.76216e-13 -1.26374e-12 -1.55661e-12)
(4.05932e-12 -1.60124e-10 -4.08167e-11)
(2.93747e-10 -1.84134e-08 -3.51058e-09)
(8.34271e-09 -9.10141e-07 -1.21057e-07)
(-6.55079e-08 2.22826e-06 -1.05966e-07)
(1.5931e-07 0.00817184 -2.45797e-06)
(-7.10531e-13 1.36414e-11 8.58606e-12)
(2.05081e-13 7.81746e-12 4.63262e-12)
(8.81199e-13 -6.28483e-12 -3.43664e-12)
(5.94836e-13 -2.68727e-12 -2.10274e-12)
(4.8324e-13 -1.42647e-12 -1.92187e-12)
(6.31785e-12 -2.51339e-10 -6.45097e-11)
(4.31026e-10 -2.70143e-08 -5.23738e-09)
(1.11148e-08 -1.21779e-06 -1.64855e-07)
(-8.24383e-08 3.02315e-06 -1.10288e-07)
(1.71162e-07 0.00849151 -2.84078e-06)
(-9.01646e-13 1.77119e-11 1.1012e-11)
(2.6163e-13 1.04201e-11 6.12144e-12)
(1.15917e-12 -8.00669e-12 -4.45792e-12)
(7.93777e-13 -3.69143e-12 -2.85075e-12)
(6.27087e-13 -1.46149e-12 -2.35434e-12)
(9.92721e-12 -3.97248e-10 -1.02755e-10)
(6.31479e-10 -3.96052e-08 -7.80231e-09)
(1.47195e-08 -1.62319e-06 -2.23516e-07)
(-1.03487e-07 3.961e-06 -1.10747e-07)
(1.84922e-07 0.00883892 -3.30043e-06)
(-1.15771e-12 2.33338e-11 1.43604e-11)
(3.39776e-13 1.40898e-11 8.22141e-12)
(1.55226e-12 -1.03776e-11 -5.87362e-12)
(1.07866e-12 -5.17437e-12 -3.93668e-12)
(8.22152e-13 -1.15225e-12 -2.82703e-12)
(1.57917e-11 -6.3428e-10 -1.65397e-10)
(9.26456e-10 -5.8196e-08 -1.16401e-08)
(1.94216e-08 -2.16053e-06 -3.02406e-07)
(-1.29906e-07 5.07497e-06 -1.04837e-07)
(2.00291e-07 0.00921783 -3.85244e-06)
(-1.50226e-12 3.12493e-11 1.90704e-11)
(4.5248e-13 1.93647e-11 1.12395e-11)
(2.12135e-12 -1.37061e-11 -7.87658e-12)
(1.49614e-12 -7.40414e-12 -5.54587e-12)
(1.08941e-12 -1.90964e-14 -3.24342e-12)
(2.54937e-11 -1.02591e-09 -2.69673e-10)
(1.36462e-09 -8.59315e-08 -1.74336e-08)
(2.55797e-08 -2.87785e-06 -4.09033e-07)
(-1.63381e-07 6.4057e-06 -8.89632e-08)
(2.16897e-07 0.00963271 -4.5173e-06)
(4.4988e-12 4.26213e-11 2.58337e-11)
(2.76401e-12 2.70989e-11 1.56631e-11)
(3.18624e-12 -1.84955e-11 -1.07816e-11)
(2.13165e-12 -1.082e-11 -7.98404e-12)
(1.46094e-12 3.00522e-12 -3.3369e-12)
(4.18677e-11 -1.68519e-09 -4.46329e-10)
(2.02271e-09 -1.27818e-07 -2.62729e-08)
(3.36806e-08 -3.84347e-06 -5.54027e-07)
(-2.06231e-07 8.00333e-06 -5.77648e-08)
(2.34003e-07 0.010089 -5.32169e-06)
(1.37268e-08 1.00783e-12 1.1288e-11)
(1.15418e-09 -3.78154e-11 -1.6846e-11)
(6.06777e-11 -5.14848e-11 -2.78671e-11)
(5.31947e-12 -1.87377e-11 -1.29522e-11)
(1.99765e-12 1.02607e-11 -2.43903e-12)
(7.00617e-11 -2.81831e-09 -7.51388e-10)
(3.02244e-09 -1.9198e-07 -3.99269e-08)
(4.43773e-08 -5.15616e-06 -7.52618e-07)
(-2.61328e-07 9.92914e-06 -3.38342e-09)
(2.58351e-07 0.010593 -6.29989e-06)
(2.77202e-08 -2.2008e-07 -1.09488e-07)
(1.23535e-08 -1.8597e-07 -1.0258e-07)
(8.57657e-10 -1.5265e-08 -7.71005e-09)
(3.65856e-11 -7.36337e-10 -3.39666e-10)
(1.71239e-12 4.2592e-13 -9.49389e-12)
(1.15305e-10 -4.8283e-09 -1.29378e-09)
(4.82295e-09 -2.92031e-07 -6.13458e-08)
(6.97263e-08 -6.95671e-06 -1.02617e-06)
(-1.6234e-07 1.23453e-05 9.12655e-08)
(9.65496e-08 0.0111529 -7.50706e-06)
(-2.10101e-13 6.38217e-12 2.60288e-12)
(4.18408e-13 4.46445e-12 1.26702e-12)
(3.87025e-13 -3.38651e-12 -1.35708e-12)
(2.19326e-13 -7.57661e-13 -6.8126e-13)
(2.14327e-13 -1.18298e-12 -9.61201e-13)
(2.16979e-12 -9.20969e-11 -1.67823e-11)
(1.12592e-10 -7.68418e-09 -1.03697e-09)
(2.51532e-09 -3.57127e-07 -3.55494e-08)
(-8.00434e-08 2.89196e-06 -1.23252e-07)
(5.42085e-07 0.00831441 -1.81061e-06)
(-4.34982e-13 8.90083e-12 3.62433e-12)
(1.20794e-13 5.68073e-12 1.65004e-12)
(5.51426e-13 -4.1063e-12 -1.68103e-12)
(3.64585e-13 -9.96841e-13 -8.73412e-13)
(3.63897e-13 -1.8755e-12 -1.28279e-12)
(3.72041e-12 -1.53626e-10 -2.80325e-11)
(1.84608e-10 -1.16867e-08 -1.60764e-09)
(4.54342e-09 -4.89998e-07 -5.00281e-08)
(-5.08284e-08 4.0195e-06 -1.47619e-07)
(2.37847e-07 0.00866981 -2.12606e-06)
(-5.6119e-13 1.15034e-11 4.64437e-12)
(1.49271e-13 7.38823e-12 2.1944e-12)
(7.06863e-13 -5.03011e-12 -2.10178e-12)
(4.78045e-13 -1.34771e-12 -1.14045e-12)
(4.91532e-13 -3.07426e-12 -1.77445e-12)
(6.07885e-12 -2.5585e-10 -4.69102e-11)
(2.78574e-10 -1.76978e-08 -2.47877e-09)
(6.15242e-09 -6.68948e-07 -6.9909e-08)
(-6.55887e-08 5.33995e-06 -1.78903e-07)
(2.6048e-07 0.00905871 -2.50766e-06)
(-7.20619e-13 1.49758e-11 6.00405e-12)
(1.84078e-13 9.72482e-12 2.953e-12)
(9.1557e-13 -6.23575e-12 -2.65806e-12)
(6.33218e-13 -1.86653e-12 -1.51743e-12)
(6.78766e-13 -5.21943e-12 -2.55925e-12)
(1.00182e-11 -4.28588e-10 -7.91258e-11)
(4.19795e-10 -2.68083e-08 -3.81953e-09)
(8.27666e-09 -9.10255e-07 -9.72376e-08)
(-8.40366e-08 6.95908e-06 -2.16897e-07)
(2.94422e-07 0.00948612 -2.9751e-06)
(-9.32323e-13 1.96915e-11 7.84792e-12)
(2.29613e-13 1.298e-11 4.02752e-12)
(1.20484e-12 -7.82545e-12 -3.40329e-12)
(8.53542e-13 -2.64916e-12 -2.06064e-12)
(9.68642e-13 -9.1807e-12 -3.87067e-12)
(1.67095e-11 -7.25078e-10 -1.34961e-10)
(6.33902e-10 -4.0759e-08 -5.902e-09)
(1.10876e-08 -1.23777e-06 -1.34992e-07)
(-1.07427e-07 8.96243e-06 -2.63102e-07)
(3.35567e-07 0.00995804 -3.54967e-06)
(-1.21648e-12 2.62138e-11 1.03913e-11)
(2.90635e-13 1.7605e-11 5.57631e-12)
(1.61428e-12 -9.94764e-12 -4.41697e-12)
(1.17348e-12 -3.85837e-12 -2.86332e-12)
(1.43833e-12 -1.67524e-11 -6.17629e-12)
(2.82853e-11 -1.24359e-09 -2.33529e-10)
(9.61885e-10 -6.23936e-08 -9.17402e-09)
(1.48168e-08 -1.68595e-06 -1.87507e-07)
(-1.374e-07 1.14641e-05 -3.19581e-07)
(3.85472e-07 0.0104818 -4.26044e-06)
(-1.60037e-12 3.54132e-11 1.39701e-11)
(3.7543e-13 2.43184e-11 7.85318e-12)
(2.20768e-12 -1.2819e-11 -5.81994e-12)
(1.65042e-12 -5.78209e-12 -4.08206e-12)
(2.23997e-12 -3.17799e-11 -1.04532e-11)
(4.87351e-11 -2.17048e-09 -4.11295e-10)
(1.47047e-09 -9.64546e-08 -1.43873e-08)
(1.97773e-08 -2.30536e-06 -2.6118e-07)
(-1.76238e-07 1.46182e-05 -3.89234e-07)
(4.46105e-07 0.0110664 -5.14697e-06)
(2.21218e-12 4.86544e-11 1.9112e-11)
(1.95418e-12 3.42839e-11 1.12743e-11)
(3.21082e-12 -1.67663e-11 -7.80221e-12)
(2.39035e-12 -8.94946e-12 -5.99259e-12)
(3.68847e-12 -6.28526e-11 -1.88387e-11)
(8.57311e-11 -3.87009e-09 -7.39931e-10)
(2.27019e-09 -1.51038e-07 -2.28318e-08)
(2.63892e-08 -3.17138e-06 -3.65606e-07)
(-2.27177e-07 1.86354e-05 -4.76287e-07)
(5.1996e-07 0.0117232 -6.26365e-06)
(9.19964e-09 8.43351e-12 2.55376e-11)
(6.91837e-10 -3.7366e-12 8.55805e-12)
(3.22351e-11 -4.13847e-11 -1.59936e-11)
(4.3734e-12 -1.59798e-11 -9.54188e-12)
(6.45572e-12 -1.30167e-10 -3.62758e-11)
(1.54355e-10 -7.08001e-09 -1.36511e-09)
(3.54586e-09 -2.40339e-07 -3.67786e-08)
(3.52074e-08 -4.39871e-06 -5.15461e-07)
(-2.94278e-07 2.38085e-05 -5.87228e-07)
(6.20337e-07 0.0124662 -7.68654e-06)
(2.25639e-08 -2.34703e-07 -3.10555e-08)
(8.17896e-09 -1.3457e-07 -4.4916e-08)
(5.21664e-10 -1.00321e-08 -3.13065e-09)
(1.98996e-11 -4.08691e-10 -1.18046e-10)
(1.05298e-11 -2.9551e-10 -7.75537e-11)
(3.06428e-10 -1.33762e-08 -2.5989e-09)
(6.39777e-09 -3.89981e-07 -6.0359e-08)
(6.225e-08 -6.15755e-06 -7.32953e-07)
(-2.40626e-07 3.06818e-05 -7.26751e-07)
(2.45474e-07 0.0133139 -9.53373e-06)
(7.89894e-14 2.57901e-12 -6.27472e-13)
(5.60119e-13 5.03045e-12 -1.27465e-13)
(4.40042e-13 -4.03009e-12 -1.04139e-12)
(2.28417e-13 -3.83853e-13 -4.20379e-13)
(2.31856e-13 -8.21784e-13 -6.3128e-13)
(1.38716e-12 -5.66345e-11 -6.98907e-12)
(4.67546e-11 -3.31781e-09 -3.20891e-10)
(5.71343e-10 -1.01191e-07 -1.02842e-08)
(-4.41721e-08 4.91157e-06 -1.12458e-07)
(8.30734e-07 0.00888185 -1.36046e-06)
(-2.82165e-13 7.03286e-12 5.4585e-13)
(1.43611e-13 6.48296e-12 -4.56198e-14)
(6.0765e-13 -4.8695e-12 -1.28165e-12)
(3.78015e-13 -5.1911e-13 -5.33081e-13)
(3.93525e-13 -1.46633e-12 -8.44508e-13)
(2.44577e-12 -9.65796e-11 -1.17931e-11)
(7.86244e-11 -5.05937e-09 -5.01511e-10)
(1.16407e-09 -1.33845e-07 -1.44508e-08)
(-4.376e-08 6.62815e-06 -1.42289e-07)
(3.24373e-07 0.00931002 -1.62307e-06)
(-4.19884e-13 1.01025e-11 1.13889e-12)
(1.77466e-13 8.46119e-12 8.68312e-14)
(7.79247e-13 -5.95231e-12 -1.59853e-12)
(4.98609e-13 -7.28874e-13 -6.90138e-13)
(5.3663e-13 -2.68659e-12 -1.18118e-12)
(4.02813e-12 -1.65453e-10 -2.01322e-11)
(1.19128e-10 -7.7399e-09 -7.8484e-10)
(1.50568e-09 -1.78185e-07 -2.03135e-08)
(-5.70482e-08 8.71394e-06 -1.81894e-07)
(3.66848e-07 0.00978363 -1.944e-06)
(-6.00382e-13 1.41791e-11 1.93488e-12)
(2.1616e-13 1.11833e-11 3.0332e-13)
(1.0097e-12 -7.34101e-12 -2.01408e-12)
(6.64898e-13 -1.05498e-12 -9.12603e-13)
(7.50795e-13 -5.0516e-12 -1.73962e-12)
(6.73165e-12 -2.85994e-10 -3.48573e-11)
(1.80659e-10 -1.18793e-08 -1.23204e-09)
(1.92856e-09 -2.36498e-07 -2.85218e-08)
(-7.35199e-08 1.13485e-05 -2.33083e-07)
(4.26886e-07 0.0103103 -2.34223e-06)
(-8.39002e-13 1.97087e-11 3.0304e-12)
(2.65582e-13 1.49977e-11 6.52099e-13)
(1.32879e-12 -9.13297e-12 -2.56581e-12)
(9.03317e-13 -1.578e-12 -1.23553e-12)
(1.09047e-12 -9.75692e-12 -2.71952e-12)
(1.14423e-11 -5.00744e-10 -6.1358e-11)
(2.74838e-10 -1.83435e-08 -1.94624e-09)
(2.43685e-09 -3.13043e-07 -4.00962e-08)
(-9.42934e-08 1.47118e-05 -2.99823e-07)
(5.01783e-07 0.0108996 -2.83956e-06)
(-1.1599e-12 2.73706e-11 4.57399e-12)
(3.30022e-13 2.04458e-11 1.21159e-12)
(1.77957e-12 -1.14545e-11 -3.30639e-12)
(1.25406e-12 -2.44782e-12 -1.71966e-12)
(1.65802e-12 -1.94138e-11 -4.5423e-12)
(1.98206e-11 -8.91549e-10 -1.10128e-10)
(4.20222e-10 -2.85749e-08 -3.10343e-09)
(3.02224e-09 -4.13212e-07 -5.65698e-08)
(-1.20698e-07 1.90555e-05 -3.87874e-07)
(5.96022e-07 0.0115633 -3.46575e-06)
(-1.59672e-12 3.8212e-11 6.72398e-12)
(4.14071e-13 2.84169e-11 2.1949e-12)
(2.43181e-12 -1.44656e-11 -4.31187e-12)
(1.78548e-12 -3.96915e-12 -2.47462e-12)
(2.66253e-12 -3.99563e-11 -8.14575e-12)
(3.50661e-11 -1.62068e-09 -2.02239e-10)
(6.46746e-10 -4.50286e-08 -5.0114e-09)
(3.64391e-09 -5.43478e-07 -8.02891e-08)
(-1.54518e-07 2.47373e-05 -5.05764e-07)
(7.15921e-07 0.0123164 -4.26232e-06)
(-3.13036e-12 5.39111e-11 9.86052e-12)
(-1.22311e-12 4.03787e-11 3.83549e-12)
(3.20255e-12 -1.83508e-11 -5.69941e-12)
(2.6094e-12 -6.83073e-12 -3.7172e-12)
(4.55669e-12 -8.54842e-11 -1.57249e-11)
(6.35139e-11 -3.02101e-09 -3.81514e-10)
(1.00299e-09 -7.19809e-08 -8.22325e-09)
(4.19103e-09 -7.10727e-07 -1.14926e-07)
(-1.98152e-07 3.22772e-05 -6.66456e-07)
(8.70445e-07 0.0131783 -5.28801e-06)
(-7.81199e-09 -3.66868e-11 2.76537e-11)
(-1.00228e-09 7.97395e-11 6.37157e-11)
(-6.84009e-11 2.88222e-12 2.63235e-12)
(2.7235e-13 -9.81225e-12 -5.13967e-12)
(8.21239e-12 -1.91105e-10 -3.27007e-11)
(1.1799e-10 -5.80242e-09 -7.42862e-10)
(1.57154e-09 -1.17043e-07 -1.37621e-08)
(4.43365e-09 -9.19967e-07 -1.66374e-07)
(-2.5392e-07 4.2447e-05 -8.90278e-07)
(1.08463e-06 0.0141745 -6.62762e-06)
(1.66261e-08 -4.44822e-07 1.75689e-07)
(-8.15889e-09 1.29118e-07 5.21559e-08)
(-8.49653e-10 1.61203e-08 4.57068e-09)
(-4.85798e-11 1.12191e-09 2.55567e-10)
(1.28693e-11 -3.95098e-10 -6.26635e-11)
(2.58419e-10 -1.14786e-08 -1.49402e-09)
(3.13008e-09 -1.9367e-07 -2.35633e-08)
(1.05519e-08 -1.15461e-06 -2.43764e-07)
(-3.21442e-07 5.66005e-05 -1.20559e-06)
(4.39884e-07 0.0153389 -8.41335e-06)
(2.31843e-12 -2.96848e-11 -3.65261e-12)
(1.00897e-12 2.8574e-12 -6.7626e-13)
(5.56714e-13 -5.97614e-12 -5.22869e-13)
(2.36511e-13 -2.10681e-13 -1.62756e-13)
(2.21671e-13 1.74551e-13 -2.11578e-13)
(-5.38733e-14 1.28968e-11 -1.68094e-13)
(-2.2226e-11 1.44485e-09 5.38158e-12)
(-1.03026e-09 1.12947e-07 -2.44953e-10)
(-1.61778e-08 6.2497e-06 -4.63999e-08)
(1.00877e-06 0.00920156 -5.20501e-07)
(1.80305e-12 -2.79913e-11 -3.40517e-12)
(3.68023e-13 4.55956e-12 -7.36595e-13)
(7.43624e-13 -7.39558e-12 -6.50137e-13)
(3.8925e-13 -2.91264e-13 -2.02662e-13)
(3.7019e-13 2.91928e-13 -2.58352e-13)
(-1.62276e-13 2.44771e-11 -8.67204e-14)
(-3.91682e-11 2.43681e-09 1.20921e-11)
(-1.74482e-09 1.70165e-07 -2.447e-10)
(-3.66165e-08 8.37827e-06 -6.0089e-08)
(3.79903e-07 0.00967326 -6.22636e-07)
(1.88033e-12 -2.72702e-11 -3.45721e-12)
(4.50989e-13 6.28185e-12 -8.41465e-13)
(9.59593e-13 -9.24973e-12 -8.20291e-13)
(5.14969e-13 -4.24831e-13 -2.57997e-13)
(4.83672e-13 5.06607e-13 -3.21077e-13)
(-5.07936e-13 4.55979e-11 1.06304e-13)
(-6.46723e-11 4.03585e-09 2.33178e-11)
(-2.56185e-09 2.51416e-07 -2.56758e-10)
(-4.77074e-08 1.10091e-05 -7.85916e-08)
(4.35838e-07 0.0101982 -7.48354e-07)
(1.88648e-12 -2.5904e-11 -3.48766e-12)
(5.54317e-13 8.71542e-12 -9.57572e-13)
(1.25077e-12 -1.16834e-11 -1.04629e-12)
(6.88675e-13 -6.32001e-13 -3.35108e-13)
(6.35638e-13 9.44875e-13 -4.03127e-13)
(-1.22283e-12 8.5868e-11 5.61332e-13)
(-1.06914e-10 6.71512e-09 4.36767e-11)
(-3.73911e-09 3.71046e-07 -2.50672e-10)
(-6.10582e-08 1.43806e-05 -1.03101e-07)
(5.1377e-07 0.0107859 -9.05509e-07)
(1.8592e-12 -2.34038e-11 -3.46399e-12)
(6.88492e-13 1.22301e-11 -1.08105e-12)
(1.65523e-12 -1.49102e-11 -1.35063e-12)
(9.37933e-13 -9.53982e-13 -4.44931e-13)
(8.43459e-13 1.90371e-12 -5.09919e-13)
(-2.69213e-12 1.64713e-10 1.59802e-12)
(-1.78196e-10 1.12964e-08 8.11937e-11)
(-5.45971e-09 5.49886e-07 -2.03967e-10)
(-7.73611e-08 1.87511e-05 -1.35899e-07)
(6.12135e-07 0.0114484 -1.1032e-06)
(1.79829e-12 -1.90542e-11 -3.33474e-12)
(8.39023e-13 1.74243e-11 -1.20213e-12)
(2.22804e-12 -1.92285e-11 -1.76598e-12)
(1.30416e-12 -1.45425e-12 -6.04853e-13)
(1.12544e-12 4.12558e-12 -6.41316e-13)
(-5.74631e-12 3.23955e-10 3.95029e-12)
(-3.00948e-10 1.93183e-08 1.51708e-10)
(-8.00481e-09 8.21957e-07 -7.49453e-11)
(-9.72106e-08 2.44896e-05 -1.80359e-07)
(7.37665e-07 0.0122009 -1.35407e-06)
(1.68491e-12 -1.20505e-11 -3.11737e-12)
(1.03569e-12 2.49862e-11 -1.24298e-12)
(3.04495e-12 -2.47361e-11 -2.31892e-12)
(1.85658e-12 -2.22362e-12 -8.43309e-13)
(1.49415e-12 9.56594e-12 -7.7728e-13)
(-1.22284e-11 6.5741e-10 9.36067e-12)
(-5.17322e-10 3.37631e-08 2.87517e-10)
(-1.18175e-08 1.24431e-06 2.12191e-10)
(-1.21175e-07 3.21329e-05 -2.41567e-07)
(8.99994e-07 0.0130631 -1.6758e-06)
(-7.67394e-12 -1.23951e-12 -2.72988e-12)
(-1.49135e-11 3.65663e-11 -1.15586e-12)
(2.76761e-12 -3.18994e-11 -3.08155e-12)
(2.65017e-12 -3.40515e-12 -1.21119e-12)
(1.91914e-12 2.36593e-11 -8.21528e-13)
(-2.63894e-11 1.38573e-09 2.21493e-11)
(-9.08932e-10 6.06382e-08 5.56944e-10)
(-1.76048e-08 1.91541e-06 7.92178e-10)
(-1.49576e-07 4.24796e-05 -3.27394e-07)
(1.11315e-06 0.0140608 -2.09355e-06)
(-9.15552e-08 -2.3678e-09 -1.62001e-10)
(-7.38606e-09 1.72807e-10 5.15765e-11)
(-4.00672e-10 2.01926e-10 1.60807e-11)
(-1.27317e-11 1.71955e-11 -2.68876e-13)
(1.62603e-12 6.3503e-11 -3.48273e-13)
(-5.84014e-11 3.05643e-09 5.35513e-11)
(-1.63533e-09 1.1255e-07 1.10922e-09)
(-2.64371e-08 3.01097e-06 1.9164e-09)
(-1.80884e-07 5.67487e-05 -4.50374e-07)
(1.4112e-06 0.0152286 -2.64401e-06)
(1.59738e-07 -4.23892e-06 -8.81292e-08)
(-8.69076e-08 1.50571e-06 1.27877e-07)
(-6.09356e-09 1.21435e-07 9.09721e-09)
(-2.80691e-10 6.50727e-09 4.31932e-10)
(-1.24588e-11 4.41076e-10 1.73498e-11)
(-1.5903e-10 7.16848e-09 1.36186e-10)
(-3.61203e-09 2.18304e-07 2.32231e-09)
(-5.18026e-08 4.87343e-06 4.29077e-09)
(-3.71334e-07 7.70624e-05 -6.29354e-07)
(5.76355e-07 0.0166141 -3.38448e-06)
(2.35238e-12 -2.96201e-11 3.35372e-12)
(1.02438e-12 2.61561e-12 6.68809e-13)
(5.5715e-13 -5.96538e-12 4.76475e-13)
(2.36557e-13 -1.89436e-13 1.05434e-13)
(2.21761e-13 2.02015e-13 1.3485e-13)
(-6.0754e-14 1.32797e-11 6.74374e-14)
(-2.25762e-11 1.46911e-09 -5.50802e-12)
(-1.0394e-09 1.14103e-07 2.4876e-10)
(-1.61065e-08 6.26796e-06 4.63054e-08)
(1.0109e-06 0.00920313 4.97269e-07)
(1.79782e-12 -2.79277e-11 3.12185e-12)
(3.82495e-13 4.30407e-12 7.27729e-13)
(7.43703e-13 -7.383e-12 5.98032e-13)
(3.89207e-13 -2.66044e-13 1.38661e-13)
(3.70463e-13 3.2705e-13 1.72311e-13)
(-1.72798e-13 2.50357e-11 -2.62205e-14)
(-3.96715e-11 2.46878e-09 -1.21086e-11)
(-1.75848e-09 1.71528e-07 2.5485e-10)
(-3.66798e-08 8.39693e-06 6.00952e-08)
(3.79652e-07 0.00967483 6.0001e-07)
(1.87517e-12 -2.72079e-11 3.18742e-12)
(4.66532e-13 6.01075e-12 8.30048e-13)
(9.59756e-13 -9.2355e-12 7.61496e-13)
(5.14935e-13 -3.93883e-13 1.85574e-13)
(4.83951e-13 5.53133e-13 2.23151e-13)
(-5.23282e-13 4.64083e-11 -2.33862e-13)
(-6.53258e-11 4.07792e-09 -2.31718e-11)
(-2.57759e-09 2.53017e-07 2.74274e-10)
(-4.77675e-08 1.10284e-05 7.86843e-08)
(4.35605e-07 0.0101997 7.26319e-07)
(1.88122e-12 -2.58437e-11 3.23321e-12)
(5.70803e-13 8.42941e-12 9.42999e-13)
(1.25092e-12 -1.16664e-11 9.79665e-13)
(6.88683e-13 -5.93988e-13 2.52657e-13)
(6.35754e-13 1.00822e-12 2.91129e-13)
(-1.24546e-12 8.70546e-11 -7.0602e-13)
(-1.07758e-10 6.77038e-09 -4.3278e-11)
(-3.75708e-09 3.72917e-07 2.77281e-10)
(-6.11155e-08 1.44004e-05 1.03273e-07)
(5.13536e-07 0.0107874 8.8418e-07)
(1.85381e-12 -2.3347e-11 3.22706e-12)
(7.06059e-13 1.19291e-11 1.06296e-12)
(1.65527e-12 -1.48882e-11 1.27473e-12)
(9.37941e-13 -9.06093e-13 3.49847e-13)
(8.4335e-13 1.99145e-12 3.80389e-13)
(-2.72549e-12 1.66456e-10 -1.76189e-12)
(-1.79277e-10 1.13686e-08 -8.04124e-11)
(-5.47993e-09 5.52051e-07 2.41507e-10)
(-7.74162e-08 1.87716e-05 1.3614e-07)
(6.11877e-07 0.0114499 1.08281e-06)
(1.79207e-12 -1.90005e-11 3.11866e-12)
(8.58353e-13 1.71116e-11 1.17919e-12)
(2.2278e-12 -1.92e-11 1.67906e-12)
(1.3041e-12 -1.39256e-12 4.93756e-13)
(1.12501e-12 4.24965e-12 4.89572e-13)
(-5.79454e-12 3.26496e-10 -4.13431e-12)
(-3.02311e-10 1.94117e-08 -1.50369e-10)
(-8.02703e-09 8.2442e-07 1.24947e-10)
(-9.72645e-08 2.45104e-05 1.80651e-07)
(7.37358e-07 0.0122023 1.33499e-06)
(1.67748e-12 -1.19908e-11 2.92726e-12)
(1.0557e-12 2.46701e-11 1.21135e-12)
(3.04488e-12 -2.47069e-11 2.22009e-12)
(1.85627e-12 -2.13908e-12 7.11712e-13)
(1.49308e-12 9.74628e-12 5.96975e-13)
(-1.22967e-11 6.61073e-10 -9.56567e-12)
(-5.18986e-10 3.38811e-08 -2.85435e-10)
(-1.18409e-08 1.24702e-06 -1.49471e-10)
(-1.21229e-07 3.21534e-05 2.41884e-07)
(8.99597e-07 0.0130643 1.6586e-06)
(-7.71819e-12 -1.17999e-12 2.57135e-12)
(-1.49048e-11 3.62553e-11 1.11546e-12)
(2.76662e-12 -3.18566e-11 2.96737e-12)
(2.64957e-12 -3.2903e-12 1.05267e-12)
(1.91711e-12 2.39221e-11 6.04159e-13)
(-2.64803e-11 1.39077e-09 -2.23758e-11)
(-9.10831e-10 6.07797e-08 -5.54007e-10)
(-1.76279e-08 1.91823e-06 -7.19935e-10)
(-1.49636e-07 4.24987e-05 3.27695e-07)
(1.11261e-06 0.0140618 2.07911e-06)
(-9.16495e-08 -2.36792e-09 1.6154e-10)
(-7.39299e-09 1.73055e-10 -5.15937e-11)
(-4.01027e-10 2.02169e-10 -1.61763e-11)
(-1.27463e-11 1.7369e-11 7.79138e-14)
(1.62277e-12 6.38711e-11 8.1612e-14)
(-5.85048e-11 3.0626e-09 -5.38107e-11)
(-1.63716e-09 1.12698e-07 -1.10576e-09)
(-2.64565e-08 3.01348e-06 -1.846e-09)
(-1.80962e-07 5.67639e-05 4.50605e-07)
(1.41041e-06 0.0152293 2.63368e-06)
(1.59522e-07 -4.23875e-06 8.81771e-08)
(-8.6962e-08 1.5073e-06 -1.27862e-07)
(-6.09681e-09 1.21552e-07 -9.09611e-09)
(-2.80833e-10 6.51344e-09 -4.32107e-10)
(-1.24697e-11 4.41721e-10 -1.7682e-11)
(-1.5906e-10 7.17299e-09 -1.36549e-10)
(-3.61205e-09 2.18392e-07 -2.32095e-09)
(-5.17973e-08 4.8747e-06 -4.2504e-09)
(-3.71268e-07 7.70693e-05 6.29461e-07)
(5.75954e-07 0.0166144 3.38038e-06)
(1.40107e-13 2.52328e-12 7.86357e-13)
(5.79057e-13 4.79319e-12 1.75899e-13)
(4.39928e-13 -3.98594e-12 9.95089e-13)
(2.28463e-13 -3.19432e-13 3.57016e-13)
(2.32885e-13 -7.59362e-13 5.52683e-13)
(1.38529e-12 -5.64875e-11 6.86134e-12)
(4.64068e-11 -3.30095e-09 3.18442e-10)
(5.58285e-10 -9.99309e-08 1.02118e-08)
(-4.41338e-08 4.94537e-06 1.1302e-07)
(8.34962e-07 0.00888631 1.3545e-06)
(-2.76854e-13 6.96515e-12 -3.7436e-13)
(1.59219e-13 6.24433e-12 9.27062e-14)
(6.07262e-13 -4.81785e-12 1.22856e-12)
(3.78008e-13 -4.4237e-13 4.60729e-13)
(3.95083e-13 -1.39079e-12 7.54735e-13)
(2.44342e-12 -9.64053e-11 1.16368e-11)
(7.81465e-11 -5.03801e-09 4.9832e-10)
(1.1458e-09 -1.32355e-07 1.43653e-08)
(-4.38864e-08 6.6642e-06 1.42994e-07)
(3.24218e-07 0.00931443 1.61696e-06)
(-4.14579e-13 1.0027e-11 -9.51954e-13)
(1.93293e-13 8.22701e-12 -4.23878e-14)
(7.78743e-13 -5.8892e-12 1.53697e-12)
(4.98655e-13 -6.35481e-13 6.06122e-13)
(5.3856e-13 -2.59527e-12 1.07776e-12)
(4.02424e-12 -1.65261e-10 1.99396e-11)
(1.18497e-10 -7.7133e-09 7.80745e-10)
(1.48391e-09 -1.76443e-07 2.02141e-08)
(-5.71761e-08 8.75232e-06 1.82732e-07)
(3.66649e-07 0.00978795 1.93779e-06)
(-5.9531e-13 1.40981e-11 -1.73059e-12)
(2.31888e-13 1.09619e-11 -2.63522e-13)
(1.00911e-12 -7.26318e-12 1.94203e-12)
(6.64984e-13 -9.40329e-13 8.13938e-13)
(7.53169e-13 -4.93974e-12 1.61853e-12)
(6.7253e-12 -2.85802e-10 3.46178e-11)
(1.79828e-10 -1.18467e-08 1.22688e-09)
(1.90283e-09 -2.34486e-07 2.84085e-08)
(-7.36476e-08 1.13891e-05 2.34049e-07)
(4.26608e-07 0.0103145 2.33605e-06)
(-8.34558e-13 1.96256e-11 -2.80585e-12)
(2.8065e-13 1.48023e-11 -6.20023e-13)
(1.328e-12 -9.03347e-12 2.47971e-12)
(9.03586e-13 -1.43479e-12 1.11797e-12)
(1.09359e-12 -9.61984e-12 2.57585e-12)
(1.14319e-11 -5.00592e-10 6.10598e-11)
(2.7374e-10 -1.83041e-08 1.93985e-09)
(2.40669e-09 -3.10753e-07 3.99703e-08)
(-9.44183e-08 1.47543e-05 3.00901e-07)
(5.01386e-07 0.0109036 2.83355e-06)
(-1.15685e-12 2.72911e-11 -4.32602e-12)
(3.43495e-13 2.0296e-11 -1.19207e-12)
(1.77837e-12 -1.13232e-11 3.20167e-12)
(1.25449e-12 -2.26504e-12 1.57726e-12)
(1.66208e-12 -1.9246e-11 4.36936e-12)
(1.9803e-11 -8.91511e-10 1.09758e-10)
(4.18766e-10 -2.85287e-08 3.09576e-09)
(2.98731e-09 -4.10662e-07 5.64345e-08)
(-1.20816e-07 1.90991e-05 3.89033e-07)
(5.95449e-07 0.011567 3.46011e-06)
(-1.59637e-12 3.81456e-11 -6.45014e-12)
(4.24402e-13 2.83447e-11 -2.19311e-12)
(2.42973e-12 -1.42859e-11 4.18105e-12)
(1.78618e-12 -3.73111e-12 2.2986e-12)
(2.66775e-12 -3.97506e-11 7.93376e-12)
(3.50348e-11 -1.62087e-09 2.01788e-10)
(6.44807e-10 -4.49763e-08 5.00259e-09)
(3.60417e-09 -5.40737e-07 8.01507e-08)
(-1.54624e-07 2.47805e-05 5.06951e-07)
(7.15091e-07 0.0123197 4.25728e-06)
(-3.15874e-12 5.38748e-11 -9.55607e-12)
(-1.22351e-12 4.04347e-11 -3.86541e-12)
(3.19871e-12 -1.80941e-11 5.532e-12)
(2.6103e-12 -6.5112e-12 3.49483e-12)
(4.5632e-12 -8.52286e-11 1.54606e-11)
(6.34546e-11 -3.02157e-09 3.80981e-10)
(1.00039e-09 -7.19256e-08 8.21387e-09)
(4.14719e-09 -7.07968e-07 1.14796e-07)
(-1.98238e-07 3.2317e-05 6.67575e-07)
(8.69234e-07 0.013181 5.28388e-06)
(-7.84779e-09 -3.57442e-11 -2.75417e-11)
(-1.00474e-09 8.03628e-11 -6.38909e-11)
(-6.85338e-11 3.33654e-12 -2.85694e-12)
(2.68496e-13 -9.36805e-12 4.85121e-12)
(8.21906e-12 -1.90763e-10 3.23633e-11)
(1.17871e-10 -5.80335e-09 7.42269e-10)
(1.56826e-09 -1.16993e-07 1.37535e-08)
(4.38771e-09 -9.17578e-07 1.66271e-07)
(-2.53977e-07 4.24785e-05 8.91167e-07)
(1.08284e-06 0.0141764 6.62476e-06)
(1.64283e-08 -4.42617e-07 -1.76359e-07)
(-8.18295e-09 1.29693e-07 -5.22837e-08)
(-8.50676e-10 1.61603e-08 -4.57868e-09)
(-4.8623e-11 1.12456e-09 -2.56291e-10)
(1.28464e-11 -3.94434e-10 6.22014e-11)
(2.58031e-10 -1.14758e-08 1.49303e-09)
(3.12556e-09 -1.93647e-07 2.3559e-08)
(1.05165e-08 -1.15345e-06 2.43719e-07)
(-3.21258e-07 5.66145e-05 1.20599e-06)
(4.38963e-07 0.0153396 8.41231e-06)
(-1.8318e-13 6.38564e-12 -2.28436e-12)
(4.157e-13 4.6215e-12 -1.30897e-12)
(3.86072e-13 -3.29145e-12 1.29894e-12)
(2.19901e-13 -6.66404e-13 6.13126e-13)
(2.16762e-13 -1.10828e-12 8.89769e-13)
(2.18362e-12 -9.27035e-11 1.67921e-11)
(1.12832e-10 -7.71975e-09 1.03984e-09)
(2.51141e-09 -3.57924e-07 3.55968e-08)
(-8.02501e-08 2.92008e-06 1.2423e-07)
(5.45841e-07 0.00832009 1.81568e-06)
(-4.33392e-13 8.9277e-12 -3.3055e-12)
(1.13556e-13 5.87867e-12 -1.70891e-12)
(5.49723e-13 -3.99374e-12 1.61111e-12)
(3.65392e-13 -8.88612e-13 7.92887e-13)
(3.67535e-13 -1.78788e-12 1.19986e-12)
(3.7417e-12 -1.54555e-10 2.80759e-11)
(1.84986e-10 -1.17351e-08 1.61169e-09)
(4.54173e-09 -4.90971e-07 5.0088e-08)
(-5.0965e-08 4.04909e-06 1.48764e-07)
(2.37665e-07 0.00867535 2.13151e-06)
(-5.63077e-13 1.15546e-11 -4.31857e-12)
(1.38927e-13 7.65254e-12 -2.27967e-12)
(7.04838e-13 -4.89361e-12 2.01675e-12)
(4.79315e-13 -1.21698e-12 1.04434e-12)
(4.96326e-13 -2.97268e-12 1.67794e-12)
(6.10807e-12 -2.5726e-10 4.70085e-11)
(2.79024e-10 -1.77634e-08 2.48451e-09)
(6.14879e-09 -6.70134e-07 6.99856e-08)
(-6.57234e-08 5.37104e-06 1.80199e-07)
(2.60267e-07 0.00906408 2.51337e-06)
(-7.25805e-13 1.50614e-11 -5.6708e-12)
(1.69387e-13 1.00784e-11 -3.07349e-12)
(9.13115e-13 -6.06586e-12 2.55276e-12)
(6.35034e-13 -1.70568e-12 1.40066e-12)
(6.85053e-13 -5.10102e-12 2.44495e-12)
(1.00579e-11 -4.3071e-10 7.93117e-11)
(4.20302e-10 -2.68965e-08 3.82763e-09)
(8.27016e-09 -9.1169e-07 9.73358e-08)
(-8.41651e-08 6.99149e-06 2.18328e-07)
(2.9414e-07 0.00949125 2.98098e-06)
(-9.42193e-13 1.98251e-11 -7.50652e-12)
(2.09016e-13 1.34564e-11 -4.19572e-12)
(1.20167e-12 -7.6076e-12 3.2702e-12)
(8.56121e-13 -2.44839e-12 1.91695e-12)
(9.77021e-13 -9.04455e-12 3.73428e-12)
(1.67622e-11 -7.28237e-10 1.35283e-10)
(6.34412e-10 -4.08763e-08 5.91331e-09)
(1.10768e-08 -1.23948e-06 1.35117e-07)
(-1.07542e-07 8.99576e-06 2.64639e-07)
(3.3518e-07 0.00996284 3.55564e-06)
(-1.23315e-12 2.64178e-11 -1.00434e-11)
(2.61653e-13 1.8253e-11 -5.81139e-12)
(1.61e-12 -9.66197e-12 4.24614e-12)
(1.17719e-12 -3.60254e-12 2.68334e-12)
(1.44984e-12 -1.65971e-11 6.01248e-12)
(2.83521e-11 -1.24821e-09 2.34052e-10)
(9.62263e-10 -6.25464e-08 9.18949e-09)
(1.47996e-08 -1.68795e-06 1.87662e-07)
(-1.37489e-07 1.14976e-05 3.21177e-07)
(3.84935e-07 0.0104862 4.26636e-06)
(-1.62685e-12 3.57193e-11 -1.36188e-11)
(3.34218e-13 2.52103e-11 -8.18338e-12)
(2.20161e-12 -1.24312e-11 5.5945e-12)
(1.65565e-12 -5.44661e-12 3.85169e-12)
(2.25583e-12 -3.16033e-11 1.02538e-11)
(4.88112e-11 -2.17703e-09 4.12096e-10)
(1.47041e-09 -9.66468e-08 1.44076e-08)
(1.97506e-08 -2.3076e-06 2.61365e-07)
(-1.76282e-07 1.46506e-05 3.90814e-07)
(4.45354e-07 0.0110702 5.15261e-06)
(2.13495e-12 4.91108e-11 -1.87642e-11)
(1.89176e-12 3.55304e-11 -1.17425e-11)
(3.19904e-12 -1.6223e-11 7.49602e-12)
(2.39792e-12 -8.49963e-12 5.69177e-12)
(3.71015e-12 -6.26426e-11 1.85898e-11)
(8.57937e-11 -3.87883e-09 7.41056e-10)
(2.26905e-09 -1.51265e-07 2.28569e-08)
(2.63482e-08 -3.17372e-06 3.65812e-07)
(-2.27146e-07 1.86645e-05 4.77733e-07)
(5.18909e-07 0.0117262 6.26866e-06)
(9.15436e-09 9.75323e-12 -2.53947e-11)
(6.87794e-10 -1.50612e-12 -9.42897e-12)
(3.20313e-11 -4.05601e-11 1.55643e-11)
(4.37498e-12 -1.53184e-11 9.12637e-12)
(6.4847e-12 -1.29873e-10 3.59504e-11)
(1.54332e-10 -7.09002e-09 1.36642e-09)
(3.5423e-09 -2.40567e-07 3.68049e-08)
(3.5145e-08 -4.40079e-06 5.15655e-07)
(-2.94124e-07 2.38308e-05 5.88346e-07)
(6.18845e-07 0.0124683 7.69033e-06)
(2.24084e-08 -2.33308e-07 3.05376e-08)
(8.12328e-09 -1.33904e-07 4.46625e-08)
(5.1766e-10 -9.97365e-09 3.10984e-09)
(1.97274e-11 -4.05092e-10 1.16632e-10)
(1.05146e-11 -2.948e-10 7.70423e-11)
(3.06021e-10 -1.33824e-08 2.59957e-09)
(6.38771e-09 -3.90112e-07 6.03753e-08)
(6.21366e-08 -6.1586e-06 7.33055e-07)
(-2.40379e-07 3.06912e-05 7.27247e-07)
(2.44733e-07 0.0133147 9.53539e-06)
(-2.46893e-13 6.48649e-12 -3.89892e-12)
(3.39762e-13 3.99964e-12 -2.40531e-12)
(3.62208e-13 -3.19473e-12 1.63431e-12)
(2.08967e-13 -1.07021e-12 8.68415e-13)
(1.78172e-13 -8.00287e-13 9.64239e-13)
(1.65589e-12 -6.5457e-11 1.64822e-11)
(1.26967e-10 -8.46481e-09 1.55427e-09)
(3.58313e-09 -4.99117e-07 6.39038e-08)
(-1.03276e-07 9.45815e-07 9.53234e-08)
(2.30884e-07 0.00760893 1.88757e-06)
(-4.56224e-13 8.54124e-12 -5.10305e-12)
(1.05073e-13 5.0619e-12 -3.00739e-12)
(5.29094e-13 -3.90139e-12 2.04338e-12)
(3.50425e-13 -1.39203e-12 1.12485e-12)
(2.99711e-13 -9.73642e-13 1.19151e-12)
(2.64648e-12 -1.0315e-10 2.6084e-11)
(1.99982e-10 -1.25824e-08 2.35534e-09)
(6.2186e-09 -6.7884e-07 8.86311e-08)
(-5.18855e-08 1.56584e-06 1.00489e-07)
(1.53878e-07 0.00788204 2.14964e-06)
(-5.7657e-13 1.08396e-11 -6.44266e-12)
(1.32163e-13 6.55736e-12 -3.85736e-12)
(6.78251e-13 -4.8238e-12 2.58032e-12)
(4.56353e-13 -1.85238e-12 1.48195e-12)
(3.83603e-13 -1.15036e-12 1.47543e-12)
(4.09085e-12 -1.61323e-10 4.1045e-11)
(2.94748e-10 -1.85202e-08 3.529e-09)
(8.35554e-09 -9.13809e-07 1.21505e-07)
(-6.56228e-08 2.24596e-06 1.06869e-07)
(1.59064e-07 0.00817692 2.46657e-06)
(-7.27112e-13 1.39068e-11 -8.23058e-12)
(1.65981e-13 8.58842e-12 -5.01456e-12)
(8.78394e-13 -6.05139e-12 3.29922e-12)
(5.99551e-13 -2.51357e-12 1.98357e-12)
(4.92967e-13 -1.28944e-12 1.82334e-12)
(6.35869e-12 -2.53011e-10 6.48446e-11)
(4.32154e-10 -2.71495e-08 5.26117e-09)
(1.11252e-08 -1.22197e-06 1.65376e-07)
(-8.25377e-08 3.04103e-06 1.1123e-07)
(1.70881e-07 0.00849629 2.84944e-06)
(-9.269e-13 1.80684e-11 -1.06559e-11)
(2.11558e-13 1.13948e-11 -6.61615e-12)
(1.15557e-12 -7.70913e-12 4.27728e-12)
(8.00352e-13 -3.47743e-12 2.701e-12)
(6.39863e-13 -1.29399e-12 2.23358e-12)
(9.97933e-12 -3.9955e-10 1.03235e-10)
(6.32665e-10 -3.97738e-08 7.83254e-09)
(1.47252e-08 -1.62788e-06 2.24111e-07)
(-1.03561e-07 3.97877e-06 1.11695e-07)
(1.84579e-07 0.00884332 3.30896e-06)
(-1.19483e-12 2.38165e-11 -1.40051e-11)
(2.74781e-13 1.53426e-11 -8.87027e-12)
(1.54751e-12 -9.9886e-12 5.63267e-12)
(1.08789e-12 -4.90578e-12 3.746e-12)
(8.3922e-13 -9.44042e-13 2.6769e-12)
(1.58561e-11 -6.37384e-10 1.66067e-10)
(9.27531e-10 -5.84013e-08 1.16775e-08)
(1.94193e-08 -2.16566e-06 3.03069e-07)
(-1.29938e-07 5.09217e-06 1.05752e-07)
(1.99864e-07 0.00922176 3.86062e-06)
(-1.55567e-12 3.19052e-11 -1.87163e-11)
(3.66218e-13 2.10078e-11 -1.21044e-11)
(2.11496e-12 -1.31825e-11 7.54895e-12)
(1.50932e-12 -7.06049e-12 5.30052e-12)
(1.11298e-12 2.43904e-13 3.05467e-12)
(2.55676e-11 -1.02995e-09 2.70566e-10)
(1.36523e-09 -8.61719e-08 1.74783e-08)
(2.5564e-08 -2.88321e-06 4.0974e-07)
(-1.63345e-07 6.42162e-06 8.97949e-08)
(2.16361e-07 0.00963607 4.52482e-06)
(4.3771e-12 4.35186e-11 -2.548e-11)
(2.64714e-12 2.93002e-11 -1.68367e-11)
(3.17291e-12 -1.7767e-11 1.03247e-11)
(2.15069e-12 -1.03691e-11 7.6624e-12)
(1.49432e-12 3.34266e-12 3.09616e-12)
(4.19392e-11 -1.69009e-09 4.47433e-10)
(2.02215e-09 -1.2808e-07 2.63224e-08)
(3.36437e-08 -3.84868e-06 5.54725e-07)
(-2.06093e-07 8.01696e-06 5.84541e-08)
(2.3333e-07 0.0100916 5.3281e-06)
(1.36754e-08 3.02696e-12 -1.14898e-11)
(1.14964e-09 -3.42894e-11 1.49204e-11)
(6.04583e-11 -5.04493e-11 2.723e-11)
(5.33668e-12 -1.80797e-11 1.24966e-11)
(2.04761e-12 1.07002e-11 2.1277e-12)
(7.00958e-11 -2.82339e-09 7.52531e-10)
(3.01934e-09 -1.92224e-07 3.99736e-08)
(4.43072e-08 -5.16045e-06 7.53201e-07)
(-2.61031e-07 9.939e-06 3.85907e-09)
(2.57491e-07 0.0105948 6.30452e-06)
(2.75367e-08 -2.18586e-07 1.08609e-07)
(1.22811e-08 -1.8528e-07 1.02188e-07)
(8.52535e-10 -1.52067e-08 7.67962e-09)
(3.63776e-11 -7.32867e-10 3.37845e-10)
(1.7252e-12 1.11463e-12 9.0399e-12)
(1.1515e-10 -4.83111e-09 1.29435e-09)
(4.81395e-09 -2.92158e-07 6.13705e-08)
(6.95824e-08 -6.9587e-06 1.02645e-06)
(-1.62103e-07 1.23491e-05 -9.10733e-08)
(9.6142e-08 0.0111536 7.50895e-06)
(-2.79538e-13 6.14187e-12 -5.54051e-12)
(3.02887e-13 3.22556e-12 -3.51521e-12)
(3.57188e-13 -3.40461e-12 2.0416e-12)
(1.98203e-13 -1.45352e-12 1.1037e-12)
(1.4225e-13 -5.92991e-13 9.19918e-13)
(1.0124e-12 -3.40527e-11 1.15028e-11)
(1.25784e-10 -8.2908e-09 1.93756e-09)
(3.05433e-09 -4.87127e-07 7.4726e-08)
(-1.04741e-07 -5.5624e-07 6.80023e-08)
(-4.75855e-08 0.00685277 1.77605e-06)
(-4.81412e-13 7.94305e-12 -7.04291e-12)
(1.091e-13 4.10656e-12 -4.33565e-12)
(5.3406e-13 -4.17042e-12 2.57588e-12)
(3.38252e-13 -1.85687e-12 1.43513e-12)
(2.4341e-13 -5.32823e-13 1.06119e-12)
(1.39515e-12 -4.71763e-11 1.59636e-11)
(1.82013e-10 -1.14722e-08 2.75156e-09)
(5.73881e-09 -6.56208e-07 1.04848e-07)
(-4.63764e-08 -2.48464e-07 5.27006e-08)
(9.53393e-08 0.00704979 1.90305e-06)
(-5.99331e-13 1.00261e-11 -8.77505e-12)
(1.40661e-13 5.33815e-12 -5.47142e-12)
(6.84381e-13 -5.18404e-12 3.2847e-12)
(4.37641e-13 -2.42407e-12 1.89477e-12)
(2.99161e-13 -2.89429e-13 1.17721e-12)
(1.86202e-12 -6.11876e-11 2.08436e-11)
(2.50892e-10 -1.56845e-08 3.84303e-09)
(7.68602e-09 -8.70961e-07 1.43115e-07)
(-5.74716e-08 4.67159e-08 3.48301e-08)
(8.84645e-08 0.0072596 2.08712e-06)
(-7.48401e-13 1.28075e-11 -1.10929e-11)
(1.8099e-13 7.00357e-12 -7.00245e-12)
(8.8582e-13 -6.54892e-12 4.2436e-12)
(5.71053e-13 -3.22937e-12 2.54051e-12)
(3.63607e-13 3.00397e-13 1.21674e-12)
(2.45491e-12 -7.75025e-11 2.66326e-11)
(3.45326e-10 -2.1471e-08 5.36259e-09)
(1.01067e-08 -1.14331e-06 1.9197e-07)
(-7.0609e-08 3.62488e-07 1.02389e-08)
(8.67029e-08 0.00748348 2.31923e-06)
(-9.46586e-13 1.65838e-11 -1.42457e-11)
(2.36468e-13 9.29322e-12 -9.09864e-12)
(1.16457e-12 -8.41756e-12 5.56319e-12)
(7.56897e-13 -4.39191e-12 3.46425e-12)
(4.39065e-13 1.52169e-12 1.08216e-12)
(3.27691e-12 -9.82989e-11 3.41332e-11)
(4.77433e-10 -2.9556e-08 7.52087e-09)
(1.31406e-08 -1.48925e-06 2.54984e-07)
(-8.63991e-08 7.06582e-07 -2.43755e-08)
(8.52496e-08 0.00772291 2.59512e-06)
(-1.21275e-12 2.18034e-11 -1.86115e-11)
(3.14938e-13 1.24953e-11 -1.20166e-11)
(1.55804e-12 -1.10241e-11 7.41294e-12)
(1.02088e-12 -6.1015e-12 4.81096e-12)
(5.22549e-13 3.95047e-12 5.62046e-13)
(4.46182e-12 -1.25749e-10 4.40761e-11)
(6.64337e-10 -4.0971e-08 1.06082e-08)
(1.69595e-08 -1.93005e-06 3.3646e-07)
(-1.05573e-07 1.08518e-06 -7.3578e-08)
(8.31458e-08 0.00797954 2.91596e-06)
(-1.57185e-12 2.91573e-11 -2.47768e-11)
(4.30933e-13 1.70557e-11 -1.61533e-11)
(2.12656e-12 -1.47388e-11 1.00618e-11)
(1.40431e-12 -8.66636e-12 6.81626e-12)
(6.04797e-13 8.64101e-12 -7.49269e-13)
(6.22359e-12 -1.62831e-10 5.76369e-11)
(9.30956e-10 -5.72112e-08 1.50599e-08)
(2.17855e-08 -2.49408e-06 4.42108e-07)
(-1.29017e-07 1.5035e-06 -1.4311e-07)
(7.94248e-08 0.0082553 3.285e-06)
(5.00107e-12 3.97335e-11 -3.36723e-11)
(2.93838e-12 2.3666e-11 -2.21303e-11)
(3.20589e-12 -2.01747e-11 1.39543e-11)
(1.98341e-12 -1.26118e-11 9.8815e-12)
(6.63421e-13 1.76117e-11 -3.6555e-12)
(8.92029e-12 -2.13512e-10 7.6448e-11)
(1.31424e-09 -8.04877e-08 2.15227e-08)
(2.79049e-08 -3.21929e-06 5.79505e-07)
(-1.57885e-07 1.96572e-06 -2.40792e-07)
(7.2907e-08 0.00855239 3.70645e-06)
(1.47994e-08 1.46885e-12 -6.57187e-12)
(1.25185e-09 -4.21126e-11 2.5378e-11)
(6.87835e-11 -5.33518e-11 3.70997e-11)
(5.46176e-12 -2.12922e-11 1.62127e-11)
(6.81419e-13 3.47253e-11 -9.72607e-12)
(1.31347e-11 -2.82685e-10 1.02693e-10)
(1.86962e-09 -1.14115e-07 3.09722e-08)
(3.57105e-08 -4.15711e-06 7.58847e-07)
(-1.93537e-07 2.4747e-06 -3.7758e-07)
(6.81367e-08 0.00887339 4.18424e-06)
(2.91686e-08 -1.99395e-07 1.56285e-07)
(1.31798e-08 -1.79521e-07 1.38653e-07)
(8.94664e-10 -1.45921e-08 1.01846e-08)
(3.88853e-11 -7.37614e-10 4.61574e-10)
(1.71525e-13 4.09237e-11 -7.73999e-12)
(1.27651e-11 -3.77607e-10 1.39838e-10)
(2.68685e-09 -1.62971e-07 4.48479e-08)
(5.17518e-08 -5.37623e-06 9.93545e-07)
(-1.03631e-07 3.08552e-06 -5.73156e-07)
(2.14015e-08 0.0092213 4.73158e-06)
(-3.33592e-13 5.8012e-12 -7.98636e-12)
(2.81666e-13 2.34275e-12 -5.15219e-12)
(3.6999e-13 -3.86772e-12 2.57126e-12)
(1.90813e-13 -1.81866e-12 1.31794e-12)
(1.21994e-13 -8.50103e-13 9.84542e-13)
(-9.94636e-14 1.47364e-11 -5.0399e-12)
(4.82266e-11 -3.04653e-09 8.58365e-10)
(2.39684e-09 -3.85233e-07 6.95905e-08)
(-8.964e-08 -1.59108e-06 6.43425e-08)
(-2.738e-07 0.00612365 1.21109e-06)
(-5.55627e-13 7.50879e-12 -1.00318e-11)
(1.09728e-13 3.05781e-12 -6.31679e-12)
(5.68839e-13 -4.73883e-12 3.28145e-12)
(3.32805e-13 -2.28402e-12 1.72548e-12)
(2.13534e-13 -7.57967e-13 1.08731e-12)
(1.31394e-13 8.02915e-12 -2.23871e-12)
(9.86782e-11 -6.48525e-09 1.89372e-09)
(3.70017e-09 -5.15153e-07 9.59563e-08)
(-3.69905e-08 -1.38797e-06 3.91608e-08)
(7.52462e-08 0.0062581 1.76661e-06)
(-6.87882e-13 9.51654e-12 -1.24506e-11)
(1.44492e-13 4.06962e-12 -7.92303e-12)
(7.29698e-13 -5.89887e-12 4.23035e-12)
(4.28756e-13 -2.93145e-12 2.29078e-12)
(2.57719e-13 -5.50427e-13 1.17306e-12)
(1.9963e-13 1.00628e-11 -2.79395e-12)
(1.5628e-10 -9.98013e-09 2.98791e-09)
(5.24878e-09 -6.75177e-07 1.28889e-07)
(-4.52049e-08 -1.24985e-06 8.40424e-09)
(5.53022e-08 0.00639946 1.7173e-06)
(-8.5565e-13 1.22096e-11 -1.57127e-11)
(1.89662e-13 5.4393e-12 -1.00815e-11)
(9.4549e-13 -7.47068e-12 5.52574e-12)
(5.56584e-13 -3.84023e-12 3.08432e-12)
(3.10178e-13 -1.58243e-13 1.21752e-12)
(8.93232e-14 2.17462e-11 -7.30388e-12)
(2.17636e-10 -1.37358e-08 4.20827e-09)
(7.02756e-09 -8.72453e-07 1.70933e-07)
(-5.46281e-08 -1.13809e-06 -2.83376e-08)
(4.44118e-08 0.00654826 1.78123e-06)
(-1.08009e-12 1.58857e-11 -2.019e-11)
(2.52791e-13 7.3234e-12 -1.3028e-11)
(1.24435e-12 -9.63659e-12 7.32434e-12)
(7.33624e-13 -5.13659e-12 4.22042e-12)
(3.75231e-13 5.2109e-13 1.18097e-12)
(-4.74769e-14 3.83589e-11 -1.40989e-11)
(2.9635e-10 -1.84834e-08 5.80596e-09)
(9.13388e-09 -1.11558e-06 2.26302e-07)
(-6.54541e-08 -1.04095e-06 -7.79892e-08)
(3.57727e-08 0.00670512 1.88569e-06)
(-1.38371e-12 2.09994e-11 -2.64595e-11)
(3.43753e-13 9.95793e-12 -1.7121e-11)
(1.66676e-12 -1.26794e-11 9.87082e-12)
(9.83923e-13 -7.02576e-12 5.87896e-12)
(4.50078e-13 1.87103e-12 8.93525e-13)
(-4.56976e-13 7.30991e-11 -2.85312e-11)
(4.0019e-10 -2.46357e-08 7.90457e-09)
(1.16737e-08 -1.41422e-06 2.93798e-07)
(-7.79952e-08 -9.55095e-07 -1.40233e-07)
(2.72962e-08 0.00687069 2.01572e-06)
(-1.79788e-12 2.82644e-11 -3.54489e-11)
(4.82741e-13 1.36984e-11 -2.28833e-11)
(2.27761e-12 -1.70476e-11 1.35501e-11)
(1.34518e-12 -9.84122e-12 8.35359e-12)
(5.34723e-13 4.33775e-12 1.5091e-13)
(-1.24624e-12 1.32775e-10 -5.37899e-11)
(5.37926e-10 -3.27435e-08 1.07178e-08)
(1.47728e-08 -1.78166e-06 3.77801e-07)
(-9.27349e-08 -8.79604e-07 -2.20751e-07)
(1.78366e-08 0.00704572 2.16266e-06)
(4.61695e-12 3.88323e-11 -4.86744e-11)
(3.06536e-12 1.90731e-11 -3.10913e-11)
(3.42215e-12 -2.35009e-11 1.90291e-11)
(1.88764e-12 -1.41479e-11 1.21326e-11)
(6.25879e-13 8.73256e-12 -1.43407e-12)
(-2.62079e-12 2.31737e-10 -9.62728e-11)
(7.23181e-10 -4.35219e-08 1.45245e-08)
(1.85734e-08 -2.23471e-06 4.82725e-07)
(-1.1017e-07 -8.15588e-07 -3.25482e-07)
(6.43406e-09 0.00723104 2.32028e-06)
(1.43979e-08 5.97335e-12 -1.55086e-11)
(1.2615e-09 -3.90648e-11 2.49085e-11)
(7.24453e-11 -5.51953e-11 4.7697e-11)
(5.5737e-12 -2.30291e-11 1.97934e-11)
(7.63991e-13 1.64516e-11 -4.5213e-12)
(-4.95677e-12 3.94295e-10 -1.66948e-10)
(9.7407e-10 -5.79515e-08 1.97015e-08)
(2.3249e-08 -2.79483e-06 6.13972e-07)
(-1.30855e-07 -7.6586e-07 -4.61682e-07)
(-3.48466e-09 0.00742758 2.48206e-06)
(3.01421e-08 -1.81165e-07 2.09342e-07)
(1.28535e-08 -1.52589e-07 1.59227e-07)
(8.7988e-10 -1.27026e-08 1.194e-08)
(3.84956e-11 -6.66266e-10 5.4793e-10)
(1.00999e-12 5.07182e-12 7.12448e-12)
(-1.26811e-11 6.57887e-10 -2.8255e-10)
(1.27016e-09 -7.73806e-08 2.678e-08)
(3.16835e-08 -3.4892e-06 7.78412e-07)
(-6.53083e-08 -7.02102e-07 -6.43063e-07)
(-4.66195e-09 0.00763639 2.64914e-06)
(-4.81069e-13 5.49471e-12 -1.29211e-11)
(2.48351e-13 1.12381e-12 -8.43057e-12)
(4.06253e-13 -4.72745e-12 3.3233e-12)
(1.88765e-13 -2.22451e-12 1.51446e-12)
(1.09402e-13 -1.23516e-12 1.10352e-12)
(-1.01337e-13 1.12733e-11 -4.59837e-12)
(2.95689e-11 -1.71802e-09 5.96242e-10)
(1.52307e-09 -2.47802e-07 5.29983e-08)
(-6.74543e-08 -1.75919e-06 3.53018e-08)
(-4.74483e-07 0.00546241 1.3843e-07)
(-7.71352e-13 7.26411e-12 -1.62602e-11)
(7.26274e-14 1.67451e-12 -1.03923e-11)
(6.48543e-13 -5.78359e-12 4.30827e-12)
(3.39366e-13 -2.7498e-12 2.0064e-12)
(2.03189e-13 -1.36153e-12 1.31499e-12)
(-2.83659e-13 2.21489e-11 -9.71454e-12)
(4.17378e-11 -2.50494e-09 8.78197e-10)
(2.64378e-09 -3.43936e-07 7.42917e-08)
(-2.89264e-08 -2.20401e-06 6.76928e-08)
(-2.74316e-08 0.00554887 3.7411e-07)
(-9.56864e-13 9.38622e-12 -2.03444e-11)
(1.01604e-13 2.4685e-12 -1.30824e-11)
(8.36042e-13 -7.20031e-12 5.6426e-12)
(4.3664e-13 -3.47309e-12 2.68984e-12)
(2.51435e-13 -1.54838e-12 1.60365e-12)
(-6.44089e-13 4.11685e-11 -1.90077e-11)
(5.02535e-11 -2.93638e-09 1.04921e-09)
(3.54048e-09 -4.53099e-07 1.00004e-07)
(-3.41072e-08 -1.98603e-06 2.50021e-08)
(7.72306e-08 0.00563908 1.02637e-06)
(-1.20145e-12 1.22724e-11 -2.59801e-11)
(1.39034e-13 3.56123e-12 -1.67258e-11)
(1.089e-12 -9.12922e-12 7.48902e-12)
(5.6537e-13 -4.47484e-12 3.64881e-12)
(3.11107e-13 -1.72012e-12 1.93591e-12)
(-1.02756e-12 6.48652e-11 -3.09121e-11)
(6.41795e-11 -3.96451e-09 1.4513e-09)
(4.01316e-09 -5.83693e-07 1.32258e-07)
(-3.98593e-08 -1.89765e-06 -1.34796e-08)
(4.16164e-08 0.0057329 1.53629e-06)
(-1.53848e-12 1.62841e-11 -3.39458e-11)
(1.94841e-13 5.08607e-12 -2.17104e-11)
(1.44172e-12 -1.18074e-11 1.0101e-11)
(7.4249e-13 -5.88085e-12 5.01425e-12)
(3.76277e-13 -1.55946e-12 2.11865e-12)
(-1.15307e-12 7.78144e-11 -3.74207e-11)
(1.28486e-10 -8.14546e-09 3.05979e-09)
(4.98856e-09 -7.35571e-07 1.70683e-07)
(-4.64754e-08 -1.85316e-06 -6.13374e-08)
(2.42456e-08 0.00583062 1.47748e-06)
(-2.01218e-12 2.20001e-11 -4.55359e-11)
(2.79622e-13 7.23321e-12 -2.86006e-11)
(1.9452e-12 -1.56054e-11 1.38865e-11)
(9.92452e-13 -7.90952e-12 7.01083e-12)
(4.64111e-13 -1.41746e-12 2.41019e-12)
(-1.82006e-12 1.1476e-10 -5.6425e-11)
(1.85177e-10 -1.13991e-08 4.38314e-09)
(6.76319e-09 -9.17935e-07 2.17994e-07)
(-5.45689e-08 -1.84065e-06 -1.17449e-07)
(1.14498e-08 0.0059325 1.44166e-06)
(-2.69557e-12 3.03543e-11 -6.29812e-11)
(4.11593e-13 1.0273e-11 -3.82474e-11)
(2.67915e-12 -2.10991e-11 1.95047e-11)
(1.35456e-12 -1.09017e-11 9.99735e-12)
(5.8159e-13 -1.13226e-12 2.745e-12)
(-2.88979e-12 1.73127e-10 -8.70348e-11)
(2.47822e-10 -1.50443e-08 5.91978e-09)
(8.5634e-09 -1.13508e-06 2.75836e-07)
(-6.34296e-08 -1.85149e-06 -1.85632e-07)
(3.93869e-10 0.00603878 1.44216e-06)
(2.96142e-12 4.297e-11 -9.04095e-11)
(2.8098e-12 1.45439e-11 -5.17757e-11)
(3.99354e-12 -2.92243e-11 2.80687e-11)
(1.89646e-12 -1.54172e-11 1.45762e-11)
(7.41726e-13 -6.69568e-13 3.15847e-12)
(-4.40926e-12 2.55845e-10 -1.31406e-10)
(3.26212e-10 -1.94877e-08 7.85757e-09)
(1.068e-08 -1.39375e-06 3.47964e-07)
(-7.35741e-08 -1.88234e-06 -2.7178e-07)
(-1.05821e-08 0.00614975 1.45056e-06)
(1.20426e-08 2.09019e-11 -8.49142e-11)
(1.29982e-09 -3.4951e-11 1.08361e-11)
(5.14736e-11 -5.79995e-11 5.94138e-11)
(4.96471e-12 -2.40449e-11 2.34852e-11)
(1.00938e-12 1.33137e-13 3.66823e-12)
(-6.74296e-12 3.81348e-10 -1.99527e-10)
(4.26836e-10 -2.5011e-08 1.03225e-08)
(1.31896e-08 -1.70222e-06 4.3505e-07)
(-8.5126e-08 -1.93289e-06 -3.77857e-07)
(-1.93985e-08 0.00626574 1.45759e-06)
(3.31184e-08 -1.7058e-07 3.27924e-07)
(1.03742e-08 -1.05383e-07 1.37192e-07)
(8.44677e-10 -1.09174e-08 1.32616e-08)
(2.67696e-11 -3.9566e-10 4.39449e-10)
(1.4992e-12 -1.51447e-11 2.09008e-11)
(-1.18954e-11 5.6948e-10 -3.02591e-10)
(5.20172e-10 -3.19654e-08 1.34937e-08)
(1.72473e-08 -2.06954e-06 5.39741e-07)
(-4.1431e-08 -1.98532e-06 -5.11032e-07)
(-8.95065e-09 0.00638708 1.46116e-06)
(-9.51009e-13 4.47941e-12 -2.58312e-11)
(9.25343e-14 -1.35552e-12 -1.72116e-11)
(4.86678e-13 -6.42434e-12 4.51618e-12)
(1.93013e-13 -2.8313e-12 1.69579e-12)
(9.92205e-14 -1.59904e-12 1.18216e-12)
(-7.3996e-14 6.97245e-12 -3.38249e-12)
(1.10975e-11 -5.78032e-10 2.37494e-10)
(6.51897e-10 -1.24644e-07 2.94032e-08)
(-4.20611e-08 -1.27382e-06 -2.08911e-08)
(-3.33157e-07 0.00488547 -1.36252e-07)
(-1.4605e-12 6.46225e-12 -3.35532e-11)
(-1.61813e-13 -1.16113e-12 -2.17797e-11)
(8.10635e-13 -7.86553e-12 5.97021e-12)
(3.65457e-13 -3.44674e-12 2.29213e-12)
(1.989e-13 -1.868e-12 1.48883e-12)
(-1.38922e-13 1.27077e-11 -6.55317e-12)
(1.58361e-11 -9.38105e-10 3.95949e-10)
(1.15853e-09 -1.85273e-07 4.53534e-08)
(-2.53452e-08 -1.34554e-06 -3.52144e-08)
(-1.32622e-07 0.00493728 -3.59291e-07)
(-1.89848e-12 8.89356e-12 -4.38794e-11)
(-2.09536e-13 -7.94526e-13 -2.81495e-11)
(1.05394e-12 -9.81267e-12 7.96514e-12)
(4.71359e-13 -4.28352e-12 3.12205e-12)
(2.48034e-13 -2.21995e-12 1.89206e-12)
(-2.81697e-13 2.09891e-11 -1.13478e-11)
(2.32496e-11 -1.3635e-09 5.9413e-10)
(1.68806e-09 -2.58869e-07 6.59537e-08)
(-2.7668e-08 -1.91577e-06 1.06821e-08)
(-2.12613e-07 0.00499052 -1.25618e-07)
(-2.52027e-12 1.23519e-11 -5.89723e-11)
(-2.90444e-13 -2.27545e-13 -3.71099e-11)
(1.38415e-12 -1.24838e-11 1.07627e-11)
(6.11747e-13 -5.42876e-12 4.28951e-12)
(3.0901e-13 -2.66637e-12 2.42014e-12)
(-5.06059e-13 3.35603e-11 -1.882e-11)
(3.35614e-11 -1.88103e-09 8.41131e-10)
(2.34595e-09 -3.42821e-07 8.99618e-08)
(-2.92559e-08 -2.37513e-06 3.96779e-08)
(-6.38406e-08 0.00504553 -4.46632e-09)
(-3.44965e-12 1.74145e-11 -8.18449e-11)
(-4.2879e-13 6.49584e-13 -5.00495e-11)
(1.8434e-12 -1.61993e-11 1.47301e-11)
(8.04944e-13 -7.01966e-12 5.95759e-12)
(3.88731e-13 -3.23181e-12 3.12151e-12)
(-9.52447e-13 5.64931e-11 -3.25847e-11)
(4.20822e-11 -2.25367e-09 1.02218e-09)
(3.06125e-09 -4.35974e-07 1.15267e-07)
(-3.30801e-08 -2.27177e-06 -3.95174e-09)
(4.96927e-08 0.00510257 5.12768e-07)
(-4.89569e-12 2.51093e-11 -1.18065e-10)
(-6.67692e-13 2.00619e-12 -6.92858e-11)
(2.48967e-12 -2.14514e-11 2.043e-11)
(1.07553e-12 -9.26351e-12 8.38015e-12)
(4.96439e-13 -4.02947e-12 4.10668e-12)
(-1.54598e-12 8.63821e-11 -5.11602e-11)
(5.13366e-11 -2.68332e-09 1.25072e-09)
(3.82619e-09 -5.43786e-07 1.47022e-07)
(-3.79959e-08 -2.20608e-06 -5.32129e-08)
(2.92466e-08 0.00516145 9.52638e-07)
(-7.29037e-12 3.74433e-11 -1.79078e-10)
(-1.10265e-12 4.08535e-12 -9.88617e-11)
(3.41331e-12 -2.90326e-11 2.88004e-11)
(1.45975e-12 -1.24744e-11 1.19569e-11)
(6.43817e-13 -5.10238e-12 5.46245e-12)
(-2.27137e-12 1.26156e-10 -7.64784e-11)
(6.3813e-11 -3.40954e-09 1.63276e-09)
(4.36479e-09 -6.68249e-07 1.85057e-07)
(-4.28113e-08 -2.1939e-06 -1.06175e-07)
(1.09667e-08 0.00522226 1.29292e-06)
(-3.49244e-12 5.86354e-11 -2.89486e-10)
(-4.72221e-13 7.26435e-12 -1.46574e-10)
(5.32704e-12 -4.01721e-11 4.12691e-11)
(2.02521e-12 -1.71298e-11 1.73284e-11)
(8.33834e-13 -6.23281e-12 7.07509e-12)
(-3.00052e-12 1.67586e-10 -1.0332e-10)
(1.07291e-10 -6.15058e-09 2.97835e-09)
(5.11151e-09 -8.09562e-07 2.29354e-07)
(-4.8186e-08 -2.20726e-06 -1.70153e-07)
(-2.32888e-09 0.00528514 1.11502e-06)
(3.58051e-09 4.55357e-11 -4.01268e-10)
(3.04787e-09 -6.71039e-11 9.82413e-11)
(1.09711e-10 -6.44412e-11 6.0799e-11)
(1.83304e-12 -2.73049e-11 2.89526e-11)
(8.35472e-13 -8.00827e-12 9.51925e-12)
(-4.26328e-12 2.30126e-10 -1.44431e-10)
(1.58282e-10 -9.00013e-09 4.4467e-09)
(6.49423e-09 -9.72858e-07 2.81851e-07)
(-5.4684e-08 -2.24347e-06 -2.44343e-07)
(-1.18382e-08 0.00535018 1.01234e-06)
(8.04203e-08 -2.52074e-07 1.3505e-06)
(4.89785e-09 -2.31274e-08 2.91634e-08)
(1.57451e-09 -1.95596e-08 2.53525e-08)
(2.16376e-11 -5.98271e-10 2.942e-10)
(-4.3572e-13 -1.23856e-13 -1.92814e-11)
(-6.90488e-12 3.25027e-10 -2.0842e-10)
(1.89125e-10 -1.16584e-08 5.90059e-09)
(8.51012e-09 -1.16182e-06 3.43892e-07)
(-2.67559e-08 -2.28844e-06 -3.32734e-07)
(-4.69956e-09 0.00541747 9.36064e-07)
(-2.44179e-12 -2.2479e-12 -6.2888e-11)
(-1.33285e-13 -7.85561e-12 -3.55136e-11)
(6.69913e-13 -1.02912e-11 7.08157e-12)
(2.10062e-13 -3.95527e-12 1.93444e-12)
(8.52688e-14 -2.08746e-12 1.00942e-12)
(-1.12304e-14 1.47196e-12 -1.0579e-12)
(2.13691e-12 -2.99789e-11 2.49553e-11)
(1.4272e-10 -3.46204e-08 8.58993e-09)
(-1.85343e-08 -1.15828e-06 -1.80087e-08)
(-3.49533e-07 0.00439397 -3.95965e-07)
(-3.28534e-12 3.64598e-13 -8.13369e-11)
(-5.27302e-13 -9.09398e-12 -4.59799e-11)
(1.17944e-12 -1.28118e-11 9.36763e-12)
(4.29703e-13 -4.78258e-12 2.68682e-12)
(1.95985e-13 -2.44389e-12 1.34402e-12)
(-6.59836e-15 4.38794e-12 -2.94077e-12)
(4.44029e-12 -1.85689e-10 1.01095e-10)
(3.39476e-10 -7.37591e-08 1.95734e-08)
(-1.89668e-08 -1.26646e-06 -2.13973e-08)
(-2.83496e-08 0.00442109 -3.345e-07)
(-4.16536e-12 3.00364e-12 -1.06335e-10)
(-6.68183e-13 -1.07623e-11 -6.0714e-11)
(1.54789e-12 -1.62738e-11 1.24081e-11)
(5.58727e-13 -5.90531e-12 3.74111e-12)
(2.46778e-13 -2.90954e-12 1.79706e-12)
(-7.39278e-14 8.66765e-12 -5.83316e-12)
(7.55722e-12 -3.67271e-10 1.94708e-10)
(5.93246e-10 -1.17173e-07 3.23864e-08)
(-2.09145e-08 -1.28853e-06 -4.17325e-08)
(-7.97307e-09 0.00444901 -6.07561e-07)
(-5.34287e-12 6.84876e-12 -1.42052e-10)
(-8.41462e-13 -1.30518e-11 -8.16347e-11)
(2.05282e-12 -2.11404e-11 1.65624e-11)
(7.31025e-13 -7.44244e-12 5.24416e-12)
(3.09601e-13 -3.52342e-12 2.40668e-12)
(-1.82953e-13 1.4854e-11 -1.01586e-11)
(1.14165e-11 -5.79704e-10 3.10598e-10)
(8.90223e-10 -1.66045e-07 4.74672e-08)
(-2.3788e-08 -1.31117e-06 -6.58895e-08)
(-1.08758e-07 0.00447771 -9.18644e-07)
(-6.91444e-12 1.25894e-11 -1.94739e-10)
(-1.02991e-12 -1.63565e-11 -1.11832e-10)
(2.76388e-12 -2.81587e-11 2.22831e-11)
(9.68716e-13 -9.58775e-12 7.4069e-12)
(3.93162e-13 -4.35122e-12 3.24556e-12)
(-3.4332e-13 2.3578e-11 -1.64256e-11)
(1.60288e-11 -8.11762e-10 4.49831e-10)
(1.25174e-09 -2.23432e-07 6.61067e-08)
(-2.59047e-08 -1.74632e-06 -3.34113e-08)
(-1.96421e-07 0.00450705 -7.05346e-07)
(-8.91465e-12 2.14149e-11 -2.74508e-10)
(-1.1276e-12 -2.14525e-11 -1.55386e-10)
(3.78109e-12 -3.8571e-11 3.02056e-11)
(1.30011e-12 -1.26384e-11 1.05325e-11)
(5.0596e-13 -5.47043e-12 4.41758e-12)
(-5.70684e-13 3.55982e-11 -2.53506e-11)
(2.16448e-11 -1.07887e-09 6.16005e-10)
(1.66129e-09 -2.87545e-07 8.77474e-08)
(-2.76567e-08 -2.14162e-06 -8.98407e-09)
(-1.67096e-07 0.00453724 -5.32333e-07)
(-1.13093e-11 3.52025e-11 -4.01414e-10)
(-8.361e-13 -3.02944e-11 -2.18953e-10)
(5.24998e-12 -5.45444e-11 4.09307e-11)
(1.76432e-12 -1.70607e-11 1.50382e-11)
(6.58102e-13 -7.00234e-12 6.06297e-12)
(-8.9149e-13 5.22973e-11 -3.80389e-11)
(2.92767e-11 -1.3903e-09 8.16805e-10)
(2.15353e-09 -3.5902e-07 1.12532e-07)
(-2.93375e-08 -2.47004e-06 2.40867e-09)
(-4.16586e-08 0.00456831 -3.88609e-07)
(-5.47871e-12 5.71652e-11 -6.06107e-10)
(-1.5624e-11 -4.75965e-11 -3.11862e-10)
(9.13717e-12 -8.01525e-11 5.50672e-11)
(2.58181e-12 -2.35968e-11 2.13956e-11)
(8.72949e-13 -9.1045e-12 8.36985e-12)
(-1.41206e-12 7.84061e-11 -5.79496e-11)
(3.64524e-11 -1.62224e-09 9.78401e-10)
(2.67472e-09 -4.36803e-07 1.38739e-07)
(-3.24468e-08 -2.34289e-06 -5.63899e-08)
(4.58692e-08 0.00460046 1.28268e-07)
(-6.05208e-08 1.03926e-10 -4.25157e-09)
(3.37197e-09 -1.71969e-10 7.68135e-10)
(1.01939e-09 -4.81493e-11 2.20451e-11)
(7.91896e-11 -4.18054e-11 5.07423e-11)
(4.33408e-12 -1.2839e-11 1.29319e-11)
(-2.08888e-12 1.12822e-10 -8.48949e-11)
(4.44886e-11 -1.89893e-09 1.18223e-09)
(3.2683e-09 -5.2455e-07 1.696e-07)
(-3.62104e-08 -2.30299e-06 -1.10922e-07)
(1.62857e-08 0.00463347 5.26199e-07)
(1.56744e-07 -1.40092e-07 3.89283e-06)
(-1.47131e-08 3.0164e-07 -2.37473e-07)
(6.24938e-09 -2.23571e-08 1.1319e-07)
(6.34435e-10 -5.33494e-09 1.29133e-08)
(2.78246e-11 -3.79334e-10 6.26501e-10)
(-2.74121e-12 1.43664e-10 -1.04034e-10)
(4.16402e-11 -2.13193e-09 1.38576e-09)
(4.00002e-09 -6.23265e-07 2.05961e-07)
(-1.81266e-08 -2.29707e-06 -1.69778e-07)
(6.91248e-09 0.0046674 8.68054e-07)
(5.33019e-12 -6.46956e-12 3.05218e-11)
(5.6867e-12 -3.58154e-12 4.32106e-11)
(2.45212e-12 -1.16446e-11 3.89312e-11)
(4.25791e-13 -5.44833e-12 6.38995e-12)
(-1.8639e-14 -3.33663e-12 -2.43586e-12)
(-1.14098e-13 -3.62913e-12 -4.81799e-12)
(-1.34074e-12 1.22414e-10 -6.57185e-11)
(-9.167e-11 2.70685e-08 -7.83464e-09)
(2.43683e-09 -5.98586e-07 7.64817e-08)
(-2.01707e-07 0.00398325 4.44368e-06)
(3.64483e-12 -5.79267e-12 1.95211e-11)
(6.06749e-12 -4.25263e-12 5.22696e-11)
(3.67101e-12 -1.50507e-11 5.21111e-11)
(7.97743e-13 -6.74965e-12 9.05362e-12)
(1.03839e-13 -3.81102e-12 -2.41396e-12)
(-8.24185e-14 -2.55668e-12 -6.3071e-12)
(3.07275e-13 6.69245e-11 -3.49047e-11)
(-4.55149e-11 2.3718e-09 -8.88756e-10)
(-1.44842e-08 -7.00442e-07 3.06999e-08)
(-6.43775e-08 0.00399301 4.13883e-06)
(3.77718e-12 -4.46238e-12 2.05664e-12)
(8.08307e-12 -5.61109e-12 6.69045e-11)
(5.04156e-12 -1.99335e-11 7.13885e-11)
(1.087e-12 -8.601e-12 1.30747e-11)
(1.53523e-13 -4.43429e-12 -2.28253e-12)
(-1.20771e-13 -7.65806e-13 -8.54344e-12)
(1.45483e-12 1.32133e-11 -1.12794e-12)
(7.70606e-11 -2.53317e-08 7.41451e-09)
(-1.60391e-08 -8.98057e-07 -5.90831e-09)
(-5.91849e-08 0.00400311 3.74184e-06)
(3.69703e-12 -1.95892e-12 -2.60803e-11)
(1.10373e-11 -7.7368e-12 8.82903e-11)
(7.08621e-12 -2.70761e-11 1.00085e-10)
(1.50639e-12 -1.12933e-11 1.92122e-11)
(2.21279e-13 -5.25777e-12 -1.97499e-12)
(-1.81301e-13 1.88382e-12 -1.17046e-11)
(2.80703e-12 -4.27345e-11 3.83729e-11)
(2.1674e-10 -5.53792e-08 1.69259e-08)
(-1.76843e-08 -9.75385e-07 -6.35723e-08)
(-2.5301e-08 0.00401379 4.17206e-06)
(3.56377e-12 2.50499e-12 -7.06559e-11)
(1.54927e-11 -1.12193e-11 1.20855e-10)
(1.02409e-11 -3.78148e-11 1.43935e-10)
(2.14398e-12 -1.53427e-11 2.88623e-11)
(3.16172e-13 -6.37918e-12 -1.36695e-12)
(-2.70148e-13 5.64758e-12 -1.61459e-11)
(4.35073e-12 -9.38003e-11 8.06615e-11)
(3.78123e-10 -8.82856e-08 2.79066e-08)
(-1.95862e-08 -1.05281e-06 -1.30601e-07)
(-2.53851e-08 0.00402485 4.21109e-06)
(3.49034e-12 1.02322e-11 -1.43808e-10)
(2.25174e-11 -1.71199e-11 1.72161e-10)
(1.52715e-11 -5.43293e-11 2.12423e-10)
(3.152e-12 -2.16694e-11 4.45793e-11)
(4.53753e-13 -7.95234e-12 -2.29432e-13)
(-3.9492e-13 1.08595e-11 -2.22468e-11)
(6.13799e-12 -1.40491e-10 1.26697e-10)
(5.62163e-10 -1.24399e-07 4.05335e-08)
(-2.16804e-08 -1.12768e-06 -2.05059e-07)
(-3.01409e-08 0.00403632 4.33644e-06)
(3.9851e-12 2.36479e-11 -2.6016e-10)
(3.43706e-11 -2.79321e-11 2.59147e-10)
(2.36858e-11 -8.08359e-11 3.23839e-10)
(4.82883e-12 -3.20558e-11 7.13607e-11)
(6.62634e-13 -1.02473e-11 1.8717e-12)
(-5.71805e-13 1.79392e-11 -3.05389e-11)
(8.21942e-12 -1.80371e-10 1.76551e-10)
(7.77281e-10 -1.6411e-07 5.50232e-08)
(-2.43196e-08 -1.2198e-06 -2.84346e-07)
(-1.25011e-07 0.0040482 4.57106e-06)
(1.63393e-10 4.67753e-11 -4.46651e-10)
(-1.23833e-11 -4.81388e-11 4.12022e-10)
(2.76511e-11 -1.25559e-10 5.13994e-10)
(7.28799e-12 -5.00887e-11 1.19435e-10)
(9.71778e-13 -1.37878e-11 5.82179e-12)
(-8.13752e-13 2.74417e-11 -4.17126e-11)
(1.04816e-11 -1.93323e-10 2.23659e-10)
(1.03137e-09 -2.09219e-07 7.22667e-08)
(-2.65379e-08 -1.6459e-06 -3.17086e-07)
(-1.92196e-07 0.00406032 5.11444e-06)
(-1.73249e-07 -7.35301e-10 9.43436e-09)
(-4.55308e-08 -6.79282e-10 4.39561e-09)
(-4.69683e-09 2.53199e-11 -9.63002e-11)
(-2.70082e-10 -4.56964e-11 1.07148e-10)
(-7.97531e-12 -1.78506e-11 1.01222e-11)
(-1.3259e-12 3.99728e-11 -5.6666e-11)
(1.30521e-11 -1.93586e-10 2.7357e-10)
(1.31172e-09 -2.58265e-07 9.17244e-08)
(-2.8576e-08 -1.99291e-06 -3.69424e-07)
(-1.59079e-07 0.00407291 5.71649e-06)
(-1.37175e-07 -1.72076e-08 5.20225e-07)
(-2.85683e-07 6.69391e-07 -4.52793e-06)
(-3.9008e-08 1.71694e-07 -7.21518e-07)
(-2.32655e-09 1.72301e-08 -4.88126e-08)
(-8.05875e-11 9.85311e-10 -1.9712e-09)
(-3.38364e-12 8.98724e-11 -1.2294e-10)
(1.06542e-11 -1.77183e-10 3.25547e-10)
(1.61643e-09 -3.11827e-07 1.13821e-07)
(-1.66962e-08 -2.30298e-06 -4.35715e-07)
(-6.33087e-08 0.00408593 6.40998e-06)
(5.5323e-12 3.02642e-12 4.14785e-11)
(3.36365e-12 -1.70178e-12 5.16958e-11)
(7.94662e-13 -2.22078e-12 1.05409e-11)
(4.65536e-14 -2.69004e-12 -5.09563e-12)
(-2.53768e-13 -3.27218e-12 -1.45282e-11)
(-4.0212e-13 -4.14064e-12 -2.34922e-11)
(-5.18999e-13 -9.94322e-12 -3.68229e-11)
(1.95264e-12 -7.82763e-09 3.05718e-10)
(-2.22024e-09 -2.76069e-06 6.3229e-08)
(-9.44236e-07 0.00348863 -7.88729e-06)
(5.04532e-12 2.52012e-12 4.88674e-11)
(4.57255e-12 -2.92293e-12 6.69348e-11)
(1.24618e-12 -3.18586e-12 1.36828e-11)
(1.83294e-13 -3.28788e-12 -6.14743e-12)
(-2.2493e-13 -3.65407e-12 -1.71624e-11)
(-4.24122e-13 -4.37155e-12 -2.70228e-11)
(-4.92425e-13 -1.38181e-11 -3.78899e-11)
(1.40234e-12 -8.1796e-09 1.60943e-10)
(-2.17276e-10 -2.71128e-06 8.09155e-09)
(3.65571e-08 0.00350557 -7.8018e-06)
(6.59951e-12 2.13885e-12 6.13449e-11)
(6.14361e-12 -4.77523e-12 8.88474e-11)
(1.65625e-12 -4.58666e-12 1.84276e-11)
(2.43368e-13 -4.06459e-12 -7.37012e-12)
(-2.57329e-13 -4.0982e-12 -2.03975e-11)
(-4.80823e-13 -4.56675e-12 -3.12479e-11)
(-4.1721e-13 -1.26073e-11 -3.77721e-11)
(3.97791e-12 -8.92528e-09 2.40575e-11)
(-1.04166e-09 -2.60967e-06 -5.58769e-08)
(-4.97762e-08 0.00352268 -7.79616e-06)
(8.8926e-12 1.60354e-12 7.96912e-11)
(8.46738e-12 -7.66756e-12 1.20911e-10)
(2.26248e-12 -6.67621e-12 2.57316e-11)
(3.29437e-13 -5.10552e-12 -8.78941e-12)
(-2.97088e-13 -4.62699e-12 -2.43864e-11)
(-5.47677e-13 -4.70939e-12 -3.63337e-11)
(-3.08996e-13 -9.83777e-13 -3.62075e-11)
(7.71195e-12 -1.01607e-08 -9.25184e-11)
(-1.75711e-09 -2.84468e-06 -1.21241e-07)
(-1.56512e-07 0.00353976 -8.1476e-06)
(1.24993e-11 8.35187e-13 1.07884e-10)
(1.20235e-11 -1.23197e-11 1.69107e-10)
(3.19743e-12 -9.91478e-12 3.73512e-11)
(4.57765e-13 -6.54727e-12 -1.03828e-11)
(-3.41988e-13 -5.2563e-12 -2.93401e-11)
(-6.25497e-13 -4.81509e-12 -4.24931e-11)
(-1.49249e-13 1.87689e-11 -3.27273e-11)
(1.14984e-11 -1.13811e-08 -1.77478e-10)
(-2.38454e-09 -3.09272e-06 -1.92038e-07)
(-1.66434e-07 0.00355701 -8.5807e-06)
(1.82803e-11 -5.47729e-13 1.52542e-10)
(1.76507e-11 -2.03668e-11 2.43156e-10)
(4.70297e-12 -1.51523e-11 5.65145e-11)
(6.57077e-13 -8.6278e-12 -1.20401e-11)
(-3.92749e-13 -6.0313e-12 -3.55549e-11)
(-7.19405e-13 -4.84903e-12 -5.00095e-11)
(8.70093e-14 4.77619e-11 -2.66629e-11)
(1.62826e-11 -1.26446e-08 -2.29925e-10)
(-3.09361e-09 -3.35639e-06 -2.69179e-07)
(-1.78941e-07 0.00357443 -9.11904e-06)
(2.82273e-11 -2.93245e-12 2.29422e-10)
(2.70145e-11 -3.42505e-11 3.61846e-10)
(7.26808e-12 -2.40735e-11 8.97391e-11)
(9.83104e-13 -1.17963e-11 -1.34298e-11)
(-4.47075e-13 -7.01872e-12 -4.34068e-11)
(-8.30373e-13 -4.79191e-12 -5.92508e-11)
(4.07324e-13 8.67733e-11 -1.71866e-11)
(2.27951e-11 -1.39845e-08 -2.44898e-10)
(-3.88374e-09 -3.64073e-06 -3.53696e-07)
(-1.98962e-07 0.00359201 -9.84886e-06)
(-1.40103e-11 -7.72304e-12 3.65925e-10)
(3.21779e-11 -5.96574e-11 5.61776e-10)
(1.05523e-11 -4.01896e-11 1.50539e-10)
(1.47505e-12 -1.69508e-11 -1.36446e-11)
(-5.00393e-13 -8.34313e-12 -5.33845e-11)
(-9.62549e-13 -4.65167e-12 -7.07354e-11)
(8.39894e-13 1.39078e-10 -3.22262e-12)
(3.16927e-11 -1.54263e-08 -1.68966e-10)
(-4.78278e-09 -3.96434e-06 -4.4985e-07)
(-2.27397e-07 0.00360974 -1.14885e-05)
(-2.96578e-08 2.57616e-10 3.99564e-09)
(-5.52189e-09 6.59558e-11 -1.56713e-10)
(-4.80275e-10 -3.64649e-11 1.16465e-10)
(-2.29515e-11 -2.14457e-11 -1.66083e-11)
(-1.32416e-12 -1.0005e-11 -6.63624e-11)
(-1.15237e-12 -4.39845e-12 -8.50876e-11)
(1.39936e-12 2.04954e-10 1.6273e-11)
(4.19786e-11 -1.69783e-08 -3.11301e-11)
(-5.78387e-09 -4.32811e-06 -5.54781e-07)
(-2.57888e-07 0.00362768 -1.33762e-05)
(-2.34003e-07 4.98677e-08 -3.66836e-06)
(-4.52936e-08 9.49175e-08 -7.98419e-07)
(-3.57088e-09 1.8434e-08 -7.01482e-08)
(-1.63081e-10 1.64006e-09 -3.66764e-09)
(-5.94658e-12 7.34312e-11 -1.92311e-10)
(-2.05479e-12 -1.42e-12 -1.04808e-10)
(1.55049e-12 2.8578e-10 4.30154e-11)
(2.51283e-11 -1.87345e-08 1.77188e-10)
(-6.35344e-09 -4.73587e-06 -6.71e-07)
(-1.59109e-07 0.00364585 -1.5815e-05)
(2.32539e-12 6.32279e-12 3.61781e-11)
(9.57732e-13 2.92016e-12 1.34694e-11)
(5.14122e-13 2.25079e-12 3.24343e-12)
(3.08699e-13 1.61101e-12 -3.86561e-12)
(2.0312e-13 1.21191e-12 -1.07573e-11)
(1.59046e-13 8.67029e-13 -1.90576e-11)
(1.63634e-13 -2.03624e-11 -3.01684e-11)
(-6.25336e-12 -5.6149e-09 -5.57843e-11)
(-2.03592e-09 -2.11689e-07 -4.4986e-08)
(-1.25226e-07 0.00348806 -1.87602e-05)
(2.9763e-12 7.18911e-12 4.65176e-11)
(1.31503e-12 3.16491e-12 1.74905e-11)
(6.98973e-13 2.37524e-12 3.86937e-12)
(4.01722e-13 1.6163e-12 -5.03181e-12)
(2.26497e-13 1.16136e-12 -1.31197e-11)
(1.0457e-13 7.86969e-13 -2.23833e-11)
(1.58235e-14 -1.82907e-11 -3.42598e-11)
(1.25919e-12 -4.93422e-09 -8.33458e-11)
(1.89026e-10 -2.37384e-07 -4.6569e-08)
(-5.92145e-08 0.00350523 -1.80512e-05)
(3.95287e-12 8.22153e-12 6.12383e-11)
(1.74325e-12 3.39744e-12 2.3439e-11)
(8.80967e-13 2.48769e-12 4.82497e-12)
(4.84079e-13 1.59535e-12 -6.51041e-12)
(2.64564e-13 1.08918e-12 -1.60629e-11)
(1.20289e-13 7.0097e-13 -2.64021e-11)
(2.94221e-14 -1.51528e-11 -3.88688e-11)
(1.18934e-12 -3.87716e-09 -9.17885e-11)
(-2.80505e-11 -2.5567e-07 -4.99962e-08)
(-7.63268e-08 0.00352257 -1.70589e-05)
(5.38244e-12 9.41729e-12 8.2657e-11)
(2.37352e-12 3.55807e-12 3.24734e-11)
(1.13086e-12 2.56165e-12 6.33004e-12)
(5.89568e-13 1.53374e-12 -8.37836e-12)
(3.09233e-13 9.85842e-13 -1.97603e-11)
(1.36604e-13 6.02539e-13 -3.13021e-11)
(4.52617e-14 -1.31056e-11 -4.40664e-11)
(1.275e-12 -3.80579e-09 -5.18086e-11)
(-3.88471e-10 -3.47478e-07 -5.52753e-08)
(-9.8075e-08 0.00353982 -1.7765e-05)
(7.55858e-12 1.07415e-11 1.14781e-10)
(3.34036e-12 3.5234e-12 4.6713e-11)
(1.48935e-12 2.54676e-12 8.80095e-12)
(7.31085e-13 1.40198e-12 -1.07422e-11)
(3.65845e-13 8.3829e-13 -2.44361e-11)
(1.57305e-13 4.90122e-13 -3.72685e-11)
(6.48686e-14 -1.16412e-11 -5.01036e-11)
(2.2164e-12 -3.79217e-09 2.54625e-11)
(-4.57274e-10 -4.32449e-07 -6.06346e-08)
(-9.46981e-08 0.00355725 -1.85364e-05)
(1.1043e-11 1.21352e-11 1.65581e-10)
(4.889e-12 2.99498e-12 7.01058e-11)
(2.02142e-12 2.34079e-12 1.30414e-11)
(9.24604e-13 1.14977e-12 -1.37428e-11)
(4.38508e-13 6.24226e-13 -3.04053e-11)
(1.82736e-13 3.5375e-13 -4.46205e-11)
(9.1796e-14 -1.01282e-11 -5.7064e-11)
(4.26665e-12 -3.80424e-09 1.46866e-10)
(-5.03772e-10 -5.06796e-07 -6.64562e-08)
(-8.85656e-08 0.00357488 -1.93847e-05)
(1.68355e-11 1.31999e-11 2.48297e-10)
(7.51125e-12 1.35345e-12 1.10659e-10)
(2.85142e-12 1.72568e-12 2.07394e-11)
(1.19705e-12 6.9347e-13 -1.75092e-11)
(5.328e-13 3.09923e-13 -3.80996e-11)
(2.1415e-13 1.84976e-13 -5.37434e-11)
(1.27448e-13 -7.48602e-12 -6.51577e-11)
(7.43063e-12 -3.79157e-09 3.19093e-10)
(-5.00548e-10 -5.64189e-07 -7.2848e-08)
(-7.74797e-08 0.00359272 -2.03325e-05)
(1.93243e-11 1.30401e-11 3.92036e-10)
(1.16066e-11 -2.90272e-12 1.85309e-10)
(4.16048e-12 2.11057e-13 3.56348e-11)
(1.59023e-12 -1.3164e-13 -2.20931e-11)
(6.57143e-13 -1.60263e-13 -4.81037e-11)
(2.53145e-13 -2.99642e-14 -6.516e-11)
(1.71234e-13 -3.36275e-12 -7.47636e-11)
(1.18485e-11 -3.62504e-09 5.63048e-10)
(-4.47832e-10 -5.93002e-07 -7.96615e-08)
(-5.62139e-08 0.00361076 -2.14661e-05)
(-1.94998e-09 8.62077e-12 -2.55773e-10)
(-2.96094e-10 8.9441e-12 1.57951e-10)
(-1.68107e-11 -1.75054e-12 4.52147e-11)
(1.16393e-12 -1.44284e-12 -2.83859e-11)
(7.66455e-13 -8.63511e-13 -6.12571e-11)
(2.72399e-13 -3.10228e-13 -7.95626e-11)
(1.96142e-13 2.89348e-12 -8.6214e-11)
(1.79219e-11 -3.25671e-09 8.8532e-10)
(-3.12607e-10 -5.68136e-07 -8.68698e-08)
(-1.61545e-08 0.00362905 -2.27636e-05)
(-2.68651e-08 1.32492e-09 -4.96847e-07)
(-4.43008e-09 5.8829e-09 -9.18514e-08)
(-3.42802e-10 9.91803e-10 -8.13981e-09)
(-1.47938e-11 7.03619e-11 -4.55601e-10)
(-1.19413e-12 1.24818e-12 -9.11394e-11)
(-1.10727e-12 -5.88196e-13 -9.78898e-11)
(-8.59624e-13 1.28283e-11 -9.97418e-11)
(2.0855e-11 -2.4433e-09 1.30023e-09)
(-4.90478e-10 -4.48321e-07 -9.45606e-08)
(-2.75941e-08 0.0036476 -2.41256e-05)
(3.98132e-13 9.53353e-13 2.54692e-12)
(3.56067e-13 1.57579e-12 7.44105e-13)
(4.01626e-13 2.03639e-12 3.96622e-13)
(4.63913e-13 2.59628e-12 -1.1192e-14)
(5.44874e-13 3.38692e-12 -6.34605e-13)
(6.5171e-13 4.50713e-12 -1.56662e-12)
(7.85615e-13 4.33026e-12 -3.30662e-12)
(-7.25919e-13 2.10486e-09 -1.30352e-10)
(3.89194e-10 1.04285e-06 -4.49996e-08)
(3.12769e-07 0.00349069 -7.24551e-06)
(5.97661e-13 1.11894e-12 3.51885e-12)
(5.23855e-13 1.75857e-12 9.66358e-13)
(5.56349e-13 2.22564e-12 4.24758e-13)
(5.96316e-13 2.77987e-12 -1.64114e-13)
(6.36395e-13 3.54902e-12 -9.84572e-13)
(6.69036e-13 4.62084e-12 -2.12906e-12)
(6.79614e-13 5.38574e-12 -4.10985e-12)
(1.68021e-14 2.02507e-09 -1.22077e-10)
(-3.32844e-10 9.51815e-07 -4.06504e-08)
(-7.46756e-08 0.00350756 -6.83873e-06)
(8.00763e-13 1.32763e-12 5.0388e-12)
(6.74829e-13 1.96227e-12 1.31302e-12)
(6.98604e-13 2.4279e-12 4.72522e-13)
(7.31397e-13 2.96335e-12 -3.78005e-13)
(7.62639e-13 3.69538e-12 -1.44942e-12)
(7.82759e-13 4.6978e-12 -2.8477e-12)
(7.7446e-13 6.49957e-12 -5.04974e-12)
(-8.64512e-15 1.93937e-09 -1.08715e-10)
(-3.25708e-10 8.55468e-07 -3.43832e-08)
(-7.31334e-08 0.00352457 -6.36628e-06)
(1.09689e-12 1.58824e-12 7.47688e-12)
(8.81623e-13 2.18116e-12 1.87497e-12)
(8.8545e-13 2.63478e-12 5.48111e-13)
(9.03065e-13 3.13417e-12 -6.78343e-13)
(9.17847e-13 3.80948e-12 -2.07629e-12)
(9.18357e-13 4.71715e-12 -3.77303e-12)
(8.84455e-13 6.5686e-12 -6.17317e-12)
(-1.25653e-13 1.73801e-09 -9.94093e-11)
(-3.48675e-10 7.64489e-07 -3.26698e-08)
(-7.15324e-08 0.0035417 -6.28305e-06)
(1.54896e-12 1.91161e-12 1.15373e-11)
(1.17646e-12 2.3995e-12 2.8244e-12)
(1.13935e-12 2.82825e-12 6.81301e-13)
(1.12756e-12 3.2703e-12 -1.09957e-12)
(1.11426e-12 3.86608e-12 -2.92902e-12)
(1.08418e-12 4.65494e-12 -4.96827e-12)
(1.01592e-12 6.45888e-12 -7.53845e-12)
(6.19628e-14 1.53524e-09 -9.2204e-11)
(-3.31279e-10 6.71208e-07 -3.11128e-08)
(-7.24386e-08 0.003559 -6.14343e-06)
(2.27232e-12 2.30881e-12 1.86831e-11)
(1.60972e-12 2.57912e-12 4.50791e-12)
(1.4911e-12 2.97358e-12 9.30641e-13)
(1.42537e-12 3.33483e-12 -1.69793e-12)
(1.36542e-12 3.826e-12 -4.10205e-12)
(1.28873e-12 4.47149e-12 -6.52821e-12)
(1.17298e-12 6.28433e-12 -9.20994e-12)
(3.23464e-13 1.35507e-09 -8.44071e-11)
(-3.10619e-10 5.75115e-07 -2.95512e-08)
(-7.35654e-08 0.00357647 -5.92454e-06)
(3.48886e-12 2.76077e-12 3.18352e-11)
(2.27286e-12 2.63186e-12 7.68275e-12)
(1.98941e-12 3.00253e-12 1.40786e-12)
(1.82696e-12 3.26509e-12 -2.54576e-12)
(1.69017e-12 3.62958e-12 -5.7277e-12)
(1.54332e-12 4.11183e-12 -8.58316e-12)
(1.36099e-12 6.01705e-12 -1.12868e-11)
(5.8741e-13 1.18533e-09 -7.08256e-11)
(-3.09693e-10 4.75322e-07 -2.77019e-08)
(-7.5128e-08 0.00359412 -5.58929e-06)
(5.23825e-12 3.1665e-12 5.76132e-11)
(3.30443e-12 2.34766e-12 1.41097e-11)
(2.71412e-12 2.78125e-12 2.42121e-12)
(2.37862e-12 2.95235e-12 -3.75736e-12)
(2.11509e-12 3.18246e-12 -8.03249e-12)
(1.86246e-12 3.49361e-12 -1.13328e-11)
(1.58669e-12 5.28543e-12 -1.38895e-11)
(9.10685e-13 9.65302e-10 -4.9376e-11)
(-3.22728e-10 3.70275e-07 -2.48838e-08)
(-7.85373e-08 0.00361193 -5.07105e-06)
(-8.44353e-11 1.61148e-12 -7.39028e-12)
(-8.18045e-12 2.48157e-12 1.83321e-11)
(2.93857e-12 2.14334e-12 3.61187e-12)
(3.08393e-12 2.21558e-12 -5.55377e-12)
(2.64214e-12 2.33523e-12 -1.13379e-11)
(2.23203e-12 2.49754e-12 -1.50419e-11)
(1.82557e-12 4.11629e-12 -1.71788e-11)
(1.35711e-12 6.84484e-10 -1.63042e-11)
(-3.5158e-10 2.53689e-07 -2.08119e-08)
(-9.01606e-08 0.0036299 -4.22542e-06)
(-1.52569e-09 9.88446e-12 -3.22759e-08)
(-2.1453e-10 2.65363e-10 -5.1109e-09)
(-1.1645e-11 4.22461e-11 -3.68743e-10)
(1.14542e-12 3.36418e-12 -2.40898e-11)
(1.24221e-12 9.59125e-13 -1.65499e-11)
(9.93892e-13 9.59857e-13 -2.00395e-11)
(7.91947e-13 2.24561e-12 -2.13025e-11)
(1.21237e-12 2.67031e-10 3.68997e-11)
(-2.22511e-10 1.01053e-07 -1.41274e-08)
(-5.1965e-08 0.00364802 -2.7982e-06)
(2.84915e-13 6.01669e-13 2.31675e-13)
(3.3181e-13 1.50014e-12 2.27446e-13)
(3.94792e-13 2.00792e-12 2.78291e-13)
(4.73503e-13 2.63849e-12 3.38324e-13)
(5.72627e-13 3.53005e-12 4.24382e-13)
(6.98825e-13 4.84293e-12 5.51064e-13)
(8.65479e-13 1.58791e-11 5.71414e-13)
(3.4839e-12 4.40662e-09 -5.22112e-11)
(1.32508e-09 1.26985e-06 -1.02424e-08)
(3.97425e-07 0.00349178 -7.21964e-07)
(4.43758e-13 6.82755e-13 2.72548e-13)
(4.92812e-13 1.67505e-12 2.40696e-13)
(5.51218e-13 2.20314e-12 2.81885e-13)
(6.137e-13 2.84393e-12 3.2692e-13)
(6.76456e-13 3.72855e-12 3.92779e-13)
(7.32282e-13 4.99878e-12 4.84989e-13)
(7.63838e-13 1.53326e-11 4.76437e-13)
(-1.01554e-13 4.02494e-09 -4.44004e-11)
(-2.97522e-10 1.15816e-06 -8.84725e-09)
(-7.24689e-08 0.00350849 -6.40651e-07)
(5.76434e-13 7.76712e-13 3.37305e-13)
(6.29778e-13 1.86972e-12 2.58343e-13)
(6.91958e-13 2.41173e-12 2.83316e-13)
(7.55412e-13 3.05276e-12 3.0734e-13)
(8.15029e-13 3.91561e-12 3.48462e-13)
(8.61651e-13 5.12097e-12 3.98188e-13)
(8.75604e-13 1.46334e-11 3.55193e-13)
(1.85415e-14 3.61955e-09 -3.56425e-11)
(-2.887e-10 1.04114e-06 -7.37447e-09)
(-7.18353e-08 0.00352535 -5.63785e-07)
(7.58612e-13 8.83516e-13 4.45492e-13)
(8.1324e-13 2.08058e-12 2.82571e-13)
(8.76291e-13 2.62624e-12 2.81936e-13)
(9.36289e-13 3.25345e-12 2.78265e-13)
(9.87213e-13 4.07467e-12 2.84265e-13)
(1.01723e-12 5.18772e-12 2.84884e-13)
(1.00508e-12 1.37507e-11 1.89042e-13)
(1.15556e-13 3.23338e-09 -3.09655e-11)
(-2.81378e-10 9.29813e-07 -6.43197e-09)
(-7.09126e-08 0.00354238 -4.56934e-07)
(1.01875e-12 1.0008e-12 6.41227e-13)
(1.06768e-12 2.29742e-12 3.22997e-13)
(1.12516e-12 2.83075e-12 2.78705e-13)
(1.17405e-12 3.42459e-12 2.33031e-13)
(1.20655e-12 4.17869e-12 1.90345e-13)
(1.20884e-12 5.16764e-12 1.34238e-13)
(1.1587e-12 1.26857e-11 -1.92709e-14)
(2.37497e-13 2.82887e-09 -2.63276e-11)
(-2.85373e-10 8.13858e-07 -5.41435e-09)
(-7.32905e-08 0.00355957 -3.423e-07)
(1.4004e-12 1.12171e-12 1.01916e-12)
(1.42823e-12 2.49725e-12 4.01226e-13)
(1.46726e-12 2.99639e-12 2.73069e-13)
(1.49056e-12 3.53007e-12 1.63034e-13)
(1.48865e-12 4.18468e-12 5.47554e-14)
(1.44687e-12 5.01391e-12 -7.0537e-14)
(1.34294e-12 1.1398e-11 -2.8466e-13)
(3.77669e-13 2.40452e-09 -2.09498e-11)
(-2.90352e-10 6.92553e-07 -4.20108e-09)
(-7.61475e-08 0.00357693 -2.20936e-07)
(1.97918e-12 1.22861e-12 1.80267e-12)
(1.95153e-12 2.63165e-12 5.6446e-13)
(1.94599e-12 3.06495e-12 2.6766e-13)
(1.91849e-12 3.50463e-12 4.93453e-14)
(1.85676e-12 4.02725e-12 -1.44125e-13)
(1.74574e-12 4.66487e-12 -3.43718e-13)
(1.56534e-12 9.80445e-12 -5.97116e-13)
(5.42832e-13 1.95378e-09 -1.42911e-11)
(-2.98227e-10 5.64827e-07 -2.83461e-09)
(-7.97576e-08 0.00359446 -9.52999e-08)
(2.87709e-12 1.27767e-12 3.55197e-12)
(2.73209e-12 2.59641e-12 9.42203e-13)
(2.6317e-12 2.93281e-12 2.7235e-13)
(2.50762e-12 3.24622e-12 -1.17987e-13)
(2.3429e-12 3.60126e-12 -4.28644e-13)
(2.12383e-12 4.01949e-12 -7.04251e-13)
(1.83376e-12 7.82009e-12 -9.8615e-13)
(7.10431e-13 1.46918e-09 -9.3708e-12)
(-3.08754e-10 4.28992e-07 -1.62629e-09)
(-8.4895e-08 0.00361215 2.96442e-08)
(9.79394e-13 1.07197e-12 1.11038e-12)
(3.45705e-12 2.22442e-12 1.27015e-12)
(3.5792e-12 2.40349e-12 2.83918e-13)
(3.29718e-12 2.56198e-12 -3.80851e-13)
(2.95819e-12 2.73576e-12 -8.4953e-13)
(2.57192e-12 2.93444e-12 -1.19708e-12)
(2.12614e-12 5.31782e-12 -1.47626e-12)
(8.69016e-13 9.51254e-10 -4.13994e-12)
(-3.25029e-10 2.81363e-07 -6.11207e-10)
(-9.38395e-08 0.00363002 1.27205e-07)
(-5.78186e-11 -2.41824e-13 -1.46529e-09)
(-5.50542e-12 1.03204e-11 -2.1207e-10)
(1.7135e-12 2.48585e-12 -1.2999e-11)
(1.88888e-12 1.20351e-12 -1.34822e-12)
(1.65954e-12 1.1625e-12 -1.53863e-12)
(1.4064e-12 1.19626e-12 -1.88701e-12)
(1.1326e-12 2.14131e-12 -2.10069e-12)
(4.83807e-13 3.82711e-10 2.74895e-13)
(-1.69464e-10 1.12631e-07 -1.64137e-10)
(-4.99354e-08 0.00364805 8.29238e-08)
(2.8486e-13 6.03585e-13 3.65943e-13)
(3.3456e-13 1.50537e-12 4.75719e-13)
(4.00104e-13 2.02034e-12 6.96369e-13)
(4.82549e-13 2.67136e-12 1.06054e-12)
(5.87199e-13 3.60157e-12 1.66142e-12)
(7.20866e-13 4.99025e-12 2.71913e-12)
(8.99662e-13 1.8046e-11 4.55718e-12)
(4.5372e-12 4.40575e-09 6.97394e-12)
(1.38311e-09 1.19676e-06 1.61607e-09)
(3.75823e-07 0.00349194 8.60045e-07)
(4.46217e-13 6.86519e-13 4.42505e-13)
(4.99352e-13 1.68425e-12 5.45805e-13)
(5.61764e-13 2.22024e-12 7.78488e-13)
(6.29881e-13 2.88271e-12 1.15111e-12)
(7.00317e-13 3.80489e-12 1.73866e-12)
(7.66404e-13 5.14132e-12 2.72511e-12)
(8.11539e-13 1.6987e-11 4.35744e-12)
(1.31671e-13 3.99067e-09 7.42695e-12)
(-2.52155e-10 1.08759e-06 1.6536e-09)
(-6.76576e-08 0.00350861 8.1166e-07)
(5.79135e-13 7.80795e-13 5.40347e-13)
(6.37782e-13 1.88288e-12 6.23691e-13)
(7.04598e-13 2.43301e-12 8.58758e-13)
(7.74093e-13 3.09527e-12 1.22384e-12)
(8.41065e-13 3.99205e-12 1.7677e-12)
(8.96737e-13 5.2513e-12 2.63352e-12)
(9.22051e-13 1.58123e-11 3.98281e-12)
(2.21125e-13 3.55921e-09 7.42571e-12)
(-2.53943e-10 9.73987e-07 1.64825e-09)
(-6.87378e-08 0.00352545 7.5741e-07)
(7.6031e-13 8.85633e-13 6.62387e-13)
(8.22545e-13 2.09627e-12 6.99394e-13)
(8.90501e-13 2.64974e-12 9.19008e-13)
(9.57e-13 3.29618e-12 1.24775e-12)
(1.01441e-12 4.14536e-12 1.7039e-12)
(1.05203e-12 5.29865e-12 2.38511e-12)
(1.04888e-12 1.45777e-11 3.36619e-12)
(3.20072e-13 3.13424e-09 6.7954e-12)
(-2.53778e-10 8.60431e-07 1.76279e-09)
(-6.9506e-08 0.00354245 7.4426e-07)
(1.01642e-12 9.97089e-13 8.08119e-13)
(1.0771e-12 2.31336e-12 7.50648e-13)
(1.14011e-12 2.85375e-12 9.24511e-13)
(1.19532e-12 3.46315e-12 1.17012e-12)
(1.2333e-12 4.23716e-12 1.48164e-12)
(1.24153e-12 5.25209e-12 1.90191e-12)
(1.19811e-12 1.31877e-11 2.43486e-12)
(4.03373e-13 2.6969e-09 5.66302e-12)
(-2.59723e-10 7.43154e-07 1.83708e-09)
(-7.14837e-08 0.00355962 7.22746e-07)
(1.38639e-12 1.10451e-12 9.62095e-13)
(1.43454e-12 2.51042e-12 7.2872e-13)
(1.48053e-12 3.01419e-12 8.06432e-13)
(1.51031e-12 3.55886e-12 9.08955e-13)
(1.5126e-12 4.22595e-12 1.00056e-12)
(1.47427e-12 5.06875e-12 1.07839e-12)
(1.37347e-12 1.15799e-11 1.10028e-12)
(4.67682e-13 2.24605e-09 3.93324e-12)
(-2.66666e-10 6.21847e-07 1.8817e-09)
(-7.36605e-08 0.00357695 6.89724e-07)
(1.93407e-12 1.18585e-12 1.06931e-12)
(1.94734e-12 2.63923e-12 5.29687e-13)
(1.95298e-12 3.07538e-12 4.35384e-13)
(1.93128e-12 3.52075e-12 3.05916e-13)
(1.87205e-12 4.0442e-12 9.07906e-14)
(1.76214e-12 4.68153e-12 -2.32586e-13)
(1.58187e-12 9.61804e-12 -7.24174e-13)
(6.21741e-13 1.77946e-09 1.14103e-12)
(-2.73006e-10 4.96106e-07 1.87118e-09)
(-7.61174e-08 0.00359446 6.40375e-07)
(2.76835e-12 1.19423e-12 9.63445e-13)
(2.70139e-12 2.60373e-12 -8.13831e-14)
(2.62103e-12 2.9307e-12 -4.59629e-13)
(2.50394e-12 3.24189e-12 -9.00717e-13)
(2.34171e-12 3.59422e-12 -1.46946e-12)
(2.12313e-12 4.00535e-12 -2.20131e-12)
(1.83311e-12 7.57922e-12 -3.13253e-12)
(8.0642e-13 1.30183e-09 -1.34016e-12)
(-2.80014e-10 3.65355e-07 1.65459e-09)
(-7.90089e-08 0.00361214 5.66771e-07)
(3.95045e-12 1.0314e-12 -1.03103e-13)
(3.79503e-12 2.21028e-12 -1.63679e-12)
(3.55414e-12 2.39228e-12 -2.37306e-12)
(3.26473e-12 2.54746e-12 -3.1719e-12)
(2.93105e-12 2.71581e-12 -4.07281e-12)
(2.5473e-12 2.9055e-12 -5.09072e-12)
(2.10393e-12 5.03183e-12 -6.22992e-12)
(9.03402e-13 8.08878e-10 -5.01495e-12)
(-2.89258e-10 2.28703e-07 1.28135e-09)
(-8.26577e-08 0.00363 4.49986e-07)
(5.54e-13 4.65112e-13 -5.63937e-11)
(1.95168e-12 1.33323e-12 -1.35359e-11)
(1.97243e-12 1.14303e-12 -7.75723e-12)
(1.77747e-12 1.1291e-12 -8.27296e-12)
(1.55798e-12 1.15192e-12 -9.09951e-12)
(1.32128e-12 1.18019e-12 -9.88837e-12)
(1.06387e-12 1.92012e-12 -1.06225e-11)
(4.35246e-13 2.99281e-10 -9.81552e-12)
(-1.47164e-10 8.45713e-08 6.66116e-10)
(-4.23598e-08 0.00364804 2.34121e-07)
(6.8537e-13 2.05888e-12 1.99109e-11)
(7.40066e-13 3.12129e-12 2.29084e-11)
(8.92366e-13 4.24987e-12 3.20544e-11)
(1.08157e-12 5.84566e-12 4.603e-11)
(1.30694e-12 8.20252e-12 6.74781e-11)
(1.56055e-12 1.18049e-11 1.01164e-10)
(1.83191e-12 2.68003e-11 1.56034e-10)
(5.01063e-12 4.0743e-09 2.53712e-10)
(1.27858e-09 1.09639e-06 3.63454e-09)
(3.43519e-07 0.00349188 8.05495e-07)
(9.43543e-13 2.21643e-12 2.33272e-11)
(9.77728e-13 3.26169e-12 2.50053e-11)
(1.13577e-12 4.32072e-12 3.39216e-11)
(1.32413e-12 5.77579e-12 4.71413e-11)
(1.53804e-12 7.85165e-12 6.66856e-11)
(1.76953e-12 1.09073e-11 9.61416e-11)
(1.99656e-12 2.3964e-11 1.41988e-10)
(1.65079e-12 3.68221e-09 2.20258e-10)
(-2.29244e-10 9.94529e-07 3.24152e-09)
(-6.32715e-08 0.00350856 7.40275e-07)
(1.16275e-12 2.37424e-12 2.7399e-11)
(1.15552e-12 3.39009e-12 2.70125e-11)
(1.30442e-12 4.35336e-12 3.5297e-11)
(1.47349e-12 5.63695e-12 4.71408e-11)
(1.65319e-12 7.39794e-12 6.38589e-11)
(1.83103e-12 9.88213e-12 8.77992e-11)
(1.98105e-12 2.09862e-11 1.23007e-10)
(1.52257e-12 3.27617e-09 1.80451e-10)
(-2.35808e-10 8.88523e-07 2.82941e-09)
(-6.50841e-08 0.00352539 6.74189e-07)
(1.43829e-12 2.5029e-12 3.18227e-11)
(1.36541e-12 3.47026e-12 2.81669e-11)
(1.49362e-12 4.30187e-12 3.51307e-11)
(1.63032e-12 5.37838e-12 4.467e-11)
(1.76188e-12 6.79319e-12 5.73667e-11)
(1.87351e-12 8.69892e-12 7.44034e-11)
(1.93874e-12 1.79043e-11 9.7708e-11)
(1.37497e-12 2.86433e-09 1.34488e-10)
(-2.4043e-10 7.7993e-07 2.49173e-09)
(-6.64786e-08 0.0035424 6.24605e-07)
(1.78904e-12 2.57619e-12 3.61759e-11)
(1.61551e-12 3.47852e-12 2.7545e-11)
(1.70614e-12 4.14029e-12 3.22273e-11)
(1.79306e-12 4.97986e-12 3.82949e-11)
(1.86e-12 6.03175e-12 4.56356e-11)
(1.8928e-12 7.37991e-12 5.44586e-11)
(1.86763e-12 1.47717e-11 6.50528e-11)
(1.20621e-12 2.4438e-09 8.19976e-11)
(-2.47196e-10 6.68408e-07 2.11933e-09)
(-6.79861e-08 0.00355957 5.69978e-07)
(2.23494e-12 2.55394e-12 3.93947e-11)
(1.91209e-12 3.38473e-12 2.3508e-11)
(1.94136e-12 3.84008e-12 2.46401e-11)
(1.95635e-12 4.42545e-12 2.58733e-11)
(1.94069e-12 5.12077e-12 2.65272e-11)
(1.88311e-12 5.96472e-12 2.61644e-11)
(1.76569e-12 1.16839e-11 2.40477e-11)
(1.04079e-12 2.01062e-09 2.31585e-11)
(-2.55376e-10 5.53854e-07 1.77217e-09)
(-6.95374e-08 0.00357691 5.0907e-07)
(2.79658e-12 2.3798e-12 3.89963e-11)
(2.26139e-12 3.15131e-12 1.31246e-11)
(2.19658e-12 3.37426e-12 9.18187e-12)
(2.11277e-12 3.71033e-12 4.20958e-12)
(1.99454e-12 4.08374e-12 -2.85524e-12)
(1.83735e-12 4.50958e-12 -1.2657e-11)
(1.63198e-12 8.79943e-12 -2.61638e-11)
(7.8657e-13 1.56349e-09 -4.18909e-11)
(-2.57151e-10 4.36161e-07 1.35872e-09)
(-7.11292e-08 0.00359443 4.40095e-07)
(3.48472e-12 1.98276e-12 2.91711e-11)
(2.66615e-12 2.73158e-12 -9.01119e-12)
(2.46546e-12 2.72275e-12 -1.93914e-11)
(2.25048e-12 2.83971e-12 -3.15548e-11)
(2.01294e-12 2.96223e-12 -4.63418e-11)
(1.75351e-12 3.09405e-12 -6.42915e-11)
(1.47009e-12 5.91666e-12 -8.60889e-11)
(5.3667e-13 1.12599e-09 -1.09954e-10)
(-2.55094e-10 3.15237e-07 9.69255e-10)
(-7.27096e-08 0.00361212 3.60241e-07)
(4.2996e-12 1.30802e-12 -3.89001e-12)
(3.15905e-12 2.06564e-12 -5.27053e-11)
(2.7621e-12 1.87783e-12 -6.99721e-11)
(2.3783e-12 1.85117e-12 -8.85808e-11)
(2.00382e-12 1.82455e-12 -1.08947e-10)
(1.64076e-12 1.79946e-12 -1.31198e-10)
(1.2888e-12 3.42039e-12 -1.55485e-10)
(3.45025e-13 6.87082e-10 -1.80135e-10)
(-2.56643e-10 1.91162e-07 5.79928e-10)
(-7.37183e-08 0.00362998 2.63531e-07)
(-1.79351e-13 3.0868e-13 -1.31393e-10)
(-8.2289e-13 8.91348e-13 -1.70667e-10)
(-9.16937e-13 6.99786e-13 -1.88328e-10)
(-9.40435e-13 6.44268e-13 -2.05157e-10)
(-8.99112e-13 5.94029e-13 -2.20991e-10)
(-8.01268e-13 5.48565e-13 -2.35694e-10)
(-6.57766e-13 1.11483e-12 -2.49138e-10)
(-7.84429e-13 2.45497e-10 -2.60407e-10)
(-1.29756e-10 6.57683e-08 9.31531e-11)
(-3.70048e-08 0.00364803 1.27421e-07)
(1.98906e-11 7.60809e-11 1.33042e-09)
(1.67199e-11 7.1316e-11 1.27714e-09)
(1.80327e-11 8.73485e-11 1.60325e-09)
(1.92692e-11 1.1082e-10 2.05139e-09)
(2.0049e-11 1.42459e-10 2.66141e-09)
(1.98555e-11 1.85381e-10 3.50382e-09)
(1.77955e-11 2.54384e-10 4.69477e-09)
(1.49829e-11 4.00265e-09 6.36326e-09)
(1.15907e-09 1.03326e-06 1.06832e-08)
(3.23009e-07 0.0034918 2.73278e-07)
(2.35611e-11 7.24422e-11 1.40358e-09)
(1.92411e-11 6.33345e-11 1.25332e-09)
(2.10238e-11 7.51244e-11 1.53749e-09)
(2.30663e-11 9.30748e-11 1.9205e-09)
(2.51811e-11 1.16671e-10 2.42775e-09)
(2.72381e-11 1.47766e-10 3.10735e-09)
(2.90758e-11 1.98142e-10 4.03681e-09)
(2.95805e-11 3.58466e-09 5.28794e-09)
(-1.76002e-10 9.37522e-07 8.66935e-09)
(-6.01749e-08 0.00350849 2.37972e-07)
(2.51267e-11 6.8672e-11 1.48887e-09)
(1.90174e-11 5.5538e-11 1.22024e-09)
(2.02608e-11 6.31092e-11 1.45309e-09)
(2.1669e-11 7.58614e-11 1.75915e-09)
(2.30492e-11 9.20865e-11 2.1496e-09)
(2.42994e-11 1.12659e-10 2.65127e-09)
(2.53243e-11 1.46785e-10 3.30606e-09)
(2.51938e-11 3.16113e-09 4.13939e-09)
(-1.88483e-10 8.37489e-07 6.62608e-09)
(-6.22337e-08 0.00352534 2.04355e-07)
(2.65623e-11 6.35561e-11 1.55847e-09)
(1.82837e-11 4.68089e-11 1.14134e-09)
(1.88984e-11 5.01001e-11 1.30821e-09)
(1.96161e-11 5.80106e-11 1.52168e-09)
(2.02534e-11 6.7688e-11 1.78056e-09)
(2.07519e-11 7.9378e-11 2.09466e-09)
(2.10858e-11 1.00263e-10 2.47868e-09)
(2.04996e-11 2.73624e-09 2.9298e-09)
(-1.98444e-10 7.34118e-07 4.63434e-09)
(-6.37874e-08 0.00354235 1.74083e-07)
(2.76412e-11 5.68592e-11 1.59459e-09)
(1.67815e-11 3.7382e-11 9.95591e-10)
(1.66852e-11 3.64881e-11 1.0803e-09)
(1.66819e-11 4.01603e-11 1.18589e-09)
(1.66123e-11 4.4404e-11 1.30152e-09)
(1.64739e-11 4.91354e-11 1.42525e-09)
(1.63131e-11 5.99731e-11 1.55391e-09)
(1.55292e-11 2.31632e-09 1.6719e-09)
(-2.10786e-10 6.28031e-07 2.72071e-09)
(-6.51484e-08 0.00355953 1.44072e-07)
(2.79871e-11 4.8359e-11 1.56499e-09)
(1.41876e-11 2.77138e-11 7.52694e-10)
(1.33291e-11 2.29453e-11 7.38559e-10)
(1.26361e-11 2.32581e-11 7.23878e-10)
(1.19725e-11 2.34568e-11 6.90872e-10)
(1.13958e-11 2.33549e-11 6.31942e-10)
(1.10053e-11 2.73482e-11 5.35835e-10)
(1.03275e-11 1.88867e-09 3.84395e-10)
(-2.22083e-10 5.19157e-07 8.18874e-10)
(-6.65187e-08 0.00357688 1.14269e-07)
(2.69318e-11 3.79604e-11 1.41054e-09)
(1.00398e-11 1.85419e-11 3.66952e-10)
(8.46215e-12 1.05732e-11 2.41966e-10)
(7.20685e-12 8.64844e-12 1.00751e-10)
(6.16767e-12 6.40093e-12 -7.51317e-11)
(5.45047e-12 3.62247e-12 -2.93619e-10)
(5.18293e-12 3.76313e-12 -5.65726e-10)
(4.94601e-12 1.47143e-09 -9.04782e-10)
(-2.32152e-10 4.07448e-07 -9.73789e-10)
(-6.78808e-08 0.0035944 8.46266e-08)
(2.32501e-11 2.59256e-11 1.01822e-09)
(3.69096e-12 1.09975e-11 -2.29127e-10)
(1.59025e-12 9.77499e-13 -4.6794e-10)
(6.46186e-14 -1.86307e-12 -7.27204e-10)
(-9.64955e-13 -4.94034e-12 -1.02075e-09)
(-1.39181e-12 -8.37358e-12 -1.35334e-09)
(-1.10147e-12 -9.66274e-12 -1.73094e-09)
(-5.52396e-13 1.05089e-09 -2.15859e-09)
(-2.45113e-10 2.92892e-07 -2.43184e-09)
(-6.91331e-08 0.0036121 5.51014e-08)
(1.6741e-11 1.34389e-11 1.63446e-10)
(-3.79505e-12 6.53663e-12 -1.13969e-09)
(-6.12644e-12 -3.47112e-12 -1.47264e-09)
(-7.55817e-12 -5.96154e-12 -1.81304e-09)
(-8.17847e-12 -8.48935e-12 -2.16863e-09)
(-7.94224e-12 -1.11093e-11 -2.53933e-09)
(-6.81542e-12 -1.22822e-11 -2.92524e-09)
(-5.35139e-12 6.27953e-10 -3.32481e-09)
(-2.51503e-10 1.75772e-07 -3.61927e-09)
(-6.94133e-08 0.00362997 2.62462e-08)
(-3.23276e-11 1.17573e-12 -2.51179e-09)
(-4.1728e-11 2.7238e-12 -3.35946e-09)
(-3.96948e-11 -3.12531e-12 -3.63593e-09)
(-3.65111e-11 -4.34906e-12 -3.88619e-09)
(-3.23535e-11 -5.51458e-12 -4.11164e-09)
(-2.73513e-11 -6.64138e-12 -4.31052e-09)
(-2.16491e-11 -7.17477e-12 -4.48105e-09)
(-1.56933e-11 2.15868e-10 -4.62066e-09)
(-1.33487e-10 5.89953e-08 -4.67834e-09)
(-3.46164e-08 0.00364803 2.36678e-09)
(5.29533e-10 2.42578e-09 6.20142e-08)
(3.34209e-10 1.78569e-09 4.73963e-08)
(3.08533e-10 1.8624e-09 5.34783e-08)
(2.72898e-10 2.09934e-09 6.10407e-08)
(2.21746e-10 2.38275e-09 7.01634e-08)
(1.49119e-10 2.71517e-09 8.12056e-08)
(4.62014e-11 3.12315e-09 9.46002e-08)
(-9.26956e-11 7.20479e-09 1.10784e-07)
(8.41311e-10 1.04694e-06 1.27856e-07)
(3.25209e-07 0.00349176 -8.17199e-07)
(6.71744e-10 2.1206e-09 5.94725e-08)
(4.43035e-10 1.45052e-09 4.18174e-08)
(4.45159e-10 1.44348e-09 4.64731e-08)
(4.48511e-10 1.60211e-09 5.22437e-08)
(4.50443e-10 1.79057e-09 5.90999e-08)
(4.50384e-10 2.00813e-09 6.72566e-08)
(4.48189e-10 2.27512e-09 7.69625e-08)
(4.41959e-10 5.86306e-09 8.84362e-08)
(2.24371e-10 9.50651e-07 9.96802e-08)
(-6.03689e-08 0.00350846 -7.58178e-07)
(6.53499e-10 1.85965e-09 5.761e-08)
(3.97623e-10 1.18308e-09 3.68349e-08)
(3.93727e-10 1.10102e-09 4.00333e-08)
(3.91574e-10 1.19486e-09 4.39767e-08)
(3.88902e-10 1.30517e-09 4.85287e-08)
(3.85691e-10 1.42883e-09 5.37613e-08)
(3.82592e-10 1.58005e-09 5.97378e-08)
(3.78528e-10 4.68594e-09 6.64508e-08)
(1.60049e-10 8.50064e-07 7.17796e-08)
(-6.24086e-08 0.00352531 -7.03323e-07)
(6.3082e-10 1.5979e-09 5.49784e-08)
(3.47941e-10 9.40204e-10 3.10069e-08)
(3.38742e-10 7.90888e-10 3.27024e-08)
(3.32047e-10 8.33602e-10 3.48258e-08)
(3.25884e-10 8.84087e-10 3.71657e-08)
(3.2056e-10 9.38391e-10 3.97016e-08)
(3.17053e-10 1.00619e-09 4.23854e-08)
(3.14597e-10 3.66224e-09 4.50913e-08)
(9.37928e-11 7.46442e-07 4.57388e-08)
(-6.39629e-08 0.00354233 -6.47252e-07)
(5.99429e-10 1.33704e-09 5.12678e-08)
(2.90782e-10 7.28222e-10 2.41982e-08)
(2.77123e-10 5.20914e-10 2.43807e-08)
(2.66985e-10 5.26403e-10 2.47428e-08)
(2.58699e-10 5.34911e-10 2.50324e-08)
(2.5276e-10 5.42508e-10 2.51832e-08)
(2.50215e-10 5.55647e-10 2.50998e-08)
(2.50687e-10 2.78418e-09 2.46236e-08)
(3.22157e-11 6.4007e-07 2.18597e-08)
(-6.54269e-08 0.00355952 -5.8653e-07)
(5.56001e-10 1.07899e-09 4.59969e-08)
(2.25363e-10 5.53339e-10 1.62513e-08)
(2.08337e-10 2.99756e-10 1.49655e-08)
(1.96258e-10 2.81466e-10 1.36971e-08)
(1.87492e-10 2.64586e-10 1.21871e-08)
(1.82595e-10 2.45249e-10 1.03634e-08)
(1.82452e-10 2.28133e-10 8.13288e-09)
(1.86986e-10 2.06051e-09 5.36311e-09)
(-2.82138e-11 5.30835e-07 3.83979e-10)
(-6.69161e-08 0.00357688 -5.20846e-07)
(4.95608e-10 8.26615e-10 3.83928e-08)
(1.50847e-10 4.19965e-10 6.97682e-09)
(1.3205e-10 1.36148e-10 4.3523e-09)
(1.19905e-10 1.06816e-10 1.6852e-09)
(1.12531e-10 7.86466e-11 -1.26039e-09)
(1.1044e-10 4.84216e-11 -4.53366e-09)
(1.14214e-10 1.97421e-11 -8.19414e-09)
(1.23645e-10 1.46479e-09 -1.23186e-08)
(-9.62923e-11 4.18628e-07 -1.82651e-08)
(-6.84249e-08 0.0035944 -4.49703e-07)
(4.10946e-10 5.83569e-10 2.71725e-08)
(6.63744e-11 3.28067e-10 -3.86189e-09)
(4.81596e-11 3.8729e-11 -7.56334e-09)
(3.81237e-11 8.4732e-12 -1.12565e-08)
(3.42721e-11 -2.02806e-11 -1.51298e-08)
(3.68191e-11 -4.9829e-11 -1.91975e-08)
(4.59133e-11 -7.78103e-11 -2.34753e-08)
(6.09626e-11 9.665e-10 -2.79854e-08)
(-1.63629e-10 3.03341e-07 -3.37744e-08)
(-6.99324e-08 0.0036121 -3.72192e-07)
(3.44322e-10 3.55552e-10 1.01061e-08)
(2.0801e-11 2.6592e-10 -1.65862e-08)
(1.28656e-12 1.41176e-11 -2.08924e-08)
(-9.04944e-12 -1.06496e-11 -2.50384e-08)
(-1.23279e-11 -3.37546e-11 -2.91476e-08)
(-8.8558e-12 -5.6846e-11 -3.32077e-08)
(9.60305e-13 -7.85017e-11 -3.72045e-08)
(1.6075e-11 5.57544e-10 -4.11261e-08)
(-2.14196e-10 1.8492e-07 -4.57269e-08)
(-7.11233e-08 0.00362998 -2.85186e-07)
(-2.18298e-10 1.0467e-10 -3.38668e-08)
(-3.51904e-10 1.32309e-10 -4.72517e-08)
(-3.23164e-10 5.7897e-13 -4.97431e-08)
(-2.86689e-10 -1.53644e-11 -5.18222e-08)
(-2.4456e-10 -3.04454e-11 -5.35227e-08)
(-1.98113e-10 -4.52896e-11 -5.48334e-08)
(-1.48741e-10 -5.94082e-11 -5.574e-08)
(-9.81679e-11 1.60535e-10 -5.62318e-08)
(-1.74464e-10 6.42418e-08 -5.66873e-08)
(-3.58761e-08 0.00364803 -1.74712e-07)
(-2.587e-09 2.24752e-08 7.87734e-07)
(-5.00995e-09 5.08117e-09 -6.35551e-08)
(-5.35484e-09 -3.32694e-09 -8.94857e-08)
(-5.7407e-09 -4.17345e-09 -1.18073e-07)
(-6.15688e-09 -5.08981e-09 -1.54199e-07)
(-6.5975e-09 -6.18636e-09 -2.00357e-07)
(-7.05063e-09 -7.4765e-09 -2.60057e-07)
(-7.48638e-09 -4.81878e-09 -3.38323e-07)
(-6.56185e-09 1.21922e-06 -4.52875e-07)
(3.74858e-07 0.00349182 -3.51125e-06)
(5.47829e-09 2.0185e-08 7.18529e-07)
(1.09308e-09 5.04705e-09 -1.20663e-07)
(1.2806e-09 -3.4703e-09 -1.4227e-07)
(1.52432e-09 -4.07662e-09 -1.64919e-07)
(1.81405e-09 -4.69434e-09 -1.9284e-07)
(2.16006e-09 -5.41361e-09 -2.27651e-07)
(2.57462e-09 -6.23202e-09 -2.71581e-07)
(3.06974e-09 -3.35959e-09 -3.27744e-07)
(3.41522e-09 1.10656e-06 -4.09931e-07)
(-6.90307e-08 0.00350852 -3.1323e-06)
(5.28156e-09 1.88047e-08 6.93683e-07)
(9.39738e-10 5.94768e-09 -1.28798e-07)
(1.12535e-09 -2.687e-09 -1.4972e-07)
(1.3648e-09 -3.13738e-09 -1.71287e-07)
(1.64748e-09 -3.56758e-09 -1.97425e-07)
(1.98266e-09 -4.05491e-09 -2.29403e-07)
(2.38155e-09 -4.59034e-09 -2.68921e-07)
(2.85537e-09 -1.76251e-09 -3.18277e-07)
(3.16729e-09 9.90361e-07 -3.88965e-07)
(-7.06887e-08 0.00352537 -2.80207e-06)
(5.18253e-09 1.72904e-08 6.57278e-07)
(9.14017e-10 6.75481e-09 -1.39035e-07)
(1.09161e-09 -1.94038e-09 -1.59109e-07)
(1.31547e-09 -2.26268e-09 -1.79449e-07)
(1.57299e-09 -2.54433e-09 -2.03655e-07)
(1.86994e-09 -2.85393e-09 -2.32684e-07)
(2.21307e-09 -3.18071e-09 -2.67775e-07)
(2.60791e-09 -5.10976e-10 -3.10558e-07)
(2.80487e-09 8.70928e-07 -3.70479e-07)
(-7.23833e-08 0.00354238 -2.47407e-06)
(5.02855e-09 1.56167e-08 6.05429e-07)
(8.66684e-10 7.41316e-09 -1.5215e-07)
(1.03397e-09 -1.24026e-09 -1.71137e-07)
(1.23931e-09 -1.46401e-09 -1.90038e-07)
(1.46838e-09 -1.63675e-09 -2.12101e-07)
(1.7241e-09 -1.82093e-09 -2.3801e-07)
(2.00976e-09 -2.00716e-09 -2.68623e-07)
(2.32681e-09 4.04109e-10 -3.05034e-07)
(2.41538e-09 7.48244e-07 -3.54879e-07)
(-7.41056e-08 0.00355956 -2.14672e-06)
(4.80635e-09 1.37482e-08 5.32708e-07)
(7.90194e-10 7.84105e-09 -1.69225e-07)
(9.44782e-10 -5.96726e-10 -1.86762e-07)
(1.12863e-09 -7.52541e-10 -2.03907e-07)
(1.32624e-09 -8.55679e-10 -2.23517e-07)
(1.53842e-09 -9.63428e-10 -2.46052e-07)
(1.76607e-09 -1.06921e-09 -2.7206e-07)
(2.00831e-09 9.98131e-10 -3.02228e-07)
(1.99691e-09 6.22251e-07 -3.42512e-07)
(-7.58761e-08 0.00357691 -1.82007e-06)
(4.5012e-09 1.16349e-08 4.3146e-07)
(6.75089e-10 7.91633e-09 -1.91827e-07)
(8.14449e-10 -2.01281e-11 -2.07343e-07)
(9.74022e-10 -1.38723e-10 -2.22232e-07)
(1.13768e-09 -2.09824e-10 -2.38917e-07)
(1.30506e-09 -2.85061e-10 -2.57676e-07)
(1.47578e-09 -3.60317e-10 -2.78829e-07)
(1.64832e-09 1.2929e-09 -3.02764e-07)
(1.54694e-09 4.92872e-07 -3.33921e-07)
(-7.7712e-08 0.00359443 -1.49414e-06)
(4.10021e-09 9.20507e-09 2.90717e-07)
(5.0983e-10 7.45319e-09 -2.22258e-07)
(6.31193e-10 4.793e-10 -2.34825e-07)
(7.63994e-10 3.68806e-10 -2.4666e-07)
(8.92059e-10 2.95705e-10 -2.59677e-07)
(1.01492e-09 2.16406e-10 -2.74022e-07)
(1.1321e-09 1.33685e-10 -2.89858e-07)
(1.2424e-09 1.3178e-09 -3.0738e-07)
(1.06343e-09 3.59997e-07 -3.297e-07)
(-7.96652e-08 0.00361212 -1.16886e-06)
(4.62123e-09 6.34791e-09 9.4395e-08)
(1.21375e-09 6.15899e-09 -2.64017e-07)
(1.21613e-09 8.91267e-10 -2.7209e-07)
(1.21974e-09 7.64064e-10 -2.79555e-07)
(1.20832e-09 6.61047e-10 -2.87706e-07)
(1.18226e-09 5.51181e-10 -2.96611e-07)
(1.14189e-09 4.36209e-10 -3.06338e-07)
(1.08698e-09 1.1126e-09 -3.16969e-07)
(7.28128e-10 2.23384e-07 -3.30378e-07)
(-8.16388e-08 0.00362999 -8.43814e-07)
(4.05089e-10 2.32202e-09 -4.07816e-07)
(-9.98165e-10 2.6724e-09 -5.26752e-07)
(-7.14604e-10 3.06043e-10 -5.05096e-07)
(-4.59514e-10 1.53576e-10 -4.83164e-07)
(-2.40926e-10 8.45902e-12 -4.61218e-07)
(-5.92245e-11 -1.39278e-10 -4.39346e-07)
(8.54659e-11 -2.88893e-10 -4.17556e-07)
(1.92647e-10 -1.38402e-10 -3.9593e-07)
(1.14444e-10 8.21857e-08 -3.7491e-07)
(-4.14362e-08 0.00364803 -5.30994e-07)
(-8.33327e-08 3.31158e-07 -0.00961101)
(1.57856e-08 3.33778e-07 -0.0101165)
(1.76687e-08 1.23377e-08 -0.0106777)
(1.9443e-08 1.2658e-08 -0.0113048)
(2.15062e-08 1.44283e-08 -0.0120102)
(2.39247e-08 1.65904e-08 -0.0128095)
(2.67828e-08 1.92682e-08 -0.0137228)
(3.01953e-08 2.85033e-08 -0.0147762)
(3.61389e-08 1.66565e-06 -0.0160048)
(5.49992e-07 0.0034919 -0.0174537)
(2.20581e-08 3.07866e-07 -0.0101162)
(4.94836e-09 3.08484e-07 -0.0106157)
(4.01975e-09 6.30096e-09 -0.0111668)
(3.02646e-09 6.12515e-09 -0.0117782)
(1.88517e-09 7.21792e-09 -0.0124604)
(5.61545e-10 8.56072e-09 -0.0132264)
(-9.89022e-10 1.02338e-08 -0.0140929)
(-2.82638e-09 1.76531e-08 -0.0150808)
(-5.38962e-09 1.49819e-06 -0.0162177)
(-1.05976e-07 0.00350856 -0.0175376)
(1.74058e-08 2.8533e-07 -0.0106774)
(-3.29634e-10 2.8617e-07 -0.0111668)
(-5.80258e-10 5.83722e-09 -0.0117028)
(-8.14603e-10 5.62105e-09 -0.0122928)
(-1.10639e-09 6.55366e-09 -0.0129455)
(-1.4723e-09 7.68103e-09 -0.0136714)
(-1.93433e-09 9.06098e-09 -0.0144836)
(-2.52303e-09 1.54951e-08 -0.0153983)
(-3.6446e-09 1.33576e-06 -0.0164363)
(-1.04436e-07 0.00352539 -0.0176223)
(1.90182e-08 2.60349e-07 -0.0113045)
(-8.72449e-11 2.61401e-07 -0.0117781)
(-3.39881e-10 5.33652e-09 -0.0122928)
(-5.68098e-10 5.0921e-09 -0.0128545)
(-8.48529e-10 5.87266e-09 -0.01347)
(-1.19509e-09 6.79937e-09 -0.0141474)
(-1.62571e-09 7.91271e-09 -0.0148965)
(-2.16462e-09 1.33983e-08 -0.0157294)
(-3.21221e-09 1.17007e-06 -0.0166609)
(-1.0538e-07 0.00354238 -0.0177079)
(2.09036e-08 2.32538e-07 -0.0120099)
(2.28138e-10 2.33771e-07 -0.0124603)
(-3.19916e-11 4.77908e-09 -0.0129455)
(-2.58973e-10 4.52012e-09 -0.01347)
(-5.3307e-10 5.15724e-09 -0.0140387)
(-8.65546e-10 5.89956e-09 -0.0146577)
(-1.27045e-09 6.77414e-09 -0.0153337)
(-1.76655e-09 1.13468e-08 -0.016075)
(-2.74987e-09 1.00103e-06 -0.0168918)
(-1.06334e-07 0.00355954 -0.0177942)
(2.31314e-08 2.01406e-07 -0.0128092)
(6.37135e-10 2.02763e-07 -0.0132264)
(3.60774e-10 4.1386e-09 -0.0136714)
(1.27203e-10 3.88154e-09 -0.0141473)
(-1.4833e-10 4.38521e-09 -0.0146576)
(-4.7462e-10 4.96047e-09 -0.0152061)
(-8.62236e-10 5.62441e-09 -0.0157973)
(-1.32518e-09 9.31802e-09 -0.0164362)
(-2.2565e-09 8.28492e-07 -0.0171291)
(-1.07314e-07 0.00357686 -0.0178815)
(2.57895e-08 1.66351e-07 -0.0137224)
(1.17004e-09 1.67727e-07 -0.0140928)
(8.63175e-10 3.37562e-09 -0.0144835)
(6.10253e-10 3.14142e-09 -0.0148964)
(3.20993e-10 3.52426e-09 -0.0153336)
(-1.11105e-11 3.95241e-09 -0.0157973)
(-3.93531e-10 4.43595e-09 -0.0162898)
(-8.36132e-10 7.28447e-09 -0.016814)
(-1.73025e-09 6.52279e-07 -0.0173732)
(-1.08323e-07 0.00359436 -0.0179696)
(2.89984e-08 1.26626e-07 -0.0147759)
(1.87217e-09 1.2785e-07 -0.0150807)
(1.51153e-09 2.43098e-09 -0.0153982)
(1.21862e-09 2.24831e-09 -0.0157293)
(8.96401e-10 2.52836e-09 -0.016075)
(5.40457e-10 2.83437e-09 -0.0164362)
(1.45985e-10 3.17191e-09 -0.016814)
(-2.93475e-10 5.21153e-09 -0.0172096)
(-1.16896e-09 4.72214e-07 -0.0176243)
(-1.09367e-07 0.00361203 -0.0180586)
(4.6531e-08 8.12951e-08 -0.0160045)
(1.50697e-08 8.20874e-08 -0.0162176)
(1.32389e-08 1.213e-09 -0.0164362)
(1.14875e-08 1.12374e-09 -0.0166608)
(9.69501e-09 1.32908e-09 -0.0168917)
(7.8628e-09 1.54744e-09 -0.017129)
(5.98742e-09 1.78138e-09 -0.0173731)
(4.06823e-09 3.05242e-09 -0.0176243)
(1.70007e-09 2.88089e-07 -0.0178828)
(-1.09422e-07 0.00362987 -0.0181485)
(3.04933e-08 2.41499e-08 -0.0174561)
(1.29165e-08 1.91644e-08 -0.0175398)
(1.14401e-08 -1.04097e-08 -0.0176244)
(9.9947e-09 -1.03702e-08 -0.0177097)
(8.50965e-09 -1.02585e-08 -0.0177959)
(6.98865e-09 -1.0128e-08 -0.0178829)
(5.43092e-09 -9.98014e-09 -0.0179707)
(3.83919e-09 -9.4953e-09 -0.0180594)
(2.00404e-09 9.02631e-08 -0.0181491)
(-5.46022e-08 0.00364788 -0.0182393)
(9.08755e-11 5.67017e-12 -3.79711e-14)
(3.88528e-14 -1.3064e-12 -4.37309e-14)
(9.22032e-14 -4.56558e-12 -4.56761e-14)
(-6.25356e-14 -8.38955e-12 -5.24381e-14)
(-2.96948e-13 -1.35706e-11 -5.20132e-14)
(-6.39442e-13 -2.09193e-11 -5.48758e-14)
(-1.07198e-12 -3.14235e-11 -5.87372e-14)
(1.79659e-10 -4.67396e-11 -6.56996e-14)
(3.66854e-07 1.44394e-09 -7.78974e-14)
(0.00110295 5.45033e-06 -1.98471e-11)
(-7.72354e-12 -1.31118e-11 2.4987e-12)
(-1.25322e-12 -1.54682e-11 2.08107e-12)
(-1.04691e-12 -1.74242e-11 1.88956e-12)
(-1.15544e-12 -1.97372e-11 1.65545e-12)
(-1.31908e-12 -2.27272e-11 1.32779e-12)
(-1.52378e-12 -2.65651e-11 8.45644e-13)
(-1.80409e-12 -3.17187e-11 1.46508e-13)
(1.28635e-11 -3.91409e-11 -8.22718e-13)
(8.07293e-08 -8.98911e-10 2.16521e-10)
(0.00110279 -1.34567e-06 4.44729e-07)
(-1.0315e-12 -7.77819e-12 6.42451e-13)
(-5.5862e-13 -7.54461e-12 -3.0212e-13)
(-4.83108e-13 -8.1572e-12 -8.18204e-13)
(-5.41708e-13 -9.14912e-12 -1.397e-12)
(-6.24902e-13 -1.05372e-11 -2.12554e-12)
(-7.44003e-13 -1.25094e-11 -3.06122e-12)
(-9.11708e-13 -1.53216e-11 -4.30737e-12)
(9.23293e-12 -1.93665e-11 -6.03792e-12)
(3.68922e-08 -6.31966e-11 -1.28437e-11)
(0.00110295 -1.75153e-07 4.87514e-08)
(3.60389e-13 -3.60619e-12 -1.4307e-12)
(-3.55686e-13 -4.14192e-12 -1.97804e-12)
(-3.21896e-13 -4.81089e-12 -2.43762e-12)
(-3.80092e-13 -5.70061e-12 -3.02215e-12)
(-4.58684e-13 -6.8941e-12 -3.78236e-12)
(-5.65815e-13 -8.51462e-12 -4.79617e-12)
(-7.12209e-13 -1.07521e-11 -6.17979e-12)
(7.90028e-12 -1.39157e-11 -8.11982e-12)
(2.93516e-08 -4.81837e-11 -2.39925e-11)
(0.00110301 -6.5897e-08 -1.68267e-08)
(4.0687e-13 -2.78662e-12 -2.28242e-12)
(-3.31854e-13 -3.35072e-12 -2.81208e-12)
(-3.05895e-13 -3.94438e-12 -3.33319e-12)
(-3.62945e-13 -4.72044e-12 -4.00859e-12)
(-4.39043e-13 -5.74834e-12 -4.89792e-12)
(-5.41918e-13 -7.13172e-12 -6.09077e-12)
(-6.82012e-13 -9.02873e-12 -7.72206e-12)
(6.83832e-12 -1.16856e-11 -1.00026e-11)
(2.59442e-08 -4.08369e-11 -3.21626e-11)
(0.00110304 -5.03351e-08 -3.46751e-08)
(4.00659e-13 -2.47318e-12 -3.35227e-12)
(-3.66304e-13 -3.03904e-12 -3.97822e-12)
(-3.45052e-13 -3.60695e-12 -4.64638e-12)
(-4.08354e-13 -4.34515e-12 -5.5211e-12)
(-4.92876e-13 -5.32016e-12 -6.68048e-12)
(-6.07461e-13 -6.63212e-12 -8.24407e-12)
(-7.63415e-13 -8.42827e-12 -1.03876e-11)
(6.75506e-12 -1.09437e-11 -1.33939e-11)
(2.59949e-08 -3.30032e-11 -4.32606e-11)
(0.00110305 -3.28444e-08 -4.96138e-08)
(3.348e-13 -2.21089e-12 -5.69604e-12)
(-4.91216e-13 -2.86258e-12 -6.5263e-12)
(-4.78588e-13 -3.47274e-12 -7.54853e-12)
(-5.64198e-13 -4.26465e-12 -8.9046e-12)
(-6.79892e-13 -5.31429e-12 -1.07266e-11)
(-8.37034e-13 -6.72661e-12 -1.31987e-11)
(-1.05224e-12 -8.668e-12 -1.66139e-11)
(7.62459e-12 -1.14112e-11 -2.1429e-11)
(2.96626e-08 -2.82256e-11 -6.02547e-11)
(0.00110304 -1.07707e-08 -6.03097e-08)
(-1.08674e-12 -5.41416e-13 -1.45011e-11)
(-9.72613e-13 -1.59984e-12 -1.55368e-11)
(-9.83889e-13 -2.28759e-12 -1.77225e-11)
(-1.14639e-12 -3.17025e-12 -2.06936e-11)
(-1.36997e-12 -4.33793e-12 -2.47681e-11)
(-1.68305e-12 -5.93377e-12 -3.04664e-11)
(-2.13372e-12 -8.23011e-12 -3.86105e-11)
(8.11641e-12 -1.168e-11 -5.08002e-11)
(3.78436e-08 -2.71503e-11 -1.28851e-10)
(0.001103 6.68214e-08 -1.46235e-07)
(-9.91292e-12 1.35242e-11 -8.09801e-11)
(-5.25844e-12 1.39333e-11 -9.20752e-11)
(-5.57979e-12 1.44927e-11 -1.04187e-10)
(-6.40185e-12 1.51444e-11 -1.20466e-10)
(-7.54305e-12 1.5926e-11 -1.43097e-10)
(-9.15008e-12 1.65712e-11 -1.74817e-10)
(-1.15192e-11 1.68193e-11 -2.21658e-10)
(1.21626e-12 1.64335e-11 -2.94642e-10)
(8.33772e-08 2.19139e-10 -1.33537e-09)
(0.00110289 6.19665e-07 -1.11594e-06)
(1.00894e-10 7.63205e-13 -4.12372e-11)
(1.07244e-13 4.76763e-13 -5.28527e-11)
(1.32045e-13 1.77575e-13 -6.7142e-11)
(4.32398e-14 -1.44443e-13 -8.92452e-11)
(-2.4775e-13 -3.32036e-13 -1.22498e-10)
(-1.04128e-12 -3.46272e-13 -1.76836e-10)
(-2.44127e-12 3.81412e-13 -2.6841e-10)
(1.79102e-10 3.05664e-12 -4.18518e-10)
(4.1624e-07 9.29137e-12 -2.4943e-09)
(0.00110357 1.71201e-09 1.21946e-05)
(-7.70783e-12 -1.27915e-11 -2.60118e-12)
(-1.23684e-12 -1.51526e-11 -2.18682e-12)
(-1.02896e-12 -1.70789e-11 -2.00204e-12)
(-1.13607e-12 -1.93937e-11 -1.76895e-12)
(-1.29461e-12 -2.23371e-11 -1.45149e-12)
(-1.49834e-12 -2.61314e-11 -9.80177e-13)
(-1.77611e-12 -3.12335e-11 -2.94089e-13)
(1.28868e-11 -3.85893e-11 6.5774e-13)
(8.07161e-08 -8.98449e-10 -2.1671e-10)
(0.00110278 -1.34576e-06 -4.44682e-07)
(-1.29501e-11 -1.00202e-11 -1.04543e-14)
(-5.63745e-13 -7.23508e-12 -1.33357e-14)
(-4.25284e-13 -6.669e-12 -1.34698e-14)
(-3.99836e-13 -6.32137e-12 -1.70161e-14)
(-3.68757e-13 -6.01896e-12 -1.46194e-14)
(-3.47853e-13 -5.79438e-12 -1.46624e-14)
(-3.37264e-13 -5.66532e-12 -1.49394e-14)
(-8.39265e-12 -5.63803e-12 -1.56644e-14)
(-7.90157e-09 -1.4708e-10 -5.16408e-14)
(0.0011029 -6.0671e-07 -3.51946e-11)
(-2.35601e-12 -2.16932e-12 -7.83874e-14)
(-1.21613e-13 -1.38614e-12 -6.90068e-14)
(-8.36426e-14 -1.25794e-12 -9.60377e-14)
(-7.52475e-14 -1.1365e-12 -1.31213e-13)
(-6.93687e-14 -1.05645e-12 -1.55878e-13)
(-6.49619e-14 -1.00429e-12 -1.76578e-13)
(-6.35909e-14 -9.73066e-13 -1.97766e-13)
(-6.3996e-12 -9.70054e-13 -2.27886e-13)
(-1.60918e-08 -3.51882e-11 -2.5082e-11)
(0.00110299 -1.51019e-07 -6.28874e-08)
(-1.11243e-12 -7.49364e-13 -2.7352e-13)
(-5.66409e-14 -4.80211e-13 -1.5785e-13)
(-3.45903e-14 -4.48935e-13 -1.61446e-13)
(-3.20487e-14 -4.25564e-13 -1.65697e-13)
(-3.01388e-14 -4.08707e-13 -1.71671e-13)
(-2.87904e-14 -3.98718e-13 -1.79304e-13)
(-2.94017e-14 -3.95784e-13 -1.89877e-13)
(-5.83874e-12 -4.06486e-13 -2.08473e-13)
(-1.56234e-08 -2.78661e-11 -2.13792e-11)
(0.00110302 -9.08886e-08 -6.57482e-08)
(-8.33271e-13 -4.59943e-13 -3.38041e-13)
(-4.26626e-14 -2.8479e-13 -2.01924e-13)
(-2.47986e-14 -2.72971e-13 -1.99005e-13)
(-2.3374e-14 -2.65054e-13 -1.98172e-13)
(-2.23197e-14 -2.60709e-13 -1.9936e-13)
(-2.14729e-14 -2.60161e-13 -2.03357e-13)
(-2.24669e-14 -2.64049e-13 -2.10437e-13)
(-5.77496e-12 -2.77708e-13 -2.25876e-13)
(-1.57797e-08 -2.29214e-11 -2.06254e-11)
(0.00110304 -7.3394e-08 -6.51987e-08)
(-8.34756e-13 -3.81749e-13 -4.76742e-13)
(-4.43333e-14 -2.4405e-13 -3.04646e-13)
(-2.66384e-14 -2.40177e-13 -2.96011e-13)
(-2.53099e-14 -2.39045e-13 -2.91296e-13)
(-2.43531e-14 -2.4065e-13 -2.90533e-13)
(-2.3852e-14 -2.45732e-13 -2.94202e-13)
(-2.52101e-14 -2.55084e-13 -3.02633e-13)
(-5.78547e-12 -2.74277e-13 -3.22274e-13)
(-1.57994e-08 -2.07487e-11 -2.2978e-11)
(0.00110304 -6.53433e-08 -7.34275e-08)
(-1.1186e-12 -3.97546e-13 -8.60055e-13)
(-6.36486e-14 -2.82125e-13 -6.04651e-13)
(-4.2275e-14 -2.86891e-13 -5.85886e-13)
(-4.06138e-14 -2.94948e-13 -5.76403e-13)
(-3.96305e-14 -3.0659e-13 -5.75595e-13)
(-3.94185e-14 -3.23244e-13 -5.8551e-13)
(-4.15682e-14 -3.46384e-13 -6.07875e-13)
(-5.86609e-12 -3.83322e-13 -6.52773e-13)
(-1.5641e-08 -2.18875e-11 -2.84074e-11)
(0.00110303 -6.60054e-08 -9.18142e-08)
(-2.38239e-12 -3.03663e-13 -2.72427e-12)
(-1.50912e-13 -3.35602e-13 -1.98122e-12)
(-1.17312e-13 -3.8167e-13 -1.92054e-12)
(-1.1509e-13 -4.23628e-13 -1.91122e-12)
(-1.15424e-13 -4.69705e-13 -1.94714e-12)
(-1.18706e-13 -5.23423e-13 -2.0365e-12)
(-1.27159e-13 -5.89727e-13 -2.19317e-12)
(-6.52808e-12 -6.74069e-13 -2.43817e-12)
(-1.59714e-08 -2.66746e-11 -3.78538e-11)
(0.001103 -6.27007e-08 -1.5602e-07)
(-1.33412e-11 1.17692e-12 -1.7384e-11)
(-1.02153e-12 1.1439e-12 -1.55253e-11)
(-9.21308e-13 1.12224e-12 -1.60527e-11)
(-9.53964e-13 1.11267e-12 -1.69105e-11)
(-1.01419e-12 1.12309e-12 -1.82316e-11)
(-1.10774e-12 1.15479e-12 -2.0196e-11)
(-1.24746e-12 1.23646e-12 -2.30421e-11)
(-9.75353e-12 1.37183e-12 -2.73047e-11)
(-6.81042e-09 1.37674e-12 -1.83839e-10)
(0.00110293 -4.17313e-10 -6.21129e-07)
(-9.05387e-12 -1.42335e-11 -7.27518e-11)
(-4.68208e-12 -1.48199e-11 -8.31398e-11)
(-4.937e-12 -1.55913e-11 -9.43468e-11)
(-5.68544e-12 -1.64486e-11 -1.09713e-10)
(-6.75843e-12 -1.73564e-11 -1.31688e-10)
(-8.31901e-12 -1.79206e-11 -1.63523e-10)
(-1.07439e-11 -1.75249e-11 -2.12654e-10)
(1.40844e-12 -1.48293e-11 -2.94592e-10)
(8.3097e-08 -2.14814e-10 -1.34805e-09)
(0.00110285 -6.19064e-07 -1.12163e-06)
(-1.03708e-12 -7.64775e-12 -7.02044e-13)
(-5.50759e-13 -7.40086e-12 2.40649e-13)
(-4.73307e-13 -7.99641e-12 7.50566e-13)
(-5.30375e-13 -8.95895e-12 1.32507e-12)
(-6.12482e-13 -1.03274e-11 2.04028e-12)
(-7.29595e-13 -1.22656e-11 2.96161e-12)
(-8.94705e-13 -1.50323e-11 4.18855e-12)
(9.23838e-12 -1.90146e-11 5.89332e-12)
(3.69053e-08 -6.29333e-11 1.26832e-11)
(0.00110294 -1.75423e-07 -4.88582e-08)
(-2.35693e-12 -2.15053e-12 6.64906e-14)
(-1.19941e-13 -1.36366e-12 5.63755e-14)
(-8.23969e-14 -1.23577e-12 8.36714e-14)
(-7.39262e-14 -1.11456e-12 1.19005e-13)
(-6.8079e-14 -1.03427e-12 1.43565e-13)
(-6.37136e-14 -9.81615e-13 1.64071e-13)
(-6.22422e-14 -9.4983e-13 1.84901e-13)
(-6.41434e-12 -9.4574e-13 2.14306e-13)
(-1.61045e-08 -3.51571e-11 2.50299e-11)
(0.00110298 -1.51192e-07 6.28099e-08)
(-1.70987e-13 -4.75367e-13 -8.80024e-16)
(-2.65032e-14 -2.81944e-13 -2.58718e-16)
(-2.13887e-14 -2.42153e-13 -8.69143e-17)
(-1.85021e-14 -2.10014e-13 -9.99383e-17)
(-1.61142e-14 -1.82569e-13 -7.39115e-17)
(-1.40294e-14 -1.59759e-13 -2.54411e-16)
(-1.33982e-14 -1.40835e-13 -1.12063e-16)
(-5.79006e-12 -1.22958e-13 -6.71653e-17)
(-1.8784e-08 3.16308e-12 -1.21986e-14)
(0.00110303 -7.40491e-09 -1.023e-11)
(-5.14637e-14 -1.60597e-13 -4.11711e-14)
(-1.36506e-14 -1.00152e-13 -7.72304e-15)
(-1.07529e-14 -8.59321e-14 -6.73404e-15)
(-9.27335e-15 -7.41501e-14 -5.84987e-15)
(-8.05247e-15 -6.42733e-14 -5.13622e-15)
(-7.08317e-15 -5.59291e-14 -4.75554e-15)
(-7.35389e-15 -4.90823e-14 -4.266e-15)
(-5.53607e-12 -4.25409e-14 -3.33249e-15)
(-1.7875e-08 1.18864e-12 2.54698e-13)
(0.00110305 -1.20405e-09 -3.60786e-09)
(-3.56593e-14 -8.45173e-14 -5.00738e-14)
(-1.0044e-14 -4.51698e-14 -1.79035e-14)
(-7.77244e-15 -3.88774e-14 -1.54816e-14)
(-6.73307e-15 -3.36651e-14 -1.33631e-14)
(-5.80769e-15 -2.91398e-14 -1.15688e-14)
(-5.05224e-15 -2.53329e-14 -1.00292e-14)
(-5.59519e-15 -2.21736e-14 -9.05282e-15)
(-5.52511e-12 -1.92591e-14 -7.71284e-15)
(-1.77991e-08 5.84097e-13 5.34481e-13)
(0.00110306 -2.239e-09 -2.26031e-09)
(-3.51398e-14 -5.57433e-14 -7.46569e-14)
(-9.74689e-15 -2.28061e-14 -3.68162e-14)
(-7.48698e-15 -1.96697e-14 -3.17481e-14)
(-6.46094e-15 -1.6988e-14 -2.74754e-14)
(-5.59324e-15 -1.47716e-14 -2.39437e-14)
(-4.87283e-15 -1.30774e-14 -2.08226e-14)
(-5.42788e-15 -1.15463e-14 -1.82517e-14)
(-5.52738e-12 -9.72865e-15 -1.59014e-14)
(-1.78041e-08 5.26373e-13 6.18015e-13)
(0.00110306 -2.26465e-09 -2.17194e-09)
(-4.94018e-14 -4.5433e-14 -1.39078e-13)
(-1.23056e-14 -1.14668e-14 -8.16133e-14)
(-9.65141e-15 -1.00449e-14 -7.01999e-14)
(-8.34797e-15 -8.81287e-15 -6.08168e-14)
(-7.30804e-15 -7.89672e-15 -5.29437e-14)
(-6.41987e-15 -7.18065e-15 -4.63863e-14)
(-6.63738e-15 -6.60095e-15 -4.09333e-14)
(-5.54487e-12 -5.55593e-15 -3.56814e-14)
(-1.78929e-08 2.33555e-13 1.25204e-12)
(0.00110305 -3.65689e-09 -1.13987e-09)
(-1.66996e-13 7.76222e-15 -4.38956e-13)
(-2.37792e-14 4.5187e-15 -2.50345e-13)
(-1.8951e-14 1.49563e-15 -2.15466e-13)
(-1.65201e-14 8.26164e-16 -1.89797e-13)
(-1.45544e-14 8.23325e-16 -1.68949e-13)
(-1.29293e-14 1.09609e-15 -1.53007e-13)
(-1.27718e-14 1.8446e-15 -1.41256e-13)
(-5.8154e-12 2.36935e-15 -1.31636e-13)
(-1.88252e-08 2.54151e-14 3.27857e-12)
(0.00110303 -6.31617e-11 -7.96385e-09)
(-2.42722e-12 7.2311e-13 -3.48867e-12)
(-1.98538e-13 7.58439e-13 -2.75493e-12)
(-1.64138e-13 8.09859e-13 -2.70624e-12)
(-1.61055e-13 8.60124e-13 -2.71109e-12)
(-1.62217e-13 9.19089e-13 -2.76936e-12)
(-1.66912e-13 9.91993e-13 -2.89219e-12)
(-1.77831e-13 1.0867e-12 -3.09876e-12)
(-6.57894e-12 1.22248e-12 -3.43552e-12)
(-1.60032e-08 2.70941e-11 -3.86987e-11)
(0.00110298 6.21636e-08 -1.55873e-07)
(-7.35061e-13 -1.86079e-12 -1.32568e-11)
(-7.77822e-13 -1.05034e-12 -1.35136e-11)
(-7.27589e-13 -6.93709e-13 -1.47731e-11)
(-8.13838e-13 -2.40111e-13 -1.66217e-11)
(-9.43682e-13 3.74665e-13 -1.93587e-11)
(-1.14189e-12 1.27441e-12 -2.34622e-11)
(-1.4492e-12 2.69245e-12 -2.9802e-11)
(8.83863e-12 5.09835e-12 -4.00269e-11)
(3.76256e-08 1.92428e-11 -1.15549e-10)
(0.00110295 -6.65872e-08 -1.47029e-07)
(3.5402e-13 -3.57989e-12 1.39923e-12)
(-3.54281e-13 -4.10268e-12 1.94613e-12)
(-3.18404e-13 -4.7572e-12 2.39663e-12)
(-3.75617e-13 -5.62895e-12 2.97002e-12)
(-4.52772e-13 -6.79944e-12 3.71643e-12)
(-5.58045e-13 -8.38979e-12 4.71172e-12)
(-7.02096e-13 -1.05875e-11 6.07062e-12)
(7.88629e-12 -1.3696e-11 7.97694e-12)
(2.9253e-08 -4.80133e-11 2.3833e-11)
(0.00110299 -6.64529e-08 1.68782e-08)
(-1.11174e-12 -7.31598e-13 2.62853e-13)
(-5.51652e-14 -4.61291e-13 1.44468e-13)
(-3.34353e-14 -4.30209e-13 1.48121e-13)
(-3.09332e-14 -4.0706e-13 1.52486e-13)
(-2.89955e-14 -3.90057e-13 1.58467e-13)
(-2.76557e-14 -3.79897e-13 1.66227e-13)
(-2.82989e-14 -3.76294e-13 1.76057e-13)
(-5.84889e-12 -3.86224e-13 1.93814e-13)
(-1.56873e-08 -2.7764e-11 2.13219e-11)
(0.00110301 -9.07673e-08 6.55547e-08)
(-5.14476e-14 -1.59718e-13 4.03968e-14)
(-1.35957e-14 -9.99061e-14 7.67318e-15)
(-1.06474e-14 -8.58763e-14 6.59147e-15)
(-9.32922e-15 -7.40599e-14 5.76995e-15)
(-8.17218e-15 -6.41954e-14 5.05973e-15)
(-7.07142e-15 -5.59261e-14 4.73019e-15)
(-7.26309e-15 -4.90273e-14 4.21573e-15)
(-5.52917e-12 -4.22918e-14 3.31058e-15)
(-1.78702e-08 1.22517e-12 -2.57811e-13)
(0.00110304 -1.06784e-09 3.54189e-09)
(-2.55322e-14 -5.28747e-14 9.57736e-19)
(-9.02038e-15 -4.40352e-14 -1.59105e-16)
(-7.02309e-15 -3.80136e-14 6.70196e-17)
(-5.99586e-15 -3.28613e-14 6.14756e-17)
(-5.24399e-15 -2.83653e-14 -8.59895e-18)
(-4.62068e-15 -2.46218e-14 -1.55329e-16)
(-5.07399e-15 -2.1365e-14 -7.67901e-18)
(-5.37631e-12 -1.8873e-14 5.43927e-17)
(-1.72888e-08 4.68652e-13 1.43485e-14)
(0.00110306 1.88339e-09 2.73291e-11)
(-2.22856e-14 -2.59165e-14 -8.72371e-15)
(-7.41494e-15 -2.16732e-14 -7.12497e-15)
(-5.6784e-15 -1.86466e-14 -6.16771e-15)
(-4.88939e-15 -1.60308e-14 -5.27773e-15)
(-4.23755e-15 -1.39945e-14 -4.47621e-15)
(-3.68618e-15 -1.20784e-14 -3.97776e-15)
(-4.42842e-15 -1.05502e-14 -3.47811e-15)
(-5.38283e-12 -9.32972e-15 -2.84473e-15)
(-1.72857e-08 1.88537e-13 2.04705e-13)
(0.00110307 7.80681e-10 7.34093e-10)
(-2.1958e-14 -1.24453e-14 -2.04396e-14)
(-7.22962e-15 -1.02484e-14 -1.69033e-14)
(-5.50944e-15 -8.86166e-15 -1.46101e-14)
(-4.75285e-15 -7.63622e-15 -1.26074e-14)
(-4.11974e-15 -6.5993e-15 -1.09207e-14)
(-3.5852e-15 -5.75663e-15 -9.52541e-15)
(-4.32053e-15 -5.01489e-15 -8.3158e-15)
(-5.38255e-12 -4.27675e-15 -7.42958e-15)
(-1.72852e-08 2.04669e-13 2.01037e-13)
(0.00110307 7.30359e-10 8.2296e-10)
(-2.4457e-14 -3.41818e-15 -4.28731e-14)
(-8.37305e-15 -2.84915e-15 -3.5717e-14)
(-6.45728e-15 -2.48509e-15 -3.07386e-14)
(-5.56185e-15 -2.24159e-15 -2.63454e-14)
(-4.82299e-15 -1.90255e-15 -2.29412e-14)
(-4.19304e-15 -1.53207e-15 -1.9811e-14)
(-4.79001e-15 -1.23964e-15 -1.73546e-14)
(-5.37942e-12 -1.11662e-15 -1.54113e-14)
(-1.7305e-08 1.53436e-14 4.92696e-13)
(0.00110306 -7.11309e-12 1.96062e-09)
(-4.90849e-14 4.13531e-14 -1.4425e-13)
(-1.21793e-14 7.14391e-15 -8.47206e-14)
(-9.60953e-15 5.78617e-15 -7.2192e-14)
(-8.27166e-15 5.22071e-15 -6.2629e-14)
(-7.11517e-15 4.92092e-15 -5.46125e-14)
(-6.21308e-15 4.81743e-15 -4.81132e-14)
(-6.59967e-15 4.8601e-15 -4.2819e-14)
(-5.53428e-12 4.37309e-15 -3.78854e-14)
(-1.7907e-08 -2.37169e-13 1.30014e-12)
(0.00110304 3.44744e-09 -8.3705e-10)
(-1.14399e-12 6.47521e-13 -1.25652e-12)
(-8.75347e-14 5.38657e-13 -9.98093e-13)
(-6.56773e-14 5.51484e-13 -9.79963e-13)
(-6.40728e-14 5.67015e-13 -9.77187e-13)
(-6.37185e-14 5.88131e-13 -9.87662e-13)
(-6.4379e-14 6.17284e-13 -1.01353e-12)
(-6.7762e-14 6.55849e-13 -1.05769e-12)
(-5.90911e-12 7.1222e-13 -1.13004e-12)
(-1.58067e-08 2.20711e-11 -2.87245e-11)
(0.001103 6.55517e-08 -9.14268e-08)
(6.53653e-13 5.0471e-13 -3.70374e-12)
(-2.87884e-13 8.59435e-13 -4.05361e-12)
(-2.30681e-13 1.09636e-12 -4.47023e-12)
(-2.59314e-13 1.41006e-12 -5.05146e-12)
(-3.01104e-13 1.83747e-12 -5.87327e-12)
(-3.63114e-13 2.44066e-12 -7.05462e-12)
(-4.55737e-13 3.3267e-12 -8.79998e-12)
(8.28084e-12 4.67821e-12 -1.14701e-11)
(2.93758e-08 1.99904e-11 -4.77267e-11)
(0.00110298 1.1261e-08 -6.10099e-08)
(3.86085e-13 -2.8684e-12 2.32183e-12)
(-3.35748e-13 -3.41657e-12 2.84763e-12)
(-3.10144e-13 -4.00006e-12 3.36003e-12)
(-3.6625e-13 -4.76354e-12 4.02459e-12)
(-4.41355e-13 -5.77566e-12 4.90062e-12)
(-5.43043e-13 -7.13947e-12 6.07616e-12)
(-6.81403e-13 -9.01069e-12 7.68523e-12)
(6.81119e-12 -1.16423e-11 9.94383e-12)
(2.58633e-08 -4.07581e-11 3.21392e-11)
(0.00110301 -5.03831e-08 3.50115e-08)
(-8.2946e-13 -4.36905e-13 3.19092e-13)
(-4.15481e-14 -2.65465e-13 1.84434e-13)
(-2.3616e-14 -2.54087e-13 1.81659e-13)
(-2.20561e-14 -2.46153e-13 1.80955e-13)
(-2.09605e-14 -2.41802e-13 1.82206e-13)
(-2.027e-14 -2.40984e-13 1.85873e-13)
(-2.13248e-14 -2.44235e-13 1.92508e-13)
(-5.7838e-12 -2.56959e-13 2.07263e-13)
(-1.58264e-08 -2.28249e-11 2.05542e-11)
(0.00110303 -7.31626e-08 6.51216e-08)
(-3.57453e-14 -8.4636e-14 5.00364e-14)
(-1.0044e-14 -4.47874e-14 1.80663e-14)
(-7.81341e-15 -3.87755e-14 1.52096e-14)
(-6.6967e-15 -3.34909e-14 1.30918e-14)
(-5.80367e-15 -2.90511e-14 1.15406e-14)
(-5.04955e-15 -2.51979e-14 1.02068e-14)
(-5.52669e-15 -2.20582e-14 8.94395e-15)
(-5.51625e-12 -1.89427e-14 7.46305e-15)
(-1.77841e-08 6.12628e-13 -5.47858e-13)
(0.00110305 -2.12103e-09 2.19242e-09)
(-2.22475e-14 -2.58253e-14 8.71696e-15)
(-7.42672e-15 -2.17617e-14 7.19898e-15)
(-5.65079e-15 -1.85929e-14 6.10788e-15)
(-4.87353e-15 -1.60076e-14 5.28139e-15)
(-4.25266e-15 -1.39417e-14 4.51222e-15)
(-3.69911e-15 -1.20735e-14 3.97398e-15)
(-4.38209e-15 -1.05459e-14 3.47487e-15)
(-5.3796e-12 -9.31513e-15 3.03792e-15)
(-1.7271e-08 1.78928e-13 -1.8869e-13)
(0.00110307 7.80079e-10 -6.9334e-10)
(-2.01228e-14 -1.21197e-14 -4.261e-17)
(-6.40711e-15 -1.01952e-14 -1.17333e-16)
(-4.82305e-15 -8.82022e-15 -3.09305e-18)
(-4.16104e-15 -7.62573e-15 2.54652e-17)
(-3.60611e-15 -6.59899e-15 1.81743e-17)
(-3.13808e-15 -5.71993e-15 -1.29513e-18)
(-3.87465e-15 -4.99427e-15 -3.06209e-19)
(-5.38635e-12 -4.32143e-15 4.40844e-17)
(-1.72721e-08 -1.68107e-14 3.44615e-15)
(0.00110307 2.909e-11 9.3541e-12)
(-1.98276e-14 -3.45743e-15 -8.36222e-15)
(-6.29405e-15 -2.93035e-15 -7.05664e-15)
(-4.76131e-15 -2.50685e-15 -6.06724e-15)
(-4.05895e-15 -2.14994e-15 -5.23552e-15)
(-3.5198e-15 -1.851e-15 -4.53492e-15)
(-3.06682e-15 -1.59849e-15 -3.95849e-15)
(-3.83788e-15 -1.3966e-15 -3.45461e-15)
(-5.38477e-12 -1.2651e-15 -3.01366e-15)
(-1.72642e-08 3.53169e-15 -1.29692e-14)
(0.00110307 2.31587e-11 3.63517e-11)
(-2.14361e-14 4.38683e-15 -2.03586e-14)
(-6.94907e-15 3.43349e-15 -1.69297e-14)
(-5.26782e-15 3.03514e-15 -1.45929e-14)
(-4.54594e-15 2.63179e-15 -1.25871e-14)
(-3.93613e-15 2.30102e-15 -1.09199e-14)
(-3.42974e-15 2.07685e-15 -9.4584e-15)
(-4.15533e-15 1.74775e-15 -8.32376e-15)
(-5.3814e-12 1.39934e-15 -7.35529e-15)
(-1.72764e-08 -1.86295e-13 1.85047e-13)
(0.00110306 -7.00872e-10 8.19704e-10)
(-3.41985e-14 4.60205e-14 -7.74521e-14)
(-9.12766e-15 1.4171e-14 -3.87807e-14)
(-6.97695e-15 1.19562e-14 -3.31305e-14)
(-5.99356e-15 1.04066e-14 -2.83892e-14)
(-5.19158e-15 9.00653e-15 -2.4712e-14)
(-4.54478e-15 8.09166e-15 -2.17444e-14)
(-5.18022e-15 7.27003e-15 -1.93426e-14)
(-5.51454e-12 6.21971e-15 -1.69651e-14)
(-1.77922e-08 -5.3538e-13 6.24278e-13)
(0.00110304 2.16115e-09 -1.9909e-09)
(-8.51775e-13 5.94588e-13 -7.44933e-13)
(-6.06882e-14 4.6118e-13 -5.71439e-13)
(-4.31748e-14 4.63712e-13 -5.65017e-13)
(-4.22052e-14 4.70067e-13 -5.65728e-13)
(-4.17581e-14 4.80677e-13 -5.73316e-13)
(-4.196e-14 4.97044e-13 -5.8822e-13)
(-4.43203e-14 5.20484e-13 -6.11817e-13)
(-5.80899e-12 5.57278e-13 -6.50115e-13)
(-1.58841e-08 2.09459e-11 -2.3193e-11)
(0.00110301 6.51228e-08 -7.29951e-08)
(6.82984e-13 8.0401e-13 -1.60225e-12)
(-1.80448e-13 1.05572e-12 -1.85086e-12)
(-1.20164e-13 1.22457e-12 -2.04965e-12)
(-1.34271e-13 1.45167e-12 -2.32381e-12)
(-1.55387e-13 1.76364e-12 -2.70618e-12)
(-1.86653e-13 2.20163e-12 -3.24913e-12)
(-2.32366e-13 2.83536e-12 -4.037e-12)
(7.37298e-12 3.78722e-12 -5.22008e-12)
(2.58077e-08 2.42294e-11 -3.31329e-11)
(0.00110299 3.30822e-08 -4.97803e-08)
(3.61926e-13 -2.71532e-12 3.59548e-12)
(-3.86233e-13 -3.28241e-12 4.21847e-12)
(-3.66481e-13 -3.85417e-12 4.89308e-12)
(-4.30522e-13 -4.59776e-12 5.77513e-12)
(-5.16122e-13 -5.58117e-12 6.94519e-12)
(-6.32165e-13 -6.9049e-12 8.52391e-12)
(-7.90558e-13 -8.72392e-12 1.06945e-11)
(6.71641e-12 -1.12741e-11 1.3737e-11)
(2.59844e-08 -3.32583e-11 4.36389e-11)
(0.00110301 -3.2752e-08 4.98887e-08)
(-8.30938e-13 -3.56661e-13 4.46907e-13)
(-4.27875e-14 -2.20638e-13 2.77796e-13)
(-2.49598e-14 -2.17036e-13 2.69922e-13)
(-2.3583e-14 -2.15944e-13 2.65347e-13)
(-2.26631e-14 -2.1759e-13 2.64435e-13)
(-2.2129e-14 -2.22414e-13 2.67564e-13)
(-2.34466e-14 -2.31071e-13 2.75486e-13)
(-5.78998e-12 -2.49166e-13 2.94338e-13)
(-1.58203e-08 -2.06979e-11 2.29056e-11)
(0.00110303 -6.52803e-08 7.33917e-08)
(-3.5026e-14 -5.56148e-14 7.46263e-14)
(-9.69678e-15 -2.26568e-14 3.6424e-14)
(-7.53676e-15 -1.94044e-14 3.13528e-14)
(-6.44556e-15 -1.67643e-14 2.71909e-14)
(-5.57968e-15 -1.46427e-14 2.35579e-14)
(-4.8668e-15 -1.29247e-14 2.0579e-14)
(-5.40915e-15 -1.13553e-14 1.81343e-14)
(-5.51617e-12 -9.65851e-15 1.544e-14)
(-1.7785e-08 5.48333e-13 -6.22508e-13)
(0.00110305 -2.21012e-09 2.12098e-09)
(-2.19552e-14 -1.24131e-14 2.0393e-14)
(-7.26026e-15 -1.04358e-14 1.71181e-14)
(-5.49974e-15 -8.83333e-15 1.46051e-14)
(-4.72523e-15 -7.60694e-15 1.26012e-14)
(-4.12784e-15 -6.58709e-15 1.09259e-14)
(-3.61063e-15 -5.74612e-15 9.50677e-15)
(-4.25251e-15 -4.99794e-15 8.31415e-15)
(-5.38021e-12 -4.31271e-15 7.44829e-15)
(-1.72711e-08 1.87639e-13 -1.82687e-13)
(0.00110307 6.93792e-10 -7.82502e-10)
(-1.98821e-14 -3.48545e-15 8.41569e-15)
(-6.26762e-15 -2.90616e-15 7.0721e-15)
(-4.7095e-15 -2.48836e-15 6.07707e-15)
(-4.06252e-15 -2.16018e-15 5.25056e-15)
(-3.52161e-15 -1.89081e-15 4.58027e-15)
(-3.06508e-15 -1.60531e-15 3.95434e-15)
(-3.85415e-15 -1.38682e-15 3.46445e-15)
(-5.38558e-12 -1.44492e-15 3.03747e-15)
(-1.72721e-08 -1.66874e-15 1.4499e-14)
(0.00110307 -9.38185e-12 -2.92229e-11)
(-1.96418e-14 4.13301e-15 -4.06317e-17)
(-6.12487e-15 3.38279e-15 -8.23364e-17)
(-4.58569e-15 3.01332e-15 6.95917e-18)
(-3.95299e-15 2.61303e-15 3.27402e-18)
(-3.43118e-15 2.27758e-15 6.8581e-19)
(-2.98924e-15 2.04789e-15 -5.27756e-17)
(-3.80791e-15 1.73312e-15 1.80661e-17)
(-5.38403e-12 1.44723e-15 -1.97218e-17)
(-1.72643e-08 1.23073e-14 -3.95369e-15)
(0.00110307 -3.62322e-11 -2.3116e-11)
(-2.1104e-14 1.37795e-14 -8.64202e-15)
(-6.73319e-15 1.1396e-14 -7.11179e-15)
(-5.07678e-15 9.76597e-15 -6.09043e-15)
(-4.38269e-15 8.42892e-15 -5.24613e-15)
(-3.76535e-15 7.31951e-15 -4.54377e-15)
(-3.32086e-15 6.37671e-15 -3.96435e-15)
(-4.12762e-15 5.60046e-15 -3.46517e-15)
(-5.38058e-12 4.88649e-15 -3.08289e-15)
(-1.72764e-08 -1.85663e-13 1.86958e-13)
(0.00110306 -8.17211e-10 7.00316e-10)
(-3.32665e-14 6.40159e-14 -5.26167e-14)
(-8.67077e-15 2.72615e-14 -1.99207e-14)
(-6.61281e-15 2.35532e-14 -1.72592e-14)
(-5.7011e-15 2.05976e-14 -1.51368e-14)
(-4.9321e-15 1.77477e-14 -1.30142e-14)
(-4.28705e-15 1.53852e-14 -1.12591e-14)
(-4.94866e-15 1.36563e-14 -9.87027e-15)
(-5.51383e-12 1.20095e-14 -8.53588e-15)
(-1.77911e-08 -6.25796e-13 5.36663e-13)
(0.00110304 1.99281e-09 -2.1433e-09)
(-8.48121e-13 6.70384e-13 -5.75949e-13)
(-5.68736e-14 5.05549e-13 -4.40209e-13)
(-3.92897e-14 5.02563e-13 -4.38271e-13)
(-3.86329e-14 5.04874e-13 -4.41086e-13)
(-3.85047e-14 5.12968e-13 -4.491e-13)
(-3.86414e-14 5.26842e-13 -4.62648e-13)
(-4.06556e-14 5.47651e-13 -4.8255e-13)
(-5.80434e-12 5.8154e-13 -5.14252e-13)
(-1.58896e-08 2.30678e-11 -2.08197e-11)
(0.00110301 7.27678e-08 -6.49665e-08)
(6.86624e-13 9.63595e-13 -7.36971e-13)
(-1.45961e-13 1.16277e-12 -9.46811e-13)
(-8.3204e-14 1.3019e-12 -1.06937e-12)
(-9.1693e-14 1.49394e-12 -1.23626e-12)
(-1.05266e-13 1.76238e-12 -1.46766e-12)
(-1.26356e-13 2.14368e-12 -1.79531e-12)
(-1.57382e-13 2.69821e-12 -2.27034e-12)
(7.431e-12 3.53342e-12 -2.98534e-12)
(2.56882e-08 3.0748e-11 -2.36401e-11)
(0.00110299 5.02514e-08 -3.52927e-08)
(2.49393e-13 -2.80978e-12 6.6032e-12)
(-5.6099e-13 -3.49575e-12 7.5097e-12)
(-5.54956e-13 -4.15484e-12 8.63019e-12)
(-6.49486e-13 -5.01575e-12 1.01165e-11)
(-7.76555e-13 -6.16226e-12 1.21032e-11)
(-9.49386e-13 -7.73163e-12 1.47846e-11)
(-1.18896e-12 -9.90207e-12 1.85154e-11)
(7.44906e-12 -1.29921e-11 2.38996e-11)
(2.96783e-08 -3.04288e-11 6.4459e-11)
(0.00110299 -1.10952e-08 6.0036e-08)
(-1.11438e-12 -3.6495e-13 8.12692e-13)
(-6.07211e-14 -2.50606e-13 5.58296e-13)
(-3.95299e-14 -2.56495e-13 5.40453e-13)
(-3.79171e-14 -2.64906e-13 5.316e-13)
(-3.70216e-14 -2.76883e-13 5.31552e-13)
(-3.68874e-14 -2.9363e-13 5.41769e-13)
(-3.89205e-14 -3.16153e-13 5.63673e-13)
(-5.87818e-12 -3.50743e-13 6.06114e-13)
(-1.56784e-08 -2.18725e-11 2.82758e-11)
(0.00110301 -6.60425e-08 9.17601e-08)
(-4.90592e-14 -4.48162e-14 1.38013e-13)
(-1.23415e-14 -1.12696e-14 8.0859e-14)
(-9.64275e-15 -9.76755e-15 6.97887e-14)
(-8.34973e-15 -8.53689e-15 6.04332e-14)
(-7.31048e-15 -7.72771e-15 5.26563e-14)
(-6.31717e-15 -6.97687e-15 4.61239e-14)
(-6.66033e-15 -6.29779e-15 4.07093e-14)
(-5.52996e-12 -5.26697e-15 3.55673e-14)
(-1.78753e-08 2.63322e-13 -1.28101e-12)
(0.00110304 -3.5759e-09 1.05864e-09)
(-2.44212e-14 -3.38991e-15 4.28544e-14)
(-8.37474e-15 -2.77346e-15 3.56944e-14)
(-6.42767e-15 -2.37582e-15 3.05858e-14)
(-5.54642e-15 -2.24644e-15 2.62596e-14)
(-4.84053e-15 -1.89719e-15 2.26706e-14)
(-4.20664e-15 -1.50705e-15 1.97603e-14)
(-4.7442e-15 -1.39825e-15 1.7226e-14)
(-5.37599e-12 -1.36519e-15 1.51145e-14)
(-1.72894e-08 -1.39708e-14 -4.7408e-13)
(0.00110306 -2.6588e-11 -1.89852e-09)
(-2.14842e-14 4.50107e-15 2.046e-14)
(-6.9496e-15 3.5436e-15 1.69869e-14)
(-5.27861e-15 3.04597e-15 1.46051e-14)
(-4.55458e-15 2.60777e-15 1.26319e-14)
(-3.94272e-15 2.27904e-15 1.09522e-14)
(-3.42752e-15 2.06213e-15 9.54338e-15)
(-4.20683e-15 1.76092e-15 8.31521e-15)
(-5.38275e-12 1.50038e-15 7.58321e-15)
(-1.72858e-08 -2.09561e-13 -1.93135e-13)
(0.00110307 -7.34338e-10 -7.82947e-10)
(-2.10594e-14 1.37644e-14 8.65369e-15)
(-6.73634e-15 1.13471e-14 7.10553e-15)
(-5.08386e-15 9.75887e-15 6.1132e-15)
(-4.38483e-15 8.45427e-15 5.2788e-15)
(-3.80202e-15 7.32715e-15 4.55766e-15)
(-3.3125e-15 6.39764e-15 3.973e-15)
(-4.09328e-15 5.60005e-15 3.48543e-15)
(-5.38257e-12 5.12067e-15 3.14739e-15)
(-1.72851e-08 -2.0444e-13 -2.08715e-13)
(0.00110307 -8.20736e-10 -7.30143e-10)
(-2.30557e-14 2.95361e-14 5.88969e-17)
(-7.5506e-15 2.42764e-14 1.24315e-16)
(-5.75481e-15 2.07561e-14 9.23056e-17)
(-4.95718e-15 1.78502e-14 2.10198e-17)
(-4.30044e-15 1.56185e-14 1.18699e-16)
(-3.74256e-15 1.35285e-14 1.69445e-17)
(-4.4524e-15 1.19186e-14 -3.57234e-17)
(-5.37863e-12 1.06858e-14 0)
(-1.73044e-08 -4.9323e-13 -1.79455e-14)
(0.00110306 -1.94495e-09 5.23969e-12)
(-4.62078e-14 1.08106e-13 -4.37717e-14)
(-1.03491e-14 5.53707e-14 -1.06113e-14)
(-7.9542e-15 4.79838e-14 -9.26849e-15)
(-6.84784e-15 4.16783e-14 -8.3874e-15)
(-5.95304e-15 3.66799e-14 -7.43445e-15)
(-5.15894e-15 3.22329e-14 -6.77378e-15)
(-5.66109e-15 2.8336e-14 -6.04869e-15)
(-5.53196e-12 2.45259e-14 -5.01723e-15)
(-1.79013e-08 -1.28269e-12 2.35887e-13)
(0.00110304 8.42081e-10 -3.41453e-09)
(-1.12685e-12 9.73451e-13 -5.53735e-13)
(-6.97256e-14 7.21425e-13 -4.32234e-13)
(-4.90992e-14 7.10777e-13 -4.34743e-13)
(-4.79876e-14 7.08544e-13 -4.41339e-13)
(-4.75888e-14 7.14938e-13 -4.52076e-13)
(-4.79355e-14 7.30049e-13 -4.68188e-13)
(-5.04625e-14 7.5593e-13 -4.90816e-13)
(-5.88075e-12 7.98884e-13 -5.2597e-13)
(-1.58164e-08 2.80789e-11 -2.15591e-11)
(0.001103 9.04418e-08 -6.50767e-08)
(6.85378e-13 1.40438e-12 -1.03687e-13)
(-1.54857e-13 1.53972e-12 -3.43145e-13)
(-7.9216e-14 1.66849e-12 -4.32238e-13)
(-8.50074e-14 1.8559e-12 -5.50282e-13)
(-9.5431e-14 2.12717e-12 -7.12765e-13)
(-1.1236e-13 2.52317e-12 -9.43541e-13)
(-1.38179e-13 3.10984e-12 -1.28228e-12)
(8.5302e-12 4.00908e-12 -1.79996e-12)
(2.89574e-08 3.55595e-11 -1.60605e-11)
(0.00110298 6.72316e-08 -1.69465e-08)
(-1.32782e-12 -2.50916e-12 1.78967e-11)
(-1.22835e-12 -3.82558e-12 1.94623e-11)
(-1.28693e-12 -4.85658e-12 2.23627e-11)
(-1.51756e-12 -6.22099e-12 2.63594e-11)
(-1.85278e-12 -8.11142e-12 3.1979e-11)
(-2.34434e-12 -1.08731e-11 4.02494e-11)
(-3.05448e-12 -1.49636e-11 5.2571e-11)
(6.90698e-12 -2.12939e-11 7.15572e-11)
(3.76701e-08 -4.00346e-11 1.57458e-10)
(0.00110294 6.61702e-08 1.46129e-07)
(-2.36282e-12 -3.11526e-13 2.54805e-12)
(-1.46535e-13 -3.11542e-13 1.89155e-12)
(-1.14464e-13 -3.48427e-13 1.86697e-12)
(-1.13226e-13 -3.86778e-13 1.88182e-12)
(-1.1444e-13 -4.26875e-13 1.93513e-12)
(-1.17258e-13 -4.57043e-13 2.02032e-12)
(-1.25207e-13 -4.91263e-13 2.17626e-12)
(-6.56209e-12 -5.59992e-13 2.44862e-12)
(-1.60217e-08 -2.68241e-11 3.79816e-11)
(0.00110298 -6.24236e-08 1.55591e-07)
(-1.65715e-13 1.37451e-15 4.27079e-13)
(-2.34129e-14 2.20526e-15 2.43809e-13)
(-1.88378e-14 2.63289e-15 2.1345e-13)
(-1.6545e-14 3.10026e-15 1.89944e-13)
(-1.46196e-14 3.50464e-15 1.7027e-13)
(-1.29474e-14 3.82995e-15 1.54449e-13)
(-1.27724e-14 4.00329e-15 1.42724e-13)
(-5.80144e-12 4.47884e-15 1.33946e-13)
(-1.88001e-08 2.06088e-14 -3.42001e-12)
(0.00110303 6.3025e-12 7.75277e-09)
(-4.87366e-14 3.84536e-14 1.39858e-13)
(-1.21664e-14 6.4405e-15 8.35615e-14)
(-9.64751e-15 5.92408e-15 7.21956e-14)
(-8.33945e-15 5.67814e-15 6.30795e-14)
(-7.13934e-15 5.43664e-15 5.51504e-14)
(-6.28642e-15 5.25923e-15 4.85307e-14)
(-6.7192e-15 5.02623e-15 4.31721e-14)
(-5.53643e-12 4.52375e-15 3.80158e-14)
(-1.78796e-08 -2.46214e-13 -1.21868e-12)
(0.00110305 3.64576e-09 1.19922e-09)
(-3.40566e-14 4.47341e-14 7.61614e-14)
(-9.10277e-15 1.31902e-14 3.78327e-14)
(-6.94632e-15 1.15948e-14 3.26877e-14)
(-6.00219e-15 1.04601e-14 2.83215e-14)
(-5.18623e-15 9.25629e-15 2.4792e-14)
(-4.55808e-15 8.33613e-15 2.19592e-14)
(-5.12106e-15 7.61179e-15 1.9376e-14)
(-5.52622e-12 6.72651e-15 1.68383e-14)
(-1.77999e-08 -5.21358e-13 -5.71086e-13)
(0.00110306 2.27744e-09 2.24056e-09)
(-3.32304e-14 6.35396e-14 5.22268e-14)
(-8.63592e-15 2.67253e-14 1.91802e-14)
(-6.53972e-15 2.27496e-14 1.63697e-14)
(-5.65727e-15 1.97353e-14 1.43327e-14)
(-4.92227e-15 1.74467e-14 1.2501e-14)
(-4.28756e-15 1.54191e-14 1.12193e-14)
(-4.8631e-15 1.36898e-14 1.00257e-14)
(-5.52773e-12 1.19061e-14 8.7275e-15)
(-1.78033e-08 -5.93509e-13 -5.09904e-13)
(0.00110306 2.17056e-09 2.24836e-09)
(-4.61471e-14 1.08862e-13 4.4442e-14)
(-1.03159e-14 5.52871e-14 1.05278e-14)
(-7.999e-15 4.78668e-14 9.21873e-15)
(-6.81888e-15 4.15289e-14 8.3396e-15)
(-5.90945e-15 3.65072e-14 7.33931e-15)
(-5.23963e-15 3.16651e-14 6.36289e-15)
(-5.68248e-15 2.77804e-14 5.62915e-15)
(-5.54269e-12 2.39319e-14 4.83618e-15)
(-1.78886e-08 -1.2022e-12 -2.12752e-13)
(0.00110305 1.14692e-09 3.6248e-09)
(-1.57302e-13 3.15033e-13 2.33971e-16)
(-1.69071e-14 1.43683e-13 1.76871e-16)
(-1.31476e-14 1.25659e-13 1.58666e-16)
(-1.14225e-14 1.1125e-13 9.82491e-17)
(-9.96553e-15 9.86242e-14 5.72609e-17)
(-8.87446e-15 8.85138e-14 8.91868e-17)
(-9.0517e-15 8.01463e-14 -1.74211e-16)
(-5.80337e-12 7.11593e-14 -1.37614e-16)
(-1.88106e-08 -3.13155e-12 2.2248e-14)
(0.00110303 7.5952e-09 5.76139e-11)
(-2.35081e-12 2.19232e-12 -5.02224e-13)
(-1.24261e-13 1.51273e-12 -4.91695e-13)
(-9.16753e-14 1.47598e-12 -5.04537e-13)
(-8.932e-14 1.45814e-12 -5.21321e-13)
(-8.83222e-14 1.45842e-12 -5.42615e-13)
(-8.84463e-14 1.47806e-12 -5.70126e-13)
(-9.15124e-14 1.51859e-12 -6.05112e-13)
(-6.44265e-12 1.58885e-12 -6.56501e-13)
(-1.6088e-08 3.60469e-11 -2.51806e-11)
(0.00110299 1.51401e-07 -6.25807e-08)
(-5.53828e-13 3.94594e-12 1.18691e-12)
(-2.5963e-13 3.33549e-12 6.03539e-13)
(-1.50823e-13 3.43586e-12 5.19137e-13)
(-1.52724e-13 3.6276e-12 4.2295e-13)
(-1.60403e-13 3.94406e-12 3.0299e-13)
(-1.76328e-13 4.4362e-12 1.39396e-13)
(-2.02537e-13 5.18891e-12 -1.01461e-13)
(1.00229e-11 6.34653e-12 -4.8524e-13)
(3.6854e-08 4.60795e-11 -5.24981e-12)
(0.00110295 1.76011e-07 4.95316e-08)
(-1.07572e-11 8.33408e-12 9.14351e-11)
(-6.06796e-12 7.79331e-12 1.04184e-10)
(-6.57546e-12 7.21498e-12 1.19162e-10)
(-7.66644e-12 6.35522e-12 1.39561e-10)
(-9.20019e-12 5.15755e-12 1.68273e-10)
(-1.13674e-11 3.13551e-12 2.09165e-10)
(-1.44652e-11 -8.21029e-13 2.67945e-10)
(-2.81474e-12 -7.58804e-12 3.59152e-10)
(8.31098e-08 1.80831e-10 1.41672e-09)
(0.00110279 6.18936e-07 1.11663e-06)
(-1.32037e-11 1.26606e-12 1.61502e-11)
(-9.16983e-13 1.2351e-12 1.41774e-11)
(-8.27075e-13 1.21996e-12 1.45953e-11)
(-8.56936e-13 1.22367e-12 1.53484e-11)
(-9.06745e-13 1.25442e-12 1.65227e-11)
(-9.82044e-13 1.30131e-12 1.82734e-11)
(-1.10475e-12 1.3645e-12 2.08967e-11)
(-9.70268e-12 1.50023e-12 2.49772e-11)
(-6.83974e-09 1.91522e-12 1.82775e-10)
(0.0011029 2.04378e-11 6.20547e-07)
(-2.40961e-12 7.36234e-13 3.32714e-12)
(-1.8998e-13 7.34452e-13 2.66343e-12)
(-1.58088e-13 7.73897e-13 2.64235e-12)
(-1.57946e-13 8.23598e-13 2.67585e-12)
(-1.62041e-13 8.89537e-13 2.77548e-12)
(-1.70724e-13 9.76638e-13 2.9635e-12)
(-1.87332e-13 1.09647e-12 3.27451e-12)
(-6.6189e-12 1.2917e-12 3.7763e-12)
(-1.60126e-08 2.77707e-11 3.95767e-11)
(0.00110299 6.24961e-08 1.55397e-07)
(-1.13693e-12 6.26439e-13 1.20809e-12)
(-8.31669e-14 5.11136e-13 9.51095e-13)
(-6.25928e-14 5.22339e-13 9.38645e-13)
(-6.16535e-14 5.38528e-13 9.39917e-13)
(-6.19028e-14 5.62704e-13 9.5585e-13)
(-6.30934e-14 5.96121e-13 9.88101e-13)
(-6.69372e-14 6.40667e-13 1.04025e-12)
(-5.8855e-12 7.04867e-13 1.12438e-12)
(-1.56118e-08 2.2328e-11 2.89117e-11)
(0.00110302 6.62413e-08 9.1873e-08)
(-8.45606e-13 5.74168e-13 7.14961e-13)
(-5.89122e-14 4.4174e-13 5.49048e-13)
(-4.13425e-14 4.42855e-13 5.43784e-13)
(-4.05445e-14 4.48646e-13 5.4474e-13)
(-4.02802e-14 4.59846e-13 5.5216e-13)
(-4.06004e-14 4.76867e-13 5.66711e-13)
(-4.30709e-14 5.01051e-13 5.90325e-13)
(-5.78797e-12 5.38329e-13 6.29184e-13)
(-1.57733e-08 2.10585e-11 2.33395e-11)
(0.00110304 6.53526e-08 7.3627e-08)
(-8.4361e-13 6.57102e-13 5.60315e-13)
(-5.6148e-14 4.9013e-13 4.24805e-13)
(-3.85061e-14 4.87192e-13 4.24024e-13)
(-3.74967e-14 4.89113e-13 4.2729e-13)
(-3.71356e-14 4.96638e-13 4.35203e-13)
(-3.7337e-14 5.09464e-13 4.48635e-13)
(-3.95506e-14 5.29795e-13 4.68072e-13)
(-5.78642e-12 5.63472e-13 4.99163e-13)
(-1.58055e-08 2.31977e-11 2.09038e-11)
(0.00110304 7.31985e-08 6.51855e-08)
(-1.12002e-12 9.52497e-13 5.38771e-13)
(-6.92061e-14 7.05549e-13 4.20219e-13)
(-4.82356e-14 6.95387e-13 4.2256e-13)
(-4.71556e-14 6.93417e-13 4.29272e-13)
(-4.69406e-14 6.99082e-13 4.40496e-13)
(-4.7319e-14 7.14466e-13 4.57191e-13)
(-4.9554e-14 7.39638e-13 4.79894e-13)
(-5.84865e-12 7.81897e-13 5.14426e-13)
(-1.565e-08 2.82816e-11 2.16815e-11)
(0.00110303 9.08165e-08 6.55279e-08)
(-2.34302e-12 2.16631e-12 4.91429e-13)
(-1.23273e-13 1.4934e-12 4.82379e-13)
(-9.06545e-14 1.45666e-12 4.95008e-13)
(-8.83994e-14 1.4389e-12 5.11609e-13)
(-8.73554e-14 1.43909e-12 5.32612e-13)
(-8.74821e-14 1.45885e-12 5.59433e-13)
(-9.06077e-14 1.49923e-12 5.94144e-13)
(-6.41379e-12 1.56886e-12 6.45238e-13)
(-1.6059e-08 3.61427e-11 2.53318e-11)
(0.001103 1.51535e-07 6.3112e-08)
(-1.28966e-11 9.15336e-12 -4.27486e-15)
(-5.11535e-13 6.82379e-12 -7.65177e-15)
(-3.92934e-13 6.75267e-12 -8.37282e-15)
(-3.89915e-13 6.76141e-12 -9.04354e-15)
(-3.92305e-13 6.85797e-12 -9.82012e-15)
(-4.00292e-13 7.04835e-12 -1.04431e-14)
(-4.17056e-13 7.34387e-12 -1.14142e-14)
(-8.35825e-12 7.76454e-12 -1.22625e-14)
(-7.89958e-09 1.49559e-10 1.9815e-13)
(0.00110293 6.07655e-07 4.11704e-10)
(-7.64122e-12 2.25869e-11 6.18836e-12)
(-1.60902e-12 2.43169e-11 6.06201e-12)
(-1.34278e-12 2.5237e-11 6.2095e-12)
(-1.39212e-12 2.65318e-11 6.41839e-12)
(-1.46273e-12 2.82702e-11 6.68449e-12)
(-1.5623e-12 3.06018e-11 7.00876e-12)
(-1.7045e-12 3.37692e-11 7.39332e-12)
(1.30997e-11 3.84449e-11 7.89534e-12)
(8.07526e-08 8.98997e-10 2.2874e-10)
(0.00110283 1.35291e-06 4.47039e-07)
(1.0043e-10 1.07061e-14 1.07993e-11)
(1.6809e-12 -3.3157e-13 1.86398e-11)
(2.06315e-12 -7.27694e-13 2.65379e-11)
(2.46808e-12 -1.23109e-12 3.92907e-11)
(3.02588e-12 -1.62281e-12 5.76544e-11)
(3.3491e-12 -1.82334e-12 8.70641e-11)
(3.1516e-12 -1.86459e-12 1.47607e-10)
(1.83896e-10 1.7355e-13 2.52791e-10)
(4.15735e-07 6.02947e-12 2.29626e-09)
(0.00110337 3.38298e-11 -1.21952e-05)
(-1.01284e-11 -7.67231e-12 8.82978e-11)
(-5.85261e-12 -7.08548e-12 1.01319e-10)
(-6.38145e-12 -6.34493e-12 1.16981e-10)
(-7.51895e-12 -5.15873e-12 1.38644e-10)
(-9.17673e-12 -3.28217e-12 1.69918e-10)
(-1.16296e-11 1.03196e-13 2.15955e-10)
(-1.53129e-11 6.84342e-12 2.85556e-10)
(-4.78688e-12 1.93647e-11 3.99536e-10)
(8.31091e-08 -1.56723e-10 1.50646e-09)
(0.0011028 -6.18931e-07 1.11684e-06)
(-1.15495e-12 1.07122e-12 1.93539e-11)
(-1.24616e-12 2.3698e-12 2.07221e-11)
(-1.28739e-12 3.38166e-12 2.34737e-11)
(-1.49726e-12 4.72469e-12 2.7393e-11)
(-1.80137e-12 6.59713e-12 3.30521e-11)
(-2.25248e-12 9.34814e-12 4.14197e-11)
(-2.94103e-12 1.36123e-11 5.43212e-11)
(6.97989e-12 2.0557e-11 7.52585e-11)
(3.76489e-08 4.16278e-11 1.68289e-10)
(0.00110296 -6.6024e-08 1.45905e-07)
(5.01925e-13 1.69073e-12 5.57264e-12)
(-4.37381e-13 2.19457e-12 6.1592e-12)
(-3.98904e-13 2.61495e-12 6.88335e-12)
(-4.5461e-13 3.1681e-12 7.88492e-12)
(-5.32883e-13 3.91031e-12 9.27525e-12)
(-6.46018e-13 4.93949e-12 1.12445e-11)
(-8.10478e-13 6.4161e-12 1.41067e-11)
(7.95499e-12 8.58999e-12 1.83975e-11)
(2.97779e-08 2.48054e-11 5.74104e-11)
(0.00110301 1.10387e-08 5.94404e-08)
(6.08484e-13 1.42765e-12 2.29011e-12)
(-2.39627e-13 1.73926e-12 2.60349e-12)
(-1.88601e-13 1.98653e-12 2.89599e-12)
(-2.12005e-13 2.31486e-12 3.2936e-12)
(-2.45435e-13 2.75851e-12 3.84072e-12)
(-2.93315e-13 3.37244e-12 4.6037e-12)
(-3.61565e-13 4.24723e-12 5.69132e-12)
(7.29112e-12 5.53863e-12 7.29589e-12)
(2.60654e-08 2.6077e-11 3.56384e-11)
(0.00110304 3.24029e-08 4.98273e-08)
(6.50954e-13 1.3106e-12 1.01687e-12)
(-1.75817e-13 1.54432e-12 1.25637e-12)
(-1.1566e-13 1.72259e-12 1.4118e-12)
(-1.28551e-13 1.96521e-12 1.62127e-12)
(-1.4758e-13 2.29897e-12 1.90867e-12)
(-1.75596e-13 2.76726e-12 2.31024e-12)
(-2.15673e-13 3.43768e-12 2.88574e-12)
(7.42075e-12 4.43237e-12 3.73941e-12)
(2.58745e-08 3.1843e-11 2.45224e-11)
(0.00110305 5.01008e-08 3.50904e-08)
(6.58543e-13 1.58896e-12 2.18915e-13)
(-1.67691e-13 1.74552e-12 4.63257e-13)
(-9.56259e-14 1.89915e-12 5.68702e-13)
(-1.03707e-13 2.11898e-12 7.06651e-13)
(-1.16913e-13 2.43212e-12 8.94419e-13)
(-1.37843e-13 2.88182e-12 1.15766e-12)
(-1.69093e-13 3.53866e-12 1.53872e-12)
(8.58528e-12 4.52947e-12 2.11241e-12)
(2.92394e-08 3.62183e-11 1.64063e-11)
(0.00110304 6.66872e-08 1.65621e-08)
(-5.75093e-13 4.00983e-12 -1.16895e-12)
(-2.62193e-13 3.39314e-12 -5.7854e-13)
(-1.56319e-13 3.5108e-12 -4.86686e-13)
(-1.59722e-13 3.72437e-12 -3.81073e-13)
(-1.69439e-13 4.06973e-12 -2.48816e-13)
(-1.87824e-13 4.59871e-12 -6.9005e-14)
(-2.17388e-13 5.40169e-12 1.92765e-13)
(1.00862e-11 6.62705e-12 6.04295e-13)
(3.70672e-08 4.64952e-11 5.37175e-12)
(0.001103 1.75771e-07 -4.95477e-08)
(-7.6523e-12 2.24494e-11 -6.22392e-12)
(-1.60175e-12 2.41703e-11 -6.09568e-12)
(-1.33505e-12 2.50915e-11 -6.24591e-12)
(-1.38474e-12 2.63908e-11 -6.45646e-12)
(-1.45604e-12 2.81381e-11 -6.72326e-12)
(-1.5568e-12 3.04851e-11 -7.04692e-12)
(-1.7007e-12 3.36767e-11 -7.42875e-12)
(1.32211e-11 3.839e-11 -7.92526e-12)
(8.10299e-08 8.98505e-10 -2.28452e-10)
(0.00110287 1.35136e-06 -4.46646e-07)
(9.37694e-11 -1.024e-11 -4.67502e-14)
(9.54714e-13 -8.03183e-12 -4.57657e-14)
(1.34254e-12 -1.01384e-11 -4.67902e-14)
(1.62535e-12 -1.24153e-11 -4.75337e-14)
(1.9499e-12 -1.48618e-11 -4.79404e-14)
(2.33494e-12 -1.74456e-11 -4.80034e-14)
(2.82535e-12 -1.96125e-11 -4.71573e-14)
(1.85636e-10 -2.13505e-11 -4.57335e-14)
(3.68478e-07 -1.53867e-09 6.60197e-15)
(0.00110315 -5.47419e-06 3.317e-10)
)
;
boundaryField
{
walls
{
type zeroGradient;
}
nozzleExt
{
type zeroGradient;
}
nozzleInt
{
type noSlip;
}
inlet
{
type fixedValue;
value uniform (1 0 0);
}
outlet
{
type zeroGradient;
}
defaultFaces
{
type empty;
}
}
// ************************************************************************* //
| [
"benroque94@gmail.com"
] | benroque94@gmail.com | |
efd66e854a0792dbaafab08f67a94e98e6fb3ef2 | e138a8fdd55e682fcd550f890cce63789416026e | /MCF/StreamFilters/StreamFilterBase.hpp | 8f5ed199b08562d36dc199b52c2396985033b06c | [] | no_license | lamboxn/MCF | bf8e4e5ba32b7b8c03435601fba77c5133e32aaa | 222883dc3d3ef8a348d6dd7ea9ff597c2b5e8f2c | refs/heads/master | 2021-01-21T07:15:02.563951 | 2015-12-10T10:59:09 | 2015-12-10T10:59:09 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,110 | hpp | // 这个文件是 MCF 的一部分。
// 有关具体授权说明,请参阅 MCFLicense.txt。
// Copyleft 2013 - 2015, LH_Mouse. All wrongs reserved.
#ifndef MCF_STREAM_FILTERS_STREAM_FILTER_BASE_HPP_
#define MCF_STREAM_FILTERS_STREAM_FILTER_BASE_HPP_
#include "../Core/StreamBuffer.hpp"
#include <cstddef>
#include <cstdint>
namespace MCF {
class StreamFilterBase {
private:
bool x_bInited;
StreamBuffer x_sbufOutput;
std::uint64_t x_u64BytesProcessed;
protected:
constexpr StreamFilterBase() noexcept
: x_bInited(false), x_sbufOutput(), x_u64BytesProcessed(0)
{
}
virtual ~StreamFilterBase();
protected:
virtual void X_DoInit() = 0;
virtual void X_DoUpdate(const void *pData, std::size_t uSize) = 0;
virtual void X_DoFinalize() = 0;
// 子类中使用这两个函数输出数据。
void X_Output(unsigned char by){
x_sbufOutput.Put(by);
}
void X_Output(const void *pData, std::size_t uSize){
x_sbufOutput.Put(pData, uSize);
}
public:
void Abort() noexcept {
if(x_bInited){
x_sbufOutput.Clear();
x_u64BytesProcessed = 0;
x_bInited = false;
}
}
void Update(const void *pData, std::size_t uSize){
if(!x_bInited){
x_sbufOutput.Clear();
x_u64BytesProcessed = 0;
X_DoInit();
x_bInited = true;
}
X_DoUpdate(pData, uSize);
x_u64BytesProcessed += uSize;
}
StreamBuffer &Finalize(){
if(x_bInited){
X_DoFinalize();
x_bInited = false;
}
return GetOutputBuffer();
}
std::uint64_t QueryBytesProcessed() const noexcept {
return x_u64BytesProcessed;
}
const StreamBuffer &GetOutputBuffer() const noexcept {
return x_sbufOutput;
}
StreamBuffer &GetOutputBuffer() noexcept {
return x_sbufOutput;
}
StreamFilterBase &Filter(const StreamBuffer &sbufData){
ASSERT(&x_sbufOutput != &sbufData);
for(auto ce = sbufData.EnumerateFirstChunk(); ce; ++ce){
Update(ce.GetData(), ce.GetSize());
}
return *this;
}
StreamFilterBase &FilterInPlace(StreamBuffer &sbufData){
Filter(sbufData);
Finalize();
sbufData.Swap(x_sbufOutput);
x_sbufOutput.Clear();
x_u64BytesProcessed = 0;
return *this;
}
};
}
#endif
| [
"lh_mouse@126.com"
] | lh_mouse@126.com |
95c13c33a1b3f5be89336b92a9b9a9b40c6fbf6c | e741f43e6f28669f1330faa422bbf44c496b63b4 | /old/CmdLine.cc | 401db11e525c02d38d7efec348dee69d6ed776ef | [] | no_license | StevensDeptECE/CPE593 | d5ee7816a42d9db112a9618fb95c14922ccd8e75 | 3ca8115e84287a2afd18d27976720c159ab056a2 | refs/heads/master | 2023-04-26T21:07:47.252333 | 2023-04-19T01:25:09 | 2023-04-19T01:25:09 | 102,521,068 | 50 | 51 | null | 2023-03-05T17:45:52 | 2017-09-05T19:22:17 | C++ | UTF-8 | C++ | false | false | 158 | cc | #include <iostream>
#include <iostream>
using namespace std;
int main(int argc, char* argv[]) {
for (int i = 0; i < argc; i++)
cout << argv[i] << '\n';
}
| [
"Dov.Kruger@stevens.edu"
] | Dov.Kruger@stevens.edu |
56b5c2178919cdd6abd097cd096573c49a14b319 | 3e194ed62e1c2889200956f4869f4302fd8ec1e2 | /CodeChef/NovChallenge19/hardSeq.cpp | 01aee9a0ae88e35598e5e04a876fdf7b152f5296 | [] | no_license | Mythili007/CodePractice | 12200c4f0159a13768102162b81e7ad20664f7c3 | 8de758858887d71d23e2316a6396ec05398db197 | refs/heads/master | 2021-06-05T19:15:45.589220 | 2021-05-07T19:28:12 | 2021-05-07T19:28:12 | 135,747,445 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,465 | cpp | #include <bits/stdc++.h>
using namespace std;
int main()
{
int t;
cin >> t;
while (t-- > 0)
{
int n;
cin >> n;
int lastElement = 0, nextElement = 0;
int a[128], lastElementIndex;
a[1] = a[2] = 0;
for (int i = 3; i <= 128; i++)
{
// cout<<"a[i]: "<<a[i] << " ";
nextElement = 0;
lastElement = a[i - 1];
lastElementIndex = i - 1;
for (int j = lastElementIndex - 1; j >= 0; j--)
{
// cout<<"j : "<<j<<endl;
if (lastElement == a[j])
{
// cout<<"lastElement: "<< lastElement << " and a[j]: " << a[j] << " " << " lastelemnetindex: " << lastElementIndex << " " << endl;
nextElement = lastElementIndex - j;
break;
}
}
// cout<< "nextElement: " << nextElement<<endl;
// cout<<endl;
if (nextElement != 0){
a[i] = nextElement;
// cout<<"a[i]: "<<a[i]<<endl;
}
else{
a[i] = 0;
// cout<< "a[i]: "<<a[i]<<endl;
}
}
int x = a[n], count=0;
// cout<<"x: "<<x<<endl;
for(int i=1;i<=n;i++){
// cout<<a[i]<< " ";
if(a[i] == x)
count++;
}
cout<<count<<endl;
}
return 0;
} | [
"indira.mythili@gmail.com"
] | indira.mythili@gmail.com |
e622fc1a7ac57c2520735396e92264cbe8234527 | b92769dda6c8b7e9bf79c48df810a702bfdf872f | /5.Loops&RelationalExpressions/Exercises/9.cpp | 5e39e468da1d74d909353d7e49da4956bc9adb54 | [
"MIT"
] | permissive | HuangStomach/Cpp-primer-plus | 4276e0a24887ef6d48f202107b7b4c448230cd20 | c8b2b90f10057e72da3ab570da7cc39220c88f70 | refs/heads/master | 2021-06-25T07:22:15.405581 | 2021-02-28T06:55:23 | 2021-02-28T06:55:23 | 209,192,905 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 322 | cpp | #include <iostream>
#include <string>
using namespace std;
int main(int argc, char const *argv[]) {
string str;
string done = "done";
int res = 0;
cout << "Enter words" << endl;
cin >> str;
while (str != done) {
res++;
cin >> str;
cin.get();
}
cout << "total: " << res << endl;
return 0;
}
| [
"nxmbest@qq.com"
] | nxmbest@qq.com |
5359547ca3441218d3d54524288517a522d70428 | b5d733cbc502441ba9553ac52c4702b950436683 | /saves/0.0.0/include/Region.h | a016a6799f3d8e8f16414b8037276c462bac9482 | [] | no_license | thprfssr/OldProjectC | d033551eb45c98766b2511d17601321f8f9d8137 | bad7c86f04f298c03caae83ea249b0df4ae49709 | refs/heads/master | 2021-03-27T18:25:39.617947 | 2017-09-05T23:28:24 | 2017-09-05T23:28:24 | 102,539,520 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 299 | h | #pragma once
#include <fstream>
#include <string>
#include <SFML/Graphics.hpp>
#include "Game.h"
#include "Tile.h"
#include "Character.h"
class Region
{
public:
void manageRegion();
void drawTiles();
Region(int region_id);
private:
int m_region_id;
int m_tile_array[256];
};
| [
"jaca2899@gmail.com"
] | jaca2899@gmail.com |
7d55189f0f9c90567001a808cf7f12ce5128018e | bdfbd76440f360c6ecf73ca8d1301bb2ca371dca | /plugs/drkPvr/threaded.cpp | 2ff91a3aba127f68e4808d5e473874c9b3e4f763 | [] | no_license | PSP-Archive/nulldce-psp | a546dad4926230def9991ee1221fae8a7a00b74f | 7d9be432144d8aced3808ded537bded64691dc95 | refs/heads/main | 2023-08-25T02:43:22.199230 | 2021-10-16T22:58:28 | 2021-10-16T22:58:28 | 336,100,922 | 16 | 11 | null | 2021-04-25T04:03:49 | 2021-02-04T22:36:16 | C++ | UTF-8 | C++ | false | false | 1,975 | cpp | #include <queue>
#include "threaded.h"
#include <stdio.h>
#include <stdlib.h>
#include "Renderer_if.h"
#include "ta.h"
#include "spg.h"
#include "plugins/plugin_manager.h"
static volatile u32 TA_cachedIndex = 0;
#define vfpu_TADMA_cache_push(data) \
{ \
const u32 idx = PSP_UC(TA_cachedIndex); \
__asm__("ulv.q C000, %1\n" "sv.q C000, %0" : "=m"(TA_cached[idx]) : "m"(data[0])); \
__asm__("ulv.q C000, %1\n" "sv.q C000, %0" : "=m"(TA_cached[idx+4]) : "m"(data[4]));\
PSP_UC(TA_cachedIndex) = (idx + 8) & TA_MAX_COUNT_MASK; \
}
using namespace TASplitter;
u32 mutex = 0;
volatile u32 threaded_CurrentList=ListType_None;
// send "Job done" irq immediately, and let the pvr thread handle it when it can :)
bool threaded_ImmediateIRQ(u32 * data)
{
Ta_Dma * td = (Ta_Dma*) data;
switch (td->pcw.ParaType)
{
case ParamType_End_Of_List:
if (threaded_CurrentList==ListType_None)
threaded_CurrentList=td->pcw.ListType;
// printf("RaiseInterrupt %d\n",threaded_CurrentList);
params.RaiseInterrupt(ListEndInterrupt[threaded_CurrentList]);
threaded_CurrentList=ListType_None;
break;
case ParamType_Sprite:
case ParamType_Polygon_or_Modifier_Volume:
if (threaded_CurrentList==ListType_None)
threaded_CurrentList=td->pcw.ListType;
break;
}
return true;
}
extern "C" void test_and_set(u32 * m);
extern "C" void unlock_mutx(u32 * m);
static void ME_mutex_lock(u32 * m){
test_and_set(m);
}
static void ME_mutex_unlock(u32 * m){
unlock_mutx(m);
}
void threaded_TADma(u32* data,u32 size)
{
}
extern u64 time_pref;
void threaded_TASQ(u32* data)
{
}
int threaded_task(int data)
{
return 0;
}
void threaded_init()
{
/*ME_Init();
InitFunction(threaded_task, 0);
StartFunction();*/
}
void threaded_term()
{
} | [
"grillo383@gmail.com"
] | grillo383@gmail.com |
3c4926b34b4781c652c5534aa115fe3917bdb834 | 3df01d7e712197babed04169b8602811330fb42f | /codeblocks/tree/tree_node_deletion_with_replacement_deepest.cpp | 6b47a91fa3b6946707d01fb981bb30339226df2e | [] | no_license | rohittiwarirvt/myCompetitiveProg | d43d4ec10d81bec0bf84811aaf736206cfcb66b8 | 7d8d257d0eee423893762a833a5cb438a1eca93f | refs/heads/mycpp-master | 2021-01-13T11:18:03.256898 | 2018-06-08T15:19:01 | 2018-06-08T15:19:01 | 81,396,726 | 0 | 0 | null | 2018-06-08T15:19:02 | 2017-02-09T01:54:27 | C | UTF-8 | C++ | false | false | 1,943 | cpp | #include <stdio.h>
#include <stdlib.h>
#include <queue>
using namespace std;
struct tree {
int data;
struct tree * left;
struct tree * right;
};
struct tree* createNode(int data) {
struct tree* node = (struct tree*)malloc(sizeof(struct tree));
node->left= node->right = NULL;
node->data = data;
}
void inorder(struct tree * root) {
if (root != NULL) {
inorder(root->left);
printf("=>%d ", root->data );
inorder(root->right);
}
}
void deleteDeepest(struct tree* root, struct tree* d_node) {
queue<struct tree *> q;
q.push(root);
struct tree* temp;
while(!q.empty()) {
temp = q.front();
q.pop();
if (temp->left) {
if(temp->left == d_node) {
temp->left = NULL;
delete(d_node);
return;
} else {
q.push(temp->left);
}
}
if (temp->right) {
if(temp->right == d_node) {
temp->right = NULL;
delete(d_node);
return;
} else {
q.push(temp->right);
}
}
}
}
void deletion(struct tree* root, int key) {
queue<struct tree*> q;
q.push(root);
struct tree* temp = NULL;
struct tree* key_node = NULL;
while(!q.empty()) {
temp = q.front();
q.pop();
if ( temp->data == key) {
key_node = temp;
}
if (temp->left){
q.push(temp->left);
}
if (temp->right){
q.push(temp->right);
}
}
int x = temp->data;
deleteDeepest(root, temp);
key_node->data = x;
}
int main() {
struct tree * node = createNode(1);
node->left = createNode(2);
node->right = createNode(3);
node->left->left = createNode(4);
node->left->right = createNode(5);
node->right->left = createNode(6);
node->right->right = createNode(7);
printf("Inorder Traversal before in deletion\n");
inorder(node);
int key = 5;
deletion(node, key);
printf("\n");
printf("Inorder Traversal after deletion\n");
inorder(node);
return 0;
}
| [
"rohittiwarirvt@gmail.com"
] | rohittiwarirvt@gmail.com |
865a3e56f2b8b0627b58c944e64560b0484b4705 | 776f5892f1395bb8d30731a60466e4c756a44c8c | /contests/abc203/abc203_d/main.cc | 4de8c2d78e7016b555e6daea9f7d82aa236e1ae7 | [] | no_license | kkishi/atcoder | fae494af4b47a9f39f05e7536e93d5c4dd21555b | f21d22095699dbf064c0d084a5ce5a09a252dc6b | refs/heads/master | 2023-08-31T18:37:13.293499 | 2023-08-27T21:33:43 | 2023-08-27T21:33:43 | 264,760,383 | 0 | 0 | null | 2023-03-10T05:24:07 | 2020-05-17T21:30:14 | C++ | UTF-8 | C++ | false | false | 520 | cc | #include <bits/stdc++.h>
#include "atcoder.h"
#include "binary_search.h"
#include "cumulative_sum.h"
void Main() {
ints(n, k);
vector a(n, vector(n, int(0)));
cin >> a;
vector b(n, vector(n, int(0)));
wt(BinarySearch<int>(big, -1, [&](int x) {
rep(i, n) rep(j, n) b[i][j] = (a[i][j] <= x);
CumulativeSum2D sum(b);
rep(i, k - 1, n) rep(j, k - 1, n) {
int s = sum.Get(i - k + 1, j - k + 1, i, j);
int t = (k * k + 1) / 2;
if (s >= t) return true;
}
return false;
}));
}
| [
"keisuke.kishimoto@gmail.com"
] | keisuke.kishimoto@gmail.com |
a0fd8552ce06b27b6838fcea81c55bea56000e69 | 9e283eaca525fc5b5aa86fcbf1b0c77942f93055 | /src/ChatManager.hpp | 9766b7df24db0478740d402411e322af7d1f95d3 | [
"MIT"
] | permissive | mobabel/HiHUD-bb10 | a0ebfd7e3b20492dfb87348cea7631701e6f64f5 | 41f1e4c9ff751ed320b288056dba46209a890a96 | refs/heads/master | 2021-08-14T21:53:10.886578 | 2017-11-16T21:27:50 | 2017-11-16T21:27:50 | 111,022,451 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,601 | hpp | /* Copyright (c) 2012, 2013 BlackBerry Limited.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef CHATMANAGER_HPP
#define CHATMANAGER_HPP
#include <bb/system/SystemDialog>
#include <QObject>
#include <QThread>
/**
* @short A helper class to read data from a bluetooth serial device.
*
* The purpose of this class is to continually wait for incoming data via blocking read() and post it to the main thread,
* as well as watch for disconnection signaled by a negative return value.
*/
//! [0]
class SPPThread : public QThread
{
Q_OBJECT
public:
// Creates a new SPPThread object
SPPThread(QObject *parent = 0);
// Initializes the device descriptor to listen on and sets whether the thread is in server or client mode
void init(int fd, bool isServer);
// Returns the device descriptor
int getFD() const;
// Resets the device descriptor
void resetFD();
// Returns whether the thread is in server mode
bool isServer() const;
// Returns whether the thread is active (a valid device descriptor has been set)
bool active() const;
// Reimplemented from QThread, the content is executed in the worker thread
void run();
Q_SIGNALS:
// This signal is emitted whenever new data have been received through the bluetooth device
void incomingMessage(const QString&);
// This signal is emitted whenever the remote device closed the connection
void connectionClosed();
private:
// A flag to store server/client mode information
bool m_sppServer;
// The bluetooth device descriptor
int m_sppFD;
};
//! [0]
/**
* @short A class that encapsulates the business logic for SPP chat functionality.
*
* The ChatManager encapsulates all the logic for the SPP chat. It provides methods
* to start a local SPP service (server mode) or connect to a remote SPP service (client mode).
* It monitors the life-cycle of the session and provides methods to send messages to the
* remote peer and receive them.
*/
//! [1]
class ChatManager : public QObject
{
Q_OBJECT
// The messages that have been sent between local and remote peer
Q_PROPERTY(QString chatHistory READ chatHistory NOTIFY chatHistoryChanged)
public:
// Creates a new ChatManager object
ChatManager(QObject *parent = 0);
// Destroys the ChatManager object
~ChatManager();
// Sets the bluetooth address of the remote peer
void setRemoteAddress(const QString &address);
// Sets the bluetooth devices descriptor (in server mode)
void setSPPServer(int fd);
// Sets the bluetooth devices descriptor (in client mode)
void setSPPClient(int fd);
public Q_SLOTS:
// Establishes a connection to a remote SPP service (client mode)
void connectToSPPService();
// Starts a local SPP service (server mode)
void startSPPServer();
// Sends a message to the remote peer
void sendSPPMessage(const QString &msg);
// Closes the SPP session (in client and server mode)
void closeSPPConnection();
Q_SIGNALS:
// This signal is emitted whenever the remote peer has closed the connection
void chatEnded();
// The change notification signal of the property
void chatHistoryChanged();
private Q_SLOTS:
// This slot is invoked whenever the SPPThread reports a new incoming message
void incomingMessage(const QString &msg);
// A helper slot to add a new message to the chat history (and make it visible in the UI)
void updateChatWindow(const QString &msg);
private:
// A helper method to show a system dialog to the user
void showDialog(const QString &title, const QString &message);
// The accessor method of the property
QString chatHistory() const;
// The SPPThread that listens for incoming messages from the remote peer
SPPThread m_sppDataThread;
// The bluetooth address of the remote peer
QString m_remoteAddress;
// The system dialog to show error messages to the user
bb::system::SystemDialog m_waitDialog;
// The property value
QString m_chatHistory;
};
//! [1]
#endif
| [
"mobabelsupport@gmail.com"
] | mobabelsupport@gmail.com |
e898797e577dec568d216873b1f689afcfac29ea | a85309fe42f0e3f78052f68f96a3fee3882ad40f | /Judges/UVA/11475.cpp | b9a9f21f09f1c8c570f854e559563ccd0ff0d352 | [] | no_license | mateuspiresl/coding | cb137de068bb88d430f80cd37b5fc9596288a603 | 91df2a564663f68683d21656a3f6e7157943af43 | refs/heads/master | 2021-04-30T22:50:43.368621 | 2016-12-08T23:56:22 | 2016-12-08T23:56:22 | 59,907,899 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 917 | cpp | #include <bits/stdc++.h>
using namespace std;
int main()
{
string s;
while (cin >> s)
{
bool even = s.length() % 2 == 0;
int left = (s.length() >> 1) - 1;
int right = left + (even ? 1 : 2);
while (right < s.length())
{
/*string s2 = s;
s2[left] += 'A' - 'a';
s2[right] += 'A' - 'a';
cout << "~ " << s2 << endl;*/
if (s[left] == s[right])
{
int l = left - 1;
int r = right + 1;
while (r < s.length())
{
if (s[l] != s[r])
break;
else
{
l--;
r++;
}
}
if (r == s.length())
{
left -= s.length() - right;
break;
}
}
if (even)
right++;
else
left++;
even = ! even;
}
//cout << "~ " << left << endl;
cout << s;
if (left >= 0)
{
string concat = s.substr(0, left + 1);
reverse(concat.begin(), concat.end());
cout << concat;
}
cout << endl;
}
return 0;
} | [
"mateusplpl@gmail.com"
] | mateusplpl@gmail.com |
cf610efd81e4afc761ce406f0af40b873e7417ac | d4291c13f4ebf3610f8c4adc75eede4baee0b2c1 | /RecoTracker/FinalTrackSelectors/plugins/TrackAlgoPriorityOrderESProducer.cc | 851cdd3c38dd2ba8fe68a40b2ca7b7037f73d063 | [
"Apache-2.0"
] | permissive | pasmuss/cmssw | 22efced0a4a43ef8bc8066b2a6bddece0023a66e | 566f40c323beef46134485a45ea53349f59ae534 | refs/heads/master | 2021-07-07T08:37:50.928560 | 2017-08-28T08:54:23 | 2017-08-28T08:54:23 | 237,956,377 | 0 | 0 | Apache-2.0 | 2020-02-03T12:08:41 | 2020-02-03T12:08:41 | null | UTF-8 | C++ | false | false | 2,074 | cc | #include "FWCore/Framework/interface/ModuleFactory.h"
#include "FWCore/Framework/interface/ESProducer.h"
#include "FWCore/Framework/interface/ESHandle.h"
#include "RecoTracker/FinalTrackSelectors/interface/TrackAlgoPriorityOrder.h"
#include "RecoTracker/Record/interface/CkfComponentsRecord.h"
class TrackAlgoPriorityOrderESProducer: public edm::ESProducer {
public:
TrackAlgoPriorityOrderESProducer(const edm::ParameterSet& iConfig);
~TrackAlgoPriorityOrderESProducer() = default;
static void fillDescriptions(edm::ConfigurationDescriptions& descriptions);
std::unique_ptr<TrackAlgoPriorityOrder> produce(const CkfComponentsRecord& iRecord);
private:
std::vector<reco::TrackBase::TrackAlgorithm> algoOrder_;
};
TrackAlgoPriorityOrderESProducer::TrackAlgoPriorityOrderESProducer(const edm::ParameterSet& iConfig) {
const auto& algoNames = iConfig.getParameter<std::vector<std::string> >("algoOrder");
algoOrder_.reserve(algoNames.size());
for(const auto& name: algoNames) {
auto algo = reco::TrackBase::algoByName(name);
if(algo == reco::TrackBase::undefAlgorithm && name != "undefAlgorithm") {
throw cms::Exception("Configuration") << "Incorrect track algo " << name;
}
algoOrder_.push_back(algo);
}
auto componentName = iConfig.getParameter<std::string>("ComponentName");
setWhatProduced(this, componentName);
}
void TrackAlgoPriorityOrderESProducer::fillDescriptions(edm::ConfigurationDescriptions& descriptions) {
edm::ParameterSetDescription desc;
desc.add<std::string>("ComponentName", "trackAlgoPriorityOrder");
desc.add<std::vector<std::string> >("algoOrder", std::vector<std::string>());
descriptions.add("trackAlgoPriorityOrderDefault", desc);
}
std::unique_ptr<TrackAlgoPriorityOrder> TrackAlgoPriorityOrderESProducer::produce(const CkfComponentsRecord& iRecord) {
return std::make_unique<TrackAlgoPriorityOrder>(algoOrder_);
}
#include "FWCore/PluginManager/interface/ModuleDef.h"
#include "FWCore/Framework/interface/MakerMacros.h"
DEFINE_FWK_EVENTSETUP_MODULE(TrackAlgoPriorityOrderESProducer);
| [
"matti.kortelainen@cern.ch"
] | matti.kortelainen@cern.ch |
9b12fda9051c32a253c24f858194f4486632a527 | 0874a70f1cc854ab66abf69e35f7c9a4cf989c4e | /Brush-the-questions/leetcode/Construct_the_Rectangle.cpp | 42f74e3fb7f8a5cde9c6e4d59272ff680e37325c | [] | no_license | liushengxi13689209566/Data-structures-algorithm | ff64df10a7b9e731cfe472e5d86134f25059df63 | b19658e347aff3cb56a0665592b050ac4870fc7e | refs/heads/master | 2021-01-01T16:44:30.983754 | 2019-10-10T08:30:43 | 2019-10-10T08:30:43 | 97,907,822 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,128 | cpp | /*************************************************************************
> File Name: Construct_the_Rectangle.cpp
> Author:
> Mail:
> Created Time: 2017年12月12日 星期二 13时48分15秒
************************************************************************/
/*
* 题目描述:
* 对于Web开发人员来说,了解如何设计网页的大小非常重要。因此,给定一个特定的矩形网页区域,现在您的工作是设计一个矩形的网页,其长度L和宽度W满足以下要求:
1.您设计的矩形网页区域必须等于给定的目标区域。
2.宽度W不应大于长度L,这意味着L> = W。3
.长度L和宽度W之间的差值应尽可能小。
您需要输出您按顺序设计的网页的长度L和宽度W.
例:
输入: 4
输出: [2,2]
说明:目标区域为4,所有可能的构建方法是[1,4],[2,2],[4,1]。
但根据要求2,[1,4]是非法的; 根据要求3,与[2,2]相比,[4,1]不是最优的。所以长度L是2,宽度W是2。
注意:
给定的区域不会超过10,000,000,是一个正整数
您设计的网页的宽度和长度必须是正整数。
*/
/*
* 题目大意与思路 :
* 就是找到一个数的因子,让他们之间的差值最小,从大到小输出就行了;
* 思路:给一个数,它的因子的差值最小为0 ,那么我们就从它的开方开始吗?NO!这是不对的,因为50开根号7.445,
* 所以我们选择从一半开始,为什么从一半开始,因为要从大到小的输出啊。然后往下找就行了*/
#include<iostream>
#include<vector>
using namespace std;
class Solution {
public:
vector<int> constructRectangle(int area) {
int j= 1 ;
vector<int> vec ;
for(int i= area/2 ; i != 0;--i){
if( area%i == 0 )
j=area / i ;
if( j >= i ){
vec.push_back(j);
vec.push_back(i);
break;
}
}
if(area == 1){ //特殊处理输入为 1 的情况
vec.push_back(1);
vec.push_back(1);
}
return vec;
}
};
| [
"liushengxi13689209566@163.com"
] | liushengxi13689209566@163.com |
6f89cd0d67b28879fbc0fbbebde4520becff6cd5 | 974d34dcc97c1273fe37ed9884b152d8c538e9a9 | /ffmpeg_DXVA_decoder/stdafx.cpp | 0dfa5906663710aa10dab5c5a3816dea5205863c | [] | no_license | dyang23/ffmpeg-DXVA-decode-1 | e192dccf710e52997460a93a1544bd687c071a35 | 635df58dd4c3dfe67e5e7c5920f4b7628102ecdd | refs/heads/master | 2023-03-18T10:58:48.510472 | 2020-12-09T01:55:51 | 2020-12-09T01:55:51 | null | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 270 | cpp | // stdafx.cpp : 只包括标准包含文件的源文件
// ffmpeg_DXVA_decoder.pch 将作为预编译头
// stdafx.obj 将包含预编译类型信息
#include "stdafx.h"
// TODO: 在 STDAFX.H 中引用任何所需的附加头文件,
//而不是在此文件中引用
| [
"Jack@DESKTOP-9GB39PB"
] | Jack@DESKTOP-9GB39PB |
6427ceeb3719cb8675fabbd88f06f2e15eeb1601 | c5cbf21e9867eb1f4c9b42c5fc9ca3a22c3bc6e0 | /src/qt/guiutil.cpp | a3c3bed8bd600f5bdc9d6dc50c8359f6b41c3de5 | [
"MIT"
] | permissive | fancywarlock/bitcoinR | 3af69835110f3ece8d629919b210bc71aeb9f3fe | 12b4dee6342556c0890218b843f29cadfab06214 | refs/heads/master | 2022-07-17T09:48:39.681406 | 2020-05-19T22:30:55 | 2020-05-19T22:30:55 | 265,382,334 | 2 | 3 | null | null | null | null | UTF-8 | C++ | false | false | 29,635 | cpp | // Copyright (c) 2011-2018 The Bitcoin Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include <qt/guiutil.h>
#include <qt/bitcoinraddressvalidator.h>
#include <qt/bitcoinrunits.h>
#include <qt/qvalidatedlineedit.h>
#include <qt/walletmodel.h>
#include <base58.h>
#include <chainparams.h>
#include <primitives/transaction.h>
#include <key_io.h>
#include <interfaces/node.h>
#include <policy/policy.h>
#include <protocol.h>
#include <script/script.h>
#include <script/standard.h>
#include <util.h>
#ifdef WIN32
#ifdef _WIN32_WINNT
#undef _WIN32_WINNT
#endif
#define _WIN32_WINNT 0x0501
#ifdef _WIN32_IE
#undef _WIN32_IE
#endif
#define _WIN32_IE 0x0501
#define WIN32_LEAN_AND_MEAN 1
#ifndef NOMINMAX
#define NOMINMAX
#endif
#include <shellapi.h>
#include <shlobj.h>
#include <shlwapi.h>
#endif
#include <boost/scoped_array.hpp>
#include <QAbstractItemView>
#include <QApplication>
#include <QClipboard>
#include <QDateTime>
#include <QDesktopServices>
#include <QDesktopWidget>
#include <QDoubleValidator>
#include <QFileDialog>
#include <QFont>
#include <QKeyEvent>
#include <QLineEdit>
#include <QSettings>
#include <QTextDocument> // for Qt::mightBeRichText
#include <QThread>
#include <QUrlQuery>
#include <QMouseEvent>
#if QT_VERSION >= 0x50200
#include <QFontDatabase>
#endif
static fs::detail::utf8_codecvt_facet utf8;
namespace GUIUtil {
QString dateTimeStr(const QDateTime &date)
{
return date.date().toString(Qt::SystemLocaleShortDate) + QString(" ") + date.toString("hh:mm");
}
QString dateTimeStr(qint64 nTime)
{
return dateTimeStr(QDateTime::fromTime_t((qint32)nTime));
}
QFont fixedPitchFont()
{
#if QT_VERSION >= 0x50200
return QFontDatabase::systemFont(QFontDatabase::FixedFont);
#else
QFont font("Monospace");
font.setStyleHint(QFont::Monospace);
return font;
#endif
}
// Just some dummy data to generate a convincing random-looking (but consistent) address
static const uint8_t dummydata[] = {0xeb,0x15,0x23,0x1d,0xfc,0xeb,0x60,0x92,0x58,0x86,0xb6,0x7d,0x06,0x52,0x99,0x92,0x59,0x15,0xae,0xb1,0x72,0xc0,0x66,0x47};
// Generate a dummy address with invalid CRC, starting with the network prefix.
static std::string DummyAddress(const CChainParams ¶ms)
{
std::vector<unsigned char> sourcedata = params.Base58Prefix(CChainParams::PUBKEY_ADDRESS);
sourcedata.insert(sourcedata.end(), dummydata, dummydata + sizeof(dummydata));
for(int i=0; i<256; ++i) { // Try every trailing byte
std::string s = EncodeBase58(sourcedata.data(), sourcedata.data() + sourcedata.size());
if (!IsValidDestinationString(s)) {
return s;
}
sourcedata[sourcedata.size()-1] += 1;
}
return "";
}
void setupAddressWidget(QValidatedLineEdit *widget, QWidget *parent)
{
parent->setFocusProxy(widget);
widget->setFont(fixedPitchFont());
// We don't want translators to use own addresses in translations
// and this is the only place, where this address is supplied.
widget->setPlaceholderText(QObject::tr("Enter a bitcoinR address (e.g. %1)").arg(
QString::fromStdString(DummyAddress(Params()))));
widget->setValidator(new bitcoinRAddressEntryValidator(parent));
widget->setCheckValidator(new bitcoinRAddressCheckValidator(parent));
}
bool parsebitcoinRURI(const QUrl &uri, SendCoinsRecipient *out)
{
// return if URI is not valid or is no bitcoinr: URI
if(!uri.isValid() || uri.scheme() != QString("bitcoinr"))
return false;
SendCoinsRecipient rv;
rv.address = uri.path();
// Trim any following forward slash which may have been added by the OS
if (rv.address.endsWith("/")) {
rv.address.truncate(rv.address.length() - 1);
}
rv.amount = 0;
QUrlQuery uriQuery(uri);
QList<QPair<QString, QString> > items = uriQuery.queryItems();
for (QList<QPair<QString, QString> >::iterator i = items.begin(); i != items.end(); i++)
{
bool fShouldReturnFalse = false;
if (i->first.startsWith("req-"))
{
i->first.remove(0, 4);
fShouldReturnFalse = true;
}
if (i->first == "label")
{
rv.label = i->second;
fShouldReturnFalse = false;
}
if (i->first == "message")
{
rv.message = i->second;
fShouldReturnFalse = false;
}
else if (i->first == "amount")
{
if(!i->second.isEmpty())
{
if(!bitcoinRUnits::parse(bitcoinRUnits::XBR, i->second, &rv.amount))
{
return false;
}
}
fShouldReturnFalse = false;
}
if (fShouldReturnFalse)
return false;
}
if(out)
{
*out = rv;
}
return true;
}
bool parsebitcoinRURI(QString uri, SendCoinsRecipient *out)
{
QUrl uriInstance(uri);
return parsebitcoinRURI(uriInstance, out);
}
QString formatbitcoinRURI(const SendCoinsRecipient &info)
{
QString ret = QString("bitcoinr:%1").arg(info.address);
int paramCount = 0;
if (info.amount)
{
ret += QString("?amount=%1").arg(bitcoinRUnits::format(bitcoinRUnits::XBR, info.amount, false, bitcoinRUnits::separatorNever));
paramCount++;
}
if (!info.label.isEmpty())
{
QString lbl(QUrl::toPercentEncoding(info.label));
ret += QString("%1label=%2").arg(paramCount == 0 ? "?" : "&").arg(lbl);
paramCount++;
}
if (!info.message.isEmpty())
{
QString msg(QUrl::toPercentEncoding(info.message));
ret += QString("%1message=%2").arg(paramCount == 0 ? "?" : "&").arg(msg);
paramCount++;
}
return ret;
}
bool isDust(interfaces::Node& node, const QString& address, const CAmount& amount)
{
CTxDestination dest = DecodeDestination(address.toStdString());
CScript script = GetScriptForDestination(dest);
CTxOut txOut(amount, script);
return IsDust(txOut, node.getDustRelayFee());
}
QString HtmlEscape(const QString& str, bool fMultiLine)
{
QString escaped = str.toHtmlEscaped();
if(fMultiLine)
{
escaped = escaped.replace("\n", "<br>\n");
}
return escaped;
}
QString HtmlEscape(const std::string& str, bool fMultiLine)
{
return HtmlEscape(QString::fromStdString(str), fMultiLine);
}
void copyEntryData(QAbstractItemView *view, int column, int role)
{
if(!view || !view->selectionModel())
return;
QModelIndexList selection = view->selectionModel()->selectedRows(column);
if(!selection.isEmpty())
{
// Copy first item
setClipboard(selection.at(0).data(role).toString());
}
}
QList<QModelIndex> getEntryData(QAbstractItemView *view, int column)
{
if(!view || !view->selectionModel())
return QList<QModelIndex>();
return view->selectionModel()->selectedRows(column);
}
QString getSaveFileName(QWidget *parent, const QString &caption, const QString &dir,
const QString &filter,
QString *selectedSuffixOut)
{
QString selectedFilter;
QString myDir;
if(dir.isEmpty()) // Default to user documents location
{
myDir = QStandardPaths::writableLocation(QStandardPaths::DocumentsLocation);
}
else
{
myDir = dir;
}
/* Directly convert path to native OS path separators */
QString result = QDir::toNativeSeparators(QFileDialog::getSaveFileName(parent, caption, myDir, filter, &selectedFilter));
/* Extract first suffix from filter pattern "Description (*.foo)" or "Description (*.foo *.bar ...) */
QRegExp filter_re(".* \\(\\*\\.(.*)[ \\)]");
QString selectedSuffix;
if(filter_re.exactMatch(selectedFilter))
{
selectedSuffix = filter_re.cap(1);
}
/* Add suffix if needed */
QFileInfo info(result);
if(!result.isEmpty())
{
if(info.suffix().isEmpty() && !selectedSuffix.isEmpty())
{
/* No suffix specified, add selected suffix */
if(!result.endsWith("."))
result.append(".");
result.append(selectedSuffix);
}
}
/* Return selected suffix if asked to */
if(selectedSuffixOut)
{
*selectedSuffixOut = selectedSuffix;
}
return result;
}
QString getOpenFileName(QWidget *parent, const QString &caption, const QString &dir,
const QString &filter,
QString *selectedSuffixOut)
{
QString selectedFilter;
QString myDir;
if(dir.isEmpty()) // Default to user documents location
{
myDir = QStandardPaths::writableLocation(QStandardPaths::DocumentsLocation);
}
else
{
myDir = dir;
}
/* Directly convert path to native OS path separators */
QString result = QDir::toNativeSeparators(QFileDialog::getOpenFileName(parent, caption, myDir, filter, &selectedFilter));
if(selectedSuffixOut)
{
/* Extract first suffix from filter pattern "Description (*.foo)" or "Description (*.foo *.bar ...) */
QRegExp filter_re(".* \\(\\*\\.(.*)[ \\)]");
QString selectedSuffix;
if(filter_re.exactMatch(selectedFilter))
{
selectedSuffix = filter_re.cap(1);
}
*selectedSuffixOut = selectedSuffix;
}
return result;
}
Qt::ConnectionType blockingGUIThreadConnection()
{
if(QThread::currentThread() != qApp->thread())
{
return Qt::BlockingQueuedConnection;
}
else
{
return Qt::DirectConnection;
}
}
bool checkPoint(const QPoint &p, const QWidget *w)
{
QWidget *atW = QApplication::widgetAt(w->mapToGlobal(p));
if (!atW) return false;
return atW->topLevelWidget() == w;
}
bool isObscured(QWidget *w)
{
return !(checkPoint(QPoint(0, 0), w)
&& checkPoint(QPoint(w->width() - 1, 0), w)
&& checkPoint(QPoint(0, w->height() - 1), w)
&& checkPoint(QPoint(w->width() - 1, w->height() - 1), w)
&& checkPoint(QPoint(w->width() / 2, w->height() / 2), w));
}
void openDebugLogfile()
{
fs::path pathDebug = GetDataDir() / "debug.log";
/* Open debug.log with the associated application */
if (fs::exists(pathDebug))
QDesktopServices::openUrl(QUrl::fromLocalFile(boostPathToQString(pathDebug)));
}
bool openbitcoinRConf()
{
boost::filesystem::path pathConfig = GetConfigFile(gArgs.GetArg("-conf", BITCOINR_CONF_FILENAME));
/* Create the file */
boost::filesystem::ofstream configFile(pathConfig, std::ios_base::app);
if (!configFile.good())
return false;
configFile.close();
/* Open bitcoinr.conf with the associated application */
return QDesktopServices::openUrl(QUrl::fromLocalFile(boostPathToQString(pathConfig)));
}
ToolTipToRichTextFilter::ToolTipToRichTextFilter(int _size_threshold, QObject *parent) :
QObject(parent),
size_threshold(_size_threshold)
{
}
bool ToolTipToRichTextFilter::eventFilter(QObject *obj, QEvent *evt)
{
if(evt->type() == QEvent::ToolTipChange)
{
QWidget *widget = static_cast<QWidget*>(obj);
QString tooltip = widget->toolTip();
if(tooltip.size() > size_threshold && !tooltip.startsWith("<qt") && !Qt::mightBeRichText(tooltip))
{
// Envelop with <qt></qt> to make sure Qt detects this as rich text
// Escape the current message as HTML and replace \n by <br>
tooltip = "<qt>" + HtmlEscape(tooltip, true) + "</qt>";
widget->setToolTip(tooltip);
return true;
}
}
return QObject::eventFilter(obj, evt);
}
void TableViewLastColumnResizingFixer::connectViewHeadersSignals()
{
connect(tableView->horizontalHeader(), SIGNAL(sectionResized(int,int,int)), this, SLOT(on_sectionResized(int,int,int)));
connect(tableView->horizontalHeader(), SIGNAL(geometriesChanged()), this, SLOT(on_geometriesChanged()));
}
// We need to disconnect these while handling the resize events, otherwise we can enter infinite loops.
void TableViewLastColumnResizingFixer::disconnectViewHeadersSignals()
{
disconnect(tableView->horizontalHeader(), SIGNAL(sectionResized(int,int,int)), this, SLOT(on_sectionResized(int,int,int)));
disconnect(tableView->horizontalHeader(), SIGNAL(geometriesChanged()), this, SLOT(on_geometriesChanged()));
}
// Setup the resize mode, handles compatibility for Qt5 and below as the method signatures changed.
// Refactored here for readability.
void TableViewLastColumnResizingFixer::setViewHeaderResizeMode(int logicalIndex, QHeaderView::ResizeMode resizeMode)
{
tableView->horizontalHeader()->setSectionResizeMode(logicalIndex, resizeMode);
}
void TableViewLastColumnResizingFixer::resizeColumn(int nColumnIndex, int width)
{
tableView->setColumnWidth(nColumnIndex, width);
tableView->horizontalHeader()->resizeSection(nColumnIndex, width);
}
int TableViewLastColumnResizingFixer::getColumnsWidth()
{
int nColumnsWidthSum = 0;
for (int i = 0; i < columnCount; i++)
{
nColumnsWidthSum += tableView->horizontalHeader()->sectionSize(i);
}
return nColumnsWidthSum;
}
int TableViewLastColumnResizingFixer::getAvailableWidthForColumn(int column)
{
int nResult = lastColumnMinimumWidth;
int nTableWidth = tableView->horizontalHeader()->width();
if (nTableWidth > 0)
{
int nOtherColsWidth = getColumnsWidth() - tableView->horizontalHeader()->sectionSize(column);
nResult = std::max(nResult, nTableWidth - nOtherColsWidth);
}
return nResult;
}
// Make sure we don't make the columns wider than the table's viewport width.
void TableViewLastColumnResizingFixer::adjustTableColumnsWidth()
{
disconnectViewHeadersSignals();
resizeColumn(lastColumnIndex, getAvailableWidthForColumn(lastColumnIndex));
connectViewHeadersSignals();
int nTableWidth = tableView->horizontalHeader()->width();
int nColsWidth = getColumnsWidth();
if (nColsWidth > nTableWidth)
{
resizeColumn(secondToLastColumnIndex,getAvailableWidthForColumn(secondToLastColumnIndex));
}
}
// Make column use all the space available, useful during window resizing.
void TableViewLastColumnResizingFixer::stretchColumnWidth(int column)
{
disconnectViewHeadersSignals();
resizeColumn(column, getAvailableWidthForColumn(column));
connectViewHeadersSignals();
}
// When a section is resized this is a slot-proxy for ajustAmountColumnWidth().
void TableViewLastColumnResizingFixer::on_sectionResized(int logicalIndex, int oldSize, int newSize)
{
adjustTableColumnsWidth();
int remainingWidth = getAvailableWidthForColumn(logicalIndex);
if (newSize > remainingWidth)
{
resizeColumn(logicalIndex, remainingWidth);
}
}
// When the table's geometry is ready, we manually perform the stretch of the "Message" column,
// as the "Stretch" resize mode does not allow for interactive resizing.
void TableViewLastColumnResizingFixer::on_geometriesChanged()
{
if ((getColumnsWidth() - this->tableView->horizontalHeader()->width()) != 0)
{
disconnectViewHeadersSignals();
resizeColumn(secondToLastColumnIndex, getAvailableWidthForColumn(secondToLastColumnIndex));
connectViewHeadersSignals();
}
}
/**
* Initializes all internal variables and prepares the
* the resize modes of the last 2 columns of the table and
*/
TableViewLastColumnResizingFixer::TableViewLastColumnResizingFixer(QTableView* table, int lastColMinimumWidth, int allColsMinimumWidth, QObject *parent) :
QObject(parent),
tableView(table),
lastColumnMinimumWidth(lastColMinimumWidth),
allColumnsMinimumWidth(allColsMinimumWidth)
{
columnCount = tableView->horizontalHeader()->count();
lastColumnIndex = columnCount - 1;
secondToLastColumnIndex = columnCount - 2;
tableView->horizontalHeader()->setMinimumSectionSize(allColumnsMinimumWidth);
setViewHeaderResizeMode(secondToLastColumnIndex, QHeaderView::Interactive);
setViewHeaderResizeMode(lastColumnIndex, QHeaderView::Interactive);
}
#ifdef WIN32
fs::path static StartupShortcutPath()
{
std::string chain = gArgs.GetChainName();
if (chain == CBaseChainParams::MAIN)
return GetSpecialFolderPath(CSIDL_STARTUP) / "bitcoinR.lnk";
if (chain == CBaseChainParams::TESTNET) // Remove this special case when CBaseChainParams::TESTNET = "testnet4"
return GetSpecialFolderPath(CSIDL_STARTUP) / "bitcoinR (testnet).lnk";
return GetSpecialFolderPath(CSIDL_STARTUP) / strprintf("bitcoinR (%s).lnk", chain);
}
bool GetStartOnSystemStartup()
{
// check for bitcoinR*.lnk
return fs::exists(StartupShortcutPath());
}
bool SetStartOnSystemStartup(bool fAutoStart)
{
// If the shortcut exists already, remove it for updating
fs::remove(StartupShortcutPath());
if (fAutoStart)
{
CoInitialize(nullptr);
// Get a pointer to the IShellLink interface.
IShellLink* psl = nullptr;
HRESULT hres = CoCreateInstance(CLSID_ShellLink, nullptr,
CLSCTX_INPROC_SERVER, IID_IShellLink,
reinterpret_cast<void**>(&psl));
if (SUCCEEDED(hres))
{
// Get the current executable path
TCHAR pszExePath[MAX_PATH];
GetModuleFileName(nullptr, pszExePath, sizeof(pszExePath));
// Start client minimized
QString strArgs = "-min";
// Set -testnet /-regtest options
strArgs += QString::fromStdString(strprintf(" -testnet=%d -regtest=%d", gArgs.GetBoolArg("-testnet", false), gArgs.GetBoolArg("-regtest", false)));
#ifdef UNICODE
boost::scoped_array<TCHAR> args(new TCHAR[strArgs.length() + 1]);
// Convert the QString to TCHAR*
strArgs.toWCharArray(args.get());
// Add missing '\0'-termination to string
args[strArgs.length()] = '\0';
#endif
// Set the path to the shortcut target
psl->SetPath(pszExePath);
PathRemoveFileSpec(pszExePath);
psl->SetWorkingDirectory(pszExePath);
psl->SetShowCmd(SW_SHOWMINNOACTIVE);
#ifndef UNICODE
psl->SetArguments(strArgs.toStdString().c_str());
#else
psl->SetArguments(args.get());
#endif
// Query IShellLink for the IPersistFile interface for
// saving the shortcut in persistent storage.
IPersistFile* ppf = nullptr;
hres = psl->QueryInterface(IID_IPersistFile, reinterpret_cast<void**>(&ppf));
if (SUCCEEDED(hres))
{
WCHAR pwsz[MAX_PATH];
// Ensure that the string is ANSI.
MultiByteToWideChar(CP_ACP, 0, StartupShortcutPath().string().c_str(), -1, pwsz, MAX_PATH);
// Save the link by calling IPersistFile::Save.
hres = ppf->Save(pwsz, TRUE);
ppf->Release();
psl->Release();
CoUninitialize();
return true;
}
psl->Release();
}
CoUninitialize();
return false;
}
return true;
}
#elif defined(Q_OS_LINUX)
// Follow the Desktop Application Autostart Spec:
// http://standards.freedesktop.org/autostart-spec/autostart-spec-latest.html
fs::path static GetAutostartDir()
{
char* pszConfigHome = getenv("XDG_CONFIG_HOME");
if (pszConfigHome) return fs::path(pszConfigHome) / "autostart";
char* pszHome = getenv("HOME");
if (pszHome) return fs::path(pszHome) / ".config" / "autostart";
return fs::path();
}
fs::path static GetAutostartFilePath()
{
std::string chain = gArgs.GetChainName();
if (chain == CBaseChainParams::MAIN)
return GetAutostartDir() / "bitcoinr.desktop";
return GetAutostartDir() / strprintf("bitcoinr-%s.lnk", chain);
}
bool GetStartOnSystemStartup()
{
fs::ifstream optionFile(GetAutostartFilePath());
if (!optionFile.good())
return false;
// Scan through file for "Hidden=true":
std::string line;
while (!optionFile.eof())
{
getline(optionFile, line);
if (line.find("Hidden") != std::string::npos &&
line.find("true") != std::string::npos)
return false;
}
optionFile.close();
return true;
}
bool SetStartOnSystemStartup(bool fAutoStart)
{
if (!fAutoStart)
fs::remove(GetAutostartFilePath());
else
{
char pszExePath[MAX_PATH+1];
ssize_t r = readlink("/proc/self/exe", pszExePath, sizeof(pszExePath) - 1);
if (r == -1)
return false;
pszExePath[r] = '\0';
fs::create_directories(GetAutostartDir());
fs::ofstream optionFile(GetAutostartFilePath(), std::ios_base::out|std::ios_base::trunc);
if (!optionFile.good())
return false;
std::string chain = gArgs.GetChainName();
// Write a bitcoinr.desktop file to the autostart directory:
optionFile << "[Desktop Entry]\n";
optionFile << "Type=Application\n";
if (chain == CBaseChainParams::MAIN)
optionFile << "Name=bitcoinR\n";
else
optionFile << strprintf("Name=bitcoinR (%s)\n", chain);
optionFile << "Exec=" << pszExePath << strprintf(" -min -testnet=%d -regtest=%d\n", gArgs.GetBoolArg("-testnet", false), gArgs.GetBoolArg("-regtest", false));
optionFile << "Terminal=false\n";
optionFile << "Hidden=false\n";
optionFile.close();
}
return true;
}
#elif defined(Q_OS_MAC)
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
// based on: https://github.com/Mozketo/LaunchAtLoginController/blob/master/LaunchAtLoginController.m
#include <CoreFoundation/CoreFoundation.h>
#include <CoreServices/CoreServices.h>
LSSharedFileListItemRef findStartupItemInList(LSSharedFileListRef list, CFURLRef findUrl);
LSSharedFileListItemRef findStartupItemInList(LSSharedFileListRef list, CFURLRef findUrl)
{
CFArrayRef listSnapshot = LSSharedFileListCopySnapshot(list, nullptr);
if (listSnapshot == nullptr) {
return nullptr;
}
// loop through the list of startup items and try to find the bitcoinr app
for(int i = 0; i < CFArrayGetCount(listSnapshot); i++) {
LSSharedFileListItemRef item = (LSSharedFileListItemRef)CFArrayGetValueAtIndex(listSnapshot, i);
UInt32 resolutionFlags = kLSSharedFileListNoUserInteraction | kLSSharedFileListDoNotMountVolumes;
CFURLRef currentItemURL = nullptr;
#if defined(MAC_OS_X_VERSION_MAX_ALLOWED) && MAC_OS_X_VERSION_MAX_ALLOWED >= 10100
if(&LSSharedFileListItemCopyResolvedURL)
currentItemURL = LSSharedFileListItemCopyResolvedURL(item, resolutionFlags, nullptr);
#if defined(MAC_OS_X_VERSION_MIN_REQUIRED) && MAC_OS_X_VERSION_MIN_REQUIRED < 10100
else
LSSharedFileListItemResolve(item, resolutionFlags, ¤tItemURL, nullptr);
#endif
#else
LSSharedFileListItemResolve(item, resolutionFlags, ¤tItemURL, nullptr);
#endif
if(currentItemURL) {
if (CFEqual(currentItemURL, findUrl)) {
// found
CFRelease(listSnapshot);
CFRelease(currentItemURL);
return item;
}
CFRelease(currentItemURL);
}
}
CFRelease(listSnapshot);
return nullptr;
}
bool GetStartOnSystemStartup()
{
CFURLRef bitcoinrAppUrl = CFBundleCopyBundleURL(CFBundleGetMainBundle());
if (bitcoinrAppUrl == nullptr) {
return false;
}
LSSharedFileListRef loginItems = LSSharedFileListCreate(nullptr, kLSSharedFileListSessionLoginItems, nullptr);
LSSharedFileListItemRef foundItem = findStartupItemInList(loginItems, bitcoinrAppUrl);
CFRelease(bitcoinrAppUrl);
return !!foundItem; // return boolified object
}
bool SetStartOnSystemStartup(bool fAutoStart)
{
CFURLRef bitcoinrAppUrl = CFBundleCopyBundleURL(CFBundleGetMainBundle());
if (bitcoinrAppUrl == nullptr) {
return false;
}
LSSharedFileListRef loginItems = LSSharedFileListCreate(nullptr, kLSSharedFileListSessionLoginItems, nullptr);
LSSharedFileListItemRef foundItem = findStartupItemInList(loginItems, bitcoinrAppUrl);
if(fAutoStart && !foundItem) {
// add bitcoinr app to startup item list
LSSharedFileListInsertItemURL(loginItems, kLSSharedFileListItemBeforeFirst, nullptr, nullptr, bitcoinrAppUrl, nullptr, nullptr);
}
else if(!fAutoStart && foundItem) {
// remove item
LSSharedFileListItemRemove(loginItems, foundItem);
}
CFRelease(bitcoinrAppUrl);
return true;
}
#pragma GCC diagnostic pop
#else
bool GetStartOnSystemStartup() { return false; }
bool SetStartOnSystemStartup(bool fAutoStart) { return false; }
#endif
void setClipboard(const QString& str)
{
QApplication::clipboard()->setText(str, QClipboard::Clipboard);
QApplication::clipboard()->setText(str, QClipboard::Selection);
}
fs::path qstringToBoostPath(const QString &path)
{
return fs::path(path.toStdString(), utf8);
}
QString boostPathToQString(const fs::path &path)
{
return QString::fromStdString(path.string(utf8));
}
QString formatDurationStr(int secs)
{
QStringList strList;
int days = secs / 86400;
int hours = (secs % 86400) / 3600;
int mins = (secs % 3600) / 60;
int seconds = secs % 60;
if (days)
strList.append(QString(QObject::tr("%1 d")).arg(days));
if (hours)
strList.append(QString(QObject::tr("%1 h")).arg(hours));
if (mins)
strList.append(QString(QObject::tr("%1 m")).arg(mins));
if (seconds || (!days && !hours && !mins))
strList.append(QString(QObject::tr("%1 s")).arg(seconds));
return strList.join(" ");
}
QString formatServicesStr(quint64 mask)
{
QStringList strList;
// Just scan the last 8 bits for now.
for (int i = 0; i < 8; i++) {
uint64_t check = 1 << i;
if (mask & check)
{
switch (check)
{
case NODE_NETWORK:
strList.append("NETWORK");
break;
case NODE_GETUTXO:
strList.append("GETUTXO");
break;
case NODE_BLOOM:
strList.append("BLOOM");
break;
case NODE_WITNESS:
strList.append("WITNESS");
break;
case NODE_XTHIN:
strList.append("XTHIN");
break;
default:
strList.append(QString("%1[%2]").arg("UNKNOWN").arg(check));
}
}
}
if (strList.size())
return strList.join(" & ");
else
return QObject::tr("None");
}
QString formatPingTime(double dPingTime)
{
return (dPingTime == std::numeric_limits<int64_t>::max()/1e6 || dPingTime == 0) ? QObject::tr("N/A") : QString(QObject::tr("%1 ms")).arg(QString::number((int)(dPingTime * 1000), 10));
}
QString formatTimeOffset(int64_t nTimeOffset)
{
return QString(QObject::tr("%1 s")).arg(QString::number((int)nTimeOffset, 10));
}
QString formatNiceTimeOffset(qint64 secs)
{
// Represent time from last generated block in human readable text
QString timeBehindText;
const int HOUR_IN_SECONDS = 60*60;
const int DAY_IN_SECONDS = 24*60*60;
const int WEEK_IN_SECONDS = 7*24*60*60;
const int YEAR_IN_SECONDS = 31556952; // Average length of year in Gregorian calendar
if(secs < 60)
{
timeBehindText = QObject::tr("%n second(s)","",secs);
}
else if(secs < 2*HOUR_IN_SECONDS)
{
timeBehindText = QObject::tr("%n minute(s)","",secs/60);
}
else if(secs < 2*DAY_IN_SECONDS)
{
timeBehindText = QObject::tr("%n hour(s)","",secs/HOUR_IN_SECONDS);
}
else if(secs < 2*WEEK_IN_SECONDS)
{
timeBehindText = QObject::tr("%n day(s)","",secs/DAY_IN_SECONDS);
}
else if(secs < YEAR_IN_SECONDS)
{
timeBehindText = QObject::tr("%n week(s)","",secs/WEEK_IN_SECONDS);
}
else
{
qint64 years = secs / YEAR_IN_SECONDS;
qint64 remainder = secs % YEAR_IN_SECONDS;
timeBehindText = QObject::tr("%1 and %2").arg(QObject::tr("%n year(s)", "", years)).arg(QObject::tr("%n week(s)","", remainder/WEEK_IN_SECONDS));
}
return timeBehindText;
}
QString formatBytes(uint64_t bytes)
{
if(bytes < 1024)
return QString(QObject::tr("%1 B")).arg(bytes);
if(bytes < 1024 * 1024)
return QString(QObject::tr("%1 KB")).arg(bytes / 1024);
if(bytes < 1024 * 1024 * 1024)
return QString(QObject::tr("%1 MB")).arg(bytes / 1024 / 1024);
return QString(QObject::tr("%1 GB")).arg(bytes / 1024 / 1024 / 1024);
}
qreal calculateIdealFontSize(int width, const QString& text, QFont font, qreal minPointSize, qreal font_size) {
while(font_size >= minPointSize) {
font.setPointSizeF(font_size);
QFontMetrics fm(font);
if (fm.width(text) < width) {
break;
}
font_size -= 0.5;
}
return font_size;
}
void ClickableLabel::mouseReleaseEvent(QMouseEvent *event)
{
Q_EMIT clicked(event->pos());
}
void ClickableProgressBar::mouseReleaseEvent(QMouseEvent *event)
{
Q_EMIT clicked(event->pos());
}
bool ItemDelegate::eventFilter(QObject *object, QEvent *event)
{
if (event->type() == QEvent::KeyPress) {
if (static_cast<QKeyEvent*>(event)->key() == Qt::Key_Escape) {
Q_EMIT keyEscapePressed();
}
}
return QItemDelegate::eventFilter(object, event);
}
} // namespace GUIUtil
| [
"62725809+fancywarlock@users.noreply.github.com"
] | 62725809+fancywarlock@users.noreply.github.com |
59f5423deace7b8ef131d6396664eac1a2c7a340 | 2af6cd77013844234c2dca0e34cb44dcd25cba20 | /kattis/friday.cpp | f689d6a69ede071e43d223670e0bc63a082b662c | [] | no_license | SwampertX/judge_adventures | d593c8090b78a4aee6e467b3a5492c7b6e019fd1 | 7838eb6249f23f48da7ae0b2714a3bcd1e0fb721 | refs/heads/master | 2021-06-30T05:53:08.361556 | 2020-12-08T15:57:17 | 2020-12-08T15:57:17 | 165,352,481 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 564 | cpp | #include <bits/stdc++.h>
using namespace std;
typedef unsigned long long ull;
typedef long long ll;
typedef pair<int,int> ii;
const ll INF=2e18;
const int MOD=10000007;
int t,m,d,days[1000001];
int main(){
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cin>>t; while(t--){
cin>>d>>m;
for(int i=0; i<m; i++) cin>>days[i];
int diw=0, rec=0;
for(int i=0; i<m; i++){
if((diw+12)%7==5 && days[i]>=13) rec++;
diw+=(days[i]%7); diw=diw%7;
}
cout<<rec<<'\n';
}
return 0;
}
| [
"tanyeejian@gmail.com"
] | tanyeejian@gmail.com |
69023c1282539699c2e6f678d10e8e1d8bbc5881 | 4b5b52a0c40b92fe0bb90cf9a90d8e746d4b9fc0 | /sound_test/SoundViewer.h | 91b9b57fe95ad38fc80c8fbd67b068706b4a4c5b | [] | no_license | jo7ueb/qt_practice | ccc8433d44943ca5fe19981f4113db2e36f797db | 19f7b4d9ac199f8cd0903ffb9aa29576ab45bd0f | refs/heads/master | 2020-03-30T17:08:45.112193 | 2013-08-29T09:05:24 | 2013-08-29T09:05:24 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 440 | h | #ifndef SOUNDVIEWER_H
#define SOUNDVIEWER_H
#include "ui_SoundViewer.h"
class SoundViewer : public QDialog
{
Q_OBJECT
public:
explicit SoundViewer(QWidget *parent = 0);
private:
Ui::SoundViewer ui;
public slots:
void updateImage(QImage *i);
signals:
void startButton();
void stopButton();
private slots:
void on_startButton_clicked();
void on_stopButton_clicked();
};
#endif // SOUNDVIEWER_H
| [
"yasu@neppo.net"
] | yasu@neppo.net |
b0d7e52024ee321d53748e371e3c0ac6246efe54 | 05abfd0688e85500ed7171ffd17b0ddf97185006 | /inc/Interface/TextEditor.hh | c148df6af9c879efcdaf5996860f551b9f4c11d7 | [] | no_license | rudrabhoj/decipher_text | ee288cfdf0730d257fb68c1a7644aebc1f1ce6dd | 2f2e7fb264fb1e4854a1b0793a5cbc4168fcc727 | refs/heads/master | 2020-05-22T04:00:10.249780 | 2016-09-25T01:34:16 | 2016-09-25T01:34:16 | 64,134,136 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 778 | hh | #ifndef __INTERFACE_TEXTEDITOR_HH__
#define __INTERFACE_TEXTEDITOR_HH__
#include <Control/ControlData.hh>
#include <Document/Page.hh>
#include <QMainWindow>
#include <QTextEdit>
#include <QList>
class TextEditor : public QTextEdit{
public:
TextEditor(QMainWindow *parent, ControlData *ctrlData);
void syncText(QString inputText);
void editorFontSetting();
private:
ControlData *localControl;
QList<Page> *pagesData;
void enableFontFamily();
void configureConnections();
void cursorMoved();
void unSetSave();
void enableSave();
//Foreign dependents
QString getConfigFontFamily();
double getConfigFontSize();
void syncCurrentWord(int lineNo, int pos);
void sendDrawEvent();
bool getSaveStatus();
void configureSave(bool staat);
};
#endif
| [
"rudrabhoj@gmail.com"
] | rudrabhoj@gmail.com |
a9154cb38fad8fd532324bc0bfe84b68828b927d | b8194fee4ddf498b2c1bd302ec4ba9466746250d | /build/Android/Debug/app/src/main/include/Fuse.Motion.Destinati-3569762f.h | 2519fb51e93ccbdf20328f50564855e67557e47d | [] | no_license | color0e/Fabric_Fuse_Project | e49e7371c9579d80c9ec96c1f2d3a90de7b52149 | 9b20a0347e5249315cf7af587e04234ec611c6be | refs/heads/master | 2020-03-30T16:49:34.363764 | 2018-10-03T16:26:28 | 2018-10-03T16:26:28 | 151,428,896 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 2,606 | h | // This file was generated based on '../../AppData/Local/Fusetools/Packages/Fuse.Motion/1.9.0/DestinationMotion.uno'.
// WARNING: Changes might be lost if you edit this file directly.
#pragma once
#include <Uno.Object.h>
namespace g{namespace Fuse{namespace Animations{struct Easing;}}}
namespace g{namespace Fuse{namespace Motion{struct DestinationMotionConfig;}}}
namespace g{
namespace Fuse{
namespace Motion{
// public class DestinationMotionConfig :15
// {
uType* DestinationMotionConfig_typeof();
void DestinationMotionConfig__ctor__fn(DestinationMotionConfig* __this);
void DestinationMotionConfig__Create_fn(DestinationMotionConfig* __this, uType* __type, uObject** __retval);
void DestinationMotionConfig__get_Distance_fn(DestinationMotionConfig* __this, float* __retval);
void DestinationMotionConfig__set_Distance_fn(DestinationMotionConfig* __this, float* value);
void DestinationMotionConfig__get_Duration_fn(DestinationMotionConfig* __this, float* __retval);
void DestinationMotionConfig__set_Duration_fn(DestinationMotionConfig* __this, float* value);
void DestinationMotionConfig__get_DurationExp_fn(DestinationMotionConfig* __this, float* __retval);
void DestinationMotionConfig__set_DurationExp_fn(DestinationMotionConfig* __this, float* value);
void DestinationMotionConfig__get_Easing_fn(DestinationMotionConfig* __this, ::g::Fuse::Animations::Easing** __retval);
void DestinationMotionConfig__set_Easing_fn(DestinationMotionConfig* __this, ::g::Fuse::Animations::Easing* value);
void DestinationMotionConfig__get_Type_fn(DestinationMotionConfig* __this, int32_t* __retval);
void DestinationMotionConfig__set_Type_fn(DestinationMotionConfig* __this, int32_t* value);
void DestinationMotionConfig__get_Unit_fn(DestinationMotionConfig* __this, int32_t* __retval);
void DestinationMotionConfig__set_Unit_fn(DestinationMotionConfig* __this, int32_t* value);
struct DestinationMotionConfig : uObject
{
int32_t _type;
bool _explicitType;
uStrong< ::g::Fuse::Animations::Easing*> _easing;
float _duration;
bool _hasDuration;
float _durationExp;
int32_t _unit;
float _distance;
bool _hasDistance;
void ctor_();
uObject* Create(uType* __type);
float Distance();
void Distance(float value);
float Duration();
void Duration(float value);
float DurationExp();
void DurationExp(float value);
::g::Fuse::Animations::Easing* Easing();
void Easing(::g::Fuse::Animations::Easing* value);
int32_t Type();
void Type(int32_t value);
int32_t Unit();
void Unit(int32_t value);
};
// }
}}} // ::g::Fuse::Motion
| [
"limjangsoon@naver.com"
] | limjangsoon@naver.com |
a496b7e6c5ec0a1ac417e69ee94b87e9bc1146b9 | d9ba1eb4ed279398777ce96f48a961fe7ee0b0a9 | /exam_1/exam_1/exam_1.cpp | ab55bfed67f7c5e4497882543c23cb5dcfa938a8 | [] | no_license | chinmaymufasa/CSCI_311 | 865c87b7f72f23502f70c47c3fdbd06a0a895b55 | 7c5ef86c34c3c42cdb5ecd0e6838813504c75a93 | refs/heads/master | 2023-07-15T02:51:07.470473 | 2021-09-01T04:34:17 | 2021-09-01T04:34:17 | 335,873,909 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 9,452 | cpp | // CSCI 311 - Spring 2021
// Exam 1
// Author: ** Chinmay Satpanthi ***
#include <iostream>
#include <vector>
#include <string>
using namespace std;
/**************************
* Your solutions go here *
* ************************/
/*
This function compares two string and checks if the strings have a similar or
different character at the same index. +1 if different
*/
int hammingDist(string a, string b) {
if (unsigned(a.length()) != unsigned(b.length())) { //checks if both string lenghts match
return -1;
}
int hammingCount = 0;
for (int i = 0; i < unsigned(a.length()); i++) {
if (a[i] != b[i]) { //compares the char at the index
hammingCount += 1; //if different we add one to total counter
}
}
return hammingCount; //returns final answer
}
/*
This function reverses a provided string
*/
string reverse(string a) {
int string_size = a.length(); //stores string size
if (string_size == 1) { //checks if only size 1, if so returns the string
return a;
}
for (int i = 1; i <= (string_size)/2; i++) { //for half the string size we compare/switch characters
if (a[i - 1] != a[string_size - i]) { //if chars comparing are different we switch them
char temp = a[i - 1]; //bubble sorting the characters
a[i - 1] = a[string_size - i];
a[string_size - i] = temp;
}
}
return a; //returns the reversed string
}
/*
This function counts the number of consecutive similar characters and writes it in front of it
*/
string runLengthEncoding(string a) {
int og_str_len = a.length(); //keeps main string length
string output = ""; //initialize main output string
int char_counter = 1; //total of each char counter
char curr_char = a[0]; //initialize the variable with the first char
if (og_str_len == 1) { //checks for single char
return "1" + a;
}
for (int i = 1; i <= og_str_len; i++) {
if (curr_char == a[i]) { //if consecutive char is similar then add one to counter
char_counter += 1;
}
else {
output += to_string(char_counter); //if consecutive char is different collect the counter and switch to string
output += curr_char; //add the string counter to the output string
curr_char = a[i]; //now we look at the new char
char_counter = 1; //set counter back to 1
}
}
return output; //return output
}
/*
This is a merge sort helper that helps compare the branches of the divided tree and send updated sorting index to the vector
*/
vector <int> mergeSortHelper(vector<int> left_side , vector<int> right_side) {
vector<int> sorted; //initialize sorting vector
while (left_side.size() > 0 || right_side.size() > 0) { //checks if either left or right side vectors are populated
if (left_side.size() > 0 && right_side.size() > 0) { //if we have both sides populated we check to see which is greater
if (left_side[0] >= right_side[0]) { //checks if first value of left side is greater than right side
sorted.push_back(right_side[0]); //if so we add it to the sort list
right_side.erase(right_side.begin()); //we remove the first element from the left side
}
else {
sorted.push_back(left_side[0]); //if right was smaller then we add that to the sort list
left_side.erase(left_side.begin()); //we romve the element
}
} //if only one side is populated
else if (right_side.size() > 0) {
for (unsigned int i = 0; i < right_side.size(); i++)
sorted.push_back(right_side[i]); //we add the remaining of right to the sort list
break;
}
else if (left_side.size() > 0) {
for (unsigned int i = 0; i < left_side.size(); i++)
sorted.push_back(left_side[i]); //or if only the left side is populated
break;
}
}
return sorted; //we return the sorting we have done so far
}
/*
This functions sorts a given integer populated vector from small to big and uses the merge sort helper function
to help traverse through each branch in the merge sort tree
*/
vector<int> mergeSort(const vector<int>& v) {
vector<int> left_side, right_side, final; //initializes the two sides and the final vector
if (v.size() <= 1) //if solo size then we return vector
return v;
int mid_point = (v.size() + 1) / 2; //finds the mid point of the vector
for (unsigned int i = mid_point; i < v.size(); i++) {
right_side.push_back(v[i]); //populates the right half of the vector
}
for (int i = 0; i < mid_point; i++) {
left_side.push_back(v[i]); //populates the left half of the vector
}
return final = mergeSortHelper(mergeSort(left_side), mergeSort(right_side)); //recursively call the function till we have passed through all branches
}
/********************************************************************************************************
* TESTING *
* When testing your functions, the main below expects input in a certain format for each question. *
* The first line of input should always the question number (1-4). More details are provided regarding *
* the input for each question in the main itself. *
* To test, you may run program and provide input by hand or you may provide a file as input directly *
* from the terminal For example, suppose you compile your program to a.out and that you have a file *
* named "test_1.in" containing input in the appropriate format for question 1. Then running *
* ./a.out < test_1.in *
* will run your program using the lines of test_1.in as input. This can be a good way to save time and *
* to save different test cases when testing your code. *
* ******************************************************************************************************/
void readIntVector(vector<int>& v, int n);
int main() {
int question = -1;
cin >> question;
string a = "";
string b = "";
int n = -1;
vector<int> v;
vector<int> s;
switch (question) {
case 1: // Hamming distance
/*************************************
* Input format: *
* 1 *
* string 1, no whitespace, nonempty *
* string 2, no whitespace, nonempty *
* ***********************************/
cin >> a >> b;
cout << hammingDist(a, b) << endl;
break;
case 2: // reverse
/**********************************************
* Input format: *
* 2 *
* string to reverse, no whitespace, nonempty *
* ********************************************/
cin >> a;
cout << reverse(a) << endl;
break;
case 3: // run-length encoding
/*********************************************
* Input format: *
* 3 *
* string to encode, no whitespace, nonempty *
* *******************************************/
cin >> a;
cout << runLengthEncoding(a) << endl;
break;
case 4: // merge sort
/*************************************
* Input format: *
* 4 *
* length of vector *
* integers to include in the vector *
* ***********************************/
cin >> n;
readIntVector(v, n);
s = mergeSort(v);
for (int i = 0; i < s.size(); i++) { cout << s[i] << " "; }
break;
}
return 0;
}
/**************************************************
* Read a vector of integers in from cin *
* v - vector<int> & - the integer vector to fill *
* n - int - the number of integers to read *
* ************************************************/
void readIntVector(vector<int>& v, int n) {
int m = 0;
for (int i = 0; i < n; i++) {
cin >> m;
v.push_back(m);
}
} | [
"34931442+chinmaymufasa@users.noreply.github.com"
] | 34931442+chinmaymufasa@users.noreply.github.com |
842a2467b1eb5f24aefd47633775286423c83e30 | f4770e9caccf7d5b143aa53a02d02b6292f97707 | /src/spec_prototypes.hpp | 606728e6862395dbdce8d8a86981c5ffebb4c4ae | [
"MIT"
] | permissive | parsifal-47/ebpf-verifier | 83b6d380a5a964f3a803a93a406c06a247f1eefb | be367bb1b93a8bce105479fe70f181dba16aeb18 | refs/heads/master | 2020-06-14T06:58:57.356448 | 2019-06-12T09:05:42 | 2019-06-12T09:05:42 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,370 | hpp | #pragma once
// Taken from the linux kernel
enum class Ret {
INTEGER,
VOID,
PTR_TO_MAP_VALUE_OR_NULL
};
enum class Arg {
/* unused argument in helper function */
DONTCARE = 0,
/* the following constraints used to prototype
* bpf_map_lookup/update/delete_elem() functions
*/
/* const argument used as pointer to bpf_map */
CONST_MAP_PTR,
/* pointer to stack used as map key */
PTR_TO_MAP_KEY,
/* pointer to stack used as map value */
PTR_TO_MAP_VALUE,
/* the following constraints used to prototype bpf_memcmp() and other
* functions that access data on eBPF program stack
*/
/* pointer to valid memory (stack, packet, map value) */
PTR_TO_MEM,
/* pointer to valid memory or NULL */
PTR_TO_MEM_OR_NULL,
/* pointer to memory does not need to be initialized,
* helper function must fill all bytes or clear
* them in error case.
*/
PTR_TO_UNINIT_MEM,
/* number of bytes accessed from memory */
CONST_SIZE,
/* number of bytes accessed from memory or 0 */
CONST_SIZE_OR_ZERO,
/* pointer to context */
PTR_TO_CTX,
/* any (initialized) argument is ok */
ANYTHING,
};
struct bpf_func_proto {
const char* name;
bool pkt_access;
Ret ret_type;
Arg arg1_type;
Arg arg2_type;
Arg arg3_type;
Arg arg4_type;
Arg arg5_type;
};
bpf_func_proto get_prototype(unsigned int n);
bool is_valid_prototype(unsigned int n);
| [
"elazarg@gmail.com"
] | elazarg@gmail.com |
dd164aab9ea1cb99d6d68af0972393d5d8b84f4c | 97700a9b339dcd15e4f17b4ce57db19a7ff25082 | /conn/FakeTcp.cpp | 3622e8a9d70fc600470b5850a2807dfd5bb1e57b | [] | no_license | iceonsun/rsock | 468ad4efa058fc4cd2f26de3e91e6a16d5a982b8 | 9f2f7248df11952a73f1ff6529083b56d76960a9 | refs/heads/master | 2022-09-11T09:44:13.881848 | 2020-11-09T10:44:59 | 2020-11-09T10:44:59 | 123,566,088 | 262 | 41 | null | null | null | null | UTF-8 | C++ | false | false | 2,546 | cpp | //
// Created by System Administrator on 1/16/18.
//
#include <cassert>
#include <plog/Log.h>
#include "FakeTcp.h"
#include "RConn.h"
#include "../util/rsutil.h"
#include "../src/util/KeyGenerator.h"
#include "../src/util/TcpUtil.h"
// If send 1 bytes for a specific interval to check if alive. This will severely slow down speed
FakeTcp::FakeTcp(uv_tcp_t *tcp, IntKeyType key, const TcpInfo &info) : INetConn(key), mInfo(info) {
assert(tcp);
mTcp = (uv_stream_t *) tcp;
TcpInfo anInfo;
GetTcpInfo(anInfo, reinterpret_cast<uv_tcp_t *>(mTcp));
assert(anInfo.src == info.src && anInfo.dst == info.dst && anInfo.sp == info.sp && anInfo.dp == info.dp);
}
int FakeTcp::Init() {
INetConn::Init();
assert(mTcp);
TcpUtil::SetISN(this, mInfo);
TcpUtil::SetAckISN(this, mInfo);
mTcp->data = this;
return uv_read_start(mTcp, alloc_buf, read_cb);
}
int FakeTcp::Close() {
INetConn::Close();
if (mTcp) {
uv_close(reinterpret_cast<uv_handle_t *>(mTcp), close_cb);
mTcp = nullptr;
}
return 0;
}
int FakeTcp::Output(ssize_t nread, const rbuf_t &rbuf) {
int n = INetConn::Output(nread, rbuf);
if (n >= 0) {
// todo: when add aes or encrpytion, here need to change
mInfo.UpdateSeq((int) nread + mInfo.seq + RConn::HEAD_SIZE);
}
return n;
}
int FakeTcp::OnRecv(ssize_t nread, const rbuf_t &buf) {
TcpInfo *info = static_cast<TcpInfo *>(buf.data);
assert(info);
EncHead *hd = info->head;
assert(hd);
int n = INetConn::OnRecv(nread, buf);
if (n >= 0) {
if (mInfo.ack < info->seq) {
mInfo.UpdateAck(info->seq);
}
}
return n;
}
void FakeTcp::read_cb(uv_stream_t *stream, ssize_t nread, const uv_buf_t *buf) {
// this may never receive any packets.
if (nread < 0 && nread != UV_ECANCELED) {
FakeTcp *conn = static_cast<FakeTcp *>(stream->data);
LOGE << "conn " << conn->ToStr() << " err: " << uv_strerror(nread);
conn->onTcpError(conn, nread);
}
free(buf->base);
}
void FakeTcp::onTcpError(FakeTcp *conn, int err) {
NotifyErr(ERR_FIN_RST);
}
void FakeTcp::SetISN(uint32_t isn) {
mInfo.UpdateSeq(isn);
}
void FakeTcp::SetAckISN(uint32_t isn) {
mInfo.UpdateAck(isn);
}
// The server will send keepalive now, so the alive state is determined by keepalive and tcp rst/fin if received any
//bool FakeTcp::Alive() {
// return mAlive;
//}
ConnInfo *FakeTcp::GetInfo() {
return &mInfo;
}
bool FakeTcp::IsUdp() {
return false;
}
| [
"nmq@example.com"
] | nmq@example.com |
03bad7f33227e77231ba55394c93bb1e5c0d4067 | 898b6c2a978c9dd3ef952d3175810f80f8069d4a | /source/moc/moc_terrainBox.cpp | 7e1c5696ad18e723412d9ff85a417219226208b3 | [
"MIT"
] | permissive | ilteroi/earthgen-old | 403acf52433075ab02d57abd763f9344f2e88b31 | 0cb8624fcc150c63e84ccbfc58359a068a6a8a9e | refs/heads/master | 2021-01-11T07:01:38.045558 | 2016-10-29T21:15:46 | 2016-10-29T21:21:35 | 72,310,208 | 0 | 0 | null | 2016-10-29T21:23:33 | 2016-10-29T21:23:33 | null | UTF-8 | C++ | false | false | 3,351 | cpp | /****************************************************************************
** Meta object code from reading C++ file 'terrainBox.h'
**
** Created by: The Qt Meta Object Compiler version 67 (Qt 5.7.0)
**
** WARNING! All changes made in this file will be lost!
*****************************************************************************/
#include "../gui/terrainBox.h"
#include <QtCore/qbytearray.h>
#include <QtCore/qmetatype.h>
#if !defined(Q_MOC_OUTPUT_REVISION)
#error "The header file 'terrainBox.h' doesn't include <QObject>."
#elif Q_MOC_OUTPUT_REVISION != 67
#error "This file was generated using the moc from 5.7.0. It"
#error "cannot be used with the include files from this version of Qt."
#error "(The moc has changed too much.)"
#endif
QT_BEGIN_MOC_NAMESPACE
struct qt_meta_stringdata_TerrainBox_t {
QByteArrayData data[3];
char stringdata0[34];
};
#define QT_MOC_LITERAL(idx, ofs, len) \
Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \
qptrdiff(offsetof(qt_meta_stringdata_TerrainBox_t, stringdata0) + ofs \
- idx * sizeof(QByteArrayData)) \
)
static const qt_meta_stringdata_TerrainBox_t qt_meta_stringdata_TerrainBox = {
{
QT_MOC_LITERAL(0, 0, 10), // "TerrainBox"
QT_MOC_LITERAL(1, 11, 21), // "generateButtonClicked"
QT_MOC_LITERAL(2, 33, 0) // ""
},
"TerrainBox\0generateButtonClicked\0"
};
#undef QT_MOC_LITERAL
static const uint qt_meta_data_TerrainBox[] = {
// content:
7, // revision
0, // classname
0, 0, // classinfo
1, 14, // methods
0, 0, // properties
0, 0, // enums/sets
0, 0, // constructors
0, // flags
0, // signalCount
// slots: name, argc, parameters, tag, flags
1, 0, 19, 2, 0x0a /* Public */,
// slots: parameters
QMetaType::Void,
0 // eod
};
void TerrainBox::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a)
{
if (_c == QMetaObject::InvokeMetaMethod) {
TerrainBox *_t = static_cast<TerrainBox *>(_o);
Q_UNUSED(_t)
switch (_id) {
case 0: _t->generateButtonClicked(); break;
default: ;
}
}
Q_UNUSED(_a);
}
const QMetaObject TerrainBox::staticMetaObject = {
{ &QGroupBox::staticMetaObject, qt_meta_stringdata_TerrainBox.data,
qt_meta_data_TerrainBox, qt_static_metacall, Q_NULLPTR, Q_NULLPTR}
};
const QMetaObject *TerrainBox::metaObject() const
{
return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject;
}
void *TerrainBox::qt_metacast(const char *_clname)
{
if (!_clname) return Q_NULLPTR;
if (!strcmp(_clname, qt_meta_stringdata_TerrainBox.stringdata0))
return static_cast<void*>(const_cast< TerrainBox*>(this));
return QGroupBox::qt_metacast(_clname);
}
int TerrainBox::qt_metacall(QMetaObject::Call _c, int _id, void **_a)
{
_id = QGroupBox::qt_metacall(_c, _id, _a);
if (_id < 0)
return _id;
if (_c == QMetaObject::InvokeMetaMethod) {
if (_id < 1)
qt_static_metacall(this, _c, _id, _a);
_id -= 1;
} else if (_c == QMetaObject::RegisterMethodArgumentMetaType) {
if (_id < 1)
*reinterpret_cast<int*>(_a[0]) = -1;
_id -= 1;
}
return _id;
}
QT_END_MOC_NAMESPACE
| [
"ilteroi@web.de"
] | ilteroi@web.de |
b5e701997609a82c7ecbb54dd0a749cb8789353a | d6f246abba41859b88214a7a03086da6c00059c6 | /Aulas/Aula032 - String Part 2 /main.cpp | 586734ea01e569a2c8e8ccf331da65454c96545a | [] | no_license | lucasarieiv/language-c | bfc852bb12adb1bb074bd98df87f23826c439c68 | ecd9d5a48ba0c01efc9721306a1484be01f54da4 | refs/heads/main | 2023-05-12T23:13:14.587967 | 2021-06-02T16:29:28 | 2021-06-02T16:29:28 | 370,421,213 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,119 | cpp | #include <stdio.h>
#include <string.h>
int main()
{
// Forma muito custosa.
// char str1[20] = "Lucas";
// char str2[20];
// int i;
// for (i = 0; str1[i] != '\0'; i++)
// str2[i] = str1[i];
// // str2[i] = '\0';
// printf("%s", str2);
// Usaremos a lib <string.h>
// ---- 1° strlen - Tamanho de uma string
// char palavra[20] = "Linguagem C";
// int tamanho = strlen(palavra);
// printf("Tamanho = %d\n", tamanho);
// ---- 2° strcpy - Copiando uma String
// char palavra[20] = "Linguagem C";
// char novapalavra[30];
// strcpy(novapalavra, palavra);
// printf("Copia = %s\n", novapalavra);
// ---- 3° strcat - Contatenando uma String
// char palavra1[20] = "Bom ";
// char palavra2[50] = "aslkdjlkjasdlkjasdlkjaasdasd23123123w";
// strcat(palavra1, palavra2);
// printf("palavra = %s\n", palavra1);
// ---- 4° strcmp - Comparando strings
char palavra1[20] = "LinguagemC";
char palavra2[20] = "LinguagemC";
if (strcmp(palavra1, palavra2) == 0)
printf("As strings são iguais");
else
printf("As strings são diferentes");
return 0;
} | [
"w3desenvolvedor@gmail.com"
] | w3desenvolvedor@gmail.com |
ffb5fd37f00a3b801a8a3708daf601342095cf39 | 67f988dedfd8ae049d982d1a8213bb83233d90de | /external/chromium/chrome/browser/ui/webui/options/font_settings_handler.cc | 245d844f4941b8b6b735bf2bee685b38c17f7825 | [
"BSD-3-Clause"
] | permissive | opensourceyouthprogramming/h5vcc | 94a668a9384cc3096a365396b5e4d1d3e02aacc4 | d55d074539ba4555e69e9b9a41e5deb9b9d26c5b | refs/heads/master | 2020-04-20T04:57:47.419922 | 2019-02-12T00:56:14 | 2019-02-12T00:56:14 | 168,643,719 | 1 | 1 | null | 2019-02-12T00:49:49 | 2019-02-01T04:47:32 | C++ | UTF-8 | C++ | false | false | 9,519 | cc | // Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/ui/webui/options/font_settings_handler.h"
#include <string>
#include "base/basictypes.h"
#include "base/bind.h"
#include "base/bind_helpers.h"
#include "base/i18n/rtl.h"
#include "base/string_number_conversions.h"
#include "base/string_util.h"
#include "base/values.h"
#include "chrome/browser/browser_process.h"
#include "chrome/browser/character_encoding.h"
#include "chrome/browser/prefs/pref_service.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/ui/webui/options/font_settings_utils.h"
#include "chrome/common/chrome_notification_types.h"
#include "chrome/common/pref_names.h"
#include "content/public/browser/font_list_async.h"
#include "content/public/browser/notification_details.h"
#include "content/public/browser/web_ui.h"
#include "grit/chromium_strings.h"
#include "grit/generated_resources.h"
#include "ui/base/l10n/l10n_util.h"
#if defined(OS_WIN)
#include "ui/gfx/font.h"
#include "ui/gfx/platform_font_win.h"
#endif
namespace {
// Returns the localized name of a font so that settings can find it within the
// list of system fonts. On Windows, the list of system fonts has names only
// for the system locale, but the pref value may be in the English name.
std::string MaybeGetLocalizedFontName(const std::string& font_name) {
#if defined(OS_WIN)
gfx::Font font(font_name, 12); // dummy font size
return static_cast<gfx::PlatformFontWin*>(font.platform_font())->
GetLocalizedFontName();
#else
return font_name;
#endif
}
} // namespace
namespace options {
FontSettingsHandler::FontSettingsHandler() {
}
FontSettingsHandler::~FontSettingsHandler() {
}
void FontSettingsHandler::GetLocalizedValues(
DictionaryValue* localized_strings) {
DCHECK(localized_strings);
static OptionsStringResource resources[] = {
{ "fontSettingsStandard",
IDS_FONT_LANGUAGE_SETTING_FONT_SELECTOR_STANDARD_LABEL },
{ "fontSettingsSerif",
IDS_FONT_LANGUAGE_SETTING_FONT_SELECTOR_SERIF_LABEL },
{ "fontSettingsSansSerif",
IDS_FONT_LANGUAGE_SETTING_FONT_SELECTOR_SANS_SERIF_LABEL },
{ "fontSettingsFixedWidth",
IDS_FONT_LANGUAGE_SETTING_FONT_SELECTOR_FIXED_WIDTH_LABEL },
{ "fontSettingsMinimumSize",
IDS_FONT_LANGUAGE_SETTING_MINIMUM_FONT_SIZE_TITLE },
{ "fontSettingsEncoding",
IDS_FONT_LANGUAGE_SETTING_FONT_SUB_DIALOG_ENCODING_TITLE },
{ "fontSettingsSizeTiny",
IDS_FONT_LANGUAGE_SETTING_FONT_SIZE_TINY },
{ "fontSettingsSizeHuge",
IDS_FONT_LANGUAGE_SETTING_FONT_SIZE_HUGE },
{ "fontSettingsLoremIpsum",
IDS_FONT_LANGUAGE_SETTING_LOREM_IPSUM },
};
RegisterStrings(localized_strings, resources, arraysize(resources));
RegisterTitle(localized_strings, "fontSettingsPage",
IDS_FONT_LANGUAGE_SETTING_FONT_TAB_TITLE);
localized_strings->SetString("fontSettingsPlaceholder",
l10n_util::GetStringUTF16(
IDS_FONT_LANGUAGE_SETTING_PLACEHOLDER));
}
void FontSettingsHandler::InitializePage() {
DCHECK(web_ui());
SetUpStandardFontSample();
SetUpSerifFontSample();
SetUpSansSerifFontSample();
SetUpFixedFontSample();
SetUpMinimumFontSample();
}
void FontSettingsHandler::RegisterMessages() {
// Perform validation for saved fonts.
PrefService* pref_service = Profile::FromWebUI(web_ui())->GetPrefs();
FontSettingsUtilities::ValidateSavedFonts(pref_service);
// Register for preferences that we need to observe manually.
font_encoding_.Init(prefs::kDefaultCharset, pref_service);
standard_font_.Init(prefs::kWebKitStandardFontFamily,
pref_service,
base::Bind(&FontSettingsHandler::SetUpStandardFontSample,
base::Unretained(this)));
serif_font_.Init(prefs::kWebKitSerifFontFamily,
pref_service,
base::Bind(&FontSettingsHandler::SetUpSerifFontSample,
base::Unretained(this)));
sans_serif_font_.Init(
prefs::kWebKitSansSerifFontFamily,
pref_service,
base::Bind(&FontSettingsHandler::SetUpSansSerifFontSample,
base::Unretained(this)));
base::Closure callback = base::Bind(
&FontSettingsHandler::SetUpFixedFontSample, base::Unretained(this));
fixed_font_.Init(prefs::kWebKitFixedFontFamily, pref_service, callback);
default_fixed_font_size_.Init(prefs::kWebKitDefaultFixedFontSize,
pref_service, callback);
default_font_size_.Init(
prefs::kWebKitDefaultFontSize,
pref_service,
base::Bind(&FontSettingsHandler::OnWebKitDefaultFontSizeChanged,
base::Unretained(this)));
minimum_font_size_.Init(
prefs::kWebKitMinimumFontSize,
pref_service,
base::Bind(&FontSettingsHandler::SetUpMinimumFontSample,
base::Unretained(this)));
web_ui()->RegisterMessageCallback("fetchFontsData",
base::Bind(&FontSettingsHandler::HandleFetchFontsData,
base::Unretained(this)));
}
void FontSettingsHandler::HandleFetchFontsData(const ListValue* args) {
content::GetFontListAsync(
base::Bind(&FontSettingsHandler::FontsListHasLoaded,
base::Unretained(this)));
}
void FontSettingsHandler::FontsListHasLoaded(
scoped_ptr<base::ListValue> list) {
// Selects the directionality for the fonts in the given list.
for (size_t i = 0; i < list->GetSize(); i++) {
ListValue* font;
bool has_font = list->GetList(i, &font);
DCHECK(has_font);
string16 value;
bool has_value = font->GetString(1, &value);
DCHECK(has_value);
bool has_rtl_chars = base::i18n::StringContainsStrongRTLChars(value);
font->Append(new base::StringValue(has_rtl_chars ? "rtl" : "ltr"));
}
ListValue encoding_list;
const std::vector<CharacterEncoding::EncodingInfo>* encodings;
PrefService* pref_service = Profile::FromWebUI(web_ui())->GetPrefs();
encodings = CharacterEncoding::GetCurrentDisplayEncodings(
g_browser_process->GetApplicationLocale(),
pref_service->GetString(prefs::kStaticEncodings),
pref_service->GetString(prefs::kRecentlySelectedEncoding));
DCHECK(encodings);
DCHECK(!encodings->empty());
std::vector<CharacterEncoding::EncodingInfo>::const_iterator it;
for (it = encodings->begin(); it != encodings->end(); ++it) {
ListValue* option = new ListValue();
if (it->encoding_id) {
int cmd_id = it->encoding_id;
std::string encoding =
CharacterEncoding::GetCanonicalEncodingNameByCommandId(cmd_id);
string16 name = it->encoding_display_name;
bool has_rtl_chars = base::i18n::StringContainsStrongRTLChars(name);
option->Append(new base::StringValue(encoding));
option->Append(new base::StringValue(name));
option->Append(new base::StringValue(has_rtl_chars ? "rtl" : "ltr"));
} else {
// Add empty name/value to indicate a separator item.
option->Append(new base::StringValue(""));
option->Append(new base::StringValue(""));
}
encoding_list.Append(option);
}
ListValue selected_values;
selected_values.Append(new base::StringValue(MaybeGetLocalizedFontName(
standard_font_.GetValue())));
selected_values.Append(new base::StringValue(MaybeGetLocalizedFontName(
serif_font_.GetValue())));
selected_values.Append(new base::StringValue(MaybeGetLocalizedFontName(
sans_serif_font_.GetValue())));
selected_values.Append(new base::StringValue(MaybeGetLocalizedFontName(
fixed_font_.GetValue())));
selected_values.Append(new base::StringValue(font_encoding_.GetValue()));
web_ui()->CallJavascriptFunction("FontSettings.setFontsData",
*list.get(), encoding_list,
selected_values);
}
void FontSettingsHandler::SetUpStandardFontSample() {
base::StringValue font_value(standard_font_.GetValue());
base::FundamentalValue size_value(default_font_size_.GetValue());
web_ui()->CallJavascriptFunction(
"FontSettings.setUpStandardFontSample", font_value, size_value);
}
void FontSettingsHandler::SetUpSerifFontSample() {
base::StringValue font_value(serif_font_.GetValue());
base::FundamentalValue size_value(default_font_size_.GetValue());
web_ui()->CallJavascriptFunction(
"FontSettings.setUpSerifFontSample", font_value, size_value);
}
void FontSettingsHandler::SetUpSansSerifFontSample() {
base::StringValue font_value(sans_serif_font_.GetValue());
base::FundamentalValue size_value(default_font_size_.GetValue());
web_ui()->CallJavascriptFunction(
"FontSettings.setUpSansSerifFontSample", font_value, size_value);
}
void FontSettingsHandler::SetUpFixedFontSample() {
base::StringValue font_value(fixed_font_.GetValue());
base::FundamentalValue size_value(default_fixed_font_size_.GetValue());
web_ui()->CallJavascriptFunction(
"FontSettings.setUpFixedFontSample", font_value, size_value);
}
void FontSettingsHandler::SetUpMinimumFontSample() {
base::FundamentalValue size_value(minimum_font_size_.GetValue());
web_ui()->CallJavascriptFunction("FontSettings.setUpMinimumFontSample",
size_value);
}
void FontSettingsHandler::OnWebKitDefaultFontSizeChanged() {
SetUpStandardFontSample();
SetUpSerifFontSample();
SetUpSansSerifFontSample();
}
} // namespace options
| [
"rjogrady@google.com"
] | rjogrady@google.com |
1b8626716b259c740237280c9a0419edfb1e3033 | 42f39bcfb7418468ee9d6951fb1fea67b891c618 | /Agony/LuaFunctions.cpp | a2244493baa3570c72e11894cbefa60651ac9df5 | [] | no_license | normalzero/WoWBotV2 | 68d5207de2f887c97634f776278460e9354eb492 | 948d5ed92f709d33aad796c5870b6119627610c8 | refs/heads/master | 2022-06-13T04:47:33.095066 | 2020-05-07T00:40:55 | 2020-05-07T00:40:55 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 29,664 | cpp | #include "LuaFunctions.h"
#include "vector3.h"
#include "Navigation.h"
#include "Drawings.h"
#include "ObjectManager.h"
#include "Game.h"
#include "LuaGlobals.h"
#include <tuple>
#include <sstream>
namespace Agony
{
namespace Native
{
std::map<const char*, int64_t> LuaFunctions::FunctionsMap =
{
{"Unlock", reinterpret_cast<int64_t>(Unlock)},
{"GetUnitPosition", reinterpret_cast<int64_t>(GetUnitPosition)},
{"IsFacingTarget", reinterpret_cast<int64_t>(IsFacingTarget)},
{"CalculatePath", reinterpret_cast<int64_t>(CalculatePath)},
{"GoToPoint", reinterpret_cast<int64_t>(GoToPoint)},
{"WorldToScreen", reinterpret_cast<int64_t>(WorldToScreen)},
{"DrawLine3D", reinterpret_cast<int64_t>(DrawLine3D)},
{"GetCorpsePosition", reinterpret_cast<int64_t>(GetCorpsePosition)},
{"GetPlayerAngle", reinterpret_cast<int64_t>(GetPlayerAngle)},
{"NextPoint", reinterpret_cast<int64_t>(NextPoint)},
{"IsInGame", reinterpret_cast<int64_t>(IsInGame)},
{"Test", reinterpret_cast<int64_t>(Test)}
};
WoWObject* LuaFunctions::GetUnitById(const char* unitid)
{
return reinterpret_cast<WoWObject * (__fastcall*)(const char*)>(Offsets::Base + Offsets::GetBaseFromToken)(unitid);
}
WoWObject* LuaFunctions::GetLocalPlayer()
{
return GetUnitById("player");
}
WoWObject* LuaFunctions::GetTarget()
{
return GetUnitById("target");
}
void LuaFunctions::Execute(const char* com)
{
reinterpret_cast<uintptr_t(__fastcall*)(const char*, const char*, int64_t)>(Offsets::Base + Offsets::FrameScript_Execute)(com, "KappaMorpher", 0);
}
void LuaFunctions::Execute(const std::string& com)
{
Execute(com.c_str());
}
std::string LuaFunctions::ExecuteGetResult(const std::string& com, const std::string& arg)
{
reinterpret_cast<uintptr_t(__fastcall*)(const char*, const char*, int64_t)>(Offsets::Base + Offsets::FrameScript_Execute)(com.c_str(), "KappaMorpher", 0);
return std::string(reinterpret_cast<const char*>(reinterpret_cast<uintptr_t(__fastcall*)(const char*, int64_t, int32_t, uint8_t)>(Offsets::Base + Offsets::FrameScript_GetText)(arg.c_str(), -1, 0, 0)));
}
bool LuaFunctions::FramescriptRegister(const char* command, const int64_t funcPointer)
{
const auto textSectionEnd = *reinterpret_cast<int64_t*>(Offsets::Base + Offsets::InvalidFunctionPtr);
if (funcPointer >= textSectionEnd)
{
const auto dif = funcPointer - textSectionEnd;
*reinterpret_cast<int64_t*>(Offsets::Base + Offsets::InvalidFunctionPtr) = textSectionEnd + dif + 1;
}
return reinterpret_cast<bool(__fastcall*)(const char*, int64_t)>(Offsets::Base + Offsets::FrameScript_RegisterFunction)(command, funcPointer);
}
int64_t LuaFunctions::LuaSetTop(uintptr_t* l, const int32_t a2)
{
return reinterpret_cast<int64_t(__fastcall*)(uintptr_t*, int32_t)>(Offsets::Base + Offsets::lua_settop)(l, a2);
}
int64_t LuaFunctions::LuaGetTop(uintptr_t* l)
{
return reinterpret_cast<int64_t(__fastcall*)(uintptr_t*)>(Offsets::Base + Offsets::lua_gettop)(l);
}
int64_t LuaFunctions::LuaGetField(uintptr_t* l, int idx, const char* k)
{
return reinterpret_cast<int64_t(__fastcall*)(uintptr_t*, int idx, const char* k)>(Offsets::Base + Offsets::lua_getfield)(l, idx, k);
}
bool LuaFunctions::LuaIsNumber(uintptr_t* l, const int32_t stackPos)
{
return reinterpret_cast<bool(__fastcall*)(uintptr_t*, int32_t)>(Offsets::Base + Offsets::lua_isnumber)(l, stackPos);
}
double LuaFunctions::LuaToNumber(uintptr_t* l, const int32_t stackPos)
{
return reinterpret_cast<double(__fastcall*)(uintptr_t*, int32_t)>(Offsets::Base + Offsets::lua_tonumber)(l, stackPos);
}
int64_t LuaFunctions::LuaPushInteger(uintptr_t* l, const int32_t theInteger)
{
return reinterpret_cast<int64_t(__fastcall*)(uintptr_t*, int32_t)>(Offsets::Base + Offsets::lua_pushinteger)(l, theInteger);
}
int64_t LuaFunctions::LuaPushNumber(uintptr_t* l, const double theNumber)
{
return reinterpret_cast<int64_t(__fastcall*)(uintptr_t*, double)>(Offsets::Base + Offsets::lua_pushnumber)(l, theNumber);
}
int64_t LuaFunctions::LuaPushString(uintptr_t* l, const char* theString)
{
return reinterpret_cast<int64_t(__fastcall*)(uintptr_t*, const char*)>(Offsets::Base + Offsets::lua_pushstring)(l, theString);
}
bool LuaFunctions::LuaIsString(uintptr_t* l, const int32_t stackPos)
{
return reinterpret_cast<bool(__fastcall*)(uintptr_t*, int32_t)>(Offsets::Base + Offsets::lua_isstring)(l, stackPos);
}
const char* LuaFunctions::LuaToString(uintptr_t* l, const int32_t stackPos)
{
return reinterpret_cast<const char* (__fastcall*)(uintptr_t*, int32_t, uintptr_t*)>(Offsets::Base + Offsets::lua_tolstring)(l, stackPos, nullptr);
}
bool LuaFunctions::LuaPushBoolean(uintptr_t* l, const bool theBool)
{
return reinterpret_cast<bool(__fastcall*)(uintptr_t*, bool)>(Offsets::Base + Offsets::lua_pushboolean)(l, theBool);
}
int64_t LuaFunctions::LuaError(uintptr_t* l, const char* msg)
{
return reinterpret_cast<int64_t(__cdecl*)(uintptr_t*, const char*)>(Offsets::Base + Offsets::luaL_error)(l, msg);
}
int64_t LuaFunctions::LuaCreateTable(uintptr_t* l, const int32_t narr, const int32_t nrec)
{
return reinterpret_cast<int64_t(__fastcall*)(uintptr_t*, int32_t, int32_t)>(Offsets::Base + Offsets::lua_createtable)(l, narr, nrec);
}
void LuaFunctions::LuaRawSeti(uintptr_t* l, const int32_t narr, const int32_t nrec)
{
reinterpret_cast<void(__fastcall*)(uintptr_t*, int32_t, int32_t)>(Offsets::Base + Offsets::lua_rawseti)(l, narr, nrec);
}
int32_t LuaFunctions::LuaPCall(uintptr_t* l, const int32_t nargs, const int32_t nresults, const int32_t errfunc)
{
return reinterpret_cast<int32_t(__fastcall*)(uintptr_t*, int32_t, int32_t, int32_t)>(Offsets::Base + Offsets::lua_pcall)(l, nargs, nresults, errfunc);
}
//the first param will be sent by wow when u call this function and its the lua_state pointer aka stack basically
int32_t LuaFunctions::Unlock(uintptr_t* l) //ok so ur return value here is how many returns ur lua function will return we aernt returning anything so will be 0
{
//so to run protected function from addon we need to call execute in our dll so the first thing we need to do is get the number of arguments on the lua stack when this is called
//num args sent to this command we expect 1 and we expect it to be a string
auto numArgs = LuaGetTop(l);
//if we have 1 arg passed to function like we expect
if (numArgs == 1)
{
//check if that arg is a string like we expect
//if we have 1 arg then its pos on stack is 1
if (LuaIsString(l, 1))
{
const auto currentState = *reinterpret_cast<unsigned __int16*>(Offsets::Base + Offsets::InGame);
if ((currentState >> 4) & 1)
{
//if we are here the 1 arg on the stack is a string now we need to convert it to a string type for lua > c++
auto s = LuaToString(l, 1);
Execute(s);
}
return 0;
}
LuaError(l, "Invalid Argument: string expected.");
}
LuaError(l, "Invalid # of Arguments: 1 expected.");
return 0;
}
//another function so u know how to return results
//lets make it add 2 user supplied numbers and return a string and the number
//so we know already we need 2 args passed to the function
int32_t LuaFunctions::GetUnitPosition(uintptr_t* l)
{
auto numArgs = LuaGetTop(l);
if (numArgs == 1)
{
if (LuaIsString(l, 1))
{
const auto currentState = *reinterpret_cast<unsigned __int16*>(Offsets::Base + Offsets::InGame);
if ((currentState >> 4) & 1)
{
auto unitId = LuaToString(l, 1);
auto unit = GetUnitById(unitId);
if (unit == nullptr)
{
LuaPushNumber(l, 0);
LuaPushNumber(l, 0);
LuaPushNumber(l, 0);
}
else
{
LuaPushNumber(l, unit->pos.y);
LuaPushNumber(l, unit->pos.x);
LuaPushNumber(l, unit->pos.z);
}
}
else
{
LuaPushNumber(l, 0);
LuaPushNumber(l, 0);
LuaPushNumber(l, 0);
}
return 3;
}
LuaError(l, "Invalid Argument: string expected.");
//err die
return 0;
}
LuaError(l, "Invalid # of Arguments: 1 expected.");
return 0;
}
int32_t LuaFunctions::IsFacingTarget(uintptr_t* l)
{
auto numArgs = LuaGetTop(l);
if (numArgs == 0)
{
auto player = GetLocalPlayer();
auto target = GetTarget();
if (target == nullptr)
{
const auto currentState = *reinterpret_cast<unsigned __int16*>(Offsets::Base + Offsets::InGame);
if ((currentState >> 4) & 1)
{
auto Object1Facing = player->fAngle;
auto Angle = ((player->pos.x - target->pos.x) * std::cos(-Object1Facing)) - ((player->pos.y - target->pos.y) * std::sin(-Object1Facing));
bool isFacing = Angle < 0;
LuaPushBoolean(l, isFacing);
}
else
{
LuaPushBoolean(l, true);
}
}
else
{
LuaPushBoolean(l, false);
}
//err die
return 1;
}
return 0;
}
int32_t LuaFunctions::CalculatePath(uintptr_t* l)
{
auto numArgs = LuaGetTop(l);
if (numArgs == 4)
{
if (LuaIsNumber(l, 1) && LuaIsNumber(l, 2) && LuaIsNumber(l, 3) && LuaIsNumber(l, 4))
{
const auto currentState = *reinterpret_cast<unsigned __int16*>(Offsets::Base + Offsets::InGame);
if ((currentState >> 4) & 1)
{
auto player = GetLocalPlayer();
Navigation* navigation = Navigation::GetInstance();
Vector3 start = Vector3(player->pos.x, player->pos.y, player->pos.z);
Vector3 end = Vector3(LuaToNumber(l, 1), LuaToNumber(l, 2), LuaToNumber(l, 3));
//XYZ start = XYZ(-8949.95f, -132.493f, 83.5312f);
//XYZ end = XYZ(-9046.507f, -45.71962f, 88.33186f);
int instanceId = LuaToNumber(l, 4);
Navigation::GetInstance()->Initialize(instanceId);
if (Drawings::Waypoints)
{
Navigation::GetInstance()->FreePathArr(Drawings::Waypoints);
}
Drawings::CurrentWaypoint = 0;
Drawings::Waypoints = Navigation::GetInstance()->CalculatePath(instanceId, start, end, false, &Drawings::WaypointsLenght, false);
LuaCreateTable(l, Drawings::WaypointsLenght, 0);
for (int i = 0; i < Drawings::WaypointsLenght; i++)
{
LuaCreateTable(l, 3, 0);
LuaPushNumber(l, Drawings::Waypoints[i].x);
LuaRawSeti(l, -2, 1);
LuaPushNumber(l, Drawings::Waypoints[i].y);
LuaRawSeti(l, -2, 2);
LuaPushNumber(l, Drawings::Waypoints[i].z);
LuaRawSeti(l, -2, 3);
LuaRawSeti(l, -2, i + 1);
}
return 1;
}
else
{
if (Drawings::Waypoints)
{
Navigation::GetInstance()->FreePathArr(Drawings::Waypoints);
}
Drawings::Waypoints = new Vector3[0];
Drawings::WaypointsLenght = 0;
LuaCreateTable(l, Drawings::WaypointsLenght, 0);
return 1;
}
}
else
{
if (Drawings::Waypoints)
{
Navigation::GetInstance()->FreePathArr(Drawings::Waypoints);
}
Drawings::Waypoints = new Vector3[0];
Drawings::WaypointsLenght = 0;
LuaCreateTable(l, Drawings::WaypointsLenght, 0);
return 1;
}
}
return 0;
}
int32_t LuaFunctions::NextPoint(uintptr_t* l)
{
auto numArgs = LuaGetTop(l);
if (numArgs == 0)
{
Drawings::CurrentWaypoint++;
if (Drawings::CurrentWaypoint == Drawings::WaypointsLenght) Drawings::CurrentWaypoint = Drawings::WaypointsLenght - 1;
}
return 0;
}
int32_t LuaFunctions::GoToPoint(uintptr_t* l)
{
auto numArgs = LuaGetTop(l);
if (numArgs == 3)
{
if (LuaIsNumber(l, 1) && LuaIsNumber(l, 2) && LuaIsNumber(l, 3))
{
const auto currentState = *reinterpret_cast<unsigned __int16*>(Offsets::Base + Offsets::InGame);
if ((currentState >> 4) & 1)
{
auto player = GetLocalPlayer();
Vector3 point = Vector3(LuaToNumber(l, 1), LuaToNumber(l, 2), LuaToNumber(l, 3));
reinterpret_cast<void(__fastcall*)(WoWObject*, Vector3*)>(Offsets::Base + Offsets::TerrainClick)(player, &point);//same shit XD
}
}
}
return 0;
}
int32_t LuaFunctions::WorldToScreen(uintptr_t* l)
{
auto numArgs = LuaGetTop(l);
if (numArgs == 3)
{
if (LuaIsNumber(l, 1) && LuaIsNumber(l, 2) && LuaIsNumber(l, 3))
{
Vector2 screenLoc;
if (Drawings::WorldToScreen(Vector3(LuaToNumber(l, 1), LuaToNumber(l, 2), LuaToNumber(l, 3)), &screenLoc))
{
LuaPushNumber(l, screenLoc.x);
LuaPushNumber(l, screenLoc.y);
}
else
{
LuaPushNumber(l, 0);
LuaPushNumber(l, 0);
}
//auto screenPos = Drawings::WorldToScreen(point);
return 2;
}
return 0;
}
//
}
int32_t LuaFunctions::DrawLine3D(uintptr_t* l)
{
auto numArgs = LuaGetTop(l);
if (numArgs == 6)
{
if (LuaIsNumber(l, 1) && LuaIsNumber(l, 2) && LuaIsNumber(l, 3) && LuaIsNumber(l, 4) && LuaIsNumber(l, 5) && LuaIsNumber(l, 6))
{
Vector3 from = Vector3(LuaToNumber(l, 1), LuaToNumber(l, 2), LuaToNumber(l, 3));
Vector3 to = Vector3(LuaToNumber(l, 4), LuaToNumber(l, 5), LuaToNumber(l, 6));
Drawings::DrawLine(from, to);
return 0;
}
return 0;
}
//
}
int32_t LuaFunctions::GetCorpsePosition(uintptr_t* l)
{
auto numArgs = LuaGetTop(l);
if (numArgs == 0)
{
auto corpseBase = reinterpret_cast<CorpseBase*>(Offsets::Base + Offsets::CorpseBase);
if (corpseBase == nullptr)
{
LuaPushNumber(l, 0);
LuaPushNumber(l, 0);
LuaPushNumber(l, 0);
}
else
{
LuaPushNumber(l, corpseBase->pos.x);
LuaPushNumber(l, corpseBase->pos.y);
LuaPushNumber(l, corpseBase->pos.z);
}
return 3;
}
return 0;
}
int32_t LuaFunctions::GetPlayerAngle(uintptr_t* l)
{
auto numArgs = LuaGetTop(l);
if (numArgs == 0)
{
auto player = GetLocalPlayer();
LuaPushNumber(l, player->fAngle);
return 1;
}
return 0;
}
int32_t LuaFunctions::IsInGame(uintptr_t* l)
{
auto numArgs = LuaGetTop(l);
if (numArgs == 0)
{
const auto currentState = *reinterpret_cast<unsigned __int16*>(Offsets::Base + Offsets::InGame);
LuaPushBoolean(l, (currentState >> 4) & 1);
return 1;
}
return 0;
}
int32_t LuaFunctions::Test(uintptr_t* l)
{
auto numArgs = LuaGetTop(l);
if (numArgs == 0)
{
//auto player = Agony::Native::Game::Me();
//uintptr_t* L = *(uintptr_t**)(Offsets::Base + Offsets::lua_state);
//auto v4 = 0;// reinterpret_cast<uintptr_t* (__thiscall*)(void*)>(Offsets::Base + 0xD08BE0)(L);
//auto result = LuaFunctions::Call("GetProfessionInfo", {2, 2, 1, 1, 1, 1, 1, 1, 1, 1}, 5);
//std::cout << "v4 = " << std::dec << std::any_cast<int>(result[2]) << "/" << std::any_cast<int>(result[3]) << std::endl;
auto result = LuaFunctions::Call("UnitHealth", {1}, "player");
std::cout << "Test = " << std::dec << std::any_cast<int>(result[0]) << std::endl;
/*ObjectGuid* guid2 = reinterpret_cast<ObjectGuid*>(Offsets::Base + Offsets::CGGameUI__m_currentObjectTrack);
if (guid2 != nullptr && !(guid2->HiWord == 0 && guid2->LoWord))
{
//std::cout << "guid1 type " << std::dec << guid1.Type() << std::endl;
std::cout << "guid2 type " << std::dec << guid2->Type() << std::endl;
auto obj = ObjectManager::GetObjectFromGuid(guid2);
if (obj != nullptr)
{
std::cout << "Obj address 0x" << std::hex << obj << std::endl;
if (obj->GetType() == WoWObjectType::Unit)
{
std::cout << obj->GetName() << std::endl;
}
else if (obj->GetType() == WoWObjectType::GameObject)
{
std::cout << obj->GetName() << std::endl;
//This even check if it is called from Unlock or not : this one?
reinterpret_cast<bool(__fastcall*)(ObjectGuid*)>(Offsets::Base + Offsets::CGGameUI__OnSpriteRightClick)(&obj->GetGuid());
}
}
}*/
/*THIS ALSO WORKS:
auto gameObjects = ObjectManager::GetVisibleObjects();
for (std::size_t i = 0; i < gameObjects.size(); ++i)
{
auto gameObject = gameObjects[i];
if (gameObject->GetType() == WoWObjectType::GameObject)
{
//std::cout << gameObject->GetName() << std::endl;
reinterpret_cast<bool(__fastcall*)(ObjectGuid*)>(Offsets::Base + Offsets::CGGameUI__OnSpriteRightClick)(&gameObject->GetGuid());
}
}*/
}
return 0;
}
const char* LuaFunctions::GetMainScriptCode()
{
int32_t dummy = 0;
#include "main.lua"//This include the file and return it.... how nice :D
}
inline void PrintLuaResults(const sol::variadic_results& results)
{
for (const auto& result : results)
{
switch (result.get_type())
{
case sol::type::nil:
{
std::cout << "nil\n";
break;
}
case sol::type::function:
{
std::cout << "function: 0x" << std::hex << result.as<uintptr_t>() << "\n";
break;
}
case sol::type::string:
{
std::cout << result.as<std::string>() << "\n";
break;
}
case sol::type::number:
{
std::cout << std::to_string(result.as<double>()) << "\n";
break;
}
case sol::type::boolean:
{
std::cout << (result.as<bool>() ? "true" : "false") << "\n";
break;
}
case sol::type::table:
{
std::cout << "table: 0x" << std::hex << result.as<uintptr_t>() << "\n";
break;
}
case sol::type::userdata:
{
std::cout << "userdata: 0x" << std::hex << result.as<uintptr_t>() << "\n";
break;
}
default:
{
std::cout << "Type value is either unknown or doesn't matter\n";
break;
}
}
}
}
//create var to bind only once later
void LuaFunctions::BindLua()
{
const auto l = *reinterpret_cast<lua_State**>(Offsets::Base + Offsets::lua_state);
LuaGlobals::MainEnvironment = std::make_unique<sol::state_view>(l);
auto& lua = *LuaGlobals::MainEnvironment;
//empty scope, i dont get it, doesnt that same as after method call ? no
{
lua.new_usertype<void>("AgonyLuaEvents", sol::no_constructor,
"OnEvent", [](const sol::variadic_args& results)
{
std::string eventName;
std::cout << "Received event in core: " << eventName << std::endl;
std::vector<std::any> args = std::vector<std::any>();
int i = 0;
for (const auto& result : results)
{
switch (result.get_type())
{
case sol::type::nil:
{
args.push_back(std::nullptr_t());
break;
}
case sol::type::function:
{
args.push_back(result.as<uintptr_t>());
break;
}
case sol::type::string:
{
if (i == 0)
{
eventName = result.as<std::string>();
}
else
{
args.push_back(result.as<std::string>());
}
break;
}
case sol::type::number:
{
args.push_back(result.as<double>());
break;
}
case sol::type::boolean:
{
args.push_back(result.as<bool>());
break;
}
case sol::type::table:
{
args.push_back(result.as<uintptr_t>());
break;
}
case sol::type::userdata:
{
args.push_back(result.as<uintptr_t>());
break;
}
default:
{
std::cout << "Type value is either unknown or doesn't matter\n";
break;
}
}
i++;
}
Game::GetInstance()->OnLuaEvent.Trigger(eventName, args);
}
);
std::cout << "Finished binding functions.\n";
}
//thats basically it SEE IF WORKS
const auto badCodeResult = lua.safe_script(
GetMainScriptCode(),
[](lua_State*, const sol::protected_function_result& pfr)
{
const auto errObj = pfr.get<sol::error>();
const auto errMsg = errObj.what();
std::cout << errMsg << "\n";
return pfr;
}
);
//////ok now u can call lua anywhere but we do here for example
//////let start simple unithealth
//int health = lua["UnitHealth"]("player");
//std::cout << "Player health = " << health << std::endl;
//try
//{
// sol::variadic_results result2 = lua["GetBattlefieldStatus"](1);//Guess it will work
// PrintLuaResults(result2);
// /*for (auto arg : result2)
// {
// if (arg.valid())
// {
// if (arg.is<std::string>())
// std::cout << "Got arg: " << arg.as<std::string>() << std::endl;
// else if (arg.is<float>())
// std::cout << "Got arg: " << arg.as<float>() << std::endl;
// else if (arg.is<int>())
// std::cout << "Got arg: " << arg.as<int>() << std::endl;
// else if (arg.is<bool>())
// std::cout << "Got arg: " << arg.as<bool>() << std::endl;
// }
// }*/
// /*if (result2.size() == 8)
// {
// std::cout << "status: " << result2.at(0).as<std::string>() << " mapName: " << result2.at(1).as<std::string>() << std::endl;
// }*/
//}
//catch (...) {}
}
void LuaFunctions::DropLua()
{
if (LuaGlobals::MainEnvironment)
LuaGlobals::MainEnvironment.reset();//Not release ? //reset sets to null
}
bool LuaFunctions::RegisterEvent(std::string eventName)
{
if (!Game::IsInGame()) return false;
auto& lua = *LuaGlobals::MainEnvironment;
sol::table AgonyLuaEvents = lua["AgonyCoreFrame"];
return AgonyLuaEvents["RegisterEvent"](AgonyLuaEvents, eventName).get<bool>();
//return true;
}
void LuaFunctions::UnregisterEvent(std::string eventName)
{
if (!Game::IsInGame()) return;
auto& lua = *LuaGlobals::MainEnvironment;
sol::table AgonyLuaEvents = lua["AgonyCoreFrame"];
AgonyLuaEvents["UnregisterEvent"](AgonyLuaEvents, eventName);
}
}
} | [
"sylvainmartens@gmail.com"
] | sylvainmartens@gmail.com |
43a2705270b635777bbc784b98e7353ffe11e355 | 3c9d8787d9dd84b5402097c1331add04bc7a7f94 | /17.13.1 Linked List - From scratch.cpp | ad5c36a74cf3b0213902f60fc3a1ed04fd1e7971 | [] | no_license | AbhishekPratik1810/my_cpp_dsa_practice | bfc6df01dc2412b39056b5d49791a0ccf105d19a | 37e465cf15d162dfaf535fdcf780d5d5225a8575 | refs/heads/master | 2022-12-09T03:24:24.220974 | 2020-09-15T17:50:33 | 2020-09-15T17:50:33 | 295,805,408 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,105 | cpp | #include<iostream>
using namespace std;
struct Node{
int data;
Node* next;
Node(int val){
data = val;
next = NULL;
}
};
Node* doTheMagic(Node* head, int k){
if(!head)
return NULL;
Node* prev = NULL, *curr =NULL, *fwd = head;
int linkCount = 0;
while(fwd && linkCount<k){
prev = curr;
curr = fwd;
fwd = fwd->next;
curr->next = prev;
linkCount++;
}
head->next = doTheMagic(fwd,k);
return curr;
}
void printList(Node* head){
Node* temp = head;
while(temp){
cout<<temp->data<<" ";
temp = temp->next;
}
cout<<endl;
}
int main(){
int nodes, k,val;
cin>>nodes>>k;
Node* head=NULL;
for(int i=0;i<nodes;i++){
cin>>val;
Node* naya = new Node(val);
if(!head)
head = naya;
else{
Node* temp = head;
while(temp->next){
temp = temp->next;
}
temp->next = naya;
}
}
head = doTheMagic(head,k);
printList(head);
}
| [
"developerpratik18@gmail.com"
] | developerpratik18@gmail.com |
bc6e1e1cbff328da17b200c150bfdd5cd22004fb | 61314f889041b72d98e233a28e4e79c06167d1b4 | /target/qnx6/usr/include/c++/4.4.2/tr1/memory | 73a4e26c3d4484eefb7a225479250fc2536766db | [] | no_license | CyberSys/qnx650 | 37867847dacf9331926736e97009bc0af83850bd | a10a0e62384d0a6a24cc3879dee3b7bacf6d4601 | refs/heads/master | 2021-05-27T03:46:05.775523 | 2014-05-02T00:15:16 | 2014-05-02T00:15:16 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,332 | // <tr1/memory> -*- C++ -*-
// Copyright (C) 2005, 2006, 2007, 2009 Free Software Foundation, Inc.
//
// This file is part of the GNU ISO C++ Library. This library is free
// software; you can redistribute it and/or modify it under the
// terms of the GNU General Public License as published by the
// Free Software Foundation; either version 3, or (at your option)
// any later version.
// This library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
// Under Section 7 of GPL version 3, you are granted additional
// permissions described in the GCC Runtime Library Exception, version
// 3.1, as published by the Free Software Foundation.
// You should have received a copy of the GNU General Public License and
// a copy of the GCC Runtime Library Exception along with this program;
// see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
// <http://www.gnu.org/licenses/>.
/**
* @file tr1/memory
* This is a TR1 C++ Library header.
*/
#ifndef _GLIBCXX_TR1_MEMORY
#define _GLIBCXX_TR1_MEMORY 1
#pragma GCC system_header
#if defined(_GLIBCXX_INCLUDE_AS_CXX0X)
# error TR1 header cannot be included from C++0x header
#endif
#include <memory>
#include <exception> // std::exception
#include <typeinfo> // std::type_info in get_deleter
#include <bits/stl_algobase.h> // std::swap
#include <iosfwd> // std::basic_ostream
#include <ext/atomicity.h>
#include <ext/concurrence.h>
#include <bits/functexcept.h>
#include <bits/stl_function.h> // std::less
#include <debug/debug.h>
#include <tr1/type_traits>
#if defined(_GLIBCXX_INCLUDE_AS_TR1)
# include <tr1_impl/boost_sp_counted_base.h>
# include <tr1/shared_ptr.h>
#else
# define _GLIBCXX_INCLUDE_AS_TR1
# define _GLIBCXX_BEGIN_NAMESPACE_TR1 namespace tr1 {
# define _GLIBCXX_END_NAMESPACE_TR1 }
# define _GLIBCXX_TR1 tr1::
# include <tr1_impl/boost_sp_counted_base.h>
# include <tr1/shared_ptr.h>
# undef _GLIBCXX_TR1
# undef _GLIBCXX_END_NAMESPACE_TR1
# undef _GLIBCXX_BEGIN_NAMESPACE_TR1
# undef _GLIBCXX_INCLUDE_AS_TR1
#endif
#endif // _GLIBCXX_TR1_MEMORY
| [
"acklinr@us.panasonic.com"
] | acklinr@us.panasonic.com | |
3249a7475a9e1f5c278cc07d1c82a54dde1a7774 | 15c181b916b8bc55f3e180c0017a0d05dbaa6194 | /src/demo.hpp | 23be6cb03ffc8b0e5e4fe4e8e41d14acbb798fcd | [] | no_license | meleneth/rygen | e0fc3232b92311885308825b82cf597c664f526b | 633a471f9811da782b64b3a87e156dadd671410e | refs/heads/master | 2020-06-04T05:35:19.145511 | 2015-06-10T19:24:30 | 2015-06-10T19:24:30 | 27,327,671 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 553 | hpp | #ifndef DEMO_HPP
#define DEMO_HPP
#include "mel_opengl.hpp"
#include "rygen_types.hpp"
namespace Rygen {
class Demo {
public:
Demo(const Video &video);
void render_frame(Video &video);
GLuint texid;
GLuint entity_vbo;
std::shared_ptr<ShaderProgram> entity_shader;
glm::mat4 View;
glm::mat4 Projection;
GLuint widget_vbo;
std::shared_ptr<ShaderProgram> widget_shader;
GLuint texture_vbo;
std::shared_ptr<ShaderProgram> texture_shader;
GLuint widget_partial_texture_vbo;
std::shared_ptr<Texture> texture;
};
}
#endif
| [
"meleneth@answer.sectorfour"
] | meleneth@answer.sectorfour |
2d5617c55d35956315cc2638b08ac255b33bb8f3 | 8e50c4abd5874d17f92ea74eca344787a893606b | /src/ex_finger.h | b7c42d3217326f3bd2de8292fd19bc23afc551de | [
"MIT"
] | permissive | HustDsy/DashTest | d953fea4ef407fd9dfc0be83acda027fc2f850f4 | c30eb6e9c7a8db65156eb625836859c15f7fe382 | refs/heads/main | 2023-04-19T23:20:12.002840 | 2021-05-06T01:03:04 | 2021-05-06T01:03:04 | 360,755,758 | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 87,558 | h |
// Copyright (c) Simon Fraser University & The Chinese University of Hong Kong. All rights reserved.
// Licensed under the MIT license.
//
// Dash Extendible Hashing
// Authors:
// Baotong Lu <btlu@cse.cuhk.edu.hk>
// Xiangpeng Hao <xiangpeng_hao@sfu.ca>
// Tianzheng Wang <tzwang@sfu.ca>
#pragma once
#include <immintrin.h>
#include <omp.h>
#include <bitset>
#include <cassert>
#include <cmath>
#include <cstring>
#include <iostream>
#include <shared_mutex>
#include <thread>
#include <tuple>
#include <unordered_map>
#include <vector>
#include "../util/hash.h"
#include "../util/pair.h"
#include "Hash.h"
#include "allocator.h"
#ifdef PMEM
#include <libpmemobj.h>
#endif
uint64_t merge_time;
namespace extendible {
//#define COUNTING 1
//#define PREALLOC 1
template <class T>
struct _Pair {
T key;
Value_t value;
};
const uint32_t lockSet = ((uint32_t)1 << 31);
const uint32_t lockMask = ((uint32_t)1 << 31) - 1;
const int overflowSet = 1 << 4;
const int countMask = (1 << 4) - 1;
const uint64_t tailMask = (1UL << 56) - 1;
const uint64_t headerMask = ((1UL << 8) - 1) << 56;
const uint8_t overflowBitmapMask = (1 << 4) - 1;
constexpr size_t k_PairSize = 16; // a k-v _Pair with a bit
constexpr size_t kNumPairPerBucket =
14; /* it is determined by the usage of the fingerprint*/
constexpr size_t kFingerBits = 8;
constexpr size_t kMask = (1 << kFingerBits) - 1;
const constexpr size_t kNumBucket =
64; /* the number of normal buckets in one segment*/
constexpr size_t stashBucket =
2; /* the number of stash buckets in one segment*/
constexpr int allocMask = (1 << kNumPairPerBucket) - 1;
size_t bucketMask = ((1 << (int)log2(kNumBucket)) - 1);
size_t stashMask = (1 << (int)log2(stashBucket)) - 1;
uint8_t stashHighMask = ~((uint8_t)stashMask);
#define BUCKET_INDEX(hash) ((hash >> kFingerBits) & bucketMask)
#define GET_COUNT(var) ((var)&countMask)
#define GET_MEMBER(var) (((var) >> 4) & allocMask)
#define GET_INVERSE_MEMBER(var) ((~((var) >> 4)) & allocMask)
#define GET_BITMAP(var) ((var) >> 18)
inline bool var_compare(char *str1, char *str2, int len1, int len2) {
if (len1 != len2) return false;
return !memcmp(str1, str2, len1);
}
template <class T>
struct Bucket {
inline int find_empty_slot() {
if (GET_COUNT(bitmap) == kNumPairPerBucket) {
return -1;
}
auto mask = ~(GET_BITMAP(bitmap));
return __builtin_ctz(mask);
}
/*true indicates overflow, needs extra check in the stash*/
inline bool test_overflow() { return overflowCount; }
inline bool test_stash_check() { return (overflowBitmap & overflowSet); }
inline void clear_stash_check() {
overflowBitmap = overflowBitmap & (~overflowSet);
}
inline void set_indicator(uint8_t meta_hash, Bucket<T> *neighbor,
uint8_t pos) {
int mask = overflowBitmap & overflowBitmapMask;
mask = ~mask;
auto index = __builtin_ctz(mask);
if (index < 4) {
finger_array[14 + index] = meta_hash;
overflowBitmap = ((uint8_t)(1 << index) | overflowBitmap);
overflowIndex =
(overflowIndex & (~(3 << (index * 2)))) | (pos << (index * 2));
} else {
mask = neighbor->overflowBitmap & overflowBitmapMask;
mask = ~mask;
index = __builtin_ctz(mask);
if (index < 4) {
neighbor->finger_array[14 + index] = meta_hash;
neighbor->overflowBitmap =
((uint8_t)(1 << index) | neighbor->overflowBitmap);
neighbor->overflowMember =
((uint8_t)(1 << index) | neighbor->overflowMember);
neighbor->overflowIndex =
(neighbor->overflowIndex & (~(3 << (index * 2)))) |
(pos << (index * 2));
} else { /*overflow, increase count*/
overflowCount++;
}
}
overflowBitmap = overflowBitmap | overflowSet;
}
/*both clear this bucket and its neighbor bucket*/
inline void unset_indicator(uint8_t meta_hash, Bucket<T> *neighbor, T key,
uint64_t pos) {
/*also needs to ensure that this meta_hash must belongs to other bucket*/
bool clear_success = false;
int mask1 = overflowBitmap & overflowBitmapMask;
for (int i = 0; i < 4; ++i) {
if (CHECK_BIT(mask1, i) && (finger_array[14 + i] == meta_hash) &&
(((1 << i) & overflowMember) == 0) &&
(((overflowIndex >> (2 * i)) & stashMask) == pos)) {
overflowBitmap = overflowBitmap & ((uint8_t)(~(1 << i)));
overflowIndex = overflowIndex & (~(3 << (i * 2)));
assert(((overflowIndex >> (i * 2)) & stashMask) == 0);
clear_success = true;
break;
}
}
int mask2 = neighbor->overflowBitmap & overflowBitmapMask;
if (!clear_success) {
for (int i = 0; i < 4; ++i) {
if (CHECK_BIT(mask2, i) &&
(neighbor->finger_array[14 + i] == meta_hash) &&
(((1 << i) & neighbor->overflowMember) != 0) &&
(((neighbor->overflowIndex >> (2 * i)) & stashMask) == pos)) {
neighbor->overflowBitmap =
neighbor->overflowBitmap & ((uint8_t)(~(1 << i)));
neighbor->overflowMember =
neighbor->overflowMember & ((uint8_t)(~(1 << i)));
neighbor->overflowIndex = neighbor->overflowIndex & (~(3 << (i * 2)));
assert(((neighbor->overflowIndex >> (i * 2)) & stashMask) == 0);
clear_success = true;
break;
}
}
}
if (!clear_success) {
overflowCount--;
}
mask1 = overflowBitmap & overflowBitmapMask;
mask2 = neighbor->overflowBitmap & overflowBitmapMask;
if (((mask1 & (~overflowMember)) == 0) && (overflowCount == 0) &&
((mask2 & neighbor->overflowMember) == 0)) {
clear_stash_check();
}
}
int unique_check(uint8_t meta_hash, T key, Bucket<T> *neighbor,
Bucket<T> *stash) {
Value_t var=check_and_get(meta_hash, key, false);
if(var!=NONE) {
//Delete(key,meta_hash, false);
// Insert(key,var,meta_hash,false);
return -1;
}
var=neighbor->check_and_get(meta_hash, key, true);
if(var!=NONE) {
// neighbor->Delete(key,meta_hash, true);
//neighbor->Insert(key,var,meta_hash,true);
return -1;
}
if (test_stash_check()) {
auto test_stash = false;
if (test_overflow()) {
test_stash = true;
} else {
int mask = overflowBitmap & overflowBitmapMask;
if (mask != 0) {
for (int i = 0; i < 4; ++i) {
if (CHECK_BIT(mask, i) && (finger_array[14 + i] == meta_hash) &&
(((1 << i) & overflowMember) == 0)) {
test_stash = true;
goto STASH_CHECK;
}
}
}
mask = neighbor->overflowBitmap & overflowBitmapMask;
if (mask != 0) {
for (int i = 0; i < 4; ++i) {
if (CHECK_BIT(mask, i) &&
(neighbor->finger_array[14 + i] == meta_hash) &&
(((1 << i) & neighbor->overflowMember) != 0)) {
test_stash = true;
break;
}
}
}
}
STASH_CHECK:
if (test_stash == true) {
for (int i = 0; i < stashBucket; ++i) {
Bucket *curr_bucket = stash + i;
var=curr_bucket->check_and_get(meta_hash, key, false);
if(var!= NONE) {
//curr_bucket->Delete(key,meta_hash, false);
//curr_bucket->Insert(key,var,meta_hash,false);
return -1;
}
}
}
}
return 0;
}
inline int get_current_mask() {
int mask = GET_BITMAP(bitmap) & GET_INVERSE_MEMBER(bitmap);
return mask;
}
Value_t check_and_get(uint8_t meta_hash, T key, bool probe) {
int mask = 0;
SSE_CMP8(finger_array, meta_hash);
int dul=_mm_popcnt_u32(mask);
if (!probe) {
mask = mask & GET_BITMAP(bitmap) & (~GET_MEMBER(bitmap));
} else {
mask = mask & GET_BITMAP(bitmap) & GET_MEMBER(bitmap);
}
if (mask == 0) {
return NONE;
}
if constexpr (std::is_pointer_v<T>) {
/* variable-length key*/
string_key *_key = reinterpret_cast<string_key *>(key);
for (int i = 0; i < 14; i += 1) {
if (CHECK_BIT(mask, i) &&
(var_compare((reinterpret_cast<string_key *>(_[i].key))->key,
_key->key,
(reinterpret_cast<string_key *>(_[i].key))->length,
_key->length))) {
return _[i].value;
}
}
} else {
/*fixed-length key*/
/*loop unrolling*/
for (int i = 0; i < 12; i += 4) {
if (CHECK_BIT(mask, i) && (_[i].key == key)) {
return _[i].value;
}
if (CHECK_BIT(mask, i + 1) && (_[i + 1].key == key)) {
return _[i + 1].value;
}
if (CHECK_BIT(mask, i + 2) && (_[i + 2].key == key)) {
return _[i + 2].value;
}
if (CHECK_BIT(mask, i + 3) && (_[i + 3].key == key)) {
return _[i + 3].value;
}
}
if (CHECK_BIT(mask, 12) && (_[12].key == key)) {
return _[12].value;
}
if (CHECK_BIT(mask, 13) && (_[13].key == key)) {
return _[13].value;
}
}
return NONE;
}
inline void set_hash(int index, uint8_t meta_hash, bool probe) {
finger_array[index] = meta_hash;
uint32_t new_bitmap = bitmap | (1 << (index + 18));
if (probe) {
new_bitmap = new_bitmap | (1 << (index + 4));
}
new_bitmap += 1;
bitmap = new_bitmap;
}
inline uint8_t get_hash(int index) { return finger_array[index]; }
inline void unset_hash(int index, bool nt_flush = false) {
uint32_t new_bitmap =
bitmap & (~(1 << (index + 18))) & (~(1 << (index + 4)));
assert(GET_COUNT(bitmap) <= kNumPairPerBucket);
assert(GET_COUNT(bitmap) > 0);
new_bitmap -= 1;
#ifdef PMEM
if (nt_flush) {
Allocator::NTWrite32(reinterpret_cast<uint32_t *>(&bitmap), new_bitmap);
} else {
bitmap = new_bitmap;
}
#else
bitmap = new_bitmap;
#endif
}
inline void get_lock() {
uint32_t new_value = 0;
uint32_t old_value = 0;
do {
while (true) {
old_value = __atomic_load_n(&version_lock, __ATOMIC_ACQUIRE);
if (!(old_value & lockSet)) {
old_value &= lockMask;
break;
}
}
new_value = old_value | lockSet;
} while (!CAS(&version_lock, &old_value, new_value));
}
inline bool try_get_lock() {
uint32_t v = __atomic_load_n(&version_lock, __ATOMIC_ACQUIRE);
if (v & lockSet) {
return false;
}
auto old_value = v & lockMask;
auto new_value = v | lockSet;
return CAS(&version_lock, &old_value, new_value);
}
inline void release_lock() {
uint32_t v = version_lock;
__atomic_store_n(&version_lock, v + 1 - lockSet, __ATOMIC_RELEASE);
}
/*if the lock is set, return true*/
inline bool test_lock_set(uint32_t &version) {
version = __atomic_load_n(&version_lock, __ATOMIC_ACQUIRE);
return (version & lockSet) != 0;
}
// test whether the version has change, if change, return true
inline bool test_lock_version_change(uint32_t old_version) {
auto value = __atomic_load_n(&version_lock, __ATOMIC_ACQUIRE);
return (old_version != value);
}
int insert_with_slot(int index,T key, Value_t value, uint8_t meta_hash, bool probe) {
_[index].value = value;
_[index].key = key;
#ifdef PMEM
Allocator::Persist(&_[index], sizeof(_[index]));
#endif
set_hash(index, meta_hash, probe);
return 0;
}
int Insert(T key, Value_t value, uint8_t meta_hash, bool probe) {
auto slot = find_empty_slot();
assert(slot < kNumPairPerBucket);
if (slot == -1) {
return -1;
}
_[slot].value = value;
_[slot].key = key;
#ifdef PMEM
Allocator::Persist(&_[slot], sizeof(_[slot]));
#endif
set_hash(slot, meta_hash, probe);
return 0;
}
void delete_with_index(int index) {
unset_hash(index, false);
}
//新增函数,根据位置插入数据一定会成功,probe一定是true
void insert_with_index(T key,Value_t value,uint8_t meta_hash,int index) {
_[index].value = value;
_[index].key = key;
#ifdef PMEM
Allocator::Persist(&_[index], sizeof(_[index]));
#endif
set_hash(index, meta_hash, false);
}
/*if delete success, then return 0, else return -1*/
int Delete(T key, uint8_t meta_hash, bool probe) {
/*do the simd and check the key, then do the delete operation*/
int mask = 0;
SSE_CMP8(finger_array, meta_hash);
if (!probe) {
mask = mask & GET_BITMAP(bitmap) & (~GET_MEMBER(bitmap));
} else {
mask = mask & GET_BITMAP(bitmap) & GET_MEMBER(bitmap);
}
/*loop unrolling*/
if constexpr (std::is_pointer_v<T>) {
string_key *_key = reinterpret_cast<string_key *>(key);
/*loop unrolling*/
if (mask != 0) {
for (int i = 0; i < 12; i += 4) {
if (CHECK_BIT(mask, i) &&
(var_compare((reinterpret_cast<string_key *>(_[i].key))->key,
_key->key,
(reinterpret_cast<string_key *>(_[i].key))->length,
_key->length))) {
unset_hash(i, false);
return 0;
}
if (CHECK_BIT(mask, i + 1) &&
(var_compare(
reinterpret_cast<string_key *>(_[i + 1].key)->key, _key->key,
(reinterpret_cast<string_key *>(_[i + 1].key))->length,
_key->length))) {
unset_hash(i + 1, false);
return 0;
}
if (CHECK_BIT(mask, i + 2) &&
(var_compare(
reinterpret_cast<string_key *>(_[i + 2].key)->key, _key->key,
(reinterpret_cast<string_key *>(_[i + 2].key))->length,
_key->length))) {
unset_hash(i + 2, false);
return 0;
}
if (CHECK_BIT(mask, i + 3) &&
(var_compare(
reinterpret_cast<string_key *>(_[i + 3].key)->key, _key->key,
(reinterpret_cast<string_key *>(_[i + 3].key))->length,
_key->length))) {
unset_hash(i + 3, false);
return 0;
}
}
if (CHECK_BIT(mask, 12) &&
(var_compare(reinterpret_cast<string_key *>(_[12].key)->key,
_key->key,
(reinterpret_cast<string_key *>(_[12].key))->length,
_key->length))) {
unset_hash(12, false);
return 0;
}
if (CHECK_BIT(mask, 13) &&
(var_compare(reinterpret_cast<string_key *>(_[13].key)->key,
_key->key,
(reinterpret_cast<string_key *>(_[13].key))->length,
_key->length))) {
unset_hash(13, false);
return 0;
}
}
} else {
if (mask != 0) {
for (int i = 0; i < 12; i += 4) {
if (CHECK_BIT(mask, i) && (_[i].key == key)) {
unset_hash(i, false);
return 0;
}
if (CHECK_BIT(mask, i + 1) && (_[i + 1].key == key)) {
unset_hash(i + 1, false);
return 0;
}
if (CHECK_BIT(mask, i + 2) && (_[i + 2].key == key)) {
unset_hash(i + 2, false);
return 0;
}
if (CHECK_BIT(mask, i + 3) && (_[i + 3].key == key)) {
unset_hash(i + 3, false);
return 0;
}
}
if (CHECK_BIT(mask, 12) && (_[12].key == key)) {
unset_hash(12, false);
return 0;
}
if (CHECK_BIT(mask, 13) && (_[13].key == key)) {
unset_hash(13, false);
return 0;
}
}
}
return -1;
}
int Insert_with_noflush(T key, Value_t value, uint8_t meta_hash, bool probe) {
auto slot = find_empty_slot();
/* this branch can be removed*/
assert(slot < kNumPairPerBucket);
if (slot == -1) {
std::cout << "Cannot find the empty slot, for key " << key << std::endl;
return -1;
}
_[slot].value = value;
_[slot].key = key;
set_hash(slot, meta_hash, probe);
return 0;
}
void Insert_displace(T key, Value_t value, uint8_t meta_hash, int slot,
bool probe) {
_[slot].value = value;
_[slot].key = key;
#ifdef PMEM
Allocator::Persist(&_[slot], sizeof(_Pair<T>));
#endif
set_hash(slot, meta_hash, probe);
}
void Insert_displace_with_noflush(T key, Value_t value, uint8_t meta_hash,
int slot, bool probe) {
_[slot].value = value;
_[slot].key = key;
set_hash(slot, meta_hash, probe);
}
/* Find the displacment element in this bucket*/
inline int Find_org_displacement() {
uint32_t mask = GET_INVERSE_MEMBER(bitmap);
if (mask == 0) {
return -1;
}
return __builtin_ctz(mask);
}
/*find element that it is in the probe*/
inline int Find_probe_displacement() {
uint32_t mask = GET_MEMBER(bitmap);
if (mask == 0) {
return -1;
}
return __builtin_ctz(mask);
}
inline void resetLock() { version_lock = 0; }
inline void resetOverflowFP() {
overflowBitmap = 0;
overflowIndex = 0;
overflowMember = 0;
overflowCount = 0;
clear_stash_check();
}
uint32_t version_lock;
uint32_t bitmap; // allocation bitmap + pointer bitmap + counter
uint8_t finger_array[18]; /*only use the first 14 bytes, can be accelerated by
SSE instruction,0-13 for finger, 14-17 for
overflowed*/
uint8_t overflowBitmap;
uint8_t overflowIndex;
uint8_t overflowMember; /*overflowmember indicates membership of the overflow
fingerprint*/
uint8_t overflowCount;
uint8_t unused[2];
_Pair<T> _[kNumPairPerBucket];
};
template <class T>
struct Table;
template <class T>
struct Directory {
typedef Table<T> *table_p;
uint32_t global_depth;
uint32_t version;
uint32_t depth_count;
table_p _[0];
Directory(size_t capacity, size_t _version) {
version = _version;
global_depth = static_cast<size_t>(log2(capacity));
depth_count = 0;
}
static void New(PMEMoid *dir, size_t capacity, size_t version) {
#ifdef PMEM
auto callback = [](PMEMobjpool *pool, void *ptr, void *arg) {
auto value_ptr = reinterpret_cast<std::tuple<size_t, size_t> *>(arg);
auto dir_ptr = reinterpret_cast<Directory *>(ptr);
dir_ptr->version = std::get<1>(*value_ptr);
dir_ptr->global_depth =
static_cast<size_t>(log2(std::get<0>(*value_ptr)));
size_t cap = std::get<0>(*value_ptr);
pmemobj_persist(pool, dir_ptr,
sizeof(Directory<T>) + sizeof(uint64_t) * cap);
return 0;
};
std::tuple callback_args = {capacity, version};
Allocator::Allocate(dir, kCacheLineSize,
sizeof(Directory<T>) + sizeof(table_p) * capacity,
callback, reinterpret_cast<void *>(&callback_args));
#else
Allocator::Allocate((void **)dir, kCacheLineSize, sizeof(Directory<T>));
new (*dir) Directory(capacity, version, tables);
#endif
}
};
/*thread local table allcoation pool*/
template <class T>
struct TlsTablePool {
static Table<T> *all_tables;
static PMEMoid p_all_tables;
static std::atomic<uint32_t> all_allocated;
static const uint32_t kAllTables = 327680;
static void AllocateMore() {
auto callback = [](PMEMobjpool *pool, void *ptr, void *arg) { return 0; };
std::pair callback_para(0, nullptr);
Allocator::Allocate(&p_all_tables, kCacheLineSize,
sizeof(Table<T>) * kAllTables, callback,
reinterpret_cast<void *>(&callback_para));
all_tables = reinterpret_cast<Table<T> *>(pmemobj_direct(p_all_tables));
memset((void *)all_tables, 0, sizeof(Table<T>) * kAllTables);
all_allocated = 0;
printf("MORE ");
}
TlsTablePool() {}
static void Initialize() { AllocateMore(); }
Table<T> *tables = nullptr;
static const uint32_t kTables = 128;
uint32_t allocated = kTables;
void TlsPrepare() {
retry:
uint32_t n = all_allocated.fetch_add(kTables);
if (n == kAllTables) {
AllocateMore();
abort();
goto retry;
}
tables = all_tables + n;
allocated = 0;
}
Table<T> *Get() {
if (allocated == kTables) {
TlsPrepare();
}
return &tables[allocated++];
}
};
template <class T>
std::atomic<uint32_t> TlsTablePool<T>::all_allocated(0);
template <class T>
Table<T> *TlsTablePool<T>::all_tables = nullptr;
template <class T>
PMEMoid TlsTablePool<T>::p_all_tables = OID_NULL;
/* the segment class*/
template <class T>
struct Table {
static void New(PMEMoid *tbl, size_t depth, PMEMoid pp) {
#ifdef PMEM
#ifdef PREALLOC
thread_local TlsTablePool<T> tls_pool;
auto ptr = tls_pool.Get();
ptr->local_depth = depth;
ptr->next = pp;
*tbl = pmemobj_oid(ptr);
#else
auto callback = [](PMEMobjpool *pool, void *ptr, void *arg) {
auto value_ptr = reinterpret_cast<std::pair<size_t, PMEMoid> *>(arg);
auto table_ptr = reinterpret_cast<Table<T> *>(ptr);
table_ptr->local_depth = value_ptr->first;
table_ptr->next = value_ptr->second;
table_ptr->state = -3; /*NEW*/
memset(&table_ptr->lock_bit, 0, sizeof(PMEMmutex) * 2);
int sumBucket = kNumBucket + stashBucket;
for (int i = 0; i < sumBucket; ++i) {
auto curr_bucket = table_ptr->bucket + i;
memset(curr_bucket, 0, 64);
}
pmemobj_persist(pool, table_ptr, sizeof(Table<T>));
return 0;
};
std::pair callback_para(depth, pp);
Allocator::Allocate(tbl, kCacheLineSize, sizeof(Table<T>), callback,
reinterpret_cast<void *>(&callback_para));
#endif
#else
Allocator::ZAllocate((void **)tbl, kCacheLineSize, sizeof(Table<T>));
(*tbl)->local_depth = depth;
(*tbl)->next = pp;
#endif
};
~Table(void) {}
bool Acquire_and_verify(size_t _pattern) {
bucket->get_lock();
if (pattern != _pattern) {
bucket->release_lock();
return false;
} else {
return true;
}
}
void Acquire_remaining_locks() {
for (int i = 1; i < kNumBucket; ++i) {
auto curr_bucket = bucket + i;
curr_bucket->get_lock();
}
}
void Release_all_locks() {
for (int i = 0; i < kNumBucket; ++i) {
auto curr_bucket = bucket + i;
curr_bucket->release_lock();
}
}
int Insert(T key, Value_t value, size_t key_hash, uint8_t meta_hash,
Directory<T> **);
void Insert4split(T key, Value_t value, size_t key_hash, uint8_t meta_hash);
void Insert4splitWithCheck(T key, Value_t value, size_t key_hash,
uint8_t meta_hash); /*with uniqueness check*/
void Insert4merge(T key, Value_t value, size_t key_hash, uint8_t meta_hash,
bool flag = false);
Table<T> *Split(size_t);
void HelpSplit(Table<T> *);
void Merge(Table<T> *, bool flag = false);
int Delete(T key, size_t key_hash, uint8_t meta_hash, Directory<T> **_dir);
int Next_displace(Bucket<T> *target, Bucket<T> *neighbor,
Bucket<T> *next_neighbor, T key, Value_t value,
uint8_t meta_hash) {
int displace_index = neighbor->Find_org_displacement();
if ((GET_COUNT(next_neighbor->bitmap) != kNumPairPerBucket) &&
(displace_index != -1)) {
next_neighbor->Insert(neighbor->_[displace_index].key,
neighbor->_[displace_index].value,
neighbor->finger_array[displace_index], true);
next_neighbor->release_lock();
#ifdef PMEM
Allocator::Persist(&next_neighbor->bitmap, sizeof(next_neighbor->bitmap));
#endif
neighbor->unset_hash(displace_index);
neighbor->Insert_displace(key, value, meta_hash, displace_index, true);
neighbor->release_lock();
#ifdef PMEM
Allocator::Persist(&neighbor->bitmap, sizeof(neighbor->bitmap));
#endif
target->release_lock();
#ifdef COUNTING
__sync_fetch_and_add(&number, 1);
#endif
return 0;
}
return -1;
}
int Prev_displace(Bucket<T> *target, Bucket<T> *prev_neighbor,
Bucket<T> *neighbor, T key, Value_t value,
uint8_t meta_hash) {
int displace_index = target->Find_probe_displacement();
if ((GET_COUNT(prev_neighbor->bitmap) != kNumPairPerBucket) &&
(displace_index != -1)) {
prev_neighbor->Insert(target->_[displace_index].key,
target->_[displace_index].value,
target->finger_array[displace_index], false);
prev_neighbor->release_lock();
#ifdef PMEM
Allocator::Persist(&prev_neighbor->bitmap, sizeof(prev_neighbor->bitmap));
#endif
target->unset_hash(displace_index);
target->Insert_displace(key, value, meta_hash, displace_index, false);
target->release_lock();
#ifdef PMEM
Allocator::Persist(&target->bitmap, sizeof(target->bitmap));
#endif
neighbor->release_lock();
#ifdef COUNTING
__sync_fetch_and_add(&number, 1);
#endif
return 0;
}
return -1;
}
int Stash_insert(Bucket<T> *target, Bucket<T> *neighbor, T key, Value_t value,
uint8_t meta_hash, int stash_pos) {
for (int i = 0; i < stashBucket; ++i) {
Bucket<T> *curr_bucket =
bucket + kNumBucket + ((stash_pos + i) & stashMask);
if (GET_COUNT(curr_bucket->bitmap) < kNumPairPerBucket) {
curr_bucket->Insert(key, value, meta_hash, false);
#ifdef PMEM
Allocator::Persist(&curr_bucket->bitmap, sizeof(curr_bucket->bitmap));
#endif
target->set_indicator(meta_hash, neighbor, (stash_pos + i) & stashMask);
#ifdef COUNTING
__sync_fetch_and_add(&number, 1);
#endif
return 0;
}
}
return -1;
}
void recoverMetadata() {
Bucket<T> *curr_bucket, *neighbor_bucket;
/*reset the lock and overflow meta-data*/
uint64_t knumber = 0;
for (int i = 0; i < kNumBucket; ++i) {
curr_bucket = bucket + i;
curr_bucket->resetLock();
curr_bucket->resetOverflowFP();
neighbor_bucket = bucket + ((i + 1) & bucketMask);
for (int j = 0; j < kNumPairPerBucket; ++j) {
int mask = curr_bucket->get_current_mask();
if (CHECK_BIT(mask, j) && (neighbor_bucket->check_and_get(
curr_bucket->finger_array[j],
curr_bucket->_[j].key, true) != NONE)) {
curr_bucket->unset_hash(j);
}
}
#ifdef COUNTING
knumber += __builtin_popcount(GET_BITMAP(curr_bucket->bitmap));
#endif
}
/*scan the stash buckets and re-insert the overflow FP to initial buckets*/
for (int i = 0; i < stashBucket; ++i) {
curr_bucket = bucket + kNumBucket + i;
curr_bucket->resetLock();
#ifdef COUNTING
knumber += __builtin_popcount(GET_BITMAP(curr_bucket->bitmap));
#endif
uint64_t key_hash;
auto mask = GET_BITMAP(curr_bucket->bitmap);
for (int j = 0; j < kNumPairPerBucket; ++j) {
if (CHECK_BIT(mask, j)) {
if constexpr (std::is_pointer_v<T>) {
auto curr_key = curr_bucket->_[j].key;
key_hash = h(curr_key->key, curr_key->length);
} else {
key_hash = h(&(curr_bucket->_[j].key), sizeof(Key_t));
}
/*compute the initial bucket*/
auto bucket_ix = BUCKET_INDEX(key_hash);
auto meta_hash = ((uint8_t)(key_hash & kMask)); // the last 8 bits
auto org_bucket = bucket + bucket_ix;
auto neighbor_bucket = bucket + ((bucket_ix + 1) & bucketMask);
org_bucket->set_indicator(meta_hash, neighbor_bucket, i);
}
}
}
#ifdef COUNTING
number = knumber;
#endif
/* No need to flush these meta-data because persistent or not does not
* influence the correctness*/
}
char dummy[48];
Bucket<T> bucket[kNumBucket + stashBucket];
size_t local_depth;
size_t pattern;
int number;
PMEMoid next;
int state; /*-1 means this bucket is merging, -2 means this bucket is
splitting (SPLITTING), 0 meanning normal bucket, -3 means new
bucket (NEW)*/
PMEMmutex
lock_bit; /* for the synchronization of the lazy recovery in one segment*/
};
/* it needs to verify whether this bucket has been deleted...*/
template <class T>
int Table<T>::Insert(T key, Value_t value, size_t key_hash, uint8_t meta_hash,
Directory<T> **_dir) {
RETRY:
/*we need to first do the locking and then do the verify*/
auto y = BUCKET_INDEX(key_hash);
Bucket<T> *target = bucket + y;
Bucket<T> *neighbor = bucket + ((y + 1) & bucketMask);
target->get_lock();
if (!neighbor->try_get_lock()) {
target->release_lock();
return -2;
}
auto old_sa = *_dir;
auto x = (key_hash >> (8 * sizeof(key_hash) - old_sa->global_depth));
if (reinterpret_cast<Table<T> *>(reinterpret_cast<uint64_t>(old_sa->_[x]) &
tailMask) != this) {
neighbor->release_lock();
target->release_lock();
return -2;
}
/*unique check, needs to check 2 hash table*/
auto ret =
target->unique_check(meta_hash, key, neighbor, bucket + kNumBucket);
if (ret == -1) {
neighbor->release_lock();
target->release_lock();
return -3; /* duplicate insert*/
}
if (((GET_COUNT(target->bitmap)) == kNumPairPerBucket) &&
((GET_COUNT(neighbor->bitmap)) == kNumPairPerBucket)) {
Bucket<T> *next_neighbor = bucket + ((y + 2) & bucketMask);
// Next displacement
if (!next_neighbor->try_get_lock()) {
neighbor->release_lock();
target->release_lock();
return -2;
}
auto ret =
Next_displace(target, neighbor, next_neighbor, key, value, meta_hash);
if (ret == 0) {
return 0;
}
next_neighbor->release_lock();
Bucket<T> *prev_neighbor;
int prev_index;
if (y == 0) {
prev_neighbor = bucket + kNumBucket - 1;
prev_index = kNumBucket - 1;
} else {
prev_neighbor = bucket + y - 1;
prev_index = y - 1;
}
if (!prev_neighbor->try_get_lock()) {
target->release_lock();
neighbor->release_lock();
return -2;
}
ret = Prev_displace(target, prev_neighbor, neighbor, key, value, meta_hash);
if (ret == 0) {
return 0;
}
Bucket<T> *stash = bucket + kNumBucket;
if (!stash->try_get_lock()) {
neighbor->release_lock();
target->release_lock();
prev_neighbor->release_lock();
return -2;
}
ret = Stash_insert(target, neighbor, key, value, meta_hash, y & stashMask);
//if(ret==-1)表示这个stash也插不进去了
if(ret==-1) {
//在insert中随便删一个数据,然后再进行插入
if(GET_COUNT(target->bitmap)>14||GET_COUNT(target->bitmap)==0) {
int error=1;
}
target->delete_with_index(0);
target->insert_with_slot(0,key,value,meta_hash,false);
}
stash->release_lock();
neighbor->release_lock();
target->release_lock();
prev_neighbor->release_lock();
return ret;
}
/* the fp+bitmap are persisted after releasing the lock of one bucket but
* still guarantee the correctness of avoidance of "use-before-flush" since
* the search operation could only proceed only if both target bucket and
* probe bucket are released
*/
if (GET_COUNT(target->bitmap) <= GET_COUNT(neighbor->bitmap)) {
target->Insert(key, value, meta_hash, false);
target->release_lock();
#ifdef PMEM
Allocator::Persist(&target->bitmap, sizeof(target->bitmap));
#endif
neighbor->release_lock();
} else {
neighbor->Insert(key, value, meta_hash, true);
neighbor->release_lock();
#ifdef PMEM
Allocator::Persist(&neighbor->bitmap, sizeof(neighbor->bitmap));
#endif
target->release_lock();
}
#ifdef COUNTING
__sync_fetch_and_add(&number, 1);
#endif
return 0;
}
template <class T>
void Table<T>::Insert4splitWithCheck(T key, Value_t value, size_t key_hash,
uint8_t meta_hash) {
auto y = BUCKET_INDEX(key_hash);
Bucket<T> *target = bucket + y;
Bucket<T> *neighbor = bucket + ((y + 1) & bucketMask);
auto ret =
target->unique_check(meta_hash, key, neighbor, bucket + kNumBucket);
if (ret == -1) return;
Bucket<T> *insert_target;
bool probe = false;
if (GET_COUNT(target->bitmap) <= GET_COUNT(neighbor->bitmap)) {
insert_target = target;
} else {
insert_target = neighbor;
probe = true;
}
/*some bucket may be overflowed?*/
if (GET_COUNT(insert_target->bitmap) < kNumPairPerBucket) {
insert_target->_[GET_COUNT(insert_target->bitmap)].key = key;
insert_target->_[GET_COUNT(insert_target->bitmap)].value = value;
insert_target->set_hash(GET_COUNT(insert_target->bitmap), meta_hash, probe);
#ifdef COUNTING
++number;
#endif
} else {
/*do the displacement or insertion in the stash*/
Bucket<T> *next_neighbor = bucket + ((y + 2) & bucketMask);
int displace_index;
displace_index = neighbor->Find_org_displacement();
if (((GET_COUNT(next_neighbor->bitmap)) != kNumPairPerBucket) &&
(displace_index != -1)) {
next_neighbor->Insert_with_noflush(
neighbor->_[displace_index].key, neighbor->_[displace_index].value,
neighbor->finger_array[displace_index], true);
neighbor->unset_hash(displace_index);
neighbor->Insert_displace_with_noflush(key, value, meta_hash,
displace_index, true);
#ifdef COUNTING
++number;
#endif
return;
}
Bucket<T> *prev_neighbor;
int prev_index;
if (y == 0) {
prev_neighbor = bucket + kNumBucket - 1;
prev_index = kNumBucket - 1;
} else {
prev_neighbor = bucket + y - 1;
prev_index = y - 1;
}
displace_index = target->Find_probe_displacement();
if (((GET_COUNT(prev_neighbor->bitmap)) != kNumPairPerBucket) &&
(displace_index != -1)) {
prev_neighbor->Insert_with_noflush(
target->_[displace_index].key, target->_[displace_index].value,
target->finger_array[displace_index], false);
target->unset_hash(displace_index);
target->Insert_displace_with_noflush(key, value, meta_hash,
displace_index, false);
#ifdef COUNTING
++number;
#endif
return;
}
Stash_insert(target, neighbor, key, value, meta_hash, y & stashMask);
}
}
/*the insert needs to be perfectly balanced, not destory the power of balance*/
template <class T>
void Table<T>::Insert4split(T key, Value_t value, size_t key_hash,
uint8_t meta_hash) {
auto y = BUCKET_INDEX(key_hash);
Bucket<T> *target = bucket + y;
Bucket<T> *neighbor = bucket + ((y + 1) & bucketMask);
Bucket<T> *insert_target;
bool probe = false;
if (GET_COUNT(target->bitmap) <= GET_COUNT(neighbor->bitmap)) {
insert_target = target;
} else {
insert_target = neighbor;
probe = true;
}
/*some bucket may be overflowed?*/
if (GET_COUNT(insert_target->bitmap) < kNumPairPerBucket) {
insert_target->_[GET_COUNT(insert_target->bitmap)].key = key;
insert_target->_[GET_COUNT(insert_target->bitmap)].value = value;
insert_target->set_hash(GET_COUNT(insert_target->bitmap), meta_hash, probe);
#ifdef COUNTING
++number;
#endif
} else {
/*do the displacement or insertion in the stash*/
Bucket<T> *next_neighbor = bucket + ((y + 2) & bucketMask);
int displace_index;
displace_index = neighbor->Find_org_displacement();
if (((GET_COUNT(next_neighbor->bitmap)) != kNumPairPerBucket) &&
(displace_index != -1)) {
next_neighbor->Insert_with_noflush(
neighbor->_[displace_index].key, neighbor->_[displace_index].value,
neighbor->finger_array[displace_index], true);
neighbor->unset_hash(displace_index);
neighbor->Insert_displace_with_noflush(key, value, meta_hash,
displace_index, true);
#ifdef COUNTING
++number;
#endif
return;
}
Bucket<T> *prev_neighbor;
int prev_index;
if (y == 0) {
prev_neighbor = bucket + kNumBucket - 1;
prev_index = kNumBucket - 1;
} else {
prev_neighbor = bucket + y - 1;
prev_index = y - 1;
}
displace_index = target->Find_probe_displacement();
if (((GET_COUNT(prev_neighbor->bitmap)) != kNumPairPerBucket) &&
(displace_index != -1)) {
prev_neighbor->Insert_with_noflush(
target->_[displace_index].key, target->_[displace_index].value,
target->finger_array[displace_index], false);
target->unset_hash(displace_index);
target->Insert_displace_with_noflush(key, value, meta_hash,
displace_index, false);
#ifdef COUNTING
++number;
#endif
return;
}
Stash_insert(target, neighbor, key, value, meta_hash, y & stashMask);
}
}
template <class T>
void Table<T>::Insert4merge(T key, Value_t value, size_t key_hash,
uint8_t meta_hash, bool unique_check_flag) {
auto y = BUCKET_INDEX(key_hash);
Bucket<T> *target = bucket + y;
Bucket<T> *neighbor = bucket + ((y + 1) & bucketMask);
if (unique_check_flag) {
auto ret =
target->unique_check(meta_hash, key, neighbor, bucket + kNumBucket);
if (ret == -1) return;
}
Bucket<T> *insert_target;
bool probe = false;
if (GET_COUNT(target->bitmap) <= GET_COUNT(neighbor->bitmap)) {
insert_target = target;
} else {
insert_target = neighbor;
probe = true;
}
/*some bucket may be overflowed?*/
if (GET_COUNT(insert_target->bitmap) < kNumPairPerBucket) {
insert_target->Insert(key, value, meta_hash, probe);
#ifdef COUNTING
++number;
#endif
} else {
/*do the displacement or insertion in the stash*/
Bucket<T> *next_neighbor = bucket + ((y + 2) & bucketMask);
int displace_index;
displace_index = neighbor->Find_org_displacement();
if (((GET_COUNT(next_neighbor->bitmap)) != kNumPairPerBucket) &&
(displace_index != -1)) {
next_neighbor->Insert_with_noflush(
neighbor->_[displace_index].key, neighbor->_[displace_index].value,
neighbor->finger_array[displace_index], true);
neighbor->unset_hash(displace_index);
neighbor->Insert_displace_with_noflush(key, value, meta_hash,
displace_index, true);
#ifdef COUNTING
++number;
#endif
return;
}
Bucket<T> *prev_neighbor;
int prev_index;
if (y == 0) {
prev_neighbor = bucket + kNumBucket - 1;
prev_index = kNumBucket - 1;
} else {
prev_neighbor = bucket + y - 1;
prev_index = y - 1;
}
displace_index = target->Find_probe_displacement();
if (((GET_COUNT(prev_neighbor->bitmap)) != kNumPairPerBucket) &&
(displace_index != -1)) {
prev_neighbor->Insert_with_noflush(
target->_[displace_index].key, target->_[displace_index].value,
target->finger_array[displace_index], false);
target->unset_hash(displace_index);
target->Insert_displace_with_noflush(key, value, meta_hash,
displace_index, false);
#ifdef COUNTING
++number;
#endif
return;
}
Stash_insert(target, neighbor, key, value, meta_hash, y & stashMask);
}
}
template <class T>
void Table<T>::HelpSplit(Table<T> *next_table) {
size_t new_pattern = (pattern << 1) + 1;
size_t old_pattern = pattern << 1;
size_t key_hash;
uint32_t invalid_array[kNumBucket + stashBucket];
for (int i = 0; i < kNumBucket; ++i) {
auto *curr_bucket = bucket + i;
auto mask = GET_BITMAP(curr_bucket->bitmap);
uint32_t invalid_mask = 0;
for (int j = 0; j < kNumPairPerBucket; ++j) {
if (CHECK_BIT(mask, j)) {
if constexpr (std::is_pointer_v<T>) {
auto curr_key = curr_bucket->_[j].key;
key_hash = h(curr_key->key, curr_key->length);
} else {
key_hash = h(&(curr_bucket->_[j].key), sizeof(Key_t));
}
if ((key_hash >> (64 - local_depth - 1)) == new_pattern) {
invalid_mask = invalid_mask | (1 << j);
next_table->Insert4splitWithCheck(curr_bucket->_[j].key,
curr_bucket->_[j].value, key_hash,
curr_bucket->finger_array[j]);
#ifdef COUNTING
number--;
#endif
}
}
}
invalid_array[i] = invalid_mask;
}
for (int i = 0; i < stashBucket; ++i) {
auto *curr_bucket = bucket + kNumBucket + i;
auto mask = GET_BITMAP(curr_bucket->bitmap);
uint32_t invalid_mask = 0;
for (int j = 0; j < kNumPairPerBucket; ++j) {
if (CHECK_BIT(mask, j)) {
if constexpr (std::is_pointer_v<T>) {
auto curr_key = curr_bucket->_[j].key;
key_hash = h(curr_key->key, curr_key->length);
} else {
key_hash = h(&(curr_bucket->_[j].key), sizeof(Key_t));
}
if ((key_hash >> (64 - local_depth - 1)) == new_pattern) {
invalid_mask = invalid_mask | (1 << j);
next_table->Insert4splitWithCheck(curr_bucket->_[j].key,
curr_bucket->_[j].value, key_hash,
curr_bucket->finger_array[j]);
auto bucket_ix = BUCKET_INDEX(key_hash);
auto org_bucket = bucket + bucket_ix;
auto neighbor_bucket = bucket + ((bucket_ix + 1) & bucketMask);
org_bucket->unset_indicator(curr_bucket->finger_array[j],
neighbor_bucket, curr_bucket->_[j].key,
i);
#ifdef COUNTING
number--;
#endif
}
}
}
invalid_array[kNumBucket + i] = invalid_mask;
}
next_table->pattern = new_pattern;
Allocator::Persist(&next_table->pattern, sizeof(next_table->pattern));
pattern = old_pattern;
Allocator::Persist(&pattern, sizeof(pattern));
#ifdef PMEM
Allocator::Persist(next_table, sizeof(Table));
size_t sumBucket = kNumBucket + stashBucket;
for (int i = 0; i < sumBucket; ++i) {
auto curr_bucket = bucket + i;
curr_bucket->bitmap = curr_bucket->bitmap & (~(invalid_array[i] << 18)) &
(~(invalid_array[i] << 4));
uint32_t count = __builtin_popcount(invalid_array[i]);
curr_bucket->bitmap = curr_bucket->bitmap - count;
}
Allocator::Persist(this, sizeof(Table));
#endif
}
template <class T>
Table<T> *Table<T>::Split(size_t _key_hash) {
size_t new_pattern = (pattern << 1) + 1;
size_t old_pattern = pattern << 1;
for (int i = 1; i < kNumBucket; ++i) {
(bucket + i)->get_lock();
}
state = -2; /*means the start of the split process*/
Allocator::Persist(&state, sizeof(state));
Table<T>::New(&next, local_depth + 1, next);
Table<T> *next_table = reinterpret_cast<Table<T> *>(pmemobj_direct(next));
next_table->state = -2;
Allocator::Persist(&next_table->state, sizeof(next_table->state));
next_table->bucket
->get_lock(); /* get the first lock of the new bucket to avoid it
is operated(split or merge) by other threads*/
size_t key_hash;
uint32_t invalid_array[kNumBucket + stashBucket];
for (int i = 0; i < kNumBucket; ++i) {
auto *curr_bucket = bucket + i;
auto mask = GET_BITMAP(curr_bucket->bitmap);
uint32_t invalid_mask = 0;
for (int j = 0; j < kNumPairPerBucket; ++j) {
if (CHECK_BIT(mask, j)) {
if constexpr (std::is_pointer_v<T>) {
auto curr_key = curr_bucket->_[j].key;
key_hash = h(curr_key->key, curr_key->length);
} else {
key_hash = h(&(curr_bucket->_[j].key), sizeof(Key_t));
}
if ((key_hash >> (64 - local_depth - 1)) == new_pattern) {
invalid_mask = invalid_mask | (1 << j);
next_table->Insert4split(
curr_bucket->_[j].key, curr_bucket->_[j].value, key_hash,
curr_bucket->finger_array[j]); /*this shceme may destory the
balanced segment*/
// curr_bucket->unset_hash(j);
#ifdef COUNTING
number--;
#endif
}
}
}
invalid_array[i] = invalid_mask;
}
for (int i = 0; i < stashBucket; ++i) {
auto *curr_bucket = bucket + kNumBucket + i;
auto mask = GET_BITMAP(curr_bucket->bitmap);
uint32_t invalid_mask = 0;
for (int j = 0; j < kNumPairPerBucket; ++j) {
if (CHECK_BIT(mask, j)) {
if constexpr (std::is_pointer_v<T>) {
auto curr_key = curr_bucket->_[j].key;
key_hash = h(curr_key->key, curr_key->length);
} else {
key_hash = h(&(curr_bucket->_[j].key), sizeof(Key_t));
}
if ((key_hash >> (64 - local_depth - 1)) == new_pattern) {
invalid_mask = invalid_mask | (1 << j);
next_table->Insert4split(
curr_bucket->_[j].key, curr_bucket->_[j].value, key_hash,
curr_bucket->finger_array[j]); /*this shceme may destory the
balanced segment*/
auto bucket_ix = BUCKET_INDEX(key_hash);
auto org_bucket = bucket + bucket_ix;
auto neighbor_bucket = bucket + ((bucket_ix + 1) & bucketMask);
org_bucket->unset_indicator(curr_bucket->finger_array[j],
neighbor_bucket, curr_bucket->_[j].key,
i);
#ifdef COUNTING
number--;
#endif
}
}
}
invalid_array[kNumBucket + i] = invalid_mask;
}
next_table->pattern = new_pattern;
Allocator::Persist(&next_table->pattern, sizeof(next_table->pattern));
pattern = old_pattern;
Allocator::Persist(&pattern, sizeof(pattern));
#ifdef PMEM
Allocator::Persist(next_table, sizeof(Table));
size_t sumBucket = kNumBucket + stashBucket;
for (int i = 0; i < sumBucket; ++i) {
auto curr_bucket = bucket + i;
curr_bucket->bitmap = curr_bucket->bitmap & (~(invalid_array[i] << 18)) &
(~(invalid_array[i] << 4));
uint32_t count = __builtin_popcount(invalid_array[i]);
curr_bucket->bitmap = curr_bucket->bitmap - count;
}
Allocator::Persist(this, sizeof(Table));
#endif
return next_table;
}
template <class T>
void Table<T>::Merge(Table<T> *neighbor, bool unique_check_flag) {
/*Restore the split/merge procedure*/
if (unique_check_flag) {
size_t key_hash;
for (int i = 0; i < kNumBucket; ++i) {
auto *curr_bucket = neighbor->bucket + i;
auto mask = GET_BITMAP(curr_bucket->bitmap);
for (int j = 0; j < kNumPairPerBucket; ++j) {
if (CHECK_BIT(mask, j)) {
if constexpr (std::is_pointer_v<T>) {
auto curr_key = curr_bucket->_[j].key;
key_hash = h(curr_key->key, curr_key->length);
} else {
key_hash = h(&(curr_bucket->_[j].key), sizeof(Key_t));
}
Insert4merge(curr_bucket->_[j].key, curr_bucket->_[j].value, key_hash,
curr_bucket->finger_array[j],
true); /*this shceme may destory
the balanced segment*/
}
}
}
for (int i = 0; i < stashBucket; ++i) {
auto *curr_bucket = neighbor->bucket + kNumBucket + i;
auto mask = GET_BITMAP(curr_bucket->bitmap);
for (int j = 0; j < kNumPairPerBucket; ++j) {
if (CHECK_BIT(mask, j)) {
if constexpr (std::is_pointer_v<T>) {
auto curr_key = curr_bucket->_[j].key;
key_hash = h(curr_key->key, curr_key->length);
} else {
key_hash = h(&(curr_bucket->_[j].key), sizeof(Key_t));
}
Insert4merge(curr_bucket->_[j].key, curr_bucket->_[j].value, key_hash,
curr_bucket->finger_array[j]); /*this shceme may destory
the balanced segment*/
}
}
}
} else {
size_t key_hash;
for (int i = 0; i < kNumBucket; ++i) {
auto *curr_bucket = neighbor->bucket + i;
auto mask = GET_BITMAP(curr_bucket->bitmap);
for (int j = 0; j < kNumPairPerBucket; ++j) {
if (CHECK_BIT(mask, j)) {
if constexpr (std::is_pointer_v<T>) {
auto curr_key = curr_bucket->_[j].key;
key_hash = h(curr_key->key, curr_key->length);
} else {
key_hash = h(&(curr_bucket->_[j].key), sizeof(Key_t));
}
Insert4merge(curr_bucket->_[j].key, curr_bucket->_[j].value, key_hash,
curr_bucket->finger_array[j]); /*this shceme may destory
the balanced segment*/
}
}
}
/*split the stash bucket, the stash must be full, right?*/
for (int i = 0; i < stashBucket; ++i) {
auto *curr_bucket = neighbor->bucket + kNumBucket + i;
auto mask = GET_BITMAP(curr_bucket->bitmap);
for (int j = 0; j < kNumPairPerBucket; ++j) {
if (CHECK_BIT(mask, j)) {
if constexpr (std::is_pointer_v<T>) {
auto curr_key = curr_bucket->_[j].key;
key_hash = h(curr_key->key, curr_key->length);
} else {
key_hash = h(&(curr_bucket->_[j].key), sizeof(Key_t));
}
Insert4merge(curr_bucket->_[j].key, curr_bucket->_[j].value, key_hash,
curr_bucket->finger_array[j]); /*this shceme may destory
the balanced segment*/
}
}
}
}
}
template <class T>
class Finger_EH : public Hash<T> {
public:
Finger_EH(void);
Finger_EH(size_t, PMEMobjpool *_pool);
~Finger_EH(void);
inline int Insert(T key, Value_t value);
int Insert(T key, Value_t value, bool);
inline bool Delete(T);
bool Delete(T, bool);
inline Value_t Get(T);
Value_t Get(T key, bool is_in_epoch);
void TryMerge(uint64_t);
void Directory_Doubling(int x, Table<T> *new_b, Table<T> *old_b);
void Directory_Merge_Update(Directory<T> *_sa, uint64_t key_hash,
Table<T> *left_seg);
void Directory_Update(Directory<T> *_sa, int x, Table<T> *new_b,
Table<T> *old_b);
void Halve_Directory();
int FindAnyway(T key);
void ShutDown() {
clean = true;
Allocator::Persist(&clean, sizeof(clean));
}
void getNumber() {
std::cout << "The size of the bucket is " << sizeof(struct Bucket<T>) << std::endl;
size_t _count = 0;
size_t seg_count = 0;
Directory<T> *seg = dir;
Table<T> **dir_entry = seg->_;
Table<T> *ss;
auto global_depth = seg->global_depth;
size_t depth_diff;
int capacity = pow(2, global_depth);
for (int i = 0; i < capacity;) {
ss = reinterpret_cast<Table<T> *>(
reinterpret_cast<uint64_t>(dir_entry[i]) & tailMask);
depth_diff = global_depth - ss->local_depth;
_count += ss->number;
seg_count++;
i += pow(2, depth_diff);
}
ss = reinterpret_cast<Table<T> *>(reinterpret_cast<uint64_t>(dir_entry[0]) &
tailMask);
uint64_t verify_seg_count = 1;
while (!OID_IS_NULL(ss->next)) {
verify_seg_count++;
ss = reinterpret_cast<Table<T> *>(pmemobj_direct(ss->next));
}
std::cout << "seg_count = " << seg_count << std::endl;
std::cout << "verify_seg_count = " << verify_seg_count << std::endl;
#ifdef COUNTING
std::cout << "#items = " << _count << std::endl;
std::cout << "load_factor = " <<
(double)_count / (seg_count * kNumPairPerBucket * (kNumBucket + 2)) << std::endl;
std::cout << "Raw_Space: ",
(double)(_count * 16) / (seg_count * sizeof(Table<T>)) << std::endl;
#endif
}
void recoverTable(Table<T> **target_table, size_t, size_t, Directory<T> *);
void Recovery();
inline int Test_Directory_Lock_Set(void) {
uint32_t v = __atomic_load_n(&lock, __ATOMIC_ACQUIRE);
return v & lockSet;
}
inline bool try_get_directory_read_lock(){
uint32_t v = __atomic_load_n(&lock, __ATOMIC_ACQUIRE);
uint32_t old_value = v & lockMask;
auto new_value = ((v & lockMask) + 1) & lockMask;
return CAS(&lock, &old_value, new_value);
}
inline void release_directory_read_lock(){
SUB(&lock, 1);
}
void Lock_Directory(){
uint32_t v = __atomic_load_n(&lock, __ATOMIC_ACQUIRE);
uint32_t old_value = v & lockMask;
uint32_t new_value = old_value | lockSet;
while (!CAS(&lock, &old_value, new_value)) {
old_value = old_value & lockMask;
new_value = old_value | lockSet;
}
//wait until the readers all exit the critical section
v = __atomic_load_n(&lock, __ATOMIC_ACQUIRE);
while(v & lockMask){
v = __atomic_load_n(&lock, __ATOMIC_ACQUIRE);
}
}
// just set the lock as 0
void Unlock_Directory(){
__atomic_store_n(&lock, 0, __ATOMIC_RELEASE);
}
Directory<T> *dir;
uint32_t lock; // the MSB is the lock bit; remaining bits are used as the counter
uint64_t
crash_version; /*when the crash version equals to 0Xff => set the crash
version as 0, set the version of all entries as 1*/
bool clean;
PMEMobjpool *pool_addr;
/* directory allocation will write to here first,
* in oder to perform safe directory allocation
* */
PMEMoid back_dir;
};
template <class T>
Finger_EH<T>::Finger_EH(size_t initCap, PMEMobjpool *_pool) {
pool_addr = _pool;
Directory<T>::New(&back_dir, initCap, 0);
dir = reinterpret_cast<Directory<T> *>(pmemobj_direct(back_dir));
back_dir = OID_NULL;
lock = 0;
crash_version = 0;
clean = false;
PMEMoid ptr;
/*FIXME: make the process of initialization crash consistent*/
Table<T>::New(&ptr, dir->global_depth, OID_NULL);
dir->_[initCap - 1] = (Table<T> *)pmemobj_direct(ptr);
dir->_[initCap - 1]->pattern = initCap - 1;
dir->_[initCap - 1]->state = 0;
/* Initilize the Directory*/
for (int i = initCap - 2; i >= 0; --i) {
Table<T>::New(&ptr, dir->global_depth, ptr);
dir->_[i] = (Table<T> *)pmemobj_direct(ptr);
dir->_[i]->pattern = i;
dir->_[i]->state = 0;
}
dir->depth_count = initCap;
}
template <class T>
Finger_EH<T>::Finger_EH() {
std::cout << "Reinitialize up" << std::endl;
}
template <class T>
Finger_EH<T>::~Finger_EH(void) {
// TO-DO
}
template <class T>
void Finger_EH<T>::Halve_Directory() {
std::cout << "Begin::Directory_Halving towards " << dir->global_depth << std::endl;
auto d = dir->_;
Directory<T> *new_dir;
#ifdef PMEM
Directory<T>::New(&back_dir, pow(2, dir->global_depth - 1), dir->version + 1);
new_dir = reinterpret_cast<Directory<T> *>(pmemobj_direct(back_dir));
#else
Directory<T>::New(&new_dir, pow(2, dir->global_depth - 1), dir->version + 1);
#endif
auto _dir = new_dir->_;
new_dir->depth_count = 0;
auto capacity = pow(2, new_dir->global_depth);
bool skip = false;
for (int i = 0; i < capacity; ++i) {
_dir[i] = d[2 * i];
assert(d[2 * i] == d[2 * i + 1]);
if (!skip) {
if ((_dir[i]->local_depth == (dir->global_depth - 1)) &&
(_dir[i]->state != -2)) {
if (_dir[i]->state != -1) {
new_dir->depth_count += 1;
} else {
skip = true;
}
}
} else {
skip = false;
}
}
#ifdef PMEM
Allocator::Persist(new_dir,
sizeof(Directory<T>) + sizeof(uint64_t) * capacity);
auto reserve_item = Allocator::ReserveItem();
TX_BEGIN(pool_addr) {
pmemobj_tx_add_range_direct(reserve_item, sizeof(*reserve_item));
pmemobj_tx_add_range_direct(&dir, sizeof(dir));
pmemobj_tx_add_range_direct(&back_dir, sizeof(back_dir));
Allocator::Free(reserve_item, dir);
dir = new_dir;
back_dir = OID_NULL;
}
TX_ONABORT {
std::cout << "TXN fails during halvling directory" << std::endl;
}
TX_END
#else
dir = new_dir;
#endif
std::cout << "End::Directory_Halving towards " << dir->global_depth << std::endl;
}
template <class T>
void Finger_EH<T>::Directory_Doubling(int x, Table<T> *new_b, Table<T> *old_b) {
Table<T> **d = dir->_;
auto global_depth = dir->global_depth;
std::cout << "Directory_Doubling towards " << global_depth + 1 << std::endl;
auto capacity = pow(2, global_depth);
Directory<T>::New(&back_dir, 2 * capacity, dir->version + 1);
Directory<T> *new_sa =
reinterpret_cast<Directory<T> *>(pmemobj_direct(back_dir));
auto dd = new_sa->_;
for (unsigned i = 0; i < capacity; ++i) {
dd[2 * i] = d[i];
dd[2 * i + 1] = d[i];
}
dd[2 * x + 1] = reinterpret_cast<Table<T> *>(
reinterpret_cast<uint64_t>(new_b) | crash_version);
new_sa->depth_count = 2;
#ifdef PMEM
Allocator::Persist(new_sa,
sizeof(Directory<T>) + sizeof(uint64_t) * 2 * capacity);
auto reserve_item = Allocator::ReserveItem();
++merge_time;
auto old_dir = dir;
TX_BEGIN(pool_addr) {
pmemobj_tx_add_range_direct(reserve_item, sizeof(*reserve_item));
pmemobj_tx_add_range_direct(&dir, sizeof(dir));
pmemobj_tx_add_range_direct(&back_dir, sizeof(back_dir));
pmemobj_tx_add_range_direct(&old_b->local_depth,
sizeof(old_b->local_depth));
old_b->local_depth += 1;
Allocator::Free(reserve_item, dir);
/*Swap the memory addr between new directory and old directory*/
dir = new_sa;
back_dir = OID_NULL;
}
TX_ONABORT {
std::cout << "TXN fails during doubling directory" << std::endl;
}
TX_END
#else
dir = new_sa;
#endif
}
template <class T>
void Finger_EH<T>::Directory_Update(Directory<T> *_sa, int x, Table<T> *new_b,
Table<T> *old_b) {
Table<T> **dir_entry = _sa->_;
auto global_depth = _sa->global_depth;
unsigned depth_diff = global_depth - new_b->local_depth;
if (depth_diff == 0) {
if (x % 2 == 0) {
TX_BEGIN(pool_addr) {
pmemobj_tx_add_range_direct(&dir_entry[x + 1], sizeof(Table<T> *));
pmemobj_tx_add_range_direct(&old_b->local_depth,
sizeof(old_b->local_depth));
dir_entry[x + 1] = reinterpret_cast<Table<T> *>(
reinterpret_cast<uint64_t>(new_b) | crash_version);
old_b->local_depth += 1;
}
TX_ONABORT { std::cout << "Error for update txn" << std::endl; }
TX_END
} else {
TX_BEGIN(pool_addr) {
pmemobj_tx_add_range_direct(&dir_entry[x], sizeof(Table<T> *));
pmemobj_tx_add_range_direct(&old_b->local_depth,
sizeof(old_b->local_depth));
dir_entry[x] = reinterpret_cast<Table<T> *>(
reinterpret_cast<uint64_t>(new_b) | crash_version);
old_b->local_depth += 1;
}
TX_ONABORT { std::cout << "Error for update txn" << std::endl; }
TX_END
}
#ifdef COUNTING
__sync_fetch_and_add(&_sa->depth_count, 2);
#endif
} else {
int chunk_size = pow(2, global_depth - (new_b->local_depth - 1));
x = x - (x % chunk_size);
int base = chunk_size / 2;
TX_BEGIN(pool_addr) {
pmemobj_tx_add_range_direct(&dir_entry[x + base],
sizeof(Table<T> *) * base);
pmemobj_tx_add_range_direct(&old_b->local_depth,
sizeof(old_b->local_depth));
for (int i = base - 1; i >= 0; --i) {
dir_entry[x + base + i] = reinterpret_cast<Table<T> *>(
reinterpret_cast<uint64_t>(new_b) | crash_version);
}
old_b->local_depth += 1;
}
TX_ONABORT { std::cout << "Error for update txn" << std::endl; }
TX_END
}
// printf("Done!directory update for %d\n", x);
}
template <class T>
void Finger_EH<T>::Directory_Merge_Update(Directory<T> *_sa, uint64_t key_hash,
Table<T> *left_seg) {
Table<T> **dir_entry = _sa->_;
auto global_depth = _sa->global_depth;
auto x = (key_hash >> (8 * sizeof(key_hash) - global_depth));
uint64_t chunk_size = pow(2, global_depth - (left_seg->local_depth));
auto left = x - (x % chunk_size);
auto right = left + chunk_size / 2;
for (int i = right; i < right + chunk_size / 2; ++i) {
dir_entry[i] = left_seg;
Allocator::Persist(&dir_entry[i], sizeof(uint64_t));
}
if ((left_seg->local_depth + 1) == global_depth) {
SUB(&_sa->depth_count, 2);
}
}
template <class T>
void Finger_EH<T>::recoverTable(Table<T> **target_table, size_t key_hash,
size_t x, Directory<T> *old_sa) {
/*Set the lockBit to ahieve the mutal exclusion of the recover process*/
auto dir_entry = old_sa->_;
uint64_t snapshot = (uint64_t)*target_table;
Table<T> *target = (Table<T> *)(snapshot & tailMask);
if (pmemobj_mutex_trylock(pool_addr, &target->lock_bit) != 0) {
return;
}
target->recoverMetadata();
if (target->state != 0) {
target->pattern = key_hash >> (8 * sizeof(key_hash) - target->local_depth);
Allocator::Persist(&target->pattern, sizeof(target->pattern));
Table<T> *next_table = (Table<T> *)pmemobj_direct(target->next);
if (target->state == -2) {
if (next_table->state == -3) {
/*Help finish the split operation*/
next_table->recoverMetadata();
target->HelpSplit(next_table);
Lock_Directory();
auto x = (key_hash >> (8 * sizeof(key_hash) - dir->global_depth));
if (target->local_depth < dir->global_depth) {
Directory_Update(dir, x, next_table, target);
} else {
Directory_Doubling(x, next_table, target);
}
Unlock_Directory();
/*release the lock for the target bucket and the new bucket*/
next_table->state = 0;
Allocator::Persist(&next_table->state, sizeof(int));
}
} else if (target->state == -1) {
if (next_table->pattern == ((target->pattern << 1) + 1)) {
target->Merge(next_table, true);
Allocator::Persist(target, sizeof(Table<T>));
target->next = next_table->next;
Allocator::Free(next_table);
}
}
target->state = 0;
Allocator::Persist(&target->state, sizeof(int));
}
/*Compute for all entries and clear the dirty bit*/
int chunk_size = pow(2, old_sa->global_depth - target->local_depth);
x = x - (x % chunk_size);
for (int i = x; i < (x + chunk_size); ++i) {
dir_entry[i] = reinterpret_cast<Table<T> *>(
(reinterpret_cast<uint64_t>(dir_entry[i]) & tailMask) | crash_version);
}
*target_table = reinterpret_cast<Table<T> *>(
reinterpret_cast<uint64_t>(target) | crash_version);
}
template <class T>
void Finger_EH<T>::Recovery() {
/*scan the directory, set the clear bit, and also set the dirty bit in the
* segment to indicate that this segment is clean*/
if (clean) {
clean = false;
return;
}
Allocator::EpochRecovery();
lock = 0;
/*first check the back_dir log*/
if (!OID_IS_NULL(back_dir)) {
pmemobj_free(&back_dir);
}
auto dir_entry = dir->_;
int length = pow(2, dir->global_depth);
crash_version = ((crash_version >> 56) + 1) << 56;
if (crash_version == 0) {
uint64_t set_one = 1UL << 56;
for (int i = 0; i < length; ++i) {
uint64_t snapshot = (uint64_t)dir_entry[i];
dir_entry[i] =
reinterpret_cast<Table<T> *>((snapshot & tailMask) | set_one);
}
Allocator::Persist(dir_entry, sizeof(uint64_t) * length);
}
}
template <class T>
int Finger_EH<T>::Insert(T key, Value_t value, bool is_in_epoch) {
if (!is_in_epoch) {
auto epoch_guard = Allocator::AquireEpochGuard();
return Insert(key, value);
}
return Insert(key, value);
}
template <class T>
int Finger_EH<T>::Insert(T key, Value_t value) {
uint64_t key_hash;
if constexpr (std::is_pointer_v<T>) {
key_hash = h(key->key, key->length);
} else {
key_hash = h(&key, sizeof(key));
}
auto meta_hash = ((uint8_t)(key_hash & kMask)); // the last 8 bits
RETRY:
auto old_sa = dir;
auto x = (key_hash >> (8 * sizeof(key_hash) - old_sa->global_depth));
auto dir_entry = old_sa->_;
Table<T> *target = reinterpret_cast<Table<T> *>(
reinterpret_cast<uint64_t>(dir_entry[x]) & tailMask);
if ((reinterpret_cast<uint64_t>(dir_entry[x]) & headerMask) !=
crash_version) {
recoverTable(&dir_entry[x], key_hash, x, old_sa);
goto RETRY;
}
auto ret = target->Insert(key, value, key_hash, meta_hash, &dir);
if(ret == -3){ /*duplicate insert, insertion failure*/
return -1;
}
if(ret==-2) {
goto RETRY;
}
//等于-1的话 直接在那边就处理了
//ret=-1表示需要进行扩容,我们这里直接避免这个问题!
// if (ret == -1) {
// if (!target->bucket->try_get_lock()) {
// goto RETRY;
// }
//
// /*verify procedure*/
// auto old_sa = dir;
// auto x = (key_hash >> (8 * sizeof(key_hash) - old_sa->global_depth));
// if (reinterpret_cast<Table<T> *>(reinterpret_cast<uint64_t>(old_sa->_[x]) &
// tailMask) != target) /* verify process*/
// {
// target->bucket->release_lock();
// goto RETRY;
// }
//
// auto new_b =
// target->Split(key_hash); /* also needs the verify..., and we use try
// lock for this rather than the spin lock*/
// /* update directory*/
// REINSERT:
// old_sa = dir;
// dir_entry = old_sa->_;
// x = (key_hash >> (8 * sizeof(key_hash) - old_sa->global_depth));
// if (target->local_depth < old_sa->global_depth) {
// if(!try_get_directory_read_lock()){
// goto REINSERT;
// }
//
// if (old_sa->version != dir->version) {
// // The directory has changed, thus need retry this update
// release_directory_read_lock();
// goto REINSERT;
// }
//
// Directory_Update(old_sa, x, new_b, target);
// release_directory_read_lock();
// } else {
// Lock_Directory();
// if (old_sa->version != dir->version) {
// Unlock_Directory();
// goto REINSERT;
// }
// Directory_Doubling(x, new_b, target);
// Unlock_Directory();
// }
//
// /*release the lock for the target bucket and the new bucket*/
// new_b->state = 0;
// Allocator::Persist(&new_b->state, sizeof(int));
// target->state = 0;
// Allocator::Persist(&target->state, sizeof(int));
//
// Bucket<T> *curr_bucket;
// for (int i = 0; i < kNumBucket; ++i) {
// curr_bucket = target->bucket + i;
// curr_bucket->release_lock();
// }
// curr_bucket = new_b->bucket;
// curr_bucket->release_lock();
// goto RETRY;
// } else if (ret == -2) {
// goto RETRY;
// }
return 0;
}
template <class T>
Value_t Finger_EH<T>::Get(T key, bool is_in_epoch) {
if (!is_in_epoch) {
auto epoch_guard = Allocator::AquireEpochGuard();
return Get(key);
}
uint64_t key_hash;
if constexpr (std::is_pointer_v<T>) {
key_hash = h(key->key, key->length);
} else {
key_hash = h(&key, sizeof(key));
}
auto meta_hash = ((uint8_t)(key_hash & kMask)); // the last 8 bits
RETRY:
auto old_sa = dir;
auto x = (key_hash >> (8 * sizeof(key_hash) - old_sa->global_depth));
auto y = BUCKET_INDEX(key_hash);
auto dir_entry = old_sa->_;
auto old_entry = dir_entry[x];
Table<T> *target = reinterpret_cast<Table<T> *>(
reinterpret_cast<uint64_t>(old_entry) & tailMask);
if ((reinterpret_cast<uint64_t>(old_entry) & headerMask) != crash_version) {
recoverTable(&dir_entry[x], key_hash, x, old_sa);
goto RETRY;
}
Bucket<T> *target_bucket = target->bucket + y;
Bucket<T> *neighbor_bucket = target->bucket + ((y + 1) & bucketMask);
uint32_t old_version =
__atomic_load_n(&target_bucket->version_lock, __ATOMIC_ACQUIRE);
uint32_t old_neighbor_version =
__atomic_load_n(&neighbor_bucket->version_lock, __ATOMIC_ACQUIRE);
if ((old_version & lockSet) || (old_neighbor_version & lockSet)) {
goto RETRY;
}
/*verification procedure*/
old_sa = dir;
x = (key_hash >> (8 * sizeof(key_hash) - old_sa->global_depth));
if (old_sa->_[x] != old_entry) {
goto RETRY;
}
auto ret = target_bucket->check_and_get(meta_hash, key, false);
if (target_bucket->test_lock_version_change(old_version)) {
goto RETRY;
}
if (ret != NONE) {
return ret;
}
/*no need for verification procedure, we use the version number of
* target_bucket to test whether the bucket has ben spliteted*/
ret = neighbor_bucket->check_and_get(meta_hash, key, true);
if (neighbor_bucket->test_lock_version_change(old_neighbor_version)) {
goto RETRY;
}
if (ret != NONE) {
return ret;
}
if (target_bucket->test_stash_check()) {
auto test_stash = false;
if (target_bucket->test_overflow()) {
/*this only occur when the bucket has more key-values than 10 that are
* overfloed int he shared bucket area, therefore it needs to search in
* the extra bucket*/
test_stash = true;
} else {
/*search in the original bucket*/
int mask = target_bucket->overflowBitmap & overflowBitmapMask;
if (mask != 0) {
for (int i = 0; i < 4; ++i) {
if (CHECK_BIT(mask, i) &&
(target_bucket->finger_array[14 + i] == meta_hash) &&
(((1 << i) & target_bucket->overflowMember) == 0)) {
Bucket<T> *stash =
target->bucket + kNumBucket +
((target_bucket->overflowIndex >> (i * 2)) & stashMask);
auto ret = stash->check_and_get(meta_hash, key, false);
if (ret != NONE) {
if (target_bucket->test_lock_version_change(old_version)) {
goto RETRY;
}
return ret;
}
}
}
}
mask = neighbor_bucket->overflowBitmap & overflowBitmapMask;
if (mask != 0) {
for (int i = 0; i < 4; ++i) {
if (CHECK_BIT(mask, i) &&
(neighbor_bucket->finger_array[14 + i] == meta_hash) &&
(((1 << i) & neighbor_bucket->overflowMember) != 0)) {
Bucket<T> *stash =
target->bucket + kNumBucket +
((neighbor_bucket->overflowIndex >> (i * 2)) & stashMask);
auto ret = stash->check_and_get(meta_hash, key, false);
if (ret != NONE) {
if (target_bucket->test_lock_version_change(old_version)) {
goto RETRY;
}
return ret;
}
}
}
}
goto FINAL;
}
TEST_STASH:
if (test_stash == true) {
for (int i = 0; i < stashBucket; ++i) {
Bucket<T> *stash =
target->bucket + kNumBucket + ((i + (y & stashMask)) & stashMask);
auto ret = stash->check_and_get(meta_hash, key, false);
if (ret != NONE) {
if (target_bucket->test_lock_version_change(old_version)) {
goto RETRY;
}
return ret;
}
}
}
}
FINAL:
return NONE;
}
template <class T>
Value_t Finger_EH<T>::Get(T key) {
uint64_t key_hash;
if constexpr (std::is_pointer_v<T>) {
key_hash = h(key->key, key->length);
} else {
key_hash = h(&key, sizeof(key));
}
auto meta_hash = ((uint8_t)(key_hash & kMask)); // the last 8 bits
RETRY:
auto old_sa = dir;
auto x = (key_hash >> (8 * sizeof(key_hash) - old_sa->global_depth));
auto y = BUCKET_INDEX(key_hash);
auto dir_entry = old_sa->_;
auto old_entry = dir_entry[x];
Table<T> *target = reinterpret_cast<Table<T> *>(
reinterpret_cast<uint64_t>(old_entry) & tailMask);
if ((reinterpret_cast<uint64_t>(old_entry) & headerMask) != crash_version) {
recoverTable(&dir_entry[x], key_hash, x, old_sa);
goto RETRY;
}
Bucket<T> *target_bucket = target->bucket + y;
Bucket<T> *neighbor_bucket = target->bucket + ((y + 1) & bucketMask);
uint32_t old_version =
__atomic_load_n(&target_bucket->version_lock, __ATOMIC_ACQUIRE);
uint32_t old_neighbor_version =
__atomic_load_n(&neighbor_bucket->version_lock, __ATOMIC_ACQUIRE);
if ((old_version & lockSet) || (old_neighbor_version & lockSet)) {
goto RETRY;
}
/*verification procedure*/
old_sa = dir;
x = (key_hash >> (8 * sizeof(key_hash) - old_sa->global_depth));
if (old_sa->_[x] != old_entry) {
goto RETRY;
}
auto ret = target_bucket->check_and_get(meta_hash, key, false);
if (target_bucket->test_lock_version_change(old_version)) {
goto RETRY;
}
if (ret != NONE) {
return ret;
}
ret = neighbor_bucket->check_and_get(meta_hash, key, true);
if (neighbor_bucket->test_lock_version_change(old_neighbor_version)) {
goto RETRY;
}
if (ret != NONE) {
return ret;
}
if (target_bucket->test_stash_check()) {
auto test_stash = false;
if (target_bucket->test_overflow()) {
/*this only occur when the bucket has more key-values than 10 that are
* overfloed int he shared bucket area, therefore it needs to search in
* the extra bucket*/
test_stash = true;
} else {
/*search in the original bucket*/
int mask = target_bucket->overflowBitmap & overflowBitmapMask;
if (mask != 0) {
for (int i = 0; i < 4; ++i) {
if (CHECK_BIT(mask, i) &&
(target_bucket->finger_array[14 + i] == meta_hash) &&
(((1 << i) & target_bucket->overflowMember) == 0)) {
Bucket<T> *stash =
target->bucket + kNumBucket +
((target_bucket->overflowIndex >> (i * 2)) & stashMask);
auto ret = stash->check_and_get(meta_hash, key, false);
if (ret != NONE) {
if (target_bucket->test_lock_version_change(old_version)) {
goto RETRY;
}
return ret;
}
}
}
}
mask = neighbor_bucket->overflowBitmap & overflowBitmapMask;
if (mask != 0) {
for (int i = 0; i < 4; ++i) {
if (CHECK_BIT(mask, i) &&
(neighbor_bucket->finger_array[14 + i] == meta_hash) &&
(((1 << i) & neighbor_bucket->overflowMember) != 0)) {
Bucket<T> *stash =
target->bucket + kNumBucket +
((neighbor_bucket->overflowIndex >> (i * 2)) & stashMask);
auto ret = stash->check_and_get(meta_hash, key, false);
if (ret != NONE) {
if (target_bucket->test_lock_version_change(old_version)) {
goto RETRY;
}
return ret;
}
}
}
}
goto FINAL;
}
TEST_STASH:
if (test_stash == true) {
for (int i = 0; i < stashBucket; ++i) {
Bucket<T> *stash =
target->bucket + kNumBucket + ((i + (y & stashMask)) & stashMask);
auto ret = stash->check_and_get(meta_hash, key, false);
if (ret != NONE) {
if (target_bucket->test_lock_version_change(old_version)) {
goto RETRY;
}
return ret;
}
}
}
}
FINAL:
return NONE;
}
template <class T>
void Finger_EH<T>::TryMerge(size_t key_hash) {
/*Compute the left segment and right segment*/
do {
auto old_dir = dir;
auto x = (key_hash >> (8 * sizeof(key_hash) - old_dir->global_depth));
auto target = old_dir->_[x];
int chunk_size = pow(2, old_dir->global_depth - (target->local_depth - 1));
assert(chunk_size >= 2);
int left = x - (x % chunk_size);
int right = left + chunk_size / 2;
auto left_seg = old_dir->_[left];
auto right_seg = old_dir->_[right];
if ((reinterpret_cast<uint64_t>(left_seg) & headerMask) != crash_version) {
recoverTable(&old_dir->_[left], key_hash, left, old_dir);
continue;
}
if ((reinterpret_cast<uint64_t>(right_seg) & headerMask) != crash_version) {
recoverTable(&old_dir->_[right], key_hash, right, old_dir);
continue;
}
size_t _pattern0 =
((key_hash >> (8 * sizeof(key_hash) - target->local_depth + 1)) << 1);
size_t _pattern1 =
((key_hash >> (8 * sizeof(key_hash) - target->local_depth + 1)) << 1) +
1;
/* Get the lock from left to right*/
if (left_seg->Acquire_and_verify(_pattern0)) {
if (right_seg->Acquire_and_verify(_pattern1)) {
if (left_seg->local_depth != right_seg->local_depth) {
left_seg->bucket->release_lock();
right_seg->bucket->release_lock();
return;
}
if ((left_seg->number != 0) && (right_seg->number != 0)) {
left_seg->bucket->release_lock();
right_seg->bucket->release_lock();
return;
}
left_seg->Acquire_remaining_locks();
right_seg->Acquire_remaining_locks();
/*First improve the local depth, */
left_seg->local_depth = left_seg->local_depth - 1;
Allocator::Persist(&left_seg->local_depth, sizeof(uint64_t));
left_seg->state = -1;
Allocator::Persist(&left_seg->state, sizeof(int));
right_seg->state = -1;
Allocator::Persist(&right_seg->state, sizeof(int));
REINSERT:
old_dir = dir;
/*Update the directory from left to right*/
while (Test_Directory_Lock_Set()) {
asm("nop");
}
/*start the merge operation*/
Directory_Merge_Update(old_dir, key_hash, left_seg);
if (Test_Directory_Lock_Set() || old_dir->version != dir->version) {
goto REINSERT;
}
if (right_seg->number != 0) {
left_seg->Merge(right_seg);
}
auto reserve_item = Allocator::ReserveItem();
TX_BEGIN(pool_addr) {
pmemobj_tx_add_range_direct(reserve_item, sizeof(*reserve_item));
pmemobj_tx_add_range_direct(&left_seg->next, sizeof(left_seg->next));
Allocator::Free(reserve_item, right_seg);
left_seg->next = right_seg->next;
}
TX_ONABORT { std::cout << "Error for merge txn" << std::endl; }
TX_END
left_seg->pattern = left_seg->pattern >> 1;
Allocator::Persist(&left_seg->pattern, sizeof(uint64_t));
left_seg->state = 0;
Allocator::Persist(&left_seg->state, sizeof(int));
right_seg->Release_all_locks();
left_seg->Release_all_locks();
/*Try to halve directory?*/
if ((dir->depth_count == 0) && (dir->global_depth > 2)) {
Lock_Directory();
if (dir->depth_count == 0) {
Halve_Directory();
}
Unlock_Directory();
}
} else {
left_seg->bucket->release_lock();
if (old_dir == dir) {
return;
}
}
} else {
if (old_dir == dir) {
/* If the directory itself does not change, directly return*/
return;
}
}
} while (true);
}
template <class T>
bool Finger_EH<T>::Delete(T key, bool is_in_epoch) {
if (!is_in_epoch) {
auto epoch_guard = Allocator::AquireEpochGuard();
return Delete(key);
}
return Delete(key);
}
/*By default, the merge operation is disabled*/
template <class T>
bool Finger_EH<T>::Delete(T key) {
/*Basic delete operation and merge operation*/
uint64_t key_hash;
if constexpr (std::is_pointer_v<T>) {
key_hash = h(key->key, key->length);
} else {
key_hash = h(&key, sizeof(key));
}
auto meta_hash = ((uint8_t)(key_hash & kMask)); // the last 8 bits
RETRY:
auto old_sa = dir;
auto x = (key_hash >> (8 * sizeof(key_hash) - old_sa->global_depth));
auto dir_entry = old_sa->_;
Table<T> *target_table = reinterpret_cast<Table<T> *>(
reinterpret_cast<uint64_t>(dir_entry[x]) & tailMask);
if ((reinterpret_cast<uint64_t>(dir_entry[x]) & headerMask) !=
crash_version) {
recoverTable(&dir_entry[x], key_hash, x, old_sa);
goto RETRY;
}
/*we need to first do the locking and then do the verify*/
auto y = BUCKET_INDEX(key_hash);
Bucket<T> *target = target_table->bucket + y;
Bucket<T> *neighbor = target_table->bucket + ((y + 1) & bucketMask);
target->get_lock();
if (!neighbor->try_get_lock()) {
target->release_lock();
goto RETRY;
}
old_sa = dir;
x = (key_hash >> (8 * sizeof(key_hash) - old_sa->global_depth));
if (reinterpret_cast<Table<T> *>(reinterpret_cast<uint64_t>(old_sa->_[x]) &
tailMask) != target_table) {
target->release_lock();
neighbor->release_lock();
goto RETRY;
}
auto ret = target->Delete(key, meta_hash, false);
if (ret == 0) {
#ifdef COUNTING
auto num = SUB(&target_table->number, 1);
#endif
target->release_lock();
#ifdef PMEM
Allocator::Persist(&target->bitmap, sizeof(target->bitmap));
#endif
neighbor->release_lock();
#ifdef COUNTING
if (num == 0) {
TryMerge(key_hash);
}
#endif
return true;
}
ret = neighbor->Delete(key, meta_hash, true);
if (ret == 0) {
#ifdef COUNTING
auto num = SUB(&target_table->number, 1);
#endif
neighbor->release_lock();
#ifdef PMEM
Allocator::Persist(&neighbor->bitmap, sizeof(neighbor->bitmap));
#endif
target->release_lock();
#ifdef COUNTING
if (num == 0) {
TryMerge(key_hash);
}
#endif
return true;
}
if (target->test_stash_check()) {
auto test_stash = false;
if (target->test_overflow()) {
/*this only occur when the bucket has more key-values than 10 that are
* overfloed int he shared bucket area, therefore it needs to search in
* the extra bucket*/
test_stash = true;
} else {
/*search in the original bucket*/
int mask = target->overflowBitmap & overflowBitmapMask;
if (mask != 0) {
for (int i = 0; i < 4; ++i) {
if (CHECK_BIT(mask, i) &&
(target->finger_array[14 + i] == meta_hash) &&
(((1 << i) & target->overflowMember) == 0)) {
test_stash = true;
goto TEST_STASH;
}
}
}
mask = neighbor->overflowBitmap & overflowBitmapMask;
if (mask != 0) {
for (int i = 0; i < 4; ++i) {
if (CHECK_BIT(mask, i) &&
(neighbor->finger_array[14 + i] == meta_hash) &&
(((1 << i) & neighbor->overflowMember) != 0)) {
test_stash = true;
break;
}
}
}
}
TEST_STASH:
if (test_stash == true) {
Bucket<T> *stash = target_table->bucket + kNumBucket;
stash->get_lock();
for (int i = 0; i < stashBucket; ++i) {
int index = ((i + (y & stashMask)) & stashMask);
Bucket<T> *curr_stash = target_table->bucket + kNumBucket + index;
auto ret = curr_stash->Delete(key, meta_hash, false);
if (ret == 0) {
/*need to unset indicator in original bucket*/
stash->release_lock();
#ifdef PMEM
Allocator::Persist(&curr_stash->bitmap, sizeof(curr_stash->bitmap));
#endif
auto bucket_ix = BUCKET_INDEX(key_hash);
auto org_bucket = target_table->bucket + bucket_ix;
assert(org_bucket == target);
target->unset_indicator(meta_hash, neighbor, key, index);
#ifdef COUNTING
auto num = SUB(&target_table->number, 1);
#endif
neighbor->release_lock();
target->release_lock();
#ifdef COUNTING
if (num == 0) {
TryMerge(key_hash);
}
#endif
return true;
}
}
stash->release_lock();
}
}
neighbor->release_lock();
target->release_lock();
return false;
}
/*DEBUG FUNCTION: search the position of the key in this table and print
* correspongdign informantion in this table, to test whether it is correct*/
template <class T>
int Finger_EH<T>::FindAnyway(T key) {
uint64_t key_hash;
if constexpr (std::is_pointer_v<T>) {
// key_hash = h(key, (reinterpret_cast<string_key *>(key))->length);
key_hash = h(key->key, key->length);
} else {
key_hash = h(&key, sizeof(key));
}
auto meta_hash = ((uint8_t)(key_hash & kMask));
auto x = (key_hash >> (8 * sizeof(key_hash) - dir->global_depth));
size_t _count = 0;
size_t seg_count = 0;
Directory<T> *seg = dir;
Table<T> **dir_entry = seg->_;
Table<T> *ss;
auto global_depth = seg->global_depth;
size_t depth_diff;
int capacity = pow(2, global_depth);
for (int i = 0; i < capacity;) {
ss = dir_entry[i];
Bucket<T> *curr_bucket;
for (int j = 0; j < kNumBucket; ++j) {
curr_bucket = ss->bucket + j;
auto ret = curr_bucket->check_and_get(meta_hash, key, false);
if (ret != NONE) {
printf("successfully find in the normal bucket with false\n");
printf(
"the segment is %d, the bucket is %d, the local depth = %lld, the "
"pattern is %lld\n",
i, j, ss->local_depth, ss->pattern);
return 0;
}
ret = curr_bucket->check_and_get(meta_hash, key, true);
if (ret != NONE) {
printf("successfully find in the normal bucket with true\n");
printf(
"the segment is %d, the bucket is %d, the local depth is %lld, the "
"pattern is %lld\n",
i, j, ss->local_depth, ss->pattern);
return 0;
}
}
for (int i = 0; i < stashBucket; ++i) {
curr_bucket = ss->bucket + kNumBucket + i;
auto ret = curr_bucket->check_and_get(meta_hash, key, false);
if (ret != NONE) {
printf("successfully find in the stash bucket\n");
auto bucket_ix = BUCKET_INDEX(key_hash);
auto org_bucket = ss->bucket + bucket_ix;
auto neighbor_bucket = ss->bucket + ((bucket_ix + 1) & bucketMask);
printf("the segment number is %d, the bucket_ix is %d\n", x, bucket_ix);
printf("the image of org_bucket\n");
int mask = org_bucket->overflowBitmap & overflowBitmapMask;
for (int j = 0; j < 4; ++j) {
printf(
"the hash is %d, the pos bit is %d, the alloc bit is %d, the "
"stash bucket info is %d, the real stash bucket info is %d\n",
org_bucket->finger_array[14 + j],
(org_bucket->overflowMember >> (j)) & 1,
(org_bucket->overflowBitmap >> j) & 1,
(org_bucket->overflowIndex >> (j * 2)) & stashMask, i);
}
printf("the image of the neighbor bucket\n");
printf("the stash check is %d\n", neighbor_bucket->test_stash_check());
mask = neighbor_bucket->overflowBitmap & overflowBitmapMask;
for (int j = 0; j < 4; ++j) {
printf(
"the hash is %d, the pos bit is %d, the alloc bit is %d, the "
"stash bucket info is %d, the real stash bucket info is %d\n",
neighbor_bucket->finger_array[14 + j],
(neighbor_bucket->overflowMember >> (j)) & 1,
(neighbor_bucket->overflowBitmap >> j) & 1,
(neighbor_bucket->overflowIndex >> (j * 2)) & stashMask, i);
}
if (org_bucket->test_overflow()) {
printf("the org bucket has overflowed\n");
}
return 0;
}
}
depth_diff = global_depth - ss->local_depth;
_count += ss->number;
seg_count++;
i += pow(2, depth_diff);
}
return -1;
}
#undef BUCKET_INDEX
#undef GET_COUNT
#undef GET_BITMAP
#undef GET_MEMBER
#undef GET_INVERSE_MEMBER
} // namespace extendible
| [
"379644606@qq.com"
] | 379644606@qq.com |
53063945ff3fcf6e02d7b0209b728e68e7fae0f9 | 41fbb5a3be3e46f1284c0547c08d5407ecf36479 | /0038.外观数列/solution.cpp | 2b877b03b2673b91a6c8ee81038805a80f695e5f | [] | no_license | Ricursu/LeetCode_Parctice | 615e30caf1f00f5d07e29e9306e27eeac54d1df6 | d7fc642710b417ea844fd745217d400aa2be1475 | refs/heads/master | 2023-06-27T14:22:47.056997 | 2021-07-21T14:36:28 | 2021-07-21T14:36:28 | 356,806,574 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 660 | cpp | class Solution {
public:
string countAndSay(int n) {
string res = "1";
for(int i = 1; i < n; i++)
{
string temp = "";
for(int j = 0; j < res.size(); j++)
{
int count = 1;
char c = res[j];
while(res[j+1] == c)
{
count++;
j++;
}
char c1 = '0' + count;
temp = temp + c1 + c;
}
res = temp;
}
return res;
}
}; | [
"13642671839@163.com"
] | 13642671839@163.com |
58512757e6b45846f9ea893da363ac8cf8fc7270 | 1b22a1152258911bfe569afae9922be643bbeea5 | /validateStackSequences.cpp | ed96742dcd052cf2eac976f6e491f0e4cf9cc40a | [] | no_license | Ambition111/- | c14bb5a439fa5028e4abe9f0d7c629c001f429e5 | 4a0e0c958a78a7d0903e1b2190ddbf3edd0c11d1 | refs/heads/master | 2023-04-16T11:01:38.044545 | 2021-04-15T16:00:00 | 2021-04-15T16:00:00 | 304,906,672 | 3 | 1 | null | null | null | null | GB18030 | C++ | false | false | 866 | cpp |
/*
输入两个整数序列,第一个序列表示栈的压入顺序,请判断第二个序列是否为该栈的弹出顺序。
假设压入栈的所有数字均不相等。
例如,序列 {1,2,3,4,5} 是某栈的压栈序列,序列 {4,5,3,2,1} 是该压栈序列对应的一个弹出序列,
但 {4,3,5,1,2} 就不可能是该压栈序列的弹出序列。
*/
class Solution {
public:
bool validateStackSequences(vector<int>& pushed, vector<int>& popped) {
stack<int> st;
int i = 0, j = 0;
while (j < popped.size())
{
while (st.empty() || st.top() != popped[j])
{
if (i < pushed.size())
st.push(pushed[i++]);
else
return false;
}
st.pop();
j++;
}
return true;
}
};
| [
"2460819991@qq.com"
] | 2460819991@qq.com |
19fd005e87f1ca65b4739bbb44dac76678bd8bf6 | 8f2dc5e7afc79f4dede1d9f91a57c353913eda56 | /ResectionPlanning/MRML/vtkMRMLLRPModelNode.h | 63e96f94d9ca91ddc3f0dc6124efc0bdca2396b6 | [] | no_license | TheInterventionCentre/NorMIT-Plan | f09ff653184caf1381fdd925c003f61f2099689e | b841da7b959d9299da3480ad41182ac271794c91 | refs/heads/development | 2021-01-20T11:17:47.596583 | 2018-04-24T07:49:58 | 2018-04-24T07:49:58 | 77,453,850 | 11 | 1 | null | 2018-04-24T07:49:59 | 2016-12-27T12:27:58 | C++ | UTF-8 | C++ | false | false | 3,668 | h | /*=========================================================================
Program: NorMIT-Plan
Module: vtkMRMLLRPModelNode.h
Copyright (c) 2017, The Intervention Centre, Oslo University Hospital
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
3. Neither the name of the copyright holder nor the names of its contributors
may be used to endorse or promote products derived from this software
without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
=========================================================================*/
#ifndef __vtkMRMLLRPModelNode_h
#define __vtkMRMLLRPModelNode_h
// This module includes
#include "vtkSlicerResectionPlanningModuleMRMLExport.h"
//MRML
#include <vtkMRMLModelNode.h>
//------------------------------------------------------------------------------
/**
* \ingroup ResectionPlanning
*
* This is a support class to distinguish between regular 3D Slicer models
* and 3D models corresponding to organs in the resection planning systems.
*/
class VTK_SLICER_RESECTIONPLANNING_MODULE_MRML_EXPORT
vtkMRMLLRPModelNode: public vtkMRMLModelNode
{
public:
enum AnatomicalStructure
{
Unknown = 0,
Parenchyma = 1,
PortalSystem = 2,
HepaticSystem = 3,
Tumor = 4,
};
/**
* Standard VTK object instantiation methods
*
* @return a pointer to a newly created vtkMRMLLRPModelNode.
*/
static vtkMRMLLRPModelNode* New();
vtkTypeMacro(vtkMRMLLRPModelNode, vtkMRMLModelNode);
/**
* Standard print object information method.
*
* @param os output stream to print the information to.
* @param indent intdent value.
*/
void PrintSelf(ostream &os, vtkIndent indent);
/**
* Standard MRML method to create the node instance.
*
*
* @return a pointer to the newly created vtkMRMLNode.
*/
virtual vtkMRMLNode* CreateNodeInstance();
/**
* Get the tag name of the node.
*
*
* @return string with the tag name of the node.
*/
virtual const char* GetNodeTagName() {return "LRPModelNode";}
/**
* Get the icon associated to the node.
*
*
* @return string pointing to the resource where the icon is located.
*/
virtual const char* GetIcon() {return "";}
vtkSetClampMacro(TypeOfAnatomicalStructure, int, 0, 4);
vtkGetMacro(TypeOfAnatomicalStructure, int);
protected:
vtkMRMLLRPModelNode();
~vtkMRMLLRPModelNode();
private:
int TypeOfAnatomicalStructure;
};
#endif
| [
"rafael.palomar@rr-research.no"
] | rafael.palomar@rr-research.no |
a844ebc7e32100f22c0866cfe3601cc97d79a979 | b635190cf323e445a7eca84811276c0a1d816851 | /astliteralstring.h | 3020e95c2d250444f0244f1b566bbf8c1bfadaf0 | [
"Zlib"
] | permissive | pool-lang/cpoolc | e720ea89fcda02f3d5e07a430623762d3063ae61 | b549a848629a9ff5038788a0d3c846b834e6a760 | refs/heads/master | 2021-01-19T13:52:48.903298 | 2013-02-18T03:26:42 | 2013-02-18T03:26:42 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,249 | h | // Copyright 2011-2013 Kevin Cox
/*******************************************************************************
* *
* This software is provided 'as-is', without any express or implied *
* warranty. In no event will the authors be held liable for any damages *
* arising from the use of this software. *
* *
* Permission is granted to anyone to use this software for any purpose, *
* including commercial applications, and to alter it and redistribute it *
* freely, subject to the following restrictions: *
* *
* 1. The origin of this software must not be misrepresented; you must not *
* claim that you wrote the original software. If you use this software in *
* a product, an acknowledgment in the product documentation would be *
* appreciated but is not required. *
* *
* 2. Altered source versions must be plainly marked as such, and must not be *
* misrepresented as being the original software. *
* *
* 3. This notice may not be removed or altered from any source distribution. * *
* *
*******************************************************************************/
#ifndef ASTLITERALSTRING_H
#define ASTLITERALSTRING_H
#include "astliteral.h"
#include "smartbuffer.h"
class ASTLiteralString: public ASTLiteral
{
QString data;
public:
ASTLiteralString();
ASTLiteralString(QString d, SmartBuffer::Position pos = SmartBuffer::Position());
virtual QString prettyType() const;
QString getData();
static ASTLiteralString *fromTokens(Token::List *tl, Token::List::iterator *tli);
};
#endif // ASTLITERALSTRING_H
| [
"kevincox.ca@gmail.com"
] | kevincox.ca@gmail.com |
702da32cddc7009aa206b8469ead69dda12e33d8 | 958b3bcdcf8f9de013323bdc35ba419cffa246cb | /examples/OpenHAK_Firmware/BLE_Stuff.ino | ed6276319cb8468321413514f3350b3777c0ee6f | [
"MIT"
] | permissive | OpenHAK/OpenHAK_Playground | b607d53b411ed9715ffe5d5f2129885ecabb7154 | de2a707e8e83a3996536f431769df9afe4dd1e56 | refs/heads/master | 2022-03-22T23:46:24.763336 | 2019-12-01T00:38:12 | 2019-12-01T00:38:12 | 198,309,889 | 1 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 2,337 | ino |
void SimbleeBLE_onConnect()
{
bConnected = true;
analogWrite(BLU, 100);
Lazarus.ariseLazarus(); // Tell Lazarus to arise.
#ifdef SERIAL_LOG
Serial.println("ble connected");
#endif
delay(100);
analogWrite(BLU,255);
}
void SimbleeBLE_onDisconnect()
{
bConnected = false;
modeNum = 2;
analogWrite(GRN,100);
#ifdef SERIAL_LOG
Serial.println("ble disconnected");
#endif
delay(100);
analogWrite(GRN,255);
}
void SimbleeBLE_onReceive(char *data, int len) {
Lazarus.ariseLazarus();
#ifdef SERIAL_LOG
Serial.print("Received data over BLE ");
Serial.print(len); Serial.println(" bytes");
#endif
// the first byte says what mode to be in
modeNum = data[0];
switch (modeNum){
case 10:
if (len >= 5) {
unsigned long thyme = (data[1] << 24) | (data[2] << 16) | (data[3] << 8) | data[4];
setTime(thyme);
//timeZoneOffset = 0xE2; //(data[5]); // Phone sends UTC offset
timeZoneOffset = (data[5]);
minutesOffset = timeZoneOffset;
minutesOffset *= 10;
TimeChangeRule localCR = {"TCR", First, Sun, Nov, 2, minutesOffset};
Timezone localZone(localCR, localCR);
utc = now(); //current time from the Time Library
localTime = localZone.toLocal(utc);
setTime(utc);
// modeNum = 0;
}
break;
case 3:
if(currentSample < 1){ // if we are just starting out
modeNum = 0;
}
break;
default:
break;
}
}
void transferSamples() {
#ifdef SERIAL_LOG
Serial.println("Starting History transfer");
#endif
for (int i = 0; i < currentSample; i++) {
if (bConnected) {
sendSamples(samples[i]);
}
}
modeNum = 2; // WHAT TO DO HERE?
}
void sendSamples(Payload sample) {
char data[20];
data[0] = (sample.epoch >> 24) & 0xFF;
data[1] = (sample.epoch >> 16) & 0xFF;
data[2] = (sample.epoch >> 8) & 0xFF;
data[3] = sample.epoch & 0xFF;
data[4] = (sample.steps >> 8) & 0xFF;
data[5] = sample.steps & 0xFF;
data[6] = sample.hr;
data[7] = sample.hrDev;
data[8] = sample.battery;
data[9] = sample.aux1;
data[10] = sample.aux2;
data[11] = sample.aux3;
// send is queued (the ble stack delays send to the start of the next tx window)
while (!SimbleeBLE.send(data, 12))
; // all tx buffers in use (can't send - try again later)
}
| [
"biomurph@gmail.com"
] | biomurph@gmail.com |
645641d5aeef89d963a451ecb0c485f4a1500d1c | d06cd58541ca76818977ff9dc2375a2c66d21aab | /plugins/midiplayer/midiplayerplugin.cpp | 2cd95462c95c4a1ecc790c9c6e9f80f8b4f198e6 | [] | no_license | c-base/c_nancy-plugins | bd14d5fa72dbbdba41357a11055b9f3821faef74 | 146f195f2c15490f9b53aac203e7eb2a9a03fffb | refs/heads/master | 2021-05-07T18:50:35.263465 | 2017-12-17T04:55:12 | 2017-12-17T04:55:12 | 108,839,120 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,235 | cpp | #include "midiplayerplugin.h"
bool UccncPlugin::create() {
return UccncPlugin::_create<MidiPlayer>();
}
MidiPlayer::MidiPlayer() : UccncPlugin(AUTHOR, PLUGIN_NAME, PLUGIN_VERSION) {
trace();
}
MidiPlayer::~MidiPlayer() {
trace();
}
void MidiPlayer::onFirstCycle() {
trace();
auto onNoteOn = [](int32_t track, int32_t tick, int32_t channel, int32_t note, int32_t velocity) -> void {
dbg("NoteOn: [%i] %d\n", channel, note);
auto midiNoteToFrequency = [](int note) -> double {
return 8.17575 * pow(2.0, note / 12.0);
};
double f = midiNoteToFrequency(note);
double feedRate = (f / 80.0) * 60.0;
char pCode[256];
sprintf_s(pCode, sizeof(pCode), "G1 X900 F%.3f", feedRate);
dbg("%s\n", pCode);
MidiPlayer::_instance()->UC.code(pCode);
};
auto onNoteOff = [](int32_t track, int32_t tick, int32_t channel, int32_t note) -> void {
dbg("NoteOff: [%i] %d\n", channel, note);
};
auto onMetaTrackNameEvent = [](int32_t track, int32_t tick, char *pText) -> void {
dbg("onMetaTrackNameEvent: %s\n", pText);
};
auto onMetaTextEvent = [](int32_t track, int32_t tick, char* pText) -> void {
dbg("onMetaTextEvent: %s\n", pText);
};
auto onMetaCopyrightEvent = [](int32_t track, int32_t tick, char* pText) -> void {
dbg("onMetaTextEvent: %s\n", pText);
};
auto onEndOfSequenceEvent = [](int32_t track, int32_t tick) -> void {
dbg("onEndOfSequenceEvent: [%i]\n", track);
};
MidiPlayerCallbacks_t callbacks = {0};
callbacks.pOnNoteOnCb = onNoteOn;
callbacks.pOnNoteOffCb = onNoteOff;
callbacks.pOnMetaTextEventCb = onMetaTextEvent;
callbacks.pOnMetaCopyrightCb = onMetaCopyrightEvent;
callbacks.pOnMetaTrackNameCb = onMetaTrackNameEvent;
callbacks.pOnMetaEndSequenceCb = onEndOfSequenceEvent;
midiplayer_init(&mpl_, callbacks);
}
void MidiPlayer::onTick() {
// trace();
midiPlayerTick(&mpl_);
}
void MidiPlayer::onShutdown() {
trace();
}
void MidiPlayer::buttonPressEvent(UccncButton button, bool onScreen) {
trace();
if (onScreen) {
if (button == UccncButton::Cyclestart) {
// TODO: implement
}
}
}
void MidiPlayer::textFieldClickEvent(UccncField label, bool isMainScreen) {
const char* pLabel;
switch (label) {
case UccncField::Mdi:
pLabel = "Mdi";
break;
case UccncField::Setnextlinefield:
pLabel = "Setnextlinefield";
break;
default:
pLabel = "Unknown";
}
dbg("textFieldClickEvent; label=%s, isMainScreen=%d\n", pLabel, isMainScreen);
}
void MidiPlayer::textFieldTextTypedEvent(UccncField label, bool isMainScreen, const char* pText) {
trace();
string text = pText;
if (isMainScreen) {
if (label == UccncField::Mdi) {
if (text == "play") {
char pExePath[256];
GetModuleFileName(NULL, pExePath, sizeof(pExePath));
string exePath = pExePath;
string midiPath = exePath.substr(0, exePath.find_last_of("\\") + 1);
midiPath += "Plugins\\cpp\\";
midiPath += "midi.mid";
if (!playMidiFile(&mpl_, midiPath.c_str()))
dbg("Failed opening midi file!\n");
else
dbg("Midi file opened successfully!\n");
}
}
}
}
| [
"coon@c-base.org"
] | coon@c-base.org |
15e8997687bf9c2c8f1b77f34779c43842ad258e | 2b210288fb83c773c7a2afa4d874d35f6a000699 | /chromium-webcl/src/chromeos/dbus/mock_dbus_thread_manager_without_gmock.h | ff1e7365cd6d879af34199d4da01bba4ea62cfda | [
"BSD-3-Clause"
] | permissive | mychangle123/Chromium-WebCL | 3462ff60a6ef3144729763167be6308921e4195d | 2b25f42a0a239127ed39a159c377be58b3102b17 | HEAD | 2016-09-16T10:47:58.247722 | 2013-10-31T05:48:50 | 2013-10-31T05:48:50 | 14,553,669 | 1 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 7,682 | h | // Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROMEOS_DBUS_MOCK_DBUS_THREAD_MANAGER_WITHOUT_GMOCK_H_
#define CHROMEOS_DBUS_MOCK_DBUS_THREAD_MANAGER_WITHOUT_GMOCK_H_
#include <string>
#include "base/logging.h"
#include "base/observer_list.h"
#include "chromeos/dbus/dbus_thread_manager.h"
namespace dbus {
class Bus;
class ObjectPath;
} // namespace dbus
namespace chromeos {
class DBusThreadManagerObserver;
class FakeBluetoothAdapterClient;
class FakeBluetoothAgentManagerClient;
class FakeBluetoothDeviceClient;
class FakeBluetoothInputClient;
class FakeBluetoothProfileManagerClient;
class FakeCrosDisksClient;
class FakeCryptohomeClient;
class FakeShillManagerClient;
class FakeImageBurnerClient;
class FakeSystemClockClient;
class MockIBusClient;
class MockIBusConfigClient;
class MockIBusEngineFactoryService;
class MockIBusEngineService;
class MockIBusInputContextClient;
class MockIBusPanelService;
// This class provides an another mock DBusThreadManager without gmock
// dependency. This class is used for places where GMock is not allowed
// (ex. ui/) or is not used.
// TODO(haruki): Along with crbug.com/223061, we can rename this class to
// clarify that this can also provides fakes and stubs.
class MockDBusThreadManagerWithoutGMock : public DBusThreadManager {
public:
MockDBusThreadManagerWithoutGMock();
virtual ~MockDBusThreadManagerWithoutGMock();
virtual void AddObserver(DBusThreadManagerObserver* observer) OVERRIDE;
virtual void RemoveObserver(DBusThreadManagerObserver* observer) OVERRIDE;
virtual void InitIBusBus(const std::string& ibus_address,
const base::Closure& closure) OVERRIDE;
virtual dbus::Bus* GetSystemBus() OVERRIDE;
virtual dbus::Bus* GetIBusBus() OVERRIDE;
virtual BluetoothAdapterClient* GetBluetoothAdapterClient() OVERRIDE;
virtual BluetoothDeviceClient* GetBluetoothDeviceClient() OVERRIDE;
virtual BluetoothInputClient* GetBluetoothInputClient() OVERRIDE;
virtual BluetoothManagerClient* GetBluetoothManagerClient() OVERRIDE;
virtual BluetoothNodeClient* GetBluetoothNodeClient() OVERRIDE;
virtual CrasAudioClient* GetCrasAudioClient() OVERRIDE;
virtual CrosDisksClient* GetCrosDisksClient() OVERRIDE;
virtual CryptohomeClient* GetCryptohomeClient() OVERRIDE;
virtual DebugDaemonClient* GetDebugDaemonClient() OVERRIDE;
virtual ExperimentalBluetoothAdapterClient*
GetExperimentalBluetoothAdapterClient() OVERRIDE;
virtual ExperimentalBluetoothAgentManagerClient*
GetExperimentalBluetoothAgentManagerClient() OVERRIDE;
virtual ExperimentalBluetoothDeviceClient*
GetExperimentalBluetoothDeviceClient() OVERRIDE;
virtual ExperimentalBluetoothInputClient*
GetExperimentalBluetoothInputClient() OVERRIDE;
virtual ExperimentalBluetoothProfileManagerClient*
GetExperimentalBluetoothProfileManagerClient() OVERRIDE;
virtual ShillDeviceClient* GetShillDeviceClient() OVERRIDE;
virtual ShillIPConfigClient* GetShillIPConfigClient() OVERRIDE;
virtual ShillManagerClient* GetShillManagerClient() OVERRIDE;
virtual ShillProfileClient* GetShillProfileClient() OVERRIDE;
virtual ShillServiceClient* GetShillServiceClient() OVERRIDE;
virtual GsmSMSClient* GetGsmSMSClient() OVERRIDE;
virtual ImageBurnerClient* GetImageBurnerClient() OVERRIDE;
virtual IntrospectableClient* GetIntrospectableClient() OVERRIDE;
virtual ModemMessagingClient* GetModemMessagingClient() OVERRIDE;
virtual PermissionBrokerClient* GetPermissionBrokerClient() OVERRIDE;
virtual PowerManagerClient* GetPowerManagerClient() OVERRIDE;
virtual PowerPolicyController* GetPowerPolicyController() OVERRIDE;
virtual SessionManagerClient* GetSessionManagerClient() OVERRIDE;
virtual SMSClient* GetSMSClient() OVERRIDE;
virtual SystemClockClient* GetSystemClockClient() OVERRIDE;
virtual UpdateEngineClient* GetUpdateEngineClient() OVERRIDE;
virtual BluetoothOutOfBandClient* GetBluetoothOutOfBandClient() OVERRIDE;
virtual IBusClient* GetIBusClient() OVERRIDE;
virtual IBusConfigClient* GetIBusConfigClient() OVERRIDE;
virtual IBusInputContextClient* GetIBusInputContextClient() OVERRIDE;
virtual IBusEngineFactoryService* GetIBusEngineFactoryService() OVERRIDE;
virtual IBusEngineService* GetIBusEngineService(
const dbus::ObjectPath& object_path) OVERRIDE;
virtual void RemoveIBusEngineService(
const dbus::ObjectPath& object_path) OVERRIDE;
virtual IBusPanelService* GetIBusPanelService() OVERRIDE;
FakeBluetoothAdapterClient* fake_bluetooth_adapter_client() {
return fake_bluetooth_adapter_client_.get();
}
FakeBluetoothAgentManagerClient* fake_bluetooth_agent_manager_client() {
return fake_bluetooth_agent_manager_client_.get();
}
FakeBluetoothDeviceClient* fake_bluetooth_device_client() {
return fake_bluetooth_device_client_.get();
}
FakeBluetoothInputClient* fake_bluetooth_input_client() {
return fake_bluetooth_input_client_.get();
}
FakeBluetoothProfileManagerClient* fake_bluetooth_profile_manager_client() {
return fake_bluetooth_profile_manager_client_.get();
}
FakeCryptohomeClient* fake_cryptohome_client() {
return fake_cryptohome_client_.get();
}
FakeShillManagerClient* fake_shill_manager_client() {
return fake_shill_manager_client_.get();
}
FakeImageBurnerClient* fake_image_burner_client() {
return fake_image_burner_client_.get();
}
FakeSystemClockClient* fake_system_clock_client() {
return fake_system_clock_client_.get();
}
MockIBusClient* mock_ibus_client() {
return mock_ibus_client_.get();
}
MockIBusConfigClient* mock_ibus_config_client() {
return mock_ibus_config_client_.get();
}
MockIBusInputContextClient* mock_ibus_input_context_client() {
return mock_ibus_input_context_client_.get();
}
MockIBusEngineService* mock_ibus_engine_service() {
return mock_ibus_engine_service_.get();
}
MockIBusEngineFactoryService* mock_ibus_engine_factory_service() {
return mock_ibus_engine_factory_service_.get();
}
MockIBusPanelService* mock_ibus_panel_service() {
return mock_ibus_panel_service_.get();
}
void set_ibus_bus(dbus::Bus* ibus_bus) {
ibus_bus_ = ibus_bus;
}
private:
scoped_ptr<FakeBluetoothAdapterClient> fake_bluetooth_adapter_client_;
scoped_ptr<FakeBluetoothAgentManagerClient>
fake_bluetooth_agent_manager_client_;
scoped_ptr<FakeBluetoothDeviceClient> fake_bluetooth_device_client_;
scoped_ptr<FakeBluetoothInputClient> fake_bluetooth_input_client_;
scoped_ptr<FakeBluetoothProfileManagerClient>
fake_bluetooth_profile_manager_client_;
scoped_ptr<FakeCrosDisksClient> fake_cros_disks_client_;
scoped_ptr<FakeCryptohomeClient> fake_cryptohome_client_;
scoped_ptr<FakeImageBurnerClient> fake_image_burner_client_;
scoped_ptr<FakeShillManagerClient> fake_shill_manager_client_;
scoped_ptr<FakeSystemClockClient> fake_system_clock_client_;
scoped_ptr<MockIBusClient> mock_ibus_client_;
scoped_ptr<MockIBusConfigClient> mock_ibus_config_client_;
scoped_ptr<MockIBusInputContextClient> mock_ibus_input_context_client_;
scoped_ptr<MockIBusEngineService> mock_ibus_engine_service_;
scoped_ptr<MockIBusEngineFactoryService> mock_ibus_engine_factory_service_;
scoped_ptr<MockIBusPanelService> mock_ibus_panel_service_;
dbus::Bus* ibus_bus_;
ObserverList<DBusThreadManagerObserver> observers_;
DISALLOW_COPY_AND_ASSIGN(MockDBusThreadManagerWithoutGMock);
};
} // namespace chromeos
#endif // CHROMEOS_DBUS_MOCK_DBUS_THREAD_MANAGER_WITHOUT_GMOCK_H_
| [
"ZhangPeiXuan.CN@Gmail.COM"
] | ZhangPeiXuan.CN@Gmail.COM |
36f6aaf10d7e78c6d40d242e3d408a7a248b2316 | e8472546fb8c9b0550d3b4a33a2f53623b035295 | /Source/Toy/Common/PS_Utils.cpp | a40dc33a3ea0ff2be3641dc14ffd8773c27d5b77 | [] | no_license | sungjin-bae/Toy | 513d3ebcd7994ea11f8298626be24ca5e25cb72d | 8ba1a6ca40910009a0fd0c926762e626bdfa8f9d | refs/heads/master | 2021-09-17T22:10:31.116647 | 2018-07-05T21:23:16 | 2018-07-05T21:23:16 | null | 0 | 0 | null | null | null | null | UHC | C++ | false | false | 2,989 | cpp | // Fill out your copyright notice in the Description page of Project Settings.
#include "PS_Utils.h"
#include "Engine.h"
// 항상 해결해야하는 치명적인 오류에 대한 로깅
DECLARE_LOG_CATEGORY_EXTERN(AssertError, Log, All);
DEFINE_LOG_CATEGORY(AssertError);
using namespace std;
FVector SJ_RotateUtills::ToRight(const FVector& _forward) {
SJ_ASSERT(_forward.IsNormalized());
static const FRotator rotate_yaw = FRotator(0.0f, 90.0f, 0.0f);
return rotate_yaw.RotateVector(_forward);
}
FVector2D SJ_RotateUtills::ToRight(const FVector2D& _forward) {
SJ_ASSERT(_forward.Size() == 1.0f);
static const float rotate_angle = 90.0f;
float radian = FMath::DegreesToRadians(rotate_angle);
float sin_value = FMath::Sin(radian);
float cos_value = FMath::Cos(radian);
// rotate point
float x_new = _forward.X * cos_value - _forward.Y * sin_value;
float y_new = _forward.X * sin_value + _forward.Y * cos_value;
return FVector2D(x_new, y_new);
}
FVector2D SJ_VectorUtills::ToVector2D(const FVector& _vec3) {
// z value ingnore
// Z값이 필요없는 곳에서 만 사용되어야 한다.
FVector2D ret(_vec3.X, _vec3.Y);
return ret;
}
FVector SJ_VectorUtills::ToVector3D(const FVector2D& _vec2) {
// z value set 0
// Z값이 필요없는 곳에서 만 사용되어야 한다.
FVector ret(_vec2.X, _vec2.Y, 0);
return ret;
}
FVector2D SJ_VectorUtills::ToProjection(const FVector2D& _pivot,
const FVector2D& _projection_vec)
{
// 내적을 얻는다.
float dot_scala = FVector2D::DotProduct(_pivot, _projection_vec);
// 벡터의 길이를 구한다.
float pivot_size = _pivot.SizeSquared();
float _projection_vector_size = _projection_vec.SizeSquared();
float cos_scala = dot_scala / (pivot_size * _projection_vector_size);
// v1P의 길이는
float projectioned_size = cos_scala * _projection_vector_size;
return FVector2D(projectioned_size * _pivot.X / pivot_size,
(projectioned_size * _pivot.Y / pivot_size));
}
bool SJ_VectorUtills::Normalize(FVector2D& _vec) {
//TODO...size 가 1이 아닌경우가 있다.
float size = _vec.Size();
_vec = _vec / size;
return true;
}
bool SJ_VectorUtills::IsNormalized(const FVector2D& _vec) {
//TODO 위랑 같음.
if (_vec.Size() == 1) { return true; }
return true;
}
void Shutdown(const TCHAR*_file, const int& _line, const TCHAR* _function)
{
#if WITH_EDITOR
PrintLog(_file, _line, _function);
QuitTheGame();
#endif
}
void PrintLog(const TCHAR*_file, const int& _line, const TCHAR*_function)
{
UE_LOG(AssertError, Error,
TEXT("Assert [ File : %s Line : %d Function : %s]"),
_file, _line, _function);
}
void QuitTheGame() {
//check assert
if (GWorld) {
APlayerController *player_controller = GWorld->GetFirstPlayerController();
check(player_controller);
//player_controller->IsLocalController();
player_controller->ConsoleCommand("quit");
}
} | [
"baehun92@naver.com"
] | baehun92@naver.com |
c0fd238da255e5706c39b0efbfa69689416b652c | 3d801968b2a83496d711075b8c39d45f5c1cfc00 | /Arrays/Subarray/Maximum sum subarray.cpp | cd1639b59d2e6441d693690078ba35e96db4bc21 | [] | no_license | hemalhansda/ds_algo | 74fa462843aed9f48fd3518a0db8664d724bfc88 | f038190e647a70dbecfcb42239abb4c679b56e04 | refs/heads/master | 2020-09-18T05:31:22.975399 | 2019-10-09T07:04:09 | 2019-10-09T07:04:09 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 698 | cpp | /*ind the contiguous subarray within an array (containing at least one number) which has the largest sum.
For example:
Given the array [-2,1,-3,4,-1,2,1,-5,4],
the contiguous subarray [4,-1,2,1] has the largest sum = 6.
For this problem, return the maximum sum.*/
int Solution::maxSubArray(const vector<int> &A) {
int n = A.size();
int pos = 0;
int prefix = 0;
int mx = INT_MIN;
for (int i = 0; i < n; ++i) {
prefix += A[i];
mx = max(mx, prefix);
if (prefix < 0) prefix = 0;
if (A[i] >= 0) pos = 1;
}
if (!pos) {
mx = *max_element(A.begin(), A.end());
}
return mx;
}
| [
"avinash.kumar@seenit.in"
] | avinash.kumar@seenit.in |
739e347117ccadbc45d30a6099859f7e567fce7e | a84a232366d1a4fa6b7e81d01c12dd4dff38eb1d | /Text/Text/main.cpp | 13b2e67f7acb6f53f7f2fe341eb4d7ad7f9b3368 | [] | no_license | TheYoungSmile/caoyang | 9c421210ee00109a8cd2750b14646ea449b3adb4 | 4186657cc959282e0cc6af3c138a1016d4673b82 | refs/heads/master | 2021-01-01T05:00:48.855463 | 2016-04-14T14:36:11 | 2016-04-14T14:36:11 | 56,241,907 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 349 | cpp | //
// main.cpp
// Text
//
// Created by caoyang on 16/4/14.
// Copyright © 2016年 neworigin. All rights reserved.
//
#include <iostream>
using namespace std;
#include "Point.hpp"
int main(int argc, const char * argv[]) {
// insert code here...
std::cout << "Hello, World!\n";
cout<<"23456789olkjhgf"<<endl;
return 0;
}
| [
"1069230922@qq.com"
] | 1069230922@qq.com |
f39b9de409a45e3b0fe18d7408de363cae87100a | d9dedff83f5ce38294450b3be1ba42dd094aa842 | /lib/eulerlib.cpp | bd65374f698c696c740958e94051f402f48f7e45 | [] | no_license | conditionZebra/Algorithms | 47466b5ed5895f0d0cf265c323b91bfd98c113f9 | 006bb8198586a2a15119b992870b74f9c815f3f6 | refs/heads/master | 2021-12-31T03:37:41.755868 | 2021-12-27T12:05:36 | 2021-12-27T12:05:36 | 80,654,944 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,944 | cpp | #include "eulerlib.h"
#include <string>
#include <sstream> // std::istringstream
#include <fstream>
#include <iostream>
namespace eulerlib
{
std::shared_ptr<stringVector> getAllStringFromCSV(const char* fileName)
{
std::shared_ptr<stringVector> returnList(new stringVector);
std::ifstream data(fileName);
std::string line;
while(std::getline(data,line))
{
std::stringstream lineStream(line);
std::string cell;
while(std::getline(lineStream,cell,','))
{
returnList->push_back(cell);
}
}
return returnList;
}
int getFactorial(int num)
{
if(num == 1 || num == 0)
return 1;
else
return num * getFactorial(num - 1);
}
bool isPrime(long num)
{
if(num <= 1)
return false;
for(long i = 2; i <= sqrt(num); i++)
if(num%i == 0)
return false;
// std::cout << num << std::endl;
return true;
}
bool isPalindrome(long num)
{
int length = numberOfDigits(num);
if(length == 1)
return true;
int upperDigit = 0;
int lowerDigit = 0;
if(length % 2)
{
lowerDigit = length / 2;
upperDigit = lowerDigit + 2;
}
else
{
upperDigit = length / 2 + 1;
lowerDigit = length / 2;
}
while(lowerDigit > 0)
{
if(getDigitFromPosition(num, upperDigit) != getDigitFromPosition(num, lowerDigit))
return false;
lowerDigit--;
upperDigit++;
}
return true;
}
int getDigitFromPosition(long long int num, int pos)
{
long long int tenPower = 1;
for(int i = 0; i < pos; i++)
tenPower *= 10;
num /= tenPower;
return num % 10;
}
int numberOfDigits(long num)
{
int result = 0;
while(num != 0)
{
num /= 10;
result++;
}
return result;
}
long long int stringToInt( const std::string& string)
{
long long int numb;
std::istringstream(string) >> numb;
return numb;
}
divisorMap* getDivisors(long long int num)
{
divisorMap* returnMap = new divisorMap;
if(isPrime(num))
{
(*returnMap)[num] = 1;
return returnMap;
}
int counter;
for(long long int i = 2; i <= sqrt(num) + 1; i++)
{
if(num%i == 0)
{
counter = 0;
while(num%i == 0)
{
counter++;
num = num / i;
}
(*returnMap)[i] = counter;
if(isPrime(num))
{
(*returnMap)[num] = 1;
return returnMap;
}
}
}
return returnMap;
}
allDivisorList* getAllDivisors(int num)
{
allDivisorList* returnList = new allDivisorList;
for(int i = 1; i <= num /2; i++)
{
if(num % i == 0)
returnList->push_back(i);
}
return returnList;
}
int getNumOfDivisors(int num)
{
divisorMap* divisors;
int numOfDivisors = 1;
divisors = getDivisors(num);
for (std::map<long long int,int>::iterator it=(*divisors).begin(); it!=(*divisors).end(); ++it)
{
numOfDivisors = numOfDivisors * (it->second + 1);
}
delete divisors;
return numOfDivisors;
}
}
| [
"zltn.csaszar@gmail.com"
] | zltn.csaszar@gmail.com |
6af605d782825909152d5658b674c4d2151ff10b | 93deffee902a42052d9f5fb01e516becafe45b34 | /cf/0630/C.cpp | 9558f4a1146c538121ce1efaee913edbf16426de | [] | no_license | kobortor/Competitive-Programming | 1aca670bc37ea6254eeabbe33e1ee016174551cc | 69197e664a71a492cb5b0311a9f7b00cf0b1ccba | refs/heads/master | 2023-06-25T05:04:42.492243 | 2023-06-16T18:28:42 | 2023-06-16T18:28:42 | 95,998,328 | 10 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 282 | cpp | #include<bits/stdc++.h>
using namespace std;
#define allof(x) (x).begin(), (x).end()
typedef long long ll;
typedef pair<int, int> pii;
typedef pair<ll, ll> pll;
int main(){
cin.tie(0);
cin.sync_with_stdio(0);
ll n;
cin >> n;
cout << (2ll << n) - 2;
}
| [
"kobortor@gmail.com"
] | kobortor@gmail.com |
fc4eb71a5586ca1723b1110bdb2975ea859d7ab7 | 145a8f3ffd94b119425899a4bc318ea41bf702c6 | /src/MRT.cpp | 85b2db15c5bdb1693c9972ba0b17201d64490ecd | [] | no_license | andrewthomasjones/RRMM | 68dfb4f45bcf3262ab4299775cfaea2af7d6abe4 | f641f3d89ef98dbc2f077120561c16ae8f876511 | refs/heads/master | 2021-07-25T22:25:23.179778 | 2017-11-08T07:04:14 | 2017-11-08T07:04:14 | 108,078,764 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,531 | cpp | // [[Rcpp::depends(RcppArmadillo)]]
// [[Rcpp::depends(BH)]]
// [[Rcpp::plugins(cpp11)]]
//'@importFrom Rcpp sourceCpp
//'@useDynLib MRT
#include "RcppArmadillo.h"
//BOOST
#include "boost/math/distributions/students_t.hpp"
#include "boost/program_options.hpp"
#include "boost/math/tools/roots.hpp"
#include "boost/math/special_functions/digamma.hpp"
#include <algorithm>
using namespace Rcpp;
Rcpp::NumericVector export_vec(arma::vec y)
{
Rcpp::NumericVector tmp = Rcpp::wrap(y);
tmp.attr("dim") = R_NilValue;
return tmp;
}
template <typename T> int sgn(T val) {
return (T(0) < val) - (val < T(0));
}
double phi(double d){
double c = 1.345;
double temp = 1.0;
if(std::abs(d) >= c) {
temp= c/std::abs(d);
}
return temp;
}
double phi2(double d){
double c = 4.685;
double temp = 0.0;
if(std::abs(d) < c) {
temp = std::pow(1-std::pow(d/c,2.0),2.0);
}
return temp;
}
double phi3(double d){
double c = 3;
double temp = 0.0;
if(std::abs(d) < c) {
temp = std::pow(1-std::pow(d/c,2.0),1.0);
}
return temp;
}
// [[Rcpp::export]]
double mahalanobis_c(double y, double mu, double sigma)
{
double delta = (y-mu)*(1./sigma)*(y-mu);
return delta;
}
// [[Rcpp::export]]
double mahalanobis_HD(arma::vec y, arma::vec mu, arma::mat sigma)
{
arma::vec d = y-mu;
double delta = std::sqrt(as_scalar(d.t()*pinv(sigma)*d));
return delta;
}
// [[Rcpp::export]]
double norm_HD(arma::vec y, arma::vec mu, arma::mat sigma)
{
int dim = y.n_elem;
double f1 = std::sqrt(std::pow(arma::datum::pi*2.0, dim)*det(sigma));
double f2 = std::exp(-0.5*mahalanobis_HD(y, mu, sigma));
double f = f1/f2;
return f;
}
// [[Rcpp::export]]
double norm_c(double y, double mu, double sigma)
{
double f = (1/(std::sqrt(arma::datum::pi*2.0*sigma))) * std::exp(-0.5*mahalanobis_c(y,mu,std::sqrt(sigma)));
// return(f <= std::pow(1, -100)) ? 0.0 : f;
return f;
}
arma::mat start_kmeans(arma::vec dat, int g){
arma::mat params(g,3, arma::fill::zeros);
arma::vec weights(1, arma::fill::ones);
arma::uvec alloc(dat.n_elem, arma::fill::zeros);
arma::uvec cluster_sizes(g, arma::fill::zeros);
Rcpp::Environment base("package:stats");
Rcpp::Function kmeans = base["kmeans"];
Rcpp::List res = kmeans(Rcpp::_["x"] = dat, Rcpp::_["centers"] = g);
arma::vec tmp_mu = res["centers"];
params.col(1) = tmp_mu;
for(int i=0; i<dat.n_elem;i++){
arma::vec temp = abs(params.col(1)- dat(i));
alloc.at(i) = arma::index_min(temp);
}
//cluster size and variance
for(int i =0; i<g;i++){
arma::uvec tmp1 = find(alloc == i);
cluster_sizes.at(i) = tmp1.n_elem;
params(i,2) = sum(pow(dat(tmp1)-params(i,1),2.0))/dat.n_elem;
}
params.col(0) = arma::conv_to< arma::vec >::from(cluster_sizes)/dat.n_elem;
return(params);
}
arma::mat start_random(arma::vec dat, int g){
arma::mat params(g,3, arma::fill::zeros);
arma::vec weights(1, arma::fill::ones);
arma::uvec alloc(dat.n_elem, arma::fill::zeros);
arma::uvec cluster_sizes(g, arma::fill::zeros);
return(params);
}
arma::mat start_kmeans2(arma::mat dat, int g){
arma::mat params(g,3, arma::fill::zeros);
arma::vec weights(1, arma::fill::ones);
arma::uvec alloc(dat.n_elem, arma::fill::zeros);
arma::uvec cluster_sizes(g, arma::fill::zeros);
Rcpp::Environment base("package:stats");
Rcpp::Function kmeans = base["kmeans"];
Rcpp::List res = kmeans(Rcpp::_["x"] = dat, Rcpp::_["centers"] = g);
arma::vec tmp_mu = res["centers"];
params.col(1) = tmp_mu;
for(int i=0; i<dat.n_elem;i++){
arma::vec temp = abs(params.col(1)- dat(i));
alloc.at(i) = arma::index_min(temp);
}
//cluster size and variance
for(int i =0; i<g;i++){
arma::uvec tmp1 = find(alloc == i);
cluster_sizes.at(i) = tmp1.n_elem;
params(i,2) = sum(pow(dat(tmp1)-params(i,1),2.0))/dat.n_elem;
}
params.col(0) = arma::conv_to< arma::vec >::from(cluster_sizes)/dat.n_elem;
return(params);
}
arma::mat start_random2(arma::vec dat, int g){
arma::mat params(g,3, arma::fill::zeros);
arma::vec weights(1, arma::fill::ones);
arma::uvec alloc(dat.n_elem, arma::fill::zeros);
arma::uvec cluster_sizes(g, arma::fill::zeros);
return(params);
}
//'@export
// [[Rcpp::export]]
Rcpp::List MMEst(const arma::mat& y, int g = 1, double tol = 0.00001, int max_iter = 100) {
int dim = y.n_cols;
Rcpp::List temp_list;
if(dim == 1){
int n = y.n_elem;
arma::mat d = arma::zeros(g,n);
arma::mat u = arma::zeros(g,n);
arma::mat w = arma::ones(g,n);
arma::mat tau = arma::zeros(g,n);
//allocate double
arma::vec mu = arma::zeros(g);
arma::vec sigma = arma::zeros(g);
arma::vec pi = arma::zeros(g);
double diff = 1.0;
arma::mat init_mat = arma::zeros(g,3);
init_mat = start_kmeans(y,g);
pi = init_mat.col(0);
mu = init_mat.col(1);
sigma = init_mat.col(2);
//allocated int
int k =0;
//iterative fit for M-est
while(diff>tol & k <max_iter ){
for(int i=0;i<g;i++){
double mu_i =mu(i);
double sigma_i = sigma(i);
arma::rowvec tmp = arma::zeros(1,n);
std::transform(y.begin(), y.end(), tmp.begin(), [mu_i, sigma_i](double dat) { return mahalanobis_c(dat, mu_i, std::sqrt(sigma_i)); });
d.row(i) = tmp;
std::transform(y.begin(), y.end(), tmp.begin(), [mu_i, sigma_i](double dat) {return norm_c(dat, mu_i, sigma_i);} );
tau.row(i) = pi(i)*tmp;
}
tau = tau.each_row() / sum(tau,0);
std::transform(d.begin(), d.end(), w.begin(), [](double val) { return phi(val);} );
u = w;
for(int i=0;i<g;i++){
mu(i) = sum(tau.row(i)%u.row(i)%y.t()) / sum(tau.row(i)%u.row(i));
double mu_i = mu(i);
arma::rowvec tmp = y.t() - mu_i;
sigma(i) = sum(tau.row(i)%u.row(i)%(tmp)%(tmp))/ sum(tau.row(i)); //sum(tau.row(i));
pi(i)= sum(tau.row(i))/accu(tau);
}
++k;
}
temp_list = Rcpp::List::create(
Rcpp::Named("mu")= export_vec(mu),
Rcpp::Named("sigma") = export_vec(sigma),
Rcpp::Named("pi") = export_vec(pi),
Rcpp::Named("tau") = tau,
Rcpp::Named("g") = g,
Rcpp::Named("n_iter") =k
);
}else{
int n = y.n_rows;
arma::mat d = arma::zeros(g,n);
arma::mat u = arma::zeros(g,n);
arma::mat w = arma::ones(g,n);
arma::mat tau = arma::zeros(g,n);
//allocate double
arma::mat mu = arma::zeros(g,dim);
arma::cube sigma = arma::zeros(g,dim,dim);
arma::vec pi = arma::zeros(g);
double diff = 1.0;
arma::mat init_mat = arma::zeros(g,3);
init_mat = start_kmeans2(y,g);
pi = init_mat.col(0);
//sigma = init_mat.col(1);
mu = init_mat.col(2);
//allocated int
int k =0;
//iterative fit for M-est
while(diff>tol & k <max_iter ){
for(int i=0;i<g;i++){
arma::vec mu_i = mu.row(i);
arma::mat sigma_i = sigma.slice(i);
arma::rowvec tmp = arma::zeros(1,n);
for(int j=0;j<n;j++){
tmp(i) = mahalanobis_HD(y.row(i), mu_i, sigma_i);
}
d.row(i) = tmp;
for(int j=0;j<n;j++){
tmp(i) = norm_HD(y.row(i), mu_i, sigma_i);
}
tau.row(i) = pi(i)*tmp;
}
tau = tau.each_row() / sum(tau,0);
std::transform(d.begin(), d.end(), w.begin(), [](double val) { return phi(val);} );
u = w;
for(int i=0;i<g;i++){
mu.row(i) = sum(tau.row(i)%u.row(i)%y.t()) / sum(tau.row(i)%u.row(i));
arma::vec mu_i = mu.row(i);
arma::mat tmp = y.each_row() - mu_i;
sigma.slice(i) = sum(tau.row(i)%u.row(i)%(tmp)%(tmp))/ sum(tau.row(i)); //sum(tau.row(i));
pi(i)= sum(tau.row(i))/accu(tau);
}
++k;
}
temp_list = Rcpp::List::create(
Rcpp::Named("mu")= (mu),
Rcpp::Named("sigma") = sigma,
Rcpp::Named("pi") = export_vec(pi),
Rcpp::Named("tau") = tau,
Rcpp::Named("g") = g,
Rcpp::Named("n_iter") =k
);
}
return temp_list;
}
| [
"andrewthomasjones@gmail.com"
] | andrewthomasjones@gmail.com |
20d6452f9c1f8dd7b5d6ebbcd17bc13a42624b62 | 312904f23d5aa152081ad66cd8f19c717f4e86a7 | /Divisible/Divisible.h | b375dda98f944eff1dc36ce51693dd915434428a | [] | no_license | jesus2708/Divisible | ac651b173aaebb5b346032cd1b9b54d55800abf1 | a6e20e4b8d3d9a47e1fb9e541644af118e1331e4 | refs/heads/master | 2020-07-10T00:29:47.178015 | 2017-06-13T23:57:15 | 2017-06-13T23:57:15 | 94,265,529 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,391 | h | #pragma once //______________________________________ Divisible.h
#include "Resource.h"
class Divisible: public Win::Dialog
{
public:
Divisible()
{
}
~Divisible()
{
}
protected:
//______ Wintempla GUI manager section begin: DO NOT EDIT AFTER THIS LINE
Win::Label lb1;
Win::Textbox tbxNumero1;
Win::Label lb2;
Win::Textbox tbxNumero2;
Win::Textbox tbxResultado;
Win::Button btCalcular;
protected:
Win::Gdi::Font fontArial009A;
void GetDialogTemplate(DLGTEMPLATE& dlgTemplate)
{
dlgTemplate.cx=Sys::Convert::CentimetersToDlgUnitX(10.82146);
dlgTemplate.cy=Sys::Convert::CentimetersToDlgUnitY(2.91042);
dlgTemplate.style = WS_CAPTION | WS_POPUP | WS_SYSMENU | WS_VISIBLE | DS_CENTER | DS_MODALFRAME;
}
//_________________________________________________
void InitializeGui()
{
this->Text = L"Divisible";
lb1.CreateX(NULL, L"numero 1", WS_CHILD | WS_VISIBLE | SS_LEFT | SS_WINNORMAL, 0.58208, 0.37042, 2.22250, 0.60854, hWnd, 1000);
tbxNumero1.CreateX(WS_EX_CLIENTEDGE, NULL, WS_CHILD | WS_TABSTOP | WS_VISIBLE | ES_AUTOHSCROLL | ES_LEFT | ES_WINNORMALCASE, 0.50271, 1.29646, 2.30187, 0.60854, hWnd, 1001);
lb2.CreateX(NULL, L"Numero 2", WS_CHILD | WS_VISIBLE | SS_LEFT | SS_WINNORMAL, 4.49792, 0.44979, 2.43417, 0.60854, hWnd, 1002);
tbxNumero2.CreateX(WS_EX_CLIENTEDGE, NULL, WS_CHILD | WS_TABSTOP | WS_VISIBLE | ES_AUTOHSCROLL | ES_LEFT | ES_WINNORMALCASE, 4.47146, 1.27000, 2.43417, 0.60854, hWnd, 1003);
tbxResultado.CreateX(WS_EX_CLIENTEDGE, NULL, WS_CHILD | WS_TABSTOP | WS_VISIBLE | ES_AUTOHSCROLL | ES_READONLY | ES_LEFT | ES_WINNORMALCASE, 0.47625, 2.11667, 6.61458, 0.60854, hWnd, 1004);
btCalcular.CreateX(NULL, L"Calcular", WS_CHILD | WS_TABSTOP | WS_VISIBLE | BS_PUSHBUTTON | BS_CENTER | BS_VCENTER, 7.93750, 0.92604, 2.69875, 0.68792, hWnd, 1005);
fontArial009A.CreateX(L"Arial", 0.317500, false, false, false, false);
lb1.Font = fontArial009A;
tbxNumero1.Font = fontArial009A;
lb2.Font = fontArial009A;
tbxNumero2.Font = fontArial009A;
tbxResultado.Font = fontArial009A;
btCalcular.Font = fontArial009A;
}
//_________________________________________________
void btCalcular_Click(Win::Event& e);
void Window_Open(Win::Event& e);
//_________________________________________________
bool EventHandler(Win::Event& e)
{
if (btCalcular.IsEvent(e, BN_CLICKED)) {btCalcular_Click(e); return true;}
return false;
}
};
| [
"calderon3356@hotmail.com"
] | calderon3356@hotmail.com |
182f37c7bdd3ec2afc8dbbf6e8c3232225ff20bd | 399b5e377fdd741fe6e7b845b70491b9ce2cccfd | /LLVM_src/libcxx/test/std/utilities/allocator.adaptor/allocator.adaptor.cnstr/copy.pass.cpp | 38878e234e9217ca6ca81da2d23ff44eb7c36178 | [
"NCSA",
"LLVM-exception",
"MIT",
"Apache-2.0"
] | permissive | zslwyuan/LLVM-9-for-Light-HLS | 6ebdd03769c6b55e5eec923cb89e4a8efc7dc9ab | ec6973122a0e65d963356e0fb2bff7488150087c | refs/heads/master | 2021-06-30T20:12:46.289053 | 2020-12-07T07:52:19 | 2020-12-07T07:52:19 | 203,967,206 | 1 | 3 | null | 2019-10-29T14:45:36 | 2019-08-23T09:25:42 | C++ | UTF-8 | C++ | false | false | 2,160 | cpp | //===----------------------------------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
// UNSUPPORTED: c++98, c++03
// <memory>
// template <class OuterAlloc, class... InnerAllocs>
// class scoped_allocator_adaptor
// scoped_allocator_adaptor(const scoped_allocator_adaptor& other);
#include <scoped_allocator>
#include <cassert>
#include "allocators.h"
int main()
{
{
typedef std::scoped_allocator_adaptor<A1<int>> A;
A a1(A1<int>(3));
A1<int>::copy_called = false;
A1<int>::move_called = false;
A a2 = a1;
assert(A1<int>::copy_called == true);
assert(A1<int>::move_called == false);
assert(a2 == a1);
}
{
typedef std::scoped_allocator_adaptor<A1<int>, A2<int>> A;
A a1(A1<int>(4), A2<int>(5));
A1<int>::copy_called = false;
A1<int>::move_called = false;
A2<int>::copy_called = false;
A2<int>::move_called = false;
A a2 = a1;
assert(A1<int>::copy_called == true);
assert(A1<int>::move_called == false);
assert(A2<int>::copy_called == true);
assert(A2<int>::move_called == false);
assert(a2 == a1);
}
{
typedef std::scoped_allocator_adaptor<A1<int>, A2<int>, A3<int>> A;
A a1(A1<int>(4), A2<int>(5), A3<int>(6));
A1<int>::copy_called = false;
A1<int>::move_called = false;
A2<int>::copy_called = false;
A2<int>::move_called = false;
A3<int>::copy_called = false;
A3<int>::move_called = false;
A a2 = a1;
assert(A1<int>::copy_called == true);
assert(A1<int>::move_called == false);
assert(A2<int>::copy_called == true);
assert(A2<int>::move_called == false);
assert(A3<int>::copy_called == true);
assert(A3<int>::move_called == false);
assert(a2 == a1);
}
}
| [
"tliang@connect.ust.hk"
] | tliang@connect.ust.hk |
ec41abfa0eeef9447edd1bc4a600f98e67c34b10 | 5d2445f14a9a3505ffe5700e484982f420863886 | /DirectX_Frame/DirectX_Frame/cGrid.cpp | 620c6ae2817f7c8e487cb3694dc1f128bfe9b6f9 | [] | no_license | MinHyukKim/Mojak3 | ee705c02d5261aa0f35a9f2a09cfb68ad92ec4b5 | e6c9090256fb6b25a1880fe9854a069ee45896b6 | refs/heads/master | 2021-01-21T12:16:39.762585 | 2018-11-02T07:27:53 | 2018-11-02T07:27:53 | 102,059,162 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,032 | cpp | #include "StdAfx.h"
#include "cGrid.h"
#include "cPyramid.h"
cGrid::cGrid(void)
{
}
cGrid::~cGrid(void)
{
for each(auto p in m_vecPyramid)
{
SAFE_RELEASE(p);
}
}
void cGrid::Setup( int nNumLine, float fInterval )
{
int nHalfNumLine = nNumLine / 2;
float fMax = fabs(nHalfNumLine * fInterval);
D3DCOLOR c = D3DCOLOR_XRGB(255, 255, 255);
for (int i = 1; i <= nHalfNumLine; ++i)
{
if( i % 5 == 0 )
c = D3DCOLOR_XRGB(255, 255, 255);
else
c = D3DCOLOR_XRGB(155, 155, 155);
m_vecVertex.reserve(16);
m_vecVertex.push_back(ST_PC_VERTEX(D3DXVECTOR3(-fMax, 0, i * fInterval), c));
m_vecVertex.push_back(ST_PC_VERTEX(D3DXVECTOR3( fMax, 0, i * fInterval), c));
m_vecVertex.push_back(ST_PC_VERTEX(D3DXVECTOR3(-fMax, 0, -i * fInterval), c));
m_vecVertex.push_back(ST_PC_VERTEX(D3DXVECTOR3( fMax, 0, -i * fInterval), c));
m_vecVertex.push_back(ST_PC_VERTEX(D3DXVECTOR3( i * fInterval, 0, -fMax), c));
m_vecVertex.push_back(ST_PC_VERTEX(D3DXVECTOR3( i * fInterval, 0, fMax), c));
m_vecVertex.push_back(ST_PC_VERTEX(D3DXVECTOR3(-i * fInterval, 0, -fMax), c));
m_vecVertex.push_back(ST_PC_VERTEX(D3DXVECTOR3(-i * fInterval, 0, fMax), c));
}
c = D3DCOLOR_XRGB(255, 0, 0);
m_vecVertex.push_back(ST_PC_VERTEX(D3DXVECTOR3(-fMax, 0, 0), c));
m_vecVertex.push_back(ST_PC_VERTEX(D3DXVECTOR3( fMax, 0, 0), c));
c = D3DCOLOR_XRGB(0, 255, 0);
m_vecVertex.push_back(ST_PC_VERTEX(D3DXVECTOR3( 0,-fMax, 0), c));
m_vecVertex.push_back(ST_PC_VERTEX(D3DXVECTOR3( 0, fMax, 0), c));
c = D3DCOLOR_XRGB(0, 0, 255);
m_vecVertex.push_back(ST_PC_VERTEX(D3DXVECTOR3( 0, 0,-fMax), c));
m_vecVertex.push_back(ST_PC_VERTEX(D3DXVECTOR3( 0, 0, fMax), c));
D3DXMATRIX matS, matR, mat;
D3DXMatrixScaling(&matS, 0.1f, 2.0f, 0.1f);
cPyramid* pPyramid = cPyramid::Create();
D3DXMatrixRotationZ(&matR, D3DX_PI / 2.0f);
mat = matS * matR;
pPyramid->Setup(&mat, D3DCOLOR_XRGB(255, 0, 0));
m_vecPyramid.push_back(pPyramid);
pPyramid = cPyramid::Create();
D3DXMatrixRotationZ(&matR, D3DX_PI);
mat = matS * matR;
pPyramid->Setup(&mat, D3DCOLOR_XRGB(0, 255, 0));
m_vecPyramid.push_back(pPyramid);
pPyramid = cPyramid::Create();
D3DXMatrixRotationX(&matR, -D3DX_PI / 2.0f);
mat = matS * matR;
pPyramid->Setup(&mat, D3DCOLOR_XRGB(0, 0, 255));
m_vecPyramid.push_back(pPyramid);
}
void cGrid::Render()
{
DWORD dwPrev;
g_pD3DDevice->GetRenderState(D3DRS_LIGHTING, &dwPrev);
g_pD3DDevice->SetRenderState(D3DRS_LIGHTING, false);
D3DXMATRIX matWorld;
D3DXMatrixIdentity(&matWorld);
g_pD3DDevice->SetTransform(D3DTS_WORLD, &matWorld);
g_pD3DDevice->SetTexture(0, NULL);
g_pD3DDevice->SetFVF(ST_PC_VERTEX::FVF);
g_pD3DDevice->DrawPrimitiveUP(D3DPT_LINELIST,
m_vecVertex.size() / 2,
&m_vecVertex[0],
sizeof(ST_PC_VERTEX));
g_pD3DDevice->SetRenderState(D3DRS_LIGHTING, true);
for each(auto p in m_vecPyramid)
{
p->Render();
}
g_pD3DDevice->SetRenderState(D3DRS_LIGHTING, (bool)dwPrev);
}
cGrid* cGrid::Create(void)
{
cGrid* newClass = new cGrid;
newClass->AddRef();
return newClass;
}
| [
"rlaalsgur05@naver.com"
] | rlaalsgur05@naver.com |
ea472d6ca6f533b51722b2639e0b3139ca7a13ff | 43f7d99daae7bde69fdd80605462560808b6de16 | /inc/simple-win32/mfc/FlashCtrl.h | 55c930bec523f055e338713531f86ff7ca84915d | [
"MIT"
] | permissive | brucezhang80/simple-cpp-win32 | 4e1238c700dd4b12a1d507c8a298c87c44e01ba3 | 06e3bf61f4c8c70ae9c2f285a6bf161c00468dcd | refs/heads/master | 2021-05-11T04:23:58.662667 | 2017-05-26T09:06:31 | 2017-05-26T09:06:31 | null | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 17,034 | h | #pragma once
// 计算机生成了由 Microsoft Visual C++ 创建的 IDispatch 包装类
// 注意: 不要修改此文件的内容。如果此类由
// Microsoft Visual C++ 重新生成,您的修改将被覆盖。
/////////////////////////////////////////////////////////////////////////////
// FlashCtrl 包装类
class FlashCtrl : public CWnd {
protected:
DECLARE_DYNCREATE(FlashCtrl)
public:
CLSID const& GetClsid() {
static CLSID const clsid
= { 0xD27CDB6E, 0xAE6D, 0x11CF, { 0x96, 0xB8, 0x44, 0x45, 0x53, 0x54, 0x0, 0x0 } };
return clsid;
}
virtual BOOL Create(LPCTSTR lpszClassName, LPCTSTR lpszWindowName, DWORD dwStyle,
const RECT& rect, CWnd* pParentWnd, UINT nID,
CCreateContext* pContext = NULL) {
return CreateControl(GetClsid(), lpszWindowName, dwStyle, rect, pParentWnd, nID);
}
BOOL Create(LPCTSTR lpszWindowName, DWORD dwStyle, const RECT& rect, CWnd* pParentWnd,
UINT nID, CFile* pPersist = NULL, BOOL bStorage = FALSE,
BSTR bstrLicKey = NULL) {
return CreateControl(GetClsid(), lpszWindowName, dwStyle, rect, pParentWnd, nID,
pPersist, bStorage, bstrLicKey);
}
// 特性
public:
// 操作
public:
// IShockwaveFlash
// Functions
//
long get_ReadyState() {
long result;
InvokeHelper(DISPID_READYSTATE, DISPATCH_PROPERTYGET, VT_I4, (void*)&result, NULL);
return result;
}
long get_TotalFrames() {
long result;
InvokeHelper(0x7c, DISPATCH_PROPERTYGET, VT_I4, (void*)&result, NULL);
return result;
}
BOOL get_Playing() {
BOOL result;
InvokeHelper(0x7d, DISPATCH_PROPERTYGET, VT_BOOL, (void*)&result, NULL);
return result;
}
void put_Playing(BOOL newValue) {
static BYTE parms[] = VTS_BOOL ;
InvokeHelper(0x7d, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms, newValue);
}
long get_Quality() {
long result;
InvokeHelper(0x69, DISPATCH_PROPERTYGET, VT_I4, (void*)&result, NULL);
return result;
}
void put_Quality(long newValue) {
static BYTE parms[] = VTS_I4 ;
InvokeHelper(0x69, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms, newValue);
}
long get_ScaleMode() {
long result;
InvokeHelper(0x78, DISPATCH_PROPERTYGET, VT_I4, (void*)&result, NULL);
return result;
}
void put_ScaleMode(long newValue) {
static BYTE parms[] = VTS_I4 ;
InvokeHelper(0x78, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms, newValue);
}
long get_AlignMode() {
long result;
InvokeHelper(0x79, DISPATCH_PROPERTYGET, VT_I4, (void*)&result, NULL);
return result;
}
void put_AlignMode(long newValue) {
static BYTE parms[] = VTS_I4 ;
InvokeHelper(0x79, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms, newValue);
}
long get_BackgroundColor() {
long result;
InvokeHelper(0x7b, DISPATCH_PROPERTYGET, VT_I4, (void*)&result, NULL);
return result;
}
void put_BackgroundColor(long newValue) {
static BYTE parms[] = VTS_I4 ;
InvokeHelper(0x7b, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms, newValue);
}
BOOL get_Loop() {
BOOL result;
InvokeHelper(0x6a, DISPATCH_PROPERTYGET, VT_BOOL, (void*)&result, NULL);
return result;
}
void put_Loop(BOOL newValue) {
static BYTE parms[] = VTS_BOOL ;
InvokeHelper(0x6a, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms, newValue);
}
CString get_Movie() {
CString result;
InvokeHelper(0x66, DISPATCH_PROPERTYGET, VT_BSTR, (void*)&result, NULL);
return result;
}
void put_Movie(LPCTSTR newValue) {
static BYTE parms[] = VTS_BSTR ;
InvokeHelper(0x66, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms, newValue);
}
long get_FrameNum() {
long result;
InvokeHelper(0x6b, DISPATCH_PROPERTYGET, VT_I4, (void*)&result, NULL);
return result;
}
void put_FrameNum(long newValue) {
static BYTE parms[] = VTS_I4 ;
InvokeHelper(0x6b, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms, newValue);
}
void SetZoomRect(long left, long top, long right, long bottom) {
static BYTE parms[] = VTS_I4 VTS_I4 VTS_I4 VTS_I4 ;
InvokeHelper(0x6d, DISPATCH_METHOD, VT_EMPTY, NULL, parms, left, top, right, bottom);
}
void Zoom(long factor) {
static BYTE parms[] = VTS_I4 ;
InvokeHelper(0x76, DISPATCH_METHOD, VT_EMPTY, NULL, parms, factor);
}
void Pan(long x, long y, long mode) {
static BYTE parms[] = VTS_I4 VTS_I4 VTS_I4 ;
InvokeHelper(0x77, DISPATCH_METHOD, VT_EMPTY, NULL, parms, x, y, mode);
}
void Play() {
InvokeHelper(0x70, DISPATCH_METHOD, VT_EMPTY, NULL, NULL);
}
void Stop() {
InvokeHelper(0x71, DISPATCH_METHOD, VT_EMPTY, NULL, NULL);
}
void Back() {
InvokeHelper(0x72, DISPATCH_METHOD, VT_EMPTY, NULL, NULL);
}
void Forward() {
InvokeHelper(0x73, DISPATCH_METHOD, VT_EMPTY, NULL, NULL);
}
void Rewind() {
InvokeHelper(0x74, DISPATCH_METHOD, VT_EMPTY, NULL, NULL);
}
void StopPlay() {
InvokeHelper(0x7e, DISPATCH_METHOD, VT_EMPTY, NULL, NULL);
}
void GotoFrame(long FrameNum) {
static BYTE parms[] = VTS_I4 ;
InvokeHelper(0x7f, DISPATCH_METHOD, VT_EMPTY, NULL, parms, FrameNum);
}
long CurrentFrame() {
long result;
InvokeHelper(0x80, DISPATCH_METHOD, VT_I4, (void*)&result, NULL);
return result;
}
BOOL IsPlaying() {
BOOL result;
InvokeHelper(0x81, DISPATCH_METHOD, VT_BOOL, (void*)&result, NULL);
return result;
}
long PercentLoaded() {
long result;
InvokeHelper(0x82, DISPATCH_METHOD, VT_I4, (void*)&result, NULL);
return result;
}
BOOL FrameLoaded(long FrameNum) {
BOOL result;
static BYTE parms[] = VTS_I4 ;
InvokeHelper(0x83, DISPATCH_METHOD, VT_BOOL, (void*)&result, parms, FrameNum);
return result;
}
long FlashVersion() {
long result;
InvokeHelper(0x84, DISPATCH_METHOD, VT_I4, (void*)&result, NULL);
return result;
}
CString get_WMode() {
CString result;
InvokeHelper(0x85, DISPATCH_PROPERTYGET, VT_BSTR, (void*)&result, NULL);
return result;
}
void put_WMode(LPCTSTR newValue) {
static BYTE parms[] = VTS_BSTR ;
InvokeHelper(0x85, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms, newValue);
}
CString get_SAlign() {
CString result;
InvokeHelper(0x86, DISPATCH_PROPERTYGET, VT_BSTR, (void*)&result, NULL);
return result;
}
void put_SAlign(LPCTSTR newValue) {
static BYTE parms[] = VTS_BSTR ;
InvokeHelper(0x86, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms, newValue);
}
BOOL get_Menu() {
BOOL result;
InvokeHelper(0x87, DISPATCH_PROPERTYGET, VT_BOOL, (void*)&result, NULL);
return result;
}
void put_Menu(BOOL newValue) {
static BYTE parms[] = VTS_BOOL ;
InvokeHelper(0x87, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms, newValue);
}
CString get_Base() {
CString result;
InvokeHelper(0x88, DISPATCH_PROPERTYGET, VT_BSTR, (void*)&result, NULL);
return result;
}
void put_Base(LPCTSTR newValue) {
static BYTE parms[] = VTS_BSTR ;
InvokeHelper(0x88, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms, newValue);
}
CString get_Scale() {
CString result;
InvokeHelper(0x89, DISPATCH_PROPERTYGET, VT_BSTR, (void*)&result, NULL);
return result;
}
void put_Scale(LPCTSTR newValue) {
static BYTE parms[] = VTS_BSTR ;
InvokeHelper(0x89, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms, newValue);
}
BOOL get_DeviceFont() {
BOOL result;
InvokeHelper(0x8a, DISPATCH_PROPERTYGET, VT_BOOL, (void*)&result, NULL);
return result;
}
void put_DeviceFont(BOOL newValue) {
static BYTE parms[] = VTS_BOOL ;
InvokeHelper(0x8a, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms, newValue);
}
BOOL get_EmbedMovie() {
BOOL result;
InvokeHelper(0x8b, DISPATCH_PROPERTYGET, VT_BOOL, (void*)&result, NULL);
return result;
}
void put_EmbedMovie(BOOL newValue) {
static BYTE parms[] = VTS_BOOL ;
InvokeHelper(0x8b, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms, newValue);
}
CString get_BGColor() {
CString result;
InvokeHelper(0x8c, DISPATCH_PROPERTYGET, VT_BSTR, (void*)&result, NULL);
return result;
}
void put_BGColor(LPCTSTR newValue) {
static BYTE parms[] = VTS_BSTR ;
InvokeHelper(0x8c, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms, newValue);
}
CString get_Quality2() {
CString result;
InvokeHelper(0x8d, DISPATCH_PROPERTYGET, VT_BSTR, (void*)&result, NULL);
return result;
}
void put_Quality2(LPCTSTR newValue) {
static BYTE parms[] = VTS_BSTR ;
InvokeHelper(0x8d, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms, newValue);
}
void LoadMovie(long layer, LPCTSTR url) {
static BYTE parms[] = VTS_I4 VTS_BSTR ;
InvokeHelper(0x8e, DISPATCH_METHOD, VT_EMPTY, NULL, parms, layer, url);
}
void TGotoFrame(LPCTSTR target, long FrameNum) {
static BYTE parms[] = VTS_BSTR VTS_I4 ;
InvokeHelper(0x8f, DISPATCH_METHOD, VT_EMPTY, NULL, parms, target, FrameNum);
}
void TGotoLabel(LPCTSTR target, LPCTSTR label) {
static BYTE parms[] = VTS_BSTR VTS_BSTR ;
InvokeHelper(0x90, DISPATCH_METHOD, VT_EMPTY, NULL, parms, target, label);
}
long TCurrentFrame(LPCTSTR target) {
long result;
static BYTE parms[] = VTS_BSTR ;
InvokeHelper(0x91, DISPATCH_METHOD, VT_I4, (void*)&result, parms, target);
return result;
}
CString TCurrentLabel(LPCTSTR target) {
CString result;
static BYTE parms[] = VTS_BSTR ;
InvokeHelper(0x92, DISPATCH_METHOD, VT_BSTR, (void*)&result, parms, target);
return result;
}
void TPlay(LPCTSTR target) {
static BYTE parms[] = VTS_BSTR ;
InvokeHelper(0x93, DISPATCH_METHOD, VT_EMPTY, NULL, parms, target);
}
void TStopPlay(LPCTSTR target) {
static BYTE parms[] = VTS_BSTR ;
InvokeHelper(0x94, DISPATCH_METHOD, VT_EMPTY, NULL, parms, target);
}
void SetVariable(LPCTSTR name, LPCTSTR value) {
static BYTE parms[] = VTS_BSTR VTS_BSTR ;
InvokeHelper(0x97, DISPATCH_METHOD, VT_EMPTY, NULL, parms, name, value);
}
CString GetVariable(LPCTSTR name) {
CString result;
static BYTE parms[] = VTS_BSTR ;
InvokeHelper(0x98, DISPATCH_METHOD, VT_BSTR, (void*)&result, parms, name);
return result;
}
void TSetProperty(LPCTSTR target, long property, LPCTSTR value) {
static BYTE parms[] = VTS_BSTR VTS_I4 VTS_BSTR ;
InvokeHelper(0x99, DISPATCH_METHOD, VT_EMPTY, NULL, parms, target, property, value);
}
CString TGetProperty(LPCTSTR target, long property) {
CString result;
static BYTE parms[] = VTS_BSTR VTS_I4 ;
InvokeHelper(0x9a, DISPATCH_METHOD, VT_BSTR, (void*)&result, parms, target, property);
return result;
}
void TCallFrame(LPCTSTR target, long FrameNum) {
static BYTE parms[] = VTS_BSTR VTS_I4 ;
InvokeHelper(0x9b, DISPATCH_METHOD, VT_EMPTY, NULL, parms, target, FrameNum);
}
void TCallLabel(LPCTSTR target, LPCTSTR label) {
static BYTE parms[] = VTS_BSTR VTS_BSTR ;
InvokeHelper(0x9c, DISPATCH_METHOD, VT_EMPTY, NULL, parms, target, label);
}
void TSetPropertyNum(LPCTSTR target, long property, double value) {
static BYTE parms[] = VTS_BSTR VTS_I4 VTS_R8 ;
InvokeHelper(0x9d, DISPATCH_METHOD, VT_EMPTY, NULL, parms, target, property, value);
}
double TGetPropertyNum(LPCTSTR target, long property) {
double result;
static BYTE parms[] = VTS_BSTR VTS_I4 ;
InvokeHelper(0x9e, DISPATCH_METHOD, VT_R8, (void*)&result, parms, target, property);
return result;
}
double TGetPropertyAsNumber(LPCTSTR target, long property) {
double result;
static BYTE parms[] = VTS_BSTR VTS_I4 ;
InvokeHelper(0xac, DISPATCH_METHOD, VT_R8, (void*)&result, parms, target, property);
return result;
}
CString get_SWRemote() {
CString result;
InvokeHelper(0x9f, DISPATCH_PROPERTYGET, VT_BSTR, (void*)&result, NULL);
return result;
}
void put_SWRemote(LPCTSTR newValue) {
static BYTE parms[] = VTS_BSTR ;
InvokeHelper(0x9f, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms, newValue);
}
CString get_FlashVars() {
CString result;
InvokeHelper(0xaa, DISPATCH_PROPERTYGET, VT_BSTR, (void*)&result, NULL);
return result;
}
void put_FlashVars(LPCTSTR newValue) {
static BYTE parms[] = VTS_BSTR ;
InvokeHelper(0xaa, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms, newValue);
}
CString get_AllowScriptAccess() {
CString result;
InvokeHelper(0xab, DISPATCH_PROPERTYGET, VT_BSTR, (void*)&result, NULL);
return result;
}
void put_AllowScriptAccess(LPCTSTR newValue) {
static BYTE parms[] = VTS_BSTR ;
InvokeHelper(0xab, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms, newValue);
}
CString get_MovieData() {
CString result;
InvokeHelper(0xbe, DISPATCH_PROPERTYGET, VT_BSTR, (void*)&result, NULL);
return result;
}
void put_MovieData(LPCTSTR newValue) {
static BYTE parms[] = VTS_BSTR ;
InvokeHelper(0xbe, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms, newValue);
}
LPUNKNOWN get_InlineData() {
LPUNKNOWN result;
InvokeHelper(0xbf, DISPATCH_PROPERTYGET, VT_UNKNOWN, (void*)&result, NULL);
return result;
}
void put_InlineData(LPUNKNOWN newValue) {
static BYTE parms[] = VTS_UNKNOWN ;
InvokeHelper(0xbf, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms, newValue);
}
BOOL get_SeamlessTabbing() {
BOOL result;
InvokeHelper(0xc0, DISPATCH_PROPERTYGET, VT_BOOL, (void*)&result, NULL);
return result;
}
void put_SeamlessTabbing(BOOL newValue) {
static BYTE parms[] = VTS_BOOL ;
InvokeHelper(0xc0, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms, newValue);
}
void EnforceLocalSecurity() {
InvokeHelper(0xc1, DISPATCH_METHOD, VT_EMPTY, NULL, NULL);
}
BOOL get_Profile() {
BOOL result;
InvokeHelper(0xc2, DISPATCH_PROPERTYGET, VT_BOOL, (void*)&result, NULL);
return result;
}
void put_Profile(BOOL newValue) {
static BYTE parms[] = VTS_BOOL ;
InvokeHelper(0xc2, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms, newValue);
}
CString get_ProfileAddress() {
CString result;
InvokeHelper(0xc3, DISPATCH_PROPERTYGET, VT_BSTR, (void*)&result, NULL);
return result;
}
void put_ProfileAddress(LPCTSTR newValue) {
static BYTE parms[] = VTS_BSTR ;
InvokeHelper(0xc3, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms, newValue);
}
long get_ProfilePort() {
long result;
InvokeHelper(0xc4, DISPATCH_PROPERTYGET, VT_I4, (void*)&result, NULL);
return result;
}
void put_ProfilePort(long newValue) {
static BYTE parms[] = VTS_I4 ;
InvokeHelper(0xc4, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms, newValue);
}
CString CallFunction(LPCTSTR request) {
CString result;
static BYTE parms[] = VTS_BSTR ;
InvokeHelper(0xc6, DISPATCH_METHOD, VT_BSTR, (void*)&result, parms, request);
return result;
}
void SetReturnValue(LPCTSTR returnValue) {
static BYTE parms[] = VTS_BSTR ;
InvokeHelper(0xc7, DISPATCH_METHOD, VT_EMPTY, NULL, parms, returnValue);
}
void DisableLocalSecurity() {
InvokeHelper(0xc8, DISPATCH_METHOD, VT_EMPTY, NULL, NULL);
}
CString get_AllowNetworking() {
CString result;
InvokeHelper(0xc9, DISPATCH_PROPERTYGET, VT_BSTR, (void*)&result, NULL);
return result;
}
void put_AllowNetworking(LPCTSTR newValue) {
static BYTE parms[] = VTS_BSTR ;
InvokeHelper(0xc9, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms, newValue);
}
CString get_AllowFullScreen() {
CString result;
InvokeHelper(0xca, DISPATCH_PROPERTYGET, VT_BSTR, (void*)&result, NULL);
return result;
}
void put_AllowFullScreen(LPCTSTR newValue) {
static BYTE parms[] = VTS_BSTR ;
InvokeHelper(0xca, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms, newValue);
}
// Properties
//
};
| [
"ximenpo@jiandan.ren"
] | ximenpo@jiandan.ren |
b65d5c32e16702e2a89a1977e11534974671324a | 9f6ac63e81535daeb55611d66560ab2a87fc9d8c | /libs/vislib/net/include/vislib/DNS.h | ae7806af468e744daf99adcad80f8a4678b6a1ef | [] | no_license | ComputationalRadiationPhysics/rivlib | 68e4de9cc98f62112ec21a05d68c406ef580a32d | 1a838630400892a53ff7eb120aec4282fc9967ac | refs/heads/master | 2021-01-21T05:00:23.480426 | 2016-05-23T07:29:51 | 2016-05-23T07:29:51 | 29,530,946 | 3 | 1 | null | 2016-05-23T07:29:51 | 2015-01-20T13:27:18 | C++ | ISO-8859-3 | C++ | false | false | 14,944 | h | /*
* DNS.h
*
* Copyright (C) 2009 by Christoph Müller. Alle Rechte vorbehalten.
* Copyright (C) 2006 - 2008 by Universitaet Stuttgart (VIS).
* Alle Rechte vorbehalten.
*/
#ifndef VISLIB_DNS_H_INCLUDED
#define VISLIB_DNS_H_INCLUDED
#if (defined(_MSC_VER) && (_MSC_VER > 1000))
#pragma once
#endif /* (defined(_MSC_VER) && (_MSC_VER > 1000)) */
#if defined(_WIN32) && defined(_MANAGED)
#pragma managed(push, off)
#endif /* defined(_WIN32) && defined(_MANAGED) */
#include "vislib/IPAddress.h"
#include "vislib/IPAddress6.h"
#include "vislib/IPAgnosticAddress.h"
#include "vislib/IPHostEntry.h"
#include "vislib/String.h"
namespace vislib {
namespace net {
/**
* This class povides DNS queries via static methods.
*/
class DNS {
public:
/**
* Answer any of the IP addresses of the host identified by the given
* host name or human readable IP address.
*
* The method first tries to retrieve the address by using the rather
* new getaddrinfo function. If this fails, it tries to recover using
* the older gethostbyname function. If this fails either, the exception
* raised by the first try is rethrown.
*
* @param outAddress Receives the IP address.
* @param hostNameOrAddress The host name or stringised IP address to
* search.
*
* @throws SocketException In case the operation fails, e.g. the host
* could not be found.
*/
static void GetHostAddress(IPAddress& outAddress,
const char *hostNameOrAddress);
/**
* Answer any of the IP addresses of the host identified by the given
* host name or human readable IP address.
*
* The method first tries to retrieve the address by using the rather
* new getaddrinfo function. If this fails, it tries to recover using
* the older gethostbyname function. If this fails either, the exception
* raised by the first try is rethrown.
*
* @param outAddress Receives the IP address.
* @param hostNameOrAddress The host name or stringised IP address to
* search.
*
* @throws SocketException In case the operation fails, e.g. the host
* could not be found.
*/
static void GetHostAddress(IPAddress& outAddress,
const wchar_t *hostNameOrAddress);
/**
* Answer any of the IP addresses of the host identified by the given
* host name or human readable IP address.
*
* @param outAddress Receives the IP address.
* @param hostNameOrAddress The host name or stringised IP address to
* search.
*
* @throws SocketException In case the operation fails, e.g. the host
* could not be found.
*/
static void GetHostAddress(IPAddress6& outAddress,
const char *hostNameOrAddress);
/**
* Answer any of the IP addresses of the host identified by the given
* host name or human readable IP address.
*
* @param outAddress Receives the IP address.
* @param hostNameOrAddress The host name or stringised IP address to
* search.
*
* @throws SocketException In case the operation fails, e.g. the host
* could not be found.
*/
static void GetHostAddress(IPAddress6& outAddress,
const wchar_t *hostNameOrAddress);
/**
* Answer any of the IP addresses of the host identified by the given
* host name or human readable IP address.
*
* @param outAddress Receives the IP address.
* @param hostNameOrAddress The host name or stringised IP address to
* search.
* @param inCaseOfDoubt The address family to be used if it is not
* clear from the 'hostNameOrAddress'
* parameter. This parameter defaults to
* FAMILY_INET6.
*
* @throws SocketException In case the operation fails, e.g. the host
* could not be found.
*/
static void GetHostAddress(IPAgnosticAddress& outAddress,
const char *hostNameOrAddress,
const IPAgnosticAddress::AddressFamily inCaseOfDoubt
= IPAgnosticAddress::FAMILY_INET6);
/**
* Answer any of the IP addresses of the host identified by the given
* host name or human readable IP address.
*
* @param outAddress Receives the IP address.
* @param hostNameOrAddress The host name or stringised IP address to
* search.
* @param inCaseOfDoubt The address family to be used if it is not
* clear from the 'hostNameOrAddress'
* parameter. This parameter defaults to
* FAMILY_INET6.
*
* @throws SocketException In case the operation fails, e.g. the host
* could not be found.
*/
static void GetHostAddress(IPAgnosticAddress& outAddress,
const wchar_t *hostNameOrAddress,
const IPAgnosticAddress::AddressFamily inCaseOfDoubt
= IPAgnosticAddress::FAMILY_INET6);
//static void GetHostAddresses(vislib::Array<IPAddress>& outAddresses,
// const char *hostNameOrAddress);
//static void GetHostAddresses(vislib::Array<IPAddress>& outAddresses,
// const wchar_t *hostNameOrAddress);
//static void GetHostAddresses(vislib::Array<IPAddress6>& outAddresses,
// const char *hostNameOrAddress);
//static void GetHostAddresses(vislib::Array<IPAddress6>& outAddresses,
// const wchar_t *hostNameOrAddress);
//static void GetHostEntry(IPHostEntryA& outEntry,
// const IPAddress& hostAddress);
//static void GetHostEntry(IPHostEntryA& outEntry,
// const IPAddress6& hostAddress);
//static void GetHostEntry(IPHostEntryW& outEntry,
// const IPAddress& hostAddress);
//static void GetHostEntry(IPHostEntryW& outEntry,
// const IPAddress6& hostAddress);
/**
* Answer the IPHostEntry for the specified host name or IP address
* string.
*
* @param outEntry Receives the host entry.
* @param hostNameOrAddress The host name or stringised IP address to
* search.
*
* @throws SocketException In case the operation fails, e.g. the
* host could not be found.
* @throws IllegalParamException If the specified host does not use
* IPv4 or IPv6.
*/
static void GetHostEntry(IPHostEntryA& outEntry,
const char *hostNameOrAddress);
/**
* Answer the IPHostEntry for the specified host name or IP address
* string.
*
* @param outEntry Receives the host entry.
* @param hostNameOrAddress The host name or stringised IP address to
* search.
*
* @throws SocketException In case the operation fails, e.g. the host
* could not be found.
* @throws IllegalParamException If the specified host does not use
* IPv4 or IPv6.
*/
static void GetHostEntry(IPHostEntryW& outEntry,
const wchar_t *hostNameOrAddress);
/**
* Answer the IPHostEntry for the specified IP address.
*
* @param outEntry Receives the host entry.
* @param addrress The reference IP address to search.
*
* @throws SocketException In case the operation fails, e.g. the
* host could not be found.
* @throws IllegalParamException If the specified host does not use
* IPv4 or IPv6.
*/
static void GetHostEntry(IPHostEntryA& outEntry,
const IPAgnosticAddress& address);
/**
* Answer the IPHostEntry for the specified IP address.
*
* @param outEntry Receives the host entry.
* @param addrress The reference IP address to search.
*
* @throws SocketException In case the operation fails, e.g. the
* host could not be found.
* @throws IllegalParamException If the specified host does not use
* IPv4 or IPv6.
*/
static void GetHostEntry(IPHostEntryW& outEntry,
const IPAgnosticAddress& address);
/**
* Answer the IPHostEntry for the specified IP address.
*
* @param outEntry Receives the host entry.
* @param addrress The reference IP address to search.
*
* @throws SocketException In case the operation fails, e.g. the
* host could not be found.
* @throws IllegalParamException If the specified host does not use
* IPv4 or IPv6.
*/
static void GetHostEntry(IPHostEntryA& outEntry,
const IPAddress& address);
/**
* Answer the IPHostEntry for the specified IP address.
*
* @param outEntry Receives the host entry.
* @param addrress The reference IP address to search.
*
* @throws SocketException In case the operation fails, e.g. the
* host could not be found.
* @throws IllegalParamException If the specified host does not use
* IPv4 or IPv6.
*/
static void GetHostEntry(IPHostEntryW& outEntry,
const IPAddress& address);
/**
* Answer the IPHostEntry for the specified IP address.
*
* @param outEntry Receives the host entry.
* @param addrress The reference IP address to search.
*
* @throws SocketException In case the operation fails, e.g. the
* host could not be found.
* @throws IllegalParamException If the specified host does not use
* IPv4 or IPv6.
*/
static void GetHostEntry(IPHostEntryA& outEntry,
const IPAddress6& address);
/**
* Answer the IPHostEntry for the specified IP address.
*
* @param outEntry Receives the host entry.
* @param addrress The reference IP address to search.
*
* @throws SocketException In case the operation fails, e.g. the
* host could not be found.
* @throws IllegalParamException If the specified host does not use
* IPv4 or IPv6.
*/
static void GetHostEntry(IPHostEntryW& outEntry,
const IPAddress6& address);
/** Dtor. */
~DNS(void);
private:
/**
* Retrieve the addrinfo list for the specified host name of IP address
* string.
*
* The caller takes the ownership of the returned list and must release
* it using the appropriate API function.
*
* @param hostNameOrAddress The host name or stringised IP address to
* search.
* @param addressFamily The address familiy to limit the search to.
*
* @returns The addrinfo list if the host was found. The caller must
* free this list.
*
* @throws SocketException In case the operation fails, e.g. the host
* could not be found.
*/
static struct addrinfo *getAddrInfo(const char *hostNameOrAddress,
const int addressFamily);
/**
* Retrieve the addrinfo list for the specified host name of IP address
* string.
*
* The caller takes the ownership of the returned list and must release
* it using the appropriate API function.
*
* @param hostNameOrAddress The host name or stringised IP address to
* search.
* @param addressFamily The address familiy to limit the search to.
*
* @returns The addrinfo list if the host was found. The caller must
* free this list.
*
* @throws SocketException In case the operation fails, e.g. the host
* could not be found.
*/
#if (defined(_WIN32) && defined(_WIN32_WINNT) && (_WIN32_WINNT >= 0x0502))
static ADDRINFOW *getAddrInfo(const wchar_t *hostNameOrAddress,
const int addressFamily);
#else /* (defined(_WIN32) && defined(_WIN32_WINNT) && ... */
static struct addrinfo *getAddrInfo(const wchar_t *hostNameOrAddress,
const int addressFamily);
#endif /* (defined(_WIN32) && defined(_WIN32_WINNT) && ... */
/**
* Disallow instances.
*/
DNS(void);
/**
* Forbidden copy ctor.
*
* @param rhs The object to be cloned.
*
* @throws UnsupportedOperationException Unconditionally.
*/
DNS(const DNS& rhs);
/**
* Forbidden assignment.
*
* @param rhs The right hand side operand.
*
* @return *this.
*
* @throws IllegalParamException If (this != &rhs).
*/
DNS& operator =(const DNS& rhs);
};
} /* end namespace net */
} /* end namespace vislib */
#if defined(_WIN32) && defined(_MANAGED)
#pragma managed(pop)
#endif /* defined(_WIN32) && defined(_MANAGED) */
#endif /* VISLIB_DNS_H_INCLUDED */
| [
"axel.huebl@web.de"
] | axel.huebl@web.de |
db07f381cffee39c81e902e7ac4de346f7429170 | c51febc209233a9160f41913d895415704d2391f | /library/ATF/CRadarItemMgrDetail.hpp | 12d2d8c854f75987959fbebf07b563a85471d8f0 | [
"MIT"
] | permissive | roussukke/Yorozuya | 81f81e5e759ecae02c793e65d6c3acc504091bc3 | d9a44592b0714da1aebf492b64fdcb3fa072afe5 | refs/heads/master | 2023-07-08T03:23:00.584855 | 2023-06-29T08:20:25 | 2023-06-29T08:20:25 | 463,330,454 | 0 | 0 | MIT | 2022-02-24T23:15:01 | 2022-02-24T23:15:00 | null | UTF-8 | C++ | false | false | 351 | hpp | // This file auto generated by plugin for ida pro. Generated code only for x64. Please, dont change manually
#pragma once
#include <common/common.h>
#include <CRadarItemMgrInfo.hpp>
START_ATF_NAMESPACE
namespace Detail
{
extern ::std::array<hook_record, 14> CRadarItemMgr_functions;
}; // end namespace Detail
END_ATF_NAMESPACE
| [
"b1ll.cipher@yandex.ru"
] | b1ll.cipher@yandex.ru |
da1e4db8d4a922d052a4baaae8df02983484596c | 521bee76566df1fe7a00b7e0fd88b19eb0b91802 | /Super Mario Bros/Collision.hpp | 5a10d2db83789780fc1156de58e56dbaa9210708 | [] | no_license | roccosec/Super-Mario-Bros | d7bc9085d07e5e9df99ee55c4b08c45f39de368f | 80b469d2e8554109012f85e2f4d992cb6d668f05 | refs/heads/master | 2022-01-16T09:21:38.418139 | 2019-06-21T00:42:17 | 2019-06-21T00:42:17 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 738 | hpp | #pragma once
#include <SFML/Graphics.hpp>
namespace Game {
class Collision
{
public:
static bool checkSpriteCollision(const sf::Sprite& sprite1, const sf::Sprite& sprite2);
static bool checkSpriteCollision(const sf::FloatRect& sprite1, const sf::Sprite& sprite2);
static bool checkSpriteCollision(const sf::Sprite& sprite1, const float& scale1, const sf::Sprite& sprite2, const float& scale2);
static bool checkSpriteCollision(const sf::Sprite& sprite1, const float& scaleX, const float& scaleY, const sf::Sprite& sprite2);
static float distanceBetween(const float& x1, const float& y1, const float& x2, const float& y2);
static float distanceBetween(const sf::Vector2f& vector1, const sf::Vector2f& vector2);
};
}
| [
"kaikkonen.jaakko@gmail.com"
] | kaikkonen.jaakko@gmail.com |
08bd5ad5e4b558b583e02b421a9a9bc6690fa7c5 | d089b97fa7a0137f95bb2049d0d50ca6b83384aa | /select_value_from_stream/main.cpp | 67011366bf076f065c63753e9fbce944cfc3dc3d | [
"MIT"
] | permissive | mogers/fun-challenges | ef2eafce7eeb6103eeb8a0f110e82d3eb5894500 | 6ae31dae9e97bdcdc4e3bc2054191b2b4a8147a0 | refs/heads/master | 2021-01-21T13:56:39.847276 | 2015-10-23T23:05:54 | 2015-10-23T23:05:54 | 29,982,573 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,566 | cpp | #include "../data_structures/simple_stream.h"
#include <cstdlib>
#include <ctime>
#include <iostream>
using namespace std;
// Given a stream of pairs <value, weight>, selects a random value from the
// stream with probability proportional to its weight compared to the total
// weight sums. Assumes the stream is not empty.
template<typename T>
T Select(ds::SimpleStream<pair<T, int>>& stream) {
pair<T, int> p = stream.Next();
T selected_value = p.first;
int sum = p.second;
while (stream.HasNext()) {
p = stream.Next();
sum += p.second;
// We should use a better random number generator.
if (rand() % sum < p.second) {
selected_value = p.first;
}
}
return selected_value;
}
void SimpleTest() {
vector<pair<int, int>> pairs{{0, 2}, {1, 2}, {2, 4}, {3, 10}, {4, 4}, {5, 3}};
vector<int> times_selected(pairs.size(), 0);
// Simulate 1 000 000 selections.
int number_trials = 1000000;
for (int t = 0; t < number_trials; ++t) {
ds::SimpleStream<pair<int, int>> s(pairs);
int id = Select<int>(s);
++times_selected[id];
}
// Check if the selection match the expected probabilities.
int total_weight = 0;
for (const auto& p : pairs) {
total_weight += p.second;
}
for (size_t i = 0; i < pairs.size(); i++) {
double expected = static_cast<double>(pairs[i].second) / total_weight;
double got = static_cast<double>(times_selected[i]) / number_trials;
printf("id %lu expected %.4f got %.4f\n", i, expected, got);
}
}
int main() {
srand(time(0));
SimpleTest();
return 0;
}
| [
"mr.miguel.oliveira@gmail.com"
] | mr.miguel.oliveira@gmail.com |
431910ab23467c6e5d280274f13ced60ffa20736 | 31b3fdd0ceb144bbf67b1ac1e67446eec4344fe1 | /src/DSGRN/_dsgrn/DSGRN.cpp | 326a2092fd9d4147a5c1c478cfb4f08ac85d34b2 | [
"MIT"
] | permissive | skepley/DSGRN | 13895b84e12253992dd344e5826e7327f51eceee | ea64bece3abee5e2495f3ea63abccc18c53ae25e | refs/heads/master | 2020-03-11T00:09:42.932805 | 2018-03-30T23:58:07 | 2018-03-30T23:58:07 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 869 | cpp | /// DSGRN.cpp
/// Shaun Harker
/// 2018-01-30
/// MIT LICENSE
#include "DSGRN.hpp"
#include <pybind11/pybind11.h>
#include <pybind11/stl.h>
namespace py = pybind11;
PYBIND11_MODULE( _dsgrn, m) {
TypedObjectBinding(m);
// Dynamics
AnnotationBinding(m);
MorseDecompositionBinding(m);
MorseGraphBinding(m);
// Graph
DigraphBinding(m);
PosetBinding(m);
ComponentsBinding(m);
StrongComponentsBinding(m);
LabelledMultidigraphBinding(m);
NFABinding(m);
// Parameter
LogicParameterBinding(m);
NetworkBinding(m);
OrderParameterBinding(m);
ParameterBinding(m);
ParameterGraphBinding(m);
ConfigurationBinding(m);
// Phase
DomainBinding(m);
DomainGraphBinding(m);
// Pattern
MatchingGraphBinding(m);
MatchingRelationBinding(m);
PatternBinding(m);
PatternGraphBinding(m);
PatternMatchBinding(m);
SearchGraphBinding(m);
}
| [
"sharker81@gmail.com"
] | sharker81@gmail.com |
c66eecd0773907166afcb28eeb504bc0d474204c | 84afdf38689005f299aa311c9597cf547d0e83d3 | /library/Tree/treap.cpp | 5f3a54673a328e7cb9087bb4746ce7959e1c2e60 | [] | no_license | Endered/library | 84509207d201dbc34f9af8f7f31285ab15a3c817 | fbd16b09e3498baaebcceadcc974b25d3b720277 | refs/heads/master | 2022-12-22T03:15:09.612016 | 2022-12-10T04:25:17 | 2022-12-10T04:25:17 | 213,359,443 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,767 | cpp | #include<bits/stdc++.h>
#define ll long long
#define rep(i, n) for(int i=0;i<(n);++i)
#define per(i, n) for(int i=(n)-1;i>=0;--i)
#define repa(i, n) for(int i=1;i<(n);++i)
#define foreach(i, n) for(auto &i:(n))
#define pii pair<int, int>
#define pll pair<long long, long long>
#define all(x) (x).begin(), (x).end()
#define bit(x) (1ll << (x))
const ll MOD = (ll)1e9+7;
const int INF = (ll)1e9+7;
const ll INFLL = (ll)1e18;
using namespace std;
template<class t>
using vvector = vector<vector<t>>;
template<class t>
using vvvector = vector<vector<vector<t>>>;
template<class t>
using priority_queuer = priority_queue<t, vector<t>, greater<t>>;
template<class t, class u> bool chmax(t &a, u b){if(a<b){a=b;return true;}return false;}
template<class t, class u> bool chmin(t &a, u b){if(a>b){a=b;return true;}return false;}
ll modpow(ll x, ll b){
ll res = 1;
while(b){
if(b&1)res = res * x % MOD;
x = x * x % MOD;
b>>=1;
}
return res;
}
ll modinv(ll x){
return modpow(x, MOD-2);
}
class treap{
public:
class node{
public:
int key;
int priority;
node *right;
node *left;
node():right(NULL), left(NULL){}
node(int k, int p):key(k), priority(p), right(NULL), left(NULL){}
};
node *root;
treap():root(NULL){}
node* insert(int key, int priority){
return root = insert(root, key, priority);
}
node* insert(node* t, int key, int priority){
if(t == NULL){
return new node(key, priority);
}
if(key == t->key){
return t;
}
if(key < t->key){
t->left = insert(t->left, key, priority);
if(t->priority < t->left->priority){
t = right_rotate(t);
}
}else{
t->right = insert(t->right, key, priority);
if(t->priority < t->right->priority){
t = left_rotate(t);
}
}
return t;
}
node* right_rotate(node *t){
node *s = t->left;
t->left = s->right;
s->right = t;
return s;
}
node* left_rotate(node *t){
node *s = t->right;
t->right = s->left;
s->left = t;
return s;
}
node* erase(int key){
root = erase(root, key);
}
node* erase(node *t, int key){
if(t == NULL){
return NULL;
}
if(key < t->key){
t->left = erase(t->left, key);
}else if(key > t->key){
t->right = erase(t->right, key);
}else{
return _erase(t, key);
}
return t;
}
node* _erase(node* t, int key){
if(t->left == NULL && t->right == NULL){
delete t;
return NULL;
}else if(t->left == NULL){
t = left_rotate(t);
}else if(t->right == NULL){
t = right_rotate(t);
}else{
if(t->left->priority > t->right->priority){
t = right_rotate(t);
}else{
t = left_rotate(t);
}
}
return erase(t, key);
}
bool find(int key){
return find(root, key);
}
bool find(node *t, int key){
if(t==NULL){
return false;
}
if(t->key==key){
return true;
}
if(key < t->key){
return find(t->left, key);
}else{
return find(t->right, key);
}
return false;
}
void print_inorder(){
print_inorder(root);
}
void print_inorder(node *t){
if(t==NULL){
return;
}
print_inorder(t->left);
cout << " " << t->key;
print_inorder(t->right);
}
void print_preorder(){
print_preorder(root);
}
void print_preorder(node *t){
if(t==NULL){
return;
}
cout << " " << t->key;
print_preorder(t->left);
print_preorder(t->right);
}
};
int main(){
int time;
cin >> time;
treap tr;
rep(i, time){
string op;
cin >> op;
if(op=="insert"){
int key, priority;
cin >> key >> priority;
tr.insert(key, priority);
}else if(op=="print"){
tr.print_inorder();
cout << endl;
tr.print_preorder();
cout << endl;
}else if(op=="delete"){
int key;
cin >> key;
tr.erase(key);
}else{
int key;
cin >> key;
bool flag = tr.find(key);
cout << (flag?"yes":"no") << endl;
}
}
return 0;
}
| [
"yy56ga10ve@gmail.com"
] | yy56ga10ve@gmail.com |
c5d87356d22d4ceda76922411591936d8792faea | 140d78334109e02590f04769ec154180b2eaf78d | /aws-cpp-sdk-rekognition/include/aws/rekognition/RekognitionErrorMarshaller.h | b2d8e4793e0356e525327a74440e20d42ffc36dc | [
"Apache-2.0",
"MIT",
"JSON"
] | permissive | coderTong/aws-sdk-cpp | da140feb7e5495366a8d2a6a02cf8b28ba820ff6 | 5cd0c0a03b667c5a0bd17394924abe73d4b3754a | refs/heads/master | 2021-07-08T07:04:40.181622 | 2017-08-22T21:50:00 | 2017-08-22T21:50:00 | 101,145,374 | 0 | 1 | Apache-2.0 | 2021-05-04T21:06:36 | 2017-08-23T06:24:37 | C++ | UTF-8 | C++ | false | false | 972 | h | /*
* Copyright 2010-2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
#pragma once
#include <aws/rekognition/Rekognition_EXPORTS.h>
#include <aws/core/client/AWSErrorMarshaller.h>
namespace Aws
{
namespace Client
{
class AWS_REKOGNITION_API RekognitionErrorMarshaller : public Client::JsonErrorMarshaller
{
public:
Client::AWSError<Client::CoreErrors> FindErrorByName(const char* exceptionName) const override;
};
} // namespace Rekognition
} // namespace Aws
| [
"henso@amazon.com"
] | henso@amazon.com |
d5737395eb37bd2aa958a1a64bd64e60c10fcd76 | dee52474971db4fcbc8696feab48ce63d141b2d3 | /Base/BaseAnalysis/interface/StyleManager.h | 6f854241e00e64922d9f3cb36e2b3cf89a4328d5 | [] | no_license | nadjieh/work | 7de0282f3ed107e25f596fd7d0a95f21793c8d29 | 3c9cc0319e1ab5cd240063f6dd940872b212ddce | refs/heads/master | 2016-09-01T17:34:31.112603 | 2014-02-07T22:43:32 | 2014-02-07T22:43:32 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,884 | h | /*
* File: StyleManager.h
* Author: hbakhshi
*
* Created on January 29, 2009, 7:45 PM
*/
#ifndef _STYLEMANAGER_H
#define _STYLEMANAGER_H
#include "TH1.h"
#include "TStyle.h"
#include "TRandom.h"
class StyleManager {
public:
//option = 1 : fill ; 2 : line
static TH1 * SetStyle(TH1* h, int k, short option = 1) {
int fillStyle = -1;
short fillColor = -1;
h->SetLineWidth(1);
switch (k) {
case 0:
h->SetLineWidth(2);
fillStyle = 3454;
fillColor = (short) 30;
break;
case 1:
fillStyle = 3445;
fillColor = (short) 46;
break;
case 2:
fillColor = 38;
goto def;
case 3:
fillColor = 40;
goto def;
case 4:
fillColor = 47;
goto def;
case 5:
fillColor = 14;
goto def;
case 6:
fillColor = 32;
goto def;
case 7:
fillColor = short(kBlack);
goto def;
def:
default:
break;
}
if (fillStyle < 0)
fillStyle = (330 + k) *10 + k;
if (fillColor < 0)
fillColor = short(gRandom->Uniform(3, 50));
h->SetFillColor(kWhite);
h->SetFillStyle(0);
h->SetLineColor(kWhite);
h->SetFillAttributes();
h->SetLineAttributes();
if (option == 1) {
h->SetFillColor(fillColor);
h->SetFillStyle(fillStyle);
h->SetFillAttributes();
} else if (option == 2) {
h->SetLineColor(fillColor);
h->SetLineAttributes();
}
return h;
};
};
#endif /* _STYLEMANAGER_H */
| [
"ajafari@cern.ch"
] | ajafari@cern.ch |
af98769f6957a806c542d6af903f93d9215132aa | 11bece4b4615e8640c21e759626b63294be7d314 | /src/Camera.cpp | 2e02841dddc8ce1a56269f676c96327ed6bb53de | [] | no_license | Attractadore/OpenGLTutorial | f0c94fcf51e6f634aa0299fac68b22b5a4f505ef | 404436414e73b56d7d73ef49617276b7f6f87012 | refs/heads/master | 2023-05-01T08:11:09.100008 | 2020-08-14T11:56:34 | 2020-08-14T11:56:34 | 269,996,362 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,320 | cpp | #include "Camera.hpp"
#include <glm/gtc/matrix_transform.hpp>
#include <cstdio>
Camera::Camera(glm::vec3 cameraPos, glm::vec3 cameraLookDirection, glm::vec3 worldUpDirection) {
cameraLookDirection = glm::normalize(cameraLookDirection);
worldUpDirection = glm::normalize(worldUpDirection);
this->cameraPos = cameraPos;
this->cameraDefaultUpVector = worldUpDirection;
this->cameraDefaultRightVector = glm::normalize(glm::cross(cameraLookDirection, worldUpDirection));
this->cameraDefaultForwardVector = glm::cross(this->cameraDefaultUpVector, this->cameraDefaultRightVector);
this->addPitch(glm::degrees(glm::asin(glm::dot(worldUpDirection, cameraLookDirection))));
this->updateCameraForwardVector();
this->updateCameraRightVector();
this->updateCameraUpVector();
}
glm::vec3 Camera::getCameraPos() {
return this->cameraPos;
}
glm::vec3 Camera::getCameraForwardVector() {
return this->cameraForwardVector;
}
glm::vec3 Camera::getCameraRightVector() {
return this->cameraRightVector;
}
glm::vec3 Camera::getCameraUpVector() {
return this->cameraUpVector;
}
void Camera::addPitch(float degrees) {
this->pitch += degrees;
this->pitch = glm::clamp(this->pitch, -80.0f, 80.0f);
this->pitchRotationMatrix = glm::rotate(glm::mat4(1.0f), glm::radians(this->pitch), this->cameraDefaultRightVector);
this->updateCameraForwardVector();
this->updateCameraUpVector();
}
void Camera::addYaw(float degrees) {
this->yaw += degrees;
this->yawRotationMatrix = glm::rotate(glm::mat4(1.0f), glm::radians(this->yaw), this->cameraDefaultUpVector);
this->updateCameraRightVector();
this->updateCameraForwardVector();
this->updateCameraUpVector();
}
void Camera::addLocationOffset(glm::vec3 offset) {
this->cameraPos += offset;
}
void Camera::updateCameraForwardVector() {
this->cameraForwardVector = this->yawRotationMatrix * this->pitchRotationMatrix * glm::vec4(this->cameraDefaultForwardVector, 0.0f);
}
void Camera::updateCameraRightVector() {
this->cameraRightVector = this->yawRotationMatrix * glm::vec4(this->cameraDefaultRightVector, 0.0f);
}
void Camera::updateCameraUpVector() {
this->cameraUpVector = this->yawRotationMatrix * this->pitchRotationMatrix * glm::vec4(this->cameraDefaultUpVector, 0.0f);
}
| [
"attractadore02@gmail.com@"
] | attractadore02@gmail.com@ |
ef8c21c83b8d2f4f309cc223944f4a9a25c51168 | 5fcca1afa38349fc2a0ebbbaf7eb3e10b8741c99 | /detectLoopLinkedList/detectLoopLinkedList.cpp | 42e8e9bfd99c9866e9fe2c544c19f584b654b528 | [] | no_license | MitCoder/CPlusPlus | 0d01338d38323b3baf45e057e425636ae40eacf9 | 29c88762f0349135b065db34c243199314328e80 | refs/heads/master | 2020-06-13T22:57:34.288081 | 2018-02-01T15:19:13 | 2018-02-01T15:19:13 | 17,533,729 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,462 | cpp | #include <iostream>
using namespace std;
struct node
{
int data;
node *next;
};
node *head=NULL;
void insert(node *list,int data);
void printlist(node *list);
void detectLoop(node *list);
void removeLoop(node *slow,node *head);
void insert(node *list, int data)
{
node *newNode = new node;
newNode->data = data;
newNode->next = head;
head = newNode;
}
void printlist(node *list)
{
for (list = head; list != NULL;list = list->next)
{
cout << list->data << endl;
cin.get();
}
}
void detectLoop(node *list)
{
node *fast = list;
node *slow = list;
while (fast != NULL && fast->next != NULL)
{
// cout << " slow " << slow->data << " fast " << fast->next->data << fast->next->next->data << endl;
slow = slow->next;
fast = fast->next->next;
if (slow == fast)
{
cout << "loop"<<slow->data << endl;
cin.get();
removeLoop(slow,head);
}
}
}
void removeLoop(node *slow, node *head)
{
/* node *ptr1=slow;
node *ptr2=slow;
int count=0;
//how many items are there in loop
while (ptr1->next != ptr2)
{
count++;
ptr1 = ptr1->next;
}
//position both the pointers to head.
ptr1 = head;
ptr2 = head;
for (int i = 0; i <= count;i++)
{
ptr2 = ptr2->next;
}
//place both the pointers in the same location.
while (ptr2 != ptr1)
{
ptr1 = ptr1->next;
ptr2 = ptr2->next;
}
//Once both the pointers meet at the same location, just traverse the ptr2 to the end of the list.This will let ptr2->next point to ptr1.
ptr2 = ptr2->next;
while (ptr2->next != ptr1)
{
ptr2 = ptr2->next;
}
ptr2->next = NULL;
*/
//below code also works
node *fast = head;
while (fast->next != slow->next)
{
fast = fast->next;
slow = slow->next;
}
//get the start of the loop
/*
50--->20---->15---->4---->10
▲ |
| ▼
--------------
15 is start of the list.
Once you know where the loop starts, it's easy to identify the last element in the list,
since it's the element in the list following the start of the loop that ends up pointing back to the start of the loop.*/
node *start = fast->next;
fast = start;
while (fast->next != start)
{
fast = fast->next;
}
fast->next = NULL;
}
int main()
{
node *list = new node;
insert(list, 10);
insert(list, 4);
insert(list, 15);
insert(list, 20);
insert(list, 50);
head->next->next->next->next->next = head->next->next;
detectLoop(head);
printlist(head);
} | [
"mithila_84@yahoo.com"
] | mithila_84@yahoo.com |
8008ff21fa7e285c809390a02f5d41e5012bbaf0 | ae9e2680ce3fbcc95f8ccec1be7cda52195f9c73 | /camLasAlignment.h | cd54717bee239d455bee327e04753b862f7add2e | [] | no_license | OliverBJ01/alignment | 00f3a5e4fd9082158712efb47f422a5c043e43d8 | b1d127493fc09196cd36217625b6c741e04ff57d | refs/heads/master | 2021-08-23T04:08:45.354195 | 2017-12-03T05:57:16 | 2017-12-03T05:57:16 | 112,903,666 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,022 | h | //
// Created by bernard on 10/06/17.
//
#ifndef CAMLASALIGNMENT_CAMLASALIGNMENT_H
#define CAMLASALIGNMENT_CAMLASALIGNMENT_H
#include <opencv2/core.hpp>
#include <opencv2/highgui.hpp>
#include <opencv2/imgproc.hpp>
#include <iostream>
#include <unistd.h> // for usleep
using namespace cv;
using namespace std;
// IP cam stream addresses
//#define IPCAM_STREAMADDRESS "http://root:Isabel00@10.1.1.5/mjpg/video.mjpg" //Axis IP Camera @ Port 80
#define IPCAM_STREAMADDRESS "http://admin:Isabel00@10.1.1.5/video.cgi?.mjpg" // D-Link IP camera @ Port 80
int cameraCapture( VideoCapture &cap, string camType, int usbDeviceNo, string ipCamStreamAddress,
int &frameWidth, int &frameHeight);
// ------------- scanner defs ------------------
// scanner frame size is theoretically 0 to 65535 both x and y set by scanner DAC range
// However, this is the practical frame size as scanner board trips outside these values
#define DAC_X_MIN 512
#define DAC_X_MAX 65024
#define DAC_Y_MIN 512
#define DAC_Y_MAX 65024
// used only to reverse direction in sendScannerMssg()
#define SCANNER_DAC_LIMIT 65535
#endif //CAMLASALIGNMENT_CAMLASALIGNMENT_H
// mcuScanner server
#define SCANNERPORT "1000" // scanner port No.
#define SCANNERADDRESS "10.1.1.99" // scanner IP address
//#define OPENCVPORT 9988 // port to receive UDP packets from openCV
// ---------message details copied from mcuServer -----------
struct statusWord {
ushort serverFault : 1; // server has fault
ushort laserFault : 1; // server fault
ushort scanXFault : 1; // server fault
ushort scanYFault : 1; // server fault
ushort unknownScannerFault : 1; // server fault
ushort hwStartFail : 1; // server hardware didn't start
ushort laserPower : 1; // client command
ushort dacReset : 1; // client command
ushort spiError : 1; // server sets on excessive spi errors
ushort verbose : 1; // client command
} ;
// 1. ---- messages received by client from mcuServer
struct serverMssg { // message sent to client
ushort scanX; //scanner X value
ushort scanY;
ushort info;
struct statusWord status;
};
// 2. ----- message sent to mcuServer by client
struct clientMssg { // message recvd. from client
ushort scanX; //scanner X value
ushort scanY;
ushort info; // send data client to server & vice versa
} ;
// (this) client's commands to server
enum cmdMssg {CMD_LASER_OFF, CMD_LASER_ON,
CMD_SCANXPWR_OFF, CMD_SCANXPWR_ON,
CMD_SCANYPWR_OFF, CMD_SCANYPWR_ON,
CMD_SLEW, CMD_VERBOSE_ON, CMD_VERBOSE_OFF,
CMD_NULL_MSSG, CMD_RESET } ;
//void sendMssg(uint x, uint y, bool laserOn) ;
int initQtSocket(void);
void showCalRectangle(int state, void*);
void disableEngagement(int state, void*);
int initLaserEnableTimer(void) ;
void Bresenham(long x1, long y1, long x2, long y2);
int connectToServer();
void error(const char *msg);
void sendMssgToScanner(uint x, uint y, uint laserOn);
void *drawLaserExtents(void *arg);
void *drawNbyNPoints(void *arg); | [
"bernard.j.oliver@gmail.com"
] | bernard.j.oliver@gmail.com |
a1404883fd36934742adcbe850ee8fde511c23e5 | 7755086db5a0aa7b68883760867ba34057cf9ba0 | /Practice_primer/test_static.cpp | eeda226c533150e711027da382b70ab7422d2a58 | [] | no_license | huoxiaodan-kaihong/C-Plus-Plus | e87f68ff539399ac9b0ad9998525696d6f2a5ef5 | a3ab82ae1fe215d13b6861b5e2e9213a7c6a038a | refs/heads/master | 2023-03-17T23:05:46.631718 | 2019-06-10T07:54:43 | 2019-06-10T07:54:43 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 412 | cpp | #include <iostream>
using namespace std;
class MyClass {
public:
MyClass() {
++count;
}
~MyClass() {
--count;
}
static int getCount() {
return count;
}
private:
static int count;
};
int MyClass::count = 0;
int main() {
MyClass obj;
cout << obj.getCount();
MyClass obj2;
cout << MyClass::getCount();
cout << obj2.getCount();
return 0;
} | [
"872575628@qq.com"
] | 872575628@qq.com |
2eaf6ea734f7d29880d51dce8d9e33b26184c26d | 749d80a853776ea9d9fb61f329e187abc08cbcc1 | /server/src/file_system.h | 7e8297d1f264a0f511d712061c53ddd5d557fcf9 | [] | no_license | iuvei/SimpleEngine | 1b724dafdb9b4acd6dcbdd1657983ca3e49516c8 | cebfe7132f001e04879c731889b9686ebc41abb2 | refs/heads/master | 2020-05-18T11:59:04.550843 | 2019-04-20T09:38:48 | 2019-04-20T09:38:48 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 857 | h | #pragma once
#include <string>
#include <vector>
using String = std::string;
class FileSystem
{
public:
FileSystem();
~FileSystem();
static std::string GetPath();
static String GetTSVPath(String name);
static String GetTablePath(String name);
static std::string GetAbsPath(std::string localPath);
static std::string GetResourcePath(std::string localPath);
static std::string GetAssetsPath(std::string path);
static std::string GetShaderPath(std::string path);
static std::string GetLuaPath(std::string path);
static std::string GetWDFPath(std::string path);
static std::string GetMapPath(std::string path);
static std::string GetFontPath(std::string path);
static std::string GetIconPath(std::string path);
static std::vector<std::string> ListFiles(std::string path);
static std::vector<std::string> ListAllFiles(std::string path);
};
| [
"oceancx@gmail.com"
] | oceancx@gmail.com |
fb007b1f0ed6bd17e41255a1fc882e9c9e58c3b4 | 900eeb54ac340c17f5921a1035248463046efe48 | /SDK/PWND_EngineSettings_structs.hpp | d5ea5ced34c3daa2cb6c5de9d8a504df00376faf | [] | no_license | hinnie123/PWND_SDK | f94c5f8ebc99fd68aac02928550cf9401a7ac18d | b7cf225765a8083ba0a358ecb0067eb9ce1964d6 | refs/heads/master | 2020-04-02T04:44:07.654425 | 2018-10-21T17:01:00 | 2018-10-21T17:01:00 | 154,031,939 | 2 | 4 | null | null | null | null | UTF-8 | C++ | false | false | 1,844 | hpp | #pragma once
// PWND (4.17.2.0) SDK
#ifdef _MSC_VER
#pragma pack(push, 0x8)
#endif
namespace SDK
{
//---------------------------------------------------------------------------
//Enums
//---------------------------------------------------------------------------
// Enum EngineSettings.EThreePlayerSplitScreenType
enum class EThreePlayerSplitScreenType : uint8_t
{
FavorTop = 0,
FavorBottom = 1,
EThreePlayerSplitScreenType_MAX = 2
};
// Enum EngineSettings.ETwoPlayerSplitScreenType
enum class ETwoPlayerSplitScreenType : uint8_t
{
Horizontal = 0,
Vertical = 1,
ETwoPlayerSplitScreenType_MAX = 2
};
//---------------------------------------------------------------------------
//Script Structs
//---------------------------------------------------------------------------
// ScriptStruct EngineSettings.AutoCompleteCommand
// 0x0028
struct FAutoCompleteCommand
{
struct FString Command; // 0x0000(0x0010) (Edit, ZeroConstructor, Config)
struct FString Desc; // 0x0010(0x0010) (Edit, ZeroConstructor, Config)
unsigned char UnknownData00[0x8]; // 0x0020(0x0008) MISSED OFFSET
};
// ScriptStruct EngineSettings.GameModeName
// 0x0020
struct FGameModeName
{
struct FString Name; // 0x0000(0x0010) (Edit, ZeroConstructor)
struct FStringClassReference GameMode; // 0x0010(0x0010) (Edit)
};
}
#ifdef _MSC_VER
#pragma pack(pop)
#endif
| [
"hindrik-sibma@hotmail.nl"
] | hindrik-sibma@hotmail.nl |
48f1000a4d36a1fe6226718228d032f9a7bf90c6 | a37626167f68b6608753f924001a48f3ab395d6e | /iitX/Programming_Basics/pps01_set1_q2.cpp | e7d2f3da05ae4d48ffd1b16522ab62674f3dc77e | [] | no_license | mxd369/cpp | 020ae3e3d90df559369ac8ce54384db355fd6324 | eb88e92f16b8e54d5265099e1c6716077b592b7f | refs/heads/master | 2021-01-11T22:29:46.771673 | 2017-03-18T07:18:46 | 2017-03-18T07:18:46 | 78,972,533 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 459 | cpp | /*
i. Use locations A, B;
ii. Output "Give A and B: ";
iii. Input A; Input B;
iv. A = A + B;
v. B = A + B;
vi. Output "B is: ";
vii. Output B;
*/
#include <iostream>
using namespace std;
int main()
{
int A, B;
cout << "Give A and B: " ;
cin >> A >> B ;
A = A + B;
B = A + B;
cout << "Output B is: " << B << '\n';
return 0;
}
/*
Test
A = 5
B = 4
A = 5 + 4;
A is assigned 9
B = 9 + 4;
B is assigned 13;
Output B is 13
*/ | [
"mxd789@gmail.com"
] | mxd789@gmail.com |
9153131d836962356efda66b883a74ed4ab28ad8 | 811ef2df7a0e831e8ac2e26721194012f1d8dcbf | /course/payment_service/payment_gateway_mock.h | 0f13f0ad43b152e18f0201244c18b35cb1420f27 | [] | no_license | wrightsg/sc-cpp | 0edf1f0d3a41f49d5e329cdfe1de8f09fc4e0307 | 49fd801182071bbb0f3c376c96ce58dbc8b4f877 | refs/heads/master | 2020-05-03T09:15:39.246048 | 2019-03-30T11:18:08 | 2019-03-30T11:18:08 | 178,549,443 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 298 | h | #ifndef SC_CPP_PAYMENT_GATEWAY_MOCK_H
#define SC_CPP_PAYMENT_GATEWAY_MOCK_H
#include "gmock/gmock.h"
#include "payment_gateway.h"
class PaymentGatewayMock : public PaymentGateway
{
public:
MOCK_METHOD1(processPayment, void(const PaymentDetails&));
};
#endif //SC_CPP_PAYMENT_GATEWAY_MOCK_H
| [
"wrightsgdev@gmail.com"
] | wrightsgdev@gmail.com |
d4761e02f5c533fed5e468eceed7e2f25b15ae66 | dd6b6da760c32ac6830c52aa2f4d5cce17e4d408 | /magma-2.5.0/testing/testing_ztrmm_batched.cpp | 0c6833d8eb7d0721306a83c846dcb5e6df13a258 | [] | no_license | uumami/hit_and_run | 81584b4f68cf25a2a1140baa3ee88f9e1844b672 | dfda812a52bbd65e02753b9abcb9f54aeb4e8184 | refs/heads/master | 2023-03-13T16:48:37.975390 | 2023-02-28T05:04:58 | 2023-02-28T05:04:58 | 139,909,134 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,930 | cpp | /*
-- MAGMA (version 2.5.0) --
Univ. of Tennessee, Knoxville
Univ. of California, Berkeley
Univ. of Colorado, Denver
@date January 2019
@precisions normal z -> c d s
@author Chongxiao Cao
*/
// includes, system
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <math.h>
// includes, project
#include "flops.h"
#include "magma_v2.h"
#include "magma_lapack.h"
#include "testings.h"
#if defined(_OPENMP)
#include <omp.h>
#include "../control/magma_threadsetting.h"
#endif
/* ////////////////////////////////////////////////////////////////////////////
-- Testing ztrmm_batched
*/
int main( int argc, char** argv)
{
TESTING_CHECK( magma_init() );
magma_print_environment();
real_Double_t gflops, magma_perf, magma_time, cpu_perf, cpu_time;
double error, magma_error, normalize, work[1];
magma_int_t M, N, NN;
magma_int_t Ak, Akk;
magma_int_t sizeA, sizeB;
magma_int_t lda, ldb, ldda, lddb;
magma_int_t ione = 1;
magma_int_t ISEED[4] = {0,0,0,1};
magmaDoubleComplex **dA_array, **dB_array;
magmaDoubleComplex **hA_array, **hB_array;
magmaDoubleComplex *h_A, *h_B, *h_Bmagma;
magmaDoubleComplex_ptr d_A, d_B;
magmaDoubleComplex c_neg_one = MAGMA_Z_NEG_ONE;
magmaDoubleComplex alpha = MAGMA_Z_MAKE( 0.29, -0.86 );
int status = 0;
magma_opts opts( MagmaOptsBatched );
opts.parse_opts( argc, argv );
opts.lapack |= opts.check; // check (-c) implies lapack (-l)
magma_int_t batchCount = opts.batchcount;
double *Anorm, *Bnorm;
TESTING_CHECK( magma_dmalloc_cpu( &Anorm, batchCount ));
TESTING_CHECK( magma_dmalloc_cpu( &Bnorm, batchCount ));
TESTING_CHECK( magma_malloc_cpu((void**)&hA_array, batchCount*sizeof(magmaDoubleComplex*)) );
TESTING_CHECK( magma_malloc_cpu((void**)&hB_array, batchCount*sizeof(magmaDoubleComplex*)) );
TESTING_CHECK( magma_malloc((void**)&dA_array, batchCount*sizeof(magmaDoubleComplex*)) );
TESTING_CHECK( magma_malloc((void**)&dB_array, batchCount*sizeof(magmaDoubleComplex*)) );
// See testing_zgemm about tolerance.
double eps = lapackf77_dlamch("E");
double tol = 3*eps;
printf("%% If running lapack (option --lapack), MAGMA error is computed\n"
"%% relative to CPU BLAS result.\n\n");
printf("%% side = %s, uplo = %s, transA = %s, diag = %s\n",
lapack_side_const(opts.side), lapack_uplo_const(opts.uplo),
lapack_trans_const(opts.transA), lapack_diag_const(opts.diag) );
printf("%% BatchCount M N MAGMA Gflop/s (ms) CPU Gflop/s (ms) MAGMA error\n");
printf("%%=============================================================================\n");
for( int itest = 0; itest < opts.ntest; ++itest ) {
for( int iter = 0; iter < opts.niter; ++iter ) {
M = opts.msize[itest];
N = opts.nsize[itest];
gflops = batchCount * FLOPS_ZTRMM(opts.side, M, N) / 1e9;
if ( opts.side == MagmaLeft ) {
lda = M;
Ak = M;
}
else {
lda = N;
Ak = N;
}
ldb = M;
Akk = Ak * batchCount;
NN = N * batchCount;
ldda = magma_roundup( lda, opts.align ); // multiple of 32 by default
lddb = magma_roundup( ldb, opts.align ); // multiple of 32 by default
sizeA = lda*Ak*batchCount;
sizeB = ldb*N*batchCount;
TESTING_CHECK( magma_zmalloc_cpu( &h_A, lda*Ak*batchCount ) );
TESTING_CHECK( magma_zmalloc_cpu( &h_B, ldb*N*batchCount ) );
TESTING_CHECK( magma_zmalloc_cpu( &h_Bmagma, ldb*N*batchCount ) );
TESTING_CHECK( magma_zmalloc( &d_A, ldda*Ak*batchCount ) );
TESTING_CHECK( magma_zmalloc( &d_B, lddb*N*batchCount ) );
/* Initialize the matrices */
lapackf77_zlarnv( &ione, ISEED, &sizeA, h_A );
lapackf77_zlarnv( &ione, ISEED, &sizeB, h_B );
// Compute norms for error
for (int s = 0; s < batchCount; ++s) {
Anorm[s] = lapackf77_zlantr( "F", lapack_uplo_const(opts.uplo),
lapack_diag_const(opts.diag),
&Ak, &Ak, &h_A[s*lda*Ak], &lda, work );
Bnorm[s] = lapackf77_zlange( "F", &M, &N, &h_B[s*ldb*N], &ldb, work );
}
/* =====================================================================
Performs operation using CUBLAS
=================================================================== */
magma_zsetmatrix( Ak, Akk, h_A, lda, d_A, ldda, opts.queue );
magma_zsetmatrix( M, NN, h_B, ldb, d_B, lddb, opts.queue );
magma_zset_pointer( dA_array, d_A, ldda, 0, 0, ldda*Ak, batchCount, opts.queue );
magma_zset_pointer( dB_array, d_B, lddb, 0, 0, lddb*N, batchCount, opts.queue );
magma_time = magma_sync_wtime( opts.queue );
magmablas_ztrmm_batched(
opts.side, opts.uplo, opts.transA, opts.diag,
M, N,
alpha, dA_array, ldda,
dB_array, lddb,
batchCount, opts.queue );
magma_time = magma_sync_wtime( opts.queue ) - magma_time;
magma_perf = gflops / magma_time;
magma_zgetmatrix( M, NN, d_B, lddb, h_Bmagma, ldb, opts.queue );
/* =====================================================================
Performs operation using CPU BLAS
=================================================================== */
if ( opts.lapack ) {
// populate pointer arrays on the host
for(int s = 0; s < batchCount; s++){
hA_array[s] = h_A+s*lda*Ak;
hB_array[s] = h_B+s*ldb*N;
}
cpu_time = magma_wtime();
blas_ztrmm_batched(
opts.side, opts.uplo, opts.transA, opts.diag,
M, N,
alpha, hA_array, lda,
hB_array, ldb, batchCount );
cpu_time = magma_wtime() - cpu_time;
cpu_perf = gflops / cpu_time;
}
/* =====================================================================
Check the result
=================================================================== */
if ( opts.lapack ) {
// compute error compared lapack
// error = |dB - B| / (gamma_{k}|A||Bin|); k = Ak; no beta
magma_error = 0;
for (int s = 0; s < batchCount; s++) {
normalize = sqrt(double(Ak))*Anorm[s]*Bnorm[s];
if (normalize == 0)
normalize = 1;
magma_int_t Bsize = ldb*N;
blasf77_zaxpy( &Bsize, &c_neg_one, &h_B[s*ldb*N], &ione, &h_Bmagma[s*ldb*N], &ione );
error = lapackf77_zlange( "F", &M, &N, &h_Bmagma[s*ldb*N], &ldb, work )
/ normalize;
magma_error = magma_max_nan( error, magma_error );
}
bool okay = (magma_error < tol);
status += ! okay;
printf(" %10lld %5lld %5lld %7.2f (%7.2f) %7.2f (%7.2f) %8.2e %s\n",
(long long)batchCount,
(long long)M, (long long)N,
magma_perf, 1000.*magma_time,
cpu_perf, 1000.*cpu_time,
magma_error, (okay ? "ok" : "failed"));
}
else {
printf(" %10lld %5lld %5lld %7.2f (%7.2f) --- ( --- ) ---\n",
(long long)batchCount,
(long long)M, (long long)N,
magma_perf, 1000.*magma_time);
}
magma_free_cpu( h_A );
magma_free_cpu( h_B );
magma_free_cpu( h_Bmagma );
magma_free( d_A );
magma_free( d_B );
fflush( stdout );
}
if ( opts.niter > 1 ) {
printf( "\n" );
}
}
magma_free_cpu( hA_array );
magma_free_cpu( hB_array );
magma_free( dA_array );
magma_free( dB_array );
magma_free_cpu( Anorm );
magma_free_cpu( Bnorm );
opts.cleanup();
TESTING_CHECK( magma_finalize() );
return status;
}
| [
"vazcorm@gmail.com"
] | vazcorm@gmail.com |
b1f0a5ef9e8c1cdc1c41ccf8db6a19efaf3487d6 | 48e9625fcc35e6bf790aa5d881151906280a3554 | /Sources/Elastos/LibCore/src/org/apache/harmony/security/pkcs8/CPrivateKeyInfoHelper.cpp | 4231c9cd22ff9484882de209feb3cec56b052d78 | [
"Apache-2.0"
] | permissive | suchto/ElastosRT | f3d7e163d61fe25517846add777690891aa5da2f | 8a542a1d70aebee3dbc31341b7e36d8526258849 | refs/heads/master | 2021-01-22T20:07:56.627811 | 2017-03-17T02:37:51 | 2017-03-17T02:37:51 | 85,281,630 | 4 | 2 | null | 2017-03-17T07:08:49 | 2017-03-17T07:08:49 | null | UTF-8 | C++ | false | false | 1,350 | cpp | //=========================================================================
// Copyright (C) 2012 The Elastos 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.
//=========================================================================
#include "CPrivateKeyInfoHelper.h"
#include <CPrivateKeyInfo.h>
namespace Org {
namespace Apache {
namespace Harmony {
namespace Security {
namespace Pkcs8 {
CAR_SINGLETON_IMPL(CPrivateKeyInfoHelper)
CAR_INTERFACE_IMPL(CPrivateKeyInfoHelper, Singleton, IPrivateKeyInfoHelper)
ECode CPrivateKeyInfoHelper::GetASN1(
/* [out] */ IASN1Sequence** asn1)
{
VALIDATE_NOT_NULL(asn1)
*asn1 = CPrivateKeyInfo::ASN1.Get();
REFCOUNT_ADD(*asn1)
return NOERROR;
}
} // namespace Pkcs8
} // namespace Security
} // namespace Harmony
} // namespace Apache
} // namespace Org
| [
"cao.jing@kortide.com"
] | cao.jing@kortide.com |
61d531483d5853e7e402f2c3a951fe191d37f3c0 | 70f6aac788d5b06d33a935645065c029c519fa45 | /2019-01-24/Master-AIP-PG-DCW-HV/AIPRelease/Out-Moc/moc_sqlproduct.cpp | 2ec8fddabafa14bb3de75fe0261d122cb92682d2 | [] | no_license | Bluce-Song/2019 | dedf7f37c61ca40a33429c366256876dd12f2471 | 074a6e31566f35843959d52e68606f4fe9a21a92 | refs/heads/master | 2020-04-18T08:01:09.796128 | 2019-01-25T01:25:16 | 2019-01-25T01:25:16 | 167,381,182 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,697 | cpp | /****************************************************************************
** Meta object code from reading C++ file 'sqlproduct.h'
**
** Created by: The Qt Meta Object Compiler version 63 (Qt 4.8.5)
**
** WARNING! All changes made in this file will be lost!
*****************************************************************************/
#include "../../AIPDebug/sql/sqlproduct.h"
#if !defined(Q_MOC_OUTPUT_REVISION)
#error "The header file 'sqlproduct.h' doesn't include <QObject>."
#elif Q_MOC_OUTPUT_REVISION != 63
#error "This file was generated using the moc from 4.8.5. It"
#error "cannot be used with the include files from this version of Qt."
#error "(The moc has changed too much.)"
#endif
QT_BEGIN_MOC_NAMESPACE
static const uint qt_meta_data_SqlProduct[] = {
// content:
6, // revision
0, // classname
0, 0, // classinfo
10, 14, // methods
0, 0, // properties
0, 0, // enums/sets
0, 0, // constructors
0, // flags
0, // signalCount
// slots: signature, parameters, type, tag, flags
12, 11, 11, 11, 0x08,
21, 11, 11, 11, 0x08,
32, 11, 11, 11, 0x08,
43, 11, 11, 11, 0x08,
56, 11, 11, 11, 0x08,
71, 11, 11, 11, 0x08,
86, 11, 11, 11, 0x08,
101, 11, 11, 11, 0x08,
118, 116, 11, 11, 0x08,
145, 141, 11, 11, 0x08,
0 // eod
};
static const char qt_meta_stringdata_SqlProduct[] = {
"SqlProduct\0\0initUI()\0initView()\0"
"initText()\0initLayout()\0createSqlite()\0"
"updateSqlite()\0insertSqlite()\0"
"selectSqlite()\0e\0showEvent(QShowEvent*)\0"
"msg\0recvSqlMap(QVariantMap)\0"
};
void SqlProduct::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a)
{
if (_c == QMetaObject::InvokeMetaMethod) {
Q_ASSERT(staticMetaObject.cast(_o));
SqlProduct *_t = static_cast<SqlProduct *>(_o);
switch (_id) {
case 0: _t->initUI(); break;
case 1: _t->initView(); break;
case 2: _t->initText(); break;
case 3: _t->initLayout(); break;
case 4: _t->createSqlite(); break;
case 5: _t->updateSqlite(); break;
case 6: _t->insertSqlite(); break;
case 7: _t->selectSqlite(); break;
case 8: _t->showEvent((*reinterpret_cast< QShowEvent*(*)>(_a[1]))); break;
case 9: _t->recvSqlMap((*reinterpret_cast< QVariantMap(*)>(_a[1]))); break;
default: ;
}
}
}
const QMetaObjectExtraData SqlProduct::staticMetaObjectExtraData = {
0, qt_static_metacall
};
const QMetaObject SqlProduct::staticMetaObject = {
{ &QWidget::staticMetaObject, qt_meta_stringdata_SqlProduct,
qt_meta_data_SqlProduct, &staticMetaObjectExtraData }
};
#ifdef Q_NO_DATA_RELOCATION
const QMetaObject &SqlProduct::getStaticMetaObject() { return staticMetaObject; }
#endif //Q_NO_DATA_RELOCATION
const QMetaObject *SqlProduct::metaObject() const
{
return QObject::d_ptr->metaObject ? QObject::d_ptr->metaObject : &staticMetaObject;
}
void *SqlProduct::qt_metacast(const char *_clname)
{
if (!_clname) return 0;
if (!strcmp(_clname, qt_meta_stringdata_SqlProduct))
return static_cast<void*>(const_cast< SqlProduct*>(this));
return QWidget::qt_metacast(_clname);
}
int SqlProduct::qt_metacall(QMetaObject::Call _c, int _id, void **_a)
{
_id = QWidget::qt_metacall(_c, _id, _a);
if (_id < 0)
return _id;
if (_c == QMetaObject::InvokeMetaMethod) {
if (_id < 10)
qt_static_metacall(this, _c, _id, _a);
_id -= 10;
}
return _id;
}
QT_END_MOC_NAMESPACE
| [
"songliang008@163.com"
] | songliang008@163.com |
5d23fe5842e54feddbb315c39ba8f5b1b882329c | 41db71010ff664ecd163710019dde3db9d8e2e09 | /thrift/compiler/test/fixtures/includes/gen-cpp2/includes_metadata.cpp | f36aae3bac9bcf9e2ebf61f52918d1d5a4529b79 | [
"Apache-2.0"
] | permissive | jahau/fbthrift | 069c4203ccbe55f84b439b700f94cdd1f0d1311e | 2c73323d9e31fc99ea7a3b73ce8a201b3b8715d0 | refs/heads/master | 2022-04-21T04:31:43.313556 | 2020-02-15T05:53:32 | 2020-02-15T05:55:05 | 240,657,490 | 1 | 0 | null | 2020-02-15T06:37:02 | 2020-02-15T06:37:01 | null | UTF-8 | C++ | false | false | 426 | cpp | /**
* Autogenerated by Thrift
*
* DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING
* @generated
*/
#include "thrift/compiler/test/fixtures/includes/gen-cpp2/includes_metadata.h"
namespace apache {
namespace thrift {
namespace detail {
namespace md {
using ThriftMetadata = ::apache::thrift::metadata::ThriftMetadata;
} // namespace md
} // namespace detail
} // namespace thrift
} // namespace apache
| [
"facebook-github-bot@users.noreply.github.com"
] | facebook-github-bot@users.noreply.github.com |
bc24cccb0cb9e066ec282fd201c3733953f3a461 | ca4d238a1648d3fa1f38aa3845b2063e0b27643a | /12/graph_distanceTree/queue_distanceTree.cpp | 36900303d3a626aa8c45da765da5f06452bd3f70 | [] | no_license | LeafLu0315/CS_Programming | fee05c367f159e269fe94bd6ee7cbb03901c1579 | 4cd9f4b3d08181f058451959ad8a40833d993c32 | refs/heads/master | 2018-09-20T19:32:59.780279 | 2018-09-12T13:09:38 | 2018-09-12T13:09:38 | 114,989,772 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 839 | cpp | #include<cstdio>
#include<vector>
#include<queue>
#define N 5001
using namespace std;
void sol();
int main(void){
int n;
scanf("%d",&n);
while(n--) sol();
return 0;
}
void sol(){
int ans=0,i,nodes;
int parent[N],edge[N],node[N],degree[N];
queue<int> q;
scanf("%d",&nodes);
for(i=2;i<=nodes;i++) scanf("%d",&parent[i]);
for(i=2;i<=nodes;i++) scanf("%d",&edge[i]);
for(i=1;i<=nodes;i++){
degree[i]=0;
node[i]=1;
}
for(i=2;i<=nodes;i++) degree[parent[i]]++;
for(i=1;i<=nodes;i++) if(!degree[i]) q.push(i);
while(!q.empty()){
int f = q.front();
q.pop();
node[parent[f]]+=node[f];
ans += 2*node[f]*(nodes-node[f])*edge[f];
degree[parent[f]]--;
if(!degree[parent[f]]) q.push(parent[f]);
}
printf("%d\n",ans);
}
| [
"johnson7511333@gmail.com"
] | johnson7511333@gmail.com |
6c839c940cf2f82e7d2116d25b87e1bc3027e13c | 7d52ba18a2625287b9ce088691ab85f225dbbe78 | /algo/Cible.cpp | 5bfa91bcdd045710c54b06615e8fe99b3e10803e | [] | no_license | Heabelix/algo | c32f132bd20e1310548a1517c733995ecd840035 | 65a3f40567add84cf83f5a63ed00eb4a6b4358dd | refs/heads/master | 2023-01-19T17:23:16.203004 | 2020-11-23T20:52:28 | 2020-11-23T20:52:28 | 315,437,155 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 60 | cpp | #include "Cible.h"
Cible::Cible(int id)
{
this->id = id;
} | [
"valentin.lefloch35@gmail.com"
] | valentin.lefloch35@gmail.com |
64b8b72e0ed0ffb7b54c6cad723dd9374c397597 | 24862dcb99a7da2050768212be89e91b9acb67b5 | /UE_4.21/Engine/Intermediate/Build/Win32/UE4/Inc/Engine/OnlineEngineInterface.generated.h | 2f283d382751a39ff0e9c972dbe48dd93d8e389e | [] | no_license | dadtaylo/makingchanges | 3f8f1b4b4c7b2605d2736789445fcda693c92eea | 3ea08eab63976feab82561a9355c4fc2d0f76362 | refs/heads/master | 2020-04-22T05:28:01.381983 | 2019-02-25T02:56:07 | 2019-02-25T02:56:07 | 170,160,587 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,812 | h | // Copyright 1998-2018 Epic Games, Inc. All Rights Reserved.
/*===========================================================================
Generated code exported from UnrealHeaderTool.
DO NOT modify this manually! Edit the corresponding .h files instead!
===========================================================================*/
#include "UObject/ObjectMacros.h"
#include "UObject/ScriptMacros.h"
PRAGMA_DISABLE_DEPRECATION_WARNINGS
#ifdef ENGINE_OnlineEngineInterface_generated_h
#error "OnlineEngineInterface.generated.h already included, missing '#pragma once' in OnlineEngineInterface.h"
#endif
#define ENGINE_OnlineEngineInterface_generated_h
#define Engine_Source_Runtime_Engine_Public_Net_OnlineEngineInterface_h_43_RPC_WRAPPERS
#define Engine_Source_Runtime_Engine_Public_Net_OnlineEngineInterface_h_43_RPC_WRAPPERS_NO_PURE_DECLS
#define Engine_Source_Runtime_Engine_Public_Net_OnlineEngineInterface_h_43_INCLASS_NO_PURE_DECLS \
private: \
static void StaticRegisterNativesUOnlineEngineInterface(); \
friend struct Z_Construct_UClass_UOnlineEngineInterface_Statics; \
public: \
DECLARE_CLASS(UOnlineEngineInterface, UObject, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/Engine"), NO_API) \
DECLARE_SERIALIZER(UOnlineEngineInterface) \
static const TCHAR* StaticConfigName() {return TEXT("Engine");} \
#define Engine_Source_Runtime_Engine_Public_Net_OnlineEngineInterface_h_43_INCLASS \
private: \
static void StaticRegisterNativesUOnlineEngineInterface(); \
friend struct Z_Construct_UClass_UOnlineEngineInterface_Statics; \
public: \
DECLARE_CLASS(UOnlineEngineInterface, UObject, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/Engine"), NO_API) \
DECLARE_SERIALIZER(UOnlineEngineInterface) \
static const TCHAR* StaticConfigName() {return TEXT("Engine");} \
#define Engine_Source_Runtime_Engine_Public_Net_OnlineEngineInterface_h_43_STANDARD_CONSTRUCTORS \
/** Standard constructor, called after all reflected properties have been initialized */ \
NO_API UOnlineEngineInterface(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \
DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UOnlineEngineInterface) \
DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UOnlineEngineInterface); \
DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UOnlineEngineInterface); \
private: \
/** Private move- and copy-constructors, should never be used */ \
NO_API UOnlineEngineInterface(UOnlineEngineInterface&&); \
NO_API UOnlineEngineInterface(const UOnlineEngineInterface&); \
public:
#define Engine_Source_Runtime_Engine_Public_Net_OnlineEngineInterface_h_43_ENHANCED_CONSTRUCTORS \
/** Standard constructor, called after all reflected properties have been initialized */ \
NO_API UOnlineEngineInterface(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()) : Super(ObjectInitializer) { }; \
private: \
/** Private move- and copy-constructors, should never be used */ \
NO_API UOnlineEngineInterface(UOnlineEngineInterface&&); \
NO_API UOnlineEngineInterface(const UOnlineEngineInterface&); \
public: \
DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UOnlineEngineInterface); \
DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UOnlineEngineInterface); \
DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UOnlineEngineInterface)
#define Engine_Source_Runtime_Engine_Public_Net_OnlineEngineInterface_h_43_PRIVATE_PROPERTY_OFFSET
#define Engine_Source_Runtime_Engine_Public_Net_OnlineEngineInterface_h_40_PROLOG
#define Engine_Source_Runtime_Engine_Public_Net_OnlineEngineInterface_h_43_GENERATED_BODY_LEGACY \
PRAGMA_DISABLE_DEPRECATION_WARNINGS \
public: \
Engine_Source_Runtime_Engine_Public_Net_OnlineEngineInterface_h_43_PRIVATE_PROPERTY_OFFSET \
Engine_Source_Runtime_Engine_Public_Net_OnlineEngineInterface_h_43_RPC_WRAPPERS \
Engine_Source_Runtime_Engine_Public_Net_OnlineEngineInterface_h_43_INCLASS \
Engine_Source_Runtime_Engine_Public_Net_OnlineEngineInterface_h_43_STANDARD_CONSTRUCTORS \
public: \
PRAGMA_ENABLE_DEPRECATION_WARNINGS
#define Engine_Source_Runtime_Engine_Public_Net_OnlineEngineInterface_h_43_GENERATED_BODY \
PRAGMA_DISABLE_DEPRECATION_WARNINGS \
public: \
Engine_Source_Runtime_Engine_Public_Net_OnlineEngineInterface_h_43_PRIVATE_PROPERTY_OFFSET \
Engine_Source_Runtime_Engine_Public_Net_OnlineEngineInterface_h_43_RPC_WRAPPERS_NO_PURE_DECLS \
Engine_Source_Runtime_Engine_Public_Net_OnlineEngineInterface_h_43_INCLASS_NO_PURE_DECLS \
Engine_Source_Runtime_Engine_Public_Net_OnlineEngineInterface_h_43_ENHANCED_CONSTRUCTORS \
static_assert(false, "Unknown access specifier for GENERATED_BODY() macro in class OnlineEngineInterface."); \
PRAGMA_ENABLE_DEPRECATION_WARNINGS
#undef CURRENT_FILE_ID
#define CURRENT_FILE_ID Engine_Source_Runtime_Engine_Public_Net_OnlineEngineInterface_h
PRAGMA_ENABLE_DEPRECATION_WARNINGS
| [
"dadtaylo@iu.edu"
] | dadtaylo@iu.edu |
e75f6f36cdbc4a84299f4093c3653efcbfb0385a | e9cd4bb2814fffb908639af593f0c1b90923fe74 | /util.h | 596b2de5275085853e54047c2c95ddda835585a8 | [] | no_license | MarcosChabolla/Cpp-Listmap | 4ceb3c78f267184ad61509a04d3804e0abe4af07 | 028d0799d693401b65c92638e2c984a1b8e99892 | refs/heads/master | 2021-04-29T07:51:32.708018 | 2017-01-04T03:03:01 | 2017-01-04T03:03:01 | 77,975,201 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,544 | h | // $Id: util.h,v 1.5 2016/07/20 20:07:26 akhatri Exp $
//
// util -
// A utility class to provide various services not conveniently
// associated with other modules.
//
#ifndef __UTIL_H__
#define __UTIL_H__
#include <iostream>
#include <list>
#include <stdexcept>
#include <string>
using namespace std;
#include "trace.h"
//
// sys_info -
// Keep track of execname and exit status. Must be initialized
// as the first thing done inside main. Main should call:
// sys_info::set_execname (argv[0]);
// before anything else.
//
class sys_info {
public:
static const string& get_execname ();
static void set_exit_status (int status);
static int get_exit_status ();
private:
friend int main (int argc, char** argv);
static void set_execname (const string& argv0);
static string execname;
static int exit_status;
};
//
// datestring -
// Return the current date, as printed by date(1).
//
const string datestring ();
//
// split -
// Split a string into a list<string>.. Any sequence
// of chars in the delimiter string is used as a separator. To
// Split a pathname, use "/". To split a shell command, use " ".
//
list<string> split (const string& line, const string& delimiter);
//
// complain -
// Used for starting error messages. Sets the exit status to
// EXIT_FAILURE, writes the program name to cerr, and then
// returns the cerr ostream. Example:
// complain() << filename << ": some problem" << endl;
//
ostream& complain();
//
// syscall_error -
// Complain about a failed system call. Argument is the name
// of the object causing trouble. The extern errno must contain
// the reason for the problem.
//
void syscall_error (const string&);
//
// operator<< (list) -
// An overloaded template operator which allows lists to be
// printed out as a single operator, each element separated from
// the next with spaces. The item_t must have an output operator
// defined for it.
//
template <typename item_t>
ostream& operator<< (ostream& out, const list<item_t>& vec);
//
// string to_string (thing) -
// Convert anything into a string if it has an ostream<< operator.
//
template <typename item_t>
string to_string (const item_t&);
//
// thing from_string (cons string&) -
// Scan a string for something if it has an istream>> operator.
//
template <typename item_t>
item_t from_string (const string&);
//
// Put the RCS Id string in the object file.
//
#include "util.tcc"
#endif
| [
"Marcos.chabolla@gmail.com"
] | Marcos.chabolla@gmail.com |
49388d4d169e1c1309874ab77b74dc509237f012 | 323788cf746237167c70f38117d3fbd26e92c041 | /sandbox/yajie/src/nnet/nnet-test.cc | 36c211df6d574af1f800907185acafc7bb85b14d | [
"Apache-2.0",
"LicenseRef-scancode-public-domain"
] | permissive | zweiein/kaldi | 3cfc5d1fc66c1ca32c74f71171d4af2e2512f15c | 708448c693272af0d68c8e178c7b4ff836125acf | refs/heads/master | 2020-12-26T00:45:36.907011 | 2015-10-23T21:17:02 | 2015-10-23T21:17:02 | 46,313,562 | 0 | 1 | null | 2015-11-17T00:57:57 | 2015-11-17T00:57:57 | null | UTF-8 | C++ | false | false | 1,196 | cc | // nnet/nnet-test.cc
// Copyright 2010 Brno University of Technology (author: Karel Vesely)
// See ../../COPYING for clarification regarding multiple authors
//
// 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
//
// THIS CODE IS PROVIDED *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
// WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
// MERCHANTABLITY OR NON-INFRINGEMENT.
// See the Apache 2 License for the specific language governing permissions and
// limitations under the License.
#include <iostream>
#include "base/kaldi-common.h"
#include "nnet/nnet-component.h"
#include "nnet/nnet-nnet.h"
using namespace kaldi;
using namespace kaldi::nnet1;
// :TODO:
static void UnitTestSomething() {
KALDI_ERR << "Unimeplemented";
}
static void UnitTestNnet() {
try {
UnitTestSomething();
} catch (const std::exception &e) {
std::cerr << e.what();
}
}
int main() {
UnitTestNnet();
}
| [
"danielpovey@5e6a8d80-dfce-4ca6-a32a-6e07a63d50c8"
] | danielpovey@5e6a8d80-dfce-4ca6-a32a-6e07a63d50c8 |
9139a398865194d49a2d60ca2aa64713e32a214f | 2a9cf39e8dd941bd9fb0c4fb5dcdb49897502318 | /OpencvTutorial/Imgprocessing/MorphLineDetection/morph_line_detection.cpp | c3571a5d55cb03c22d46227cc97e3b0eaece1d4a | [] | no_license | spidervn/atom_it | 4542e55d3c358cb673d8a767474df38d691219a4 | 5fe296410e2330c0677d7dbcb42553da15c5d1f2 | refs/heads/master | 2018-09-16T04:58:40.150441 | 2018-06-05T16:39:01 | 2018-06-05T16:39:01 | 92,168,496 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,634 | cpp |
#include <iostream>
#include <opencv2/opencv.hpp>
using namespace std;
using namespace cv;
int main(int argc, char const *argv[])
{
if (argc != 2) {
printf("Usage: %s image_file\n", argv[0]);
return -1;
}
// Load the image
Mat src = imread(argv[1]);
if (!src.data) {
cerr << "Problem loading page !!!" << endl;
}
imshow("src", src);
// Transform source image to gray if it is not
Mat gray;
if (src.channels() == 3) {
cvtColor(src, gray, CV_BGR2GRAY);
} else {
gray = src;
}
// Show gray image
imshow("gray", gray);
// Apply adaptiveThreshold at the bitwise_not of gray, notice the ~symbol
Mat bw;
adaptiveThreshold(~gray, bw, 255, CV_ADAPTIVE_THRESH_MEAN_C, THRESH_BINARY, 15, -2);
// Show binary image
imshow("binary", bw);
// Create the images that will use to extract the horizontal and vertical lines
Mat horizontal = bw.clone();
Mat vertical = bw.clone();
// Specify size on horizontal axis
int horizontalsize = horizontal.cols / 30;
// Create structure element for extracting horizontal lines through morpholog operations
Mat horizontalStructure = getStructuringElement(MORPH_RECT, Size(horizontalsize, 1));
// Apply morphology operations
erode(horizontal, horizontal, horizontalStructure, Point(-1, -1));
dilate(horizontal, horizontal, horizontalStructure, Point(-1, -1));
// Show extracted horizontal lines
imshow("horizontal", horizontal);
// Specific size of vertical axis
int verticalsize = vertical.rows / 30;
// Create structure element for extracting vertical lines through morphology operations
Mat verticalStructure = getStructuringElement(MORPH_RECT, Size(1, verticalsize));
// Apply morphology operations
erode(vertical, vertical, verticalStructure, Point(-1, -1));
dilate(vertical, vertical, verticalStructure, Point(-1, -1));
// Show extracted vertical lines
imshow("vertical", vertical);
// Inverse vertical image
bitwise_not(vertical, vertical);
imshow("vertical_bit", vertical);
// Extract edges and smooth image according to the logic
// 1. Extract edges
// 2. Dilate (edges)
// 3. src.copyTo(smooth)
// 4. blur smooth img
// 5. smooth.copyTo(src, edges)
// Step 1
Mat edges;
adaptiveThreshold(vertical, edges,255, CV_ADAPTIVE_THRESH_MEAN_C, THRESH_BINARY, 3, -2);
imshow("edges", edges);
// Step 2
Mat kernel = Mat::ones(2, 2, CV_8UC1);
dilate(edges, edges, kernel);
imshow("dilate", edges);
// Step 3
Mat smooth;
vertical.copyTo(smooth);
// Step 4
blur(smooth, smooth, Size(2, 2));
// Step 5
smooth.copyTo(vertical, edges);
// Show final result
imshow("smooth", vertical);
waitKey(0);
return 0;
} | [
"a@vnn.vn"
] | a@vnn.vn |
25368cadc04e1c0df62d4c9391add67fb3a649fb | d4433d8c51e9dc6e0c2904def0a524c9125555de | /Battle/AffectArea/AffectFrontArea.cpp | 25bd94b70661c44d4dcec77149cd4a5e5db9e9ef | [] | no_license | 54993306/Classes | 3458d9e86d1f0e2caa791cde87aff383b2a228bb | d4d1ec5ca100162bd64156deba3748ce1410151d | refs/heads/master | 2020-04-12T06:23:49.273040 | 2016-11-17T04:00:19 | 2016-11-17T04:00:19 | 58,427,218 | 1 | 3 | null | null | null | null | GB18030 | C++ | false | false | 1,296 | cpp | /*************************************************************
*
*
* Data : 2016.6.12
*
* Name :
*
* Author : Lin_Xiancheng
*
* Description :
*
*
*************************************************************/
#include "Battle/AffectArea/AffectFrontArea.h"
namespace BattleSpace
{
//前方单体
sAffectType AffectFrontSingle::getAreaType()
{
return sAffectType::eFrontSingle;
}
void AffectFrontSingle::initArea(AreaCountInfo& pInfo)
{
vector<BaseRole*>tRoles = pInfo.getAlive()->getCurrSkillTargets();
for (auto tRole : tRoles)
{
if (!tRole->getCaptain())
{
pInfo.addGrid(tRole->getGridIndex());
return ;
}
}
}
/***************************************************************************/
//前方分散
sAffectType AffectFrontDisperse::getAreaType()
{
return sAffectType::eFrontDisperse;
}
void AffectFrontDisperse::initArea(AreaCountInfo& pInfo)
{
AffectFrontSingle::initArea(pInfo);
pInfo.DisperseDispose();
}
/***************************************************************************/
//前军n排
sAffectType AffectFrontRow::getAreaType()
{
return sAffectType::eFrontRow;
}
void AffectFrontRow::initArea(AreaCountInfo& pInfo)
{
AffectFrontSingle::initArea(pInfo);
pInfo.RowType(eFrontDirection);
}
} | [
"54993306@qq.com"
] | 54993306@qq.com |
973fabdd69d8863c9304a25131b5076a641a43ac | e2bb8568b21bb305de3b896cf81786650b1a11f9 | /SDK/SCUM_1H_Brass_knuckles_classes.hpp | 3da32b10a9a9659b6c30a01435618c5dba7c1236 | [] | no_license | Buttars/SCUM-SDK | 822e03fe04c30e04df0ba2cb4406fe2c18a6228e | 954f0ab521b66577097a231dab2bdc1dd35861d3 | refs/heads/master | 2020-03-28T02:45:14.719920 | 2018-09-05T17:53:23 | 2018-09-05T17:53:23 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 931 | hpp | #pragma once
// SCUM (0.1.17) SDK
#ifdef _MSC_VER
#pragma pack(push, 0x8)
#endif
#include "SCUM_1H_Brass_knuckles_structs.hpp"
namespace SDK
{
//---------------------------------------------------------------------------
//Classes
//---------------------------------------------------------------------------
// BlueprintGeneratedClass 1H_Brass_knuckles.1H_Brass_knuckles_C
// 0x0008 (0x07D8 - 0x07D0)
class A1H_Brass_knuckles_C : public AWeaponItem
{
public:
class UMeleeAttackCollisionCapsule* MeleeAttackCollisionCapsule; // 0x07D0(0x0008) (CPF_BlueprintVisible, CPF_ZeroConstructor, CPF_InstancedReference, CPF_IsPlainOldData)
static UClass* StaticClass()
{
static auto ptr = UObject::FindObject<UClass>("BlueprintGeneratedClass 1H_Brass_knuckles.1H_Brass_knuckles_C");
return ptr;
}
void UserConstructionScript();
};
}
#ifdef _MSC_VER
#pragma pack(pop)
#endif
| [
"igromanru@yahoo.de"
] | igromanru@yahoo.de |
41957d73ba208d338736beb769e782437d9aa624 | 28d25f81c33fe772a6d5f740a1b36b8c8ba854b8 | /UVA/11456/main.cpp | b01bee620a4450e0d759c09e68aa29602bc679e0 | [] | no_license | ahmedibrahim404/CompetitiveProgramming | b59dcfef250818fb9f34797e432a75ef1507578e | 7473064433f92ac8cf821b3b1d5cd2810f81c4ad | refs/heads/master | 2021-12-26T01:18:35.882467 | 2021-11-11T20:43:08 | 2021-11-11T20:43:08 | 148,578,163 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 709 | cpp | #include<algorithm>
#include<cstdio>
using namespace std;
int A[2500], Ma[2500], Mb[2500];
int N, T;
int main() {
scanf("%d", &T);
for(int t = 0; t < T; t++) {
scanf("%d", &N);
for(int i = 0; i < N; i++)
scanf("%d", &A[i]);
for(int i = N - 1; i >= 0; i--) {
Ma[i] = 1;
for(int j = i + 1; j < N; j++) {
if(A[i] < A[j]) {
Ma[i] = max(Ma[j] + 1, Ma[i]);
}
}
}
for(int i = N - 1; i >= 0; i--) {
Mb[i] = 1;
for(int j = i + 1; j < N; j++) {
if(A[i] > A[j]) {
Mb[i] = max(Mb[j] + 1, Mb[i]);
}
}
}
int ans = 0;
for(int i = 0; i < N; i++) {
ans = max(ans, Ma[i] + Mb[i] - 1);
}
printf("%d\n", ans);
}
}
| [
"ahmedie20022011@gmail.com"
] | ahmedie20022011@gmail.com |
061f663b5801ada16fc574acbc30efdeb8213e5d | 5c77de87b42178964d736ef692e2589bf30c8224 | /Source/CylandEditor/Public/CyLandToolInterface.h | ca9afc8aa2910999ee5421bae06ff83d39e67c68 | [] | no_license | hanbim520/UnrealLandscapeCopy | 7f5876584f0bbf31ad0da9a8516fd1db8ac29c82 | 209af4d0b2733d62ee42ab0133c51c2022d7e2df | refs/heads/master | 2022-02-10T12:28:34.660178 | 2019-07-02T15:46:26 | 2019-07-02T15:46:26 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,930 | h | // Copyright 1998-2019 Epic Games, Inc. All Rights Reserved.
#pragma once
#include "CoreMinimal.h"
#include "InputCoreTypes.h"
#include "UObject/GCObject.h"
#include "UnrealWidget.h"
#include "EdMode.h"
class FEditorViewportClient;
class FPrimitiveDrawInterface;
class FSceneView;
class FViewport;
class UCyLandInfo;
class UCyLandLayerInfoObject;
class UMaterialInstance;
class UMaterialInterface;
class UViewportInteractor;
struct FViewportClick;
// FCyLandToolMousePosition - Struct to store mouse positions since the last time we applied the brush
struct FCyLandToolInteractorPosition
{
// Stored in heightmap space.
FVector2D Position;
bool bModifierPressed;
FCyLandToolInteractorPosition(FVector2D InPosition, const bool bInModifierPressed)
: Position(InPosition)
, bModifierPressed(bInModifierPressed)
{
}
};
enum class ECyLandBrushType
{
Normal = 0,
Alpha,
Component,
Gizmo,
Splines
};
class FCyLandBrushData
{
protected:
FIntRect Bounds;
TArray<float> BrushAlpha;
public:
FCyLandBrushData()
: Bounds()
{
}
FCyLandBrushData(FIntRect InBounds)
: Bounds(InBounds)
{
BrushAlpha.SetNumZeroed(Bounds.Area());
}
FIntRect GetBounds() const
{
return Bounds;
}
// For compatibility with older CyLand code that uses inclusive bounds in 4 int32s
void GetInclusiveBounds(int32& X1, int32& Y1, int32& X2, int32& Y2) const
{
X1 = Bounds.Min.X;
Y1 = Bounds.Min.Y;
X2 = Bounds.Max.X - 1;
Y2 = Bounds.Max.Y - 1;
}
float* GetDataPtr(FIntPoint Position)
{
return BrushAlpha.GetData() + (Position.Y - Bounds.Min.Y) * Bounds.Width() + (Position.X - Bounds.Min.X);
}
const float* GetDataPtr(FIntPoint Position) const
{
return BrushAlpha.GetData() + (Position.Y - Bounds.Min.Y) * Bounds.Width() + (Position.X - Bounds.Min.X);
}
FORCEINLINE explicit operator bool() const
{
return BrushAlpha.Num() != 0;
}
FORCEINLINE bool operator!() const
{
return !(bool)*this;
}
};
class FCyLandBrush : public FGCObject
{
public:
virtual void MouseMove(float CyLandX, float CyLandY) = 0;
virtual FCyLandBrushData ApplyBrush(const TArray<FCyLandToolInteractorPosition>& InteractorPositions) = 0;
virtual TOptional<bool> InputKey(FEditorViewportClient* InViewportClient, FViewport* InViewport, FKey InKey, EInputEvent InEvent) { return TOptional<bool>(); }
virtual void Tick(FEditorViewportClient* ViewportClient, float DeltaTime) {};
virtual void BeginStroke(float CyLandX, float CyLandY, class FCyLandTool* CurrentTool);
virtual void EndStroke();
virtual void EnterBrush() {}
virtual void LeaveBrush() {}
virtual ~FCyLandBrush() {}
virtual UMaterialInterface* GetBrushMaterial() { return NULL; }
virtual const TCHAR* GetBrushName() = 0;
virtual FText GetDisplayName() = 0;
virtual ECyLandBrushType GetBrushType() { return ECyLandBrushType::Normal; }
// FGCObject interface
virtual void AddReferencedObjects(FReferenceCollector& Collector) override {}
};
struct FCyLandBrushSet
{
FCyLandBrushSet(const TCHAR* InBrushSetName)
: BrushSetName(InBrushSetName)
, PreviousBrushIndex(0)
{
}
const FName BrushSetName;
TArray<FCyLandBrush*> Brushes;
int32 PreviousBrushIndex;
virtual ~FCyLandBrushSet()
{
for (int32 BrushIdx = 0; BrushIdx < Brushes.Num(); BrushIdx++)
{
delete Brushes[BrushIdx];
}
}
};
namespace ECyLandToolTargetType
{
enum Type : int8
{
Heightmap = 0,
Weightmap = 1,
Visibility = 2,
Invalid = -1, // only valid for CyLandEdMode->CurrentToolTarget.TargetType
};
}
namespace ECyLandToolTargetTypeMask
{
enum Type : uint8
{
Heightmap = 1 << ECyLandToolTargetType::Heightmap,
Weightmap = 1 << ECyLandToolTargetType::Weightmap,
Visibility = 1 << ECyLandToolTargetType::Visibility,
NA = 0,
All = 0xFF,
};
inline ECyLandToolTargetTypeMask::Type FromType(ECyLandToolTargetType::Type TargetType)
{
if (TargetType == ECyLandToolTargetType::Invalid)
{
return ECyLandToolTargetTypeMask::NA;
}
return (ECyLandToolTargetTypeMask::Type)(1 << TargetType);
}
}
struct FCyLandToolTarget
{
TWeakObjectPtr<UCyLandInfo> CyLandInfo;
ECyLandToolTargetType::Type TargetType;
TWeakObjectPtr<UCyLandLayerInfoObject> LayerInfo;
FName LayerName;
int32 CurrentProceduralLayerIndex;
FCyLandToolTarget()
: CyLandInfo()
, TargetType(ECyLandToolTargetType::Heightmap)
, LayerInfo()
, LayerName(NAME_None)
, CurrentProceduralLayerIndex(INDEX_NONE)
{
}
};
enum class ECyLandToolType
{
Normal = 0,
Mask,
};
/**
* FCyLandTool
*/
class FCyLandTool : public FGCObject
{
public:
virtual void EnterTool() {}
virtual bool IsToolActive() const { return false; }
virtual void ExitTool() {}
virtual bool BeginTool(FEditorViewportClient* ViewportClient, const FCyLandToolTarget& Target, const FVector& InHitLocation) = 0;
virtual void EndTool(FEditorViewportClient* ViewportClient) = 0;
virtual void Tick(FEditorViewportClient* ViewportClient, float DeltaTime) {};
virtual bool MouseMove(FEditorViewportClient* ViewportClient, FViewport* Viewport, int32 x, int32 y) = 0;
virtual bool HandleClick(HHitProxy* HitProxy, const FViewportClick& Click) { return false; }
virtual bool InputKey(FEditorViewportClient* InViewportClient, FViewport* InViewport, FKey InKey, EInputEvent InEvent) { return false; }
virtual bool InputDelta(FEditorViewportClient* InViewportClient, FViewport* InViewport, FVector& InDrag, FRotator& InRot, FVector& InScale) { return false; }
virtual bool GetCursor(EMouseCursor::Type& OutCursor) const { return false; }
FCyLandTool() : PreviousBrushIndex(-1) {}
virtual ~FCyLandTool() {}
virtual const TCHAR* GetToolName() = 0;
virtual FText GetDisplayName() = 0;
virtual void SetEditRenderType();
virtual void Render(const FSceneView* View, FViewport* Viewport, FPrimitiveDrawInterface* PDI) {}
virtual bool SupportsMask() { return true; }
virtual bool SupportsComponentSelection() { return false; }
virtual bool OverrideSelection() const { return false; }
virtual bool IsSelectionAllowed(AActor* InActor, bool bInSelection) const { return false; }
virtual bool UsesTransformWidget() const { return false; }
virtual EAxisList::Type GetWidgetAxisToDraw(FWidget::EWidgetMode InWidgetMode) const { return EAxisList::All; }
virtual bool OverrideWidgetLocation() const { return true; }
virtual bool OverrideWidgetRotation() const { return true; }
virtual FVector GetWidgetLocation() const { return FVector::ZeroVector; }
virtual FMatrix GetWidgetRotation() const { return FMatrix::Identity; }
virtual bool DisallowMouseDeltaTracking() const { return false; }
virtual void SetCanToolBeActivated(bool Value) { }
virtual bool CanToolBeActivated() const { return true; }
virtual void SetExternalModifierPressed(const bool bPressed) {};
virtual EEditAction::Type GetActionEditDuplicate() { return EEditAction::Skip; }
virtual EEditAction::Type GetActionEditDelete() { return EEditAction::Skip; }
virtual EEditAction::Type GetActionEditCut() { return EEditAction::Skip; }
virtual EEditAction::Type GetActionEditCopy() { return EEditAction::Skip; }
virtual EEditAction::Type GetActionEditPaste() { return EEditAction::Skip; }
virtual bool ProcessEditDuplicate() { return false; }
virtual bool ProcessEditDelete() { return false; }
virtual bool ProcessEditCut() { return false; }
virtual bool ProcessEditCopy() { return false; }
virtual bool ProcessEditPaste() { return false; }
// Functions which doesn't need Viewport data...
virtual void Process(int32 Index, int32 Arg) {}
virtual ECyLandToolType GetToolType() { return ECyLandToolType::Normal; }
virtual ECyLandToolTargetTypeMask::Type GetSupportedTargetTypes() { return ECyLandToolTargetTypeMask::NA; };
// FGCObject interface
virtual void AddReferencedObjects(FReferenceCollector& Collector) override {}
public:
int32 PreviousBrushIndex;
TArray<FName> ValidBrushes;
};
namespace CyLandTool
{
UMaterialInstance* CreateMaterialInstance(UMaterialInterface* BaseMaterial);
}
| [
"knziha@gmail.com"
] | knziha@gmail.com |
bc4b4e067513cab3de47e4689bd8a5024e6eadab | 07ca4af273d8d6d37eeab4242d6ef73c6e52cc12 | /advance/1062.cpp | c3fdbb8857186070c6bc1e93ed2c0d4b29cbd066 | [] | no_license | zffffw/pta | d2fb1c83e9b5435c2dfbd1179baf842c0426c7b1 | c3bdf45602d0e8a382b5511723bcdd9cf498c558 | refs/heads/master | 2020-05-01T07:57:51.563963 | 2019-05-01T03:13:43 | 2019-05-01T03:13:43 | 177,365,318 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,308 | cpp | #include <iostream>
#include <string>
#include <algorithm>
#include <vector>
using namespace std;
typedef struct node {
string idx;
int a;
int b;
int s;
bool operator < (const node &A) const {
if(s != A.s)
return s > A.s;
else if(a != A.a)
return a > A.a;
else
return idx < A.idx;
}
} node;
vector <node> v[4];
int n, L, H;
int main() {
scanf("%d %d %d", &n, &L, &H);
int total = 0;
for(int i = 0; i < n; ++i) {
char buf[128];
int a, b;
scanf("%s %d %d", buf, &a, &b);
string idx = buf;
node tmp = {buf, a, b, a + b};
if(a >= H && b >= H) {
v[0].push_back(tmp);
total ++;
} else if(a >= H && b >= L) {
v[1].push_back(tmp);
total ++;
} else if(a >= b && a < H && b < H && a >= L && b >= L) {
v[2].push_back(tmp);
total ++;
} else if(a >= L && b >= L) {
v[3].push_back(tmp);
total ++;
}
}
printf("%d\n", total);
for(int i = 0; i < 4; ++i) {
sort(v[i].begin(), v[i].end());
for(int j = 0; j < v[i].size(); ++j) {
printf("%s %d %d\n", v[i][j].idx.data(), v[i][j].a, v[i][j].b);
}
}
} | [
"424533148@qq.com"
] | 424533148@qq.com |
5d557514d512fd080bf0e3fe659d38c790aeb0ae | 4a399bbb5129a2a413932c545050d7a7ad4ee05a | /Region.h | 8439e8318954cdbb668c9035d1d756d95429823f | [] | no_license | voicelessreason/warlightBot | 345e7341e226ad1c7c561c213b411f9ce71cfeda | 5880d735e9f8ff1e6efa7335590745a36391a94d | refs/heads/master | 2021-01-10T20:13:21.492331 | 2015-05-29T15:41:21 | 2015-05-29T15:41:21 | 28,961,043 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 626 | h | #ifndef REGION_H
#define REGION_H
#include <vector>
#include <string>
using namespace std;
class Region
{
std::vector<int> neighbors;
int id;
int nbNeighbors;
int superRegion;
string owner;
int armies;
public:
Region();
Region(int pId,int superRegion);
virtual ~Region();
void addNeighbors(int Neighbors);
void setArmies(int nbArmies);
void setOwner(string owner);
int getArmies();
string getOwner();
int getSuperRegion();
int getID();
vector<int>& getNeighbors();
protected:
private:
};
#endif // REGION_H
| [
"arlenstrausman@gmail.com"
] | arlenstrausman@gmail.com |
1a2ed7ea4fac8cf39f8aa9e18e7154facc139314 | 00e925fe9705dddd93c155667d71da861fb01772 | /src/test/pmt_tests.cpp | c7178a7ead1206c9ebf3890b930d526ea0301211 | [
"MIT"
] | permissive | Crowndev/crown | f017445d4cbc6b5dda4e6a57fec16d07febfdf92 | 7d8f35e5f1749b0b93e16fda5c45c800ba15f882 | refs/heads/main | 2022-12-28T08:08:51.649518 | 2022-12-25T19:59:36 | 2022-12-25T19:59:36 | 415,886,236 | 7 | 3 | MIT | 2022-12-25T19:59:37 | 2021-10-11T10:57:29 | C++ | UTF-8 | C++ | false | false | 4,438 | cpp | // Copyright (c) 2012-2020 The Crown Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include <arith_uint256.h>
#include <consensus/merkle.h>
#include <merkleblock.h>
#include <serialize.h>
#include <streams.h>
#include <test/util/setup_common.h>
#include <uint256.h>
#include <version.h>
#include <vector>
#include <boost/test/unit_test.hpp>
class CPartialMerkleTreeTester : public CPartialMerkleTree
{
public:
// flip one bit in one of the hashes - this should break the authentication
void Damage() {
unsigned int n = InsecureRandRange(vHash.size());
int bit = InsecureRandBits(8);
*(vHash[n].begin() + (bit>>3)) ^= 1<<(bit&7);
}
};
BOOST_FIXTURE_TEST_SUITE(pmt_tests, BasicTestingSetup)
BOOST_AUTO_TEST_CASE(pmt_test1)
{
static const unsigned int nTxCounts[] = {1, 4, 7, 17, 56, 100, 127, 256, 312, 513, 1000, 4095};
for (int i = 0; i < 12; i++) {
unsigned int nTx = nTxCounts[i];
// build a block with some dummy transactions
CBlock block;
for (unsigned int j=0; j<nTx; j++) {
CMutableTransaction tx;
tx.nLockTime = j; // actual transaction data doesn't matter; just make the nLockTime's unique
block.vtx.push_back(MakeTransactionRef(std::move(tx)));
}
// calculate actual merkle root and height
uint256 merkleRoot1 = BlockMerkleRoot(block);
std::vector<uint256> vTxid(nTx, uint256());
for (unsigned int j=0; j<nTx; j++)
vTxid[j] = block.vtx[j]->GetHash();
int nHeight = 1, nTx_ = nTx;
while (nTx_ > 1) {
nTx_ = (nTx_+1)/2;
nHeight++;
}
// check with random subsets with inclusion chances 1, 1/2, 1/4, ..., 1/128
for (int att = 1; att < 15; att++) {
// build random subset of txid's
std::vector<bool> vMatch(nTx, false);
std::vector<uint256> vMatchTxid1;
for (unsigned int j=0; j<nTx; j++) {
bool fInclude = InsecureRandBits(att / 2) == 0;
vMatch[j] = fInclude;
if (fInclude)
vMatchTxid1.push_back(vTxid[j]);
}
// build the partial merkle tree
CPartialMerkleTree pmt1(vTxid, vMatch);
// serialize
CDataStream ss(SER_NETWORK, PROTOCOL_VERSION);
ss << pmt1;
// verify CPartialMerkleTree's size guarantees
unsigned int n = std::min<unsigned int>(nTx, 1 + vMatchTxid1.size()*nHeight);
BOOST_CHECK(ss.size() <= 10 + (258*n+7)/8);
// deserialize into a tester copy
CPartialMerkleTreeTester pmt2;
ss >> pmt2;
// extract merkle root and matched txids from copy
std::vector<uint256> vMatchTxid2;
std::vector<unsigned int> vIndex;
uint256 merkleRoot2 = pmt2.ExtractMatches(vMatchTxid2, vIndex);
// check that it has the same merkle root as the original, and a valid one
BOOST_CHECK(merkleRoot1 == merkleRoot2);
BOOST_CHECK(!merkleRoot2.IsNull());
// check that it contains the matched transactions (in the same order!)
BOOST_CHECK(vMatchTxid1 == vMatchTxid2);
// check that random bit flips break the authentication
for (int j=0; j<4; j++) {
CPartialMerkleTreeTester pmt3(pmt2);
pmt3.Damage();
std::vector<uint256> vMatchTxid3;
uint256 merkleRoot3 = pmt3.ExtractMatches(vMatchTxid3, vIndex);
BOOST_CHECK(merkleRoot3 != merkleRoot1);
}
}
}
}
BOOST_AUTO_TEST_CASE(pmt_malleability)
{
std::vector<uint256> vTxid = {
ArithToUint256(1), ArithToUint256(2),
ArithToUint256(3), ArithToUint256(4),
ArithToUint256(5), ArithToUint256(6),
ArithToUint256(7), ArithToUint256(8),
ArithToUint256(9), ArithToUint256(10),
ArithToUint256(9), ArithToUint256(10),
};
std::vector<bool> vMatch = {false, false, false, false, false, false, false, false, false, true, true, false};
CPartialMerkleTree tree(vTxid, vMatch);
std::vector<unsigned int> vIndex;
BOOST_CHECK(tree.ExtractMatches(vTxid, vIndex).IsNull());
}
BOOST_AUTO_TEST_SUITE_END()
| [
"blockmecha@gmail.com"
] | blockmecha@gmail.com |
7cdd128081f1fa1780da614f5a73135fdc55ca8f | 236753dbba656350d4a9f8ccd5efa27ef6886c32 | /rayTracing/camera.cpp | 494b43ebeceac71bc938a397edc1d16f399f2294 | [] | no_license | xiajiaonly/rayTracing | 31b6c8c156762bd5c2176e2c4a92a85c5f173225 | 53894946be8180748e90def66add18c58aa1e226 | refs/heads/master | 2021-05-28T03:56:54.016175 | 2015-01-17T16:36:52 | 2015-01-17T16:36:52 | null | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 2,214 | cpp |
#include "stdafx.h"
#include "camera.h"
Camera::Camera(Point& pos, Point& headup, Point& lookat)
:pos(pos),headup(headup),lookat(lookat)
{
unitise();
}
Line Camera::getSightLight(double x, double y)
{
Point mov = xaxis * x + yaxis * y;
return Line(pos + mov, lookat + mov);
}
void Camera::unitise()
{
dir = (lookat - pos).norm();
lookat = pos + dir;
xaxis = dir.cross(headup);
xaxis = xaxis / xaxis.len();
yaxis = xaxis.cross(dir);
yaxis = yaxis / yaxis.len();
zaxis = xaxis.cross(yaxis);
zaxis = zaxis / zaxis.len();
}
Camera* CameraProspective::readCamera(FILE* fi)
{
Point a, b, c;
a.readPoint(fi);
b.readPoint(fi);
c.readPoint(fi);
double dist;
fscanf(fi, "%lf", &dist);
int DIFEnabled;
double focusDist, focusOffset;
fscanf(fi, "%d%lf%lf", &DIFEnabled, &focusDist, &focusOffset);
return new CameraProspective(a, b, c, dist, DIFEnabled, focusDist, focusOffset);
}
void Camera::setPos(Point* _pos, Point* _headup, Point* _lookat)
{
if(_pos != 0)
pos = *_pos;
if(_headup != 0)
headup = *_headup;
if(_lookat != 0)
lookat = *_lookat;
unitise();
}
CameraProspective::CameraProspective(
Point& pos, Point& headup, Point& lookat,
double dist, int DIFEnabled, double focusDist, double focusOffset)
:Camera(pos, headup, lookat),
dist(dist),DIFEnabled(DIFEnabled), focusDist(focusDist), focusOffset(focusOffset)
{
apetureCenter = pos + dir * dist;
#define fabs(a) ((a)>0?(a):-(a))
focusCenter = apetureCenter + dir * focusDist;
}
Line CameraProspective::getSightLight(double x, double y)
{
Point p = pos + xaxis * x * xratio + yaxis * y * yratio;
Point d = (apetureCenter - p).norm();
double cosa = fabs(d.dot(dir));
Point focusPoint = apetureCenter + d * (focusDist / cosa);
Point mov =
( DIFEnabled == 1?
Point(randf() * focusOffset, randf() * focusOffset, randf() * focusOffset):
Point());
Point pp = apetureCenter + mov; // 在光圈上随机扰动
Point dd = focusPoint - pp; // 新的方向
dd.norm();
Line l(pp, pp + dd);
return l;
/*
double movx = x / halfw * dist;
double movy = y / halfh * dist;
Point mov = xaxis * x + yaxis * y;
Point mov2 = xaxis * (x + movx) + yaxis * (y + movy);
return Line(pos + mov, lookat + mov2);
*/
}
| [
"monocofe@gmail.com"
] | monocofe@gmail.com |
6def90c17822affb00ea6ac573a6e4cd9c7307f8 | 0fe2847bf222a3df0847a08de244000207514d05 | /src/libseabreeze/include/vendors/OceanOptics/protocols/obp/exchanges/OBPGetGPIOExtensionAvailableModesExchange.h | 21d536ff9a9d4044dec6605cf84bf12692c813f7 | [
"MIT"
] | permissive | asenchristov/python-seabreeze | 3656161eb2bf2be082839700f021a5957b81f00b | 573bae1d9de4e819611b2f5b9c66f98d7d0fe066 | refs/heads/master | 2022-12-01T09:39:46.079901 | 2020-08-18T09:07:30 | 2020-08-18T09:07:30 | 288,403,712 | 0 | 0 | MIT | 2020-08-18T08:49:58 | 2020-08-18T08:49:57 | null | UTF-8 | C++ | false | false | 1,955 | h | /***************************************************//**
* @file OBPGetGPIOExtensionAvailableModesExchange.h
* @date April 2017
* @author Ocean Optics, Inc.
*
* LICENSE:
*
* SeaBreeze Copyright (C) 2017, Ocean Optics Inc
*
* 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.
*******************************************************/
#ifndef OBPGETGPIOEXTENSIONAVAILABLEMODESEXCHANGE_H
#define OBPGETGPIOEXTENSIONAVAILABLEMODESEXCHANGE_H
#include "vendors/OceanOptics/protocols/obp/exchanges/OBPQuery.h"
namespace seabreeze
{
namespace oceanBinaryProtocol
{
class OBPGetGPIOExtensionAvailableModesExchange : public OBPQuery
{
public:
OBPGetGPIOExtensionAvailableModesExchange();
virtual ~OBPGetGPIOExtensionAvailableModesExchange();
void setPinNumber(unsigned char eGPIO_Pin_Number);
};
}
}
#endif /* OBPGETGPIOEXTENSIONAVAILABLEMODESEXCHANGE_H */
| [
"andreas@poehlmann.io"
] | andreas@poehlmann.io |
14425a2c777abb43efb0802dc8f54d84b65d1463 | f1072da7dbff060ca7b538a81d3936571fec56ea | /include/usfpp/bpg_rsp/RspOpContext.hpp | 205da117fc551e35dfcb9f891c12a48e882a02f2 | [] | no_license | Hkiller/workspace | e05374d30a6f309fa8cf1de83887ccb5d22736f9 | 660fc5900300786d7581a850a3fefc90f8d07a93 | refs/heads/master | 2021-03-30T22:44:17.469448 | 2017-04-12T06:08:02 | 2017-04-12T06:08:02 | 125,022,632 | 2 | 0 | null | 2018-03-13T09:07:03 | 2018-03-13T09:07:03 | null | UTF-8 | C++ | false | false | 698 | hpp | #ifndef USFPP_BPG_RSP_OPCONTEXT_H
#define USFPP_BPG_RSP_OPCONTEXT_H
#include "usfpp/logic/LogicOpContext.hpp"
#include "System.hpp"
#ifdef _MSC_VER
# pragma warning(push)
# pragma warning(disable:4624)
#endif
namespace Usf { namespace Bpg {
class RspOpContext : public Logic::LogicOpContext {
public:
void addAdditionData(uint32_t meta_id);
void removeAdditionData(uint32_t meta_id);
void setClientId(uint64_t client_id);
uint64_t clientId(void) const;
void setCmd(uint32_t cmd);
uint32_t cmd(void) const;
void setSn(uint32_t sn);
uint32_t sn(void) const;
void setResponse(bool needResponse);
};
}}
#ifdef _MSC_VER
# pragma warning(pop)
#endif
#endif
| [
"570385841@qq.com"
] | 570385841@qq.com |
86eb3736eac4a1e99c087d281d5d5a44bf3d31bc | fe91ffa11707887e4cdddde8f386a8c8e724aa58 | /chrome/browser/ui/webui/settings/chromeos/search/search_handler_factory.cc | fba877837383e2e2adf04fd1143f2001c59b55c6 | [
"BSD-3-Clause"
] | permissive | akshaymarch7/chromium | 78baac2b45526031846ccbaeca96c639d1d60ace | d273c844a313b1e527dec0d59ce70c95fd2bd458 | refs/heads/master | 2023-02-26T23:48:03.686055 | 2020-04-15T01:20:07 | 2020-04-15T01:20:07 | 255,778,651 | 2 | 1 | BSD-3-Clause | 2020-04-15T02:04:56 | 2020-04-15T02:04:55 | null | UTF-8 | C++ | false | false | 2,323 | cc | // Copyright 2020 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/ui/webui/settings/chromeos/search/search_handler_factory.h"
#include "chrome/browser/local_search_service/local_search_service_proxy.h"
#include "chrome/browser/local_search_service/local_search_service_proxy_factory.h"
#include "chrome/browser/profiles/incognito_helpers.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/ui/webui/settings/chromeos/os_settings_localized_strings_provider_factory.h"
#include "chrome/browser/ui/webui/settings/chromeos/search/search_handler.h"
#include "components/keyed_service/content/browser_context_dependency_manager.h"
namespace chromeos {
namespace settings {
// static
SearchHandler* SearchHandlerFactory::GetForProfile(Profile* profile) {
return static_cast<SearchHandler*>(
SearchHandlerFactory::GetInstance()->GetServiceForBrowserContext(
profile, /*create=*/true));
}
// static
SearchHandlerFactory* SearchHandlerFactory::GetInstance() {
return base::Singleton<SearchHandlerFactory>::get();
}
SearchHandlerFactory::SearchHandlerFactory()
: BrowserContextKeyedServiceFactory(
"SearchHandler",
BrowserContextDependencyManager::GetInstance()) {
DependsOn(
local_search_service::LocalSearchServiceProxyFactory::GetInstance());
DependsOn(OsSettingsLocalizedStringsProviderFactory::GetInstance());
}
SearchHandlerFactory::~SearchHandlerFactory() = default;
KeyedService* SearchHandlerFactory::BuildServiceInstanceFor(
content::BrowserContext* context) const {
Profile* profile = Profile::FromBrowserContext(context);
return new SearchHandler(
OsSettingsLocalizedStringsProviderFactory::GetForProfile(profile),
local_search_service::LocalSearchServiceProxyFactory::GetForProfile(
Profile::FromBrowserContext(profile))
->GetLocalSearchServiceImpl());
}
bool SearchHandlerFactory::ServiceIsNULLWhileTesting() const {
return true;
}
content::BrowserContext* SearchHandlerFactory::GetBrowserContextToUse(
content::BrowserContext* context) const {
return chrome::GetBrowserContextOwnInstanceInIncognito(context);
}
} // namespace settings
} // namespace chromeos
| [
"commit-bot@chromium.org"
] | commit-bot@chromium.org |
cc37545d98455f8bbee66bab6b7039925210628c | fe7113121c8e628fdbb166a3daf7958a187f0eb9 | /xfa/fxfa/parser/xfa_basic_data.cpp | d17baeed2b8c926e0c218a9948223d7f5b1ea6b8 | [
"BSD-3-Clause",
"Apache-2.0"
] | permissive | tszirr/pdfium | f80704b6293e3d07fcc73f8368dc1710c6b19617 | 6ab909c1a31743b218455ce90d698463069bae79 | refs/heads/master | 2022-12-31T02:41:35.858154 | 2020-10-21T10:57:12 | 2020-10-21T10:57:12 | 272,494,987 | 0 | 0 | NOASSERTION | 2020-06-15T16:53:13 | 2020-06-15T16:53:12 | null | UTF-8 | C++ | false | false | 9,013 | cpp | // Copyright 2016 PDFium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
#include "xfa/fxfa/parser/xfa_basic_data.h"
#include <iterator>
#include <utility>
#include "fxjs/xfa/cjx_boolean.h"
#include "fxjs/xfa/cjx_container.h"
#include "fxjs/xfa/cjx_datawindow.h"
#include "fxjs/xfa/cjx_delta.h"
#include "fxjs/xfa/cjx_desc.h"
#include "fxjs/xfa/cjx_draw.h"
#include "fxjs/xfa/cjx_encrypt.h"
#include "fxjs/xfa/cjx_eventpseudomodel.h"
#include "fxjs/xfa/cjx_exclgroup.h"
#include "fxjs/xfa/cjx_extras.h"
#include "fxjs/xfa/cjx_field.h"
#include "fxjs/xfa/cjx_form.h"
#include "fxjs/xfa/cjx_handler.h"
#include "fxjs/xfa/cjx_hostpseudomodel.h"
#include "fxjs/xfa/cjx_instancemanager.h"
#include "fxjs/xfa/cjx_layoutpseudomodel.h"
#include "fxjs/xfa/cjx_logpseudomodel.h"
#include "fxjs/xfa/cjx_manifest.h"
#include "fxjs/xfa/cjx_model.h"
#include "fxjs/xfa/cjx_node.h"
#include "fxjs/xfa/cjx_occur.h"
#include "fxjs/xfa/cjx_packet.h"
#include "fxjs/xfa/cjx_script.h"
#include "fxjs/xfa/cjx_signaturepseudomodel.h"
#include "fxjs/xfa/cjx_source.h"
#include "fxjs/xfa/cjx_subform.h"
#include "fxjs/xfa/cjx_textnode.h"
#include "fxjs/xfa/cjx_tree.h"
#include "fxjs/xfa/cjx_treelist.h"
#include "fxjs/xfa/cjx_wsdlconnection.h"
#include "fxjs/xfa/cjx_xfa.h"
#include "third_party/base/stl_util.h"
#include "xfa/fxfa/fxfa_basic.h"
namespace {
struct PacketRecord {
XFA_PacketType packet_type;
uint32_t hash;
uint32_t flags;
const wchar_t* name;
const wchar_t* uri;
};
const PacketRecord g_PacketTable[] = {
#undef PCKT____
#define PCKT____(a, b, c, d, e, f) \
{XFA_PacketType::c, a, XFA_XDPPACKET_FLAGS_##e | XFA_XDPPACKET_FLAGS_##f, \
L##b, d},
#include "xfa/fxfa/parser/packets.inc"
#undef PCKT____
};
struct ElementRecord {
uint32_t hash; // Hashed as wide string.
XFA_Element element;
XFA_Element parent;
};
// Contains read-only data that do not require relocation.
// Parts that require relocation are in `kElementNames` below.
constexpr ElementRecord kElementRecords[] = {
#undef ELEM____
#define ELEM____(a, b, c, d) {a, XFA_Element::c, XFA_Element::d},
#include "xfa/fxfa/parser/elements.inc"
#undef ELEM____
};
constexpr const char* kElementNames[] = {
#undef ELEM____
#define ELEM____(a, b, c, d) b,
#include "xfa/fxfa/parser/elements.inc"
#undef ELEM____
};
static_assert(pdfium::size(kElementRecords) == pdfium::size(kElementNames),
"Size mismatch");
struct AttributeRecord {
uint32_t hash; // Hashed as wide string.
XFA_Attribute attribute;
XFA_ScriptType script_type;
};
// Contains read-only data that do not require relocation.
// Parts that require relocation are in `kAttributeNames` below.
constexpr AttributeRecord kAttributeRecords[] = {
#undef ATTR____
#define ATTR____(a, b, c, d) {a, XFA_Attribute::c, XFA_ScriptType::d},
#include "xfa/fxfa/parser/attributes.inc"
#undef ATTR____
};
constexpr const char* kAttributeNames[] = {
#undef ATTR____
#define ATTR____(a, b, c, d) b,
#include "xfa/fxfa/parser/attributes.inc"
#undef ATTR____
};
static_assert(pdfium::size(kAttributeRecords) == pdfium::size(kAttributeNames),
"Size mismatch");
struct AttributeValueRecord {
// Associated entry in `kAttributeValueNames` hashed as WideString.
uint32_t uHash;
XFA_AttributeValue eName;
};
// Contains read-only data that do not require relocation.
// Parts that require relocation are in `kAttributeValueNames` below.
constexpr AttributeValueRecord kAttributeValueRecords[] = {
#undef VALUE____
#define VALUE____(a, b, c) {a, XFA_AttributeValue::c},
#include "xfa/fxfa/parser/attribute_values.inc"
#undef VALUE____
};
constexpr const char* kAttributeValueNames[] = {
#undef VALUE____
#define VALUE____(a, b, c) b,
#include "xfa/fxfa/parser/attribute_values.inc"
#undef VALUE____
};
static_assert(pdfium::size(kAttributeValueRecords) ==
pdfium::size(kAttributeValueNames),
"Size mismatch");
struct ElementAttributeRecord {
XFA_Element element;
XFA_Attribute attribute;
};
// Contains read-only data that do not require relocation.
// Parts that require relocation are in `kElementAttributeCallbacks` below.
constexpr ElementAttributeRecord kElementAttributeRecords[] = {
#undef ELEM_ATTR____
#define ELEM_ATTR____(a, b, c) {XFA_Element::a, XFA_Attribute::b},
#include "xfa/fxfa/parser/element_attributes.inc"
#undef ELEM_ATTR____
};
constexpr XFA_ATTRIBUTE_CALLBACK kElementAttributeCallbacks[] = {
#undef ELEM_ATTR____
#define ELEM_ATTR____(a, b, c) c##_static,
#include "xfa/fxfa/parser/element_attributes.inc"
#undef ELEM_ATTR____
};
static_assert(pdfium::size(kElementAttributeRecords) ==
pdfium::size(kElementAttributeCallbacks),
"Size mismatch");
} // namespace
XFA_PACKETINFO XFA_GetPacketByIndex(XFA_PacketType ePacket) {
const PacketRecord* pRecord = &g_PacketTable[static_cast<uint8_t>(ePacket)];
return {pRecord->name, pRecord->packet_type, pRecord->uri, pRecord->flags};
}
Optional<XFA_PACKETINFO> XFA_GetPacketByName(WideStringView wsName) {
uint32_t hash = FX_HashCode_GetW(wsName, false);
auto* elem = std::lower_bound(
std::begin(g_PacketTable), std::end(g_PacketTable), hash,
[](const PacketRecord& a, uint32_t hash) { return a.hash < hash; });
if (elem != std::end(g_PacketTable) && elem->name == wsName)
return XFA_GetPacketByIndex(elem->packet_type);
return {};
}
ByteStringView XFA_ElementToName(XFA_Element elem) {
return kElementNames[static_cast<size_t>(elem)];
}
XFA_Element XFA_GetElementByName(WideStringView name) {
uint32_t hash = FX_HashCode_GetW(name, false);
auto* elem = std::lower_bound(
std::begin(kElementRecords), std::end(kElementRecords), hash,
[](const ElementRecord& a, uint32_t hash) { return a.hash < hash; });
if (elem == std::end(kElementRecords))
return XFA_Element::Unknown;
size_t index = std::distance(std::begin(kElementRecords), elem);
return name.EqualsASCII(kElementNames[index]) ? elem->element
: XFA_Element::Unknown;
}
ByteStringView XFA_AttributeToName(XFA_Attribute attr) {
return kAttributeNames[static_cast<size_t>(attr)];
}
Optional<XFA_ATTRIBUTEINFO> XFA_GetAttributeByName(WideStringView name) {
uint32_t hash = FX_HashCode_GetW(name, false);
auto* elem = std::lower_bound(
std::begin(kAttributeRecords), std::end(kAttributeRecords), hash,
[](const AttributeRecord& a, uint32_t hash) { return a.hash < hash; });
if (elem == std::end(kAttributeRecords))
return pdfium::nullopt;
size_t index = std::distance(std::begin(kAttributeRecords), elem);
if (!name.EqualsASCII(kAttributeNames[index]))
return pdfium::nullopt;
XFA_ATTRIBUTEINFO result;
result.attribute = elem->attribute;
result.eValueType = elem->script_type;
return result;
}
ByteStringView XFA_AttributeValueToName(XFA_AttributeValue item) {
return kAttributeValueNames[static_cast<int32_t>(item)];
}
Optional<XFA_AttributeValue> XFA_GetAttributeValueByName(WideStringView name) {
auto* it = std::lower_bound(std::begin(kAttributeValueRecords),
std::end(kAttributeValueRecords),
FX_HashCode_GetW(name, false),
[](const AttributeValueRecord& arg,
uint32_t hash) { return arg.uHash < hash; });
if (it == std::end(kAttributeValueRecords))
return pdfium::nullopt;
size_t index = std::distance(std::begin(kAttributeValueRecords), it);
if (!name.EqualsASCII(kAttributeValueNames[index]))
return pdfium::nullopt;
return it->eName;
}
Optional<XFA_SCRIPTATTRIBUTEINFO> XFA_GetScriptAttributeByName(
XFA_Element element,
WideStringView attribute_name) {
Optional<XFA_ATTRIBUTEINFO> attr = XFA_GetAttributeByName(attribute_name);
if (!attr.has_value())
return {};
while (element != XFA_Element::Unknown) {
auto compound_key = std::make_pair(element, attr.value().attribute);
auto* it = std::lower_bound(
std::begin(kElementAttributeRecords),
std::end(kElementAttributeRecords), compound_key,
[](const ElementAttributeRecord& arg,
const std::pair<XFA_Element, XFA_Attribute>& key) {
return std::make_pair(arg.element, arg.attribute) < key;
});
if (it != std::end(kElementAttributeRecords) &&
compound_key == std::make_pair(it->element, it->attribute)) {
XFA_SCRIPTATTRIBUTEINFO result;
result.attribute = attr.value().attribute;
result.eValueType = attr.value().eValueType;
size_t index = std::distance(std::begin(kElementAttributeRecords), it);
result.callback = kElementAttributeCallbacks[index];
return result;
}
element = kElementRecords[static_cast<size_t>(element)].parent;
}
return {};
}
| [
"commit-bot@chromium.org"
] | commit-bot@chromium.org |
454e0dfde2fae4ad7d987d37d910116cd99ff236 | b96f35b56366e1024d963532064f14c2f6092dd3 | /src/cpp_share/keys/ek_arith_seal1.cpp | f2d9221285701257bddf5c109483413cb0aa3a50 | [] | no_license | oXis/e3 | e89567df12d1fc20cb44f9efda69f17d4073b409 | b2c29128f078fe6345b5c23d3f37c1ae37112181 | refs/heads/master | 2020-09-21T15:06:06.097444 | 2019-10-08T09:44:15 | 2019-10-08T09:44:15 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,066 | cpp | #include <iostream>
#include <fstream>
#include "ek_arith_seal.h"
#include "def_seal1.h"
using std::cout;
using namespace seal;
bool e3::SealBaseEvalKey::load(string fname)
{
if (!NOCOUT) cout << "Loading evaluation key .. " << std::flush;
auto fileParams = fname + ".params.key";
auto fileRelin = fname + ".relin.key";
std::ifstream inParams(fileParams, std::ios::binary);
std::ifstream inRelin (fileRelin , std::ios::binary);
if ( !inParams || !inRelin ) return false;
static e3seal::SealEvalKey evalkey;
try
{
static auto params = EncryptionParameters::Load(inParams);
evalkey.context = SEALContext::Create(params);
///static auto evaluator = Evaluator(evalkey.context);
static Evaluator evaluator(evalkey.context);
evalkey.params = ¶ms;
evalkey.evaluator = &evaluator;
evalkey.relinkeys.load(evalkey.context, inRelin);
}
catch (...) { throw "Bad " + filename() + " eval key"; }
key = &evalkey;
if (!NOCOUT) cout << "ok\n";
return true;
}
| [
"you@example.com"
] | you@example.com |
62b78f6ef8e77244a00f86fb5acea1ca8fef267b | 6728394d63024d85217726e08e292be78e986cf9 | /kino/sqlgen/src/Dict.cpp | f2cbec17bffca054e55dee6a04e69756805fb823 | [] | no_license | mustafirus/oldprojects | 5632c886d98d0ed38469327c05690d0830a72070 | 51180b540b3a19964ae5a1776a743ca0bb9de204 | refs/heads/master | 2021-07-25T16:18:03.885015 | 2013-03-24T09:52:27 | 2013-03-24T09:52:27 | 109,653,046 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 118 | cpp | /*
* Dict.cpp
*
* Created on: 16 марта 2011
* Author: golubev
*/
#include "stdx.h"
#include "Dict.h"
| [
"7886143+mustafirus@users.noreply.github.com"
] | 7886143+mustafirus@users.noreply.github.com |
8836ad5e32462fbe8a34796f62de5bdf8a4b774a | 5c2a066016f9e9ee56a24251709bcd6fc777c153 | /GLTestsApp/GLTestsApp/Classes/AppObjLoader/3d_resource_manager.h | 589d35ebc41b0fb0438f430822778003c3f50f6d | [] | no_license | cleonro/ObjLoader | 33f9969c4f7fd0a954f7fec10c447c191e215e51 | d7483cd89376ed53684e5415d8a09be0df691228 | refs/heads/master | 2016-09-15T19:15:28.497983 | 2014-01-23T21:46:50 | 2014-01-23T21:46:50 | 25,855,975 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,052 | h | #ifndef _RESOURCE_MANAGER_H
#define _RESOURCE_MANAGER_H
#include "3d_model.h"
#include <vector>
#include <string>
#include <map>
using namespace std;
class C_3D_RESOURCE_MANAGER
{
public:
struct T_MODEL_INF
{
T_MODEL_INF();
unsigned int* indices;
C_3D_MODEL::T_3D_MODEL_VERTEX* vertices;
vector<unsigned int> object_start_indices;
vector<string> object_names;
unsigned int references;
string name;
};
C_3D_RESOURCE_MANAGER();
~C_3D_RESOURCE_MANAGER();
C_3D_MODEL* build_model(vector<unsigned int>& indices, vector<C_3D_MODEL::T_3D_MODEL_VERTEX>& vertices,
vector<unsigned int>& object_start_indices, vector<string>& object_names, string& model_name);
void free_model(string name);
void alloc_model(string name);
protected:
map<string, T_MODEL_INF> m_models;
};
#endif // 3D_RESOURCE_MANAGER_H
| [
"cleon_ro@yahoo.com"
] | cleon_ro@yahoo.com |
dc703b06e08936064158f5faaa8bffde5f7590ef | 338f814b6e97001863042556f50b7c85d1ecae08 | /3.1.2DObjects_GLSL/blockTileClass.cpp | 1df2e81c3709d5b72ab7ece983b888f323566a98 | [] | no_license | DaeunGod/Graphics-GLUT | bb0eede4ed51e663e4a23d96444fa40809962368 | 491e6044d4bfea067cedba04ee18f7719e1a0f67 | refs/heads/master | 2020-03-07T17:08:03.294362 | 2018-04-10T16:22:49 | 2018-04-10T16:22:49 | 127,603,215 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,271 | cpp | #include "stdafx.h"
GLfloat blockTileBackGround[5][2] = { { -40.0, 20.0 },{ -40.0, -100.0 } ,{ 40.0, 20.0 },{ 40.0f, -100.0 },{ -40.0f, -100.0 } };
GLfloat blockTileline[4][2] = { { -40, 15.0 },{ -40.0, 20.0 } ,{ 40.0, 15.0 },{ 40.0f, 20.0 } };
GLfloat blockTileDeco1[3][2] = { { -28, 15.0 },{ -23.0, 10.0 },{ -20.0, 15.0 } };
GLfloat blockTileDeco2[3][2] = { { -10, 15.0 },{ -7.0, 12.0 },{ 3.0, 15.0 } };
GLfloat blockTileDeco3[4][2] = { { 12, 20.0 },{ 15.0, 23.0 },{ 21.0, 19.0 },{ 25.0, 22.0 } };
GLfloat blockTileDeco4[4][2] = { { 20, 12.0 },{ 25.0, 17.0 },{ 31.0, 10.0 },{ 33.0, 16.0 } };
GLfloat blockTile_color[2][3] = {
{ 110 / 255.0f, 67 / 255.0f, 42 / 255.0f },
{ 14 / 255.0f, 209 / 255.0f, 69 / 255.0f },
};
void blockTileClass::initObject() {
GLsizeiptr buffer_size = sizeof(blockTileBackGround) + sizeof(blockTileline) + sizeof(blockTileDeco1) +
sizeof(blockTileDeco2) + sizeof(blockTileDeco3) + sizeof(blockTileDeco4);
// Initialize vertex buffer object.
glGenBuffers(1, &VBO_blockTile);
glBindBuffer(GL_ARRAY_BUFFER, VBO_blockTile);
glBufferData(GL_ARRAY_BUFFER, buffer_size, NULL, GL_STATIC_DRAW); // allocate buffer object memory
glBufferSubData(GL_ARRAY_BUFFER, 0, sizeof(blockTileBackGround), blockTileBackGround);
glBufferSubData(GL_ARRAY_BUFFER, sizeof(blockTileBackGround), sizeof(blockTileline), blockTileline);
glBufferSubData(GL_ARRAY_BUFFER, sizeof(blockTileBackGround) + sizeof(blockTileline), sizeof(blockTileDeco1), blockTileDeco1);
glBufferSubData(GL_ARRAY_BUFFER, sizeof(blockTileBackGround) + sizeof(blockTileline) + sizeof(blockTileDeco1)
, sizeof(blockTileDeco2), blockTileDeco2);
glBufferSubData(GL_ARRAY_BUFFER, sizeof(blockTileBackGround) + sizeof(blockTileline) + sizeof(blockTileDeco1) +
sizeof(blockTileDeco2), sizeof(blockTileDeco3), blockTileDeco3);
glBufferSubData(GL_ARRAY_BUFFER, sizeof(blockTileBackGround) + sizeof(blockTileline) + sizeof(blockTileDeco1) +
sizeof(blockTileDeco2) + sizeof(blockTileDeco3), sizeof(blockTileDeco4), blockTileDeco4);
// Initialize vertex array object.
glGenVertexArrays(1, &VAO_blockTile);
glBindVertexArray(VAO_blockTile);
glBindBuffer(GL_ARRAY_BUFFER, VBO_blockTile);
glVertexAttribPointer(LOC_VERTEX, 2, GL_FLOAT, GL_FALSE, 0, BUFFER_OFFSET(0));
glEnableVertexAttribArray(0);
glBindBuffer(GL_ARRAY_BUFFER, 0);
glBindVertexArray(0);
}
void blockTileClass::drawObject(glm::mat4 ViewProjectionMatrix) {
calcUniforMat4(ViewProjectionMatrix);
glBindVertexArray(VAO_blockTile);
glUniform3fv(loc_primitive_color, 1, blockTile_color[0]);
glDrawArrays(GL_TRIANGLE_STRIP, 0, 5);
glUniform3fv(loc_primitive_color, 1, blockTile_color[1]);
glDrawArrays(GL_TRIANGLE_STRIP, 5, 4);
glUniform3fv(loc_primitive_color, 1, blockTile_color[1]);
glDrawArrays(GL_TRIANGLE_FAN, 9, 3);
glUniform3fv(loc_primitive_color, 1, blockTile_color[1]);
glDrawArrays(GL_TRIANGLE_FAN, 12, 3);
glUniform3fv(loc_primitive_color, 1, blockTile_color[1]);
glDrawArrays(GL_TRIANGLE_FAN, 15, 4);
glUniform3fv(loc_primitive_color, 1, blockTile_color[1]);
glDrawArrays(GL_TRIANGLE_FAN, 19, 4);
glBindVertexArray(0);
}
void blockTileClass::updateObjcet() {
}
void blockTileClass::cleanup() {
glDeleteVertexArrays(1, &VAO_blockTile);
glDeleteBuffers(1, &VBO_blockTile);
} | [
"dcj4655@naver.com"
] | dcj4655@naver.com |
f54c1aafa75ce585459f41415caa086c2acee5e8 | ab6d163c4307d85acfe2419d4c6de8628797c6c9 | /EP2_3/packages/Win2D.0.0.11/Include/Microsoft.Graphics.Canvas.DirectX.Direct3D11.interop.h | c8c557ce685c4fe578e771eab8f94142f88f6d32 | [
"CC-BY-4.0",
"CC-BY-3.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | Chubosaurus/Win2D-Getting-Started | 55dab9037397c5c9e95e9e4d007e2f873e0ec08e | c37f0bb28a5aaa1ef255b530a863efde27641f06 | refs/heads/master | 2021-01-17T10:22:44.061878 | 2016-06-11T10:50:20 | 2016-06-11T10:50:20 | 58,127,427 | 17 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,018 | h | // Copyright (c) Microsoft Corporation. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License"); you may
// not use these files 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.
#if defined(_MSC_VER)
#pragma once
#endif
#include <winapifamily.h>
#pragma region Application Family
#if WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_APP)
#include <inspectable.h>
#include <dxgi.h>
STDAPI CreateDirect3D11DeviceFromDXGIDevice(
_In_ IDXGIDevice* dxgiDevice,
_COM_Outptr_ IInspectable** graphicsDevice);
STDAPI CreateDirect3D11SurfaceFromDXGISurface(
_In_ IDXGISurface* dgxiSurface,
_COM_Outptr_ IInspectable** graphicsSurface);
namespace Microsoft { namespace Graphics { namespace Canvas { namespace DirectX { namespace Direct3D11 {
[uuid(6173F6BA-35C0-46F9-A944-BD7661DA6E6E)]
class IDirect3DDxgiInterfaceAccess : public IUnknown
{
public:
IFACEMETHOD(GetInterface)(REFIID iid, void** p) = 0;
};
}}}}}
#if defined(__cplusplus_winrt)
#include <wrl.h>
namespace Microsoft { namespace Graphics { namespace Canvas { namespace DirectX { namespace Direct3D11 {
inline IDirect3DDevice^ CreateDirect3DDevice(
_In_ IDXGIDevice* dxgiDevice)
{
using Microsoft::WRL::ComPtr;
using Platform::Object;
ComPtr<IInspectable> inspectableDevice;
__abi_ThrowIfFailed(CreateDirect3D11DeviceFromDXGIDevice(
dxgiDevice,
&inspectableDevice));
Object^ objectDevice = reinterpret_cast<Object^>(inspectableDevice.Get());
return safe_cast<IDirect3DDevice^>(objectDevice);
}
inline IDirect3DSurface^ CreateDirect3DSurface(
_In_ IDXGISurface* dxgiSurface)
{
using Microsoft::WRL::ComPtr;
using Platform::Object;
ComPtr<IInspectable> inspectableSurface;
__abi_ThrowIfFailed(CreateDirect3D11SurfaceFromDXGISurface(
dxgiSurface,
&inspectableSurface));
Object^ objectSurface = reinterpret_cast<Object^>(inspectableSurface.Get());
return safe_cast<IDirect3DSurface^>(objectSurface);
}
inline HRESULT GetDXGIInterfaceFromObject(
_In_ Platform::Object^ object,
_In_ REFIID iid,
_COM_Outptr_ void** p)
{
using Microsoft::WRL::ComPtr;
using ::Microsoft::Graphics::Canvas::DirectX::Direct3D11::IDirect3DDxgiInterfaceAccess;
IInspectable* deviceInspectable = reinterpret_cast<IInspectable*>(object);
ComPtr<IDirect3DDxgiInterfaceAccess> dxgiInterfaceAccess;
HRESULT hr = deviceInspectable->QueryInterface(IID_PPV_ARGS(&dxgiInterfaceAccess));
if (SUCCEEDED(hr))
{
hr = dxgiInterfaceAccess->GetInterface(iid, p);
}
return hr;
}
template<typename DXGI_TYPE>
HRESULT GetDXGIInterface(
_In_ IDirect3DDevice^ device,
_COM_Outptr_ DXGI_TYPE** dxgi)
{
return GetDXGIInterfaceFromObject(device, IID_PPV_ARGS(dxgi));
}
template<typename DXGI_TYPE>
HRESULT GetDXGIInterface(
_In_ IDirect3DSurface^ surface,
_Out_ DXGI_TYPE** dxgi)
{
return GetDXGIInterfaceFromObject(surface, IID_PPV_ARGS(dxgi));
}
} /* Direct3D11 */ } /* DirectX */ } /* Canvas */ } /* Graphics */ } /* Windows */
#endif /* __cplusplus_winrt */
#endif /* WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_APP) */
#pragma endregion
| [
"dnguyen_wsu@hotmail.com"
] | dnguyen_wsu@hotmail.com |
36d9561d4f352d1cdf8f1508af564be01b288914 | 0f8726a8394d2fbda60bdd24d6c9a82e9a4891ef | /src/RefProperty.cpp | e0efb7c31fe425703b2782963f819a73716080e9 | [
"MIT"
] | permissive | gidapataki/undoable | 4f9de6fa2fdf24424d6dfea2b4b00e3277bf62d2 | aa59b40926d322cd04c84ee21611df8f56a0dfa2 | refs/heads/master | 2020-04-08T08:50:10.576046 | 2019-01-17T15:04:29 | 2019-01-17T15:04:29 | 159,195,668 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,243 | cpp | #include "undoable/RefProperty.h"
namespace undoable {
// RefNode
void RefNode::LinkRef(RefNode* u, RefNode* v) {
u->next_ref_ = v;
v->prev_ref_ = u;
}
void RefNode::UnlinkRef() {
LinkRef(prev_ref_, next_ref_);
LinkRef(this, this);
referable_ = nullptr;
}
// Referable
void Referable::LinkBack(RefPropertyBase* node) {
RefNode::LinkRef(node->prev_ref_, node->next_ref_);
RefNode::LinkRef(head_.prev_ref_, node);
RefNode::LinkRef(node, &head_);
node->referable_ = this;
}
void Referable::ResetAllReferences() {
for (auto* p = head_.next_ref_; p != &head_; p = head_.next_ref_) {
// Note: calling OnReset() could lead to a destroy loop
static_cast<RefPropertyBase*>(p)->SetReferable(nullptr);
}
}
// RefPropertyBase
RefPropertyBase::RefPropertyBase(PropertyOwner* owner)
: Property(owner)
{}
void RefPropertyBase::SetReferable(Referable* referable) {
if (referable != referable_) {
auto cmd = MakeUnique<Change>(this, referable);
owner_->ApplyPropertyChange(std::move(cmd));
}
}
void RefPropertyBase::SetReferableInternal(Referable* referable) {
if (referable) {
referable->LinkBack(this);
} else {
UnlinkRef();
}
}
void RefPropertyBase::OnReset() {
SetReferable(nullptr);
}
} // namespace undoable
| [
"gida.pataki@prezi.com"
] | gida.pataki@prezi.com |
32f8c44644d5ecee3e7b6f7b229f6f559530949e | 05654e33f9569bb4735af4936d553789684288e4 | /Libraries/ZilchShaders/CycleDetection.cpp | 43e865e662cc56ee475e4a94199c2483a9350b47 | [
"MIT"
] | permissive | jodavis42/ZilchShaders | e8265c7768b2e4c2c8a314509364f7f9222541fe | a161323165c54d2824fe184f5d540e0a008b4d59 | refs/heads/master | 2021-06-20T16:49:35.760020 | 2021-04-30T01:06:33 | 2021-04-30T01:06:33 | 205,271,416 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 12,226 | cpp | ///////////////////////////////////////////////////////////////////////////////
///
/// Authors: Joshua Davis
/// Copyright 2018, DigiPen Institute of Technology
///
///////////////////////////////////////////////////////////////////////////////
#include "Precompiled.hpp"
namespace Zero
{
//-------------------------------------------------------------------CycleDetectionContext
CycleDetectionContext::CycleDetectionContext()
{
mErrors = nullptr;
mCurrentLibrary = nullptr;
}
//-------------------------------------------------------------------CycleDetectionObjectScope
CycleDetectionObjectScope::CycleDetectionObjectScope(void* object, CycleDetectionContext* context)
{
mContext = context;
mObject = object;
PushScope();
}
CycleDetectionObjectScope::~CycleDetectionObjectScope()
{
PopScope();
}
void CycleDetectionObjectScope::PushScope()
{
mAlreadyVisited = false;
mCycleDetected = false;
// If we've visited this object twice in the DFS then we found a cycle.
if(mContext->mProcessedObjectsStack.Contains(mObject))
{
mAlreadyVisited = true;
mCycleDetected = true;
return;
}
// Otherwise if we've already processed this object but not in the current stack
// this means this entire sub-tree has already been processed and has no cycles
// (new function calling into a fully explored call graph)
if(mContext->mAllProcessedObjects.Contains(mObject))
{
mAlreadyVisited = true;
return;
}
// Mark that we've visited this object
mContext->mAllProcessedObjects.Insert(mObject);
mContext->mProcessedObjectsStack.Insert(mObject);
}
void CycleDetectionObjectScope::PopScope()
{
// This object is no longer part of the call stack so it's not an error if we see it again
mContext->mProcessedObjectsStack.Erase(mObject);
}
//-------------------------------------------------------------------CycleDetection
CycleDetection::CycleDetection(ZilchShaderSpirVSettings* settings)
{
mErrors = nullptr;
mSettings = settings;
}
bool CycleDetection::Run(Zilch::SyntaxTree& syntaxTree, ZilchShaderIRLibrary* library, ShaderCompilationErrors* errors)
{
mErrors = errors;
CycleDetectionContext context;
context.mErrors = mErrors;
context.mCurrentLibrary = library;
// Do a pre-walk in order to build a map of nodes to zilch objects. This is needed during
// that actual pass as we'll have to recurse from a function call node into a function and
// all of its statements. Only a function node has the actual function statements though
// so we have to build a map here.
Zilch::BranchWalker<CycleDetection, CycleDetectionContext> preWalker;
preWalker.Register(&CycleDetection::PreWalkClassNode);
preWalker.Register(&CycleDetection::PreWalkConstructor);
preWalker.Register(&CycleDetection::PreWalkClassFunction);
preWalker.Register(&CycleDetection::PreWalkClassMemberVariable);
preWalker.Walk(this, syntaxTree.Root, &context);
Zilch::BranchWalker<CycleDetection, CycleDetectionContext> walker;
walker.Register(&CycleDetection::WalkClassNode);
walker.Register(&CycleDetection::WalkClassConstructor);
walker.Register(&CycleDetection::WalkClassFunction);
walker.Register(&CycleDetection::WalkClassMemberVariable);
walker.Register(&CycleDetection::WalkMemberAccessNode);
walker.Register(&CycleDetection::WalkStaticTypeNode);
walker.Walk(this, syntaxTree.Root, &context);
return mErrors->mErrorTriggered;
}
void CycleDetection::PreWalkClassNode(Zilch::ClassNode*& node, CycleDetectionContext* context)
{
// Map the type to its node
context->mTypeMap[node->Type] = node;
// Walk all functions, constructors, and variables to do the same
context->Walker->Walk(this, node->Functions, context);
context->Walker->Walk(this, node->Constructors, context);
context->Walker->Walk(this, node->Variables, context);
}
void CycleDetection::PreWalkConstructor(Zilch::ConstructorNode*& node, CycleDetectionContext* context)
{
context->mConstructorMap[node->DefinedFunction] = node;
}
void CycleDetection::PreWalkClassFunction(Zilch::FunctionNode*& node, CycleDetectionContext* context)
{
context->mFunctionMap[node->DefinedFunction] = node;
}
void CycleDetection::PreWalkClassMemberVariable(Zilch::MemberVariableNode*& node, CycleDetectionContext* context)
{
context->mVariableMap[node->CreatedProperty] = node;
// Additionally handle get/set functions.
if(node->Get != nullptr)
context->mFunctionMap[node->Get->DefinedFunction] = node->Get;
if(node->Set != nullptr)
context->mFunctionMap[node->Set->DefinedFunction] = node->Set;
}
void CycleDetection::WalkClassNode(Zilch::ClassNode*& node, CycleDetectionContext* context)
{
WalkClassPreconstructor(node, context);
context->Walker->Walk(this, node->Constructors, context);
context->Walker->Walk(this, node->Functions, context);
}
void CycleDetection::WalkClassPreconstructor(Zilch::ClassNode*& node, CycleDetectionContext* context)
{
Zilch::Function* preConstructor = node->PreConstructor;
if(preConstructor == nullptr)
return;
CycleDetectionObjectScope objectScope(preConstructor, context);
// If the node has been visited already then early out
if(objectScope.mAlreadyVisited)
{
// If we're visiting this twice because of a cycle then report an error
if(objectScope.mCycleDetected)
ReportError(context);
return;
}
// Continue the DFS by walking all member variables (which walks their initializers)
context->Walker->Walk(this, node->Variables, context);
}
void CycleDetection::WalkClassPreconstructor(Zilch::Function* preConstructor, CycleDetectionContext* context)
{
// Pre-constructors require walking the class node.
Zilch::ClassNode* classNode = context->mTypeMap.FindValue(preConstructor->Owner, nullptr);
if(classNode != nullptr)
WalkClassPreconstructor(classNode, context);
}
void CycleDetection::WalkClassConstructor(Zilch::ConstructorNode*& node, CycleDetectionContext* context)
{
Zilch::Function* zilchConstructor = node->DefinedFunction;
CycleDetectionObjectScope objectScope(zilchConstructor, context);
// If the node has been visited already then early out
if(objectScope.mAlreadyVisited)
{
// If we're visiting this twice because of a cycle then report an error
if(objectScope.mCycleDetected)
ReportError(context);
return;
}
// Continue the DFS down the pre-construction function if it exists (instance variable initializers)
Zilch::Function* preConstructor = zilchConstructor->Owner->PreConstructor;
if(preConstructor != nullptr)
{
// Push the constructor node onto the call stack as calling the pre-constructor
context->mCallStack.PushBack(node);
WalkClassPreconstructor(preConstructor, context);
context->mCallStack.PopBack();
}
}
void CycleDetection::WalkClassFunction(Zilch::FunctionNode*& node, CycleDetectionContext* context)
{
// Only walk a function once
Zilch::Function* zilchFunction = node->DefinedFunction;
CycleDetectionObjectScope objectScope(zilchFunction, context);
// If the node has been visited already then early out
if(objectScope.mAlreadyVisited)
{
// If we're visiting this twice because of a cycle then report an error
if(objectScope.mCycleDetected)
ReportError(context);
return;
}
// Continue the DFS by walking all statements in the function
context->Walker->Walk(this, node->Statements, context);
}
void CycleDetection::WalkClassMemberVariable(Zilch::MemberVariableNode*& node, CycleDetectionContext* context)
{
// Visit the member variable. If the user requests to not continue iteration then stop
Zilch::Property* zilchProperty = node->CreatedProperty;
CycleDetectionObjectScope objectScope(zilchProperty, context);
// If the node has been visited already then early out
if(objectScope.mAlreadyVisited)
{
// If we're visiting this twice because of a cycle then report an error
if(objectScope.mCycleDetected)
ReportError(context);
return;
}
// Continue the DFS by walking variable initializers
if(node->InitialValue != nullptr)
context->Walker->Walk(this, node->InitialValue, context);
}
void CycleDetection::WalkMemberAccessNode(Zilch::MemberAccessNode*& node, CycleDetectionContext* context)
{
// Find the actual accessed function/property
Zilch::Function* zilchFunction = nullptr;
Zilch::Property* zilchProperty = nullptr;
// If this is actually a getter/setter, then find the called get/set function
if(node->AccessedGetterSetter != nullptr)
{
if(node->IoUsage & Zilch::IoMode::ReadRValue)
zilchFunction = node->AccessedGetterSetter->Get;
else if(node->IoUsage & Zilch::IoMode::WriteLValue)
zilchFunction = node->AccessedGetterSetter->Set;
}
else if(node->AccessedFunction != nullptr)
zilchFunction = node->AccessedFunction;
else if(node->AccessedProperty != nullptr)
zilchProperty = node->AccessedProperty;
// Always push the given node onto the current call stack
context->mCallStack.PushBack(node);
// If we're calling a function (including getter/setters)
if(zilchFunction != nullptr)
{
// Deal with [Implements]. If an implements is registered we'll find a shader function with
// a different zilch function then the one we started with. This is the one that should
// actually be walked to find dependencies.
ZilchShaderIRFunction* shaderFunction = context->mCurrentLibrary->FindFunction(zilchFunction);
if(shaderFunction != nullptr)
zilchFunction = shaderFunction->mMeta->mZilchFunction;
// Recursively walk the function we're calling if it's in the current library.
// If it's not in the current library this will return null.
Zilch::FunctionNode* fnNode = context->mFunctionMap.FindValue(zilchFunction, nullptr);
if(fnNode != nullptr)
context->Walker->Walk(this, fnNode, context);
}
// Otherwise, deal with member variables
else if(zilchProperty != nullptr)
{
// Recursively walk the member we're referencing if it's in the current library
Zilch::MemberVariableNode* varNode = context->mVariableMap.FindValue(zilchProperty, nullptr);
if(varNode != nullptr)
context->Walker->Walk(this, varNode, context);
}
context->mCallStack.PopBack();
}
void CycleDetection::WalkStaticTypeNode(Zilch::StaticTypeNode*& node, CycleDetectionContext* context)
{
// Always push the given node onto the current call stack
context->mCallStack.PushBack(node);
// If there's a constructor function then walk its dependencies
Zilch::Function* constructor = node->ConstructorFunction;
if(constructor != nullptr)
{
// Find the node for this constructor so we can walk the statements within.
// If this node is null then the constructor call is from a different library
Zilch::ConstructorNode* constructorNode = context->mConstructorMap.FindValue(constructor, nullptr);
if(constructorNode != nullptr)
context->Walker->Walk(this, constructorNode, context);
}
// Otherwise this is a constructor call to a class with an implicit constructor.
// In this case we have to traverse the pre-constructor.
else
{
Zilch::Function* preConstructor = node->ReferencedType->PreConstructor;
if(preConstructor != nullptr)
{
// Walk the pre-constructor to collect all its requirements
WalkClassPreconstructor(preConstructor, context);
}
}
context->mCallStack.PopBack();
}
void CycleDetection::ReportError(CycleDetectionContext* context)
{
// Don't report duplicate errors
if(context->mErrors->mErrorTriggered)
return;
ValidationErrorEvent toSend;
toSend.mShortMessage = "Recursion is illegal in shaders";
toSend.mFullMessage = "Object calls itself via the stack:";
// Build the call stack from all of the call locations
auto range = context->mCallStack.All();
for(; !range.Empty(); range.PopFront())
{
Zilch::SyntaxNode* node = range.Front();
toSend.mCallStack.PushBack(node->Location);
}
// Set the primary location to be the start of the recursion
toSend.mLocation = toSend.mCallStack.Front();
EventSend(context->mErrors, Events::ValidationError, &toSend);
// Make sure to mark that we've triggered an error
context->mErrors->mErrorTriggered = true;
}
}//namespace Zero
| [
"22943955+jodavis42@users.noreply.github.com"
] | 22943955+jodavis42@users.noreply.github.com |
0695d3ea6c990647fc44bc46b02035e3735fdb19 | fab298a55b6ef0cf9007f9d1e65bf225cc92da9c | /IntelliTrack.RFIDUDPReader/tools/gdal-1.8.0/port/cpl_multiproc.cpp | c3ff744e7804a94ceeed58818f384beab01e94a2 | [
"MIT",
"Zlib",
"LicenseRef-scancode-warranty-disclaimer",
"LicenseRef-scancode-public-domain",
"LicenseRef-scancode-info-zip-2005-02",
"ISC",
"LicenseRef-scancode-info-zip-2009-01"
] | permissive | diegowald/intellitrack | 7fe5a22d7d3e5624f79dd7d9d0a1dc60887b7b0c | fa3397a373f296dba9518b1a8762c1b947f02eb5 | refs/heads/master | 2016-09-06T08:48:03.155393 | 2013-01-14T15:31:40 | 2013-01-14T15:31:40 | 7,606,666 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 33,958 | cpp | /**********************************************************************
* $Id: cpl_multiproc.cpp 21055 2010-11-03 11:36:59Z dron $
*
* Project: CPL - Common Portability Library
* Purpose: CPL Multi-Threading, and process handling portability functions.
* Author: Frank Warmerdam, warmerdam@pobox.com
*
**********************************************************************
* Copyright (c) 2002, Frank Warmerdam
*
* 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.
****************************************************************************/
#ifndef _GNU_SOURCE
#define _GNU_SOURCE
#endif
#include "cpl_multiproc.h"
#include "cpl_conv.h"
#if !defined(WIN32CE)
# include <time.h>
#else
# include <wce_time.h>
#endif
CPL_CVSID("$Id: cpl_multiproc.cpp 21055 2010-11-03 11:36:59Z dron $");
#if defined(CPL_MULTIPROC_STUB) && !defined(DEBUG)
# define MUTEX_NONE
#endif
/************************************************************************/
/* CPLMutexHolder() */
/************************************************************************/
CPLMutexHolder::CPLMutexHolder( void **phMutex, double dfWaitInSeconds,
const char *pszFileIn,
int nLineIn )
{
#ifndef MUTEX_NONE
pszFile = pszFileIn;
nLine = nLineIn;
#ifdef DEBUG_MUTEX
/*
* XXX: There is no way to use CPLDebug() here because it works with
* mutexes itself so we will fall in infinite recursion. Good old
* fprintf() will do the job right.
*/
fprintf( stderr,
"CPLMutexHolder: Request %p for pid %ld at %d/%s.\n",
*phMutex, (long) CPLGetPID(), nLine, pszFile );
#endif
if( !CPLCreateOrAcquireMutex( phMutex, dfWaitInSeconds ) )
{
fprintf( stderr, "CPLMutexHolder: Failed to acquire mutex!\n" );
hMutex = NULL;
}
else
{
#ifdef DEBUG_MUTEX
fprintf( stderr,
"CPLMutexHolder: Acquired %p for pid %ld at %d/%s.\n",
*phMutex, (long) CPLGetPID(), nLine, pszFile );
#endif
hMutex = *phMutex;
}
#endif /* ndef MUTEX_NONE */
}
/************************************************************************/
/* ~CPLMutexHolder() */
/************************************************************************/
CPLMutexHolder::~CPLMutexHolder()
{
#ifndef MUTEX_NONE
if( hMutex != NULL )
{
#ifdef DEBUG_MUTEX
fprintf( stderr,
"~CPLMutexHolder: Release %p for pid %ld at %d/%s.\n",
hMutex, (long) CPLGetPID(), nLine, pszFile );
#endif
CPLReleaseMutex( hMutex );
}
#endif /* ndef MUTEX_NONE */
}
/************************************************************************/
/* CPLCreateOrAcquireMutex() */
/************************************************************************/
#ifndef CPL_MULTIPROC_PTHREAD
int CPLCreateOrAcquireMutex( void **phMutex, double dfWaitInSeconds )
{
int bSuccess = FALSE;
#ifndef MUTEX_NONE
static void *hCOAMutex = NULL;
/*
** ironically, creation of this initial mutex is not threadsafe
** even though we use it to ensure that creation of other mutexes
** is threadsafe.
*/
if( hCOAMutex == NULL )
{
hCOAMutex = CPLCreateMutex();
if (hCOAMutex == NULL)
{
*phMutex = NULL;
return FALSE;
}
}
else
{
CPLAcquireMutex( hCOAMutex, dfWaitInSeconds );
}
if( *phMutex == NULL )
{
*phMutex = CPLCreateMutex();
bSuccess = *phMutex != NULL;
CPLReleaseMutex( hCOAMutex );
}
else
{
CPLReleaseMutex( hCOAMutex );
bSuccess = CPLAcquireMutex( *phMutex, dfWaitInSeconds );
}
#endif /* ndef MUTEX_NONE */
return bSuccess;
}
#endif
/************************************************************************/
/* CPLCleanupTLSList() */
/* */
/* Free resources associated with a TLS vector (implementation */
/* independent). */
/************************************************************************/
static void CPLCleanupTLSList( void **papTLSList )
{
int i;
// printf( "CPLCleanupTLSList(%p)\n", papTLSList );
if( papTLSList == NULL )
return;
for( i = 0; i < CTLS_MAX; i++ )
{
if( papTLSList[i] != NULL && papTLSList[i+CTLS_MAX] != NULL )
{
CPLTLSFreeFunc pfnFree = (CPLTLSFreeFunc) papTLSList[i + CTLS_MAX];
pfnFree( papTLSList[i] );
papTLSList[i] = NULL;
}
}
CPLFree( papTLSList );
}
#if defined(CPL_MULTIPROC_STUB)
/************************************************************************/
/* ==================================================================== */
/* CPL_MULTIPROC_STUB */
/* */
/* Stub implementation. Mutexes don't provide exclusion, file */
/* locking is achieved with extra "lock files", and thread */
/* creation doesn't work. The PID is always just one. */
/* ==================================================================== */
/************************************************************************/
/************************************************************************/
/* CPLGetThreadingModel() */
/************************************************************************/
const char *CPLGetThreadingModel()
{
return "stub";
}
/************************************************************************/
/* CPLCreateMutex() */
/************************************************************************/
void *CPLCreateMutex()
{
#ifndef MUTEX_NONE
unsigned char *pabyMutex = (unsigned char *) CPLMalloc( 4 );
pabyMutex[0] = 1;
pabyMutex[1] = 'r';
pabyMutex[2] = 'e';
pabyMutex[3] = 'd';
return (void *) pabyMutex;
#else
return (void *) 0xdeadbeef;
#endif
}
/************************************************************************/
/* CPLAcquireMutex() */
/************************************************************************/
int CPLAcquireMutex( void *hMutex, double dfWaitInSeconds )
{
#ifndef MUTEX_NONE
unsigned char *pabyMutex = (unsigned char *) hMutex;
CPLAssert( pabyMutex[1] == 'r' && pabyMutex[2] == 'e'
&& pabyMutex[3] == 'd' );
pabyMutex[0] += 1;
return TRUE;
#else
return TRUE;
#endif
}
/************************************************************************/
/* CPLReleaseMutex() */
/************************************************************************/
void CPLReleaseMutex( void *hMutex )
{
#ifndef MUTEX_NONE
unsigned char *pabyMutex = (unsigned char *) hMutex;
CPLAssert( pabyMutex[1] == 'r' && pabyMutex[2] == 'e'
&& pabyMutex[3] == 'd' );
if( pabyMutex[0] < 1 )
CPLDebug( "CPLMultiProc",
"CPLReleaseMutex() called on mutex with %d as ref count!",
pabyMutex[0] );
pabyMutex[0] -= 1;
#endif
}
/************************************************************************/
/* CPLDestroyMutex() */
/************************************************************************/
void CPLDestroyMutex( void *hMutex )
{
#ifndef MUTEX_NONE
unsigned char *pabyMutex = (unsigned char *) hMutex;
CPLAssert( pabyMutex[1] == 'r' && pabyMutex[2] == 'e'
&& pabyMutex[3] == 'd' );
CPLFree( pabyMutex );
#endif
}
/************************************************************************/
/* CPLLockFile() */
/* */
/* Lock a file. This implementation has a terrible race */
/* condition. If we don't succeed in opening the lock file, we */
/* assume we can create one and own the target file, but other */
/* processes might easily try creating the target file at the */
/* same time, overlapping us. Death! Mayhem! The traditional */
/* solution is to use open() with _O_CREAT|_O_EXCL but this */
/* function and these arguments aren't trivially portable. */
/* Also, this still leaves a race condition on NFS drivers */
/* (apparently). */
/************************************************************************/
void *CPLLockFile( const char *pszPath, double dfWaitInSeconds )
{
FILE *fpLock;
char *pszLockFilename;
/* -------------------------------------------------------------------- */
/* We use a lock file with a name derived from the file we want */
/* to lock to represent the file being locked. Note that for */
/* the stub implementation the target file does not even need */
/* to exist to be locked. */
/* -------------------------------------------------------------------- */
pszLockFilename = (char *) CPLMalloc(strlen(pszPath) + 30);
sprintf( pszLockFilename, "%s.lock", pszPath );
fpLock = fopen( pszLockFilename, "r" );
while( fpLock != NULL && dfWaitInSeconds > 0.0 )
{
fclose( fpLock );
CPLSleep( MIN(dfWaitInSeconds,0.5) );
dfWaitInSeconds -= 0.5;
fpLock = fopen( pszLockFilename, "r" );
}
if( fpLock != NULL )
{
fclose( fpLock );
CPLFree( pszLockFilename );
return NULL;
}
fpLock = fopen( pszLockFilename, "w" );
if( fpLock == NULL )
{
CPLFree( pszLockFilename );
return NULL;
}
fwrite( "held\n", 1, 5, fpLock );
fclose( fpLock );
return pszLockFilename;
}
/************************************************************************/
/* CPLUnlockFile() */
/************************************************************************/
void CPLUnlockFile( void *hLock )
{
char *pszLockFilename = (char *) hLock;
if( hLock == NULL )
return;
VSIUnlink( pszLockFilename );
CPLFree( pszLockFilename );
}
/************************************************************************/
/* CPLGetPID() */
/************************************************************************/
GIntBig CPLGetPID()
{
return 1;
}
/************************************************************************/
/* CPLCreateThread(); */
/************************************************************************/
int CPLCreateThread( CPLThreadFunc pfnMain, void *pArg )
{
CPLDebug( "CPLCreateThread", "Fails to dummy implementation" );
return -1;
}
/************************************************************************/
/* CPLSleep() */
/************************************************************************/
void CPLSleep( double dfWaitInSeconds )
{
time_t ltime;
time_t ttime;
time( <ime );
ttime = ltime + (int) (dfWaitInSeconds+0.5);
for( ; ltime < ttime; time(<ime) )
{
/* currently we just busy wait. Perhaps we could at least block on
io? */
}
}
/************************************************************************/
/* CPLGetTLSList() */
/************************************************************************/
static void **papTLSList = NULL;
static void **CPLGetTLSList()
{
if( papTLSList == NULL )
papTLSList = (void **) CPLCalloc(sizeof(void*),CTLS_MAX*2);
return papTLSList;
}
/************************************************************************/
/* CPLCleanupTLS() */
/************************************************************************/
void CPLCleanupTLS()
{
CPLCleanupTLSList( papTLSList );
papTLSList = NULL;
}
/* endif CPL_MULTIPROC_STUB */
#elif defined(CPL_MULTIPROC_WIN32)
/************************************************************************/
/* ==================================================================== */
/* CPL_MULTIPROC_WIN32 */
/* */
/* WIN32 Implementation of multiprocessing functions. */
/* ==================================================================== */
/************************************************************************/
#include <windows.h>
/* windows.h header must be included above following lines. */
#if defined(WIN32CE)
# include "cpl_win32ce_api.h"
# define TLS_OUT_OF_INDEXES ((DWORD)0xFFFFFFFF)
#endif
/************************************************************************/
/* CPLGetThreadingModel() */
/************************************************************************/
const char *CPLGetThreadingModel()
{
return "win32";
}
/************************************************************************/
/* CPLCreateMutex() */
/************************************************************************/
void *CPLCreateMutex()
{
HANDLE hMutex;
hMutex = CreateMutex( NULL, TRUE, NULL );
return (void *) hMutex;
}
/************************************************************************/
/* CPLAcquireMutex() */
/************************************************************************/
int CPLAcquireMutex( void *hMutexIn, double dfWaitInSeconds )
{
HANDLE hMutex = (HANDLE) hMutexIn;
DWORD hr;
hr = WaitForSingleObject( hMutex, (int) (dfWaitInSeconds * 1000) );
return hr != WAIT_TIMEOUT;
}
/************************************************************************/
/* CPLReleaseMutex() */
/************************************************************************/
void CPLReleaseMutex( void *hMutexIn )
{
HANDLE hMutex = (HANDLE) hMutexIn;
ReleaseMutex( hMutex );
}
/************************************************************************/
/* CPLDestroyMutex() */
/************************************************************************/
void CPLDestroyMutex( void *hMutexIn )
{
HANDLE hMutex = (HANDLE) hMutexIn;
CloseHandle( hMutex );
}
/************************************************************************/
/* CPLLockFile() */
/************************************************************************/
void *CPLLockFile( const char *pszPath, double dfWaitInSeconds )
{
char *pszLockFilename;
HANDLE hLockFile;
pszLockFilename = (char *) CPLMalloc(strlen(pszPath) + 30);
sprintf( pszLockFilename, "%s.lock", pszPath );
hLockFile =
CreateFile( pszLockFilename, GENERIC_WRITE, 0, NULL,CREATE_NEW,
FILE_ATTRIBUTE_NORMAL|FILE_FLAG_DELETE_ON_CLOSE, NULL );
while( GetLastError() == ERROR_ALREADY_EXISTS
&& dfWaitInSeconds > 0.0 )
{
CloseHandle( hLockFile );
CPLSleep( MIN(dfWaitInSeconds,0.125) );
dfWaitInSeconds -= 0.125;
hLockFile =
CreateFile( pszLockFilename, GENERIC_WRITE, 0, NULL, CREATE_NEW,
FILE_ATTRIBUTE_NORMAL|FILE_FLAG_DELETE_ON_CLOSE,
NULL );
}
CPLFree( pszLockFilename );
if( hLockFile == INVALID_HANDLE_VALUE )
return NULL;
if( GetLastError() == ERROR_ALREADY_EXISTS )
{
CloseHandle( hLockFile );
return NULL;
}
return (void *) hLockFile;
}
/************************************************************************/
/* CPLUnlockFile() */
/************************************************************************/
void CPLUnlockFile( void *hLock )
{
HANDLE hLockFile = (HANDLE) hLock;
CloseHandle( hLockFile );
}
/************************************************************************/
/* CPLGetPID() */
/************************************************************************/
GIntBig CPLGetPID()
{
return (GIntBig) GetCurrentThreadId();
}
/************************************************************************/
/* CPLStdCallThreadJacket() */
/************************************************************************/
typedef struct {
void *pAppData;
CPLThreadFunc pfnMain;
} CPLStdCallThreadInfo;
static DWORD WINAPI CPLStdCallThreadJacket( void *pData )
{
CPLStdCallThreadInfo *psInfo = (CPLStdCallThreadInfo *) pData;
psInfo->pfnMain( psInfo->pAppData );
CPLFree( psInfo );
CPLCleanupTLS();
return 0;
}
/************************************************************************/
/* CPLCreateThread() */
/* */
/* The WIN32 CreateThread() call requires an entry point that */
/* has __stdcall conventions, so we provide a jacket function */
/* to supply that. */
/************************************************************************/
int CPLCreateThread( CPLThreadFunc pfnMain, void *pThreadArg )
{
HANDLE hThread;
DWORD nThreadId;
CPLStdCallThreadInfo *psInfo;
psInfo = (CPLStdCallThreadInfo*) CPLCalloc(sizeof(CPLStdCallThreadInfo),1);
psInfo->pAppData = pThreadArg;
psInfo->pfnMain = pfnMain;
hThread = CreateThread( NULL, 0, CPLStdCallThreadJacket, psInfo,
0, &nThreadId );
if( hThread == NULL )
return -1;
CloseHandle( hThread );
return nThreadId;
}
/************************************************************************/
/* CPLSleep() */
/************************************************************************/
void CPLSleep( double dfWaitInSeconds )
{
Sleep( (DWORD) (dfWaitInSeconds * 1000.0) );
}
static int bTLSKeySetup = FALSE;
static DWORD nTLSKey;
/************************************************************************/
/* CPLGetTLSList() */
/************************************************************************/
static void **CPLGetTLSList()
{
void **papTLSList;
if( !bTLSKeySetup )
{
nTLSKey = TlsAlloc();
if( nTLSKey == TLS_OUT_OF_INDEXES )
{
CPLError( CE_Fatal, CPLE_AppDefined,
"TlsAlloc() failed!" );
}
bTLSKeySetup = TRUE;
}
papTLSList = (void **) TlsGetValue( nTLSKey );
if( papTLSList == NULL )
{
papTLSList = (void **) CPLCalloc(sizeof(void*),CTLS_MAX*2);
if( TlsSetValue( nTLSKey, papTLSList ) == 0 )
{
CPLError( CE_Fatal, CPLE_AppDefined,
"TlsSetValue() failed!" );
}
}
return papTLSList;
}
/************************************************************************/
/* CPLCleanupTLS() */
/************************************************************************/
void CPLCleanupTLS()
{
void **papTLSList;
if( !bTLSKeySetup )
return;
papTLSList = (void **) TlsGetValue( nTLSKey );
if( papTLSList == NULL )
return;
TlsSetValue( nTLSKey, NULL );
CPLCleanupTLSList( papTLSList );
}
/* endif CPL_MULTIPROC_WIN32 */
#elif defined(CPL_MULTIPROC_PTHREAD)
#include <pthread.h>
#include <time.h>
/************************************************************************/
/* ==================================================================== */
/* CPL_MULTIPROC_PTHREAD */
/* */
/* PTHREAD Implementation of multiprocessing functions. */
/* ==================================================================== */
/************************************************************************/
/************************************************************************/
/* CPLCreateOrAcquireMutex() */
/************************************************************************/
int CPLCreateOrAcquireMutex( void **phMutex, double dfWaitInSeconds )
{
int bSuccess = FALSE;
static pthread_mutex_t global_mutex = PTHREAD_MUTEX_INITIALIZER;
pthread_mutex_lock(&global_mutex);
if( *phMutex == NULL )
{
*phMutex = CPLCreateMutex();
bSuccess = *phMutex != NULL;
pthread_mutex_unlock(&global_mutex);
}
else
{
pthread_mutex_unlock(&global_mutex);
bSuccess = CPLAcquireMutex( *phMutex, dfWaitInSeconds );
}
return bSuccess;
}
/************************************************************************/
/* CPLGetThreadingModel() */
/************************************************************************/
const char *CPLGetThreadingModel()
{
return "pthread";
}
/************************************************************************/
/* CPLCreateMutex() */
/************************************************************************/
void *CPLCreateMutex()
{
pthread_mutex_t *hMutex;
hMutex = (pthread_mutex_t *) malloc(sizeof(pthread_mutex_t));
if (hMutex == NULL)
return NULL;
#if defined(PTHREAD_MUTEX_RECURSIVE) || defined(HAVE_PTHREAD_MUTEX_RECURSIVE)
{
pthread_mutexattr_t attr;
pthread_mutexattr_init( &attr );
pthread_mutexattr_settype( &attr, PTHREAD_MUTEX_RECURSIVE );
pthread_mutex_init( hMutex, &attr );
}
/* BSDs have PTHREAD_MUTEX_RECURSIVE as an enum, not a define. */
/* But they have #define MUTEX_TYPE_COUNTING_FAST PTHREAD_MUTEX_RECURSIVE */
#elif defined(MUTEX_TYPE_COUNTING_FAST)
{
pthread_mutexattr_t attr;
pthread_mutexattr_init( &attr );
pthread_mutexattr_settype( &attr, MUTEX_TYPE_COUNTING_FAST );
pthread_mutex_init( hMutex, &attr );
}
#elif defined(PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP)
pthread_mutex_t tmp_mutex = PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP;
*hMutex = tmp_mutex;
#else
#error "Recursive mutexes apparently unsupported, configure --without-threads"
#endif
// mutexes are implicitly acquired when created.
CPLAcquireMutex( hMutex, 0.0 );
return (void *) hMutex;
}
/************************************************************************/
/* CPLAcquireMutex() */
/************************************************************************/
int CPLAcquireMutex( void *hMutexIn, double dfWaitInSeconds )
{
int err;
/* we need to add timeout support */
err = pthread_mutex_lock( (pthread_mutex_t *) hMutexIn );
if( err != 0 )
{
if( err == EDEADLK )
fprintf(stderr, "CPLAcquireMutex: Error = %d/EDEADLK", err );
else
fprintf(stderr, "CPLAcquireMutex: Error = %d", err );
return FALSE;
}
return TRUE;
}
/************************************************************************/
/* CPLReleaseMutex() */
/************************************************************************/
void CPLReleaseMutex( void *hMutexIn )
{
pthread_mutex_unlock( (pthread_mutex_t *) hMutexIn );
}
/************************************************************************/
/* CPLDestroyMutex() */
/************************************************************************/
void CPLDestroyMutex( void *hMutexIn )
{
pthread_mutex_destroy( (pthread_mutex_t *) hMutexIn );
free( hMutexIn );
}
/************************************************************************/
/* CPLLockFile() */
/* */
/* This is really a stub implementation, see first */
/* CPLLockFile() for caveats. */
/************************************************************************/
void *CPLLockFile( const char *pszPath, double dfWaitInSeconds )
{
FILE *fpLock;
char *pszLockFilename;
/* -------------------------------------------------------------------- */
/* We use a lock file with a name derived from the file we want */
/* to lock to represent the file being locked. Note that for */
/* the stub implementation the target file does not even need */
/* to exist to be locked. */
/* -------------------------------------------------------------------- */
pszLockFilename = (char *) CPLMalloc(strlen(pszPath) + 30);
sprintf( pszLockFilename, "%s.lock", pszPath );
fpLock = fopen( pszLockFilename, "r" );
while( fpLock != NULL && dfWaitInSeconds > 0.0 )
{
fclose( fpLock );
CPLSleep( MIN(dfWaitInSeconds,0.5) );
dfWaitInSeconds -= 0.5;
fpLock = fopen( pszLockFilename, "r" );
}
if( fpLock != NULL )
{
fclose( fpLock );
CPLFree( pszLockFilename );
return NULL;
}
fpLock = fopen( pszLockFilename, "w" );
if( fpLock == NULL )
{
CPLFree( pszLockFilename );
return NULL;
}
fwrite( "held\n", 1, 5, fpLock );
fclose( fpLock );
return pszLockFilename;
}
/************************************************************************/
/* CPLUnlockFile() */
/************************************************************************/
void CPLUnlockFile( void *hLock )
{
char *pszLockFilename = (char *) hLock;
if( hLock == NULL )
return;
VSIUnlink( pszLockFilename );
CPLFree( pszLockFilename );
}
/************************************************************************/
/* CPLGetPID() */
/************************************************************************/
GIntBig CPLGetPID()
{
return (GIntBig) pthread_self();
}
/************************************************************************/
/* CPLStdCallThreadJacket() */
/************************************************************************/
typedef struct {
void *pAppData;
CPLThreadFunc pfnMain;
pthread_t hThread;
} CPLStdCallThreadInfo;
static void *CPLStdCallThreadJacket( void *pData )
{
CPLStdCallThreadInfo *psInfo = (CPLStdCallThreadInfo *) pData;
psInfo->pfnMain( psInfo->pAppData );
CPLFree( psInfo );
return NULL;
}
/************************************************************************/
/* CPLCreateThread() */
/* */
/* The WIN32 CreateThread() call requires an entry point that */
/* has __stdcall conventions, so we provide a jacket function */
/* to supply that. */
/************************************************************************/
int CPLCreateThread( CPLThreadFunc pfnMain, void *pThreadArg )
{
CPLStdCallThreadInfo *psInfo;
pthread_attr_t hThreadAttr;
psInfo = (CPLStdCallThreadInfo*) CPLCalloc(sizeof(CPLStdCallThreadInfo),1);
psInfo->pAppData = pThreadArg;
psInfo->pfnMain = pfnMain;
pthread_attr_init( &hThreadAttr );
pthread_attr_setdetachstate( &hThreadAttr, PTHREAD_CREATE_DETACHED );
if( pthread_create( &(psInfo->hThread), &hThreadAttr,
CPLStdCallThreadJacket, (void *) psInfo ) != 0 )
{
CPLFree( psInfo );
return -1;
}
return 1; /* can we return the actual thread pid? */
}
/************************************************************************/
/* CPLSleep() */
/************************************************************************/
void CPLSleep( double dfWaitInSeconds )
{
struct timespec sRequest, sRemain;
sRequest.tv_sec = (int) floor(dfWaitInSeconds);
sRequest.tv_nsec = (int) ((dfWaitInSeconds - sRequest.tv_sec)*1000000000);
nanosleep( &sRequest, &sRemain );
}
static pthread_key_t oTLSKey;
static pthread_once_t oTLSKeySetup = PTHREAD_ONCE_INIT;
/************************************************************************/
/* CPLMake_key() */
/************************************************************************/
static void CPLMake_key()
{
if( pthread_key_create( &oTLSKey, (void (*)(void*)) CPLCleanupTLSList ) != 0 )
{
CPLError( CE_Fatal, CPLE_AppDefined, "pthread_key_create() failed!" );
}
}
/************************************************************************/
/* CPLCleanupTLS() */
/************************************************************************/
void CPLCleanupTLS()
{
void **papTLSList;
papTLSList = (void **) pthread_getspecific( oTLSKey );
if( papTLSList == NULL )
return;
pthread_setspecific( oTLSKey, NULL );
CPLCleanupTLSList( papTLSList );
}
/************************************************************************/
/* CPLGetTLSList() */
/************************************************************************/
static void **CPLGetTLSList()
{
void **papTLSList;
if ( pthread_once(&oTLSKeySetup, CPLMake_key) != 0 )
{
CPLError( CE_Fatal, CPLE_AppDefined,
"pthread_once() failed!" );
}
papTLSList = (void **) pthread_getspecific( oTLSKey );
if( papTLSList == NULL )
{
papTLSList = (void **) CPLCalloc(sizeof(void*),CTLS_MAX*2);
if( pthread_setspecific( oTLSKey, papTLSList ) != 0 )
{
CPLError( CE_Fatal, CPLE_AppDefined,
"pthread_setspecific() failed!" );
}
}
return papTLSList;
}
#endif /* def CPL_MULTIPROC_PTHREAD */
/************************************************************************/
/* CPLGetTLS() */
/************************************************************************/
void *CPLGetTLS( int nIndex )
{
void** papTLSList = CPLGetTLSList();
CPLAssert( nIndex >= 0 && nIndex < CTLS_MAX );
return papTLSList[nIndex];
}
/************************************************************************/
/* CPLSetTLS() */
/************************************************************************/
void CPLSetTLS( int nIndex, void *pData, int bFreeOnExit )
{
CPLSetTLSWithFreeFunc(nIndex, pData, (bFreeOnExit) ? CPLFree : NULL);
}
/************************************************************************/
/* CPLSetTLSWithFreeFunc() */
/************************************************************************/
/* Warning : the CPLTLSFreeFunc must not in any case directly or indirectly */
/* use or fetch any TLS data, or a terminating thread will hang ! */
void CPLSetTLSWithFreeFunc( int nIndex, void *pData, CPLTLSFreeFunc pfnFree )
{
void **papTLSList = CPLGetTLSList();
CPLAssert( nIndex >= 0 && nIndex < CTLS_MAX );
papTLSList[nIndex] = pData;
papTLSList[CTLS_MAX + nIndex] = (void*) pfnFree;
}
| [
"diego.wald@gmail.com"
] | diego.wald@gmail.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.